In [ ]:
#!pip install praw
In [ ]:
import datetime
In [ ]:
import praw
import pandas as pd
 
reddit_read_only = praw.Reddit(client_id="-FkFx07VGHhRLGZW9CNuRw",         # your client id
                               client_secret="LP6ZvPq-t4OmaNm8xtIjkxHLRC7N0A",      # your client secret
                               user_agent="MK scraper")        # your user agent
 
 
subrdit = reddit_read_only.subreddit("AmITheAsshole")
 
# Display the name of the Subreddit
#print("Display Name:", subrdit.display_name)
 
# Display the description of the Subreddit
#print("Description:", subrdit.description)
In [ ]:
subreddit = reddit_read_only.subreddit("AmITheAsshole")
 
for post in subreddit.top(limit=5):
    print(post.title)
    print()
AITA for telling my wife the lock on my daughter's door does not get removed til my brother inlaw and his daughters are out of our house?

META: This sub is moving towards a value system that frequently doesn't align with the rest of the world

UPDATE, AITA for despising my mentally handicap sister?

AITA For suing my girlfriend after she had my 1967 impala project taken to the scrapyard?

AITA for bringing my SIL’s wallet to the restaurant when she conveniently always forgets it?

In [ ]:
datetime.datetime.fromtimestamp(next(subreddit.top(limit=1)).created)
Out[ ]:
datetime.datetime(2021, 7, 3, 14, 36, 22)
In [ ]:
posts = subreddit.top("year", limit = 800)

posts_dict = {'title' : [], 'body': [], 'score': [], 'id': [], 'top_comment_body' : [], 'top_comment_score': [], 'url': [], 'datetime':[]}

i=0
for post in posts:
    # Title of each post
    
    posts_dict["title"].append(post.title)
     
    # Text inside a post
    posts_dict["body"].append(post.selftext)
     
    # Unique ID of each post
    posts_dict["id"].append(post.id)
     
    # The score of a post
    posts_dict["score"].append(post.score)
    
    # Text inside the top comment of the post
    posts_dict["top_comment_body"].append(post.comments[1].body)
    
    # Score of the top comment of the post
    posts_dict["top_comment_score"].append(post.comments[1].score)
     
    # URL of each post
    posts_dict["url"].append(post.url)
    
    # date
    posts_dict['datetime'].append(datetime.datetime.fromtimestamp(post.created))
    
    if i%10 == 0:
        print("Done with post number ", i)
    i += 1
    
# Saving the data in a pandas dataframe
top_posts = pd.DataFrame(posts_dict)
top_posts
/tmp/ipykernel_140894/3891463963.py:1: DeprecationWarning: Positional arguments for 'BaseListingMixin.top' will no longer be supported in PRAW 8.
Call this function with 'time_filter' as a keyword argument.
  posts = subreddit.top("year", limit = 800)
Done with post number  0
Done with post number  10
Done with post number  20
Done with post number  30
Done with post number  40
Done with post number  50
Done with post number  60
Done with post number  70
Done with post number  80
Done with post number  90
Done with post number  100
Done with post number  110
Done with post number  120
Done with post number  130
Done with post number  140
Done with post number  150
Done with post number  160
Done with post number  170
Done with post number  180
Done with post number  190
Done with post number  200
Done with post number  210
Done with post number  220
Done with post number  230
Done with post number  240
Done with post number  250
Done with post number  260
Done with post number  270
Done with post number  280
Done with post number  290
Done with post number  300
Done with post number  310
Done with post number  320
Done with post number  330
Done with post number  340
Done with post number  350
Done with post number  360
Done with post number  370
Done with post number  380
Done with post number  390
Done with post number  400
Done with post number  410
Done with post number  420
Done with post number  430
Done with post number  440
Done with post number  450
Done with post number  460
Done with post number  470
Done with post number  480
Done with post number  490
Done with post number  500
Done with post number  510
Done with post number  520
Done with post number  530
Done with post number  540
Done with post number  550
Done with post number  560
Done with post number  570
Done with post number  580
Done with post number  590
Done with post number  600
Done with post number  610
Done with post number  620
Done with post number  630
Done with post number  640
Done with post number  650
Done with post number  660
Done with post number  670
Done with post number  680
Done with post number  690
Done with post number  700
Done with post number  710
Done with post number  720
Done with post number  730
Done with post number  740
Done with post number  750
Done with post number  760
Done with post number  770
Done with post number  780
Done with post number  790
Out[ ]:
title body score id top_comment_body top_comment_score url datetime
0 AITA for bringing my SIL’s wallet to the resta... Edit: update on profile\n\nMy (f28) SIL “Amy” ... 68548 x2k5kv NTA. Stone cold busted. Next time she books an... 1449 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-31 19:59:37
1 AITA for bringing up my brother's "premature" ... I am a nurse practitioner and I am the primary... 56392 zvmflw You can tell the family about the time you wer... 692 https://www.reddit.com/r/AmItheAsshole/comment... 2022-12-26 13:44:43
2 AITA for not taking down my video that was a g... I have a sister that’s 6 years older than me. ... 54769 wyjbjs NTA\n\nMy parents missed my wedding too all be... 1587 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-26 22:25:55
3 UPDATE AITA for walking out of the Airport whe... Hello!.\n\n\nI don't know where to begin...it'... 51465 ur2l3s I'm sorry you are going through this, but I'm ... 18672 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-16 20:28:59
4 AITA for walking out of the Airport when I saw... \n\nI F30 don't have the best relationship wit... 50028 unhse2 Definitely NTA. You know that if you had sucke... 9416 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-11 21:27:15
... ... ... ... ... ... ... ... ...
795 AITA for saying I will never host another fami... We had a family get together for Father’s Day.... 14253 vge8ha NTA but a 45 year old man licked 6 slices of p... 12481 https://www.reddit.com/r/AmItheAsshole/comment... 2022-06-20 07:49:40
796 AITA for bothering a woman at home? My son (4) had a sleepover last night with a f... 14314 10aeoi3 YTA.\n\nText - no response\n\nCall - no respon... 3555 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-13 00:40:43
797 AITA for having a "scary" kitty around children? I (m27) have a cat named stargazer. I adopted... 14244 tiq83r Guess they just lost their free babysitter the... 5982 https://www.reddit.com/r/AmItheAsshole/comment... 2022-03-20 18:32:46
798 AITA for sticking to my(29M) guns when it came... When my wife(31F) and I(29M) were trying to ge... 14231 uvoj8s NTA- Trust your gut on this one, I think that... 1 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-23 02:55:39
799 AITA for not telling my fiancé where I go on S... So super weird situation and need a judgement.... 14209 sexfa3 Girl wants you back. Who would bring a charger... 84 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-28 19:36:07

800 rows × 8 columns

In [ ]:
top_posts.to_csv('800_posts_dates/reddit_posts.csv', index=False)
In [ ]:
import pickle # for loading (and saving) the previously web scraped data

import pandas as pd # for processing data in dataframes
import matplotlib.pyplot as plt # for plotting

import re # for cleaning textual data (uses regular expressions ouch!)
from collections import Counter # for counting tokens occurences
import math # for calculations

import nltk
from nltk.tokenize import word_tokenize # for tokenization
from nltk.stem import PorterStemmer # for stemming
from nltk.corpus import stopwords

# import stop_words # source: https://pypi.org/project/stop-words/#installation
# from stop_words import get_stop_words # alternative stopwords list

import gensim
from gensim import corpora # for: Dictionary(), word2bow()
from gensim import models # for: TfidfModel()

import statistics # for: quantiles()

import numpy as np # for some maths

import time # for measuring time of computation

def save_object(obj, filename):
    with open(filename, 'wb') as output:  # overwrites any existing file.
        pickle.dump(obj, output, pickle.HIGHEST_PROTOCOL)
/usr/lib/python3/dist-packages/paramiko/transport.py:236: CryptographyDeprecationWarning: Blowfish has been deprecated
  "class": algorithms.Blowfish,
In [ ]:
#removing \n
post_texts = top_posts["body"].map(lambda x: re.sub('\n', ' ', x))

#removing all numbers
post_texts = post_texts.map(lambda x: re.sub(r'[0-9]+', '', x))

#removing ,\!?/:;''()``’“-”—#
post_texts = post_texts.map(lambda x: re.sub("[,\!?/:;''()``’“-”—#]", '', x))

#removing .
post_texts = post_texts.map(lambda x: re.sub(r"([.]+)", '', x))

#all letters to lover case
post_texts = post_texts.map(lambda x: x.lower())

#removing one-letter words
post_texts = post_texts.map(lambda x: re.sub(r'\b\w\b', '', x))

post_texts
Out[ ]:
0      edit update on profile  my  sil amy  always co...
1       am  nurse practitioner and  am the primary ca...
2       have  sister thats  years older than me   my ...
3      hello    dont know where to beginits been an a...
4          dont have the best relationship with my hu...
                             ...                        
795    we had  family get together for fathers day my...
796    my son  had  sleepover last night with  friend...
797      have   cat named stargazer  adopted her arou...
798    when my wifef and im were trying to get pregna...
799    so super weird situation and need  judgement  ...
Name: body, Length: 800, dtype: object
In [ ]:
#word_tokenize() applied to every single text
for i in range(0,len(post_texts)):
    post_texts[i] = word_tokenize(post_texts[i])
    
post_texts
Out[ ]:
0      [edit, update, on, profile, my, sil, amy, alwa...
1      [am, nurse, practitioner, and, am, the, primar...
2      [have, sister, thats, years, older, than, me, ...
3      [hello, dont, know, where, to, beginits, been,...
4      [dont, have, the, best, relationship, with, my...
                             ...                        
795    [we, had, family, get, together, for, fathers,...
796    [my, son, had, sleepover, last, night, with, f...
797    [have, cat, named, stargazer, adopted, her, ar...
798    [when, my, wifef, and, im, were, trying, to, g...
799    [so, super, weird, situation, and, need, judge...
Name: body, Length: 800, dtype: object
In [ ]:
ps = PorterStemmer()

def stem_list(l):
    return [ps.stem(x) for x in l]

post_texts = list(map(stem_list, post_texts))
In [ ]:
stop_words = nltk.corpus.stopwords.words('english') #one of stopwords dictionaries available in Python

# cleaning stopwords
stop_words = pd.Series(stop_words).map(lambda x: re.sub('\n', '', x))
stop_words = stop_words.map(lambda x: re.sub("[,\!?/:;''()``]", '', x))
stop_words = stop_words.map(lambda x: re.sub(r"([.]+)", '', x))

# stemming stopwords
ps = PorterStemmer()
for i in range(0,len(stop_words)):
    stop_words[i] = ps.stem(stop_words[i])
In [ ]:
#making stopwords back a list
stop_words = list(stop_words)

#adding some specific stopwords
stop_words.append('``')
stop_words.append("\'\'")
In [ ]:
# removing stopwords from post texts
for i in range(0,len(post_texts)):
    post_texts[i] = [word for word in post_texts[i] if not word in list(stop_words)]
post_texts
Out[ ]:
[['edit',
  'updat',
  'profil',
  'sil',
  'ami',
  'alway',
  'come',
  'visit',
  'town',
  'stay',
  'us',
  'instead',
  'hotel',
  'alway',
  'want',
  'go',
  'expens',
  'restaur',
  'alway',
  'conveni',
  'forget',
  'wallet',
  'dome',
  'excus',
  'cant',
  'pay',
  'share',
  'impli',
  'sinc',
  'make',
  'much',
  'money',
  'one',
  'pay',
  'husband',
  'pay',
  '*',
  'specif',
  '*',
  'make',
  'fair',
  'amount',
  'money',
  'much',
  'treat',
  'someon',
  'everi',
  'time',
  'come',
  'town',
  'nonetheless',
  'past',
  'paid',
  'bill',
  'ask',
  'pay',
  'back',
  'never',
  'made',
  'reserv',
  'extrem',
  'expens',
  'restaur',
  'last',
  'night',
  'left',
  'made',
  'clear',
  'pay',
  'bill',
  'might',
  'asshol',
  'ill',
  'admit',
  'got',
  'move',
  'straight',
  'episod',
  'two',
  'half',
  'men',
  'leav',
  'husband',
  'went',
  'car',
  'pretend',
  'forgot',
  'someth',
  'went',
  'back',
  'insid',
  'found',
  'wallet',
  'sit',
  'right',
  'top',
  'suitcas',
  'put',
  'purs',
  'went',
  'restaur',
  'done',
  'eat',
  'ask',
  'separ',
  'bill',
  'said',
  'need',
  'one',
  'bill',
  'forgot',
  'wallet',
  'reach',
  'purs',
  'said',
  'wallet',
  'extrem',
  'furiou',
  'said',
  'touch',
  'grab',
  'wallet',
  'aita',
  'take',
  'wallet',
  'bring',
  'restaur',
  'edit',
  'wow',
  'thank',
  'award',
  'jeez',
  'lol',
  'mani',
  'comment',
  'cant',
  'keep',
  'thank',
  'everyon',
  'someth',
  'say',
  'edit',
  'ami',
  'call',
  'saw',
  'post',
  'yell',
  'badmouth',
  'internet',
  'honestli',
  'care',
  'ami',
  'hope',
  'read',
  'comment',
  'wake',
  'call'],
 ['nurs',
  'practition',
  'primari',
  'care',
  'provid',
  'lot',
  'low',
  'risk',
  'matern',
  'case',
  'practic',
  'work',
  'also',
  'work',
  'hand',
  'hand',
  'doctor',
  'midwiv',
  'creat',
  'healthi',
  'matern',
  'birth',
  'postpartum',
  'situat',
  'fiance',
  'complet',
  'resid',
  'live',
  'togeth',
  'year',
  'hurri',
  'get',
  'marri',
  'origin',
  'plan',
  'coupl',
  'year',
  'ago',
  'got',
  'realli',
  'busi',
  'two',
  'year',
  'drive',
  'religi',
  'parent',
  'crazi',
  'youngest',
  'son',
  'live',
  'sin',
  'realli',
  'care',
  'im',
  'adult',
  'want',
  'get',
  'marri',
  'june',
  'visit',
  'parent',
  'christma',
  'way',
  'came',
  'togeth',
  'year',
  'everyon',
  'parent',
  'hous',
  'folk',
  'three',
  'sibl',
  'fiance',
  'seven',
  'grandchildren',
  'seventeen',
  'peopl',
  'dinner',
  'mom',
  'start',
  'go',
  'glad',
  'final',
  'get',
  'marri',
  'embarrass',
  'church',
  'dad',
  'say',
  'proud',
  'three',
  'older',
  'kid',
  'either',
  'wait',
  'get',
  'marri',
  'move',
  'togeth',
  'got',
  'marri',
  'right',
  'away',
  'move',
  'togeth',
  'fiance',
  'get',
  'embarrass',
  'get',
  'mad',
  'stupid',
  'argument',
  'mani',
  'time',
  'famili',
  'dinner',
  'last',
  'straw',
  'ask',
  'repeatedli',
  'accept',
  'control',
  'live',
  'life',
  'refus',
  'stay',
  'visit',
  'even',
  'come',
  'alon',
  'hotel',
  'easier',
  'start',
  'talk',
  'prematur',
  'babi',
  'read',
  'almost',
  'three',
  'month',
  'prematur',
  'weigh',
  'pound',
  'super',
  'strong',
  'healthi',
  'born',
  'littl',
  'nicu',
  'high',
  'hope',
  'babi',
  'well',
  'mom',
  'dad',
  'got',
  'deer',
  'headlight',
  'look',
  'face',
  'bad',
  'fuck',
  'around',
  'fiance',
  'feel',
  'ask',
  'oldest',
  'brother',
  'born',
  'almost',
  'four',
  'month',
  'prematur',
  'chanc',
  'could',
  'check',
  'famili',
  'album',
  'keep',
  'record',
  'famili',
  'birth',
  'stuff',
  'alreadi',
  'know',
  'brother',
  'pound',
  'almost',
  'long',
  'born',
  'grandmoth',
  'told',
  'first',
  'time',
  'parent',
  'tri',
  'shame',
  'subject',
  'get',
  'chang',
  'fast',
  'supper',
  'parent',
  'told',
  'tri',
  'embarrass',
  'privat',
  'thing',
  'concern',
  'told',
  'heard',
  'anyth',
  'live',
  'arrang',
  'ever',
  'rest',
  'life',
  'would',
  'make',
  'sure',
  'keep',
  'bring',
  'fact',
  'mom',
  'second',
  'trimest',
  'got',
  'marri',
  'parent',
  'mad',
  'tell',
  'behav',
  'home',
  'fiance',
  'happi',
  'seem',
  'subject',
  'good',
  'aita'],
 ['sister',
  'year',
  'older',
  'parent',
  'year',
  'cancel',
  'last',
  'min',
  'sister',
  'basketbal',
  'game',
  'op',
  'sorri',
  'sister',
  'feel',
  'like',
  'go',
  'graduat',
  'op',
  'sorri',
  'sister',
  'bad',
  'day',
  'work',
  'miss',
  'major',
  'smaller',
  'event',
  'life',
  'melt',
  'met',
  'love',
  'life',
  'decid',
  'tie',
  'knot',
  'begin',
  'told',
  'parent',
  'worri',
  'sister',
  'ruin',
  'anoth',
  'special',
  'moment',
  'life',
  'mom',
  'told',
  'would',
  'happen',
  'day',
  'wed',
  'receiv',
  'voicemail',
  'mom',
  'say',
  'come',
  'sister',
  'dog',
  'sick',
  'upset',
  'hurt',
  'best',
  'man',
  'howev',
  'jokest',
  'took',
  'phone',
  'went',
  'fiancé',
  'ask',
  'could',
  'post',
  'video',
  'wed',
  'gift',
  'social',
  'media',
  'love',
  'idea',
  'idea',
  'came',
  'home',
  'honeymoon',
  'lake',
  'side',
  'cabin',
  'cell',
  'servic',
  'post',
  'caption',
  'best',
  'friend',
  'amaz',
  'person',
  'even',
  'parent',
  'never',
  'show',
  'video',
  'still',
  'pictur',
  'us',
  'next',
  'parent',
  'danc',
  'floor',
  'cut',
  'cake',
  'would',
  'normal',
  'see',
  'parent',
  'wed',
  'pictur',
  'sound',
  'behind',
  'video',
  'mom',
  'voic',
  'mail',
  'explain',
  'come',
  'sister',
  'dog',
  'sick',
  'came',
  'home',
  'week',
  'later',
  'hundr',
  'messag',
  'famili',
  'member',
  'side',
  'insist',
  'take',
  'told',
  'sister',
  'stop',
  'cri',
  'mom',
  'refus',
  'leav',
  'hous',
  'mayb',
  'take',
  'got',
  'messag',
  'call',
  'famili',
  'back',
  'right',
  'away',
  'wait',
  'vacat',
  'time',
  'work',
  'enjoy',
  'time',
  'wife',
  'new',
  'home',
  'contact',
  'anyon',
  'dad',
  'told',
  'take',
  'video',
  'bad',
  'night',
  'make',
  'wife',
  'come',
  'repli',
  'exactli',
  'plan',
  'make',
  'wed',
  'life',
  'time',
  'thing',
  'choos',
  'ignor',
  'feel',
  'whole',
  'matter',
  'repeat',
  'make',
  'told',
  'would',
  'take',
  'video',
  'made',
  'miss',
  'wed',
  'fluster',
  'hung',
  'phone',
  'said',
  'thing',
  'could',
  'taken',
  'video'],
 ['hello',
  'know',
  'beginit',
  'absolut',
  'nightmar',
  'recent',
  'feel',
  'like',
  'lose',
  'saniti',
  'detail',
  'situat',
  'admit',
  'husband',
  'mom',
  'favor',
  'sibl',
  'affect',
  'relationship',
  'well',
  'never',
  'seen',
  'issu',
  'differ',
  'mom',
  'treat',
  'bother',
  'made',
  'feel',
  'uncomfort',
  'whole',
  'dynam',
  'made',
  'feel',
  'uncomfort',
  'go',
  'low',
  'contact',
  'never',
  'even',
  'option',
  'like',
  'see',
  'call',
  'everyday',
  'sibl',
  'talk',
  '%',
  'believ',
  'mom',
  'favorit',
  'like',
  'said',
  'bare',
  'blame',
  'see',
  'wrong',
  'til',
  'day',
  'mani',
  'instanc',
  'found',
  'make',
  'excus',
  'behavior',
  'even',
  'post',
  'spontani',
  'know',
  'guess',
  'much',
  'love',
  'realli',
  'realli',
  'want',
  'abl',
  'work',
  'thing',
  'type',
  'thing',
  'without',
  'let',
  'affect',
  'marriag',
  'regard',
  'happen',
  'trip',
  'tri',
  'talk',
  'said',
  'came',
  'place',
  'blame',
  'blame',
  'toward',
  'continu',
  'argument',
  'told',
  'need',
  'space',
  'would',
  'go',
  'stay',
  'sister',
  'take',
  'well',
  'liter',
  'got',
  'couch',
  'open',
  'door',
  'tell',
  'go',
  'right',
  'moment',
  'see',
  'still',
  'even',
  'anywher',
  'near',
  'understand',
  'done',
  'justmad',
  'thing',
  'perfectli',
  'clear',
  'pictur',
  'year',
  'year',
  'life',
  'live',
  'like',
  'like',
  'noi',
  'cant',
  'cant',
  'take',
  'anymor',
  'especi',
  'keep',
  'focus',
  'right',
  'everi',
  'time',
  'mom',
  'wrong',
  'im',
  'alway',
  'aggress',
  'crazi',
  'jealou',
  'pathet',
  'overreactor',
  'peopl',
  'opinion',
  'advic',
  'concern',
  'like',
  'sparklik',
  'wake',
  'call',
  'realli',
  'need',
  'though',
  'wish',
  'get',
  'far',
  'done',
  'done',
  'right',
  'im',
  'stay',
  'sister',
  'brought',
  'dog',
  'well',
  'sent',
  'last',
  'messag',
  'tell',
  'im',
  'one',
  'choos',
  'end',
  'togeth',
  'believ',
  'way',
  'around',
  'especi',
  'keep',
  'make',
  'mom',
  'victim',
  'situat',
  'becom',
  'clear',
  'keep',
  'go',
  'circl',
  'end',
  'reach',
  'im',
  'exhaust',
  'overwhelm',
  'im',
  'mad',
  'expect',
  'chang',
  'butat',
  'least',
  'im',
  'given',
  'option',
  'decid',
  'best',
  'futur',
  'even',
  'seper',
  'divorc',
  'big',
  'thank',
  'reach',
  'resourc',
  'feel',
  'lucki',
  'come',
  'across',
  'want',
  'give',
  'updat',
  'sinc',
  'mani',
  'ask'],
 ['best',
  'relationship',
  'husband',
  'mom',
  'sinc',
  'day',
  'one',
  'tri',
  'make',
  'remark',
  'compar',
  'tri',
  'get',
  'good',
  'side',
  'start',
  'overli',
  'prais',
  'everyth',
  'sometim',
  'even',
  'copi',
  'like',
  'one',
  'time',
  'liter',
  'dyi',
  'hair',
  'purpl',
  'like',
  'mine',
  'everyon',
  'point',
  'ridicul',
  'look',
  'actual',
  'blame',
  'accus',
  'tri',
  'make',
  'joke',
  'anyway',
  'husband',
  'took',
  'week',
  'work',
  'go',
  'visit',
  'place',
  'countri',
  '-',
  'tourism',
  'word',
  'thing',
  'one',
  'save',
  'arrang',
  'trip',
  'husband',
  'respons',
  'book',
  'ticket',
  'husband',
  'mom',
  'want',
  'come',
  'along',
  'threw',
  'temper',
  'tantrum',
  'said',
  'call',
  'text',
  'sent',
  'peopl',
  'talk',
  'let',
  'come',
  'even',
  'threaten',
  'call',
  'polic',
  'make',
  'complaint',
  'get',
  'us',
  'stay',
  'cant',
  'come',
  'husband',
  'said',
  'take',
  'told',
  'wrong',
  'tell',
  'trip',
  'first',
  'place',
  'gave',
  'ultimatim',
  'said',
  'go',
  'cant',
  'come',
  'told',
  'id',
  'gladli',
  'call',
  'bluff',
  'made',
  'take',
  'word',
  'back',
  'say',
  'fine',
  'tell',
  'stop',
  'take',
  'thing',
  'got',
  'quieter',
  'suspeci',
  'quieter',
  'day',
  'trip',
  'came',
  'got',
  'airport',
  'pm',
  'husband',
  'walk',
  'ahead',
  'look',
  'left',
  'right',
  'like',
  'look',
  'someon',
  'ask',
  'respond',
  'lead',
  'wait',
  'area',
  'first',
  'thing',
  'saw',
  'mom',
  'stand',
  'luggag',
  'froze',
  'spot',
  'felt',
  'cold',
  'wave',
  'wash',
  'fume',
  'insid',
  'husband',
  'hug',
  'quietli',
  'turn',
  'around',
  'start',
  'walk',
  'toward',
  'exit',
  'husband',
  'follow',
  'shout',
  'stop',
  'tri',
  'stop',
  'told',
  'harshest',
  'way',
  'possibl',
  'tri',
  'say',
  'overreact',
  'mom',
  'anyway',
  'let',
  'go',
  'mess',
  'trip',
  'us',
  'told',
  'mom',
  'could',
  'still',
  'go',
  'go',
  'home',
  'went',
  'home',
  'sob',
  'dog',
  'fur',
  'sever',
  'minut',
  'turn',
  'book',
  'ticket',
  'without',
  'know',
  'hour',
  'later',
  'came',
  'home',
  'yell',
  'rage',
  'pathet',
  'spite',
  'walk',
  'go',
  'home',
  'ruin',
  'trip',
  'last',
  'minut',
  'told',
  'caus',
  'happen',
  'said',
  'hard',
  'mom',
  'ridicul',
  'refus',
  'fight',
  'kept',
  'berat',
  'call',
  'famili',
  'tell',
  'trip',
  'cancel',
  'famili',
  'said',
  'ruin',
  'suck',
  'done',
  'best',
  'enjoy',
  'realli',
  'overreact'],
 ['boyfriend',
  'apart',
  'weekend',
  'cook',
  'dinner',
  'studi',
  'exam',
  'made',
  'pasta',
  'chunki',
  'sauc',
  'meatbal',
  'veggi',
  'told',
  'dinner',
  'readi',
  'goe',
  'dinner',
  'tonight',
  '*',
  'tch',
  'like',
  'lot',
  'emphasi',
  'last',
  'word',
  'fed',
  'id',
  'pretti',
  'rough',
  'day',
  'work',
  'aw',
  'bad',
  'associ',
  'word',
  'use',
  'peopl',
  'life',
  'pretti',
  'abus',
  'irrit',
  'drop',
  'pot',
  'pasta',
  'sauc',
  'id',
  'carri',
  'right',
  'ground',
  'like',
  'well',
  'noth',
  'dinner',
  'tonight',
  'better',
  'hear',
  'use',
  'word',
  'girl',
  'freak',
  'sauc',
  'land',
  'rug',
  'even',
  'said',
  'serious',
  'act',
  'like',
  'bitch',
  'right',
  'dunno',
  'els',
  'call',
  'walk',
  'got',
  'takeout',
  'went',
  'friend',
  'hous',
  'thought',
  'funni',
  'boyfriend',
  'furiou',
  'kept',
  'text',
  'call',
  'send',
  'voic',
  'memo',
  'tri',
  'explain',
  'say',
  'dinner',
  'tonight',
  '*',
  'tch',
  'tiktok',
  'trend',
  'quot',
  'someth',
  'joke',
  'put',
  'tiktok',
  'thought',
  'shittiest',
  'excus',
  'ever',
  'matter',
  'saw',
  'joke',
  'stole',
  'joke',
  'still',
  'disrespect',
  'chang',
  'fact',
  'thought',
  'shit',
  'funni',
  'demean',
  'tri',
  'favor',
  'like',
  'hell',
  'came',
  'studi',
  'make',
  'home',
  'cook',
  'dinner',
  'decid',
  'time',
  'joke',
  'put',
  'phone',
  'disturb',
  'night',
  'split',
  'bottl',
  'wine',
  'friend',
  'roommat',
  'next',
  'morn',
  'send',
  'angri',
  'text',
  'demand',
  'clean',
  'rug',
  'busi',
  'exam',
  'shock',
  'left',
  'overnight',
  'disgust',
  'text',
  'back',
  'say',
  'yeah',
  '*',
  'tch',
  'tax',
  'honey',
  'leav',
  'alon',
  'till',
  'readi',
  'handl',
  'cook',
  'clean',
  '*',
  'tch',
  'anymor',
  'also',
  'vile',
  'left',
  'soak',
  'night',
  'call',
  'told',
  'okay',
  'household',
  'work',
  'throw',
  'full',
  'pot',
  'sauc',
  'ground',
  'clean',
  'told',
  'yeah',
  'im',
  'comfort',
  'chore',
  'see',
  'like',
  '*',
  'tch',
  'told',
  'trend',
  'got',
  'piss',
  'play',
  'tiktok',
  'trend',
  'bs',
  'excus',
  'told',
  'well',
  'im',
  'start',
  'trend',
  'call',
  'sauc',
  'littl',
  'joke',
  'peopl',
  'throw',
  'pasta',
  'sauc',
  'around',
  'cant',
  'mad',
  'littl',
  'trend',
  'littl',
  'jokey',
  'joke',
  'littl',
  'prank',
  'bro',
  'got',
  'realli',
  'piss',
  'hung',
  'im',
  'serious',
  'wonder',
  'dumb',
  'fuck',
  'tiktok',
  'joke',
  'gon',
  'na',
  'end',
  'thing',
  'us',
  'aita',
  'react',
  'boyfriend',
  'ask',
  'dinner',
  'tonight',
  '*',
  'tch',
  'edit',
  'address',
  'comment',
  'ive',
  'gotten',
  'lot',
  'time',
  'repli',
  'everi',
  'time',
  '>',
  'tell',
  'call',
  'bitch',
  'like',
  'would',
  'know',
  'otherwis',
  'honestli',
  'someon',
  'gotten',
  'age',
  'realiz',
  'women',
  'whole',
  'like',
  'demean',
  'slur',
  'use',
  'theyr',
  'beyond',
  'help',
  'someth',
  'need',
  'told',
  'go',
  'life',
  'like',
  'hey',
  'man',
  'case',
  'think',
  'might',
  'like',
  'demean',
  'slur',
  'gender',
  'use',
  'actual',
  'comment',
  'someth',
  'like',
  'let',
  'tell',
  'uncertain',
  'term',
  'women',
  'like',
  'call',
  'bitch',
  'men',
  'call',
  'women',
  'bitch',
  'need',
  'told',
  'unkind',
  'consid',
  'offici',
  'told',
  'excus',
  'understand'],
 ['im',
  'yro',
  'singl',
  'father',
  'three',
  'theur',
  'mom',
  'die',
  'year',
  'ago',
  'son',
  'yro',
  'andrew',
  'yro',
  'connor',
  'yro',
  'max',
  'connor',
  'born',
  'femal',
  'tran',
  'came',
  'tran',
  'year',
  'ago',
  'social',
  'transit',
  'yet',
  'phisic',
  'sister',
  'got',
  'marri',
  'son',
  'also',
  'invit',
  'famili',
  'known',
  'connor',
  'tran',
  'year',
  'adjust',
  'well',
  'much',
  'sister',
  'pretti',
  'indiffer',
  'wed',
  'realli',
  'super',
  'well',
  'organis',
  'last',
  'detail',
  'want',
  'men',
  'wear',
  'shirt+ti',
  'women',
  'sundress',
  'textednh',
  'pictur',
  'outfit',
  'day',
  'wed',
  'said',
  'nia',
  'dress',
  'bit',
  'surpris',
  'told',
  'deadnam',
  'son',
  'hell',
  'wear',
  'shirt',
  'tie',
  'like',
  'rest',
  'men',
  'come',
  'said',
  'fine',
  'recept',
  'sister',
  'got',
  'mad',
  'connor',
  'wear',
  'tie',
  'say',
  'much',
  'sat',
  'tabl',
  'card',
  'nia',
  'went',
  'sister',
  'said',
  'use',
  'real',
  'name',
  'told',
  'boy',
  'leav',
  'told',
  'dare',
  'caus',
  'scene',
  'wed',
  'nia',
  'guy',
  'day',
  'call',
  'bigot',
  'left',
  'famili',
  'say',
  'ruin',
  'wed'],
 ['ever',
  'sinc',
  'son',
  'month',
  'ago',
  'husband',
  'start',
  'make',
  'indirect',
  'comment',
  'bodi',
  'never',
  'say',
  'hurt',
  'word',
  'find',
  'observ',
  'call',
  'hurt',
  'exampl',
  'hed',
  'see',
  'wear',
  'old',
  'top',
  'say',
  'oh',
  'top',
  'use',
  'look',
  'good',
  'anymor',
  'though',
  'look',
  'waist',
  'say',
  'wow',
  'know',
  'waist',
  'could',
  'get',
  'wide',
  'basic',
  'passiv',
  'stuff',
  'tri',
  'ignor',
  'til',
  'extend',
  'friend',
  'famili',
  'fyi',
  'went',
  'month',
  'month',
  'month',
  'went',
  'christma',
  'celebr',
  'famili',
  'home',
  'sil',
  'compliment',
  'floral',
  'maxi',
  'dress',
  'husband',
  'said',
  'agre',
  'look',
  'nice',
  'youthough',
  'admit',
  'waist',
  'could',
  'get',
  'smaller',
  'awkward',
  'silenc',
  'took',
  'absolut',
  'fume',
  'last',
  'straw',
  'got',
  'chair',
  'middl',
  'dinner',
  'shout',
  'top',
  'lung',
  'shut',
  'fuck',
  'bodddyyi',
  'absolut',
  'speechless',
  'famili',
  'stare',
  'tri',
  'get',
  'calm',
  'situat',
  'got',
  'tens',
  'dinner',
  'end',
  'cut',
  'short',
  'husband',
  'storm',
  'friend',
  'place',
  'spend',
  'night',
  'upon',
  'leav',
  'nasti',
  'text',
  'say',
  'embarrass',
  'made',
  'scene',
  'observ',
  'made',
  'call',
  'childish',
  'told',
  'get',
  'therapi',
  'insecur',
  'instead',
  'verbal',
  'abus',
  'scare',
  'famili',
  'feel',
  'like',
  'absolut',
  'idiot',
  'asshol',
  'like',
  'ruin',
  'christma',
  'everybodi',
  'sensit',
  'aita'],
 ['recent',
  'inherit',
  'good',
  'amount',
  'money',
  'mom',
  'keep',
  'money',
  'seper',
  'account',
  'still',
  'decid',
  'want',
  'go',
  'wast',
  'notic',
  'husband',
  'constantli',
  'bring',
  'inherit',
  'money',
  'make',
  'countless',
  'suggest',
  'spend',
  'anoth',
  'thing',
  'expect',
  'pay',
  'nearli',
  'everyth',
  'past',
  'coupl',
  'week',
  'nye',
  'husband',
  'met',
  'famili',
  'restaur',
  'celebr',
  'go',
  'fine',
  'found',
  'expect',
  'pay',
  'everyon',
  'tabl',
  'husband',
  'mom',
  'joke',
  'pay',
  'dinner',
  'inherit',
  'pocket',
  'made',
  'livid',
  'show',
  'reaction',
  'silent',
  'paid',
  'fooddrink',
  'got',
  'made',
  'way',
  'restaur',
  'shout',
  'like',
  'crowd',
  'husband',
  'tri',
  'get',
  'come',
  'back',
  'drove',
  'home',
  'got',
  'back',
  'yele',
  'say',
  'pathet',
  'get',
  'walk',
  'famili',
  '*',
  'reli',
  '*',
  'pay',
  'food',
  'thougt',
  'graciou',
  'enough',
  'wrong',
  'said',
  'humili',
  'famili',
  'attempt',
  'get',
  'back',
  'abl',
  'help',
  'mom',
  'sick',
  'true',
  'im',
  'gon',
  'na',
  'say',
  'mad',
  'say',
  'caus',
  'huge',
  'rift',
  'famili',
  'hurt',
  'pay',
  'celebratori',
  'dinner',
  'aita'],
 ['boyfriend',
  'go',
  'er',
  'accid',
  'got',
  'truli',
  'ridicul',
  'bill',
  'back',
  'offer',
  'fight',
  'bill',
  'ive',
  'done',
  'said',
  'sure',
  'went',
  'all-out',
  'honestli',
  'grand',
  'insur',
  'would',
  'fuck',
  'holiday',
  'plan',
  'pretti',
  'bad',
  '-',
  'call',
  'hospit',
  'author',
  'handl',
  'bill',
  'access',
  'medic',
  'record',
  '-',
  'got',
  'item',
  'bill',
  'compar',
  'price',
  'code',
  'fair',
  'price',
  '-',
  'call',
  'bill',
  'disput',
  'bill',
  'told',
  'bill',
  'collect',
  'bill',
  'id',
  'need',
  'contact',
  'admin',
  'disput',
  '-',
  'bounc',
  'around',
  'call',
  'center',
  'hour',
  'tri',
  'get',
  'someon',
  'actual',
  'qualifi',
  'bill',
  'disput',
  'get',
  'nowher',
  '-',
  'googl',
  'linkedin',
  'search',
  'hospit',
  'board',
  'director',
  'upper',
  'manag',
  '-',
  'got',
  'email',
  'influenti',
  'peopl',
  'hospit',
  'plu',
  'hospit',
  'investor',
  '-',
  'everi',
  'day',
  'would',
  'send',
  'email',
  'work',
  'way',
  'chain',
  'write',
  'increasingli',
  'long',
  'email',
  'describ',
  'bill',
  'client',
  'time',
  'fair',
  'price',
  'servic',
  'render',
  'bill',
  'depart',
  'custom',
  'servic',
  'depart',
  'grow',
  'list',
  'manag',
  'id',
  'email',
  'fail',
  'address',
  'issu',
  '-',
  'escal',
  'email',
  'write',
  'director-level',
  'staff',
  'entir',
  'board',
  'director',
  'number',
  'outsid',
  'investor',
  'ccd',
  'ask',
  'written',
  'statement',
  'regard',
  'justif',
  'bill',
  'rate',
  'time',
  'higher',
  'nation',
  'averag',
  'commensur',
  'servic',
  'avail',
  'hospit',
  'sternli',
  'lay',
  'failur',
  'appropri',
  'respond',
  'everi',
  'level',
  'compani',
  'well',
  'id',
  'done',
  'honestli',
  'like',
  'minut',
  'day',
  'reduc',
  'bill',
  '$',
  '$',
  'yep',
  'twenty-six',
  'fuckin',
  'dollar',
  'well',
  'told',
  'boyfriend',
  'good',
  'news',
  'first',
  'overjoy',
  'blown',
  'away',
  'like',
  'liter',
  'jump',
  'hug',
  'say',
  'liter',
  'christma',
  'miracl',
  'ask',
  'said',
  'hard',
  'send',
  'coupl',
  'email',
  'day',
  'curiou',
  'id',
  'said',
  'hand',
  'phone',
  'start',
  'get',
  'stress',
  'flip',
  'back',
  'email',
  'like',
  'told',
  'went',
  'way',
  'far',
  'expect',
  'disput',
  'bill',
  'depart',
  'someth',
  'normal',
  'reason',
  'like',
  'internet',
  'stalk',
  'everi',
  'singl',
  'manag',
  'board',
  'member',
  'investor',
  'harass',
  'drop',
  'bill',
  'frustrat',
  'id',
  'save',
  'us',
  'grand',
  'actual',
  'made',
  'possibl',
  'us',
  'afford',
  'nice',
  'christma',
  'save',
  'money',
  'mad',
  'id',
  'bit',
  'hardass',
  'furiou',
  'also',
  'mad',
  'say',
  'author',
  'disput',
  'bill',
  'basic',
  'threaten',
  'harass',
  'whole',
  'damn',
  'hospit',
  'week',
  'aita',
  'got',
  'boyfriend',
  'medic',
  'bill',
  'drop'],
 ['fiance',
  'get',
  'marri',
  'weve',
  'decid',
  'wed',
  'gon',
  'na',
  'childfre',
  'hate',
  'toward',
  'children',
  'keep',
  'organ',
  'contain',
  'brother',
  'chri',
  'wife',
  'yro',
  'son',
  'everyon',
  'call',
  'miracl',
  'rainbow',
  'babi',
  'came',
  'sever',
  'fail',
  'pregnanc',
  'last',
  'year',
  'found',
  'nephew',
  'includ',
  'children',
  'rule',
  'tri',
  'convinc',
  'make',
  'except',
  'chri',
  'told',
  'son',
  'miracl',
  'babi',
  'presenc',
  'wed',
  'bring',
  'bless',
  'fiance',
  'refus',
  'said',
  'wed',
  'childfre',
  'wife',
  'kept',
  'send',
  'fiance',
  'pic',
  'nephew',
  'month',
  'old',
  'mean',
  'told',
  'stop',
  'brother',
  'told',
  'might',
  'caus',
  'rift',
  'relationship',
  'said',
  'explain',
  'wed',
  'childfre',
  'ask',
  'point',
  'babi',
  'differ',
  'sinc',
  'rainbow',
  'miracl',
  'babi',
  'said',
  'explain',
  'wed',
  'childfre',
  'brought',
  'visit',
  'home',
  'knew',
  'go',
  'stop',
  'id',
  'made',
  'flash',
  'card',
  'advanc',
  'phrase',
  'wed',
  'childfre',
  'period',
  'pull',
  'start',
  'slowli',
  'show',
  'flash',
  'card',
  'one',
  'one',
  'order',
  '-',
  'wed',
  'sticker',
  'bride',
  'groom',
  '-',
  'child',
  'sticker',
  'babi',
  '-',
  'freee',
  'sticker',
  '🚫',
  'sign',
  '-',
  'period',
  'huge',
  'black',
  'dot',
  'sticker',
  'stun',
  'ask',
  'get',
  'chri',
  'lost',
  'shit',
  'wife',
  'alreadi',
  'grab',
  'stuff',
  'walk',
  'chri',
  'call',
  'asshol',
  'said',
  'disrespect',
  'wife',
  'son',
  'one',
  'nephew',
  'rush',
  'argu',
  'fiance',
  'saw',
  'whole',
  'thing',
  'thought',
  'funni',
  'parent',
  'chri',
  'livid',
  'beyond',
  'measur',
  'theyr',
  'tell',
  'everyon',
  'amount',
  'disrespect',
  'mockeri',
  'display',
  'toward',
  'im',
  'told',
  'fix'],
 ['husband',
  '&',
  'expect',
  'first',
  'babi',
  'excit',
  'thing',
  'bare',
  'attend',
  'dr',
  'appoint',
  'excus',
  'even',
  'valid',
  'miss',
  'dr',
  'appoint',
  'soccer',
  'drink',
  'board',
  'game',
  'friend',
  'respons',
  'alway',
  'im',
  'one',
  'carri',
  'babi',
  'go',
  'see',
  'dr',
  'last',
  'week',
  'final',
  'straw',
  'suppos',
  'come',
  'babi',
  'gender',
  'reveal',
  'appoint',
  'chose',
  'come',
  'last',
  'minut',
  'friend',
  'invit',
  'fish',
  'chip',
  'meal',
  'pretti',
  'livid',
  'make',
  'fuss',
  'mom',
  'went',
  'instead',
  'text',
  'ask',
  'tell',
  'result',
  'boy',
  'girl',
  'refus',
  'tell',
  'kept',
  'spam',
  'call',
  'hung',
  'time',
  'came',
  'home',
  'fume',
  'demand',
  'tell',
  'result',
  'refus',
  'bluntli',
  'told',
  'sinc',
  'refus',
  'attend',
  'appoint',
  'get',
  'result',
  'til',
  'babi',
  'born',
  'said',
  'wile',
  'die',
  'hill',
  'went',
  'call',
  'spite',
  'immatur',
  'punish',
  'said',
  'father',
  'right',
  'know',
  'call',
  'dramat',
  'sinc',
  'alon',
  'mom',
  'said',
  'get',
  'result',
  'period',
  'fume',
  'told',
  'famili',
  'theyr',
  'pressur',
  'stop',
  'play',
  'mind',
  'game',
  'tell',
  'declin',
  'aita',
  'editupd',
  'first',
  'wow',
  'expect',
  'blow',
  'sorri',
  'cant',
  'answer',
  'comment',
  'feel',
  'overwhelmedum',
  'want',
  'mention',
  'husband',
  'attempt',
  'contact',
  'dr',
  'get',
  'result',
  'go',
  'well',
  'anoth',
  'argument',
  'get',
  'sinc',
  'mom',
  'one',
  'made',
  'call'],
 ['yo',
  'son',
  'widow',
  'met',
  'wife',
  'yo',
  'daughter',
  'anoth',
  'relationship',
  'famili',
  'often',
  'pretti',
  'good',
  'term',
  'son',
  'quiet',
  'one',
  'hous',
  'keep',
  'lot',
  'point',
  'concern',
  'wife',
  'stepdaught',
  'complet',
  'opposit',
  'encourag',
  'outgo',
  'share',
  'activ',
  'join',
  'gather',
  'extend',
  'famili',
  'son',
  'complain',
  'forc',
  'comfort',
  'zone',
  'need',
  'space',
  'invalid',
  'spoke',
  'wife',
  'stepdaught',
  'ask',
  'give',
  'space',
  'freedom',
  'spend',
  'time',
  'howev',
  'want',
  'apolog',
  'promis',
  'let',
  'mother',
  'day',
  'approach',
  'want',
  'throw',
  'wife',
  'surpris',
  'mother',
  'day',
  'celebr',
  'longer',
  'surpris',
  'stepdaught',
  'gave',
  'head',
  'could',
  'prepar',
  'yesterday',
  'got',
  'work',
  'earlier',
  'usual',
  'get',
  'final',
  'arrang',
  'done',
  'plan',
  'celebr',
  'restaur',
  'invit',
  'famili',
  'key',
  'enter',
  'hous',
  'front',
  'door',
  'overheard',
  'wife',
  'stepdaught',
  'talk',
  'son',
  'wife',
  'ask',
  'son',
  'could',
  'convinc',
  'let',
  'stay',
  'home',
  'go',
  'restaur',
  'celebr',
  'paus',
  'decid',
  'keep',
  'listen',
  'son',
  'said',
  'told',
  'introvert',
  'social',
  'inept',
  'attitud',
  'make',
  'famili',
  'uncomfort',
  'ruin',
  'mood',
  'promis',
  'hed',
  'well',
  'behav',
  'would',
  'tri',
  'interact',
  'social',
  'everyon',
  'said',
  'buy',
  'kept',
  'reassur',
  'snap',
  'told',
  'technic',
  'mom',
  'get',
  'want',
  'celebr',
  'mother',
  'day',
  'badli',
  'stepdaught',
  'threw',
  'rememb',
  'backhand',
  'comment',
  'shock',
  'see',
  'stand',
  'stare',
  'without',
  'say',
  'anyth',
  'told',
  'son',
  'stepsist',
  'go',
  'room',
  'told',
  'wife',
  'celebr',
  'cancel',
  'tri',
  'argu',
  'ask',
  'repeatedli',
  'told',
  'tri',
  'explain',
  'mean',
  'like',
  'heard',
  'part',
  'convers',
  'told',
  'done',
  'argu',
  'decis',
  'alreadi',
  'made',
  'yell',
  'ask',
  'go',
  'tell',
  'famili',
  'said',
  'make',
  'tremend',
  'mistak',
  'toward',
  'ignor',
  'kept',
  'throw',
  'tantrum',
  'tantrum',
  'earli',
  'morn',
  'took',
  'stepdaught',
  'went',
  'stay',
  'folk',
  'singl',
  'call',
  'text',
  'far',
  'situat',
  'full',
  'tension',
  'im',
  'upset',
  'still',
  'hurt',
  'honest',
  'mean',
  'ye',
  'say',
  'go',
  'havw',
  'celebr',
  'thought',
  'said',
  'son',
  'harsh',
  'ignor'],
 ['wed',
  'back',
  'saturday',
  'decemb',
  'st',
  'im',
  'still',
  'get',
  'backlash',
  'want',
  'know',
  'ah',
  'move',
  'countri',
  'live',
  'current',
  'winter',
  'get',
  'fair',
  'amount',
  'snow',
  'wed',
  'winter',
  'theme',
  'wed',
  'color',
  'theme',
  'forest',
  'green',
  'gold',
  'dress',
  'obvious',
  'white',
  'chose',
  'color',
  'bridesmaid',
  'dress',
  'forest',
  'green',
  'well',
  'moh',
  'dress',
  'black',
  'everyon',
  'wear',
  'gold',
  'accessori',
  'friend',
  'well',
  'call',
  'kat',
  'ask',
  'one',
  'bridesmaid',
  'went',
  'dress',
  'shop',
  'told',
  'color',
  'theme',
  'go',
  'kat',
  'immedi',
  'express',
  'thought',
  'forest',
  'green',
  'bad',
  'choic',
  'said',
  'think',
  'flatter',
  'color',
  'thought',
  'choos',
  'someth',
  'differ',
  'girli',
  'said',
  'wed',
  'winter',
  'theme',
  'thought',
  'color',
  'would',
  'go',
  'perfect',
  'theme',
  'suggest',
  'pink',
  'blue',
  'even',
  'red',
  'said',
  'thank',
  'opinion',
  'found',
  'moh',
  'dress',
  'black',
  'ask',
  'could',
  'wear',
  'black',
  'said',
  'moh',
  'wear',
  'black',
  'paid',
  'dress',
  'fast',
  'forward',
  'wed',
  'day',
  'everyon',
  'get',
  'hair',
  'makeup',
  'done',
  'kat',
  'show',
  'minut',
  'late',
  'hold',
  'bag',
  'look',
  'like',
  'dress',
  'insid',
  'ask',
  'told',
  'later',
  'recept',
  'got',
  'uncomfort',
  'want',
  'chang',
  'pictur',
  'like',
  'ok',
  'cool',
  'fast',
  'forward',
  'dress',
  'walk',
  'stair',
  'ceremoni',
  'begin',
  'min',
  'go',
  'take',
  'pictur',
  'kat',
  'last',
  'person',
  'come',
  'wear',
  'black',
  'dress',
  'time',
  'preoccupi',
  'take',
  'pictur',
  'parent',
  'moh',
  'came',
  'made',
  'awar',
  'situat',
  'confront',
  'kat',
  'ask',
  'go',
  'said',
  'hate',
  'bridesmaid',
  'dress',
  'color',
  'ugli',
  'make',
  'look',
  'gross',
  'wear',
  'black',
  'told',
  'pleas',
  'go',
  'back',
  'chang',
  'refus',
  'start',
  'walk',
  'away',
  'said',
  'im',
  'go',
  'ask',
  'one',
  'time',
  'oblig',
  'im',
  'call',
  'secur',
  'kick',
  'began',
  'yell',
  'fuck',
  'call',
  'secur',
  'ask',
  'pleas',
  'escort',
  'start',
  'make',
  'big',
  'scene',
  'yell',
  'im',
  'bitch',
  'cant',
  'forc',
  'wear',
  'anyth',
  'im',
  'horribl',
  'inconsider',
  'friend',
  'wed',
  'went',
  'truli',
  'amaz',
  'ever',
  'sinc',
  'wed',
  'kat',
  'blow',
  'phone',
  'text',
  'say',
  'realli',
  'nasti',
  'thing',
  'ask',
  'money',
  'back',
  'spent',
  'black',
  'dress',
  'sinc',
  'wast',
  'get',
  'wear',
  'block',
  'number',
  'bridesmaid',
  'give',
  'shit',
  'say',
  'littl',
  'harsh',
  'kick',
  'embarrass',
  'like',
  'mayb',
  'give',
  'money',
  'back',
  'aita',
  'kick'],
 ['wife',
  'bought',
  'four',
  'bedroom',
  'hous',
  'pa',
  'son',
  'live',
  'son',
  'went',
  'colleg',
  'pa',
  'want',
  'stay',
  'area',
  'bought',
  'hous',
  'second',
  'home',
  'live',
  'nj',
  'commut',
  'manhattan',
  'work',
  'figur',
  'would',
  'place',
  'live',
  'could',
  'visit',
  'everi',
  'often',
  'spend',
  'qualiti',
  'time',
  'togeth',
  'pay',
  'tax',
  'servic',
  'mainten',
  'hous',
  'son',
  'pay',
  'groceri',
  'hous',
  'util',
  'go',
  'well',
  'year',
  'son',
  'meet',
  'girl',
  'get',
  'seriou',
  'met',
  'seem',
  'nice',
  'enough',
  'announc',
  'engag',
  'move',
  'hous',
  'son',
  'problem',
  'wed',
  'hold',
  'littl',
  'get',
  'know',
  'bbq',
  'pa',
  'hous',
  'son',
  'daughter',
  'son',
  'fiancé',
  'parent',
  'sister',
  'seem',
  'get',
  'along',
  'well',
  'wife',
  'daughter',
  'fiancé',
  'go',
  'hous',
  'along',
  'mother',
  'sister',
  'son',
  'minut',
  'later',
  'wife',
  'daughter',
  'come',
  'realli',
  'upset',
  'come',
  'tell',
  'leav',
  'drive',
  'back',
  'nj',
  'tri',
  'find',
  'happen',
  'get',
  'back',
  'nj',
  'calm',
  'tell',
  'son',
  'fiancé',
  'along',
  'famili',
  'want',
  'us',
  'wed',
  'accord',
  'told',
  'kind',
  'peopl',
  'livid',
  'call',
  'son',
  'ask',
  'wth',
  'tell',
  'famili',
  'feel',
  'good',
  'enough',
  'embarrass',
  'famili',
  'wed',
  'uninvit',
  'wed',
  'let',
  'week',
  'go',
  'calm',
  'drive',
  'back',
  'pa',
  'hous',
  'new',
  'futur',
  'in-law',
  'hous',
  'along',
  'fiancé',
  'appear',
  'move',
  'hous',
  'ask',
  'im',
  'tell',
  'sinc',
  'invit',
  'wed',
  'come',
  'talk',
  'son',
  'tell',
  'leav',
  'hous',
  'lost',
  'told',
  'day',
  'get',
  'tell',
  'son',
  'im',
  'sell',
  'hous',
  'could',
  'find',
  'somewher',
  'els',
  'live',
  'go',
  'realtor',
  'town',
  'list',
  'hous',
  'sale',
  'call',
  'son',
  'work',
  'tell',
  'said',
  'appar',
  'thought',
  'hous',
  'call',
  'ask',
  'im',
  'sell',
  'hous',
  'tell',
  'paid',
  'along',
  'tax',
  'mine',
  'live',
  'rent',
  'free',
  'sinc',
  'want',
  'us',
  'new',
  'life',
  'get',
  'tell',
  'told',
  'futur',
  'in-law',
  'day',
  'get',
  'ill',
  'get',
  'lawyer',
  'get',
  'evict',
  'ah',
  'take',
  'hard',
  'stanc',
  'son',
  'thein-law',
  'seem',
  'take',
  'longer',
  'count'],
 ['dad',
  'pass',
  'away',
  'week',
  'ago',
  'wife',
  'candac',
  'daughter',
  'shiloh',
  'stepsist',
  '&',
  'flew',
  'hometown',
  'attend',
  'funer',
  'got',
  'hotel',
  'room',
  'one',
  'candac',
  'one',
  'girl',
  'room',
  'got',
  'call',
  'shiloh',
  'pm',
  'cri',
  'sound',
  'like',
  'argu',
  'stepsist',
  'ask',
  'matter',
  'told',
  'stepsist',
  'insist',
  'sleep',
  'floor',
  'one',
  'larg',
  'bed',
  'room',
  'enough',
  'space',
  'girl',
  'sleep',
  'ask',
  'said',
  'know',
  'went',
  'see',
  'issu',
  'talk',
  'stepdaught',
  'kept',
  'talk',
  'realli',
  'explain',
  'told',
  'sleep',
  'floor',
  'shrug',
  'said',
  'better',
  'waywer',
  'comfort',
  'way',
  'told',
  'shiloh',
  'grab',
  'thing',
  'one',
  'stepdaught',
  'ask',
  'go',
  'told',
  'book',
  'hotel',
  'room',
  'look',
  'upset',
  'say',
  'anyth',
  'mustv',
  'call',
  'mom',
  'awak',
  'got',
  'back',
  'start',
  'argu',
  'give',
  'shiloh',
  'entir',
  'hotel',
  'room',
  'explain',
  'said',
  'wast',
  'money',
  'shiloh',
  'couldv',
  'suck',
  'one',
  'night',
  'floor',
  'call',
  'unreason',
  'say',
  'told',
  'show',
  'girl',
  'im',
  'play',
  'favorit',
  'made',
  'stepdaught',
  'share',
  'room',
  'gave',
  'daughter',
  'entir',
  'room',
  'went',
  'home',
  'candac',
  'still',
  'bring',
  'say',
  'mishandl',
  'even',
  'point',
  'stepdaught',
  'upset',
  'sinc',
  'theyr',
  'speak',
  'eta',
  'candac',
  'got',
  'room',
  'girl',
  'stir',
  'drama',
  'save',
  'money',
  'charg',
  'hotel',
  'reserv',
  'sinc',
  'emotionali',
  'distress',
  'also',
  'candac',
  'expect',
  'shiloh',
  'sleep',
  'floor',
  'want',
  'girl',
  'share',
  'bed',
  'eta',
  'call',
  'ah',
  'give',
  'daughter',
  'name',
  'mom',
  'deceas',
  'pleas',
  'let',
  'focu',
  'also',
  'ive',
  'known',
  'stepdaught',
  'sinc',
  'littl',
  'pretti',
  'much',
  'famili',
  'candac',
  'sahm',
  'give',
  'full',
  'access',
  'money',
  'sinc',
  'stuff',
  'alreadi',
  'discuss',
  'hand',
  'pretti',
  'much',
  'everyth'],
 ['short',
  'one',
  'name',
  'chang',
  'privaci',
  'went',
  'tattoo',
  'shop',
  'area',
  'photo',
  'tattoo',
  'want',
  'one',
  'dad',
  'gotten',
  'honor',
  'pass',
  'grandfath',
  'father',
  'also',
  'point',
  '-',
  'import',
  'tattoo',
  'look',
  'exactli',
  'photo',
  'get',
  'shop',
  'explain',
  'everyth',
  'pay',
  'get',
  'tattoo',
  'done',
  'think',
  'look',
  'awesom',
  'everyth',
  'great',
  'week',
  'later',
  'show',
  'great',
  'grandmoth',
  'tattoo',
  'static',
  'grab',
  'arm',
  'look',
  'compliment',
  'ask',
  'aj',
  'ask',
  'mean',
  'point',
  'tattoo',
  'initi',
  'mayb',
  'hidden',
  'tattoo',
  'im',
  'instantli',
  'piss',
  'artist',
  'name',
  'alic',
  'trever',
  'tri',
  'assur',
  'big',
  'deal',
  'notic',
  'til',
  'still',
  'reach',
  'artist',
  'sort',
  'irrit',
  'told',
  'style',
  'art',
  'got',
  'call',
  'tradit',
  'pretti',
  'trad',
  'artist',
  'style',
  'demand',
  'partial',
  'refund',
  'refus',
  'complain',
  'owner',
  'made',
  'artist',
  'give',
  'full',
  'refund',
  'artist',
  'run',
  'full',
  'smear',
  'campaign',
  'talk',
  'move',
  'shop',
  'kind',
  'crap',
  'sister',
  'say',
  'im',
  'asshol',
  'push',
  'issu',
  'feel',
  'like',
  'end',
  'day',
  'told',
  'exactli',
  'want',
  'aita'],
 ['*',
  '*',
  'eta',
  '*',
  '*',
  'may',
  'confus',
  'gf',
  'reaction',
  'asham',
  'famili',
  'dug',
  'deep',
  'respons',
  'want',
  'die',
  'next',
  'hour',
  'agre',
  'right',
  'thing',
  'funni',
  'backstori',
  'due',
  'dad',
  'job',
  'live',
  'itali',
  'year',
  'younger',
  'speak',
  'italian',
  'almost',
  'fluentli',
  'awhil',
  'ive',
  'lost',
  '&',
  'xb',
  'recent',
  'start',
  'date',
  'girl',
  'great',
  'love',
  'much',
  'met',
  'famili',
  'night',
  'ago',
  'dinner',
  'warn',
  'male',
  'side',
  'famili',
  'big',
  'macho',
  'test',
  'boy',
  'women',
  'date',
  'big',
  'take',
  'pride',
  'italian',
  'ancestri',
  'think',
  'besid',
  'grandfath',
  'howev',
  'almost',
  'born',
  'bergen',
  'counti',
  'nj',
  'whatev',
  'nice',
  'take',
  'pride',
  'one',
  'heritag',
  '&',
  'xb',
  'long',
  'stori',
  'short',
  'dinner',
  'kept',
  'make',
  'joke',
  'expens',
  'honestli',
  'would',
  'call',
  'bulli',
  'thing',
  'height',
  'beard',
  'shave',
  'head',
  'tri',
  'make',
  'fun',
  'job',
  'stop',
  'told',
  'incom',
  'overal',
  'bad',
  'experi',
  'pleasant',
  'one',
  'anyway',
  'older',
  'brother',
  'kept',
  'push',
  'thing',
  'give',
  'except',
  'amount',
  'shit',
  'play',
  'lacross',
  'hs',
  'appar',
  'sport',
  'prissi',
  'rich',
  'kid',
  'manli',
  'like',
  'footbal',
  'basebal',
  'end',
  'rant',
  'say',
  'hey',
  'big',
  'italian',
  'famili',
  'loud',
  'tell',
  'see',
  'hahaha',
  'famili',
  'except',
  'girlfriend',
  'laugh',
  'next',
  'minut',
  'respond',
  'everyth',
  'said',
  'italian',
  'girlfriend',
  'buri',
  'head',
  'shame',
  'grandfath',
  'laugh',
  'everyon',
  'els',
  'kept',
  'look',
  'confus',
  'tell',
  'speak',
  'italian',
  'repli',
  'use',
  'italian',
  'heritag',
  'excus',
  'behav',
  'poorli',
  'cant',
  'even',
  'speak',
  'languag',
  'got',
  'mad',
  'grandfath',
  'told',
  'right',
  'quiet',
  '&',
  'xb',
  'girlfriend',
  'mad',
  'asham',
  'think',
  'grandfath',
  'like',
  'word',
  'gf',
  'sister',
  'men',
  'furiou',
  'think',
  'im',
  'smart',
  'ass',
  'disrespect',
  'masculin',
  'unforgiv',
  'way',
  'aita'],
 ['[',
  'link',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i',
  'first',
  'want',
  'thank',
  'everyon',
  'overwhelm',
  'support',
  'repli',
  'first',
  'post',
  'im',
  'look',
  'forward',
  'go',
  'everyon',
  'hous',
  'dinner',
  'ill',
  'sure',
  'bring',
  'thing',
  'said',
  'like',
  '-',
  'mani',
  'flower',
  'lover',
  'im',
  'also',
  'appar',
  'dil',
  'lot',
  'hope',
  'parent',
  'repli',
  'well',
  'hope',
  'deliv',
  'expect',
  '\\',
  '--',
  '-',
  'last',
  'updat',
  'told',
  'bf',
  'sick',
  'tire',
  'danc',
  'around',
  'issu',
  'parent',
  'go',
  'go',
  'hous',
  'whether',
  'like',
  'point',
  'think',
  'realiz',
  'whatev',
  'backfir',
  'sat',
  'angri',
  'told',
  'hed',
  'explain',
  'sat',
  'told',
  'hed',
  'done',
  'someth',
  'spur',
  'moment',
  'hed',
  'text',
  'dad',
  'phone',
  'block',
  'number',
  'beg',
  'listen',
  'need',
  'get',
  'parent',
  'leav',
  'appar',
  'parent',
  'start',
  'hint',
  'marriag',
  'sinc',
  'bf',
  'talk',
  'lot',
  'fulli',
  'expect',
  'marri',
  'said',
  'anoth',
  'comment',
  'honestli',
  'expect',
  'propos',
  'late',
  'spring',
  'sinc',
  'met',
  'four',
  'year',
  'date',
  'bother',
  'get',
  'excit',
  'settl',
  'howev',
  'bf',
  'appar',
  'realiz',
  'absolut',
  'want',
  'commit',
  'anyth',
  'want',
  'experi',
  'fun',
  'sinc',
  'fun',
  'anymor',
  'honestli',
  'made',
  'cri',
  'sinc',
  'first',
  'everyth',
  'usual',
  'good',
  'commun',
  'need',
  'grand',
  'plan',
  'get',
  'mad',
  'would',
  'beg',
  'forgiv',
  'hed',
  'accept',
  'open',
  'relationship',
  'answer',
  'absolut',
  'brilliant',
  'plan',
  'know',
  'hed',
  'made',
  'parent',
  'get',
  'mad',
  'expect',
  'blow',
  'dinner',
  'complet',
  'like',
  'hit',
  'jackpot',
  'word',
  'mine',
  'went',
  'dinner',
  'hid',
  'flower',
  'said',
  'wed',
  'gotten',
  'huge',
  'fight',
  'go',
  'fix',
  'need',
  'space',
  'confess',
  'said',
  'sorri',
  'realli',
  'want',
  'miss',
  'new',
  'experi',
  'still',
  'young',
  'would',
  'consid',
  'open',
  'relationship',
  'pretend',
  'strain',
  'parent',
  'get',
  'suspici',
  'andi',
  'laugh',
  'laugh',
  'ass',
  'right',
  'door',
  'told',
  'absolut',
  'leav',
  'alon',
  'pack',
  'want',
  'new',
  'experi',
  'never',
  'stop',
  'beg',
  'stay',
  'left',
  'sleep',
  'friend',
  'calm',
  'day',
  'cement',
  'breakup',
  'final',
  'actual',
  'went',
  'parent',
  'ex-bf',
  'dad',
  'never',
  'even',
  'notic',
  'phone',
  'miss',
  'still',
  'apolog',
  'mom',
  'mess',
  'still',
  'love',
  'eat',
  'dinner',
  'without',
  '*',
  '*',
  'often',
  'lie',
  'im',
  'sad',
  'four',
  'year',
  'drain',
  'life',
  'ex',
  'best',
  'possibl',
  'plan',
  'dodg',
  'bullet',
  'mile'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'quick',
  'updat',
  'sinc',
  'situat',
  'resolv',
  'husband',
  'got',
  'home',
  'told',
  'happen',
  'show',
  'video',
  'ask',
  'spoke',
  'bil',
  'said',
  'convers',
  'sister',
  'said',
  'take',
  'care',
  'disclaim',
  'understand',
  'noth',
  'come',
  'insur',
  'claim',
  'husband',
  'told',
  'mei',
  'understood',
  'happen',
  'husband',
  'talk',
  'bil',
  'told',
  'exactli',
  'happen',
  'show',
  '*',
  'prank',
  '*',
  'video',
  'told',
  'coat',
  'insur',
  'file',
  'claim',
  'submit',
  'video',
  'might',
  'file',
  'charg',
  'claim',
  'assur',
  'would',
  'drop',
  'charg',
  'want',
  'send',
  'niec',
  'jail',
  'told',
  'one',
  'two',
  'thing',
  'might',
  'happen',
  'insur',
  'pay',
  'us',
  'come',
  'insur',
  'pay',
  'premium',
  'skyrocket',
  'might',
  'sue',
  'might',
  'get',
  'lien',
  'hous',
  'bil',
  'ask',
  'way',
  'could',
  'pay',
  'us',
  'without',
  'involv',
  'insur',
  'husband',
  'told',
  'want',
  'first',
  'sister',
  'insist',
  'pay',
  'us',
  'back',
  'appar',
  'bil',
  'know',
  'piss',
  'niec',
  'sister',
  'respons',
  'came',
  'solut',
  'niec',
  'car',
  'sold',
  'fetch',
  'whole',
  'compens',
  'money',
  'get',
  'job',
  'pay',
  'whole',
  'check',
  'paid',
  'also',
  'ground',
  'rest',
  'school',
  'year',
  'thank',
  'peopl',
  'encourag',
  'talk',
  'husband'],
 ['throwaway',
  'account',
  'husband',
  'ill',
  'call',
  'jake',
  'stori',
  'togeth',
  'year',
  'marri',
  'recent',
  'start',
  'tri',
  'babi',
  'felt',
  'like',
  'next',
  'step',
  'life',
  'togeth',
  'week',
  'ago',
  'got',
  'posit',
  'test',
  'back',
  'realli',
  'realli',
  'happi',
  'told',
  'famili',
  'mom',
  'mil',
  'want',
  'throw',
  'big',
  'babi',
  'shower',
  'us',
  'super',
  'good',
  'news',
  'around',
  'well',
  'night',
  'ago',
  'jake',
  'get',
  'readi',
  'bed',
  'remind',
  'go',
  'hous',
  'make',
  'sure',
  'light',
  'littl',
  'lazi',
  'time',
  'becom',
  'nightli',
  'routin',
  'make',
  'sure',
  'light',
  'leav',
  'go',
  'bed',
  'feel',
  'well',
  'ask',
  'could',
  'sinc',
  'anyth',
  'liter',
  'stand',
  'door',
  'tell',
  'expect',
  'everi',
  'night',
  'littl',
  'hurt',
  'want',
  'fight',
  'came',
  'back',
  'jake',
  'goe',
  'long',
  'unprovok',
  'rant',
  'say',
  'thing',
  'like',
  'pregnant',
  'mean',
  'anyth',
  'chang',
  'still',
  'expect',
  'cook',
  'clean',
  'chore',
  'everi',
  'day',
  'expect',
  'mother',
  'cant',
  'handl',
  'littl',
  'work',
  'yell',
  'anyth',
  'talk',
  'quietli',
  'like',
  'inch',
  'tall',
  'shock',
  'never',
  'heard',
  'say',
  'anyth',
  'like',
  'rant',
  'went',
  'minut',
  'interject',
  'ask',
  'well',
  'plan',
  'help',
  'got',
  'extrem',
  'defens',
  'say',
  'work',
  'ass',
  'job',
  'provid',
  'go',
  'futur',
  'children',
  'context',
  'work',
  'atm',
  'job',
  'pay',
  'enough',
  'justifi',
  'go',
  'full',
  'time',
  'colleg',
  'student',
  'end',
  'say',
  'matter',
  'feel',
  'physic',
  'mental',
  'mother',
  'job',
  'push',
  'help',
  'babi',
  'good',
  'mother',
  'got',
  'extrem',
  'upset',
  'start',
  'yell',
  'said',
  'wish',
  'wouldv',
  'known',
  'felt',
  'got',
  'pregnant',
  'babi',
  'moment',
  'silenc',
  'start',
  'cri',
  'left',
  'night',
  'stay',
  'mother',
  'hous',
  'back',
  'yet',
  'mil',
  'sil',
  'call',
  'berat',
  'say',
  'broke',
  'jake',
  'heart',
  'said',
  'need',
  'apolog',
  'immedi',
  'come',
  'home',
  'know',
  'feel',
  'aita',
  'yell',
  'husband',
  'said',
  'help',
  'anyth',
  'pregnanc',
  'mother',
  'job',
  'deal',
  'edit',
  'first',
  'want',
  'thank',
  'respons',
  'im',
  'sorri',
  'realli',
  'respond',
  'anyon',
  'specif',
  'realli',
  'appreci',
  'guy',
  'ask',
  'told',
  'mil',
  'sil',
  'said',
  'basic',
  'said',
  'sensit',
  'meant',
  'pregnanc',
  'excus',
  'lazi',
  'meant',
  'harm',
  'ok',
  'get',
  'thing',
  'togeth',
  'go',
  'head',
  'mom',
  'dad',
  'hous',
  'mom',
  'furiou',
  'want',
  'apolog',
  'talk',
  'without',
  'situat',
  'either',
  'record',
  'wit',
  'regardless',
  'ok',
  'ok',
  'appreci',
  'though',
  'open',
  'eye',
  'mani',
  'thing',
  'may',
  'ignor',
  'look',
  'past',
  'year'],
 ['im',
  'relationship',
  'guy',
  'also',
  'work',
  'tech',
  'make',
  'make',
  'mechan',
  'engin',
  'robot',
  'startup',
  'work',
  'stabl',
  'job',
  'program',
  'larg',
  'compani',
  'brought',
  'meet',
  'friend',
  'parti',
  'ask',
  'friend',
  'mostli',
  'work',
  'tech',
  'talk',
  'term',
  'job',
  'told',
  'im',
  'hiker',
  'archeri',
  'love',
  'road',
  'trip',
  'camp',
  'ride',
  'dirtbik',
  'etc',
  'basic',
  'talk',
  'hobbi',
  'work',
  'way',
  'get',
  'paid',
  'shit',
  'love',
  'defin',
  'come',
  'mind',
  'someon',
  'want',
  'tell',
  'one',
  'friend',
  'ask',
  'work',
  'said',
  'oh',
  'gosh',
  'wan',
  'na',
  'talk',
  'work',
  'parti',
  'spent',
  'whole',
  'day',
  'sweat',
  'ass',
  'degre',
  'heat',
  'tri',
  'replac',
  'bust',
  'ass',
  'motor',
  'find',
  'replac',
  'part',
  'also',
  'fuck',
  'lie',
  'tri',
  'downplay',
  'good',
  'job',
  'realli',
  'spent',
  'day',
  'mood',
  'talk',
  'shop',
  'parti',
  'convers',
  'came',
  'casual',
  'probabl',
  'also',
  'made',
  'seem',
  'poorer',
  'like',
  'say',
  'car',
  'dealership',
  'repair',
  'ripoff',
  'tell',
  'boyfriend',
  'childhood',
  'neighbor',
  'trailer',
  'caught',
  'fire',
  'gon',
  'na',
  'visit',
  'help',
  'purpos',
  'liter',
  'talk',
  'life',
  'guess',
  'gave',
  'impress',
  'poorer',
  'got',
  'later',
  'night',
  'everyon',
  'get',
  'drunker',
  'friend',
  'close',
  'one',
  'tho',
  'make',
  'joke',
  'grow',
  'trailer',
  'gold',
  'digger',
  'readi',
  'jump',
  'richer',
  'guy',
  'realli',
  'misogynist',
  'shit',
  'honestli',
  'sinc',
  'even',
  'know',
  'seem',
  'assum',
  'girl',
  'good',
  'digger',
  'say',
  'anyth',
  'later',
  'said',
  'hed',
  'smoke',
  'weed',
  'get',
  'quiet',
  'troubl',
  'carri',
  'quick',
  'convers',
  'high',
  'regardless',
  'felt',
  'hurt',
  'say',
  'anyth',
  'got',
  'irrit',
  'friend',
  'ask',
  'hell',
  'would',
  'say',
  'make',
  'twice',
  'friend',
  'went',
  'quiet',
  'second',
  'continu',
  'say',
  'aint',
  'gold',
  'dig',
  'anyon',
  'parti',
  'yall',
  'think',
  'im',
  'cheap',
  'yall',
  'think',
  'im',
  'stupid',
  'boyfriend',
  'want',
  'leav',
  'parti',
  'shortli',
  'pretti',
  'upset',
  'tell',
  'everyon',
  'make',
  'twice',
  'said',
  'would',
  'held',
  'tongu',
  'hed',
  'check',
  'friend',
  'say',
  'anyth',
  'let',
  'talk',
  'like',
  'said',
  'humili',
  'everyon',
  'think',
  'im',
  'bitch',
  'flippantli',
  'said',
  'least',
  'know',
  'im',
  'rich',
  'bitch',
  'angri',
  'embarrass',
  'spoke',
  'angri',
  'say',
  'anyth',
  'friend',
  'talk',
  'shit',
  'check',
  'stuff',
  'still',
  'tens',
  'aita',
  'explain',
  'im',
  'gold',
  'digger'],
 ['father',
  'breadwinn',
  'mom',
  'sahm',
  'handl',
  'everyth',
  'around',
  'hous',
  'like',
  'cook',
  'mop',
  'wash',
  'laundri',
  'etc',
  'im',
  'oldest',
  'tri',
  'help',
  'realli',
  'much',
  'dad',
  'get',
  'home',
  'end',
  'day',
  'liter',
  'complain',
  'everyth',
  'like',
  'carpet',
  'clean',
  'food',
  'cold',
  'result',
  'id',
  'listen',
  'huge',
  'argument',
  'daili',
  'mom',
  'exhaust',
  'honestlyi',
  'think',
  'dad',
  'wrong',
  'tri',
  'talk',
  'get',
  'see',
  'behavior',
  'avail',
  'pick',
  'day',
  'pretend',
  'act',
  'like',
  'put',
  'togeth',
  'outfit',
  'look',
  'like',
  'suit',
  'put',
  'black',
  'tape',
  'lip',
  'look',
  'like',
  'mustach',
  'pm',
  'went',
  'insid',
  'hous',
  'shout',
  'im',
  'home',
  'sat',
  'next',
  'live',
  'room',
  'start',
  'kick',
  'shoe',
  'complain',
  'state',
  'hous',
  'top',
  'lung',
  'glanc',
  'confus',
  'ask',
  'ignor',
  'start',
  'yell',
  'carpet',
  'dirti',
  'shower',
  'readi',
  'kid',
  'need',
  'quiet',
  'kept',
  'stare',
  'mom',
  'sibl',
  'laugh',
  'youngest',
  'brother',
  'kept',
  'point',
  'toward',
  'say',
  'daddi',
  'proceed',
  'yell',
  'dinner',
  'berat',
  'mom',
  'prepar',
  'ut',
  'time',
  'dad',
  'stop',
  'seriou',
  'tone',
  'ask',
  'turn',
  'said',
  'cant',
  'man',
  'ef',
  'rest',
  'work',
  'long',
  'hour',
  'macho',
  'voic',
  'could',
  'muster',
  'dad',
  'got',
  'hint',
  'common',
  'phrase',
  'use',
  'daili',
  'went',
  'quiet',
  'avoid',
  'look',
  'stop',
  'act',
  'told',
  'tri',
  'show',
  'like',
  'everyday',
  'come',
  'home',
  'work',
  'said',
  'noth',
  'went',
  'outsid',
  'refus',
  'speak',
  'later',
  'went',
  'mock',
  'invalid',
  'work',
  'hard',
  'disrespect',
  'invalid',
  'mom',
  'said',
  'funni',
  'also',
  'thought',
  'hurt',
  'dad',
  'feel',
  'couldv',
  'gotten',
  'messag',
  'across',
  'way',
  'instead',
  'aita'],
 ['edit',
  'titl',
  'aita',
  'tell',
  'guy',
  'work',
  'let',
  'pay',
  'drink',
  'whole',
  'even',
  '--',
  '--',
  'friend',
  'grace',
  'invit',
  'board',
  'game',
  'bar',
  'play',
  'drink',
  'boyfriend',
  'one',
  'friend',
  'nick',
  'went',
  'get',
  'drink',
  'pair',
  'grace',
  'go',
  'boyfriend',
  'meanwhil',
  'nick',
  'stay',
  'tabl',
  'vice',
  'versa',
  'nick',
  'plenti',
  'time',
  'talk',
  'two',
  'us',
  'nick',
  'start',
  'night',
  'tell',
  'recent',
  'career',
  'chang',
  'decid',
  'quit',
  'previou',
  'job',
  'go',
  'code',
  'bootcamp',
  'got',
  'job',
  'develop',
  'one',
  'two',
  'month',
  'ago',
  'proud',
  'new',
  'salari',
  'told',
  'multipl',
  'time',
  'never',
  'ask',
  'work',
  'talk',
  'new',
  'job',
  'quit',
  'lot',
  'occasion',
  'say',
  'sorri',
  'understand',
  'haha',
  'entir',
  'even',
  'never',
  'told',
  'work',
  'softwar',
  'engin',
  'past',
  'year',
  'never',
  'ask',
  'honestli',
  'found',
  'bit',
  'entertain',
  'came',
  'drink',
  'invit',
  'everi',
  'singl',
  'one',
  'worri',
  'problem',
  'devop',
  'salari',
  'told',
  'multipl',
  'time',
  'pay',
  'insist',
  'end',
  'night',
  'say',
  'goodby',
  'took',
  'phone',
  'send',
  'friend',
  'request',
  'facebook',
  'job',
  'list',
  'profil',
  'realiz',
  'im',
  'softwar',
  'engin',
  'ask',
  'true',
  'im',
  'softwar',
  'engin',
  'answer',
  'ye',
  'ask',
  'told',
  'let',
  'believ',
  'cashier',
  'like',
  'grace',
  'use',
  'never',
  'impli',
  'let',
  'pay',
  'everyth',
  'probabl',
  'earn',
  'told',
  'never',
  'ask',
  'fault',
  'assum',
  'could',
  'simpli',
  'ask',
  'job',
  'want',
  'brag',
  'want',
  'pay',
  'back',
  'drink',
  'angri',
  'said',
  'made',
  'fool',
  'think',
  'grace',
  'boyfriend',
  'side',
  'say',
  'wouldv',
  'cost',
  'noth',
  'tell',
  'earli',
  'even',
  'kept',
  'entertain',
  'well',
  'find',
  'entertain',
  'realli',
  'feel',
  'like',
  'anyth',
  'wrong',
  'aita'],
 ['son',
  'aiden',
  'move',
  'back',
  'us',
  'upon',
  'graduat',
  'colleg',
  'husband',
  'want',
  'husband',
  'origin',
  'plan',
  'aiden',
  'live',
  'us',
  'free',
  'stay',
  'home',
  'help',
  'disabl',
  'younger',
  'brother',
  'aident',
  'start',
  'complain',
  'need',
  'money',
  'want',
  'find',
  'job',
  'husband',
  'even',
  'offer',
  'doubl',
  'allow',
  'aiden',
  'grow',
  'tire',
  'stay',
  'home',
  'began',
  'look',
  'job',
  'year',
  'non',
  'job',
  'applic',
  'came',
  'hed',
  'appli',
  'never',
  'get',
  'back',
  'confus',
  'til',
  'recent',
  'found',
  'husband',
  'behind',
  'job',
  'applic',
  'cancel',
  'hed',
  'wait',
  'tol',
  'aiden',
  'appli',
  'proce',
  'cancel',
  'applic',
  'imperson',
  'use',
  'email',
  'blew',
  'justif',
  'tri',
  'make',
  'sure',
  'younger',
  'son',
  'care',
  'aiden',
  'said',
  'aiden',
  'big',
  'help',
  'get',
  'job',
  'affect',
  'care',
  'brother',
  'went',
  'ahead',
  'rent',
  'apart',
  'aiden',
  'told',
  'stay',
  'til',
  'find',
  'job',
  'start',
  'pay',
  'aiden',
  'hurt',
  'upon',
  'know',
  'dad',
  'husband',
  'livid',
  'found',
  'call',
  'unhing',
  'said',
  'separ',
  'boy',
  'teach',
  'aiden',
  'becom',
  'selfish',
  'care',
  'job',
  'famili',
  'also',
  'said',
  'huge',
  'decis',
  'rent',
  'apart',
  'without',
  'even',
  'run',
  'give',
  'hell',
  'call',
  'terribl',
  'mother',
  'encourag',
  'aiden',
  'selfish',
  'selfcent',
  'said',
  'need',
  'see',
  'understand',
  '[',
  'edit',
  ']',
  'thing',
  'mention',
  'husband',
  'say',
  'sinc',
  'health',
  'issu',
  'could',
  'use',
  'aiden',
  'help',
  'suggest',
  'outsid',
  'help',
  'husband',
  'refus',
  'say',
  'ask',
  'anyth',
  'anybodi',
  'son',
  'problem',
  'bodi',
  'els',
  'use',
  'money',
  'joint',
  'account',
  'pay',
  'rental',
  'apart',
  'husband',
  'said',
  'wrong',
  'major',
  'wast',
  'money',
  'sinc',
  'deal',
  'medic',
  'bill',
  'consistenli'],
 ['start',
  'back',
  'march',
  'son',
  'best',
  'friend',
  'turn',
  'thirteen',
  'famili',
  'thirteenth',
  'birthday',
  'huge',
  'deal',
  'addit',
  'massiv',
  'parti',
  'four',
  'us',
  'invit',
  'parent',
  'also',
  'took',
  'disney',
  'world',
  'invit',
  'son',
  'attend',
  'well',
  'wife',
  'hesit',
  'consent',
  'said',
  'unfair',
  'allow',
  'son',
  'go',
  'nine',
  'year',
  'old',
  'daughter',
  'cant',
  'especi',
  'sinc',
  'love',
  'disney',
  'princess',
  'said',
  'kid',
  'alway',
  'exact',
  'opportun',
  'set',
  'preced',
  'well',
  'stick',
  'daughter',
  'get',
  'similar',
  'opportun',
  'wed',
  'punish',
  'children',
  'needlessli',
  'wife',
  'reluctantli',
  'agre',
  'allow',
  'son',
  'go',
  'gave',
  'son',
  'money',
  'buy',
  'sister',
  'souvenir',
  'friend',
  'parent',
  'even',
  'bought',
  'extra',
  'stuff',
  'give',
  'still',
  'saw',
  'come',
  'back',
  'wear',
  'star',
  'war',
  'shirt',
  'mickey',
  'hat',
  'trade',
  'pin',
  'lanyard',
  'burst',
  'tear',
  'wife',
  'later',
  'said',
  'made',
  'huge',
  'mistak',
  'never',
  'let',
  'go',
  'mistakenli',
  'thought',
  'behind',
  'us',
  'well',
  'financi',
  'bil',
  'invit',
  'us',
  'visit',
  'beach',
  'hous',
  'rent',
  'summer',
  'send-off',
  'wife',
  'told',
  'want',
  'son',
  'stay',
  'dad',
  'take',
  'daughter',
  'even',
  'score',
  'told',
  'wife',
  'happen',
  'parent',
  'cant',
  'favor',
  'one',
  'child',
  'invit',
  'birthday',
  'trip',
  'kid',
  'bare',
  'know',
  'way',
  'compar',
  'left',
  '*',
  'famili',
  'vacat',
  '*',
  'im',
  'shock',
  'would',
  'even',
  'suggest',
  'thing',
  'refus',
  'allow',
  'wife',
  'angri',
  'care',
  'im',
  'punish',
  'son',
  'lucki',
  'aita'],
 ['boyfriend',
  'parent',
  'paid',
  'boyfriend',
  'sibl',
  'go',
  'flight',
  'cabo',
  'spring',
  'break',
  'becki',
  'mom',
  'seem',
  'like',
  'reason',
  'alway',
  'make',
  'snide',
  'remark',
  'parent',
  'blue',
  'collar',
  'job',
  'field',
  'nurs',
  'get',
  'airport',
  'becki',
  'got',
  'peopl',
  'first',
  'class',
  'ticket',
  'coach',
  'ticket',
  'told',
  'use',
  'free',
  'coach',
  'ticket',
  'grate',
  'go',
  'express',
  'check',
  'left',
  'long',
  'line',
  'think',
  'heck',
  'go',
  'keep',
  'cri',
  'whole',
  'time',
  'line',
  'got',
  'counter',
  'baggag',
  'fee',
  'boyfriend',
  'time',
  'never',
  'help',
  'coach',
  'line',
  'said',
  'anyth',
  'mom',
  'look',
  'mom',
  'smug',
  'face',
  'pay',
  'check',
  'baggag',
  'fee',
  'let',
  'frustrat',
  'attend',
  'start',
  'cri',
  'basic',
  'said',
  'go',
  'famili',
  'sweeti',
  'appreci',
  'continu',
  'cri',
  'took',
  'luggag',
  'got',
  'got',
  'line',
  'super',
  'sweet',
  'check',
  'woman',
  'upset',
  'treat',
  'start',
  'cri',
  'boyfriend',
  'airport',
  'mother',
  'treat',
  'broke',
  'airport',
  'mother',
  'embarrass',
  'told',
  'bitch',
  'boyfriend',
  'blow',
  'phone',
  'say',
  'could',
  'mother',
  'back',
  'vacat',
  'last',
  'minut',
  'wast',
  'everyon',
  'time',
  'money'],
 ['mil',
  'im',
  'gal',
  'btw',
  'lol',
  'came',
  'stay',
  'us',
  'week',
  'til',
  'home',
  'renov',
  'christma',
  'problem',
  'randomli',
  'walk',
  'im',
  'bathroom',
  'thank',
  'seen',
  'nake',
  'start',
  'pick',
  'behavior',
  'second',
  'time',
  'week',
  'shed',
  'barg',
  'turn',
  'say',
  'oh',
  'sorri',
  'close',
  'door',
  'tri',
  'talk',
  'husband',
  'kept',
  'ignor',
  'flatout',
  'said',
  'accid',
  'seen',
  'nake',
  'faaaammmillli',
  'serious',
  'said',
  'lock',
  'couldv',
  'use',
  'past',
  'trauma',
  'idea',
  'lockingb',
  'lock',
  'room',
  'brother',
  'lock',
  'bathroom',
  'came',
  'idea',
  'id',
  'go',
  'insid',
  'bathroom',
  'pretend',
  'use',
  'wait',
  'come',
  'caus',
  'honestli',
  'deliber',
  'point',
  'accid',
  'barg',
  'shed',
  'see',
  'weirdawkward',
  'posit',
  'exampl',
  'ballet',
  'stand',
  'stand',
  'toilet',
  'stand',
  'face',
  'wall',
  'hand',
  'fulli',
  'cloth',
  'cours',
  'could',
  'see',
  'awkward',
  'weird',
  'would',
  'shed',
  'stand',
  'second',
  'tri',
  'figur',
  'haliri',
  'first',
  'see',
  'initi',
  'confus',
  'told',
  'husband',
  'claim',
  'caught',
  'practic',
  'ritual',
  'bathroom',
  'clear',
  'thing',
  'reveal',
  'reason',
  'husband',
  'livid',
  'call',
  'childish',
  'said',
  'made',
  'mom',
  'feel',
  'terrifiedweird',
  'behavior',
  'said',
  'act',
  'matur',
  'lock',
  'damn',
  'door',
  'instead',
  'play',
  'mind',
  'game',
  'edit',
  'lol',
  'um',
  'came',
  'back',
  'saw',
  'liter',
  'peopl',
  'omg',
  'feel',
  'embarrass',
  'glad',
  'went',
  'anonym',
  'lol',
  'seriouslyim',
  'look',
  'screen',
  'like',
  'im',
  'famou',
  'serious',
  'thoughmi',
  'husband',
  'mom',
  'extrem',
  'upset',
  'still',
  'think',
  'ridicul',
  'demand',
  'apolog',
  'goe',
  'back',
  'home',
  'im',
  'sure',
  'apolog',
  'ye',
  'problem',
  'use',
  'lock',
  'still',
  'feel',
  'wrong',
  'mayb',
  'im',
  'wrong',
  'least',
  'got',
  'appar',
  'lol',
  'bit',
  'chuckl',
  '😅🤣',
  'also',
  'im',
  'sure',
  'thanksgiv',
  'dinner',
  'hella',
  'awkward',
  'tomorrow',
  'especi',
  'happen',
  'lol'],
 ['use',
  '*',
  'escort',
  '*',
  '\\',
  '*',
  'oker',
  'im',
  'proud',
  'also',
  'give',
  'fuck',
  'keep',
  'studi',
  'roof',
  'head',
  'met',
  'fiancé',
  'tho',
  'never',
  'client',
  'began',
  'date',
  'three',
  'four',
  'month',
  'bil',
  'expos',
  'idea',
  'found',
  '*',
  'way',
  'fiancé',
  'knew',
  '*',
  'thu',
  'come',
  'clean',
  'front',
  'whole',
  'famili',
  'ye',
  'ye',
  'know',
  'ye',
  'care',
  'year',
  'ago',
  'time',
  'got',
  'span',
  '-',
  'month',
  'mil',
  'fiancé',
  'aunt',
  'cousin',
  'polic',
  'husband',
  'around',
  'realli',
  'weird',
  'tbh',
  'dude',
  'like',
  '-yo',
  'desper',
  'fiancé',
  'shut',
  'bullshit',
  'hard',
  'even',
  'famili',
  'still',
  'give',
  'side',
  'eye',
  'time',
  'time',
  'thought',
  'behind',
  'us',
  'propos',
  'last',
  'year',
  'five',
  'month',
  'ago',
  'found',
  'pregnant',
  'realli',
  'happi',
  'told',
  'famili',
  'soon',
  'knew',
  'sister',
  'young',
  'brother',
  'happi',
  'us',
  'mom',
  'took',
  'asid',
  '*',
  'beg',
  '*',
  'honest',
  'ask',
  'realli',
  'fiancé',
  'child',
  'taken',
  'aback',
  'roll',
  'eye',
  'said',
  'ye',
  'gave',
  'shitti',
  'speech',
  'want',
  'make',
  'sure',
  'happi',
  'grandmoth',
  'well',
  'last',
  'weekend',
  'parent',
  'famili',
  'friendsand',
  'talk',
  'name',
  'might',
  'look',
  'small',
  'talk',
  'love',
  'regardless',
  'alway',
  '*',
  'oh',
  'hope',
  'get',
  'nose',
  '*',
  '*',
  'mmh',
  'like',
  'eye',
  'hope',
  'get',
  '*',
  'comment',
  'fil',
  'said',
  'children',
  'birthmark',
  'inner',
  'tight',
  'even',
  'grandchildren',
  'one',
  'sil',
  'kid',
  'got',
  'babi',
  'might',
  'said',
  'know',
  'got',
  'may',
  'well',
  'boy',
  'brother',
  'brother',
  'began',
  'laugh',
  'fiancé',
  'got',
  'mad',
  'could',
  'say',
  'anyth',
  'said',
  'get',
  'fil',
  'yeah',
  'run',
  'famili',
  'said',
  'get',
  'would',
  'get',
  'began',
  'get',
  'nervou',
  'said',
  'know',
  'joke',
  'op',
  'said',
  'get',
  'laugh',
  'explain',
  'got',
  'point',
  'friend',
  'said',
  'hey',
  'funni',
  'excus',
  'left',
  'later',
  'fiancé',
  'bil',
  'came',
  'said',
  'wrong',
  'embarrass',
  'like',
  'hous',
  'knew',
  'joke',
  '*',
  'past',
  '*',
  'surpris',
  'theyr',
  'demand',
  'apolog',
  'fil'],
 ['obes',
  'like',
  'comfort',
  'two',
  'seat',
  'plane',
  'type',
  'obes',
  'well',
  'awar',
  'realli',
  'like',
  'bother',
  'peopl',
  'weight',
  'week',
  'ago',
  'go',
  'confer',
  'plane',
  'go',
  'alon',
  'usual',
  'fli',
  'boyfriend',
  'buy',
  'two',
  'sinc',
  'sit',
  'next',
  'bought',
  'two',
  'seat',
  'fit',
  'one',
  'side',
  'usual',
  'touch',
  'person',
  'next',
  'feel',
  'uncomfort',
  'happen',
  'gave',
  'nasti',
  'look',
  'felt',
  'extrem',
  'uncomfort',
  'whole',
  'flight',
  'sat',
  'plane',
  'put',
  'armrest',
  'would',
  'realli',
  'comfort',
  'coupl',
  'came',
  'sat',
  'next',
  'got',
  'separ',
  'seat',
  'notic',
  'seat',
  'next',
  'empti',
  'exactli',
  'afraid',
  'happen',
  'side',
  'kept',
  'touch',
  'guy',
  'next',
  'even',
  'push',
  'bit',
  'move',
  'seat',
  'feel',
  'extrem',
  'uncomfort',
  'ask',
  'could',
  'go',
  'seat',
  'bought',
  'one',
  'comfort',
  'told',
  'sinc',
  'seat',
  'empti',
  'want',
  'girlfriend',
  'well',
  'told',
  'understand',
  'feel',
  'uncomfort',
  'paid',
  'second',
  'seat',
  'exactli',
  'happen',
  'refus',
  'start',
  'chat',
  'gf',
  'call',
  'flight',
  'attend',
  'quietli',
  'told',
  'happen',
  'ask',
  'guy',
  'leav',
  'second',
  'seat',
  'gf',
  'gave',
  'nasti',
  'look',
  'gf',
  'mumbl',
  'someth',
  'like',
  'fuck',
  'fat',
  'bitch',
  'breath',
  'noth',
  'directli',
  'asshol',
  'insist',
  'leav'],
 ['live',
  'dad',
  'girlfriend',
  'year',
  'daughter',
  'coupl',
  'month',
  'mom',
  'visit',
  'sick',
  'grandfath',
  'sweden',
  'ive',
  'ever',
  'stay',
  'dad',
  'weekend',
  'hard',
  'get',
  'use',
  'live',
  'gf',
  'kid',
  'full',
  'time',
  'kid',
  'super',
  'whinni',
  'pretti',
  'spoil',
  'gf',
  'dote',
  'usual',
  'stay',
  'room',
  'today',
  'gf',
  'take',
  'daughter',
  'special',
  'outing',
  'pass',
  'math',
  'test',
  'dad',
  'suggest',
  'go',
  'girl',
  'day',
  'want',
  'say',
  'knew',
  'want',
  'get',
  'know',
  'gf',
  'gf',
  'daughter',
  'better',
  'agre',
  'gave',
  'gf',
  '$',
  'spend',
  'outing',
  'spent',
  'day',
  'go',
  'store',
  'gf',
  'daughter',
  'like',
  'mall',
  'complex',
  'gf',
  'end',
  'buy',
  'shit',
  'ton',
  'cloth',
  'makeup',
  'stuff',
  'rememb',
  'way',
  'back',
  'home',
  'gf',
  'stop',
  'starbuck',
  'caus',
  'daughter',
  'want',
  'drink',
  'cakepop',
  'order',
  'drink',
  'daughter',
  'cake',
  'pop',
  'ask',
  'could',
  'get',
  'someth',
  'said',
  'ran',
  'money',
  'shed',
  'get',
  'someth',
  'next',
  'time',
  'got',
  'order',
  'ask',
  'could',
  'one',
  'cakepop',
  'gf',
  'said',
  'daughter',
  'treat',
  'hard',
  'work',
  'would',
  'wrong',
  'take',
  'one',
  'sinc',
  'anyth',
  'deserv',
  'reward',
  'im',
  'gon',
  'na',
  'lie',
  'pretti',
  'upset',
  'got',
  'back',
  'home',
  'dad',
  'saw',
  'drink',
  'ask',
  'mine',
  'told',
  'allow',
  'get',
  'one',
  'caus',
  'deserv',
  'gf',
  'got',
  'upset',
  'said',
  'twist',
  'word',
  'daughter',
  'said',
  'greedi',
  'jealou',
  'know',
  'im',
  'entitl',
  'drink',
  'cakepop',
  'also',
  'think',
  'wrong',
  'littl',
  'annoy',
  'aita'],
 ['ive',
  'marri',
  'nd',
  'husband',
  'mike',
  'year',
  'jokest',
  'love',
  'crack',
  'joke',
  'time',
  'especi',
  'like',
  'joke',
  'brother',
  'ethan',
  'wife',
  'ethan',
  'use',
  'okay',
  'til',
  'start',
  'complain',
  'mike',
  'take',
  'far',
  'joke',
  'context',
  'ethan',
  'wife',
  'kid',
  'adopt',
  'boy',
  'joey',
  'year',
  'ago',
  'mike',
  'make',
  'silli',
  'lightheart',
  'joke',
  'involv',
  'joey',
  'bio',
  'parent',
  'way',
  'mess',
  'ethan',
  'wife',
  'alreadi',
  'talk',
  'mike',
  'tell',
  '%',
  'mean',
  'harm',
  'tri',
  'get',
  'react',
  'fast',
  'forward',
  'nye',
  'parent',
  'host',
  'big',
  'celebratori',
  'dinner',
  'ethan',
  'wife',
  'came',
  'eat',
  'dinner',
  'mike',
  'decid',
  'tell',
  'knock-knock',
  'joke',
  'ethan',
  'said',
  'knock',
  'knock',
  'ethan',
  'laugh',
  'said',
  'mike',
  'repli',
  'joey',
  'bio',
  'parent',
  'burst',
  'laugh',
  'silenc',
  'took',
  'ethan',
  'facial',
  'experss',
  'chang',
  'wife',
  'call',
  'mike',
  'idiot',
  'mike',
  'repli',
  'heyrelax',
  'joke',
  'argument',
  'ensu',
  'dinner',
  'paus',
  'parent',
  'suddenli',
  'told',
  'mik',
  'leav',
  'thought',
  'harsh',
  'tri',
  'speak',
  'get',
  'calm',
  'mom',
  'insist',
  'mike',
  'leav',
  'left',
  'mike',
  'complain',
  'whole',
  'time',
  'overreact',
  'call',
  'mom',
  'later',
  'told',
  'mike',
  'line',
  'hurt',
  'joke',
  'touchi',
  'topic',
  'told',
  'wrong',
  'defend',
  'say',
  'joke',
  'said',
  'ruin',
  'ny',
  'famili',
  'told',
  'dad',
  'ruin',
  'ny',
  'celebr',
  'escal',
  'situat',
  'kick',
  'told',
  'could',
  'talk',
  'one',
  'ruin',
  'ny',
  'celebr',
  'call',
  'delusion',
  'statement',
  'hung',
  'talk',
  'day',
  'tri',
  'contact',
  'ethan',
  'respons'],
 ['fianc',
  'male',
  'femal',
  'get',
  'marri',
  'soon',
  'much',
  'disagre',
  'wed',
  'plan',
  'except',
  'food',
  'famili',
  'vegan',
  'mani',
  'reason',
  'chose',
  'lifestyl',
  'one',
  'histori',
  'health',
  'issu',
  'fianc',
  'famili',
  'complet',
  'opposit',
  'theyr',
  'hardcor',
  'meat',
  'eater',
  'fine',
  'obvious',
  'howev',
  'decid',
  'wed',
  'food',
  'menu',
  'want',
  'add',
  '-',
  'vegan',
  'option',
  'fianc',
  'mom',
  'object',
  'say',
  'wast',
  'money',
  'food',
  'real',
  'food',
  'also',
  'argu',
  'would',
  'offens',
  'guest',
  'suggest',
  'vegan',
  'option',
  'good',
  'ol',
  'salad',
  '&',
  'appet',
  'mom',
  'want',
  'cupcak',
  'lol',
  'said',
  'one',
  'famili',
  'pay',
  'two',
  'want',
  'make',
  'guest',
  'feel',
  'welcom',
  'treat',
  'second',
  'class',
  'citizen',
  'serv',
  'salad',
  'fianc',
  'made',
  'face',
  'said',
  'vegan',
  'eat',
  'refus',
  'argu',
  'said',
  'final',
  'day',
  'found',
  'cancel',
  'vegan',
  'option',
  'took',
  'menu',
  'complet',
  'behind',
  'back',
  'seeth',
  'call',
  'work',
  'kept',
  'hang',
  'went',
  'straight',
  'workplac',
  'confront',
  'flip',
  'stun',
  'see',
  'first',
  'said',
  'mom',
  'idea',
  'told',
  'go',
  'home',
  'make',
  'scene',
  'offic',
  'fight',
  'continu',
  'home',
  'defend',
  'say',
  'sort',
  'made',
  'resort',
  'kept',
  'brush',
  'though',
  'input',
  'refus',
  'accommad',
  'famili',
  'plenti',
  'meat',
  'option',
  'cant',
  'get',
  '-',
  'vegan',
  'option',
  'im',
  'pay',
  'yell',
  'wed',
  'famili',
  'famili',
  'said',
  'fine',
  'theyll',
  'figur',
  'told',
  'let',
  'go',
  'refus',
  'aita',
  'put',
  'foot',
  'updat',
  'mom',
  'messag',
  'earlier',
  'tri',
  'get',
  'listen',
  'say',
  'kept',
  'ignor',
  'phonecal',
  'spent',
  'long',
  'wall',
  'text',
  'address',
  'son',
  'workplac',
  'call',
  'kind',
  'stuff',
  'immatur',
  'unhing',
  'went',
  'explain',
  'notic',
  'famili',
  'kept',
  'act',
  'dismiss',
  'son',
  'input',
  'contribut',
  'wed',
  'said',
  'notic',
  'behavior',
  'toward',
  'entir',
  'famili',
  'want',
  'speak',
  'earlier',
  'tri',
  'keep',
  'peac',
  'went',
  'address',
  'food',
  'menu',
  'issu',
  'deni',
  'involv',
  'cancel',
  'vegan',
  'option',
  'mean',
  'support',
  'son',
  'decis',
  'moreov',
  'thought',
  'soooo',
  'respons',
  'make',
  'move',
  'continu',
  'refus',
  'see',
  'stuff',
  'wast',
  'money',
  'also',
  'point',
  'kept',
  'say',
  'paid',
  'said',
  'technic',
  'money',
  'mine',
  '*',
  '*',
  'get',
  'marri',
  'suggest',
  'wisen',
  'get',
  'rid',
  'money',
  'paid',
  'mental',
  'final',
  'mention',
  'bad',
  'whole',
  'situat',
  'make',
  'look',
  'said',
  'son',
  'alreadi',
  'offer',
  'number',
  'compromis',
  'chose',
  'brush',
  'decid',
  'make',
  'weird',
  'hill',
  'die',
  'said',
  'son',
  'upset',
  'famili',
  'well',
  'hear',
  'suggest',
  'agrr',
  'compromis',
  'done',
  'piss',
  'beyond',
  'belief',
  'respond',
  'let',
  'know',
  'im',
  'still',
  'stand',
  'ground',
  'even',
  'ill',
  'call',
  'whole',
  'wed',
  'honestli',
  'ridicul',
  'mom',
  'dadthey',
  'even',
  'know',
  'say',
  'anymor',
  'appar',
  'fianc',
  'saw',
  'respons',
  'tri',
  'call',
  'right',
  'im',
  'wait',
  'get',
  'home',
  'see',
  'still',
  'insist',
  'stanc',
  'took',
  'ill',
  'updat',
  'anyth',
  'worth',
  'ad',
  'talk'],
 ['gave',
  'birth',
  'son',
  'week',
  'ago',
  'husband',
  'mom',
  'camp',
  'live',
  'room',
  'ever',
  'sinc',
  'invit',
  'peopl',
  'make',
  'mess',
  'hous',
  'etc',
  'said',
  'noth',
  'open',
  'mouth',
  'husband',
  'would',
  'start',
  'scold',
  'say',
  'mom',
  'help',
  'grate',
  'ignor',
  'focu',
  'son',
  'handl',
  'feed',
  'diaper',
  'chang',
  'clean',
  'wipe',
  'get',
  'hour',
  'sleep',
  'husband',
  'mom',
  'realli',
  'help',
  'babi',
  'thought',
  'well',
  'least',
  'cook',
  'us',
  'last',
  'night',
  'bedroom',
  'breastfeed',
  'son',
  'knew',
  'late',
  'dinner',
  'thought',
  'husband',
  'mom',
  'save',
  'plate',
  'got',
  'done',
  'son',
  'walk',
  'room',
  'saw',
  'husband',
  'mom',
  'sit',
  'watch',
  'tv',
  'ask',
  'dinner',
  'husband',
  'said',
  'probabl',
  'stove',
  'walk',
  'toward',
  'kitchen',
  'mom',
  'loudli',
  'said',
  'save',
  'food',
  'absolut',
  'shock',
  'ask',
  'simpli',
  'said',
  'well',
  'see',
  'dinner',
  'tabl',
  'thought',
  'hungri',
  'lost',
  'yell',
  'feed',
  'son',
  'cours',
  'hungri',
  'actual',
  'starv',
  'shrug',
  'shoulder',
  'said',
  'fault',
  'show',
  'dinner',
  'knew',
  'damn',
  'well',
  'son',
  'eaten',
  'thing',
  'hour',
  'husband',
  'ask',
  'rais',
  'voic',
  'mom',
  'told',
  'saw',
  'happen',
  'think',
  'hungri',
  'need',
  'food',
  'lash',
  'ask',
  'fuck',
  'want',
  'said',
  'know',
  'mayb',
  'save',
  'food',
  'defend',
  'say',
  'selfish',
  'basic',
  'berat',
  'eat',
  'dinner',
  'work',
  'long',
  'hour',
  'depart',
  'argument',
  'ensu',
  'went',
  'insid',
  'bedroom',
  'pack',
  'small',
  'bag',
  'son',
  'call',
  'brother',
  'come',
  'take',
  'mom',
  'hous',
  'husband',
  'blew',
  'make',
  'way',
  'argu',
  'door',
  'told',
  'uncal',
  'childish',
  'told',
  'take',
  'mom',
  'anymor',
  'said',
  'asham',
  'talk',
  'like',
  'liter',
  'put',
  'life',
  'paus',
  'could',
  'help',
  'brother',
  'came',
  'got',
  'car',
  'left',
  'pick',
  'food',
  'way',
  'ate',
  'like',
  'hungri',
  'bear',
  'husband',
  'never',
  'stop',
  'call',
  'though',
  'last',
  'text',
  'call',
  'nut',
  'demand',
  'return',
  'today',
  'said',
  'miss',
  'mom',
  'like',
  'clean',
  'home',
  'healthi',
  'food',
  'would',
  'like',
  'stay',
  'lost',
  'got',
  'famili',
  'involv',
  'accus',
  'keep',
  'son',
  'away',
  'punish',
  'food',
  '*',
  '*',
  'editok',
  'say',
  'im',
  'keep',
  'husband',
  'away',
  'son',
  'promis',
  'full',
  'access',
  'choos',
  'come',
  'simpli',
  'hat',
  'mom',
  'refus',
  'room',
  'long',
  'go',
  'stay',
  'tell',
  'least',
  'im',
  'pamper',
  'treat',
  'like',
  'princess',
  'mom',
  'dad',
  'brother',
  '-',
  'heck',
  'get',
  'treatment',
  'home',
  'husband',
  'come',
  'mom',
  'hous',
  'want',
  'see',
  'son',
  'badli',
  'doubt',
  'hell',
  'sinc',
  'pride',
  'person',
  'might',
  'hurt',
  'ego',
  '*',
  '*',
  '*',
  '*',
  'one',
  'question',
  'answer',
  'caus',
  'lot',
  'peopl',
  'ask',
  'clarifi',
  'ye',
  'depart',
  '=',
  'polic',
  'depart',
  'polic',
  'offic',
  'im',
  'sorri',
  'got',
  'confus',
  'thought',
  'clear',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'ok',
  'felt',
  'sorri',
  'decid',
  'send',
  'coupl',
  'pictur',
  'took',
  'son',
  'sleep',
  'respon',
  'long',
  'wall',
  'text',
  'berat',
  'left',
  'right',
  'claim',
  'rub',
  'face',
  'cant',
  'come',
  'see',
  'son',
  'know',
  'call',
  'word',
  'never',
  'til',
  'im',
  'shaken',
  'mad',
  'right',
  'realli',
  'thought',
  'someth',
  'nice',
  'consider',
  'sympathi',
  'ive',
  'decid',
  'get',
  'rest',
  'stuff',
  'tomorrow',
  'need',
  'time',
  'space',
  'abl',
  'think',
  'done',
  'said',
  'feel',
  'terribl',
  'right',
  'least',
  'got',
  'dinner',
  'tonight',
  'unlik',
  'home',
  'mom',
  'first',
  'came',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'oh',
  'god',
  'cant',
  'even',
  'find',
  'place',
  'start',
  'sent',
  'pictur',
  'mom',
  'cook',
  'dinner',
  'kitchen',
  'nearli',
  'pm',
  'say',
  'repay',
  'pictur',
  'sent',
  'earlier',
  'make',
  'dinner',
  'includ',
  'real',
  'time',
  'justoh',
  'god',
  'im',
  'liter',
  'laugh',
  'like',
  'serious',
  'im',
  'truli',
  'speechless',
  'respond',
  'yet',
  'think',
  'im',
  'angri',
  'right',
  'may',
  'regret',
  'word',
  'say',
  'im',
  'gon',
  'na',
  'put',
  'phone',
  'silent',
  'someth',
  'want',
  'ruin',
  'yet',
  'anoth',
  'night',
  'tomorrow',
  'im',
  'go',
  'collect',
  'mine',
  'son',
  'stuff',
  'could',
  'stay',
  'longer',
  'mom',
  'hous',
  'thank',
  'god',
  'went',
  'anonym',
  'might',
  'updat',
  'later',
  'anyth',
  'new',
  'happen',
  'goodnight',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'god',
  'cant',
  'believ',
  'im',
  'back',
  'sent',
  'text',
  'say',
  'come',
  'could',
  'get',
  'mom',
  'hous',
  'tomorrow',
  'like',
  'liter',
  'leav',
  'hous',
  'said',
  'hour',
  'could',
  'see',
  'son',
  'also',
  'talk',
  'even',
  'know',
  'im',
  'come',
  'tomorrow',
  'pick',
  'stuff',
  'babi',
  'im',
  'freak',
  'like',
  'absolut',
  'happen',
  'dream',
  'tell',
  'mom',
  'leav',
  'hous',
  'crazi',
  'line',
  'request',
  'im',
  'sure',
  'wether',
  'respond',
  'say',
  'ill',
  'tri',
  'get',
  'sleep',
  'see',
  'goe',
  'morn',
  'im',
  'tire',
  'anyth',
  'want',
  'put',
  'read',
  'thread',
  'ill',
  'let',
  'know',
  'happen',
  'tomorrow',
  'aright',
  '*',
  '*'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m',
  'year',
  'sinc',
  'made',
  'post',
  'whenev',
  'read',
  'post',
  'like',
  'mine',
  'im',
  'alway',
  'wonder',
  'op',
  'leav',
  'asshol',
  'care',
  'left',
  'asshol',
  'lot',
  'nose',
  'way',
  'control',
  'ex',
  'believ',
  'smartest',
  'person',
  'room',
  'someth',
  'differ',
  'would',
  'wrong',
  'must',
  'correct',
  'im',
  'say',
  'everyon',
  'respons',
  'post',
  'gave',
  'revel',
  'immedi',
  'knew',
  'nail',
  'coffin',
  'im',
  'live',
  'within',
  'hour',
  'parent',
  'opposit',
  'side',
  'countri',
  'job',
  'caregiv',
  'plan',
  'go',
  'grad',
  'school',
  'social',
  'worker',
  'boyfriend',
  'tri',
  'control',
  'everi',
  'aspect',
  'life',
  'go',
  'groceri',
  'shop',
  'im',
  'stress',
  'accident',
  'buy',
  'wrong',
  'brand',
  'pasta',
  'right',
  'brand',
  'pasta',
  'live',
  'differ',
  'state',
  'still',
  'get',
  'juic',
  'concentr',
  'ive',
  'switch',
  'pre-ground',
  'coffe',
  'fuck',
  'want',
  'none',
  'wouldv',
  'happen',
  'id',
  'stay',
  'yeah',
  'thank',
  'everyon',
  'play',
  'tini',
  'role',
  'help',
  'see',
  'unhealthi',
  'relationship'],
 ['mother',
  'triplet',
  'month',
  'old',
  'never',
  'expect',
  'ever',
  'life',
  'id',
  'mother',
  'triplet',
  'first',
  'becam',
  'pregnant',
  'definit',
  'last',
  'thing',
  'mind',
  'im',
  'home',
  'babi',
  'day',
  'long',
  'even',
  'transfer',
  'educ',
  'onlin',
  'sometim',
  'need',
  'fresh',
  'air',
  'especi',
  'cant',
  'get',
  'stop',
  'cri',
  'find',
  'get',
  'super',
  'frustrat',
  'point',
  'tear',
  'honestli',
  'soo',
  'hard',
  'dad',
  'help',
  'ether',
  'work',
  'school',
  'fianc',
  'parent',
  'rent',
  'us',
  'main',
  'floor',
  'apart',
  'step',
  'outsid',
  'im',
  'liter',
  'sit',
  'chair',
  'right',
  'besid',
  'door',
  'plu',
  'babi',
  'monitor',
  'step',
  'room',
  'camera',
  'liter',
  'see',
  'hear',
  'anyth',
  'happen',
  'id',
  'abl',
  'quickli',
  'get',
  'abl',
  'step',
  'outsid',
  'minut',
  'take',
  'breather',
  'realli',
  'import',
  'start',
  'mini',
  'panic',
  'attack',
  'cant',
  'get',
  'stop',
  'cri',
  'get',
  'realli',
  'frustrat',
  'feel',
  'super',
  'overwhelm',
  'abl',
  'go',
  'outsid',
  'give',
  'chanc',
  'clam',
  'fianc',
  'came',
  'home',
  'sit',
  'outsid',
  'babi',
  'cri',
  'freak',
  'call',
  'horribl',
  'mom',
  'bunch',
  'name',
  'im',
  'gon',
  'na',
  'list',
  'think',
  'super',
  'neglect',
  'put',
  'babi',
  'harm',
  'way',
  'even',
  'told',
  'parent',
  'everyon',
  'seem',
  'realli',
  'grow',
  'system',
  'fianc',
  'famili',
  'famili',
  'ever',
  'known',
  'break',
  'hurt',
  'upset',
  'realli',
  'think',
  'anyth',
  'wrong',
  'put',
  'babi',
  'harm',
  'way',
  'seem',
  'think',
  'otherwis',
  'wonder',
  'apolog',
  'action',
  '-hole',
  'situat',
  '~~~~~~~~~',
  'updat',
  '~~~~~~~~~',
  'decid',
  'show',
  'fianc',
  'thread',
  'first',
  'realli',
  'upset',
  'share',
  'person',
  'problem',
  'stranger',
  'internet',
  'even',
  'though',
  'anonym',
  'end',
  'chanc',
  'clam',
  'hear',
  'guy',
  'actual',
  'apolog',
  'promis',
  'hed',
  'involv',
  'parent',
  'even',
  'take',
  'parent',
  'class',
  'ill',
  'hold',
  'wan',
  'na',
  'thank',
  'everyon',
  'support',
  'give',
  'brought',
  'tear',
  'eye',
  'happi',
  'tear',
  'see',
  'support',
  'stranger',
  'internet',
  'think',
  'ever',
  'receiv',
  'much',
  'support',
  'cant',
  'believ',
  'much',
  'attent',
  'post',
  'even',
  'got',
  'plu',
  'award',
  'thank',
  'much'],
 ['boyfriend',
  'almost',
  'two',
  'year',
  'get',
  'marri',
  'eventu',
  'prioriti',
  'mom',
  'let',
  'us',
  'share',
  'bed',
  'come',
  'see',
  'reason',
  'came',
  'last',
  'summer',
  'boyfriend',
  'suggest',
  'rent',
  'hotel',
  'could',
  'privaci',
  'comfort',
  'bed',
  'drove',
  'mom',
  'nut',
  'bypass',
  'ittl',
  'rule',
  'drop',
  'entir',
  'time',
  'made',
  'promis',
  'boyfriend',
  'mom',
  'dad',
  'retir',
  'mexico',
  'realli',
  'chill',
  'made',
  'plan',
  'come',
  'visit',
  'christma',
  'christian',
  'realli',
  'care',
  'see',
  'son',
  'regard',
  'religi',
  'holiday',
  'tell',
  'parent',
  'come',
  'mom',
  'ask',
  'thanksgiv',
  'go',
  'hold',
  'promis',
  'stay',
  'hotel',
  'christma',
  'answer',
  'truth',
  'would',
  'stay',
  'hotel',
  'sit',
  'balconi',
  'futur',
  'in-law',
  'condo',
  'look',
  'carribean',
  'wait',
  'sunris',
  'enjoy',
  'peac',
  'quiet',
  'made',
  'mistak',
  'go',
  'onlin',
  'yesterday',
  'saw',
  'bunch',
  'post',
  'mom',
  'sister',
  'jerk',
  'lie',
  'plan',
  'may',
  'littl',
  'tipsi',
  'last',
  'night',
  'decid',
  'respond',
  'said',
  'ridicul',
  'tri',
  'tell',
  'share',
  'room',
  'boyfriend',
  'keep',
  'promis',
  'stay',
  'hotel',
  'plan',
  'put',
  'everyth',
  'facebook',
  'would',
  'avoid',
  'visit',
  'forese',
  'futur',
  'took',
  'post',
  'peopl',
  'start',
  'crap',
  'tri',
  'control',
  'peopl',
  'agre',
  'text',
  'call',
  'say',
  'asshol',
  'make',
  'look',
  'bad',
  'ask',
  'tri',
  'make',
  'look',
  'good',
  'post',
  'stop',
  'text',
  'voic',
  'mail',
  'morn',
  'im',
  'kind',
  'like',
  'idea',
  'skip',
  'drama',
  'miss',
  'dad',
  'blameless',
  'aita',
  'edit',
  'im',
  'troubl',
  'wrap',
  'head',
  'around',
  'coupl',
  'thing',
  'keep',
  'repeat',
  'stay',
  'hotel',
  'break',
  'rule',
  'adult',
  'choic',
  'mani',
  'guy',
  'fli',
  'across',
  'countri',
  'drive',
  'hour',
  'stay',
  'one',
  'night'],
 ['fianc',
  'get',
  'marri',
  'decemb',
  'mom',
  'intrus',
  'type',
  'nice',
  'overal',
  'wesomewhat',
  'get',
  'along',
  'hate',
  'admit',
  'wed',
  'plan',
  'absolut',
  'nightmar',
  'mom',
  'agre',
  'thing',
  'fianc',
  'said',
  'sinc',
  'son',
  'respect',
  'appreci',
  'vision',
  'wed',
  'insist',
  'come',
  'along',
  'wed',
  'dress',
  'shop',
  'took',
  'mom',
  'friend',
  'lucki',
  'found',
  'look',
  'pick',
  'dress',
  'like',
  'much',
  'said',
  'alway',
  'pictur',
  'son',
  'bride',
  'mom',
  'friend',
  'thought',
  'line',
  'creepi',
  'thought',
  'dress',
  'somewhat',
  'creepi',
  'toooootal',
  'type',
  'apolog',
  'thank',
  'vision',
  'told',
  'id',
  'alreadi',
  'decid',
  'dress',
  'envis',
  'wear',
  'wed',
  'got',
  'pissi',
  'appar',
  'mustv',
  'told',
  'fianc',
  'came',
  'home',
  'even',
  'rant',
  'made',
  'mom',
  'upset',
  'turn',
  'help',
  'choos',
  'wed',
  'dress',
  'exclud',
  'process',
  'ask',
  'process',
  'duh',
  'wed',
  'dressmi',
  'wed',
  'dress',
  'realli',
  'get',
  'get',
  'say',
  'got',
  'upset',
  'said',
  'attitud',
  'mine',
  'work',
  'mom',
  'said',
  'consid',
  'dress',
  'mom',
  'want',
  'buy',
  'especi',
  'know',
  'dress',
  'much',
  'differ',
  'anyway',
  'like',
  'said',
  'told',
  'ye',
  'differentlik',
  'much',
  'differ',
  'anyway',
  'argu',
  'drop',
  'yesterday',
  'came',
  'home',
  'found',
  'return',
  'wed',
  'dress',
  'replac',
  'one',
  'mom',
  'want',
  'call',
  'straightforward',
  'lost',
  'start',
  'scream',
  'ask',
  'calmn',
  'realli',
  'give',
  'dress',
  'chanc',
  'refus',
  'even',
  'listen',
  'scream',
  'without',
  'give',
  'chanc',
  'speak',
  'got',
  'home',
  'argument',
  'went',
  'stay',
  'one',
  'friend',
  'kept',
  'call',
  'call',
  'text',
  'say',
  'overreact',
  'wed',
  'cool',
  'scream',
  'insist',
  'give',
  'dress',
  'chanc',
  'went',
  'mom',
  'vision',
  'good',
  'intent',
  'want',
  'best',
  'futur',
  'daughter',
  'inlaw',
  'mom',
  'livid',
  'want',
  'go',
  'scream',
  'mom',
  'dad',
  'said',
  'worth',
  'ruin',
  'relationship',
  'inlaw',
  'suggest',
  'wisen',
  'go',
  'flow',
  'much',
  'abl',
  'pick',
  'wed',
  'dress',
  'without',
  'guilt',
  'keep',
  'peac',
  'aita',
  'reaction',
  'etd',
  '&',
  'im',
  'edit',
  'answer',
  'frequent',
  'question',
  'get',
  'dress',
  'pick',
  'crazi',
  'type',
  'issu',
  'start',
  'wed',
  'plan',
  'thingslik',
  'way',
  'mani',
  'thing',
  'agre',
  'vision',
  'forquit',
  'pay',
  'dress',
  'obvious',
  'fianc',
  'dad',
  'deceas',
  'also',
  'mom',
  'suffer',
  'multipl',
  'health',
  'condit',
  'daughter',
  'one',
  'son',
  'still',
  'presist'],
 ['background',
  'brother',
  'dave',
  'marri',
  'sarah',
  'children',
  'yet',
  'son',
  'turn',
  'four',
  'three-month-old',
  'daughter',
  'husband',
  'husband',
  'live',
  'belgium',
  'time',
  'travel',
  'back',
  'visit',
  'famili',
  'month',
  'england',
  'home',
  'speak',
  'english',
  'french',
  'children',
  'husband',
  'belgian',
  'right',
  'son',
  'sweet',
  'phase',
  'hell',
  'sometim',
  'mix',
  'two',
  'languag',
  'say',
  'coupl',
  'word',
  'english',
  'french',
  'sentenc',
  'vice-versa',
  'never',
  'pose',
  'problem',
  'us',
  'even',
  'staff',
  'nurseri',
  'reassur',
  'us',
  'common',
  'tend',
  'grow',
  'start',
  'school',
  'sister-in-law',
  'decid',
  'problem',
  'visit',
  'parent',
  'notic',
  'son',
  'shell',
  'correct',
  'realli',
  'rude',
  'wherea',
  'husband',
  'gentli',
  'correct',
  'anyway',
  'visit',
  'moment',
  'decid',
  'instead',
  'correct',
  'go',
  'start',
  'ignor',
  'sort',
  'notic',
  'arriv',
  'thought',
  'odd',
  'assum',
  'mayb',
  'stress',
  'job',
  'quit',
  'intens',
  'realli',
  'becam',
  'issu',
  'yesterday',
  'husband',
  'talk',
  'dad',
  'outsid',
  'feed',
  'daughter',
  'room',
  'id',
  'left',
  'loui',
  'sarah',
  'dave',
  'came',
  'back',
  'downstair',
  'loui',
  'cri',
  'manag',
  'understand',
  'hed',
  'tri',
  'ask',
  'sarah',
  'drink',
  'special',
  'cup',
  'use',
  'hold',
  'obviou',
  'meant',
  'shed',
  'ignor',
  'ask',
  'explain',
  'go',
  'repli',
  'unless',
  'said',
  'sentenc',
  'correctli',
  'ignor',
  'son',
  'obviou',
  'speech',
  'issu',
  'context',
  'know',
  'want',
  'told',
  'understood',
  'exactli',
  'ask',
  'deliber',
  'refus',
  'ask',
  'correctli',
  'realli',
  'piss',
  'luckili',
  'husband',
  'came',
  'insid',
  'moment',
  'pull',
  'away',
  'could',
  'calm',
  'settl',
  'loui',
  'night',
  'dinner',
  'tabl',
  'sarah',
  'ask',
  'pass',
  'someth',
  'said',
  'bad',
  'english',
  'english',
  'mean',
  'ask',
  'slang',
  'think',
  'pass',
  '*',
  'us',
  '*',
  'pea',
  'bit',
  'epiphani',
  'decid',
  'total',
  'ignor',
  'ask',
  'thing',
  'brother',
  'ask',
  'ignor',
  'wife',
  'said',
  'im',
  'abl',
  'repli',
  'cant',
  'speak',
  'english',
  'correctli',
  'wrong',
  'ignor',
  'obviou',
  'issu',
  'grammar',
  'everyon',
  'pretti',
  'piss',
  'admit',
  'incred',
  'childish',
  'needlessli',
  'dickhead',
  'babi',
  'apologis',
  '*',
  '*',
  'edit',
  'wow',
  'realli',
  'blew',
  'thank',
  'comment',
  'support',
  'thank',
  'eshyta',
  'messag',
  'im',
  'go',
  'apologis',
  'quit',
  'frank',
  'think',
  'deserv',
  'convers',
  'brother',
  'leav',
  'tri',
  'explain',
  'one',
  'thing',
  'complet',
  'normal',
  'importantli',
  'keep',
  'correct',
  'ignor',
  'son',
  'ill',
  'sever',
  'limit',
  'contact',
  'although',
  'doubt',
  'ill',
  'ever',
  'leav',
  'alon',
  'room',
  'anyway',
  '*',
  '*',
  '*',
  '*',
  'answer',
  'common',
  'question',
  'said',
  'everyon',
  'mad',
  'meant',
  'brother',
  'wife',
  'parent',
  'although',
  'parent',
  'agre',
  'sarah',
  'either',
  'theyr',
  'tri',
  'keep',
  'peac',
  'husband',
  'entir',
  'side',
  'realis',
  'sarah',
  'done',
  'loui',
  'saw',
  'aftermath',
  'want',
  'cut',
  'short',
  'trip',
  '*',
  '*',
  '*',
  '*',
  'sarah',
  'rest',
  'famili',
  'speak',
  'english',
  'suppos',
  'goe',
  'way',
  'toward',
  'explain',
  'understand',
  'think',
  'monolingu',
  'reaction',
  'weve',
  'never',
  'experienc',
  'anyth',
  'similar',
  'belgium',
  '*',
  '*',
  '*',
  '*',
  'one',
  'final',
  'thing',
  '-',
  'lot',
  'question',
  'uk',
  'often',
  'husband',
  'london',
  'job',
  'month',
  'everi',
  'six',
  'week',
  'tag',
  'along',
  'freelanc',
  'client',
  'uk',
  'base',
  'good',
  'opportun',
  'fit',
  'meet',
  'also',
  'give',
  'us',
  'chanc',
  'bring',
  'loui',
  'misha',
  'see',
  'parent',
  'loui',
  'start',
  'school',
  'cut',
  'visit',
  '*',
  '*'],
 ['son',
  'bryce',
  'date',
  'neighbor',
  'lana',
  'year',
  'broke',
  'mid',
  'jan',
  'reason',
  'know',
  'sugarcoat',
  'never',
  'like',
  'lana',
  'alway',
  'seem',
  'littl',
  'unhing',
  'control',
  'aggress',
  'alway',
  'demand',
  'bryce',
  'attent',
  'quit',
  'time',
  'show',
  'hous',
  'nowher',
  'whether',
  'pm',
  'bryce',
  'answer',
  'phone',
  'scream',
  'call',
  'cheater',
  'like',
  'thought',
  'son',
  'get',
  'abus',
  'gf',
  'made',
  'us',
  'worri',
  'much',
  'wife',
  'tri',
  'talk',
  'relationship',
  'said',
  'normal',
  'healthi',
  'want',
  'forc',
  'break',
  'fear',
  'lana',
  'would',
  'lash',
  'tri',
  'sneaki',
  'way',
  'know',
  'work',
  'end',
  'break',
  'said',
  'broke',
  'lana',
  'contact',
  'weird',
  'expect',
  'go',
  'nut',
  'told',
  'fate',
  'gave',
  'shit',
  'better',
  'teas',
  'problem',
  'bought',
  'son',
  'car',
  'christma',
  'noth',
  'fanci',
  'enough',
  'get',
  'school',
  'job',
  'eventu',
  'colleg',
  'park',
  'driveway',
  'outsid',
  'home',
  'ever',
  'sinc',
  'month',
  'began',
  'found',
  'scratch',
  'car',
  'know',
  'lana',
  'sinc',
  'minim',
  'son',
  'decid',
  'anyth',
  'even',
  'could',
  'prove',
  'weve',
  'cctv',
  'still',
  'someth',
  'smell',
  'bad',
  'decid',
  'switch',
  'one',
  'camera',
  'face',
  'car',
  'directli',
  'case',
  'well',
  'two',
  'week',
  'ago',
  'got',
  'found',
  'son',
  'car',
  'cover',
  'lot',
  'shit',
  'paint',
  'glue',
  'feather',
  'confetti',
  'door',
  'handl',
  'wreck',
  'flat',
  'tire',
  'paint',
  'window',
  'get',
  'pictur',
  'bryce',
  'wife',
  'distraught',
  'call',
  'polic',
  'handl',
  'cctv',
  'show',
  'lana',
  'brother',
  'destroy',
  'son',
  'car',
  'press',
  'charg',
  'needl',
  'say',
  'lana',
  'brother',
  'went',
  'straight',
  'jail',
  'sinc',
  'still',
  'minor',
  'parent',
  'want',
  'make',
  'deal',
  'refus',
  'think',
  'get',
  'way',
  'polic',
  'laugh',
  'ass',
  'tri',
  'play',
  'cool',
  'thought',
  'funni',
  'old',
  'enough',
  'face',
  'consequ',
  'wife',
  'want',
  'stand',
  'ground',
  'said',
  'theyll',
  'buy',
  'son',
  'better',
  'car',
  'put',
  'lana',
  'therapi',
  'enough',
  'aita'],
 ['husband',
  'togeth',
  'year',
  'kid',
  'previou',
  'relationship',
  'one',
  'oldest',
  'dedic',
  'man',
  'put',
  'god',
  'first',
  'love',
  'everyon',
  'husband',
  'alway',
  'complain',
  'daughter',
  'spend',
  'time',
  'stepsibl',
  'reason',
  'school',
  'health',
  'issu',
  'work',
  'best',
  'spend',
  'much',
  'time',
  'hand',
  'complain',
  'stepdad',
  'tell',
  'basic',
  'take',
  'role',
  'babysitt',
  'whenev',
  'stepsibl',
  'husband',
  'deni',
  'said',
  'daughter',
  'make',
  'excus',
  'spend',
  'time',
  'kid',
  'issu',
  'figur',
  'famili',
  'trip',
  'famili',
  'need',
  'get',
  'togeth',
  'spend',
  'time',
  'around',
  'husband',
  'like',
  'idea',
  'said',
  'kid',
  'uncomfort',
  'around',
  'daughter',
  'attitud',
  'suggest',
  'let',
  'stay',
  'home',
  'hous',
  'sinc',
  'alway',
  'want',
  'told',
  'best',
  'go',
  'kept',
  'compla',
  'til',
  'snap',
  'told',
  'stop',
  'book',
  'paid',
  'whole',
  'famili',
  'howev',
  'daughter',
  'told',
  'find',
  'passport',
  'turn',
  'hous',
  'upsid',
  'look',
  'find',
  'husband',
  'said',
  'mayb',
  'sign',
  'god',
  'let',
  'stay',
  'home',
  'trip',
  'turn',
  'disast',
  'ignor',
  'comment',
  'later',
  'clean',
  'offic',
  'found',
  'passport',
  'tuck',
  'away',
  'rd',
  'drawer',
  'ton',
  'paper',
  'floor',
  'confront',
  'swore',
  'idea',
  'passport',
  'got',
  'check',
  'upstair',
  'camera',
  'saw',
  'enter',
  'daughter',
  'room',
  'scream',
  'head',
  'cancel',
  'whole',
  'trip',
  'complet',
  'start',
  'argu',
  'say',
  'overreact',
  'want',
  'kid',
  'miser',
  'trip',
  'apolog',
  'daughter',
  '*',
  '*',
  'reconsid',
  'decis',
  'regard',
  'cancel',
  'trip',
  'stepkid',
  'devast',
  'said',
  'final',
  'done',
  'becom',
  'cold',
  'distant',
  'said',
  'want',
  'take',
  'time',
  'fast',
  'get',
  'guidanc',
  'god',
  'deal',
  'disrespect',
  'control',
  'display',
  'late',
  'aita',
  'cancel',
  'altogeth'],
 ['graduat',
  'ceremoni',
  'held',
  'next',
  'week',
  'dad',
  'given',
  'money',
  'advanc',
  'pay',
  'parti',
  'live',
  'mostli',
  'mom',
  'suppos',
  'host',
  'event',
  'togeth',
  'dad',
  'rocki',
  'relationship',
  'parent',
  'divorc',
  'split',
  'custodi',
  'abl',
  'stay',
  'good',
  'dad',
  'met',
  'jane',
  'jane',
  'three',
  'kid',
  'twin',
  'singl',
  'kid',
  'got',
  'marri',
  'would',
  'say',
  'even',
  'felt',
  'like',
  'priorit',
  'kid',
  'lot',
  'would',
  'cancel',
  'plan',
  'want',
  'someth',
  'would',
  'either',
  'thing',
  'forc',
  'go',
  'say',
  'even',
  'better',
  'plan',
  'think',
  'go',
  'hike',
  'vs',
  'take',
  'indoor',
  'play',
  'area',
  'see',
  'movi',
  'vs',
  'kiddi',
  'park',
  'one',
  'exampl',
  'given',
  'ticket',
  'concert',
  'dad',
  'love',
  'suppos',
  'buy',
  'ticket',
  'come',
  'fatherson',
  'time',
  'actual',
  'spent',
  'youngest',
  'stepkid',
  'want',
  'room',
  'paint',
  'told',
  'last',
  'minut',
  'hurt',
  'time',
  'stuff',
  'like',
  'happen',
  'show',
  'hospit',
  'broke',
  'arm',
  'one',
  'stepkid',
  'get',
  'tonsil',
  'want',
  'wife',
  'told',
  'mom',
  'phone',
  'tell',
  'proud',
  'brave',
  'understand',
  'even',
  'though',
  'never',
  'said',
  'shit',
  'would',
  'bring',
  'stuff',
  'hed',
  'tell',
  'natur',
  'feel',
  'jealou',
  'share',
  'attent',
  'would',
  'say',
  'told',
  'mom',
  'would',
  'split',
  'cost',
  'trip',
  'want',
  'go',
  'one',
  'club',
  'money',
  'mom',
  'half',
  'save',
  'told',
  'dad',
  'need',
  'pay',
  'said',
  'bill',
  'tight',
  'twin',
  'birthday',
  'money',
  'need',
  'go',
  'someth',
  'told',
  'could',
  'someth',
  'famili',
  'trip',
  'happen',
  'instead',
  'told',
  'forget',
  'make',
  'clear',
  'import',
  'go',
  'stay',
  'mom',
  'actual',
  'matter',
  'mom',
  'borrow',
  'money',
  'cover',
  'half',
  'trip',
  'dad',
  'told',
  'regret',
  'make',
  'feel',
  'less',
  'import',
  'work',
  'thing',
  'graduat',
  'money',
  'given',
  'month',
  'ago',
  'week',
  'ago',
  'call',
  'told',
  'one',
  'stepkid',
  'bulli',
  'bad',
  'time',
  'theyr',
  'money',
  'could',
  'help',
  'cheer',
  'birthday',
  'piss',
  'hung',
  'two',
  'day',
  'later',
  'show',
  'doorstep',
  'gave',
  'money',
  'told',
  'want',
  'see',
  'new',
  'famili',
  'graduat',
  'chosen',
  'import',
  'better',
  'stay',
  'life',
  'stepkid',
  'two',
  'younger',
  'bio',
  'kid',
  'stick',
  'around',
  'call',
  'told',
  'need',
  'talk',
  'like',
  'adult',
  'hurt',
  'kid',
  'feel',
  'wife',
  'freak',
  'block',
  'aita'],
 ['daughter',
  'megan',
  'finish',
  'cancer',
  'treatment',
  'lost',
  'hair',
  'process',
  'incred',
  'insecur',
  'longer',
  'meet',
  'friend',
  'welcom',
  'home',
  'even',
  'meet',
  'famili',
  'person',
  'bad',
  'say',
  'least',
  'stepbroth',
  'ben',
  'make',
  'wors',
  'nag',
  'comment',
  'joke',
  'look',
  'tri',
  'take',
  'post',
  'pic',
  'secretli',
  'share',
  'shut',
  'even',
  'though',
  'husband',
  'thought',
  'harmless',
  'teas',
  'husband',
  'sister',
  'wed',
  'last',
  'week',
  'famili',
  'want',
  'megan',
  'yo',
  'go',
  'want',
  'spent',
  'much',
  'time',
  'tri',
  'help',
  'convinc',
  'start',
  'social',
  'see',
  'famili',
  'agre',
  'condit',
  'let',
  'wear',
  'wig',
  'agre',
  'took',
  'shop',
  'pick',
  'wig',
  'look',
  'beauti',
  'stun',
  'pixi',
  'hairstyl',
  'wig',
  'husband',
  'ben',
  'laugh',
  'saw',
  'know',
  'went',
  'wed',
  'everyth',
  'go',
  'well',
  'til',
  'happen',
  'sit',
  'start',
  'talk',
  'meghan',
  'look',
  'suddenli',
  'ben',
  'reach',
  'pull',
  'wig',
  'expos',
  'head',
  'shock',
  'froze',
  'megan',
  'yell',
  'took',
  'wig',
  'ran',
  'ben',
  'cousin',
  'guest',
  'start',
  'laugh',
  'upset',
  'especi',
  'look',
  'shoulder',
  'saw',
  'husband',
  'sit',
  'next',
  'mom',
  'laugh',
  'lost',
  'ben',
  'berat',
  'infront',
  'everyon',
  'took',
  'stuff',
  'got',
  'megan',
  'got',
  'car',
  'went',
  'home',
  'ben',
  'husband',
  'ride',
  'home',
  'husband',
  'kept',
  'call',
  'respond',
  'came',
  'home',
  'ask',
  'leav',
  'mid',
  'wed',
  'upset',
  'sister',
  'leav',
  'ben',
  'rude',
  'home',
  'argu',
  'ben',
  'embarrass',
  'megan',
  'humili',
  'publicli',
  'mustv',
  'ruin',
  'left',
  'self',
  'esteem',
  'said',
  'kid',
  'teas',
  'overreact',
  'ben',
  'malici',
  'intent',
  'mess',
  'said',
  'sick',
  'said',
  'way',
  'bond',
  'stepsibl',
  'get',
  'inth',
  'way',
  'overprotect',
  'unreason',
  'talk',
  'ben',
  'refus',
  'apolog',
  'dad',
  'back'],
 ['dad',
  'practic',
  'gave',
  'sister',
  'moment',
  'born',
  'mom',
  'die',
  'give',
  'birth',
  'aunt',
  'told',
  'never',
  'recov',
  'blame',
  'die',
  'hurt',
  'lot',
  'kid',
  'famili',
  'event',
  'would',
  'ignor',
  'exist',
  'littl',
  'older',
  'got',
  'vocal',
  'kill',
  'cant',
  'stand',
  'look',
  'face',
  'imagin',
  'amount',
  'therapi',
  'put',
  'use',
  'go',
  'church',
  'cri',
  'scare',
  'go',
  'hell',
  'mom',
  'much',
  'word',
  'fuck',
  'shitti',
  'part',
  'never',
  'stop',
  'tri',
  'accept',
  'highschool',
  'graduat',
  'told',
  'never',
  'bother',
  'sinc',
  'legal',
  'oblig',
  'anymor',
  'sinc',
  'send',
  'aunt',
  'money',
  'take',
  'care',
  'around',
  'time',
  'final',
  'start',
  'accept',
  'realiti',
  'move',
  'live',
  'aunt',
  'talk',
  'sometim',
  'grandpar',
  'found',
  'got',
  'marri',
  'mad',
  'invit',
  'wed',
  'matter',
  'close',
  'wife',
  'want',
  'meet',
  'first',
  'time',
  'ever',
  'want',
  'make',
  'contact',
  'pretti',
  'much',
  'say',
  'want',
  'life',
  'know',
  'real',
  'reason',
  'estrang',
  'ask',
  'pleas',
  'say',
  'anyth',
  'mayb',
  'could',
  'way',
  'reconcil',
  'much',
  'clear',
  'talk',
  'never',
  'said',
  'would',
  'still',
  'insist',
  'us',
  'meet',
  'place',
  'realli',
  'want',
  'meet',
  'think',
  'estrang',
  'get',
  'along',
  'teenag',
  'year',
  'go',
  'colleg',
  'lose',
  'touch',
  'life',
  'stuff',
  'piss',
  'play',
  'us',
  'talk',
  'petti',
  'reason',
  'meanwhil',
  'actual',
  'reason',
  'damag',
  'year',
  'told',
  'truth',
  'everyth',
  'said',
  'never',
  'parent',
  'aunt',
  'definit',
  'shock',
  'outcom',
  'disast',
  'everyon',
  'heard',
  'grandma',
  'particular',
  'told',
  'understand',
  'anger',
  'chanc',
  'find',
  'someon',
  'sinc',
  'lose',
  'mom',
  'put',
  'jeopardi',
  'dad',
  'devast',
  'think',
  'go',
  'far',
  'ruin',
  'marriag',
  'way',
  'includ',
  'live',
  'could',
  'start',
  'relationship',
  'say',
  'ruin',
  'also',
  'possibl',
  'wreck',
  'marriag',
  'agre',
  'couldv',
  'avoid',
  'say',
  'anyth',
  'hard',
  'tell',
  'truth',
  'lie',
  'made',
  'seem',
  'like',
  'noth',
  'seriou',
  'ignor',
  'happen',
  'idk',
  'right',
  'call',
  'sinc',
  'put',
  'whole',
  'marriag',
  'risk'],
 ['updat',
  'throwaway',
  'account',
  'use',
  'reddit',
  'girlfriend',
  'nat',
  'particular',
  'sens',
  'style',
  'pictur',
  'harley',
  'finkl',
  'wizard',
  'waverli',
  'place',
  'get',
  'idea',
  'get',
  'wrong',
  'never',
  'problem',
  'fact',
  'love',
  'way',
  'dress',
  'love',
  'happi',
  'happi',
  'thing',
  'sometim',
  'like',
  'incorpor',
  'meme',
  'cloth',
  'problem',
  'cute',
  'want',
  'wear',
  'dress',
  'inspir',
  'meme',
  'gay',
  'rat',
  'wed',
  'friend',
  'wed',
  'fiancé',
  'gay',
  'told',
  'mayb',
  'realli',
  'appropri',
  'dress',
  'question',
  'would',
  'full',
  'littl',
  'stuf',
  'rat',
  'pride',
  'flag',
  'big',
  'support',
  'gay',
  'rat',
  'front',
  'friend',
  'big',
  'fan',
  'way',
  'gf',
  'dress',
  'think',
  'dress',
  'may',
  'caus',
  'certain',
  'uproar',
  'wed',
  'nat',
  'upset',
  'claim',
  'throw',
  'water',
  'flame',
  'creativ',
  'wed',
  'next',
  'month',
  'plenti',
  'time',
  'think',
  'anoth',
  'thing',
  'wear',
  'let',
  'go',
  'dress',
  'asshol',
  'situat',
  'updat',
  'well',
  'guy',
  'mani',
  'point',
  'comment',
  'get',
  'throwaway',
  'account',
  'help',
  'found',
  'post',
  'guess',
  'specif',
  'updat',
  'soon',
  'final',
  'updat',
  'hello',
  'everyon',
  'would',
  'like',
  'thank',
  'judgment',
  'advic',
  'opinion',
  'post',
  'greatli',
  'appreci',
  'so…',
  'convers',
  'go',
  'well',
  'livid',
  'expos',
  'way',
  'although',
  'show',
  'comment',
  'import',
  'one',
  'lgbtqia',
  'commun',
  'refus',
  'admit',
  'dress',
  'poor',
  'choic',
  'fact',
  'way',
  'appreci',
  'gay',
  'sit',
  'well',
  'love',
  'move',
  'mountain',
  'maintain',
  'relationship',
  'homophob',
  'go',
  'wed',
  'singl',
  'rat-free-dress',
  'man',
  'reach',
  'friend',
  'send',
  'post',
  'thought',
  'situat',
  'hilari',
  'show',
  'dress',
  'would',
  'def',
  'kick',
  'us',
  'curb',
  'guess',
  'ps',
  'deepli',
  'sorri',
  'misspel',
  'harpey',
  'name',
  'happen',
  'lol'],
 ['get',
  'marri',
  'fianc´',
  'next',
  'year',
  'got',
  'engag',
  'suggest',
  'might',
  'nice',
  'ask',
  'fiancé',
  'niec',
  'want',
  'bridesmaid',
  'ive',
  'met',
  'coupl',
  'time',
  'close',
  'seem',
  'like',
  'cool',
  'kid',
  'thought',
  'might',
  'nice',
  'way',
  'us',
  'bond',
  'get',
  'know',
  'involv',
  'wed',
  'side',
  'note',
  '-',
  'niec',
  'nephew',
  'either',
  'side',
  'famili',
  'anyway',
  'cut',
  'week',
  'ago',
  'fiancé',
  'hometown',
  'visit',
  'famili',
  'discuss',
  'wedding-rel',
  'stuff',
  'brother',
  'sister-in-law',
  'daughter',
  'came',
  'notic',
  'time',
  'dress',
  'lot',
  'androgyn',
  'rememb',
  'topic',
  'move',
  'wed',
  'dress',
  'bridesmaid',
  'dress',
  'could',
  'see',
  'immedi',
  'uncomfort',
  'parent',
  'mum',
  'realli',
  'grandma',
  'make',
  'comment',
  'shed',
  'need',
  'feminin',
  'brush',
  'hair',
  'etc',
  'nice',
  'would',
  'see',
  'like',
  'ill',
  'honest',
  'say',
  'hit',
  'nerv',
  'much',
  'tomboy',
  'teenag',
  'even',
  'though',
  'im',
  'anymor',
  'absolut',
  'broke',
  'whenev',
  'rel',
  'would',
  'say',
  'thing',
  'like',
  'eventu',
  'mother',
  'made',
  'comment',
  'along',
  'line',
  'itll',
  'nice',
  'see',
  'dress',
  'like',
  'girl',
  'look',
  'realli',
  'sad',
  'embarrass',
  'upset',
  'respons',
  '*',
  'realli',
  '*',
  'hit',
  'nerv',
  'immedi',
  'told',
  'maid',
  'honour',
  'would',
  'wear',
  'trouser',
  'suit',
  'wed',
  'dress',
  'id',
  'given',
  'bridesmaid',
  'option',
  'wear',
  'anyth',
  'want',
  'long',
  'wed',
  'colour',
  'make',
  'thing',
  'easier',
  'pull',
  'phone',
  'start',
  'show',
  'photo',
  'idea',
  'friend',
  'sent',
  'jumpsuit',
  'culott',
  'trouser',
  'suit',
  'tailor',
  'tux',
  'etc',
  'let',
  'know',
  'could',
  'pick',
  'anyth',
  'want',
  '-',
  'could',
  'even',
  'wear',
  'jean',
  'trainer',
  'made',
  'comfort',
  '–',
  'wed',
  'fashion',
  'show',
  'niec',
  'perk',
  'bit',
  'said',
  'mum',
  'look',
  'realli',
  'piss',
  'sinc',
  'ask',
  'fiancé',
  'pressur',
  'get',
  'bridesmaid',
  'dress',
  'daughter',
  'wear',
  'one',
  'lol',
  'husband',
  'give',
  'shit',
  'wear',
  'obvious',
  'also',
  'want',
  'famili',
  'argu',
  'wed',
  'day',
  'want',
  'back',
  'know',
  'feel',
  'like',
  'pressur',
  'wear',
  'someth',
  'make',
  'uncomfort',
  'hand',
  'know',
  'day',
  'itd',
  'make',
  'famili',
  'happi',
  'aita',
  'tri',
  'overrul',
  'parent'],
 ['daughter',
  'im',
  'tri',
  'teach',
  'way',
  'creat',
  'respect',
  'boundari',
  'age',
  'appropri',
  'teach',
  'ok',
  'say',
  'thing',
  'feel',
  'uncomfort',
  'boy',
  'class',
  'keep',
  'bother',
  'femal',
  'friend',
  'recess',
  'ive',
  'encourag',
  'go',
  'teacher',
  'happen',
  'daughter',
  'told',
  'day',
  'ago',
  'class',
  'teacher',
  'ask',
  'kid',
  'form',
  'group',
  'four',
  'five',
  'form',
  'group',
  'five',
  'girl',
  'boy',
  'give',
  'troubl',
  'recess',
  'came',
  'said',
  'join',
  'group',
  'anoth',
  'girl',
  'said',
  'alreadi',
  'five',
  'work',
  'group',
  'two',
  'three',
  'peopl',
  'said',
  'teacher',
  'said',
  'four',
  'five',
  'daughter',
  'said',
  'want',
  'work',
  'find',
  'anoth',
  'group',
  'girl',
  'agre',
  'said',
  'cant',
  'exclud',
  'like',
  'class',
  'rule',
  'said',
  'care',
  'heard',
  'daughter',
  'first',
  'way',
  'talk',
  'firm',
  'unkind',
  'got',
  'email',
  'teacher',
  'say',
  'want',
  'call',
  'said',
  'incid',
  'school',
  'daughter',
  'exclud',
  'anoth',
  'child',
  'allow',
  'class',
  'want',
  'talk',
  'tell',
  'event',
  'daughter',
  'felt',
  'proud',
  'daughter',
  'honesti',
  'sent',
  'email',
  'say',
  'dear',
  'mr',
  'teacher',
  'im',
  'sorri',
  'lesson',
  'feel',
  'comfort',
  'teach',
  'daughter',
  'age',
  'alreadi',
  'deal',
  'unwant',
  'attent',
  'im',
  'make',
  'point',
  'teach',
  'around',
  'anyon',
  'make',
  'uncomfort',
  'young',
  'ladi',
  'abl',
  'choos',
  'spend',
  'time',
  'peopl',
  'make',
  'feel',
  'respect',
  'understand',
  'alreadi',
  'awar',
  'boy',
  'behav',
  'way',
  'feel',
  'uncomfort',
  'recess',
  'prior',
  'convers',
  'think',
  'danger',
  'lesson',
  'teach',
  'girl',
  'includ',
  'kind',
  'everyon',
  'instead',
  'teach',
  'awar',
  'someon',
  'respect',
  'step',
  'situat',
  'hope',
  'explain',
  'much',
  'detail',
  'find',
  'import',
  'put',
  'briefli',
  'brought',
  'includ',
  'everyon',
  'mindset',
  'except',
  'taught',
  'ignor',
  'comfort',
  'level',
  'becam',
  'young',
  'adult',
  'becam',
  'victim',
  'men',
  'use',
  'inabl',
  'say',
  'advantag',
  'danger',
  'lesson',
  'longer',
  'appropri',
  'age',
  'thank',
  'op',
  'email',
  'back',
  'ask',
  'meet',
  'person',
  'princip',
  'im',
  'prepar',
  'wonder',
  'email',
  'harsh',
  'aita',
  'respons',
  'daughter',
  'teacher',
  'edit',
  'updat',
  'reach',
  'parent',
  'four',
  'girl',
  'class',
  'involv',
  'coordin',
  'go',
  'speak',
  'school',
  'administr',
  'togeth',
  'similar',
  'view',
  'think',
  'inappropri',
  'school',
  'expect',
  'girl',
  'work',
  'someon',
  'theyr',
  'comfort',
  'frustrat',
  'teacher',
  'deal',
  'issu',
  'recess',
  'made',
  'girl',
  'uncomfort',
  'start',
  'end',
  'ask',
  'school',
  'could',
  'reschedul',
  'meet',
  'time',
  'involv',
  'famili',
  'could',
  'make',
  'end',
  'meet',
  'afternoon',
  'along',
  'husband',
  'anoth',
  'coupl',
  'two',
  'mother',
  'father',
  'along',
  'teacher',
  'princip',
  'present',
  'unit',
  'front',
  'ask',
  'follow',
  'school',
  'train',
  'teacher',
  'trauma-inform',
  'teach',
  'method',
  'danger',
  'expect',
  'young',
  'women',
  'go',
  'best',
  'judgement',
  'boundari',
  'nice',
  'instead',
  'includ',
  'everyon',
  'kid',
  'allow',
  'respect',
  'set',
  'boundari',
  'taught',
  'respect',
  'boundari',
  'school',
  'address',
  'harass',
  'class',
  'recess',
  'enabl',
  'continu',
  'went',
  'talk',
  'think',
  'went',
  'lot',
  'better',
  'parent',
  'join',
  'instead',
  'id',
  'gone',
  'alon',
  'teacher',
  'princip',
  'apolog',
  'princip',
  'agre',
  'look',
  'resourc',
  'better',
  'navig',
  'balanc',
  'inclus',
  'forc',
  'kid',
  'includ',
  'someon',
  'cross',
  'line',
  'thank',
  'lot',
  'amaz',
  'advic',
  'comment',
  'believ',
  'much',
  'blew',
  'im',
  'grate',
  'everyon',
  'repli',
  'advic',
  'support',
  'honestli',
  'get',
  'pretti',
  'emot',
  'hear',
  'lesson',
  'im',
  'tri',
  'teach',
  'littl',
  'one',
  'reson',
  'women',
  'whether',
  'theyr',
  'mom',
  'struggl'],
 ['marri',
  'man',
  'love',
  'life',
  'ever',
  'date',
  'women',
  'met',
  'realiz',
  'bi',
  'fell',
  'love',
  'got',
  'marri',
  'fall',
  'almost',
  'year',
  'live',
  'vermont',
  'whole',
  'famili',
  'small',
  'town',
  'texa',
  'super',
  'conserv',
  'cathol',
  'area',
  'rais',
  'dad',
  'got',
  'job',
  'nyc',
  'cultur',
  'shock',
  'difficult',
  'went',
  'live',
  'rural',
  'texa',
  'live',
  'apart',
  'manhattan',
  'parent',
  'sell',
  'hous',
  'tx',
  'allow',
  'aunt',
  '&',
  'uncl',
  'rd',
  'child',
  'move',
  'charg',
  'small',
  'rent',
  'colleg',
  'came',
  'bi',
  'brother',
  'dad',
  'support',
  'mom',
  'need',
  'time',
  'accept',
  'rest',
  'famili',
  'react',
  'poorli',
  'first',
  'came',
  'around',
  'visit',
  'stay',
  'aunt',
  'uncl',
  'old',
  'hous',
  'marri',
  'allow',
  'share',
  'bed',
  'argu',
  'would',
  'rather',
  'make',
  'peac',
  'visit',
  'sinc',
  'instead',
  'stay',
  'aunt',
  '&',
  'uncl',
  'would',
  'rent',
  'motel',
  'room',
  'covid',
  'visit',
  'summer',
  'parent',
  'bro',
  'decid',
  'go',
  'visit',
  'hometown',
  'week',
  '&',
  'invit',
  'husband',
  'want',
  'motel',
  'aunt',
  '&',
  'uncl',
  'insist',
  'brother',
  'husband',
  'stay',
  'st',
  'night',
  'sleep',
  'situat',
  'discuss',
  'cousin',
  'went',
  'bed',
  'aunt',
  '&',
  'uncl',
  'want',
  'bro',
  'take',
  'spare',
  'bedroom',
  'husband',
  'couch',
  'us',
  'took',
  'issu',
  'snap',
  'realli',
  'marri',
  'gay',
  '&',
  'children',
  'hous',
  'said',
  'would',
  'bad',
  'influenc',
  'kid',
  'hurt',
  'husband',
  'feel',
  'start',
  'cri',
  '&',
  'ran',
  'room',
  'husband',
  'ran',
  'uncl',
  'audac',
  'start',
  'laugh',
  'saw',
  'red',
  'start',
  'cuss',
  'loudli',
  'young',
  'cousin',
  'came',
  'investig',
  'told',
  'go',
  'apolog',
  'husband',
  'immedi',
  'go',
  'tell',
  'dad',
  'happen',
  'go',
  'make',
  'sure',
  'kick',
  'hous',
  'still',
  'parent',
  'name',
  'bro',
  'second',
  'everyth',
  'say',
  'start',
  'backtrack',
  'say',
  'still',
  'welcom',
  'hous',
  'follow',
  'rule',
  'respond',
  'realli',
  'hous',
  'told',
  'go',
  'homeless',
  'way',
  'kid',
  'start',
  'cri',
  'caus',
  'heard',
  'say',
  'go',
  'homeless',
  'left',
  'husband',
  'porch',
  'cri',
  'promis',
  'would',
  'never',
  'subject',
  'told',
  'dad',
  'happen',
  'say',
  'dad',
  'angri',
  'would',
  'understat',
  'serv',
  'notic',
  'evict',
  'day',
  'get',
  'call',
  'text',
  'facebook',
  'messag',
  'famili',
  'call',
  'ah',
  'want',
  'know',
  'aita',
  'allow',
  'young',
  'cousin',
  'end',
  'homeless',
  'fair',
  'pay',
  'aunt',
  'uncl',
  'said',
  'husband'],
 ['husband',
  'asian',
  'american',
  'welcom',
  'first',
  'born',
  'week',
  'ago',
  'babi',
  'health',
  'thank',
  'god',
  'im',
  'exhaust',
  'fix',
  'hair',
  'bare',
  'abl',
  'shower',
  'sleep',
  'husband',
  'famili',
  'pressur',
  'us',
  'visit',
  'meet',
  'babi',
  'tri',
  'hold',
  'much',
  'could',
  'yesterday',
  'surpris',
  'find',
  'stand',
  'porch',
  'turn',
  'hubbi',
  'invit',
  'dinner',
  'embarrass',
  'felt',
  'like',
  'readi',
  'visitor',
  'judgement',
  'one',
  '😉',
  'caus',
  'hous',
  'mess',
  'yall',
  'anyway',
  'husband',
  'sat',
  'fed',
  'son',
  'later',
  'ask',
  'husband',
  'order',
  'take',
  'dinner',
  'said',
  'parent',
  'would',
  'find',
  'rude',
  'unwelcom',
  'suggest',
  'go',
  'insid',
  'kitchen',
  'prepar',
  'someth',
  'anyth',
  'long',
  'homemad',
  'said',
  'fine',
  'went',
  'made',
  'mac',
  'chees',
  'reason',
  'prepar',
  'meal',
  'easi',
  'serv',
  'famili',
  'husband',
  'mom',
  'look',
  'appal',
  'notic',
  'someth',
  'wrong',
  'ask',
  'realli',
  'found',
  'appropri',
  'serv',
  'famili',
  'mac',
  'chees',
  'ask',
  'went',
  'rant',
  'disrespect',
  'clearli',
  'experi',
  'right',
  'wrong',
  'come',
  'host',
  'said',
  'excus',
  'said',
  'sign',
  'host',
  'expect',
  'visit',
  'took',
  'want',
  'husband',
  'said',
  'final',
  'see',
  'babi',
  'kept',
  'see',
  'entir',
  'month',
  'whole',
  'month',
  'life',
  'miss',
  'argument',
  'decid',
  'go',
  'home',
  'husband',
  'said',
  'decid',
  'serv',
  'famili',
  'mac',
  'chees',
  'offens',
  'serv',
  'noth',
  'told',
  'exhaust',
  'cook',
  'tradit',
  'feast',
  'forc',
  'learn',
  'mom',
  'took',
  'offens',
  'said',
  'mean',
  'disrespect',
  'toward',
  'famili',
  'cultur',
  'went',
  'insid',
  'bedroom',
  'stay',
  'son',
  'husband',
  'stay',
  'phone',
  'famili',
  'hour',
  'kept',
  'give',
  'cold',
  'shoulder',
  'refus',
  'eat',
  'cook',
  'support',
  'famili',
  'understand',
  'guest',
  'might',
  'find',
  'offens',
  'especi',
  'famili',
  'tri',
  'make',
  'quick',
  'homemad',
  'meal',
  'like',
  'husband',
  'want',
  'wrong',
  'mac',
  'chees',
  'edit',
  '*',
  'ok',
  'im',
  'see',
  'comment',
  'offer',
  'come',
  'mac',
  'chees',
  'amaz',
  'hear',
  'peopl',
  'would',
  'aporeci',
  'kind',
  'meal',
  'kinda',
  'make',
  'feel',
  'reliev',
  'reassur',
  'mess',
  'entir',
  'come',
  'yall',
  'ill',
  'happi',
  'serv',
  'mac',
  'chees',
  'yall',
  'even',
  'offer',
  'bring',
  'mash',
  'potato',
  'pizza',
  'lol',
  'would',
  'love',
  'yall',
  'time'],
 ['year',
  'went',
  'fiancé',
  'hous',
  'christma',
  'first',
  'time',
  'go',
  'would',
  'typic',
  'go',
  'famili',
  'hous',
  'instead',
  'got',
  'rather',
  'pricey',
  'gift',
  'fiancé',
  'dan',
  'relat',
  'hobbi',
  'got',
  'nice',
  'gift',
  'dan',
  'parent',
  'base',
  'thing',
  'id',
  'talk',
  'got',
  'small',
  'pack',
  'chocol',
  'dan',
  'rel',
  'know',
  'well',
  'expect',
  'mani',
  'gift',
  'dan',
  'rel',
  'know',
  'mani',
  'well',
  'certainli',
  'expect',
  'got',
  'first',
  'excit',
  'saw',
  'big',
  'pile',
  'gift',
  'howev',
  'open',
  'first',
  'one',
  'piec',
  'coal',
  'everyon',
  'laugh',
  'kind',
  'laugh',
  'along',
  'think',
  'gag',
  'gift',
  'gift',
  'would',
  'differ',
  'everi',
  'singl',
  'one',
  'turn',
  'coal',
  'start',
  'get',
  'upset',
  'cri',
  'lash',
  'dan',
  'calmli',
  'explain',
  'appar',
  'longstand',
  'tradit',
  'famili',
  'gift',
  'coal',
  'newcom',
  'celebr',
  'christma',
  'first',
  'time',
  'explain',
  'easier',
  'way',
  'sinc',
  'rel',
  'might',
  'know',
  'newcom',
  'well',
  'stress',
  'find',
  'gift',
  'fun',
  'experi',
  'newcom',
  'well',
  'told',
  'dan',
  'believ',
  'skip',
  'famili',
  'celebr',
  'left',
  'dan',
  'famili',
  'blow',
  'phone',
  'say',
  'embarrass',
  'front',
  'rel',
  'made',
  'awkward',
  'everyon',
  'aita'],
 ['[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'mod',
  'let',
  'post',
  'post',
  'old',
  'enough',
  'throwaway',
  'whole',
  'situat',
  'bizarr',
  'still',
  'cant',
  'realli',
  'process',
  'still',
  'feel',
  'real',
  'feel',
  'scare',
  'guilti',
  'surgeri',
  'coupl',
  'day',
  'ago',
  'get',
  'wisdom',
  'teeth',
  'realli',
  'bad',
  'fear',
  'dentist',
  'drug',
  'pretti',
  'hard',
  'remov',
  'like',
  'laugh',
  'ga',
  'wear',
  'realli',
  'fast',
  'actual',
  'iv',
  'medicin',
  'pretti',
  'much',
  'unconsci',
  'whole',
  'thing',
  'told',
  'respons',
  'adult',
  'drive',
  'appoint',
  'back',
  'med',
  'gave',
  'would',
  'make',
  'danger',
  'drive',
  'mom',
  'work',
  'trip',
  'take',
  'ask',
  'sister',
  'law',
  'bri',
  'real',
  'name',
  'could',
  'whole',
  'thing',
  'would',
  'take',
  'hour',
  'two',
  'even',
  'offer',
  'ga',
  'money',
  'dental',
  'offic',
  'minut',
  'away',
  'would',
  'ask',
  'brother',
  'work',
  'day',
  'bri',
  'stay',
  'home',
  'mom',
  'yo',
  'daughter',
  'think',
  'bri',
  'mom',
  'hous',
  'day',
  'bri',
  'agre',
  'take',
  'appoint',
  'surgeri',
  'went',
  'fine',
  'bri',
  'wait',
  'lobbi',
  'done',
  'came',
  'anesthesia',
  'disori',
  'nauseou',
  'guess',
  'normal',
  'gauz',
  'shove',
  'mouth',
  'stop',
  'bleed',
  'bri',
  'took',
  'car',
  'let',
  'go',
  'realli',
  'rememb',
  'much',
  'drive',
  'felt',
  'like',
  'enough',
  'time',
  'pass',
  'bri',
  'got',
  'car',
  'told',
  'come',
  'realli',
  'follow',
  'altern',
  'stay',
  'hot',
  'car',
  'long',
  'stori',
  'short',
  'pool',
  'realli',
  'confus',
  'gate',
  'bri',
  'basic',
  'park',
  'one',
  'littl',
  'table-bench',
  'said',
  'shed',
  'back',
  'still',
  'tri',
  'puke',
  'realli',
  'dizzi',
  'heat',
  '+',
  'degre',
  'drug',
  'ask',
  'take',
  'home',
  'guess',
  'sinc',
  'day',
  'niec',
  'meet',
  'friend',
  'pool',
  'start',
  'feel',
  'realli',
  'sick',
  'verg',
  'pass',
  'panic',
  'attack',
  'call',
  'brother',
  'think',
  'could',
  'understand',
  'med',
  'stuff',
  'mouth',
  'hung',
  'guess',
  'call',
  'bri',
  'came',
  'stomp',
  'back',
  'cuss',
  'yell',
  'took',
  'back',
  'car',
  'pass',
  'drive',
  'home',
  'arriv',
  'brother',
  'left',
  'work',
  'met',
  'us',
  'driveway',
  'scream',
  'bri',
  'cri',
  'still',
  'pretti',
  'disori',
  'brother',
  'took',
  'back',
  'home',
  'stay',
  'med',
  'wore',
  'told',
  'divorc',
  'bri',
  'plu',
  'thing',
  'go',
  'detail',
  'day',
  'sinc',
  'bri',
  'blow',
  'phone',
  'tell',
  'bitch',
  'tattl',
  'destroy',
  'famili',
  'part',
  'feel',
  'bad',
  'niec',
  'wonder',
  'jjst',
  'dealt',
  'wait',
  'done',
  'pool',
  'instead',
  'call',
  'bro',
  'caus',
  'problem',
  'aita'],
 ['im',
  'loss',
  'guy',
  'realist',
  'know',
  'im',
  'clear',
  'legal',
  'im',
  'clear',
  'im',
  'vilifi',
  'cowork',
  'im',
  'genuin',
  'consid',
  'quit',
  'job',
  'mess',
  'work',
  'pretti',
  'standard',
  'day',
  'job',
  'night',
  'help',
  'friend',
  'restaur',
  'serv',
  'assort',
  'thai',
  'cuisin',
  'tbh',
  'im',
  'insan',
  'picki',
  'fell',
  'love',
  'peanut',
  'sauc',
  'main',
  'chef',
  'make',
  'show',
  'make',
  'week',
  'take',
  'either',
  'noodl',
  'stir',
  'fri',
  'day',
  'job',
  'lunch',
  'peopl',
  'know',
  'hand',
  'tri',
  'smell',
  'nutti',
  'tast',
  'nutti',
  'white',
  'girl',
  'pad',
  'thai',
  'basic',
  'late',
  'lunch',
  'disappear',
  'ill',
  'open',
  'lunchbox',
  'find',
  'half',
  'food',
  'miss',
  'ive',
  'tri',
  'address',
  'noth',
  'chang',
  'pretti',
  'sure',
  'one',
  'new',
  'hire',
  'proof',
  'thursday',
  'took',
  'noodl',
  'entir',
  'tupperwar',
  'miss',
  'happen',
  'im',
  'piss',
  'cowork',
  'share',
  'pizza',
  'today',
  'boss',
  'confront',
  'accus',
  'poison',
  'noodl',
  'daughter',
  'one',
  'new',
  'girl',
  'borrow',
  'lunch',
  'hospit',
  'turn',
  'sever',
  'allerg',
  'nut',
  'ate',
  'boom',
  'anaphylaxi',
  'use',
  'epi',
  'pen',
  'hospit',
  'dad',
  'tri',
  'hold',
  'account',
  'bill',
  'condit',
  'see',
  'pay',
  'mark',
  'food',
  'allergen',
  'im',
  'allerg',
  'dumb',
  'enough',
  'steal',
  'eat',
  'someth',
  'cant',
  'hate',
  'older',
  'cowork',
  'ice',
  'warn',
  'id',
  'report',
  'harass',
  'hr',
  'tri',
  'anyth',
  'funni',
  'brown',
  'noser',
  'guess',
  'friend',
  'awar',
  'offer',
  'full',
  'time',
  'job',
  'cant',
  'help',
  'feel',
  'unfair',
  'time',
  'could',
  'kill',
  'daughter',
  'tho',
  'aita',
  'edit',
  'holi',
  'shitbal',
  'blew',
  '*',
  '*',
  'email',
  'hr',
  'rep',
  'let',
  'know',
  'situat',
  'vacat',
  'get',
  'back',
  'tomorrow',
  'know',
  'awar',
  'go',
  'sinc',
  'last',
  'week',
  'note',
  'work',
  'weekend',
  'week',
  'quit',
  '-',
  '-',
  'job',
  'yeah',
  'cowork',
  'mostli',
  'chill',
  'end',
  'shift',
  'thank',
  'explain',
  'nosiest',
  'friendlier',
  'person',
  'alway',
  'bring',
  'peanut',
  'sauc',
  'dish',
  'guess',
  'gener',
  'assumpt',
  'somehow',
  'found',
  'steal',
  'lunch',
  'decid',
  'poison',
  'answer',
  'common',
  'question',
  'first',
  'time',
  'pad',
  'thai',
  'stolen',
  'im',
  'victim',
  'lunch',
  'thief',
  'usual',
  'take',
  'late',
  'lunch',
  'im',
  'one',
  'im',
  'guess',
  'ladi',
  'steal',
  'food',
  'decid',
  'left',
  'free',
  'boss',
  'said',
  'hr',
  'issu',
  'id',
  'tri',
  'talk',
  'lunch',
  'disappear',
  'hr',
  'alway',
  'said',
  'theyd',
  'look',
  'noth',
  'ever',
  'happen',
  '%',
  'allow',
  'eat',
  'desk',
  'unless',
  'medic',
  'reason',
  'option',
  'either',
  'im',
  'assum',
  'fine',
  'know',
  'sever',
  'allergi',
  'much',
  'ate',
  'reaction',
  'im',
  'privi',
  'medic',
  'inform',
  'sorri',
  'guy',
  'su',
  'sound',
  'like',
  'great',
  'reveng',
  'probabl',
  'worth',
  'cost',
  'lawyer',
  'friend',
  'let',
  'take',
  'tonight',
  'bitch',
  'everyth',
  'im',
  'probabl',
  'go',
  'take',
  'job',
  'offer',
  'one',
  'comment',
  'right',
  'even',
  'everyth',
  'settl',
  'want',
  'deal',
  'potenti',
  'hostil',
  'reactiv',
  'workplac',
  'like',
  'anymor',
  'career',
  'much',
  'room',
  'upward',
  'mobil',
  'feel',
  'welcom',
  'group',
  'meet',
  'today',
  'peopl',
  'call',
  'fake',
  'okay',
  'even',
  'get',
  'mad',
  'karma',
  'give',
  'anyth',
  'monetarili',
  'statu',
  'cant',
  'exactli',
  'give',
  'bunch',
  'detail',
  'unless',
  'want',
  'dox',
  'post',
  'seem',
  'rush',
  'wrote',
  'frustrat',
  'lunch',
  'short',
  'time+word',
  'limit=',
  'rush',
  'sorri',
  'meet',
  'write',
  'standard',
  'anyway',
  'ill',
  'keep',
  'read',
  'comment',
  'respond',
  'occasion',
  'unless',
  'get',
  'someth',
  'worth',
  'updat',
  'thank',
  'everyon',
  'opinion',
  'inform',
  'caesar',
  'dress',
  'worcestershir',
  '[',
  'thank',
  'googl',
  ']',
  'anchovi',
  'crazi',
  'edit',
  'recip',
  'tbsp',
  'red',
  'curri',
  'past',
  'cup',
  'smooth',
  'natur',
  'peanut',
  'butter',
  'cup',
  'sugar',
  'tsp',
  'dark',
  'soy',
  'sauc',
  'tbsp',
  'cider',
  'vinegar',
  'cup',
  'water',
  'oz',
  'coconut',
  'milk',
  'cook',
  'med-low',
  'heat',
  'add',
  'water',
  'seem',
  'thick',
  'use',
  'regular',
  'coconut',
  'milk',
  'low',
  'fat',
  'good',
  'imo',
  'find',
  'one',
  'home',
  'seem',
  'similar',
  'restaur',
  'sinc',
  'im',
  'make',
  'enough',
  'armi',
  'like',
  'one',
  'im',
  'also',
  'lazi',
  'want',
  'done',
  'minut',
  'hope',
  'everyon',
  'like',
  'well',
  'tri',
  'someth',
  'new',
  'natur',
  'pb',
  'import',
  'nuttier',
  'stronger',
  'far',
  'less',
  'sugar'],
 ['husband',
  'trip',
  'coutri',
  'year',
  'goe',
  'everi',
  'year',
  'best',
  'friend',
  'reason',
  'go',
  'go',
  'attend',
  'sport',
  'event',
  'year',
  'husband',
  'told',
  'could',
  'go',
  'friend',
  'sinc',
  'visit',
  'new',
  'destin',
  'paid',
  'ticket',
  'everyth',
  'els',
  'sinc',
  'im',
  'sahm',
  'job',
  'kid',
  'left',
  'mom',
  'howev',
  'found',
  'book',
  'st',
  'class',
  'friend',
  'got',
  'economi',
  'hold',
  'tongu',
  'confront',
  'first',
  'refus',
  'discuss',
  'argument',
  'got',
  'heat',
  'yell',
  'paid',
  'ticket',
  'ff',
  'enough',
  'kept',
  'stop',
  'act',
  'like',
  'royalti',
  'come',
  'think',
  'even',
  'economi',
  'fine',
  'sinc',
  'technic',
  'work',
  'anyway',
  'cri',
  'said',
  'decid',
  'go',
  'altogeth',
  'chang',
  'tone',
  'start',
  'beg',
  'go',
  'plan',
  'declin',
  'went',
  'pick',
  'kid',
  'mom',
  'hous',
  'came',
  'back',
  'hr',
  'later',
  'huf',
  'buf',
  'happen',
  'friend',
  'sent',
  'text',
  'call',
  'entitl',
  'said',
  'reason',
  'want',
  'husband',
  'take',
  'prove',
  'point',
  'respond',
  'block',
  'sinc',
  'gotten',
  'increasingli',
  'rude',
  'past',
  'month',
  'husband',
  'said',
  'keep',
  'cri',
  'exclud',
  'happen',
  'final',
  'decid',
  'includ',
  'amitheasshol',
  'settl',
  'economi',
  'way',
  'perfectli',
  'capabl',
  'financ',
  'trip'],
 ['hello',
  'marri',
  'husband',
  'year',
  'im',
  'last',
  'year',
  'univers',
  'busi',
  'last',
  'two',
  'week',
  'mani',
  'project',
  'final',
  'loom',
  'husband',
  'complain',
  'see',
  'studi',
  'activ',
  'togeth',
  'hang',
  'friend',
  'anymor',
  'ive',
  'told',
  'gon',
  'na',
  'last',
  'forev',
  'need',
  'focu',
  'last',
  'year',
  'hardest',
  'day',
  'exam',
  'want',
  'go',
  'friend',
  'birthday',
  'parti',
  'refus',
  'busi',
  'prepar',
  'exam',
  'plead',
  'say',
  'one',
  'hour',
  'talk',
  'friend',
  'upset',
  'im',
  'said',
  'shut',
  'discuss',
  'got',
  'upset',
  'call',
  'selfish',
  'inconsider',
  'drop',
  'went',
  'bed',
  'set',
  'alarm',
  'clock',
  'like',
  'alway',
  'sinc',
  'im',
  'heavi',
  'sleeper+',
  'stay',
  'late',
  'studi',
  'next',
  'morn',
  'woke',
  'liter',
  'freak',
  'check',
  'alarm',
  'found',
  'set',
  'go',
  'idea',
  'happen',
  'til',
  'husband',
  'told',
  'repay',
  'refus',
  'take',
  'one',
  'one',
  'hour',
  'attend',
  'parti',
  'took',
  'hour',
  'time',
  'believ',
  'absolut',
  'blew',
  'yell',
  'scream',
  'left',
  'right',
  'stood',
  'shock',
  'reaction',
  'rage',
  'got',
  'dress',
  'quickli',
  'rush',
  'univers',
  'let',
  'exam',
  'hall',
  'got',
  'lot',
  'hassl',
  'get',
  're-schedul',
  'exam',
  'especi',
  'sinc',
  'legit',
  'reason',
  'late',
  'aw',
  'say',
  'went',
  'home',
  'husband',
  'stop',
  'speak',
  'kept',
  'act',
  'hurt',
  'feel',
  'traumat',
  'yell',
  'deserv',
  'sinc',
  'frustrat',
  'continu',
  'refus',
  'attend',
  'event',
  'past',
  'week',
  'might',
  'wrong',
  'consid',
  'think',
  'exam',
  'prioriti',
  'way',
  'teach',
  'lesson',
  'right'],
 ['situat',
  'kind',
  'mess',
  'expect',
  'first',
  'babi',
  'husband',
  'first',
  'grandchild',
  'famili',
  'inlaw',
  'said',
  'babi',
  'boy',
  'well',
  'give',
  'father',
  'inlaw',
  'name',
  'dead',
  'due',
  'cancer',
  'problem',
  'happen',
  'found',
  'gender',
  'babi',
  '-',
  'husband',
  'famili',
  'thing',
  'like',
  'attend',
  'prayer',
  'ritual',
  'reveal',
  'dr',
  'like',
  'went',
  'keep',
  'peac',
  'dr',
  'appoit',
  'came',
  'turn',
  'girl',
  'husband',
  'cri',
  'car',
  'turn',
  'phone',
  'hide',
  'famili',
  'final',
  'told',
  'mom',
  'made',
  'frustrat',
  '&',
  'disapppint',
  'clear',
  'bother',
  'caus',
  'daughter',
  'deserv',
  'celebr',
  'ghost',
  'day',
  'start',
  'come',
  '&',
  'visit',
  'constantli',
  'refer',
  'daughter',
  'son',
  'claim',
  'result',
  'fals',
  'basic',
  'pretend',
  'boy',
  'severa',
  'fight',
  'refus',
  'stop',
  'husband',
  'side',
  'despit',
  'see',
  'wrong',
  'unreason',
  'speak',
  'sister',
  'inlaw',
  'call',
  'apolog',
  'inform',
  'arrang',
  'babyshow',
  'excit',
  'happi',
  'arriv',
  'saw',
  'blue',
  'balloon',
  'blue',
  'cake',
  'father',
  'inlaw',
  'namedecor',
  'around',
  'confus',
  'sit',
  'sister',
  'inlaw',
  'explain',
  'still',
  'hope',
  'gender',
  'result',
  'fals',
  'boy',
  'look',
  'husband',
  'agre',
  'lost',
  'temper',
  'yell',
  'call',
  'delusion',
  'tell',
  'stop',
  'treat',
  'daughter',
  'like',
  'unwant',
  'act',
  'like',
  'exist',
  'throw',
  'parti',
  'imaginari',
  'grandson',
  'mother',
  'inlaw',
  'break',
  'cri',
  'took',
  'bag',
  'walk',
  'immedi',
  'start',
  'yell',
  'husband',
  'follow',
  'outsid',
  'start',
  'argu',
  'insult',
  'famili',
  'dad',
  'memori',
  'act',
  'like',
  'told',
  'wake',
  'see',
  'insan',
  'famili',
  'behavior',
  'said',
  'need',
  'time',
  'process',
  'fact',
  'girl',
  'boy',
  'expect',
  'insist',
  'play',
  'along',
  'theyll',
  'soon',
  'get',
  'said',
  'absolut',
  'demand',
  'take',
  'home',
  'said',
  'call',
  'uber',
  'left',
  'fume',
  'call',
  'time',
  'text',
  'come',
  'home',
  'til',
  'get',
  'ass',
  'apolog',
  'ruin',
  'everyth',
  'theyv',
  'done',
  'accus',
  'mental',
  'unstabl',
  'respond',
  'yet',
  'constantli',
  'pressur',
  'get',
  'right',
  'famili',
  'even',
  'talk',
  'anyth',
  'els'],
 ['[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'wife',
  'ava',
  'year',
  'weve',
  'marri',
  'singl',
  'mom',
  'three',
  'kid',
  'start',
  'date',
  'two',
  'daughter',
  '&',
  'son',
  'ive',
  'watch',
  'kid',
  'grow',
  'ive',
  'read',
  'bedtim',
  'stori',
  'done',
  'bath',
  'time',
  'first',
  'day',
  'school',
  'pta',
  'meet',
  'much',
  'consid',
  'kid',
  'theyv',
  'call',
  'mom',
  'almost',
  'year',
  'brother',
  'ivan',
  'babi',
  'girl',
  'fiancé',
  'sara',
  'love',
  'niec',
  'kid',
  'ador',
  'cousin',
  'kid',
  'grandchildren',
  'side',
  'famili',
  'sinc',
  'ava',
  'got',
  'togeth',
  'never',
  'moment',
  'kid',
  'wife',
  'treat',
  'like',
  'belong',
  'brother',
  'uncl',
  'mom',
  'dad',
  'nana',
  'pop',
  'kid',
  'see',
  'famili',
  'famili',
  'alway',
  'thought',
  'famili',
  'felt',
  'way',
  'kid',
  'brother',
  'hous',
  'hang',
  'parent',
  'end',
  'drop',
  'gift',
  'niec',
  'ivan',
  'laugh',
  'saw',
  'toy',
  'told',
  'mom',
  'dad',
  'go',
  'end',
  'spoil',
  'rotten',
  'mom',
  'said',
  'sinc',
  'niec',
  'first',
  'grandchild',
  'cours',
  'spoil',
  'kid',
  'sit',
  'live',
  'room',
  'us',
  'youngest',
  'daughter',
  'look',
  'hurt',
  'realiz',
  'mother',
  'said',
  'son',
  'yo',
  'fulli',
  'react',
  'could',
  'tell',
  'bother',
  'sara',
  'spoke',
  'said',
  'oh',
  'mean',
  'first',
  'grandbabi',
  'first',
  'grandchild',
  'dad',
  'shook',
  'head',
  'repli',
  'niec',
  'first',
  'grandchild',
  'want',
  'kid',
  'keep',
  'sit',
  'listen',
  'hand',
  'son',
  'key',
  'told',
  'wait',
  'car',
  'sister',
  'gone',
  'ask',
  'parent',
  'hell',
  'theyd',
  'say',
  'kid',
  'grandchildren',
  'mom',
  'said',
  'grandchildren',
  'realli',
  'children',
  'wife',
  'go',
  'host',
  'thanksgiv',
  'hous',
  'year',
  'told',
  'parent',
  'view',
  'kid',
  'famili',
  'could',
  'host',
  'meal',
  'hous',
  'real',
  'famili',
  'spent',
  'holiday',
  'mine',
  'left',
  'could',
  'say',
  'anyth',
  'els',
  'wife',
  'reiter',
  'children',
  'alway',
  'kid',
  'alway',
  'mom',
  'regardless',
  'dna',
  'brother',
  'piss',
  'think',
  'react',
  'harshli',
  'tri',
  'see',
  'parent',
  'come',
  'mom',
  'text',
  'say',
  'dad',
  'love',
  'kid',
  'still',
  'grandchildren',
  'hope',
  'come',
  'understand',
  'want',
  'ruin',
  'niec',
  'first',
  'thanksgiv',
  'repli',
  'back',
  'meant',
  'said',
  'im',
  'worri',
  'mayb',
  'im',
  'react',
  'harshli',
  'eta',
  'info',
  'adopt',
  'three',
  'kid',
  'year',
  'ago',
  'parent',
  'step',
  'grandchildren',
  'even',
  'legal',
  'adopt',
  'theyd',
  'still',
  'kid',
  'eye',
  'edit',
  '-',
  'wife',
  'parent',
  'relationship',
  'kid',
  'wife',
  'came',
  'pretti',
  'much',
  'stop',
  'speak',
  'entir',
  '-',
  'bio',
  'dad',
  'involv',
  'neither',
  'famili',
  'lost',
  'right',
  'children',
  'ava',
  'start',
  'date',
  'yo',
  'never',
  'met',
  'yo',
  'rememb',
  'yo',
  'want',
  'noth',
  '-',
  'parent',
  'want',
  'kid',
  'call',
  'nana',
  'pop',
  'make',
  'kid',
  'start',
  'call'],
 ['%',
  'petti',
  'curiou',
  'actual',
  'wrong',
  'husband',
  'famili',
  'think',
  'childish',
  'need',
  'let',
  'past',
  'go',
  'sil',
  'cant',
  'afford',
  'behavior',
  'toward',
  'us',
  'past',
  'make',
  'feel',
  'warrant',
  'year',
  'ago',
  'hous',
  'burnt',
  'ground',
  'struck',
  'lighten',
  'thank',
  'day',
  'kid',
  'school',
  'husband',
  'work',
  'lost',
  'everyth',
  'safe',
  'took',
  'almost',
  'month',
  'insur',
  'pay',
  'insur',
  'cover',
  'month',
  'worth',
  'hotel',
  'stay',
  'made',
  'fend',
  'option',
  'move',
  'sil',
  'tell',
  'us',
  'spare',
  'room',
  'offic',
  'space',
  'sinc',
  'use',
  'neither',
  'room',
  'stipul',
  'need',
  'purchas',
  'food',
  'pay',
  '$',
  'week',
  'week',
  'chang',
  'decid',
  'need',
  'pay',
  '$',
  'week',
  'use',
  'one',
  'room',
  'us',
  'cram',
  'smallest',
  'room',
  'size',
  'glorifi',
  'closet',
  'space',
  'even',
  'fit',
  'twin',
  'bed',
  'small',
  'dresser',
  'live',
  'trash',
  'bag',
  'slept',
  'floor',
  'close',
  '$',
  'month',
  'month',
  'still',
  'purchas',
  'food',
  'despit',
  'claim',
  'children',
  'foodstamp',
  'also',
  'bill',
  'outsid',
  'land',
  'tax',
  '$',
  'year',
  'electr',
  'heat',
  'oil',
  'hardli',
  'ever',
  'fill',
  'essenti',
  'pay',
  'could',
  'leisur',
  'activ',
  'worst',
  'month',
  'life',
  'month',
  'ago',
  'grandmoth',
  'decid',
  'want',
  'go',
  'assist',
  'live',
  'fall',
  'transfer',
  'deed',
  'hous',
  'basic',
  'said',
  'mine',
  'bedroom',
  'farmhous',
  'boy',
  'insist',
  'share',
  'room',
  'extra',
  'bedroom',
  'well',
  'sil',
  'lost',
  'hous',
  'last',
  'month',
  'due',
  'pay',
  'land',
  'tax',
  'sever',
  'year',
  'ask',
  'step',
  'daughter',
  'could',
  'stay',
  'us',
  'get',
  'enough',
  'money',
  'move',
  'south',
  'said',
  'sure',
  'bedroom',
  '$',
  'month',
  'buy',
  'cook',
  'food',
  'separ',
  'daughter',
  'vegan',
  'look',
  'like',
  'head',
  'said',
  'step',
  'daughter',
  'made',
  'share',
  'room',
  'extra',
  'room',
  'state',
  'afford',
  'rent',
  '$',
  'purchas',
  'food',
  'top',
  'said',
  'neither',
  'could',
  'manag',
  'cram',
  'peopl',
  'glorifi',
  'closet',
  'space',
  'get',
  '$',
  'foodstamp',
  'take',
  'leav',
  'decid',
  'leav',
  'told',
  'childish',
  'aita'],
 ['got',
  'then-girlfriend',
  'pregnant',
  'twin',
  'boy',
  'parent',
  'want',
  'babi',
  'ruin',
  'futur',
  'said',
  'either',
  'take',
  'give',
  'adopt',
  'rais',
  'want',
  'give',
  'parent',
  'told',
  'first',
  'seven',
  'year',
  'boy',
  'live',
  'act',
  'like',
  'father',
  'like',
  'big',
  'brother',
  'knew',
  'father',
  'though',
  'never',
  'bond',
  'like',
  'father-son',
  'readi',
  'move',
  'want',
  'without',
  'dad',
  'let',
  'know',
  'respons',
  'take',
  'want',
  'first',
  'im',
  'glad',
  'happen',
  'start',
  'bond',
  'father-son',
  'start',
  'love',
  'love',
  'increas',
  'rememb',
  'three',
  'us',
  'would',
  'seat',
  'couch',
  'watch',
  'movi',
  'one',
  'would',
  'sit',
  'left',
  'one',
  'right',
  'wrap',
  'arm',
  'around',
  'theyd',
  'put',
  'head',
  'chest',
  'often',
  'kiss',
  'forehead',
  'weve',
  'sinc',
  'seven',
  'met',
  'current',
  'wife',
  'year',
  'ago',
  'kid',
  'marri',
  'year',
  'ago',
  'welcom',
  'daughter',
  'saw',
  'kid',
  'watch',
  'movi',
  'never',
  'said',
  'anyth',
  'kid',
  'longer',
  'live',
  'us',
  'left',
  'colleg',
  'come',
  'see',
  'everi',
  'boy',
  'still',
  'like',
  'put',
  'head',
  'chest',
  'wrap',
  'arm',
  'around',
  'everi',
  'time',
  'visit',
  'im',
  'watch',
  'tv',
  'son',
  'liam',
  'visit',
  'week',
  'ago',
  'came',
  'gay',
  'introduc',
  'bf',
  'care',
  'kid',
  'live',
  'sexual',
  'love',
  'love',
  'matter',
  'want',
  'happi',
  'feel',
  'differ',
  'make',
  'feel',
  'uncomfort',
  'hug',
  'kiss',
  'forehead',
  'seem',
  'wife',
  'littl',
  'uncomfort',
  'son',
  'visit',
  'last',
  'wednesday',
  'sinc',
  'week',
  'ago',
  'first',
  'time',
  'offici',
  'watch',
  'red',
  'daughter',
  'left',
  'son',
  'liam',
  'arriv',
  'tire',
  'sat',
  'right',
  'put',
  'head',
  'shoulder',
  'wrap',
  'arm',
  'around',
  'kiss',
  'forehead',
  'said',
  'good',
  'back',
  'buddi',
  'went',
  'sleep',
  'next',
  'day',
  'wife',
  'told',
  'made',
  'feel',
  'uncomfort',
  'hug',
  'kiss',
  'son',
  'ask',
  'mind',
  'luca',
  'son',
  'straight',
  'want',
  'liam',
  'told',
  'busi',
  'relationship',
  'son',
  'also',
  'call',
  'homophob',
  'accus',
  'treat',
  'like',
  'equal',
  'parent',
  'son',
  'thu',
  'said',
  'ok',
  'brother',
  'say',
  'understand',
  'big',
  'chang',
  'son',
  'come',
  'serious',
  'think',
  'noth',
  'get',
  'use',
  'neither',
  'problem',
  'son',
  'love',
  'wrong'],
 ['ident',
  'twin',
  'sister',
  'also',
  'obvious',
  'alway',
  'tumultu',
  'competit',
  'relationship',
  'weve',
  'alway',
  'fought',
  'everyth',
  'guy',
  'cloth',
  'friend',
  'etc',
  'relationship',
  'came',
  'halt',
  'week',
  'ago',
  'mutual',
  'guy',
  'friend',
  'sent',
  'link',
  'onlyfan',
  'profil',
  'attach',
  'messag',
  'state',
  'confus',
  'click',
  'link',
  'shock',
  'discov',
  'profil',
  'belong',
  'twin',
  'sister',
  'profil',
  'pictur',
  'clearli',
  'scantili',
  'clad',
  'imag',
  'usernam',
  'nicknam',
  'liter',
  'everyon',
  'life',
  'use',
  'ask',
  'friend',
  'told',
  'discov',
  'profil',
  'twitter',
  'subscrib',
  'profil',
  'includ',
  'dozen',
  'video',
  'doing…',
  'spici',
  'thing',
  'say',
  'least',
  'solo',
  'partner',
  'face',
  'show',
  'floor',
  'fit',
  'rage',
  'show',
  'profil',
  'parent',
  'mean…',
  'liter',
  'anyon',
  'saw',
  'profil',
  'know',
  'us',
  'would',
  'immedi',
  'assum',
  'consid',
  'basic',
  'go',
  'name',
  'parent',
  'forc',
  'delet',
  'profil',
  'spoken',
  'sinc',
  'claim',
  'ruin',
  'main',
  'sourc',
  'incom',
  'also',
  'betray',
  'trust',
  'howev',
  'think',
  'betray',
  'trust',
  'go',
  'nicknam',
  'aita'],
 ['rais',
  'mostli',
  'uncl',
  'aunt',
  'older',
  'sister',
  'develop',
  'seriou',
  'ill',
  'parent',
  'decid',
  'care',
  'us',
  'guess',
  'kind',
  'unceremoni',
  'dump',
  'grandpar',
  'uncl',
  'took',
  'like',
  'even',
  'explain',
  'go',
  'go',
  'go',
  'visit',
  'gran',
  'awhil',
  'never',
  'pick',
  'back',
  'grandpar',
  'uncl',
  'explain',
  'later',
  'pretti',
  'livid',
  'parent',
  'ive',
  'seen',
  'parent',
  'mayb',
  'time',
  'sinc',
  'last',
  'year',
  'decid',
  'stop',
  'contact',
  'sinc',
  'one',
  'reach',
  'commun',
  'broke',
  'turn',
  'ok',
  'love',
  'aunt',
  'uncl',
  'turn',
  'cant',
  'kid',
  'theyv',
  'alway',
  'said',
  'im',
  'miracl',
  'kid',
  'misrout',
  'stork',
  'first',
  'formal',
  'adopt',
  'turn',
  'wish',
  'earlier',
  'red',
  'tape',
  'thing',
  'would',
  'made',
  'realli',
  'expens',
  'difficult',
  'im',
  'sister',
  'pass',
  'away',
  'thanksgiv',
  'christma',
  'made',
  'trip',
  'back',
  'school',
  'funer',
  'stay',
  'back',
  'left',
  'bio',
  'parent',
  'could',
  'talk',
  'call',
  'uncl',
  'tri',
  'talk',
  'said',
  'want',
  'told',
  'avail',
  'moment',
  'final',
  'caught',
  'christma',
  'went',
  'midnight',
  'mass',
  'gran',
  'approach',
  'tri',
  'give',
  'hug',
  'recogn',
  'pretend',
  'back',
  'said',
  'sorri',
  'know',
  'said',
  'parent',
  'said',
  'parent',
  'home',
  'went',
  'sat',
  'gran',
  'sat',
  'behind',
  'us',
  'could',
  'feel',
  'stare',
  'way',
  'like',
  'realli',
  'recogn',
  'us',
  'said',
  'oh',
  'dad',
  'brother',
  'think',
  'rememb',
  'littl',
  'gran',
  'think',
  'deserv',
  'tri',
  'come',
  'back',
  'like',
  'noth',
  'happen',
  'wrote',
  'long',
  'letter',
  'hurt',
  'understand',
  'tri',
  'right',
  'thing',
  'theyll',
  'alway',
  'parent',
  'cant',
  'chang',
  'famili',
  'member',
  'think',
  'harsh',
  'theyr',
  'griev',
  'think',
  'get',
  'pass',
  'rememb',
  'sister',
  'gone'],
 ['im',
  'engin',
  'im',
  'work',
  'team',
  'decent',
  'chill',
  'guy',
  'one',
  'guy',
  'anger',
  'issu',
  'like',
  'cant',
  'respect',
  'disagr',
  'hell',
  'rais',
  'voic',
  'yell',
  'get',
  'close',
  'face',
  'hate',
  'start',
  'complain',
  'boss',
  'brush',
  'rug',
  'say',
  'like',
  'thought',
  'bad',
  'seen',
  'year',
  'ago',
  'mellow',
  'make',
  'wonder',
  'like',
  'year',
  'ago',
  'sure',
  'aint',
  'mellow',
  'also',
  'small',
  'enough',
  'compani',
  'hr',
  'corpor',
  'manag',
  'help',
  'took',
  'differ',
  'approach',
  'stop',
  'call',
  'angri',
  'call',
  'argu',
  'yell',
  'swap',
  'word',
  'emot',
  'throw',
  'tantrum',
  'fit',
  'kinda',
  'hope',
  'could',
  'shift',
  'reput',
  'domin',
  'big',
  'man',
  'vibe',
  'emot',
  'tantrum',
  'weak',
  'sad',
  'babi',
  'vibe',
  'start',
  'make',
  'subtl',
  'comment',
  'like',
  'meet',
  'got',
  'temper',
  'id',
  'mention',
  'peopl',
  'wow',
  'crazi',
  'emot',
  'jay',
  'got',
  'dunno',
  'energi',
  'throw',
  'hissi',
  'fit',
  'im',
  'bare',
  'awak',
  'boss',
  'ask',
  'recap',
  'meet',
  'miss',
  'told',
  'dan',
  'jack',
  'jame',
  'realli',
  'great',
  'feedback',
  'report',
  'client',
  'jay',
  'kinda',
  'troubl',
  'manag',
  'emot',
  'temper',
  'tantrum',
  'know',
  'get',
  'cowork',
  'ask',
  'yell',
  'id',
  'say',
  'honestli',
  'even',
  'know',
  'get',
  'emot',
  'speak',
  'ration',
  'tri',
  'drop',
  'subtli',
  'cowork',
  'start',
  'pick',
  'think',
  'conscious',
  'say',
  'stuff',
  'like',
  'oh',
  'anoth',
  'jay',
  'fit',
  'someth',
  'got',
  'gutsi',
  'enough',
  'even',
  'start',
  'say',
  'face',
  'hey',
  'hardli',
  'understand',
  'tri',
  'explain',
  'emot',
  'cowork',
  'start',
  'pick',
  'even',
  'caught',
  'sever',
  'tell',
  'get',
  'hold',
  'start',
  'get',
  'reput',
  'emot',
  'irrat',
  'could',
  'tell',
  'piss',
  'stop',
  'yell',
  'much',
  'anyway',
  'slip',
  'week',
  'said',
  'realli',
  'cant',
  'talk',
  'emot',
  'blew',
  'ask',
  'alway',
  'call',
  'shrug',
  'said',
  'dude',
  'look',
  'like',
  'verg',
  'tear',
  'go',
  'look',
  'mirror',
  'ask',
  'got',
  'realli',
  'angri',
  'suggest',
  'might',
  'start',
  'cri',
  'kinda',
  'flippant',
  'comment',
  'red',
  'face',
  'angri',
  'tear',
  'angri',
  'could',
  'tell',
  'feel',
  'like',
  'bit',
  'dick',
  'petti',
  'tri',
  'gaslight',
  'guy',
  'think',
  'everyon',
  'around',
  'see',
  'like',
  'crybabi',
  'also',
  'mostli',
  'work',
  'proper',
  'channel',
  'aita',
  'call',
  'cowork',
  'emot',
  'got',
  'mad'],
 ['two',
  'younger',
  'sibl',
  'joe',
  'jill',
  'theyr',
  'twin',
  'graduat',
  'high',
  'school',
  'year',
  'jill',
  'parent',
  'favorit',
  'theyv',
  'alway',
  'want',
  'daughter',
  'joe',
  'scapegoat',
  'guess',
  'bonu',
  'babi',
  'never',
  'actual',
  'ask',
  'im',
  'mostli',
  'better',
  'joe',
  'im',
  'oldest',
  'grandson',
  'side',
  'famili',
  'almost',
  'blantant',
  'parent',
  'favorit',
  'felt',
  'realli',
  'bad',
  'joe',
  'could',
  'make',
  'feel',
  'less',
  'alon',
  'like',
  'jill',
  'got',
  'go',
  'shop',
  'mommi',
  'daddi',
  'took',
  'joe',
  'skate',
  'friend',
  'parent',
  'busi',
  'watch',
  'jill',
  'kiddi',
  'pageant',
  'drag',
  'best',
  'bud',
  'sit',
  'joe',
  'elementari',
  'school',
  'music',
  'small',
  'thing',
  'like',
  'start',
  'piti',
  'move',
  'soon',
  'friend',
  'pretti',
  'much',
  'like',
  'joe',
  'better',
  'jill',
  'princess',
  'syndrom',
  'got',
  'head',
  'spend',
  'time',
  'joe',
  'simpli',
  'like',
  'better',
  'jill',
  'never',
  'said',
  'loud',
  'make',
  'secret',
  'either',
  'prefer',
  'spend',
  'time',
  'entitl',
  'brat',
  'anyway',
  'like',
  'said',
  'theyr',
  'graduat',
  'soon',
  'alreadi',
  'choic',
  'colleg',
  'accomod',
  'etc',
  'jill',
  'go',
  'uni',
  'sf',
  'fulli',
  'fund',
  'parent',
  'unsurprisingli',
  'joe',
  'go',
  'uni',
  'mine',
  'seattl',
  'differ',
  'campu',
  'ish',
  'minut',
  'away',
  'got',
  'full',
  'ride',
  'appar',
  'make',
  'inelig',
  'get',
  'financi',
  'help',
  'parent',
  'also',
  'hardli',
  'surpris',
  'made',
  'call',
  'ask',
  'around',
  'see',
  'anyon',
  'hire',
  'next',
  'fall',
  'facetim',
  'joe',
  'reassur',
  'well',
  'find',
  'job',
  'suck',
  'pay',
  'enough',
  'better',
  'without',
  'dad',
  'money',
  'anyway',
  'know',
  'come',
  'string',
  'attach',
  'way',
  'mom',
  'dad',
  'abl',
  'stick',
  'nose',
  'purchas',
  'got',
  'feel',
  'better',
  'whole',
  'thing',
  'log',
  'guess',
  'jill',
  'overheard',
  'next',
  'day',
  'sent',
  'text',
  'text',
  'demand',
  'help',
  'find',
  'job',
  'well',
  'want',
  'dad',
  'nag',
  'told',
  'polit',
  'btw',
  'know',
  'anyon',
  'sf',
  'shed',
  'get',
  'help',
  'mom',
  'dad',
  'blew',
  'say',
  'thing',
  'favor',
  'joe',
  'yeah',
  'true',
  'love',
  'sibl',
  'particularli',
  'like',
  'jill',
  'like',
  'make',
  'likeabl',
  'though',
  'aita'],
 ['found',
  'ex',
  'husband',
  'cheat',
  'month',
  'pregnant',
  'son',
  'got',
  'divorc',
  'share',
  'custodi',
  'yro',
  'old',
  'son',
  'ex',
  'husband',
  'girlfriend',
  'tri',
  'get',
  'involv',
  'parent',
  'sever',
  'time',
  'even',
  'comment',
  'son',
  'name',
  'impli',
  'agre',
  'name',
  'want',
  'want',
  'tri',
  'dictat',
  'result',
  'start',
  'throw',
  'stuff',
  'paid',
  'honestli',
  'frustrat',
  'im',
  'bare',
  'get',
  'money',
  'afford',
  'buy',
  'replac',
  'stuff',
  'throw',
  'put',
  'ex',
  'husband',
  'say',
  'hous',
  'get',
  'decid',
  'cant',
  'enter',
  'made',
  'crochet',
  'blanket',
  'son',
  'name',
  'blanket',
  'special',
  'tool',
  'use',
  'abl',
  'make',
  'cost',
  'money',
  'mention',
  'time',
  'effort',
  'took',
  'get',
  'sent',
  'son',
  'stay',
  'dad',
  'day',
  'ago',
  'want',
  'take',
  'blanket',
  'sleep',
  'know',
  'exactli',
  'happen',
  'came',
  'pick',
  'told',
  'dad',
  'girlfriend',
  'took',
  'away',
  'threw',
  'leav',
  'blanket',
  'sleep',
  'night',
  'punish',
  'accept',
  'one',
  'offer',
  'furiou',
  'call',
  'dad',
  'hung',
  'sent',
  'text',
  'explain',
  'situat',
  'text',
  'back',
  'tell',
  'stop',
  'drama',
  'go',
  'look',
  'job',
  'much',
  'free',
  'time',
  'hand',
  'instead',
  'pick',
  'girlfriend',
  'felt',
  'frustrat',
  'visit',
  'famili',
  'good',
  'told',
  'son',
  'girlfriend',
  'worth',
  'mention',
  'work',
  'hard',
  'approv',
  'get',
  'good',
  'side',
  'shock',
  'know',
  'flip',
  'start',
  'call',
  'sil',
  'took',
  'put',
  'social',
  'media',
  'made',
  'famili',
  'member',
  'see',
  'ex',
  'husband',
  'call',
  'yell',
  'pathet',
  'attempt',
  'turn',
  'famili',
  'girlfriend',
  'could',
  'hear',
  'freak',
  'background',
  'lash',
  'say',
  'ruin',
  'everi',
  'chanc',
  'good',
  'relationship',
  'futur',
  'inlaw',
  'hung',
  'felt',
  'absolut',
  'horribl',
  'even',
  'though',
  'vent',
  'famili',
  'happen',
  'felt',
  'frustrat',
  'mayb',
  'told',
  'im',
  'sure',
  'anymor',
  'sinc',
  'whole',
  'famili',
  'speak',
  'si',
  'might',
  'epa',
  'last',
  'impact',
  'relationship'],
 ['mil',
  'move',
  'us',
  'month',
  'ago',
  'began',
  'notic',
  'stuff',
  'bedroom',
  'touch',
  'furnitur',
  'rearrang',
  'stuff',
  'move',
  'et',
  'cetera',
  'felt',
  'like',
  'go',
  'crazi',
  'husband',
  'one',
  'access',
  'bedroom',
  'usual',
  'touch',
  'come',
  'near',
  'thing',
  'figur',
  'must',
  'mom',
  'walk',
  'snoop',
  'person',
  'thing',
  'told',
  'husband',
  'said',
  'mom',
  'would',
  'neveri',
  'huge',
  'hunch',
  'instal',
  'cam',
  'bedroom',
  'catch',
  'act',
  'got',
  'one',
  'fake',
  'postiv',
  'pregnanc',
  'test',
  'threw',
  'bedroom',
  'trashcan',
  'note',
  'trashcan',
  'place',
  'corner',
  'near',
  'closet',
  'liter',
  'next',
  'day',
  'got',
  'work',
  'got',
  'ton',
  'call',
  'text',
  'inlaw',
  'congratul',
  'pregnanc',
  'husband',
  'came',
  'workplac',
  'work',
  'ask',
  'sinc',
  'pregnant',
  'tell',
  'ask',
  'found',
  'said',
  'mom',
  'found',
  'posit',
  'test',
  'trashcan',
  'bedroom',
  'ask',
  'answer',
  'confirm',
  'snoop',
  'bedroom',
  'along',
  'realiz',
  'moment',
  'demand',
  'stick',
  'bigger',
  'issu',
  'said',
  'bigger',
  'issu',
  'posit',
  'test',
  'fake',
  'whole',
  'thing',
  'done',
  'expos',
  'mil',
  'snoop',
  'convinc',
  'take',
  'actual',
  'test',
  'right',
  'infront',
  'livid',
  'ask',
  'could',
  'lie',
  'thing',
  'break',
  'mom',
  'heart',
  'sinc',
  'knowveri',
  'well',
  'long',
  'kid',
  'got',
  'lot',
  'shit',
  'mom',
  'famili',
  'call',
  'liar',
  'manipul',
  'aita',
  'import',
  'info',
  'noth',
  'get',
  'take',
  'goe',
  'miss',
  'bedroom',
  'clear'],
 ['dad',
  'die',
  'unexpectedli',
  'last',
  'week',
  'sister',
  'jess',
  'lost',
  'mom',
  'last',
  'year',
  'mix',
  'cancer',
  'viru',
  'famili',
  'act',
  'past',
  'scaveng',
  'dead',
  'peopl',
  'thing',
  'jess',
  'decid',
  'send',
  'famili',
  'memo',
  'one',
  'enter',
  'take',
  'anyth',
  'parent',
  'hous',
  'get',
  'jess',
  'work',
  'west',
  'coast',
  'take',
  'time',
  'get',
  'kid',
  'famili',
  'saw',
  'sever',
  'notif',
  'parent',
  'ring',
  'doorbel',
  'im',
  'lawyer',
  'remind',
  'famili',
  'prosecut',
  'jess',
  'page',
  'jess',
  'get',
  'parent',
  'hous',
  'first',
  'notic',
  'stuff',
  'miss',
  'parent',
  'secur',
  'camera',
  'alexa',
  'show',
  'shown',
  'cousin',
  'take',
  'stuff',
  'hous',
  'jess',
  'agre',
  'call',
  'polic',
  'two',
  'cousin',
  'arrest',
  'thousand',
  'dollar',
  'look',
  'feloni',
  'cousin',
  'said',
  'dad',
  'promis',
  'stuff',
  'dad',
  'make',
  'executor',
  'estat',
  'told',
  'wait',
  'file',
  'claim',
  'estat',
  'everyon',
  'warn',
  'would',
  'happen',
  'jess',
  'best',
  'relationship',
  'extend',
  'famili',
  'drop',
  'charg',
  'drama',
  'dad',
  'quietli',
  'cremat',
  'servic',
  'plan',
  'hold',
  'one',
  'scatter',
  'parent',
  'ash',
  'jesss',
  'hous',
  'tree',
  'plant',
  'last',
  'live',
  'grandma',
  'upset',
  'side',
  'cousin',
  'aunt',
  'say',
  'tough',
  'arrest'],
 ['throwaway',
  'want',
  'famili',
  'track',
  'back',
  'main',
  'sister',
  'got',
  'knock',
  'boyfriend',
  'right',
  'highschool',
  'got',
  'marri',
  'next',
  'year',
  'proceed',
  'pop',
  'anoth',
  'babi',
  'everi',
  'year',
  'two',
  'four',
  'stay',
  'home',
  'mom',
  'even',
  'though',
  'brilliant',
  'could',
  'gotten',
  'free',
  'ride',
  'great',
  'univers',
  'sinc',
  'grandkid',
  'parent',
  'fawn',
  'like',
  'next',
  'come',
  'christ',
  'gush',
  'everi',
  'new',
  'tooth',
  'haircut',
  'like',
  'huge',
  'achiev',
  'problem',
  'husband',
  'busi',
  'great',
  'even',
  'even',
  'covid',
  'bare',
  'limp',
  'along',
  'sister',
  'work',
  'parent',
  'limit',
  'incom',
  'guess',
  'constantli',
  'told',
  'lend',
  'money',
  'shit',
  'like',
  'school',
  'fee',
  'car',
  'seat',
  'car',
  'payment',
  'new',
  'stroller',
  'etc',
  'even',
  'ask',
  'mom',
  'text',
  'sister',
  'need',
  '$',
  'xxx',
  'kid',
  'im',
  'suppos',
  'cough',
  'complain',
  'accus',
  'jealou',
  'husband',
  'famili',
  'even',
  'though',
  'im',
  'older',
  'im',
  'easter',
  'notic',
  'sister',
  'drink',
  'think',
  'oh',
  'god',
  'go',
  'sure',
  'enough',
  'stand',
  'announc',
  'insemin',
  'yet',
  'anoth',
  'preciou',
  'miracl',
  'everyon',
  'gush',
  'tri',
  'stay',
  'quiet',
  'way',
  'later',
  'ask',
  'everyth',
  'alright',
  'tri',
  'play',
  'push',
  'ask',
  'husband',
  'could',
  'realli',
  'afford',
  'anoth',
  'babi',
  'snippili',
  'repli',
  'god',
  'provid',
  'like',
  'far',
  'realli',
  'piss',
  'yell',
  'actual',
  'god',
  'provid',
  'babi',
  '*',
  '*',
  '*',
  '*',
  'go',
  'give',
  'handout',
  'devolv',
  'big',
  'argument',
  'everyon',
  'shout',
  'basic',
  'ive',
  'ban',
  'famili',
  'unless',
  'apolog',
  'apolog',
  'radio',
  'silenc',
  'except',
  'one',
  'text',
  'mom',
  'say',
  'sister',
  'miscarri',
  'fault',
  'stress',
  'ask',
  'sister',
  'show',
  'symptom',
  'one',
  'answer',
  'tell',
  'idk',
  'think',
  'im',
  'ta',
  'want',
  'reason',
  'miscarri',
  'also',
  'think',
  'might',
  'ta',
  'secretli',
  'think',
  'would',
  'better',
  'even',
  'though',
  'say'],
 ['uh',
  'basic',
  'titl',
  'guess',
  'sister',
  'habit',
  'say',
  'know',
  'realli',
  'get',
  'goat',
  'probli',
  'say',
  'time',
  'day',
  'like',
  'tumblr',
  'post',
  'taught',
  'niec',
  'say',
  'el',
  'chupacabra',
  'mom',
  'say',
  'sound',
  'like',
  'eh',
  'supacaba',
  'tho',
  'caus',
  'four',
  'ador',
  'told',
  'niec',
  'monster',
  'mexico',
  'eat',
  'goat',
  'seem',
  'scare',
  'anyth',
  'probli',
  'caus',
  'monster',
  'know',
  'cooki',
  'monster',
  'appar',
  'niec',
  'walk',
  'around',
  'hous',
  'say',
  'el',
  'chupacabra',
  'day',
  'sister',
  '&',
  'brother',
  'law',
  'mad',
  'teach',
  'imo',
  'kind',
  'ador',
  'also',
  'harmless',
  'like',
  'sister',
  'kid',
  'idk'],
 ['colleg',
  'roommat',
  'last',
  'year',
  'meg',
  'famili',
  'realli',
  'rich',
  'said',
  'could',
  'bring',
  'friend',
  'vacat',
  'kinda',
  'awkward',
  'third',
  'choic',
  'famili',
  'veto',
  'first',
  'two',
  'want',
  'bring',
  'boy',
  'femal',
  'friend',
  'dislik',
  'parent',
  'bought',
  'plane',
  'ticket',
  'book',
  'resort',
  'grate',
  'save',
  'lot',
  'money',
  'could',
  'make',
  'sure',
  'buy',
  'food',
  'activ',
  'im',
  'treat',
  'famili',
  'dinner',
  'thank',
  'ticket',
  'trip',
  'start',
  'bad',
  'mother',
  'father',
  'two',
  'father',
  'friend',
  'three',
  'brother',
  'go',
  'flight',
  'got',
  'first',
  'class',
  'got',
  'economi',
  'seat',
  'say',
  'anyth',
  'argu',
  'free',
  'ticket',
  'first',
  'night',
  'went',
  'groceri',
  'turn',
  'want',
  'cook',
  'resort',
  'kitchen',
  'whole',
  'trip',
  'want',
  'cook',
  'actual',
  'turn',
  'want',
  'meg',
  'cook',
  'warn',
  'turn',
  'meg',
  'famili',
  'sooo',
  'tradit',
  'see',
  'cook',
  'women',
  'job',
  'mom',
  'hand',
  'surgeri',
  'meg',
  'cook',
  'everi',
  'meal',
  'six',
  'men',
  'mom',
  'cant',
  'cook',
  'well',
  'know',
  'coupl',
  'stapl',
  'meal',
  'feed',
  'sinc',
  'rare',
  'eat',
  'meat',
  'know',
  'cook',
  'im',
  'also',
  'ok',
  'cook',
  'practic',
  'cook',
  'group',
  'screw',
  'undercook',
  'chicken',
  'overcook',
  'steak',
  'dad',
  'angri',
  'got',
  'short',
  'told',
  'knew',
  'better',
  'could',
  'pitch',
  'instead',
  'stand',
  'around',
  'critic',
  'got',
  'furiou',
  'said',
  'vacat',
  'said',
  'tri',
  'vacat',
  'invit',
  'unpaid',
  'domest',
  'servant',
  'meg',
  'parent',
  'dad',
  'friend',
  'got',
  'angri',
  'said',
  'start',
  'yell',
  'argument',
  'escal',
  'sarcast',
  'call',
  'help',
  'dad',
  'snap',
  'told',
  'get',
  'suit',
  'go',
  'home',
  'say',
  'shit',
  'expect',
  'left',
  'call',
  'airlin',
  'ticket',
  'ask',
  'could',
  'anyth',
  'prevent',
  'anyon',
  'els',
  'modifi',
  'cancel',
  'ticket',
  'let',
  'set',
  'passcod',
  'chang',
  'could',
  'made',
  'flight',
  'without',
  'went',
  'resort',
  'desk',
  'ask',
  'room',
  'say',
  'strand',
  'unexpectedli',
  'actual',
  'afford',
  'room',
  'avail',
  'weekday',
  'discount',
  'got',
  'hous',
  'still',
  'money',
  'left',
  'touristi',
  'stuff',
  'went',
  'sightse',
  'relax',
  'beach',
  'three',
  'day',
  'meg',
  'parent',
  'ran',
  'take',
  'sunset',
  'walk',
  'doubl',
  'take',
  'see',
  'beach',
  'said',
  'thought',
  'go',
  'home',
  'said',
  'decid',
  'stay',
  'angri',
  'saw',
  'stay',
  'use',
  'return',
  'flight',
  'deceiv',
  'think',
  'afford',
  'vacat',
  'use',
  'flight',
  'could',
  'actual',
  'afford',
  'thing',
  'aita',
  'stay',
  'vacat',
  'use',
  'flight',
  'home'],
 ['im',
  'mom',
  'marri',
  'step',
  'father',
  'older',
  'brother',
  'luke',
  'step',
  'father',
  'ami',
  'ada',
  'come',
  'privileg',
  'background',
  'mum',
  'min',
  'wage',
  'worker',
  'dad',
  'absent',
  'step',
  'father',
  'good',
  'incom',
  'deal',
  'combin',
  'financ',
  'would',
  'contribut',
  'equal',
  'household',
  'take',
  'care',
  'children',
  'spare',
  'money',
  'mum',
  'never',
  'anyth',
  'us',
  'step',
  'father',
  'spend',
  'big',
  'kid',
  'includ',
  'holiday',
  'luke',
  'exclud',
  'step',
  'father',
  'would',
  'pay',
  'mum',
  'us',
  'luke',
  'also',
  'share',
  'room',
  'even',
  'though',
  'ami',
  'ada',
  'room',
  'guest',
  'room',
  'step',
  'father',
  'insist',
  'pay',
  'toward',
  'hous',
  'mum',
  'share',
  'would',
  'get',
  'one',
  'room',
  'kid',
  'luke',
  'constantli',
  'teas',
  'situat',
  'three',
  'grew',
  'mum',
  'alway',
  'said',
  'thank',
  'step',
  'father',
  'would',
  'live',
  'nice',
  'home',
  'good',
  'neighborhood',
  'anyway',
  'luke',
  'becam',
  'determin',
  'abl',
  'take',
  'care',
  'need',
  'take',
  'nonsens',
  'anyon',
  'done',
  'quit',
  'well',
  'career',
  'financ',
  'good',
  'place',
  'sinc',
  'turn',
  'move',
  'relationship',
  'three',
  'limit',
  'call',
  'us',
  'friend',
  'exist',
  'peac',
  'place',
  'visit',
  'mum',
  'recent',
  'step',
  'father',
  'mention',
  'ami',
  'want',
  'buy',
  'hous',
  'pregnant',
  'ask',
  'im',
  'abl',
  'help',
  'littl',
  'deposit',
  'hous',
  '£',
  'need',
  '£',
  'deposit',
  '£',
  'far',
  '£',
  '£',
  'mum',
  '£',
  'step',
  'father',
  'ask',
  'luke',
  'help',
  'cover',
  'extra',
  '£',
  'said',
  'hed',
  'pay',
  'us',
  'back',
  'part',
  'inherit',
  'eventu',
  'said',
  'insist',
  'luke',
  'hous',
  'outright',
  'incom',
  'abl',
  'help',
  'said',
  'whether',
  'irrelev',
  'answer',
  'remind',
  'luke',
  'gave',
  '£',
  'cousin',
  'buy',
  'hous',
  'gift',
  'ami',
  'sister',
  'offer',
  'pay',
  'us',
  'back',
  'said',
  'choic',
  'choic',
  'insist',
  'help',
  'famili',
  'abl',
  'repli',
  'back',
  'like',
  'help',
  'luke',
  'kid',
  'everyon',
  'went',
  'quiet',
  'said',
  'said',
  'went',
  'back',
  'time',
  'hed',
  'done',
  'thing',
  'differ',
  'treat',
  'four',
  'us',
  'equal',
  'said',
  'good',
  'make',
  'entitl',
  'money',
  'said',
  'know',
  'entitl',
  'ask',
  'promis',
  'pay',
  'back',
  'said',
  'answer',
  'still',
  'entitl',
  'loan',
  'either',
  'mum',
  'later',
  'told',
  'could',
  'turn',
  'without',
  'asshol',
  'bring',
  'childhood',
  'alreadi',
  'feel',
  'guilti',
  'aita'],
 ['fiance',
  'year',
  'get',
  'marri',
  'soon',
  'ive',
  'met',
  'famili',
  'coupl',
  'time',
  'daughter',
  'judi',
  'never',
  'met',
  'til',
  'recent',
  'host',
  'dinner',
  'celebr',
  'th',
  'juli',
  'met',
  'first',
  'time',
  'judi',
  'visibl',
  'burnscar',
  'forehead',
  'due',
  'accid',
  'use',
  'tk',
  'incred',
  'insecur',
  'point',
  'forc',
  'home',
  'school',
  'hard',
  'tri',
  'deal',
  'navig',
  'rough',
  'time',
  'lot',
  'better',
  'though',
  'comment',
  'realli',
  'caus',
  'becom',
  'stress',
  'anxiou',
  'fiance',
  'know',
  'respect',
  'went',
  'parent',
  'hous',
  'ask',
  'tell',
  'judi',
  'struggl',
  'get',
  'tri',
  'say',
  'anyth',
  'neg',
  'possibl',
  'mention',
  'said',
  'would',
  'guarente',
  'one',
  'say',
  'anyth',
  'got',
  'event',
  'talk',
  'judi',
  'slowli',
  'warm',
  'everyth',
  'go',
  'well',
  'til',
  'dinner',
  'time',
  'fmil',
  'look',
  'judi',
  'eat',
  'point',
  'scar',
  'basic',
  'ask',
  'question',
  'made',
  'judi',
  'lose',
  'appetit',
  'start',
  'get',
  'uncomfort',
  'kept',
  'send',
  'fiance',
  'mom',
  'sign',
  'knock',
  'avail',
  'final',
  'fmil',
  'brought',
  'wed',
  'ask',
  'fiance',
  'itd',
  'possibl',
  'photoshop',
  'scar',
  'wed',
  'photo',
  'judi',
  'case',
  'distract',
  'viewer',
  'dumbfound',
  'fiance',
  'said',
  'noth',
  'stare',
  'casual',
  'nod',
  'look',
  'judi',
  'clear',
  'got',
  'lean',
  'closer',
  'ask',
  'feel',
  'uncomfort',
  'could',
  'leav',
  'answer',
  'ye',
  'took',
  'time',
  'nod',
  'said',
  'ye',
  'im',
  'feel',
  'uncomfort',
  'right',
  'got',
  'told',
  'get',
  'readi',
  'caus',
  'leav',
  'fiance',
  'mom',
  'famili',
  'start',
  'insist',
  'finish',
  'dinner',
  'stay',
  'refus',
  'took',
  'judi',
  'got',
  'car',
  'left',
  'even',
  'talk',
  'fianc',
  'obvious',
  'piss',
  'call',
  'angri',
  'talk',
  'disrespect',
  'parent',
  'take',
  'judi',
  'leav',
  'middl',
  'dinnerand',
  'even',
  'say',
  'goodby',
  'told',
  'judi',
  'feel',
  'uncomfort',
  'fmil',
  'comment',
  'question',
  'said',
  'judi',
  'overreact',
  'need',
  'go',
  'back',
  'therapi',
  'simpli',
  'mention',
  'scar',
  'caus',
  'react',
  'way',
  'got',
  'tire',
  'argu',
  'ask',
  'give',
  'us',
  'time',
  'went',
  'said',
  'respect',
  'famili',
  'irrat',
  'speak',
  'til',
  'clear',
  'thing',
  'famili',
  'ruin',
  'celebratori',
  'dinner'],
 ['im',
  'new',
  'mom',
  'son',
  'week',
  'ago',
  'husband',
  'parent',
  'stay',
  'us',
  'thing',
  'super',
  'overwhelm',
  'mil',
  'habit',
  'take',
  'babi',
  'refus',
  'give',
  'back',
  'shed',
  'say',
  'im',
  'deliber',
  'ruin',
  'time',
  'son',
  'need',
  'feed',
  'everi',
  'hr',
  'basic',
  'make',
  'beg',
  'hand',
  'could',
  'feed',
  'last',
  'night',
  'pm',
  'mil',
  'son',
  'arm',
  'sit',
  'couch',
  'husband',
  'dad',
  'exhaust',
  'babi',
  'start',
  'cri',
  'told',
  'mil',
  'hand',
  'could',
  'feed',
  'refus',
  'kept',
  'ask',
  'husband',
  'start',
  'talk',
  'whinni',
  'littl',
  'girl',
  'complain',
  'son',
  'receiv',
  'love',
  'cuddl',
  'im',
  'use',
  'feed',
  'excus',
  'keep',
  'babi',
  'away',
  'mom',
  'ignor',
  'told',
  'mom',
  'hand',
  'babi',
  'refus',
  'said',
  'need',
  'wait',
  'littl',
  'longer',
  'got',
  'angri',
  'point',
  'husband',
  'said',
  'could',
  'take',
  'babi',
  'ask',
  'mom',
  'nice',
  'seeth',
  'meanli',
  'told',
  'mom',
  'stop',
  'annoy',
  'overbear',
  'hand',
  'look',
  'shock',
  'hurt',
  'hand',
  'babi',
  'ran',
  'guest',
  'room',
  'husband',
  'gave',
  'look',
  'follow',
  'stay',
  'insid',
  'comfort',
  'came',
  'room',
  'feed',
  'son',
  'start',
  'yell',
  'disrespect',
  'speak',
  'mom',
  'way',
  'treat',
  'poorli',
  'show',
  'son',
  'love',
  'told',
  'take',
  'babi',
  'hour',
  'prevent',
  'feed',
  'properli',
  'said',
  'son',
  'object',
  'act',
  'like',
  'mom',
  'noth',
  'wrong',
  'ask',
  'nice',
  'instead',
  'bi',
  '$',
  'ch',
  'mom',
  'make',
  'cri',
  'start',
  'cri',
  'yell',
  'id',
  'go',
  'mom',
  'place',
  'parent',
  'stay',
  'longer',
  'yell',
  'back',
  'say',
  'shut',
  'fuck',
  'act',
  'caus',
  'want',
  'parent',
  'around',
  'fuck',
  'wrong',
  'walk',
  'felt',
  'terribl',
  'think',
  'mayb',
  'rude',
  'mom',
  'also',
  'think',
  'id',
  'hit',
  'limit',
  'aita',
  'ask',
  'nice',
  'like',
  'husband',
  'want',
  'edit',
  'mistak',
  'hand',
  'bit',
  'unsteadi'],
 ['ex-husband',
  'got',
  'divorc',
  'yr',
  'ago',
  'divorc',
  'old',
  'singl',
  'wide',
  'mobil',
  'home',
  'larg',
  'piec',
  'land',
  'zone',
  'trailer',
  'park',
  'want',
  'new',
  'truck',
  'save',
  'want',
  'old',
  'trailer',
  'land',
  'ex',
  'girl',
  '&',
  'sinc',
  'divorc',
  'slowli',
  'start',
  'buy',
  'old',
  'singl',
  'wide',
  'restor',
  'turn',
  'busi',
  'love',
  'girl',
  'go',
  'dad',
  'ap',
  'apart',
  'everi',
  'weekend',
  'start',
  'notic',
  'cloth',
  'electron',
  'toy',
  'come',
  'home',
  'first',
  'thought',
  'dad',
  'keep',
  'outfit',
  'howev',
  'yr',
  'old',
  'got',
  'upset',
  'pack',
  'ask',
  'wrong',
  'told',
  'dad',
  'take',
  'cloth',
  'sell',
  'line',
  'want',
  'take',
  'favorit',
  'shirt',
  'immedi',
  'call',
  'ex',
  'ask',
  'return',
  'daughter',
  'cloth',
  'want',
  'throw',
  'daughter',
  'bu',
  'blame',
  'enough',
  'school',
  'play',
  'dumb',
  'said',
  'got',
  'rid',
  'cloth',
  'small',
  'point',
  'jean',
  'yr',
  'brand',
  'new',
  'said',
  'fair',
  'got',
  'cash',
  'trailer',
  'land',
  'good',
  'piss',
  'took',
  'daughter',
  'dollar',
  'store',
  'bought',
  'cheap',
  'shirt',
  'thrift',
  'store',
  'bought',
  'cheap',
  'short',
  'girl',
  'tie',
  'dye',
  'night',
  'hot',
  'pink',
  'everi',
  'thing',
  'made',
  'shirt',
  'bottom',
  'let',
  'girl',
  'design',
  'decor',
  'girl',
  'love',
  'follow',
  'week',
  'ex',
  'send',
  'girl',
  'home',
  'could',
  'tell',
  'mad',
  'say',
  'anyth',
  'cloth',
  'return',
  'fear',
  'knew',
  'would',
  'issu',
  'made',
  'extra',
  'girl',
  'went',
  'back',
  'wear',
  'tie',
  'dye',
  'dad',
  'hour',
  'call',
  'demand',
  'differ',
  'cloth',
  'kindli',
  'told',
  'daughter',
  'love',
  'cloth',
  'realli',
  'realli',
  'love',
  'tie',
  'dye',
  'ex',
  'get',
  'even',
  'angrier',
  'said',
  'parent',
  'major',
  'famili',
  'parti',
  'girl',
  'cant',
  'wear',
  'pink',
  'tie',
  'dye',
  'told',
  'go',
  'buy',
  'cloth',
  'want',
  'wear',
  'call',
  'petti',
  'aita',
  'edit',
  'add',
  'thank',
  'much',
  'comment',
  'thing',
  'clarifi',
  'ap',
  'stand',
  'affair',
  'partner',
  'past',
  'tens',
  'ex',
  'land',
  'deed',
  'titl',
  'trailer',
  'sadli',
  'true',
  'stori',
  'sorri',
  'believ',
  'time',
  'heart',
  'goe',
  'share',
  'similar',
  'stori',
  'thank',
  'love',
  'support'],
 ['older',
  'brother',
  'ob',
  'bit',
  'bum',
  'mean',
  'say',
  'true',
  'never',
  'hang',
  'onto',
  'job',
  'longer',
  'coupl',
  'year',
  'max',
  'inevit',
  'lose',
  'whatev',
  'job',
  'start',
  'mooch',
  'famili',
  'friend',
  'find',
  'anoth',
  'job',
  'month',
  'later',
  'entail',
  'freeload',
  'place',
  'eat',
  'food',
  'use',
  'stuff',
  'etc',
  'lost',
  'friend',
  'long',
  'bum',
  'blame',
  'cut',
  'well',
  'last',
  'time',
  'lost',
  'job',
  'went',
  'parent',
  'room',
  'let',
  'eldest',
  'brother',
  'eb',
  'famili',
  'stay',
  'sil',
  'lost',
  'job',
  'nowher',
  'within',
  'month',
  'eb',
  'entir',
  'crew',
  'laid',
  'zero',
  'warn',
  'sil',
  'work',
  'burn',
  'afford',
  'home',
  'rent',
  'anymor',
  'ob',
  'pretti',
  'much',
  'sol',
  'parent',
  'aunt',
  'uncl',
  'start',
  'call',
  'ask',
  'id',
  'take',
  'long',
  'enough',
  'could',
  'get',
  'feet',
  'stupidli',
  'let',
  'feel',
  'bad',
  'said',
  'okay',
  'month',
  'get',
  'anoth',
  'job',
  'street',
  'said',
  'cours',
  'cours',
  'came',
  'stay',
  'nightmar',
  'slob',
  'never',
  'wash',
  'dish',
  'never',
  'wash',
  'cloth',
  'eat',
  'pretti',
  'much',
  'whatev',
  'want',
  'guess',
  'sinc',
  'im',
  'littl',
  'sister',
  'figur',
  'could',
  'ignor',
  'say',
  'get',
  'shit',
  'togeth',
  'well',
  'month',
  'told',
  'go',
  'gave',
  'coupl',
  'week',
  'find',
  'somewher',
  'els',
  'well',
  'seem',
  'call',
  'parent',
  'cri',
  'kick',
  'told',
  'knew',
  'stay',
  'forev',
  'also',
  'ofc',
  'call',
  'auntsuncl',
  'told',
  'busybodi',
  'aunt',
  'call',
  'scold',
  'cruel',
  'brother',
  'abandon',
  'famili',
  'need',
  'help',
  'let',
  'talk',
  'final',
  'said',
  'right',
  'help',
  'famili',
  'import',
  'im',
  'glad',
  'show',
  'seem',
  'glad',
  'understood',
  'right',
  'thing',
  'hang',
  'follow',
  'advic',
  'pack',
  'bro',
  'drove',
  'hous',
  'take',
  'care',
  'anymor',
  'run',
  'bill',
  'aunt',
  'made',
  'good',
  'point',
  'famili',
  'help',
  'drop',
  'room',
  'sinc',
  'kid',
  'move',
  'left',
  'even',
  'halfway',
  'home',
  'get',
  'multipl',
  'call',
  'parent',
  'aunt',
  'parent',
  'demand',
  'know',
  'aunt',
  'blow',
  'phone',
  'aunt',
  'leav',
  'voicemail',
  'shout',
  'come',
  'back',
  'get',
  'brother',
  'explain',
  'parent',
  'said',
  'good',
  'idea',
  'sinc',
  'aunt',
  'sound',
  'like',
  'want',
  'help',
  'aunt',
  'call',
  'asshol',
  'said',
  'want',
  'brother',
  'told',
  'famili',
  'help',
  'call',
  'cunt',
  'last',
  'check',
  'still',
  'live',
  'aita',
  '\\-',
  'sorri',
  'lack',
  'repli',
  'answer',
  'one',
  'could',
  'left',
  'work',
  'got',
  'back',
  'far',
  'mani',
  'answer',
  'lot',
  'peopl',
  'ask',
  'similar',
  'question',
  'thought',
  'answer',
  'would',
  'help',
  'brother',
  'work',
  'menial',
  'job',
  'hop',
  'one',
  'minimum',
  'wage',
  'job',
  'anoth',
  'work',
  'good',
  'pay',
  'job',
  'like',
  'electron',
  'repair',
  'automot',
  'mainten',
  'etc',
  'skill',
  'lazi',
  'aunt',
  'spoken',
  'sinc',
  'call',
  'cunt',
  'hung',
  'brother',
  '-ish',
  'week',
  'stay',
  '-',
  'month',
  'brother',
  'upset',
  'kick',
  'initi',
  'better',
  'mood',
  'realiz',
  'anoth',
  'place',
  'line',
  'stay',
  'sure',
  'theyr',
  'togeth',
  'sinc',
  'talk',
  'either',
  'sinc',
  'drop',
  'aunt',
  'marri',
  'anymor',
  'uncl',
  'got',
  'divorc',
  'live',
  'new',
  'wife',
  'heard',
  'dad',
  'thought',
  'hilari',
  '\\-',
  'edit',
  '-',
  'everyon',
  'hound',
  'pm',
  'comment',
  'brother',
  'last',
  'time',
  'check',
  'neurodiverg',
  'add',
  'adhd',
  'mom',
  'took',
  'doctor',
  'around',
  '-',
  'behavior',
  'worst',
  'accord',
  'mom',
  'doctor',
  'said',
  'perfectli',
  'healthi',
  'fine',
  'though',
  'doctor',
  'suggest',
  'mental',
  'stimul',
  'enough',
  'aka',
  'bore',
  'mom',
  'want',
  'take',
  'see',
  'doctor',
  'hed',
  'turn',
  'refus',
  'go',
  'forc',
  'also',
  'suggest',
  'mayb',
  'see',
  'doctor',
  'ob',
  'seem',
  'interest',
  'never',
  'highest',
  'respect',
  'doctor',
  'mental',
  'ill',
  'treat',
  'like',
  'fake',
  'babi',
  'sister',
  'diagnos',
  'ed',
  'crack',
  'joke',
  'want',
  'doctor',
  'note',
  'could',
  'eat'],
 ['ill',
  'prefac',
  'say',
  'husband',
  'friend',
  'carl',
  'consid',
  'one',
  'closest',
  'friend',
  'husband',
  'sometim',
  'call',
  'carl',
  'nicotin',
  'much',
  'miss',
  'want',
  'spend',
  'time',
  'everyth',
  'togeth',
  'theyr',
  'even',
  'co',
  'worker',
  'work',
  'job',
  'unfortun',
  'carloss',
  'wife',
  'pass',
  'away',
  'cancer',
  'month',
  'ago',
  'caus',
  'distanc',
  'husband',
  'felt',
  'devast',
  'recent',
  'start',
  'spend',
  'time',
  'brought',
  'meal',
  'new',
  'cloth',
  'plan',
  'day',
  'vacat',
  'anoth',
  'state',
  'made',
  'hotel',
  'reserv',
  'unbeknownst',
  'husband',
  'invit',
  'carl',
  'come',
  'us',
  'made',
  'upset',
  'spoli',
  'entir',
  'vacat',
  'tri',
  'dramat',
  'found',
  'went',
  'pick',
  'suck',
  'husband',
  'explain',
  'carl',
  'recent',
  'widow',
  'wallow',
  'grief',
  'long',
  'need',
  'vacat',
  'problem',
  'money',
  'tight',
  'sinc',
  'carl',
  'work',
  'eversinc',
  'wife',
  'pass',
  'pay',
  'room',
  'budget',
  'husband',
  'said',
  'share',
  'one',
  'room',
  'suck',
  'sinc',
  'said',
  'wed',
  'day',
  'beach',
  'anyway',
  'first',
  'night',
  'bed',
  'husband',
  'carl',
  'got',
  'back',
  'got',
  'woken',
  'husband',
  'tell',
  'get',
  'bed',
  'sleep',
  'thd',
  'mattress',
  'put',
  'floor',
  'carl',
  'would',
  'take',
  'bed',
  'ask',
  'seriou',
  'ask',
  'els',
  'suppos',
  'said',
  'carl',
  'guest',
  'cant',
  'let',
  'sleep',
  'floor',
  'time',
  'cant',
  'share',
  'bed',
  'carl',
  'husband',
  'sleep',
  'floor',
  'told',
  'sign',
  'told',
  'suck',
  'tri',
  'pull',
  'carl',
  'widow',
  'card',
  'told',
  'carl',
  'get',
  'got',
  'got',
  'dress',
  'go',
  'home',
  'husband',
  'start',
  'yell',
  'call',
  'irrat',
  'left',
  'hotel',
  'travel',
  'back',
  'home',
  'carl',
  'say',
  'anyth',
  'saw',
  'leav',
  'except',
  'make',
  'non-issu',
  'issu',
  'got',
  'back',
  'husband',
  'refus',
  'even',
  'talk',
  'still',
  'said',
  'ruin',
  'carl',
  'us',
  'act',
  'abhorr',
  'disgustingli',
  'admit',
  'carl',
  'struggl',
  'mightv',
  'ruin',
  'even',
  'know',
  'come'],
 ['singl',
  'father',
  'boy',
  'mother',
  'die',
  'last',
  'year',
  'due',
  'ovarian',
  'cancer',
  'rough',
  'year',
  'say',
  'least',
  'sister',
  'got',
  'divorc',
  'month',
  'ago',
  'temporarili',
  'move',
  'boy',
  'son',
  'nephew',
  'stay',
  'us',
  'time',
  'nephew',
  'yro',
  'best',
  'friend',
  'far',
  'got',
  'along',
  'fine',
  'apart',
  'teas',
  'side',
  'week',
  'ago',
  'yro',
  'start',
  'tell',
  'cousin',
  'bulli',
  'mean',
  'call',
  'name',
  'push',
  'around',
  'took',
  'video',
  'game',
  'etc',
  'talk',
  'sister',
  'mani',
  'time',
  'told',
  'talk',
  'son',
  'talk',
  'boy',
  'togeth',
  'thing',
  'settl',
  'yesterday',
  'yro',
  'birthday',
  'whole',
  'famili',
  'late',
  'wife',
  'famili',
  'well',
  'extrem',
  'emot',
  'everyon',
  'first',
  'birthday',
  'sinc',
  'wife',
  'gone',
  'boy',
  'yro',
  'yro',
  'start',
  'fight',
  'ask',
  'calm',
  'behav',
  'son',
  'start',
  'cri',
  'told',
  'cousin',
  'teas',
  'mom',
  'choke',
  'ask',
  'nephew',
  'true',
  'said',
  'ye',
  'sorri',
  'figur',
  'id',
  'proper',
  'talk',
  'sister',
  'parti',
  'told',
  'said',
  'realli',
  'aw',
  'say',
  'comfort',
  'son',
  'went',
  'back',
  'parti',
  'cut',
  'cake',
  'sister',
  'came',
  'yell',
  'say',
  'bussineaa',
  'disciplin',
  'child',
  'told',
  'drop',
  'well',
  'talk',
  'later',
  'instead',
  'said',
  'besid',
  'right',
  'kid',
  'need',
  'mom',
  'tear',
  'eye',
  'time',
  'said',
  'see',
  'even',
  'turn',
  'pu',
  '*',
  '*',
  'in-law',
  'cri',
  'tear',
  'kid',
  'upset',
  'aw',
  'told',
  'stop',
  'leav',
  'kid',
  'famili',
  'cut',
  'cake',
  'talk',
  'even',
  'said',
  'listen',
  'lost',
  'spous',
  'least',
  'im',
  'still',
  'normal',
  'person',
  'storm',
  'parti',
  'told',
  'day',
  'pack',
  'shit',
  'leav',
  'beg',
  'throw',
  'kid',
  'homeless',
  'aita',
  'throw',
  'updat',
  'mom',
  'agre',
  'take',
  'sister',
  'temporarili',
  'nephew',
  'still',
  'go',
  'dad',
  'dad',
  'say',
  'way',
  'let',
  'sister',
  'ruin',
  'kid',
  'want',
  'thank',
  'kind',
  'word',
  'love',
  'support',
  'also',
  'everyon',
  'also',
  'share',
  'lose',
  'love',
  'one',
  'sorri',
  'loss',
  'nephew',
  'suppos',
  'leav',
  'tomorrow',
  'morn',
  'mom',
  'pick',
  'sister',
  'right',
  'around',
  'time',
  'inlaw',
  'bring',
  'boy',
  'back',
  'even',
  'well',
  'littl',
  'post-birhday',
  'thing',
  'littl',
  'one',
  'come',
  'boy',
  'inlaw',
  'ice',
  'cream',
  'said',
  'prefer',
  'cake',
  'cartoon',
  'one',
  'day',
  'time'],
 ['husband',
  'marri',
  'year',
  'still',
  'kid',
  'want',
  'still',
  'happen',
  'friend',
  'famili',
  'caus',
  'us',
  'constant',
  'stress',
  'babi',
  'soon',
  'obvious',
  'someth',
  'cant',
  'control',
  'wish',
  'theyd',
  'stop',
  'avail',
  'come',
  'idea',
  'stupid',
  'know',
  'empti',
  'jar',
  'call',
  'pregnanc',
  'jar',
  'carri',
  'bag',
  'whenev',
  'im',
  'friend',
  'famili',
  'everytim',
  'someon',
  'ask',
  'husband',
  'gon',
  'na',
  'babi',
  'pull',
  'jar',
  'ask',
  'drop',
  'dollar',
  'ask',
  'id',
  'get',
  'puzzl',
  'look',
  'reach',
  'pocketswalletspurs',
  'pull',
  'dollar',
  'insid',
  'jar',
  'actual',
  'work',
  'thrm',
  'stop',
  'ask',
  'month',
  'last',
  'week',
  'dinner',
  'parent',
  'hous',
  'brother',
  'came',
  'back',
  'busi',
  'trip',
  'last',
  'month',
  'eat',
  'ask',
  'husband',
  'go',
  'kid',
  'husband',
  'paus',
  'got',
  'chair',
  'made',
  'way',
  'brother',
  'sit',
  'jar',
  'hand',
  'ask',
  'drop',
  'dollar',
  'question',
  'ask',
  'stare',
  'laugh',
  'nervous',
  'ask',
  'seriou',
  'everyon',
  'look',
  'us',
  'said',
  'pay',
  'told',
  'ask',
  'either',
  'could',
  'tell',
  'felt',
  'embarrass',
  'immedi',
  'reach',
  'pocket',
  'pull',
  'wallet',
  'put',
  'dollar',
  'jar',
  'made',
  'way',
  'back',
  'seat',
  'sat',
  'resum',
  'eat',
  'like',
  'noth',
  'happen',
  'got',
  'awkward',
  'afterward',
  'mom',
  'pull',
  'kitchen',
  'later',
  'tell',
  'embarrass',
  'brother',
  'infront',
  'wife',
  'famili',
  'said',
  'quit',
  'act',
  'childish',
  'run',
  'around',
  'jar',
  'demand',
  'put',
  'money',
  'told',
  'quit',
  'ask',
  'went',
  'theyr',
  'worri',
  'us',
  'sinc',
  'mid',
  'much',
  'time',
  'left',
  'want',
  'least',
  'one',
  'healthi',
  'babi',
  'got',
  'upset',
  'start',
  'argu',
  'husband',
  'left',
  'seen',
  'day',
  'except',
  'got',
  'call',
  'sister',
  'basic',
  'side',
  'mom',
  'say',
  'im',
  'childish',
  'aita',
  '[',
  'edit',
  '-',
  '&',
  ']',
  'go',
  'year',
  'past',
  'year',
  'gotten',
  'wors',
  'alreadi',
  'told',
  'feel',
  'regard',
  'question',
  'husband',
  'care',
  'much',
  'say',
  'let',
  'go',
  'ye',
  'pay',
  'everytim',
  'dollar',
  'make',
  'richer',
  'poorer',
  'husband',
  'spend',
  'money',
  'snack',
  'eat',
  'everi',
  'night',
  'watch',
  'tv',
  'toy',
  'dog',
  'one',
  'thing',
  'realiz',
  'could',
  'actual',
  'expand',
  'wed',
  'jarcak',
  'jar',
  'weight',
  'losswork',
  'jarhous',
  'jar',
  'depend',
  'type',
  'truggl',
  'thing',
  'struggl',
  'get',
  'frustrat',
  'often',
  'fact',
  'peopl',
  'keep',
  'ask',
  'might',
  'becom',
  'millionair',
  'one',
  'day',
  'lol',
  'also',
  'someon',
  'suggest',
  'price',
  '$',
  'mostli',
  'depend',
  'price',
  'ga',
  'lol',
  'well',
  'see'],
 ['context',
  'year',
  'first',
  'time',
  'would',
  'tri',
  'elf',
  'shelf',
  'kid',
  'kid',
  'luca',
  'andi',
  'clair',
  'luca',
  'andi',
  'past',
  'relationship',
  'howev',
  'mile',
  'husband',
  'accept',
  'andi',
  'luca',
  'everi',
  'christma',
  'special',
  'andi',
  'bd',
  'dec',
  'dad',
  'start',
  'tradit',
  'santa',
  'wouldv',
  'consider',
  'kid',
  'christma',
  'feel',
  'magic',
  'special',
  'alway',
  'tri',
  'give',
  'last',
  'year',
  'left',
  'santa',
  'clau',
  'footstep',
  'ate',
  'carrot',
  'grass',
  'left',
  'rudolf',
  'stuff',
  'like',
  'husband',
  'think',
  'good',
  'idea',
  'im',
  'show',
  'favorit',
  'shut',
  'ex',
  'decis',
  'creat',
  'tradit',
  'without',
  'consid',
  'kid',
  'feel',
  'disagre',
  'sinc',
  'consid',
  'ask',
  'could',
  'smth',
  'els',
  'like',
  'elf',
  'shelf',
  'problem',
  'know',
  'work',
  'explain',
  'quickli',
  'sinc',
  'one',
  'offer',
  'let',
  'bought',
  'cute',
  'elf',
  'kid',
  'name',
  'bob',
  'later',
  'husband',
  'explain',
  'behav',
  'never',
  'touchhold',
  'bob',
  'want',
  'naughti',
  'first',
  'cute',
  'see',
  'spi',
  'bob',
  'tri',
  'see',
  'fli',
  'night',
  'andi',
  'excit',
  'found',
  'one',
  'night',
  'talk',
  'ask',
  'santa',
  'still',
  'rememb',
  'husband',
  'took',
  'serious',
  'behav',
  'bob',
  'would',
  'naughti',
  'part',
  'luca',
  'first',
  'victim',
  'chore',
  'next',
  'day',
  'face',
  'drawn',
  'sharpi',
  'marker',
  'clair',
  'touch',
  'bob',
  'fave',
  'onesi',
  'destroy',
  'appar',
  'bob',
  'cut',
  'piec',
  'sleep',
  'mile',
  'fun',
  'could',
  'see',
  'kid',
  'talk',
  'lower',
  'prank',
  'agre',
  'want',
  'catch',
  'andi',
  'sinc',
  'break',
  'rule',
  'told',
  'bob',
  'suppos',
  'tell',
  'santa',
  'instead',
  'naughti',
  'argu',
  'final',
  'agre',
  'fast',
  'forward',
  'christma',
  'eve',
  'afternoon',
  'andi',
  'friend',
  'celebr',
  'bd',
  'kid',
  'play',
  'backyard',
  'husband',
  'look',
  'su',
  'decid',
  'look',
  'bob',
  'suppos',
  'kitchen',
  'ask',
  'mile',
  'told',
  'idea',
  'start',
  'get',
  'paranoid',
  'andi',
  'ask',
  'could',
  'cut',
  'cake',
  'alreadi',
  'put',
  'best',
  'face',
  'went',
  'cake',
  'box',
  'andi',
  'open',
  'box',
  'start',
  'cri',
  'take',
  'look',
  'ruin',
  'bob',
  'cover',
  'appear',
  'eat',
  'cake',
  'half',
  'cake',
  'anymor',
  'mile',
  'start',
  'laugh',
  'parent',
  'blood',
  'boil',
  'grab',
  'bob',
  'throw',
  'trash',
  'grab',
  'mile',
  'terribl',
  'argument',
  'call',
  'ah',
  'bob',
  'ive',
  'ruin',
  'suppos',
  'keep',
  'magic',
  'kid',
  'suppos',
  'touch',
  'bob',
  'edit',
  'everyon',
  'respons',
  'realli',
  'overwhelm',
  'im',
  'sorri',
  'took',
  'time',
  'answer',
  'kinda',
  'avoid',
  'post',
  'sinc',
  'conflict',
  'possibl',
  'outcom',
  'im',
  'go',
  'comment',
  'answer',
  'question',
  'id',
  'also',
  'explain',
  'thing',
  'doubt',
  'common',
  '-andi',
  'dad',
  'canada',
  'visit',
  'andi',
  'everi',
  'spring',
  'summer',
  'christma',
  'break',
  'year',
  'stay',
  'job',
  'absent',
  'parent',
  '-after',
  'andi',
  'bd',
  'told',
  'mile',
  'get',
  'hous',
  'spent',
  'christma',
  'law',
  'stay',
  'kid',
  'slept',
  'andi',
  'room',
  'kid',
  'want',
  'leav',
  'brother',
  'alon',
  'next',
  'morn',
  'open',
  'gift',
  'made',
  'sure',
  'andi',
  'could',
  'feel',
  'special',
  'happen',
  'bd',
  'wrote',
  'note',
  'bob',
  'say',
  'sorri',
  'scare',
  'sibl',
  'job',
  'correctli',
  'would',
  'fli',
  'np',
  'santa',
  'ask',
  'santa',
  'still',
  'rememb',
  'kid',
  'xma',
  'santa',
  'realli',
  'happi',
  'see',
  '-mi',
  'kid',
  'ok',
  'sleep',
  'parent',
  'hous',
  'would',
  'celebr',
  'nye',
  '-ye',
  'clair',
  'usign',
  'onesi',
  'sleep',
  'husband',
  'took',
  'idea',
  'tik',
  'tok',
  'andi',
  'noth',
  'even',
  'attack',
  'bob'],
 ['pretti',
  'much',
  'titl',
  'think',
  'ive',
  'get',
  'flack',
  'realli',
  'want',
  'clear',
  'start',
  'new',
  'job',
  'recent',
  'work',
  'small',
  'studio',
  'sever',
  'build',
  'think',
  'open',
  'plan',
  'offic',
  'section',
  'assign',
  'studio',
  'person',
  'alterc',
  'work',
  'studio',
  'fyi',
  'eat',
  'lunch',
  'ish',
  'peopl',
  'eat',
  'came',
  'ealri',
  'eat',
  'made',
  'coffe',
  'counter',
  'notic',
  'tuppawar',
  'sink',
  'empti',
  'imagin',
  'surpris',
  'turn',
  'around',
  'saw',
  'man',
  'know',
  'sit',
  'tabl',
  'food',
  'plate',
  'stuck',
  'microwav',
  'act',
  'rashli',
  'sinc',
  'mad',
  'sat',
  'next',
  'said',
  'hey',
  'look',
  'good',
  'mind',
  'tri',
  'wait',
  'answer',
  'yank',
  'plate',
  'away',
  'snatch',
  'fork',
  'hand',
  'blink',
  'shock',
  'peopl',
  'start',
  'eat',
  'quit',
  'loudli',
  'ask',
  'thought',
  'repli',
  'huh',
  'know',
  'actual',
  'much',
  'better',
  'first',
  'cook',
  'probabl',
  'lost',
  'flavor',
  'fridg',
  'caught',
  'quickli',
  'food',
  'went',
  'lil',
  'red',
  'ask',
  'got',
  'gall',
  'steal',
  'someon',
  'els',
  'lunch',
  'ask',
  'took',
  'back',
  'stutter',
  'nonsens',
  'know',
  'mine',
  'repli',
  'well',
  'knew',
  'right',
  'mumbl',
  'someth',
  'like',
  'apolog',
  'said',
  'problem',
  'nice',
  'hed',
  'warm',
  'least',
  'admittedli',
  '*',
  'tchi',
  'tone',
  'got',
  'left',
  'peopl',
  'stare',
  'silenc',
  'silent',
  'watcher',
  'mayb',
  'mate',
  'idk',
  'told',
  'rude',
  'nicer',
  'way',
  'go',
  'told',
  'think',
  'theyd',
  'feel',
  'someon',
  'ate',
  'food',
  'say',
  'focu',
  'lunch',
  'ill',
  'focu',
  'mine',
  'well',
  'littl',
  'awkward',
  'lunch',
  'sinc',
  'impress',
  'peopl',
  'talk',
  'shite',
  'work',
  'mayb',
  'couldv',
  'nicer',
  'sure',
  'still',
  'think',
  'wrong',
  'tell',
  'reddit',
  'aita',
  'tldr',
  'lunchthief',
  'tri',
  'eat',
  'food',
  'front',
  'took',
  'back',
  'embarrass',
  'front',
  'colleagu',
  'edit',
  'okay',
  'blew',
  'want',
  'drop',
  'edit',
  'say',
  'thank',
  'much',
  'comment',
  'support',
  'award',
  'great',
  'know',
  'complet',
  'overreact',
  'mayb',
  'shoudl',
  'chat',
  'tp',
  'peopl',
  'see',
  'food',
  'thief',
  'struck',
  'updat',
  'yall',
  'interest',
  'otherwis',
  'addit',
  'info',
  'saw',
  'comment',
  'say',
  'go',
  'hr',
  'studio',
  'hr',
  'perp',
  'work',
  'place',
  'defacto',
  'offic',
  'manag',
  'want',
  'take',
  'sinc',
  'im',
  'still',
  'new',
  'probationthink',
  'reaction',
  'might',
  'enough',
  'updat',
  'sure',
  'anyon',
  'want',
  'updat',
  'final',
  'found',
  'new',
  'friend',
  'work',
  'ye',
  'lunch',
  'thief',
  'struck',
  'appar',
  'everyon',
  'wrote',
  'name',
  'lunch',
  'combat',
  'thief',
  'target',
  'unmark',
  'lunch',
  'lunch',
  'item',
  'guess',
  'one',
  'told',
  'peopl',
  'appar',
  'start',
  'petti',
  'standoff-ish',
  'thief',
  'sinc',
  'blame',
  'lol',
  'also',
  'accord',
  'new',
  'friend',
  'actual',
  'pleas',
  'thief',
  'final',
  'identifieddealt',
  'assur',
  'besid',
  'thief',
  'question',
  'croni',
  'one',
  'thought',
  '*',
  'tch',
  'howev',
  'know',
  'much',
  'assum',
  'seriou',
  'clique-',
  'person',
  'reaction',
  'mean',
  'fair',
  'dress',
  'profession',
  'offic',
  'dress',
  'quit',
  'casual',
  'probabl',
  'ad',
  'think',
  'high',
  'heel',
  'blous',
  'skirt',
  'vs',
  'short',
  'graphic',
  'tee',
  'slop',
  'ive',
  'start',
  'come',
  'lunch',
  'earlier',
  'chat',
  'peopl',
  'offic',
  'seem',
  'warm',
  'drama',
  'fill',
  'updat',
  'im',
  'happi',
  'thing',
  'turn',
  'well',
  'reput',
  'colleagu',
  'good',
  'start',
  'thank',
  'comment',
  'support',
  'think',
  'final',
  'edit',
  'slash',
  'updat',
  'thank',
  'reddit'],
 ['infertil',
  'ex',
  'husband',
  'tri',
  'everyth',
  'kid',
  'never',
  'happen',
  'divorc',
  'went',
  'marri',
  'someon',
  'younger',
  'abl',
  'give',
  'kid',
  'gather',
  'theyr',
  'expect',
  'nd',
  'child',
  'togeth',
  'hurt',
  'like',
  'hell',
  'see',
  'someon',
  'els',
  'get',
  'frustrat',
  'sometim',
  'famili',
  'blame',
  'basic',
  'everyth',
  'turn',
  'friend',
  'support',
  'especi',
  'alessia',
  'infertil',
  'boat',
  'husband',
  'current',
  'tri',
  'ivf',
  'hope',
  'itd',
  'work',
  'alessia',
  'ask',
  'help',
  'pay',
  'upcom',
  'ivf',
  'cycl',
  'agre',
  'write',
  'check',
  '$',
  'realli',
  'want',
  'help',
  'money',
  'came',
  'string',
  'attach',
  'wrote',
  'check',
  'gave',
  'last',
  'week',
  'appreci',
  'next',
  'day',
  'got',
  'sudden',
  'messag',
  'mutual',
  'friend',
  'carol',
  'screenshot',
  'convers',
  'alessia',
  'turn',
  'alessia',
  'talk',
  'next',
  'ivf',
  'cycl',
  'alessia',
  'said',
  'hope',
  'cycl',
  'would',
  'work',
  'wan',
  'na',
  'end',
  'divorc',
  'husband',
  'go',
  'marri',
  'someon',
  'younger',
  'babi',
  'anoth',
  'one',
  'way',
  'alon',
  'without',
  'famili',
  'stun',
  'andhurt',
  'knew',
  'meant',
  'confront',
  'simpli',
  'contact',
  'bank',
  'cancel',
  'check',
  'even',
  'alessia',
  'call',
  'ask',
  'cancel',
  'check',
  'told',
  'went',
  'batshit',
  'say',
  'mean',
  'way',
  'thought',
  'somewhat',
  'insid',
  'joke',
  'desper',
  'infertil',
  'women',
  'came',
  'husband',
  'next',
  'day',
  'beg',
  'write',
  'anoth',
  'check',
  'refus',
  'argument',
  'ensu',
  'husband',
  'thought',
  'support',
  'like',
  'support',
  'throughtout',
  'struggl',
  'left',
  'cri',
  'talk',
  'sinc',
  'husband',
  'keep',
  'remind',
  'repeatedli',
  'call',
  'carol',
  'toxic',
  'snake',
  'date',
  'next',
  'cycl',
  'say',
  'cant',
  'took',
  'money',
  'suppos',
  'pay',
  'back',
  'friend',
  'think',
  'im',
  'oversensit',
  'carol',
  'side',
  'tell',
  'tell',
  'go',
  'hell',
  'feel',
  'bad',
  'ive',
  'done',
  'might',
  'damag',
  'year',
  'friendship',
  'mayb',
  'cancel',
  'felt',
  'offend',
  'said',
  'basic',
  'mock',
  'unfortun',
  'circumst',
  'reddit',
  'aita',
  'hello',
  'wow',
  'thank',
  'much',
  'support',
  'compass',
  'shown',
  'could',
  'feel',
  'screen',
  'lol',
  '😅🤣',
  'decid',
  'im',
  'go',
  'put',
  'distanc',
  'alessia',
  'thing',
  'rough',
  'late',
  'think',
  'distanc',
  'need',
  'right',
  'especi',
  'mental',
  'health',
  'read',
  'comment',
  'feel',
  'less',
  'heavi',
  'reliev',
  'chang',
  'fact',
  'im',
  'still',
  'feel',
  'complet',
  'utterli',
  'shock',
  'alessia',
  'behavior',
  'shame',
  'come',
  'realiz',
  'even',
  'support',
  'could',
  'caus',
  'much',
  'harm',
  'oh',
  'way',
  'sent',
  'carol',
  'link',
  'thread',
  'see',
  'thought',
  'laugh',
  'kind',
  'angri',
  'use',
  'real',
  'name',
  'reliev',
  'use',
  'throwaway',
  'lol'],
 ['one',
  'cowork',
  'thought',
  'friendli',
  'marri',
  'sent',
  'inappropri',
  'text',
  'like',
  'st',
  'patrick',
  'day',
  'weekend',
  'ask',
  'come',
  'fun',
  'say',
  'knew',
  'felt',
  'im',
  'lesbian',
  'work',
  'also',
  'sent',
  'nake',
  'selfi',
  'luckili',
  'cut',
  'right',
  'dick',
  'dang',
  'close',
  'saw',
  'friend',
  'like',
  'fuck',
  'ok',
  'monday',
  'problem',
  'realli',
  'strict',
  'rule',
  'work',
  'think',
  'work',
  'answer',
  'messag',
  'work',
  'outsid',
  '-',
  '-',
  'also',
  'use',
  'person',
  'phone',
  'work',
  'stuff',
  'someon',
  'work',
  'call',
  'text',
  'one',
  'cowork',
  'see',
  'close',
  'friend',
  'trust',
  'talk',
  'shop',
  'weekend',
  'im',
  'answer',
  'includ',
  'deal',
  'fucker',
  'workday',
  'problem',
  'ignor',
  'messag',
  'sent',
  'sever',
  'later',
  'first',
  'say',
  'sorri',
  'drunk',
  'say',
  'said',
  'want',
  'still',
  'feel',
  'felt',
  'monday',
  'wrote',
  'email',
  'work',
  'email',
  'say',
  'cowork',
  'im',
  'write',
  'follow',
  'messag',
  'prior',
  'sever',
  'day',
  'see',
  'attach',
  'pleas',
  'contact',
  'work',
  'channel',
  'regular',
  'busi',
  'hour',
  'use',
  'person',
  'number',
  'colleagu',
  'addit',
  'found',
  'content',
  'messag',
  'unwelcom',
  'inappropri',
  'pleas',
  'contact',
  'regard',
  'work',
  '-',
  'op',
  'send',
  'email',
  'hr',
  'blind',
  'cc',
  'person',
  'email',
  'id',
  'copi',
  'case',
  'got',
  'realli',
  'mad',
  'text',
  'back',
  'say',
  'cross',
  'line',
  'attach',
  'pictur',
  'work',
  'email',
  'tri',
  'get',
  'fire',
  'screenshot',
  'text',
  'attach',
  'addit',
  'email',
  'say',
  'per',
  'prior',
  'email',
  'pleas',
  'contact',
  'work',
  'matter',
  'busi',
  'email',
  'slack',
  'stop',
  'text',
  'came',
  'desk',
  'speak',
  'said',
  'anyth',
  'ask',
  'work',
  'question',
  'said',
  'knew',
  'said',
  'avail',
  'discuss',
  'moment',
  'need',
  'meet',
  'work',
  'matter',
  'could',
  'pleas',
  'schedul',
  'meet',
  'calendar',
  'includ',
  'readahead',
  'brief',
  'topic',
  'meet',
  'walk',
  'feel',
  'like',
  'bit',
  'bitch',
  'deal',
  'mayb',
  'could',
  'told',
  'cut',
  'text',
  'im',
  'also',
  'fuck',
  'sick',
  'deal',
  'shit',
  'everi',
  'job',
  'feel',
  'like',
  'patienc',
  'use',
  'time',
  'energi',
  'gentli',
  'ask',
  'guy',
  'cool',
  'worn',
  'thin',
  'want',
  'set',
  'precid',
  'engag',
  'outsid',
  'work',
  'hour',
  'work',
  'account',
  'aita',
  'send',
  'email',
  '--',
  '-',
  'edit',
  'look',
  'like',
  'overwhelm',
  'major',
  'yall',
  'think',
  'need',
  'go',
  'hr',
  'get',
  'ahead',
  'consid',
  'hold',
  'see',
  'cool',
  'way',
  'came',
  'desk',
  'told',
  'twice',
  'make',
  'think',
  'probabl',
  'best',
  'idea',
  'im',
  'gon',
  'na',
  'forward',
  'email',
  'hr',
  'write',
  'convers',
  'desk',
  'ask',
  'meet',
  'discuss',
  'edit',
  'sent',
  'email',
  'hr',
  'afternoon',
  'call',
  'meet',
  'day',
  'told',
  'everyth',
  'though',
  'lot',
  'say',
  'alreadi',
  'captur',
  'email',
  'assur',
  'contact',
  'work',
  'go',
  'meet',
  'tomorrow',
  'still',
  'decid',
  'fire',
  'move',
  'differ',
  'posit',
  'reason',
  'speak',
  'feel',
  'might',
  'depend',
  'handl',
  'convers',
  'feel',
  'good',
  'email',
  'hr',
  'feel',
  'like',
  'along',
  'ive',
  'possibl',
  'help',
  'women',
  'start',
  'paper',
  'trail',
  'turn',
  'someth',
  'done',
  'edit',
  'holi',
  'shit',
  'went',
  'happi',
  'hour',
  'femal',
  'friend',
  'field',
  'vent',
  'one',
  'friend',
  'told',
  'shed',
  'met',
  'guy',
  'profession',
  'confer',
  'given',
  'busi',
  'card',
  'phone',
  'number',
  'sent',
  'nasti',
  'pic',
  'repli',
  'say',
  'inappropri',
  'husband',
  'said',
  'someth',
  'husband',
  'know',
  'husband',
  'call',
  'leav',
  'voicemail',
  'tell',
  'fuck',
  'never',
  'heard',
  'ask',
  'shed',
  'okay',
  'send',
  'screenshot',
  'text',
  'exchang',
  'hr',
  'contact',
  'even',
  'wrote',
  'met',
  'profession',
  'confer',
  'repres',
  'compani',
  'gave',
  'busi',
  'card',
  'network',
  'reason',
  'sent',
  'unsolicit',
  'lewd',
  'pictur',
  'need',
  'husband',
  'interven',
  'stop',
  'harass',
  'check',
  'email',
  'im',
  'tri',
  'leav',
  'work',
  'work',
  'dwell',
  'tonight',
  'seem',
  'like',
  'hr',
  'even',
  'go',
  'meet',
  'edit',
  'fire',
  'know',
  'lot',
  'detail',
  'follow',
  'meet',
  'hr',
  'soon',
  'cowork',
  'told',
  'escort',
  'build',
  'morn',
  'one',
  'cowork',
  'sit',
  'near',
  'hr',
  'offic',
  'said',
  'heard',
  'scream',
  'hr',
  'staff',
  'meet',
  'morn',
  'crazi',
  'stuff',
  'escal',
  'honestli',
  'last',
  'week',
  'thought',
  'chill',
  'guy',
  'owe',
  'thank',
  'everyon',
  'told',
  'report',
  'id',
  'fenc',
  'first',
  'feel',
  'like',
  'stuff',
  'gon',
  'na',
  'escal',
  'either',
  'way',
  'feel',
  'lot',
  'safer',
  'see',
  'everyday',
  'work'],
 ['horribl',
  'toothach',
  'id',
  'taken',
  'medic',
  'eas',
  'pain',
  'bad',
  'like',
  'you-ne',
  'go-to',
  'dentist',
  'level',
  'bad',
  'schedul',
  'appoint',
  'told',
  'come',
  'yesterday',
  'husband',
  'best',
  'friend',
  'terri',
  'got',
  'accid',
  'injur',
  'knee',
  'stay',
  'us',
  'sever',
  'week',
  'husband',
  'look',
  'see',
  'live',
  'alon',
  'need',
  'assist',
  'welcom',
  'home',
  'found',
  'clean',
  'bring',
  'medic',
  'also',
  'cook',
  'take',
  'long',
  'time',
  'get',
  'someth',
  'done',
  'hed',
  'call',
  'husband',
  'basic',
  'tell',
  'make',
  'husband',
  'mad',
  'say',
  'temporari',
  'also',
  'sinc',
  'im',
  'home',
  'work',
  'help',
  'care',
  'friend',
  'becam',
  'quit',
  'overwhelm',
  'cant',
  'leav',
  'hous',
  'husband',
  'friend',
  'like',
  'state',
  'previous',
  'dental',
  'appoint',
  'told',
  'husband',
  'night',
  'pitch',
  'hissi',
  'fit',
  'say',
  'cant',
  'leav',
  'terri',
  'home',
  'alon',
  'suggest',
  'take',
  'time',
  'work',
  'stay',
  'said',
  'work',
  'short',
  'notic',
  'suggest',
  'reschedul',
  'said',
  'even',
  'show',
  'bad',
  'swell',
  'yet',
  'told',
  'hold',
  'anoth',
  'day',
  'went',
  'work',
  'earli',
  'decid',
  'still',
  'go',
  'go',
  'terri',
  'livingroom',
  'sleep',
  'larg',
  'mattress',
  'live',
  'room',
  'saw',
  'make',
  'way',
  'mom',
  'wait',
  'door',
  'ask',
  'go',
  'told',
  'dental',
  'appoint',
  'attitud',
  'rais',
  'voic',
  'tell',
  'go',
  'back',
  'upstair',
  'cancel',
  'mom',
  'step',
  'start',
  'argu',
  'ask',
  'think',
  'went',
  'unabl',
  'move',
  'threaten',
  'call',
  'husband',
  'step',
  'foot',
  'door',
  'took',
  'mom',
  'left',
  'end',
  'call',
  'husband',
  'tri',
  'call',
  'hour',
  'til',
  'turn',
  'phone',
  'instead',
  'return',
  'home',
  'went',
  'stay',
  'mom',
  'tremend',
  'pain',
  'husband',
  'start',
  'yell',
  'call',
  'stubborn',
  'still',
  'go',
  'told',
  'reschedul',
  'irrespons',
  'leav',
  'injur',
  'friend',
  'home',
  'alon',
  'mom',
  'told',
  'escal',
  'argument',
  'us',
  'current',
  'stay',
  'home',
  'along',
  'friend',
  'constantli',
  'pressur',
  'stop',
  'hide',
  'behind',
  'mom',
  'come',
  'deal',
  'result',
  'leav',
  'job',
  'hour',
  'blind',
  'side',
  'went',
  'wish',
  'edit',
  'autocorrect'],
 ['husband',
  'youtub',
  'channel',
  'follow',
  'live',
  'stream',
  'lot',
  'late',
  'even',
  'though',
  'told',
  'respons',
  'take',
  'care',
  'daughter',
  'month',
  'old',
  'born',
  'hed',
  'stream',
  'randomli',
  'spend',
  'lot',
  'time',
  'follow',
  'answer',
  'question',
  'engag',
  'convers',
  'keep',
  'say',
  'follow',
  'good',
  'mental',
  'health',
  'engag',
  'weekli',
  'make',
  'becom',
  'better',
  'social',
  'commun',
  'complain',
  'want',
  'live',
  'stream',
  'day',
  'told',
  'wed',
  'look',
  'schedul',
  'see',
  'could',
  'get',
  'time',
  'make',
  'happen',
  'appar',
  'good',
  'enough',
  'yesterday',
  'go',
  'groceri',
  'shop',
  'ask',
  'keep',
  'eye',
  'daughter',
  'asleep',
  'said',
  'okay',
  'gone',
  'hr',
  'kept',
  'call',
  'see',
  'everyth',
  'ok',
  'hed',
  'tell',
  'alright',
  'sleep',
  'start',
  'get',
  'weird',
  'feel',
  'someth',
  'wrong',
  'mustv',
  'hungri',
  'need',
  'diaper',
  'chang',
  'argu',
  'everyth',
  'fine',
  'immedi',
  'went',
  'home',
  'enter',
  'hous',
  'find',
  'shout',
  'name',
  'got',
  'noth',
  'went',
  'bedroom',
  'saw',
  'daughter',
  'awak',
  'diaper',
  'changedand',
  'wors',
  'bottl',
  'even',
  'touch',
  'confus',
  'got',
  'notic',
  'offic',
  'door',
  'close',
  'figur',
  'live',
  'stream',
  'nois',
  'heard',
  'beyond',
  'seeth',
  'barg',
  'offic',
  'saw',
  'sit',
  'blew',
  'tri',
  'turn',
  'mic',
  'tell',
  'stop',
  'stop',
  'berat',
  'leav',
  'daughter',
  'unattend',
  'milk',
  'diaper',
  'chang',
  'freak',
  'say',
  'end',
  'entir',
  'channel',
  'destroy',
  'fan',
  'base',
  'interrupt',
  'live',
  'stream',
  'embarrass',
  'scandal',
  'like',
  'told',
  'say',
  'word',
  'kept',
  'yell',
  'call',
  'control',
  'unhing',
  'almost',
  'cri',
  'leav',
  'offic',
  'kept',
  'fight',
  'til',
  'decid',
  'go',
  'stay',
  'mom',
  'start',
  'blame',
  'ignor',
  'need',
  'alreadi',
  'express',
  'forgot',
  'ask',
  'id',
  'cost',
  'much',
  'us',
  'tell',
  'come',
  'back',
  'home',
  'miss',
  'daughter'],
 ['updat',
  'bottom',
  'edit',
  'sinc',
  'mani',
  'peopl',
  'send',
  'dm',
  'dad',
  'went',
  'princip',
  'today',
  'post',
  'updat',
  'situat',
  'solv',
  'edit',
  'pleas',
  'remov',
  'allow',
  'mod',
  'im',
  'talk',
  'dad',
  'today',
  'ask',
  'got',
  'princip',
  'comment',
  'made',
  'littl',
  'sacr',
  'wrong',
  'could',
  'go',
  'bad',
  'situat',
  'post',
  'updat',
  'thing',
  'post',
  'onlin',
  'also',
  'im',
  'usa',
  'even',
  'sound',
  'fake',
  'south',
  'america',
  'thing',
  'realli',
  'bad',
  'guy',
  '-',
  'littl',
  'backstori',
  'lost',
  'mom',
  'dad',
  'rais',
  'alon',
  'last',
  'year',
  'second',
  'dad',
  'call',
  'papa',
  'move',
  'home',
  'happi',
  'famili',
  'four',
  'two',
  'dad',
  'dog',
  'im',
  'asham',
  'famili',
  'never',
  'hid',
  'im',
  'realli',
  'popular',
  'school',
  'realli',
  'told',
  'friend',
  'good',
  'two',
  'month',
  'ago',
  'boy',
  'ill',
  'call',
  'duncan',
  'found',
  'duncan',
  'start',
  'simpl',
  'joke',
  'like',
  'wow',
  'one',
  'mom',
  'promptli',
  'told',
  'teacher',
  'mrsmith',
  'like',
  'tri',
  'understand',
  'want',
  'peopl',
  'understand',
  'patient',
  'duncan',
  'start',
  'escal',
  'enjoy',
  'time',
  'itll',
  'get',
  'wors',
  'sinner',
  'famili',
  'goe',
  'hell',
  'went',
  'mrsmith',
  'cant',
  'prejud',
  'religion',
  'wrong',
  'bibl',
  'tri',
  'understand',
  'countri',
  'everi',
  'class',
  'one',
  'respons',
  'teacher',
  'go',
  'anoth',
  'btw',
  'mani',
  'exampl',
  'paint',
  'pictur',
  'two',
  'month',
  'realiz',
  'want',
  'stop',
  'start',
  'homophob',
  'shit',
  'cafeteria',
  'start',
  'rememb',
  'saddest',
  'thing',
  'could',
  'movi',
  'dog',
  'die',
  'sad',
  'romanc',
  'movi',
  'mufasa',
  'death',
  'fox',
  'hound',
  'take',
  'long',
  'waterwork',
  'come',
  'start',
  'bawl',
  'ugli',
  'sob',
  'basic',
  'scream',
  'ask',
  'said',
  'would',
  'go',
  'hell',
  'hate',
  'dad',
  'make',
  'huge',
  'scene',
  'duncan',
  'start',
  'stutter',
  'plead',
  'tri',
  'make',
  'go',
  'class',
  'talk',
  'teacher',
  'wonder',
  'cri',
  'louder',
  'flinch',
  'tri',
  'pull',
  'away',
  'scene',
  'huge',
  'end',
  'princip',
  'offic',
  'msyat',
  'listen',
  'side',
  'piss',
  'mr',
  'smith',
  'let',
  'tell',
  'whole',
  'stori',
  'even',
  'mr',
  'smith',
  'tri',
  'interrupt',
  'defend',
  'duncan',
  'end',
  'duncan',
  'got',
  'day',
  'suspens',
  'princip',
  'told',
  'go',
  'directli',
  'anyth',
  'like',
  'happen',
  'left',
  'offic',
  'mrsmith',
  'stope',
  'told',
  'hope',
  'happi',
  'put',
  'perman',
  'mark',
  'good',
  'boy',
  'record',
  'decid',
  'weapon',
  'feminin',
  'instead',
  'littl',
  'understand',
  'tri',
  'make',
  'apolog',
  'duncan',
  'told',
  'would',
  'go',
  'right',
  'back',
  'princip',
  'offic',
  'drop',
  'later',
  'duncan',
  'friend',
  'start',
  'messag',
  'accus',
  'act',
  'like',
  'amber',
  'heard',
  'ruin',
  'boy',
  'life',
  'tell',
  'parent',
  'yet',
  'alway',
  'afraid',
  'ill',
  'suffer',
  'choos',
  'love',
  'ill',
  'bring',
  'anyth',
  'handl',
  'worri',
  'feel',
  'like',
  'im',
  'wrong',
  'mrsmith',
  'warn',
  'duncan',
  'friend',
  'im',
  'start',
  'doubt',
  'aita',
  'final',
  'edit',
  'updat',
  'mod',
  'told',
  'updat',
  'post',
  'quit',
  'long',
  'sorri',
  'first',
  'id',
  'like',
  'thank',
  'guy',
  'open',
  'eye',
  'bad',
  'situat',
  'could',
  'get',
  'wors',
  'hurt',
  'dad',
  'let',
  'protect',
  'like',
  'want',
  'protect',
  'updat',
  'sunday',
  'sat',
  'dad',
  'told',
  'everyth',
  'cri',
  'bit',
  'end',
  'sinc',
  'tell',
  'realiz',
  'heavi',
  'felt',
  'carri',
  'sunday',
  'first',
  'time',
  'saw',
  'angri',
  'side',
  'adam',
  'use',
  'name',
  'sinc',
  'nicknam',
  'use',
  'languag',
  'clash',
  'english',
  'like',
  'mrsmith',
  'saw',
  'red',
  'first',
  'thing',
  'reassur',
  'troubl',
  'would',
  'never',
  'fight',
  'bulli',
  'dad',
  'talk',
  'much',
  'seem',
  'sad',
  'shock',
  'hold',
  'hand',
  'adam',
  'talk',
  'ever',
  'heard',
  'past',
  'bulli',
  'teacher',
  'student',
  'church',
  'even',
  'famili',
  'told',
  'cruel',
  'world',
  'differ',
  'peopl',
  'tri',
  'silent',
  'minim',
  'anger',
  'suffer',
  'never',
  'back',
  'alway',
  'famili',
  'behind',
  'thank',
  'love',
  'much',
  'fight',
  'told',
  'child',
  'child',
  'never',
  'imagin',
  'could',
  'would',
  'protect',
  'realiz',
  'much',
  'love',
  'knew',
  'like',
  'famili',
  'felt',
  'love',
  'dad',
  'tell',
  'love',
  'nice',
  'warm',
  'feel',
  'adam',
  'dad',
  'went',
  'school',
  'monday',
  'straight',
  'msyat',
  'offic',
  'told',
  'everyth',
  'text',
  'whatsapp',
  'mrsmith',
  'explain',
  'bulli',
  'detail',
  'convers',
  'long',
  'gave',
  'info',
  'could',
  'ask',
  'leav',
  'class',
  'talk',
  'knew',
  'result',
  'came',
  'back',
  'home',
  'dad',
  'gave',
  'msyat',
  'two',
  'choic',
  'remov',
  'mrsmith',
  'teach',
  'seminar',
  'teacher',
  'bulli',
  'lgbt',
  'caus',
  'dad',
  'pay',
  'remov',
  'school',
  'sue',
  'school',
  'go',
  'local',
  'newspap',
  'stori',
  'choos',
  'first',
  'option',
  'ask',
  'month',
  'find',
  'anoth',
  'teacher',
  'meanwhil',
  'monitor',
  'class',
  'close',
  'mrsmith',
  'allow',
  'penal',
  'grade',
  'like',
  'guy',
  'fear',
  'appar',
  'adam',
  'bit',
  'experi',
  'deal',
  'shit',
  'knew',
  'also',
  'explain',
  'privileg',
  'talk',
  'work',
  'well',
  'time',
  'privat',
  'school',
  'worri',
  'money',
  'reput',
  'enough',
  'money',
  'fight',
  'pay',
  'lawyer',
  'sue',
  'told',
  'mani',
  'children',
  'public',
  'school',
  'like',
  'childhood',
  'suffer',
  'silenc',
  'support',
  'got',
  'time',
  'noth',
  'realli',
  'extraordinari',
  'went',
  'like',
  'mani',
  'guy',
  'predict',
  'duncan',
  'keep',
  'classmat',
  'least',
  'mrsmith',
  'bulli',
  'us',
  'real',
  'asshol',
  'situat',
  'also',
  'papa',
  'awesom',
  'badass'],
 ['ill',
  'start',
  'say',
  'husband',
  'bob',
  'year',
  'marri',
  'one',
  'mom',
  'habit',
  'keep',
  'function',
  'excus',
  'work',
  'much',
  'true',
  'sometim',
  'make',
  'avail',
  'yet',
  'find',
  'exclud',
  'last',
  'week',
  'mom',
  'invit',
  'us',
  'celebratori',
  'dinner',
  'restaur',
  'complet',
  'recoveri',
  'day',
  'ket',
  'everyon',
  'know',
  'id',
  'pm',
  'bob',
  'obvious',
  'knew',
  'come',
  'thing',
  'arriv',
  'restaur',
  'saw',
  'tabl',
  'full',
  'chair',
  'taken',
  'stood',
  'complet',
  'puzzlement',
  'bob',
  'mom',
  'stare',
  'mom',
  'told',
  'place',
  'left',
  'could',
  'either',
  'bob',
  'get',
  'take',
  'seat',
  'go',
  'home',
  'upset',
  'instead',
  'go',
  'home',
  'went',
  'took',
  'entir',
  'tabl',
  'bob',
  'mom',
  'watch',
  'eye',
  'pop',
  'head',
  'like',
  'saw',
  'someth',
  'shock',
  'ngl',
  'get',
  'weird',
  'look',
  'guest',
  'bob',
  'mom',
  'awkward',
  'honesti',
  'dinner',
  'dessert',
  'went',
  'home',
  'saw',
  'bob',
  'mom',
  'stare',
  'grudgingli',
  'make',
  'way',
  'got',
  'home',
  'hour',
  'later',
  'yell',
  'say',
  'embarrass',
  'mom',
  'infront',
  'guest',
  'yell',
  'ask',
  'wtf',
  'suppos',
  'got',
  'deni',
  'seat',
  'told',
  'mom',
  'fault',
  'guest',
  'arriv',
  'took',
  'avail',
  'chair',
  'told',
  'couldv',
  'save',
  'chair',
  'said',
  'couldv',
  'left',
  'instead',
  'remind',
  'guest',
  'expect',
  'level',
  'entitl',
  'accept',
  'went',
  'ruin',
  'entir',
  'dinner',
  'mom',
  'pout',
  'day',
  'get',
  'realli',
  'expect',
  'realli',
  'entitl',
  'mean',
  'wife',
  'save',
  'seat',
  'clearli',
  'im',
  'miss',
  'someth'],
 ['husband',
  'goe',
  'annual',
  'vacat',
  'famili',
  'im',
  'okay',
  'term',
  'sinc',
  'weve',
  'marri',
  'short',
  'time',
  'see',
  'famili',
  'much',
  'still',
  'barrier',
  'keep',
  'complet',
  'comfort',
  'around',
  'famili',
  'arrang',
  'vacat',
  'last',
  'week',
  'curios',
  'ask',
  'could',
  'come',
  'husband',
  'felt',
  'hasit',
  'told',
  'itd',
  'great',
  'opportun',
  'get',
  'know',
  'famili',
  'better',
  'agre',
  'take',
  'famili',
  'surpris',
  'see',
  'still',
  'welcom',
  'rd',
  'day',
  'vacat',
  'dad',
  'mom',
  'brother',
  'spous',
  'sit',
  'tabl',
  'outsid',
  'talk',
  'prepar',
  'fruit',
  'salad',
  'make',
  'way',
  'back',
  'overheard',
  'mil',
  'say',
  'realli',
  'nowher',
  'els',
  'spend',
  'weekend',
  'first',
  'idea',
  'talk',
  'kept',
  'walk',
  'stop',
  'overheard',
  'husband',
  'say',
  'know',
  'want',
  'bring',
  'suppos',
  'know',
  'pushi',
  'get',
  'instantli',
  'figur',
  'felt',
  'shaken',
  'point',
  'almost',
  'drop',
  'salad',
  'whole',
  'time',
  'clean',
  'cook',
  'look',
  'kid',
  'think',
  'inconveni',
  'quietli',
  'book',
  'ticket',
  'went',
  'home',
  'first',
  'plane',
  'call',
  'text',
  'respond',
  'anyth',
  'let',
  'know',
  'home',
  'got',
  'back',
  'went',
  'say',
  'disrespect',
  'juvenil',
  'told',
  'overheard',
  'convers',
  'mom',
  'said',
  'wrong',
  'eavesdrop',
  'famili',
  'warm',
  'term',
  'stop',
  'push',
  'around',
  'feel',
  'comfort',
  'basic',
  'say',
  'fault',
  'come',
  'along',
  'first',
  'place',
  'said',
  'go',
  'home',
  'like',
  'made',
  'famili',
  'disappoint',
  'gave',
  'realli',
  'bad',
  'impress',
  'think',
  'might',
  'mess',
  'someehat',
  'ruin',
  'well'],
 ['nephew',
  'pass',
  'away',
  'year',
  'ago',
  'cancer',
  'right',
  'birthday',
  'celebr',
  'noth',
  'everyon',
  'devast',
  'sister',
  'denis',
  'still',
  'griev',
  'therapi',
  'make',
  'progress',
  'slow',
  'famili',
  'tri',
  'support',
  'possibl',
  'birthday',
  'famili',
  'import',
  'throw',
  'huge',
  'parti',
  'believ',
  'taught',
  'birthday',
  'import',
  'cherish',
  'yesterday',
  'birthday',
  'obvious',
  'felt',
  'bad',
  'anniversari',
  'nephew',
  'death',
  'also',
  'littl',
  'abl',
  'celebr',
  'like',
  'use',
  'girlfriend',
  'knew',
  'morn',
  'went',
  'denis',
  'hous',
  'stay',
  'side',
  'almost',
  'lunch',
  'time',
  'mother',
  'would',
  'stay',
  'want',
  'leav',
  'alon',
  'one',
  'could',
  'stay',
  'day',
  'went',
  'work',
  'night',
  'girlfriend',
  'made',
  'surpris',
  'home',
  'candlelight',
  'dinner',
  'small',
  'cake',
  'someth',
  'intim',
  'us',
  'sinc',
  'famili',
  'bad',
  'way',
  'post',
  'social',
  'media',
  'girlfriend',
  'post',
  'pictur',
  'us',
  'hold',
  'hand',
  'dinner',
  'made',
  'happi',
  'bday',
  'love',
  'mom',
  'denis',
  'follow',
  'instagram',
  'woke',
  'next',
  'day',
  'hundr',
  'text',
  'mom',
  'denis',
  'ask',
  'celebr',
  'even',
  'though',
  'sad',
  'day',
  'heartless',
  'celebr',
  'know',
  'sister',
  'bad',
  'way',
  'even',
  'though',
  'said',
  'surpris',
  'call',
  'cold',
  'heartless',
  'insensit',
  'pain',
  'say',
  'refus',
  'celebr',
  'glad',
  'celebr',
  'someth',
  'import',
  'even',
  'realiz',
  'girlfriend',
  'post',
  'photo',
  'insta',
  'btw',
  'case',
  'wonder',
  'none',
  'rememb',
  'birthday',
  'aita'],
 ['grew',
  'famili',
  'men',
  'prank',
  'teas',
  'eversinc',
  'fianc',
  'tim',
  'got',
  'engag',
  'cousin',
  'brother',
  'dad',
  'uncl',
  'joke',
  'run',
  'test',
  'see',
  'type',
  'man',
  'tim',
  'theyv',
  'done',
  'stuff',
  'like',
  'forc',
  'play',
  'chess',
  'time',
  'raw',
  'secretli',
  'slash',
  'tire',
  'see',
  'hed',
  'fix',
  'like',
  'man',
  'get',
  'help',
  'like',
  'lazi',
  'guy',
  'theyd',
  'ask',
  'question',
  'like',
  'joke',
  'hed',
  'like',
  'tell',
  'futur',
  'mil',
  'opinion',
  'abort',
  'jesu',
  'gender',
  'equal',
  'etc',
  'also',
  'test',
  'fish',
  'hunt',
  'skill',
  'overwhelm',
  'hypothet',
  'scenario',
  'test',
  'decis',
  'make',
  'abilitiesment',
  'strength',
  'kept',
  'call',
  'slow',
  'soft',
  'medic',
  'condit',
  'asthma',
  'think',
  'make',
  'excus',
  'demand',
  'stop',
  'dad',
  'said',
  'typic',
  'stuff',
  'men',
  'challeng',
  'said',
  'ruin',
  'fun',
  'last',
  'week',
  'took',
  'tim',
  'day',
  'trip',
  'hid',
  'inhal',
  'left',
  'return',
  'hr',
  'told',
  'seeth',
  'said',
  'admit',
  'hide',
  'challeng',
  'explod',
  'return',
  'cousin',
  'ask',
  'littl',
  'timmi',
  'ran',
  'tattl',
  'yell',
  'uninvit',
  'wed',
  'brother',
  'freak',
  'say',
  'prank',
  'go',
  'give',
  'back',
  'dad',
  'said',
  'theyll',
  'apolog',
  'insist',
  'tim',
  'lost',
  'littl',
  'respect',
  'theyd',
  'gain',
  'eye',
  'alway',
  'soft',
  'colleg',
  'kid',
  'challeng',
  'call',
  'aw',
  'left',
  'cousin',
  'beg',
  'talk',
  'uncl',
  'quiet',
  'dad',
  'mad',
  'get',
  'mom',
  'involv',
  'get',
  'reconsid',
  'decis',
  'keep',
  'refus',
  'invit',
  'mom',
  'say',
  'im',
  'exagger',
  'let',
  'bygon',
  'bygon',
  'let',
  'ruin',
  'relationship',
  'famili',
  'aita',
  'make',
  'hill',
  'die',
  'exagger'],
 ['print',
  'compani',
  'run',
  'wife',
  'cousin',
  'came',
  'us',
  'want',
  'us',
  'signag',
  'banner',
  'guest',
  'book',
  'life-s',
  'cutout',
  'etc',
  'wed',
  'time',
  'friend',
  'wed',
  'event',
  'never',
  'charg',
  'happi',
  'help',
  'usual',
  'lot',
  'fun',
  'work',
  'togeth',
  'make',
  'cool',
  'stuff',
  'week',
  'wed',
  'wed',
  'planner',
  'tell',
  'us',
  'need',
  'item',
  'date',
  'set',
  'wed',
  'point',
  'receiv',
  'wed',
  'invit',
  'even',
  'know',
  'actual',
  'wed',
  'wife',
  'text',
  'tri',
  'clarifi',
  'wed',
  'miss',
  'invit',
  'somehow',
  'cousin',
  'repli',
  'say',
  'oh',
  'downsiz',
  'wed',
  'decid',
  'like',
  'close',
  'friend',
  'famili',
  'thing',
  'space',
  'us',
  'small',
  'venu',
  'wife',
  'pretti',
  'hurt',
  'insult',
  'top',
  'weve',
  'spent',
  'close',
  '$',
  'materi',
  'cousin',
  'wed',
  'planner',
  'kept',
  'make',
  'tini',
  'revis',
  'artwork',
  'us',
  'print',
  'sampl',
  'see',
  'would',
  'look',
  'person',
  'resiz',
  'sever',
  'item',
  'time',
  'etc',
  'cost',
  'ton',
  'time',
  'money',
  'function',
  'busi',
  'either',
  'delay',
  'order',
  'stay',
  'late',
  'print',
  'stuff',
  'time',
  'went',
  'ahead',
  'bill',
  'cost',
  'said',
  'need',
  'payment',
  'deliveri',
  'im',
  'go',
  'chase',
  'payment',
  'monthsyear',
  'wed',
  'make',
  'money',
  'charg',
  'cost',
  'materi',
  'far',
  'weve',
  'gotten',
  'threaten',
  'call',
  'cousin',
  'fianc',
  'random',
  'member',
  'wife',
  'famili',
  'know',
  'groomsmen',
  'etc',
  'essenti',
  'call',
  'us',
  'asshol',
  'harass',
  'im',
  'consid',
  'charg',
  'full',
  'price',
  'els',
  'deliv',
  'item',
  'asshol',
  'sorri',
  'im',
  'go',
  'wast',
  'hard',
  'earn',
  'time',
  'money',
  'someon',
  'even',
  'consid',
  'us',
  'close',
  'friend',
  'famili'],
 ['throwaway',
  'brother',
  'paul',
  'close',
  'differ',
  'worldview',
  'incompat',
  'person',
  'toler',
  'would',
  'never',
  'consid',
  'friend',
  'marri',
  'lisa',
  'one',
  'two',
  'year',
  'beauti',
  'daughter',
  'togeth',
  'girlfriend',
  'ami',
  'invit',
  'celebr',
  'niec',
  'first',
  'birthday',
  'famili',
  'invit',
  'would',
  'first',
  'time',
  'would',
  'seen',
  'togeth',
  'see',
  'famili',
  'twice',
  'year',
  'except',
  'ami',
  'arriv',
  'littl',
  'earlier',
  'suppos',
  'instead',
  'wait',
  'car',
  'decid',
  'go',
  'first',
  'thing',
  'notic',
  'calm',
  'brother',
  'seem',
  'contrast',
  'lisa',
  'frantic',
  'run',
  'saw',
  'ami',
  'immedi',
  'hand',
  'babi',
  'got',
  'beer',
  'sit',
  'watch',
  'tv',
  'lisa',
  'clearli',
  'struggl',
  'content',
  'beer',
  'netflix',
  'want',
  'rude',
  'mayb',
  'one-tim',
  'thing',
  'bother',
  'uninvolv',
  'hand',
  'ami',
  'babi',
  'full',
  'diaper',
  'vomit',
  'cloth',
  'eventu',
  'ami',
  'lisa',
  'finish',
  'everyth',
  'hous',
  'clean',
  'food',
  'readi',
  'lisa',
  'look',
  'readi',
  'host',
  'big',
  'gather',
  'paid',
  'zero',
  'attent',
  'paul',
  'famili',
  'arriv',
  'thought',
  'everyth',
  'go',
  'well',
  'avoid',
  'paul',
  'enjoy',
  'speak',
  'famili',
  'sat',
  'eat',
  'paul',
  'approach',
  'drunk',
  'thank',
  'help',
  'lisa',
  'want',
  'around',
  'long',
  'move',
  'way',
  'persist',
  'ignor',
  'start',
  'talk',
  'ami',
  'protect',
  'ami',
  'like',
  'real',
  'man',
  'got',
  'great',
  'woman',
  'side',
  'know',
  'whatev',
  'slightli',
  'odd',
  'mildli',
  'uncomfort',
  'abl',
  'brush',
  'away',
  'ami',
  'tri',
  'sober',
  'littl',
  'bit',
  'cake-cut',
  'select',
  'hear',
  'tri',
  'get',
  'stop',
  'talk',
  'drink',
  'water',
  'howev',
  'lot',
  'say',
  'lisa',
  'complain',
  'pregnanc',
  'ruin',
  'lisa',
  'bodi',
  'babi',
  'ruin',
  'life',
  'ami',
  'kept',
  'look',
  'awkwardli',
  'soon',
  'go',
  'leav',
  'leav',
  'convers',
  'soon',
  'enough',
  'complain',
  'sex',
  'life',
  'lack',
  'thereof',
  'comment',
  'desper',
  'want',
  'sex',
  'someon',
  'fit',
  'like',
  'ami',
  'made',
  'us',
  'extrem',
  'uncomfort',
  'ami',
  'left',
  'quickli',
  'apologis',
  'lisa',
  'told',
  'disgust',
  'gross',
  'man',
  'need',
  'fuck',
  'help',
  'left',
  'appar',
  'made',
  'super',
  'upset',
  'start',
  'wail',
  'parti',
  'paul',
  'told',
  'everyon',
  'reason',
  'cri',
  'word',
  'got',
  'quickli',
  'peopl',
  'told',
  'wrong',
  'shame',
  'father',
  'child',
  'birthday',
  'could',
  'probabl',
  'left',
  'without',
  'make',
  'statement',
  'aita'],
 ['okay',
  'sil',
  'yet',
  'use',
  'make',
  'titl',
  'simpler',
  'boyfriend',
  'borther',
  'girlfriend',
  'boyfriend',
  'ian',
  'year',
  'weve',
  'decid',
  'host',
  'small',
  'earli',
  'christma',
  'dinner',
  'one',
  'peopl',
  'invit',
  'brother',
  'jake',
  'jake',
  'ask',
  'could',
  'bring',
  'girlfriend',
  'alon',
  'theyv',
  'togeth',
  'month',
  'agre',
  'merrier',
  'girlfriend',
  'naveah',
  'seem',
  'bit',
  'timid',
  'love',
  'naveah',
  'brought',
  'year',
  'old',
  'son',
  'know',
  'come',
  'seem',
  'love',
  'right',
  'went',
  'bathroom',
  'came',
  'shriekingbox',
  'tampon',
  'hand',
  'liter',
  'gasp',
  'air',
  'shriek',
  'could',
  'bare',
  'understand',
  'turn',
  'box',
  'tampon',
  'visibl',
  'duuuh',
  'within',
  'reach',
  'hey',
  'need',
  'monthli',
  'hide',
  'look',
  'go',
  'disgust',
  'could',
  'shameless',
  'front',
  'child',
  'men',
  'look',
  'disbelief',
  'believ',
  'made',
  'scene',
  'box',
  'tampon',
  'never',
  'shop',
  'anyway',
  'told',
  'tampon',
  'stay',
  'press',
  'leav',
  'go',
  'home',
  'tampon',
  'present',
  'turn',
  'red',
  'quit',
  'liter',
  'face',
  'bright',
  'pink',
  'huf',
  'puf',
  'dress',
  'kid',
  'told',
  'jake',
  'drive',
  'home',
  'jake',
  'come',
  'back',
  'call',
  'hous',
  'tell',
  'ian',
  'asshol',
  'surpris',
  'hear',
  'ian',
  'boyfriend',
  'agre',
  'thought',
  'would',
  'side',
  'argu',
  'decid',
  'worth',
  'went',
  'offic',
  'cool',
  'think',
  'asshol',
  'tell',
  'leav'],
 ['recent',
  'got',
  'togeth',
  'guy',
  'hobbi',
  'ask',
  'first',
  'doubt',
  'wed',
  'work',
  'togeth',
  'coupl',
  'age',
  'differ',
  'im',
  'apart',
  'sinc',
  'old',
  'hous',
  'origin',
  'singl',
  'famili',
  'hous',
  'much',
  'soundproof',
  'floor',
  'creak',
  'peopl',
  'move',
  'ive',
  'gotten',
  'use',
  'sound',
  'guy',
  'upstair',
  'get',
  'sinc',
  'start',
  'work',
  'sound',
  'girl',
  'apart',
  'either',
  'side',
  'mine',
  'watch',
  'telenovela',
  'till',
  'midnight',
  'take',
  'work',
  'call',
  'day',
  'friend',
  'weekend',
  'night',
  'know',
  'play',
  'music',
  'friend',
  'sound',
  'leak',
  'wall',
  'id',
  'never',
  'get',
  'upset',
  'hear',
  'neighbor',
  'goe',
  'way',
  'boyfriend',
  'start',
  'come',
  'often',
  'complaint',
  'neighbor',
  'put',
  'awkward',
  'place',
  'want',
  'go',
  'speak',
  'text',
  'said',
  'exampl',
  'one',
  'earli',
  'time',
  'stay',
  'went',
  'bed',
  'around',
  'want',
  'ask',
  'neighbor',
  'turn',
  'tv',
  'said',
  'loud',
  'turn',
  'midnight',
  'anyway',
  'got',
  'irrit',
  'upstair',
  'neighbor',
  'get',
  'cook',
  'breakfast',
  'said',
  'would',
  'done',
  'shift',
  'start',
  'still',
  'tri',
  'sleep',
  'neighbor',
  'side',
  'work',
  'call',
  'said',
  'sleep',
  'offer',
  'earplug',
  'said',
  'sleep',
  'either',
  'want',
  'ask',
  'quiet',
  'similar',
  'comment',
  'everi',
  'time',
  'heard',
  'someon',
  'els',
  'build',
  'live',
  'life',
  'especi',
  'bed',
  'got',
  'frustrat',
  'boyfriend',
  'told',
  'know',
  'cant',
  'expect',
  'date',
  'hot',
  'young',
  'year',
  'old',
  'wan',
  'na',
  'deal',
  'year',
  'old',
  'live',
  'situat',
  'know',
  'realiz',
  'normal',
  'apart',
  'someon',
  'age',
  'hell',
  'neighbor',
  'pretti',
  'great',
  'nobodi',
  'throw',
  'loud',
  'parti',
  'work',
  'night',
  'nobodi',
  'scream',
  'fight',
  'nobodi',
  'babi',
  'hot',
  'young',
  'part',
  'sarcast',
  'air',
  'quot',
  'word',
  'mine',
  'got',
  'irrit',
  'ask',
  'bring',
  'age',
  'said',
  'cant',
  'want',
  'someon',
  'young',
  'also',
  'want',
  'someon',
  'hous',
  'kinda',
  'money',
  'touch',
  'normal',
  'peopl',
  'live',
  'got',
  'realli',
  'irrit',
  'bring',
  'age',
  'even',
  'annoy',
  'id',
  'respond',
  'neighbor',
  'complaint',
  'futur',
  'ok',
  'boomer',
  'tell',
  'want',
  'rich',
  'person',
  'apart',
  'could',
  'pay',
  'aita',
  'said',
  'boyfriend',
  'apart',
  'edit',
  '-',
  'lot',
  'comment',
  'ask',
  'could',
  'stay',
  'hous',
  'possibl',
  'get',
  'hous',
  'car',
  'buse',
  'go',
  'far',
  'suburb',
  'would',
  'mean',
  'drive',
  'minut',
  'hous',
  'suburb',
  'pick',
  'extra',
  'drive',
  'hous',
  'hour',
  'round',
  'trip',
  'earli',
  'morn',
  'get',
  'home',
  'time',
  'work',
  'lot',
  'easier',
  'visit',
  'citi',
  'edit',
  '-',
  'lot',
  'peopl',
  'comment',
  'say',
  'technic',
  'milenni',
  'boomer',
  'know',
  'use',
  'boomer',
  'joke',
  'figur',
  'speech',
  'say',
  'act',
  'touch',
  'entitl',
  'tell',
  'peopl',
  'common',
  'figur',
  'speech',
  'say',
  'ok',
  'boomer',
  'someon',
  'act',
  'entitl',
  'regardless',
  'actual',
  'age',
  'mindset',
  'thing',
  'edit',
  '-',
  'googl',
  'properti',
  'record',
  'hous',
  'co',
  'woman',
  'share',
  'last',
  'name',
  'holi',
  'shit',
  'know',
  'wife',
  'ex',
  'wife',
  'im',
  'im',
  'honestli',
  'freak',
  'right',
  'got',
  'ta',
  'say',
  'great',
  'big',
  'thank',
  'everyon',
  'notic',
  'red',
  'flag',
  'made',
  'question',
  'ive',
  'block',
  'number',
  'fun',
  'figur',
  'went'],
 ['husband',
  'jare',
  'marri',
  'year',
  'current',
  'work',
  'use',
  'work',
  'high',
  'pay',
  'job',
  'got',
  'kick',
  'compani',
  'fight',
  'co',
  'worker',
  'im',
  'one',
  'pay',
  'rent',
  'util',
  'dedic',
  'time',
  'see',
  'famili',
  'weekli',
  'know',
  'unemploy',
  'thought',
  'theyll',
  'see',
  'failur',
  'especi',
  'mom',
  'told',
  'keep',
  'secret',
  'last',
  'night',
  'sit',
  'eat',
  'dinner',
  'tabl',
  'cousin',
  'talk',
  'fiance',
  'go',
  'brazil',
  'boob',
  'job',
  'jare',
  'ask',
  'seriou',
  'flatter',
  'fsil',
  'boob',
  'say',
  'theyr',
  'perfect',
  'understand',
  'shed',
  'get',
  'boob',
  'job',
  'turn',
  'stare',
  'chest',
  'eat',
  'like',
  'idiot',
  'flat',
  'chest',
  'im',
  'insecur',
  'cant',
  'anyth',
  'obvious',
  'said',
  'hey',
  'get',
  'boob',
  'job',
  'one',
  'need',
  'mom',
  'gasp',
  'like',
  'jare',
  'said',
  'fine',
  'turn',
  'said',
  'ill',
  'get',
  'boob',
  'job',
  'get',
  'actual',
  'job',
  'sinc',
  'unemploy',
  'month',
  '$',
  'stare',
  'disbelief',
  'mom',
  'began',
  'question',
  'unemploy',
  'deni',
  'deni',
  'deni',
  'admit',
  'true',
  'got',
  'awkward',
  'mom',
  'scold',
  'shame',
  'hide',
  'got',
  'overwhelm',
  'went',
  'outsid',
  'stay',
  'insid',
  'car',
  'til',
  'came',
  'start',
  'yele',
  'repeatedli',
  'coudnt',
  'held',
  'ef',
  'tongu',
  'accus',
  'turn',
  'famili',
  'jugg',
  'shun',
  'cant',
  'even',
  'step',
  'foot',
  'hous',
  'shame',
  'guilt',
  'argu',
  'comment',
  'chest',
  'insult',
  'said',
  'give',
  'piec',
  'advic',
  'noth',
  'wrong',
  'want',
  'look',
  'pretti',
  'said',
  'said',
  'support',
  'encouregemnt',
  'complet',
  'opposit',
  'intent',
  'hurt',
  'succeed',
  'drop',
  'home',
  'went',
  'stay',
  'buddi',
  'call',
  'later',
  'think',
  'calm',
  'friend',
  'said',
  'want',
  'speak',
  'shoud',
  'give',
  'space'],
 ['niec',
  'sister',
  'child',
  'year',
  'ago',
  'marri',
  'wealthi',
  'man',
  'pandem',
  'last',
  'christma',
  'first',
  'in-law',
  'mil',
  'gift',
  'coat',
  'worth',
  '$',
  'saw',
  'wear',
  'ask',
  'bought',
  'said',
  'christma',
  'gift',
  'know',
  'much',
  'knew',
  'expens',
  'thought',
  'mayb',
  '$',
  'visit',
  'sister',
  'last',
  'januari',
  'niec',
  'saw',
  'googl',
  'brand',
  'show',
  'much',
  'realli',
  'lie',
  'wear',
  'afraid',
  'ruin',
  'last',
  'week',
  'wore',
  'visit',
  'sister',
  'put',
  'back',
  'leav',
  'felt',
  'someth',
  'go',
  '*',
  'splat',
  '*',
  'back',
  'niec',
  'start',
  'cackl',
  'smell',
  'paint',
  'hit',
  'piss',
  'apologit',
  'mom',
  'scream',
  'said',
  'ground',
  'said',
  'pay',
  'dri',
  'clean',
  'car',
  'still',
  'shock',
  'btw',
  'got',
  'alert',
  'niec',
  'post',
  'reel',
  '*',
  'prank',
  '*',
  'said',
  'im',
  'go',
  'hit',
  'aunt',
  '$',
  'coat',
  'paint',
  'fill',
  'balloon',
  'see',
  'react',
  'save',
  'phone',
  'sent',
  'mom',
  'told',
  'week',
  'ground',
  'enough',
  'repli',
  'saw',
  'niec',
  'took',
  'got',
  'less',
  'view',
  'next',
  'day',
  'found',
  'coat',
  'save',
  'call',
  'sister',
  'told',
  'daughter',
  'pay',
  'back',
  'well',
  'got',
  'argument',
  'said',
  'pay',
  'want',
  'new',
  'one',
  'get',
  'husband',
  'buy',
  'think',
  'pay',
  'afford',
  'imo',
  'sell',
  'niec',
  'car',
  'pay',
  'back',
  'money',
  'reach',
  'agreement',
  'told',
  'su',
  'remind',
  'video',
  'evid',
  'daughter',
  'purpos',
  'onlin',
  'clout',
  'knew',
  'exactli',
  'expens',
  'peopl',
  'life',
  'object',
  'call',
  'ah',
  'say',
  'ah',
  'buy',
  'new',
  'one',
  'obsess',
  'price',
  'coat',
  'call',
  'ah',
  'simpli',
  'want',
  'new',
  'one',
  'aita',
  'edit',
  'sorri',
  'make',
  'clearer',
  'coat',
  'bought',
  'new',
  'ident',
  'mil'],
 ['edit',
  '-',
  'updat',
  'page',
  '-',
  'situat',
  'husband',
  '[',
  ']',
  '[',
  ']',
  'kid',
  '[',
  ']',
  'im',
  'sahm',
  'full',
  'time',
  'take',
  'care',
  'kid',
  'husband',
  'work',
  'full',
  'time',
  'sister',
  'wed',
  'last',
  'week',
  'live',
  'hour',
  'away',
  'issu',
  'husband',
  'first',
  'got',
  'invit',
  'told',
  'go',
  'stay',
  'kid',
  'suggest',
  'sinc',
  'wed',
  'allow',
  'kid',
  'husband',
  'want',
  'hire',
  'babysitt',
  'one',
  'rob',
  'us',
  'gone',
  'back',
  'forth',
  'insist',
  'go',
  'sinc',
  'sister',
  'want',
  'attend',
  'might',
  'lifetim',
  'event',
  'chuckl',
  'statemt',
  'stop',
  'talk',
  'wed',
  'appraoch',
  'brought',
  'told',
  'miss',
  'stay',
  'kid',
  'suggest',
  'sinc',
  'babysitt',
  'allow',
  'could',
  'get',
  'friend',
  'stay',
  'kid',
  'refus',
  'ignor',
  'spoke',
  'friend',
  'agre',
  'watch',
  'kid',
  'book',
  'ticket',
  'travel',
  'sister',
  'town',
  'time',
  'husband',
  'found',
  'went',
  'work',
  'logic',
  'solut',
  'stay',
  'home',
  'kid',
  'let',
  'make',
  'live',
  'told',
  'alreadi',
  'took',
  'care',
  'kid',
  'theyll',
  'stay',
  'friend',
  'honestli',
  'grew',
  'inpati',
  'day',
  'flight',
  'drop',
  'kid',
  'friend',
  'place',
  'head',
  'airport',
  'found',
  'cancel',
  'plane',
  'ticket',
  'upset',
  'still',
  'insist',
  'go',
  'went',
  'home',
  'got',
  'car',
  'drove',
  'hr',
  'get',
  'town',
  'pm',
  'husband',
  'call',
  'freak',
  'ask',
  'told',
  'made',
  'sister',
  'town',
  'blew',
  'say',
  'suppos',
  'go',
  'even',
  'said',
  'cancel',
  'ticket',
  'get',
  'stay',
  'demand',
  'return',
  'said',
  'wed',
  'call',
  'horribl',
  'neglect',
  'mom',
  'mom',
  'scold',
  'accus',
  'abandon',
  'kid',
  'huge',
  'argument',
  'ensu',
  'return',
  'home',
  'husband',
  'kept',
  'say',
  'horribl',
  'leav',
  'kid',
  'ignor',
  'like',
  'want',
  'eventu',
  'give',
  'silent',
  'treatment',
  'longer',
  'take',
  'felt',
  'guilti',
  'enjoy',
  'wed',
  'wrong',
  'still',
  'go',
  '[',
  'info',
  ']',
  'husband',
  'dislik',
  'sister',
  'relev',
  'updat',
  'lot',
  'peopl',
  'brought',
  'possibl',
  'husband',
  'lie',
  'robberi',
  'happen',
  'month',
  'ago',
  'accus',
  'babysitt',
  'steal',
  'cant',
  'hire',
  'babysitt',
  'one',
  'discov',
  'robberi',
  'never',
  'saw',
  'talk',
  'kick',
  'upon',
  'read',
  'comment',
  'im',
  'suspect',
  'made',
  'whole',
  'thing',
  'im',
  'go',
  'contact',
  'babysitt',
  'get',
  'whole',
  'stori',
  'fromhop',
  'im',
  'wrong',
  'talk',
  'see',
  'stori',
  'contredict',
  'way',
  'ill',
  'keep',
  'updat'],
 ['husband',
  'deal',
  'sone',
  'health',
  'issu',
  'past',
  'week',
  'frequent',
  'visit',
  'dr',
  'ask',
  'could',
  'go',
  'refus',
  'say',
  'neccesari',
  'ask',
  'want',
  'said',
  'felt',
  'comfort',
  'privaci',
  'doctor',
  'jokingli',
  'ask',
  'doctor',
  'women',
  'glanc',
  'anticip',
  'next',
  'dr',
  'appoint',
  'decid',
  'go',
  'meet',
  'went',
  'minut',
  'later',
  'enter',
  'offic',
  'identifi',
  'wife',
  'shock',
  'saw',
  'greet',
  'doctor',
  'man',
  'lol',
  'talk',
  'husband',
  'refus',
  'even',
  'look',
  'way',
  'refus',
  'speak',
  'well',
  'left',
  'offic',
  'togeth',
  'went',
  'car',
  'say',
  'follow',
  'came',
  'dr',
  'offic',
  'ask',
  'privaci',
  'said',
  'alright',
  'im',
  'wife',
  'alreadi',
  'even',
  'know',
  'issu',
  'want',
  'show',
  'support',
  'said',
  'overstep',
  'one',
  'boundari',
  'refus',
  'respect',
  'wish',
  'made',
  'stress',
  'alreadi',
  'hard',
  'time',
  'go',
  'thought',
  'overreact',
  'aita'],
 ['girlfriend',
  'molli',
  'last',
  'month',
  'start',
  'joke',
  'ive',
  'alreadi',
  'made',
  'clear',
  'like',
  'consist',
  'say',
  'quickli',
  'anyth',
  'ask',
  'know',
  'sound',
  'silli',
  'ask',
  'get',
  'glass',
  'water',
  'say',
  'minut',
  'im',
  'almost',
  'get',
  'say',
  'joke',
  'get',
  'water',
  'ask',
  'wash',
  'dish',
  'say',
  'say',
  'love',
  'say',
  'ask',
  'take',
  'cloth',
  'say',
  'everyth',
  'joke',
  'smin',
  'addict',
  'ive',
  'alreadi',
  'made',
  'clear',
  'sever',
  'time',
  'like',
  'even',
  'love',
  'person',
  'say',
  'special',
  'thing',
  'seriou',
  'need',
  'answer',
  'serious',
  'say',
  'everyth',
  'jokingli',
  'cant',
  'tell',
  'say',
  'real',
  'alreadi',
  'happen',
  'keep',
  'say',
  'bore',
  'like',
  'stop',
  'goe',
  'back',
  'week',
  'brief',
  'discuss',
  'play',
  'prank',
  'front',
  'friend',
  'ask',
  'love',
  'get',
  'medicin',
  'kid',
  'stop',
  'month',
  'yesterday',
  'welcom',
  'parent',
  'in-law',
  'best',
  'friend',
  'hous',
  'everyon',
  'knew',
  'go',
  'propos',
  'call',
  'alway',
  'plan',
  'propos',
  'love',
  'one',
  'attend',
  'particip',
  'special',
  'day',
  'ask',
  'marri',
  'said',
  'quick',
  'grumpypanicupset',
  'everyon',
  'look',
  'shock',
  'laugh',
  'say',
  'joke',
  'final',
  'say',
  'ye',
  'embarrass',
  'and…disappoint',
  'put',
  'ring',
  'box',
  'back',
  'said',
  'id',
  'take',
  'cool',
  'even',
  'let',
  'say',
  'anyth',
  'kept',
  'text',
  'answer',
  'call',
  'say',
  'joke',
  'knew',
  'alway',
  'said',
  'left',
  'difficult',
  'situat',
  'hous',
  'clear',
  'given',
  'propos',
  'front',
  'parent',
  'in-law',
  'stress',
  'make',
  'situat',
  'uncomfort',
  'silli',
  'joke',
  'well',
  'slept',
  'hotel',
  'im',
  'still',
  'parent',
  'support',
  'in-law',
  'call',
  'ah',
  'give',
  'propos',
  'disproportion',
  'humili',
  'daughter',
  'realli',
  'think',
  'time',
  'joke',
  'moment',
  'clearli',
  'knew',
  'like',
  'decid',
  'anyway',
  'aita'],
 ['mother-in-law',
  'call',
  'everi',
  'night',
  'ask',
  'dinner',
  'brag',
  'cook',
  'make',
  'look',
  'bad',
  'especi',
  'get',
  'takeout',
  'use',
  'care',
  'anymor',
  'husband',
  'would',
  'ask',
  'make',
  'dinner',
  'go',
  'eat',
  'dinner',
  'mom',
  'make',
  'home',
  'minut',
  'away',
  'use',
  'favorit',
  'meal',
  'excus',
  'yesterday',
  'want',
  'surpris',
  'cook',
  'one',
  'favorit',
  'meal',
  'although',
  'busi',
  'took',
  'time',
  'work',
  'cook',
  'even',
  'went',
  'groceri',
  'shop',
  'get',
  'need',
  'later',
  'set',
  'tabl',
  'mom',
  'call',
  'told',
  'answer',
  'like',
  'usualsh',
  'ask',
  'act',
  'surpris',
  'cook',
  'meal',
  'went',
  'tell',
  'cook',
  'meal',
  'told',
  'come',
  'said',
  'ok',
  'shock',
  'said',
  'serious',
  'start',
  'drese',
  'get',
  'readi',
  'leav',
  'told',
  'offens',
  'meal',
  'mom',
  'cook',
  'even',
  'favorit',
  'one',
  'cook',
  'grabe',
  'key',
  'left',
  'felt',
  'aw',
  'took',
  'plate',
  'threw',
  'ate',
  'portion',
  'put',
  'plate',
  'dishwash',
  'got',
  'home',
  'look',
  'angri',
  'say',
  'mom',
  'lie',
  'cook',
  'favorit',
  'meal',
  'use',
  'excus',
  'forc',
  'eat',
  'dinner',
  'shock',
  'sat',
  'tell',
  'go',
  'ahead',
  'reheat',
  'dinner',
  'told',
  'dinner',
  'abandon',
  'threw',
  'said',
  'told',
  'disrespect',
  'time',
  'effort',
  'chose',
  'go',
  'eat',
  'woth',
  'mom',
  'instead',
  'began',
  'yell',
  'ask',
  'realli',
  'call',
  'petti',
  'horribl',
  'went',
  'upstair',
  'say',
  'time',
  'wors',
  'mom',
  'defin',
  'feel',
  'like',
  'let',
  'anger',
  'frustrat',
  'get',
  'best',
  'realli',
  'felt',
  'unbear',
  'live',
  'like',
  'long',
  'way',
  '[',
  'im',
  ']',
  'eta',
  'make',
  'one',
  'thing',
  'clear',
  'fact',
  'husband',
  'come',
  'food',
  'live',
  'mom',
  'attend',
  'commun',
  'colleg',
  'love',
  'still',
  'love',
  'food',
  'use',
  'gave',
  'recip',
  'make',
  'tri',
  'keep',
  'switch',
  'home',
  'eat',
  'feel',
  'like',
  '*',
  '*',
  'updat',
  '*',
  '*',
  '👋',
  'post',
  'situat',
  'almost',
  'hr',
  'ago',
  'realli',
  'read',
  'everi',
  'singl',
  'comment',
  '-',
  'wow',
  'mani',
  'saw',
  'piec',
  'advic',
  'encoureg',
  'im',
  'thank',
  '💝',
  'want',
  'let',
  'guy',
  'know',
  'someth',
  'sinc',
  'throwaway',
  'account',
  'abandon',
  'soon',
  'wan',
  'na',
  'let',
  'know',
  'sit',
  'husband',
  'soon',
  'break',
  'silenc',
  'im',
  'give',
  'space',
  'said',
  'want',
  'im',
  'go',
  'show',
  'post',
  'hope',
  'hed',
  'see',
  'none',
  'fault',
  'also',
  'push',
  'coupl',
  'counsel',
  'although',
  'alway',
  'well',
  'see',
  'thing',
  'goim',
  'gon',
  'na',
  'lie',
  'still',
  'feel',
  'upset',
  'like',
  'effort',
  'appreci',
  'mom',
  'defin',
  'onto',
  'someth',
  'littl',
  'upset',
  'stunt',
  'realiz',
  'import',
  'boundari',
  '-',
  'also',
  'realiz',
  'enforcingbcan',
  'difficult',
  'im',
  'hope',
  'pray',
  'tackl',
  'issu',
  'marriag',
  'suffer',
  'still',
  'somehow',
  'unabl',
  'part',
  'im',
  'longer',
  'go',
  'similar',
  'stuff',
  'take',
  'know',
  'yeah',
  'honestli',
  'realiz',
  'post',
  'go',
  'gain',
  'much',
  'attent',
  'might',
  'add',
  'origin',
  'account',
  'case',
  'yall',
  'want',
  'talk',
  'got',
  'plenti',
  'time',
  'space',
  'internet',
  'besti',
  'inbox',
  'blow',
  'lol',
  'mayb',
  'post',
  'updat',
  'could',
  'thank',
  'much',
  '💝'],
 ['daughter',
  'olivia',
  'former',
  'relationship',
  'current',
  'im',
  'marri',
  'wife',
  'adaught',
  'britney',
  'britney',
  'opposit',
  'olivia',
  'exampl',
  'britney',
  'social',
  'kid',
  'olivia',
  'introvert',
  'list',
  'long',
  'theyr',
  'complet',
  'oposit',
  'olivia',
  'th',
  'birthday',
  'day',
  'ago',
  'love',
  'chocol',
  'decid',
  'flavor',
  'go',
  'go',
  'contact',
  'bakeri',
  'howev',
  'wife',
  'object',
  'sinc',
  'britney',
  'absolut',
  'hate',
  'chocol',
  'suggest',
  'go',
  'vanilla',
  'said',
  'way',
  'one',
  'olivia',
  'hate',
  'vanilla',
  'also',
  'birthday',
  'get',
  'cake',
  'favorit',
  'flavor',
  'wife',
  'got',
  'upset',
  'took',
  'regard',
  'britney',
  'choos',
  'anoth',
  'netur',
  'flavor',
  'instead',
  'shut',
  'said',
  'discuss',
  'id',
  'alreadi',
  'decid',
  'go',
  'olivia',
  'want',
  'day',
  'birthday',
  'suppos',
  'go',
  'get',
  'cake',
  'surpris',
  'see',
  'wife',
  'come',
  'home',
  'pick',
  'cake',
  'bakeri',
  'look',
  'discov',
  'chocol',
  'cake',
  'vanilla',
  'cake',
  'small',
  'piec',
  'chocol',
  'top',
  'got',
  'piss',
  'think',
  'got',
  'order',
  'wrong',
  'contact',
  'wife',
  'said',
  'mistak',
  'call',
  'bakeri',
  'day',
  'made',
  'slight',
  'chang',
  'cake',
  'pleas',
  'girl',
  'stun',
  'lost',
  'ask',
  'hell',
  'got',
  'defens',
  'say',
  'birthday',
  'excus',
  'show',
  'favorit',
  'daughter',
  'watch',
  'observ',
  'im',
  'treat',
  'girl',
  'told',
  'sinc',
  'one',
  'pay',
  'call',
  'bakeri',
  'explain',
  'happen',
  'cake',
  'return',
  'replac',
  'chocol',
  'cake',
  'although',
  'one',
  'smaller',
  'fine',
  'wife',
  'declin',
  'take',
  'part',
  'celebr',
  'later',
  'got',
  'huge',
  'argument',
  'call',
  'control',
  'selfish',
  'retur',
  'cake',
  'instead',
  'use',
  'opportun',
  'teach',
  'olivia',
  'compromis',
  'everyon',
  'happi',
  'im',
  'teach',
  'selfish',
  'said',
  'daughter',
  'get',
  'act',
  'selfish',
  'birthday',
  'wife',
  'teach',
  'daughter',
  'entitl',
  'word',
  'word',
  'led',
  'bigger',
  'argument',
  'talk',
  'aita',
  'return',
  'cake',
  'take',
  'wife',
  'input',
  'consider'],
 ['necessarili',
  'proudest',
  'moment',
  'tire',
  'outcast',
  'husband',
  'pete',
  'come',
  'famili',
  'women',
  'baker',
  'baker',
  'use',
  'sell',
  'hous',
  'state',
  'cottag',
  'law',
  'stop',
  'like',
  'hobbi',
  'sil',
  'kay',
  'one',
  'known',
  'cupcak',
  'cake',
  'pop',
  'first',
  'met',
  'everyon',
  'year',
  'ago',
  'first',
  'thing',
  'learn',
  'everyon',
  'talk',
  'everyth',
  'made',
  'even',
  'pete',
  'mention',
  'good',
  'stuff',
  'everyon',
  'would',
  'say',
  'kay',
  'sell',
  'theyr',
  'popular',
  'must',
  'better',
  'whenev',
  'bring',
  'treat',
  'often',
  'left',
  'untouch',
  'kay',
  'ye',
  'ive',
  'told',
  'ask',
  'bring',
  'someth',
  'everi',
  'get',
  'togeth',
  'never',
  'touch',
  'clear',
  'kay',
  'mainli',
  'baker',
  'wherea',
  'bake',
  'special',
  'profession',
  'decor',
  'cake',
  'kay',
  'say',
  'overli',
  'decor',
  'cake',
  'compens',
  'bad',
  'tast',
  'pete',
  'famili',
  'agre',
  'bbq',
  'monday',
  'memori',
  'day',
  'everyon',
  'made',
  'treat',
  'kay',
  'decid',
  'bring',
  'cake',
  'pop',
  'post',
  'instagram',
  'night',
  'know',
  'immatur',
  'made',
  'exact',
  'one',
  'flavor',
  'design',
  'got',
  'everyon',
  'ask',
  'treat',
  'said',
  'theyr',
  'car',
  'ill',
  'get',
  'minut',
  'wait',
  'everyon',
  'outsid',
  'brought',
  'mine',
  'put',
  'next',
  'kay',
  'eat',
  'notic',
  'famili',
  'eat',
  'cake',
  'pop',
  'kay',
  'notic',
  'first',
  'ask',
  'feel',
  'cake',
  'pop',
  'said',
  'ate',
  'best',
  'ever',
  'made',
  'ask',
  'differ',
  'mil',
  'even',
  'said',
  'look',
  'much',
  'better',
  'person',
  'pictur',
  'kay',
  'confus',
  'said',
  'still',
  'tabl',
  'said',
  'oh',
  'brought',
  'glad',
  'enjoy',
  'husband',
  'said',
  'one',
  'yet',
  'lie',
  'ate',
  'two',
  'everyon',
  'els',
  'said',
  'yeah',
  'okay',
  'kay',
  'say',
  'anyth',
  'rest',
  'night',
  'pete',
  'thought',
  'funni',
  'know',
  'reveal',
  'brother',
  'kay',
  'husband',
  'said',
  'yesterday',
  'mean',
  'im',
  'mad',
  'kay',
  'better',
  'baker',
  'pete',
  'said',
  'ridicul',
  'famili',
  'includ',
  'kay',
  'put',
  'bake',
  'even',
  'tri',
  'im',
  'kay',
  'aita',
  'eta',
  'two',
  'bring',
  'dessert',
  'one',
  'tend',
  'bake',
  'cake',
  'everyon',
  'els',
  'dessert',
  'get',
  'eaten',
  'degre',
  'except',
  'mine',
  'edit',
  'clear',
  'everyon',
  'includ',
  'kay',
  'often',
  'tri',
  'teach',
  'techniqu',
  'either',
  'alreadi',
  'knew',
  'complet',
  'wrong',
  'like',
  'innoc',
  'got',
  'caught',
  'line',
  'fire',
  'someth'],
 ['im',
  'current',
  'medic',
  'school',
  'live',
  'across',
  'countri',
  'brotherfamili',
  'surpris',
  'fiancé',
  'ask',
  'bridesmaid',
  'bare',
  'know',
  'want',
  'sibl',
  'wed',
  'made',
  'clear',
  'wed',
  'final',
  'exam',
  'week',
  'abl',
  'get',
  'accommod',
  'take',
  'last',
  'two',
  'exam',
  'earli',
  'still',
  'abl',
  'help',
  'much',
  'plan',
  'present',
  'thing',
  'like',
  'bachelorett',
  'partybrid',
  'shower',
  'said',
  'fine',
  'would',
  'mostli',
  'even',
  'number',
  'bridesmaid',
  'groomsmen',
  'pictur',
  'group',
  'chat',
  'creat',
  'month',
  'ago',
  'would',
  'read',
  'everi',
  'coupl',
  'day',
  'get',
  'updat',
  'thing',
  'need',
  'name',
  'order',
  'bridesmaid',
  'dress',
  'link',
  'sent',
  'three',
  'style',
  'choos',
  'would',
  'updat',
  'color',
  'later',
  'coupl',
  'week',
  'go',
  'ask',
  'color',
  'order',
  'bride',
  'say',
  'still',
  'think',
  'coupl',
  'week',
  'go',
  'still',
  'thinking…',
  'coupl',
  'week',
  'get',
  'idea',
  'point',
  'order',
  'dress',
  'coupl',
  'day',
  'time',
  'ask',
  'saturday',
  'color',
  'respons',
  'group',
  'chat',
  'ask',
  'yesterday',
  'sunday',
  'color',
  'need',
  'order',
  'im',
  'flood',
  'messag',
  'lambast',
  'order',
  'dress',
  'yet',
  'sister',
  'sister',
  'sister',
  'call',
  'told',
  'get',
  'sh\\',
  '*',
  'togeth',
  'order',
  'dress',
  'alreadi',
  'lack',
  'prepared',
  'caus',
  'bride',
  'intens',
  'anxieti',
  'think',
  'dress',
  'time',
  'wed',
  'text',
  'morn',
  'forget',
  'order',
  'dress',
  'love',
  'smile',
  'kiss',
  'emoji',
  'still',
  'one',
  'told',
  'color',
  'ive',
  'scour',
  'group',
  'chat',
  'mention',
  'dress',
  'color',
  'imag',
  'dress',
  'maid',
  'honor',
  'sent',
  'photo',
  'dress',
  'know',
  'special',
  'color',
  'thousand',
  'messag',
  'simpl',
  'find',
  'anyth',
  'everyon',
  'els',
  'meet',
  'person',
  'assum',
  'decis',
  'color',
  'relay',
  'person',
  'cant',
  'tell',
  'im',
  'purpos',
  'exclud',
  'hour',
  'ago',
  'brother',
  'call',
  'plead',
  'work',
  'thing',
  'bride',
  'panick',
  'tri',
  'explain',
  'told',
  'care',
  'petti',
  'ladi',
  'issu',
  'sinc',
  'im',
  'anyth',
  'els',
  'least',
  'bride',
  'think',
  'like',
  'come',
  'anyth',
  'take',
  'side',
  'know',
  'im',
  'medic',
  'school',
  'liter',
  'say',
  'schedul',
  'im',
  'side',
  'countri',
  'hour',
  'plane',
  'im',
  'fed',
  'contempl',
  'tell',
  'instructor',
  'wed',
  'move',
  'take',
  'exam',
  'regular',
  'time',
  'id',
  'time',
  'studi',
  'way',
  'anyway',
  'told',
  'anyon',
  'famili',
  'im',
  'consid',
  'wibta',
  '&',
  'xb',
  '&',
  'xb',
  'updat',
  'call',
  'mother',
  'ask',
  'color',
  'bridesmaid',
  'dress',
  'said',
  'lavend',
  'color',
  'option',
  'websit',
  'would',
  'call',
  'lavend',
  'name',
  'pearli',
  'lilac',
  'periwinkl',
  'orchid',
  'purpl',
  'text',
  'maid',
  'honor',
  'bride',
  'sister',
  'ask',
  'dress',
  'color',
  'got',
  'multi-paragraph',
  'long',
  'lectur',
  'order',
  'dress',
  'yet',
  'basic',
  'tri',
  'hard',
  'accommod',
  'across',
  'countri',
  'includ',
  'group',
  'chat',
  'said',
  'rememb',
  'shade',
  'name',
  'dusti',
  'purpl',
  'sent',
  'blurri',
  'pictur',
  'wrinkl',
  'order',
  'confirm',
  'shade',
  'name',
  'mulberri',
  'dress',
  'websit',
  'darker',
  'winepurpl',
  'color',
  'told',
  'said',
  'order',
  'lighter',
  'dusti',
  'purpl',
  'color',
  'sent',
  'screen',
  'shot',
  'list',
  'shade',
  'name',
  'ask',
  'said',
  'know',
  'everyon',
  'order',
  'dress',
  'long',
  'ago',
  'ask',
  'pictur',
  'dress',
  'differ',
  'shade',
  'websit',
  'sent',
  'screenshot',
  'light',
  'purpl',
  'color',
  'respons',
  'call',
  'phone',
  'upset',
  'past',
  'pm',
  'respons',
  'look',
  'care',
  'problem',
  'sister',
  'want',
  'stay',
  'good',
  'stand',
  'famili',
  'need',
  'get',
  'duck',
  'line',
  'girli',
  'ignor',
  'lecturecom',
  'ask',
  'color',
  'respons',
  'light',
  'purpl',
  'three',
  'sent',
  'one',
  'rememb',
  'ill',
  'ask',
  'one',
  'bridesmaid',
  'receipt',
  'ill',
  'get',
  'back',
  'want',
  'bash',
  'head',
  'wall',
  'call',
  'second',
  'brother',
  'one',
  'get',
  'marri',
  'said',
  'theyr',
  'pull',
  'similar',
  'thing',
  'feel',
  'like',
  'deliber',
  'given',
  'wrong',
  'date',
  'bachelor',
  'parti',
  'best',
  'man',
  'bride',
  'brother',
  'would',
  'miss',
  'inadvert',
  'learn',
  'chang',
  'date',
  'morn',
  'ask',
  'best',
  'man',
  'told',
  'must',
  'slip',
  'mind',
  'tell',
  'joke',
  'miss',
  'much',
  'sinc',
  'probabl',
  'enjoy',
  'festiv',
  'anyway',
  'theyv',
  'make',
  'homophob',
  'joke',
  'comment',
  'ignor',
  'think',
  'theyr',
  'tri',
  'get',
  'back',
  'wed',
  'back',
  'even',
  'number',
  'bridesmaid',
  'groomsmen',
  'specul',
  'part',
  'cours',
  '&',
  'xb',
  '&',
  'xb',
  'quick',
  'updat',
  'serious',
  'consid',
  'pull',
  'collect',
  'rage',
  'fade',
  'motiv',
  'studi',
  'thinking…',
  'point',
  'post',
  'took',
  'surpris',
  'find',
  'point',
  'want',
  'reveal',
  'card',
  'yet',
  'thank',
  'comment',
  'gave',
  'idea',
  'guess',
  'ill',
  'make',
  'updat',
  'mid',
  'june',
  'goe',
  'plan',
  '&',
  'xb',
  '&',
  'xb',
  '&',
  'xb',
  'final',
  'updat',
  'thank',
  'respons',
  'call',
  'bridal',
  'salon',
  'ask',
  'color',
  'order',
  'four',
  'dress',
  'color',
  'flint',
  'one',
  'mulberri',
  'moh',
  'set',
  'believ',
  'mulberri',
  'color',
  'dress',
  'order',
  'one',
  'mulberri',
  'one',
  'flint',
  'let',
  'moh',
  'know',
  'purchas',
  'mulberri',
  'dress',
  'caught',
  'red',
  'eye',
  'rehears',
  'room',
  'get',
  'readi',
  'morn',
  'want',
  'dress',
  'store',
  'show',
  'mulberri',
  'dress',
  'bride',
  'begin',
  'cri',
  'late',
  'fix',
  'ask',
  'would',
  'upset',
  'ask',
  'drop',
  'mulberri',
  'moh',
  'pretend',
  'like',
  'made',
  'big',
  'mistak',
  'said',
  'know',
  'girl',
  'work',
  'salon',
  'let',
  'call',
  'see',
  'anyway',
  'make',
  'right',
  'ill',
  'step',
  'want',
  'perfect',
  'day',
  'show',
  'back',
  'next',
  'morn',
  'start',
  'get',
  'readi',
  'correct',
  'dress',
  'tow',
  'friend',
  'look',
  'back',
  'return',
  'yesterday',
  'odd',
  'exact',
  'style',
  'color',
  'size',
  'sign',
  'silenc',
  'awkward',
  'amaz',
  'ill',
  'honest',
  'thought',
  'reveng',
  'would',
  'younger',
  'brother',
  'wed',
  'photo',
  'plan',
  'next',
  'part',
  'explain',
  'makeup',
  'artist',
  'addit',
  'bridesmaid',
  'mean',
  'plan',
  'begin',
  'wed',
  'ceremoni',
  'went',
  'fine',
  'took',
  'photo',
  'place',
  'set',
  'littl',
  'bro',
  'wed',
  'parti',
  'recept',
  'sinc',
  'bank',
  'one',
  'less',
  'bridesmaid',
  'one',
  'less',
  'groomsman',
  'present',
  'tabl',
  'almost',
  'long',
  'enough',
  'two',
  'chair',
  'thrown',
  'end',
  'get',
  'food',
  'initi',
  'actual',
  'seat',
  'plan',
  'tabl',
  'plate',
  'brought',
  'place',
  'set',
  'tell',
  'brother',
  'groom',
  'seem',
  'tick',
  'staff',
  'seemingli',
  'thing',
  'set',
  'properli',
  'bride',
  'best',
  'man',
  'divert',
  'attent',
  'groom',
  'left',
  'found',
  'said',
  'ask',
  'moh',
  'set',
  'wrong',
  'told',
  'ask',
  'drop',
  'wed',
  'parti',
  'week',
  'ago',
  'show',
  'demand',
  'wed',
  'said',
  'ask',
  'drop',
  'show',
  'phone',
  'gave',
  'thumb',
  'dress',
  'notic',
  'screenshot',
  'dress',
  'current',
  'wear',
  'said',
  'last',
  'minut',
  'switch',
  'confus',
  'color',
  'seem',
  'satisfi',
  'left',
  'honeymoon',
  'brother',
  'return',
  'sever',
  'day',
  'early…',
  'alon',
  'guess',
  'went'],
 ['im',
  'gon',
  'na',
  'shi',
  'sister',
  'suck',
  'horribl',
  'self',
  'slcenter',
  'person',
  'think',
  'main',
  'charact',
  'horribl',
  'person',
  'step',
  'monster',
  'marri',
  'guy',
  'freak',
  'push',
  'year',
  'ago',
  'two',
  'children',
  'sister',
  'constantli',
  'complain',
  'say',
  'thing',
  'like',
  'year',
  'old',
  'gross',
  'sip',
  'loud',
  'stain',
  'cloth',
  'love',
  'god',
  'child',
  'suppos',
  'mean',
  'year',
  'old',
  'girl',
  'act',
  'straight',
  'jealou',
  'ive',
  'caught',
  'taunt',
  'daddi',
  'love',
  'sister',
  'horribl',
  'straight',
  'call',
  'tri',
  'talk',
  'like',
  'million',
  'time',
  'christma',
  'say',
  'id',
  'nice',
  'kid',
  'said',
  'hate',
  'everyth',
  'almost',
  'brag',
  'friend',
  'husband',
  'spend',
  'daughter',
  'fight',
  'ensu',
  'parent',
  'reprimand',
  'cousin',
  'took',
  'side',
  'call',
  'note',
  'everi',
  'moment',
  'wit',
  'horribl',
  'husband',
  'obvious',
  'took',
  'side',
  'said',
  'wonder',
  'step',
  'mother',
  'kid',
  'love',
  'said',
  'lie',
  'consol',
  'countless',
  'time',
  'taunt',
  'sister',
  'left',
  'talk',
  'sinc',
  'one',
  'day',
  'run',
  'errand',
  'run',
  'step',
  'nephew',
  'mother',
  'never',
  'met',
  'honestli',
  'wonder',
  'decid',
  'coffe',
  'kid',
  'play',
  'ask',
  'children',
  'behav',
  'etc',
  'said',
  'wonder',
  'spill',
  'bean',
  'sister',
  'aw',
  'ive',
  'heard',
  'say',
  'kid',
  'inact',
  'ex',
  'husband',
  'end',
  'horrifi',
  'said',
  'kid',
  'like',
  'alway',
  'chuck',
  'sister',
  'new',
  'woman',
  'father',
  'life',
  'said',
  'kid',
  'never',
  'realli',
  'said',
  'anyth',
  'even',
  'ask',
  'told',
  'iw',
  'concern',
  'children',
  'sister',
  'straight',
  'told',
  'year',
  'old',
  'would',
  'better',
  'disappear',
  'father',
  'life',
  'mother',
  'saw',
  'red',
  'ask',
  'id',
  'testifi',
  'said',
  'unaccept',
  'would',
  'take',
  'father',
  'court',
  'said',
  'would',
  'recount',
  'event',
  'wit',
  'could',
  'ask',
  'cousin',
  'wit',
  'lot',
  'grate',
  'ask',
  'cousin',
  'recount',
  'event',
  'word',
  'got',
  'arround',
  'parent',
  'extent',
  'sister',
  'call',
  'biggest',
  'asshol',
  'planet',
  'would',
  'betray',
  'famili',
  'whim',
  'asshol'],
 ['two',
  'kid',
  'husband',
  '-year-old',
  'daughter',
  'year-old',
  'son',
  'daughter',
  'alway',
  'littl',
  'social',
  'awkward',
  'point',
  'weve',
  'test',
  'sinc',
  'suspect',
  'spectrum',
  'turn',
  'spectrum',
  'natur',
  'introvert',
  'howev',
  'year',
  'school',
  'thrill',
  'daughter',
  'made',
  'new',
  'friend',
  'age',
  'sinc',
  'area',
  'struggl',
  'long',
  'stori',
  'short',
  'recent',
  'invit',
  'new',
  'friend',
  'aprov',
  'dinner',
  'hous',
  'spend',
  'night',
  'daughter',
  'friend',
  'came',
  'husband',
  'usual',
  'cook',
  'famili',
  'night',
  'except',
  'made',
  'us',
  'realli',
  'nice',
  'meal',
  'cours',
  'said',
  'meal',
  'ask',
  'daughter',
  'friend',
  'enjoy',
  'food',
  'respond',
  'ye',
  '\\',
  '[',
  'husband\\',
  ']',
  'great',
  'cook',
  'wonder',
  'end',
  'bigger',
  'woman',
  'room',
  'got',
  'quiet',
  'sever',
  'moment',
  'husband',
  'tri',
  'laugh',
  'chang',
  'subject',
  'girl',
  'level',
  'complet',
  'uncalled-for',
  'insult',
  'daughter',
  'friend',
  'seem',
  'realiz',
  'shed',
  'mess',
  'say',
  'anyth',
  'els',
  'finish',
  'awkward',
  'dinner',
  'mostli',
  'silenc',
  'daughter',
  'friend',
  'stay',
  'night',
  'coupl',
  'month',
  'ago',
  'recent',
  'daughter',
  'ask',
  'could',
  'friend',
  'back',
  'told',
  'sure',
  'go',
  'apolog',
  'daughter',
  'ask',
  'meant',
  'remind',
  'shed',
  'said',
  'daughter',
  'respond',
  'want',
  'bring',
  'went',
  'father',
  'ask',
  'said',
  'sure',
  'told',
  'id',
  'said',
  'came',
  'said',
  '\\',
  '[',
  'daughter',
  'friend\\',
  ']',
  'felt',
  'awkward',
  'tri',
  'make',
  'joke',
  'land',
  'sake',
  'daughter',
  'cant',
  'let',
  'go',
  'ye',
  'could',
  'thing',
  'want',
  'apolog',
  'girl',
  'need',
  'see',
  'understand',
  'rude',
  'get',
  'board',
  'myy',
  'daughter',
  'hang',
  'husband',
  'say',
  'weird',
  'insist',
  'apolog',
  'year-old',
  'especi',
  'sinc',
  'girl',
  'good',
  'friend',
  'daughter',
  'think',
  'weird',
  'im',
  'still',
  'wait',
  'apolog',
  'girl',
  'serious',
  'need',
  'need',
  'know',
  'friend',
  'daughter',
  'screw'],
 ['last',
  'night',
  'fianc',
  'left',
  'even',
  'give',
  'friend',
  'son',
  'ride',
  'back',
  'home',
  'impli',
  'shed',
  'home',
  'left',
  'around',
  'roll',
  'around',
  'still',
  'home',
  'text',
  'apolog',
  'say',
  'friend',
  'son',
  'actual',
  'next',
  'town',
  'mayb',
  'minut',
  'away',
  'come',
  'home',
  'roll',
  'around',
  'still',
  'come',
  'home',
  'call',
  'answer',
  'text',
  'respons',
  'get',
  'upset',
  'roll',
  'around',
  'still',
  'respons',
  'answer',
  'phone',
  'call',
  'extrem',
  'angri',
  'roll',
  'around',
  'anger',
  'complet',
  'transform',
  'worri',
  'answer',
  'call',
  'text',
  'read',
  'around',
  'call',
  'polic',
  'alway',
  'heard',
  'first',
  'hour',
  'someon',
  'miss',
  'import',
  'want',
  'delay',
  'ask',
  'let',
  'know',
  'traffic',
  'accid',
  'involv',
  'car',
  'oper',
  'told',
  'would',
  'put',
  'word',
  'send',
  'cop',
  'check',
  'along',
  'rout',
  'would',
  'travel',
  'call',
  'hospit',
  'area',
  'check',
  'check',
  'wait',
  'outsid',
  'watch',
  'road',
  'car',
  'three',
  'hour',
  'partial',
  'want',
  'kid',
  'hear',
  'phone',
  'hospit',
  'secondli',
  'sick',
  'worri',
  'came',
  'home',
  'apolog',
  'said',
  'excus',
  'drive',
  'home',
  'felt',
  'tire',
  'like',
  'fall',
  'asleep',
  'wheel',
  'pull',
  'side',
  'road',
  'sleep',
  'found',
  'brand',
  'new',
  'phone',
  'stop',
  'work',
  'say',
  'nap',
  'anyway',
  'respons',
  'thing',
  'came',
  'home',
  'bring',
  'kid',
  'school',
  'get',
  'work',
  'time',
  'immedi',
  'call',
  'polic',
  'told',
  'come',
  'home',
  'safe',
  'gave',
  'case',
  'number',
  'told',
  'stop',
  'search',
  'fjanc',
  'brought',
  'kid',
  'school',
  'left',
  'work',
  'set',
  'start',
  'clean',
  'clean',
  'destress',
  'sometim',
  'got',
  'call',
  'policeman',
  'ask',
  'work',
  'told',
  'ask',
  'inform',
  'polici',
  'check',
  'person',
  'well',
  'miss',
  'person',
  'found',
  'ask',
  'go',
  'work',
  'give',
  'call',
  'instead',
  'said',
  'promis',
  'fianc',
  'rel',
  'new',
  'job',
  'polic',
  'offic',
  'show',
  'ask',
  'speak',
  'enrag',
  'call',
  'polic',
  'send',
  'cop',
  'work',
  'make',
  'look',
  'bad',
  'say',
  'overreact',
  'miss',
  'punish',
  'respons',
  'thing',
  'drive',
  'drowsi',
  'say',
  'never',
  'go',
  'leav',
  'hous',
  'except',
  'work',
  'afraid',
  'im',
  'go',
  'call',
  'cop',
  'overreact',
  'wait',
  'two',
  'day',
  'like',
  'suggest'],
 ['sil',
  'children',
  'oldest',
  'birthday',
  'last',
  'week',
  'son',
  'went',
  'bought',
  'swing',
  'hammock',
  'chair',
  'want',
  'year',
  'cost',
  'quit',
  'bit',
  'save',
  'money',
  'fulli',
  'intend',
  'put',
  'back',
  'bank',
  'account',
  'continu',
  'save',
  'excit',
  'see',
  'open',
  'gift',
  'wait',
  'help',
  'set',
  'told',
  'lot',
  'money',
  'respons',
  'never',
  'get',
  'anyth',
  'nice',
  'want',
  'true',
  'usual',
  'get',
  'anyth',
  'birthday',
  'christmas',
  'outsid',
  'tupperwar',
  'soap',
  'might',
  'sound',
  'stupid',
  'cherish',
  'swing',
  'ever',
  'sinc',
  'got',
  'especi',
  'final',
  'someth',
  'nice',
  'mine',
  'sil',
  'come',
  'week',
  'see',
  'us',
  'immedi',
  'head',
  'straight',
  'swing',
  'son',
  'hook',
  'deck',
  'told',
  'pleas',
  'sit',
  'said',
  'weight',
  'limit',
  'told',
  'ye',
  'lb',
  'even',
  'show',
  'box',
  'confirm',
  'upset',
  'said',
  'bummer',
  'need',
  'make',
  'someth',
  'capabl',
  'hold',
  'us',
  'big',
  'girl',
  'simpli',
  'agre',
  'went',
  'busi',
  'point',
  'husband',
  'show',
  'work',
  'went',
  'insid',
  'grab',
  'us',
  'drink',
  'husband',
  'talk',
  'porch',
  'even',
  'minut',
  'later',
  'hear',
  'loud',
  'crash',
  'husband',
  'say',
  'fuck',
  'alright',
  'go',
  'sure',
  'enough',
  'sat',
  'swing',
  'crochet',
  'net',
  'around',
  'hook',
  'snap',
  'one',
  'side',
  'caus',
  'fall',
  'right',
  'ass',
  'sit',
  'laugh',
  'get',
  'say',
  'guess',
  'need',
  'learn',
  'listen',
  'lost',
  'said',
  'liter',
  'never',
  'get',
  'anyth',
  'nice',
  'never',
  'one',
  'thing',
  'mine',
  'even',
  'take',
  'someon',
  'freak',
  'week',
  'ruin',
  'said',
  'liter',
  'fuck',
  'told',
  'even',
  'minut',
  'ago',
  'would',
  'hold',
  'pleas',
  'fuck',
  'sit',
  'make',
  'comment',
  'usual',
  'weight',
  'limit',
  'lie',
  'thought',
  'would',
  'hold',
  'said',
  'weight',
  'limit',
  'probabl',
  'would',
  'held',
  'lb',
  'heavier',
  'ish',
  'lb',
  'one',
  'girl',
  'eat',
  'food',
  'camera',
  'money',
  'absolut',
  'love',
  'weight',
  'regardless',
  'instead',
  'apolog',
  'offer',
  'compens',
  'destroy',
  'item',
  'resort',
  'say',
  'im',
  'shit',
  'bag',
  'make',
  'feel',
  'like',
  'weight',
  'problem',
  'husband',
  'side',
  'fuck',
  'swing',
  'aita'],
 ['brother',
  'kevin',
  'singl',
  'dad',
  'yo',
  'kevin',
  'live',
  'citi',
  'famili',
  'rel',
  'friend',
  'kevin',
  'habit',
  'dump',
  'kid',
  'random',
  'time',
  'watch',
  'goe',
  'date',
  'women',
  'far',
  'gone',
  'date',
  'expect',
  'watch',
  'nephew',
  'bother',
  'work',
  'commit',
  'im',
  'nurs',
  'schedul',
  'unpredict',
  'caus',
  'issu',
  'work',
  'drop',
  'kid',
  'hous',
  'without',
  'tell',
  'first',
  'last',
  'week',
  'came',
  'pm',
  'enter',
  'hous',
  'nephew',
  'spare',
  'key',
  'shower',
  'left',
  'hous',
  'immedi',
  'got',
  'shower',
  'shock',
  'see',
  'nephew',
  'stand',
  'alon',
  'ask',
  'dad',
  'said',
  'left',
  'knew',
  'want',
  'watch',
  'nephew',
  'call',
  'sever',
  'time',
  'phone',
  'pick',
  'mad',
  'almost',
  'freak',
  'get',
  'late',
  'shift',
  'sent',
  'text',
  'tell',
  'come',
  'pick',
  'son',
  'right',
  'id',
  'call',
  'cop',
  'child',
  'abandon',
  'text',
  'back',
  'beg',
  'suck',
  'time',
  'import',
  'date',
  'leav',
  'middl',
  'told',
  'seriou',
  'id',
  'gave',
  'minut',
  'get',
  'home',
  'got',
  'home',
  'look',
  'piss',
  'start',
  'yell',
  'ruin',
  'date',
  'make',
  'leav',
  'middl',
  'bother',
  'skip',
  'one',
  'damn',
  'shift',
  'watch',
  'nephew',
  'told',
  'never',
  'agre',
  'watch',
  'son',
  'made',
  'said',
  'emerg',
  'made',
  'laugh',
  'call',
  'date',
  'night',
  'emerg',
  'absurd',
  'long',
  'stori',
  'short',
  'left',
  'nephew',
  'stop',
  'blame',
  'spoil',
  'date',
  'probabl',
  'caus',
  'damag',
  'relationship',
  'potenti',
  'girlfriend',
  'week',
  'still',
  'salti',
  'demand',
  'make',
  'call',
  'date',
  'lie',
  'tell',
  'sob',
  'stori',
  'leav',
  'like',
  'said',
  'aita'],
 ['recent',
  'took',
  'sister',
  'park',
  'close',
  'hous',
  'pretti',
  'excit',
  'go',
  'dad',
  'bought',
  'bicycl',
  'want',
  'tri',
  'arriv',
  'ladi',
  'son',
  'daughter',
  'made',
  'eye',
  'contact',
  'ladi',
  'smile',
  'wave',
  'nice',
  'minut',
  'sister',
  'play',
  'swing',
  'got',
  'scare',
  'want',
  'ride',
  'bicycl',
  'anymor',
  'look',
  'away',
  'second',
  'say',
  'hello',
  'uncl',
  'sinc',
  'live',
  'close',
  'us',
  'pass',
  'turn',
  'head',
  'around',
  'check',
  'sister',
  'saw',
  'cri',
  'ladi',
  'son',
  'use',
  'sister',
  'bike',
  'approach',
  'kid',
  'polit',
  'ask',
  'pleas',
  'leav',
  'bike',
  'alon',
  'use',
  'kid',
  'brought',
  'bike',
  'ignor',
  'continu',
  'play',
  'bike',
  'decid',
  'go',
  'ladi',
  'ask',
  'could',
  'talk',
  'son',
  'respond',
  'kid',
  'fun',
  'use',
  'bike',
  'see',
  'problem',
  'respond',
  'im',
  'awar',
  'use',
  'bike',
  'kid',
  'bike',
  'see',
  'reason',
  'use',
  'start',
  'go',
  'reason',
  'talk',
  'like',
  'go',
  'around',
  'get',
  'girl',
  'pregnant',
  'insinu',
  'sister',
  'daughter',
  'point',
  'piss',
  'want',
  'deal',
  'ladi',
  'angrili',
  'said',
  'ladi',
  'sister',
  'believ',
  'right',
  'talk',
  'consid',
  'im',
  'littl',
  'bitch',
  'im',
  'go',
  'ask',
  'go',
  'tell',
  'littl',
  'rat',
  'get',
  'sister',
  'bike',
  'got',
  'told',
  'kid',
  'get',
  'car',
  'later',
  'got',
  'home',
  'told',
  'mom',
  'think',
  'would',
  'see',
  'funni',
  'stori',
  'boy',
  'wrong',
  'start',
  'go',
  'rude',
  'ladi',
  'need',
  'learn',
  'respect',
  'elder',
  'asshol'],
 ['\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  'updat',
  '[',
  'httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i',
  ']',
  'httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '&',
  'xb',
  '&',
  'xb',
  'even',
  'though',
  'american',
  'parent',
  'immigr',
  'therefor',
  'differ',
  'cultur',
  'upbring',
  'one',
  'thing',
  'hammer',
  'head',
  'young',
  'age',
  'alway',
  '*',
  'alway',
  '*',
  'bring',
  'small',
  'gift',
  'visit',
  'anyon',
  'hous',
  'matter',
  'famili',
  'friend',
  'one',
  'person',
  'kind',
  'know',
  'realli',
  'like',
  'bring',
  'someth',
  'must',
  'bf',
  'date',
  'almost',
  'year',
  'sinc',
  'work',
  'home',
  'suggest',
  'make',
  'dinner',
  'parent',
  'weekli',
  'thing',
  'sinc',
  'abl',
  'see',
  'much',
  'obviou',
  'reason',
  'love',
  'parent',
  'obvious',
  'agre',
  'everi',
  'week',
  'made',
  'sure',
  'bring',
  'someth',
  'small',
  'show',
  'appreci',
  'cook',
  'us',
  'alway',
  'use',
  'money',
  'small',
  'bottl',
  'wine',
  'favorit',
  'dessert',
  'flower',
  'etc',
  'alway',
  'thank',
  'go',
  'month',
  'absolut',
  'notic',
  'anyth',
  'ordinari',
  'yesterday',
  'bf',
  'prepar',
  'head',
  'id',
  'gotten',
  'cute',
  'vase',
  'daffodil',
  'sinc',
  'luckili',
  'id',
  'found',
  'bloom',
  'bf',
  'mom',
  'realli',
  'love',
  'bf',
  'suddenli',
  'got',
  'realli',
  'mad',
  'ask',
  'kept',
  'bring',
  'stuff',
  'everi',
  'week',
  'like',
  'parent',
  'chariti',
  'case',
  'honestli',
  'got',
  'super',
  'confus',
  'ask',
  'problem',
  'ive',
  'alway',
  'done',
  'everyon',
  'includ',
  'friend',
  'sinc',
  'met',
  'cultur',
  'thing',
  'got',
  'even',
  'madder',
  'told',
  'stop',
  'impos',
  'cultur',
  'everyon',
  'weird',
  'sinc',
  'im',
  'white',
  'point',
  'feel',
  'like',
  'go',
  'anywher',
  'gave',
  'flower',
  'went',
  'walk',
  'drove',
  'dinner',
  'came',
  'home',
  'still',
  'flower',
  'gave',
  'told',
  'sorri',
  'parent',
  'realli',
  'super',
  'annoy',
  'constantli',
  'bring',
  'stuff',
  'like',
  'cant',
  'take',
  'care',
  'later',
  'got',
  'text',
  'dad',
  'ask',
  'come',
  'dinner',
  'anymor',
  'bf',
  'give',
  'cold',
  'shoulder',
  'unless',
  'give',
  'parent',
  'huge',
  'apolog',
  'realli',
  'truli',
  'feel',
  'like',
  'im',
  'wrong',
  'tri',
  'nice',
  'aita',
  'quick',
  'edit',
  'realiz',
  'could',
  'edit',
  'post',
  'directli',
  'im',
  'hurri',
  'convinc',
  'let',
  'go',
  'parent',
  'hous',
  'post',
  'brief',
  'updat',
  'faq',
  'recent',
  'comment'],
 ['sister',
  'got',
  'terribl',
  'relationship',
  'move',
  'husband',
  'brought',
  'month',
  'old',
  'son',
  'deal',
  'hand',
  'issu',
  'ppd',
  'depress',
  'ask',
  'husband',
  'hed',
  'okay',
  'move',
  'said',
  'absolut',
  'one',
  'pick',
  'herbrought',
  'home',
  'stay',
  'week',
  'help',
  'around',
  'hous',
  'husband',
  'start',
  'complain',
  'babi',
  'cri',
  'newborn',
  'expect',
  'cri',
  'especi',
  'night',
  'said',
  'caus',
  'stress',
  'although',
  'suggest',
  'put',
  'earbud',
  'suddenli',
  'told',
  'forget',
  'last',
  'week',
  'go',
  'town',
  'attend',
  'friend',
  'funer',
  'without',
  'husband',
  'said',
  'want',
  'stay',
  'sister',
  'make',
  'sure',
  'okay',
  'return',
  'home',
  'next',
  'day',
  'find',
  'babi',
  'home',
  'husband',
  'said',
  'contact',
  'friend',
  'anoth',
  'town',
  'want',
  'move',
  'left',
  'morn',
  'hand',
  'letter',
  'claim',
  'felt',
  'oddespeci',
  'read',
  'letter',
  'call',
  'phone',
  'mani',
  'mani',
  'time',
  'turn',
  'husband',
  'found',
  'said',
  'mustv',
  'left',
  'behind',
  'worri',
  'mean',
  'contact',
  'make',
  'sure',
  'okay',
  'contact',
  'rel',
  'knew',
  'noth',
  'yesterday',
  'got',
  'call',
  'unknown',
  'number',
  'talk',
  'told',
  'leav',
  'husband',
  'kick',
  'tell',
  'longer',
  'welcom',
  'need',
  'take',
  'respons',
  'decis',
  'shock',
  'explain',
  'friend',
  'shelter',
  'money',
  'wait',
  'til',
  'got',
  'home',
  'blew',
  'admit',
  'fake',
  'letter',
  'hid',
  'phone',
  'argu',
  'hous',
  'say',
  'lie',
  'sister',
  'caus',
  'homeless',
  'said',
  'unfair',
  'wrong',
  'lash',
  'want',
  'peac',
  'home',
  'went',
  'upstair',
  'refus',
  'argu',
  'anymor',
  'told',
  'im',
  'go',
  'pick',
  'tomorrow',
  'said',
  'hed',
  'chang',
  'lock',
  'im',
  'gone',
  'allow',
  'bring',
  'home',
  'im',
  'think',
  'go',
  'hotel',
  'kept',
  'say',
  'im',
  'let',
  'sister',
  'affect',
  'live',
  'priorit',
  'babi',
  'involv',
  'nephew',
  'cant',
  'leav',
  'homeless',
  'get',
  'hous',
  'see',
  'stay',
  'edit-',
  'return',
  'home',
  'start',
  'argu',
  'take',
  'anymor',
  'im',
  'go',
  'stay',
  'hotel',
  'tonight',
  'im',
  'leav',
  'hour',
  'want',
  'talk',
  'im',
  'incred',
  'overwhelm',
  'stress',
  'need',
  'time',
  'care',
  'go',
  'chang',
  'lock',
  'im',
  'work',
  'meet',
  'sister',
  'soon',
  'possibl',
  'talk',
  'openli',
  'happen',
  'hope',
  'tri',
  'figur',
  'someth'],
 ['week',
  'sinc',
  '[',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open',
  'thank',
  'guy',
  'judgment',
  'advic',
  'block',
  'parent',
  'everyth',
  'gone',
  'contact',
  'week',
  'alreadi',
  'feel',
  'like',
  'new',
  'person',
  'without',
  'live',
  'boyfriend',
  'rock',
  'mess',
  'tear',
  'anger',
  'first',
  'day',
  'one',
  'got',
  'im',
  'current',
  'stay',
  'rent',
  'look',
  'place',
  'togeth',
  'sinc',
  'leas',
  'current',
  'place',
  'run',
  'soon',
  'went',
  'gp',
  'got',
  'mental',
  'health',
  'plan',
  'done',
  'see',
  'therapist',
  'soon',
  'free',
  'charg',
  'huge',
  'updat',
  'im',
  'lot',
  'better',
  'littl',
  'time',
  'cut',
  'life',
  'im',
  'look',
  'forward',
  'futur'],
 ['throw',
  'away',
  'account',
  'although',
  'sister',
  'law',
  'probabl',
  'recogn',
  'stori',
  'anyway',
  'know',
  'even',
  'bother',
  'think',
  'ah',
  'move',
  'mayb',
  'time',
  'bit',
  'think',
  'im',
  'ah',
  'full',
  'stop',
  'sister',
  'law',
  'got',
  'marri',
  'last',
  'weekend',
  'long',
  'term',
  'boyfriend',
  'sister',
  'theyr',
  'white',
  'im',
  'middl',
  'eastern',
  'dark',
  'one',
  'raven',
  'black',
  'hair',
  'look',
  'photograph',
  'bankrupt',
  'suggest',
  'friend',
  'mine',
  'new',
  'busi',
  'charg',
  'less',
  'half',
  'thing',
  'cost',
  '€',
  'day',
  'excit',
  'set',
  'group',
  'chat',
  'photograph',
  'friend',
  'talk',
  'littl',
  'later',
  'met',
  'start',
  'messag',
  'directli',
  'wed',
  'amaz',
  'everyth',
  'went',
  'smoothli',
  'one',
  'guest',
  'seem',
  'happi',
  'next',
  'day',
  'went',
  'honeymoon',
  'know',
  'mistak',
  'instead',
  'text',
  'photograph',
  'directli',
  'like',
  'done',
  'past',
  'month',
  'text',
  'old',
  'imessag',
  'chat',
  'thank',
  'favor',
  'ask',
  'wonder',
  'wether',
  'could',
  'retouch',
  'asymmetri',
  'flower',
  'archway',
  'im',
  'sorri',
  'know',
  'right',
  'term',
  'english',
  'also',
  'could',
  'take',
  'photo',
  'im',
  'dark',
  'ruin',
  'color',
  'palett',
  'pictur',
  'one',
  'text',
  'back',
  'kid',
  'answer',
  'took',
  'screenshot',
  'post',
  'insta',
  'stori',
  'tag',
  'call',
  'bf',
  'cri',
  'eye',
  'call',
  'ah',
  'embarrass',
  'ruin',
  'honeymoon',
  'bf',
  'thought',
  'low',
  'blow',
  'blind',
  'rage',
  'even',
  'im',
  'calm',
  'still',
  'feel',
  'ah',
  'peopl',
  'contact',
  'appar',
  'ask',
  'realli',
  'wrote',
  'beauti',
  'success',
  'pleas',
  'blame',
  'jealousi',
  'scare',
  'outshin',
  '*',
  '*',
  'edit',
  'littl',
  'updat',
  '*',
  '*',
  '[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowwaawaycommentswiaupdateutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'sister',
  'law',
  'still',
  'honeymoon',
  'talk',
  'yet',
  'bombard',
  'bf',
  'demand',
  'apolog',
  'make',
  'new',
  'insta',
  'stori',
  'apolog',
  'peopl',
  'got',
  'involv',
  'includ',
  'bf',
  'mother',
  'thought',
  'way',
  'line',
  'ruin',
  'daughter',
  'wed',
  'also',
  'got',
  'contact',
  'sister',
  'law',
  'friend',
  'told',
  'stori',
  'talk',
  'behind',
  'back',
  'yeah',
  'got',
  'deserv',
  'amount',
  'friend',
  'surpris',
  'text',
  'made',
  'clear',
  'wrong',
  'sister',
  'law',
  'self',
  'employ',
  'foreign',
  'custom',
  'take',
  'hard',
  'scare',
  'would',
  'affect',
  'career',
  'feel',
  'like',
  'need',
  'save',
  'career',
  'someth',
  'bad',
  'happen',
  'photograph',
  'friend',
  'told',
  'right',
  'way',
  'imo',
  'profession',
  'confus',
  'work',
  'valu',
  'ask',
  'want',
  'say',
  'someth',
  'said',
  'also',
  'ask',
  'tell',
  'theyr',
  'text',
  'sinc',
  'client',
  'break',
  'confidenti',
  'start',
  'career',
  'meet',
  'wors',
  'bride',
  'least',
  'nice',
  'throughout',
  'interact',
  'bf',
  'said',
  'thought',
  'whole',
  'thing',
  'uncomfort',
  'told',
  'want',
  'need',
  'discuss',
  'uncomfort',
  'topic',
  'open',
  'actual',
  'deeper',
  'happen',
  'uncl',
  'rich',
  'th',
  'birthday',
  'big',
  'parti',
  'thank',
  'receiv',
  'thank',
  'card',
  'pictur',
  'profession',
  'taken',
  'rememb',
  'pictur',
  'uncl',
  'red',
  'carpet',
  'moment',
  'guest',
  'photograph',
  'upon',
  'arriv',
  'later',
  'went',
  'bf',
  'mother',
  'see',
  'rest',
  'photo',
  'thought',
  'funni',
  'liter',
  'evad',
  'caught',
  'camera',
  'never',
  'mention',
  'even',
  'reflect',
  'bf',
  'famili',
  'look',
  'pictur',
  'discuss',
  'even',
  'normal',
  'one',
  'mention',
  'someth',
  'ordinari',
  'today',
  'told',
  'photoshop',
  'pictur',
  'everyon',
  'famili',
  'knew',
  'time',
  'thought',
  'uncl',
  'could',
  'choos',
  'whoever',
  'want',
  'pictur',
  'move',
  '-but',
  'kept',
  '-ye',
  '-so',
  'mustv',
  'thought',
  'hurt',
  '-',
  'ask',
  'famili',
  'tell',
  '-and',
  'continu',
  'go',
  'uncl',
  'celebr',
  'christmas',
  'easter',
  'vacat',
  'silenc',
  '-you',
  'feel',
  'offend',
  'behalf',
  'silenc',
  '-and',
  'think',
  'okay',
  'sister',
  '-',
  'think',
  'way',
  'know',
  'sister',
  'nit',
  'racist',
  '-if',
  'racist',
  'feel',
  'embarrass',
  'silenc',
  '-you',
  'think',
  'alright',
  '-of',
  'cours',
  '-will',
  'stand',
  'watch',
  'happen',
  'children',
  '-of',
  'cours',
  'know',
  'bf',
  'well',
  'kind',
  'never',
  'felt',
  'racist',
  'anyway',
  'know',
  'stupid',
  'awar',
  'thing',
  'make',
  'wors',
  'mean',
  'care',
  'enough',
  'ask',
  'care',
  'enough',
  'said',
  'sorri',
  'know',
  'strong',
  'girl',
  'never',
  'let',
  'petti',
  'thing',
  'affect',
  'right',
  'normal',
  'ignor',
  '%',
  'racism',
  'micro',
  'aggress',
  'face',
  'life',
  'even',
  'laugh',
  'ignor',
  'even',
  'discuss',
  'strong',
  'mean',
  'peopl',
  'entitl',
  'tri',
  'hurt',
  'usual',
  'let',
  'mean',
  'appreci',
  'feel',
  'support',
  'bf',
  'back',
  'strong',
  'women',
  'deserv',
  'support',
  'love',
  'one',
  'feel',
  'safe',
  'love',
  'answer',
  'told',
  'never',
  'want',
  'sister',
  'life',
  'uncl',
  'probabl',
  'mother',
  'either',
  'still',
  'want',
  'apolog',
  'want',
  'surround',
  'peopl',
  'like',
  'especi',
  'children',
  'ask',
  'live',
  'like',
  'ask',
  'answer',
  'think',
  'kinda',
  'felt',
  'like',
  'ultimatum',
  'bad',
  'know',
  'handl',
  'situat',
  'better',
  'never',
  'thought',
  'someon',
  'petti',
  'make',
  'ultimatum',
  'experi',
  'taught',
  'im',
  'both🤷🏽\u200d♀️',
  'thank',
  'nta',
  'judgment',
  '<'],
 ['move',
  'sister',
  'parent',
  'kick',
  'come',
  'anoth',
  'stori',
  'said',
  'ill',
  'temporarili',
  'til',
  'get',
  'back',
  'normal',
  'think',
  'lol',
  'uhanyway',
  'move',
  'sister',
  'husband',
  'month',
  'ago',
  'fyi',
  'everyth',
  'around',
  'hous',
  'start',
  'help',
  'well',
  'look',
  'year',
  'old',
  'niec',
  'month',
  'pregnant',
  'bil',
  'noth',
  'breadwinn',
  'claim',
  'imo',
  'taken',
  'bit',
  'far',
  'eg',
  'hed',
  'tell',
  'start',
  'laundri',
  'take',
  'cloth',
  'put',
  'dinner',
  'tabl',
  'home',
  'get',
  'shower',
  'readi',
  'fight',
  'lot',
  'caus',
  'sister',
  'exhaust',
  'burnt',
  'usual',
  'put',
  'headphon',
  'mind',
  'busi',
  'night',
  'ago',
  'lot',
  'commot',
  'heart',
  'home',
  'went',
  'see',
  'issu',
  'turn',
  'bil',
  'complain',
  'dinner',
  'sister',
  'exhaust',
  'get',
  'mean',
  'dinner',
  'alreadi',
  'cook',
  'want',
  'put',
  'tabl',
  'told',
  'sister',
  'id',
  'instead',
  'use',
  'kitchen',
  'utensil',
  'use',
  'niec',
  'toy',
  'utensil',
  'like',
  'toy',
  'cup',
  'toy',
  'plate',
  'toy',
  'fork',
  'knife',
  'tini',
  'napkin',
  'put',
  'food',
  'toy',
  'plate',
  'drink',
  'toy',
  'cup',
  'bil',
  'shower',
  'came',
  'kitchen',
  'sat',
  'stare',
  'plate',
  'second',
  'look',
  'ask',
  'hell',
  'whether',
  'joke',
  'told',
  'want',
  'act',
  'like',
  'helpless',
  'child',
  'might',
  'well',
  'get',
  'treat',
  'like',
  'one',
  'began',
  'yell',
  'sister',
  'came',
  'insid',
  'threw',
  'napkin',
  'storm',
  'upon',
  'say',
  'id',
  'disrespect',
  'hell',
  'let',
  'parent',
  'know',
  'sister',
  'saw',
  'id',
  'done',
  'start',
  'laugh',
  'went',
  'insid',
  'room',
  'argument',
  'stop',
  'expect',
  'apolog',
  'meddl',
  'marriag',
  'pull',
  'crappi',
  'stunt',
  'could',
  'ta',
  'mad',
  'sister',
  'also',
  'sick',
  'tire',
  'sick',
  'tire',
  'nightli',
  'fight',
  'dinner'],
 ['kid',
  'fuck',
  'hate',
  'everyon',
  'think',
  'mommi',
  'get',
  'person',
  'im',
  'mommi',
  'husband',
  'face',
  'get',
  'gift',
  'everyon',
  'hobbi',
  'get',
  'bunch',
  'mommi',
  'shit',
  'tee',
  'hee',
  'mommi',
  'need',
  'wine',
  'like',
  'match',
  'outfit',
  'mean',
  'like',
  'one',
  'cutesi',
  'match',
  'pajama',
  'set',
  'nurs',
  'hors',
  'girl',
  'wear',
  'stage',
  'christma',
  'insta',
  'pic',
  'mean',
  'like',
  'peopl',
  'actual',
  'think',
  'im',
  'go',
  'go',
  'public',
  'wear',
  'cutesi',
  'match',
  'outfit',
  'toddler',
  'though',
  'think',
  'theyr',
  'mini',
  'version',
  'doll',
  'time',
  'got',
  'in-law',
  'mama',
  'mama',
  'point',
  'sil',
  'said',
  'said',
  'know',
  'name',
  'carmen',
  'right',
  'look',
  'funni',
  'said',
  'cours',
  'silli',
  'said',
  'keep',
  'call',
  'mama',
  'go',
  'around',
  'call',
  'husband',
  'papa',
  'sil',
  'look',
  'like',
  'head',
  'like',
  'um',
  'okay',
  'went',
  'christma',
  'go',
  'mama',
  'want',
  'anoth',
  'slice',
  'mama',
  'point',
  'like',
  'guy',
  'mind',
  'call',
  'name',
  'instead',
  'call',
  'mama',
  'sil',
  'whole',
  'golly-ge',
  'eye',
  'thing',
  'said',
  'good',
  'mama',
  'said',
  'im',
  'mom',
  'gestur',
  'thing',
  'husband',
  'got',
  'christma',
  'said',
  'guy',
  'get',
  'anyth',
  'say',
  'papa',
  'everyth',
  'gave',
  'somehow',
  'relat',
  'mom',
  'get',
  'person',
  'mil',
  'grab',
  'hand',
  'squeez',
  'said',
  'sorri',
  'made',
  'feel',
  'like',
  'excit',
  'grandma',
  'never',
  'realli',
  'thought',
  'thing',
  'like',
  'feel',
  'littl',
  'better',
  'sil',
  'sil',
  'start',
  'go',
  'one',
  'whole',
  'okay',
  'need',
  'talk',
  'someon',
  'sound',
  'angri',
  'healthi',
  'faux',
  'concern',
  'thing',
  'meant',
  'shame',
  'emot',
  'respons',
  'one',
  'angri',
  'say',
  'mom',
  'somehow',
  'beneath',
  'think',
  'better',
  'rest',
  'us',
  'final',
  'left',
  'ask',
  'id',
  'kept',
  'long',
  'said',
  'one',
  'listen',
  'ive',
  'said',
  'thing',
  'plenti',
  'time',
  'ive',
  'alway',
  'ask',
  'call',
  'name',
  'disgust',
  'nicknam',
  'boil',
  'give',
  'birth',
  'nod',
  'said',
  'id',
  'put',
  'big',
  'pallor',
  'weekend',
  'need',
  'apolog',
  'outburst',
  'point',
  'said',
  'sure',
  'soon',
  'sil',
  'apolog',
  'dehuman',
  'year',
  'stalem',
  'aita'],
 ['son',
  'adam',
  'previou',
  'marriag',
  'im',
  'current',
  'husband',
  'yr',
  'handl',
  'everyth',
  'relat',
  'adam',
  'school',
  'friend',
  'dean',
  'start',
  'hang',
  'year',
  'ago',
  'dean',
  'amaz',
  'boy',
  'noth',
  'great',
  'influenc',
  'adam',
  'met',
  'dean',
  'dad',
  'mike',
  'singl',
  'dad',
  'wed',
  'see',
  'daili',
  'school',
  'pickupdrop',
  'husband',
  'kept',
  'ask',
  'mike',
  'point',
  'boundari',
  'stomp',
  'disagre',
  'unfortun',
  'adam',
  'fell',
  'sick',
  'month',
  'ago',
  'undergo',
  'surgeri',
  'recent',
  'hard',
  'dean',
  'kept',
  'visit',
  'sometim',
  'mike',
  'would',
  'come',
  'husband',
  'would',
  'either',
  'ignor',
  'mike',
  'make',
  'passiv',
  'comment',
  'toward',
  'mike',
  'pick',
  'told',
  'husband',
  'knock',
  'caus',
  'hostil',
  'affect',
  'adam',
  'dean',
  'well',
  'day',
  'ago',
  'found',
  'adam',
  'cri',
  'room',
  'week',
  'get',
  'discharg',
  'ask',
  'said',
  'dean',
  'sent',
  'text',
  'tell',
  'longer',
  'friend',
  'block',
  'number',
  'confus',
  'fine',
  'want',
  'go',
  'talk',
  'dean',
  'next',
  'day',
  'found',
  'phone',
  'husband',
  'car',
  'confront',
  'said',
  'borrow',
  'dean',
  'buy',
  'push',
  'confess',
  'stole',
  'dean',
  'phone',
  'hospit',
  'sent',
  'adam',
  'text',
  'tell',
  'contact',
  'ask',
  'said',
  'mike',
  'fault',
  'close',
  'act',
  'inappropri',
  'said',
  'want',
  'directli',
  'tell',
  'adam',
  'longer',
  'speak',
  'dean',
  'chose',
  'stratagi',
  'make',
  'adam',
  'hate',
  'keep',
  'dean',
  'extent',
  'mike',
  'away',
  'hit',
  'nerv',
  'hard',
  'start',
  'scream',
  'said',
  'alreadi',
  'express',
  'uncomfert',
  'felt',
  'mike',
  'around',
  'kept',
  'brush',
  'said',
  'ridicul',
  'argument',
  'mike',
  'noth',
  'respect',
  'help',
  'yell',
  'call',
  'insecur',
  'unreason',
  'also',
  'cruel',
  'caus',
  'adam',
  'heartach',
  'stunt',
  'beg',
  'tell',
  'adam',
  'took',
  'phone',
  'return',
  'dean',
  'exlain',
  'adam',
  'happen',
  'adam',
  'longer',
  'speak',
  'husband',
  'blame',
  'tell',
  'instead',
  'keep',
  'adult',
  'like',
  'im',
  'suppos'],
 ['situat',
  'bit',
  'messi',
  'bear',
  'two',
  'boy',
  'adam',
  '&',
  'leo',
  'mom',
  'pass',
  'away',
  'year',
  'ago',
  'marri',
  'wife',
  'rose',
  'year',
  'ago',
  'rose',
  'ador',
  'boy',
  'complain',
  'leo',
  'overli',
  'uptight',
  'close',
  'true',
  'like',
  'keep',
  'particip',
  'famili',
  'function',
  'wife',
  'taken',
  'person',
  'kept',
  'say',
  'leo',
  'clearli',
  'like',
  'andor',
  'like',
  'spend',
  'time',
  'start',
  'tri',
  'exclud',
  'event',
  'excus',
  'interest',
  'anyway',
  'thought',
  'wrong',
  'pick',
  'start',
  'ask',
  'told',
  'wife',
  'herpart',
  'give',
  'choic',
  'decid',
  'whether',
  'want',
  'particip',
  'outright',
  'exclud',
  'id',
  'arrang',
  'famili',
  'trip',
  'day',
  'ago',
  'book',
  'ticketshotel',
  'reserv',
  'upon',
  'decid',
  'destin',
  'note',
  'pay',
  'entir',
  'thing',
  'day',
  'trip',
  'found',
  'leo',
  'ticket',
  'cancel',
  'dumbfound',
  'discov',
  'wife',
  'cancel',
  'immedi',
  'confront',
  'said',
  'figur',
  'leo',
  'want',
  'come',
  'knew',
  'said',
  'hed',
  'go',
  'tri',
  'argu',
  'due',
  'moodi',
  'person',
  'introvert',
  'natur',
  'hed',
  'chang',
  'mind',
  'last',
  'minut',
  'go',
  'thd',
  'trip',
  'turn',
  'miser',
  'experi',
  'us',
  'got',
  'mad',
  'especi',
  'tri',
  'pressur',
  'leav',
  'aunt',
  'cancel',
  'entir',
  'trip',
  'ticket',
  'reserv',
  'everyth',
  'blew',
  'start',
  'lash',
  'boy',
  'unpack',
  'made',
  'go',
  'crazi',
  'yell',
  'everyon',
  'hous',
  'went',
  'stay',
  'sister',
  'expos',
  'rest',
  'famili',
  'thought',
  'made',
  'big',
  'deal',
  'cancel',
  'trip',
  'promis',
  'famili',
  'edit',
  'format',
  'mistak',
  'im',
  'sorri',
  'edit',
  'plan',
  'anoth',
  'trip',
  'boy',
  'without',
  'wife',
  'right',
  'huge',
  'conflict',
  'famili',
  'even',
  'adam',
  'upset',
  'blame',
  'leo',
  'happen',
  'im',
  'tri',
  'get',
  'everyon',
  'calm',
  'well',
  'see',
  'goe',
  'edit',
  'ive',
  'decid',
  'follow',
  'opinion',
  'speak',
  'adam',
  'see',
  'exactli',
  'blame',
  'leo',
  'happen',
  'got',
  'home',
  'im',
  'get',
  'seper',
  'room',
  'privat',
  'talk',
  'abl',
  'hear',
  'side',
  'find',
  'feel',
  'way',
  'relev',
  'inform',
  'add',
  'edit',
  'spoke',
  'adam',
  'turn',
  'rose',
  'told',
  'cancel',
  'trip',
  'leo',
  'chang',
  'mind',
  'last',
  'minut',
  'decid',
  'cancel',
  'everyon',
  'els',
  'fought',
  'tri',
  'convinc',
  'go',
  'anyway',
  'let',
  'leo',
  'go',
  'stay',
  'aunt',
  'justi',
  'know',
  'say',
  'frankli',
  'honest',
  'adam',
  'even',
  'want',
  'talk',
  'told',
  'need',
  'talk',
  'leo',
  'speak',
  'right',
  'im',
  'struggl',
  'tri',
  'clean',
  'mess',
  'actual',
  'think',
  'call',
  'rose',
  'ive',
  'decid',
  'need',
  'space',
  'boy',
  'sit',
  'togeth',
  'hard',
  'ill',
  'tri',
  'talk',
  'put',
  'focu',
  'major',
  'issu',
  'rose'],
 ['firstonli',
  'post',
  'mainli',
  'lurk',
  'thought',
  'stuff',
  'like',
  'happen',
  'movi',
  'happen',
  'would',
  'like',
  'unbias',
  'opinion',
  'light-heart',
  'post',
  'cousin',
  'kat',
  'got',
  'marri',
  'henri',
  'earli',
  'year',
  'close',
  'kid',
  '-',
  'pretti',
  'spoilt',
  'would',
  'alway',
  'brag',
  'much',
  'design',
  'stuff',
  'realli',
  'mean',
  'peopl',
  'guis',
  'tri',
  'help',
  'etc',
  'go',
  'way',
  'interact',
  'one',
  'anoth',
  'see',
  'famili',
  'event',
  'whatnot',
  'make',
  'small',
  'talk',
  'im',
  'engag',
  'chri',
  'softwar',
  'engin',
  'co-head',
  'depart',
  'work',
  'two',
  'peopl',
  '-',
  'long',
  'ago',
  'chri',
  'tell',
  'new',
  'employe',
  'one',
  'sound',
  'realli',
  'familiar',
  'told',
  'name',
  'realiz',
  'kat',
  'husband',
  'also',
  'henri',
  'met',
  'face-to-fac',
  'yet',
  'kat',
  'henri',
  'huge',
  'wed',
  'realli',
  'nice',
  'month',
  'brag',
  'amaz',
  'wed',
  'wed',
  'stuff',
  'die',
  'recent',
  'start',
  'go',
  'wealthi',
  'husband',
  'great',
  'lifestyl',
  'one',
  'aunt',
  'celebr',
  'th',
  'week',
  'ago',
  'went',
  'chri',
  'kat',
  'henri',
  'chat',
  'kat',
  'say',
  'henri',
  'fantast',
  'new',
  'job',
  'pay',
  'even',
  'previou',
  'one',
  'henri',
  'chime',
  'said',
  'alreadi',
  'plan',
  'buy',
  'new',
  'hous',
  'kat',
  'ask',
  'chri',
  'said',
  'engin',
  'like',
  'henri',
  'good',
  'job',
  'ill',
  'admit',
  'left',
  'work',
  'purpos',
  'smile',
  'nod',
  'said',
  'fine',
  'understand',
  'im',
  'embarrass',
  'want',
  'keep',
  'quiet',
  'pretti',
  'much',
  'end',
  'convers',
  '-',
  'leav',
  'pull',
  'asid',
  'told',
  'let',
  'henri',
  'know',
  'need',
  'help',
  'wed',
  'obvious',
  'knew',
  'meant',
  'anoth',
  'dig',
  'said',
  'bye',
  'left',
  'liter',
  'two',
  'day',
  'later',
  'get',
  'dm',
  'kat',
  'furiou',
  'well',
  'much',
  'one',
  'text',
  'tell',
  'chri',
  'one',
  'henri',
  'boss',
  'henri',
  'shock',
  'see',
  'offic',
  'chri',
  'made',
  'comment',
  'tell',
  'kat',
  '-op-',
  'need',
  'help',
  'thank',
  'offer',
  'henri',
  'realli',
  'embarrass',
  'kat',
  'said',
  'made',
  'look',
  'bad',
  'purpos',
  'knew',
  'shed',
  'never',
  'made',
  'comment',
  'duti',
  'tell',
  'henri',
  'chri',
  'realli',
  'good',
  'laugh',
  'sent',
  'text',
  'famili',
  'group',
  'chat',
  'say',
  'blindsid',
  'said',
  'petti',
  'wrong',
  'aita'],
 ['bf',
  'go',
  'climb',
  'gym',
  'regularli',
  'realli',
  'start',
  'climb',
  'time',
  'week',
  'stupidli',
  'competit',
  'quietli',
  'insult',
  'beginn',
  'good',
  'make',
  'feel',
  'self',
  'consciou',
  'im',
  'beginn',
  'last',
  'night',
  'climb',
  'gym',
  'peopl',
  'take',
  'turn',
  'problem',
  'probabl',
  'newli',
  'instal',
  'rout',
  'fail',
  'girl',
  'came',
  'flash',
  'made',
  'easi',
  'end',
  'hold',
  'final',
  'hold',
  'second',
  'bf',
  'call',
  'done',
  'hold',
  'last',
  'hold',
  'second',
  'suppos',
  'right',
  'way',
  'finish',
  'rout',
  'easili',
  'definit',
  'could',
  'think',
  'salti',
  'laugh',
  'told',
  'even',
  'start',
  'problem',
  'correctli',
  'walk',
  'gave',
  'high',
  'five',
  'walk',
  'toward',
  'amaz',
  'problem',
  'knock',
  'bf',
  'high',
  'hors',
  'surpris',
  'high',
  'five',
  'bf',
  'turn',
  'gave',
  'wtf',
  'look',
  'talk',
  'rest',
  'night',
  'head',
  'home',
  'rant',
  'trust',
  'watch',
  'back',
  'chose',
  'take',
  'stranger',
  'side',
  'shock',
  'took',
  'climb',
  'told',
  'nitpick',
  'clearli',
  'climb',
  'correctli',
  'got',
  'mad',
  'argu',
  'suppos',
  'take',
  'side',
  'peopl',
  'even',
  'know'],
 ['past',
  'month',
  'husband',
  'wake',
  'everi',
  'night',
  'walk',
  'walk',
  'would',
  'take',
  'hour',
  'side',
  'note',
  'mention',
  'new',
  'tri',
  'lose',
  'weight',
  'pretti',
  'thin',
  'athlet',
  'natur',
  'sport',
  'interest',
  'hobbi',
  'infact',
  'hate',
  'type',
  'sport',
  'im',
  'happi',
  'sinc',
  'overal',
  'posit',
  'thing',
  'yesterday',
  'came',
  'home',
  'even',
  'work',
  'long',
  'hour',
  'stay',
  'late',
  'play',
  'phone',
  'went',
  'bed',
  'get',
  'done',
  'mess',
  'everyth',
  'woke',
  'yell',
  'ask',
  'wake',
  'walk',
  'said',
  'miss',
  'im',
  'respons',
  'confus',
  'said',
  'first',
  'alway',
  'wake',
  'set',
  'alarm',
  'expect',
  'wake',
  'time',
  'yell',
  'forgot',
  'set',
  'alarm',
  'said',
  'big',
  'deal',
  'likeh',
  'miss',
  'import',
  'mean',
  'someth',
  'got',
  'angri',
  'said',
  'walk',
  'help',
  'imrov',
  'health',
  'restor',
  'energi',
  'help',
  'feel',
  'better',
  'made',
  'comment',
  'miss',
  'one',
  'walk',
  'hurt',
  'unload',
  'yell',
  'tri',
  'prevent',
  'hobbi',
  'unknown',
  'reason',
  'told',
  'sore',
  'mistaken',
  'even',
  'though',
  'admit',
  'daili',
  'walk',
  'around',
  'veteran',
  'park',
  'weird',
  'also',
  'reaction',
  'realli',
  'thought',
  'top',
  'storm',
  'went',
  'shower',
  'say',
  'ruin',
  'entir',
  'day',
  'got',
  'start',
  'avoid',
  'ignor',
  'even',
  'talk',
  'directli',
  'went',
  'work',
  'refus',
  'respond',
  'call',
  'realli',
  'im',
  'loss',
  'like',
  'mayb',
  'someth',
  'said',
  'walk',
  'realli',
  'know',
  'sulk',
  'nonstop',
  'im',
  'liter',
  'lose',
  'mind',
  'aita'],
 ['parent',
  'late',
  'everyth',
  'like',
  'everyth',
  'sister',
  'disappoint',
  'mani',
  'time',
  'graduat',
  'ceremoni',
  'birthday',
  'parti',
  'even',
  'father',
  'retir',
  'dinner',
  'complet',
  'mother',
  'fault',
  'wonder',
  'mother',
  'love',
  'dearli',
  'understand',
  'concept',
  'punctual',
  'seen',
  'talk',
  'sister',
  'phone',
  'remind',
  'need',
  'babi',
  'sister',
  'danc',
  'recit',
  'wave',
  'arriv',
  'sister',
  'danc',
  'use',
  'dad',
  'done',
  'tri',
  'get',
  'time',
  'anyth',
  'wife',
  'told',
  'uncertain',
  'term',
  'mother',
  'late',
  'wed',
  'would',
  'terribl',
  'thing',
  'half',
  'joke',
  'wit',
  'mom',
  'dad',
  'arriv',
  'halfway',
  'cousin',
  'quinceañera',
  'complet',
  'wife',
  'involv',
  'dick',
  'move',
  'complet',
  'mine',
  'get',
  'sampl',
  'wed',
  'talk',
  'printer',
  'one',
  'special',
  'invit',
  'print',
  'time',
  'state',
  'one',
  'hour',
  'earlier',
  'actual',
  'start',
  'time',
  'ceremoni',
  'mother',
  'besid',
  'appar',
  'left',
  'hous',
  'thought',
  'go',
  'miss',
  'wed',
  'sinc',
  'part',
  'mil',
  'light',
  'candl',
  'would',
  'use',
  'light',
  'uniti',
  'candl',
  'stuff',
  'arriv',
  'notic',
  'peopl',
  'also',
  'arriv',
  'park',
  'reliev',
  'start',
  'late',
  'went',
  'ceremoni',
  'went',
  'beauti',
  'wed',
  'pictur',
  'recept',
  'problem',
  'came',
  'last',
  'sunday',
  'parent',
  'came',
  'big',
  'famili',
  'dinner',
  'bother',
  'start',
  'grill',
  'show',
  'ask',
  'everyon',
  'eat',
  'said',
  'knew',
  'would',
  'wait',
  'sinc',
  'alway',
  'late',
  'said',
  'alway',
  'late',
  'time',
  'wed',
  'arriv',
  'minut',
  'time',
  'invit',
  'idiot',
  'cousin',
  'john',
  'real',
  'name',
  'common',
  'deserv',
  'peopl',
  'know',
  'dolt',
  'snort',
  'statement',
  'peopl',
  'giggl',
  'smile',
  'pick',
  'ask',
  'funni',
  'came',
  'clean',
  'told',
  'special',
  'invit',
  'piss',
  'trust',
  'make',
  'look',
  'foolish',
  'front',
  'everyon',
  'cousin',
  'control',
  'never',
  'would',
  'known',
  'aita',
  'edit',
  'part',
  'reason',
  'mad',
  'invit',
  'frame',
  'honest',
  'alreadi',
  'plan',
  'heist',
  'sister',
  'replac',
  'real',
  'one',
  'case',
  'ever',
  'notic',
  'discrep',
  'one',
  'frame',
  'home',
  'edit',
  'number',
  'two',
  'yeah',
  'latino',
  'way',
  'consid',
  'racist',
  'mani',
  'guess',
  'spain',
  'issu',
  'philippin',
  'basic',
  'anywher',
  'guy',
  'charg',
  'edit',
  'three',
  'stop',
  'defend',
  'john',
  'spent',
  'thirti',
  'year',
  'mess',
  'aita',
  'stori',
  'end',
  'get',
  'offens',
  'tattoo',
  '$',
  'remov',
  'get',
  'bodi',
  'caviti',
  'search',
  'mexican',
  'border',
  'would',
  'post',
  'happen',
  'like',
  'ten',
  'year',
  'ago'],
 ['husband',
  'got',
  'marri',
  'last',
  'week',
  'super',
  'chill',
  'throughout',
  'whole',
  'wed',
  'plan',
  'actual',
  'event',
  'know',
  'sh\\',
  '*',
  'happen',
  'anyth',
  'goe',
  'wrong',
  'exactli',
  'want',
  'big',
  'deal',
  'may',
  'even',
  'make',
  'wed',
  'memor',
  'guest',
  'one',
  'thing',
  'told',
  'husband',
  'want',
  'happen',
  'want',
  'smash',
  'cake',
  'face',
  'suspicion',
  'would',
  'find',
  'funni',
  'plan',
  'flat',
  'told',
  'think',
  'funni',
  'want',
  'mess',
  'makeup',
  'took',
  'hour',
  'appli',
  'want',
  'cake',
  'expens',
  'wed',
  'dress',
  'told',
  'would',
  'livid',
  'promis',
  'well',
  'come',
  'cake',
  'cut',
  'time',
  'smash',
  'cake',
  'face',
  'got',
  'dress',
  'mess',
  'makeup',
  'like',
  'knew',
  'would',
  'im',
  'pretti',
  'sure',
  'friend',
  'convinc',
  'make',
  'better',
  'kept',
  'togeth',
  'went',
  'clean',
  'put',
  'smile',
  'rest',
  'recept',
  'afterward',
  'let',
  'loos',
  'yell',
  'one',
  'thing',
  'ask',
  'promis',
  'told',
  'dramat',
  'big',
  'deal',
  'enjoy',
  'time',
  'newlyw',
  'overli',
  'dramat',
  'aita'],
 ['im',
  'year',
  'old',
  'girl',
  'colleg',
  'atm',
  'ive',
  'get',
  'bulliedharass',
  'three',
  'guy',
  'class',
  'taken',
  'messag',
  'onlin',
  'rather',
  'grossharass',
  'messag',
  'nsfw',
  'pictur',
  'im',
  'sure',
  'fill',
  'gap',
  'without',
  'go',
  'detail',
  'report',
  'block',
  'enough',
  'screenshot',
  'everi',
  'messag',
  'theyd',
  'sent',
  'found',
  'mother',
  'facebook',
  'page',
  'sent',
  'screenshot',
  'includ',
  'explan',
  'son',
  'bother',
  'mother',
  'horrifi',
  'shock',
  'sent',
  'explain',
  'go',
  'three',
  'side',
  'friend',
  'think',
  'geniu',
  'exactli',
  'deserv',
  'friend',
  'think',
  'took',
  'far',
  'line',
  'put',
  'mother',
  'also',
  'know',
  'home',
  'life',
  'like',
  'asshol',
  'gone',
  'anoth',
  'way',
  'edit',
  'due',
  'questionscom',
  'standard',
  'bulli',
  'report',
  'got',
  'warn',
  'messagespictur',
  'start',
  'prove',
  'anyth',
  'figur',
  'report',
  'work',
  'edit',
  'also',
  'whoever',
  'report',
  'worri',
  'current',
  'mental',
  'healththank',
  'mean',
  'im',
  'honestli',
  'good',
  'thank'],
 ['father',
  'dick',
  'got',
  'mother',
  'pregnant',
  'want',
  'quit',
  'job',
  'stay',
  'home',
  'good',
  'littl',
  'wife',
  'mother',
  'well',
  'due',
  'trust',
  'fund',
  'realli',
  'need',
  'work',
  'mother',
  'refus',
  'divorc',
  'prenup',
  'got',
  'littl',
  'move',
  'back',
  'europ',
  'parent',
  'never',
  'knew',
  'mother',
  'good',
  'profess',
  'never',
  'realli',
  'want',
  'anyth',
  'grandmoth',
  'grandfath',
  'mom',
  'dad',
  'awesom',
  'got',
  'spend',
  'summer',
  'explor',
  'wild',
  'western',
  'canada',
  'father',
  'never',
  'paid',
  'child',
  'support',
  'like',
  'said',
  'realli',
  'matter',
  'mom',
  'make',
  'good',
  'money',
  'gave',
  'great',
  'life',
  'child',
  'point',
  'post',
  'im',
  'get',
  'marri',
  'met',
  'love',
  'life',
  'univers',
  'togeth',
  'eight',
  'year',
  'wonder',
  'person',
  'realli',
  'lobster',
  'sorri',
  'friend',
  'refer',
  'famili',
  'citi',
  'father',
  'huge',
  'rambuncti',
  'bunch',
  'lot',
  'intermingl',
  'busi',
  'person',
  'relationship',
  'parent',
  'grandpar',
  'found',
  'impend',
  'wed',
  'suppos',
  'contact',
  'want',
  'come',
  'canada',
  'meet',
  'fiance',
  'guess',
  'grandson',
  'acquaint',
  'small',
  'world',
  'found',
  'father',
  'basic',
  'abandon',
  'fend',
  'world',
  'honestli',
  'see',
  'piss',
  'say',
  'least',
  'funni',
  'decidedli',
  'upper',
  'middl',
  'class',
  'long',
  'stori',
  'short',
  'lawyer',
  'calcul',
  'amount',
  'child',
  'support',
  'father',
  'paid',
  'inyerest',
  'cost',
  'post',
  'secondari',
  'educ',
  'gave',
  'gift',
  'know',
  'came',
  'father',
  'yearli',
  'draw',
  'trust',
  'fund',
  'furiou',
  'obvious',
  'sizeabl',
  'amount',
  'much',
  'affect',
  'financ',
  'least',
  'next',
  'two',
  'year',
  'may',
  'need',
  'gasp',
  'get',
  'job',
  'contact',
  'tell',
  'current',
  'wife',
  'children',
  'neg',
  'affect',
  'give',
  'back',
  'money',
  'realli',
  'need',
  'guess',
  'entitl',
  'get',
  'trust',
  'fund',
  'well',
  'realli',
  'want',
  'pay',
  'debt',
  'mother',
  'may',
  'make',
  'sure',
  'retir',
  'whatev',
  'suit',
  'fanci',
  'im',
  'give',
  'back',
  'aita',
  'edit',
  'answer',
  'common',
  'question',
  'half',
  'sibl',
  'realli',
  'affect',
  'trust',
  'fund',
  'set',
  'alreadi',
  'tuition',
  'fee',
  'stuff',
  'cover',
  'grandpar',
  'famili',
  'set',
  'ba',
  'kid',
  'born',
  'one',
  'reason',
  'father',
  'upset',
  'sinc',
  'bother',
  'tell',
  'parent',
  'set',
  'sinc',
  'taken',
  'good',
  'chunk',
  'trust',
  'fund',
  'use',
  'set',
  'mine',
  'realist',
  'principl',
  'separ',
  'year',
  'ago',
  'would',
  'left',
  'exact',
  'posit',
  'mom',
  'work',
  'get',
  'phd',
  'could',
  'help',
  'kid',
  'certain',
  'condit',
  'want',
  'walk',
  'away',
  'grandpar',
  'sent',
  'pictur',
  'famili',
  'coolest',
  'thing',
  'grandfath',
  'look',
  'like',
  'granddad',
  'parent',
  'trap',
  'mom',
  'never',
  'remarri',
  'special',
  'friend',
  'sinc',
  'five',
  'amaz',
  'taught',
  'swear',
  'colombian',
  'spanish',
  'edit',
  'número',
  'lunch',
  'mom',
  'appar',
  'debt',
  'like',
  'guess',
  'liter',
  'write',
  'book',
  'treatment',
  'kid',
  'work',
  'okay',
  'never',
  'realli',
  'thought',
  'decid',
  'would',
  'best',
  'set',
  'scholarship',
  'peopl',
  'want',
  'go',
  'field',
  'studi',
  'sinc',
  'trustafarian',
  'afford',
  'howev',
  'go',
  'book',
  'friend',
  'trip',
  'wed',
  'go',
  'go',
  'pay',
  'car',
  'edit',
  'tre',
  'half',
  'brother',
  'post',
  'slightli',
  'differ',
  'viewpoint',
  'way',
  'come',
  'mother',
  'comment',
  'keep',
  'mind',
  'young',
  'man',
  'disillus',
  'father'],
 ['boyfriend',
  'start',
  'ask',
  'join',
  'girl',
  'night',
  'everytim',
  'tri',
  'say',
  'like',
  'join',
  'cancel',
  'made',
  '&',
  'girl',
  'miser',
  'sit',
  'middl',
  'past',
  'friday',
  'insist',
  'join',
  'us',
  'enough',
  'came',
  'idea',
  'get',
  'hate',
  'hang',
  'us',
  'made',
  'plan',
  'told',
  'girl',
  'go',
  'ot',
  'girl',
  'came',
  'boyfriend',
  'immedi',
  'sat',
  'us',
  'start',
  'ruin',
  'convers',
  'steer',
  'toward',
  'himhi',
  'workhi',
  'achiev',
  'start',
  'bring',
  'gross',
  'embarrass',
  'subject',
  'girl',
  'eat',
  'talk',
  'detail',
  'subject',
  'like',
  'sevx',
  'period',
  'sensit',
  'spot',
  'cramp',
  'diarrhea',
  'hairi',
  'leg',
  'fart',
  'get',
  'trap',
  'valva',
  'come',
  'front',
  'squeez',
  'shit',
  'face',
  'cramp',
  'diarrhea',
  'dirti',
  'underwar',
  'againcramp',
  'diarrhea',
  'talk',
  'stuff',
  'bore',
  'detail',
  'likei',
  'could',
  'feel',
  'discomfert',
  'without',
  'even',
  'look',
  'god',
  'turn',
  'see',
  'got',
  'quiet',
  'suddenli',
  'get',
  'red',
  'face',
  'sweat',
  'forehead',
  'bet',
  'found',
  'unabl',
  'relat',
  'thise',
  'subject',
  'thu',
  'take',
  'part',
  'convers',
  'got',
  'couch',
  'readi',
  'head',
  'look',
  'ask',
  'go',
  'like',
  'ahi',
  'rememb',
  'import',
  'meet',
  'guy',
  'minut',
  'andahi',
  'go',
  'rush',
  'tell',
  'us',
  'fun',
  'girl',
  'start',
  'laugh',
  'hyster',
  'came',
  'home',
  'berat',
  'say',
  'made',
  'feel',
  'uncomfortablesick',
  'horribl',
  'subject',
  'kept',
  'bring',
  'said',
  'talk',
  'typic',
  'stuff',
  'girl',
  'talk',
  'time',
  'insist',
  'made',
  'upset',
  'caus',
  'leav',
  'declin',
  'speak',
  'quiet',
  'sinc',
  'aita',
  '*',
  '*',
  'updatw',
  '*',
  '*',
  'yall',
  'wow',
  'got',
  'home',
  'left',
  'post',
  'ish',
  'comment',
  'look',
  'hundr',
  'comment',
  'read',
  'bunch',
  'guysthank',
  'much',
  'feed',
  'back',
  'enlighten',
  'advic',
  'add',
  'context',
  'apart',
  'tell',
  'allow',
  'come',
  'thought',
  'fine',
  'sinc',
  'place',
  'though',
  'help',
  'bill',
  'make',
  'much',
  'head',
  'secur',
  'compani',
  'cant',
  'believ',
  'dens',
  'blind',
  'neg',
  'way',
  'still',
  'give',
  'silent',
  'treatment',
  'ive',
  'decid',
  'lot',
  'take',
  'im',
  'temporarili',
  'move',
  'one',
  'girl',
  'defin',
  'reconsid',
  'thing',
  'want',
  'keep',
  'guy',
  'updat',
  'sinc',
  'mani',
  'got',
  'engag',
  'post',
  'thank',
  'much',
  'dming',
  'concern',
  'appreci',
  'time',
  'concern',
  'mani',
  'hug',
  'go',
  'guy',
  'realli',
  'appreci',
  'yall'],
 ['first',
  'real',
  'vacat',
  'sinc',
  'first',
  'husband',
  'year',
  'daughter',
  'anni',
  'left',
  'home',
  'alon',
  'reason',
  'recent',
  'anni',
  'right',
  'hubbi',
  'eye',
  'dress',
  'music',
  'chore',
  'deem',
  'irrespons',
  'farthest',
  'truth',
  'summer',
  'job',
  'make',
  'good',
  'grade',
  'in-fact',
  'kinda',
  'hermit',
  'age',
  'unknown',
  'husband',
  'set',
  'hot',
  'water',
  'heater',
  'refil',
  'day',
  'gone',
  'anni',
  'dish',
  'laundri',
  'took',
  'shower',
  'water',
  'cold',
  'upset',
  'thought',
  'broke',
  'call',
  'us',
  'panick',
  'husband',
  'yell',
  'wast',
  'hot',
  'water',
  'tell',
  'irrespons',
  'enough',
  'make',
  'cri',
  'got',
  'madder',
  'ever',
  'marriag',
  'basic',
  'said',
  'parent',
  'would',
  'love',
  'year',
  'old',
  'like',
  'anni',
  'argu',
  'scream',
  'night',
  'next',
  'day',
  'left',
  'resort',
  'littl',
  'hotel',
  'street',
  'husband',
  'tri',
  'call',
  'told',
  'anni',
  'block',
  'father',
  'pay',
  'attent',
  'husband',
  'mad',
  'wast',
  'money',
  'vacat',
  'cant',
  'stand',
  'even',
  'look',
  'argument',
  'someth',
  'stupid',
  'prevent'],
 ['got',
  'son',
  'motorcycl',
  'th',
  'birthday',
  'past',
  'june',
  'son',
  'obssess',
  'automobil',
  'love',
  'motorcycl',
  'room',
  'plenti',
  'model',
  'poster',
  'motorcylc',
  'type',
  'bio',
  'dad',
  'pass',
  'away',
  'im',
  'marri',
  'current',
  'husband',
  'kid',
  'husband',
  'alway',
  'son',
  'interest',
  'motorcycl',
  'think',
  'im',
  'encourag',
  'reckless',
  'distract',
  'school',
  'extens',
  'futur',
  'spoil',
  'blow',
  'away',
  'money',
  'spend',
  'motorcycl',
  'caus',
  'tension',
  'son',
  'told',
  'stop',
  'complain',
  'around',
  'week',
  'ago',
  'son',
  'motorcycl',
  'went',
  'miss',
  'open',
  'polic',
  'report',
  'noth',
  'came',
  'disappear',
  'husband',
  'smirk',
  'face',
  'entir',
  'time',
  'walk',
  'around',
  'say',
  'told',
  'wast',
  'money',
  'unbbearablr',
  'hear',
  'quit',
  'honest',
  'mother',
  'inlaw',
  'visit',
  'day',
  'ago',
  'talk',
  'hous',
  'husband',
  'mention',
  'see',
  'motorcycl',
  'one',
  'similar',
  'one',
  'lost',
  'husband',
  'carag',
  'clean',
  'goe',
  'clean',
  'hous',
  'weekli',
  'even',
  'though',
  'empti',
  'husband',
  'plan',
  'give',
  'kid',
  'inherit',
  'puzzl',
  'ask',
  'certain',
  'show',
  'photo',
  'took',
  'confirm',
  'inde',
  'son',
  'motorcycl',
  'immedietli',
  'rush',
  'call',
  'husband',
  'confront',
  'admit',
  'took',
  'hid',
  'motorcycl',
  'garag',
  'last',
  'resort',
  'stepson',
  'kept',
  'brush',
  'thought',
  'spent',
  'someth',
  'unnecesari',
  'could',
  'caus',
  'issu',
  'blew',
  'demand',
  'return',
  'refus',
  'told',
  'consid',
  'sell',
  'give',
  'money',
  'back',
  'could',
  'use',
  'wise',
  'time',
  'told',
  'seriou',
  'id',
  'call',
  'polic',
  'liter',
  'said',
  'famili',
  'matter',
  'cop',
  'cant',
  'shit',
  'enough',
  'call',
  'cop',
  'soon',
  'end',
  'call',
  'motorcycl',
  'found',
  'return',
  'husband',
  'taken',
  'sinc',
  'open',
  'file',
  'motorcylc',
  'go',
  'miss',
  'let',
  'go',
  'eventu',
  'livid',
  'came',
  'home',
  'yell',
  'aw',
  'crazi',
  'behavior',
  'refus',
  'engag',
  'argument',
  'told',
  'entir',
  'famili',
  'judg',
  'call',
  'polic',
  'husband',
  'even',
  'though',
  'alreadi',
  'ask',
  'return',
  'said',
  'look',
  'son',
  'one',
  'day',
  'well',
  'realiz',
  'right',
  'late',
  'son',
  'spsake',
  'husband',
  'feel',
  'horribl',
  'whole',
  'situat',
  'start',
  'think',
  'handl',
  'wrong',
  'way'],
 ['dad',
  'pass',
  'away',
  'recent',
  'left',
  'sister',
  'hous',
  'super',
  'unkempt',
  'ive',
  'lot',
  'yard',
  'work',
  'outsid',
  'morn',
  'im',
  'water',
  'grass',
  'morn',
  'even',
  'everi',
  'singl',
  'time',
  'ive',
  'done',
  'neighbor',
  'right',
  'next',
  'door',
  'like',
  'older',
  'granni',
  'come',
  'porch',
  'straight',
  'watch',
  'without',
  'even',
  'hide',
  'introduc',
  'sister',
  'new',
  'owner',
  'dad',
  'pass',
  'obviou',
  'wan',
  'na',
  'talk',
  'next',
  'thing',
  'start',
  'come',
  'outsid',
  '*',
  'phone',
  '*',
  'point',
  'camera',
  'right',
  'im',
  'like',
  'problem',
  'say',
  'problem',
  'long',
  'im',
  'im',
  'suppos',
  'ask',
  'record',
  'neighbor',
  'ladi',
  'goe',
  'problem',
  'record',
  'anyth',
  'wrong',
  'fuck',
  'weird',
  'even',
  'know',
  'respond',
  'situat',
  'soon',
  'finish',
  'go',
  'back',
  'insid',
  'went',
  'back',
  'hous',
  'happen',
  'everi',
  'singl',
  'day',
  'im',
  'outsid',
  'water',
  'grass',
  'alway',
  'excus',
  'want',
  'make',
  'sure',
  'im',
  'anyth',
  'els',
  'camera',
  'yesterday',
  'got',
  'fed',
  'decid',
  'someth',
  'differ',
  'came',
  'phone',
  'stuck',
  'ass',
  'put',
  'hand',
  'hip',
  'look',
  'right',
  'first',
  'like',
  'wtf',
  'got',
  'realli',
  'mad',
  'start',
  'wet',
  'water',
  'hose',
  'touch',
  'neck',
  'liter',
  'look',
  'directli',
  'stupid',
  'ye',
  'put',
  'phone',
  'away',
  'start',
  'cuss',
  'pervert',
  'sister',
  'told',
  'later',
  'came',
  'hous',
  'work',
  'talk',
  'sexual',
  'harass',
  'make',
  'pose',
  'provoc',
  'way',
  'sister',
  'know',
  'pain',
  'ass',
  'sinc',
  'probabl',
  'noth',
  'better',
  'time',
  'still',
  'stoop',
  'level',
  'make',
  'uncomfort',
  'right',
  'back',
  'feel',
  'like',
  'im',
  'right',
  'one',
  'even',
  'bad',
  'like',
  'grab',
  'ball',
  'anyth',
  'also',
  'dumbass',
  'sometim',
  'idk',
  'guy',
  'tell',
  'asshol'],
 ['husband',
  'brother',
  'bil',
  'move',
  'us',
  'divorc',
  'week',
  'ago',
  'problem',
  'start',
  'barg',
  'bathroom',
  'whenev',
  'im',
  'use',
  'never',
  'knock',
  'anyth',
  'anoth',
  'thing',
  'bathroom',
  'brother',
  'told',
  'husband',
  'id',
  'notic',
  'laugh',
  'call',
  'paranoid',
  'embarrass',
  'brother',
  'would',
  'see',
  'expos',
  'made',
  'uncomfort',
  'husband',
  'said',
  'spoke',
  'apolog',
  'husband',
  'got',
  'marri',
  'promis',
  'lock',
  'lock',
  'room',
  'bathroom',
  'lock',
  'realli',
  'consid',
  'get',
  'lock',
  'let',
  'husband',
  'know',
  'brother',
  'walk',
  'bathroom',
  'one',
  'time',
  'lock',
  'instantli',
  'instal',
  'say',
  'anyth',
  'well',
  'yesterday',
  'bil',
  'walk',
  'shower',
  'knew',
  'would',
  'shower',
  'barg',
  'anyon',
  'clame',
  'need',
  'pee',
  'enough',
  'went',
  'got',
  'lock',
  'instal',
  'husband',
  'got',
  'home',
  'saw',
  'blew',
  'say',
  'voilat',
  'agreement',
  'part',
  'went',
  'wish',
  'uncomfort',
  'lock',
  'hous',
  'demand',
  'remov',
  '*',
  'promis',
  '*',
  '*',
  'guarente',
  '*',
  'brother',
  'walk',
  'refus',
  'piss',
  'sinc',
  'give',
  'silenc',
  'treatement',
  'info',
  'im',
  'close',
  'bil',
  'husband',
  'even',
  'talk',
  'much',
  'bare',
  'even',
  'sat',
  'gather',
  'move',
  'us',
  'upatd',
  'provid',
  'updat',
  'situat',
  'worth',
  'note',
  'bil',
  'use',
  'bedroom',
  'least',
  'im',
  'alway',
  'expos',
  'bedroom',
  'husband',
  'came',
  'home',
  'told',
  'lock',
  'remov',
  'til',
  'brother',
  'leav',
  'reaction',
  'tri',
  'remov',
  'lock',
  'tell',
  'quit',
  'act',
  'childishi',
  'shout',
  'scream',
  'pack',
  'bag',
  'go',
  'mom',
  'hous',
  'next',
  'day',
  'til',
  'get',
  'resolv',
  'somehow',
  'way',
  'saw',
  'bil',
  'driveway',
  'smoke',
  'knew',
  'argument',
  'husband',
  'instead',
  'step',
  'fix',
  'offer',
  'take',
  'mom',
  'hous',
  'say',
  'husband',
  'could',
  'use',
  'space',
  'made',
  'cri',
  'whole',
  'uber',
  'ride',
  'mom',
  'hous',
  'reason',
  'feel',
  'offend',
  'bil',
  'tend',
  'hurt',
  'talk',
  'could',
  'win',
  'approv',
  'think',
  'less',
  'think',
  'im',
  'childish',
  'like',
  'husband',
  'say'],
 ['aita',
  'ignor',
  'autist',
  'guy',
  'flight',
  'im',
  'travel',
  'alon',
  'hour',
  'flight',
  'today',
  'guy',
  'row',
  'exhaust',
  'got',
  'four',
  'hour',
  'sleep',
  'flight',
  'could',
  'sleep',
  'plane',
  'guy',
  'well',
  'call',
  'keep',
  'tri',
  'make',
  'convers',
  'start',
  'tell',
  'autist',
  'ask',
  'like',
  'kpop',
  'keep',
  'non',
  'stop',
  'talk',
  'rare',
  'give',
  'chanc',
  'speak',
  'want',
  'tri',
  'polit',
  'adhd',
  'understand',
  'social',
  'cue',
  'difficult',
  'probabl',
  'cant',
  'tell',
  'im',
  'mood',
  'cours',
  'next',
  'minut',
  'tell',
  'mayb',
  'time',
  'want',
  'sleep',
  'put',
  'headphon',
  'time',
  'begin',
  'speak',
  'mayb',
  'minut',
  'silenc',
  'final',
  'abl',
  'sleep',
  'around',
  'hour',
  'woke',
  'start',
  'im',
  'still',
  'realli',
  'tire',
  'person',
  'issu',
  'day',
  'flight',
  'im',
  'also',
  'social',
  'exhaust',
  'let',
  'talk',
  'bit',
  'start',
  'watch',
  'show',
  'phone',
  'tell',
  'mayb',
  'seper',
  'time',
  'im',
  'tri',
  'watch',
  'show',
  'im',
  'interest',
  'talk',
  'right',
  'mayb',
  'later',
  'still',
  'keep',
  'tri',
  'talk',
  'snap',
  'bit',
  'tell',
  'im',
  'get',
  'bit',
  'annoy',
  'goe',
  'full',
  'self-hat',
  'im',
  'sorri',
  'im',
  'horribl',
  'god',
  'im',
  'gon',
  'na',
  'shut',
  'rant',
  'feel',
  'bad',
  'nicer',
  'understand',
  'emot',
  'strong',
  'spiral',
  'tell',
  'okay',
  'want',
  'time',
  'im',
  'chattiest',
  'person',
  'mayb',
  'later',
  'talk',
  'put',
  'headphon',
  'watch',
  'show',
  'kept',
  'tri',
  'speak',
  'time',
  'ignor',
  'honestli',
  'shitti',
  'move',
  'energi',
  'point',
  'interact',
  'wrong',
  'move',
  'move',
  'get',
  'row',
  'stood',
  'aisl',
  'began',
  'yell',
  'catch',
  'everyth',
  'said',
  'along',
  'line',
  'cant',
  'women',
  'believ',
  'men',
  'bad',
  'men',
  'side',
  'im',
  'nice',
  'guy',
  'ignor',
  'storm',
  'bathroom',
  'take',
  'chanc',
  'ask',
  'flight',
  'attend',
  'chang',
  'seat',
  'realli',
  'freak',
  'want',
  'panic',
  'attack',
  'plane',
  'flight',
  'attend',
  'amaz',
  'got',
  'stuff',
  'move',
  'far',
  'away',
  'feel',
  'like',
  'im',
  'ta',
  'autism',
  'could',
  'patient',
  'mayb',
  'ignor',
  'shit',
  'thing'],
 ['late',
  'best',
  'friend',
  'knew',
  'sinc',
  'littl',
  'next-door',
  'neighbor',
  'alway',
  'play',
  'togeth',
  'even',
  'went',
  'kindergarten',
  'primari',
  'school',
  'middlehigh',
  'school',
  'togeth',
  'one',
  'day',
  'sophomor',
  'year',
  'start',
  'talk',
  'classmat',
  'start',
  'date',
  'obvious',
  'okay',
  'decid',
  'get',
  'one',
  'get',
  'marri',
  'joke',
  'made',
  'fake',
  'ring',
  'gave',
  'scrunchi',
  'week',
  'later',
  'drunk',
  'driver',
  'hit',
  'sustain',
  'multipl',
  'injuri',
  'icu',
  'month',
  'doctor',
  'told',
  'famili',
  'surviv',
  'chanc',
  'slim',
  'time',
  'talk',
  'die',
  'made',
  'promis',
  'alway',
  'visit',
  'wed',
  'anniversari',
  'wear',
  'scrunchi',
  'visit',
  'year',
  'ago',
  'start',
  'date',
  'girlfriend',
  'told',
  'ask',
  'okay',
  'comment',
  'sweet',
  'nice',
  'tradit',
  'told',
  'perfectli',
  'fine',
  'today',
  'th',
  'anniversari',
  'took',
  'day',
  'girlfriend',
  'went',
  'work',
  'told',
  'time',
  'put',
  'tradit',
  'rest',
  'move',
  'start',
  'get',
  'pathet',
  'still',
  'wear',
  'dead',
  'girl',
  'scrunchi',
  'celebr',
  'fake',
  'marriag',
  'year',
  'ago',
  'furiou',
  'comment',
  'dead',
  'girl',
  'best',
  'friend',
  'like',
  'sister',
  'grew',
  'everyth',
  'togeth',
  'told',
  'girlfriend',
  'long',
  'time',
  'ago',
  'never',
  'sexual',
  'romant',
  'relationship',
  'wed',
  'joke',
  'like',
  'talk',
  'keep',
  'photo',
  'around',
  'hous',
  'anyth',
  'similar',
  'time',
  'ive',
  'talk',
  'girlfriend',
  'told',
  'okay',
  'tradit',
  'ask',
  'told',
  'ill',
  'keep',
  'honor',
  'best',
  'friend',
  'die',
  'wish',
  'even',
  'made',
  'uncomfort',
  'left',
  'work',
  'angri',
  'came',
  'back',
  'home',
  'yet'],
 ['got',
  'engag',
  'fiancé',
  'eric',
  'month',
  'ago',
  'move',
  'daughter',
  'zoey',
  'everyth',
  'go',
  'well',
  'til',
  'start',
  'complain',
  'zoey',
  'cat',
  'strang',
  'cat',
  'sweet',
  'quiet',
  'time',
  'idea',
  'issu',
  'exactli',
  'anyway',
  'went',
  'complain',
  'cat',
  'make',
  'demand',
  'gave',
  'zoey',
  'list',
  'place',
  'cat',
  'cancant',
  'go',
  'thing',
  'allow',
  'touch',
  'ban',
  'place',
  'like',
  'kitchen',
  'sofa',
  'zoey',
  'favorit',
  'place',
  'cuddl',
  'cat',
  'zoey',
  'show',
  'list',
  'argument',
  'tell',
  'need',
  'stop',
  'ridicul',
  'rant',
  'hous',
  'expect',
  'thing',
  'chang',
  'get',
  'marri',
  'day',
  'ago',
  'work',
  'got',
  'call',
  'zoey',
  'cri',
  'say',
  'cat',
  'room',
  'hous',
  'freak',
  'went',
  'home',
  'look',
  'zoey',
  'look',
  'hr',
  'neighbor',
  'brought',
  'told',
  'us',
  'saw',
  'eric',
  'leav',
  'outsid',
  'get',
  'car',
  'leav',
  'surpris',
  'quit',
  'angri',
  'zoey',
  'took',
  'cat',
  'went',
  'back',
  'insid',
  'immedi',
  'drove',
  'futur',
  'inlaw',
  'home',
  'eric',
  'said',
  'hed',
  'second',
  'saw',
  'sit',
  'famili',
  'went',
  'blew',
  'infront',
  'everyon',
  'mom',
  'ask',
  'happen',
  'told',
  'son',
  'got',
  'daughter',
  'indoor',
  'cat',
  'outsid',
  'hous',
  'probabl',
  'hope',
  'get',
  'lost',
  'argu',
  'want',
  'yo',
  'stop',
  'spout',
  'nonesens',
  'go',
  'home',
  'wed',
  'talk',
  'refus',
  'got',
  'wors',
  'end',
  'leav',
  'famili',
  'flip',
  'sent',
  'bunch',
  'text',
  'talk',
  'stunt',
  'pull',
  'infront',
  'famili',
  'said',
  'mean',
  'leav',
  'cat',
  'check',
  'cam',
  'confirm',
  'still',
  'insist',
  'humili',
  'infront',
  'famili',
  'tri',
  'turn',
  'stay',
  'friend',
  'stop',
  'call',
  'text',
  'aita',
  'blow',
  'infront',
  'famili',
  'cat',
  'tax',
  'httpsimgurcomalouovch'],
 ['speak',
  'mother',
  'like',
  'go',
  'mother',
  'hous',
  'today',
  'pick',
  'import',
  'document',
  'left',
  'behind',
  'move',
  'seven',
  'year',
  'ago',
  'soon',
  'got',
  'hous',
  'mother',
  'suddenli',
  'massiv',
  'emerg',
  'realis',
  'appar',
  'friend',
  'funer',
  'today',
  'complet',
  'forgot',
  'help',
  'intern',
  'roll',
  'eye',
  'alway',
  'drama',
  'henc',
  'gone',
  'noveri',
  'low',
  'contact',
  'ask',
  'would',
  'watch',
  'two',
  'younger',
  'brother',
  'whilst',
  'went',
  'funer',
  'said',
  'absolut',
  'day',
  'plan',
  'relationship',
  'due',
  'mother',
  'stop',
  'see',
  'year',
  'want',
  'get',
  'birth',
  'certif',
  'leav',
  'mother',
  'ask',
  'friend',
  'would',
  'babysit',
  'ask',
  'stay',
  'minut',
  'friend',
  'came',
  'even',
  'get',
  'opportun',
  'say',
  'mother',
  'left',
  'hous',
  'seeth',
  'resolv',
  'wait',
  'minut',
  'mother',
  'friend',
  'turn',
  'start',
  'berat',
  'agre',
  'look',
  'brother',
  'whilst',
  'mother',
  'went',
  'funer',
  'said',
  'anyth',
  'mother',
  'day',
  'work',
  'im',
  'oblig',
  'look',
  'anyon',
  'els',
  'children',
  'mother',
  'friend',
  'told',
  'go',
  'room',
  'laugh',
  'face',
  'start',
  'leav',
  'hous',
  'ask',
  'go',
  'told',
  'room',
  'apart',
  'pay',
  'big',
  'girl',
  'job',
  'im',
  'adult',
  'child',
  'ever',
  'speak',
  'like',
  'left',
  'mother',
  'left',
  'load',
  'messag',
  'miss',
  'call',
  'say',
  'im',
  'ah',
  'way',
  'spoke',
  'friend',
  'admit',
  'look',
  'kinda',
  'young',
  'still',
  'happi',
  'way',
  'mother',
  'friend',
  'spoke',
  'aita'],
 ['wife',
  'littl',
  'girl',
  'ill',
  'call',
  'anna',
  'anna',
  'thick',
  'blond',
  'curli',
  'hair',
  'wife',
  'ador',
  'ever',
  'sinc',
  'toddler',
  'shed',
  'spend',
  'hour',
  'hair',
  'everi',
  'day',
  'braid',
  'straighten',
  'style',
  'sort',
  'way',
  'bathroom',
  'cabinet',
  'alway',
  'fill',
  'brim',
  'bunch',
  'hair',
  'lotion',
  'oil',
  'cream',
  'fanci',
  'product',
  'even',
  'know',
  'name',
  'think',
  'fair',
  'say',
  'wife',
  'bit',
  'obsess',
  'whole',
  'hair',
  'thing',
  'anna',
  'howev',
  'never',
  'fond',
  'get',
  'hair',
  'done',
  'anyth',
  'involv',
  'sit',
  'still',
  'minut',
  'got',
  'cut',
  'hair',
  'use',
  'reach',
  'past',
  'waist',
  'look',
  'love',
  'hate',
  'get',
  'brush',
  'everi',
  'morn',
  'use',
  'scream',
  'fest',
  'wife',
  'late',
  'shed',
  'beg',
  'shorter',
  'haircut',
  'wife',
  'ignor',
  'whenev',
  'topic',
  'brought',
  'hope',
  'shed',
  'forget',
  'none',
  'end',
  'happen',
  'think',
  'anna',
  'realiz',
  'get',
  'nowher',
  'mom',
  'start',
  'ask',
  'take',
  'instead',
  'reluct',
  'first',
  'know',
  'wife',
  'would',
  'react',
  'agre',
  'saw',
  'excit',
  'kid',
  'someth',
  'simpl',
  'haircut',
  'yesterday',
  'drove',
  'hairdress',
  'got',
  'flip',
  'lot',
  'magazin',
  'pick',
  'pictur',
  'haircut',
  'chose',
  'realli',
  'short',
  'clipper',
  'cut',
  'knew',
  'gon',
  'na',
  'deep',
  'shit',
  'wife',
  'point',
  'though',
  'turn',
  'back',
  'mean',
  'could',
  'realli',
  'done',
  'told',
  'cant',
  'get',
  'haircut',
  'moon',
  'mom',
  'like',
  'went',
  'ahead',
  'haircut',
  'end',
  'anna',
  'stop',
  'smile',
  'went',
  'around',
  'salon',
  'show',
  'everyon',
  'even',
  'ask',
  'take',
  'bunch',
  'pictur',
  'even',
  'though',
  'normal',
  'hate',
  'pictur',
  'taken',
  'get',
  'one',
  'rude',
  'comment',
  'older',
  'woman',
  'salon',
  'someth',
  'along',
  'line',
  'cant',
  'even',
  'tell',
  'boy',
  'girl',
  'anna',
  'way',
  'excit',
  'hair',
  'notic',
  'notic',
  'care',
  'wife',
  'got',
  'home',
  'work',
  'day',
  'though',
  'thing',
  'quickli',
  'took',
  'turn',
  'wors',
  'refus',
  'even',
  'look',
  'anna',
  'lock',
  'room',
  'cri',
  'got',
  'car',
  'drove',
  'day',
  'still',
  'back',
  'honestli',
  'start',
  'worri',
  'knew',
  'react',
  'well',
  'haircut',
  'expect',
  'take',
  'badli',
  'kid',
  'upset',
  'matter',
  'much',
  'reassur',
  'still',
  'think',
  'troubl',
  'get',
  'hair',
  'cut',
  'aita',
  'realiz',
  'attach',
  'wife',
  'anna',
  'hair',
  'end',
  'day',
  'still',
  'think',
  'hair',
  'kid',
  'old',
  'enough',
  'decid',
  'thing',
  'realli',
  'happi',
  'haircut',
  'think',
  'someth',
  'wrong'],
 ['im',
  'brother',
  'girlfriend',
  'cheat',
  'brother',
  'heartbroken',
  'piss',
  'told',
  'longer',
  'brother',
  'despit',
  'request',
  'famili',
  'cut',
  'told',
  'never',
  'place',
  'wish',
  'invit',
  'invit',
  'one',
  'give',
  'ultim',
  'daughter',
  'get',
  'marri',
  'spring',
  'next',
  'year',
  'cultur',
  'parent',
  'pay',
  'wed',
  'unexpectedli',
  'daughter',
  'sat',
  'told',
  'invit',
  'brother',
  'familyh',
  'marri',
  'cheat',
  'ex',
  'appar',
  'see',
  'last',
  'year',
  'built',
  'relationship',
  'behind',
  'back',
  'even',
  'want',
  'cousin',
  'kind',
  'flower',
  'girl',
  'piss',
  'told',
  'boundari',
  'brother',
  'invit',
  'pay',
  'part',
  'wed',
  'becam',
  'angri',
  'told',
  'time',
  'let',
  'go',
  'past',
  'told',
  'call',
  'make',
  'argu',
  'told',
  'make',
  'wed',
  'told',
  'probabl',
  'even',
  'attend',
  'left',
  'cri',
  'ex-wif',
  'call',
  'scream',
  'told',
  'im',
  'huge',
  'ah',
  'daughter',
  'crush',
  'parent',
  'call',
  'thing',
  'told',
  'im',
  'ignor',
  'call',
  'gf',
  'told',
  'reconsid',
  'appolog',
  'pay',
  'attend',
  'break',
  'relationship',
  'daughter',
  'know',
  'think',
  'boundari',
  'respect',
  'asshol'],
 ['<',
  '>',
  'beauti',
  'wife',
  'love',
  'serv',
  'bought',
  'home',
  'street',
  'famili',
  'sweet',
  'sister',
  '<',
  '>',
  'like',
  'crash',
  'hous',
  'friend',
  'wife',
  'normal',
  'pretti',
  'easi',
  'go',
  'recent',
  'sister',
  'friend',
  'leav',
  'mess',
  'mostli',
  'towel',
  'floor',
  'use',
  'pool',
  'wife',
  'got',
  'upset',
  'pick',
  'everi',
  'day',
  'ask',
  'sister',
  'make',
  'sure',
  'hous',
  'clean',
  'leav',
  'better',
  'wife',
  'also',
  'complain',
  'perfumescloth',
  'person',
  'item',
  'gone',
  'miss',
  'sister',
  'said',
  'believ',
  'sister',
  'see',
  'told',
  'wife',
  'agre',
  'replac',
  'last',
  'week',
  'wife',
  'made',
  'coupl',
  'pan',
  'cinnamon',
  'roll',
  'scratch',
  'one',
  'pan',
  'us',
  'second',
  'pan',
  'co-work',
  'famili',
  'experienc',
  'tragedi',
  'wife',
  'went',
  'gym',
  'went',
  'work',
  'sister',
  'friend',
  'came',
  'one',
  'pan',
  'enough',
  'friend',
  'want',
  'second',
  'pan',
  'cinnamon',
  'roll',
  'sister',
  'text',
  'wife',
  'ask',
  'could',
  'eat',
  'wife',
  'said',
  'ate',
  'anyway',
  'wife',
  'upset',
  'went',
  'bought',
  'new',
  'lock',
  'came',
  'home',
  'wife',
  'hand',
  'new',
  'key',
  'told',
  'want',
  'anyon',
  'els',
  'key',
  'hous',
  'tri',
  'calm',
  'tell',
  'would',
  'go',
  'replac',
  'eaten',
  'cinnamon',
  'roll',
  'store',
  'bought',
  'one',
  'wife',
  'decid',
  'hill',
  'die',
  'said',
  'sister',
  'lost',
  'privileg',
  'come',
  'home',
  'replac',
  'stolen',
  'item',
  'good',
  'enough',
  'anymor',
  'mom',
  'call',
  'ask',
  'sister',
  'could',
  'use',
  'pool',
  'back',
  'school',
  'parti',
  'impress',
  'mom',
  'would',
  'said',
  'ye',
  'mom',
  'work',
  'schedul',
  'clash',
  'easiest',
  'solut',
  'chang',
  'lock',
  'back',
  'could',
  'come',
  'hous',
  'mom',
  'come',
  'sister',
  'wife',
  'got',
  'home',
  'parti',
  'mess',
  'sent',
  'photo',
  'call',
  'chang',
  'lock',
  'without',
  'talk',
  'keep',
  'mind',
  'told',
  'broke',
  'trust',
  'safe',
  'home',
  'keep',
  'get',
  'rob',
  'refus',
  'put',
  'end',
  'talk',
  'sister',
  'wife',
  'let',
  'know',
  'stay',
  'friend',
  'awhil',
  'feel',
  'like',
  'tri',
  'right',
  'wrong',
  'happen',
  'wife',
  'sister',
  'updat',
  '*',
  'sorri',
  'abl',
  'repli',
  'past',
  'coupl',
  'hour',
  'busi',
  'talk',
  'mom',
  'let',
  'know',
  'sister',
  'allow',
  'without',
  'home',
  'ask',
  'friend',
  'wife',
  'maid',
  'come',
  'deep',
  'clean',
  'home',
  'ifwhen',
  'wife',
  'come',
  'home',
  'clean',
  'last',
  'thing',
  'mom',
  'ask',
  'help',
  'cover',
  'sister',
  'cheer',
  'track',
  'scholarship',
  'told',
  'mom',
  'would',
  'pay',
  'half',
  'wife',
  'thing',
  'return',
  'money',
  'go',
  'replac',
  'stolen',
  'item',
  'also',
  'sister',
  'invit',
  'home',
  'come',
  'want',
  'buy',
  'dress',
  'told',
  'follow',
  'home',
  'rule',
  'money',
  'save',
  'dress',
  'go',
  'pay',
  'maid',
  'replac',
  'lock',
  'also',
  'plan',
  'romant',
  'dinner',
  'make',
  'clean',
  'heard',
  'lot',
  'cinnamon',
  'roll',
  'someon',
  'gave',
  'idea',
  'make',
  'dessert',
  'updat',
  'sister',
  'mom',
  'left',
  'min',
  'ago',
  'sister',
  'bag',
  'wife',
  'thing',
  'thought',
  'gone',
  'item',
  'poor',
  'shape',
  'big',
  'thing',
  'wife',
  'grandmoth',
  'ring',
  'thought',
  'safe',
  'idea',
  'gone',
  'sister',
  'said',
  'found',
  'wife',
  'night',
  'stand',
  'parti',
  'forgot',
  'left',
  'home',
  'ring',
  'valuabl',
  'sentiment',
  'told',
  'mom',
  'ring',
  'belong',
  'mom',
  'lost',
  'sister',
  'ground',
  'last',
  'updat',
  'tonight',
  'wife',
  'come',
  'home',
  'stay',
  'friend',
  'hous',
  'work',
  'alreadi',
  'state',
  'put',
  'lock',
  'back',
  'wife',
  'bought',
  'famili',
  'key',
  'earli',
  'morn',
  'updat',
  'mom',
  'call',
  'wife',
  'last',
  'night',
  'ask',
  'sister',
  'fix',
  'replac',
  'damag',
  'item',
  'wife',
  'said',
  'meet',
  'everi',
  'morn',
  'decid',
  'tag',
  'along',
  'see',
  'wife',
  'plan',
  'tri',
  'support',
  'whatev',
  'punish',
  'decid',
  'know',
  'cinnamon',
  'roll',
  'wife',
  'co-work',
  'yr',
  'old',
  'final',
  'stage',
  'cancer',
  'wife',
  'plan',
  'sister',
  'prepar',
  'breakfast',
  'get',
  'kid',
  'readi',
  'day',
  'start',
  'laundri',
  'basic',
  'clean',
  'co-work',
  'wife',
  'spend',
  'much',
  'time',
  'sick',
  'child',
  'work',
  'sister',
  'silent',
  'whole',
  'time',
  'come',
  'back',
  'home',
  'tell',
  'realli',
  'hit',
  'life',
  'hard',
  'even',
  'ground',
  'last',
  'final',
  'post',
  'wife',
  'given',
  'second',
  'chanc',
  'long',
  'follow',
  'list',
  'rule',
  'awhil',
  'famili',
  'home',
  'famili',
  'borrow',
  'thing',
  'one',
  'allow',
  'key',
  'help',
  'chore',
  'around',
  'hous',
  'includ',
  'cook',
  'meal',
  'last',
  'wife',
  'ok',
  'see',
  'sister',
  'ask',
  'go',
  'counsel',
  'understand',
  'sister',
  'target',
  'wife',
  'said',
  'realli',
  'hard',
  'want',
  'caus',
  'issu',
  'trust',
  'sister',
  'cant',
  'use',
  'thing'],
 ['girl',
  'live',
  'uni',
  'hall',
  'roommat',
  'flatmat',
  'let',
  'name',
  'kaya',
  'met',
  'septemb',
  'start',
  'univers',
  'move',
  'hall',
  'best',
  'friend',
  'friendli',
  'realli',
  'spend',
  'much',
  'time',
  'togeth',
  'time',
  'friend',
  'notic',
  'kaya',
  'tri',
  'copi',
  'everyth',
  'start',
  'slowli',
  'accessori',
  'cloth',
  'noth',
  'major',
  'even',
  'notic',
  'peopl',
  'start',
  'point',
  'rather',
  'distinct',
  'style',
  'start',
  'copi',
  'owe',
  'style',
  'free',
  'wear',
  'like',
  'exact',
  'copi',
  'outfit',
  'odd',
  'start',
  'go',
  'dy',
  'hair',
  'dy',
  'hair',
  'bought',
  'someth',
  'room',
  'bought',
  'thing',
  'start',
  'chat',
  'guy',
  'becam',
  'obsess',
  'guy',
  'point',
  'whenev',
  'male',
  'friend',
  'guy',
  'interest',
  'would',
  'go',
  'way',
  'tri',
  'get',
  'attent',
  'come',
  'kitchen',
  'noth',
  'towel',
  'never',
  'use',
  'etc',
  'would',
  'anyth',
  'attract',
  'attent',
  'get',
  'wrong',
  'care',
  'less',
  'guy',
  'look',
  'even',
  'boyfriend',
  'look',
  'id',
  'beef',
  'blatant',
  'attent',
  'seek',
  'behaviour',
  'odd',
  'join',
  'societi',
  'sport',
  'found',
  'join',
  'one',
  'basic',
  'everyth',
  'copi',
  'eventu',
  'realli',
  'creepi',
  'said',
  'anyth',
  'even',
  'know',
  'say',
  'easter',
  'break',
  'friend',
  'famili',
  'hous',
  'bit',
  'drunk',
  'decid',
  'test',
  'whether',
  'kaya',
  'realli',
  'copi',
  'everyth',
  'made',
  'post',
  'social',
  'media',
  'shave',
  'head',
  'friend',
  'hairdress',
  'help',
  'fake',
  'shave',
  'head',
  'post',
  'photo',
  'shave',
  'head',
  'delet',
  'photo',
  'day',
  'later',
  'forgot',
  'whole',
  'thing',
  'easter',
  'break',
  'uni',
  'exam',
  'focus',
  'imagin',
  'shock',
  'came',
  'back',
  'kaya',
  'shave',
  'head',
  'piss',
  'saw',
  'start',
  'shout',
  'lie',
  'would',
  'went',
  'realli',
  'angri',
  'admittedli',
  'ignor',
  'hid',
  'room',
  'sent',
  'text',
  'tell',
  'expect',
  'pay',
  'wig',
  'fault',
  'shave',
  'head',
  'repli',
  'absolut',
  'fault',
  'decid',
  'kept',
  'attack',
  'everi',
  'time',
  'saw',
  'day',
  'sinc',
  'came',
  'back',
  'easter',
  'break',
  'exam',
  'start',
  'tomorrow',
  'yesterday',
  'receiv',
  '-mail',
  'univers',
  'ask',
  'meet',
  'issu',
  'report',
  'uni',
  'someth',
  'done',
  'genuin',
  'confus',
  'realli',
  'wrong',
  'aita',
  'pretend',
  'shave',
  'head',
  'refus',
  'pay',
  'wig'],
 ['bad',
  'car',
  'accid',
  'three',
  'year',
  'ago',
  'drunk',
  'drive',
  'ran',
  'stop',
  'light',
  'cut',
  'semi-truck',
  'crash',
  'send',
  'crash',
  'two',
  'differ',
  'car',
  'ultim',
  'embank',
  'car',
  'mangl',
  'leg',
  'crush',
  'complet',
  'destroy',
  'amput',
  'also',
  'lost',
  'coupl',
  'finger',
  'tip',
  'one',
  'anoth',
  'im',
  'also',
  'left',
  'gnarli',
  'scar',
  'use',
  'bother',
  'im',
  'learn',
  'deal',
  'got',
  'coupl',
  'differ',
  'insur',
  'payout',
  'pain',
  'suffer',
  'money',
  'addit',
  'medic',
  'bill',
  'paid',
  'money',
  'purchas',
  'custom-mad',
  'leg',
  'take',
  'place',
  'one',
  'lost',
  'pant',
  'shoe',
  'hardli',
  'tell',
  'unless',
  'realli',
  'look',
  'still',
  'limp',
  'day',
  'pronounc',
  'limp',
  'earlier',
  'today',
  'went',
  'store',
  'boyfriend',
  'sister',
  'girlfriend',
  'mother',
  'drove',
  'learn',
  'drive',
  'left',
  'foot',
  'im',
  'realli',
  'good',
  'also',
  'bought',
  'new',
  'car',
  'money',
  'go',
  'ton',
  'therapi',
  'get',
  'past',
  'ptsd',
  'im',
  'well',
  'well',
  'drove',
  'us',
  'injuri',
  'addit',
  'leg',
  'also',
  'chronic',
  'hip',
  'neck',
  'back',
  'pain',
  'issu',
  'lung',
  'time',
  'spent',
  'intub',
  'medically-induc',
  'coma',
  'led',
  'pneumonia',
  'handicap',
  'placard',
  'car',
  'troubl',
  'walk',
  'without',
  'get',
  'tire',
  'realli',
  'help',
  'park',
  'close',
  'door',
  'today',
  'unknowingli',
  'took',
  'space',
  'someon',
  'circl',
  'back',
  'around',
  'appar',
  'man',
  'look',
  'close',
  'space',
  'miss',
  'one',
  'took',
  'went',
  'around',
  'still',
  'aisl',
  'pull',
  'cut',
  'anyth',
  'way',
  'know',
  'want',
  'spot',
  'park',
  'yellow',
  'stripe',
  'zone',
  'got',
  'immedi',
  'began',
  'confront',
  'steal',
  'space',
  'peopl',
  'actual',
  'need',
  'im',
  'kid',
  'respect',
  'truli',
  'sick',
  'suffer',
  'order',
  'move',
  'group',
  'urg',
  'walk',
  'way',
  'happen',
  'polic',
  'even',
  'call',
  'im',
  'sick',
  'peopl',
  'think',
  'im',
  'young',
  'legit',
  'need',
  'littl',
  'extra',
  'consider',
  'said',
  'okay',
  'went',
  'car',
  'got',
  'like',
  'go',
  'drive',
  'wear',
  'skirt',
  'leg',
  'quit',
  'obviou',
  'first',
  'sat',
  'took',
  'leg',
  'show',
  'man',
  'includ',
  'stump',
  'ask',
  'okay',
  'still',
  'park',
  'walk',
  'away',
  'call',
  'disgust',
  'rude',
  'said',
  'could',
  'told',
  'made',
  'look',
  'stupid',
  'group',
  'embarrass',
  'said',
  'made',
  'thing',
  'awkward',
  'crowd',
  'aita',
  'edit',
  'case',
  'anyon',
  'interest',
  'im',
  'go',
  'post',
  'photo',
  'leg',
  'identif',
  'reason',
  'ill',
  'describ',
  'base',
  'color',
  'ombr',
  'whiteish',
  'green',
  'pale',
  'green',
  'cherri',
  'blossom',
  'paint',
  'though',
  'sometim',
  'wear',
  'silicon',
  'cover',
  'resembl',
  'actual',
  'foot',
  'leg',
  'day',
  'want',
  'peopl',
  'stare',
  'even',
  'temporari',
  'sticki',
  'put',
  'toe',
  'make',
  'look',
  'like',
  'paint',
  'nail',
  'actual',
  'realli',
  'cool'],
 ['fiancè',
  'got',
  'engag',
  'month',
  'ago',
  'get',
  'marri',
  'soon',
  'invit',
  'alreadi',
  'sent',
  'right',
  'focus',
  'much',
  'smaller',
  'detail',
  'weve',
  'also',
  'busi',
  'move',
  'new',
  'home',
  'purchas',
  'togeth',
  '%',
  'save',
  '+',
  '%',
  'mine',
  'say',
  'save',
  'hous',
  'took',
  'save',
  'prevent',
  'enjoy',
  'thing',
  'love',
  'spend',
  'money',
  'fiancè',
  'sat',
  'yesterday',
  'talk',
  'groom',
  'speech',
  'talk',
  'point',
  'made',
  'upset',
  'ask',
  'would',
  'okay',
  'mention',
  'hous',
  'bought',
  'say',
  'one',
  'bought',
  'bit',
  'taken',
  'aback',
  'ask',
  'said',
  'confid',
  'boost',
  'speech',
  'said',
  'feel',
  'comfort',
  'idea',
  'think',
  'unfair',
  'acknowledg',
  'fact',
  'id',
  'sacrif',
  'much',
  'abl',
  'buy',
  'hous',
  'remind',
  'much',
  'contribut',
  'said',
  'chang',
  'hous',
  'matter',
  'said',
  'bought',
  'refus',
  'peopl',
  'alway',
  'think',
  'hous',
  'bought',
  'someth',
  'never',
  'chang',
  'matter',
  'hard',
  'tri',
  'prove',
  'contribut',
  '%',
  'got',
  'made',
  'said',
  'realli',
  'overthink',
  'whole',
  'thing',
  'make',
  'big',
  'deal',
  'got',
  'argument',
  'start',
  'yell',
  'say',
  'one',
  'favor',
  'ask',
  'yet',
  'im',
  'make',
  'ridicul',
  'small',
  'request',
  'hill',
  'die',
  'basic',
  'sulk',
  'refus',
  'answer',
  'call',
  'basic',
  'start',
  'silent',
  'treatment',
  'til',
  'cave',
  'aita',
  'make',
  'hill',
  'die',
  '[',
  'edit',
  ']',
  'fianc',
  'come',
  'humbl',
  'background',
  'money',
  'alway',
  'struggl',
  'famili',
  'becom',
  'obviou',
  'insecur',
  'come',
  'money',
  'especi',
  'compar',
  'much',
  'make',
  'vs',
  'make',
  'ive',
  'never',
  'made',
  'feel',
  'less',
  'never',
  'took',
  'advantag',
  'way',
  'recent',
  'request',
  'realli',
  'cut',
  'guard',
  'say',
  'least'],
 ['boyfriend',
  'jake',
  'month',
  'thing',
  'fine',
  'better',
  'judgment',
  'move',
  'place',
  'coupl',
  'month',
  'ago',
  'sinc',
  'get',
  'kind',
  'possess',
  'protect',
  'immedi',
  'told',
  'cut',
  'shit',
  'off-put',
  'thing',
  'seem',
  'get',
  'better',
  'anyway',
  'friend',
  'mexico',
  'get',
  'marri',
  'ive',
  'excit',
  'fli',
  'wed',
  'sinc',
  'told',
  'engag',
  'year',
  'ago',
  'howev',
  'jake',
  'made',
  'clear',
  'want',
  'go',
  'say',
  'mexico',
  'danger',
  'even',
  'though',
  'ive',
  'mani',
  'time',
  'even',
  'live',
  'year',
  'speak',
  'spanish',
  'friend',
  'know',
  'way',
  'around',
  'matter',
  'say',
  'want',
  'go',
  'coupl',
  'day',
  'ago',
  'passport',
  'went',
  'miss',
  'nightstand',
  'im',
  'suppos',
  'go',
  'tomorrow',
  'time',
  'get',
  'new',
  'one',
  'look',
  'everywher',
  'luck',
  'ask',
  'jake',
  'behav',
  'littl',
  'suspici',
  'dismiss',
  'believ',
  'would',
  'actual',
  'take',
  'passport',
  'keep',
  'go',
  'give',
  'red',
  'flag',
  'decid',
  'thorough',
  'look',
  'around',
  'went',
  'morn',
  'start',
  'go',
  'everyth',
  'search',
  'becam',
  'increasingli',
  'certain',
  'took',
  'passport',
  'start',
  'care',
  'pick',
  'drawer',
  'cabinet',
  'anger',
  'grew',
  'becam',
  'lot',
  'less',
  'care',
  'start',
  'turn',
  'drawer',
  'pri',
  'open',
  'brief',
  'case',
  'made',
  'total',
  'mess',
  'found',
  'behind',
  'book',
  'bookcas',
  'studi',
  'never',
  'go',
  'studi',
  'definit',
  'put',
  'furiou',
  'go',
  'thing',
  'ransack',
  'place',
  'said',
  'would',
  'given',
  'passport',
  'back',
  'need',
  'go',
  'crazyim',
  'angri',
  'took',
  'begin',
  'believ',
  'say',
  'go',
  'give',
  'back',
  'third',
  'seriou',
  'relationship',
  'perspect',
  'kind',
  'thing',
  'aita',
  'overreact',
  'ransack',
  'exboyfriend',
  'place',
  'edit',
  'thank',
  'repli',
  'guess',
  'still',
  'weird',
  'state',
  'disbelief',
  'made',
  'question',
  'everyth',
  'ive',
  'stop',
  'shake',
  'time',
  'think',
  'talk',
  'mom',
  'read',
  'repli',
  'feel',
  'kinda',
  'silli',
  'even',
  'wonder',
  'someth',
  'wrong',
  'suffic',
  'say',
  'good',
  'ive',
  'block',
  'everyth',
  'dad',
  'brother',
  'get',
  'left',
  'stuff',
  'im',
  'go',
  'tri',
  'put',
  'mind',
  'focu',
  'awesom',
  'trip'],
 ['dad',
  'marri',
  'step',
  'mom',
  'year',
  'ago',
  'want',
  'live',
  'want',
  'gone',
  'ive',
  'insist',
  'stay',
  'want',
  'live',
  'mom',
  'husband',
  'piec',
  'work',
  'alway',
  'clash',
  'announc',
  'last',
  'month',
  'allow',
  'eat',
  'anyth',
  'cook',
  'cook',
  'anyth',
  'buy',
  'arang',
  'food',
  'complet',
  'separ',
  'ingredi',
  'level',
  'includ',
  'salt',
  'im',
  'problem',
  'deal',
  'annoy',
  'anyway',
  'handl',
  'want',
  'act',
  'entitl',
  'start',
  'buy',
  'cook',
  'food',
  'weve',
  'go',
  'like',
  'sinc',
  'sister',
  'accid',
  'day',
  'ago',
  'day',
  'accid',
  'step',
  'mother',
  'text',
  'afternoon',
  'say',
  'bring',
  'sister',
  'children',
  'theyll',
  'arriv',
  'around',
  'midnight',
  'ask',
  'buy',
  'groceri',
  'snack',
  'make',
  'late',
  'dinner',
  'never',
  'repli',
  'anyth',
  'say',
  'hour',
  'look',
  'good',
  'sister',
  'go',
  'surgeri',
  'end',
  'success',
  'thank',
  'make',
  'full',
  'recoveri',
  'came',
  'notic',
  'food',
  'inde',
  'hungri',
  'angri',
  'told',
  'problem',
  'deal',
  'said',
  'im',
  'jerk',
  'said',
  'take',
  'one',
  'know',
  'one',
  'end',
  'order',
  'pizza',
  'dad',
  'told',
  'line',
  'done',
  'want',
  'emerg',
  'done',
  'favor',
  'would',
  'gone',
  'long',
  'way',
  'improv',
  'relationshiop',
  'told',
  'relationship',
  'alway',
  'hopeless',
  'hate',
  'reason',
  'noth',
  'make',
  'hate',
  'less',
  'point',
  'ive',
  'accept',
  'care',
  'anymor',
  'said',
  'true',
  'im',
  'ground'],
 ['hello',
  'fifty-six-year-old',
  'mother',
  'thirty-three-year-old',
  'kelli',
  'grandmoth',
  'sixteen-year-old',
  'opal',
  'kelli',
  'becam',
  'pregnant',
  'opal',
  'sixteen',
  'husband',
  'eddi',
  'alway',
  'believ',
  'right',
  'choos',
  'howev',
  'kelli',
  'insist',
  'want',
  'keep',
  'babi',
  'give',
  'adopt',
  'help',
  'lot',
  'kelli',
  'seventeen',
  'opal',
  'born',
  'howev',
  'kelli',
  'would',
  'rare',
  'help',
  'parent',
  'even',
  'avail',
  'even',
  'ask',
  'watch',
  'opal',
  'hour',
  'ran',
  'errand',
  'issu',
  'rare',
  'kelli',
  'complain',
  'look',
  'opal',
  'kelli',
  'chose',
  'attend',
  'colleg',
  'graduat',
  'job',
  'flexibl',
  'schedul',
  'yet',
  'rare',
  'made',
  'avail',
  'opal',
  'kelli',
  'home',
  'sleep',
  'get',
  'dress',
  'parti',
  'also',
  'reli',
  'us',
  'purchas',
  'suppli',
  'book',
  'appoint',
  'opal',
  'eddi',
  'would',
  'seriou',
  'talk',
  'kelli',
  'need',
  'step',
  'parent',
  'kelli',
  'would',
  'make',
  'empti',
  'promis',
  'never',
  'follow',
  'kelli',
  'move',
  'opal',
  'six',
  'kelli',
  'come',
  'around',
  'mayb',
  'fortnight',
  'holiday',
  'eddi',
  'one',
  'rais',
  'opal',
  'opal',
  'extrem',
  'well',
  'good',
  'friend',
  'play',
  'tenni',
  'particip',
  'volunt',
  'project',
  'plan',
  'marin',
  'biologist',
  'graduat',
  'school',
  'year',
  'end',
  'opal',
  'last',
  'week',
  'nice',
  'dinner',
  'celebr',
  'good',
  'grade',
  'kelli',
  'came',
  'along',
  'sever',
  'famili',
  'member',
  'chat',
  'enjoy',
  'dinner',
  'togeth',
  'kelli',
  'stood',
  'make',
  'announc',
  'announc',
  'us',
  'pregnant',
  'boyfriend',
  'child',
  'alreadi',
  'upset',
  'suppos',
  'opal',
  'special',
  'moment',
  'kelli',
  'announc',
  'pregnanc',
  'complet',
  'inappropri',
  'eddi',
  'said',
  'noth',
  'kelli',
  'start',
  'say',
  'boyfriend',
  'busi',
  'life',
  'right',
  'eddi',
  'interrupt',
  'kelli',
  'told',
  'would',
  'noth',
  'rais',
  'new',
  'babi',
  'would',
  'provid',
  'anyth',
  'suppli',
  'childcar',
  'etc',
  'kelli',
  'flip',
  'argument',
  'ensu',
  'kelli',
  'call',
  'us',
  'heartless',
  'claim',
  'throw',
  'grandchild',
  'away',
  'eddi',
  'call',
  'selfish',
  'expect',
  'us',
  'rais',
  'anoth',
  'child',
  'old',
  'rais',
  'babi',
  'kelli',
  'thirty-thre',
  'need',
  'grow',
  'give',
  'babi',
  'adopt',
  'parent',
  'rais',
  'kelli',
  'left',
  'tear',
  'famili',
  'broken',
  'side',
  'one',
  'agre',
  'kelli',
  'say',
  'adopt',
  'opal',
  'send',
  'messag',
  'care',
  'newest',
  'grandchild',
  'say',
  'taken',
  'asid',
  'privat',
  'instead',
  'shoot',
  'front',
  'everyon',
  'reaction',
  'cruel',
  'eddi',
  'feel',
  'blunt',
  'kelli',
  'sugarcoat',
  'realiti',
  'opal',
  'like',
  'show',
  'us',
  'stori',
  'sometim',
  'thought',
  'would',
  'good',
  'place',
  'ask',
  'neutral',
  'perspect',
  'aita',
  'edit',
  'opal',
  'alway',
  'abl',
  'express',
  'feel',
  'eddi',
  'opal',
  'also',
  'therapist',
  'avail',
  'speak',
  'whenev',
  'need',
  'opal',
  'visit',
  'therapist',
  'weekli',
  'middl',
  'school',
  'need',
  'see',
  'month',
  'take',
  'opal',
  'mall',
  'trip',
  'make',
  'happen',
  'celebr',
  'dinner',
  'spoke',
  'privat',
  'opal',
  'incid',
  'know',
  'way',
  'view',
  'burden',
  'granddaught',
  'bless',
  'mani',
  'happiest',
  'moment',
  'involv',
  'support',
  'opal',
  'watch',
  'grow',
  'opal',
  'sixteen',
  'need',
  'kind',
  'constant',
  'attent',
  'care',
  'newborn',
  'babi',
  'old',
  'abl',
  'adequ',
  'rais',
  'newborn',
  'babi',
  'even',
  'want',
  'biggest',
  'problem',
  'kelli',
  'adult',
  'need',
  'start',
  'act',
  'like',
  'one',
  'kelli',
  'suppos',
  'outliv',
  'us',
  'realiti',
  'eddi',
  'go',
  'aliv',
  'children',
  'entir',
  'live',
  'kelli',
  'need',
  'accept',
  'expect',
  'us',
  'take',
  'respons',
  'must',
  'independ',
  'edit',
  'sever',
  'peopl',
  'inform',
  'part',
  'kelli',
  'expect',
  'us',
  'rais',
  'new',
  'babi',
  'unclear',
  'apolog',
  'thought',
  'self-explanatori',
  'realiz',
  'none',
  'actual',
  'experienc',
  'happen',
  'kelli',
  'talk',
  'busi',
  'boyfriend',
  'live',
  'began',
  'talk',
  'grate',
  'would',
  'alway',
  'look',
  'grandchildren',
  'sinc',
  'gain',
  'much',
  'joy',
  'rais',
  'opal',
  'would',
  'even',
  'happier',
  'rais',
  'second',
  'babi',
  'eddi',
  'call',
  'kelli',
  'confirm',
  'expect',
  'us',
  'adopt',
  'rais',
  'second',
  'babi',
  'well',
  'kelli',
  'said',
  'boyfriend',
  'time',
  'rais',
  'babi',
  'put',
  'babi',
  'adopt',
  'would',
  'throw',
  'away',
  'assum',
  'almost',
  'sixti',
  'year',
  'old',
  'would',
  'troubl',
  'opposit',
  'rais',
  'newborn',
  'babi'],
 ['marri',
  'husband',
  'year',
  'ago',
  'divorc',
  'previous',
  'widow',
  'two',
  'daughter',
  'anni',
  'believ',
  'first',
  'marriag',
  'ami',
  'second',
  'husband',
  'told',
  'late',
  'wife',
  'ex',
  'wife',
  'issu',
  'blend',
  'famili',
  'remarri',
  'anni',
  'board',
  'remarri',
  'fact',
  'strain',
  'end',
  'second',
  'marriag',
  'also',
  'honest',
  'anni',
  'never',
  'forgav',
  'remarri',
  'never',
  'want',
  'anyth',
  'ami',
  'turn',
  'tell',
  'major',
  'role',
  'play',
  'found',
  'three',
  'week',
  'ago',
  'dinner',
  'extend',
  'famili',
  'stori',
  'know',
  'ami',
  'around',
  'year',
  'old',
  'took',
  'special',
  'interest',
  'necklac',
  'belong',
  'late',
  'wife',
  'husband',
  'gave',
  'necklac',
  'ami',
  'upset',
  'anni',
  'mother',
  'possess',
  'meant',
  'go',
  'husband',
  'told',
  'anni',
  'one',
  'item',
  'need',
  'get',
  'ami',
  'entitl',
  'someth',
  'anni',
  'brought',
  'piec',
  'mother',
  'wore',
  'husband',
  'told',
  'special',
  'gift',
  'give',
  'sister',
  'selfish',
  'ex',
  'wife',
  'told',
  'mother',
  'would',
  'want',
  'someon',
  'special',
  'sister',
  'piec',
  'well',
  'anni',
  'never',
  'got',
  'tri',
  'take',
  'ami',
  'punish',
  'last',
  'time',
  'saw',
  'told',
  'go',
  'fuck',
  'hell',
  'ami',
  'still',
  'necklac',
  'let',
  'get',
  'bad',
  'way',
  'talk',
  'dad',
  'bought',
  'shock',
  'never',
  'would',
  'expect',
  'husband',
  'way',
  'unapologet',
  'told',
  'anni',
  'would',
  'get',
  'day',
  'told',
  'asham',
  'allow',
  'anni',
  'mother',
  'possess',
  'chose',
  'ami',
  'give',
  'crap',
  'late',
  'wife',
  'signific',
  'item',
  'anni',
  'would',
  'told',
  'incred',
  'lucki',
  'daughter',
  'ever',
  'speak',
  'would',
  'blame',
  'never',
  'furiou',
  'judg',
  'famili',
  'said',
  'take',
  'husband',
  'side',
  'daughter',
  'even',
  'know',
  'except',
  'nephew',
  'niec',
  'told',
  'whole',
  'stori',
  'also',
  'think',
  'husband',
  'fuck',
  'thing',
  'aita'],
 ['context',
  'husband',
  '[',
  ']',
  'use',
  'unemploy',
  'year',
  'recent',
  'start',
  'job',
  'warehous',
  'yesterday',
  'laundri',
  'grab',
  'work',
  'pant',
  'dig',
  'hand',
  'pocket',
  'empti',
  'put',
  'wash',
  'machin',
  'like',
  'alway',
  'husband',
  'happen',
  'walk',
  'saw',
  'search',
  'pant',
  'pocket',
  'rush',
  'yell',
  'put',
  'pant',
  'alreadi',
  'fold',
  'piec',
  'paper',
  'snatch',
  'start',
  'scream',
  'respect',
  'privaci',
  'get',
  'hand',
  'thing',
  'genuinli',
  'dumbfound',
  'told',
  'take',
  'easi',
  'alway',
  'laundri',
  'lash',
  'say',
  'right',
  'come',
  'ask',
  'first',
  'worri',
  'import',
  'document',
  'get',
  'lost',
  'like',
  'one',
  'pull',
  'said',
  'import',
  'document',
  'insid',
  'pocket',
  'ask',
  'see',
  'paper',
  'said',
  'show',
  'ask',
  'said',
  'get',
  'ask',
  'jack',
  'shit',
  'disrespect',
  'privaci',
  'almost',
  'laugh',
  'privaci',
  'pocket',
  'like',
  'stranger',
  'dig',
  'refus',
  'speak',
  'later',
  'brought',
  'new',
  'closet',
  'lock',
  'move',
  'cloth',
  'insid',
  'ask',
  'seriou',
  'said',
  'teach',
  'respect',
  'privaci',
  'deter',
  'snoop',
  'went',
  'back',
  'speak',
  'im',
  'genuin',
  'confus',
  'aita'],
 ['ms',
  'live',
  'wife',
  'fs',
  'two',
  'kid',
  'wife',
  'parent',
  'stay',
  'us',
  'temporarili',
  'home',
  'seriou',
  'repair',
  'freak',
  'accid',
  'fault',
  'luckili',
  'insur',
  'repair',
  'complet',
  'two',
  'month',
  'realli',
  'get',
  'along',
  'in-law',
  'especi',
  'father-in-law',
  'agre',
  'let',
  'stay',
  'thought',
  'time',
  'would',
  'fli',
  'bad',
  'im',
  'post',
  'guess',
  'wrong',
  'mil',
  'job',
  'fil',
  'work',
  'late',
  'shift',
  'around',
  'pm',
  'get',
  'home',
  'watch',
  'youtub',
  'live',
  'room',
  'play',
  'music',
  'loud',
  'volum',
  'speaker',
  'system',
  'colleg',
  'hous',
  'parti',
  'bass',
  'tear',
  'apart',
  'wall',
  'loud',
  'still',
  'loud',
  'kid',
  'light',
  'sleeper',
  'wake',
  'go',
  'wake',
  'want',
  'make',
  'stop',
  'kid',
  'need',
  'rest',
  'school',
  'need',
  'get',
  'morn',
  'drop',
  'go',
  'work',
  'wife',
  'work',
  'overnight',
  'shift',
  'wit',
  'ive',
  'tri',
  'talk',
  'mil',
  'fil',
  'ask',
  'pleas',
  'keep',
  'nois',
  'kid',
  'bed',
  'time',
  'pm',
  'expect',
  'complet',
  'silenc',
  'realli',
  'think',
  'need',
  'tv',
  'loud',
  'late',
  'night',
  'fil',
  'argu',
  'said',
  'finish',
  'work',
  'til',
  'pm',
  'im',
  'basic',
  'expect',
  'thing',
  'enjoy',
  'work',
  'told',
  'work',
  'day',
  'tough',
  'shit',
  'complain',
  'wife',
  'take',
  'side',
  'say',
  'kid',
  'need',
  'learn',
  'sleep',
  'bit',
  'everyday',
  'nois',
  'told',
  'everyday',
  'nois',
  'mil',
  'excess',
  'noisi',
  'inconsider',
  'see',
  'fil',
  'send',
  'link',
  'buy',
  'earplug',
  'kid',
  'ive',
  'gotten',
  'realli',
  'fed',
  'in-law',
  'hous',
  'theyr',
  'stay',
  'us',
  'guest',
  'think',
  'theyr',
  'realli',
  'selfish',
  'decid',
  'put',
  'parent',
  'control',
  'tv',
  'in-law',
  'cant',
  'use',
  'pm',
  'next',
  'day',
  'time',
  'tv',
  'cant',
  'use',
  'without',
  'put',
  'password',
  'know',
  'affect',
  'wife',
  'get',
  'work',
  'normal',
  'home',
  'ish',
  'fil',
  'incred',
  'piss',
  'said',
  'im',
  'act',
  'like',
  'child',
  'keep',
  'pester',
  'demand',
  'password',
  'wife',
  'also',
  'mad',
  'upset',
  'dad',
  'im',
  'annoy',
  'whole',
  'situat',
  'im',
  'sick',
  'hear',
  'want',
  'know',
  'im',
  'moral',
  'clear',
  'edit',
  'thank',
  'award'],
 ['three',
  'sibl',
  'age',
  'im',
  'oldest',
  'fourth',
  'everi',
  'year',
  'everi',
  'singl',
  'one',
  'birthday',
  'expect',
  'celebr',
  'mom',
  'well',
  'weve',
  'done',
  'sinc',
  'littl',
  'taught',
  'give',
  'thank',
  'carri',
  '+',
  'give',
  'birth',
  'us',
  'im',
  'grate',
  'without',
  'issu',
  'though',
  'becom',
  'less',
  'birthday',
  'more-so',
  'anniversari',
  'day',
  'mom',
  'gave',
  'birth',
  'everi',
  'year',
  'birthday',
  'mom',
  'get',
  'gift',
  'got',
  'older',
  'expect',
  'get',
  'monetari',
  'gift',
  'card',
  'homemad',
  'stuff',
  'recent',
  'birthday',
  'gift',
  'much',
  'need',
  'cloth',
  'dishwar',
  'new',
  'apart',
  'dad',
  'howev',
  'got',
  'mom',
  'new',
  'macbook',
  'sibl',
  'got',
  'gift',
  'youngest',
  'brother',
  'expect',
  'give',
  'much',
  'year',
  'old',
  'sister',
  'year',
  'old',
  'nd',
  'brother',
  'work',
  'theyr',
  'expect',
  'give',
  'gift',
  'sister',
  'pull',
  'asid',
  'birthday',
  'said',
  'sorri',
  'get',
  'much',
  'got',
  'sweater',
  'love',
  'want',
  'get',
  'mom',
  'pressur',
  'get',
  'certain',
  'necklac',
  'mom',
  'appar',
  'mom',
  'drop',
  'hint',
  'month',
  'sister',
  'worri',
  'mom',
  'would',
  'upset',
  'feel',
  'underappreci',
  'get',
  'ask',
  'much',
  'sister',
  'said',
  '$',
  'honestli',
  'lost',
  'mom',
  'chew',
  'later',
  'afternoon',
  'mom',
  'open',
  'gift',
  'think',
  'ridicul',
  'even',
  'want',
  'sister',
  'spend',
  'much',
  'gift',
  'mom',
  'start',
  'cri',
  'dad',
  'kick',
  'mom',
  'answer',
  'call',
  'aunt',
  'mom',
  'sister',
  'call',
  'said',
  'po',
  'respect',
  'mother',
  'im',
  'selfish',
  'narcissist',
  'child',
  'jealou',
  'gift',
  'mom',
  'got',
  'thought',
  'right',
  'know',
  'two',
  'week',
  'mom',
  'answer',
  'call',
  'post',
  'facebook',
  'inspir',
  'quot',
  'let',
  'go',
  'toxic',
  'life',
  'blood',
  'equal',
  'famili',
  'hard',
  'mother',
  'sever',
  'famili',
  'member',
  'aunt',
  'grandma',
  'uncl',
  'two',
  'cousin',
  'repli',
  'post',
  'obvious',
  'direct',
  'vagu',
  'comment',
  'horribl',
  'daughter',
  'idk',
  'think',
  'mani',
  'peopl',
  'side',
  'edit',
  'thank',
  'feedback',
  'think',
  'realli',
  'eye',
  'open',
  'im',
  'go',
  'tri',
  'find',
  'therapist',
  'unload',
  'fuckeri',
  'also',
  'thank',
  'award',
  'feel',
  'inclin',
  'think',
  'would',
  'pretti',
  'cool',
  'donat',
  'instead',
  'cool',
  'chariti',
  'choic',
  'instead'],
 ['context',
  'everi',
  'holiday',
  'mother',
  'would',
  'ask',
  'women',
  'famili',
  'sister',
  'sister',
  'in-law',
  'wife',
  'femal',
  'cousin',
  'send',
  'sampl',
  'dessert',
  'plan',
  'bring',
  'celebr',
  'test',
  'see',
  'dessert',
  'could',
  'make',
  'food',
  'menu',
  'wife',
  'complain',
  'mother',
  'deliber',
  'reject',
  'everi',
  'dessert',
  'sampl',
  'sent',
  'mani',
  'time',
  'mother',
  'told',
  'honest',
  'keep',
  'guest',
  'best',
  'interest',
  'heart',
  'yet',
  'wife',
  'still',
  'thought',
  'mother',
  'deliber',
  'exclud',
  'sinc',
  'dessert',
  'sampl',
  'reject',
  'year',
  'christma',
  'mother',
  'thing',
  'time',
  'told',
  'everi',
  'woman',
  'particip',
  'make',
  'cooki',
  'sampl',
  'send',
  'test',
  'wife',
  'took',
  'challeng',
  'honest',
  'work',
  'realli',
  'hard',
  'make',
  'good',
  'sampl',
  'sent',
  'mother',
  'day',
  'ago',
  'result',
  'came',
  'yesterday',
  'came',
  'home',
  'work',
  'found',
  'wife',
  'upset',
  'ask',
  'wrong',
  'told',
  'mother',
  'reject',
  'sampl',
  'sent',
  'decid',
  'exclud',
  'bake',
  'food',
  'listmenu',
  'christma',
  'year',
  'know',
  'say',
  'told',
  'back',
  'invit',
  'attend',
  'christma',
  'famili',
  'stun',
  'heard',
  'make',
  'statement',
  'tri',
  'talk',
  'said',
  'done',
  'call',
  'unreason',
  'decid',
  'bail',
  'whole',
  'famili',
  'cooki',
  'samplethat',
  'freak',
  'crazi',
  'quit',
  'unreason',
  'full',
  'argument',
  'state',
  'mother',
  'caus',
  'told',
  'mother',
  'pretti',
  'seriou',
  'care',
  'food',
  'offer',
  'guest',
  'sinc',
  'go',
  'rel',
  'come',
  'side',
  'countri',
  'told',
  'stop',
  'mentio',
  'later',
  'heard',
  'cri',
  'despit',
  'tell',
  'bake',
  'amaz',
  'peopl',
  'prefer',
  'aita',
  'insist',
  'decis',
  'unreason',
  'info',
  'ask',
  'whose',
  'cooki',
  'sampl',
  'made',
  'menu',
  'answer',
  'sister',
  'cousin',
  'info',
  'thing',
  'put',
  'wife',
  'one',
  'whose',
  'sampl',
  'reject',
  'sil',
  'brother',
  'wife',
  'younger',
  'sister',
  'mother',
  'forc',
  'anyon',
  'particip',
  'whoever',
  'want',
  'take',
  'part',
  'dessert',
  'sinc',
  'mother',
  'tend',
  'care',
  'categori',
  'type',
  'food',
  'dishesappetizerssaladsstuff',
  'like',
  'welcom',
  'state',
  'updat',
  'great',
  'got',
  'phone',
  'brother',
  'told',
  'wife',
  'thing',
  'wife',
  'decid',
  'back',
  'invit',
  'spend',
  'christma',
  'famili',
  'well',
  'turn',
  'wife',
  'mustv',
  'told',
  'decis',
  'decid',
  'follow',
  'lead',
  'brother',
  'piss',
  'say',
  'wife',
  'encourag',
  'wife',
  'see',
  'problem',
  'gotten',
  'bigger',
  'know',
  'younger',
  'sister',
  'might',
  'join',
  'decid',
  'go',
  'well',
  'know',
  'got',
  'control',
  'quickli',
  'guess',
  'well',
  'tri',
  'discuss',
  'mother',
  'soon',
  'see',
  'goe'],
 ['husband',
  'know',
  'cook',
  'also',
  'fan',
  'food',
  'cook',
  'countri',
  'origin',
  'see',
  'live',
  'fast',
  'food',
  'motiv',
  'learn',
  'cook',
  'famili',
  'common',
  'meal',
  'took',
  'get',
  'done',
  'properli',
  'cook',
  'entir',
  'list',
  'favorit',
  'meal',
  'prais',
  'cook',
  'encourag',
  'learn',
  'eat',
  'dinner',
  'parent',
  'hous',
  'excus',
  'go',
  'wash',
  'hand',
  'done',
  'left',
  'tabl',
  'husband',
  'still',
  'eat',
  'make',
  'way',
  'back',
  'heard',
  'dad',
  'tell',
  'take',
  'easi',
  'eat',
  'lot',
  'ask',
  'husband',
  'cook',
  'eat',
  'well',
  'home',
  'husband',
  'said',
  'cook',
  'food',
  'make',
  'fed',
  'pig',
  'human',
  'hurt',
  'offend',
  'show',
  'infront',
  'told',
  'longer',
  'cook',
  'comment',
  'turn',
  'seat',
  'walk',
  'right',
  'past',
  'took',
  'purs',
  'said',
  'head',
  'home',
  'got',
  'back',
  'later',
  'say',
  'like',
  'even',
  'happi',
  'still',
  'eat',
  'food',
  'still',
  'perfect',
  'yet',
  'said',
  'tri',
  'protect',
  'feel',
  'hurt',
  'said',
  'cook',
  'anymor',
  'edit',
  '~',
  'im',
  'sorri',
  'post',
  'went',
  'read',
  'comment',
  'felt',
  'hasit',
  'respond',
  'im',
  'overwhelm',
  'want',
  'let',
  'interest',
  'detail',
  'husband',
  'stay',
  'dad',
  'right',
  'cook',
  'said',
  'thought',
  'overreact',
  'actual',
  'go',
  'basic',
  'starv',
  'go',
  'threat',
  'told',
  'could',
  'stay',
  'said',
  'back',
  'til',
  'go',
  'back',
  'cook',
  'see',
  'happen',
  'anytim',
  'soon',
  'stay',
  'pressur'],
 ['titl',
  'sound',
  'bad',
  'hear',
  'stepson',
  'rowan',
  'got',
  'engag',
  'fiance',
  'come',
  'highli',
  'conserv',
  'famili',
  'live',
  'togeth',
  'til',
  'marriag',
  'theyr',
  'great',
  'term',
  'say',
  'parent',
  'bit',
  'much',
  'engag',
  'parti',
  'held',
  'restaur',
  'drove',
  'wife',
  'rowan',
  'snd',
  'best',
  'friend',
  'jack',
  'rowan',
  'car',
  'need',
  'work',
  'thing',
  'went',
  'quit',
  'well',
  'parti',
  'end',
  'everyon',
  'went',
  'home',
  'way',
  'back',
  'stop',
  'store',
  'could',
  'grab',
  'someth',
  'year',
  'old',
  'son',
  'rowan',
  'jack',
  'wait',
  'car',
  'rowan',
  'jack',
  'kept',
  'laugh',
  'young',
  'ladi',
  'walk',
  'toward',
  'us',
  'caus',
  'car',
  'park',
  'next',
  'mine',
  'park',
  'lot',
  'rowan',
  'kept',
  'tri',
  'speak',
  'tri',
  'load',
  'stuff',
  'car',
  'jack',
  'kept',
  'throw',
  'word',
  'serm',
  'annoy',
  'jack',
  'said',
  'hey',
  'want',
  'look',
  '*',
  '*',
  'rowan',
  'said',
  'let',
  'see',
  'jiggl',
  'babi',
  'appal',
  'told',
  'knock',
  'rowan',
  'satcast',
  'repli',
  'relax',
  'give',
  'compliment',
  'bet',
  'get',
  'mani',
  'often',
  'ladi',
  'got',
  'car',
  'start',
  'argu',
  'behavior',
  'shame',
  'act',
  'like',
  'engag',
  'night',
  'argu',
  'back',
  'say',
  'someth',
  'car',
  'lost',
  'told',
  'get',
  'immedi',
  'jack',
  'got',
  'involv',
  'kick',
  'wife',
  'got',
  'back',
  'start',
  'engag',
  'argument',
  'sayingi',
  'cant',
  'let',
  'son',
  'walk',
  'home',
  'emgag',
  'parti',
  'repli',
  'son',
  'cant',
  'harrass',
  'women',
  'way',
  'back',
  'engag',
  'parti',
  'kept',
  'defend',
  'told',
  'either',
  'stay',
  'get',
  'car',
  'drove',
  'rowan',
  'come',
  'home',
  'wife',
  'gave',
  'hell',
  'later',
  'found',
  'stay',
  'one',
  'guy',
  'friend',
  'place',
  'understand',
  'piss',
  'refus',
  'see',
  'wife',
  'said',
  'fault',
  'escal',
  'situat',
  'ober',
  'stupid',
  'shit',
  'boy',
  'age',
  'time',
  'told',
  'cant',
  'car',
  'took',
  'hold',
  'head',
  'said',
  'never',
  'made',
  'walk',
  'night',
  'engag',
  'demand',
  'apolog',
  'aita',
  'kick',
  'friend',
  'car',
  'engag',
  'night'],
 ['mef',
  'boyfriend',
  'date',
  'around',
  '~',
  'month',
  'ive',
  'ride',
  'hors',
  'sinc',
  'around',
  'four',
  'year',
  'old',
  'start',
  'take',
  'lesson',
  'ten',
  'start',
  'help',
  'girl',
  'stabl',
  'hors',
  'ladi',
  'told',
  'sell',
  'due',
  'timeinterest',
  'ask',
  'parent',
  'want',
  'buy',
  'ladi',
  'luckili',
  'parent',
  'abl',
  'buy',
  'mine',
  'ever',
  'sinc',
  'bestest',
  'friend',
  'love',
  'lot',
  'start',
  'date',
  'bf',
  'honest',
  'fact',
  'hors',
  'take',
  'lot',
  'time',
  'fine',
  'singl',
  'could',
  'spend',
  'like',
  'three',
  'four',
  'hour',
  'day',
  'stabl',
  'start',
  'date',
  'cut',
  'three',
  'hour',
  'everi',
  'day',
  'roughli',
  'long',
  'take',
  'cleaningprepar',
  'foodrid',
  'also',
  'friend',
  'stabl',
  'obvious',
  'mean',
  'also',
  'social',
  'day',
  'would',
  'ride',
  'tri',
  'spend',
  'less',
  'time',
  'talk',
  'would',
  'make',
  'hour',
  'six',
  'month',
  'told',
  'spent',
  'much',
  'time',
  'stabl',
  'prioritis',
  'relationship',
  'somehow',
  'famili',
  'got',
  'involv',
  'say',
  'strang',
  'priorit',
  'way',
  'comfort',
  'bit',
  'pushov',
  'agre',
  'first',
  'meant',
  'cut',
  'time',
  'stabl',
  'evolv',
  'cut',
  'ride',
  'day',
  'ride',
  'two',
  'day',
  'week',
  'rest',
  'im',
  'simpli',
  'basic',
  'quickli',
  'otherwis',
  'know',
  'hell',
  'annoy',
  'piss',
  'day',
  'give',
  'silent',
  'treatment',
  'know',
  'hors',
  'realli',
  'suffer',
  'ridden',
  'often',
  'still',
  'feel',
  'guilti',
  'im',
  'alway',
  'rush',
  'around',
  'last',
  'night',
  'told',
  'time',
  'sell',
  'ladi',
  'laugh',
  'ask',
  'seriou',
  'told',
  'said',
  'need',
  'start',
  'priorit',
  'relationship',
  'said',
  'ive',
  'done',
  'noth',
  'priorit',
  'relationship',
  'argu',
  'appar',
  'think',
  'put',
  'old',
  'anyway',
  'furiou',
  'told',
  'absolut',
  'happen',
  'would',
  'never',
  'sell',
  'said',
  'reason',
  'person',
  'would',
  'sell',
  'put',
  'hors',
  'favor',
  'boyfriend',
  'reason',
  'hang',
  'insan',
  'hors',
  'peopl',
  'come',
  'reason',
  'peopl',
  'reddit',
  'aita',
  'edit',
  'never',
  'expect',
  'get',
  'much',
  'attent',
  'im',
  'overwhelm',
  'thank',
  'kind',
  'comment',
  'messag',
  'current',
  'sit',
  'ladi',
  'stabl',
  'cri',
  'eye',
  'wake-up',
  'call',
  'boyfriend',
  'left',
  'visit',
  'famili',
  'friend',
  'old',
  'town',
  'earlier',
  'today',
  'post',
  'everyon',
  'worri',
  'well',
  'handl',
  'asap',
  'first',
  'need',
  'go',
  'home',
  'sleep',
  'thank',
  'wonder',
  '❤️',
  '[',
  'updat',
  ']',
  'httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf'],
 ['*',
  '*',
  'edit',
  '*',
  '*',
  'pleas',
  'stop',
  'send',
  'chat',
  'messag',
  'keep',
  'stuff',
  'im',
  'see',
  '*',
  '*',
  'ye',
  'even',
  'say',
  'know',
  'said',
  'messag',
  '*',
  '*',
  'year',
  'ago',
  'got',
  'realli',
  'housepl',
  'start',
  'collect',
  'year',
  'ive',
  'whittl',
  'collect',
  'one',
  'realli',
  'love',
  'niec',
  'jenni',
  'develop',
  'interest',
  'plant',
  'come',
  'talk',
  'help',
  'propag',
  'repot',
  'go',
  'town',
  'two',
  'week',
  'take',
  'care',
  'work',
  'stuff',
  'ask',
  'sil',
  'jenni',
  'could',
  'plant',
  'sit',
  'told',
  'jenni',
  'would',
  'pay',
  'also',
  'give',
  'cut',
  'trade',
  'agre',
  'came',
  'gave',
  'tour',
  'explain',
  'care',
  'need',
  'also',
  'show',
  'prize',
  'plant',
  'sil',
  'ask',
  'much',
  'ran',
  'share',
  'seem',
  'weird',
  'bc',
  'famili',
  'know',
  'ive',
  'gotten',
  'plant',
  'gift',
  'well',
  'return',
  'trip',
  'horrifi',
  'water',
  'gave',
  'right',
  'amount',
  'light',
  'also',
  'decid',
  'give',
  'lot',
  'plant',
  'haircut',
  'big',
  'one',
  'prize',
  'cebu',
  'blue',
  'potho',
  'mother',
  'plant',
  'destroy',
  'climb',
  'one',
  'manjula',
  'potho',
  'done',
  'golden',
  'train',
  'stairwel',
  'string',
  'pearl',
  'heart',
  'rubi',
  'necklac',
  'destroy',
  'silver',
  'stripe',
  'philodendron',
  'worst',
  'pink',
  'princess',
  'philo',
  'reduc',
  'two',
  'leav',
  'albo',
  'monstera',
  'three',
  'even',
  'think',
  'got',
  'node',
  'necessarili',
  'plant',
  'expens',
  'prize',
  'basic',
  'broke',
  'came',
  'meet',
  'give',
  'back',
  'key',
  'scream',
  'scream',
  'jenni',
  'start',
  'cri',
  'say',
  'said',
  'would',
  'give',
  'cut',
  'thought',
  'okay',
  'scream',
  'go',
  'home',
  'get',
  'stole',
  'bring',
  'back',
  'knew',
  'mean',
  'could',
  'destroy',
  'fuck',
  'plant',
  'sil',
  'got',
  'us',
  'said',
  'done',
  'done',
  '*',
  '*',
  'im',
  'sorri',
  'know',
  'one',
  'edit',
  'gone',
  'ahhh',
  'half',
  'origin',
  'post',
  'pleas',
  'read',
  'comment',
  '*',
  '*',
  'said',
  'way',
  'return',
  'everyth',
  'jenni',
  'said',
  'mom',
  'alreadi',
  'sold',
  'marketplac',
  'lost',
  'scream',
  'scream',
  'jenni',
  'cri',
  'mom',
  'got',
  'face',
  'told',
  'tantrum',
  'plant',
  'told',
  'get',
  'fuck',
  'hous',
  'ever',
  'come',
  'anywher',
  'near',
  'home',
  'call',
  'brother',
  'sil',
  'husband',
  'shock',
  'said',
  'told',
  'said',
  'okay',
  'brought',
  'stuff',
  'sold',
  'yet',
  'apolog',
  'told',
  'never',
  'ever',
  'want',
  'either',
  'room',
  'theyr',
  'horribl',
  'aw',
  'irredeem',
  'peopl',
  'hope',
  'burn',
  'hell',
  'belong',
  'told',
  'get',
  'im',
  'upset',
  'im',
  'take',
  'far',
  'famili',
  'mean',
  'hold',
  'grudg',
  'told',
  'leav',
  'cri',
  'rest',
  'day',
  'post',
  'need',
  'know',
  'edict',
  'top',
  'im',
  'overreact',
  'aita',
  'tell',
  'longer',
  'welcom',
  'home',
  'even',
  'want',
  'room'],
 ['hear',
  'read',
  'whole',
  'text',
  'wife',
  'marri',
  'year',
  'admit',
  'hothead',
  'bit',
  'much',
  'especi',
  'mad',
  'take',
  'respons',
  'mistak',
  'make',
  'like',
  'clean',
  'bathroom',
  'shower',
  'fill',
  'car',
  'ga',
  'use',
  'even',
  'stand',
  'let',
  'unload',
  'anger',
  'frustrat',
  'home',
  'public',
  'tend',
  'start',
  'argu',
  'public',
  'instead',
  'wait',
  'til',
  'get',
  'home',
  'recent',
  'come',
  'workplac',
  'berat',
  'someth',
  'night',
  'like',
  'get',
  'stuff',
  'said',
  'would',
  'get',
  'stuff',
  'said',
  'would',
  'embarrass',
  'humiliatingi',
  'affect',
  'job',
  'point',
  'start',
  'get',
  'warn',
  'warn',
  'superior',
  'believ',
  'patient',
  'understand',
  'especi',
  'wife',
  'make',
  'fuss',
  'offic',
  'last',
  'week',
  'middl',
  'hr',
  'meet',
  'next',
  'thing',
  'knew',
  'see',
  'wife',
  'barg',
  'yell',
  'ask',
  'keep',
  'phone',
  'turn',
  'turn',
  'get',
  'warn',
  'sinc',
  'forbid',
  'turn',
  'stun',
  'superior',
  'co',
  'worker',
  'potenti',
  'client',
  'even',
  'move',
  'superior',
  'dealt',
  'call',
  'secur',
  'get',
  'wide',
  'start',
  'argu',
  'tell',
  'came',
  'start',
  'urg',
  'get',
  'seat',
  'tell',
  'back',
  'watch',
  'secur',
  'escort',
  'horribl',
  'fear',
  'job',
  'lost',
  'yell',
  'repeatedli',
  'get',
  'stop',
  'got',
  'kick',
  'eventu',
  'got',
  'told',
  'longer',
  'allow',
  'go',
  'final',
  'last',
  'warn',
  'apolog',
  'went',
  'home',
  'wait',
  'yell',
  'watch',
  'noth',
  'whole',
  'get',
  'mistreat',
  'kick',
  'final',
  'snap',
  'said',
  'line',
  'made',
  'scene',
  'risk',
  'job',
  'miss',
  'call',
  'start',
  'cri',
  'say',
  'still',
  'defend',
  'get',
  'humili',
  'infront',
  'co',
  'worker',
  'told',
  'worri',
  'longer',
  'allow',
  'got',
  'furiou',
  'went',
  'mom',
  'stay'],
 ['sister',
  'got',
  'marri',
  'last',
  'weekend',
  'flew',
  'town',
  'parent',
  'insist',
  'stay',
  'instead',
  'hotel',
  'like',
  'want',
  'parent',
  'consist',
  'late',
  'everyth',
  'think',
  'latin',
  'thing',
  'hate',
  'late',
  'think',
  'disrespect',
  'wed',
  'folk',
  'live',
  'half',
  'hour',
  'church',
  'noon',
  'roll',
  'folk',
  'even',
  'get',
  'readi',
  'yet',
  'adult',
  'deal',
  'get',
  'readi',
  'send',
  'uber',
  'church',
  'check',
  'sister',
  'ask',
  'problem',
  'get',
  'parent',
  'church',
  'told',
  'came',
  'shebw',
  'white',
  'said',
  'respons',
  'get',
  'time',
  'well',
  'nobodi',
  'ask',
  'even',
  'want',
  'stay',
  'everyon',
  'start',
  'call',
  'parent',
  'get',
  'readi',
  'minut',
  'late',
  'servic',
  'shorten',
  'anoth',
  'wed',
  'later',
  'day',
  'everyon',
  'still',
  'mad',
  'get',
  'parent',
  'time',
  'aunt',
  'said',
  'im',
  'asshol',
  'mess',
  'time',
  'wed',
  'mom',
  'say',
  'fault',
  'remind',
  'get',
  'readi',
  'one',
  'think',
  'adult',
  'abl',
  'time',
  'kid',
  'wed',
  'without',
  'help'],
 ['fiancé',
  'start',
  'live',
  'togeth',
  'month',
  'ago',
  'hous',
  'move',
  'run',
  'onlin',
  'busi',
  'home',
  'allow',
  'live',
  'rather',
  'comfort',
  'month',
  'move',
  'quit',
  'job',
  'say',
  'much',
  'hate',
  'go',
  'tri',
  'twitch',
  'stream',
  'live',
  'im',
  'follow',
  'passion',
  'support',
  'although',
  'surpris',
  'turn',
  'event',
  'financi',
  'posit',
  'support',
  'us',
  'felt',
  'anyway',
  'noth',
  'happen',
  'twitch',
  'channel',
  'sure',
  'game',
  'day',
  'bother',
  'even',
  'tri',
  'creat',
  'account',
  'game',
  'pleasur',
  'month',
  'ive',
  'convers',
  'suggest',
  'find',
  'work',
  'keep',
  'tell',
  'im',
  'unsupport',
  'need',
  'time',
  'want',
  'us',
  'buy',
  'bigger',
  'hous',
  'togeth',
  'said',
  'im',
  'fine',
  'current',
  'one',
  'sinc',
  'job',
  'want',
  'get',
  'mortgag',
  'left',
  'pay',
  'everyth',
  'told',
  'found',
  'real',
  'job',
  'mayb',
  'financi',
  'problem',
  'massiv',
  'argument',
  'night',
  'hint',
  'need',
  'new',
  'game',
  'laptop',
  'cost',
  'grand',
  'ive',
  'ignor',
  'ask',
  'outright',
  'buy',
  'birthday',
  'told',
  'fake',
  'job',
  'cover',
  'new',
  'laptop',
  'got',
  'realli',
  'piss',
  'tell',
  'im',
  'selfish',
  'ruin',
  'career',
  'grant',
  'afford',
  'buy',
  'realli',
  'hurt',
  'say',
  'busi',
  'real',
  'job',
  'despit',
  'work',
  'ass',
  'aita',
  'buy',
  'new',
  'laptop'],
 ['eversinc',
  'got',
  'hospit',
  'chronic',
  'problem',
  'husband',
  'introduc',
  'game',
  'everi',
  'even',
  'one',
  'game',
  'use',
  'thing',
  'eye',
  'blindfold',
  'involv',
  'puzzl',
  'rubi',
  'cube',
  'shape',
  'object',
  'et',
  'cetra',
  'wed',
  'take',
  'turn',
  'entertain',
  'coupl',
  'day',
  'ago',
  'tri',
  'get',
  'sign',
  'paper',
  'wear',
  'blind',
  'fold',
  'refus',
  'never',
  'let',
  'take',
  'look',
  'im',
  'sign',
  'neither',
  'say',
  'tri',
  'see',
  'could',
  'leav',
  'signatur',
  'everytim',
  'sign',
  'help',
  'feel',
  'uncomfort',
  'told',
  'want',
  'play',
  'game',
  'unless',
  'show',
  'paper',
  'first',
  'said',
  'nevermind',
  'stop',
  'bring',
  'last',
  'night',
  'tri',
  'convinc',
  'give',
  'tri',
  'even',
  'volunt',
  'go',
  'first',
  'ask',
  'go',
  'show',
  'go',
  'sign',
  'made',
  'face',
  'said',
  'rule',
  'respect',
  'refus',
  'kept',
  'keep',
  'act',
  'worri',
  'suspici',
  'reason',
  'said',
  'clearli',
  'trust',
  'hurt',
  'find',
  'everyth',
  'argument',
  'told',
  'drop',
  'bring',
  'period',
  'mad',
  'despit',
  'say',
  'big',
  'deal',
  'obvious',
  'upset',
  'kept',
  'talk',
  'trust',
  'line',
  'assum',
  'suspect',
  'anyth',
  'like',
  'might',
  'paranoid',
  'help',
  'think',
  'ta',
  'stood',
  'side',
  'famili',
  'even',
  'visit'],
 ['edit',
  'leav',
  'comment',
  'updat',
  'want',
  'know',
  'ill',
  'get',
  'straight',
  'im',
  'colleg',
  'student',
  'last',
  'semest',
  'medic',
  'school',
  'ive',
  'never',
  'abl',
  'get',
  'loan',
  'ive',
  'work',
  'year',
  'get',
  'degre',
  'pay',
  'pocket',
  'take',
  'way',
  'longer',
  'ive',
  'work',
  'two',
  'sometim',
  'three',
  'job',
  'time',
  'bare',
  'social',
  'life',
  'upcom',
  'semest',
  'reach',
  'goal',
  'tuition',
  'quit',
  'one',
  'job',
  'could',
  'relax',
  'bit',
  'serverbartend',
  'two',
  'bar',
  'offic',
  'job',
  'alway',
  'cash',
  'hidden',
  'apart',
  'closet',
  'box',
  'semest',
  'start',
  'week',
  'two',
  'deposit',
  'pay',
  'tuition',
  'boyfriend',
  'sometim',
  'stay',
  'im',
  'im',
  'sinc',
  'ive',
  'save',
  'semest',
  'one',
  'ive',
  'never',
  'told',
  'box',
  'know',
  'pay',
  'school',
  'well',
  'yesterday',
  'night',
  'get',
  'home',
  'put',
  'money',
  'box',
  'gon',
  'na',
  'deposit',
  'today',
  'gone',
  'freak',
  'tore',
  'apart',
  'think',
  'put',
  'somewher',
  'els',
  'know',
  'call',
  'boyfriend',
  'like',
  'crazi',
  'answer',
  'sleep',
  'last',
  'night',
  'panick',
  'morn',
  'final',
  'call',
  'back',
  'im',
  'yell',
  'money',
  'act',
  'confus',
  'like',
  'im',
  'crazi',
  'come',
  'im',
  'still',
  'piss',
  'final',
  'admit',
  'took',
  'borrow',
  'hell',
  'pay',
  'back',
  'tf',
  'gon',
  'na',
  'get',
  '$',
  'two',
  'week',
  'went',
  'rage',
  'call',
  'polic',
  'report',
  'theft',
  'well',
  'hour',
  'guess',
  'got',
  'phone',
  'call',
  'famili',
  'blow',
  'phone',
  'mother',
  'said',
  'realli',
  'hurt',
  'racist',
  'thing',
  'theyv',
  'harass',
  'past',
  'hour',
  'stress',
  'even',
  'hate',
  'im',
  'feel',
  'bad',
  'stole',
  'money',
  'ive',
  'save',
  'month',
  'brother',
  'call',
  'respect',
  'said',
  'theyll',
  'help',
  'pay',
  'back',
  'go',
  'polic',
  'station',
  'tell',
  'want',
  'drop',
  'charg',
  'realli',
  'believ',
  'could',
  'never',
  'get',
  'money',
  'back',
  'still',
  'know',
  'hate',
  'im',
  'contempl',
  'im',
  'realli',
  'piss',
  'cri',
  'fuck',
  'day'],
 ['futur',
  'sil',
  'liz',
  'turn',
  'bridezilla',
  'go',
  'war',
  'everyon',
  'everi',
  'stupid',
  'thing',
  'natur',
  'color',
  'red',
  'love',
  'hair',
  'liz',
  'blond',
  'love',
  'red',
  'hair',
  'fact',
  'ever',
  'sinc',
  'meet',
  'die',
  'hair',
  'almost',
  'exactli',
  'color',
  'mind',
  'think',
  'weird',
  'monopoli',
  'particular',
  'shade',
  'red',
  'free',
  'hair',
  'whatev',
  'want',
  'well',
  'ask',
  'week',
  'dye',
  'hair',
  'differ',
  'color',
  'want',
  'hair',
  'uniqu',
  'wed',
  'offer',
  'cover',
  'cost',
  'well',
  'said',
  'hair',
  'want',
  'chang',
  'told',
  'brother',
  'told',
  'whatev',
  'want',
  'hair',
  'said',
  'hell',
  'talk',
  'liz',
  'get',
  'back',
  'well',
  'work',
  'liz',
  'come',
  'parent',
  'theyv',
  'taken',
  'side',
  'say',
  'special',
  'day',
  'need',
  'accomod',
  'import',
  'futur',
  'relationship',
  'get',
  'along',
  'believ',
  'accomod',
  'whatev',
  'want',
  'hair',
  'hair',
  'busi',
  'anyway',
  'parent',
  'tell',
  'bigger',
  'person',
  'know',
  'year',
  'old',
  'bigger',
  'person',
  'compar',
  'year',
  'old',
  'liz',
  'told',
  'im',
  'make',
  'minor',
  'issu',
  'big',
  'problem',
  'want',
  'wed',
  'aita',
  'give'],
 ['happen',
  'weekend',
  'earli',
  'thirti',
  'gf',
  'late',
  'twenti',
  'invit',
  'wed',
  'ceremoni',
  'colleagu',
  'could',
  'bring',
  'someon',
  'ask',
  'gf',
  'ive',
  'date',
  'year',
  'would',
  'like',
  'join',
  'realli',
  'happi',
  'appar',
  'love',
  'wed',
  'sinc',
  'live',
  'togeth',
  'drove',
  'pick',
  'wed',
  'time',
  'spare',
  'ceremoni',
  'come',
  'look',
  'realli',
  'beauti',
  'obvious',
  'put',
  'time',
  'fix',
  'hair',
  'make-up',
  'also',
  'wear',
  'off-whit',
  'dress',
  'rather',
  'ornat',
  'got',
  'told',
  'look',
  'stun',
  'ask',
  'could',
  'chang',
  'differ',
  'color',
  'dress',
  'ceremoni',
  'im',
  'one',
  'etiquett',
  'far',
  'one',
  'thing',
  'heard',
  'everywher',
  'wear',
  'white',
  'dress',
  'wed',
  'unless',
  'bride',
  'becam',
  'pretti',
  'upset',
  'want',
  'know',
  'wrong',
  'dress',
  'said',
  'would',
  'inappropri',
  'wear',
  'white',
  'off-whit',
  'dress',
  'unless',
  'bride',
  '-',
  'like',
  'wedding-law',
  'someth',
  'tri',
  'lightheart',
  'roll',
  'eye',
  'said',
  'outdat',
  'tradit',
  'women',
  'virgin',
  'friend',
  'got',
  'marri',
  'everyon',
  'wore',
  'white',
  'big',
  'thing',
  'anymor',
  'told',
  'know',
  'dress',
  'code',
  'ceremoni',
  'sinc',
  'say',
  'white',
  'cloth',
  'still',
  'thought',
  'chang',
  'anoth',
  'color',
  'white',
  'almost-whit',
  '-',
  'colleagu',
  'get',
  'marri',
  'idea',
  'felt',
  'gf',
  'becam',
  'realli',
  'upset',
  'told',
  'tri',
  'control',
  'wear',
  'abus',
  'honestli',
  'made',
  'realli',
  'upset',
  'hurt',
  'said',
  'someth',
  'along',
  'line',
  'fuck',
  'well',
  'go',
  'wed',
  'abus',
  'told',
  'fuck',
  'car',
  'began',
  'cri',
  'want',
  'apolog',
  'give',
  'hug',
  'told',
  'get',
  'edit',
  'clarifi',
  'never',
  'left',
  'driveway',
  'home',
  'drop',
  'middl',
  'nowher',
  'anyth',
  'like',
  'drove',
  'call',
  'text',
  'bunch',
  'answer',
  'want',
  'talk',
  'right',
  'turn',
  'phone',
  'attend',
  'ceremoni',
  'bride',
  'one',
  'wear',
  'white',
  'feel',
  'gut',
  'feel',
  'right',
  'one',
  'got',
  'home',
  'phone',
  'blown',
  'text',
  'best',
  'friend',
  'say',
  'inconsider',
  'control',
  'apolog',
  'behavior',
  'ive',
  'vent',
  'friend',
  '-',
  'agre',
  'said',
  'asshol',
  'thing',
  'tell',
  'could',
  'wear',
  'dress',
  '-',
  'noth',
  'feel',
  'right',
  'sinc',
  'colleagu',
  'wed',
  'better',
  'safe',
  'sorri',
  'im',
  'also',
  'sure',
  'asshol',
  'situat',
  'reddit',
  'aita',
  'updat',
  'never',
  'expect',
  'thread',
  'get',
  'mani',
  'repli',
  'incred',
  'thank',
  'reach',
  'comment',
  'realli',
  'realli',
  'appreci',
  'taken',
  'time',
  'tell',
  'gf',
  'found',
  'thread',
  'know',
  'knew',
  'handl',
  'found',
  'talk',
  'phone',
  'apolog',
  'apolog',
  'pretti',
  'good',
  'talk',
  'ask',
  'could',
  'come',
  'said',
  'would',
  'best',
  'us',
  'go',
  'separ',
  'way',
  'got',
  'upset',
  'ask',
  'even',
  'tri',
  'work',
  'basic',
  'said',
  'good',
  'bye',
  'said',
  'dick',
  'small',
  'actual',
  'made',
  'laugh',
  'pretti',
  'matur',
  'convers',
  'hung',
  'im',
  'pretti',
  'sad',
  'realli',
  'made',
  'feel',
  'happi',
  'mani',
  'comment',
  '-',
  'first',
  'disagr',
  'call',
  'abus',
  'would',
  'futur',
  'disagr',
  'look',
  'hurt',
  'think',
  'abus',
  'would',
  'right',
  'thing',
  'think',
  'abus',
  'said',
  'anyway',
  'would',
  'want',
  'anyway',
  'think',
  'thing',
  'work',
  'best',
  'us',
  'thank',
  'keep',
  'tri',
  'respond',
  'lot',
  'messag',
  'read'],
 ['togeth',
  'marri',
  'month',
  'thing',
  'use',
  'use',
  'pad',
  'period',
  'recent',
  'abl',
  'start',
  'use',
  'tampon',
  'medic',
  'problem',
  'comparison',
  'tampon',
  'work',
  'better',
  'especi',
  'im',
  'outsidesay',
  'like',
  'work',
  'travel',
  'husband',
  'ryan',
  'hate',
  'never',
  'trueli',
  'gave',
  'reason',
  'sayh',
  'feel',
  'comfort',
  '*',
  '*',
  'use',
  '*',
  '*',
  'think',
  'big',
  'deal',
  'first',
  'sinc',
  'said',
  'hate',
  'lot',
  'stuff',
  'put',
  'anyway',
  'except',
  'ask',
  'go',
  'back',
  'use',
  'pad',
  'made',
  'clear',
  'sinc',
  'bodi',
  'get',
  'decid',
  'threw',
  'away',
  'tampon',
  'access',
  'get',
  'upset',
  '*',
  '*',
  'keep',
  'peac',
  'bought',
  'box',
  'hid',
  'away',
  'somehow',
  'found',
  'threw',
  'away',
  'find',
  'til',
  'period',
  'yesterday',
  'realiz',
  'tampon',
  'use',
  'tire',
  'stress',
  'yell',
  'admit',
  'throw',
  'away',
  'whole',
  'box',
  'argu',
  'alreadi',
  'knew',
  'felt',
  '*',
  'stuff',
  '*',
  'yet',
  'decid',
  'still',
  '*',
  'keep',
  'around',
  '*',
  'lost',
  'told',
  'right',
  'told',
  'get',
  'alreadi',
  'stare',
  'almost',
  'tear',
  'someth',
  'walk',
  'later',
  'went',
  'coupl',
  'take',
  'discomfert',
  'consuder',
  'said',
  'alreadi',
  'tri',
  'speak',
  'tampon',
  'yet',
  'brush',
  'insult',
  'verbal',
  'abus',
  'also',
  'said',
  'still',
  'insist',
  'use',
  'im',
  'outsid',
  'hous',
  'said',
  'happen',
  'feel',
  'bad',
  'play',
  'wet',
  'end',
  'much',
  'pain',
  'lash',
  'go',
  'far',
  'valid',
  'point'],
 ['husband',
  'work',
  'realli',
  'hard',
  'last',
  'two',
  'year',
  'advanc',
  'compani',
  'final',
  'got',
  'promot',
  'im',
  'realli',
  'realli',
  'proud',
  'parent',
  'want',
  'take',
  'us',
  'dinner',
  'celebr',
  'husband',
  'absolut',
  'love',
  'prime',
  'rib',
  'one',
  'place',
  'area',
  'serv',
  'pick',
  'restaur',
  'thing',
  'is-',
  'im',
  'fond',
  'steak',
  'ill',
  'eat',
  'rare',
  'prefer',
  'chicken',
  'fish',
  'look',
  'menu',
  'leav',
  'right',
  'limit',
  'menu',
  'place',
  'one',
  'fish',
  'entre',
  'two',
  'chicken',
  'entre',
  'none',
  'sound',
  'good',
  'variou',
  'reason',
  'suggest',
  'pick',
  'someplac',
  'els',
  'everyon',
  'eat',
  'refus',
  'cite',
  'rare',
  'get',
  'go',
  'place',
  'go',
  'place',
  'area',
  'regularli',
  'true',
  'place',
  'lot',
  'varieti',
  'everyon',
  'eat',
  'suggest',
  'ask',
  'could',
  'prepar',
  'fish',
  'chicken',
  'without',
  'marinad',
  'sauc',
  'want',
  'difficult',
  'kitchen',
  'staff',
  'next',
  'suggest',
  'order',
  'dessert',
  'everyon',
  'els',
  'ate',
  'entre',
  'done',
  'would',
  'take',
  'want',
  'could',
  'eat',
  'dinner',
  'kid',
  'ate',
  'dessert',
  'opt',
  'go',
  'want',
  'sit',
  'eat',
  'good',
  'time',
  'everyon',
  'els',
  'husband',
  'ask',
  'go',
  'could',
  'celebr',
  'peopl',
  'import',
  'told',
  'need',
  'get',
  'go',
  'late',
  'go',
  'came',
  'back',
  'littl',
  'hour',
  'later',
  'kid',
  'go',
  'box',
  'said',
  'think',
  'tell',
  'kid',
  'go',
  'kept',
  'ask',
  'without',
  'lie',
  'make',
  'sound',
  'bad',
  'got',
  'order',
  'go',
  'let',
  'kid',
  'spend',
  'time',
  'grandpar',
  'talk',
  'park',
  'lot',
  'told',
  'stay',
  'said',
  'put',
  'bad',
  'spot',
  'kid',
  'knew',
  'want',
  'everyon',
  'gotten',
  'picki',
  'eat',
  'one',
  'night',
  'maintain',
  'realli',
  'want',
  'us',
  'eat',
  'dinner',
  'famili',
  'pick',
  'restaur',
  'accomod',
  'menu',
  'aita',
  'updat',
  'comment',
  'pretti',
  'harsh',
  'kick',
  'pant',
  'ive',
  'apolog',
  'profus',
  'husband',
  'go',
  'take',
  'restaur',
  'weekend',
  'buy',
  'camp',
  'gear',
  'eye',
  'start',
  'make',
  'chang',
  'cours'],
 ['friend',
  '[',
  ']',
  'constantli',
  'late',
  'everyth',
  'work-rel',
  'fun',
  'activ',
  'alway',
  'least',
  '-',
  'minut',
  'late',
  'car',
  'oftentim',
  '[',
  ']',
  'pick',
  'hous',
  'work',
  'univers',
  'phd',
  'student',
  'place',
  'along',
  'way',
  'last',
  'time',
  'offer',
  'ride',
  'work',
  'end',
  'minut',
  'late',
  'ive',
  'alreadi',
  'arriv',
  'place',
  'end',
  'late',
  'work',
  'alway',
  'apologet',
  'late',
  'never',
  'chang',
  'week',
  'suppos',
  'give',
  'seminar',
  'univers',
  'crucial',
  'part',
  'phd',
  'program',
  'ask',
  'could',
  'give',
  'ride',
  'work',
  'day',
  'told',
  'sure',
  'pick',
  'must',
  'exactli',
  'minut',
  'later',
  'chuckl',
  'told',
  'joke',
  'promis',
  'morn',
  'seminar',
  'drove',
  'place',
  'got',
  'text',
  'told',
  'would',
  'minut',
  'indic',
  'would',
  'come',
  'text',
  'anyth',
  'drove',
  'around',
  'call',
  'ask',
  'told',
  'work',
  'joke',
  'told',
  'readi',
  'right',
  'minut',
  'start',
  'scream',
  'cri',
  'phone',
  'told',
  'hard',
  'time',
  'morn',
  'readi',
  'right',
  'beg',
  'come',
  'back',
  'pick',
  'seminar',
  'need',
  'school',
  'couldv',
  'done',
  'quick',
  'enough',
  'pick',
  'drop',
  'without',
  'affect',
  'work',
  'decid',
  'want',
  'told',
  'cri',
  'hyperventil',
  'point',
  'said',
  'shed',
  'promis',
  'never',
  'late',
  'anyth',
  'els',
  'reemphas',
  'seminar',
  'crucial',
  'phd',
  'absolut',
  'miss',
  'without',
  'sever',
  'consequ',
  'respond',
  'oh',
  'well',
  'hung',
  'went',
  'day',
  'work',
  'normal',
  'feel',
  'like',
  'couldv',
  'went',
  'back',
  'pick',
  'scenario',
  'sinc',
  'detriment',
  'time',
  'someth',
  'import',
  'hand',
  'feel',
  'like',
  'wake-up',
  'call',
  'chronic',
  'late',
  'edit',
  'thank',
  'everyon',
  'kind',
  'word',
  'answer',
  'common',
  'question',
  'ye',
  'miss',
  'seminar',
  'appar',
  'got',
  'big',
  'troubl',
  'school',
  'think',
  'go',
  'ruin',
  'phd',
  'definit',
  'consequ',
  'regard',
  'friendship',
  'alreadi',
  'way',
  'happen',
  'talk'],
 ['husband',
  'got',
  'car',
  'accid',
  'almost',
  'month',
  'ago',
  'bedridden',
  'due',
  'back',
  'injuri',
  'ive',
  'primari',
  'caregiv',
  'pressur',
  'much',
  'mil',
  'keep',
  'tell',
  'take',
  'care',
  'constantli',
  'beg',
  'take',
  'time',
  'work',
  'ask',
  'send',
  'hourli',
  'updat',
  'condit',
  'first',
  'week',
  'shed',
  'get',
  'mad',
  'caus',
  'issu',
  'visit',
  'everyday',
  'anyth',
  'help',
  'altern',
  'shed',
  'list',
  'thing',
  'famili',
  'keep',
  'tell',
  'worri',
  'sick',
  'son',
  'tri',
  'stay',
  'calm',
  'day',
  'ago',
  'call',
  'berat',
  'replac',
  'sheet',
  'quickli',
  'idea',
  'found',
  'sinc',
  'husband',
  'call',
  'sister',
  'inlaw',
  'call',
  'tell',
  'mom',
  'instal',
  'camera',
  'bedroom',
  'see',
  'take',
  'proper',
  'care',
  'son',
  'stun',
  'search',
  'room',
  'found',
  'camera',
  'call',
  'mil',
  'huge',
  'fight',
  'admit',
  'said',
  'feel',
  'concern',
  'want',
  'make',
  'sure',
  'son',
  'care',
  'despit',
  'call',
  'everyday',
  'yell',
  'tell',
  'longer',
  'allow',
  'home',
  'lost',
  'went',
  'rant',
  'im',
  'stop',
  'see',
  'son',
  'see',
  'liter',
  'make',
  'sick',
  'famili',
  'call',
  'later',
  'get',
  'back',
  'decis',
  'told',
  'breach',
  'privaci',
  'took',
  'advantag',
  'situat',
  'said',
  'im',
  'take',
  'person',
  'cant',
  'blame',
  'concern',
  'mother',
  'want',
  'make',
  'sure',
  'son',
  'fine',
  'especi',
  'sinc',
  'list',
  'thing',
  'thought',
  'wrong',
  'end',
  'convers',
  'husband',
  'upset',
  'tell',
  'im',
  'vindict',
  'mom',
  'cant',
  'come',
  'hell',
  'move',
  'argu',
  'went',
  'outsid',
  'silent',
  'eversinc',
  'aita'],
 ['ugh',
  'hear',
  'bil',
  'husband',
  'brother',
  'marri',
  'women',
  'greec',
  'name',
  '*',
  'nana',
  '*',
  'reason',
  'divorc',
  'much',
  'conserv',
  'bil',
  'tri',
  'control',
  'cloth',
  'place',
  'went',
  'want',
  'divorc',
  'hop',
  'nana',
  'would',
  'accept',
  'life',
  'offer',
  'stay',
  'happen',
  'year',
  'ago',
  'move',
  'back',
  'inlaw',
  'wed',
  'see',
  'often',
  'tri',
  'comment',
  'dress',
  'multipl',
  'ocass',
  'unbear',
  'sinc',
  'inlaw',
  'said',
  'struggl',
  'depress',
  'let',
  'go',
  'friday',
  'inlaw',
  'celebr',
  'husband',
  'th',
  'birthday',
  'home',
  'wore',
  'heart-shap',
  'blue',
  'dress',
  'hair',
  'eat',
  'bil',
  'point',
  'said',
  'cleavag',
  'show',
  'wore',
  'dress',
  'look',
  'inappropri',
  'famili',
  'gather',
  'utterli',
  'shock',
  'everyon',
  'stare',
  'felt',
  'embarrass',
  'spot',
  'look',
  'wait',
  'blow',
  'probabl',
  'laugh',
  'told',
  'knock',
  'knock',
  'said',
  'said',
  'nana',
  'paus',
  'seem',
  'confus',
  'mention',
  'name',
  'fake',
  'laugh',
  'said',
  'nana',
  'said',
  'nana',
  'goddamn',
  'busi',
  'im',
  'wear',
  'ok',
  'got',
  'upset',
  'quickli',
  'left',
  'tabl',
  'sil',
  'laugh',
  'husband',
  'parent',
  'upset',
  'later',
  'said',
  'way',
  'line',
  'bring',
  'nana',
  'bil',
  'know',
  'heartbroken',
  'depress',
  'mom',
  'said',
  'petti',
  'need',
  'dig',
  'prove',
  'point',
  'husband',
  'think',
  'im',
  'wrong',
  'well',
  'deliber',
  'hurt',
  'bring',
  'nana'],
 ['[',
  ']',
  'husband',
  '[',
  ']',
  'breadwinn',
  'famili',
  'stay',
  'home',
  'kid',
  'preschool',
  'age',
  'pay',
  'mortgag',
  'bill',
  'household',
  'need',
  'food',
  'kid',
  'needsetc',
  'set',
  'monthli',
  'budget',
  'categori',
  'handl',
  'get',
  'everyth',
  'done',
  'recent',
  'becom',
  'overwhelm',
  'told',
  'handl',
  'groceri',
  'shop',
  'let',
  'ask',
  'write',
  'list',
  'stuff',
  'need',
  'could',
  'calcul',
  'total',
  'also',
  'hed',
  'idea',
  'much',
  'ill',
  'spend',
  'take',
  'credit',
  'card',
  'issu',
  'way',
  'wed',
  'watch',
  'spend',
  'habit',
  'howev',
  'said',
  'im',
  'never',
  'allow',
  'get',
  'someth',
  'list',
  'unless',
  'im',
  'pay',
  'way',
  'friday',
  'groceri',
  'shop',
  'usual',
  'saw',
  'store',
  'nice',
  'shoe',
  'sale',
  'price',
  'insanli',
  'low',
  'brand',
  'decid',
  'grab',
  'pair',
  'husband',
  'think',
  'hed',
  'happi',
  'sinc',
  'need',
  'new',
  'sneaker',
  'anyway',
  'bought',
  'show',
  'flip',
  'say',
  'made',
  'huge',
  'mistak',
  'buy',
  'someth',
  'list',
  'agre',
  'thought',
  'sinc',
  'shoe',
  'itd',
  'differ',
  'said',
  'screw',
  'bought',
  'sneaker',
  'without',
  'even',
  'tell',
  'defens',
  'said',
  'price',
  'low',
  'like',
  'spent',
  '$',
  'shoe',
  'also',
  'saw',
  'great',
  'deal',
  'want',
  'nice',
  'sneaker',
  'plainli',
  'said',
  'consid',
  'steal',
  'sinc',
  'never',
  'consent',
  'sneaker',
  'purchas',
  'said',
  'im',
  'irrespons',
  'money',
  'longer',
  'incom',
  'spend',
  'habit',
  'need',
  'grib',
  'felt',
  'hurt',
  'said',
  'argu',
  'hour',
  'avoid',
  'speak',
  'rest',
  'day',
  'next',
  'day',
  'went',
  'return',
  'sneaker',
  'took',
  'money',
  'back',
  'got',
  'home',
  'even',
  'lost',
  'found',
  'return',
  'said',
  'believ',
  'petti',
  'childish',
  'actual',
  'explain',
  'correct',
  'mistak',
  'tri',
  'contact',
  'store',
  'told',
  'sneaker',
  'alreadi',
  'sold',
  'got',
  'even',
  'angrier',
  'told',
  'accus',
  'steal',
  'tri',
  'nice',
  'gestur',
  'yell',
  'lot',
  'nerv',
  'call',
  'nice',
  'gestur',
  'use',
  'money',
  'told',
  'right',
  'yell',
  'correct',
  'mistak',
  'gave',
  'back',
  'money',
  'accus',
  'steal',
  'threw',
  'fit',
  'went',
  'friend',
  'came',
  'home',
  'late',
  'night',
  'still',
  'talk',
  'mess',
  'mayb',
  'purchas',
  'know',
  'list',
  'want',
  'sneaker',
  'thought',
  'nice',
  'gestur'],
 ['sister',
  'brother',
  'involv',
  'rais',
  'togeth',
  'believ',
  'nuclear',
  'biolog',
  'famili',
  'found',
  'dad',
  'bio',
  'dad',
  'even',
  'know',
  'turn',
  'older',
  'sibl',
  'share',
  'bio',
  'dad',
  'differ',
  'one',
  'also',
  'first',
  'cousin',
  'bio',
  'bio',
  'brother',
  'dad',
  'left',
  'mom',
  'hurt',
  'betray',
  'overal',
  'disgust',
  'lie',
  'two',
  'decad',
  'equal',
  'mad',
  'lie',
  'hurt',
  'dad',
  'sibl',
  'less',
  'cut',
  'relationship',
  'strain',
  'majorli',
  'dad',
  'move',
  'boyfriend',
  'fianc',
  'covid',
  'hit',
  'point',
  'three',
  'us',
  'agre',
  'dad',
  'matter',
  'noth',
  'could',
  'chang',
  'meant',
  'found',
  'bio',
  'father',
  'mine',
  'extens',
  'decid',
  'real',
  'dad',
  'dad',
  'stepdad',
  'brother',
  'even',
  'correct',
  'two',
  'littl',
  'girl',
  'call',
  'dad',
  'grandpa',
  'say',
  'stepgrandpa',
  'call',
  'bio',
  'get',
  'call',
  'grandpa',
  'broke',
  'dad',
  'heart',
  'decid',
  'much',
  'accept',
  'talk',
  'essenti',
  'told',
  'know',
  'place',
  'stay',
  'lane',
  'demot',
  'clear',
  'messag',
  'noth',
  'would',
  'chang',
  'piss',
  'tri',
  'push',
  'meet',
  'real',
  'dad',
  'told',
  'okay',
  'go',
  'back',
  'said',
  'initi',
  'invit',
  'wed',
  'whole',
  'mess',
  'told',
  'longer',
  'welcom',
  'want',
  'show',
  'told',
  'relationship',
  'real',
  'dad',
  'chang',
  'thing',
  'us',
  'told',
  'dad',
  'real',
  'dad',
  'everyth',
  'done',
  'us',
  'real',
  'sibl',
  'technic',
  'half',
  'sibl',
  'cousin',
  'dad',
  'till',
  'dad',
  '%',
  'biolog',
  'meaningless',
  'best',
  'come',
  'longer',
  'want',
  'said',
  'hurt',
  'sil',
  'marri',
  'brother',
  'told',
  'asshol',
  'throw',
  'half',
  'face',
  'cut',
  'wed',
  'like',
  'sibl',
  'whole',
  'live',
  'think',
  'almost',
  'annoy',
  'dad',
  'shit',
  'discard',
  'like',
  'noth',
  'aita'],
 ['background',
  'husband',
  'stay',
  'late',
  'night',
  'wake',
  'earli',
  'go',
  'work',
  'get',
  'home',
  'get',
  'hr',
  'nap',
  'could',
  'make',
  'lack',
  'sleep',
  'also',
  'readi',
  'stay',
  'late',
  'play',
  'consol',
  'valu',
  'sleep',
  'one',
  'rule',
  'hous',
  'enforc',
  'strictli',
  'interrupt',
  'sleep',
  'liter',
  'put',
  'sign',
  'bedroom',
  'door',
  'say',
  'donotwakemeup',
  'circumst',
  'unless',
  'someon',
  'hurt',
  'dead',
  'though',
  'case',
  'said',
  'still',
  'much',
  'help',
  'anyway',
  'kid',
  'would',
  'sometim',
  'wake',
  'seriou',
  'reason',
  'got',
  'mad',
  'start',
  'lock',
  'door',
  'get',
  'access',
  'room',
  'hour',
  'main',
  'problem',
  'past',
  'tuesday',
  'yo',
  'son',
  'hot',
  'oil',
  'spill',
  'hand',
  'yo',
  'sister',
  'cook',
  'heard',
  'scream',
  'saw',
  'oil',
  'cover',
  'hand',
  'half',
  'arm',
  'brought',
  'first',
  'aid',
  'kit',
  'much',
  'pain',
  'skin',
  'look',
  'realli',
  'bad',
  'rush',
  'wake',
  'husband',
  'kept',
  'knock',
  'got',
  'respons',
  'tri',
  'open',
  'lock',
  'spent',
  'knock',
  'door',
  'phone',
  'turn',
  'get',
  'dress',
  'daughter',
  'ask',
  'neighbor',
  'drive',
  'us',
  'hospit',
  'wast',
  'time',
  'caus',
  'son',
  'cri',
  'neighbor',
  'took',
  'us',
  'hospit',
  'help',
  'feel',
  'livid',
  'whole',
  'time',
  'got',
  'home',
  'husband',
  'pace',
  'around',
  'ask',
  'wherev',
  'answer',
  'text',
  'blew',
  'show',
  'son',
  'injuri',
  'told',
  'pound',
  'door',
  'wake',
  'said',
  'earbud',
  'hear',
  'thing',
  'call',
  'reckless',
  'neglect',
  'ignor',
  'famili',
  'emerg',
  'said',
  'could',
  'say',
  'thing',
  'leav',
  'son',
  'unsupervis',
  'caus',
  'get',
  'burn',
  'stop',
  'argu',
  'went',
  'remov',
  'bedroom',
  'door',
  'lock',
  'start',
  'yell',
  'say',
  'right',
  'refusedto',
  'respond',
  'walk',
  'calm',
  'stop',
  'complain',
  'call',
  'bossi',
  'say',
  'remov',
  'lock',
  'ive',
  'destroy',
  'peac',
  'quiet',
  'caus',
  'sleep',
  'depriv',
  'insist',
  'put',
  'back',
  'refus',
  'could',
  'wrong',
  'ive',
  'done',
  'frustrat',
  'mad',
  'aita'],
 ['live',
  'apart',
  'year',
  'time',
  'ive',
  'roommat',
  'one',
  'first',
  'two',
  'year',
  'live',
  'second',
  'rest',
  'time',
  'current',
  'roommat',
  'great',
  'long',
  'term',
  'relationship',
  'christma',
  'got',
  'propos',
  'want',
  'live',
  'togeth',
  'approach',
  'ask',
  'let',
  'fiancé',
  'take',
  'leas',
  'find',
  'new',
  'place',
  'soon',
  'possibl',
  'problem',
  'feel',
  'like',
  'find',
  'new',
  'place',
  'togeth',
  'ive',
  'live',
  'longer',
  'also',
  'told',
  'month',
  'ago',
  'spoke',
  'landlord',
  'leas',
  'togeth',
  'ill',
  'live',
  'alon',
  'sinc',
  'afford',
  'time',
  'agre',
  'said',
  'boyfriend',
  'would',
  'look',
  'place',
  'togeth',
  'told',
  'said',
  'start',
  'look',
  'new',
  'place',
  'everyth',
  'els',
  'expens',
  'made',
  'sens',
  'move',
  'refus',
  'told',
  'alway',
  'ask',
  'landlord',
  'unit',
  'avail',
  'build',
  'start',
  'cuss',
  'fiancé',
  'friend',
  'harass',
  'month',
  'left',
  'leas',
  'im',
  'go',
  'ignor',
  'spoke',
  'mom',
  'think',
  'let',
  'apart',
  'sinc',
  'need',
  'start',
  'save',
  'wed'],
 ['hello',
  'father',
  'year',
  'old',
  'girl',
  'month',
  'ago',
  'found',
  'via',
  'visit',
  'hospit',
  'daughter',
  'late',
  'stage',
  'form',
  'brain',
  'cancer',
  'told',
  'surviv',
  'like',
  'tri',
  'anyway',
  'despit',
  'best',
  'effort',
  'found',
  'improv',
  'cancer',
  'daughter',
  'awar',
  'well',
  'recent',
  'wife',
  'look',
  'hair',
  'straighten',
  'daughter',
  'borrow',
  'found',
  'gram',
  'marijuana',
  'elf-bar',
  'vape',
  'well',
  'partial',
  'empti',
  'handl',
  'tito',
  'vodka',
  'bedroom',
  'confront',
  'daughter',
  'confess',
  'use',
  'substanc',
  'month',
  'point',
  'said',
  'sinc',
  'knew',
  'like',
  'go',
  'surviv',
  'past',
  'want',
  'tri',
  'thing',
  'social',
  'assur',
  'us',
  'respons',
  'user',
  'substanc',
  'live',
  'legal',
  'state',
  'vape',
  'though',
  'smoke',
  'cigarett',
  'drink',
  'occasion',
  'roll',
  'joint',
  'normal',
  'would',
  'want',
  'children',
  'use',
  'thought',
  'could',
  'make',
  'except',
  'due',
  'circumst',
  'wife',
  'howev',
  'disagre',
  'drink',
  'glass',
  'wine',
  'everi',
  'dislik',
  'nicotin',
  'marijuana',
  'convers',
  'came',
  'conclus',
  'would',
  'allow',
  'thing',
  'supervis',
  'long',
  'retail',
  'store',
  'dispensari',
  'street',
  'dealer',
  'though',
  'wife',
  'remain',
  'adam',
  'aita'],
 ['engag',
  'fianc',
  'month',
  'share',
  'financ',
  'want',
  'got',
  'rais',
  'salari',
  'earn',
  '%',
  'notic',
  'use',
  'ask',
  'pay',
  'friend',
  'whenev',
  'say',
  'pay',
  'hed',
  'respond',
  '%',
  'act',
  '%',
  'unfair',
  'im',
  'dserv',
  'sever',
  'time',
  'trick',
  'pay',
  'friend',
  'meal',
  'ask',
  'publicli',
  'let',
  'say',
  'im',
  'nice',
  'say',
  'hate',
  'confront',
  'especi',
  'public',
  'place',
  'like',
  'restaur',
  'grin',
  'pay',
  'last',
  'tuesday',
  'ask',
  'join',
  'buddi',
  'dinner',
  'told',
  'start',
  'pay',
  'food',
  'expect',
  'said',
  'got',
  'worri',
  'got',
  'restaur',
  'met',
  'friend',
  'order',
  'food',
  'middl',
  'meal',
  'lean',
  'whisper',
  'would',
  'pay',
  'everyth',
  'friend',
  'order',
  'got',
  'mad',
  'whisper',
  'back',
  'noooo',
  'probabl',
  'reli',
  'caus',
  'scene',
  'public',
  'infront',
  'friend',
  'said',
  'enough',
  'money',
  'could',
  'pay',
  'everyon',
  'food',
  '%',
  'rememb',
  'fume',
  'insid',
  'instead',
  'react',
  'neg',
  'lose',
  'temper',
  'wait',
  'til',
  'bill',
  'arriv',
  'alreadi',
  'split',
  'start',
  'first',
  'order',
  'paid',
  'mine',
  'excus',
  'restroom',
  'sneak',
  'got',
  'car',
  'went',
  'home',
  'start',
  'get',
  'phonecal',
  'fianc',
  'text',
  'ask',
  'text',
  'back',
  'say',
  'appreci',
  'put',
  'situat',
  'basic',
  'trick',
  'pay',
  'friend',
  'food',
  'told',
  'went',
  'home',
  'stop',
  'repli',
  'hour',
  'later',
  'came',
  'start',
  'yell',
  'call',
  'selfish',
  'irrat',
  'cheapskat',
  'childish',
  'sneak',
  'like',
  'leav',
  'stuck',
  'bill',
  'could',
  'pay',
  'call',
  'brother',
  'help',
  'loud',
  'argument',
  'walk',
  'friend',
  'speak',
  'told',
  'theyr',
  'disappoint',
  'behavior',
  'tell',
  'take',
  'time',
  'reflect',
  'type',
  'woman',
  'gon',
  'na',
  'marri',
  'aita',
  'expect',
  'fair',
  'justifi',
  'eta',
  'info',
  'said',
  'restaur',
  'expens',
  'could',
  'paid',
  'admit',
  'tell',
  'til',
  'later',
  'know',
  'id',
  'refus',
  'still',
  'think',
  'reaction',
  'childish',
  'unaccept'],
 ['brother',
  'fred',
  'wife',
  'sarah',
  'financi',
  'stabl',
  'bit',
  'surpris',
  'sister',
  'kati',
  'announc',
  'pregnant',
  'howev',
  'kept',
  'month',
  'ago',
  'kati',
  'plan',
  'famili',
  'trip',
  'brother',
  'sil',
  'decid',
  'opt',
  'cut',
  'cost',
  'babi',
  'mom',
  'dad',
  'decid',
  'cancel',
  'trip',
  'altogeth',
  'anoth',
  'one',
  'later',
  'sinc',
  'mom',
  'health',
  'great',
  'either',
  'greatli',
  'irk',
  'kati',
  'realli',
  'look',
  'forward',
  'trip',
  'made',
  'unsubtl',
  'remark',
  'fred',
  'sarah',
  'children',
  'money',
  'clearli',
  'upset',
  'unfortun',
  'due',
  'sever',
  'complic',
  'babi',
  'stillborn',
  'month',
  'brother',
  'sil',
  'understand',
  'still',
  'devast',
  'especi',
  'sil',
  'mental',
  'health',
  'well',
  'yesterday',
  'host',
  'littl',
  'famili',
  'dinner',
  'home',
  'sister',
  'brother',
  'sil',
  'parent',
  'time',
  'dinner',
  'sil',
  'went',
  'bathroom',
  'meanwhil',
  'husband',
  'ask',
  'fred',
  'well',
  'fred',
  'could',
  'repli',
  'kati',
  'jump',
  'said',
  'well',
  'though',
  'loss',
  'sad',
  'think',
  'good',
  'thing',
  'least',
  'worri',
  'money',
  'anymor',
  'said',
  'bring',
  'kid',
  'world',
  'unless',
  'sure',
  'provid',
  'fred',
  'went',
  'red-fac',
  'said',
  'would',
  'abl',
  'provid',
  'child',
  'may',
  'money',
  'extra',
  'luxuri',
  'would',
  'everyth',
  'child',
  'almost',
  'cri',
  'purpl',
  'anger',
  'quickli',
  'drag',
  'kati',
  'away',
  'kitchen',
  'demand',
  'possess',
  'say',
  'someth',
  'insensit',
  'got',
  'incred',
  'defens',
  'said',
  'made',
  'practic',
  'observ',
  '%',
  'correct',
  'better',
  'see',
  'straight',
  'cloud',
  'emot',
  'time',
  'sarah',
  'come',
  'bathroom',
  'shock',
  'see',
  'fred',
  'tear',
  'kept',
  'get',
  'hyster',
  'ask',
  'wrong',
  'knew',
  'kati',
  'presenc',
  'would',
  'ruin',
  'thing',
  'ask',
  'get',
  'look',
  'incred',
  'hurt',
  'angri',
  'went',
  'anyway',
  'fortun',
  'parent',
  'late',
  'see',
  'whole',
  'spectacl',
  'came',
  'home',
  'found',
  'happen',
  'shock',
  'upset',
  'kati',
  'mom',
  'think',
  'perhap',
  'kick',
  'kati',
  'like',
  'aita',
  '&',
  'xb',
  'eta',
  'clariti',
  'kati',
  'ought',
  'enough',
  'matur',
  'know',
  'say'],
 ['got',
  'marri',
  'month',
  'ago',
  'dress',
  'long',
  'laci',
  'gown',
  'mom',
  'wore',
  'wed',
  'mom',
  'pass',
  'away',
  'year',
  'ago',
  'dress',
  'import',
  'big',
  'plan',
  'keep',
  'safe',
  'damag',
  'would',
  'wear',
  'dress',
  'wed',
  'would',
  'switch',
  'casual',
  'dress',
  'recept',
  'wear',
  'dress',
  'eat',
  'drink',
  'anyth',
  'except',
  'water',
  'would',
  'stay',
  'insid',
  'time',
  'promis',
  'im',
  'usual',
  'crazi',
  'cleanli',
  'mom',
  'dress',
  'thought',
  'damag',
  'broke',
  'heart',
  'also',
  'knew',
  'want',
  'wear',
  'got',
  'marri',
  'piec',
  'ador',
  'dress',
  'alway',
  'dream',
  'would',
  'wear',
  'bridesmaid',
  'knew',
  'well',
  'particular',
  'dress',
  'room',
  'venu',
  'get',
  'readi',
  'dress',
  'hang',
  'safe',
  'place',
  'room',
  'day',
  'wed',
  'went',
  'check',
  'someth',
  'wed',
  'leav',
  'bridesmaid',
  'room',
  'happen',
  'told',
  'open',
  'bottl',
  'pinot',
  'noir',
  'favorit',
  'celebr',
  'pour',
  'glass',
  'began',
  'walk',
  'around',
  'check',
  'room',
  'one',
  'bridesmaid',
  'anna',
  'want',
  'get',
  'closer',
  'look',
  'dress',
  'got',
  'realli',
  'close',
  'start',
  'touch',
  'lace',
  'somehow',
  'hand',
  'hold',
  'wine',
  'glass',
  'slip',
  'wine',
  'spill',
  'bottom',
  'dress',
  'came',
  'upstair',
  'told',
  'happen',
  'start',
  'sob',
  'maid',
  'honor',
  'call',
  'sever',
  'profession',
  'cleaner',
  'said',
  'way',
  'could',
  'get',
  'dress',
  'wed',
  'told',
  'us',
  'way',
  'save',
  'dress',
  'could',
  'get',
  'moh',
  'start',
  'call',
  'becam',
  'extrem',
  'angri',
  'ask',
  'anna',
  'hell',
  'hold',
  'red',
  'wine',
  'close',
  'dress',
  'knew',
  'care',
  'dismiss',
  'said',
  'big',
  'deal',
  'plan',
  'wear',
  'dress',
  'could',
  'gotten',
  'damag',
  'way',
  'believ',
  'said',
  'call',
  'thoughtless',
  'careless',
  'stupid',
  'told',
  'longer',
  'part',
  'wed',
  'want',
  'leav',
  'left',
  'neither',
  'us',
  'reach',
  'sinc',
  'got',
  'marri',
  'dress',
  'plan',
  'wear',
  'recept',
  'heartbroken',
  'wear',
  'mom',
  'dress',
  'wed',
  'bridesmaid',
  'joke',
  'bridezilla',
  'kick',
  'anna',
  'made',
  'honest',
  'mistak',
  'absolut',
  'think',
  'im',
  'ah',
  'bridezilla',
  'anna',
  'reaction',
  'horribl',
  'insincer',
  'want',
  'get',
  'stori',
  'chest',
  'ask',
  'peopl',
  'might',
  'imparti',
  'aita'],
 ['husband',
  'famili',
  'like',
  'drink',
  'everi',
  'holiday',
  'includ',
  'multipl',
  'bottl',
  'winecocktail',
  'hate',
  'drink',
  'never',
  'drank',
  'father',
  'alcohol',
  'think',
  'childish',
  'cant',
  'fun',
  'without',
  'drink',
  'year',
  'im',
  'host',
  'christma',
  'chang',
  'decid',
  'sinc',
  'hous',
  'alcohol',
  'allow',
  'get',
  'older',
  'time',
  'grow',
  'husband',
  'sister',
  'call',
  'ask',
  'could',
  'bring',
  'saw',
  'recip',
  'christma',
  'martini',
  'want',
  'bring',
  'told',
  'alcohol',
  'rule',
  'say',
  'much',
  'must',
  'told',
  'rest',
  'famili',
  'start',
  'text',
  'ask',
  'seriou',
  'say',
  'lame',
  'im',
  'budg',
  'turn',
  'husband',
  'sister',
  'host',
  'altern',
  'gather',
  'almost',
  'everyon',
  'choos',
  'go',
  'instead',
  'disrespect',
  'would',
  'spend',
  'one',
  'day',
  'sober',
  'husband',
  'told',
  'talk',
  'sister',
  'invit',
  'gather',
  'said',
  'go',
  'stop',
  'caus',
  'issu',
  'rude',
  'husband',
  'mad',
  'im',
  'make',
  'stay',
  'home',
  'spend',
  'christma',
  'turn',
  'host',
  'chose',
  'alcohol',
  'could',
  'dealt',
  'one',
  'year'],
 ['daughter',
  'sensit',
  'stomach',
  'ever',
  'sinc',
  'kid',
  'certain',
  'food',
  'upset',
  'stomach',
  'point',
  'unabl',
  'stop',
  'throw',
  'weve',
  'seen',
  'countless',
  'doctor',
  'far',
  'nobodi',
  'abl',
  'give',
  'us',
  'clear',
  'answer',
  'advic',
  'keep',
  'get',
  'identifi',
  'trigger',
  'food',
  'cut',
  'diet',
  'pretti',
  'good',
  'idea',
  'food',
  'soda',
  'carbon',
  'drink',
  'chip',
  'cheeto',
  'similar',
  'process',
  'snack',
  'anyth',
  'oili',
  'fri',
  'sweet',
  'unfortun',
  'exacti',
  'kind',
  'stuff',
  'daughter',
  'love',
  'eat',
  'horribl',
  'feel',
  'still',
  'refus',
  'cut',
  'diet',
  'turn',
  'led',
  'spend',
  'lot',
  'time',
  'hospit',
  'past',
  'year',
  'littl',
  'easier',
  'keep',
  'food',
  'away',
  'simpli',
  'buy',
  'older',
  'cant',
  'alway',
  'check',
  'eat',
  'eat',
  'greasi',
  'pizza',
  'school',
  'cafeteria',
  'trade',
  'lunch',
  'classmat',
  'goe',
  'friend',
  'stop',
  'eat',
  'kfc',
  'alway',
  'end',
  'er',
  'cri',
  'shake',
  'cant',
  'stop',
  'throw',
  'case',
  'christma',
  'eve',
  'well',
  'whole',
  'famili',
  'gather',
  'place',
  'cours',
  'among',
  'mani',
  'dish',
  'christma',
  'tabl',
  'main',
  'trigger',
  'food',
  'like',
  'chip',
  'soda',
  'chocol',
  'sweet',
  'mind',
  'far',
  'food',
  'avail',
  'also',
  'varieti',
  'home-cook',
  'tradit',
  'dish',
  'tabl',
  'ingredi',
  'upset',
  'stomach',
  'like',
  'veget',
  'meat',
  'dairi',
  'etc',
  'delici',
  'well-season',
  '-',
  'daughter',
  'say',
  'realli',
  'like',
  'dish',
  'despit',
  'daughter',
  'chose',
  'eat',
  'noth',
  'trigger',
  'food',
  'remind',
  'theyd',
  'make',
  'feel',
  'aw',
  'said',
  'care',
  '*',
  'christma',
  'year',
  '*',
  '*',
  'want',
  'live',
  'littl',
  '*',
  'well',
  'end',
  'violent',
  'throw',
  'er',
  'hour',
  'later',
  'hospit',
  'day',
  'got',
  'hospit',
  'hour',
  'ago',
  'unlik',
  'previou',
  'time',
  'someth',
  'like',
  'happen',
  'time',
  'chose',
  'spend',
  'christma',
  'relax',
  'home',
  'rest',
  'famili',
  'hospit',
  'daughter',
  'side',
  'kept',
  'touch',
  'call',
  'text',
  'told',
  'need',
  'anyth',
  'id',
  'ask',
  'famili',
  'member',
  'bring',
  'made',
  'clear',
  'would',
  'visit',
  'stay',
  'well',
  'daughter',
  'take',
  'well',
  'cri',
  'everi',
  'time',
  'talk',
  'phone',
  'beg',
  'come',
  'told',
  'horribl',
  'abandon',
  'alon',
  'famili',
  'take',
  'side',
  'either',
  'past',
  'day',
  'got',
  'call',
  'everyth',
  'littl',
  'extrem',
  'downright',
  'cruel',
  'heartless',
  'aita',
  'reddit'],
 ['husband',
  'togeth',
  'year',
  'two',
  'kid',
  'half',
  'brother',
  'year',
  'old',
  'past',
  'week',
  'husband',
  'emerg',
  'dad',
  'medic',
  'emerg',
  'want',
  'someon',
  'watch',
  'son',
  'ask',
  'older',
  'son',
  'refus',
  'go',
  'friend',
  'also',
  'ask',
  'daughter',
  'lock',
  'room',
  'studi',
  'restaur',
  'brother',
  'meet',
  'girlfriend',
  'first',
  'time',
  'husband',
  'end',
  'take',
  'son',
  'hospit',
  'mom',
  'watch',
  'came',
  'home',
  'lash',
  'everybodi',
  'call',
  'us',
  'selfish',
  'unfeel',
  'tri',
  'explain',
  'kid',
  'busi',
  'told',
  'get',
  'bull',
  'older',
  'son',
  'couldv',
  'skip',
  'hangout',
  'watch',
  'brother',
  'daughter',
  'couldv',
  'watch',
  'brother',
  'studi',
  'instead',
  'lock',
  'room',
  'scold',
  'well',
  'told',
  'leav',
  'lunch',
  'brother',
  'sinc',
  'visit',
  'town',
  'chanc',
  'meet',
  'girlfriend',
  'yell',
  'told',
  'us',
  'cancel',
  'famili',
  'holiday',
  'trip',
  'christma',
  'year',
  'two',
  'older',
  'kid',
  'upset',
  'said',
  'unfair',
  'call',
  'unreason',
  'cancel',
  'trip',
  'punish',
  'kid',
  'possibl',
  'like',
  'refus',
  'discuss',
  'later',
  'kid',
  'speak',
  'say',
  'good',
  'riddanc',
  '*',
  'edit',
  'husband',
  'suppos',
  'watch',
  'son',
  'time',
  'went',
  'see',
  'brother',
  'restaur',
  'kid',
  'use',
  'watch',
  'brother',
  'neither',
  'parent',
  'home',
  '*',
  '*',
  'updat',
  'husband',
  'told',
  'us',
  'hell',
  'spend',
  'christma',
  'famili',
  'say',
  'need',
  'around',
  'dad',
  'anyway',
  'kid',
  'said',
  'go',
  'dad',
  'sinc',
  'husband',
  'still',
  'talk',
  'neither',
  'kid',
  'happi',
  'thing',
  'turn',
  'feel',
  'like',
  'thing',
  'gotten',
  'hand',
  'problem',
  'got',
  'bigger',
  'choos',
  'basic',
  'abandon',
  'us',
  'christma',
  'also',
  'keep',
  'son',
  'away',
  'sibl',
  '*'],
 ['sister',
  'juli',
  'tri',
  'babi',
  'year',
  'miscarriag',
  'year',
  'ago',
  'outsid',
  'unabl',
  'get',
  'pregnant',
  'heart',
  'hurt',
  'howev',
  'one',
  'thing',
  'agre',
  'famili',
  'handl',
  'allow',
  'talk',
  'babi',
  'around',
  'juli',
  'kid',
  'younger',
  'cant',
  'come',
  'famili',
  'event',
  'shell',
  'attend',
  'attend',
  'babi',
  'shower',
  'baptism',
  'etc',
  'last',
  'one',
  'understand',
  'rest',
  'feel',
  'overkil',
  'got',
  'pregnant',
  'last',
  'year',
  'told',
  'juli',
  'first',
  'reiter',
  'boundari',
  'said',
  'understood',
  'first',
  'hurdl',
  'came',
  'babi',
  'shower',
  'mil',
  'throw',
  'expect',
  'juli',
  'come',
  'mom',
  'told',
  'one',
  'period',
  'respect',
  'said',
  'ridicul',
  'come',
  'matter',
  'peopl',
  'side',
  'famili',
  'came',
  'shower',
  'son',
  'born',
  'post',
  'birth',
  'announc',
  'facebook',
  'parent',
  'lectur',
  'said',
  'go',
  'hurt',
  'juli',
  'said',
  'could',
  'block',
  'mute',
  'said',
  'make',
  'effort',
  'juli',
  'echo',
  'care',
  'id',
  'stop',
  'end',
  'block',
  'save',
  'drama',
  'aunt',
  'th',
  'birthday',
  'parti',
  'next',
  'week',
  'husband',
  'plan',
  'go',
  'bring',
  'son',
  'juli',
  'call',
  'ask',
  'go',
  'ask',
  'get',
  'sitter',
  'son',
  'said',
  'want',
  'miss',
  'parti',
  'aunt',
  'one',
  'peopl',
  'agre',
  'juli',
  'boundari',
  'fair',
  'want',
  'son',
  'get',
  'see',
  'often',
  'juli',
  'got',
  'upset',
  'start',
  'cri',
  'say',
  'unfair',
  'final',
  'snap',
  'ask',
  'would',
  'happen',
  'got',
  'pregnant',
  'would',
  'expect',
  'shower',
  'love',
  'attent',
  'refus',
  'give',
  'peopl',
  'kid',
  'babi',
  'allow',
  'attend',
  'event',
  'said',
  'differ',
  'said',
  'im',
  'coddl',
  'anymor',
  'son',
  'exist',
  'famili',
  'come',
  'decid',
  'want',
  'parent',
  'yell',
  'mean',
  'juli',
  'offer',
  'pay',
  'sitter',
  'said',
  'even',
  'hous',
  'aita'],
 ['daughter',
  'sadi',
  'ex-husband',
  'john',
  'got',
  'divorc',
  'year',
  'ago',
  'primari',
  'custodi',
  'see',
  'two',
  'weekend',
  'month',
  'last',
  'year',
  'got',
  'marri',
  'amanda',
  'sole',
  'custodi',
  'kid',
  '&',
  'previou',
  'marriag',
  'amanda',
  'sahm',
  'health',
  'reason',
  'want',
  'work',
  'john',
  'work',
  'make',
  'good',
  'money',
  'support',
  'enough',
  'live',
  'luxuri',
  'much',
  'higher-pay',
  'job',
  'sinc',
  'sadi',
  'make',
  'sure',
  'best',
  'possibl',
  'life',
  'goe',
  'privat',
  'school',
  'set',
  'colleg',
  'fund',
  'much',
  'better',
  'thing',
  'kid',
  'phone',
  'cloth',
  'etc',
  'still',
  'manag',
  'rais',
  'humbl',
  'take',
  'thing',
  'grant',
  'one',
  'hardest',
  'work',
  'peopl',
  'know',
  'alway',
  'make',
  'sure',
  'get',
  'good',
  'grade',
  'keep',
  'room',
  'tidi',
  'well',
  'last',
  'time',
  'came',
  'back',
  'weekend',
  'john',
  'notic',
  'cloth',
  'bring',
  'back',
  'duffel',
  'size',
  'much',
  'cheaper',
  'poorer',
  'qualiti',
  'usual',
  'buy',
  'ask',
  'told',
  'dad',
  'amanda',
  'take',
  'away',
  'nice',
  'cloth',
  'give',
  'kid',
  'sadi',
  'get',
  'cloth',
  'buy',
  'target',
  'ask',
  'want',
  'back',
  'said',
  'mind',
  'share',
  'sinc',
  'favourit',
  'cloth',
  'kept',
  'problem',
  'came',
  'went',
  'pick',
  'last',
  'weekendi',
  'busi',
  'meet',
  'drive',
  'amanda',
  'offer',
  'pick',
  'sadi',
  'school',
  'happen',
  'got',
  'sunday',
  'john',
  'amanda',
  'ask',
  'sit',
  'sadi',
  'came',
  'hug',
  'amanda',
  'sent',
  'room',
  'quit',
  'harshli',
  'say',
  'punish',
  'yet',
  'confus',
  'sadi',
  'rare',
  'misbehav',
  'sat',
  'kitchen',
  'said',
  'unfair',
  'sadi',
  'go',
  'privat',
  'school',
  'kid',
  'go',
  'public',
  'one',
  'theyd',
  'decid',
  'sadi',
  'would',
  'pull',
  'privat',
  'school',
  'put',
  'school',
  'girl',
  'also',
  'said',
  'keep',
  'sadi',
  'punish',
  'told',
  'blew',
  'told',
  'fair',
  'yell',
  'amanda',
  'kid',
  'even',
  'real',
  'famili',
  'steal',
  'told',
  'uncertain',
  'term',
  'fuck',
  'would',
  'pull',
  'child',
  'school',
  'like',
  'away',
  'friend',
  'cant',
  'afford',
  'told',
  'could',
  'easili',
  'make',
  'much',
  'money',
  'amanda',
  'start',
  'work',
  'field',
  'qualif',
  'job',
  'market',
  'good',
  'told',
  'money',
  'problem',
  'issu',
  'sadi',
  'item',
  'get',
  'stolen',
  'tri',
  'pull',
  'school',
  'ill',
  'take',
  'court',
  'theyv',
  'blow',
  'phone',
  'ever',
  'sinc',
  'call',
  'selfish',
  'ah',
  'tell',
  'stori',
  'friend',
  'told',
  'rub',
  'success',
  'face',
  'still',
  'feel',
  'like',
  'anyth',
  'wrong',
  'still',
  'aita',
  'edit',
  'got',
  'temporari',
  'guardianship',
  'wait',
  'court',
  'hear',
  'go',
  'tri',
  'get',
  'full',
  'custodi',
  'john',
  'get',
  'one',
  'day',
  'week',
  'visit',
  'supervis',
  'least',
  'first',
  'month',
  'contact',
  'amanda',
  'kidsthi',
  'way',
  'still',
  'see',
  'sadi',
  'much',
  'tri',
  'repair',
  'relationship',
  'go',
  'back',
  'contact',
  'us',
  'made',
  'email',
  'cced',
  'lawyer',
  'ive',
  'ask',
  'sadi',
  'thing',
  'back',
  'ive',
  'talk',
  'sadi',
  'weve',
  'decid',
  'go',
  'tri',
  'therapi',
  'littl',
  'help',
  'deal',
  'everyth',
  'happen',
  'updat',
  'weve',
  'hear',
  'custodi',
  'arrang',
  'modifi',
  'decis',
  'relat',
  'sadi',
  'made',
  'alon',
  'john',
  'supervis',
  'visit',
  'week',
  'sadi',
  'continu',
  'therapi',
  'deal',
  'issu',
  'amanda',
  'co',
  'caus',
  'tri',
  'push',
  'custodi',
  'split',
  'ground',
  'alien',
  'tri',
  'put',
  'sadi',
  'father',
  'made',
  'clear',
  'start',
  'want',
  'keep',
  'amanda',
  'children',
  'away',
  'want',
  'supervis',
  'feel',
  'safe',
  'leav',
  'alon',
  'yet',
  'open',
  'modif',
  'thank',
  'proof',
  'steal',
  'sadi',
  'therapist',
  'testimoni',
  'claim',
  'thrown',
  'pretti',
  'quickli',
  'amanda',
  'piss',
  'tri',
  'contact',
  'sadi',
  'made',
  'clear',
  'keep',
  'harrass',
  'daughter',
  'ill',
  'make',
  'known',
  'author',
  'sadi',
  'block',
  'everywher',
  'commun',
  'john',
  'us',
  'made',
  'text',
  'messag',
  'email',
  'id',
  'like',
  'thank',
  'support',
  'throughout',
  'realli',
  'mean',
  'lot',
  'us',
  'send',
  'load',
  'love'],
 ['im',
  'go',
  'direct',
  'quick',
  'sister',
  'im',
  'close',
  'also',
  'niec',
  'leah',
  'leah',
  'ex',
  'wife',
  'decid',
  'split',
  'divorc',
  'due',
  'inferitil',
  'problem',
  'last',
  'year',
  'start',
  'colleg',
  'fund',
  'leah',
  'help',
  'go',
  'chosen',
  'colleg',
  'visit',
  'mother',
  'home',
  'sister',
  'leah',
  'live',
  'everi',
  'week',
  'spend',
  'weekend',
  'togeth',
  'past',
  'weekend',
  'asleep',
  'upstair',
  'mother',
  'sister',
  'leah',
  'kitchen',
  'came',
  'downstair',
  'grab',
  'glass',
  'water',
  'heard',
  'sister',
  'talk',
  'ex',
  'wife',
  'expect',
  'babi',
  'new',
  'husband',
  'struck',
  'nerv',
  'kind',
  'froze',
  'shock',
  'heard',
  'leah',
  'react',
  'news',
  'repeatedli',
  'say',
  'told',
  'told',
  'explain',
  'alway',
  'thought',
  'one',
  'problem',
  'abl',
  'babi',
  'ex',
  'afraid',
  'admit',
  'due',
  'fragil',
  'masculin',
  'could',
  'believ',
  'said',
  'made',
  'wors',
  'follow',
  'statement',
  'ex',
  'smart',
  'get',
  'divorc',
  'late',
  'went',
  'upstair',
  'room',
  'shut',
  'door',
  'stay',
  'hour',
  'mom',
  'sister',
  'saw',
  'leav',
  'insist',
  'know',
  'problem',
  'want',
  'argu',
  'told',
  'heard',
  'leah',
  'said',
  'leah',
  'stop',
  'eat',
  'got',
  'quiet',
  'sister',
  'tri',
  'play',
  'dumb',
  'told',
  'heard',
  'entir',
  'convers',
  'ex',
  'wife',
  'pregnanc',
  'news',
  'sister',
  'tri',
  'backpaddl',
  'say',
  'leah',
  'kid',
  'know',
  'much',
  'stuff',
  'spout',
  'nonesens',
  'told',
  'wan',
  'na',
  'talk',
  'refus',
  'let',
  'leav',
  'left',
  'eventu',
  'later',
  'sent',
  'sister',
  'text',
  'tell',
  'hurt',
  'devast',
  'leah',
  'said',
  'told',
  'longer',
  'respons',
  'fund',
  'educ',
  'sister',
  'kept',
  'tri',
  'call',
  'text',
  'say',
  'leah',
  'mean',
  'said',
  'offer',
  'make',
  'apolog',
  'feel',
  'comfort',
  'room',
  'someon',
  'blame',
  'someth',
  'control',
  'someth',
  'liter',
  'turn',
  'life',
  'upsid',
  'mother',
  'tri',
  'get',
  'come',
  'could',
  'talk',
  'say',
  'leah',
  'desev',
  'turn',
  'back',
  'like',
  'eta',
  'went',
  'unexpectedli',
  'read',
  'lot',
  'insight',
  'comment',
  'keep',
  'im',
  'sorri',
  'seen',
  'sister',
  'leah',
  'happen',
  'still',
  'tri',
  'contact',
  'mean',
  'still',
  'room',
  'discuss',
  'ive',
  'decid',
  'go',
  'see',
  'tomorrow',
  'sit',
  'togeth',
  'long',
  'convers',
  'admit',
  'im',
  'type',
  'person',
  'feel',
  'comfort',
  'talk',
  'bother',
  'especi',
  'come',
  'sensit',
  'topic',
  'like',
  'said',
  'famili',
  'niec',
  'futur',
  'admit',
  'mad',
  'told',
  'sister',
  'colleg',
  'fund',
  'cancel',
  'love',
  'leah',
  'much',
  'see',
  'daughter',
  'unfortun',
  'dad',
  'bil',
  'deceas',
  'understand',
  'lose',
  'parent',
  'young',
  'age',
  'relat',
  'kind',
  'hurt',
  'carri',
  'insid',
  'lost',
  'father',
  'accid',
  'think',
  'thatsit',
  'talk',
  'thing',
  'best',
  'option',
  'make',
  'decis',
  'hope',
  'get',
  'resolv',
  'soon',
  'im',
  'sorri',
  'long',
  'eta',
  'want',
  'let',
  'guy',
  'know',
  'might',
  'updat',
  'happen',
  'talk',
  'well',
  'see',
  'goe',
  'thank',
  'much',
  'bear',
  'also',
  'one',
  'thing',
  'clarifi',
  'ex',
  'wife',
  'fertil',
  'issu',
  'side',
  'sinc',
  'ex',
  'wife',
  'got',
  'pregnant',
  'soon',
  'new',
  'marriag',
  'famili',
  'thought',
  'problem',
  'origin',
  'im',
  'learn',
  'word',
  'get',
  'head',
  'easili',
  'im',
  'mad',
  'anyon',
  'im',
  'tri',
  'move',
  'life',
  'like',
  'anybodi',
  'els'],
 ['bought',
  'hoarder',
  'hous',
  'back',
  'may',
  'big',
  'bedroom',
  'half',
  'bathroom',
  'hous',
  'bought',
  'contract',
  'state',
  'take',
  'ownership',
  'hous',
  'everyth',
  'ladi',
  'die',
  'heir',
  'could',
  'deal',
  'stench',
  'liter',
  'mountain',
  'junk',
  'wast',
  'could',
  'open',
  'door',
  'even',
  'room',
  'junk',
  'fill',
  'wall',
  'wall',
  'floor',
  'ceil',
  'well',
  'took',
  'last',
  'year',
  'finish',
  'clean',
  'fix',
  'updat',
  'clean',
  'made',
  'sure',
  'check',
  'everyth',
  'throw',
  'end',
  '$',
  'money',
  'nice',
  'jewelri',
  'antiqu',
  'furnitur',
  'final',
  'stun',
  'style',
  'lace',
  'cover',
  'wed',
  'dress',
  'woman',
  'took',
  'care',
  'dress',
  'anymor',
  'took',
  'minor',
  'work',
  'restor',
  'current',
  'partner',
  'decid',
  'would',
  'dress',
  'wear',
  'ever',
  'get',
  'marri',
  'clean',
  'reach',
  'heir',
  'pass',
  'pictur',
  'momento',
  'christma',
  'person',
  'ornament',
  'kid',
  'artwork',
  'one',
  'fb',
  'friend',
  'list',
  'repair',
  'dress',
  'put',
  'jewelri',
  'post',
  'pic',
  'fb',
  'well',
  'woman',
  'saw',
  'ask',
  'dress',
  'heirloom',
  'back',
  'refus',
  'give',
  'back',
  'legal',
  'cant',
  'anyth',
  'also',
  'meant',
  'much',
  'clean',
  'hous',
  'sell',
  'famili',
  'call',
  'social',
  'media',
  'aita'],
 ['accid',
  'babi',
  'lost',
  'left',
  'eye',
  'eye',
  'socket',
  'could',
  'put',
  'fake',
  'eye',
  'normal',
  'skin',
  'scar',
  'big',
  'pach',
  'face',
  'reconstruct',
  'face',
  'later',
  'surgeri',
  'way',
  'right',
  'side',
  'bottom',
  'half',
  'face',
  'complet',
  'normal',
  'big',
  'side',
  'bang',
  'hide',
  'left',
  'side',
  'face',
  'freak',
  'anyon',
  'get',
  'weird',
  'look',
  'ive',
  'go',
  'school',
  'sinc',
  'teacher',
  'kid',
  'know',
  'got',
  'new',
  'teacher',
  'week',
  'start',
  'ask',
  'us',
  'go',
  'around',
  'introduc',
  'ourself',
  'got',
  'rude',
  'ask',
  'parent',
  'know',
  'come',
  'school',
  'look',
  'like',
  'extrem',
  'disrespect',
  'fix',
  'bang',
  'want',
  'see',
  'face',
  'obey',
  'tuck',
  'bang',
  'behind',
  'ear',
  'show',
  'left',
  'side',
  'face',
  'gasp',
  'face',
  'turn',
  'red',
  'classmat',
  'laugh',
  'told',
  'let',
  'bang',
  'later',
  'day',
  'head',
  'teacher',
  'came',
  'scold',
  'told',
  'wrong',
  'shock',
  'new',
  'teacher',
  'told',
  'anyth',
  'wrong',
  'obey',
  'order',
  'fault',
  'end',
  'want',
  'look',
  'face',
  'aita',
  '--',
  '--',
  '-',
  'updat',
  'mom',
  'went',
  'talk',
  'head',
  'teacher',
  'turn',
  'new',
  'teacher',
  'made',
  'sound',
  'like',
  'play',
  'prank',
  'tri',
  'deliber',
  'shock',
  'make',
  'fun',
  'front',
  'class',
  'classmat',
  'call',
  'confirm',
  'part',
  'stori',
  'head',
  'teacher',
  'apolog',
  'call',
  'unfortun',
  'misunderstand',
  'told',
  'us',
  'clear',
  'new',
  'teacher',
  'worri',
  'believ',
  'misunderstand',
  'sound',
  'like',
  'new',
  'teacher',
  'deliber',
  'lie',
  'cant',
  'anyth'],
 ['recent',
  'fli',
  'nyc',
  'lax',
  'work',
  'trip',
  'displeasur',
  'sit',
  'next',
  'famili',
  'littl',
  'boy',
  'got',
  'plane',
  'midst',
  'issu',
  'diabet',
  'need',
  'eat',
  'within',
  'two',
  'hour',
  'began',
  'snack',
  'immedi',
  'began',
  'receiv',
  'dirti',
  'look',
  'parent',
  'mother',
  'said',
  'son',
  'put',
  'food',
  'away',
  'figur',
  'id',
  'wait',
  'flight',
  'attend',
  'came',
  'around',
  'could',
  'buy',
  'food',
  'eat',
  'accept',
  'time',
  'show',
  'respect',
  'wish',
  'flight',
  'attend',
  'come',
  'beverag',
  'snack',
  'start',
  'ask',
  'coke',
  'snack',
  'box',
  'finish',
  'sentenc',
  'father',
  'say',
  'noth',
  'row',
  'set',
  'continu',
  'go',
  'press',
  'call',
  'light',
  'get',
  'food',
  'drink',
  'actual',
  'need',
  'father',
  'say',
  'son',
  'prader-willi',
  'wed',
  'prefer',
  'eat',
  'caus',
  'tantrum',
  'know',
  'cant',
  'eat',
  'alway',
  'hungri',
  'im',
  'close',
  'tantrum',
  'point',
  'look',
  'eye',
  'say',
  'care',
  'fli',
  'privat',
  'want',
  'control',
  'surround',
  'flight',
  'attend',
  'come',
  'back',
  'get',
  'food',
  'drink',
  'snarf',
  'chug',
  'soda',
  'sit',
  'back',
  'soon',
  'im',
  'calm',
  'im',
  'abl',
  'open',
  'laptop',
  'get',
  'back',
  'work',
  'mother',
  'lean',
  'say',
  'feel',
  'call',
  'educ',
  'son',
  'diseas',
  'felt',
  'entir',
  'bodi',
  'clench',
  'keep',
  'talk',
  'explain',
  'id',
  'made',
  'son',
  'feel',
  'said',
  'listen',
  'ladi',
  'fuck',
  'care',
  'im',
  'go',
  'handl',
  'td',
  'way',
  'see',
  'fit',
  'go',
  'handl',
  'son',
  'way',
  'see',
  'fit',
  'im',
  'endang',
  'want',
  'deal',
  'tantrum',
  'want',
  'control',
  'peopl',
  'book',
  'seat',
  'row',
  'fuck',
  'fli',
  'privat',
  'recount',
  'stori',
  'friend',
  'mine',
  'id',
  'gotten',
  'plane',
  'immedi',
  'told',
  'huge',
  'ah',
  'given',
  'littl',
  'bit',
  'grace',
  'due',
  'son',
  'condit',
  'kind',
  'feel',
  'bad',
  'time',
  'think',
  'unavoid',
  'go',
  'public',
  'around',
  'aita'],
 ['husband',
  'ms',
  'best',
  'friend',
  'infertil',
  'got',
  'divorc',
  'time',
  'lie',
  'hid',
  'infertil',
  'life',
  'day',
  'told',
  'cant',
  'kid',
  'alway',
  'soft',
  'spot',
  'children',
  'found',
  'husband',
  'expect',
  'thrill',
  'start',
  'buy',
  'us',
  'gift',
  'decor',
  'piec',
  'made',
  'woodwork',
  'babi',
  'husband',
  'think',
  'nice',
  'gestur',
  'help',
  'feel',
  'uncomfort',
  'especi',
  'much',
  'keep',
  'mentio',
  'babi',
  'day',
  'ago',
  'husband',
  'found',
  'gender',
  'babi',
  'minut',
  'told',
  'start',
  'call',
  'babi',
  'random',
  'name',
  'pick',
  'go',
  'give',
  'babi',
  'infertil',
  'start',
  'beg',
  'us',
  'use',
  'name',
  'husband',
  'said',
  'done',
  'deal',
  'refus',
  'husband',
  'call',
  'heartless',
  'ask',
  'one',
  'small',
  'nice',
  'gestur',
  'struggl',
  'friend',
  'give',
  'closur',
  'honor',
  'thing',
  'done',
  'us',
  'flip',
  'said',
  'babi',
  'heard',
  'left',
  'immedi',
  'husband',
  'yell',
  'say',
  'babi',
  'behavior',
  'toward',
  'abhor',
  'left',
  'come',
  'back',
  'til',
  'morn',
  'kept',
  'say',
  'thing',
  'pressur',
  'agre',
  'name',
  'refus',
  'aita',
  'choos',
  'hill',
  'die'],
 ['long',
  'stori',
  'short',
  'start',
  'see',
  'yo',
  'dave',
  'year',
  'ago',
  'son',
  'daughter',
  'ann',
  'book',
  'road',
  'trip',
  'son',
  'roughli',
  'month',
  'ago',
  'road',
  'trip',
  'consist',
  'roughli',
  'hour',
  'worth',
  'drive',
  'stop',
  'first',
  'time',
  'ive',
  'ever',
  'financi',
  'abl',
  'much',
  'anyth',
  'children',
  'went',
  'plan',
  'stop',
  'everi',
  'place',
  'ever',
  'ask',
  'go',
  'basic',
  'beyond',
  'excit',
  'surpris',
  'trip',
  'got',
  'home',
  'night',
  'ago',
  'week',
  'leav',
  'dave',
  'decid',
  'want',
  'go',
  'bring',
  'ann',
  'bond',
  'experi',
  'live',
  'togeth',
  'ann',
  'never',
  'like',
  'im',
  'bore',
  'said',
  'face',
  'dave',
  'think',
  'good',
  'realli',
  'want',
  'either',
  'go',
  'thought',
  'hell',
  'could',
  'good',
  'us',
  'boy',
  'fuck',
  'wrong',
  'moment',
  'ann',
  'got',
  'vehicl',
  'start',
  'complain',
  'absolut',
  'everyth',
  'crowd',
  'loud',
  'take',
  'mani',
  'stop',
  'boy',
  'annoy',
  'need',
  'quiet',
  'fuck',
  'chill',
  'get',
  'hotel',
  'hour',
  'pa',
  'around',
  'pm',
  'point',
  'dave',
  'ask',
  'take',
  'drive',
  'ann',
  'get',
  'irrit',
  'kid',
  'told',
  'could',
  'make',
  'quick',
  'need',
  'go',
  'get',
  'dinner',
  'suppli',
  'hour',
  'later',
  'show',
  'back',
  'ann',
  'went',
  'eat',
  'make',
  'comment',
  'say',
  'think',
  'want',
  'eat',
  'ann',
  'snap',
  'back',
  'think',
  'ask',
  'comment',
  'like',
  'day',
  'final',
  'snap',
  'bodi',
  'say',
  'want',
  'go',
  'home',
  'sever',
  'time',
  'dave',
  'told',
  'kid',
  'quiet',
  'kid',
  'comfort',
  'point',
  'done',
  'anyth',
  'kid',
  'queen',
  'would',
  'fit',
  'pull',
  'anywher',
  'dave',
  'point',
  'basic',
  'refus',
  'let',
  'drive',
  'despit',
  'argu',
  'car',
  'snap',
  'told',
  'pull',
  'fuck',
  'final',
  'drive',
  'nearest',
  'car',
  'rental',
  'tell',
  'get',
  'fuck',
  'car',
  'dave',
  'ann',
  'start',
  'flip',
  'ann',
  'say',
  'go',
  'get',
  'car',
  'bed',
  'bug',
  'dave',
  'say',
  'want',
  'take',
  'separ',
  'vehicl',
  'enough',
  'money',
  'rental',
  'queen',
  'spent',
  '$',
  'day',
  'say',
  'believ',
  'fuck',
  'ask',
  'take',
  'close',
  'mile',
  'home',
  'took',
  'day',
  'get',
  'home',
  'due',
  'lack',
  'money',
  'need',
  'borrow',
  'im',
  'told',
  'im',
  'selfish',
  'cunt',
  'aita'],
 ['date',
  'boyfriend',
  'ricki',
  'month',
  'divorc',
  'hate',
  'word',
  'goe',
  'word',
  'divorce',
  'instead',
  'sinc',
  'first',
  'one',
  'make',
  'sound',
  'like',
  'dump',
  'initi',
  'anyway',
  'alway',
  'go',
  'long',
  'rant',
  'exe',
  'say',
  'stuff',
  'like',
  'hope',
  'aw',
  'habit',
  'ex',
  'hope',
  'like',
  'xyz',
  'caus',
  'ex',
  'list',
  'goe',
  'found',
  'nd',
  'job',
  'recent',
  'pay',
  'everi',
  'time',
  'go',
  'protest',
  'hed',
  'say',
  'go',
  'rough',
  'patch',
  'see',
  'much',
  'help',
  'cam',
  'offer',
  'last',
  'night',
  'invit',
  'famili',
  'join',
  'us',
  'dinner',
  'got',
  'restaur',
  'first',
  'ask',
  'brought',
  'enough',
  'momey',
  'said',
  'told',
  'told',
  'parent',
  'id',
  'pay',
  'meal',
  'said',
  'would',
  'went',
  'parent',
  'go',
  'rough',
  'patch',
  'like',
  'said',
  'im',
  'sorri',
  'cant',
  'coincid',
  'ask',
  'meant',
  'told',
  'would',
  'pay',
  'insist',
  'refus',
  'said',
  'lean',
  'back',
  'said',
  'well',
  'much',
  'choic',
  'anyway',
  'laugh',
  'like',
  'funni',
  'silent',
  'got',
  'took',
  'phone',
  'purs',
  'walk',
  'right',
  'shock',
  'start',
  'shout',
  'stop',
  'wait',
  'went',
  'home',
  'call',
  'enrag',
  'say',
  'horribl',
  'thing',
  'walk',
  'parent',
  'couldv',
  'paid',
  'told',
  'unfortun',
  'financi',
  'situat',
  'problem',
  'oblig',
  'pay',
  'food',
  'pay',
  'meal',
  'go',
  'got',
  'offend',
  'said',
  'qout',
  'make',
  'money',
  'prioriti',
  'like',
  'ex',
  'went',
  'disrespect',
  'attitud',
  'made',
  'look',
  'small',
  'infront',
  'parent',
  'forc',
  'lie',
  'came',
  'weve',
  'go',
  'back',
  'forth',
  'til',
  'mad',
  'refus',
  'speak',
  'til',
  'apolog',
  'aita',
  'feel',
  'bad',
  'parent',
  'love',
  'best',
  'keep',
  'good',
  'relationship'],
 ['titl',
  'probabl',
  'make',
  'sound',
  'wors',
  'im',
  'still',
  'conflict',
  'boyfriend',
  'almost',
  'year',
  'invit',
  'dinner',
  'famili',
  'mom',
  'dad',
  'yr',
  'old',
  'brother',
  'never',
  'met',
  'prior',
  'thing',
  'knew',
  'theyr',
  'conserv',
  'christian',
  'love',
  'peopl',
  'got',
  'along',
  'realli',
  'well',
  'dinner',
  'love',
  'talk',
  'time',
  'dinner',
  'bf',
  'dad',
  'want',
  'pray',
  'pray',
  'said',
  'someth',
  'alon',
  'line',
  'let',
  'us',
  'dig',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'pretti',
  'popular',
  'say',
  'countri',
  'mostli',
  'told',
  'young',
  'children',
  'school',
  'understand',
  'alway',
  'speak',
  'food',
  'mouth',
  'extrem',
  'loud',
  'tabl',
  'say',
  'cultur',
  'thing',
  'though',
  'dug',
  'took',
  'bite',
  'fish',
  'soup',
  'absolut',
  'delici',
  'yknow',
  'like',
  'good',
  'guest',
  'want',
  'compliment',
  'cook',
  'delici',
  '-',
  'saffron',
  'perfect',
  'autumn',
  'soup',
  'bf',
  'brother',
  'look',
  'surpris',
  'bf',
  'father',
  'hush',
  'big',
  'time',
  'realli',
  'aggress',
  'shhh',
  'finger',
  'lip',
  'said',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'aplogis',
  'thought',
  'accident',
  'spoken',
  'food',
  'mouth',
  'someth',
  'minut',
  'pass',
  'nobodi',
  'said',
  'word',
  'super',
  'awkward',
  'weird',
  'especi',
  'sinc',
  'talk',
  'bf',
  'also',
  'unusu',
  'quiet',
  'minut',
  'weird',
  'ask',
  'day',
  'nice',
  'invit',
  'mother',
  'hush',
  'thing',
  'awkward',
  'think',
  'click',
  'speak',
  'tabl',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'realli',
  'quiet',
  'super',
  'awkward',
  'situat',
  'deal',
  'imagin',
  'sit',
  'tabl',
  'peopl',
  'everybodi',
  'eat',
  'soup',
  'look',
  'dead',
  'seriou',
  'laugh',
  'slip',
  'end',
  'told',
  'bf',
  'parent',
  'disrespect',
  'etc',
  'respect',
  'household',
  'work',
  'could',
  'eat',
  'alon',
  'kitchen',
  'eat',
  'like',
  'separ',
  'dine',
  'room',
  'sooo',
  'thank',
  'food',
  'left',
  'hotel',
  'bf',
  'stay',
  'boyfriend',
  'later',
  'told',
  'asshol',
  'move',
  'kept',
  'quiet',
  'eat',
  'alon',
  'kitchen',
  'understand',
  'famili',
  'tradit',
  'rule',
  'weird',
  'take',
  'anymor',
  'asshol',
  'though'],
 ['background',
  'best',
  'friend',
  'gotten',
  'go',
  'spartan',
  'race',
  'small',
  'group',
  'friend',
  'start',
  'go',
  'local',
  'one',
  'recent',
  'heard',
  'one',
  'anoth',
  'state',
  'want',
  'go',
  'compet',
  'anywher',
  'stay',
  'ask',
  'could',
  'borrow',
  'truck',
  'trailer',
  'tow',
  'behind',
  'camper',
  'weekend',
  'said',
  'comfort',
  'take',
  'truck',
  'trailer',
  'id',
  'drive',
  'camper',
  'event',
  'made',
  'three',
  'hour',
  'trip',
  'set',
  'everyth',
  'area',
  'race',
  'take',
  'place',
  'next',
  'day',
  'habit',
  'leav',
  'key',
  'hook',
  'next',
  'door',
  'bedroom',
  'camper',
  'rememb',
  'come',
  'nightfal',
  'went',
  'take',
  'phone',
  'call',
  'outsid',
  'end',
  'wander',
  'around',
  'ground',
  'hour',
  'got',
  'back',
  'camper',
  'door',
  'lock',
  'told',
  'best',
  'friend',
  'older',
  'friend',
  'window',
  'enough',
  'room',
  'trailer',
  'reach',
  'key',
  'unlock',
  'door',
  'realiz',
  'left',
  'insid',
  'camper',
  'hook',
  'room',
  'call',
  'best',
  'friend',
  'outsid',
  'told',
  'sorri',
  'bro',
  'noth',
  'end',
  'sleep',
  'truck',
  'night',
  'fortun',
  'left',
  'unlock',
  'accid',
  'race',
  'began',
  'came',
  'meander',
  'trailer',
  'woke',
  'apolog',
  'way',
  'race',
  'hook',
  'truck',
  'back',
  'trailer',
  'close',
  'lock',
  'everyth',
  'wait',
  'finish',
  'start',
  'walk',
  'back',
  'trailer',
  'think',
  'realli',
  'wide',
  'open',
  'field',
  'saw',
  'come',
  'start',
  'truck',
  'drove',
  'properti',
  'chase',
  'behind',
  'made',
  'three',
  'hour',
  'trip',
  'back',
  'home',
  'declin',
  'call',
  'call',
  'final',
  'got',
  'home',
  'final',
  'took',
  'best',
  'friend',
  'call',
  'start',
  'yell',
  'say',
  'would',
  'way',
  'home',
  'said',
  'sorri',
  'made',
  'sleep',
  'truck',
  'solid',
  'told',
  'better',
  'way',
  'handl',
  'leav',
  'unfamiliar',
  'citi',
  'way',
  'home',
  'think',
  'end',
  'call',
  'dad',
  'come',
  'get',
  'right',
  'better',
  'way',
  'handl',
  'felt',
  'justifi',
  'said',
  'kinda',
  'doubt',
  'decis',
  'asshol'],
 ['boyfriend',
  'grew',
  'hous',
  'valu',
  'outdat',
  'gender',
  'norm',
  'women',
  'alway',
  'respons',
  'cook',
  'clean',
  'learn',
  'life',
  'move',
  'colleg',
  'good',
  'thing',
  'mind',
  'help',
  'dish',
  'handl',
  'laundri',
  'one',
  'thing',
  'cant',
  'seem',
  'get',
  'learn',
  'cook',
  'thing',
  'microwav',
  'frozen',
  'meal',
  'ive',
  'tri',
  'teach',
  'basic',
  'seem',
  'like',
  'goe',
  'one',
  'ear',
  'come',
  'still',
  'cant',
  'turn',
  'oven',
  'use',
  'stove',
  'without',
  'help',
  'toaster',
  'complic',
  'use',
  'claim',
  'know',
  'boil',
  'egg',
  'cook',
  'rice',
  'even',
  'measur',
  'ingredi',
  'use',
  'cup',
  'understand',
  'cant',
  'grasp',
  'fine',
  'thing',
  'part',
  'may',
  'asshol',
  'went',
  'trip',
  'two',
  'week',
  'ago',
  'work',
  'im',
  'charg',
  'buy',
  'groceri',
  'separ',
  'account',
  'realiz',
  'expens',
  'frozen',
  'meal',
  'actual',
  'three',
  'four',
  'dollar',
  'said',
  'screw',
  'bought',
  'easiest',
  'ingredi',
  'could',
  'find',
  'lot',
  'cheaper',
  'cook',
  'like',
  'leftov',
  'cook',
  'ahead',
  'left',
  'sat',
  'gave',
  'long',
  'lesson',
  'use',
  'oven',
  'toaster',
  'stove',
  'well',
  'boilscrambl',
  'egg',
  'toast',
  'piec',
  'toast',
  'boil',
  'ricenoodl',
  'heat',
  'pasta',
  'sauc',
  'also',
  'taught',
  'pan',
  'fri',
  'thing',
  'like',
  'onion',
  'veggi',
  'tell',
  'readi',
  'case',
  'want',
  'cook',
  'lunch',
  'dinner',
  'also',
  'bought',
  'thing',
  'make',
  'salad',
  'fix',
  'sandwich',
  'come',
  'back',
  'week',
  'later',
  'angri',
  'claim',
  'practic',
  'left',
  'starv',
  'know',
  'troubl',
  'cook',
  'retali',
  'say',
  'show',
  'get',
  'whole',
  'rang',
  'excus',
  'set',
  'ovenstov',
  'temp',
  'complic',
  'cut',
  'finger',
  'chop',
  'onion',
  'chop',
  'cut',
  'heal',
  'like',
  'salad',
  'kit',
  'everyth',
  'balanc',
  'appar',
  'ate',
  'sandwich',
  'good',
  'fast',
  'food',
  'week',
  'think',
  'im',
  'major',
  'asshol',
  'tell',
  'im',
  'buy',
  'frozen',
  'meal',
  'leav',
  'alon',
  'fend',
  'one',
  'hand',
  'think',
  'shitti',
  'tell',
  'buy',
  'meal',
  'someon',
  'grew',
  'home',
  'pretti',
  'much',
  'boil',
  'hotdog',
  'veggi',
  'properli',
  'learn',
  'cook',
  'move',
  'feel',
  'time',
  'month',
  'get',
  'simplest',
  'concept',
  'im',
  'left',
  'feel',
  'partial',
  'justifi',
  'action',
  'reddit',
  'aita'],
 ['im',
  'ah',
  'ill',
  'im',
  'sorri',
  'like',
  'would',
  'good',
  'know',
  'rest',
  'famili',
  'think',
  'went',
  'far',
  'mom',
  'die',
  'leukemia',
  'memori',
  'sick',
  'get',
  'spend',
  'lot',
  'time',
  'last',
  'year',
  'artist',
  'anymor',
  'would',
  'make',
  'littl',
  'collag',
  'hospit',
  'draw',
  'photo',
  'messag',
  'grandmoth',
  'put',
  'book',
  'die',
  'want',
  'like',
  'mom',
  'counselor',
  'thought',
  'would',
  'help',
  'start',
  'journal',
  'would',
  'kind',
  'similar',
  'thing',
  'ive',
  'done',
  'least',
  'one',
  'page',
  'week',
  'year',
  'ever',
  'sinc',
  'mom',
  'die',
  'miss',
  'someth',
  'hard',
  'go',
  'kind',
  'uniqu',
  'record',
  'mental',
  'state',
  'last',
  'year',
  'father',
  'remarri',
  'step-moth',
  'realli',
  'lean',
  'hard',
  'im',
  'mom',
  'father',
  'stop',
  'improv',
  'half-broth',
  'basic',
  'forgot',
  'unfortun',
  'got',
  'cancer',
  'pretti',
  'much',
  'ceas',
  'exist',
  'father',
  'either',
  'work',
  'gone',
  'brother',
  'spent',
  'teen',
  'year',
  'mostli',
  'home',
  'alon',
  'grandpar',
  'mantra',
  'brother',
  'need',
  'focu',
  'might',
  'die',
  'need',
  'selfish',
  'sinc',
  'healthi',
  'stop',
  'tri',
  'talk',
  'dark',
  'time',
  'move',
  'cut',
  'complet',
  'grandpar',
  'let',
  'know',
  'brother',
  'die',
  'coupl',
  'year',
  'ago',
  'respect',
  'desir',
  'remain',
  'nc',
  'father',
  'recent',
  'reach',
  'want',
  'see',
  'talk',
  'went',
  'old',
  'journal',
  'made',
  'powerpoint',
  'imag',
  'entri',
  'talk',
  'frustrat',
  'feel',
  'abandon',
  'unwant',
  'liter',
  'quot',
  'thing',
  'dad',
  'said',
  'argument',
  'even',
  'realli',
  'dark',
  'stuff',
  'serious',
  'depress',
  'end',
  'photo',
  'one',
  'mom',
  'collag',
  'written',
  'rememb',
  'dad',
  'alway',
  'wrote',
  'fail',
  'go',
  'away',
  'underneath',
  'felt',
  'like',
  'abl',
  'see',
  'liter',
  'perspect',
  'would',
  'commun',
  'want',
  'back',
  'better',
  'could',
  'evid',
  'work',
  'littl',
  'well',
  'ive',
  'bombard',
  'famili',
  'tell',
  'understand',
  'want',
  'see',
  'sent',
  'gut',
  'complet',
  'fallen',
  'apart',
  'read',
  'unnecessarili',
  'cruel',
  'mayb',
  'know',
  'bar',
  'kind',
  'weird',
  'sometim',
  'aita',
  'edit',
  '-',
  'coupl',
  'follow',
  'note',
  'sinc',
  'came',
  'comment',
  'love',
  'brother',
  'resent',
  'good',
  'kid',
  'wish',
  'still',
  'us',
  'none',
  'fault',
  'complet',
  'father',
  'lesser',
  'extent',
  'step-moth',
  'parent',
  'prevent',
  'spend',
  'time',
  'got',
  'sicker',
  'allow',
  'even',
  'abl',
  'toward',
  'end',
  'also',
  'struggl',
  'stay',
  'aliv',
  'empathi',
  'understand',
  'father',
  'lost',
  'also',
  'lost',
  'peopl',
  'plu',
  'effect',
  'father',
  'even',
  'excus',
  'complet',
  'shut',
  'kid',
  'complet',
  'life',
  'also',
  'prevent',
  'get',
  'kind',
  'help',
  'understand',
  'depress',
  'freez',
  'ive',
  'still',
  'even',
  'adult',
  'manag',
  'consid',
  'impact',
  'behavior',
  'peopl',
  'bad',
  'given',
  'rais',
  'someon',
  'els',
  'mom',
  'parent',
  'ask',
  'agre',
  'let',
  'stay',
  'full',
  'time',
  'could',
  'dad',
  'abl',
  'occasion',
  'tell',
  'love',
  'even',
  'text',
  'messag',
  'altern',
  'could',
  'live',
  'grandpar',
  'peopl',
  'around',
  'care',
  'everi',
  'day',
  'even',
  'father',
  'got',
  'neither',
  'everi',
  'request',
  'help',
  'kind',
  'met',
  'suck',
  'empath',
  'function',
  'break',
  'insid',
  'cant',
  'empath',
  'gather',
  'rel',
  'back',
  'hard',
  'boundari',
  'set',
  'father',
  'step-moth',
  'split',
  'long',
  'ago',
  'divorc',
  'proceed',
  'reach',
  'rest',
  'famili',
  'upset',
  'respond',
  'time',
  '-',
  'good',
  'place',
  'alreadi',
  'ive',
  'told',
  'care',
  'encourag',
  'keep',
  'away',
  'refus',
  'pass',
  'messag',
  'tri',
  'get',
  'inpati',
  'care',
  'someth',
  'theyr',
  'worri',
  'go',
  'someth',
  'rash',
  'want',
  'anyth',
  'ive',
  'told',
  'want',
  'hear',
  'anyth',
  'happen',
  'point',
  'rest',
  'famili',
  'love',
  'sake',
  'hope',
  'pull',
  'togeth'],
 ['start',
  'work',
  'compani',
  'recent',
  'get',
  'along',
  'cowork',
  'issu',
  'guy',
  'morgan',
  'morgan',
  'understand',
  'everyon',
  'call',
  'handsom',
  'guy',
  'offic',
  'date',
  'cowork',
  'hit',
  'sever',
  'seem',
  'friendli',
  'talk',
  'seem',
  'respect',
  'never',
  'ask',
  'question',
  'outsid',
  'work',
  'offer',
  'buy',
  'lunch',
  'internet',
  'kept',
  'send',
  'funni',
  'meme',
  'stuff',
  'nice',
  'felt',
  'bit',
  'much',
  'ask',
  'stop',
  'start',
  'send',
  'pic',
  'inappropri',
  'text',
  'say',
  'im',
  'marri',
  'inappropri',
  'text',
  'say',
  'lie',
  'marri',
  'get',
  'back',
  'went',
  'nice',
  'attract',
  'im',
  'tri',
  'act',
  'like',
  'like',
  'get',
  'tri',
  'harder',
  'felt',
  'frustrat',
  'especislli',
  'kept',
  'sendig',
  'pic',
  'day',
  'ago',
  'sent',
  '&',
  'ck',
  'pic',
  'told',
  'suck',
  'decid',
  'let',
  'husband',
  'deal',
  'sent',
  'text',
  'back',
  'say',
  'sorri',
  'bud',
  'small',
  'object',
  'chock',
  'hazard',
  'block',
  'day',
  'came',
  'offic',
  'look',
  'furiou',
  'confront',
  'mislead',
  'wed',
  'ring',
  'im',
  'marri',
  'said',
  'need',
  'prove',
  'anyth',
  'anybodi',
  'lead',
  'anyon',
  'said',
  'tri',
  'get',
  'close',
  'told',
  'im',
  'marri',
  'get',
  'go',
  'said',
  'sorri',
  'mayb',
  'basic',
  'tri',
  'enforc',
  'relationship',
  'anyon',
  'regradless',
  'theyr',
  'relationship',
  'said',
  'husband',
  'rude',
  'offens',
  'rush',
  'cowork',
  'said',
  'morgan',
  'asshol',
  'bare',
  'blame',
  'wed',
  'ring',
  'somewhat',
  'mislead',
  'said',
  'think',
  'owe',
  'anyon',
  'explan',
  'refus',
  'apolog',
  'happen',
  'keep',
  'peac',
  'offic',
  'aita',
  'realli',
  'wear',
  'wed',
  'ring',
  'edit',
  'reason',
  'wear',
  'wed',
  'ring',
  'skin',
  'problem'],
 ['im',
  'still',
  'get',
  'shit',
  'famili',
  'possibl',
  'may',
  'bit',
  'ah',
  'im',
  'player',
  'mom',
  'step-dad',
  'four',
  'step-sibl',
  'famili',
  'im',
  'black',
  'sheep',
  'im',
  'one',
  'marri',
  'kid',
  'prefer',
  'love',
  'live',
  'alon',
  'want',
  'kid',
  'partner',
  'import',
  'famili',
  'ask',
  'im',
  'go',
  'get',
  'boyfriend',
  'settl',
  'sinc',
  'answer',
  'alway',
  'ew',
  'never',
  'go',
  'skip',
  'thanksgiv',
  'mom',
  'insist',
  'want',
  'everyon',
  'home',
  'year',
  'possibl',
  'went',
  'usual',
  'drill',
  'youngest',
  'step-broth',
  'wife',
  'anoth',
  'kid',
  'big',
  'announc',
  'fine',
  'around',
  'end',
  'dinner',
  'one',
  'ssil',
  'ask',
  'im',
  'anxiou',
  'kid',
  'sinc',
  'im',
  'almost',
  'time',
  'run',
  'laugh',
  'said',
  'nah',
  'im',
  'good',
  'led',
  'one',
  'step-broth',
  'say',
  'everi',
  'famili',
  'need',
  'old',
  'maiden',
  'aunt',
  'comment',
  'appreci',
  'said',
  'let',
  'move',
  'mom',
  'said',
  'worri',
  'im',
  'possibl',
  'ah',
  'know',
  'famili',
  'dirt',
  'said',
  'well',
  'im',
  'person',
  'tabl',
  'alcohol',
  'cheater',
  'constantli',
  'broke',
  'af',
  'kid',
  'afford',
  'im',
  'one',
  'worri',
  'brought',
  'thanksgiv',
  'dead',
  'halt',
  'one',
  'said',
  'thing',
  'rest',
  'dinner',
  'text',
  'radioact',
  'still',
  'feel',
  'like',
  'probabl',
  'ride',
  'line',
  'mom',
  'say',
  'caus',
  'lot',
  'problem',
  'among',
  'sibl',
  'also',
  'kinda',
  'start'],
 ['marri',
  'husband',
  'year',
  'date',
  'year',
  'want',
  'start',
  'say',
  'realli',
  'good',
  'guy',
  'area',
  'husband',
  'parent',
  'brother',
  'age',
  'ish',
  'brother',
  'girlfriendsfiancé',
  'tradit',
  'go',
  'dinner',
  'month',
  'invit',
  '%',
  'time',
  'ive',
  'talk',
  'husband',
  'brother',
  'fiancé',
  'say',
  'invit',
  'everi',
  'time',
  'say',
  'im',
  'invit',
  'mean',
  'husband',
  'tell',
  'im',
  'go',
  'famili',
  'dinner',
  'probabl',
  'best',
  'sit',
  'one',
  'express',
  'want',
  'come',
  'told',
  'would',
  'best',
  'caus',
  'sever',
  'fight',
  'week',
  'ago',
  'husband',
  'went',
  'famili',
  'dinner',
  'invit',
  'piss',
  'earlier',
  'day',
  'call',
  'made',
  'reserv',
  'restaur',
  'go',
  'husband',
  'left',
  'hous',
  'know',
  'reserv',
  'left',
  'minut',
  'end',
  'seat',
  'tabl',
  'see',
  'famili',
  'got',
  'go',
  'bathroom',
  'walk',
  'right',
  'past',
  'includ',
  'brother',
  'husband',
  'look',
  'complet',
  'shock',
  'ask',
  'told',
  'die',
  'steak',
  'came',
  'got',
  'one',
  'restaur',
  'mother',
  'law',
  'said',
  'rude',
  'interrupt',
  'famili',
  'dinner',
  'point',
  'tri',
  'join',
  'go',
  'bathroom',
  'told',
  'good',
  'meal',
  'left',
  'went',
  'finish',
  'steak',
  'husband',
  'realli',
  'piss',
  'came',
  'home',
  'told',
  'believ',
  'much',
  'asshol',
  'said',
  'asshol',
  'invit',
  'dinner',
  'brother',
  'got',
  'go',
  'husband',
  'said',
  'decis',
  'invit',
  'famili',
  'respect',
  'anyway',
  'way',
  'word',
  'asshol',
  'thrown',
  'around',
  'made',
  'think',
  'sub',
  'want',
  'ask',
  'asshol',
  'edit',
  'know',
  'add',
  'updat',
  'sub',
  'updat',
  'post',
  'profil'],
 ['context_',
  'im',
  'sahm',
  'kid',
  'yr',
  'old',
  '&',
  'month',
  'old',
  'husband',
  'ambul',
  'driver',
  'work',
  'odd',
  'hour',
  'come',
  'home',
  'unexpectedli',
  'expect',
  'dinner',
  'lunch',
  'readi',
  'whenev',
  'get',
  'home',
  'whether',
  'im',
  'sleep',
  'busi',
  'kid',
  'exhaust',
  'know',
  'hard',
  'work',
  'struggl',
  'long',
  'mom',
  'suggest',
  'start',
  'pre-mak',
  'meal',
  'dinner',
  'lunch',
  'readi',
  'home',
  'got',
  'ta',
  'reheat',
  'immedi',
  'got',
  'went',
  'groceri',
  'shop',
  'spent',
  'entir',
  'day',
  'make',
  'meal',
  'store',
  'fridg',
  'respons',
  'idea',
  'whatev',
  'sort',
  'reliev',
  'caus',
  'could',
  'sleep',
  'properli',
  'kid',
  'care',
  'get',
  'interrupt',
  'etc',
  'well',
  'pm',
  'last',
  'night',
  'come',
  'home',
  'im',
  'sleep',
  'put',
  'babi',
  'sleep',
  'wake',
  'shout',
  'livingroom',
  'rush',
  'ask',
  'happen',
  'tell',
  'hungri',
  'want',
  'dinner',
  'tell',
  'fridg',
  'need',
  'reheat',
  'wake',
  'tell',
  'need',
  'go',
  'reheat',
  'say',
  'happen',
  'need',
  'reheat',
  'dinner',
  'start',
  'laugh',
  'sarcast',
  'got',
  'mad',
  'tell',
  'im',
  'ridicul',
  'assum',
  'work',
  'stop',
  'entir',
  'shift',
  'expect',
  'chore',
  'aka',
  'reheat',
  'dinner',
  'im',
  'start',
  'argu',
  'complain',
  'im',
  'enough',
  'refus',
  'reheat',
  'go',
  'back',
  'insid',
  'bedroom',
  'shut',
  'door',
  'come',
  'hour',
  'later',
  'yell',
  'ive',
  'basic',
  'made',
  'almost',
  'pass',
  'hunger',
  'caus',
  'im',
  'petti',
  'tri',
  'prove',
  'point',
  'tell',
  'unreason',
  'expect',
  'reheat',
  'dinner',
  'could',
  'give',
  'nasti',
  'look',
  'tell',
  'go',
  'bed',
  'hungri',
  'im',
  'respons',
  'head',
  'morn',
  'silent',
  'get',
  'dress',
  'leav',
  'turn',
  'phone'],
 ['long-tim',
  'partner',
  'divorc',
  'year',
  'divorc',
  'acrimoni',
  'ex-wif',
  'get',
  'along',
  'weve',
  'ask',
  'host',
  'daughter',
  'graduat',
  'parti',
  'home',
  'partner',
  'ex',
  'drop',
  'ball',
  'fail',
  'secur',
  'venu',
  'spent',
  'week',
  'plan',
  'parti',
  'make',
  'arrang',
  'order',
  'materi',
  'make',
  'vision',
  'realiti',
  'week',
  'later',
  'inform',
  'us',
  'presenc',
  'would',
  'anger',
  'mother',
  'circumst',
  'could',
  'attend',
  'parti',
  'held',
  'home',
  'shop',
  'expect',
  'howev',
  'devot',
  'time',
  'creativ',
  'talent',
  'make',
  'graduat',
  'parti',
  'beauti',
  'wibta',
  'refus',
  'plan',
  'organ',
  'decor',
  'parti',
  'updat',
  'home',
  'next',
  'door',
  'bore',
  'parti',
  'best',
  'girlfriend',
  'consum',
  'food',
  'plan',
  'parti',
  'dress',
  'lbd',
  'drink',
  'champagn',
  'contempl',
  'futur'],
 ['throwaway',
  'girlfriend',
  'rose',
  'togeth',
  'year',
  'month',
  'pregnant',
  'first',
  'child',
  'mum',
  'seem',
  'realli',
  'like',
  'rose',
  'least',
  'toler',
  '-',
  'announc',
  'expect',
  'someth',
  'definit',
  'switch',
  'becom',
  'extrem',
  'rude',
  'disrespect',
  'toward',
  'girlfriend',
  'make',
  'passive-aggress',
  'comment',
  'everi',
  'chanc',
  'get',
  'ive',
  'take',
  'step',
  'back',
  'mother',
  'fix',
  'behaviour',
  'rose',
  'gone',
  'visit',
  'famili',
  'live',
  'far',
  'town',
  'last-minut',
  'trip',
  'drove',
  'destin',
  'back',
  'unfortun',
  'around',
  'pm',
  'car',
  'broke',
  'forc',
  'pull',
  'fortun',
  'brother',
  'chri',
  'great',
  'car',
  'live',
  'hour',
  'rose',
  'strand',
  'pick',
  'sort',
  'everyth',
  'countri',
  'im',
  'grate',
  'brother',
  'sort',
  'everyth',
  'chri',
  'move',
  'back',
  'mum',
  'year',
  'ago',
  'obvious',
  'situat',
  'best',
  'especi',
  'consid',
  'tension',
  'rose',
  'mom',
  'exist',
  'particular',
  'reason',
  'hope',
  'mum',
  'could',
  'put',
  'petti',
  'asid',
  'least',
  'night',
  'late',
  'chri',
  'drive',
  'rose',
  'back',
  'home',
  'brother',
  'told',
  'would',
  'drive',
  'back',
  'tomorrow',
  'morn',
  'arrang',
  'mum',
  'seem',
  'like',
  'one',
  'manag',
  'keep',
  'mouth',
  'shut',
  'girlfriend',
  'tell',
  'rose',
  'help',
  'prepar',
  'dinner',
  'wash',
  'actual',
  'engag',
  'decent',
  'convers',
  'mum',
  'first',
  'time',
  'age',
  'howev',
  'mostli',
  'avoid',
  'chri',
  'goe',
  'bed',
  'earlier',
  'leav',
  'mum',
  'rose',
  'mum',
  'live',
  'two-bedroom',
  'apart',
  'sinc',
  'bedroom',
  'taken',
  'rose',
  'assum',
  'would',
  'sleep',
  'couch',
  'appar',
  'assum',
  'wrong',
  'mum',
  'give',
  'rose',
  'thinnest',
  'blanket',
  'ever',
  'basic',
  'scream',
  'tell',
  'sleep',
  'floor',
  'ruin',
  'couch',
  'tell',
  'rose',
  'make',
  'pillow',
  'couch',
  'blanket',
  'provid',
  'zero',
  'warmth',
  'rose',
  'thought',
  'protest',
  'ultim',
  'decid',
  'accord',
  'rose',
  'mum',
  'kept',
  'open',
  'door',
  'check',
  'sleep',
  'couch',
  'even',
  'tri',
  'sleep',
  'couch',
  'chri',
  'found',
  'rose',
  'couch',
  'let',
  'sleep',
  'bed',
  'end',
  'tell',
  'told',
  'make',
  'big',
  'fuss',
  'exact',
  'opposit',
  'call',
  'mum',
  'angri',
  'told',
  'disrespect',
  'badli',
  'tri',
  'defend',
  'say',
  'harm',
  'babi',
  'okay',
  'pregnant',
  'women',
  'sleep',
  'floor',
  'refus',
  'hear',
  'chri',
  'agre',
  'told',
  'make',
  'fight',
  'feel',
  'like',
  'im',
  'lose',
  'mind',
  'aita'],
 ['current',
  'divorc',
  'ex',
  'thoma',
  'year',
  'end',
  'see',
  'lawyer',
  'help',
  'divid',
  'stuff',
  'everyth',
  'pretti',
  'much',
  'wrap',
  'till',
  'said',
  'longer',
  'want',
  'part',
  'kid',
  'live',
  'argu',
  'sinc',
  'alreadi',
  'know',
  'like',
  'parent',
  'want',
  'around',
  'want',
  'life',
  'ask',
  'want',
  'tell',
  'kid',
  'said',
  'whatev',
  'think',
  'best',
  'care',
  'want',
  'parent',
  'anymor',
  'everyth',
  'agreement',
  'sign',
  'fuss',
  'week',
  'later',
  'get',
  'call',
  'ex',
  'mil',
  'ask',
  'could',
  'meet',
  'came',
  'broke',
  'cri',
  'beg',
  'let',
  'ex',
  'see',
  'kid',
  'confus',
  'meant',
  'contact',
  'meet',
  'lawyer',
  'went',
  'ex',
  'said',
  'realli',
  'miss',
  'petti',
  '*',
  'tch',
  'take',
  'full',
  'custodi',
  'also',
  'cri',
  'day',
  'told',
  'version',
  'event',
  'call',
  'bs',
  'say',
  'son',
  'lie',
  'like',
  'especi',
  'kid',
  'decid',
  'call',
  'front',
  'know',
  'meet',
  'day',
  'said',
  'hey',
  'soccer',
  'game',
  'day',
  'wonder',
  'want',
  'go',
  'know',
  'hed',
  'realli',
  'love',
  'happi',
  'see',
  'instantli',
  'said',
  'alreadi',
  'said',
  'im',
  'anymor',
  'rais',
  'voic',
  'bit',
  'say',
  'well',
  'holiday',
  'birthday',
  'never',
  'discuss',
  'famili',
  'might',
  'want',
  'see',
  'said',
  'famili',
  'alreadi',
  'think',
  'kid',
  'mine',
  'anyway',
  'matter',
  'ask',
  'well',
  'think',
  'go',
  'effect',
  'denis',
  'mom',
  'moon',
  'said',
  'love',
  'kid',
  'doubt',
  'issu',
  'bit',
  'talk',
  'final',
  'hung',
  'ex',
  'mil',
  'straight',
  'face',
  'nod',
  'everyth',
  'happen',
  'say',
  'mmm',
  'okay',
  'ask',
  'leav',
  'said',
  'would',
  'touch',
  'later',
  'day',
  'got',
  'call',
  'ex',
  'say',
  'fault',
  'kick',
  'mom',
  'hous',
  'possibl',
  'taken',
  'also',
  'none',
  'famili',
  'member',
  'talk',
  'ex',
  'mil',
  'heard',
  'threw',
  'lot',
  'insult',
  'hung',
  'mate',
  'keep',
  'call',
  'text',
  'friend',
  'say',
  'said',
  'anyth',
  'first',
  'place',
  'ruin',
  'life',
  'edit',
  'hello',
  'thank',
  'support',
  'gold',
  'reward',
  'ye',
  'plan',
  'let',
  'denis',
  'see',
  'kid',
  'know',
  'want',
  'give',
  'world',
  'along',
  'rest',
  'famili',
  'honestli',
  'confus',
  'op',
  'meant',
  'first',
  'daughter',
  'told',
  'overpow',
  'like',
  'anim',
  'sister',
  'clarifi',
  'nd',
  'edit',
  'hello',
  'want',
  'address',
  'someth',
  'keep',
  'come',
  'cant',
  'keep',
  'everyon',
  'due',
  'action',
  'took',
  'younger',
  'christian',
  'parent',
  'thought',
  'would',
  'best',
  'marri',
  'time'],
 ['dad',
  'pass',
  'away',
  'left',
  'one',
  'last',
  'favorit',
  'ship',
  'model',
  'display',
  'live',
  'room',
  'reason',
  'never',
  'actual',
  'mention',
  'boyfriend',
  'month',
  'mayb',
  'live',
  'togeth',
  'visit',
  'often',
  'day',
  'friend',
  'came',
  'place',
  'celebr',
  'birthday',
  'got',
  'drunk',
  'start',
  'throw',
  'sofa',
  'pillow',
  'told',
  'stop',
  'went',
  'kitchen',
  'clean',
  'start',
  'hear',
  'loud',
  'nois',
  'walk',
  'kitchen',
  'saw',
  'model',
  'ship',
  'boyfriend',
  'hand',
  'rush',
  'get',
  'pass',
  'friend',
  'friend',
  'pass',
  'friend',
  'start',
  'run',
  'around',
  'tri',
  'catch',
  'yell',
  'stop',
  'boyfriend',
  'grab',
  'angri',
  'told',
  'hand',
  'said',
  'need',
  'kiss',
  'first',
  'yell',
  'tri',
  'threw',
  'friend',
  'tri',
  'catch',
  'misse',
  'hit',
  'wall',
  'broke',
  'lost',
  'kick',
  'friend',
  'fight',
  'tell',
  'sentiment',
  'item',
  'dad',
  'demand',
  'pay',
  '$',
  'much',
  'cost',
  'left',
  'call',
  'morn',
  'ask',
  'seriou',
  'want',
  'pay',
  '$',
  'said',
  'dead',
  'seriou',
  'start',
  'make',
  'excus',
  'say',
  'drunk',
  'also',
  'never',
  'told',
  'ship',
  'import',
  'monetarili',
  'sentiment',
  'anoth',
  'fight',
  'hung',
  'upon',
  'tell',
  'im',
  'expect',
  'afraid',
  'take',
  'legal',
  'rout',
  'kept',
  'text',
  'ask',
  'let',
  'go',
  'say',
  'cruel',
  'threaten',
  'law',
  'friend',
  'apolog',
  'think',
  'would',
  'insist',
  'pay',
  'get',
  'mightv',
  'got',
  'work',
  'item',
  'treat',
  'boyfriend',
  'badli',
  'seem',
  'like',
  'reckless',
  'part',
  'aita'],
 ['got',
  'invit',
  'fianc',
  'famili',
  'christma',
  'celebratori',
  'dinner',
  'first',
  'christma',
  'alway',
  'picki',
  'eat',
  'cant',
  'help',
  'psycholog',
  'factor',
  'childhood',
  'person',
  'like',
  'dislik',
  'accept',
  'invit',
  'let',
  'fmil',
  'know',
  'eat',
  'tradit',
  'food',
  'celebr',
  'show',
  'varieti',
  'dish',
  'choos',
  'accommod',
  'refus',
  'told',
  'bring',
  'dish',
  'said',
  'bring',
  'dish',
  'im',
  'guest',
  'better',
  'stay',
  'home',
  'went',
  'back',
  'forth',
  'insist',
  'come',
  'accommod',
  'made',
  'thought',
  'simpl',
  'request',
  'fmil',
  'couldv',
  'agre',
  'realli',
  'want',
  'fianc',
  'agre',
  'shhould',
  'bring',
  'dish',
  'arriv',
  'saw',
  'accommod',
  'made',
  'got',
  'go',
  'thing',
  'walk',
  'went',
  'home',
  'fmil',
  'fianc',
  'shock',
  'got',
  'ton',
  'call',
  'text',
  'fianc',
  'came',
  'home',
  'lash',
  'call',
  'selfish',
  'spoil',
  'walk',
  'like',
  'dish',
  'mom',
  'make',
  'responsibilti',
  'feed',
  'responsibilti',
  'feed',
  'im',
  'guest',
  'make',
  'sens',
  'told',
  'accus',
  'start',
  'shit',
  'ruin',
  'first',
  'christma',
  'famili',
  'disrespect',
  'mom',
  'continuelli',
  'say',
  'fuck',
  'suck',
  'famili',
  'sake',
  'eta',
  'clear',
  'point',
  '*',
  'say',
  'respect',
  'inlaw',
  'especi',
  'fmil',
  'respect',
  'far',
  'biggest',
  'conflict',
  '*',
  'work',
  'long',
  'hour',
  'even',
  'holiday',
  'much',
  'time',
  'cook',
  '*',
  'ask',
  'elabor',
  'dish',
  'sever',
  'dish',
  'one',
  'simpl',
  'option'],
 ['pretti',
  'much',
  'titl',
  'brother',
  'current',
  'engag',
  'fiancè',
  'bought',
  'new',
  'phone',
  'valentin',
  'ask',
  'boyfriend',
  'train',
  'comput',
  'softwar',
  'instal',
  'hidden',
  'track',
  'app',
  'phone',
  'fianceè',
  'see',
  'notic',
  'overheard',
  'talk',
  'enter',
  'room',
  'went',
  'silent',
  'wait',
  'til',
  'brother',
  'left',
  'talk',
  'boyfriend',
  'deni',
  'convers',
  'brother',
  'first',
  'admit',
  'instal',
  'app',
  'phone',
  'told',
  'brother',
  'wrong',
  'huge',
  'breach',
  'privaci',
  'said',
  'noth',
  'advis',
  'stay',
  'well',
  'said',
  'want',
  'tell',
  'brother',
  'fiancè',
  'boyfriend',
  'argu',
  'nosi',
  'intrus',
  'told',
  'stay',
  'let',
  'deal',
  'issu',
  'thought',
  'unfair',
  'futur',
  'sister',
  'law',
  'sinc',
  'one',
  'work',
  'pay',
  'bill',
  'rent',
  'treat',
  'boyfriend',
  'told',
  'gtfo',
  'attitud',
  'said',
  'stay',
  'way',
  'concern',
  'know',
  'feel',
  'horribl',
  'hear',
  'brother',
  'sinc',
  'good',
  'relationship',
  'fiance',
  'cant',
  'help',
  'feel',
  'guilti',
  'want',
  'tell',
  'aita',
  'want',
  'tell'],
 ['husband',
  'shaun',
  'year',
  'marri',
  'month',
  'famili',
  'decent',
  'peopl',
  'mom',
  'littl',
  'passive-aggress',
  'tend',
  'critic',
  'lot',
  'shaun',
  'see',
  'still',
  'get',
  'use',
  'around',
  'idk',
  'treat',
  'ex',
  'julissa',
  'good',
  'mil',
  'say',
  'julissa',
  'around',
  'famili',
  'age',
  'past',
  'shaun',
  'never',
  'affect',
  'relationship',
  'fine',
  'never',
  'mind',
  'attend',
  'everi',
  'holiday',
  'around',
  'til',
  'yesterday',
  'thanksgiv',
  'dinner',
  'mil',
  'hous',
  'shaun',
  'went',
  'arriv',
  'alreadi',
  'dinner',
  'time',
  'everyon',
  'seat',
  'saw',
  'chair',
  'taken',
  'ask',
  'mil',
  'save',
  'seat',
  'said',
  'sorri',
  'one',
  'granddaught',
  'decid',
  'show',
  'last',
  'minut',
  'chair',
  'taken',
  'look',
  'julissa',
  'sit',
  'next',
  'shaun',
  'tri',
  'point',
  'deserv',
  'chair',
  'sinc',
  'im',
  'dil',
  'know',
  'said',
  'knowi',
  'know',
  'mil',
  'flatout',
  'said',
  'julissa',
  'much',
  'famili',
  'rude',
  'impli',
  'otherwis',
  'julissa',
  'nod',
  'confid',
  'glanc',
  'upset',
  'want',
  'leav',
  'decid',
  'sit',
  'husband',
  'lap',
  'act',
  'casual',
  'possibl',
  'sat',
  'lap',
  'ask',
  'okay',
  'worri',
  'im',
  'petit',
  'strong',
  'built',
  'start',
  'eat',
  'casual',
  'smile',
  'compliment',
  'food',
  'mention',
  'shaun',
  'warm',
  'comfort',
  'lap',
  'tabl',
  'went',
  'awkwardli',
  'silenc',
  'bil',
  'would',
  'tri',
  'break',
  'silenc',
  'chang',
  'subject',
  'somehow',
  'goe',
  'back',
  'awkward',
  'mil',
  'julissa',
  'bare',
  'eat',
  'stare',
  'eye',
  'wide',
  'open',
  'minut',
  'later',
  'julissa',
  'excus',
  'bathroom',
  'mil',
  'still',
  'awkward',
  'best',
  'focu',
  'dinner',
  'shaun',
  'eat',
  'well',
  'later',
  'much',
  'tension',
  'mil',
  'bare',
  'abl',
  'speak',
  'julissa',
  'left',
  'earli',
  'like',
  'right',
  'dinner',
  'shaun',
  'went',
  'home',
  'mil',
  'tri',
  'call',
  'call',
  'shaun',
  'text',
  'say',
  'inappropri',
  'ruin',
  'thanksgiv',
  'dinner',
  'made',
  'awkward',
  'said',
  'fault',
  'chair',
  'taken',
  'couldv',
  'drag',
  'chair',
  'kitchen',
  'act',
  'childishli',
  'made',
  'julissa',
  'famili',
  'uncomfort',
  'inappropri',
  'edit',
  'need',
  'mention',
  'even',
  'took',
  'chair',
  'kitchen',
  'enough',
  'space',
  'dinner',
  'tabl',
  'fit',
  'chair',
  'everyon',
  'sit',
  'next'],
 ['first',
  'want',
  'start',
  'mention',
  'wife',
  'cancer',
  'patient',
  'unfortun',
  'start',
  'lose',
  'hair',
  'due',
  'chemo',
  'therapi',
  'incred',
  'insecur',
  'lack',
  'hair',
  'particular',
  'got',
  'wig',
  'start',
  'wear',
  'mind',
  '%',
  'support',
  'sinc',
  'wear',
  'around',
  'famili',
  'friend',
  'sister',
  'lost',
  'apart',
  'messi',
  'divorc',
  'move',
  'twin',
  'daughter',
  'almost',
  'month',
  'ago',
  'thing',
  'go',
  'well',
  'except',
  'niec',
  'constant',
  'remark',
  'wife',
  'wig',
  'got',
  'hung',
  'kept',
  'ask',
  'lot',
  'question',
  'ask',
  'take',
  'turn',
  'tri',
  'suggest',
  'strighten',
  'strightner',
  'exhaust',
  'even',
  'pressur',
  'see',
  'without',
  'wife',
  'uncomfort',
  'refus',
  'yesterday',
  'got',
  'home',
  'found',
  'wife',
  'lock',
  'bedroom',
  'cri',
  'ask',
  'happen',
  'told',
  'woke',
  'find',
  'wig',
  'discov',
  'niec',
  'took',
  'hid',
  'urg',
  'come',
  'could',
  'see',
  'without',
  'wife',
  'repeatedli',
  'ask',
  'give',
  'back',
  'start',
  'laugh',
  'record',
  'wife',
  'got',
  'lock',
  'door',
  'keep',
  'distanc',
  'caus',
  'stop',
  'fume',
  'went',
  'kitchen',
  'confront',
  'act',
  'confus',
  'abl',
  'get',
  'wig',
  'back',
  'lash',
  'tell',
  'humili',
  'wife',
  'barrass',
  'take',
  'away',
  'wig',
  'said',
  'lightheart',
  'prank',
  'made',
  'go',
  'sister',
  'got',
  'involv',
  'said',
  'wife',
  'sensit',
  'girl',
  'curio',
  'see',
  'without',
  'wig',
  'overreact',
  'told',
  'daughter',
  'record',
  'saw',
  'noth',
  'wrong',
  'said',
  'overreact',
  'well',
  'lost',
  'told',
  'niec',
  'longer',
  'welcom',
  'stay',
  'home',
  'need',
  'leav',
  'later',
  'let',
  'know',
  'evict',
  'sinc',
  'thought',
  'seriou',
  'start',
  'cri',
  'beg',
  'let',
  'go',
  'wife',
  'longer',
  'comfort',
  'around',
  'sister',
  'call',
  'elderi',
  'dad',
  'beg',
  'let',
  'stay',
  'insist',
  'niec',
  'act',
  'like',
  'typic',
  'teenag',
  'offer',
  'speak',
  'wife',
  'declin',
  'theyv',
  'beg',
  'chang',
  'mind',
  'ket',
  'refus',
  'aita'],
 ['sister',
  'husband',
  'struggl',
  'infertil',
  'sinc',
  'got',
  'marri',
  'year',
  'ago',
  'theyv',
  'tri',
  'absolut',
  'everyth',
  'medic',
  'spiritu',
  'unfortun',
  'noth',
  'work',
  'approach',
  'late',
  'theyr',
  'start',
  'look',
  'adopt',
  'also',
  'slow',
  'go',
  'sinc',
  'financi',
  'condit',
  'exactli',
  'stabl',
  'multipl',
  'round',
  'fertil',
  'treatment',
  'went',
  'imagin',
  'struggl',
  'sympath',
  'stress',
  'situat',
  'bring',
  'husband',
  'honestli',
  'put',
  'strain',
  'relationship',
  'husband',
  'lost',
  'best',
  'friend',
  'mason',
  'wife',
  'kate',
  'two',
  'week',
  'ago',
  'horribl',
  'car',
  'accid',
  'left',
  'behind',
  'son',
  'pete',
  'even',
  'two',
  'yet',
  'sudden',
  'heart-wrench',
  'still',
  'griev',
  'lower',
  'contact',
  'lot',
  'peopl',
  'includ',
  'sister',
  'bil',
  'main',
  'concern',
  'right',
  'pete',
  'whose',
  'custodi',
  'come',
  'us',
  'godpar',
  'activ',
  'engag',
  'pete',
  'life',
  'sinc',
  'birth',
  'mason',
  'kate',
  'neither',
  'left',
  'immedi',
  'live',
  'rel',
  'take',
  'weve',
  'decid',
  'adopt',
  'pete',
  'soon',
  'stomach',
  'process',
  'husband',
  'never',
  'plan',
  'kid',
  'even',
  'absolut',
  'way',
  'want',
  'go',
  'situat',
  'far',
  'ideal',
  'start',
  'adopt',
  'process',
  'yesterday',
  'pete',
  'safeti',
  'noth',
  'els',
  'broke',
  'news',
  'extend',
  'famili',
  'friend',
  'let',
  'know',
  'husband',
  'avail',
  'littl',
  'longer',
  'know',
  'sister',
  'bil',
  'someth',
  'say',
  'im',
  'prepar',
  'heat',
  'text',
  'messag',
  'voic',
  'mail',
  'howev',
  'expect',
  'turn',
  'doorstep',
  'cri',
  'unfair',
  'given',
  'everyth',
  'want',
  'deserv',
  'parent',
  'go',
  'ive',
  'never',
  'seen',
  'husband',
  'angri',
  'usual',
  'mild',
  'gentl',
  'recent',
  'event',
  'stretch',
  'patienc',
  'limit',
  'kick',
  'porch',
  'told',
  'sister',
  'left',
  'sinc',
  'pain',
  'inconveni',
  'much',
  'around',
  'famili',
  'anymor',
  'know',
  'made',
  'fuss',
  'everyon',
  'someth',
  'say',
  'us',
  'turn',
  'phone',
  'know',
  'one',
  'curs',
  'us',
  'one',
  'know',
  'didar',
  'husband',
  'pain',
  'griev',
  'cant',
  'trust',
  'object',
  'go',
  'far',
  'edit',
  'origin',
  'want',
  'put',
  'inform',
  'want',
  'everyon',
  'point',
  'say',
  'reason',
  'wrong',
  'sake',
  'disclosur',
  'husband',
  'men',
  'case',
  'homophobia',
  'sister',
  'fault',
  'first',
  'person',
  'accept',
  'love',
  'hear',
  'singl',
  'word',
  'comment'],
 ['lent',
  'bf',
  'money',
  'week',
  'ago',
  'someth',
  'need',
  'promis',
  'pay',
  'back',
  'asap',
  'suppos',
  'pay',
  'back',
  'day',
  'ago',
  'someth',
  'came',
  'tri',
  'patient',
  'yesterday',
  'plan',
  'go',
  'friend',
  'night',
  'dinner',
  'yesterday',
  'came',
  'back',
  'work',
  'rob',
  'bu',
  'money',
  'card',
  'stolen',
  'cancel',
  'card',
  'bank',
  'custom',
  'servic',
  'told',
  'new',
  'card',
  'new',
  'detail',
  'physic',
  'card',
  'digit',
  'detail',
  'appl',
  'pay',
  'would',
  'avail',
  'follow',
  'morn',
  'bank',
  'close',
  'afternoon',
  'money',
  'went',
  'dinner',
  'bf',
  'friend',
  'told',
  'bf',
  'could',
  'pay',
  'back',
  'money',
  'least',
  'pay',
  'meal',
  'sinc',
  'money',
  'exactli',
  'say',
  'ye',
  'simpl',
  'worri',
  'order',
  'order',
  'told',
  'cant',
  'cover',
  'mine',
  'moment',
  'better',
  'order',
  'anyth',
  'bite',
  'meal',
  'mad',
  'frustrat',
  'promis',
  'give',
  'back',
  'money',
  'claim',
  'someth',
  'came',
  'give',
  'back',
  'order',
  'nice',
  'meal',
  'told',
  'get',
  'scrap',
  'pay',
  'back',
  'least',
  'meal',
  'id',
  'one',
  'sit',
  'meal',
  'front',
  'said',
  'ridicul',
  'got',
  'left',
  'friend',
  'believ',
  'low',
  'get',
  'leav',
  'polit',
  'stay',
  'cant',
  'quit',
  'understand',
  'logic',
  'way',
  'ta'],
 ['[',
  'og',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'mani',
  'ask',
  'nonstop',
  'updat',
  'sorri',
  'took',
  'log',
  'back',
  'lot',
  'stuff',
  'go',
  'ye',
  'found',
  'ring',
  'stress',
  'day',
  'deeper',
  'search',
  'hous',
  'tri',
  'think',
  'like',
  'nephew',
  'look',
  'place',
  'think',
  'hed',
  'hide',
  'someth',
  'realli',
  'want',
  'found',
  'decis',
  'realli',
  'found',
  'brother',
  'abl',
  'get',
  'talk',
  'abl',
  'pay',
  'back',
  'im',
  'owe',
  'polic',
  'would',
  'get',
  'involv',
  'beg',
  'told',
  'better',
  'pray',
  'find',
  'come',
  'money',
  'pay',
  'guess',
  'prayer',
  'work',
  'guess',
  'found',
  'freak',
  'sink',
  'sink',
  'thank',
  'comment',
  'told',
  'look',
  'place',
  'idk',
  'wouldv',
  'done',
  'otherwis',
  'sink',
  'guest',
  'room',
  'im',
  'glad',
  'throw',
  'away',
  'guy',
  'know',
  'freak',
  'reliev',
  'find',
  'took',
  'work',
  'remov',
  'trap',
  'sink',
  'get',
  'happi',
  'find',
  'night',
  'girlfriend',
  'fiancé',
  '😉',
  'got',
  'back',
  'propos',
  'said',
  'ye',
  'nice',
  'romant',
  'dinner',
  'two',
  'us',
  'home…',
  'plan',
  'wait',
  'shit',
  'thought',
  'fuck',
  'im',
  'propos',
  'asap',
  'anyth',
  'els',
  'happen',
  '😅🤣',
  'brother',
  'heard',
  'find',
  'ring',
  'thought',
  'meant',
  'could',
  'come',
  'back',
  'said',
  'want',
  'argu',
  'told',
  'lucki',
  'gone',
  'cop',
  'sinc',
  'alreadi',
  'video',
  'evid',
  'son',
  'take',
  'ring',
  'way',
  'im',
  'let',
  'back',
  'nephew',
  'even',
  'say',
  'ring',
  'talk',
  'nephew',
  'found',
  'ring',
  'said',
  'want',
  'tell',
  'anyon',
  'id',
  'mad',
  'hide',
  'honestli',
  'energi',
  'anymor',
  'problem',
  'problem',
  'hope',
  'get',
  'help',
  'late',
  'thing',
  'import',
  'fiancé',
  'start',
  'live',
  'plan',
  'wed',
  '😁',
  'thank',
  'reddit',
  'help',
  'serious',
  'guy',
  'life',
  'saver',
  '😅',
  'edit',
  'add',
  'receiv',
  'news',
  'alreadi',
  'submit',
  'post',
  'approv',
  'want',
  'add',
  'im',
  'happi',
  'girlfriend',
  'also',
  'inform',
  'pregnant',
  '😆😆',
  'found',
  'trip',
  'wait',
  'good',
  'time',
  'tell',
  'relat',
  'post',
  'idc',
  'im',
  'gon',
  'na',
  'dad'],
 ['husband',
  'invit',
  'new',
  'cowork',
  'dinner',
  'arriv',
  'introduc',
  'gestur',
  'say',
  'mr',
  'smith',
  'even',
  'say',
  'nameth',
  'housewif',
  'look',
  'second',
  'start',
  'laugh',
  'hyster',
  'told',
  'said',
  'honey',
  'work',
  'full',
  'time',
  'ye',
  'still',
  'act',
  'like',
  'housewif',
  'im',
  'home',
  'simpli',
  'cant',
  'bother',
  'help',
  'co',
  'worker',
  'stare',
  'tri',
  'laugh',
  'chang',
  'subject',
  'ask',
  'want',
  'drink',
  'dinner',
  'went',
  'super',
  'awkward',
  'give',
  'look',
  'stare',
  'guest',
  'left',
  'blew',
  'say',
  'embarrass',
  'laugh',
  'like',
  'lunat',
  'make',
  'comment',
  'made',
  'infront',
  'new',
  'cowork',
  'ruin',
  'imag',
  'told',
  'wrong',
  'lie',
  'statu',
  'deni',
  'degre',
  'begin',
  'said',
  'couldv',
  'talk',
  'privat',
  'later',
  'like',
  'make',
  'cowork',
  'think',
  'useless',
  'storm',
  'quiet',
  'entir',
  'night',
  'line'],
 ['husband',
  'use',
  'incom',
  'home',
  'weve',
  'lost',
  'home',
  'one',
  'incom',
  'move',
  'smaller',
  'apart',
  'sell',
  'mani',
  'thing',
  'give',
  'costli',
  'habit',
  'husband',
  'expens',
  'habit',
  'go',
  'spa',
  'weekli',
  'massag',
  'session',
  'live',
  'urban',
  'area',
  'stuff',
  'ridicul',
  'expens',
  'singl',
  'session',
  '$',
  'everi',
  'week',
  'thatd',
  'nearli',
  'month',
  'offer',
  'session',
  'regular',
  'spa',
  'get',
  'luxuri',
  'spa',
  'near',
  'restaur',
  'use',
  'go',
  'say',
  'ladi',
  'give',
  'massag',
  'expert',
  'use',
  'problem',
  'im',
  'incom',
  'earner',
  'im',
  'struggl',
  'make',
  'end',
  'meet',
  'im',
  'also',
  'pregnant',
  'need',
  'save',
  'money',
  'prepar',
  'nurseri',
  'told',
  'cut',
  'session',
  'refus',
  'told',
  'pay',
  'anymor',
  'said',
  'hed',
  'get',
  'money',
  'yesterday',
  'check',
  'saw',
  'use',
  'credit',
  'card',
  'session',
  'whole',
  'month',
  'max',
  'complet',
  'found',
  'went',
  'shop',
  'babi',
  'essenti',
  'cashier',
  'said',
  'money',
  'return',
  'everyth',
  'went',
  'home',
  'went',
  'told',
  'max',
  'card',
  'made',
  'look',
  'like',
  'idiot',
  'store',
  'said',
  'tell',
  'caus',
  'knew',
  'id',
  'issu',
  'demand',
  'pay',
  'back',
  '$',
  'spent',
  'refus',
  'yell',
  'call',
  'irrespons',
  'got',
  'upset',
  'call',
  'selfish',
  'told',
  'stop',
  'play',
  'victim',
  'affect',
  'us',
  'sinc',
  'go',
  'parent',
  'stress',
  'keep',
  'dismiss',
  'need',
  'human',
  'went',
  'upstair',
  'went',
  'start',
  'give',
  'silent',
  'kept',
  'demand',
  'money',
  'back',
  'said',
  'expect',
  'back',
  'sinc',
  'marri',
  'money',
  'technic',
  'stop',
  'use',
  'unemploy'],
 ['wife',
  'marri',
  'year',
  'began',
  'tri',
  'conceiv',
  'septemb',
  'luck',
  'far',
  'doctor',
  'say',
  'first',
  'appoint',
  'typic',
  'take',
  'close',
  'year',
  'coupl',
  'conceiv',
  'tell',
  'peopl',
  'infertil',
  'true',
  'doctor',
  'said',
  'wife',
  'went',
  'work',
  'christma',
  'parti',
  'mid',
  'decemb',
  'wife',
  'met',
  'cowork',
  'wife',
  'let',
  'call',
  'mari',
  'took',
  'like',
  'mari',
  'pregnant',
  'invit',
  'wife',
  'babi',
  'shower',
  'yesterday',
  'wife',
  'sound',
  'excit',
  'go',
  'ask',
  'alon',
  'think',
  'shell',
  'fine',
  'know',
  'wife',
  'know',
  'typic',
  'bother',
  'knew',
  'bask',
  'happi',
  'someon',
  'els',
  'pregnanc',
  'urg',
  'think',
  'said',
  'fine',
  'excit',
  'went',
  'babi',
  'shower',
  'yesterday',
  'minut',
  'call',
  'ask',
  'come',
  'cafe',
  'nearbi',
  'knew',
  'stay',
  'long',
  'find',
  'entranc',
  'hous',
  'cri',
  'bunch',
  'women',
  'consol',
  'saw',
  'came',
  'pull',
  'garden',
  'talk',
  'said',
  'danc',
  'look',
  'mari',
  'pregnant',
  'belli',
  'take',
  'anymor',
  'start',
  'cri',
  'ran',
  'mari',
  'friend',
  'follow',
  'consol',
  'consol',
  'said',
  'ok',
  'let',
  'go',
  'babe',
  'want',
  'go',
  'go',
  'drive',
  'feel',
  'better',
  'look',
  'weird',
  'ask',
  'would',
  'leav',
  'ask',
  'would',
  'stay',
  'said',
  'feel',
  'better',
  'go',
  'good',
  'time',
  'sigh',
  'said',
  'babe',
  'know',
  'go',
  'happen',
  'doubt',
  'attent',
  'mari',
  'great',
  'babi',
  'shower',
  'deserv',
  'celebr',
  'cant',
  'see',
  'peopl',
  'go',
  'shift',
  'focu',
  'consol',
  'celebr',
  'still',
  'roll',
  'eye',
  'said',
  'go',
  'back',
  'could',
  'leav',
  'hour',
  'later',
  'parti',
  'near',
  'end',
  'go',
  'back',
  'pick',
  'cowork',
  'step',
  'hous',
  'lo',
  'behold',
  'everyon',
  'sit',
  'circl',
  'wife',
  'centr',
  'attent',
  'cowork',
  'look',
  'wife',
  'call',
  'said',
  'left',
  'age',
  'ago',
  'wife',
  'enter',
  'car',
  'first',
  'ask',
  'feel',
  'spoke',
  'minut',
  'ask',
  'happen',
  'mari',
  'left',
  'said',
  'oh',
  'crap',
  'mari',
  'forgot',
  'say',
  'bye',
  'told',
  'mari',
  'left',
  'age',
  'ago',
  'said',
  'know',
  'go',
  'hard',
  'time',
  'earth',
  'would',
  'friend',
  'consol',
  'minut',
  'fine',
  'entir',
  'parti',
  'realli',
  'left',
  'earlier',
  'look',
  'offend',
  'said',
  'mari',
  'husband',
  'mine',
  'stare',
  'drove',
  'home',
  'silenc',
  'told',
  'want',
  'talk',
  'morn',
  'sort',
  'thing',
  'ignor',
  'left',
  'hous'],
 ['throwaway',
  'year',
  'old',
  'daughter',
  'jess',
  'father',
  'husband',
  'die',
  'accid',
  'young',
  'us',
  'two',
  'long',
  'time',
  'result',
  'close',
  'lot',
  'open',
  'kid',
  'parent',
  'around',
  'week',
  'ago',
  'ask',
  'could',
  'take',
  'movi',
  'date',
  'guy',
  'class',
  'know',
  'guy',
  'distantli',
  'theyv',
  'done',
  'extra',
  'curricular',
  'togeth',
  'thrill',
  'daughter',
  'first',
  '‘',
  'boyfriend',
  'took',
  'day',
  'ago',
  'end',
  'hang',
  'hous',
  'bit',
  'afterward',
  'extrem',
  'polit',
  'mayb',
  'mum',
  'insid',
  'happier',
  'went',
  'older',
  'sister',
  'hous',
  'coffe',
  'earlier',
  'morn',
  'backstori',
  'sister',
  'two',
  'teenag',
  'live',
  'almost',
  'full',
  'time',
  'dad',
  'messi',
  'divorc',
  'around',
  'three',
  'year',
  'ago',
  'kid',
  'choos',
  'live',
  'dad',
  'reason',
  'sister',
  'extrem',
  'bear',
  'kind',
  'mum',
  'believ',
  'kid',
  'privaci',
  'run',
  'live',
  'adult',
  'know',
  'mani',
  'argument',
  'would',
  'take',
  'away',
  'door',
  'let',
  'hang',
  'friend',
  'search',
  'phone',
  'everi',
  'night',
  'etc',
  'primari',
  'reason',
  'divorc',
  'although',
  'admit',
  'love',
  'someon',
  'grew',
  'littl',
  'privaci',
  'fulli',
  'understand',
  'kid',
  'want',
  'live',
  'daughter',
  'came',
  'convers',
  'bought',
  'first',
  'date',
  'explain',
  'went',
  'sister',
  'laugh',
  'told',
  'must',
  'joke',
  'realis',
  'seriou',
  'told',
  'terribl',
  'mother',
  'let',
  'daughter',
  'walk',
  'set',
  'boundari',
  'rant',
  'basic',
  'said',
  'year',
  'old',
  'incap',
  'go',
  'lazi',
  'neglect',
  'allow',
  'also',
  'said',
  '‘',
  'would',
  'never',
  'allow',
  'kid',
  'repli',
  'say',
  '‘',
  'exactli',
  'kid',
  'drive',
  'dad',
  'got',
  'quiet',
  'told',
  'leav',
  'got',
  'home',
  'start',
  'think',
  'said',
  'time',
  'thought',
  'simpli',
  'tell',
  'need',
  'hear',
  'im',
  'wonder',
  'cross',
  'line'],
 ['might',
  'sound',
  'bad',
  'know',
  'ta',
  'date',
  'boyfriend',
  'rhett',
  'month',
  'live',
  'differ',
  'town',
  'american',
  'live',
  'usual',
  'visit',
  'weekend',
  'time',
  'decid',
  'visit',
  'town',
  'eat',
  'diner',
  'rhett',
  'alreadi',
  'arriv',
  'diner',
  'talk',
  'check',
  'menu',
  'time',
  'order',
  'pull',
  'small',
  'bell',
  'jacket',
  'pocket',
  'lift',
  'start',
  'shake',
  'produc',
  'loud',
  'annoy',
  'sound',
  'ear',
  'start',
  'hurt',
  'confus',
  'ask',
  'said',
  'tri',
  'get',
  'one',
  'waiter',
  'staff',
  'attent',
  'said',
  'embarrass',
  'stop',
  'right',
  'kept',
  'shake',
  'begin',
  'explain',
  'look',
  'receiv',
  'everyon',
  'demand',
  'stop',
  'said',
  'til',
  'someon',
  'came',
  'took',
  'order',
  'threaten',
  'leav',
  'place',
  'cancel',
  'dinner',
  'kept',
  'someon',
  'came',
  'alreadi',
  'id',
  'alreadi',
  'gotten',
  'took',
  'purs',
  'start',
  'make',
  'way',
  'follow',
  'start',
  'argu',
  'walk',
  'told',
  'take',
  'embarrass',
  'got',
  'upset',
  'said',
  'get',
  'thought',
  'bell',
  'embarrass',
  'explain',
  'perfect',
  'solut',
  'longer',
  'forc',
  'wait',
  'til',
  'someon',
  'show',
  'ask',
  'accept',
  'america',
  'said',
  'ye',
  'free',
  'countri',
  'peopl',
  'usual',
  'give',
  'shit',
  'said',
  'inappropri',
  'embarrasd',
  'said',
  'sensit',
  'overreact',
  'noth',
  'insist',
  'go',
  'back',
  'insid',
  'refus',
  'end',
  'leav',
  'kept',
  'ruin',
  'dinner',
  'cancel',
  'offend',
  'act',
  'like',
  'behavior',
  'sham',
  'said',
  'right',
  'give',
  'opinion',
  'done',
  'even',
  'thought',
  'basic',
  'told',
  'get',
  'high',
  'hors',
  'stop',
  'call',
  'geniu',
  'idea',
  'embarrass',
  'sulk',
  'day',
  'want',
  'apolog',
  'mayb',
  'overreact',
  'mayb',
  'noth',
  'live',
  'unaccept'],
 ['daughterf',
  'dy',
  'hair',
  'dark',
  'reddish',
  'brown',
  'birthdayi',
  'let',
  'dye',
  'hair',
  'middl',
  'school',
  'said',
  'could',
  'high',
  'school',
  'school',
  'dress',
  'code',
  'hair',
  'specifi',
  'natur',
  'hair',
  'color',
  'took',
  'mean',
  'brown',
  'blond',
  'red',
  'black',
  'etc',
  'basic',
  'natur',
  'tone',
  'natur',
  'hair',
  'black',
  'think',
  'much',
  'chang',
  'hairdress',
  'bleach',
  'hair',
  'said',
  'lighten',
  'enough',
  'caus',
  'signific',
  'damag',
  'one',
  'teacher',
  'begin',
  'oct',
  'last',
  'year',
  'began',
  'complain',
  'parent',
  'teacher',
  'meet',
  'hair',
  'meet',
  'dress',
  'code',
  'said',
  'hair',
  'color',
  'grew',
  'peopl',
  'head',
  'dress',
  'code',
  'told',
  'clearli',
  'natur',
  'color',
  'shot',
  'back',
  'ton',
  'student',
  'saw',
  'even',
  'blond',
  'hair',
  'highlight',
  'clearli',
  'natur',
  'brunett',
  'claim',
  'look',
  'like',
  'could',
  'blond',
  'daughter',
  'hair',
  'suppos',
  'black',
  'daughter',
  'asian',
  'pretti',
  'racist',
  'say',
  'cant',
  'dye',
  'hair',
  'brought',
  'principl',
  'agre',
  'say',
  'dress',
  'code',
  'saw',
  'ton',
  'white',
  'kid',
  'class',
  'obvious',
  'brown',
  'hair',
  'dy',
  'blond',
  'even',
  'red',
  'one',
  'said',
  'anyth',
  'want',
  'darken',
  'hair',
  'look',
  'natur',
  'went',
  'end',
  'school',
  'year',
  'contact',
  'superintend',
  'sever',
  'time',
  'never',
  'got',
  'back',
  'almost',
  'start',
  'school',
  'get',
  'email',
  'principl',
  'remind',
  'daughter',
  'allow',
  'black',
  'hair',
  'still',
  'reddish',
  'brown',
  'hair',
  'want',
  'dye',
  'back',
  'ive',
  'tri',
  'fight',
  'last',
  'thing',
  'barg',
  'superintend',
  'offic',
  'demand',
  'get',
  'involv'],
 ['httpswwwredditcomramitheassholecommentsuuhziaita_for_not_waking_my_partner_up_and_causing_himutm_medium=android_app',
  '&',
  'utm_source=shar',
  'post',
  'receiv',
  'messag',
  'express',
  'concern',
  'advic',
  'thought',
  'id',
  'updat',
  'thing',
  'turn',
  'morn',
  'incid',
  'partner',
  'got',
  'bed',
  'kid',
  'took',
  'older',
  'girl',
  'breakfast',
  'later',
  'ask',
  'hed',
  'read',
  'thread',
  'agre',
  'subdu',
  'afterward',
  'say',
  'much',
  'except',
  'agre',
  'ah',
  'next',
  'day',
  'took',
  'work',
  'saw',
  'gp',
  'start',
  'anti-depress',
  'long',
  'talk',
  'asham',
  'act',
  'see',
  'stranger',
  'compar',
  'children',
  'cri',
  'realis',
  'much',
  'let',
  'everyon',
  'especi',
  'daughter',
  'grow',
  'think',
  'normal',
  'behaviour',
  'confirm',
  'start',
  'live',
  'parent',
  'year',
  'back',
  'left',
  'home',
  'get',
  'away',
  'mother',
  'told',
  'hed',
  'fail',
  'men',
  'need',
  'woman',
  'look',
  'felt',
  'like',
  'failur',
  'easi',
  'mother',
  'feed',
  'idea',
  'would',
  'also',
  'manipul',
  'thing',
  'look',
  'like',
  'incompet',
  'person',
  'eg',
  'id',
  'tell',
  'relax',
  'id',
  'handl',
  'dish',
  'mother',
  'twist',
  'think',
  'incompet',
  'stop',
  'help',
  'hed',
  'wake',
  'feel',
  'useless',
  'manag',
  'convinc',
  'unhappi',
  'take',
  'care',
  'way',
  'wife',
  'decid',
  'got',
  'contact',
  'go',
  'well',
  'cri',
  'told',
  'horribl',
  'son',
  'abandon',
  'mother',
  'tri',
  'control',
  'forc',
  'block',
  'shed',
  'use',
  'differ',
  'number',
  'continu',
  'call',
  'week',
  'end',
  'chang',
  'number',
  'heard',
  'famili',
  'sinc',
  'bought',
  'unhappi',
  'work',
  'stimul',
  'enough',
  'felt',
  'like',
  'leav',
  'offer',
  'pick',
  'part',
  'time',
  'work',
  'said',
  'talk',
  'boss',
  'took',
  'time',
  'eventu',
  'quit',
  'spoke',
  'dad',
  'use',
  'connect',
  'got',
  'good',
  'job',
  'compani',
  'new',
  'job',
  'primarili',
  'work',
  'home',
  'posit',
  'abl',
  'help',
  'girl',
  'free',
  'time',
  'abl',
  'take',
  'girl',
  'school',
  'watch',
  'play',
  'work',
  'enjoy',
  'start',
  'new',
  'job',
  'book',
  'trip',
  'us',
  'go',
  'snow',
  'week',
  'blast',
  'love',
  'see',
  'relax',
  'happi',
  'enjoy',
  'girl',
  'life',
  'promis',
  'honest',
  'feel',
  'relationship',
  'improv',
  'immens',
  'thank',
  'everyon',
  'gave',
  'judgement',
  'advis',
  'say',
  'realli',
  'help',
  'see',
  'thing',
  'clearli',
  'especi',
  'toxic',
  'relationship',
  'mother'],
 ['partnerm',
  'year',
  'live',
  'togeth',
  'marri',
  'plan',
  'marri',
  'futur',
  'sonm',
  'current',
  'highschool',
  'senior',
  'partner',
  'daughterf',
  'go',
  'colleg',
  'background',
  'need',
  'understand',
  'issu',
  'met',
  'partner',
  'widow',
  'year',
  'lucki',
  'enough',
  'lucr',
  'busi',
  'famili',
  'money',
  'also',
  'late',
  'husband',
  'left',
  'substanti',
  'estat',
  'includ',
  'hous',
  'live',
  'hous',
  'famili',
  'home',
  'pass',
  'son',
  'heir',
  'partner',
  'also',
  'make',
  'good',
  'money',
  'differ',
  'lifestyl',
  'pretti',
  'much',
  'neglig',
  'late',
  'husband',
  'made',
  'sure',
  'spoil',
  'son',
  'respons',
  'keep',
  'room',
  'clean',
  'even',
  'though',
  'hous',
  'keeper',
  'chore',
  'weekend',
  'taught',
  'cook',
  'allow',
  'reason',
  'save',
  'expens',
  'purchas',
  'like',
  'car',
  'psetc',
  'current',
  'partner',
  'ex-wif',
  'spoil',
  'daughter',
  'rotten',
  'due',
  'incid',
  'first',
  'move',
  'togeth',
  'demand',
  'son',
  'bedroom',
  'sinc',
  'second',
  'biggest',
  'got',
  'reject',
  'sinc',
  'home',
  'spend',
  'weekend',
  'famili',
  'therapi',
  'agre',
  'treat',
  'like',
  'guest',
  'follow',
  'hous',
  'rule',
  'extent',
  'relationship',
  'spoil',
  'good',
  'girl',
  'academ',
  'excel',
  'except',
  'aforement',
  'incid',
  'respect',
  'pleasant',
  'young',
  'woman',
  'probelm',
  'know',
  'extent',
  'partner',
  'spent',
  'money',
  'pay',
  'money',
  'rent',
  'put',
  'son',
  'colleg',
  'fund',
  'split',
  'common',
  'bill',
  'half',
  'everyth',
  'els',
  'respons',
  'know',
  'much',
  'financ',
  'son',
  'plan',
  'tour',
  'east',
  'asia',
  'summer',
  'happi',
  'give',
  'money',
  'gift',
  'get',
  'prestigi',
  'colleg',
  'stepdaught',
  'heard',
  'ask',
  'dad',
  'pay',
  'tour',
  'europ',
  'sinc',
  'send',
  'one',
  'got',
  'colleg',
  'agre',
  'never',
  'say',
  'came',
  'ask',
  'lend',
  'close',
  '$',
  'cant',
  'afford',
  'trip',
  'even',
  'give',
  'much',
  'son',
  'plane',
  'ticket',
  'expens',
  'refus',
  'said',
  'sinc',
  'emerg',
  'save',
  'send',
  'trip',
  'graduat',
  'colleg',
  'talk',
  'say',
  'chose',
  'favourit',
  'relationship',
  'daughter',
  'know',
  'even',
  'applic',
  'put',
  'money',
  'happi',
  'relationship',
  'daughter',
  'aita',
  'easili',
  'afford',
  'lend',
  'full',
  'amount',
  'want',
  'reason',
  'convinc',
  'enough'],
 ['pleas',
  'read',
  'full',
  'stori',
  'husband',
  'brother',
  'bil',
  'wife',
  'sil',
  'struggl',
  'infertil',
  'year',
  'tri',
  'much',
  'long',
  'decid',
  'stop',
  'startedsort',
  'live',
  'experi',
  'child',
  'thing',
  'parent',
  'like',
  'get',
  'nurseri',
  'remov',
  'buy',
  'bani',
  'coth',
  'toy',
  'attend',
  'school',
  'show',
  'etc',
  'etc',
  'im',
  'month',
  'pregnant',
  'bil',
  '&',
  'sil',
  'ask',
  'mani',
  'question',
  'like',
  'expect',
  'bothersom',
  'get',
  'involv',
  'grin',
  '&',
  'bear',
  'til',
  'request',
  'deliveri',
  'room',
  'experi',
  'child',
  'birth',
  'said',
  'stood',
  'firm',
  'later',
  'discov',
  'husband',
  'volunt',
  'place',
  'give',
  'brother',
  'wife',
  'chanc',
  'experi',
  'fight',
  'told',
  'bil',
  '&',
  'sil',
  'came',
  'later',
  'tri',
  'talk',
  'nice',
  'said',
  'push',
  'blew',
  'tell',
  'fertil',
  'problem',
  'fault',
  'harsh',
  'know',
  'regret',
  'say',
  'told',
  'get',
  'therapi',
  'sil',
  'start',
  'cri',
  'bil',
  'ask',
  'take',
  'time',
  'think',
  'rude',
  'said',
  'noth',
  'think',
  'mind',
  'alreadi',
  'made',
  'left',
  'husband',
  'start',
  'rage',
  'yell',
  'child',
  'rude',
  'dismiss',
  'griev',
  'strugglig',
  'brother',
  'wife',
  'told',
  'look',
  'eye',
  'tell',
  'would',
  'happi',
  'ruin',
  'brother',
  'marriag',
  'small',
  'yet',
  'grace',
  'deed',
  'help',
  'bil',
  'wife',
  'process',
  'trauma',
  'final',
  'make',
  'peac',
  'felt',
  'much',
  'anger',
  'cri',
  'told',
  'get',
  'alreadi',
  'stop',
  'purpos',
  'selfish',
  'petti',
  'talk',
  'say',
  'stay',
  'way',
  'til',
  'say',
  'ye',
  'mightv',
  'act',
  'cruel',
  'want',
  'father',
  'child',
  'feel',
  'comfort',
  'bil',
  '&',
  'sil'],
 ['sorri',
  'wordi',
  'titl',
  'dad',
  'left',
  'mom',
  'step-mom',
  'four',
  'year',
  'ago',
  'met',
  'marri',
  'sm',
  'aida',
  'kid',
  'previou',
  'marriag',
  'dad',
  'love',
  'parent',
  'instead',
  'got',
  'togeth',
  'saw',
  'best',
  '-',
  'time',
  'everi',
  'year',
  'move',
  'hour',
  'away',
  'year',
  'later',
  'chang',
  'heart',
  'demand',
  'custodi',
  'made',
  'miser',
  'built',
  'room',
  'new',
  'hous',
  'tri',
  'fill',
  'miss',
  'year',
  'new',
  'gift',
  'even',
  'plan',
  'big',
  'birthday',
  'parti',
  'th',
  'birthday',
  'stop',
  'go',
  'place',
  'dad',
  'left',
  'mom',
  'brother',
  'time',
  'took',
  'one',
  'boy',
  'mom',
  'move',
  'back',
  'grandpar',
  'place',
  'uncl',
  'live',
  'next',
  'door',
  'alreadi',
  'kid',
  'alway',
  'father',
  'aunt',
  'like',
  'second',
  'mother',
  'cousin',
  'like',
  'brother',
  'never',
  'stop',
  'go',
  'bio-dad',
  'mom',
  'get',
  'second',
  'job',
  'use',
  'sleep',
  'uncl',
  'pretti',
  'much',
  'everi',
  'day',
  'understand',
  'last',
  'year',
  'grandma',
  'told',
  'dad',
  'stop',
  'pay',
  'child',
  'support',
  'spite',
  'mom',
  'money',
  'take',
  'court',
  'ever',
  'sinc',
  'turn',
  'father',
  'day',
  'uncl',
  'cousin',
  'make',
  'breakfast',
  'plan',
  'fun',
  'day',
  'small',
  'gift',
  'im',
  'step-mom',
  'sent',
  'fb',
  'messag',
  'say',
  'im',
  'old',
  'enough',
  'give',
  'part',
  'bio-dad',
  'gift',
  'year',
  'step-kid',
  'want',
  'give',
  'car',
  'put',
  '%',
  'like',
  'sent',
  'lol',
  'meme',
  'said',
  'could',
  'use',
  'miss',
  'child',
  'support',
  'cover',
  'block',
  'later',
  'one',
  'kid',
  'sent',
  'ah',
  'messag',
  'aita'],
 ['last',
  'week',
  'stepdaught',
  'sd',
  'th',
  'birthday',
  'hospit',
  'day',
  'prior',
  'medic',
  'issu',
  'better',
  'husband',
  'threw',
  'small',
  'birthday',
  'parti',
  'unbeknowest',
  'boy',
  '&',
  'decid',
  'pull',
  'funni',
  'prank',
  'mess',
  'birthday',
  'cake',
  'made',
  'instead',
  'ad',
  'ice',
  'cake',
  'ad',
  'mayonnais',
  'go',
  'well',
  'sd',
  'reaction',
  'cri',
  'husband',
  'blew',
  'boy',
  'said',
  'tri',
  'prank',
  'sinc',
  'norm',
  'alway',
  'prank',
  'husband',
  'said',
  'wrong',
  'time',
  'birthday',
  'especi',
  'get',
  'hospit',
  'told',
  'boy',
  'ruin',
  'birthday',
  'told',
  'exaggar',
  'statement',
  'got',
  'upset',
  'yell',
  'defend',
  'behavior',
  'enbler',
  'boy',
  'love',
  'act',
  'like',
  'husband',
  'non',
  'sd',
  'speak',
  'boy',
  'aita',
  'say',
  'exaggar'],
 ['mother',
  'wonder',
  'year',
  'old',
  'son',
  'whole',
  'thing',
  'happen',
  'last',
  'april',
  'still',
  'get',
  'complaint',
  'ask',
  'stranger',
  'judgement',
  'internet',
  'last',
  'year',
  'kid',
  'first',
  'year',
  'big',
  'kid',
  'school',
  'like',
  'call',
  'sinc',
  'first',
  'grade',
  'coincid',
  'pandem',
  'best',
  'place',
  'financi',
  'like',
  'famili',
  'consum',
  'debt',
  'pile',
  'throw',
  'everi',
  'spare',
  'cent',
  'time',
  'throw',
  'parti',
  'invit',
  'classmat',
  'one',
  'consid',
  'friend',
  'sent',
  'dozen',
  'cupcak',
  'juic',
  'box',
  'class',
  'invit',
  'deliv',
  'hous',
  'front',
  'kid',
  'like',
  'said',
  'money',
  'tight',
  'got',
  'creativ',
  'made',
  'small',
  'cake',
  'box',
  'cake',
  'vanilla',
  'chocol',
  'funfetti',
  'buttercream',
  'differ',
  'colour',
  'also',
  'made',
  'big',
  'sugar',
  'cooki',
  'differ',
  'colour',
  'frost',
  'sprinkl',
  'final',
  'bought',
  'tortilla',
  'made',
  'pizza',
  'sauc',
  'varieti',
  'top',
  'ask',
  'kid',
  'bring',
  'swimsuit',
  'water',
  'gun',
  'make',
  'pizza',
  'station',
  'lunch',
  'play',
  'water',
  'gun',
  'decor',
  'cake',
  'final',
  'cooki',
  'take',
  'home',
  'saturday',
  'well',
  'next',
  'monday',
  'kid',
  'would',
  'stop',
  'rave',
  'fun',
  'parti',
  'best',
  'birthday',
  'parti',
  'ever',
  'kid',
  'happi',
  'invit',
  'pick',
  'tuesday',
  'coupl',
  'mom',
  'confront',
  'invit',
  'kid',
  'said',
  'sorri',
  'small',
  'parti',
  'close',
  'friend',
  'kept',
  'complain',
  'exclud',
  'kid',
  'take',
  'serious',
  'new',
  'school',
  'year',
  'almost',
  'month',
  'later',
  'still',
  'get',
  'occasion',
  'comment',
  'thrown',
  'aita'],
 ['got',
  'marri',
  'week',
  'ago',
  'marri',
  'end',
  'found',
  'older',
  'brother',
  'thoma',
  'got',
  'involv',
  'first',
  'wife',
  'devast',
  'close',
  'great',
  'relationship',
  'also',
  'help',
  'much',
  'struggl',
  'see',
  'repaid',
  'hurt',
  'day',
  'stop',
  'talk',
  'mom',
  'dad',
  'forc',
  'keep',
  'secret',
  'weak',
  'argu',
  'kept',
  'owm',
  'distanc',
  'met',
  'wife',
  'famili',
  'love',
  'embrac',
  'mom',
  'dad',
  'treat',
  'like',
  'queen',
  'help',
  'repair',
  'soldifi',
  'relationship',
  'howev',
  'wed',
  'approach',
  'told',
  'expect',
  'invit',
  'thoma',
  'cours',
  'refus',
  'kept',
  'guilt',
  'rel',
  'guest',
  'would',
  'think',
  'say',
  'see',
  'thoma',
  'fought',
  'til',
  'day',
  'wed',
  'turn',
  'theyd',
  'invit',
  'behind',
  'back',
  'found',
  'stop',
  'time',
  'came',
  'wed',
  'look',
  'piss',
  'ask',
  'go',
  'tell',
  'peopl',
  'ask',
  'thoma',
  'told',
  'id',
  'take',
  'care',
  'take',
  'moment',
  'everyon',
  'pay',
  'attent',
  'grab',
  'mic',
  'flatout',
  'announc',
  'said',
  'reason',
  'invit',
  'thoma',
  'wed',
  'worri',
  'hed',
  'steal',
  'wife',
  'like',
  'stole',
  'first',
  'one',
  'said',
  'play',
  'make',
  'sound',
  'tens',
  'guest',
  'look',
  'shock',
  'start',
  'mumbl',
  'went',
  'awkwardli',
  'quiet',
  'moment',
  'move',
  'saw',
  'mom',
  'dad',
  'walk',
  'look',
  'grudgingli',
  'later',
  'start',
  'lash',
  'expos',
  'thoma',
  'caus',
  'shun',
  'famili',
  'hideo',
  'way',
  'told',
  'alreadi',
  'said',
  'want',
  'yet',
  'tri',
  'push',
  'repeatedli',
  'say',
  'peopl',
  'go',
  'say',
  'told',
  'reason',
  'play',
  'way',
  'guest',
  'still',
  'got',
  'messag',
  'mom',
  'start',
  'yell',
  'everyon',
  'look',
  'shun',
  'thoma',
  'call',
  'pathet',
  'cruel',
  'still',
  'punish',
  'gradual',
  'ruin',
  'life',
  'despit',
  'apolog',
  'tri',
  'reconcil',
  'opinion',
  'someth',
  'unforgiv',
  'weve',
  'horribl',
  'term',
  'sinc',
  'aita',
  'wife',
  'said',
  'least',
  'theyr',
  'back',
  'peopl',
  'would',
  'say',
  'invit'],
 ['live',
  'parent',
  'older',
  'sister',
  'super',
  'young',
  'like',
  'think',
  'mom',
  'dad',
  'great',
  'job',
  'lot',
  'problem',
  'chronic',
  'unemploy',
  'thief',
  'two',
  'kid',
  'okay',
  'live',
  'us',
  'well',
  'boyfriend',
  'want',
  'around',
  'like',
  'kid',
  'spoil',
  'littl',
  'brat',
  'parent',
  'dote',
  'make',
  'shitti',
  'parent',
  'mom',
  'parent',
  'let',
  'put',
  'lock',
  'door',
  'hous',
  'want',
  'problem',
  'talk',
  'kid',
  'explain',
  'would',
  'happen',
  'came',
  'room',
  'without',
  'permiss',
  'understand',
  'well',
  'sister',
  'broke',
  'boyfriend',
  'need',
  'place',
  'stay',
  'beg',
  'parent',
  'let',
  'stay',
  'us',
  'declin',
  'beg',
  'lock',
  'door',
  'dice',
  'go',
  'school',
  'cant',
  'guard',
  'stuff',
  'time',
  'came',
  'home',
  'friday',
  'found',
  'car',
  'absolut',
  'trash',
  'side',
  'destroy',
  'sister',
  'gone',
  'room',
  'found',
  'spare',
  'key',
  'taken',
  'car',
  'lost',
  'control',
  'ice',
  'day',
  'eat',
  'crap',
  'toss',
  'fast',
  'food',
  'wrapper',
  'everywher',
  'sideswip',
  'tree',
  'saw',
  'car',
  'livid',
  'told',
  'parent',
  'expect',
  'pay',
  'fix',
  'said',
  'money',
  'said',
  'would',
  'call',
  'grandpar',
  'help',
  'get',
  'car',
  'insur',
  'talk',
  'grandfath',
  'came',
  'back',
  'talk',
  'parent',
  'said',
  'insur',
  'would',
  'cover',
  'fix',
  'replac',
  'car',
  'depend',
  'damag',
  'would',
  'file',
  'polic',
  'report',
  'sister',
  'would',
  'probabl',
  'charg',
  'steal',
  'car',
  'beg',
  'tell',
  'insur',
  'permiss',
  'said',
  'nope',
  'rather',
  'go',
  'insur',
  'replac',
  'car',
  'use',
  'money',
  'sett',
  'asid',
  'take',
  'niec',
  'orlando',
  'next',
  'summer',
  'graduat',
  'fine',
  'without',
  'see',
  'disney',
  'world',
  'parent',
  'sister',
  'niec',
  'upset',
  'say',
  'im',
  'asshol',
  'deni',
  'niec',
  'opportun',
  'go',
  'vacat',
  'never',
  'ask',
  'lock',
  'door',
  'would',
  'cheaper',
  'aita',
  'edit',
  'hey',
  'got',
  'home',
  'school',
  'deadbolt',
  'bedroom',
  'door',
  'mom',
  'gave',
  'key',
  'say',
  'keep',
  'one',
  'emerg',
  'agre',
  'long',
  'emerg'],
 ['partner',
  'togeth',
  'year',
  'daughter',
  'previou',
  'relationship',
  'right',
  'bat',
  'made',
  'known',
  'fertil',
  'issu',
  'like',
  'ever',
  'abl',
  'father',
  'child',
  'move',
  'slow',
  'relationship',
  'although',
  'fallen',
  'love',
  'fast',
  'thing',
  'got',
  'seriou',
  'overheard',
  'tell',
  'sister',
  'concern',
  'might',
  '‘',
  'aggress',
  'type',
  'person',
  'amount',
  'scar',
  'want',
  'scare',
  'away',
  'told',
  'bad',
  'childhood',
  'left',
  'littl',
  'two',
  'year',
  'relationship',
  'felt',
  'somewhat',
  'comfort',
  'open',
  'first',
  'time',
  'told',
  'exactli',
  'im',
  'infertil',
  'direct',
  'result',
  'injuri',
  'suffer',
  'due',
  'trauma',
  'child',
  'realli',
  'empathet',
  'thank',
  'found',
  'one',
  'want',
  'spend',
  'life',
  'also',
  'came',
  'kid',
  'ador',
  'fast',
  'forward',
  'last',
  'summer',
  'partner',
  'friend',
  'decid',
  'play',
  'impromptu',
  'prank',
  'came',
  'home',
  'work',
  'multipl',
  'posit',
  'pregnanc',
  'test',
  'bathroom',
  'partner',
  'announc',
  'pregnant',
  'start',
  'freak',
  'out…',
  'happi',
  'freak',
  'caus',
  'thought',
  'hit',
  'lotteri',
  'slim',
  'none',
  'chanc',
  'start',
  'laugh',
  'test',
  'friend',
  'partner',
  'pretti',
  'much',
  'devast',
  'felt',
  'realli',
  'let',
  'partner',
  'would',
  'actual',
  'pull',
  'prank',
  'like',
  'first',
  'shock',
  'reaction',
  'said',
  'thought',
  'know',
  'joke',
  'consid',
  'circumst',
  'end',
  'apolog',
  'realiz',
  'hurt',
  'point',
  'post',
  'three',
  'week',
  'ago',
  'arrang',
  'huge',
  'dinner',
  'entir',
  'famili',
  'hous',
  'us',
  'play',
  'stupid',
  'mysteri',
  'game',
  'ultim',
  'announc',
  'everyon',
  'pregnant',
  'mother',
  'sister',
  'deliri',
  'happi',
  'immedi',
  'got',
  'piss',
  'think',
  'yet',
  'anoth',
  'prank',
  'show',
  'absolut',
  'emot',
  'everyon',
  'caught',
  'said',
  'partner',
  'either',
  'mental',
  'disturb',
  'cheat',
  'pretti',
  'much',
  'hell',
  'broke',
  'loos',
  'partner',
  'pov',
  'sincer',
  'apologet',
  'prank',
  'know',
  'well',
  'enough',
  'think',
  'shed',
  'ever',
  'pull',
  'stunt',
  'also',
  'livid',
  'ruin',
  'announc',
  'embarrass',
  'front',
  'entir',
  'famili',
  'caus',
  'think',
  'im',
  'horribl',
  'person',
  'final',
  'insinu',
  'cheater',
  'still',
  'stand',
  'claim',
  'never',
  'prank',
  'reaction',
  'would',
  'differ',
  'find',
  'odd',
  'decid',
  'tell',
  'along',
  'famili',
  'thing',
  'would',
  'like',
  'went',
  'better',
  'told',
  'first',
  'announc',
  'togeth',
  'im',
  'start',
  'think',
  'act',
  'immatur',
  'caus',
  'scene',
  'front',
  'famili',
  'think',
  'mayb',
  'im',
  'wrong'],
 ['husband',
  'car',
  'sold',
  'old',
  'one',
  'help',
  'pay',
  'brother',
  'wed',
  'agre',
  'car',
  'got',
  'togeth',
  'share',
  'properti',
  'besid',
  'car',
  'affect',
  'til',
  'husband',
  'start',
  'complain',
  'commut',
  'work',
  'hangout',
  'place',
  'tri',
  'get',
  'let',
  'drive',
  'car',
  'sever',
  'time',
  'stood',
  'firm',
  'put',
  'boundari',
  'make',
  'understand',
  'car',
  'never',
  'driven',
  'one',
  'reason',
  'bad',
  'drive',
  'brother',
  'live',
  'town',
  'husband',
  'ask',
  'could',
  'drive',
  'car',
  'wed',
  'refus',
  'im',
  'imvit',
  'anoth',
  'stori',
  'anoth',
  'day',
  'buy',
  'like',
  'said',
  'car',
  'limit',
  'threw',
  'fit',
  'call',
  'unreason',
  'let',
  'take',
  'public',
  'transport',
  'bare',
  'stand',
  'minut',
  'let',
  'alon',
  'hour',
  'said',
  'problem',
  'irrit',
  'made',
  'stop',
  'argu',
  'day',
  'suppos',
  'travel',
  'town',
  'woke',
  'find',
  'car',
  'key',
  'went',
  'outsid',
  'find',
  'car',
  'either',
  'beyond',
  'piss',
  'call',
  'like',
  'expect',
  'took',
  'way',
  'town',
  'lost',
  'told',
  'gave',
  'permiss',
  'take',
  'whole',
  'day',
  'said',
  'turn',
  'around',
  'come',
  'home',
  'id',
  'call',
  'cop',
  'report',
  'miss',
  'respons',
  'dare',
  'caus',
  'know',
  'would',
  'happen',
  'hung',
  'immedi',
  'call',
  'polic',
  'told',
  'situat',
  'tell',
  'husband',
  'took',
  'theyd',
  'think',
  'famili',
  'disput',
  'decid',
  'get',
  'involv',
  'report',
  'miss',
  'hour',
  'later',
  'got',
  'call',
  'husband',
  'say',
  'back',
  'town',
  'held',
  'local',
  'polic',
  'station',
  'went',
  'station',
  'talk',
  'cop',
  'husband',
  'made',
  'scene',
  'swear',
  'gave',
  'permiss',
  'take',
  'said',
  'act',
  'jealousi',
  'spite',
  'go',
  'attent',
  'wed',
  'invit',
  'took',
  'car',
  'went',
  'home',
  'stay',
  'littl',
  'longer',
  'came',
  'home',
  'even',
  'went',
  'rage',
  'fit',
  'creat',
  'aw',
  'situat',
  'almost',
  'caus',
  'miss',
  'brother',
  'wed',
  'call',
  'vindict',
  'bitter',
  'lunat',
  'call',
  'polic',
  'tri',
  'accus',
  'steal',
  'car',
  'leav',
  'day',
  'abl',
  'famili',
  'decid',
  'extent',
  'stay',
  'still',
  'gotten',
  'back',
  'yet',
  'right',
  'mom',
  'brother',
  'blast',
  'happen',
  'call',
  'spite'],
 ['ok',
  'guy',
  'im',
  'extrem',
  'tri',
  'long',
  'ass',
  'day',
  'pleas',
  'excus',
  'poor',
  'grammar',
  'spell',
  'mistak',
  'begin',
  'brother',
  'ben',
  'fake',
  'name',
  'relationship',
  'abbi',
  'fake',
  'name',
  'year',
  'theyv',
  'engag',
  'year',
  'theyv',
  'nearli',
  'gotten',
  'marri',
  'year',
  'ago',
  'month',
  'wed',
  'ben',
  'chicken',
  'went',
  'therapi',
  'basic',
  'dad',
  'left',
  'us',
  'issu',
  'commit',
  'thought',
  'last',
  'year',
  'final',
  'gon',
  'na',
  'step',
  'abbi',
  'partner',
  'deserv',
  'seem',
  'bit',
  'anxiou',
  'lead',
  'big',
  'day',
  'assur',
  'everyon',
  'ok',
  'today',
  'meant',
  'get',
  'marri',
  'abbi',
  'us',
  'bridesmaid',
  'enter',
  'church',
  'ben',
  'found',
  'everyon',
  'tri',
  'calm',
  'say',
  'traffic',
  'probabl',
  'monster',
  'hangov',
  'well',
  'hour',
  'pass',
  'two',
  'three',
  'four',
  'hour',
  'mark',
  'abbi',
  'said',
  'fuck',
  'go',
  'back',
  'hotel',
  'call',
  'land',
  'famili',
  'look',
  'panick',
  'nervou',
  'tri',
  'get',
  'ben',
  'groomsmen',
  'arriv',
  'yet',
  'brother',
  'brother',
  'law',
  'sister',
  'husband',
  'went',
  'look',
  'think',
  'got',
  'hurt',
  'arrest',
  'night',
  'went',
  'back',
  'hotel',
  'broken',
  'look',
  'abbi',
  'drank',
  'ate',
  'food',
  'anoth',
  'hour',
  'got',
  'text',
  'brother',
  'law',
  'say',
  'found',
  'bar',
  'tri',
  'talk',
  'go',
  'wed',
  'sister',
  'rang',
  'husband',
  'heard',
  'background',
  'liter',
  'act',
  'like',
  'year',
  'old',
  'want',
  'go',
  'doctor',
  'honestli',
  'guy',
  'enough',
  'stage',
  'mess',
  'girl',
  'long',
  'frankli',
  'lead',
  'someon',
  'along',
  'year',
  'cruel',
  'mayb',
  'asshol',
  'centuri',
  'walk',
  'abbi',
  'room',
  'told',
  'quiet',
  'rang',
  'brother',
  'law',
  'put',
  'loud',
  'speaker',
  'ask',
  'go',
  'put',
  'ben',
  'phone',
  'drunk',
  'fool',
  'start',
  'say',
  'shit',
  'like',
  'think',
  'one',
  'theyv',
  'togeth',
  'long',
  'scare',
  'alon',
  'let',
  'hear',
  'everyth',
  'lie',
  'felt',
  'like',
  'monster',
  'start',
  'cri',
  'abbi',
  'grab',
  'phone',
  'told',
  'one',
  'hour',
  'get',
  'church',
  'good',
  'long',
  'stori',
  'short',
  'ben',
  'end',
  'church',
  'minut',
  'later',
  'abbi',
  'took',
  'dress',
  'left',
  'hotel',
  'alon',
  'end',
  'left',
  'alter',
  'went',
  'honeymoon',
  'alon',
  'ive',
  'disown',
  'everyon',
  'expect',
  'two',
  'sibl',
  'sister',
  'get',
  'abbi',
  'maid',
  'honour',
  'collect',
  'suitcas',
  'outsid',
  'hotel',
  'mom',
  'dump',
  'found',
  'im',
  'full',
  'blame',
  'ruin',
  'relationship',
  '%',
  'famili',
  'hate'],
 ['sister',
  'jess',
  'marri',
  'yo',
  'stepson',
  'husband',
  'work',
  'full',
  'time',
  'sahm',
  'everi',
  'monday',
  'shed',
  'call',
  'mom',
  'get',
  'go',
  'hous',
  'watch',
  'stepkid',
  'hour',
  'live',
  'home',
  'parent',
  'ive',
  'notic',
  'routin',
  'week',
  'last',
  'week',
  'mom',
  'went',
  'town',
  'visit',
  'rel',
  'yesterday',
  'monday',
  'sister',
  'call',
  'ask',
  'come',
  'watch',
  'stepkid',
  'hour',
  'import',
  'thing',
  'said',
  'go',
  'studi',
  'also',
  'everi',
  'monday',
  'clearli',
  'import',
  'urgent',
  'insist',
  'told',
  'sorri',
  'end',
  'call',
  'went',
  'univers',
  'hour',
  'later',
  'got',
  'call',
  'brother',
  'law',
  'ask',
  'sister',
  'said',
  'idea',
  'proceed',
  'tell',
  'came',
  'home',
  'pm',
  'found',
  'son',
  'hous',
  'shock',
  'sister',
  'left',
  'stepkid',
  'could',
  'go',
  'god',
  'know',
  'told',
  'convers',
  'got',
  'angri',
  'even',
  'sister',
  'came',
  'start',
  'make',
  'scene',
  'yell',
  'bail',
  'sent',
  'text',
  'messag',
  'tell',
  'alreadi',
  'hous',
  'forc',
  'come',
  'watch',
  'stepson',
  'see',
  'fb',
  'messag',
  'til',
  'told',
  'said',
  'deliber',
  'also',
  'expos',
  'husband',
  'told',
  'shed',
  'home',
  'kid',
  'also',
  'told',
  'husband',
  'mom',
  'come',
  'everi',
  'monday',
  'morn',
  'watch',
  'kid',
  'hour',
  'caus',
  'huge',
  'fight',
  'sister',
  'yell',
  'petti',
  'selfish',
  'stir',
  'shit',
  'caus',
  'issu',
  'marriag',
  'tattl',
  'husband',
  'keep',
  'argu',
  'went',
  'room',
  'start',
  'play',
  'music',
  'dad',
  'said',
  'blame',
  'help',
  'sister',
  'reason',
  'husband',
  'conflict',
  'aita',
  'okay',
  'guy',
  'saw',
  'question',
  'ask',
  'multipl',
  'time',
  'ill',
  'put',
  'answer',
  'see',
  'brother',
  'law',
  'wife',
  'deceas',
  'brother',
  'law',
  'alway',
  'work',
  'sister',
  'call',
  'mom',
  'get',
  'come',
  'watch',
  'stepson',
  'guy',
  'ask',
  'sister',
  'goe',
  'everi',
  'monday',
  'even',
  'saw',
  'someon',
  'mention',
  'yta',
  'find',
  'know',
  'anyth',
  'idea',
  'go',
  'sister',
  'thought',
  'non',
  'busi',
  'updat',
  'guy',
  'ive',
  'decid',
  'tri',
  'find',
  'realli',
  'go',
  'jess',
  'im',
  'type',
  'snoop',
  'busi',
  'alreadi',
  'made',
  'busi',
  'turn',
  'famili',
  'someth',
  'ngl',
  'came',
  'think',
  'go',
  'get',
  'toast',
  'wrong',
  'thank',
  'good',
  'ill',
  'updat',
  'soon',
  'possibl',
  'thank'],
 ['met',
  'guy',
  'date',
  'app',
  'hit',
  'arrang',
  'first',
  'date',
  'thing',
  'go',
  'well',
  'sat',
  'start',
  'small',
  'chat',
  'waitress',
  'come',
  'ask',
  'us',
  'want',
  'order',
  'say',
  'want',
  'gestur',
  'order',
  'order',
  'pull',
  'think',
  'dollar',
  'tabl',
  'say',
  'tip',
  'everytim',
  'mess',
  'take',
  'away',
  'waitress',
  'look',
  'nervou',
  'immedi',
  'im',
  'sit',
  'bit',
  'shock',
  'mostli',
  'embarrass',
  'expect',
  'must',
  'new',
  'well',
  'spill',
  'drink',
  'tabl',
  'night',
  'gave',
  'us',
  'wrong',
  'food',
  'overal',
  'seem',
  'lost',
  'took',
  'away',
  'dollar',
  'ask',
  'thought',
  'tip',
  'way',
  'good',
  'idea',
  'said',
  'best',
  'way',
  'ensur',
  'good',
  'servic',
  'disagre',
  'said',
  'cant',
  'alway',
  'nice',
  'peopl',
  'respect',
  'job',
  'decid',
  'want',
  'noth',
  'call',
  'waitress',
  'get',
  'bill',
  'slap',
  'dollar',
  'bill',
  'hand',
  'got',
  'pay',
  'meal',
  'later',
  'night',
  'demand',
  'know',
  'given',
  'tip',
  'despit',
  'poor',
  'servic',
  'told',
  'decid',
  'treat',
  'livelihood',
  'like',
  'game',
  'said',
  'shell',
  'never',
  'improv',
  'servic',
  'im',
  'peopl',
  'pleaser',
  'block',
  'ive',
  'wonder',
  'ever',
  'sinc',
  'realli',
  'right',
  'thing',
  'aita'],
 ['date',
  'boyfriend',
  'jake',
  'sinc',
  'freshmen',
  'year',
  'colleg',
  'last',
  'year',
  'undergrad',
  'decid',
  'rent',
  'apart',
  'togeth',
  'split',
  'everyth',
  'includ',
  'util',
  'groceri',
  'rent',
  'continu',
  'live',
  'togeth',
  'town',
  'colleg',
  'graduat',
  'recent',
  'got',
  'job',
  'chicago',
  'current',
  'live',
  'downtown',
  'dad',
  'work',
  'real',
  'estat',
  'multipl',
  'invest',
  'properti',
  'dad',
  'gener',
  'allow',
  'live',
  'one',
  'properti',
  'rent',
  'free',
  'said',
  'boyfriend',
  'would',
  'pay',
  '$',
  'month',
  'rent',
  'dad',
  'protect',
  'noth',
  'kind',
  'boyfriend',
  'dad',
  'reason',
  'make',
  'boyfriend',
  'pay',
  'rent',
  'want',
  'sure',
  'boyfriend',
  'free',
  'place',
  'live',
  'keep',
  'mind',
  'dad',
  'rent',
  'apart',
  'tenant',
  'would',
  'charg',
  '$',
  'month',
  'rent',
  'ritzi',
  'build',
  'middl',
  'downtown',
  'chicago',
  'boyfriend',
  'mad',
  'ask',
  'half',
  '$',
  'rent',
  'explain',
  'pay',
  'rent',
  'dad',
  'charg',
  'say',
  'split',
  'rent',
  'past',
  'year',
  'would',
  'stop',
  'rent',
  'colleg',
  'town',
  '$',
  'pay',
  '$',
  'month',
  'apart',
  'chicago',
  'significantli',
  'nicer',
  'pay',
  '$',
  'less',
  'month',
  'colleg',
  'idea',
  'dad',
  'charg',
  'rent',
  'charg',
  'boyfriend',
  'crazi',
  'suck',
  'pay',
  'half',
  'afford',
  'edit',
  'jake',
  'still',
  'split',
  'util',
  'groceri',
  'go',
  'date',
  'night',
  'switch',
  'pay',
  'pay',
  'one',
  'week',
  'ill',
  'pay',
  'next'],
 ['husband',
  'mickey',
  'love',
  'mom',
  'cook',
  'alway',
  'prais',
  'food',
  'make',
  'even',
  'mention',
  'groom',
  'speech',
  'wed',
  'consid',
  'good',
  'cook',
  'fact',
  'im',
  'go',
  'say',
  'im',
  'even',
  'better',
  'mom',
  'problem',
  'even',
  'want',
  'tri',
  'cook',
  'give',
  'chanc',
  'prove',
  'thought',
  'would',
  'chang',
  'marriag',
  'month',
  'later',
  'noth',
  'chang',
  'eat',
  'eat',
  'im',
  'cook',
  'request',
  'mom',
  'send',
  'meal',
  'everyday',
  'eat',
  'dinner',
  'get',
  'work',
  'except',
  'weekend',
  'go',
  'hous',
  'eat',
  'breakfast',
  'lunch',
  'dinner',
  'dessert',
  'everi',
  'singl',
  'day',
  'hed',
  'come',
  'home',
  'ask',
  'mom',
  'sent',
  'meal',
  'grew',
  'irrit',
  'whenev',
  'tri',
  'offer',
  'tast',
  'wast',
  'food',
  'cook',
  'hed',
  'lay',
  'bed',
  'say',
  'full',
  'came',
  'idea',
  'cook',
  'meal',
  'mom',
  'sent',
  'day',
  'put',
  'asid',
  'til',
  'got',
  'home',
  'ask',
  'mom',
  'sent',
  'meal',
  'dinner',
  'said',
  'ye',
  'serv',
  'version',
  'meal',
  '-',
  'notic',
  'anyth',
  'differ',
  'ate',
  'whole',
  'thing',
  'hasit',
  'sat',
  'across',
  'ask',
  'question',
  'good',
  'meal',
  'went',
  'prais',
  'say',
  'perfect',
  'except',
  'need',
  'long',
  'day',
  'work',
  'smile',
  'said',
  'welcom',
  'froze',
  'look',
  'minut',
  'look',
  'plate',
  'back',
  'said',
  'wait',
  'made',
  'said',
  'hand',
  'scratch',
  'face',
  'suddenli',
  'went',
  'red',
  'got',
  'upset',
  'said',
  'cool',
  'told',
  'never',
  'even',
  'gave',
  'chanc',
  'show',
  'good',
  'cook',
  'probabl',
  'use',
  'mom',
  'cook',
  'reject',
  'altern',
  'unfair',
  'said',
  'lie',
  'basic',
  'trick',
  'eat',
  'food',
  'idea',
  'came',
  'said',
  'like',
  'admit',
  'good',
  'issu',
  'got',
  'seat',
  'threw',
  'napkin',
  'said',
  'unbeliev',
  'walk',
  'got',
  'quiet',
  'rest',
  'even',
  'post',
  'fb',
  'vagu',
  'post',
  'trick',
  'eat',
  'someon',
  'food',
  'like',
  'felt',
  'guilti',
  'bad',
  'think',
  'mayb',
  'realli',
  'done',
  'frusrtat',
  'kept',
  'turn',
  'everi',
  'meal',
  'tri',
  'cook',
  'say',
  'thank',
  'prefer',
  'mom',
  'food',
  'aita'],
 ['start',
  'want',
  'say',
  'husband',
  'old',
  'friend',
  'known',
  'sinc',
  'highschool',
  'theyr',
  'inseper',
  'spend',
  'entir',
  'week',
  'togeth',
  'like',
  'theyr',
  'realli',
  'realli',
  'close',
  'husband',
  'struggl',
  'fertil',
  'issu',
  'year',
  'recent',
  'start',
  'new',
  'method',
  'ivf',
  'hope',
  'get',
  'least',
  'one',
  'child',
  'togeth',
  'note',
  'save',
  'major',
  'treatment',
  'husband',
  'paid',
  '-',
  'thousand',
  'save',
  'anoth',
  'round',
  'huge',
  'disappoint',
  'heartbreak',
  'fail',
  'first',
  'time',
  'goe',
  'time',
  'id',
  'put',
  'money',
  'includ',
  'dad',
  'inhert',
  'husband',
  'pay',
  'cent',
  'last',
  'week',
  'found',
  'secretli',
  'pull',
  'total',
  'complet',
  'utterli',
  'shock',
  'confront',
  'casual',
  'remind',
  'mani',
  'time',
  'best',
  'friend',
  'complain',
  'old',
  'junk',
  'car',
  'decid',
  'lend',
  'buy',
  'decent',
  'car',
  'argument',
  'friend',
  'wouldv',
  'done',
  'beyond',
  'livid',
  'ask',
  'realli',
  'thought',
  'okay',
  'said',
  'worri',
  'guarante',
  'friend',
  'pay',
  'us',
  'back',
  'time',
  'lost',
  'immedi',
  'demand',
  'friend',
  'send',
  'money',
  'back',
  'threaten',
  'polic',
  'involv',
  'case',
  'refus',
  'friend',
  'immedi',
  'return',
  'money',
  'told',
  'husband',
  'polic',
  'thing',
  'husband',
  'came',
  'home',
  'yell',
  'call',
  'unhing',
  'selfish',
  'told',
  'save',
  'moneyus',
  'inherit',
  'treatment',
  'contribut',
  'noth',
  'even',
  'though',
  'togeth',
  'correct',
  'say',
  'im',
  'one',
  'problem',
  'thought',
  'fair',
  'make',
  'pay',
  'ivf',
  'hurt',
  'badli',
  'argu',
  'anymor',
  'went',
  'stay',
  'friend',
  'constantli',
  'shame',
  'treat',
  'polic',
  'invovl',
  'like',
  'stole',
  'someth'],
 ['fianc',
  'year',
  'get',
  'marri',
  'end',
  'year',
  'recent',
  'move',
  'hous',
  'inherit',
  'mom',
  'hous',
  'name',
  'took',
  'lot',
  'talk',
  'convinc',
  'name',
  'titl',
  'well',
  'honestli',
  'part',
  'think',
  'good',
  'idea',
  'least',
  'right',
  'mayb',
  'marriag',
  'anyway',
  'ive',
  'decid',
  'go',
  'ahead',
  'put',
  'name',
  'titl',
  'could',
  'go',
  'ahead',
  'start',
  'contribut',
  'toward',
  'mortgag',
  'light',
  'burden',
  'littl',
  'bit',
  'weve',
  'made',
  'appoint',
  'decid',
  'form',
  'ownership',
  'base',
  'time',
  'sign',
  'deed',
  'fianc',
  'stop',
  'gave',
  'pen',
  'say',
  'pen',
  'lucki',
  'pen',
  'told',
  'use',
  'sign',
  'deed',
  'took',
  'tri',
  'sign',
  'turn',
  'empti',
  'like',
  'oh',
  'mustv',
  'forgotten',
  'laugh',
  'pull',
  'lucki',
  'pen',
  'took',
  'tri',
  'sign',
  'one',
  'empti',
  'honestli',
  'see',
  'laugh',
  'figur',
  'mess',
  'swore',
  'pull',
  'anoth',
  'one',
  'lucki',
  'pen',
  'tri',
  'one',
  'empti',
  'fianc',
  'start',
  'cackl',
  'felt',
  'humili',
  'especi',
  'gentleman',
  'next',
  'stare',
  'got',
  'piss',
  'ask',
  'said',
  'prank',
  'ask',
  'realli',
  'realli',
  'think',
  'time',
  'prank',
  'like',
  'alright',
  'use',
  'real',
  'pen',
  'push',
  'paper',
  'away',
  'said',
  'know',
  'never',
  'mind',
  'longer',
  'want',
  'deed',
  'lost',
  'complet',
  'say',
  'deal',
  'cant',
  'back',
  'like',
  'stupid',
  'joke',
  'took',
  'serious',
  'argument',
  'refus',
  'sign',
  'deed',
  'least',
  'home',
  'blew',
  'say',
  'one',
  'delay',
  'process',
  'alreadi',
  'gave',
  'real',
  'pen',
  'sign',
  'damn',
  'paper',
  'get',
  'accus',
  'look',
  'excus',
  'deed',
  'start',
  'silent',
  'treatment',
  'say',
  'noth',
  'say',
  'til',
  'paper',
  'sign',
  'realli',
  'take',
  'serious'],
 ['sorri',
  'sentenc',
  'feel',
  'awkward',
  'nativ',
  'speaker',
  'work',
  'home',
  'job',
  'relax',
  'requir',
  'glu',
  'screen',
  'girlfriend',
  'work',
  'stress',
  'custom',
  'servic',
  'job',
  'day',
  'terribl',
  'year',
  'weve',
  'live',
  'togeth',
  'practic',
  'chore',
  'around',
  'hous',
  'tri',
  'treat',
  'like',
  'queen',
  'come',
  'back',
  'home',
  'howev',
  'one',
  'thing',
  'cant',
  'handyman',
  'matter',
  'easi',
  'task',
  'month',
  'ago',
  'bathroom',
  'door',
  'hing',
  'need',
  'replac',
  'call',
  'friend',
  'help',
  'last',
  'week',
  'lunch',
  'parent',
  'ask',
  'dad',
  'project',
  'work',
  'woodwork',
  'hobbi',
  'show',
  'progress',
  'phone',
  'suggest',
  'help',
  'last',
  'touch',
  'girlfriend',
  'told',
  'cant',
  'even',
  'replac',
  'door',
  'hing',
  'let',
  'alon',
  'help',
  'mom',
  'said',
  'everi',
  'man',
  'know',
  'fix',
  'thing',
  'around',
  'hous',
  'husband',
  'agre',
  'remaind',
  'lunch',
  'awkward',
  'like',
  'real',
  'parent',
  'disappoint',
  'huge',
  'failur',
  'left',
  'told',
  'girlfriend',
  'expect',
  'reaction',
  'instead',
  'take',
  'side',
  'said',
  'right',
  'embarrass',
  'need',
  'call',
  'friend',
  'help',
  'someth',
  'trivial',
  'remind',
  'get',
  'nervou',
  'anxiou',
  'everytim',
  'touch',
  'tool',
  'admit',
  'stupid',
  'way',
  'honest',
  'sinc',
  'start',
  'still',
  'chang',
  'mind',
  'told',
  'sinc',
  'idea',
  'man',
  'twist',
  'must',
  'share',
  'view',
  'start',
  'work',
  'version',
  'man',
  'told',
  'stop',
  'cook',
  'ill',
  'stop',
  'dish',
  'laundri',
  'clean',
  'thing',
  'would',
  'keep',
  'take',
  'trash',
  'groceri',
  'shop',
  'could',
  'focu',
  'time',
  'effort',
  'becom',
  'man'],
 ['husband',
  'date',
  'year',
  'marri',
  'year',
  'old',
  'babi',
  'boy',
  'sinc',
  'plan',
  'children',
  'told',
  'husband',
  'want',
  'get',
  'boob',
  'redon',
  'want',
  'perki',
  'surgeri',
  'last',
  'year',
  'mil',
  'alway',
  'sniffi',
  'husband',
  'son',
  'weve',
  'gone',
  'lc',
  'year',
  'overbear',
  'dismiss',
  'thing',
  'got',
  'littl',
  'better',
  'babi',
  'born',
  'surgeri',
  'oof',
  'like',
  'wrote',
  'forehead',
  'look',
  'boob',
  'want',
  'cheat',
  'husband',
  'alway',
  'impli',
  'male',
  'valid',
  'yeah',
  'son',
  'ff',
  'ill',
  'leav',
  'husband',
  'look',
  'like',
  'hooker',
  'wear',
  'stuff',
  'show',
  'cleavag',
  'couldv',
  'gotten',
  'littl',
  'smaller',
  'everyth',
  'also',
  'complaint',
  'cloth',
  'underwear',
  'lot',
  'marri',
  'woman',
  'child',
  'dress',
  'like',
  'see',
  'stung',
  'could',
  'know',
  'suspect',
  'go',
  'drawer',
  'husband',
  'told',
  '*',
  'could',
  'never',
  '*',
  'made',
  'comment',
  'cute',
  'set',
  'lingeri',
  'show',
  'basic',
  'everyth',
  'confus',
  'ask',
  'howd',
  'know',
  'said',
  'saw',
  'wash',
  'machin',
  'prefer',
  'wash',
  'set',
  'hand',
  'lace',
  'last',
  'longer',
  'anyway',
  'recent',
  'chang',
  'bedroom',
  'idea',
  'put',
  'end',
  'restock',
  'drawer',
  'use',
  'one',
  'vaniti',
  'put',
  'husband',
  'mine',
  'sex',
  'toy',
  'set',
  'dirti',
  'letter',
  'wrote',
  'mil',
  'visit',
  'us',
  'time',
  'said',
  'noth',
  'felt',
  'bad',
  'accus',
  'yesterday',
  'sil',
  'husband',
  'kitchen',
  'cook',
  'heard',
  'mil',
  'call',
  'us',
  'went',
  'room',
  'stand',
  'next',
  'open',
  'drawer',
  'snort',
  'look',
  'husband',
  'said',
  'see',
  'snoop',
  'husband',
  'got',
  'red',
  'face',
  'berat',
  'mil',
  'sil',
  'left',
  'call',
  'indec',
  'husband',
  'mad',
  'mad',
  'say',
  'set',
  'trap',
  'famili',
  'say',
  'three',
  'need',
  'apolog',
  'mayb',
  'aita'],
 ['yo',
  'man',
  'larg',
  'store',
  'yesterday',
  'mo',
  'son',
  'babi',
  'went',
  'restroom',
  'saw',
  'familycompanion',
  'restroom',
  'men',
  'women',
  'went',
  'men',
  'room',
  'saw',
  'cubicl',
  'urin',
  'chang',
  'tabl',
  'sink',
  'counter',
  'either',
  'walk',
  'hunt',
  'employe',
  'ask',
  'chang',
  'tabl',
  'said',
  'bathroom',
  'ask',
  'assum',
  'familycompanion',
  'restroom',
  'side',
  'store',
  'took',
  'back',
  'ask',
  'anoth',
  'bathroom',
  'said',
  'told',
  'bathroom',
  'chang',
  'tabl',
  'ask',
  'sure',
  'suggest',
  'look',
  'annoy',
  'went',
  'back',
  'men',
  'room',
  'chang',
  'tabl',
  'came',
  'employe',
  'gone',
  'keep',
  'mind',
  'son',
  'poopi',
  'diaper',
  'whole',
  'time',
  'give',
  'head',
  'ladi',
  'room',
  'sure',
  'enough',
  'chang',
  'tabl',
  'woman',
  'wash',
  'hand',
  'said',
  'wrong',
  'bathroom',
  'buddi',
  'gestur',
  'son',
  'said',
  'chang',
  'tabl',
  'men',
  'room',
  'laugh',
  'said',
  'bro',
  'suck',
  'walk',
  'rush',
  'chang',
  'hope',
  'done',
  'anyon',
  'els',
  'walk',
  'im',
  'almost',
  'done',
  'woman',
  'walk',
  'start',
  'scream',
  'tri',
  'explain',
  'kept',
  'scream',
  'get',
  'cant',
  'ran',
  'finish',
  'put',
  'diaper',
  'rush',
  'bathroom',
  'saw',
  'woman',
  'talk',
  'employe',
  'decid',
  'leav',
  'without',
  'stuff',
  'employe',
  'tri',
  'wave',
  'stop',
  'rush',
  'car',
  'buckl',
  'son',
  'carseat',
  'left',
  'wife',
  'said',
  'absolut',
  'right',
  'thing',
  'mom',
  'said',
  'im',
  'idiot',
  '%',
  'wrong',
  'sister',
  'stop',
  'laugh',
  'help',
  'aita'],
 ['updat',
  'bottom',
  'throwaway',
  'usual',
  'mobil',
  'format',
  'apolog',
  'gemologist',
  'spend',
  'day',
  'lab',
  'test',
  'identifi',
  'stone',
  'natur',
  'work',
  'also',
  'larg',
  'valuabl',
  'collect',
  'jewelleri',
  'also',
  'gem',
  'specimen',
  'keep',
  'safe',
  'specif',
  'bought',
  'instal',
  'keep',
  'safe',
  'also',
  'second',
  'smaller',
  'safe',
  'keep',
  'import',
  'document',
  'like',
  'passport',
  'home',
  'boyfriend',
  'year',
  'recent',
  'move',
  'rent',
  'gave',
  'code',
  'smaller',
  'safe',
  'could',
  'put',
  'valuabl',
  'also',
  'want',
  'code',
  'gem',
  'safe',
  'put',
  'anyth',
  'say',
  'live',
  'togeth',
  'trust',
  'give',
  'code',
  'ive',
  'said',
  'reason',
  'open',
  'safe',
  'thing',
  'use',
  'store',
  'collect',
  'said',
  'interest',
  'gem',
  'collect',
  'want',
  'look',
  'still',
  'want',
  'code',
  'access',
  'caus',
  'tension',
  'say',
  'give',
  'show',
  'trust',
  'said',
  'liter',
  'reason',
  'go',
  'need',
  'code',
  'figur',
  'collect',
  'im',
  'difficult',
  'littl',
  'gem',
  'one',
  'know',
  'code',
  'reddit',
  'ta',
  '*',
  'also',
  'uk',
  'spell',
  'jewelleri',
  'differ',
  'us',
  'edit',
  'holi',
  'hell',
  'blew',
  'way',
  'ever',
  'expect',
  'im',
  'stick',
  'gun',
  'im',
  'give',
  'code',
  'love',
  'internet',
  'stranger',
  'right',
  'huge',
  'marinara',
  'flag',
  'ill',
  'tell',
  'pack',
  'stuff',
  'ill',
  'updat',
  'later',
  'thank',
  'comment',
  'edit',
  'keep',
  'come',
  'safe',
  'weigh',
  'nearli',
  'half',
  'ton',
  'bolt',
  'floor',
  'wall',
  'compani',
  'make',
  'safe',
  'vault',
  'strong',
  'room',
  'jewel',
  'could',
  'bring',
  'hous',
  'around',
  'would',
  'still',
  'intact',
  'final',
  'edit',
  'think',
  'phrase',
  'badli',
  'gem',
  'jewelleri',
  'safe',
  'mine',
  'mine',
  'alon',
  'keep',
  'client',
  'jewelleri',
  'home',
  'busi',
  'valuat',
  'rent',
  'separ',
  'space',
  'keep',
  'client',
  'item',
  'give',
  'updat',
  'thing',
  'pan',
  'anoth',
  'edit',
  'ive',
  'check',
  'camera',
  'thank',
  'suggest',
  'peopl',
  'asid',
  'one',
  'alreadi',
  'fit',
  'access',
  'ive',
  'move',
  'person',
  'doc',
  'littl',
  'safe',
  'gem',
  'safe',
  'ive',
  'told',
  'colleagu',
  'im',
  'go',
  'come',
  'around',
  'updat',
  'firstli',
  'thank',
  'much',
  'insan',
  'amount',
  'comment',
  'support',
  'meant',
  'much',
  'messag',
  'question',
  'im',
  'realli',
  'sorri',
  'get',
  'mani',
  'probabl',
  'emphasis',
  'last',
  'post',
  'coupl',
  'convers',
  'explain',
  'reason',
  'go',
  'etc',
  'short',
  'version',
  'told',
  'get',
  'code',
  'die',
  'hill',
  'reason',
  'continu',
  'lack',
  'respect',
  'push',
  'boundari',
  'ok',
  'felt',
  'like',
  'tri',
  'manipul',
  'make',
  'trust',
  'lot',
  'back',
  'forth',
  'final',
  'admit',
  'want',
  'access',
  'safe',
  'feel',
  'like',
  'share',
  'whole',
  'hous',
  'insist',
  'tenanc',
  'agreement',
  'rather',
  'let',
  'move',
  'like',
  'part',
  'live',
  'limit',
  'also',
  'insecur',
  'resent',
  'money',
  'home',
  'whilst',
  'made',
  'comment',
  'realis',
  'big',
  'issu',
  'also',
  'said',
  'keep',
  'safe',
  'made',
  'feel',
  'like',
  'thought',
  'lesser',
  'made',
  'feel',
  'like',
  'treat',
  'like',
  'child',
  'told',
  'feel',
  'right',
  'relationship',
  'either',
  'us',
  'best',
  'break',
  'shock',
  'end',
  'thing',
  'cri',
  'ask',
  'reconsid',
  'said',
  'got',
  'angri',
  'call',
  'stuck',
  '*',
  'tch',
  'said',
  'better',
  'without',
  'anyway',
  'went',
  'friend',
  'told',
  'via',
  'text',
  'day',
  'leav',
  'per',
  'tenanc',
  'agreement',
  'need',
  'stay',
  'friend',
  'said',
  'would',
  'gone',
  'end',
  'week',
  'day',
  'later',
  'came',
  'back',
  'pack',
  'stuff',
  'left',
  'stay',
  'friend',
  'chang',
  'lock',
  'alarm',
  'cctv',
  'system',
  'profession',
  'monitor',
  'chang',
  'verbal',
  'password',
  'give',
  'call',
  'precaut',
  'ive',
  'check',
  'collect',
  'touch',
  'also',
  'took',
  'guy',
  'advic',
  'give',
  'solicitor',
  'code',
  'safe',
  'deposit',
  'detail',
  'pass',
  'executor',
  'event',
  'death',
  'feel',
  'horribl',
  'despit',
  'love',
  'lot',
  'comment',
  'said',
  'partner',
  'respect',
  'boundari',
  'take',
  'interest',
  'passion',
  'realli',
  'got',
  'true',
  'may',
  'reach',
  'question',
  'made',
  'happi',
  'also',
  'sad',
  'never',
  'ask',
  'stuff',
  'like',
  'think',
  'push',
  'edg',
  'end',
  'anyth',
  'im',
  'pretti',
  'cut',
  'right',
  'miss',
  'know',
  'ill',
  'ok',
  'great',
  'friend',
  'famili',
  'around',
  'also',
  'diamond',
  'girl',
  'best',
  'friend',
  'knock',
  'around',
  'help',
  'cheer'],
 ['conflict',
  'pretti',
  'recent',
  'use',
  'use',
  'tampon',
  'period',
  'due',
  'medic',
  'reason',
  'anymor',
  'im',
  'use',
  'pad',
  'big',
  'deal',
  'husband',
  'disagre',
  'firstli',
  'complain',
  'consult',
  'first',
  'like',
  'said',
  'huge',
  'deal',
  'like',
  'bc',
  'said',
  'feel',
  'comfort',
  'sleep',
  'bed',
  'wear',
  'pad',
  'threw',
  'hard',
  'expect',
  'issu',
  'regard',
  'said',
  'feel',
  'comfort',
  '*',
  '*',
  'would',
  'like',
  'use',
  'tampon',
  'nighttim',
  'sleep',
  'somewher',
  'els',
  'laugh',
  'kept',
  'sleep',
  'bed',
  'wear',
  'pad',
  'like',
  'issu',
  'made',
  'uncomfort',
  'basic',
  'took',
  'couch',
  'start',
  'complain',
  'forc',
  'couch',
  'make',
  'uncomfort',
  'alreadi',
  'offer',
  'compromis',
  'told',
  'drama',
  'queen',
  'compromis',
  'illog',
  'stop',
  'use',
  'pad',
  'free',
  'bleed',
  'bed',
  'risk',
  'health',
  'use',
  'tampon',
  'doctor',
  'advis',
  'still',
  'upset',
  'even',
  'though',
  'im',
  'longer',
  'period',
  'say',
  'owe',
  'make',
  'uncomfort',
  'brush',
  'complaint'],
 ['ill',
  'admit',
  'im',
  'bias',
  'right',
  'bat',
  'stand',
  'call',
  'ex',
  'call',
  'friend',
  'earli',
  'die',
  'recent',
  '-',
  'aneurysm',
  'ive',
  'year',
  'hed',
  'known',
  '+',
  'way',
  'tell',
  'friend',
  'colleg',
  'decid',
  'date',
  'got',
  'marri',
  'realiz',
  'great',
  'coupl',
  'decid',
  'friend',
  'happen',
  'year',
  'met',
  'clear',
  'earli',
  'import',
  'coupl',
  'month',
  'date',
  'came',
  '*',
  'friend',
  '*',
  'actual',
  '*',
  'ex-wif',
  '*',
  'explain',
  'say',
  'one',
  'closest',
  'friend',
  'pure',
  'platon',
  'express',
  'discomfort',
  'close',
  'ex',
  'told',
  'fine',
  'seriou',
  'issu',
  'let',
  'know',
  'save',
  'us',
  'time',
  'ill',
  'choos',
  'like',
  'ive',
  'known',
  'year',
  'one',
  'import',
  'peopl',
  'life',
  'ok',
  'want',
  'us',
  'thing',
  'engag',
  'ask',
  'gave',
  'perplex',
  'look',
  '&',
  'ask',
  'would',
  'us',
  'get',
  'marri',
  'affect',
  'friendship',
  'suck',
  '&',
  'went',
  'along',
  'resent',
  'everi',
  'moment',
  'know',
  'especi',
  'social',
  'understood',
  'part',
  'husband',
  'friend',
  'mine',
  'well',
  'like',
  'could',
  'use',
  'angl',
  'hed',
  'lunch',
  'ex',
  'theyd',
  'go',
  'geeki',
  'movi',
  'whatev',
  'time',
  'brought',
  'said',
  'convers',
  'chanc',
  'back',
  'die',
  'lunch',
  'day',
  'way',
  'car',
  'spent',
  'bunch',
  'time',
  'cri',
  'honestli',
  'reliev',
  'work',
  'husband',
  'funer',
  'plan',
  'told',
  'think',
  'go',
  'argument',
  'sum',
  'dead',
  'factor',
  'anymor',
  'get',
  'use',
  'friend',
  'excus',
  'sinc',
  'exist',
  'anymor',
  'cri',
  'coupl',
  'day',
  'get',
  'done',
  'mourn',
  'alreadi',
  'need',
  'go',
  'funer',
  'sinc',
  'want',
  'angriest',
  'ive',
  'ever',
  'seen',
  'told',
  'repli',
  'hell',
  'go',
  'matter',
  'feel',
  'burn',
  'fuck',
  'ground',
  'hold',
  'wed',
  'band',
  'besid',
  'closest',
  'friend',
  'life',
  'husband',
  '&',
  'sister',
  'call',
  'insensit',
  'asshol',
  'say',
  'romant',
  'aspect',
  'relationship',
  '&',
  'im',
  'heartless',
  'husband',
  'went',
  'far',
  'call',
  'ghoul',
  'ive',
  'react',
  'never',
  'felt',
  'relationship',
  'appropri',
  'hid',
  'year',
  'want',
  'husband',
  'gone',
  'feel',
  'hide',
  'anymor',
  'speak',
  'freeli',
  'aita',
  'want',
  '*',
  'done',
  '*',
  'attend',
  'funer'],
 ['went',
  'job',
  'interview',
  'potenti',
  'job',
  'opportun',
  'compani',
  'interview',
  'well',
  'call',
  'eddi',
  'ish',
  'welcom',
  'offic',
  'sit',
  'first',
  'thing',
  'look',
  'cv',
  'start',
  'ask',
  'question',
  'seem',
  'littl',
  'person',
  'unrel',
  'job',
  'like',
  'relationship',
  'wether',
  'eye',
  'color',
  'real',
  'lens',
  'also',
  'ask',
  'spend',
  'time',
  'alon',
  'type',
  'dude',
  'like',
  'like',
  'legit',
  'person',
  'question',
  'know',
  'test',
  'react',
  'kept',
  'cool',
  'til',
  'ask',
  'question',
  'greatest',
  'weak',
  'respond',
  'say',
  'keep',
  'inappropri',
  'question',
  'answer',
  'polit',
  'look',
  'upset',
  'told',
  'attitud',
  'clear',
  'interview',
  'told',
  'get',
  'job',
  'found',
  'unfair',
  'think',
  'desrev',
  'lose',
  'job',
  'noth',
  'got',
  'argument',
  'told',
  'go',
  'report',
  'went',
  'speak',
  'supervisor',
  'file',
  'complaint',
  'eddi',
  'supervisor',
  'apolog',
  'tri',
  'reschedul',
  'new',
  'interview',
  'hasit',
  'later',
  'told',
  'eddi',
  'got',
  'fire',
  'made',
  'feel',
  'guilti',
  'mom',
  'dad',
  'agre',
  'question',
  'inappropri',
  'said',
  'went',
  'far',
  'report',
  'fire',
  'eddi',
  'tri',
  'contact',
  'via',
  'email',
  'say',
  'couldv',
  'resolv',
  'us',
  'even',
  'said',
  'couldv',
  'arrang',
  'new',
  'interview',
  'ruin',
  'cost',
  'job',
  'aita'],
 ['recent',
  'found',
  'son',
  'jacob',
  'pull',
  'incred',
  'cruel',
  'prank',
  'one',
  'girl',
  'ill',
  'call',
  'ashley',
  'friend',
  'group',
  'know',
  'girl',
  'hous',
  'even',
  'attend',
  'jacob',
  'birthday',
  'parti',
  'month',
  'ago',
  'seem',
  'incred',
  'sweet',
  'bit',
  'shi',
  'oldest',
  'son',
  'mark',
  'came',
  'told',
  'jacob',
  'ask',
  'ashley',
  'date',
  'prank',
  'stun',
  'cours',
  'ask',
  'could',
  'know',
  'hope',
  'mother',
  'would',
  'true',
  'mark',
  'show',
  'famili',
  'tablet',
  'use',
  'mostli',
  'son',
  'seem',
  'jacob',
  'forgot',
  'log',
  'chat',
  'app',
  'discord',
  'read',
  'long',
  'seri',
  'messag',
  'jacob',
  'friend',
  'mock',
  'ashley',
  'heartless',
  'prank',
  'speechless',
  'even',
  'get',
  'talk',
  'like',
  'thug',
  'year',
  'old',
  'live',
  'gate',
  'commun',
  'first',
  'figur',
  'proceed',
  'ill',
  'admit',
  'never',
  'imagin',
  'either',
  'boy',
  'would',
  'type',
  'person',
  'someth',
  'like',
  'way',
  'hell',
  'let',
  'go',
  'day',
  'thought',
  'decid',
  'go',
  'happen',
  'first',
  'thing',
  'first',
  'ground',
  'long',
  'im',
  'sure',
  'secondli',
  'id',
  'gotten',
  'jacob',
  'bike',
  'birthday',
  'arriv',
  'day',
  'previou',
  'id',
  'plan',
  'give',
  'parent',
  'came',
  'visit',
  'sinc',
  'theyd',
  'unabl',
  'make',
  'parti',
  'instead',
  'show',
  'knew',
  'prank',
  'told',
  'ground',
  'made',
  'carri',
  'new',
  'bike',
  'bedroom',
  'closet',
  'car',
  'drive',
  'ashley',
  'hous',
  'cri',
  'whole',
  'way',
  'id',
  'call',
  'parent',
  'earlier',
  'explain',
  'everyth',
  'got',
  'cart',
  'front',
  'porch',
  'ring',
  'bell',
  'front',
  'ashley',
  'parent',
  'god',
  'give',
  'sincer',
  'apolog',
  'gift',
  'bike',
  'even',
  'apolog',
  'say',
  'rais',
  'boy',
  'way',
  'unforgiv',
  'also',
  'call',
  'parent',
  'boy',
  'apart',
  'littl',
  'stunt',
  'seem',
  'right',
  'horrifi',
  'son',
  'involv',
  'felt',
  'id',
  'handl',
  'best',
  'could',
  'friend',
  'agre',
  'though',
  'parent',
  'found',
  'id',
  'made',
  'jacob',
  'give',
  'birthday',
  'gift',
  'away',
  'said',
  'went',
  'far',
  'still',
  'feel',
  'like',
  'right',
  'parent',
  'less',
  'dog',
  'pile',
  'like',
  'actual',
  'made',
  'wonder',
  'handl',
  'extrem',
  'aita'],
 ['parent',
  'plan',
  'child',
  'free',
  'coupl',
  'religi',
  'belief',
  'kept',
  'even',
  'unwant',
  'pregnanc',
  'rememb',
  'exactli',
  'told',
  'alway',
  'knew',
  'would',
  'expect',
  'move',
  'soon',
  'reach',
  'year',
  'old',
  'work',
  'save',
  'sinc',
  'turn',
  'respect',
  'ammount',
  'save',
  'account',
  'fair',
  'parent',
  'provid',
  'financi',
  'distant',
  'emot',
  'never',
  'abus',
  'week',
  'th',
  'birthday',
  'januari',
  'th',
  'sat',
  'ask',
  'found',
  'place',
  'move',
  'yet',
  'said',
  'ye',
  'extent',
  'convers',
  'plan',
  'live',
  'apart',
  'guy',
  'friend',
  'famili',
  'heard',
  'offer',
  'finish',
  'basement',
  'separ',
  'access',
  'cheap',
  'price',
  '$',
  'month',
  'util',
  'includ',
  'payment',
  'requir',
  'jump',
  'opportun',
  'even',
  'though',
  'know',
  'piti',
  'offer',
  'relev',
  'famili',
  'mine',
  'indian',
  'descent',
  'move',
  'day',
  'birthday',
  'parent',
  'contact',
  'sinc',
  'admit',
  'reach',
  'yesterday',
  'dad',
  'call',
  'invit',
  'dinner',
  'awkward',
  'even',
  'ask',
  'move',
  'back',
  'said',
  'pay',
  'rent',
  'anyth',
  'thing',
  'like',
  'new',
  'live',
  'situat',
  'lack',
  'awkward',
  'tension',
  'even',
  'know',
  'move',
  'said',
  'polit',
  'thank',
  'offer',
  'mother',
  'start',
  'cri',
  'left',
  'room',
  'dad',
  'start',
  'scold',
  'say',
  'friend',
  'exclud',
  'rumour',
  'threw',
  'anoth',
  'desi',
  'famili',
  'take',
  'said',
  'exactli',
  'happen',
  'job',
  'save',
  'consequ',
  'action',
  'decis',
  'whole',
  'extend',
  'famili',
  'call',
  'nonstop',
  'say',
  'ah',
  'aita',
  'edit',
  'first',
  'want',
  'thank',
  'kind',
  'comment',
  'well',
  'wish',
  'hesit',
  'moment',
  'made',
  'feel',
  'much',
  'better',
  'decis',
  'read',
  'everi',
  'comment',
  'appreci',
  'everi',
  'award',
  'think',
  'post',
  'would',
  'explod',
  'like',
  'happi',
  'nice',
  'comment',
  'answer',
  'question',
  'ask',
  'lot',
  'fellow',
  'desi',
  'redditor',
  'think',
  'parent',
  'thought',
  'would',
  'move',
  'stranger',
  'could',
  'say',
  'tri',
  'independ',
  'support',
  'move',
  'peopl',
  'commun',
  'pretend',
  'anymor',
  'also',
  'think',
  'aunti',
  'uncl',
  'live',
  'one',
  'told',
  'peopl',
  'situat',
  'extrem',
  'nice',
  'upset',
  'parent',
  'offer',
  'live',
  'long',
  'wish',
  'even',
  'go',
  'accept',
  'rent',
  'except',
  'insist'],
 ['wow',
  'never',
  'felt',
  'support',
  'love',
  'long',
  'time',
  'even',
  'go',
  'post',
  'anyth',
  'im',
  'happi',
  'know',
  'explain',
  'big',
  'impact',
  'everyon',
  'comment',
  'dm',
  'love',
  'thank',
  'much',
  'offer',
  'friendship',
  'week',
  'ago',
  'move',
  'father',
  'alon',
  'son',
  'go',
  'crazi',
  'loneli',
  'liter',
  'kill',
  'need',
  'help',
  'longer',
  'asham',
  'admit',
  'dad',
  'made',
  'offer',
  'work',
  'mon-fri',
  'weekend',
  'well',
  'ive',
  'follow',
  'everyon',
  'advic',
  'sign',
  'mommi',
  'thing',
  'nearbi',
  'nerv',
  'wreck',
  'mani',
  'mom',
  'friendli',
  'came',
  'got',
  'three',
  'number',
  'theyr',
  'invit',
  'dinner',
  'parti',
  'theyr',
  'realli',
  'sweet',
  'despit',
  'least',
  'year',
  'older',
  'theyv',
  'sort',
  'adopt',
  'lol',
  'word',
  'mine',
  'im',
  'also',
  'go',
  'walk',
  'work',
  'dad',
  'son',
  'come',
  'along',
  'sometim',
  'dad',
  'also',
  'cook',
  'togeth',
  'make',
  'pretti',
  'neat',
  'stuff',
  'girlfriend',
  'also',
  'realli',
  'kind',
  'mother',
  'sister',
  'still',
  'know',
  'dislik',
  'babi',
  'much',
  'took',
  'step',
  'left',
  'gc',
  'might',
  'sound',
  'ridicul',
  'realli',
  'hard',
  'even',
  'shed',
  'tear',
  'spoken',
  'sinc',
  'contact',
  'law',
  'one',
  'last',
  'time',
  'idk',
  'parent',
  'said',
  'meet',
  'tri',
  'take',
  'dad',
  'got',
  'lawyer',
  'case',
  'im',
  'meet',
  'weekend',
  'depend',
  'goe',
  'let',
  'see',
  'son',
  'eventu',
  'final',
  'saw',
  'doctor',
  'ive',
  'diagnos',
  'ppd',
  'im',
  'current',
  'see',
  'therapist',
  'recommend',
  'start',
  'treatment',
  'plan',
  'son',
  'father',
  'gf',
  'biggest',
  'support',
  '‘',
  'tri',
  'better',
  'well',
  'ive',
  'also',
  'miss',
  'fiancé',
  'lot',
  'day',
  'memori',
  'kind',
  'calm',
  'idk',
  'long',
  'im',
  'alreadi',
  'see',
  'improv',
  'life',
  'crazi',
  'make',
  'origin',
  'post',
  'kickstart',
  'chang',
  'thank',
  'much',
  'everyth',
  'edit',
  'thank',
  'much',
  'nice',
  'comment',
  'messag',
  'im',
  'tri',
  'read',
  'mani',
  'keep',
  'haha',
  'ive',
  'shed',
  'tear',
  'well',
  'meet',
  'law',
  'went',
  'well',
  'fiancé',
  'mother',
  'cri',
  'lot',
  'said',
  'sorri',
  'give',
  'mani',
  'detail',
  'show',
  'pictur',
  'son',
  'still',
  'meet',
  'till',
  'lot',
  'later',
  'without',
  'progress',
  'also',
  'call',
  'fiancé',
  'bf',
  'fiancé',
  'well',
  'pass',
  'away',
  'week',
  'propos',
  'found',
  'ring',
  'friend',
  'told',
  'although',
  'never',
  'offici',
  'fiancé',
  'comfort',
  'call',
  'law',
  'law',
  'help',
  'word',
  'count',
  'yeah',
  'thank'],
 ['throwaway',
  'account',
  'fake',
  'name',
  'think',
  'im',
  'tah',
  'one',
  'cowork',
  'follow',
  'reddit',
  'let',
  'reddit',
  'decid',
  'name',
  'realli',
  'obscur',
  'charact',
  'greek',
  'mytholog',
  'prefer',
  'nicknam',
  'taken',
  'end',
  'name',
  'alway',
  'introduc',
  'im',
  'name',
  'call',
  'nicknam',
  'none',
  'cowork',
  'small',
  'busi',
  'work',
  'ever',
  'problem',
  'meganf',
  'niec',
  'jeffsm',
  'one',
  'two',
  'owner',
  'hire',
  'jeff',
  'davesm',
  'co-own',
  'busi',
  'dave',
  'actual',
  'day',
  'day',
  'run',
  'busi',
  'introduc',
  'nicknam',
  'usual',
  'immedi',
  'said',
  'bessi',
  'actual',
  'name',
  'would',
  'better',
  'nicknam',
  'come',
  'begin',
  'name',
  'like',
  'better',
  'told',
  'realli',
  'like',
  'nicknam',
  'answer',
  'ask',
  'pleas',
  'call',
  'bessi',
  'insist',
  'much',
  'prettier',
  'need',
  'get',
  'use',
  'next',
  'two',
  'month',
  'tri',
  'call',
  'bessi',
  'complet',
  'ignor',
  'whenev',
  'address',
  'way',
  'even',
  'knew',
  'realli',
  'need',
  'help',
  'someth',
  'would',
  'call',
  'desk',
  'phone',
  'say',
  'hey',
  'bessi',
  'would',
  'repli',
  'wrong',
  'number',
  'bessi',
  'hang',
  'tri',
  'get',
  'employe',
  'outsid',
  'offic',
  'start',
  'call',
  'bessi',
  'quickli',
  'shut',
  'usual',
  'finish',
  'work',
  'earli',
  'help',
  'lot',
  'tediou',
  'littl',
  'thing',
  'part',
  'job',
  'descript',
  'threaten',
  'stop',
  'help',
  'unless',
  'use',
  'prefer',
  'nicknam',
  'friday',
  'decid',
  'go',
  'get',
  'respond',
  'bessi',
  'matter',
  'open',
  'offic',
  'design',
  'opposit',
  'end',
  'start',
  'call',
  'bessi',
  'singsong',
  'voic',
  'tri',
  'annoy',
  'enough',
  'respond',
  'cowork',
  'got',
  'annoy',
  'tell',
  'stop',
  'one',
  'lisaf',
  'tell',
  'let',
  'call',
  'bessi',
  'alreadi',
  'refus',
  'kept',
  'call',
  'bessi',
  'louder',
  'louder',
  'dave',
  'barg',
  'hed',
  'confer',
  'call',
  'import',
  'client',
  'could',
  'hear',
  'yell',
  'offic',
  'hall',
  'told',
  'quiet',
  'call',
  'bessi',
  'one',
  'time',
  'hed',
  'write',
  'dock',
  'pay',
  'later',
  'megan',
  'corner',
  'break',
  'room',
  'call',
  'ah',
  'get',
  'troubl',
  'call',
  'bessi',
  'good',
  'measur',
  'dave',
  'walk',
  'heat',
  'lunch',
  'gave',
  'stern',
  'look',
  'said',
  'warn',
  'walk',
  'hr',
  'written',
  'lisa',
  'say',
  'im',
  'ah',
  'never',
  'help',
  'megan',
  'nicer',
  'fought',
  'hard',
  'nicknam',
  'probabl',
  'would',
  'given',
  'ago',
  'made',
  'big',
  'deal',
  'becam',
  'challeng',
  'reddit',
  'aita'],
 ['context',
  'husband',
  'got',
  'marri',
  'month',
  'ago',
  'live',
  'differ',
  'town',
  'parent',
  'mom',
  'visit',
  'us',
  'unexpectedli',
  'friday',
  'give',
  'context',
  'mil',
  'okay-ish',
  'respect',
  'son',
  'privaci',
  'extens',
  'mine',
  'time',
  'go',
  'bed',
  'mil',
  'request',
  'let',
  'sleep',
  'bedroom',
  'master',
  'bed',
  'lock',
  'door',
  'well',
  'explain',
  'cant',
  'feel',
  'comfort',
  'enough',
  'sleep',
  'without',
  'lock',
  'door',
  'found',
  'bizzar',
  'polit',
  'declin',
  'sugget',
  'option',
  'like',
  'guest',
  'room',
  'couch',
  'air',
  'mattress',
  'turn',
  'around',
  'present',
  'option',
  'husband',
  'agre',
  'said',
  'initi',
  'argument',
  'argument',
  'point',
  'put',
  'want',
  'keot',
  'room',
  'away',
  'stuff',
  'lash',
  'husband',
  'say',
  'stand',
  'say',
  'someth',
  'husband',
  'told',
  'let',
  'one',
  'night',
  'told',
  'option',
  'like',
  'could',
  'book',
  'hotel',
  'took',
  'kick',
  'start',
  'cri',
  'made',
  'husband',
  'upset',
  'left',
  'husband',
  'blew',
  'say',
  'disrespect',
  'mom',
  'guest',
  'hous',
  'treat',
  'poorli',
  'remind',
  'bedroom',
  'mine',
  'act',
  'horribl',
  'caus',
  'go',
  'stay',
  'hotel',
  'middl',
  'night',
  'went',
  'book',
  'room',
  'hotel',
  'turn',
  'phone',
  'next',
  'day',
  'went',
  'home',
  'told',
  'famili',
  'berat',
  'call',
  'behavior',
  'toward',
  'mil',
  'abhorr',
  'loathsom',
  'husband',
  'complain',
  'keep',
  'tri',
  'ruin',
  'relationship',
  'famili',
  'push',
  'away',
  'want',
  'know',
  'realli',
  'ta'],
 ['got',
  'pregnant',
  'son',
  'juliu',
  'month',
  'th',
  'birthday',
  'tri',
  'best',
  'got',
  'good',
  'engin',
  'school',
  'got',
  'girlfriend',
  'iza',
  'pregnant',
  'annabella',
  'togeth',
  'ive',
  'one',
  'mostli',
  'rais',
  'iza',
  'got',
  'deport',
  'spend',
  'juli',
  'togeth',
  'ft',
  'everi',
  'night',
  'juliu',
  'got',
  'marri',
  'girlfriend',
  'katja',
  'graduat',
  'two',
  'wonder',
  'boy',
  'togeth',
  'annabella',
  'live',
  'thing',
  'juliu',
  'never',
  'spend',
  'time',
  'annabella',
  'even',
  'call',
  'say',
  'goodnight',
  'love',
  'much',
  'like',
  'month',
  'hell',
  'show',
  'box',
  'full',
  'toy',
  'spend',
  'day',
  'go',
  'back',
  'famili',
  'hurt',
  'much',
  'spend',
  'time',
  'hero',
  'im',
  'grandma',
  'act',
  'way',
  'wife',
  'katja',
  'would',
  'love',
  'annabella',
  'move',
  'brought',
  'idea',
  'went',
  'thing',
  'could',
  'togeth',
  'would',
  'love',
  'stepmom',
  'call',
  'princess',
  'sweeti',
  'mani',
  'nice',
  'nicknam',
  'reason',
  'juliu',
  'said',
  'stay',
  'day',
  'ago',
  'juliu',
  'told',
  'katja',
  'plan',
  'trip',
  'disneyland',
  'august',
  'told',
  'annabella',
  'would',
  'excit',
  'tell',
  'birthday',
  'blankli',
  'told',
  'come',
  'trip',
  'boy',
  'made',
  'clear',
  'need',
  'bring',
  'trip',
  'call',
  'asshol',
  '-',
  'never',
  'done',
  '-',
  'tri',
  'control',
  'admit',
  'bit',
  'control',
  'reaction',
  'think',
  'went',
  'far'],
 ['year',
  'ago',
  'son',
  'matthew',
  'daughter',
  'ex',
  'wife',
  'josi',
  'alway',
  'thought',
  'josi',
  'daughter',
  'divorc',
  'year',
  'ago',
  'due',
  'son',
  'cheat',
  'conflict',
  'disappoint',
  'josi',
  'particularli',
  'close',
  'famili',
  'husband',
  'natur',
  'took',
  'josi',
  'angel',
  'insist',
  'lift',
  'finger',
  'taken',
  'though',
  'hurt',
  'kept',
  'civil',
  'around',
  'matthew',
  'husband',
  'held',
  'huge',
  'hand',
  'rais',
  'daughter',
  'ruth',
  'matthew',
  'remarri',
  'less',
  'year',
  'later',
  'four',
  'year',
  'old',
  'son',
  'disown',
  'ruth',
  'two',
  'year',
  'ago',
  'husband',
  'diagnos',
  'lung',
  'cancer',
  'hard',
  'everyon',
  'especi',
  'ruth',
  'extrem',
  'close',
  'told',
  'girlfriend',
  'boyfriend',
  'anyon',
  'els',
  'alway',
  'want',
  'one',
  'walk',
  'isl',
  'wed',
  'matt',
  'rare',
  'ever',
  'visit',
  'answer',
  'call',
  'often',
  'say',
  'kid',
  'like',
  'husband',
  'die',
  'lone',
  'last',
  'night',
  'matt',
  'stop',
  'talk',
  'inherit',
  'never',
  'mention',
  'josi',
  'ruth',
  'hint',
  'thought',
  'get',
  'inherit',
  'sibl',
  'entir',
  'time',
  'husband',
  'share',
  'awkward',
  'look',
  'decid',
  'cut',
  'explain',
  'everyon',
  'would',
  'get',
  'piec',
  'hed',
  'focu',
  'ruth',
  'bonni',
  'one',
  'grandkid',
  'matt',
  'got',
  'angri',
  'said',
  'ruth',
  'bastard',
  'son',
  'deserv',
  'husband',
  'got',
  'furiou',
  'left',
  'room',
  'say',
  'includ',
  'matthew',
  'matt',
  'yell',
  'back',
  'turn',
  'say',
  'ruth',
  'worth',
  'shed',
  'grow',
  'whore',
  'like',
  'mother',
  'told',
  'id',
  'rather',
  'mother',
  'daughter',
  'son',
  'insist',
  'leav',
  'im',
  'get',
  'phone',
  'call',
  'matt',
  'wife',
  'famili',
  'friend',
  'say',
  'husband',
  'overreact',
  'angri',
  'play',
  'favorit',
  'aita',
  'edit',
  'clear',
  'thing',
  'josi',
  'cheat',
  'matthew',
  'josi',
  'matthew',
  'met',
  'later',
  'colleg',
  'josi',
  'known',
  'parti',
  'girl',
  'ruth',
  'product',
  'affair',
  'plan',
  'get',
  'dna',
  'test',
  'matthew',
  'said',
  'gotten',
  'ruth',
  'skin',
  'hous',
  'occur',
  'heard',
  'came',
  'take',
  'josi',
  'ruth',
  'hesit',
  'josi',
  'matt',
  'live',
  'anoth',
  'countri',
  'move',
  'month',
  'got',
  'caught',
  'cheat',
  'els',
  'go',
  'josi',
  'stay',
  'home',
  'mom',
  'intent',
  'choos',
  'josi',
  'matt',
  'never',
  'discourag',
  'matt',
  'visit',
  'tri',
  'make',
  'clear',
  'pick',
  'choos',
  'took',
  'josi',
  'want',
  'granddaught',
  'safe',
  'good',
  'home'],
 ['boyfriend',
  'togeth',
  'year',
  'good',
  'heart',
  'normal',
  'ration',
  'one',
  'issu',
  'expect',
  'accompani',
  'everi',
  'ocass',
  'nomatt',
  'big',
  'small',
  'even',
  'went',
  'ex',
  'boyfriend',
  'funer',
  'day',
  'beg',
  'best',
  'friend',
  'got',
  'marri',
  'day',
  'ago',
  'small',
  'close',
  'famili',
  'friend',
  'invit',
  'boyfriend',
  'come',
  '+',
  'one',
  'rule',
  'pitch',
  'hissi',
  'fit',
  'say',
  'best',
  'friend',
  'respect',
  'relationship',
  'shock',
  'learn',
  'still',
  'go',
  'attend',
  'told',
  'cant',
  'go',
  'im',
  'expect',
  'go',
  'well',
  'best',
  'friend',
  'respect',
  'rule',
  'gave',
  'altimatum',
  'either',
  'go',
  'togeth',
  'stay',
  'home',
  'end',
  'go',
  'caus',
  'respect',
  'friend',
  'rule',
  'angri',
  'kept',
  'call',
  'entir',
  'hr',
  'drive',
  'stop',
  'later',
  'got',
  'text',
  'friend',
  'tell',
  'boyfriend',
  'got',
  'accid',
  'taken',
  'hospit',
  'freak',
  'gave',
  'address',
  'leav',
  'wed',
  'told',
  'friend',
  'cri',
  'entir',
  'drive',
  'home',
  'kept',
  'call',
  'friend',
  'got',
  'respons',
  'arriv',
  'hospit',
  'ask',
  'boyfriend',
  'check',
  'told',
  'anxieti',
  'reach',
  '%',
  'kept',
  'call',
  'friend',
  'one',
  'one',
  'went',
  'home',
  'wasalong',
  'friend',
  'saw',
  'said',
  'sorri',
  'get',
  'home',
  'left',
  'alon',
  'initi',
  'shock',
  'blew',
  'yell',
  'lie',
  'make',
  'leav',
  'friend',
  'wed',
  'liter',
  'go',
  'hospit',
  'freak',
  'caus',
  'kick',
  'friend',
  'got',
  'argument',
  'kept',
  'talk',
  'much',
  'love',
  'thu',
  'left',
  'tri',
  'see',
  'realli',
  'chose',
  'friend',
  'wed',
  'argu',
  'friend',
  'caus',
  'agre',
  'exclud',
  'said',
  'horribl',
  'call',
  'horribl',
  'went',
  'room',
  'aw',
  'caus',
  'friend',
  'kept',
  'call',
  'check',
  'caus',
  'thought',
  'realli',
  'hospit',
  'said',
  'overreact',
  'yell',
  'wrong',
  'person',
  'aita',
  'go',
  'far',
  '*',
  'info',
  'base',
  'request',
  'user_',
  'histori',
  'mental',
  'health',
  'issu',
  'got',
  'better',
  'past',
  'month',
  'also',
  'recent',
  'death',
  'famili',
  'realli',
  'affect',
  'health',
  'gener',
  '*'],
 ['im',
  '-year-old',
  'man',
  'wife',
  'sinc',
  'start',
  'relationship',
  'wife',
  'particular',
  'thing',
  'get',
  'done',
  'tend',
  'believ',
  'know',
  'one',
  'true',
  'correct',
  'way',
  'anyth',
  'relat',
  'anyth',
  'admit',
  'control',
  'freak',
  'bother',
  'never',
  'true',
  'dealbreak',
  'relationship',
  'often',
  'anyth',
  'whether',
  'household',
  'chore',
  'assembl',
  'piec',
  'furnitur',
  'take',
  'pictur',
  'write',
  'present',
  'work',
  'field',
  'master',
  'degre',
  'formal',
  'educ',
  'shell',
  'thing',
  'shell',
  'condescendingli',
  'say',
  '*',
  'close',
  '*',
  'get',
  'right',
  'realli',
  'draw',
  'close',
  'part',
  'ive',
  'told',
  'dozen',
  'time',
  'id',
  'prefer',
  'stop',
  'sound',
  'condescend',
  'insist',
  'compliment',
  'dish',
  'place',
  'dri',
  'orient',
  'approv',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'put',
  'way',
  'take',
  'pictur',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'angl',
  'camera',
  'way',
  'complet',
  'project',
  'work',
  'show',
  'result',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'write',
  'way',
  'last',
  'two',
  'month',
  'wife',
  'undergo',
  'intens',
  'hire',
  'process',
  'job',
  'citi',
  'work',
  'highli',
  'nich',
  'field',
  'seldom',
  'find',
  'job',
  'open',
  'therefor',
  'ecstat',
  'opportun',
  'rel',
  'well-pay',
  'job',
  'want',
  'got',
  'final',
  'stage',
  'compani',
  'consid',
  'two',
  'peopl',
  'coincident',
  'colleg',
  'roommat',
  'well',
  'friday',
  'got',
  'call',
  'tell',
  'thank',
  'applic',
  'blah',
  'blah',
  'blah',
  'record',
  'file',
  'jazz',
  'wife',
  'came',
  'cri',
  'immedi',
  'comfort',
  '*',
  'close',
  '*',
  'blurt',
  'head',
  'whip',
  'ask',
  'meant',
  'said',
  '*',
  'close',
  '*',
  'get',
  'job',
  'bit',
  'immedi',
  'walk',
  'stay',
  'friend',
  'hous',
  'current',
  'sulk',
  'final',
  'sent',
  'text',
  'afternoon',
  'call',
  'huge',
  'jerk',
  'unnecessarili',
  'asshol'],
 ['singl',
  'mom',
  'two',
  'boy',
  'age',
  'father',
  'divorc',
  'year',
  'ago',
  'learn',
  'cheat',
  'got',
  'pregnant',
  'either',
  'right',
  'told',
  'confess',
  'right',
  'divorc',
  'easi',
  'one',
  'want',
  'stay',
  'friend',
  'could',
  'look',
  'togeth',
  'year',
  'also',
  'friend',
  'boyfriendhusband',
  'betray',
  'like',
  'treat',
  'aw',
  'marri',
  'affair',
  'partner',
  'daughter',
  'within',
  'month',
  'separ',
  'follow',
  'son',
  'divorcetheir',
  'marriag',
  'last',
  'year',
  'lost',
  'babi',
  'led',
  'discoveri',
  'wife',
  'cancer',
  'follow',
  'lot',
  'fight',
  'two',
  'us',
  'want',
  'help',
  'wife',
  'said',
  'children',
  'current',
  'need',
  'famili',
  'beyond',
  'wife',
  'famili',
  'disown',
  'divorc',
  'extrem',
  'religi',
  'famili',
  'told',
  'would',
  'dead',
  'bodi',
  'would',
  'help',
  'argu',
  'children',
  'kid',
  'boy',
  'could',
  'see',
  'famili',
  'heal',
  'one',
  'told',
  'stop',
  'chanc',
  'happen',
  'cheat',
  'expect',
  'tell',
  'daughter',
  'school',
  'call',
  'got',
  'sick',
  'work',
  'time',
  'leav',
  'appar',
  'alreadi',
  'miss',
  'lot',
  'work',
  'due',
  'wife',
  'home',
  'recov',
  'chemo',
  'got',
  'call',
  'ask',
  'would',
  'pick',
  'said',
  'sever',
  'hour',
  'later',
  'got',
  'ream',
  'phone',
  'leav',
  'sick',
  'child',
  'school',
  'knew',
  'nobodi',
  'told',
  'leav',
  'wife',
  'rest',
  'told',
  'babysitt',
  'son',
  'call',
  'told',
  'daycar',
  'fuck',
  'asham',
  'sick',
  'child',
  'go',
  'lot',
  'could',
  'help',
  'told',
  'hope',
  'son',
  'go',
  'fuck',
  'asham',
  'argu',
  'back',
  'phone',
  'time',
  'guess',
  'part',
  'feel',
  'bad',
  'child',
  'son',
  'also',
  'sens',
  'atmospher',
  'dad',
  'incid',
  'talk',
  'hate',
  'aita'],
 ['year',
  'ago',
  'marri',
  'expect',
  'babi',
  'thing',
  'went',
  'horribl',
  'wrong',
  'around',
  'week',
  'pregnanc',
  'suffer',
  'miscarriag',
  'return',
  'home',
  'find',
  'husband',
  'bed',
  'sister',
  'two',
  'tri',
  'apolog',
  'convinc',
  'could',
  'get',
  'want',
  'noth',
  'either',
  'even',
  'less',
  'found',
  'gotten',
  'pregnant',
  'divorc',
  'final',
  'quickli',
  'want',
  'noth',
  'divorc',
  'leav',
  'marriag',
  'noth',
  'cloth',
  'back',
  'pretti',
  'earli',
  'realiz',
  'parent',
  'hope',
  'would',
  'want',
  'still',
  'part',
  'babi',
  'life',
  'want',
  'noth',
  'babi',
  'sister',
  'conceiv',
  'sleep',
  'husband',
  'ex',
  'lay',
  'hospit',
  'lose',
  'pregnanc',
  'refus',
  'contact',
  'sister',
  'ex',
  'marri',
  'two',
  'children',
  'one',
  'conciev',
  'marriag',
  'met',
  'current',
  'husband',
  'distanc',
  'whole',
  'famili',
  'amaz',
  'famili',
  'great',
  'got',
  'marri',
  'two',
  'year',
  'ago',
  'famili',
  'noth',
  'short',
  'best',
  'ador',
  'niec',
  'nephew',
  'gain',
  'marriag',
  'spend',
  'lot',
  'time',
  'togeth',
  'around',
  'three',
  'month',
  'ago',
  'sister',
  'call',
  'work',
  'use',
  'work',
  'phone',
  'told',
  'need',
  'could',
  'pleas',
  'come',
  'hung',
  'phone',
  'continu',
  'day',
  'sever',
  'hour',
  'later',
  'got',
  'messag',
  'parent',
  'say',
  'need',
  'sister',
  'day',
  'later',
  'got',
  'anoth',
  'call',
  'told',
  'sister',
  'pregnant',
  'babi',
  'pass',
  'away',
  'insid',
  'deliv',
  'stillborn',
  'sleep',
  'someon',
  'els',
  'parent',
  'sister',
  'expect',
  'ralli',
  'around',
  'time',
  'pass',
  'live',
  'inund',
  'say',
  'meet',
  'kid',
  'like',
  'husband',
  'niec',
  'nephew',
  'reconcil',
  'famili',
  'sister',
  'told',
  'sorri',
  'want',
  'us',
  'make',
  'told',
  'three',
  'kid',
  'problem',
  'still',
  'want',
  'noth',
  'parent',
  'furiou',
  'say',
  'need',
  'forgiv',
  'whatev',
  'suffer',
  'wors',
  'would',
  'ever',
  'deserv',
  'kid',
  'innoc',
  'deserv',
  'aunt',
  'aita'],
 ['son',
  'eight',
  'got',
  'dog',
  'half',
  'great',
  'dane',
  'half',
  'dog',
  'friend',
  'dog',
  'met',
  'unauthor',
  'absenc',
  'son',
  'love',
  'dog',
  'care',
  'except',
  'vet',
  'stuff',
  'respons',
  'dog',
  'owner',
  'dog',
  'pretti',
  'much',
  'best',
  'friend',
  'wife',
  'week',
  'pregnant',
  'ever',
  'sinc',
  'confirm',
  'pregnanc',
  'act',
  'weird',
  'around',
  'dog',
  'avoid',
  'put',
  'hand',
  'stomach',
  'around',
  'jolt',
  'whenev',
  'make',
  'nois',
  'today',
  'told',
  'want',
  're-hom',
  'dog',
  'ask',
  'talk',
  'said',
  'anxieti',
  'jump',
  'complet',
  'unreason',
  'jump',
  'peopl',
  'train',
  'jump',
  'peopl',
  'run',
  'peopl',
  'young',
  'half',
  'great',
  'dane',
  'felt',
  'import',
  'dog',
  'especi',
  'one',
  'could',
  'possibl',
  'grow',
  'larg',
  'size',
  'reason',
  'think',
  'dog',
  'jump',
  'said',
  'way',
  'know',
  'sure',
  'dog',
  'jump',
  'babi',
  'could',
  'hurt',
  'dog',
  'never',
  'much',
  'growl',
  'said',
  'even',
  'dog',
  'jump',
  'anxieti',
  'bad',
  'health',
  'said',
  'need',
  'dog',
  'elsewher',
  'safeti',
  'babi',
  'told',
  'way',
  'son',
  'got',
  'dog',
  'right',
  'lost',
  'mom',
  'imprint',
  'hard',
  'sometim',
  'think',
  'love',
  'dog',
  'im',
  'take',
  'dog',
  'dog',
  'anyth',
  'wife',
  'said',
  'priorit',
  'dog',
  'pregnanc',
  'dog',
  'threat',
  'pregnanc',
  'unreason',
  'request',
  'would',
  'pregnant',
  'cant',
  'break',
  'son',
  'heart',
  'fear',
  'make',
  'sens',
  'asshol'],
 ['marri',
  'husband',
  'year',
  'ago',
  'im',
  'current',
  'pregnant',
  'first',
  'babi',
  'togeth',
  'found',
  'girl',
  'inlaw',
  'want',
  'invit',
  'us',
  'dinner',
  'gender',
  'reveal',
  'announc',
  'celebr',
  'got',
  'saw',
  'mani',
  'rel',
  'come',
  'congrat',
  'us',
  'celebr',
  'bigger',
  'expect',
  'made',
  'nervou',
  'im',
  'fan',
  'around',
  'mani',
  'peopl',
  'sat',
  'dinner',
  'tabl',
  'bare',
  'ate',
  'feel',
  'much',
  'anxieti',
  'sort',
  'upset',
  'husband',
  'warn',
  'mani',
  'peopl',
  'come',
  'tri',
  'stay',
  'calm',
  'collect',
  'anyway',
  'announc',
  'middl',
  'celebr',
  'husband',
  'want',
  'give',
  'toast',
  'open',
  'bottl',
  'pour',
  'drink',
  'wish',
  'daughter',
  'healthi',
  'happi',
  'look',
  'noth',
  'like',
  'everyon',
  'tabl',
  'laugh',
  'sat',
  'stare',
  'shock',
  'kept',
  'laugh',
  'felt',
  'much',
  'rage',
  'anxieti',
  'got',
  'hand',
  'ngl',
  'got',
  'took',
  'purs',
  'made',
  'way',
  'mom',
  'follow',
  'ask',
  'okay',
  'told',
  'want',
  'tk',
  'go',
  'home',
  'came',
  'door',
  'ask',
  'wrong',
  'start',
  'argu',
  'said',
  'joke',
  'toast',
  'reaction',
  'top',
  'thing',
  'eversinc',
  'got',
  'pregnant',
  'kept',
  'hint',
  'want',
  'daughter',
  'look',
  'like',
  'even',
  'got',
  'morn',
  'first',
  'thing',
  'told',
  'much',
  'wish',
  'daughter',
  'look',
  'noth',
  'like',
  'hurt',
  'im',
  'alreadi',
  'deal',
  'low',
  'self',
  'esteem',
  'anxieti',
  'want',
  'go',
  'home',
  'said',
  'babi',
  'learn',
  'take',
  'fuck',
  'joke',
  'said',
  'made',
  'everyon',
  'laugh',
  'buy',
  'defens',
  'said',
  'warrant',
  'walk',
  'dinner',
  'disrespect',
  'reativ',
  'came',
  'celebr',
  'share',
  'joy',
  'went',
  'home',
  'call',
  'mani',
  'time',
  'tell',
  'get',
  'insecur',
  'check',
  'pass',
  'daughter',
  'urg',
  'get',
  'therapi',
  'stop',
  'act',
  'dramat',
  'like',
  'infront',
  'famili',
  'think',
  'leav',
  'dinner',
  'thf',
  'best',
  'solut',
  'got',
  'overwhelm'],
 ['uncl',
  'new',
  'girlfriend',
  'came',
  'famili',
  'dinner',
  'night',
  'first',
  'time',
  'anyon',
  'famili',
  'met',
  'super',
  'essenti',
  'oil',
  'eyerol',
  'induc',
  'say',
  'anyth',
  'show',
  'found',
  'annoy',
  'first',
  'bit',
  'tongu',
  'went',
  'put',
  'water',
  'ingest',
  'essenti',
  'oil',
  'rub',
  'pressur',
  'point',
  'tri',
  'convinc',
  'mom',
  'buy',
  'brought',
  'super',
  'good',
  'yeast',
  'infect',
  'look',
  'super',
  'horrifi',
  'ask',
  'mean',
  'put',
  '*',
  '*',
  'said',
  'ye',
  'insert',
  'drop',
  'clear',
  'right',
  'away',
  'told',
  'danger',
  'could',
  'caus',
  'chemic',
  'burn',
  'well',
  'throw',
  'vagin',
  'ph',
  'potenti',
  'caus',
  'infect',
  'said',
  'oh',
  'worri',
  'theyr',
  'natur',
  'repli',
  'poison',
  'ivi',
  'suggest',
  'shove',
  'vagina',
  'look',
  'kind',
  'shock',
  'sister',
  'laugh',
  'aunt',
  'said',
  'well',
  'point',
  'famili',
  'member',
  'said',
  'rude',
  'crass',
  'think',
  'one',
  'start',
  'talk',
  'yeast',
  'infect',
  'famili',
  'dinner',
  'certainli',
  'say',
  'word',
  'vagina',
  'less',
  'crass'],
 ['throwaway',
  'guym',
  'gone',
  'date',
  'past',
  'coupl',
  'month',
  'nice',
  'far',
  'weve',
  'progress',
  'go',
  'public',
  'date',
  'week',
  'ago',
  'final',
  'decid',
  'nice',
  'date',
  'place',
  'sinc',
  'go',
  'place',
  'let',
  'know',
  'period',
  'sure',
  'expect',
  'boundari',
  'yet',
  'agre',
  'nice',
  'takeout',
  'dinner',
  'watch',
  'movi',
  'come',
  'eat',
  'sit',
  'couch',
  'pick',
  'movi',
  'say',
  'suck',
  'period',
  'said',
  'thought',
  'strang',
  'women',
  'give',
  'birth',
  'vagina',
  'period',
  'butt',
  'complet',
  'unpromot',
  'statement',
  'im',
  'still',
  'sure',
  'got',
  'topic',
  'tbh',
  'ask',
  'meant',
  'said',
  'exactli',
  'said',
  'kind',
  'smile',
  'assum',
  'much',
  'joke',
  'said',
  'oh',
  'yeah',
  'weird',
  'think',
  'go',
  'start',
  'laugh',
  'soon',
  'end',
  'joke',
  'instead',
  'start',
  'talk',
  'first',
  'girlfriend',
  'hed',
  'high',
  'school',
  'use',
  'complain',
  'bad',
  'period',
  'poop',
  'time',
  'point',
  'ask',
  'seriou',
  'look',
  'littl',
  'confus',
  'say',
  'ask',
  'explain',
  'came',
  'conclus',
  'explain',
  'first',
  'experi',
  'around',
  'period',
  'hs',
  'gf',
  'never',
  'receiv',
  'seen',
  'much',
  'inform',
  'understood',
  'someth',
  'happen',
  'insid',
  'bodi',
  'blood',
  'came',
  'somewher',
  'assum',
  'came',
  'vagina',
  'heard',
  'complain',
  'realiz',
  'actual',
  'came',
  'butt',
  'unexpect',
  'come',
  'year',
  'old',
  'man',
  'somehow',
  'manag',
  'keep',
  'composur',
  'told',
  'period',
  'fact',
  'come',
  'vagina',
  'butt',
  'look',
  'confus',
  'littl',
  'frustrat',
  'start',
  'insist',
  'wrong',
  'kept',
  'say',
  'sure',
  'confus',
  'came',
  'bodi',
  'explain',
  'anatomi',
  'bit',
  'work',
  'adam',
  'eventu',
  'conced',
  'women',
  'must',
  'period',
  'like',
  'henc',
  'ex-gf',
  'period',
  'form',
  'butt',
  'could',
  'understand',
  'matter',
  'mani',
  'time',
  'tri',
  'explain',
  'simpli',
  'come',
  'wrong',
  'conclus',
  'misinterpret',
  'gf',
  'word',
  'whole',
  'situat',
  'becam',
  'much',
  'start',
  'laugh',
  'doubl',
  'clutch',
  'stomach',
  'cri',
  'laugh',
  'whole',
  'debacl',
  'sat',
  'red-fac',
  'continu',
  'tri',
  'argu',
  'eventu',
  'said',
  'readi',
  'leav',
  'could',
  'watch',
  'movi',
  'felt',
  'bad',
  'laugh',
  'left',
  'could',
  'tell',
  'decid',
  'leav',
  'also',
  'text',
  'later',
  'night',
  'say',
  'done',
  'littl',
  'bit',
  'research',
  'longer',
  'interest',
  'pursu',
  'sort',
  'relationship',
  'stand',
  'someon',
  'laugh',
  'someon',
  'understand',
  'aita'],
 ['sister',
  'brother',
  'law',
  'came',
  'kid',
  'dinner',
  'parent',
  'hous',
  'watch',
  'niec',
  'dinner',
  'get',
  'readi',
  'sat',
  'happen',
  'sit',
  'next',
  'brother',
  'law',
  'wear',
  'skirt',
  'accident',
  'lift',
  'knee',
  'brother',
  'law',
  'look',
  'leg',
  'made',
  'face',
  'loudli',
  'said',
  'oh',
  'shooo',
  'op',
  'gross',
  'shave',
  'hair',
  'suppos',
  'everyon',
  'stare',
  'told',
  'suppos',
  'grow',
  'explain',
  'like',
  'suppos',
  'point',
  'mustach',
  'say',
  'well',
  'guess',
  'thing',
  'said',
  'littl',
  'mustach',
  'huh',
  'look',
  'meey',
  'wide',
  'open',
  'awkward',
  'silenc',
  'take',
  'though',
  'laugh',
  'sister',
  'told',
  'knock',
  'brother',
  'law',
  'got',
  'chair',
  'went',
  'insid',
  'bathroom',
  'sister',
  'follow',
  'could',
  'hear',
  'breakdown',
  'ask',
  'someth',
  'wrong',
  'mustach',
  'brother',
  'kept',
  'giggl',
  'dinner',
  'got',
  'cut',
  'short',
  'caus',
  'brother',
  'law',
  'want',
  'leav',
  'later',
  'got',
  'scold',
  'sister',
  'say',
  'step',
  'line',
  'disrespect',
  'someon',
  'older',
  'herhusband',
  'demand',
  'apolog',
  'insult',
  'ruin',
  'dinner',
  'aita',
  'edit',
  '-',
  'guy',
  'sister',
  'said',
  'reason',
  'brother',
  'law',
  'got',
  'offend',
  'consid',
  'mustach',
  'symbol',
  'manhood',
  'insult',
  'manhood',
  'made',
  'backhand',
  'comment',
  'said',
  'psycholog',
  'harm',
  'apolog',
  'im',
  'sure',
  'fix',
  'anyth',
  'except',
  'feel',
  'mustachi',
  'mustachelol'],
 ['boyfriend',
  'tradit',
  'anniversari',
  'go',
  'store',
  'separ',
  'buy',
  'gift',
  'exchang',
  'car',
  'silli',
  'cute',
  'walk',
  'new',
  'mom',
  '&',
  'pop',
  'anim',
  'store',
  'huge',
  'anim',
  'nerd',
  'boyfriend',
  'like',
  'video',
  'game',
  'also',
  'sell',
  'separ',
  'go',
  'look',
  'stuff',
  'boyfriend',
  'worker',
  'walk',
  'start',
  'chat',
  'point',
  'leg',
  'pretti',
  'big',
  'tattoo',
  'kakashi',
  'naruto',
  'thigh',
  'among',
  'anim',
  'tattoo',
  'ask',
  'got',
  'boyfriend',
  'said',
  'ive',
  'alway',
  'love',
  'naruto',
  'show',
  'tattoo',
  'includ',
  'leaf',
  'villag',
  'symbol',
  'gaara',
  'sand',
  'gourd',
  'piec',
  'arm',
  'asuma',
  'sarutobi',
  'start',
  'quizz',
  'lore',
  'anim',
  'told',
  'spent',
  '$',
  'tattoo',
  'anim',
  'know',
  'appreci',
  'tri',
  'catch',
  'gotcha',
  'moment',
  'told',
  'believ',
  'girl',
  'could',
  'ever',
  'fulli',
  'understand',
  'real',
  'stori',
  'naruto',
  'depth',
  'behind',
  'lol',
  'told',
  'need',
  'servic',
  'go',
  'back',
  'front',
  'desk',
  'told',
  'rude',
  'wannab',
  'bitch',
  'walk',
  'back',
  'continu',
  'purchas',
  'item',
  'left',
  'review',
  'later',
  'tldr',
  'feminin',
  'present',
  'enter',
  'caution',
  'one',
  'employe',
  'call',
  'bitch',
  'want',
  'prove',
  'nerd',
  'cred',
  'owner',
  'left',
  'comment',
  'review',
  'ask',
  'email',
  'convers',
  'ask',
  'take',
  'review',
  'peopl',
  'start',
  'complain',
  'employe',
  'well',
  'sale',
  'revenu',
  'drop',
  'told',
  'mayb',
  'hire',
  'misogynist',
  'want',
  'bad',
  'review',
  'friend',
  'tell',
  'im',
  'react',
  'aita'],
 ['mem',
  'brother',
  'jackm',
  'wife',
  'jillf',
  'start',
  'jack',
  'jill',
  'got',
  'pregnant',
  'leas',
  'almost',
  'end',
  'parent',
  'invit',
  'stay',
  'hous',
  'day',
  'came',
  'jack',
  'ask',
  'move',
  'room',
  'yet',
  'confus',
  'like',
  'wtf',
  'told',
  'jill',
  'room',
  'go',
  'guest',
  'room',
  'refus',
  'parent',
  'got',
  'mad',
  'got',
  'fight',
  'lost',
  'end',
  'much',
  'smaller',
  'guest',
  'room',
  'jill',
  'problem',
  'cook',
  'eat',
  'scrambl',
  'egg',
  'mozzarela',
  'avocado',
  'everi',
  'day',
  'breakfast',
  'stand',
  'smell',
  'ask',
  'stop',
  'refus',
  'parent',
  'got',
  'involv',
  'stop',
  'problem',
  'food',
  'stop',
  'cook',
  'told',
  'must',
  'accomod',
  'caus',
  'pregnant',
  'like',
  'problem',
  'jill',
  'start',
  'boss',
  'around',
  'alon',
  'hour',
  'parent',
  'jack',
  'work',
  'obvious',
  'tought',
  'person',
  'maid',
  'refus',
  'trew',
  'temper',
  'tantrum',
  'like',
  'alway',
  'big',
  'fight',
  'jack',
  'parent',
  'told',
  'high',
  'risk',
  'pregnanc',
  'bed',
  'rest',
  'im',
  'asshol',
  'help',
  'told',
  'jack',
  'knock',
  'respons',
  'stood',
  'ground',
  'end',
  'jill',
  'cousin',
  'came',
  'help',
  'sometim',
  'jill',
  'gave',
  'birth',
  'nephew',
  'congratul',
  'came',
  'home',
  'like',
  'babi',
  'mostli',
  'keep',
  'stop',
  'jill',
  'ask',
  'favor',
  'pleas',
  'watch',
  'babi',
  'take',
  'quick',
  'shower',
  'pleas',
  'watch',
  'make',
  'food',
  'etc',
  'alway',
  'refus',
  'new',
  'fight',
  'came',
  'head',
  'last',
  'friday',
  'ask',
  'watch',
  'nephew',
  'goe',
  'pharmaci',
  'babi',
  'formula',
  'refus',
  'got',
  'mad',
  'fight',
  'grabe',
  'purs',
  'go',
  'anyway',
  'told',
  'moment',
  'walk',
  'door',
  'call',
  'polic',
  'child',
  'abandon',
  'seriou',
  'knew',
  'broke',
  'scream',
  'horribl',
  'human',
  'ran',
  'room',
  'complet',
  'mental',
  'breakdown',
  'jack',
  'parent',
  'came',
  'home',
  'biggest',
  'fight',
  'yet',
  'jack',
  'accus',
  'hate',
  'jill',
  'nephew',
  'upon',
  'thing',
  'told',
  'refus',
  'bond',
  'weapon',
  'parent',
  'told',
  'enough',
  'enough',
  'cant',
  'believ',
  'rais',
  'selfish',
  'human',
  'either',
  'help',
  'move',
  'im',
  'think',
  'second',
  'option',
  'aita',
  'edit',
  'work',
  'home',
  'pay',
  '%',
  'household',
  'expens',
  'includ',
  'mortag',
  'jack',
  'jill',
  'contribut',
  'anyth',
  'expens'],
 ['im',
  'owner',
  'wonder',
  'rescu',
  'macaw',
  'wonder',
  'bird',
  'lot',
  'issu',
  'due',
  'abus',
  'former',
  'home',
  'ive',
  'year',
  'sinc',
  'taken',
  'vacat',
  'trip',
  'away',
  'would',
  'disrupt',
  'distrust',
  'everyon',
  'reliant',
  'routin',
  'love',
  'deepli',
  'im',
  'happi',
  'make',
  'sacrific',
  'perman',
  'toddler',
  'intellig',
  'bird',
  'met',
  'husband',
  'time',
  'kid',
  'older',
  'stepdaught',
  'time',
  'marri',
  'move',
  'away',
  'colleg',
  'nevertheless',
  'thought',
  'wed',
  'manag',
  'decent',
  'relationship',
  'stepdaught',
  'get',
  'marri',
  'march',
  'natur',
  'lot',
  'prepar',
  'involv',
  'theyr',
  'want',
  'huge',
  'tradit',
  'wed',
  'stress',
  'mind',
  'live',
  'state',
  'invit',
  'recent',
  'come',
  'visit',
  'week',
  'help',
  'make',
  'wed',
  'plan',
  'spend',
  'time',
  'yo',
  'declin',
  'insist',
  'know',
  'act',
  'hurt',
  'explain',
  'parrot',
  'well',
  'jt',
  'went',
  'downhil',
  'caus',
  'massiv',
  'fuss',
  'dad',
  'say',
  'never',
  'got',
  'mother',
  'figur',
  'never',
  'accept',
  'full',
  'blood',
  'daughter',
  'ultim',
  'snub',
  'silli',
  'anim',
  'im',
  'cold',
  'emotionless',
  'feel',
  'realli',
  'hurt',
  'tell',
  'agre',
  'even',
  'though',
  'refus',
  'take',
  'side',
  'see',
  'expect',
  'take',
  'holiday',
  'time',
  'work',
  'babysit',
  'bond',
  'sudden',
  'see',
  'im',
  'monster',
  'asshol',
  'edit',
  'context',
  'relationship',
  'usual',
  'talk',
  'visit',
  'home',
  'year',
  'edit',
  'begin',
  'think',
  'mayb',
  'mistak',
  'post',
  'mostli',
  'real',
  'nuanc',
  'situat',
  'reddit',
  'place',
  'nuanc',
  'mayb',
  'person',
  'relationship',
  'judg',
  'ah',
  'context',
  'first',
  'place',
  'also',
  'understand',
  'bigger',
  'person',
  'regardless',
  'asshol',
  'life',
  'short',
  'butthurt',
  'offend',
  'call',
  'stepdaught',
  'told',
  'understand',
  'big',
  'moment',
  'life',
  'want',
  'someon',
  'help',
  'support',
  'im',
  'still',
  'help',
  'way',
  'plan',
  'wed',
  'via',
  'zoom',
  'virtual',
  'talk',
  'bit',
  'ask',
  'accept',
  'reach',
  'past',
  'apologis',
  'said',
  'want',
  'accept',
  'someon',
  'stand-in',
  'fake',
  'replac',
  'bio',
  'mom',
  'regret',
  'would',
  'like',
  'closer',
  'relationship',
  'especi',
  'see',
  'close',
  'mom',
  'end',
  'convers',
  'posit',
  'im',
  'hope',
  'thing',
  'improv',
  'go',
  'forward',
  'told',
  'im',
  'crazi',
  'bird',
  'ladi',
  'ask',
  'still',
  'want',
  'relationship',
  'know',
  'said',
  'wed',
  'travel',
  'visit',
  'us',
  'room',
  'ill',
  'leav',
  'post',
  'im',
  'happi',
  'either',
  'way',
  'im',
  'glad',
  'feedback',
  'motiv',
  'make',
  'call'],
 ['daughter',
  'amanda',
  'cerebr',
  'palsi',
  'abl',
  'walk',
  'independ',
  'walk',
  'long',
  'period',
  'time',
  'walk',
  'anyth',
  'even',
  'ground',
  'without',
  'assist',
  'ie',
  'stair',
  'rail',
  'cant',
  'walk',
  'rockssandetc',
  'iep',
  '-',
  'state',
  'pe',
  'excurs',
  'etc',
  'relev',
  'note',
  'amanda',
  'catch',
  'bu',
  'home',
  '-',
  'catch',
  'specif',
  'rout',
  'rout',
  'school',
  'offer',
  'drop',
  'road',
  'mile',
  'away',
  'footpath',
  'got',
  'call',
  'work',
  'today',
  'tell',
  'amanda',
  'spoken',
  'quit',
  'rude',
  'substitut',
  'pe',
  'gym',
  'teacher',
  'tri',
  'make',
  'climb',
  'rock',
  'wall',
  'school',
  'appar',
  'amanda',
  'say',
  'cant',
  'cerebr',
  'palsi',
  'iep',
  'anoth',
  'child',
  'said',
  'yeah',
  'teacher',
  'believ',
  'becam',
  'insist',
  '-',
  'stand',
  'amanda',
  'told',
  'fuck',
  'repeat',
  'anyth',
  'fuck',
  'sent',
  'offic',
  'handbook',
  'type',
  'offenc',
  'day',
  'school',
  'detent',
  'princip',
  'call',
  'said',
  'absolut',
  'told',
  'welcom',
  'week',
  'worth',
  'lunch',
  'detent',
  'even',
  'schedul',
  'chang',
  'work',
  'schedul',
  '-',
  'absolut',
  'afternoon',
  'husband',
  'away',
  'work',
  'work',
  'pm',
  'need',
  'amanda',
  'regular',
  'bu',
  'nobodi',
  'drop',
  'home',
  'detent',
  'finish',
  'told',
  'late',
  'bu',
  'remind',
  'amanda',
  'take',
  'bu',
  'told',
  'well',
  'sound',
  'like',
  'natur',
  'consequ',
  'averag',
  'kid',
  'refus',
  'someth',
  'rude',
  'deserv',
  'long',
  'walk',
  'home',
  'well',
  'detent',
  'kid',
  'could',
  'serious',
  'harm',
  'made',
  'walk',
  'far',
  'road',
  'princip',
  'told',
  'make',
  'excus',
  'amanda',
  'need',
  'face',
  'consequ',
  'technic',
  'need',
  'give',
  'permiss',
  '-',
  'make',
  'awar',
  'agre',
  'amanda',
  'need',
  'face',
  'consequ',
  'languag',
  '~~she',
  'ground',
  'weekend~~',
  'serv',
  'lunch',
  'detent',
  'school',
  'give',
  'apologis',
  'teacher',
  'specif',
  'languag',
  '-',
  'noth',
  'els',
  '-',
  'put',
  'danger',
  'right',
  'insist',
  '-',
  'insist',
  'take',
  'lunch',
  'break',
  'right',
  'drive',
  'pull',
  'rest',
  'day',
  'edit',
  'school',
  'call',
  'back',
  'said',
  'day',
  'lunch',
  'detent',
  '-',
  'sister',
  'live',
  'interst',
  'think',
  'im',
  'one',
  'mum',
  'told',
  'wrong',
  'henc',
  'post',
  'aita',
  'edit',
  'updat',
  'sinc',
  'unground',
  'amanda',
  'apologis',
  'told',
  'act',
  'irrat',
  'stress',
  'anger',
  'school',
  'situat',
  'also',
  'told',
  'regard',
  'apolog',
  'second',
  'updat',
  'ad',
  '[',
  'updat',
  'post',
  ']',
  'httpswwwredditcomuserta_aita_badmumcommentsvpcwsupdate_to_my_aita_post'],
 ['singl',
  'woman',
  'earli',
  'make',
  'live',
  'write',
  'self-publish',
  'adult',
  'fiction',
  'adult',
  'fiction',
  'mean',
  'adult',
  'fiction',
  'major',
  '‘',
  'plot',
  'steami',
  'typic',
  'tell',
  'peopl',
  'write',
  'tell',
  'write',
  'book',
  'live',
  'pen',
  'name',
  'question',
  'write',
  'abil',
  'editor',
  'correct',
  'mistak',
  'hide',
  'per',
  'se',
  'tell',
  'everyon',
  'meet',
  'live',
  'none',
  'neighbour',
  'knew',
  'bunch',
  'friend',
  'live',
  'hous',
  'alon',
  'pretti',
  'much',
  'neighbour',
  'either',
  'young',
  'famili',
  'retir',
  'coupl',
  'next',
  'door',
  'neighbour',
  'young',
  'coupl',
  'weve',
  'polit',
  'close',
  'anyth',
  'late',
  'husband',
  'let',
  'call',
  'roger',
  'becam',
  'friendli',
  'toward',
  'tri',
  'ignor',
  'get',
  'flirti',
  'like',
  'start',
  'avoid',
  'bbq',
  'bank',
  'holiday',
  'weekend',
  'take',
  'rubbish',
  'put',
  'bin',
  'roger',
  'look',
  'wave',
  '‘',
  'whisper',
  'someth',
  'friend',
  'watch',
  'care',
  'incred',
  'creepi',
  'way',
  'garden',
  'saw',
  'roger',
  'wife',
  'dalia',
  'leav',
  'hous',
  'friend',
  'look',
  'disgust',
  'whisper',
  'someth',
  'weird',
  'hurri',
  'back',
  'insid',
  'next',
  'morn',
  'found',
  'religi',
  'leaflet',
  'put',
  'letter',
  'box',
  'print',
  'normal',
  'printer',
  'paper',
  'warn',
  'lust',
  'behaviour',
  'lead',
  'hell',
  'etc',
  'threw',
  'away',
  'kept',
  'find',
  'similar',
  'leaflet',
  'put',
  'letter',
  'box',
  'next',
  'week',
  'sinc',
  'work',
  'home',
  'decid',
  'see',
  'leav',
  'leaflet',
  'surpris',
  'dalia',
  'decid',
  'confront',
  'ask',
  'stop',
  'put',
  'religi',
  'leaflet',
  'door',
  'despit',
  'polit',
  'happi',
  'told',
  'rethink',
  'life',
  'write',
  'disgust',
  'pretti',
  'vanilla',
  'found',
  'husband',
  'read',
  'night',
  'imagin',
  'kept',
  'go',
  'go',
  'burn',
  'hell',
  'moral',
  'etc',
  'well',
  'told',
  'stay',
  'away',
  'discuss',
  'husband',
  'close',
  'door',
  'face',
  'know',
  'someon',
  'told',
  'live',
  'day',
  'later',
  'found',
  'word',
  '‘',
  'sl',
  '*',
  'paint',
  'door',
  'day',
  'later',
  'caught',
  'key',
  'car',
  'almost',
  'done',
  'word',
  '‘',
  'wh',
  '*',
  'well',
  'call',
  'polic',
  'sinc',
  'instal',
  'camera',
  '‘',
  'sl',
  '*',
  'incid',
  'taken',
  'court',
  'key',
  'car',
  'talk',
  'neighbour',
  'ask',
  'polic',
  'told',
  'went',
  'overboard',
  'dalia',
  'clearli',
  'insecur',
  'love',
  'woman',
  'great',
  'mother',
  'talk',
  'instead',
  'call',
  'polic',
  'give',
  'chanc',
  'chang',
  'behaviour',
  'aita',
  'call',
  'polic',
  'give',
  'dalia',
  'chanc'],
 ['year',
  'old',
  'daughter',
  'love',
  'frost',
  'everi',
  'week',
  'buy',
  'cupcak',
  'wife',
  'alway',
  'eat',
  'frost',
  'past',
  'week',
  'decid',
  'eat',
  'cupcak',
  'go',
  'insid',
  'ask',
  'cupcak',
  'told',
  'like',
  'cupcak',
  'anymor',
  'bought',
  'two',
  'work',
  'last',
  'night',
  'enjoy',
  'cupcak',
  'go',
  'insid',
  'caught',
  'ran',
  'mom',
  'tell',
  'much',
  'terribl',
  'dad',
  'steal',
  'frost',
  'week',
  'sulk',
  'wife',
  'think',
  'im',
  'ah',
  'im',
  'act',
  'childish',
  'let',
  'easi',
  'say',
  'never',
  'given',
  'frost',
  'aita',
  'edit',
  'everyon',
  'take',
  'serious',
  'lol',
  'daughter',
  'entitl',
  'spoil',
  'brat',
  'honestli',
  'think',
  'even',
  'love',
  'frost',
  'much',
  'annoy',
  'made',
  'post',
  'wife',
  'like',
  'sub',
  'want',
  'show',
  'im',
  'ah',
  'edit',
  'lot',
  'happen',
  'sinc',
  'post',
  'wife',
  'get',
  'divorc',
  'say',
  'cant',
  'live',
  'liar',
  'cp',
  'came',
  'home',
  'take',
  'child',
  'away',
  'said',
  'terribl',
  'parent',
  'let',
  'child',
  'eat',
  'frost',
  'time',
  'got',
  'daughter',
  'home',
  'cop',
  'came',
  'arrest',
  'steal',
  'car',
  'said',
  'frost',
  'thiev',
  'alway',
  'becom',
  'car',
  'thiev',
  'need',
  'wait',
  'go',
  'jail',
  'asap',
  'got',
  'call',
  'said',
  'go',
  'nc',
  'lie',
  'cant',
  'trust',
  'anymor',
  'meanwhil',
  'get',
  'call',
  'friend',
  'tell',
  'us',
  'horror',
  'stori',
  'daughter',
  'bulli',
  'life',
  'ruin',
  'cupcak',
  'nahhh',
  'lol',
  'daughter',
  'seriou',
  'convers',
  'problem',
  'came',
  'agreement',
  'said',
  'shell',
  'stop',
  'steal',
  'frost',
  'stop',
  'steal',
  'chip',
  'good',
  'xd',
  'edit',
  'peopl',
  'clearli',
  'realiz',
  'second',
  'edit',
  'joke',
  'keep',
  'get',
  'happen',
  'fake',
  'messag',
  'yeah',
  'genius',
  'right'],
 ['sister',
  'brought',
  'new',
  'boyfriend',
  'parent',
  'hous',
  'meet',
  'first',
  'time',
  'wife',
  'came',
  'well',
  'met',
  'dude',
  'seem',
  'ok-ish',
  'first',
  'start',
  'ask',
  'weird',
  'person',
  'question',
  'wife',
  'breast',
  'cancer',
  'got',
  'singl',
  'mastectomi',
  'last',
  'year',
  'told',
  'stori',
  'sister',
  'boyfriend',
  'like',
  'oh',
  'stare',
  'wife',
  'briefli',
  'play',
  'said',
  'without',
  'even',
  'ask',
  'pretti',
  'much',
  'tell',
  'one',
  'got',
  'blow',
  'floor',
  'wife',
  'could',
  'bare',
  'keep',
  'straight',
  'face',
  'lie',
  'could',
  'leav',
  'tabl',
  'caus',
  'liter',
  'tear',
  'look',
  'dude',
  'said',
  'seriou',
  'said',
  'joke',
  'bro',
  'start',
  'ask',
  'explain',
  'joke',
  'stare',
  'ask',
  'explain',
  'detail',
  'still',
  'got',
  'answer',
  'sister',
  'ask',
  'stop',
  'clearli',
  'got',
  'uncomfort',
  'insist',
  'explain',
  'joke',
  'caus',
  'clearlymi',
  'wife',
  'get',
  'thing',
  'got',
  'awkward',
  'avoid',
  'eye',
  'contact',
  'stare',
  'entir',
  'time',
  'still',
  'insist',
  'ask',
  'explain',
  'joke',
  'right',
  'second',
  'later',
  'said',
  'need',
  'step',
  'outsid',
  'make',
  'phone',
  'call',
  'turn',
  'got',
  'car',
  'left',
  'sister',
  'meltdown',
  'scream',
  'berat',
  'treat',
  'boyfriend',
  'call',
  'hostl',
  'anger',
  'issu',
  'scare',
  'boyfriend',
  'parent',
  'hous',
  'told',
  'overstep',
  'made',
  'wife',
  'uncomfort',
  'point',
  'cri',
  'actual',
  'call',
  'wife',
  'princess',
  'said',
  'soft',
  'take',
  'teas',
  'argument',
  'parent',
  'interven',
  'took',
  'wife',
  'left',
  'dad',
  'call',
  'later',
  'said',
  'understood',
  'hurt',
  'wife',
  'felt',
  'sister',
  'boyfriend',
  'visit',
  'first',
  'time',
  'show',
  'hostil',
  'agress',
  'instead',
  'ignor',
  'encourag',
  'reach',
  'sister',
  'later',
  'talk',
  'declin',
  'aita',
  'edit',
  'sister',
  'wife',
  'histori',
  'sister',
  'tend',
  'see',
  'worst',
  'peopl',
  'wife',
  'announc',
  'diagnosi',
  'sister',
  'actual',
  'thought',
  'fake',
  'famili',
  'longer',
  'brought',
  'wife',
  'miscarriag',
  'month',
  'prior',
  'thought',
  'line',
  'apolog',
  'move',
  'sister',
  'think',
  'bad',
  'trait',
  'see',
  'boyfriend',
  'smoke',
  'habit',
  'say',
  'thatvotherwis',
  'perfect',
  'smfh'],
 ['im',
  'son',
  'im',
  'divorc',
  'year',
  'ex',
  'remarri',
  'recent',
  'new',
  'husband',
  'jonathan',
  'black',
  'white',
  'ex',
  'expect',
  'babi',
  'togeth',
  'also',
  'teenag',
  'boy',
  'ex',
  'share',
  'custodi',
  'son',
  'spend',
  'time',
  'plase',
  'room',
  'privaci',
  'last',
  'weekend',
  'mom',
  'sunday',
  'call',
  'upset',
  'say',
  'come',
  'pick',
  'rush',
  'found',
  'got',
  'fight',
  'jonathan',
  'chore',
  'jonathan',
  'lock',
  'wifi',
  'ban',
  'video',
  'game',
  'chore',
  'ex',
  'also',
  'disciplin',
  'jonathan',
  'permiss',
  'son',
  'act',
  '-',
  'use',
  'method',
  'use',
  'son',
  'longtermseri',
  'punish',
  'cours',
  'decid',
  'ex',
  'video',
  'game',
  'today',
  'type',
  'thing',
  'total',
  'fine',
  'jonathan',
  'ex',
  'jonathan',
  'told',
  'son',
  'got',
  'upset',
  'punish',
  'told',
  'jonathan',
  '*',
  'ck',
  'jonathan',
  'told',
  'stop',
  'talk',
  'like',
  'son',
  'repli',
  'son',
  'ruin',
  'life',
  'get',
  'tell',
  'want',
  'take',
  'order',
  'anyway',
  'ask',
  'son',
  'true',
  'said',
  'ye',
  'actual',
  'call',
  'word',
  'well',
  'true',
  'lost',
  'told',
  'son',
  'ground',
  'whole',
  'month',
  'decemb',
  'ex',
  'agre',
  'obvious',
  'annoy',
  'angri',
  'ton',
  'plan',
  'friend',
  'said',
  'overreact',
  'one',
  'word',
  'unfair',
  'brother',
  'mom',
  'agre',
  'son',
  'say',
  'punish',
  'fit',
  'crime',
  'aita'],
 ['im',
  'son',
  'graduat',
  'year',
  'highschool',
  'wife',
  'start',
  'colleg',
  'fund',
  'minut',
  'found',
  'pregnant',
  'sinc',
  'make',
  'good',
  'money',
  'mid',
  'figur',
  'colleg',
  'fund',
  'current',
  'almost',
  '$',
  'never',
  'told',
  'son',
  'life',
  'may',
  'guid',
  'decis',
  'good',
  'parent',
  'sinc',
  'still',
  'young',
  'let',
  'make',
  'decis',
  'also',
  'never',
  'expect',
  'academ',
  'excel',
  'forc',
  'sport',
  'artist',
  'activ',
  'graduat',
  'highschool',
  'said',
  'want',
  'go',
  'colleg',
  'said',
  'long',
  'sure',
  'could',
  'whatev',
  'want',
  'refus',
  'trade',
  'school',
  'also',
  'want',
  'work',
  'us',
  'busi',
  'said',
  'plan',
  'use',
  'colleg',
  'fund',
  'start',
  'busi',
  'said',
  'allow',
  'take',
  'busi',
  'manag',
  'account',
  'law',
  'class',
  'nearbi',
  'commun',
  'colleg',
  'said',
  'would',
  'pay',
  'pocket',
  'fund',
  'would',
  'expect',
  'well',
  'made',
  'busi',
  'plan',
  'would',
  'give',
  'money',
  'wife',
  'agre',
  '%',
  'call',
  'us',
  'ah',
  'hold',
  'colleg',
  'fund',
  'hostag',
  'make',
  'want',
  'think',
  'best',
  'make',
  'sure',
  'busi',
  'succe',
  'aita',
  'edit',
  'oh',
  'wow',
  'log',
  'minut',
  'post',
  'log',
  'back',
  'expect',
  'mayb',
  'comment',
  'thank',
  'everyon',
  'read',
  'everi',
  'singl',
  'one',
  'decid',
  'answer',
  'relev',
  'question',
  'money',
  'wife',
  'name',
  'peopl',
  'said',
  'discuss',
  'earlier',
  'well',
  'earlier',
  'said',
  'want',
  'take',
  'coupl',
  'year',
  'work',
  'go',
  'colleg',
  'earlier',
  'last',
  'week',
  'said',
  'want',
  'start',
  'busi',
  'peopl',
  'also',
  'say',
  'spoil',
  'know',
  'fast',
  'money',
  'disappear',
  'right',
  'ran',
  'away',
  'abus',
  'home',
  'work',
  'fil',
  'got',
  'paid',
  'tabl',
  'abl',
  'work',
  'legal',
  'reason',
  'money',
  'marri',
  'boss',
  'daughter',
  'father',
  'left',
  'us',
  'paid',
  'hous',
  'boom',
  'busi',
  'move',
  'spain',
  'enjoy',
  'retir',
  'even',
  'get',
  'ged',
  'go',
  'colleg',
  'kid',
  'spoil',
  'kid',
  'like',
  'wish',
  'spoil',
  'also',
  'reason',
  'ask',
  'live',
  'fear',
  'someth',
  'could',
  'make',
  'like',
  'parent',
  'know',
  'commun',
  'full',
  'younger',
  'peopl',
  'might',
  'give',
  'differ',
  'perspect',
  'thank',
  'everyon'],
 ['live',
  'real',
  'estat',
  'develop',
  'start',
  'snatch',
  'famili',
  'home',
  'bulldoz',
  'build',
  'enorm',
  'million',
  'dollar',
  'hous',
  'plot',
  'land',
  'hous',
  'also',
  'stick',
  'horribl',
  'term',
  'aesthet',
  '–',
  'think',
  'singl',
  'level',
  'brick',
  'home',
  '-level',
  'gigant',
  'white',
  'black',
  'box',
  'middl',
  'home',
  'famili',
  'sever',
  'gener',
  'alway',
  'known',
  'larg',
  'beauti',
  'garden',
  'invit',
  'kid',
  'help',
  'garden',
  'gave',
  'away',
  'mani',
  'veggi',
  'wed',
  'hold',
  'parti',
  'etc',
  'neighborhood',
  'treasur',
  'year',
  'develop',
  'snatch',
  'lot',
  'next',
  'door',
  'bulldoz',
  'erect',
  'enorm',
  'hous',
  'block',
  'light',
  'garden',
  'mani',
  'us',
  'tri',
  'fight',
  'citi',
  'everyth',
  'deni',
  'heartbreak',
  'neighborhood',
  'chang',
  'forev',
  'link',
  'famili',
  'almost',
  'go',
  'griev',
  'process',
  'new',
  'owner',
  'move',
  'welcom',
  'warmli',
  'peopl',
  'neighborhood',
  'avoid',
  'long',
  'could',
  'polit',
  'wave',
  'nod',
  'young',
  'coupl',
  'earli',
  'final',
  'came',
  'face',
  'face',
  'woman',
  'ask',
  'could',
  'chat',
  'said',
  'felt',
  'like',
  'mayb',
  'theyd',
  'done',
  'someth',
  'wrong',
  'move',
  'pull',
  'trash',
  'bin',
  'someth',
  'loud',
  'etc',
  'peopl',
  'friendli',
  'guy',
  'say',
  'surpris',
  'consid',
  'felt',
  'like',
  'nice',
  'somewhat',
  'affluent',
  'neighborhood',
  'given',
  'price',
  'expect',
  'friendli',
  'neighbor',
  'ask',
  'done',
  'research',
  'area',
  'said',
  'move',
  'california',
  'said',
  'mayb',
  'mistak',
  'said',
  'know',
  'meant',
  'ask',
  'theyd',
  'ever',
  'look',
  'backyard',
  'said',
  'ye',
  'said',
  'think',
  'garden',
  'cute',
  'said',
  'ye',
  'garden',
  'half',
  'less',
  'sunlight',
  'hous',
  'built',
  'neighborhood',
  'treasur',
  'guy',
  'said',
  'well',
  'fault',
  'built',
  'garden',
  'said',
  'well',
  'guy',
  'got',
  'paid',
  'million',
  'dollar',
  'hous',
  'everyon',
  'neighborhood',
  'hate',
  'said',
  'hope',
  'worth',
  'wish',
  'nice',
  'day',
  'told',
  'anoth',
  'neighbor',
  'exchang',
  'told',
  'feel',
  'bad',
  'move',
  'without',
  'idea',
  'get',
  'aita',
  'tell',
  'got',
  'paid'],
 ['im',
  'gon',
  'na',
  'keep',
  'short',
  'get',
  'marri',
  'fianc',
  'next',
  'month',
  'weve',
  'issu',
  'wed',
  'plan',
  'except',
  'guest',
  'list',
  'context',
  'larg',
  'famili',
  'stepsist',
  'biolog',
  'brother',
  'also',
  'biolog',
  'sister',
  'fianc',
  'argu',
  'guest',
  'list',
  'cut',
  'short',
  'suggest',
  'invit',
  'immedit',
  'famili',
  'ask',
  'elabor',
  'suggest',
  'exclud',
  'stepsist',
  'said',
  'got',
  'upset',
  'impli',
  'theyr',
  'famili',
  'said',
  'well',
  'meanti',
  'speak',
  'technic',
  'angl',
  'especi',
  'sinc',
  'includ',
  'wed',
  'parti',
  'like',
  'moh',
  'bridesmaid',
  'thought',
  'unneed',
  'said',
  'want',
  'alway',
  'want',
  'includ',
  'well',
  'day',
  'ago',
  'stepsist',
  'call',
  'say',
  'fiancé',
  'cancel',
  'invit',
  'told',
  'lie',
  'chang',
  'wed',
  'locat',
  'tell',
  'abl',
  'come',
  'fume',
  'went',
  'home',
  'start',
  'scream',
  'ask',
  'hear',
  'explain',
  'choic',
  'sinc',
  'requir',
  'shorten',
  'list',
  'dirti',
  'work',
  'sinc',
  'obvious',
  'look',
  'situat',
  'emot',
  'angl',
  'bring',
  'disinvit',
  'stepsist',
  'call',
  'hypocrit',
  'caus',
  'invit',
  'almost',
  'friend',
  'far',
  'know',
  'immedi',
  'famili',
  'told',
  'hurt',
  'stepsist',
  'go',
  'behind',
  'back',
  'exclud',
  'wed',
  'theyv',
  'excit',
  'got',
  'couch',
  'yell',
  'wed',
  'stepsist',
  'feel',
  'realli',
  'relev',
  'compar',
  'call',
  'control',
  'want',
  'way',
  'highway',
  'took',
  'phone',
  'amd',
  'storm',
  'see',
  'friend',
  'friend',
  'call',
  'scold',
  'im',
  'treat',
  'brother',
  'went',
  'rude',
  'suggestthat',
  'brother',
  'disinvit',
  'wed',
  'like',
  'call',
  'problem',
  'fmil',
  'call',
  'want',
  'sleak',
  'probabl',
  'told',
  'go',
  'probabl',
  'go',
  'ask',
  'apolog',
  'yell'],
 ['im',
  'littl',
  'sister',
  'dad',
  'die',
  'year',
  'ago',
  'sudden',
  'devast',
  'one',
  'day',
  'kiss',
  'hug',
  'si',
  'told',
  'us',
  'love',
  'us',
  'never',
  'heard',
  'time',
  'fulli',
  'grasp',
  'chose',
  'stay',
  'away',
  'even',
  'though',
  'mom',
  'tri',
  'explain',
  'us',
  'miss',
  'thought',
  'someth',
  'wrong',
  'make',
  'dad',
  'mad',
  'repeatedli',
  'call',
  'phone',
  'hope',
  'would',
  'answer',
  'alway',
  'went',
  'directli',
  'voicemail',
  'funer',
  'realiz',
  'would',
  'never',
  'see',
  'broke',
  'rememb',
  'much',
  'day',
  'except',
  'uncl',
  'david',
  'held',
  'entir',
  'time',
  'held',
  'throughout',
  'funer',
  'drive',
  'home',
  'fell',
  'asleep',
  'night',
  'uncl',
  'alan',
  'thing',
  'si',
  'easi',
  'grow',
  'mom',
  'si',
  'tough',
  'could',
  'two',
  'uncl',
  'alway',
  'phone',
  'call',
  'away',
  'whenev',
  'need',
  'help',
  'school',
  'one',
  'uncl',
  'tutor',
  'us',
  'one',
  'alway',
  'front',
  'row',
  'everi',
  'school',
  'perform',
  'game',
  'whenev',
  'wake',
  'middl',
  'night',
  'miss',
  'dad',
  'ill',
  'call',
  'uncl',
  'david',
  'know',
  'hell',
  'alway',
  'pick',
  'mom',
  'eventu',
  'remarri',
  'bob',
  'never',
  'like',
  'bob',
  'alway',
  'control',
  'place',
  'us',
  'strict',
  'schedul',
  'dinner',
  'everyday',
  'matter',
  'came',
  'home',
  'late',
  'dinner',
  'allow',
  'eat',
  'night',
  'whenev',
  'uncl',
  'gave',
  'si',
  'money',
  'give',
  'bob',
  'divid',
  'money',
  'equal',
  'coupl',
  'month',
  'ago',
  'si',
  'eat',
  'uncl',
  'david',
  'famili',
  'dinner',
  'convers',
  'eventu',
  'led',
  'want',
  'go',
  'colleg',
  'pay',
  'uncl',
  'david',
  'told',
  'uncl',
  'decid',
  'long',
  'ago',
  'go',
  'pay',
  'siss',
  'tuition',
  'cost',
  'live',
  'campu',
  'cri',
  'heard',
  'laugh',
  'jokingli',
  'said',
  'hope',
  'get',
  'medic',
  'school',
  'go',
  'cost',
  'fortun',
  'went',
  'home',
  'excitedli',
  'told',
  'mom',
  'bob',
  'uncl',
  'go',
  'pay',
  'colleg',
  'instead',
  'happi',
  'look',
  'furiou',
  'bob',
  'start',
  'scream',
  'unfair',
  'step',
  'sibl',
  'half',
  'sister',
  'get',
  'free',
  'ride',
  'colleg',
  'want',
  'tell',
  'uncl',
  'divid',
  'colleg',
  'fund',
  'equal',
  'among',
  'kid',
  'refus',
  'next',
  'day',
  'kept',
  'scream',
  'us',
  'si',
  'pack',
  'bag',
  'go',
  'uncl',
  'david',
  'hous',
  'kept',
  'scream',
  'even',
  'follow',
  'us',
  'car',
  'si',
  'live',
  'uncl',
  'david',
  'famili',
  'ever',
  'sinc',
  'feel',
  'like',
  'home',
  'ever',
  'hous',
  'mom',
  'ask',
  'us',
  'come',
  'home',
  'christma',
  'month',
  'ive',
  'refus',
  'today',
  'th',
  'call',
  'morn',
  'cri',
  'say',
  'need',
  'spend',
  'christma',
  'famili',
  'wrong',
  'spend',
  'christma',
  'mom'],
 ['unemploy',
  'god',
  'know',
  'look',
  'job',
  'im',
  'sale',
  'rep',
  'well',
  'month',
  'right',
  'recov',
  'knee',
  'surgeri',
  'husband',
  'high',
  'pay',
  'job',
  'first',
  'suggest',
  'leav',
  'career',
  'sale',
  'rep',
  'behind',
  '[',
  'wealthi',
  'famili',
  'standard',
  'theyd',
  'mock',
  'lot',
  ']',
  'stay',
  'home',
  'refus',
  'love',
  'job',
  'want',
  'grow',
  'suggest',
  'find',
  'better',
  'job',
  'sinc',
  'connect',
  'field',
  'ive',
  'sever',
  'job',
  'interview',
  'husband',
  'ruin',
  'hed',
  'walk',
  'room',
  'whenev',
  'im',
  'potenti',
  'job',
  'interview',
  'introduc',
  'take',
  'convers',
  'interview',
  'hed',
  'tell',
  'good',
  'slip',
  'bad',
  'stuff',
  'eventu',
  'cost',
  'job',
  'argument',
  'make',
  'recommand',
  'sinc',
  'connect',
  'influenc',
  'told',
  'stop',
  'let',
  'handl',
  'sulk',
  'say',
  'tri',
  'guid',
  'whatnot',
  'sever',
  'day',
  'ago',
  'id',
  'gotten',
  'job',
  'interview',
  'get',
  'insid',
  'room',
  'interview',
  'start',
  'lock',
  'door',
  'husband',
  'tri',
  'come',
  'start',
  'knock',
  'door',
  'ask',
  'lock',
  'door',
  'tell',
  'let',
  'put',
  'headphon',
  'use',
  'nois',
  'cancel',
  'kept',
  'knock',
  'tell',
  'open',
  'door',
  'interview',
  'unlock',
  'door',
  'walk',
  'went',
  'call',
  'disrespect',
  'aw',
  'lock',
  'like',
  'said',
  'sorri',
  'want',
  'work',
  'compani',
  'badli',
  'let',
  'ruin',
  'got',
  'offend',
  'said',
  'petti',
  'childish',
  'also',
  'ungrat',
  'stunt',
  'pull',
  'said',
  'tri',
  'help',
  'get',
  'best',
  'deal',
  'said',
  'im',
  'child',
  'said',
  'ye',
  'especi',
  'behav',
  'exclud',
  'interview'],
 ['husband',
  'tri',
  'kid',
  'year',
  'ive',
  'seri',
  'mc',
  'singl',
  'pregnanc',
  'success',
  'recent',
  'mc',
  'month',
  'ago',
  'although',
  'husband',
  'never',
  'said',
  'anyth',
  'tri',
  'time',
  'person',
  'tension',
  'emot',
  'overwhelm',
  'ive',
  'becom',
  'sensit',
  'even',
  'mention',
  'topic',
  'took',
  'famili',
  'hous',
  'dinner',
  'last',
  'night',
  'mc',
  'brought',
  'mom',
  'look',
  'disappoint',
  'face',
  'made',
  'lose',
  'appetit',
  'complet',
  'went',
  'may',
  'caus',
  'husband',
  'chime',
  'said',
  'start',
  'come',
  'conclus',
  'mayb',
  'im',
  'incap',
  'mom',
  'floor',
  'two',
  'reason',
  'one',
  'hed',
  'even',
  'say',
  'thing',
  'two',
  'doctor',
  'told',
  'someth',
  'wrong',
  'specif',
  'declar',
  'incap',
  'bear',
  'children',
  'mom',
  'hurt',
  'like',
  'sting',
  'look',
  'like',
  'told',
  'get',
  'offend',
  'sinc',
  'honest',
  'said',
  'love',
  'think',
  'im',
  'perfect',
  'still',
  'think',
  'im',
  'flaw',
  'area',
  'refer',
  'motherhood',
  'point',
  'got',
  'seat',
  'took',
  'stuff',
  'head',
  'door',
  'said',
  'noth',
  'made',
  'way',
  'shout',
  'stop',
  'went',
  'home',
  'came',
  'start',
  'unload',
  'immatur',
  'sensit',
  'ridicul',
  'said',
  'give',
  'honest',
  'opinion',
  'matter',
  'right',
  'polic',
  'word',
  'come',
  'mouth',
  'whether',
  'like',
  'im',
  'hear',
  'still',
  '*',
  'truth',
  '*',
  'argu',
  'stop',
  'talk',
  'altogeth',
  'keep',
  'say',
  'exagger',
  'walk',
  'dinner',
  'disrespect',
  'famili',
  'liter',
  'noth',
  'im',
  'unsur',
  'handl',
  'right',
  'way',
  'yet',
  'act',
  'emot'],
 ['ex',
  'husband',
  'togeth',
  'year',
  'beauti',
  'daughter',
  'togeth',
  'jocelin',
  'got',
  'divorc',
  'year',
  'ago',
  'due',
  'infidel',
  'part',
  'devast',
  'love',
  'life',
  'betray',
  'trust',
  'loyalti',
  'built',
  'make',
  'matter',
  'wors',
  'end',
  'relationship',
  'woman',
  'cheat',
  'got',
  'engag',
  'one',
  'year',
  'later',
  'set',
  'marri',
  'two',
  'week',
  'honestli',
  'still',
  'heartbroken',
  'divorc',
  'hurt',
  'togeth',
  'year',
  'could',
  'go',
  'fall',
  'love',
  'someon',
  'els',
  'noth',
  'howev',
  'jocelin',
  'divorc',
  'great',
  'father',
  'would',
  'never',
  'want',
  'come',
  'bond',
  'jocelin',
  'love',
  'fiancé',
  'sweet',
  'know',
  'reason',
  'dad',
  'divorc',
  'want',
  'tell',
  'bit',
  'older',
  'want',
  'tell',
  'anyway',
  'compromis',
  'jocelin',
  'could',
  'come',
  'wed',
  'would',
  'provid',
  'transport',
  'wed',
  'want',
  'part',
  'want',
  'drop',
  'daughter',
  'wed',
  'want',
  'see',
  'decor',
  'happi',
  'guest',
  'itd',
  'much',
  'tell',
  'obvious',
  'agre',
  'today',
  'call',
  'ask',
  'ask',
  'huge',
  'favor',
  'turn',
  'futur',
  'law',
  'fli',
  'morn',
  'wed',
  'go',
  'pick',
  'therefor',
  'cant',
  'pick',
  'daughter',
  'day',
  'want',
  'ask',
  'could',
  'take',
  'said',
  'absolut',
  'ask',
  'cant',
  'pick',
  'day',
  'get',
  'school',
  'said',
  'want',
  'make',
  'drive',
  'twice',
  'like',
  'time',
  'prepar',
  'rehears',
  'dinner',
  'ask',
  'cant',
  'bride',
  'pick',
  'parent',
  'said',
  'shell',
  'get',
  'hair',
  'done',
  'abl',
  'laugh',
  'told',
  'way',
  'id',
  'take',
  'daughter',
  'hed',
  'figur',
  'boy',
  'say',
  'daughter',
  'ran',
  'downstair',
  'cri',
  'face',
  'beet',
  'red',
  'minut',
  'convers',
  'dad',
  'call',
  'terribl',
  'accus',
  'want',
  'spend',
  'time',
  'dad',
  'told',
  'case',
  'demand',
  'know',
  'take',
  'give',
  'answer',
  'ran',
  'upstair',
  'cri',
  'im',
  'get',
  'messag',
  'famili',
  'call',
  'heartless',
  'cold',
  'bitch',
  'tri',
  'ruin',
  'special',
  'day',
  'relationship',
  'long',
  'famili',
  'understand',
  'point',
  'view',
  'feel',
  'terribl',
  'ive',
  'upset',
  'daughter',
  'know',
  'aita',
  'put',
  'asid',
  'feel',
  'take'],
 ['girl',
  'nicol',
  'start',
  'go',
  'school',
  'winter',
  'break',
  'littl',
  'weird',
  'tbh',
  'talk',
  'lot',
  'talk',
  'quiet',
  'bare',
  'hear',
  'use',
  'eat',
  'car',
  'one',
  'friend',
  'felt',
  'bad',
  'invit',
  'eat',
  'us',
  'notic',
  'lunch',
  'littl',
  'piec',
  'paper',
  'shed',
  'read',
  'smile',
  'like',
  'second',
  'fold',
  'put',
  'pocket',
  'lunchbox',
  'sometim',
  'shed',
  'take',
  'read',
  'coupl',
  'time',
  'lunch',
  'eventu',
  'ask',
  'said',
  'nanni',
  'write',
  'note',
  'everi',
  'day',
  'ask',
  'think',
  'littl',
  'embarrass',
  'know',
  'anyon',
  'note',
  'lunch',
  'past',
  'th',
  'grade',
  'got',
  'kinda',
  'defens',
  'said',
  'nanni',
  'similar',
  'thing',
  'sibl',
  'preschool',
  'elementari',
  'school',
  'kinda',
  'prove',
  'point',
  'start',
  'eat',
  'car',
  'one',
  'friend',
  'got',
  'mad',
  'appar',
  'realli',
  'bad',
  'home',
  'life',
  'move',
  'never',
  'anyon',
  'stuff',
  'idk',
  'tf',
  'expect',
  'know',
  'consid',
  'usual',
  'talk',
  'school',
  'start',
  'drama',
  'friend',
  'group',
  'want',
  'know',
  'asshol'],
 ['husband',
  'sister',
  'move',
  'us',
  'major',
  'argument',
  'babi',
  'name',
  'theyr',
  'expect',
  'month',
  'known',
  'picki',
  'refus',
  'eat',
  'normal',
  'cook',
  'cook',
  'favorit',
  'food',
  'cant',
  'eat',
  'allergi',
  'yay',
  'everyday',
  'dinner',
  'figur',
  'eat',
  'sinc',
  'eat',
  'food',
  'im',
  'allerg',
  'last',
  'night',
  'husband',
  'agre',
  'hed',
  'cook',
  'cook',
  'us',
  'togeth',
  'seper',
  'got',
  'home',
  'long',
  'day',
  'work',
  'found',
  'sil',
  'convinc',
  'husband',
  'cook',
  'meal',
  'want',
  'cancel',
  'meal',
  'plan',
  'saw',
  'eat',
  'togeth',
  'kitchen',
  'husband',
  'apologit',
  'said',
  'sister',
  'convinc',
  'eat',
  'cook',
  'meal',
  'want',
  'us',
  'said',
  'fine',
  'went',
  'order',
  'food',
  'restaur',
  'went',
  'take',
  'shower',
  'work',
  'laptop',
  'came',
  'downstair',
  'find',
  'order',
  'place',
  'kitchen',
  'counter',
  'open',
  'someon',
  'ate',
  'major',
  'turn',
  'around',
  'sil',
  'stand',
  'say',
  'woke',
  'hungri',
  'resist',
  'smell',
  'come',
  'box',
  'lost',
  'yell',
  'ask',
  'wtf',
  'said',
  'save',
  'true',
  'rice',
  'dress',
  'start',
  'argu',
  'told',
  'take',
  'anymor',
  'told',
  'pack',
  'shit',
  'leav',
  'first',
  'thing',
  'morn',
  'began',
  'cri',
  'husband',
  'got',
  'involv',
  'defend',
  'repeatedli',
  'say',
  'pregnant',
  'eat',
  'basic',
  'suggest',
  'go',
  'make',
  'someth',
  'quick',
  'fridg',
  'let',
  'go',
  'refus',
  'bigger',
  'argument',
  'ensu',
  'aita',
  'kick'],
 ['son',
  'indian',
  'friend',
  'white',
  'son',
  'brought',
  'friend',
  'school',
  'bu',
  'messag',
  'mom',
  'ask',
  'okay',
  'late',
  'stay',
  'ask',
  'could',
  'stay',
  'serv',
  'dinner',
  'around',
  'would',
  'eat',
  'us',
  'cook',
  'lot',
  'indian',
  'cuisin',
  'hous',
  'grew',
  'make',
  'son',
  'told',
  'friend',
  'picki',
  'ask',
  'could',
  'make',
  'someth',
  'els',
  'keep',
  'fri',
  'chicken',
  'nugget',
  'son',
  'picki',
  'friend',
  'sit',
  'eat',
  'son',
  'friend',
  'seem',
  'happi',
  'nugget',
  'go',
  'play',
  'dinner',
  'boy',
  'mom',
  'pick',
  'littl',
  'get',
  'text',
  'later',
  'ask',
  'fed',
  'son',
  'frozen',
  'food',
  'cook',
  'fresh',
  'dinner',
  'everyon',
  'els',
  'told',
  'son',
  'said',
  'boy',
  'eat',
  'make',
  'said',
  'made',
  'someth',
  'also',
  'instead',
  'get',
  'freezer',
  'food',
  'told',
  'provid',
  'free',
  'childcar',
  'without',
  'notic',
  'kid',
  'chose',
  'eat',
  'everyon',
  'els',
  'ate',
  'continu',
  'child',
  'mom',
  'offer',
  'anyon',
  'altern',
  'made',
  'lucki',
  'accommod',
  'told',
  'let',
  'son',
  'stay',
  'child',
  'abus',
  'anymor'],
 ['got',
  'marri',
  'last',
  'week',
  'wife',
  'thirti',
  'mexican',
  'american',
  'grew',
  'us',
  'famili',
  'know',
  'languag',
  'wife',
  'plan',
  'everi',
  'bit',
  'wed',
  'control',
  'nervou',
  'bride',
  'alright',
  'get',
  'stress',
  'recept',
  'went',
  'band',
  'ask',
  'play',
  'song',
  'sing',
  'new',
  'wife',
  'te',
  'amar',
  'miguel',
  'bose',
  'song',
  'first',
  'date',
  'realli',
  'bad',
  'mexican',
  'restaur',
  'becam',
  'long',
  'stand',
  'joke',
  'us',
  'guest',
  'realli',
  'love',
  'song',
  'mil',
  'cri',
  'told',
  'beauti',
  'bride',
  'seem',
  'upset',
  'ask',
  'wrong',
  'said',
  'ah',
  'take',
  'spotlight',
  'enforc',
  'ethnic',
  'let',
  'band',
  'sing',
  'song',
  'us',
  'aita'],
 ['sophomor',
  'colleg',
  'friend',
  'tia',
  'high',
  'school',
  'appli',
  'colleg',
  'scholarship',
  'help',
  'throughout',
  'colleg',
  'process',
  'end',
  'get',
  'earli',
  'action',
  'top',
  'colleg',
  'got',
  'full',
  'scholarship',
  'happi',
  'recent',
  'talk',
  'mutual',
  'friend',
  'start',
  'gush',
  'tia',
  'essay',
  'heartfelt',
  'beauti',
  'ask',
  'see',
  'thought',
  'forgotten',
  'show',
  'show',
  'mani',
  'essay',
  'draft',
  'read',
  'complet',
  'taken',
  'aback',
  'essay',
  'one',
  'colleg',
  'essay',
  'draft',
  'id',
  'shown',
  'tia',
  'refer',
  'write',
  'techniqu',
  'made',
  'clear',
  'livid',
  'essay',
  'realli',
  'person',
  'bare',
  'even',
  'tweak',
  'almost',
  'entir',
  'copi',
  'past',
  'trust',
  'fit',
  'rage',
  'gather',
  'evid',
  'help',
  'colleg',
  'process',
  'includ',
  'evid',
  'send',
  'specif',
  'essay',
  'show',
  'school',
  'lost',
  'scholarship',
  'also',
  'lost',
  'seat',
  'school',
  'peopl',
  'call',
  'dramat',
  'shame',
  'rob',
  'educ',
  'person',
  'famili',
  'get',
  'colleg',
  'receiv',
  'academ',
  'athlet',
  'scholarship',
  'everyon',
  'root',
  'includ',
  'one',
  'time',
  'expect',
  'outcom',
  'sever',
  'right',
  'feel',
  'bad',
  'feel',
  'terribl',
  'feel',
  'like',
  'took',
  'advantag',
  'want',
  'caus',
  'someth',
  'horribl',
  'justic',
  'cost',
  'someon',
  'dream',
  'im',
  'wonder',
  'justifi',
  'aita',
  '*',
  '*',
  '*',
  'edit',
  '*',
  '*',
  '*',
  'first',
  'thank',
  'everyon',
  'offer',
  'kind',
  'word',
  'reassur',
  'support',
  'obvious',
  'repli',
  'everyon',
  'go',
  'comment',
  'guy',
  'help',
  'realiz',
  'wrong',
  '❤️',
  'nasti',
  'yta',
  'comment',
  'guy',
  'also',
  'help',
  'realiz',
  'wrong\U0001faf6🏼',
  'someon',
  'said',
  'hope',
  'tia',
  'apologist',
  'work',
  'doctor',
  'cheat',
  'throughout',
  'medic',
  'school',
  'hous',
  'work',
  'cheat',
  'electrician',
  '😂',
  'secondli',
  'expect',
  'post',
  'blow',
  'much',
  'lol',
  'went',
  'bed',
  'soon',
  'post',
  'thought',
  'id',
  'wake',
  '-',
  'repli',
  'somehow',
  'im',
  'front',
  'page',
  'crazi',
  'stuff'],
 ['hello',
  'everyon',
  'pleas',
  'excus',
  'grammar',
  'english',
  'th',
  'languag',
  '%',
  'self',
  'taught',
  'also',
  'long',
  'post',
  'sister',
  'twin',
  'come',
  'cultur',
  'arrang',
  'marriag',
  'option',
  'india',
  'mostli',
  'blind',
  'date',
  'set',
  'matchmak',
  'compat',
  'marri',
  'graduat',
  'highschool',
  'sister',
  'valedictorian',
  'btw',
  'chose',
  'attend',
  'colleg',
  'ask',
  'arrang',
  'marriag',
  'sinc',
  'want',
  'wife',
  'mother',
  'noth',
  'wrong',
  'parent',
  'love',
  'match',
  'tri',
  'convinc',
  'least',
  'get',
  'bachelor',
  'refus',
  'hand',
  'start',
  'attend',
  'engin',
  'colleg',
  'comput',
  'engin',
  'year',
  'later',
  'marri',
  'man',
  'met',
  'matchmak',
  'nice',
  'man',
  'teacher',
  'treat',
  'sister',
  'like',
  'queen',
  'thing',
  'freshli',
  'hire',
  'teacher',
  'sister',
  'went',
  'live',
  'doubl',
  'incom',
  'hous',
  'parent',
  'high',
  'earner',
  'doctor',
  'lawyer',
  'singl',
  'incom',
  'hous',
  'teacher',
  'salari',
  'graduat',
  'start',
  'work',
  'cyber',
  'secur',
  'personnel',
  'big',
  'bank',
  'year',
  'date',
  'around',
  'ask',
  'arrang',
  'marriag',
  'husband',
  'busi',
  'owner',
  'real',
  'estat',
  'develop',
  'make',
  'lot',
  'also',
  'come',
  'money',
  'sister',
  'like',
  'get',
  'go',
  'even',
  'threw',
  'tantrum',
  'thank',
  'privat',
  'wed',
  'appar',
  'bride',
  'gift',
  'brought',
  'tacki',
  'like',
  'expens',
  'yer',
  'husband',
  'could',
  'get',
  'problem',
  'first',
  'child',
  'age',
  'start',
  'pre-school',
  'sign',
  'privat',
  'school',
  'monthli',
  'tuition',
  'husband',
  'make',
  'heard',
  'explod',
  'rant',
  'fair',
  'kid',
  'equal',
  'opportun',
  'reason',
  'could',
  'live',
  'like',
  'parent',
  'chose',
  'better',
  'husband',
  'becam',
  'angri',
  'treat',
  'unfair',
  'husband',
  'parent',
  'laid',
  'truth',
  'told',
  'got',
  'match',
  'better',
  'husband',
  'colleg',
  'educ',
  'woman',
  'respect',
  'job',
  'wealthi',
  'men',
  'use',
  'matchmak',
  'want',
  'year',
  'old',
  'highschool',
  'graduat',
  'standard',
  'higher',
  'told',
  'husband',
  'wonder',
  'man',
  'love',
  'want',
  'wealthi',
  'man',
  'gone',
  'colleg',
  'nc',
  'say',
  'elitist',
  'ah',
  'aita'],
 ['stillbirth',
  'week',
  'ago',
  'sister',
  'gave',
  'birth',
  'healthi',
  'babi',
  'boy',
  'week',
  'ago',
  'stillbirth',
  'produc',
  'milk',
  'pump',
  'sister',
  'breastfe',
  'son',
  'born',
  'formula',
  'shortag',
  'aw',
  'liter',
  'throw',
  'milk',
  'away',
  'offer',
  'sister',
  'gladli',
  'accept',
  'advis',
  'doctor',
  'pump',
  'week',
  'stillbirth',
  'prevent',
  'problem',
  'stop',
  'otherwis',
  'id',
  'keep',
  'produc',
  'milk',
  'due',
  'formula',
  'shortag',
  'pump',
  'week',
  'give',
  'milk',
  'sister',
  'formula',
  'stock',
  'abl',
  'go',
  'buy',
  'told',
  'ill',
  'stop',
  'pump',
  'told',
  'son',
  'stomach',
  'problem',
  'formula',
  'ask',
  'keep',
  'pump',
  'told',
  'emot',
  'handl',
  'longer',
  'said',
  'selfish',
  'alreadi',
  'feed',
  'son',
  'bottl',
  'first',
  'suggest',
  'id',
  'nurs',
  'daili',
  'feed',
  'least',
  '-',
  'live',
  'next',
  'door',
  'refus',
  'told',
  'im',
  'sorri',
  'pump',
  'day',
  'put',
  'freezer',
  'back',
  'find',
  'better',
  'formula',
  'son',
  'said',
  'breast',
  'milk',
  'healthiest',
  'help',
  'call',
  'selfish',
  'ah',
  'said',
  'embodi',
  'miseri',
  'love',
  'compani',
  'mother',
  'feel',
  'help',
  'sister',
  'husband',
  'said',
  'sister',
  'way',
  'line',
  'feel',
  'realli',
  'aw',
  'could',
  'still',
  'help',
  'know',
  'need',
  'edit',
  'want',
  'thank',
  'support',
  '❤',
  'thank',
  'much',
  'respond',
  'everi',
  'singl',
  'messag',
  'grate'],
 ['aita',
  'hello',
  'give',
  'context',
  'marri',
  'husband',
  'month',
  'children',
  'two',
  'differ',
  'uninvolv',
  'mother',
  'live',
  'us',
  'full',
  'time',
  'kid',
  'yo',
  'yo',
  'work',
  'long',
  'hour',
  'demand',
  'job',
  'time',
  'wise',
  'husband',
  'think',
  'wfh',
  'paus',
  'whenev',
  'untru',
  'hed',
  'ask',
  'thing',
  'kid',
  'work',
  'hour',
  'told',
  'im',
  'work',
  'unavail',
  'hour',
  'kid',
  'responsibilti',
  'til',
  'im',
  'done',
  'yesterday',
  'told',
  'want',
  'go',
  'attend',
  'friend',
  'engag',
  'dinner',
  'ask',
  'could',
  'take',
  'time',
  'work',
  'make',
  'kid',
  'dinner',
  'told',
  'absolut',
  'insist',
  'cook',
  'order',
  'takeout',
  'said',
  'time',
  'cook',
  'takeout',
  'tabl',
  'sinc',
  'want',
  'eat',
  'fast',
  'food',
  'later',
  'said',
  'fine',
  'go',
  'cook',
  'dinner',
  'go',
  'parti',
  'hr',
  'later',
  'kid',
  'came',
  'said',
  'hungri',
  'puzzl',
  'ask',
  'dad',
  'cook',
  'dinner',
  'said',
  'moreov',
  'told',
  'come',
  'ask',
  'cook',
  'exactli',
  'pm',
  'piss',
  'find',
  'situat',
  'took',
  'minut',
  'meet',
  'order',
  'takeout',
  'nearbi',
  'restaur',
  'fed',
  'kid',
  'watch',
  'tv',
  'go',
  'sleep',
  'came',
  'home',
  'pm',
  'went',
  'discov',
  'cook',
  'like',
  'count',
  'yell',
  'feed',
  'kid',
  'takeout',
  'argu',
  'back',
  'say',
  'choic',
  'basic',
  'trick',
  'cook',
  'know',
  'busi',
  'order',
  'food',
  'made',
  'sure',
  'kid',
  'fed',
  'focus',
  'work',
  'rant',
  'care',
  'work',
  'stepchildren',
  'god',
  'forbid',
  'call',
  'selfish',
  'went',
  'upstair',
  'refus',
  'talk',
  'still',
  'sulk',
  'today',
  'say',
  'need',
  'get',
  'prioriti',
  'order',
  'caus',
  'theyr',
  'mess',
  'info',
  '-',
  'friend',
  'engag',
  'husband',
  'friend',
  'colleg',
  'theyr',
  'close',
  'miss',
  'event',
  'moreov',
  'said',
  'upset',
  'miss',
  'event',
  'refus',
  'cook',
  'homemad',
  'healthi',
  'meal',
  'order',
  'takeout',
  'know',
  'go',
  'info',
  '-',
  'reason',
  'expect',
  'cook',
  'fact',
  'busi',
  'usual',
  'cook',
  'respons',
  'info',
  '-',
  'work',
  'ye',
  'bare',
  'work',
  'warehous',
  'twice',
  'week',
  'friend',
  'dad',
  'warehous',
  'lot',
  'leverag',
  'info',
  '-',
  'context',
  'mother',
  'one',
  'ex',
  'wife',
  'ex',
  'girlfriend',
  'left',
  'financi',
  'reason',
  'said',
  'im',
  'fulli',
  'convinc'],
 ['im',
  'father',
  'dad',
  'left',
  'famili',
  'without',
  'explan',
  'vanish',
  'one',
  'day',
  'ive',
  'never',
  'seen',
  'sinc',
  'left',
  'relationship',
  'issu',
  'mom',
  'heartbroken',
  'wait',
  'year',
  'return',
  '-',
  'end',
  'file',
  'divorc',
  'thank',
  'honest',
  '-',
  'year',
  'left',
  'bare',
  'memori',
  'resent',
  'year',
  'suffer',
  'put',
  'mom',
  'sister',
  'tri',
  'tri',
  'contact',
  'hed',
  'never',
  'respond',
  'cant',
  'rememb',
  'voic',
  'person',
  'even',
  'face',
  'much',
  'last',
  'week',
  'text',
  'mother',
  'said',
  'want',
  'meet',
  'year',
  'disappear',
  'mom',
  'agre',
  'arrang',
  'meet-up',
  'nearbi',
  'restaur',
  'sister',
  'nervousexcit',
  'realis',
  'felt',
  'nearli',
  'noth',
  'arriv',
  'mom',
  'sister',
  'start',
  'cri',
  'cri',
  'sight',
  'belov',
  'daughter',
  'saw',
  'look',
  'quit',
  'emotionless',
  'said',
  'miss',
  'dad',
  'repli',
  'honestli',
  'rememb',
  'left',
  'long',
  'like',
  'bare',
  'knew',
  'shock',
  'hurt',
  'eventu',
  'cut',
  'meet-up',
  'earli',
  'claim',
  'work',
  'mom',
  'sister',
  'mad',
  'blame',
  'mom',
  'said',
  'sister',
  'wait',
  'see',
  'dad',
  'long',
  'make',
  'stupid',
  'remark',
  'make',
  'leav',
  'second',
  'time',
  'ask',
  'could',
  'behav',
  'like',
  'toward',
  '*',
  'dad',
  '*',
  'tell',
  'im',
  'selfish',
  'bitch',
  'asshol',
  'im',
  'sorri',
  'cut',
  'meet-up',
  'short',
  'caus',
  'knew',
  'sister',
  'miss',
  'damn',
  'much',
  'honest',
  'feel',
  'bad',
  'say',
  'truth',
  'aita'],
 ['fiancé',
  'move',
  'togeth',
  'shortli',
  'got',
  'engag',
  'discuss',
  'wed',
  'split',
  'housework',
  'bill',
  'middl',
  'wiggl',
  'room',
  'need',
  'help',
  'move',
  'parent',
  '-stori',
  'garag',
  'convert',
  'basic',
  'apart',
  'offer',
  'low',
  'rent',
  'total',
  'pitch',
  'electr',
  'internet',
  'could',
  'save',
  'money',
  'place',
  'wed',
  'fiancé',
  'earn',
  'cool',
  'im',
  'proud',
  'move',
  'togeth',
  'alway',
  'seem',
  'like',
  'live',
  'paycheck',
  'paycheck',
  'chalk',
  'apart',
  'prior',
  'insan',
  'high',
  'rent',
  'stuck',
  'arrang',
  'first',
  'concern',
  'bill',
  'miss',
  'often',
  'remind',
  'post-engag',
  'back',
  'live',
  'paycheck',
  'paycheck',
  'either',
  'miss',
  'late',
  'part',
  'rent',
  'monthli',
  'two',
  'util',
  'pay',
  'groceri',
  'late',
  'car',
  'payment',
  'parent',
  'talk',
  'multipl',
  'time',
  'rent',
  'ive',
  'cover',
  'miss',
  'portion',
  'get',
  'us',
  'caught',
  'tri',
  'talk',
  'alway',
  'turn',
  'say',
  'move',
  'parent',
  'go',
  'hound',
  'us',
  'told',
  'lucki',
  'parent',
  'anywher',
  'els',
  'wouldv',
  'kick',
  'ass',
  'top',
  'pay',
  'bill',
  '%',
  'housework',
  'arrang',
  'pay',
  'date',
  'vacat',
  'gift',
  'pay',
  'toward',
  'pet',
  'ive',
  'suggest',
  'financi',
  'coach',
  'kick',
  'whenev',
  'around',
  'boast',
  'breadwinn',
  'sinc',
  'earn',
  'goe',
  'stress',
  'main',
  'sourc',
  'incom',
  'hour',
  'work',
  'pay',
  'bill',
  'let',
  'slide',
  'day',
  'ago',
  'get',
  'togeth',
  'sister',
  'start',
  'breadwinn',
  'sister',
  'said',
  'someth',
  'effect',
  'ex-boyfriend',
  'hard',
  'time',
  'someon',
  'earn',
  'fiancé',
  'went',
  'good',
  'thing',
  'op',
  'mind',
  'bring',
  'home',
  'pay',
  'told',
  'earn',
  'make',
  'breadwinn',
  'blow',
  'im',
  'pay',
  'bill',
  'embarrass',
  'keep',
  'say',
  'made',
  'look',
  'bad',
  'got',
  'troubl',
  'parent',
  'want',
  'see',
  'spend',
  'money',
  'month',
  'think',
  'anyth',
  'wrong',
  'aita',
  'updat',
  'last',
  'night',
  'readi',
  'postpon',
  'engag',
  'morn',
  'lot',
  'talk',
  'thing',
  'come',
  'light',
  'broken',
  'thank',
  'everyon',
  'respons',
  'input',
  'especi',
  'encourag',
  'look',
  'deeper',
  'quick',
  'summari',
  '\\-',
  'felt',
  'joint',
  'account',
  'would',
  'imped',
  'financi',
  'independ',
  '\\-',
  'insist',
  'could',
  'afford',
  'purchas',
  'base',
  'total',
  'incom',
  '\\-',
  'parent',
  'impress',
  'also',
  'pay',
  'student',
  'loan',
  'car',
  'phone',
  'pay',
  'vacat',
  '\\-',
  'get',
  'evict',
  'last',
  'apart',
  'late',
  'rent',
  'often',
  'enough',
  'go',
  'renew',
  'leas',
  'suggest',
  'us',
  'move',
  'bigger',
  'apart',
  'build',
  '\\-',
  'biggest',
  'nope',
  'im',
  'monthli',
  'take',
  'home',
  'amount',
  'told',
  'earn',
  'wage',
  'garnish',
  'kick',
  'addit',
  'mass',
  'debt',
  'onlin',
  'stuff',
  'make',
  'money',
  'lose',
  'due',
  'ye',
  'got',
  'ring',
  'back',
  'thank',
  'everyon',
  'respond',
  'anymor',
  'comment',
  'im',
  'go',
  'go',
  'take',
  'time',
  'get',
  'shit',
  'figur'],
 ['mobil',
  'throwaway',
  'happen',
  'wife',
  'current',
  'sleep',
  'mom',
  'blow',
  'phone',
  '*',
  'ad',
  'edit',
  'bottom',
  '*',
  'marri',
  'wonder',
  'wife',
  'melodi',
  'current',
  'pregnant',
  'first',
  'child',
  'togeth',
  'year',
  'old',
  'daughter',
  'tina',
  'mother',
  'split',
  'custodi',
  'know',
  'part',
  'melodi',
  'need',
  'order',
  'feel',
  'support',
  'carri',
  'child',
  'spend',
  'lot',
  'time',
  'make',
  'sure',
  'comfort',
  'take',
  'load',
  'home',
  'much',
  'first',
  'child',
  'obvious',
  'lot',
  'physic',
  'emot',
  'mother',
  'melodi',
  'get',
  'along',
  'well',
  'mom',
  'like',
  'ex',
  'either',
  'broke',
  'head',
  'differ',
  'path',
  'mother',
  'bad',
  'blood',
  'think',
  'like',
  'date',
  'whatev',
  'reason',
  'weird',
  'nit',
  'picki',
  'melodi',
  'much',
  'around',
  'hous',
  'emot',
  'melodi',
  'alreadi',
  'cri',
  'easili',
  'pregnant',
  'made',
  'even',
  'sensit',
  'fine',
  'fact',
  'want',
  'stay',
  'home',
  'mom',
  'seem',
  'like',
  'noth',
  'melodi',
  'okay',
  'howev',
  'stand',
  'allow',
  'mom',
  'talk',
  'today',
  'pick',
  'daughter',
  'summer',
  'camp',
  'melodi',
  'went',
  'differ',
  'groceri',
  'store',
  'find',
  'rotisseri',
  'chicken',
  'talk',
  'sinc',
  'last',
  'night',
  'realli',
  'realli',
  'want',
  'one',
  'lol',
  'sent',
  'pictur',
  'messag',
  'document',
  'quest',
  'chicken',
  'final',
  'found',
  'girl',
  'happi',
  'rotisseri',
  'chicken',
  'also',
  'kind',
  'comfort',
  'food',
  'like',
  'spaghetti',
  'mom',
  'use',
  'make',
  'one',
  'lazi',
  'day',
  'feel',
  'like',
  'cook',
  'plan',
  'serv',
  'basic',
  'side',
  'dinner',
  'perfectli',
  'fine',
  'mother',
  'came',
  'see',
  'tina',
  'start',
  'tell',
  'melodi',
  'chicken',
  'bad',
  'eat',
  'pregnant',
  'melodi',
  'said',
  'fine',
  'usual',
  'eat',
  'healthi',
  'want',
  'one',
  'thing',
  'crave',
  'mom',
  'went',
  'unhealthi',
  'said',
  'need',
  'eat',
  'someth',
  'els',
  'melodi',
  'said',
  'went',
  'backyard',
  'facetim',
  'famili',
  'state',
  'came',
  'back',
  'mom',
  'thrown',
  'food',
  'order',
  'take',
  'salad',
  'melodi',
  'pizza',
  'everyon',
  'els',
  'melodi',
  'ask',
  'chicken',
  'mother',
  'told',
  'need',
  'start',
  'respons',
  'mother',
  'eat',
  'correctli',
  'babi',
  'melodi',
  'scream',
  'fuck',
  'wrong',
  'alway',
  'bitch',
  'start',
  'cri',
  'call',
  'home',
  'came',
  'back',
  'ask',
  'mother',
  'leav',
  'hear',
  'stori',
  'said',
  'come',
  'back',
  'apolog',
  'treat',
  'melodi',
  'mom',
  'went',
  'im',
  'choos',
  'anoth',
  'woman',
  'think',
  'enough',
  'enough',
  'melodi',
  'reach',
  'limit',
  'apolog',
  'blow',
  'tina',
  'hous',
  'told',
  'okay',
  'ting',
  'happen',
  'tina',
  'okay',
  'went',
  'find',
  'anoth',
  'chicken',
  'store',
  'close',
  'dad',
  'think',
  'im',
  'right',
  'take',
  'melodi',
  'side',
  'brother',
  'think',
  'alway',
  'defend',
  'mom',
  'aita',
  'edit',
  'okay',
  'guy',
  'expect',
  'get',
  'much',
  'attent',
  'woke',
  'mani',
  'notif',
  'im',
  'go',
  'tri',
  'go',
  'mani',
  'wow',
  'thank',
  'guy',
  'support',
  'award',
  'melodi',
  'love',
  'kind',
  'messag',
  'especi',
  'mama',
  '&',
  'soon',
  'mama',
  'get',
  'put',
  'lol',
  'mom',
  'claim',
  'season',
  '&',
  'fatgreas',
  'made',
  'chicken',
  'bad',
  'bs',
  'claim',
  'plan',
  'sit',
  'parent',
  'brother',
  'mom',
  'lot',
  'mention',
  'emot',
  'incest',
  'creep',
  'thing',
  'along',
  'line',
  'need',
  'address',
  'ill',
  'talk',
  'dad',
  'first',
  'famili',
  'meet',
  'lot',
  'ask',
  'would',
  'still',
  'want',
  'mom',
  'around',
  'honestli',
  'mayb',
  'im',
  'weak',
  'mother',
  'howev',
  'learn',
  'chang',
  'respect',
  'famili',
  'go',
  'nc',
  'hard',
  'melodi',
  'even',
  'want',
  'complet',
  'cut',
  'want',
  'chang',
  'well',
  'protect',
  'melodi',
  'cost',
  'mean',
  'cut',
  'mom',
  'ex',
  'break',
  'mother',
  'differ',
  'idea',
  'live',
  'go',
  'tina',
  'plan',
  'alreadi',
  'head',
  'toward',
  'go',
  'separ',
  'way',
  'got',
  'pregnant',
  'tri',
  'make',
  'work',
  'tina',
  'relationship',
  'split',
  'work',
  'great',
  'ex',
  'melodi',
  'get',
  'along',
  'great',
  'tina',
  'happi',
  'work',
  'thing',
  'one',
  'big',
  'blend',
  'famili',
  'ex',
  'melodi',
  'talk',
  'mother',
  'realiz',
  'need',
  'see',
  'therapist',
  'work',
  'childhood',
  'mom',
  'like',
  'mine',
  'process',
  'im',
  'work',
  'best',
  'peopl',
  'ask',
  'cultur',
  'black',
  'american',
  'think',
  'mom',
  'son',
  'thing',
  'cultur',
  'thing',
  'sure',
  'updat',
  'someon',
  'pleas',
  'comment',
  'let',
  'know',
  'ill',
  'updat',
  'speak',
  'dad',
  '&',
  'famili',
  'meet',
  'lot',
  'recommend',
  'justnomil',
  '&',
  'raisedbynarcissist',
  'think',
  'page',
  'name',
  'definit',
  'check',
  'melodi',
  'pregnanc',
  'go',
  'smoothli',
  'part',
  'exhaust',
  'emot',
  'put',
  'also',
  'girl',
  'gender',
  'reveal',
  'last',
  'week',
  'wonder',
  'thank',
  'well',
  'wish',
  'girldad',
  '🙌🏾',
  'edit',
  'find',
  'anoth',
  'chicken',
  'yesterday',
  'night',
  'whole',
  'fiasco',
  'thank',
  'everyon',
  'recommend',
  'get',
  'costco',
  'card',
  'way',
  'go',
  'anoth',
  'chicken',
  'quest',
  '😂'],
 ['throwaway',
  'account',
  'wife',
  'iren',
  'fit',
  'like',
  'work',
  'proper',
  'exercis',
  'regim',
  'etc',
  'believ',
  'feel',
  'good',
  'look',
  'good',
  'feel',
  'good',
  'work',
  'stop',
  'brother',
  'spent',
  'latter',
  'half',
  'last',
  'year',
  'go',
  'messi',
  'divorc',
  'need',
  'place',
  'stay',
  'though',
  'brother',
  'close',
  'figur',
  'would',
  'stay',
  'us',
  'coupl',
  'week',
  'got',
  'back',
  'feet',
  'typic',
  'gym',
  'rat',
  'alway',
  'strict',
  'diet',
  'alway',
  'work',
  'brag',
  'gain',
  'ive',
  'work',
  'time',
  'littl',
  'obnoxi',
  'alway',
  'mad',
  'work',
  'pace',
  'alway',
  'tri',
  'correct',
  'form',
  'pretti',
  'fit',
  'muscular',
  'guy',
  'like',
  'exercis',
  'push',
  'iren',
  'workout',
  'accord',
  'abl',
  'keep',
  'iren',
  'mostli',
  'shrug',
  'laugh',
  'tell',
  'would',
  'love',
  'workout',
  'iren',
  'work',
  'morn',
  'time',
  'week',
  'run',
  'even',
  'busi',
  'past',
  'week',
  'abl',
  'stick',
  'usual',
  'schedul',
  'think',
  'make',
  'excus',
  'want',
  'embarrass',
  'iren',
  'laugh',
  'two',
  'day',
  'ago',
  'iren',
  'went',
  'earli',
  'morn',
  'run',
  'go',
  'first',
  'thing',
  'heard',
  'enter',
  'hous',
  'reason',
  'keep',
  'iren',
  'sweat',
  'much',
  'found',
  'extrem',
  'comic',
  'kinda',
  'laugh',
  'iren',
  'roll',
  'eye',
  'went',
  'take',
  'shower',
  'thought',
  'convers',
  'would',
  'die',
  'howev',
  'kept',
  'bring',
  'wife',
  'sweat',
  'wife',
  'went',
  'work',
  'told',
  'make',
  'sure',
  'sweat',
  'cloth',
  'call',
  'middl',
  'day',
  'yell',
  'tell',
  'sweati',
  'bitch',
  'said',
  'cours',
  'bitch',
  'comment',
  'aggrav',
  'told',
  'knock',
  'stop',
  'act',
  'like',
  'child',
  'thought',
  'end',
  'kept',
  'go',
  'end',
  'day',
  'tire',
  'comment',
  'iren',
  'seem',
  'rather',
  'unphas',
  'serv',
  'food',
  'made',
  'comment',
  'sweat',
  'food',
  'point',
  'wit',
  'end',
  'told',
  'stop',
  'act',
  'like',
  'sore',
  'slow',
  'refer',
  'run',
  'pace',
  'loser',
  'eat',
  'food',
  'cours',
  'got',
  'angri',
  'said',
  'reason',
  'go',
  'slower',
  'usual',
  'distract',
  'wife',
  'unhygien',
  'sweat',
  'iren',
  'look',
  'bit',
  'offend',
  'told',
  'would',
  'kick',
  'made',
  'anoth',
  'comment',
  'like',
  'super',
  'piss',
  'ever',
  'sinc',
  'jokingli',
  'told',
  'stori',
  'mutual',
  'friend',
  'agre',
  'mayb',
  'harsh',
  'updat',
  'expect',
  'amount',
  'respons',
  'thank',
  'advic',
  'ive',
  'decid',
  'kick',
  'stay',
  'nearbi',
  'hotel'],
 ['bit',
  'complic',
  'bear',
  'husband',
  'year',
  'year',
  'old',
  'daughter',
  'ex',
  'wife',
  'nora',
  'reason',
  'divorc',
  'financi',
  'told',
  'initi',
  'got',
  'diagnos',
  'cancer',
  'cancer',
  'come',
  'back',
  'feel',
  'sorri',
  'decent',
  'woman',
  'overal',
  'due',
  'treatment',
  'schedul',
  'nora',
  'get',
  'visit',
  'stepdaught',
  'husband',
  'drive',
  'stepdaught',
  'see',
  'mom',
  'day',
  'week',
  'yesterday',
  'came',
  'home',
  'say',
  'nora',
  'home',
  'stepdaught',
  'leav',
  'wait',
  'hour',
  'went',
  'bedroom',
  'stay',
  'sometim',
  'went',
  'visit',
  'friend',
  'clean',
  'bedroom',
  'found',
  'gold',
  'bracelet',
  'look',
  'familiar',
  'realiz',
  'belong',
  'nora',
  'id',
  'seen',
  'wear',
  'confus',
  'wait',
  'til',
  'got',
  'home',
  'ask',
  'reaction',
  'good',
  'lash',
  'took',
  'hand',
  'say',
  'touch',
  'person',
  'stuff',
  'said',
  'stuff',
  'nora',
  'ask',
  'took',
  'bracelet',
  'behind',
  'back',
  'said',
  'nora',
  'gave',
  'could',
  'give',
  'daughter',
  'case',
  'someth',
  'happen',
  'nora',
  'know',
  'believ',
  'told',
  'would',
  'call',
  'nora',
  'ask',
  'start',
  'yell',
  'stay',
  'famili',
  'busi',
  'start',
  'argu',
  'kept',
  'demand',
  'tell',
  'got',
  'bracelet',
  'refus',
  'say',
  'anyth',
  'first',
  'admit',
  'go',
  'nora',
  'room',
  'take',
  'told',
  'thu',
  'okay',
  'said',
  'right',
  'spent',
  'money',
  'treatment',
  'never',
  'got',
  'money',
  'back',
  'shock',
  'statement',
  'marri',
  'back',
  'expect',
  'repaid',
  'got',
  'mad',
  'told',
  'day',
  'return',
  'bracelet',
  'ill',
  'tell',
  'nora',
  'let',
  'involv',
  'author',
  'caus',
  'bracelet',
  'look',
  'heavi',
  'pricey',
  'beg',
  'stay',
  'refus',
  'said',
  'malici',
  'side',
  'threaten',
  'refus',
  'negoti',
  'anyth',
  'im',
  'respons',
  'word',
  'nora',
  'decent',
  'woman',
  'struggl',
  'feel',
  'like',
  'know',
  'cant',
  'trust',
  'daughter',
  'father',
  'home',
  'said',
  'go',
  'ruin',
  'relationship',
  'badli',
  'said',
  'im',
  'still',
  'stand',
  'word',
  'aita'],
 ['parent',
  'two',
  'girl',
  'sister',
  'alway',
  'felt',
  'like',
  'parent',
  'saw',
  'babysitt',
  'third',
  'adult',
  'hous',
  'expect',
  'year',
  'old',
  'kidteenag',
  'wherea',
  'sister',
  'babi',
  'spoil',
  'rotten',
  'ador',
  'never',
  'want',
  'anyth',
  'everyth',
  'make',
  'happi',
  'expect',
  'help',
  'take',
  'care',
  'sister',
  'long',
  'rememb',
  'special',
  'need',
  'never',
  'sick',
  'even',
  'preemi',
  'either',
  'dynam',
  'set',
  'rememb',
  'would',
  'come',
  'home',
  'school',
  'mom',
  'would',
  'help',
  'feed',
  'sister',
  'would',
  'watch',
  'hous',
  'would',
  'told',
  'need',
  'play',
  'sister',
  'upset',
  'shed',
  'miss',
  'lot',
  'parent',
  'would',
  'insist',
  'dedic',
  'time',
  'home',
  'wed',
  'go',
  'famili',
  'shed',
  'want',
  'someth',
  'theyd',
  'get',
  'would',
  'told',
  'act',
  'age',
  'want',
  'someth',
  'would',
  'get',
  'hang',
  'friend',
  'whenev',
  'want',
  'would',
  'realli',
  'amaz',
  'birthday',
  'parti',
  'sleepov',
  'never',
  'allow',
  'also',
  'never',
  'got',
  'attend',
  'sleepov',
  'friend',
  'hous',
  'time',
  'parent',
  'would',
  'take',
  'realli',
  'amaz',
  'stuff',
  'left',
  'behind',
  'time',
  'sister',
  'start',
  'get',
  'annoy',
  'pull',
  'back',
  'around',
  'kept',
  'im',
  'moodi',
  'around',
  'engag',
  'famili',
  'take',
  'punish',
  'rather',
  'chore',
  'sinc',
  'none',
  'assign',
  'parent',
  'hate',
  'littl',
  'hous',
  'keeper',
  'want',
  'sister',
  'told',
  'im',
  'brat',
  'ungrat',
  'help',
  'parent',
  'amaz',
  'time',
  'gotten',
  'wors',
  'heard',
  'make',
  'plan',
  'leav',
  'friend',
  'coupl',
  'month',
  'piss',
  'go',
  'leav',
  'famili',
  'behind',
  'told',
  'famili',
  'anyth',
  'talk',
  'mom',
  'dad',
  'save',
  'us',
  'go',
  'colleg',
  'wan',
  'na',
  'run',
  'away',
  'someth',
  'broke',
  'insid',
  'said',
  'told',
  'colleg',
  'fund',
  'wait',
  'like',
  'get',
  'anyth',
  'want',
  'im',
  'told',
  'act',
  'age',
  'want',
  'anyth',
  'told',
  'expect',
  'maid',
  'get',
  'noth',
  'get',
  'everyth',
  'told',
  'much',
  'older',
  'everyon',
  'expect',
  'adult',
  'ask',
  'shed',
  'feel',
  'suppos',
  'juggl',
  'younger',
  'sibl',
  'take',
  'care',
  'bulk',
  'household',
  'chore',
  'schoolwork',
  'get',
  'time',
  'friend',
  'reason',
  'shit',
  'work',
  'leav',
  'exhaust',
  'alreadi',
  'much',
  'told',
  'life',
  'make',
  'want',
  'stay',
  'parent',
  'cut',
  'short',
  'upset',
  'call',
  'asshol',
  'mean',
  'sister',
  'said',
  'asshol',
  'dump',
  'shoulder',
  'aita'],
 ['husband',
  'car',
  'accid',
  'last',
  'week',
  'stay',
  'hospit',
  'broken',
  'leg',
  'mom',
  'mom',
  'get',
  'along',
  'tell',
  'im',
  'overreact',
  'paranoid',
  'whenev',
  'point',
  'mistreat',
  'complain',
  'hospit',
  'food',
  'say',
  'tast',
  'ask',
  'make',
  'favorit',
  'meal',
  'steack',
  'dish',
  'bring',
  'hospit',
  'note',
  'steak',
  'cheap',
  'live',
  'enough',
  'time',
  'prepar',
  'told',
  'see',
  'mom',
  'said',
  'im',
  'truli',
  'support',
  'wife',
  'id',
  'make',
  'happen',
  'went',
  'outsid',
  'room',
  'mom',
  'tone',
  'chang',
  'suddenli',
  'seem',
  'nice',
  'said',
  'could',
  'see',
  'exhaust',
  'go',
  'home',
  'worri',
  'steak',
  'dish',
  'said',
  'shed',
  'make',
  'ask',
  '%',
  'sure',
  'said',
  'absoluetli',
  'next',
  'visit',
  'show',
  'husband',
  'ask',
  'bring',
  'steak',
  'dish',
  'ask',
  'saw',
  'mom',
  'told',
  'mom',
  'offer',
  'make',
  'instesd',
  'told',
  'worri',
  'believ',
  'like',
  'mom',
  'said',
  'im',
  'buy',
  'mom',
  'realli',
  'said',
  'reaction',
  'shock',
  'act',
  'confus',
  'said',
  'im',
  'wife',
  'know',
  'id',
  'expect',
  'perform',
  'duti',
  'confus',
  'know',
  'husband',
  'seem',
  'upset',
  'entir',
  'visit',
  'wait',
  'til',
  'mom',
  'left',
  'talk',
  'swore',
  'mom',
  'said',
  'shed',
  'take',
  'care',
  'said',
  'believ',
  'pull',
  'phone',
  'call',
  'mom',
  'put',
  'speaker',
  'could',
  'hear',
  'convers',
  'said',
  'say',
  'make',
  'steak',
  'dish',
  'worri',
  'reli',
  'didbut',
  'obvious',
  'actual',
  'go',
  'tri',
  'help',
  'son',
  'see',
  'wife',
  'rough',
  'time',
  'took',
  'bait',
  'husband',
  'rais',
  'eyebrow',
  'got',
  'piss',
  'call',
  'later',
  'pick',
  'fight',
  'said',
  'visit',
  'lost',
  'call',
  'petti',
  'manipul',
  'blast',
  'facebook',
  'say',
  'stop',
  'see',
  'son',
  'get',
  'thing',
  'like',
  'cook',
  'husband',
  'famili',
  'critic'],
 ['new',
  'account',
  'delet',
  'main',
  'might',
  'sound',
  'petti',
  'let',
  'explain',
  'could',
  'longer',
  'work',
  'physic',
  'disabl',
  'compani',
  'want',
  'hire',
  'past',
  'coupl',
  'year',
  'husband',
  'said',
  'better',
  'stay',
  'home',
  'worri',
  'work',
  'agre',
  'becom',
  'breadwinn',
  'like',
  'switch',
  'flip',
  'chore',
  'lost',
  'job',
  'becom',
  '%',
  'keep',
  'mind',
  'physic',
  'disabl',
  'develop',
  'excus',
  'anyth',
  'help',
  'stay',
  'home',
  'told',
  'fair',
  'especi',
  'sinc',
  'suffer',
  'physic',
  'discomfort',
  'made',
  'deal',
  'promis',
  'everyth',
  'start',
  'work',
  'told',
  'would',
  'find',
  'job',
  'laugh',
  'said',
  'good',
  'luck',
  'rememb',
  'vividli',
  'strang',
  'laugh',
  'never',
  'heard',
  'laugh',
  'start',
  'look',
  'job',
  'month',
  'luck',
  'til',
  'friend',
  'husband',
  'found',
  'potenti',
  'job',
  'compani',
  'would',
  'wfh',
  'due',
  'physic',
  'strain',
  'excit',
  'felt',
  'like',
  'im',
  'capabl',
  'despit',
  'struggl',
  'schedul',
  'interview',
  'told',
  'husband',
  'look',
  'red',
  'face',
  'said',
  'noth',
  'day',
  'ago',
  'found',
  'job',
  'interview',
  'got',
  'cancel',
  'found',
  'friend',
  'reach',
  'ask',
  'said',
  'idea',
  'check',
  'email',
  'found',
  'noth',
  'send',
  'anyth',
  'compani',
  'husband',
  'came',
  'home',
  'admit',
  'cancel',
  'interview',
  'ask',
  'said',
  'job',
  'lot',
  'requir',
  'seem',
  'fit',
  'accept',
  'spare',
  'heartach',
  'reject',
  'cancel',
  'interview',
  'flip',
  'told',
  'destroy',
  'one',
  'chanc',
  'land',
  'job',
  'said',
  'feel',
  'concern',
  'wellb',
  'told',
  'probabl',
  'want',
  'work',
  'caus',
  'want',
  'split',
  'hous',
  'chore',
  'seem',
  'offend',
  'threw',
  'fit',
  'unreason',
  'selfish',
  'even',
  'consid',
  'job',
  'without',
  'speak',
  'first',
  'told',
  'get',
  'involv',
  'work',
  'life',
  'call',
  'horribl',
  'accus',
  'bad',
  'intent',
  'went',
  'meet',
  'friend',
  'probabl',
  'vent',
  'one',
  'told',
  'husband',
  'look',
  'cruel',
  'yell',
  'cold',
  'shoulder',
  'sinc',
  'delet',
  'social',
  'media',
  'account',
  'claim',
  'theyr',
  'bad',
  'mental',
  'health',
  'neg',
  'affect',
  'platform',
  'aita',
  'yell'],
 ['hear',
  'husband',
  'jess',
  'bring',
  'home',
  'meal',
  'femal',
  'cowork',
  'nelli',
  'cook',
  'im',
  'best',
  'cook',
  'jess',
  'made',
  'clear',
  'still',
  'eat',
  'cook',
  'everyday',
  'notic',
  'nelli',
  'tend',
  'take',
  'everi',
  'opportun',
  'point',
  'weak',
  'taseless',
  'cook',
  'jess',
  'would',
  'say',
  'noth',
  'except',
  'steer',
  'convers',
  'toward',
  'someth',
  'els',
  'relat',
  'im',
  'sit',
  'wallow',
  'miseri',
  'think',
  'saidalso',
  'ask',
  'anoth',
  'chore',
  'good',
  'jess',
  'said',
  'iron',
  'suit',
  'respons',
  'joke',
  'send',
  'suit',
  'could',
  'see',
  'good',
  'iron',
  '*',
  '*',
  'roll',
  'eye',
  'hard',
  'least',
  'jess',
  'agre',
  'weird',
  'last',
  'weekjess',
  'came',
  'home',
  'new',
  'meal',
  'cook',
  'told',
  'alreadi',
  'cook',
  'dinner',
  'ask',
  'go',
  'meal',
  'told',
  'go',
  'eat',
  'dinner',
  'ngl',
  'get',
  'bit',
  'irrit',
  'mustv',
  'notic',
  'said',
  'promis',
  'nelli',
  'hed',
  'eat',
  'dinner',
  'ask',
  'take',
  'pic',
  'empti',
  'plate',
  'later',
  'confirm',
  'hed',
  'actual',
  'eaten',
  'baffledlik',
  'complet',
  'baffl',
  'told',
  'one',
  'thing',
  'one',
  'thing',
  'told',
  'chose',
  'eat',
  'nelli',
  'meal',
  'dinner',
  'cook',
  'would',
  'last',
  'time',
  'cook',
  'start',
  'moan',
  'unfair',
  'put',
  'rough',
  'place',
  'stall',
  'give',
  'clear',
  'answer',
  'til',
  'saw',
  'walk',
  'past',
  'later',
  'set',
  'tabl',
  'prepar',
  'dinner',
  'put',
  'meal',
  'microwav',
  'felt',
  'aw',
  'almost',
  'cri',
  'told',
  'cook',
  'anymor',
  'sinc',
  'made',
  'choic',
  'obvious',
  'piss',
  'went',
  'call',
  'childish',
  'pathet',
  'make',
  'ego',
  'got',
  'chair',
  'told',
  'owe',
  'noth',
  'made',
  'decis',
  'snap',
  'said',
  'ridiculo',
  'nellywa',
  'nice',
  'thing',
  'whilea',
  'behavior',
  'disgrac',
  '*',
  'disgust',
  '*',
  'went',
  'bedroom',
  'rush',
  'shout',
  '*',
  'leav',
  'fuck',
  'alon',
  '*',
  'proceed',
  'shut',
  'door',
  'speak',
  'mom',
  'knew',
  'argument',
  'call',
  'beg',
  'patient',
  'make',
  'decis',
  'might',
  'regret',
  'later',
  'agre',
  'nelli',
  'overstep',
  'firmli',
  'believ',
  'problem',
  'hard',
  'son',
  'mil',
  'incred',
  'bias',
  'mean',
  'eye',
  'son',
  'saint',
  'wrong',
  'feel',
  'like',
  'overreact',
  'realli',
  'mess',
  'push',
  'like'],
 ['expect',
  'first',
  'daughter',
  'husband',
  'septemb',
  'grew',
  'moder',
  'religi',
  'household',
  'pretti',
  'strictli',
  'defin',
  'gender',
  'role',
  'sinc',
  'girl',
  'chore',
  'around',
  'hous',
  'younger',
  'brother',
  'anyth',
  'talk',
  'parent',
  'varieti',
  'reason',
  'go',
  'year',
  'know',
  'pregnant',
  'aunt',
  'grandpar',
  'support',
  'leav',
  'household',
  'main',
  'famili',
  'month',
  'pregnant',
  'peopl',
  'start',
  'give',
  'gift',
  'grate',
  'decid',
  'want',
  'daughter',
  'surround',
  'pink',
  'everyth',
  'girl',
  'thing',
  'made',
  'consciou',
  'effort',
  'includ',
  'tradit',
  'boy',
  'outfit',
  'toy',
  'like',
  'dinosaur',
  'car',
  'told',
  'peopl',
  'gender',
  'item',
  'would',
  'accept',
  'get',
  'much',
  'pink',
  'gone',
  'balanc',
  'bit',
  'get',
  'green',
  'jacket',
  'someth',
  'younger',
  'aunt',
  'taken',
  'great',
  'offens',
  'boy',
  'boy',
  'girl',
  'girl',
  'verbal',
  'loud',
  'person',
  'let',
  'us',
  'know',
  'sever',
  'time',
  'opinion',
  'two',
  'boy',
  'babi',
  'shower',
  'older',
  'aunt',
  'gift',
  'us',
  'book',
  'call',
  'goodnight',
  'construct',
  'site',
  'littl',
  'stuf',
  'truck',
  'younger',
  'aunt',
  'went',
  'tirad',
  'somehow',
  'make',
  'daughter',
  'tran',
  'allow',
  'girl',
  'loud',
  'person',
  'cours',
  'say',
  'like',
  'yell',
  'front',
  'liber',
  'in-law',
  'support',
  'choic',
  'pregnanc',
  'hormon',
  'took',
  'grab',
  'toy',
  'gave',
  'younger',
  'aunt',
  'ask',
  'part',
  'peni',
  'need',
  'oper',
  'toy',
  'truck',
  'yell',
  'meant',
  'left',
  'rest',
  'babi',
  'shower',
  'went',
  'fine',
  'bit',
  'awkward',
  'sinc',
  'blow',
  'facebook',
  'bunch',
  'peopl',
  'agre',
  'make',
  'daughter',
  'tran',
  'tell',
  'asshol',
  'rest',
  'think',
  'fine',
  'handl',
  'way',
  'asshol',
  'edit',
  'add',
  'wow',
  'realli',
  'blew',
  'anticip',
  'much',
  'respons',
  'answer',
  'question',
  'care',
  'end',
  'love',
  'pink',
  'unicorn',
  'etc',
  'get',
  'tri',
  'balanc',
  'sheer',
  'amount',
  'pink',
  'item',
  'get',
  'friend',
  'famili',
  'almost',
  'everi',
  'singl',
  'gift',
  'heavili',
  'pink',
  'girl',
  'influenc',
  'point',
  'would',
  'dress',
  'anyth',
  'pink',
  'go',
  'buy',
  'boy',
  'thing',
  'also',
  'gener',
  'person',
  'argu',
  'feel',
  'like',
  'bit',
  'ahol',
  'intent',
  'said',
  'deadpan',
  'seriou',
  'could',
  'intent',
  'embarrass',
  'front',
  'famili',
  'member',
  'present',
  'deliveri',
  'question',
  'intend',
  'effect',
  'went',
  'quit',
  'red',
  'leav',
  'also',
  'first',
  'transphob',
  'comment',
  'ive',
  'ever',
  'heard',
  'mouth',
  'grew',
  'quit',
  'conserv',
  'older',
  'aunt',
  'come',
  'year',
  'ago',
  'realli',
  'chang',
  'famili',
  'perspect',
  'grandpar',
  'chang',
  'previous',
  'view',
  'aunt',
  'alway',
  'support',
  'aunt',
  'younger',
  'aunt',
  'alway',
  'want',
  'girl',
  'thought',
  'tri',
  'act',
  'fantasi',
  'girl',
  'gift',
  'prefer'],
 ['im',
  'yo',
  'twin',
  'boy',
  'babi',
  'girl',
  'even',
  'two',
  'day',
  'ago',
  'sister',
  'jodi',
  'suffer',
  'infertil',
  'past',
  'year',
  'well',
  'repeat',
  'miscarriag',
  'use',
  'feel',
  'realli',
  'bad',
  'also',
  'bit',
  'guilti',
  'got',
  'pregnant',
  'twice',
  'contracept',
  'caus',
  'tension',
  'us',
  'pregnant',
  'twin',
  'jealou',
  'alreadi',
  'feel',
  'intens',
  'guilt',
  'time',
  'around',
  'jealou',
  'still',
  'felt',
  'unfair',
  'husband',
  'decid',
  'done',
  'kid',
  'offer',
  'surrog',
  'sister',
  'soon',
  'im',
  'clear',
  'babi',
  'seem',
  'like',
  'absolut',
  'moon',
  'turn',
  'offer',
  'watch',
  'twin',
  'labour',
  'new',
  'babi',
  'relief',
  'part',
  'went',
  'labour',
  'thursday',
  'morn',
  'jodi',
  'came',
  'watch',
  'kid',
  'husband',
  'went',
  'hospit',
  'seem',
  'like',
  'great',
  'mood',
  'promptli',
  'rush',
  'us',
  'door',
  'everyth',
  'seem',
  'fine',
  'got',
  'home',
  'morn',
  'find',
  'thousand',
  'worth',
  'destruct',
  'pretti',
  'much',
  'everi',
  'babi',
  'item',
  'weve',
  'purchas',
  'even',
  'crib',
  'mattress',
  'torn',
  'open',
  'everyth',
  'ruin',
  'jodi',
  'tri',
  'pin',
  'twin',
  'theyr',
  'level',
  'destruct',
  'done',
  'adult',
  'twin',
  'cant',
  'even',
  'reach',
  'stuff',
  'destroy',
  'certainli',
  'know',
  'open',
  'diaper',
  'packag',
  'tear',
  'apart',
  'know',
  'kid',
  'especi',
  'toddler',
  'lot',
  'damag',
  'short',
  'time',
  'also',
  'know',
  'children',
  'capabl',
  'happen',
  'told',
  'sister',
  'get',
  'fuck',
  'home',
  'stay',
  'away',
  'famili',
  'got',
  'realli',
  'angri',
  'said',
  'lot',
  'stuff',
  'one',
  'hope',
  'never',
  'child',
  'ill',
  'tell',
  'exactli',
  'done',
  'mine',
  'told',
  'cant',
  'afford',
  'fix',
  'damag',
  'caus',
  'sinc',
  'still',
  'deni',
  'cough',
  'told',
  'babi',
  'even',
  'safe',
  'space',
  'sleep',
  'parent',
  'caught',
  'wind',
  'said',
  'even',
  'explain',
  'situat',
  'still',
  'think',
  'im',
  'asshol',
  'say',
  'someth',
  'vile',
  'sister',
  'done',
  'us',
  'obvious',
  'judgement',
  'cloud',
  'asshol'],
 ['husband',
  '&',
  'expect',
  'babi',
  'boy',
  'bare',
  'catch',
  'preper',
  'get',
  'everyth',
  'readi',
  'mom',
  'kind',
  'busi',
  'bodi',
  'type',
  'help',
  'time',
  'invit',
  'us',
  'dinner',
  'said',
  'import',
  'request',
  'make',
  'brought',
  'request',
  'dinner',
  'tabl',
  'blatantli',
  'said',
  'want',
  'deliveri',
  'room',
  'give',
  'birth',
  'taken',
  'back',
  'request',
  '--',
  'realli',
  'thought',
  'someth',
  'nurseri',
  'diaper',
  'brand',
  'said',
  'sorri',
  'mom',
  'husband',
  'made',
  'face',
  'got',
  'quiet',
  'brought',
  'kept',
  'push',
  'say',
  'much',
  'grandmoth',
  'mom',
  'want',
  'support',
  'get',
  'opportun',
  'see',
  'grandbabi',
  'first',
  'moment',
  'husband',
  'side',
  'stare',
  'said',
  'alright',
  'opportun',
  'deliveri',
  'room',
  'son',
  'give',
  'birth',
  'everyon',
  'stop',
  'eat',
  'mother',
  'law',
  'left',
  'tabl',
  'instanc',
  'husband',
  'got',
  'although',
  'finish',
  'dinner',
  'said',
  'leav',
  'car',
  'lost',
  'ask',
  'brain',
  'cell',
  'made',
  'think',
  'good',
  'idea',
  'tell',
  'mom',
  'told',
  'mom',
  'kept',
  'push',
  'id',
  'alreadi',
  'given',
  'answer',
  'still',
  'said',
  'fuck',
  'shit',
  'heard',
  'say',
  'repli',
  'frustrat',
  'mean',
  'hurt',
  'feel',
  'caus',
  'issu',
  'argu',
  'want',
  'issu',
  'stop',
  'make',
  'shit',
  'difficult',
  'say',
  'ye',
  'mom',
  'request',
  'rant',
  'son',
  'said',
  'mom',
  'allow',
  'know',
  'realli',
  'meant',
  'said',
  'hear',
  'moment',
  'fume',
  'ignor',
  'tri',
  'talk',
  'act',
  'like',
  'im',
  'room',
  'think',
  'might',
  'gone',
  'far',
  'creat',
  'tension',
  'respond',
  'inappropri',
  'aita',
  'edit',
  'tension',
  'husband',
  'famili',
  'late',
  'probabl',
  'blew',
  'built',
  'resent'],
 ['daughter',
  'old',
  'phone',
  'year',
  'alway',
  'want',
  'new',
  'phone',
  'im',
  'one',
  'work',
  'right',
  'sinc',
  'husband',
  'decid',
  'take',
  'break',
  'work',
  'inherit',
  'money',
  'dad',
  'saw',
  'pretti',
  'good',
  'school',
  'despit',
  'mental',
  'health',
  'issu',
  'gotten',
  'way',
  'focu',
  'decid',
  'keep',
  'encourag',
  'reward',
  'get',
  'appl',
  'iphon',
  'cost',
  'good',
  'sum',
  'money',
  'best',
  'save',
  'money',
  'buy',
  'liter',
  'skip',
  'pay',
  'breakfast',
  'work',
  'abl',
  'afford',
  'husband',
  'want',
  'help',
  'bought',
  'iphon',
  'quit',
  'honestli',
  'seen',
  'happi',
  'refresh',
  'realli',
  'went',
  'hard',
  'time',
  'past',
  'coupl',
  'year',
  'emot',
  'mental',
  'husband',
  'happi',
  'said',
  'iphon',
  'distract',
  'school',
  'chore',
  'true',
  'fact',
  'encourag',
  'still',
  'said',
  'spent',
  'kind',
  'money',
  'iphon',
  'might',
  'irrespons',
  'break',
  'daughter',
  'pick',
  'attitud',
  'toward',
  'iphon',
  'told',
  'ignor',
  'day',
  'ago',
  'found',
  'broke',
  'iphon',
  'ask',
  'said',
  'ask',
  'get',
  'someth',
  'toolbox',
  'garag',
  'iphon',
  'ignor',
  'use',
  'incid',
  'evid',
  'iphon',
  'bad',
  'influenc',
  'yell',
  'demand',
  'replac',
  'said',
  'took',
  'money',
  'account',
  'paid',
  'new',
  'iphon',
  'gave',
  'daughter',
  'saw',
  'went',
  'call',
  'viciou',
  'aw',
  'accus',
  'steal',
  'father',
  'money',
  'demand',
  'money',
  'took',
  'everi',
  'singl',
  'penni',
  'back',
  'basic',
  'told',
  'happen',
  'got',
  'mother',
  'say',
  'im',
  'set',
  'terribl',
  'exampl',
  'daughter',
  'get',
  'phone',
  'paid',
  'money',
  'stole',
  'dad',
  'husband',
  'said',
  'speak',
  'word',
  'til',
  'fix',
  'alreadi',
  'said',
  'owe',
  'noth',
  'aita',
  'eta',
  'biolog',
  'father',
  'stepdad',
  'price',
  'iphon',
  'live',
  'thousand',
  'dollar',
  'cheap',
  'find',
  'took',
  'thousand',
  'dollar',
  'inherit',
  'realli',
  'got',
  'furiou',
  'said',
  'worst',
  'woman',
  'met',
  'life',
  'ex',
  'wife',
  'way',
  'relev',
  'took',
  'back',
  'later',
  'said',
  'speak',
  'til',
  'money',
  'back'],
 ['fianc',
  'ben',
  'mom',
  'best',
  'relationship',
  'tri',
  'best',
  'polit',
  'around',
  'type',
  'thatd',
  'high',
  'standardsexpect',
  'whoever',
  'date',
  'son',
  'comment',
  'hair',
  'bodi',
  'sever',
  'time',
  'point',
  'suggest',
  'cosmet',
  'surgeri',
  'futur',
  'upset',
  'ben',
  'tell',
  'need',
  'learn',
  'thick',
  'skin',
  'sinc',
  'often',
  'time',
  'realli',
  'mean',
  'malici',
  'anyway',
  'im',
  'known',
  'bake',
  'cake',
  'sweet',
  'ben',
  'eat',
  'make',
  'whenev',
  'bring',
  'someth',
  'famili',
  'tri',
  'find',
  'everi',
  'excus',
  'world',
  'eat',
  'im',
  'ok',
  'stop',
  'ben',
  'st',
  'birthday',
  'mom',
  'want',
  'host',
  'parti',
  'decid',
  'bake',
  'birthday',
  'cake',
  'thrill',
  'went',
  'groceri',
  'shop',
  'took',
  'time',
  'work',
  'put',
  'much',
  'effort',
  'make',
  'like',
  'took',
  'mom',
  'hous',
  'surpris',
  'walk',
  'saw',
  'larg',
  'birthday',
  'cake',
  'sit',
  'din',
  'tabl',
  'puzzl',
  'fmil',
  'said',
  'request',
  'cake',
  'bakeri',
  'paid',
  'xxx',
  'money',
  'ask',
  'cake',
  'ive',
  'made',
  'respond',
  'oh',
  'place',
  'counter',
  'well',
  'let',
  'kid',
  'felt',
  'like',
  'ice',
  'drop',
  'look',
  'ben',
  'nod',
  'way',
  'mad',
  'cake',
  'still',
  'hand',
  'time',
  'turn',
  'around',
  'made',
  'way',
  'door',
  'mom',
  'remain',
  'stand',
  'ben',
  'follow',
  'ask',
  'go',
  'told',
  'need',
  'cake',
  'extent',
  'sinc',
  'effort',
  'easili',
  'dismiss',
  'disrespect',
  'said',
  'overreact',
  'mom',
  'paid',
  'much',
  'cake',
  'fair',
  'accept',
  'beg',
  'get',
  'back',
  'insid',
  'favor',
  'basic',
  'go',
  'flow',
  'decid',
  'go',
  'home',
  'got',
  'mad',
  'start',
  'say',
  'unreason',
  'stir',
  'drama',
  'noth',
  'went',
  'home',
  'get',
  'back',
  'til',
  'pm',
  'upset',
  'said',
  'famili',
  'appreci',
  'childish',
  'behavior',
  'display',
  'ruin',
  'parti',
  'disrespect',
  'mom',
  'like',
  'said',
  'turn',
  'huge',
  'deal',
  'act',
  'maturelli',
  'instead',
  'walk',
  'cake',
  'aita',
  'take',
  'cake',
  'walk'],
 ['recent',
  'got',
  'marri',
  'love',
  'life',
  'perfect',
  'wed',
  'except',
  'one',
  'thing',
  'mil',
  'freakout',
  'saw',
  'dress',
  'gone',
  'dress',
  'shop',
  'invit',
  'found',
  'perfect',
  'dress',
  'husband',
  'famili',
  'tradit',
  'alway',
  'wear',
  'blush',
  'dress',
  'wed',
  'day',
  'told',
  'respect',
  'said',
  'would',
  'wear',
  'whatev',
  'color',
  'dress',
  'perfect',
  'dress',
  'final',
  'found',
  'white',
  'mil',
  'ask',
  'ask',
  'could',
  'alter',
  'make',
  'blush',
  'find',
  'new',
  'dress',
  'said',
  'would',
  'ask',
  'long',
  'stori',
  'short',
  'show',
  'wed',
  'white',
  'dress',
  'ceremoni',
  'mil',
  'seeth',
  'recept',
  'pull',
  'asid',
  'ask',
  'dress',
  'white',
  'told',
  'want',
  'find',
  'new',
  'dress',
  'alter',
  'said',
  'tradit',
  'disappoint',
  'broke',
  'also',
  'said',
  'disappoint',
  'walk',
  'aisl',
  'white',
  'dress',
  'asshol',
  'could',
  'chang',
  'dress'],
 ['husband',
  '&',
  'togeth',
  'half',
  'year',
  'daughter',
  'calli',
  'love',
  'instrument',
  'music',
  'piano',
  'interest',
  'im',
  'say',
  'daughter',
  'realli',
  'see',
  'talent',
  'special',
  'importantlysh',
  'use',
  'express',
  'feel',
  'especi',
  'deceas',
  'father',
  'pass',
  'away',
  'alway',
  'say',
  'way',
  'connect',
  'play',
  'piano',
  'encourag',
  'grandpar',
  'bought',
  'thousand',
  'piano',
  'thrill',
  'whole',
  'famili',
  'encourag',
  'husband',
  'think',
  'distract',
  'school',
  'real',
  'futur',
  'etc',
  'attend',
  'play',
  'help',
  'academi',
  'even',
  'take',
  'time',
  'listen',
  'play',
  'everytim',
  'come',
  'home',
  'hear',
  'play',
  'upstair',
  'hed',
  'lectur',
  'us',
  'activ',
  'wast',
  'time',
  'sat',
  'told',
  'calli',
  'pick',
  'bad',
  'vibe',
  'got',
  'mad',
  'said',
  'job',
  'ensur',
  'get',
  'distract',
  'school',
  'although',
  'grade',
  'good',
  'went',
  'back',
  'forth',
  'made',
  'clear',
  'stop',
  'said',
  'okay',
  'end',
  'sunday',
  'huge',
  'argument',
  'ensu',
  'hous',
  'husband',
  'claim',
  'calli',
  'woke',
  'day',
  'loud',
  'play',
  'issu',
  'ultimatuim',
  'either',
  'piano',
  'goe',
  'get',
  'rid',
  'ask',
  'take',
  'said',
  'calli',
  'grandpar',
  'hous',
  'calli',
  'want',
  'left',
  'found',
  'husband',
  'took',
  'junk',
  'yard',
  'dad',
  'work',
  'cut',
  'piec',
  'big',
  'argument',
  'ensu',
  'liter',
  'scream',
  'match',
  'infront',
  'famili',
  'gave',
  'day',
  'pay',
  'new',
  'one',
  'despit',
  'apolog',
  'say',
  'act',
  'moment',
  'desper',
  'frustrat',
  'said',
  'way',
  'could',
  'pay',
  'use',
  'save',
  'suppos',
  'go',
  'toward',
  'new',
  'garag',
  'side',
  'busi',
  'complain',
  'forc',
  'pay',
  'ruin',
  'busi',
  'even',
  'start',
  'kept',
  'send',
  'famili',
  'middle-men',
  'get',
  'give',
  'least',
  'month',
  'refus',
  'stood',
  'ground',
  'despit',
  'call',
  'unreason',
  'sinc',
  'piano',
  'vs',
  'new',
  'busi',
  'aita',
  'forc',
  'pay',
  'give',
  'time',
  'edit',
  '~~',
  'issu',
  'whatev',
  'calli',
  'first',
  'til',
  'start',
  'live',
  'togeth',
  'first',
  'thought',
  'famili',
  'tend',
  'get',
  'annoy',
  'stuff',
  'famili',
  'member',
  'apparentlythi',
  'case',
  'way',
  'tonight',
  'tomorrow',
  'morn',
  'timelin',
  'ive',
  'given',
  'far',
  'heard',
  'dad'],
 ['start',
  'see',
  'therapist',
  'month',
  'ago',
  'postpartum',
  'depress',
  'first',
  'realli',
  'help',
  'notic',
  'two',
  'occas',
  'husband',
  'mention',
  'thing',
  'told',
  'confid',
  'therapist',
  'sinc',
  'proof',
  'want',
  'accus',
  'either',
  'decid',
  'tell',
  'therapist',
  'lie',
  'knew',
  'would',
  'confront',
  'heard',
  'see',
  'delusion',
  'lie',
  'suspici',
  'becam',
  'sinc',
  'even',
  'thing',
  'made',
  'husband',
  'look',
  'aw',
  'challeng',
  'twist',
  'make',
  'look',
  'good',
  'took',
  'confront',
  'first',
  'never',
  'believ',
  'lie',
  'session',
  'final',
  'convinc',
  'still',
  'furiou',
  'said',
  'want',
  'make',
  'sure',
  'okay',
  'use',
  'therapist',
  'spi',
  'aita'],
 ['rais',
  'christian',
  'household',
  'came',
  'gender',
  'role',
  'ingrain',
  'young',
  'age',
  'granddad',
  'howev',
  'hate',
  'parent',
  'taught',
  'us',
  'way',
  'got',
  'older',
  'becam',
  'close',
  'grandpar',
  'instead',
  'parent',
  'also',
  'older',
  'brother',
  'parent',
  'label',
  'second',
  'king',
  'hous',
  'info',
  'import',
  'grandpar',
  'live',
  'beauti',
  'hous',
  'neighbor',
  'mani',
  'tree',
  'garden',
  'pay',
  'hous',
  'year',
  'special',
  'granddad',
  'also',
  'bad',
  'problem',
  'back',
  'condit',
  'would',
  'get',
  'wors',
  'go',
  'anymor',
  'grandmoth',
  'pass',
  'got',
  'wors',
  'end',
  'need',
  'home',
  'care',
  'want',
  'stranger',
  'home',
  'option',
  'think',
  'due',
  'grandmoth',
  'pass',
  'parent',
  'preach',
  'punish',
  'sin',
  'take',
  'care',
  'plan',
  'put',
  'home',
  'decid',
  'stay',
  'sinc',
  'would',
  'easier',
  'job',
  'work',
  'effect',
  'home',
  'hed',
  'get',
  'care',
  'someon',
  'total',
  'stranger',
  'time',
  'took',
  'care',
  'fill',
  'home',
  'love',
  'laughter',
  'grandmoth',
  'brought',
  'granddad',
  'got',
  'wors',
  'singl',
  'call',
  'mom',
  'dad',
  'brother',
  'joke',
  'said',
  'mayb',
  'give',
  'missi',
  'hous',
  'name',
  'lol',
  'instead',
  'dad',
  'gon',
  'na',
  'give',
  'brother',
  'anyway',
  'laugh',
  'said',
  'assum',
  'joke',
  'fast',
  'forward',
  'worst',
  'happen',
  'one',
  'found',
  'make',
  'call',
  'much',
  'push',
  'away',
  'parent',
  'want',
  'find',
  'news',
  'random',
  'person',
  'funer',
  'first',
  'time',
  'ever',
  'truli',
  'connect',
  'parent',
  'year',
  'hug',
  'cri',
  'togeth',
  'vulner',
  'came',
  'time',
  'telenovela',
  'dramat',
  'intens',
  'hous',
  'suppos',
  'dad',
  'becam',
  'mine',
  'well',
  'mani',
  'thing',
  'dad',
  'plan',
  'give',
  'brother',
  'accus',
  'manipul',
  'granddad',
  'give',
  'brother',
  'yell',
  'week',
  'brother',
  'came',
  'hous',
  'tear',
  'beg',
  'give',
  'hous',
  'sinc',
  'small',
  'wife',
  'babi',
  'argu',
  'husband',
  'want',
  'kid',
  'need',
  'told',
  'leav',
  'felt',
  'horribl',
  'feel',
  'like',
  'asshol',
  'famili',
  'right',
  'need',
  'hous',
  'job',
  'pay',
  'good',
  'money',
  'could',
  'easili',
  'live',
  'somewher',
  'els',
  'hand',
  'though',
  'granddad',
  'want',
  'dad',
  'loss',
  'aita'],
 ['daughter',
  'averi',
  'husband',
  'tom',
  'expect',
  'first',
  'babi',
  'togeth',
  'theyr',
  'excit',
  'get',
  'mani',
  'thing',
  'done',
  'short',
  'time',
  'theyv',
  'busi',
  'late',
  'seen',
  'month',
  'yesterday',
  'visit',
  'hous',
  'talk',
  'babi',
  'mostli',
  'tom',
  'ask',
  'empti',
  'one',
  'room',
  'could',
  'turn',
  'nurseri',
  'yet',
  'confus',
  'question',
  'ask',
  'said',
  'expect',
  'ask',
  'look',
  'said',
  'everi',
  'decent',
  'grandmoth',
  'prepar',
  'nurseri',
  'home',
  'specif',
  'welcom',
  'grandson',
  'new',
  'member',
  'extend',
  'famili',
  'went',
  'give',
  'exampl',
  'common',
  'tradit',
  'know',
  'word',
  'irk',
  'ask',
  'cant',
  'mom',
  'prepar',
  'one',
  'grandson',
  'sinc',
  'grandson',
  'laugh',
  'said',
  'mom',
  'alreadi',
  'one',
  'prepar',
  'paid',
  'mention',
  'tom',
  'famili',
  'well',
  'unlik',
  'us',
  'avali',
  'room',
  'money',
  'afford',
  'whole',
  'nurseri',
  'yet',
  'tom',
  'insist',
  'necesari',
  'make',
  'effort',
  'make',
  'sure',
  'grandson',
  'get',
  'everyth',
  'need',
  'whenev',
  'visit',
  'look',
  'daughter',
  'wonder',
  'agre',
  'look',
  'told',
  'tom',
  'space',
  'money',
  'make',
  'happen',
  'argu',
  'make',
  'happen',
  'affect',
  'mani',
  'visit',
  'get',
  'compar',
  'mom',
  'fulli',
  'prepar',
  'consider',
  'grandbabi',
  'need',
  'averi',
  'final',
  'spoke',
  'told',
  'pleas',
  'tri',
  'move',
  'yo',
  'son',
  'stay',
  'yo',
  'brother',
  'said',
  'boy',
  'old',
  'enough',
  'get',
  'room',
  'tom',
  'pitch',
  'say',
  'boy',
  'share',
  'room',
  'sinc',
  'theyr',
  'boy',
  'convinc',
  'fact',
  'upset',
  'came',
  'suggest',
  'averi',
  'like',
  'took',
  'care',
  'babi',
  'want',
  'anyth',
  'true',
  'convers',
  'turn',
  'argument',
  'left',
  'minut',
  'later',
  'averi',
  'mustv',
  'call',
  'husband',
  'yell',
  'came',
  'home',
  'say',
  'way',
  'treat',
  'daughter',
  'grandchild',
  'told',
  'stori',
  'accus',
  'favor',
  'boy',
  'averi',
  'like',
  'alway',
  'time',
  'think',
  'request',
  'way',
  'reason',
  'edit',
  'one',
  'thing',
  'clarifi',
  'never',
  'said',
  'common',
  'unless',
  'well',
  'famili',
  'think',
  'tom',
  'said',
  'famili',
  'consid',
  'normal',
  'tom',
  'offer',
  'pay',
  'everyth',
  'empti',
  'son',
  'room',
  'said',
  'argument',
  'start',
  'tom',
  'say',
  'im',
  'refus',
  'work',
  'compromis',
  'compromis'],
 ['context',
  'boyfriend',
  'adam',
  'half',
  'year',
  'quietshi',
  'type',
  'hard',
  'get',
  'open',
  'bother',
  'im',
  'one',
  'incom',
  'get',
  'along',
  'easili',
  'though',
  'bea',
  'bit',
  'unreason',
  'sometimeseg',
  'cook',
  'caus',
  'worri',
  'like',
  'food',
  'still',
  'cook',
  'smell',
  'pretti',
  'tell',
  'cook',
  'good',
  'anoth',
  'eg',
  'chore',
  'say',
  'worri',
  'might',
  'breakdamag',
  'someth',
  'frustrat',
  'work',
  'fix',
  'unto',
  'complic',
  'issu',
  'id',
  'put',
  'money',
  'asid',
  'sinc',
  'buy',
  'apart',
  'im',
  'final',
  'abl',
  'get',
  'done',
  'year',
  'told',
  'got',
  'agit',
  'said',
  'wait',
  'littl',
  'longer',
  'til',
  'marri',
  'said',
  'start',
  'complain',
  'bad',
  'feel',
  'see',
  'buy',
  'apart',
  'without',
  'contribut',
  'ask',
  'suppos',
  'becauseit',
  'kinda',
  'sound',
  'like',
  'problem',
  'offens',
  'got',
  'work',
  'gave',
  'option',
  'put',
  'name',
  'titl',
  'buy',
  'apart',
  'til',
  'marriag',
  'itll',
  'becom',
  'share',
  'marit',
  'asset',
  'said',
  'final',
  'drop',
  'eventu',
  'famili',
  'hous',
  'taken',
  'aback',
  'start',
  'complain',
  'apart',
  'told',
  'either',
  'put',
  'name',
  'titl',
  'wait',
  'til',
  'marriag',
  'buy',
  'caus',
  'feel',
  'like',
  'huge',
  'power',
  'imbal',
  'cant',
  'bring',
  'accept',
  'also',
  'said',
  'make',
  'feel',
  'like',
  'contribut',
  'noth',
  'snap',
  'said',
  'reason',
  'feel',
  'like',
  'contribut',
  'noth',
  'liter',
  'contribut',
  'noth',
  'suggest',
  'fix',
  'actual',
  'find',
  'job',
  'decent',
  'incom',
  'famili',
  'look',
  'shock',
  'glanc',
  'got',
  'walk',
  'away',
  'wait',
  'come',
  'back',
  'go',
  'home',
  'caus',
  'mom',
  'said',
  'felt',
  'overwhelm',
  'want',
  'space',
  'basic',
  'start',
  'shame',
  'statement',
  'hint',
  'financi',
  'abus',
  'control',
  'son',
  'home',
  'yet',
  'demand',
  'anoth',
  'tall',
  'apart',
  'probabl',
  'expect',
  'agre',
  'one',
  'option',
  'edit',
  'case',
  'matter',
  'disabl',
  'limit',
  'job',
  'opportun'],
 ['wife',
  'run',
  'websit',
  'dedic',
  'cook',
  'recip',
  'take',
  'pictur',
  'food',
  'eat',
  'wether',
  'lunch',
  'dinner',
  'post',
  'insta',
  'account',
  'honest',
  'im',
  'annoy',
  'wait',
  'long',
  'get',
  'perfeft',
  'shot',
  'food',
  'decor',
  'ad',
  'fork',
  'remov',
  'salad',
  'dish',
  'take',
  'long',
  'lose',
  'appetit',
  'wait',
  'til',
  'done',
  'becom',
  'norm',
  'yesterday',
  'decid',
  'none',
  'came',
  'found',
  'cook',
  'entir',
  'feast',
  'next',
  'cook',
  'project',
  'put',
  'tabl',
  'note',
  'lok',
  'whole',
  'tabl',
  'set',
  'figur',
  'pictur',
  'alreadi',
  'taken',
  'right',
  'said',
  'go',
  'take',
  'pictur',
  'wait',
  'went',
  'upstair',
  'get',
  'camera',
  'grab',
  'spoon',
  'start',
  'fill',
  'plate',
  'everi',
  'dish',
  'made',
  'ruin',
  'look',
  'result',
  'hungri',
  'unwil',
  'wait',
  'around',
  '+',
  'eat',
  'came',
  'downstair',
  'saw',
  'damag',
  'blew',
  'almost',
  'cri',
  'say',
  'ruin',
  'cook',
  'project',
  'work',
  'hour',
  'well',
  'put',
  'effort',
  'said',
  'hungri',
  'wait',
  'kept',
  'yell',
  'much',
  'obnoxi',
  'jerk',
  'wait',
  'til',
  'dhe',
  'took',
  'pictur',
  'dish',
  'made',
  'even',
  'said',
  'attempt',
  'sabotag',
  'success',
  'said',
  'oh',
  'pleas',
  'enough',
  'conspiraci',
  'theori',
  'im',
  'hungri',
  'wait',
  'til',
  'got',
  'perfect',
  'shot',
  'big',
  'argument',
  'shewent',
  'upstair',
  'cri',
  'finish',
  'food',
  'went',
  'cool',
  'bit',
  'return',
  'shed',
  'threaten',
  'shell',
  'never',
  'eat',
  'anyth',
  'cook',
  'said',
  'shed',
  'rather',
  'throw',
  'garbag',
  'give',
  'ungrat',
  'obnoxi',
  'jerk',
  'like',
  'said',
  'cool',
  'told',
  'go',
  'fuck',
  'said',
  'fine',
  'went',
  'spend',
  'night',
  'guest',
  'room',
  'text',
  'word',
  'jerk',
  'time',
  'til',
  'turn',
  'phone',
  'today',
  'gone',
  'complet',
  'radio',
  'silenc',
  'aita'],
 ['ask',
  'ex',
  'divorc',
  'two',
  'month',
  'ago',
  'found',
  'week',
  'later',
  'sister',
  'husband',
  'go',
  'solicitor',
  'complet',
  'surpris',
  'ex',
  'help',
  'career',
  'lot',
  'still',
  'hurt',
  'sister',
  'told',
  'ive',
  'avoid',
  'sinc',
  'find',
  'parent',
  'invit',
  'everyon',
  'dinner',
  'miss',
  'went',
  'tri',
  'realli',
  'hard',
  'bite',
  'tongu',
  'kept',
  'refer',
  'ex',
  'wife',
  'told',
  'would',
  'stay',
  'marri',
  'go',
  'lose',
  'lot',
  'divorc',
  'ex',
  'end',
  'tell',
  'real',
  'piec',
  'shit',
  'front',
  'everybodi',
  'includ',
  'daughter',
  'sister',
  'got',
  'angri',
  'say',
  'front',
  'daughter',
  'mad',
  'told',
  'care',
  'bastard',
  'piss',
  'aita'],
 ['sister',
  'gave',
  'birth',
  'month',
  'ago',
  'brought',
  'babi',
  'mine',
  'wife',
  'wed',
  'breastfe',
  'whenev',
  'goe',
  'visit',
  'hous',
  'shell',
  'breastfe',
  'front',
  'us',
  'visit',
  'parent',
  'shell',
  'breastfe',
  'go',
  'public',
  'set',
  'shell',
  'sit',
  'bench',
  'park',
  'breastfe',
  'go',
  'restaur',
  'breastfe',
  'everi',
  'ive',
  'never',
  'spoken',
  'know',
  'shell',
  'get',
  'mad',
  'offend',
  'wed',
  'lost',
  'cool',
  'recept',
  'dinner',
  'kindli',
  'approach',
  'ask',
  'bring',
  'formula',
  'least',
  'bump',
  'milk',
  'put',
  'bottl',
  'moment',
  'said',
  'feel',
  'comfort',
  'breastfeed',
  'get',
  'milk',
  'pain',
  'said',
  'could',
  'make',
  'sacrific',
  'compromis',
  'one',
  'day',
  'instead',
  'front',
  'guest',
  'wed',
  'said',
  'cant',
  'much',
  'babi',
  'milk',
  'told',
  'thought',
  'instead',
  'complet',
  'embarrass',
  'us',
  'told',
  'wife',
  'deal',
  'said',
  'im',
  'ah',
  'immedi',
  'apologis',
  'sister',
  'parent',
  'also',
  'side',
  'sister',
  'pretti',
  'much',
  'everyon',
  'think',
  'im',
  'ah',
  'sinc',
  'im',
  'person',
  'problem',
  'reason',
  'decid',
  'call',
  'consid',
  'bad',
  'etiquett',
  'tacki',
  'formal',
  'event',
  'could',
  'find',
  'anoth',
  'solut',
  'night',
  'aita'],
 ['almost',
  'three',
  'year',
  'old',
  'beauti',
  'littl',
  'girl',
  'week',
  'shi',
  'third',
  'birthday',
  'babi',
  'hospic',
  'four',
  'week',
  'ago',
  'gone',
  'remiss',
  'late',
  'may',
  'unfortun',
  'cancer',
  'return',
  'except',
  'crush',
  'optic',
  'nerv',
  'cm',
  'long',
  'multipl',
  'doctor',
  'recommend',
  'make',
  'daughter',
  'comfort',
  'possibl',
  'believ',
  'remov',
  'tumor',
  'good',
  'option',
  'much',
  'say',
  'regard',
  'diagnosi',
  'heartbroken',
  'suffic',
  'husband',
  'make',
  'ton',
  'memori',
  'past',
  'week',
  'weve',
  'includ',
  'famili',
  'memori',
  'feel',
  'want',
  'spend',
  'much',
  'time',
  'daughter',
  'possibl',
  'mother',
  'law',
  'call',
  'yesterday',
  'tell',
  'book',
  'ticketshotelairfar',
  'trip',
  'next',
  'month',
  'thought',
  'sound',
  'fun',
  'said',
  'take',
  'toddler',
  'daughter',
  'husband',
  'invit',
  'husband',
  'daughter',
  'even',
  'three',
  'yet',
  'never',
  'stay',
  'overnight',
  'anywher',
  'mother',
  'law',
  'want',
  'take',
  'one',
  'entir',
  'week',
  'across',
  'countri',
  'alon',
  'suggest',
  'husband',
  'go',
  'way',
  'daughter',
  'comfort',
  'god',
  'sake',
  'event',
  'die',
  'cant',
  'gone',
  'week',
  'nurs',
  'care',
  'suggest',
  'go',
  'shorter',
  'amount',
  'time',
  'came',
  'variou',
  'suggest',
  'turn',
  'add',
  'daughter',
  'hospic',
  'still',
  'would',
  'comfort',
  'toddler',
  'across',
  'countri',
  'week',
  'alon',
  'without',
  'parent',
  'child',
  'hospic',
  'add',
  'anoth',
  'layer',
  'complex',
  'situat',
  'told',
  'mother',
  'law',
  'decis',
  'made',
  'alon',
  'without',
  'consult',
  'us',
  'solid',
  'call',
  'name',
  'hung',
  'call',
  'husband',
  'call',
  'name',
  'suggest',
  'would',
  'fight',
  'right',
  'daughter',
  'die',
  'im',
  'alreadi',
  'griev',
  'husband',
  'said',
  'acquiesc',
  'mother',
  'trip',
  'avoid',
  'drama',
  'even',
  'though',
  'agre',
  'daughter',
  'young',
  'want',
  'spend',
  'time',
  'cancer',
  'take',
  'littl',
  'etc',
  'said',
  'variou',
  'reason',
  'say',
  'edit',
  'thank',
  'everyon',
  'took',
  'time',
  'share',
  'thought',
  'insight',
  'appreci',
  'outpour',
  'messag',
  'im',
  'sorri',
  'chanc',
  'repli',
  'want',
  'add',
  'thing',
  'mother',
  'law',
  'live',
  'counti',
  'us',
  'citi',
  'parent',
  'minut',
  'drive',
  'without',
  'traffic',
  'howev',
  'law',
  'alway',
  'adam',
  'visit',
  'usual',
  'take',
  'daughter',
  'everi',
  'week',
  'hour',
  'visit',
  'rare',
  'ever',
  'come',
  'home',
  'parent',
  'like',
  'visit',
  'alway',
  'daughter',
  'much',
  'closer',
  'parent',
  'reason',
  'anytim',
  'husband',
  'go',
  'date',
  'night',
  'parent',
  'come',
  'watch',
  'like',
  'comfort',
  'zone',
  'cancer',
  'sinc',
  'cancer',
  'diagnosi',
  'weve',
  'hospit',
  'week',
  'time',
  'parent',
  'still',
  'much',
  'involv',
  'help',
  'im',
  'form',
  'drop',
  'meal',
  'help',
  'laundri',
  'etc',
  'im',
  'close',
  'famili',
  'famili',
  'respect',
  'us',
  'need',
  'space',
  'famili',
  'time',
  'think',
  'law',
  'may',
  'expedit',
  'guilt',
  'made',
  'much',
  'effort',
  'yo',
  'visit',
  'us',
  'see',
  'us',
  'accommod',
  'us',
  'alway',
  'daughter',
  'law',
  'alway',
  'felt',
  'like',
  'incub',
  'facilit',
  'relationship',
  'child',
  'also',
  'add',
  'set',
  'distanc',
  'much',
  'ive',
  'cut',
  'contact',
  'mil',
  'want',
  'around',
  'fiasco',
  'ive',
  'complet',
  'block',
  'phone',
  'commun',
  'husband',
  'sad',
  'say',
  'understand',
  'mention',
  'eye',
  'open',
  'situat',
  'realli',
  'mani',
  'level',
  'second',
  'edit',
  'saw',
  'variou',
  'command',
  'mother',
  'law',
  'possibl',
  'want',
  'take',
  'child',
  'trip',
  'get',
  'altern',
  'treatment',
  'mother',
  'law',
  'plan',
  'take',
  'child',
  'disney',
  'world',
  'florida',
  'across',
  'countri',
  'live',
  'mother',
  'law',
  'live',
  'state',
  'counti',
  'us',
  'husband',
  'taken',
  'child',
  'disneyland',
  'time',
  'life',
  'recent',
  'go',
  'one',
  'day',
  'exhaust',
  'daughter',
  'spent',
  'day',
  'cant',
  'imagin',
  'daughter',
  'handl',
  'disney',
  'world',
  'day',
  'also',
  'would',
  'like',
  'said',
  'trip',
  'even',
  'child',
  'die',
  'would',
  'still',
  'comfort',
  'go',
  'without',
  'bizmar',
  'situat',
  'mother',
  'law',
  'one',
  'altern',
  'treatment',
  'right',
  'ask',
  'shock',
  'point',
  'either',
  'way',
  'child',
  'go',
  'anywher',
  'supervis',
  'ive',
  'alreadi',
  'made',
  'clear',
  'husband',
  'want',
  'come',
  'visit',
  'home',
  'even',
  'im',
  'still',
  'board',
  'everyth',
  'transpir',
  'ive',
  'think',
  'realli',
  'deepli',
  'last',
  'month',
  'even',
  'last',
  'hour',
  'know',
  'continu',
  'part',
  'famili',
  'im',
  'tri',
  'think',
  'far',
  'ahead',
  'im',
  'serious',
  'doubt',
  'continu',
  'marriag',
  'thank',
  'everyon',
  'third',
  'edit',
  'realli',
  'close',
  'famili',
  'specif',
  'mom',
  'aunt',
  'know',
  'wish',
  'daughter',
  'husband',
  'argu',
  'daughter',
  'buri',
  'good',
  'week',
  'aw',
  'want',
  'buri',
  'grandma',
  'parent',
  'buri',
  'want',
  'buri',
  'cemeteri',
  'grandpar',
  'buri',
  'plan',
  'buri',
  'husband',
  'militari',
  'im',
  'confus',
  'want',
  'buri',
  'combat',
  'brother',
  'entir',
  'fiasco',
  'mother',
  'put',
  'foot',
  'would',
  'like',
  'daughter',
  'final',
  'rest',
  'place',
  'never',
  'thought',
  'would',
  'much',
  'back',
  'forth',
  'get',
  'buri',
  'week',
  'long',
  'trip',
  'invit',
  'consult',
  'acquiesc',
  'mother',
  'wish',
  'shit',
  'show',
  'say',
  'least',
  'love',
  'husband',
  'appal',
  'behavior',
  'also',
  'add',
  'famili',
  'support',
  'want',
  'daughter',
  'buri',
  'topic',
  'came',
  'even',
  'said',
  'wherev',
  'want',
  'choic',
  'even',
  'entertain',
  'cremat',
  'tri',
  'come',
  'middl',
  'ground',
  'sort',
  'even',
  'want',
  'discuss',
  'burial',
  'cremat',
  'absolut',
  'ive',
  'avoid',
  'feel',
  'morbid',
  'discuss',
  'daughter',
  'still',
  'aliv',
  'husband',
  'famili',
  'upset',
  'brought',
  'topic',
  'automat',
  'want',
  'daughter',
  'cemeteri',
  'choic',
  'main',
  'argument',
  'daughter',
  'carri',
  'last',
  'name',
  'go',
  'argument',
  'famili',
  'alreadi',
  'four',
  'open',
  'plot',
  'want',
  'make',
  'one',
  'doubl',
  'time',
  'come',
  'im',
  'even',
  'exhaust',
  'write',
  'life',
  'team',
  'unit',
  'grief',
  'feel',
  'like',
  'babi',
  'famili',
  'hold'],
 ['invit',
  'sister',
  'th',
  'birthday',
  'day',
  'ago',
  'restaur',
  'husband',
  'come',
  'said',
  'meet',
  'dinner',
  'client',
  'made',
  'famili',
  'feel',
  'let',
  'especi',
  'sister',
  'want',
  'also',
  'th',
  'birthday',
  'big',
  'deal',
  'obvious',
  'surpris',
  'arriv',
  'notic',
  'husband',
  'meet',
  'place',
  'tabl',
  'right',
  'corner',
  'men',
  'sit',
  'parent',
  'guest',
  'saw',
  'well',
  'wave',
  'saw',
  'ignor',
  'obvious',
  'much',
  'surpris',
  'parent',
  'ask',
  'even',
  'come',
  'tabl',
  'acknowledg',
  'cake',
  'arriv',
  'got',
  'walk',
  'tabl',
  'stood',
  'said',
  'excus',
  'husband',
  'silent',
  'ask',
  'introduc',
  'client',
  'hed',
  'take',
  'minut',
  'join',
  'famili',
  'candl',
  'blow',
  'say',
  'happi',
  'birthday',
  'bare',
  'let',
  'phrase',
  'said',
  'think',
  'im',
  'busi',
  'right',
  'insist',
  'say',
  'itd',
  'take',
  'coupl',
  'minut',
  'itd',
  'mean',
  'much',
  'sister',
  'stare',
  'stare',
  'awkwardli',
  'back',
  'client',
  'said',
  'noth',
  'got',
  'parent',
  'motion',
  'hurri',
  'sat',
  'us',
  'sister',
  'blew',
  'candl',
  'cut',
  'cake',
  'parent',
  'insist',
  'take',
  'piec',
  'join',
  'us',
  'selfi',
  'got',
  'walk',
  'back',
  'tabl',
  'look',
  'piss',
  'talk',
  'til',
  'met',
  'later',
  'home',
  'upset',
  'star',
  'scold',
  'infront',
  'parent',
  'say',
  'embarrass',
  'made',
  'look',
  'unprofession',
  'ruin',
  'busi',
  'meet',
  'told',
  'overreact',
  'sinc',
  'took',
  'minut',
  'sister',
  'birthday',
  'famili',
  'want',
  'join',
  'sinc',
  'liter',
  'restaur',
  'call',
  'ignor',
  'accus',
  'tamper',
  'work',
  'respond',
  'ignor',
  'mine',
  'famili',
  'presenc',
  'unaccept',
  'argu',
  'start',
  'stone',
  'wall',
  'refus',
  'talk',
  'fyi',
  'issu',
  'miss',
  'event',
  'see',
  'alreadi',
  'becom',
  'differ',
  'stori',
  'also',
  'liter',
  'took',
  '-',
  'minut',
  'even',
  'eat',
  'drink',
  'sat',
  'watch'],
 ['recent',
  'got',
  'marri',
  'husband',
  'scott',
  'met',
  'engag',
  'former',
  'fianc',
  'martin',
  'broke',
  'relationship',
  'sort',
  'push',
  'famili',
  'doctor',
  'come',
  'wealthi',
  'famili',
  'relationship',
  'end',
  'mom',
  'devast',
  'best',
  'bring',
  'us',
  'back',
  'togeth',
  'exampl',
  'lie',
  'martin',
  'pregnant',
  'save',
  'us',
  'year',
  'ago',
  'good',
  'term',
  'includ',
  'martin',
  'mom',
  'bit',
  'tension',
  'toward',
  'scott',
  'treat',
  'well',
  'constantli',
  'make',
  'passiv',
  'nag',
  'comment',
  'compar',
  'martin',
  'time',
  'bother',
  'us',
  'tri',
  'let',
  'slide',
  'mom',
  'kept',
  'tell',
  'scott',
  'diamond',
  'ring',
  'new',
  'car',
  'bank',
  'account',
  'martin',
  'got',
  'fiance',
  'kept',
  'send',
  'photo',
  'say',
  'gener',
  'martin',
  'fiance',
  'compar',
  'scott',
  'done',
  'told',
  'stop',
  'apolog',
  'last',
  'week',
  'parent',
  'hous',
  'social',
  'gather',
  'lot',
  'rel',
  'came',
  'dinner',
  'dinner',
  'tabl',
  'mom',
  'ask',
  'scott',
  'saw',
  'text',
  'sent',
  'day',
  'said',
  'sorri',
  'notic',
  'told',
  'check',
  'right',
  'read',
  'loud',
  'everyon',
  'tabl',
  'could',
  'hear',
  'took',
  'phone',
  'start',
  'read',
  'text',
  'loud',
  'text',
  'mention',
  'martin',
  'got',
  'fiance',
  'new',
  'hous',
  'gener',
  'said',
  'martin',
  'younger',
  'scott',
  'yet',
  'abl',
  'buy',
  'hous',
  'basic',
  'shame',
  'scott',
  'inabl',
  'buy',
  'hous',
  'wrap',
  'say',
  'martin',
  'mayb',
  'bad',
  'afteral',
  'shock',
  'scott',
  'piss',
  'obvious',
  'howev',
  'lash',
  'anyth',
  'look',
  'text',
  'smile',
  'said',
  'know',
  'get',
  'entir',
  'text',
  'public',
  'educ',
  'year',
  'yet',
  'cant',
  'differenti',
  'passiv',
  'contract',
  'good',
  'god',
  'thought',
  'children',
  'mustv',
  'left',
  'behind',
  'everyon',
  'tabl',
  'bust',
  'laughter',
  'mom',
  'face',
  'went',
  'pale',
  'decid',
  'leav',
  'tabl',
  'sister',
  'start',
  'yell',
  'say',
  'scott',
  'aw',
  'rude',
  'need',
  'get',
  'apolog',
  'immedi',
  'forembarrass',
  'mom',
  'tabl',
  'refus',
  'tell',
  'apolog',
  'point',
  'judgement',
  'toward',
  'defend',
  'say',
  'let',
  'know',
  'confid',
  'took',
  'person',
  'left',
  'kept',
  'get',
  'told',
  'talk',
  'get',
  'apolog'],
 ['past',
  'month',
  'good',
  'relationship',
  'mom',
  'stepdad',
  'im',
  'angri',
  'year',
  'ago',
  'dad',
  'pass',
  'away',
  'left',
  'inherit',
  'im',
  'suppos',
  'get',
  'th',
  'bday',
  'im',
  'also',
  'get',
  'survivor',
  'benefit',
  'mom',
  'use',
  'need',
  'thing',
  'like',
  'use',
  'inherit',
  'bought',
  'hous',
  'move',
  'weird',
  'alway',
  'live',
  'bedroom',
  'apart',
  'stepdad',
  'substitut',
  'teacher',
  'mom',
  'part',
  'time',
  'recept',
  'never',
  'even',
  'enough',
  'go',
  'vacat',
  'someth',
  'sudden',
  'larg',
  'hous',
  'nowher',
  'mg',
  'mom',
  'look',
  'guilti',
  'final',
  'admit',
  'use',
  'dad',
  'left',
  'buy',
  'hous',
  'lost',
  'shit',
  'tri',
  'justifi',
  'ask',
  'mean',
  'theyr',
  'move',
  'im',
  'hous',
  'gone',
  'name',
  'theyr',
  'like',
  'thought',
  'supposedli',
  'hous',
  'max',
  'time',
  'wouldv',
  'live',
  'month',
  'still',
  'money',
  'left',
  'went',
  'cheap',
  'colleg',
  'still',
  'cant',
  'believ',
  'use',
  'money',
  'someth',
  'amount',
  'couldv',
  'help',
  'get',
  'damm',
  'hous',
  'also',
  'think',
  'funni',
  'sinc',
  'stepdad',
  'like',
  'dad',
  'sinc',
  'spend',
  'time',
  'meant',
  'mom',
  'pay',
  'littl',
  'child',
  'support',
  'care',
  'use',
  'money',
  'left',
  'sorri',
  'bit',
  'rant',
  'im',
  'ask',
  'asshol',
  'last',
  'saturday',
  'famili',
  'came',
  'stay',
  'hous',
  'stay',
  'friday',
  'night',
  'nxt',
  'morn',
  'im',
  'get',
  'readi',
  'go',
  'work',
  'made',
  'egg',
  'hurri',
  'left',
  'stepdad',
  'ask',
  'come',
  'famili',
  'told',
  'im',
  'alreadi',
  'leav',
  'work',
  'gon',
  'na',
  'time',
  'make',
  'someth',
  'everyon',
  'act',
  'like',
  'big',
  'deal',
  'im',
  'littl',
  'late',
  'sinc',
  'rare',
  'peopl',
  'hous',
  'got',
  'back',
  'forth',
  'im',
  'go',
  'stop',
  'make',
  'breakfast',
  'whne',
  'pull',
  'talk',
  'like',
  'hous',
  'btw',
  'door',
  'kitchen',
  'lead',
  'right',
  'live',
  'room',
  'could',
  'hear',
  'said',
  'loudli',
  'actual',
  '*',
  '*',
  'hous',
  'sinc',
  'paid',
  'money',
  'forget',
  'stole',
  'mom',
  'expect',
  'apolog',
  'embarrass',
  'front',
  'whole',
  'famili',
  'left',
  'shit',
  'say',
  'alreadi',
  'went',
  'home',
  'time',
  'got',
  'home',
  'could',
  'feel',
  'tension',
  'straight',
  'ignor',
  'bad',
  'feel',
  'like',
  'anyth',
  'apolog',
  'think',
  'im',
  'good',
  'son',
  'kind',
  '-hole',
  'wan',
  'na',
  'know',
  'feel'],
 ['decad',
  'four',
  'best',
  'friend',
  'annual',
  'fish',
  'trip',
  'alway',
  'wive',
  'girlfriend',
  'rule',
  'sinc',
  'begin',
  'one',
  'ever',
  'violat',
  'two',
  'year',
  'ago',
  'friend',
  'tim',
  'told',
  'group',
  'want',
  'bring',
  'five',
  'year',
  'old',
  'son',
  'sort',
  'pass',
  'tradit',
  'next',
  'gener',
  'point',
  'tim',
  'kid',
  'daughter',
  'three',
  'two',
  'young',
  'fish',
  'support',
  'tim',
  'idea',
  'made',
  'big',
  'deal',
  'littl',
  'guy',
  'great',
  'time',
  'came',
  'last',
  'year',
  'well',
  'friend',
  'randi',
  'four',
  'month',
  'old',
  'son',
  'babi',
  'born',
  'tim',
  'gave',
  'randi',
  'children',
  'fish',
  'pole',
  'give',
  'son',
  'fifth',
  'birthday',
  'seem',
  'clear',
  'tradit',
  'evolv',
  'us',
  '+',
  'kid',
  'im',
  'cool',
  'mention',
  'friend',
  'day',
  'daughter',
  'excit',
  'year',
  'fish',
  'trip',
  'look',
  'like',
  'crazi',
  'tim',
  'said',
  'bring',
  'baffl',
  'super',
  'support',
  'bring',
  'son',
  'differ',
  'daughter',
  'age',
  'tim',
  'son',
  'first',
  'came',
  'trip',
  'anoth',
  'friend',
  'brought',
  'wive',
  'girlfriend',
  'rule',
  'piss',
  'five',
  'year',
  'old',
  'daughter',
  'anyon',
  'wife',
  'girlfriend',
  'said',
  'want',
  'daughter',
  'want',
  'tim',
  'son',
  'tim',
  'offend',
  'storm',
  'randi',
  'said',
  'said',
  'uncal',
  'said',
  'im',
  'bring',
  'daughter',
  'want',
  'make',
  'sure',
  'im',
  'entitl',
  'prick',
  'aita',
  'updat',
  'sent',
  'post',
  'friend',
  'talk',
  'end',
  'apolog',
  'daughter',
  'definit',
  'come',
  'trip',
  'know',
  'mani',
  'peopl',
  'assum',
  'friend',
  'sexist',
  'horribl',
  'theyr',
  'realli',
  'worri',
  'daughter',
  'would',
  'stay',
  'hotel',
  'instead',
  'usual',
  'cabin',
  'abl',
  'mani',
  'activ',
  'assur',
  'daughter',
  'sleep',
  'without',
  'air',
  'condit',
  'easili',
  'tim',
  'son',
  'go',
  'one',
  'troubl',
  'keep',
  'five',
  'year',
  'old',
  'energi',
  'everyon',
  'apolog',
  'bring',
  'wive',
  'girlfriend',
  'rule',
  'agre',
  'shitti',
  'thing',
  'say',
  'good',
  'thank',
  'support'],
 ['mobil',
  'ive',
  'never',
  'post',
  'sorri',
  'advanc',
  'met',
  'husband',
  'yr',
  'ago',
  'time',
  'singl',
  'dad',
  'mo',
  'babi',
  'girl',
  'lilyf',
  'work',
  'bakeri',
  'hed',
  'stop',
  'everi',
  'saturday',
  'walk',
  'eventu',
  'start',
  'go',
  'got',
  'marri',
  'yr',
  'ago',
  'legal',
  'adopt',
  'lili',
  'soon',
  'famili',
  'tradit',
  'oldest',
  'daughter',
  'get',
  'gift',
  'old',
  'sapphir',
  'ring',
  'th',
  'birthday',
  'ring',
  'belong',
  'grandmoth',
  'gave',
  'aunt',
  'gave',
  'cousin',
  'male',
  'lili',
  'th',
  'birthday',
  'month',
  'ago',
  'gave',
  'ring',
  'oldest',
  'daughter',
  'love',
  'ring',
  'anyth',
  'put',
  'chain',
  'wear',
  'around',
  'neck',
  'could',
  'keep',
  'better',
  'track',
  'month',
  'ive',
  'never',
  'seen',
  'take',
  'sister',
  'mia',
  'one',
  'lili',
  'favorit',
  'peopl',
  'lili',
  'realli',
  'love',
  'aunt',
  'sometim',
  'mia',
  'text',
  'let',
  'know',
  'pick',
  'lili',
  'school',
  'go',
  'eat',
  'go',
  'bookstor',
  'someth',
  'like',
  'day',
  'got',
  'one',
  'text',
  'mia',
  'told',
  'safe',
  'fun',
  'make',
  'sure',
  'daughter',
  'came',
  'home',
  'decent',
  'time',
  'school',
  'night',
  'lili',
  'got',
  'home',
  'hour',
  'dinner',
  'bare',
  'said',
  'hello',
  'dad',
  'went',
  'room',
  'thought',
  'mayb',
  'tire',
  'immedi',
  'ask',
  'go',
  'later',
  'night',
  'went',
  'go',
  'check',
  'want',
  'sure',
  'walk',
  'room',
  'saw',
  'cri',
  'ask',
  'wrong',
  'took',
  'minut',
  'eventu',
  'told',
  'mia',
  'took',
  'ring',
  '*',
  'famili',
  '*',
  'heirloom',
  'suppos',
  'go',
  'actual',
  'oldest',
  'daughter',
  'adopt',
  'mean',
  'realli',
  'famili',
  'reason',
  'go',
  'mia',
  'apart',
  'night',
  'get',
  'back',
  'spent',
  'rest',
  'even',
  'reassur',
  'lili',
  'famili',
  '%',
  'actual',
  'oldest',
  'daughter',
  'matter',
  'dna',
  'anyon',
  'els',
  'say',
  'left',
  'mia',
  'voicemail',
  'next',
  'morn',
  'tell',
  'return',
  'ring',
  'drive',
  'get',
  'text',
  'say',
  'would',
  'give',
  'daughter',
  'shed',
  'keep',
  'safe',
  'make',
  'sure',
  'give',
  'back',
  'wrong',
  'person',
  'told',
  'return',
  'ring',
  'pm',
  'day',
  'would',
  'call',
  'polic',
  'report',
  'stolen',
  'start',
  'text',
  'like',
  'crazi',
  'say',
  'ridicul',
  'much',
  'mom',
  'think',
  'say',
  'id',
  'contact',
  'polic',
  'take',
  'far',
  'mia',
  'tri',
  'keep',
  'famili',
  'tradit'],
 ['titl',
  'sound',
  'bad',
  'hear',
  'work',
  'colleagu',
  'mari',
  'adam',
  'late',
  '-earli',
  'mari',
  'start',
  'compani',
  'first',
  'got',
  'adam',
  'join',
  'work',
  'differ',
  'depart',
  'mari',
  'mine',
  'later',
  'mari',
  'left',
  'compani',
  'pursu',
  'anoth',
  'carrier',
  'start',
  'compani',
  'alreadi',
  'marri',
  'year',
  'mari',
  'kindest',
  'loveliest',
  'person',
  'ive',
  'ever',
  'met',
  'alway',
  'polit',
  'help',
  'would',
  'cheer',
  'anyon',
  'miss',
  'dearli',
  'came',
  'shock',
  'found',
  'divorc',
  'adam',
  'cheat',
  'call',
  'express',
  'sorri',
  'happen',
  'talk',
  'almost',
  'daipi',
  'ever',
  'sinc',
  'impress',
  'well',
  'mari',
  'hold',
  'situat',
  'bad',
  'mouth',
  'adam',
  'thing',
  'mention',
  'wed',
  'dress',
  'famili',
  'heirloom',
  'went',
  'miss',
  'move',
  'stuff',
  'apart',
  'thought',
  'might',
  'misplac',
  'differ',
  'box',
  'turn',
  'eventu',
  'year',
  'pass',
  'work',
  'depart',
  'adam',
  'good',
  'work',
  'colleagu',
  'dismiss',
  'ignor',
  'sometim',
  'adam',
  'invit',
  'wed',
  'ladi',
  'chelsea',
  'cheat',
  'mari',
  'entir',
  'depart',
  'invit',
  'said',
  'ye',
  'make',
  'sure',
  'mari',
  'ok',
  'ive',
  'also',
  'told',
  'wed',
  'far',
  'live',
  'could',
  'go',
  'drink',
  'want',
  'day',
  'adam',
  'wed',
  'notic',
  'chelsea',
  'wear',
  'similar',
  'dress',
  'mari',
  'worn',
  'photo',
  'adam',
  'wed',
  'year',
  'ago',
  'without',
  'think',
  'snap',
  'pictur',
  'send',
  'mari',
  'caption',
  'say',
  'dress',
  'look',
  'familiar',
  'mari',
  'saw',
  'messag',
  'respond',
  'hour',
  'later',
  'polic',
  'shown',
  'venu',
  'need',
  'add',
  'polic',
  'countri',
  'ruthless',
  'theft',
  'consid',
  'crimin',
  'matter',
  'polic',
  'deal',
  'polic',
  'ask',
  'chelsea',
  'take',
  'dress',
  'jewelleri',
  'chelsea',
  'refus',
  'start',
  'argu',
  'adam',
  'join',
  'rude',
  'polic',
  'taken',
  'polic',
  'station',
  'everyon',
  'wed',
  'leav',
  'tri',
  'call',
  'mari',
  'pick',
  'phone',
  'found',
  'later',
  'chelsea',
  'wear',
  'mari',
  'wed',
  'dress',
  'heirloom',
  'mari',
  'spot',
  'pictur',
  'sent',
  'call',
  'polic',
  'appar',
  'previous',
  'ask',
  'adam',
  'declin',
  'say',
  'never',
  'saw',
  'saw',
  'pictur',
  'knew',
  'lie',
  'stole',
  'chelsea',
  'leav',
  'wed',
  'dress',
  'jeweleri',
  'polic',
  'station',
  'go',
  'home',
  'wear',
  'underwear',
  'adam',
  'jacket',
  'bail',
  'yesterday',
  'adam',
  'return',
  'offic',
  'went',
  'complet',
  'mental',
  'blame',
  'send',
  'pictur',
  'mari',
  'ruin',
  'wed',
  'would',
  'also',
  'call',
  'asshol'],
 ['week',
  'ago',
  'wife-',
  'went',
  'prematur',
  'labor',
  'daughter',
  'week',
  'entir',
  'unexpect',
  'wife',
  'daughter',
  'horribl',
  'time',
  'becam',
  'quit',
  'danger',
  'wife',
  'becam',
  'preeclampt',
  'among',
  'seriou',
  'complic',
  'first',
  'week',
  'even',
  'sure',
  'either',
  'wife',
  'daughter',
  'would',
  'make',
  'luckili',
  'surviv',
  'daughter',
  'still',
  'nicu',
  'week',
  'probabl',
  'anoth',
  'wife',
  'still',
  'hospit',
  'well',
  'horribl',
  'struggl',
  'wife',
  'healthi',
  'activ',
  'person',
  'even',
  'pregnanc',
  'abl',
  'maintain',
  'somewhat',
  'activ',
  'lifestyl',
  'trauma',
  'bodi',
  'went',
  'basic',
  'start',
  'back',
  'squar',
  'one',
  'even',
  'abl',
  'hold',
  'daughter',
  'yet',
  'wife',
  'lot',
  'struggl',
  'far',
  'birth',
  'trauma',
  'feel',
  'confus',
  'hurt',
  'experi',
  'told',
  'feel',
  'betray',
  'bodi',
  'even',
  'weakest',
  'moment',
  'even',
  'said',
  'regret',
  'get',
  'pregnant',
  'entir',
  'much',
  'suffer',
  'worri',
  'shell',
  'never',
  'person',
  'feel',
  'horribl',
  'feel',
  'multipl',
  'mental',
  'health',
  'profession',
  'work',
  'help',
  'support',
  'final',
  'reach',
  'point',
  'receiv',
  'visitor',
  'famili',
  'live',
  'close',
  'famili',
  'live',
  'state',
  'away',
  'await',
  'chanc',
  'meet',
  'babi',
  'check',
  'wife',
  'parent',
  'grandpar',
  'flew',
  'warn',
  'famili',
  'beforehand',
  'wife',
  'daughter',
  'still',
  'fragil',
  'stage',
  'patient',
  'brought',
  'see',
  'wife',
  'grand',
  'mother',
  'immedi',
  'went',
  'want',
  'talk',
  'birth',
  'experi',
  'wife',
  'told',
  'one',
  'worst',
  'experi',
  'life',
  'grandmoth',
  'respond',
  'tell',
  'worst',
  'yet',
  'come',
  'struggl',
  'mother',
  'wife',
  'got',
  'upset',
  'comment',
  'start',
  'scream',
  '-',
  'get',
  'never',
  'seen',
  'wife',
  'like',
  'could',
  'tell',
  'feel',
  'extrem',
  'stress',
  'quickli',
  'escort',
  'famili',
  'told',
  'would',
  'best',
  'left',
  'could',
  'talk',
  'later',
  'caus',
  'even',
  'stress',
  'wife',
  'famili',
  'said',
  'appal',
  'wife',
  'behavior',
  'defend',
  'grandmoth',
  'end',
  'day',
  'feel',
  'respons',
  'wife',
  'advoc',
  'time',
  'especi',
  'becom',
  'bit',
  'tension',
  'extend',
  'side',
  'famili',
  'howev',
  'told',
  'wife',
  'want',
  'stress',
  'plan',
  'deal',
  'alon',
  'entir',
  'apolog',
  'wife',
  'behalf',
  'ah',
  'ill',
  'see',
  'wife',
  'ah'],
 ['im',
  'childfre',
  'two',
  'sister',
  'lisa',
  'anni',
  'lisa',
  'two',
  'boy',
  'anni',
  'struggl',
  'financi',
  'littl',
  'good',
  'job',
  'year',
  'offer',
  'take',
  'nephew',
  'vacat',
  'year',
  'niec',
  'small',
  'feel',
  'comfort',
  'alon',
  'anni',
  'total',
  'get',
  'told',
  'sister',
  'bring',
  'boy',
  'appart',
  'weekend',
  'see',
  'theyll',
  'get',
  'along',
  'im',
  'take',
  'seasid',
  'day',
  'boy',
  'came',
  'first',
  'great',
  'time',
  'order',
  'us',
  'pizza',
  'watch',
  'movi',
  'play',
  'soccer',
  'etc',
  'next',
  'morn',
  'woke',
  'gave',
  'cereal',
  'yro',
  'throw',
  'cereal',
  'floor',
  'say',
  'waffl',
  'weekend',
  'told',
  'cant',
  'waffl',
  'breakfast',
  'today',
  'make',
  'dinner',
  'breakfast',
  'next',
  'day',
  'said',
  'like',
  'cereal',
  'told',
  'toast',
  'peanut',
  'butter',
  'fruit',
  'yell',
  'make',
  'waffl',
  'day',
  'also',
  'cut',
  'shirt',
  'let',
  'cooki',
  'lunch',
  'told',
  'suck',
  'tell',
  'eat',
  'veggi',
  'give',
  'ice',
  'cream',
  'nightmar',
  'yro',
  'yro',
  'behav',
  'great',
  'sister',
  'came',
  'pick',
  'told',
  'anni',
  'happen',
  'said',
  'oh',
  'high',
  'spirit',
  'told',
  'im',
  'take',
  'vacat',
  'also',
  'told',
  'lisa',
  'id',
  'glad',
  'take',
  'boy',
  'super',
  'super',
  'excit',
  'parent',
  'aunt',
  'bite',
  'head',
  'treat',
  'kid',
  'differ',
  'deni',
  'boy',
  'go',
  'seasid',
  'misbehav',
  'aita'],
 ['son',
  'former',
  'relationship',
  'ex',
  'husband',
  'current',
  'im',
  'marri',
  'husband',
  'joe',
  'year',
  'old',
  'son',
  'son',
  'close',
  'stepbroth',
  'mani',
  'reason',
  'includ',
  'age',
  'interest',
  'hobbi',
  'etc',
  'son',
  'like',
  'draw',
  'lot',
  'stepbroth',
  'tend',
  'rip',
  'draw',
  'whenev',
  'get',
  'fight',
  'sibl',
  'stepsibl',
  'fight',
  'constantli',
  'normal',
  'normal',
  'stepson',
  'touch',
  'ruin',
  'son',
  'draw',
  'take',
  'time',
  'effort',
  'sometimesemot',
  'stepson',
  'apolog',
  'everytim',
  'help',
  'boundari',
  'put',
  'place',
  'longer',
  'damag',
  'son',
  'draw',
  'got',
  'son',
  'lock',
  'joe',
  'complain',
  'creat',
  'distanc',
  'boy',
  'suggest',
  'let',
  'resolv',
  'son',
  'drew',
  'pictur',
  'joe',
  'show',
  'us',
  'joe',
  'got',
  'extrem',
  'piss',
  'saw',
  'start',
  'scold',
  'son',
  'includ',
  'stepbroth',
  'got',
  'involv',
  'told',
  'proceed',
  'rip',
  'pictur',
  'half',
  'smaller',
  'smaller',
  'piec',
  'son',
  'start',
  'cri',
  'snap',
  'yell',
  'joe',
  'ask',
  'wth',
  'wrong',
  'told',
  'son',
  'go',
  'upstair',
  'punish',
  'punish',
  'cancel',
  'til',
  'start',
  'includ',
  'stepbroth',
  'draw',
  'told',
  'stop',
  'told',
  'stay',
  'reason',
  'issu',
  'said',
  'made',
  'boy',
  'resent',
  'enabl',
  'son',
  'unjustifi',
  'hatr',
  'stepbroth',
  'set',
  'boundari',
  'kept',
  'air',
  'qout',
  'word',
  'set',
  'brother',
  'remind',
  'son',
  'done',
  'caus',
  'son',
  'exclud',
  'told',
  'none',
  'us',
  'even',
  'right',
  'demand',
  'includ',
  'anyth',
  'son',
  'draw',
  'thing',
  'get',
  'final',
  'say',
  'demand',
  'apolog',
  'son',
  'immedi',
  'joe',
  'sarcast',
  'clap',
  'said',
  'keep',
  'son',
  'grow',
  'anti-soci',
  'soft',
  'went',
  'upstair',
  'leav',
  'rant',
  'basic',
  'fault',
  'stay',
  'son',
  'til',
  'calm',
  'joe',
  'told',
  'expect',
  'apolog',
  'im',
  'treat',
  'parent',
  'undermin',
  'word'],
 ['hello',
  'togeth',
  'husband',
  'austin',
  'year',
  'marri',
  'divorc',
  'ex',
  'wife',
  'kid',
  'eversinc',
  'becam',
  'pregnant',
  'complat',
  '°',
  'becam',
  'obsess',
  'constantli',
  'watch',
  'everi',
  'move',
  'breath',
  'neck',
  'even',
  'hung',
  'photo',
  'sonogram',
  'also',
  'came',
  'list',
  'im',
  'allow',
  'allow',
  'like',
  'drive',
  'eat',
  'certain',
  'food',
  'work',
  'stood',
  'ground',
  'continu',
  'work',
  'also',
  'wear',
  'high',
  'heel',
  'watch',
  'certain',
  'show',
  'see',
  'famili',
  'unless',
  'percaus',
  'taken',
  'exhaust',
  'alreadi',
  'made',
  'wors',
  'yesterday',
  'woke',
  'said',
  'go',
  'doctor',
  'ask',
  'sinc',
  'feel',
  'sick',
  'said',
  'hunch',
  'skip',
  'work',
  'go',
  'appoint',
  'make',
  'sure',
  'felt',
  'someth',
  'wrong',
  'said',
  'went',
  'call',
  'boss',
  'took',
  'day',
  'speechless',
  'decid',
  'go',
  'get',
  'got',
  'kept',
  'scold',
  'thing',
  'night',
  'mightv',
  'caus',
  'problem-',
  'liter',
  'problem',
  'doctor',
  'told',
  'us',
  'ask',
  'check',
  'ask',
  'check',
  'againi',
  'take',
  'ask',
  'got',
  'took',
  'bag',
  'walk',
  'left',
  'argu',
  'doc',
  'got',
  'car',
  'went',
  'home',
  'immedi',
  'kept',
  'call',
  'came',
  'home',
  'start',
  'yell',
  'leav',
  'middl',
  'examin',
  'leav',
  'clinic',
  'blew',
  'upand',
  'told',
  'stand',
  'obsess',
  'anymor',
  'paranoia',
  'made',
  'feel',
  'paranoid',
  'begin',
  'affect',
  'social',
  'life',
  'mental',
  'physic',
  'health',
  'livelihood',
  'look',
  'said',
  'hurt',
  'said',
  'tri',
  'make',
  'sure',
  'babi',
  'fine',
  'aggress',
  'irrespons',
  'toward',
  'babi',
  'entir',
  'time',
  'said',
  'act',
  'like',
  'neglect',
  'mother',
  'babi',
  'even',
  'yet',
  'left',
  'turn',
  'phone',
  'morn',
  'act',
  'distant',
  'expect',
  'sort',
  'apolog',
  'aita',
  'overreact'],
 ['husband',
  'best',
  'friend',
  'femal',
  'got',
  'news',
  'dog',
  'cancer',
  'day',
  'ago',
  'husband',
  'would',
  'call',
  'everyday',
  'til',
  'yesterday',
  'visit',
  'open',
  'door',
  'greet',
  'led',
  'live',
  'room',
  'went',
  'kitchen',
  'get',
  'class',
  'water',
  'husband',
  'ask',
  'came',
  'back',
  'find',
  'live',
  'room',
  'turn',
  'went',
  'guest',
  'room',
  'door',
  'shut',
  'heard',
  'weepingsob',
  'sound',
  'come',
  'insid',
  'knock',
  'got',
  'found',
  'embrac',
  'cri',
  'stood',
  'door',
  'husband',
  'paus',
  'told',
  'give',
  'moment',
  'got',
  'ta',
  'say',
  'feel',
  'comfort',
  'request',
  'remain',
  'stand',
  'got',
  'start',
  'repeatedli',
  'tell',
  'get',
  'told',
  'hous',
  'cant',
  'tell',
  'stay',
  'got',
  'angri',
  'told',
  'get',
  'well',
  'talk',
  'later',
  'refus',
  'ask',
  'wrong',
  'see',
  'tens',
  'situat',
  'give',
  'privaci',
  'told',
  'need',
  'shut',
  'door',
  'reason',
  'nomatt',
  'argu',
  'end',
  'leav',
  'blew',
  'afterward',
  'call',
  'unbeliev',
  'say',
  'respect',
  'friend',
  'go',
  'thtough',
  'hard',
  'time',
  'refus',
  'give',
  'privaci',
  'told',
  'weird',
  'shut',
  'door',
  'becsus',
  'cri',
  'told',
  'petti',
  'overbear',
  'act',
  'like',
  'infront',
  'stop',
  'show',
  'proper',
  'support',
  'complet',
  'gone',
  'radio',
  'silent',
  'act',
  'like',
  'kick',
  'treat',
  'poorli',
  'context',
  'age',
  'involv',
  'femal',
  'femal',
  'male',
  'best',
  'friendsist',
  'like',
  '+',
  'year',
  'tend',
  'emot',
  'highli',
  'sensit',
  'get',
  'along',
  'tend',
  'boundari',
  'stomper',
  'doessay',
  'thing',
  'make',
  'feel',
  'like',
  'know',
  'husband',
  'much',
  'also',
  'compar',
  'us',
  'well',
  'initi',
  'want',
  'come',
  'hous',
  'husband',
  'call',
  'told',
  'come',
  'sinc',
  'see',
  'news',
  'receiv',
  'til',
  'yesterday'],
 ['mil',
  'close',
  'relstionship',
  'civil',
  'toward',
  'bit',
  'passiv',
  'aggress',
  'time',
  'tend',
  'disagre',
  'often',
  'time',
  'live',
  'differ',
  'state',
  'fil',
  'pass',
  'away',
  'suddenli',
  'mil',
  'told',
  'husband',
  'come',
  'attend',
  'funer',
  'book',
  'ticket',
  'fli',
  'state',
  'issu',
  'start',
  'husband',
  'told',
  'sit',
  'togeth',
  'plane',
  'mom',
  'book',
  'first',
  'class',
  'ticket',
  'got',
  'ecconomi',
  'flabbergast',
  'tri',
  'ask',
  'urg',
  'suck',
  'well',
  'talk',
  'later',
  'moment',
  'particular',
  'moment',
  'felt',
  'much',
  'humili',
  'contempt',
  'felt',
  'like',
  'treat',
  'less',
  'even',
  'hard',
  'time',
  'decid',
  'go',
  'go',
  'back',
  'home',
  'husband',
  'shock',
  'decis',
  'go',
  'home',
  'tri',
  'convinc',
  'go',
  'declin',
  'went',
  'alon',
  'end',
  'miss',
  'funer',
  'livid',
  'call',
  'text',
  'nasti',
  'thing',
  'call',
  'petti',
  'spoil',
  'said',
  'grate',
  'mom',
  'paid',
  'ticket',
  'begin',
  'said',
  'owe',
  'goddamn',
  'thing',
  'argu',
  'couldv',
  'book',
  'us',
  'economi',
  'money',
  'issu',
  'call',
  'pathet',
  'think',
  'dad',
  'die',
  'said',
  'cruel',
  'mom',
  'famili',
  'never',
  'forget',
  'miss',
  'funer',
  'ridicul',
  'reason',
  'aita',
  'go',
  'home',
  'eta',
  'one',
  'reason',
  'settl',
  'ecconomi',
  'ticket',
  'want',
  'sit',
  'next',
  'husband',
  'support',
  'sob',
  'whole',
  'ride',
  'airport',
  'want',
  'leav',
  'side',
  'shock',
  'told',
  'sit',
  'togeth',
  'said',
  'like',
  'issu'],
 ['boyfriend',
  'month',
  'kid',
  'singl',
  'dad',
  'pretti',
  'good',
  'term',
  'regard',
  'almost',
  'everyth',
  'come',
  'money',
  'spend',
  'wed',
  'take',
  'turn',
  'invit',
  'weekli',
  'live',
  'togeth',
  'obvious',
  'sever',
  'time',
  'pay',
  'kid',
  'purchas',
  'make',
  'big',
  'issu',
  'sole',
  'reason',
  'purchas',
  'rel',
  'small',
  'pay',
  '$',
  '-',
  'day',
  'call',
  'work',
  'sound',
  'like',
  'hurri',
  'said',
  'found',
  'game',
  'devic',
  'look',
  'long',
  'want',
  'buy',
  'oldest',
  'son',
  'ask',
  'told',
  'short',
  'money',
  'need',
  '$',
  'ask',
  'lend',
  '$',
  'hesit',
  'agre',
  'ask',
  'bank',
  'account',
  'info',
  'could',
  'pull',
  'money',
  'refus',
  'told',
  'wait',
  'til',
  'get',
  'insist',
  'said',
  'hed',
  'handl',
  'send',
  'bank',
  'account',
  'info',
  'end',
  'call',
  'insist',
  'made',
  'uncomfort',
  'still',
  'said',
  'told',
  'either',
  'wait',
  'pay',
  'got',
  'mad',
  'say',
  'get',
  'act',
  'like',
  'got',
  'loud',
  'hung',
  'found',
  'sit',
  'outsid',
  'went',
  'home',
  'wait',
  'extrem',
  'upset',
  'ask',
  'send',
  'account',
  'info',
  'could',
  'pull',
  'money',
  'agre',
  'told',
  'feel',
  'comfort',
  'let',
  'anyon',
  'person',
  'info',
  'especi',
  'come',
  'financ',
  'got',
  'offend',
  'said',
  'im',
  'anyon',
  'im',
  'fing',
  'partner',
  'went',
  'rant',
  'end',
  'pay',
  'game',
  'devic',
  'look',
  'long',
  'kid',
  'mad',
  'fault',
  'fight',
  'left',
  'told',
  'id',
  'better',
  'apolog',
  'son',
  'next',
  'time',
  'call',
  'phone',
  'call',
  'yet',
  'feel',
  'like',
  'act',
  'stupidli',
  'irrat',
  'think',
  'given',
  'info',
  'ask',
  'fori',
  'know',
  'made',
  'right',
  'decis',
  '*',
  '*',
  'updat',
  '*',
  '*',
  'wow',
  'ive',
  'left',
  'thread',
  'first',
  'hour',
  'got',
  'back',
  'hundr',
  'peopl',
  'engagingwow',
  'im',
  'amaz',
  'sinc',
  'mani',
  'want',
  'know',
  'happen',
  'ive',
  'went',
  'place',
  'talk',
  'oldest',
  'son',
  'turn',
  'game',
  'devic',
  'thing',
  'lie',
  'want',
  'money',
  'someth',
  'els',
  'help',
  'pay',
  'one',
  'buddi',
  'car',
  'repair',
  'shock',
  'confess',
  'said',
  'lie',
  'make',
  'kid',
  'get',
  'lend',
  'money',
  'imagin',
  'reaction',
  'blew',
  'left',
  'without',
  'give',
  'chanc',
  'respond',
  'tri',
  'call',
  'phone',
  'still',
  'tri',
  'decid',
  'want',
  'space',
  'think',
  'happen',
  'realli',
  're-evalu',
  'relationship',
  'true',
  'pay',
  'kid',
  'past',
  'found',
  'put',
  'past',
  '$',
  '-',
  'purchas',
  'kid',
  'seen',
  'stuff',
  'said',
  'bought',
  'im',
  'need',
  'space',
  'quiet',
  'though',
  'im',
  'busi',
  'work',
  'best',
  'stay',
  'focus',
  'quit',
  'frankli',
  'longer',
  'sure',
  'could',
  'move',
  'past',
  'thisit',
  'unsettl',
  'issu',
  'lie',
  'use',
  'money',
  'like',
  'love',
  'kid',
  'ador',
  'thrm',
  'hurt',
  'im',
  'sure',
  'could',
  'come',
  'back',
  'might',
  'upset',
  'right',
  'need',
  'timei',
  'knowyeahim',
  'go',
  'lot',
  'think',
  'regard',
  'situat',
  'see',
  'happen',
  'sorri',
  'long',
  'text',
  'want',
  'let',
  'know',
  'situat',
  'whole'],
 ['im',
  'love',
  'mom',
  'affair',
  'left',
  'us',
  'visit',
  'often',
  'could',
  'alway',
  'seem',
  'happi',
  'hate',
  'new',
  'famili',
  'stop',
  'visit',
  'honestli',
  'rare',
  'ever',
  'saw',
  'birthday',
  'event',
  'realli',
  'want',
  'us',
  'close',
  'want',
  'noth',
  'new',
  'husband',
  'ive',
  'kept',
  'distanc',
  'except',
  'feb',
  'th',
  'dad',
  'announc',
  'hed',
  'busi',
  'till',
  'th',
  'grandpar',
  'stuck',
  'visit',
  'rel',
  'itali',
  'realli',
  'nowher',
  'go',
  'mom',
  'jump',
  'chanc',
  'stay',
  'luck',
  'mom',
  'anniversari',
  'husband',
  'sunday',
  'good',
  'time',
  'stay',
  'room',
  'homework',
  'go',
  'friend',
  'avoid',
  'famili',
  'activ',
  'caus',
  'suck',
  'see',
  'lovey',
  'dovey',
  'husband',
  'seem',
  'like',
  'perfect',
  'famili',
  'daughter',
  'morn',
  'anniversari',
  'day',
  'came',
  'bed',
  'tri',
  'cuddl',
  'like',
  'left',
  'us',
  'made',
  'angri',
  'like',
  'cant',
  'go',
  'back',
  'time',
  'pretend',
  'pretend',
  'asleep',
  'stay',
  'curl',
  'frozen',
  'till',
  'left',
  'start',
  'cri',
  'caus',
  'felt',
  'angri',
  'snarki',
  'mom',
  'major',
  'literatur',
  'got',
  'copi',
  'anna',
  'karenina',
  'anniversari',
  'book',
  'ladi',
  'leav',
  'husband',
  'son',
  'lover',
  'ive',
  'never',
  'read',
  'watch',
  'movi',
  'girlfriend',
  'hate',
  'anniversari',
  'parti',
  'sunday',
  'everyon',
  'fun',
  'peopl',
  'gave',
  'gift',
  'gave',
  'mine',
  'mom',
  'saw',
  'seem',
  'shock',
  'said',
  'thank',
  'parti',
  'end',
  'like',
  'hour',
  'night',
  'room',
  'heard',
  'cri',
  'realli',
  'loudli',
  'kinda',
  'eavesdrop',
  'littl',
  'heard',
  'say',
  'stuff',
  'book',
  'husband',
  'tri',
  'calm',
  'next',
  'day',
  'breakfast',
  'left',
  'work',
  'earli',
  'woke',
  'husband',
  'straight',
  'call',
  'asshol',
  'stuff',
  'gift',
  'day',
  'mom',
  'bare',
  'talk',
  'honestli',
  'feel',
  'wrong',
  'made',
  'mom',
  'cri',
  'time',
  'want',
  'know',
  'realli',
  'asshol',
  'edit',
  'thank',
  'mod',
  'lock',
  'everyon',
  'keep',
  'dming',
  'fact',
  'read',
  '*',
  'gave',
  'mom',
  'book',
  'tri',
  'get',
  'across',
  'hate',
  'hous',
  'around',
  'famili',
  'hurt',
  'sympath',
  'son',
  'movi',
  'want',
  'train',
  'run',
  '-',
  'want',
  'happen',
  'mom',
  '*',
  'want',
  'dad',
  'get',
  'back',
  'togeth',
  'mom',
  'happi',
  'fiance',
  '*',
  'dad',
  'reason',
  'want',
  'go',
  'therapi',
  'protect',
  '*',
  'ye',
  'stop',
  'visit',
  'mom',
  'caus',
  'hate',
  'husband',
  'custodi',
  'weekend',
  'break',
  'couldv',
  'forc',
  'sinc',
  'make',
  'us',
  'whenev',
  'go',
  'import',
  'never',
  'tri',
  'anyth',
  'beyond',
  'bare',
  'minimum',
  'go',
  'big',
  'event',
  'edit',
  '--',
  'caus',
  'somebodi',
  'recommend',
  'avoid',
  'dm',
  'updat',
  'updat',
  'ive',
  'post',
  '[',
  'httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post',
  ']',
  'httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post',
  '[',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a',
  ']',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a',
  '[',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and',
  ']',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and',
  '[',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to',
  ']',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate_i_got_into_ap_english_and_my_mom_wants_to'],
 ['love',
  'wife',
  'weve',
  'marri',
  'year',
  'noth',
  'would',
  'chang',
  'except',
  'realli',
  'insecur',
  'nose',
  'get',
  'aggress',
  'tri',
  'comfort',
  'long',
  'rememb',
  'alway',
  'hate',
  'nose',
  'mention',
  'everyday',
  'would',
  'tri',
  'comfort',
  'tell',
  'beauti',
  'chang',
  'anyth',
  'would',
  'get',
  'aggress',
  'yell',
  'im',
  'liar',
  'week',
  'ago',
  'got',
  'rais',
  'job',
  'today',
  'suggest',
  'idea',
  'get',
  'nose',
  'job',
  'said',
  'insecur',
  'point',
  'affect',
  'mental',
  'health',
  'get',
  'done',
  'got',
  'extrem',
  'upset',
  'said',
  'said',
  'idea',
  'left',
  'hous',
  'go',
  'mother',
  'abl',
  'get',
  'touch',
  'sinc',
  'aita'],
 ['fiance',
  'kid',
  'former',
  'marriag',
  'whilst',
  'former',
  'marriag',
  'well',
  'quit',
  'job',
  'start',
  'focus',
  'get',
  'degre',
  'becom',
  'breadwinn',
  'although',
  'still',
  'contribut',
  'save',
  'also',
  '%',
  'child-car',
  'chore',
  'long',
  'stori',
  'short',
  'want',
  'kid',
  'attend',
  'thanksgiv',
  'famili',
  'locat',
  'across',
  'countri',
  'suppos',
  'go',
  'yesterday',
  'ahead',
  'time',
  'get',
  'rental',
  'place',
  'bok',
  'ticket',
  'everyth',
  'later',
  'flight',
  'found',
  'kid',
  'put',
  'st',
  'class',
  'whilst',
  'kid',
  '&',
  'put',
  'economi',
  'stun',
  'act',
  'like',
  'big',
  'deal',
  'told',
  'us',
  'hour',
  'kid',
  'could',
  'hang',
  'littl',
  'ask',
  'could',
  'think',
  'accept',
  'got',
  'mad',
  'said',
  'one',
  'pay',
  'ticket',
  'go',
  'rule',
  'immedi',
  'turn',
  'around',
  'took',
  'kid',
  'made',
  'way',
  'airport',
  'start',
  'follow',
  'us',
  'scream',
  'go',
  'back',
  'refus',
  'told',
  'longer',
  'felt',
  'like',
  'spend',
  'thanksgiv',
  'folk',
  'youngest',
  'cri',
  'never',
  'flew',
  'without',
  'went',
  'kid',
  'kid',
  'home',
  'stop',
  'call',
  'tri',
  'berat',
  'even',
  'mom',
  'text',
  'need',
  'get',
  'stop',
  'teach',
  'kid',
  'spoil',
  'entitl',
  'said',
  'fact',
  'miss',
  'thanksgiv',
  'famili',
  'someth',
  'trivial',
  'show',
  'real',
  'charact',
  'perseon',
  'mindset',
  'lack',
  'thereof',
  'repli',
  'feel',
  'horribl',
  'aita',
  'let',
  'slide',
  'went',
  'case',
  'clear',
  'kid',
  'left',
  'familyhometown',
  'could',
  'go',
  'celebr',
  'famili',
  'hometown',
  'kid',
  'excit',
  'leav',
  'granpar',
  'week',
  '*',
  '*',
  'updat',
  'im',
  'current',
  'get',
  'kid',
  'pack',
  'go',
  'stay',
  'mother',
  'happen',
  'instanc',
  'kept',
  'think',
  'right',
  'invest',
  'much',
  'time',
  'effort',
  'relationship',
  'mayb',
  'get',
  'way',
  'id',
  'tri',
  'minim',
  'situat',
  'find',
  'kid',
  'put',
  'last',
  'tri',
  'give',
  'ultimatum',
  'regard',
  'get',
  'degre',
  'respons',
  'right',
  'kept',
  'make',
  'light',
  'let',
  'go',
  'probabl',
  'badmouth',
  'whole',
  'famili',
  'mom',
  'bless',
  'ef',
  'heartth',
  'kid',
  'leav',
  'hell',
  'come',
  'back',
  'empti',
  'homeexcept',
  'hell',
  'find',
  'compani',
  'engag',
  'ring',
  'took',
  'left',
  'nightstand',
  'distanc',
  're-evalu',
  'need',
  'right',
  'thank',
  'ypu',
  'reach',
  'help',
  'input',
  'prespect',
  'right',
  'kid',
  'come',
  'first',
  'keep',
  'tri',
  'hope',
  'ever',
  'fail',
  'thank',
  'much',
  'support',
  '*',
  '*'],
 ['use',
  'work',
  'sex',
  'worker',
  'earli',
  'mid',
  'proud',
  'choic',
  'get',
  'money',
  'abl',
  'keep',
  'sibl',
  'homeless',
  'met',
  'fianc',
  'martin',
  'year',
  'ago',
  'know',
  'everi',
  'singl',
  'detail',
  'life',
  'everyday',
  'tell',
  'love',
  'matter',
  'famili',
  'liter',
  'saint',
  'kind',
  'hit',
  'jackpot',
  'inlaw',
  'dept',
  'howev',
  'friendsnot',
  'much',
  'make',
  'comment',
  'past',
  'throw',
  'word',
  'find',
  'rather',
  'offens',
  'thought',
  'giiirl',
  'sensit',
  'let',
  'go',
  'last',
  'week',
  'went',
  'restaur',
  'celebr',
  'martin',
  'birthday',
  'friend',
  'famili',
  'one',
  'closest',
  'friend',
  'antonio',
  'habit',
  'make',
  'nasti',
  'joke',
  'laugh',
  'publicli',
  'martin',
  'talk',
  'friend',
  'talk',
  'mother',
  'inlaw',
  'talk',
  'antonio',
  'look',
  'around',
  'prais',
  'restaur',
  'atmespher',
  'parti',
  'martin',
  'nod',
  'antonio',
  'told',
  'lucki',
  'got',
  'birthday',
  'complain',
  'famili',
  'celebr',
  'upcom',
  'birthday',
  'told',
  'martin',
  'perhap',
  'borrow',
  'name',
  'bj',
  'upcom',
  'birthday',
  'appal',
  'turn',
  'see',
  'martin',
  'woupd',
  'react',
  'martin',
  'laugh',
  'said',
  'hahaha',
  'well',
  'much',
  'pay',
  'froze',
  'might',
  'overreact',
  'terribl',
  'look',
  'face',
  'look',
  'martin',
  'got',
  'gather',
  'stuff',
  'includ',
  'gift',
  'got',
  'start',
  'make',
  'way',
  'inlaw',
  'notic',
  'could',
  'hear',
  'martin',
  'yell',
  'follow',
  'outsid',
  'beg',
  'wait',
  'kept',
  'walk',
  'said',
  'joke',
  'buddi',
  'overreact',
  'reason',
  'start',
  'argu',
  'ok',
  'buddi',
  'humili',
  'play',
  'along',
  'god',
  'aw',
  'joke',
  'insist',
  'overreact',
  'oversenst',
  'got',
  'taxi',
  'went',
  'home',
  'came',
  'back',
  'start',
  'complain',
  'embarrass',
  'ruin',
  'celebr',
  'walk',
  'remind',
  'said',
  'joke',
  'one',
  'issu',
  'past',
  'seek',
  'therapi',
  'sensit',
  'damn',
  'time'],
 ['husband',
  'got',
  'marri',
  'recent',
  'sister',
  'discuss',
  'wed',
  'return',
  'honeymoon',
  'fortun',
  'grown',
  'household',
  'parent',
  'made',
  'good',
  'money',
  'gener',
  'us',
  'rais',
  'sister',
  'hard-work',
  'depend',
  'adult',
  'sister',
  'well',
  'financi',
  'husband',
  'husband',
  'love',
  'job',
  'one',
  'ton',
  'earn',
  'potenti',
  'met',
  'colleg',
  'ive',
  'alway',
  'known',
  'plan',
  'happi',
  'setup',
  'discuss',
  'sister',
  'ask',
  'husband',
  'plan',
  'use',
  'wed',
  'gift',
  'money',
  'parent',
  'particular',
  'renov',
  'weve',
  'save',
  'confus',
  'gift',
  'extrem',
  'gener',
  'appreci',
  'nearli',
  'enough',
  'cover',
  'told',
  'much',
  'gift',
  'twice',
  'given',
  'stop',
  'think',
  'gotten',
  'less',
  'sister',
  'encourag',
  'ask',
  'call',
  'mom',
  'stop',
  'ask',
  'respons',
  'busi',
  'sinc',
  'ask',
  'sister',
  'chosen',
  'partner',
  'accommod',
  'lifestyl',
  'use',
  'theyv',
  'gift',
  'accordingli',
  'also',
  'gift',
  'accord',
  'lifestyl',
  'ive',
  'chosen',
  'entitl',
  'gift',
  'size',
  'life',
  'still',
  'cant',
  'help',
  'feel',
  'hurt',
  'parent',
  'feel',
  'husband',
  'less',
  'deserv',
  'sister',
  'husband',
  'base',
  'incom',
  'meanwhil',
  'parent',
  'angri',
  'sister',
  'discuss',
  'bring',
  'tldr',
  'sister',
  'accident',
  'reveal',
  'parent',
  'gave',
  'consider',
  'larger',
  'wed',
  'gift',
  'mad',
  'bring',
  'topic'],
 ['throwaway',
  'account',
  'im',
  'awar',
  'rel',
  'use',
  'reddit',
  'recent',
  'got',
  'marri',
  'day',
  'ago',
  'tradit',
  'punjabi',
  'wed',
  'absolut',
  'blast',
  'context',
  'brother',
  'sister',
  'tradit',
  'indian',
  'wed',
  'certain',
  'ceremoni',
  'would',
  'need',
  'femal',
  'rel',
  'part',
  'sinc',
  'sister',
  'cousin',
  'step',
  'famili',
  'alway',
  'strain',
  'relationship',
  'one',
  'anoth',
  'alway',
  'due',
  'petti',
  'fight',
  'occur',
  'year',
  'ago',
  'rel',
  'cant',
  'let',
  'go',
  'cousin',
  'partak',
  'awar',
  'ridicul',
  'one',
  'cousin',
  'ill',
  'name',
  'extrem',
  'nice',
  'unfortun',
  'super',
  'shi',
  'timid',
  'alway',
  'like',
  'us',
  'grown',
  'protect',
  'especi',
  'sinc',
  'one',
  'youngest',
  'cousin',
  'one',
  'ceremoni',
  'insist',
  'cousin',
  'main',
  'part',
  'know',
  'would',
  'genuin',
  'enjoy',
  'would',
  'shi',
  'volunt',
  'ask',
  'one',
  'cousin',
  'fiancé',
  'howev',
  'quit',
  'opposit',
  'constantli',
  'like',
  'put',
  'middl',
  'everyth',
  'despit',
  'alreadi',
  'told',
  'given',
  'duti',
  'ceremoni',
  'part',
  'may',
  'asshol',
  'one',
  'ceremoni',
  'suppos',
  'one',
  'femal',
  'rel',
  'sit',
  'behind',
  'stage',
  'basic',
  'take',
  'care',
  'fix',
  'hair',
  'cloth',
  'etc',
  'specif',
  'told',
  'cousin',
  'would',
  'one',
  'howev',
  'day',
  'came',
  'cousin',
  'fiancé',
  'one',
  'took',
  'spot',
  'confus',
  'could',
  'much',
  'ceremoni',
  'found',
  'cousin',
  'explain',
  'fiance',
  'took',
  'spot',
  'basic',
  'scold',
  'yell',
  'say',
  'one',
  'sinc',
  'cousin',
  'still',
  'young',
  'know',
  'anyth',
  'told',
  'cousin',
  'go',
  'sit',
  'guest',
  'despit',
  'cousin',
  'xs',
  'protest',
  'cousin',
  'xs',
  'mother',
  'aunti',
  'absolut',
  'ador',
  'huge',
  'help',
  'wed',
  'quit',
  'upset',
  'want',
  'caus',
  'scene',
  'told',
  'cousin',
  'okay',
  'heard',
  'furiou',
  'fiancé',
  'took',
  'meant',
  'special',
  'moment',
  'made',
  'sat',
  'fiancé',
  'told',
  'right',
  'extrem',
  'upset',
  'appar',
  'upset',
  'convers',
  'refus',
  'come',
  'ceremoni',
  'next',
  'day',
  'fine',
  'gener',
  'like',
  'adult',
  'throw',
  'temper',
  'tantrum',
  'cousin',
  'say',
  'right',
  'speak',
  'fiancé',
  'like',
  'entir',
  'famili',
  'constantli',
  'say',
  'lot',
  'neg',
  'thing',
  'famili',
  'whole',
  'situat',
  'aita'],
 ['im',
  'marri',
  'wonder',
  'woman',
  'first',
  'got',
  'marri',
  'year',
  'ago',
  'make',
  '$',
  'make',
  '$',
  'fast',
  'foreward',
  'year',
  'welcom',
  'sweet',
  'babi',
  'girl',
  'matern',
  'leav',
  'took',
  'vacat',
  'stay',
  'babi',
  'well',
  'found',
  'dad',
  'take',
  'care',
  'hous',
  'time',
  'better',
  'work',
  'stress',
  'offic',
  'discuss',
  'becam',
  'full',
  'time',
  'sahd',
  'like',
  'sahd',
  'even',
  'enjoy',
  'keep',
  'hous',
  'clean',
  'cook',
  'take',
  'care',
  'kid',
  'involv',
  'mom',
  'group',
  'littl',
  'leagueetc',
  'person',
  'seem',
  'problem',
  'thing',
  'older',
  'brother',
  'know',
  'despit',
  'rais',
  'parent',
  'much',
  'champion',
  'equal',
  'right',
  'grew',
  'embodi',
  'man',
  'provid',
  'guid',
  'woman',
  'make',
  'home',
  'follow',
  'time',
  'divorce',
  'terribl',
  'relationship',
  'kid',
  'past',
  'year',
  'make',
  'joke',
  'tri',
  'empli',
  'less',
  'man',
  'wife',
  'earn',
  'money',
  'play',
  'littl',
  'wife',
  'ignor',
  'im',
  'mood',
  'shake',
  'head',
  'well',
  'wife',
  'drunk',
  'one',
  'time',
  'came',
  'bit',
  'naughti',
  'solut',
  'give',
  'major',
  'vibe',
  'prude',
  'casual',
  'homophob',
  'tbh',
  'made',
  'joke',
  'last',
  'sunday',
  'along',
  'line',
  'marri',
  'man',
  'would',
  '%',
  'bottom',
  'hit',
  'funni',
  'say',
  'bottom',
  'wife',
  'realli',
  'know',
  'gow',
  'use',
  'dildo',
  'har',
  'make',
  'man',
  'see',
  'start',
  'turn',
  'red',
  'everyon',
  'kind',
  'let',
  'shock',
  'laugh',
  'final',
  'shut',
  'said',
  'want',
  'hear',
  'wife',
  'bedroom',
  'said',
  'keep',
  'comment',
  'would',
  'reason',
  'share',
  'today',
  'mom',
  'call',
  'say',
  'refus',
  'attend',
  'sunday',
  'dinner',
  'unless',
  'apolog',
  'refus',
  'mom',
  'one',
  'feel',
  'bad',
  'aita'],
 ['fianc',
  'got',
  'engag',
  'sever',
  'day',
  'ago',
  'relev',
  'tall',
  'im',
  'categori',
  'pretti',
  'small',
  'compar',
  'famili',
  'ask',
  'wear',
  'high',
  'heel',
  'engag',
  'parti',
  'sinc',
  'go',
  'photo',
  'although',
  'comfort',
  'fan',
  'either',
  'high',
  'heel',
  'decid',
  'wear',
  'sake',
  'sinc',
  'beg',
  'plead',
  'also',
  'sinc',
  'promis',
  'would',
  'sit',
  'time',
  'parti',
  'stand',
  'hour',
  'welcom',
  'guest',
  'like',
  'guest',
  'got',
  'tire',
  'stand',
  'feet',
  'leg',
  'fire',
  'ask',
  'could',
  'sit',
  'mom',
  'said',
  'im',
  'fiance',
  'stand',
  'next',
  'partner',
  'sit',
  'like',
  'parti',
  'noth',
  'told',
  'fianc',
  'much',
  'pain',
  'said',
  'suck',
  'almost',
  'enough',
  'took',
  'heel',
  'let',
  'feet',
  'leg',
  'cool',
  'mom',
  'look',
  'utter',
  'confus',
  'sever',
  'famili',
  'guest',
  'saw',
  'barefoot',
  'well',
  'freak',
  'ask',
  'mom',
  'ask',
  'put',
  'heel',
  'said',
  'feet',
  'done',
  'anymor',
  'fianc',
  'beg',
  'stood',
  'til',
  'like',
  'want',
  'minut',
  'got',
  'car',
  'flip',
  'say',
  'embarrass',
  'infront',
  'famili',
  'friend',
  'stand',
  'barefoot',
  'refus',
  'put',
  'heel',
  'back',
  'even',
  'mom',
  'repeatedli',
  'ask',
  'remind',
  'said',
  'stand',
  'turn',
  'true',
  'argu',
  'someon',
  'height',
  'like',
  'mine',
  'wear',
  'high',
  'heel',
  'often',
  'said',
  'suck',
  'sake',
  'went',
  'upstair',
  'turn',
  'phone',
  'refus',
  'speak',
  'intent',
  'embarrass',
  'feel',
  'suck',
  'think',
  'truth',
  'long',
  'expect',
  'stand',
  'aita',
  'eta',
  'usual',
  'care',
  'wear',
  'high',
  'heel',
  'said',
  'start',
  'consid',
  'wear',
  'women',
  'wear',
  'heel',
  'big',
  'occas',
  'like',
  'wed',
  'engag',
  'parti'],
 ['husband',
  'sick',
  'day',
  'got',
  'sicm',
  'around',
  'time',
  'brother',
  'wed',
  'took',
  'care',
  'hr',
  'day',
  'med',
  'move',
  'go',
  'bathroom',
  'eat',
  'told',
  'go',
  'brother',
  'wed',
  'threw',
  'fit',
  'say',
  'leav',
  'alond',
  'sick',
  'told',
  'sick',
  'stomach',
  'get',
  'treatment',
  'suggest',
  'call',
  'sister',
  'come',
  'stay',
  'said',
  'told',
  'miss',
  'got',
  'upset',
  'bluntli',
  'said',
  'could',
  'surviv',
  'hour',
  'attend',
  'wed',
  'sulk',
  'leav',
  'said',
  'hope',
  'ever',
  'come',
  'back',
  'hurt',
  'feel',
  'know',
  'mad',
  'mean',
  'wed',
  'got',
  'text',
  'say',
  'lost',
  'balanc',
  'fell',
  'stair',
  'hurt',
  'back',
  'said',
  'lot',
  'pain',
  'threw',
  'move',
  'insist',
  'get',
  'home',
  'asap',
  'freak',
  'start',
  'call',
  'phone',
  'answer',
  'thought',
  'mustv',
  'pass',
  'freak',
  'even',
  'got',
  'car',
  'drove',
  'back',
  'hous',
  'immedi',
  'got',
  'home',
  'rush',
  'toward',
  'stair',
  'call',
  'name',
  'start',
  'realli',
  'freak',
  'rush',
  'bedroom',
  'found',
  'bed',
  'drink',
  'juic',
  'soon',
  'saw',
  'put',
  'phone',
  'instantli',
  'knew',
  'lie',
  'lost',
  'start',
  'yell',
  'say',
  'freak',
  'caus',
  'miss',
  'brother',
  'wed',
  'nothingabsolut',
  'noth',
  'said',
  'alreadi',
  'told',
  'leav',
  'alon',
  'hous',
  'scenario',
  'couldv',
  'happen',
  'stay',
  'longer',
  'yell',
  'call',
  'horribl',
  'made',
  'cri',
  'start',
  'cri',
  'throw',
  'juic',
  'place',
  'step',
  'call',
  'sister',
  'think',
  'shed',
  'come',
  'help',
  'came',
  'start',
  'cuss',
  'say',
  'lot',
  'nerv',
  'expect',
  'back',
  'carelessli',
  'left',
  'brother',
  'alon',
  'af',
  'hous',
  'state',
  'attend',
  'parti',
  'got',
  'argument',
  'went',
  'stag',
  'famili',
  'brother',
  'understood',
  'whrn',
  'explain',
  'situat',
  'husband',
  'seen',
  'sinc',
  'sister',
  'kept',
  'say',
  'right',
  'scream',
  'brother',
  'caus',
  'panic',
  'attack',
  'said',
  'least',
  'clear',
  'start',
  'chose',
  'dismiss',
  'dismiss',
  'edit',
  'im',
  'year',
  'old',
  'year',
  'old'],
 ['develop',
  'interest',
  'piano',
  'meet',
  'late',
  'husband',
  'piano',
  'teacher',
  'year',
  'taught',
  'play',
  'help',
  'buy',
  'one',
  'use',
  'one',
  'still',
  'bit',
  'expens',
  'year',
  'ago',
  'play',
  'everyday',
  'pass',
  'month',
  'ago',
  'find',
  'comfort',
  'spend',
  'time',
  'play',
  'howev',
  'brother',
  'wife',
  'came',
  'stay',
  'month',
  'loos',
  'apart',
  'alway',
  'complain',
  'piano',
  'nois',
  'although',
  'play',
  'daytim',
  'sil',
  'start',
  'argu',
  'frequent',
  'brother',
  'told',
  'play',
  'theyr',
  'refus',
  'yesterday',
  'friend',
  'day',
  'came',
  'even',
  'found',
  'piano',
  'gone',
  'turn',
  'brother',
  'move',
  'friend',
  'garag',
  'know',
  'friend',
  'gone',
  'blew',
  'yell',
  'right',
  'touch',
  'move',
  'wife',
  'said',
  'last',
  'ditch',
  'effort',
  'get',
  'peac',
  'quiet',
  'hous',
  'brother',
  'reassur',
  'hell',
  'give',
  'back',
  'find',
  'place',
  'get',
  'live',
  'alon',
  'play',
  'piano',
  'day',
  'long',
  'sarcast',
  'last',
  'line',
  'take',
  'told',
  'pack',
  'leav',
  'hous',
  'longer',
  'welcom',
  'freak',
  'tri',
  'beg',
  'take',
  'easi',
  'ration',
  'threaten',
  'call',
  'polic',
  'refus',
  'leav',
  'took',
  'famili',
  'left',
  'piano',
  'still',
  'back',
  'theyr',
  'say',
  'theyd',
  'give',
  'back',
  'agre',
  'let',
  'move',
  'back',
  'basic',
  'want',
  'thing',
  'go',
  'back',
  'ghey',
  'complain',
  'nois',
  'believ',
  'happen',
  'misunderstand',
  'everyon',
  'us',
  'mishandl',
  'situat',
  'want',
  'start',
  'new',
  'lost',
  'told',
  'day',
  'return',
  'ill',
  'call',
  'cop',
  'mom',
  'pressur',
  'take',
  'back',
  'say',
  'fault',
  'consider',
  'guest',
  'begin',
  'refus',
  'take',
  'back',
  'put',
  'foot',
  'time-lin',
  'gave',
  'im',
  'call',
  'irrat',
  'cruel',
  'kick',
  'brother',
  'watch',
  'struggl',
  'refus',
  'let',
  'move',
  'back',
  'choos',
  'escal',
  'author',
  'could',
  'let',
  'move',
  'back',
  'get',
  'piano',
  'back'],
 ['three',
  'children',
  'ex',
  'traci',
  'michael',
  'linda',
  'victoria',
  'split',
  'traci',
  'affair',
  'stan',
  'marri',
  'never',
  'share',
  'kid',
  'reason',
  'divorc',
  'want',
  'blame',
  'either',
  'us',
  'backfir',
  'kid',
  'saw',
  'mom',
  'move',
  'hous',
  'small',
  'apart',
  'keep',
  'live',
  'hous',
  'remarri',
  'two',
  'year',
  'divorc',
  'saw',
  'bad',
  'guy',
  'stan',
  'traci',
  'let',
  'pretti',
  'much',
  'whatev',
  'want',
  'disciplinarian',
  'made',
  'sure',
  'homework',
  'done',
  'appoint',
  'made',
  'deadlin',
  'met',
  'two',
  'oldest',
  'eventu',
  'came',
  'realiz',
  'bad',
  'guy',
  'son',
  'found',
  'mother',
  'put',
  'noth',
  'away',
  'colleg',
  'outlin',
  'divorc',
  'decre',
  'told',
  'take',
  'loan',
  'daughter',
  'realiz',
  'grade',
  'go',
  'keep',
  'desir',
  'program',
  'school',
  'youngest',
  'never',
  'came',
  'around',
  'surpris',
  'boyfriend',
  'ask',
  'bless',
  'ask',
  'hand',
  'express',
  'think',
  'shed',
  'care',
  'bless',
  'said',
  'insist',
  'began',
  'spend',
  'time',
  'polit',
  'wife',
  'felt',
  'wonder',
  'daughter',
  'back',
  'went',
  'book',
  'venu',
  'theyll',
  'get',
  'marri',
  'next',
  'summer',
  'paid',
  'deposit',
  'first',
  'instal',
  'notic',
  'becom',
  'less',
  'commun',
  'recent',
  'ignor',
  'text',
  'give',
  'one',
  'word',
  'repli',
  'come',
  'much',
  'monday',
  'son',
  'sent',
  'post',
  'instagram',
  'youngest',
  'engag',
  'parti',
  'weekend',
  'invit',
  'one',
  'photo',
  'stan',
  'read',
  'anyon',
  'father',
  'take',
  'real',
  'man',
  'dad',
  'amaz',
  'guy',
  'dad',
  'year',
  'even',
  'though',
  'bless',
  'walk',
  'aisl',
  'next',
  'year',
  'daddysgirl',
  'futuremrsx',
  'kid',
  'want',
  'noth',
  'entir',
  'live',
  'never',
  'let',
  'go',
  'without',
  'even',
  'talk',
  'made',
  'sure',
  'need',
  'met',
  'text',
  'traci',
  'ask',
  'includ',
  'repli',
  'victoria',
  'want',
  'wife',
  'want',
  'drama',
  'free',
  'day',
  'wife',
  'liter',
  'never',
  'start',
  'drama',
  'life',
  'ask',
  'stan',
  'would',
  'walk',
  'aisl',
  'traci',
  'respond',
  'victoria',
  'call',
  'demand',
  'know',
  'problem',
  'repeat',
  'question',
  'repli',
  'stan',
  'dad',
  'would',
  'walk',
  'aisl',
  'told',
  'want',
  'would',
  'fine',
  'told',
  'let',
  'stan',
  'know',
  'next',
  'payment',
  'wed',
  'due',
  'novemb',
  'stan',
  'traci',
  'money',
  'wed',
  'think',
  'im',
  'asshol',
  'linda',
  'say',
  'victoria',
  'never',
  'speak',
  'michael',
  'side'],
 ['month',
  'pregnant',
  'drive',
  'suck',
  'mom',
  'drive',
  'around',
  'husband',
  'work',
  'huge',
  'hour',
  'get',
  'ahead',
  'babi',
  'come',
  'last',
  'month',
  'drove',
  'favorit',
  'chocol',
  'store',
  'stock',
  'favorit',
  'flavor',
  'store',
  'dozen',
  'flavor',
  'chocol',
  'individu',
  'wrap',
  'color',
  'foil',
  'tell',
  'flavor',
  'store',
  'hour',
  'drive',
  'away',
  'home',
  'husband',
  'know',
  'favorit',
  'flavor',
  'half',
  'bag',
  'origin',
  'flavor',
  'even',
  'came',
  'home',
  'work',
  'yesterday',
  'supper',
  'go',
  'sit',
  'watch',
  'tv',
  'waddl',
  'couch',
  'ask',
  'pleas',
  'bring',
  'two',
  'chocol',
  'grab',
  'problem',
  'came',
  'back',
  'couch',
  'chocol',
  'mouth',
  'kiss',
  'knew',
  'flavor',
  'took',
  'admit',
  'took',
  'stracciatella',
  'one',
  'favorit',
  'got',
  'kind',
  'upset',
  'said',
  'big',
  'deal',
  'could',
  'go',
  'mom',
  'get',
  'ye',
  'compani',
  'sell',
  'chocol',
  'everywher',
  'flavor',
  'ive',
  'ever',
  'seen',
  'flavor',
  'store',
  'ask',
  'eat',
  'flavor',
  'lot',
  'face',
  'told',
  'everyth',
  'need',
  'know',
  'yell',
  'like',
  'easi',
  'sit',
  'car',
  'two',
  'hour',
  'said',
  'would',
  'go',
  'right',
  'replac',
  'hit',
  'coupl',
  'drug',
  'store',
  'coupl',
  'groceri',
  'store',
  'told',
  'thing',
  'drove',
  'across',
  'town',
  'came',
  'back',
  'big',
  'bag',
  'flavor',
  'gone',
  'call',
  'mom',
  'said',
  'need',
  'calm',
  'hormon',
  'make',
  'crazi',
  'apolog',
  'husband',
  'still',
  'grumpi',
  'drove',
  'around',
  'hour',
  'get',
  'chocol',
  'think',
  'know',
  'better',
  'eat',
  'favorit',
  'flavor',
  'know',
  'big',
  'problem',
  'stuff',
  'edit',
  'husband',
  'wonder',
  'went',
  'look',
  'replac',
  'chocol',
  'find',
  'nearbi',
  'chose',
  'drive',
  'across',
  'town',
  'forc',
  'said',
  'made',
  'meant',
  'make',
  'happi',
  'sorri',
  'confus'],
 ['boyfriend',
  'ryan',
  'like',
  'help',
  'type',
  'guy',
  'would',
  'give',
  'cowork',
  'money',
  'rent',
  'buy',
  'groceri',
  'neighbor',
  'howev',
  'take',
  'far',
  'time',
  'often',
  'tri',
  'help',
  'peopl',
  'without',
  'ask',
  'need',
  'want',
  'help',
  'everi',
  'year',
  'brother',
  'paul',
  'wife',
  'lili',
  'host',
  'holiday',
  'dinner',
  'year',
  'ryan',
  'attend',
  'first',
  'time',
  'left',
  'hous',
  'told',
  'ryan',
  'lili',
  'legal',
  'blind',
  'entir',
  'life',
  'knew',
  'could',
  'could',
  'told',
  'ryan',
  'help',
  'lili',
  'ask',
  'help',
  'arriv',
  'earli',
  'could',
  'help',
  'paul',
  'lili',
  'cook',
  'cook',
  'ryan',
  'kept',
  'tell',
  'lili',
  'thing',
  'like',
  'lili',
  'look',
  'salt',
  'right',
  'lili',
  'put',
  'close',
  'edg',
  'lili',
  'paul',
  'told',
  'commentari',
  'somewhat',
  'help',
  'complet',
  'unnecessari',
  'still',
  'ryan',
  'stop',
  'howev',
  'thing',
  'becam',
  'tens',
  'lili',
  'went',
  'go',
  'chop',
  'veget',
  'pull',
  'knife',
  'ryan',
  'stop',
  'ask',
  'could',
  'take',
  'want',
  'lili',
  'hurt',
  'lili',
  'said',
  'shed',
  'fine',
  'ryan',
  'insist',
  'give',
  'knife',
  'final',
  'paul',
  'got',
  'annoy',
  'told',
  'ryan',
  'stop',
  'ryan',
  'stop',
  'kept',
  'hover',
  'lili',
  'chop',
  'ask',
  'ryan',
  'sit',
  'dinner',
  'readi',
  'ryan',
  'insist',
  'want',
  'help',
  'final',
  'lili',
  'ask',
  'help',
  'set',
  'tabl',
  'greet',
  'peopl',
  'arriv',
  'thing',
  'still',
  'tens',
  'pull',
  'ryan',
  'side',
  'remind',
  'help',
  'lili',
  'ask',
  'agre',
  'could',
  'tell',
  'still',
  'upset',
  'everyth',
  'final',
  'boil',
  'dinner',
  'niec',
  '&',
  'game',
  'love',
  'play',
  'mother',
  'hand',
  'lili',
  'someth',
  'lili',
  'would',
  'guess',
  'lili',
  'would',
  'sometim',
  'make',
  'coupl',
  'clearli',
  'outrag',
  'guess',
  'like',
  'say',
  'egg',
  'eleph',
  'shoe',
  'make',
  'daughter',
  'laugh',
  'dinner',
  'eldest',
  'hand',
  'lili',
  'salt',
  'shaker',
  'lili',
  'guess',
  'phone',
  'ryan',
  'pipe',
  'said',
  'salt',
  'shaker',
  'lili',
  'laugh',
  'explain',
  'game',
  'ryan',
  'could',
  'see',
  'annoy',
  'niec',
  'hand',
  'lili',
  'coin',
  'lili',
  'guess',
  'incorrectli',
  'ryan',
  'loudli',
  'told',
  'lili',
  'coin',
  'appar',
  'last',
  'straw',
  'paul',
  'paul',
  'demand',
  'ryan',
  'leav',
  'sinc',
  'clearli',
  'respect',
  'lili',
  'ryan',
  'insist',
  'tri',
  'help',
  'howev',
  'lili',
  'said',
  'probabl',
  'best',
  'ryan',
  'left',
  'quickli',
  'gather',
  'thing',
  'manag',
  'convinc',
  'ryan',
  'leav',
  'ryan',
  'current',
  'piss',
  'said',
  'defend',
  'especi',
  'sinc',
  'knew',
  'help',
  'also',
  'insist',
  'stood',
  'paul',
  'overreact',
  'ryan',
  'word',
  'im',
  'wonder',
  'defend',
  'ryan',
  'aita'],
 ['im',
  'engag',
  'fianc',
  'yo',
  'daughter',
  'yo',
  'daughter',
  'come',
  'conserv',
  'famili',
  'move',
  'togeth',
  'til',
  'marriag',
  'far',
  'good',
  'term',
  'blend',
  'famili',
  'notic',
  'stepdaught',
  'act',
  'kind',
  'distant',
  'toward',
  'daughter',
  'everytim',
  'tri',
  'talk',
  'fianc',
  'hed',
  'tell',
  'give',
  'kid',
  'chanc',
  'bond',
  'warm',
  'stepdaught',
  'th',
  'birthday',
  'took',
  'place',
  'sunday',
  'sinc',
  'bake',
  'decid',
  'bake',
  'cupcak',
  'instead',
  'actual',
  'birthday',
  'cake',
  'daughter',
  'went',
  'fianc',
  'hous',
  'attend',
  'parti',
  'brought',
  'stepdaught',
  'gift',
  'iphon',
  'sat',
  'start',
  'serv',
  'everyon',
  'cupcak',
  'daughter',
  'turn',
  'bluntli',
  'said',
  'sorri',
  'save',
  'daughter',
  'felt',
  'confus',
  'ask',
  'made',
  'enough',
  'cupcak',
  'wether',
  'guest',
  'came',
  'uninvit',
  'said',
  'make',
  'one',
  'daughter',
  'ask',
  'refus',
  'say',
  'mad',
  'felt',
  'hurt',
  'daughter',
  'behalf',
  'got',
  'told',
  'fianc',
  'want',
  'leav',
  'fianc',
  'tri',
  'stop',
  'offer',
  'cupcak',
  'daughter',
  'refus',
  'take',
  'way',
  'grab',
  'gift',
  'brought',
  'stepdaught',
  'stood',
  'watch',
  'could',
  'hear',
  'yell',
  'dad',
  'took',
  'iphon',
  'walk',
  'daughter',
  'fianc',
  'tri',
  'get',
  'go',
  'back',
  'insid',
  'refus',
  'later',
  'came',
  'argument',
  'said',
  'overreact',
  'know',
  'teenag',
  'moodi',
  'random',
  'stuff',
  'without',
  'explan',
  'taken',
  'person',
  'said',
  'exclud',
  'daughter',
  'save',
  'cupcak',
  'said',
  'cupcak',
  'remind',
  'offer',
  'cupcak',
  'said',
  'accept',
  'call',
  'day',
  'said',
  'take',
  'iphon',
  '*',
  'suppos',
  'gift',
  '*',
  'back',
  'poor',
  'tast',
  'might',
  'hurt',
  'relationship',
  'daughter',
  'refus',
  'give',
  'could',
  'give',
  'sinc',
  'cri',
  'left',
  'mad',
  'talk',
  'sinc',
  'except',
  'via',
  'text',
  'edit',
  'want',
  'iphon',
  'sinc',
  'dad',
  'buy',
  'decid',
  'itd',
  'nice',
  'gift',
  'ask',
  'teenag',
  'could',
  'iphon',
  'im',
  'sorri',
  'uncommon',
  'live',
  'live',
  'iphon',
  'common',
  'phone',
  'also',
  'saw',
  'serv',
  'girlfriend',
  'whole',
  'plate',
  'cupcak',
  'like',
  'bake',
  'specif',
  'number'],
 ['husband',
  'mom',
  'move',
  'us',
  'week',
  'ago',
  'minut',
  'inform',
  'go',
  'move',
  'temporarili',
  'til',
  'hous',
  'get',
  'renov',
  'weve',
  'empti',
  'room',
  'specif',
  '-',
  'everyth',
  'bed',
  'frame',
  'curtain',
  'mount',
  'tv',
  'wardrob',
  'etc',
  'thrill',
  'love',
  'lot',
  'one',
  'day',
  'came',
  'home',
  'found',
  'bedroom',
  'sleep',
  'mine',
  'husband',
  'bed',
  'confus',
  'told',
  'took',
  'nap',
  'bed',
  'lost',
  'track',
  'time',
  'sinc',
  'start',
  'talk',
  'love',
  'nap',
  'start',
  'hint',
  'want',
  'take',
  'map',
  'bedroom',
  'kept',
  'ignor',
  'comment',
  'til',
  'husband',
  'sat',
  'told',
  'mom',
  'realli',
  'like',
  'got',
  'use',
  'nap',
  'bedroom',
  'let',
  'daili',
  'afternoon',
  'nap',
  'room',
  'said',
  'absolut',
  'start',
  'debat',
  'told',
  'mom',
  'ridicul',
  'whole',
  'room',
  'upstair',
  'nap',
  'got',
  'upset',
  'said',
  'make',
  'mom',
  'feel',
  'uncomfort',
  'unwelcom',
  'attitud',
  'said',
  'refus',
  'negoti',
  'call',
  'selfish',
  'mean',
  'say',
  'prevent',
  'mom',
  'feel',
  'comfort',
  'hous',
  'remind',
  'pay',
  'full',
  'mortgag',
  'hous',
  'blow',
  'money',
  'gadget',
  'consol',
  'accus',
  'bring',
  'old',
  'disagr',
  'current',
  'conflict',
  'use',
  'said',
  'stop',
  'push',
  'need',
  'room',
  'get',
  'home',
  'feel',
  'exhaust',
  'work',
  'feet',
  'refus',
  'speak',
  'til',
  'agre',
  'let',
  'mom',
  'nap',
  'aita',
  'choos',
  'hill',
  'die',
  'say',
  'difficult'],
 ['job',
  'take',
  'care',
  'two',
  'kid',
  'dog',
  'light',
  'housework',
  'day',
  'week',
  'singl',
  'mom',
  'got',
  'contact',
  'info',
  'busi',
  'card',
  'post',
  'dad',
  'pediatr',
  'therapi',
  'offic',
  'ever',
  'sinc',
  'weather',
  'start',
  'get',
  'warmer',
  'dog',
  'shed',
  'like',
  'crazi',
  'like',
  'would',
  'vacuum',
  'couch',
  'next',
  'day',
  'would',
  'look',
  'like',
  'would',
  'lightli',
  'tug',
  'dog',
  'hair',
  'would',
  'pull',
  'huge',
  'tuft',
  'dog',
  'scratch',
  'time',
  'etc',
  'dad',
  'dog',
  'doubl',
  'coat',
  'like',
  'one',
  'morn',
  'leav',
  'work',
  'pack',
  'brush',
  'tool',
  'bag',
  'kid',
  'nap',
  'spent',
  'full',
  'hour',
  'outsid',
  'brush',
  'dog',
  'dog',
  'seem',
  'enjoy',
  'brush',
  'hour',
  'huge',
  'pile',
  'hair',
  'brush',
  'vacuum',
  'sent',
  'mom',
  'thought',
  'would',
  'funni',
  'text',
  'say',
  'brush',
  'whole',
  'new',
  'dog',
  '\\',
  '[',
  'dog\\',
  ']',
  'coat',
  'look',
  'back',
  'realiz',
  'mayb',
  'ask',
  'first',
  'time',
  'seem',
  'like',
  'someth',
  'within',
  'scope',
  'care',
  'dog',
  'mom',
  'went',
  'ballist',
  'call',
  'yell',
  'say',
  'brush',
  'dog',
  'let',
  'hair',
  'fall',
  'caus',
  'harm',
  'dog',
  'said',
  'idiot',
  'cant',
  'believ',
  'trust',
  'kid',
  'today',
  'last',
  'day',
  'extrem',
  'upset',
  'famili',
  'month',
  'never',
  'yell',
  'like',
  'left',
  'soon',
  'got',
  'home',
  'still',
  'fume',
  'immedi',
  'line',
  'job',
  'anoth',
  'famili',
  'suppos',
  'start',
  'monday',
  'mom',
  'yell',
  'call',
  'two',
  'day',
  'later',
  'say',
  'sorri',
  'misunderstand',
  'fire',
  'overreact',
  'told',
  'longer',
  'avail',
  'start',
  'cri',
  'hard',
  'find',
  'new',
  'sitter',
  'special',
  'need',
  'kid',
  'kid',
  'autist',
  'therapi',
  'dad',
  'offic',
  'stood',
  'firm',
  'start',
  'text',
  'dad',
  'ask',
  'someth',
  'dad',
  'annoy',
  'drag',
  'respect',
  'decis',
  'wish',
  'would',
  'keep',
  'watch',
  'kid',
  'short',
  'time',
  'keep',
  'peac',
  'hate',
  'put',
  'anyon',
  'awkward',
  'posit',
  'also',
  'want',
  'work',
  'someon',
  'like',
  'aita',
  'edit',
  'want',
  'keep',
  'clarifi',
  'dad',
  'aba',
  'therapist',
  'physic',
  'therapist'],
 ['throw',
  'away',
  'account',
  'wife',
  'work',
  'full',
  'time',
  'cna',
  'school',
  'becom',
  'autopsi',
  'technician',
  'work',
  'lot',
  'constantli',
  'pick',
  'extra',
  'shift',
  'work',
  'doubl',
  'even',
  'tripl',
  'top',
  'go',
  'school',
  'full',
  'time',
  'often',
  'take',
  'nap',
  'work',
  'well',
  'yesterday',
  'friend',
  'call',
  'wife',
  'get',
  'along',
  'make',
  'uncomfort',
  'prevent',
  'one',
  'see',
  'friend',
  'one',
  'us',
  'like',
  'friend',
  'mine',
  'wife',
  'hous',
  'play',
  'video',
  'game',
  'wife',
  'call',
  'tell',
  'way',
  'home',
  'work',
  'sound',
  'exhaust',
  'ask',
  'felt',
  'ok',
  'drive',
  'id',
  'come',
  'pick',
  'work',
  'go',
  'back',
  'togeth',
  'car',
  'later',
  'say',
  'fine',
  'drive',
  'shell',
  'see',
  'later',
  'said',
  'ok',
  'told',
  'love',
  'go',
  'back',
  'play',
  'video',
  'game',
  'worth',
  'mention',
  'tv',
  'wife',
  'bedroom',
  'lay',
  'bed',
  'play',
  'sit',
  'desk',
  'chair',
  'minut',
  'later',
  'hear',
  'wife',
  'come',
  'hous',
  'call',
  'let',
  'know',
  'home',
  'come',
  'live',
  'room',
  'give',
  'kiss',
  'collaps',
  'arm',
  'exhaust',
  'point',
  'even',
  'walk',
  'bedroom',
  'ask',
  'ok',
  'say',
  'yea',
  'long',
  'day',
  'work',
  'realli',
  'need',
  'nap',
  'nod',
  'told',
  'come',
  'lay',
  'bed',
  'get',
  'bedroom',
  'polit',
  'tell',
  'need',
  'leav',
  'wife',
  'exhaust',
  'could',
  'play',
  'later',
  'night',
  'ask',
  'need',
  'leav',
  'wife',
  'cant',
  'sleep',
  'keep',
  'play',
  'explain',
  'game',
  'wife',
  'need',
  'came',
  'first',
  'ask',
  'wife',
  'take',
  'nap',
  'live',
  'room',
  'couch',
  'told',
  'make',
  'sleep',
  'sofa',
  'want',
  'keep',
  'play',
  'get',
  'piss',
  'slam',
  'control',
  'dresser',
  'goe',
  'leav',
  'turn',
  'wife',
  'tell',
  'ill',
  'bet',
  'happi',
  'alway',
  'feel',
  'like',
  'pick',
  'anyon',
  'els',
  'leav',
  'slam',
  'door',
  'way',
  'wife',
  'turn',
  'start',
  'apolog',
  'say',
  'could',
  'slept',
  'couch',
  'tell',
  'tell',
  'get',
  'rest',
  'later',
  'night',
  'friend',
  'blow',
  'phone',
  'say',
  'thing',
  'along',
  'line',
  'bro',
  'hoe',
  'say',
  'rude',
  'kick',
  'wife',
  'could',
  'sleep',
  'marri',
  'friend',
  'howev',
  'side',
  'say',
  'wife',
  'need',
  'come',
  'first',
  'friend',
  'say',
  'speak',
  'apolog',
  'asshol'],
 ['husband',
  'got',
  'marri',
  'last',
  'friday',
  'plan',
  'dream',
  'wed',
  'dream',
  'cater',
  'compani',
  'wed',
  'beauti',
  'pictur',
  'head',
  'cocktail',
  'hour',
  'saw',
  'guest',
  'told',
  'wear',
  'dark',
  'color',
  'husband',
  'stood',
  'also',
  'ask',
  'guest',
  'wear',
  'minim',
  'makeup',
  'assum',
  'appli',
  'staff',
  'serverishf',
  'clearli',
  'much',
  'eyelin',
  'also',
  'diamond',
  'stud',
  'ear',
  'flashi',
  'ring',
  'one',
  'ugli',
  'nose',
  'stud',
  'staff',
  'uniform',
  'black',
  'long-sleev',
  'shirt',
  'low',
  'cut',
  'pant',
  'far',
  'tight',
  'super',
  'distract',
  'walk',
  'around',
  'serv',
  'drink',
  'talk',
  'guest',
  'ask',
  'anoth',
  'member',
  'staff',
  'speak',
  'boss',
  'boss',
  'came',
  'point',
  'server',
  'ask',
  'dealt',
  'caus',
  'super',
  'distract',
  'boss',
  'apolog',
  'call',
  'server',
  'back',
  'kitchen',
  'even',
  'hour',
  'later',
  'server',
  'back',
  'serv',
  'food',
  'dinner',
  'call',
  'boss',
  'ask',
  'server',
  'could',
  'work',
  'back',
  'go',
  'home',
  'boss',
  'said',
  'short-staf',
  'tonight',
  'would',
  'see',
  'done',
  'coupl',
  'hour',
  'see',
  'saw',
  'server',
  'behind',
  'bar',
  'call',
  'boss',
  'one',
  'last',
  'time',
  'told',
  'server',
  'leav',
  'would',
  'call',
  'cop',
  'boss',
  'final',
  'relent',
  'told',
  'girl',
  'go',
  'home',
  '&',
  'xb',
  'husband',
  'mother-in-law',
  'said',
  'act',
  'crazi',
  'probabl',
  'got',
  'poor',
  'colleg',
  'kid',
  'fire',
  'noth',
  'mother',
  'moh',
  'said',
  'wed',
  'pleas',
  'wed',
  'want',
  'someon',
  'over-shin',
  'server',
  'know',
  'work',
  'dress',
  'much',
  'feel',
  'kind',
  'bad',
  'pretti',
  'young',
  'ass'],
 ['singl',
  'childfre',
  'two',
  'dog',
  'german',
  'shepherd',
  'mix',
  'well',
  'behav',
  'super',
  'nice',
  'nibl',
  'age',
  '-',
  'love',
  'sister',
  'kid',
  'total',
  'babysit',
  'lot',
  'work',
  'home',
  'pretti',
  'much',
  'alway',
  'avail',
  'watch',
  'older',
  'one',
  'sinc',
  'easili',
  'work',
  'appart',
  'need',
  'care',
  'littl',
  'one',
  'move',
  'schedul',
  'around',
  'bit',
  'yesterday',
  'nibl',
  'place',
  'age',
  'sibl',
  'one',
  'super',
  'strict',
  'rule',
  'hous',
  'chocol',
  'deadli',
  'dog',
  'like',
  'anyway',
  'kid',
  'easili',
  'go',
  'afternoon',
  'without',
  'yro',
  'obvious',
  'brought',
  'chocol',
  'share',
  'yro',
  'kitchen',
  'make',
  'drink',
  'live',
  'room',
  'dog',
  'sleep',
  'balconi',
  'came',
  'live',
  'room',
  'obvious',
  'chocol',
  'crumb',
  'everywher',
  'ask',
  'chocol',
  'yro',
  'admit',
  'mom',
  'gave',
  'alway',
  'usual',
  'eat',
  'secret',
  'sister',
  'came',
  'pick',
  'hour',
  'later',
  'told',
  'happen',
  'said',
  'kid',
  'big',
  'enough',
  'make',
  'chocol',
  'mess',
  'told',
  'im',
  'never',
  'babysittinv',
  'furiou',
  'say',
  'overreact',
  'anoth',
  'sister',
  'mine',
  'agre',
  'mother',
  'think',
  'wrong',
  'put',
  'dog',
  'children',
  'aita'],
 ['titl',
  'sound',
  'bad',
  'know',
  'ill',
  'let',
  'decid',
  'wrong',
  'begin',
  'husband',
  'share',
  'financ',
  'like',
  'year',
  'marriag',
  'far',
  'weve',
  'well',
  'though',
  'hed',
  'sometim',
  'tri',
  'get',
  'pay',
  'want',
  'nice',
  'thing',
  'say',
  'invit',
  'restaur',
  'past',
  'week',
  'got',
  'bonu',
  'work',
  'overjoy',
  'inform',
  'entir',
  'famili',
  'plan',
  'go',
  'celebr',
  'us',
  'pick',
  'restaur',
  'meal',
  'drink',
  'etc',
  'natur',
  'thought',
  'go',
  'pay',
  'sinc',
  'happi',
  'celebr',
  'turn',
  'wrong',
  'time',
  'pay',
  'bill',
  'told',
  'take',
  'care',
  'said',
  'celebr',
  'mine',
  'insist',
  'pay',
  'hell',
  'explain',
  'later',
  'refus',
  'demand',
  'explan',
  'said',
  'ye',
  'one',
  'got',
  'bonu',
  'assum',
  'id',
  'want',
  'celebr',
  'offer',
  'cover',
  'bill',
  'talk',
  'ridicul',
  'assum',
  'id',
  'pay',
  'famili',
  'meal',
  'said',
  'happi',
  'instead',
  'visibl',
  'bitter',
  'said',
  'yet',
  'receiv',
  'bonu',
  'beg',
  'take',
  'care',
  'bill',
  'might',
  'consid',
  'pay',
  'back',
  'later',
  'refus',
  'paid',
  'consum',
  'famili',
  'start',
  'talk',
  'inappropri',
  'act',
  'took',
  'purs',
  'went',
  'home',
  'afterward',
  'caus',
  'much',
  'commot',
  'start',
  'argu',
  'go',
  'cover',
  'bill',
  'mom',
  'spam',
  'call',
  'hour',
  'went',
  'home',
  'say',
  'spoil',
  'celebr',
  'joy',
  'im',
  'feel',
  'bitter',
  'especi',
  'consid',
  'enough',
  'money',
  'cover',
  'bill',
  'right',
  'said',
  'oblig',
  'one',
  'came',
  'celebr',
  'idea',
  'argu',
  'role',
  'revers',
  'got',
  'bonu',
  'hed',
  'celebr',
  'achiev',
  'pay',
  'damn',
  'meal',
  'take',
  'famili',
  'casual',
  'said',
  'well',
  'got',
  'even',
  'piss',
  'said',
  'juvenil',
  'antic',
  'ever',
  'forget',
  'scene',
  'made',
  'restaur',
  'infront',
  'famili',
  'upset',
  'day',
  'updat',
  'wow',
  'mani',
  'respons',
  'guy',
  'im',
  'see',
  'varieti',
  'judgement',
  'know',
  'husband',
  'got',
  'home',
  'im',
  'go',
  'show',
  'respons',
  'right',
  'ill',
  'updat',
  'opinion',
  'soon',
  'thank',
  'updat',
  'got',
  'argument',
  'show',
  'post',
  'lost',
  'accept',
  'judgment',
  'saidand',
  'quot',
  'peopl',
  'idea',
  'said',
  'mention',
  'make',
  'money',
  'much',
  'think',
  'justifi',
  'paid',
  'bill',
  'past',
  'forgot',
  'wallet',
  'pay',
  'back',
  'pretti',
  'piss',
  'right',
  'though',
  'kept',
  'laugh',
  'sarcast',
  'read',
  'comment',
  'walk',
  'kitchen',
  'take',
  'phone',
  'call',
  'said',
  'hell',
  'back',
  'im',
  'still',
  'dog',
  'wait',
  'see',
  'goe',
  'ill',
  'updat',
  'new',
  'info'],
 ['parent',
  'divorc',
  'mom',
  'found',
  'dad',
  'cheat',
  'five',
  'year',
  'someon',
  'consid',
  'friend',
  'reveal',
  'affair',
  'came',
  'birthday',
  'parti',
  'celebr',
  'late',
  'dad',
  'made',
  'stori',
  'old',
  'friend',
  'die',
  'go',
  'funer',
  'actual',
  'ultrasound',
  'learn',
  'pregnant',
  'mom',
  'never',
  'got',
  'think',
  'made',
  'wors',
  'two',
  'peopl',
  'betray',
  'instead',
  'one',
  'friend',
  'hurt',
  'us',
  'like',
  'screw',
  'dad',
  'marri',
  'affair',
  'partner',
  'six',
  'children',
  'togeth',
  'mom',
  'stay',
  'away',
  'much',
  'humanli',
  'possibl',
  'told',
  'long',
  'time',
  'ago',
  'love',
  'want',
  'happi',
  'love',
  'distant',
  'would',
  'never',
  'abl',
  'play',
  'happi',
  'famili',
  'dad',
  'wife',
  'kid',
  'hurt',
  'deep',
  'pain',
  'move',
  'stay',
  'place',
  'order',
  'thing',
  'mom',
  'dad',
  'deterior',
  'dad',
  'ask',
  'mom',
  'would',
  'take',
  'six',
  'kid',
  'home',
  'sibl',
  'could',
  'see',
  'sinc',
  'wife',
  'frontlin',
  'worker',
  'plan',
  'send',
  'somewher',
  'limit',
  'exposur',
  'mom',
  'said',
  'hell',
  'piss',
  'hell',
  'dad',
  'ask',
  'dad',
  'piss',
  'hell',
  'forc',
  'go',
  'in-law',
  'spend',
  'time',
  'sibl',
  'legal',
  'allow',
  'meet',
  'thing',
  'mom',
  'suffer',
  'less',
  'financi',
  'pandem',
  'dad',
  'wife',
  'left',
  'job',
  'got',
  'much',
  'financi',
  'stabil',
  'took',
  'huge',
  'hit',
  'dad',
  'cant',
  'afford',
  'throw',
  'graduat',
  'parti',
  'fine',
  'famili',
  'welcom',
  'one',
  'mom',
  'host',
  'bitch',
  'miss',
  'celebr',
  'mom',
  'told',
  'affair',
  'mom',
  'one',
  'betray',
  'disrespect',
  'expect',
  'act',
  'like',
  'none',
  'happen',
  'could',
  'act',
  'like',
  'good',
  'guy',
  'told',
  'decad',
  'mom',
  'taken',
  'side',
  'told',
  'kept',
  'affair',
  'instead',
  'let',
  'come',
  'hear',
  'aita',
  'eta',
  'anoth',
  'element',
  'stori',
  'affair',
  'first',
  'start',
  'mom',
  'almost',
  'die',
  'lose',
  'sibl',
  'pregnanc',
  'went',
  'badli',
  'wrong',
  'almost',
  'took',
  'take',
  'chanc',
  'children',
  'husband',
  'friend',
  'get',
  'togeth',
  'behind',
  'back'],
 ['sister',
  'ask',
  'babysit',
  'kid',
  '&',
  'could',
  'go',
  'friend',
  'parti',
  'told',
  'cant',
  'day',
  'exam',
  '*',
  '*',
  'colleg',
  'follow',
  'class',
  'onlin',
  'occasion',
  'babysat',
  'listen',
  'lectur',
  'day',
  'need',
  'babysitt',
  'came',
  'answer',
  'door',
  'morn',
  '*',
  'freak',
  'kid',
  'doorstep',
  'sister',
  'drive',
  '*',
  'left',
  'said',
  'stay',
  'home',
  'day',
  'call',
  'friend',
  'small',
  'daycar',
  'told',
  'could',
  'drop',
  'thank',
  'god',
  'gave',
  'sister',
  'contact',
  'info',
  'told',
  'keep',
  'updat',
  'text',
  'sister',
  'happen',
  'gave',
  'address',
  'phone',
  'number',
  'pick',
  'kid',
  'daycar',
  'sinc',
  'sister',
  'answer',
  'phone',
  'fed',
  'pick',
  'ish',
  'pm',
  'absolut',
  'livid',
  'left',
  'stranger',
  'irrespons',
  'someth',
  'could',
  'happen',
  'etc',
  'told',
  'knew',
  'babysit',
  'day',
  'could',
  'pick',
  'comfort',
  'sinc',
  'text',
  'address',
  'told',
  'skip',
  'exam',
  'retak',
  'later',
  'thought',
  'reason',
  'thing',
  'someon',
  'leav',
  'kid',
  'doorstep',
  'without',
  'warn',
  'cant',
  'take',
  'care',
  'parent',
  'side',
  'mom',
  'told',
  'sister',
  'alreadi',
  'much',
  'plate',
  'help',
  'guess',
  'babysit',
  'least',
  'one',
  'day',
  'week',
  'free',
  'good',
  'enough',
  'aita',
  'edit',
  'friend',
  'went',
  'escap',
  'room',
  'someth',
  'regular',
  'parti',
  'parent',
  'home',
  'day',
  'babysit',
  '*',
  '*',
  'retak',
  'exam',
  'hassl',
  'mean',
  'fail',
  'cant',
  'retak',
  'clear',
  'thing',
  'im',
  'sorri',
  'post',
  'seem',
  'obviou',
  'sister',
  'parent',
  'say',
  'wrong',
  'made',
  'doubt'],
 ['hey',
  'yall',
  'first',
  'want',
  'say',
  'grate',
  'comment',
  'reciev',
  'unabl',
  'repli',
  'appreci',
  'first',
  'thing',
  'first',
  'daughter',
  'okay',
  'talk',
  'although',
  'much',
  'back',
  'use',
  'commun',
  'devic',
  'though',
  'play',
  'therapi',
  'monday',
  'thing',
  'act',
  'minorli',
  'concern',
  'apologis',
  'go',
  'detail',
  'famili',
  'found',
  'acc',
  'im',
  'tri',
  'protect',
  'privaci',
  'start',
  'talk',
  'day',
  'immedi',
  'concern',
  'therapist',
  'convey',
  'second',
  'therapist',
  'see',
  'thursday',
  'happi',
  'say',
  'answer',
  'howev',
  'wednesday',
  'dad',
  'call',
  'feel',
  'guilti',
  'desper',
  'tri',
  'figur',
  'happen',
  'eventu',
  'convinc',
  'mom',
  'get',
  'sister',
  'point',
  'sister',
  'confirm',
  'guess',
  '-',
  'girl',
  'ask',
  'chocco',
  'pop',
  'got',
  'told',
  'yell',
  'bc',
  'sister',
  'frustrat',
  'food',
  'kiddo',
  'got',
  'scare',
  'realis',
  'go',
  'toilet',
  'point',
  'non',
  'verbal',
  'tri',
  'get',
  'sister',
  'attent',
  'assum',
  'cake',
  'pop',
  'yell',
  'last',
  'part',
  'littl',
  'messi',
  'one',
  'men',
  'yell',
  'effect',
  'scare',
  'wet',
  'point',
  'start',
  'cri',
  'cousin',
  'went',
  'found',
  'dad',
  'everyon',
  'present',
  'basic',
  'agre',
  'tell',
  'full',
  'truth',
  'go',
  'mad',
  'upset',
  'still',
  'open',
  'contact',
  'everyon',
  'although',
  'dad',
  'come',
  'see',
  'yesterday',
  'came',
  'therapi',
  'us',
  'think',
  'help',
  'therapi',
  'session',
  'essenti',
  'confirm',
  'said',
  'two',
  'therapi',
  'session',
  'therapist',
  'week',
  'still',
  'tri',
  'gage',
  'two',
  'play',
  'therapi',
  'session',
  'need',
  'mayb',
  'lengthen',
  'exist',
  'one',
  'still',
  'spoken',
  'sister',
  'believ',
  'would',
  'abl',
  'civil',
  'dad',
  'work',
  'rule',
  'famili',
  'member',
  'definit',
  'involv',
  'hope',
  'see',
  'someth',
  'therapist',
  'recommend',
  'hope',
  'updat',
  'satisfactori',
  'go',
  'wait',
  'complet',
  'figur',
  'could',
  'take',
  'month',
  'depend',
  'daughter',
  'deal',
  'thing',
  'thank',
  'comment',
  'advic',
  'suggest',
  'eta',
  'ask',
  'work',
  'mani',
  'peopl',
  'dad',
  'mom',
  'sister',
  'dad',
  'wife',
  'dad',
  'mom',
  'mom',
  'six',
  'kid',
  'includ',
  'five',
  'sibl',
  'one',
  'kid',
  'sister',
  'two',
  'half',
  'sister',
  'step',
  'sister',
  'two',
  'step',
  'brother',
  'sibl',
  'round',
  'partner',
  'present',
  'bar',
  'two',
  'twenti',
  'one',
  'adult',
  'amongst',
  'everyon',
  'daughter',
  'kid',
  'brother',
  'includ',
  'twenti',
  'nine',
  'kid',
  'round',
  'total',
  'count',
  'peopl',
  'fifti',
  'fifti',
  'one',
  'count',
  'lot',
  'peopl',
  'think',
  'got',
  'math',
  'right',
  'anywho',
  'take',
  'kid',
  'teen',
  'tri',
  'figur',
  'mayb',
  'one',
  'older',
  'boy',
  'yell',
  'theyr',
  'still',
  'keep',
  'secret'],
 ['sever',
  'dog',
  'one',
  'american',
  'akita',
  'name',
  'yanke',
  'thought',
  'funni',
  'seem',
  'like',
  'name',
  'sister',
  'state',
  'past',
  'two',
  'year',
  'recent',
  'flew',
  'home',
  'boyfriend',
  'tow',
  'first',
  'time',
  'weve',
  'met',
  'yada',
  'yada',
  'guess',
  'never',
  'mention',
  'dog',
  'pretti',
  'surpris',
  'told',
  'dog',
  'name',
  'think',
  'much',
  '-',
  'pet',
  'peculiar',
  'name',
  'assum',
  'overal',
  'reaction',
  'left',
  'partner',
  'dinner',
  'part',
  'way',
  'food',
  'sister',
  'call',
  'ask',
  'id',
  'consid',
  'chang',
  'dog',
  'name',
  'kind',
  'thought',
  'kid',
  'reiter',
  'seriou',
  'name',
  'yanke',
  'upset',
  'boyfriend',
  'quit',
  'badli',
  'found',
  'offens',
  'basic',
  'told',
  'fuck',
  'tell',
  'grow',
  'go',
  'back',
  'food',
  'follow',
  'day',
  'liter',
  'show',
  'door',
  'kind',
  'taken',
  'aback',
  '-',
  'appar',
  'came',
  'tell',
  'name',
  'yanke',
  'aw',
  'discuss',
  'told',
  'essenti',
  'slur',
  'use',
  'american',
  'ask',
  'would',
  'ever',
  'name',
  'dog',
  'word',
  'kind',
  'laugh',
  'told',
  'nut',
  'seriou',
  'cant',
  'equat',
  'word',
  'yanke',
  'someth',
  'like',
  '-word',
  'told',
  'go',
  'chang',
  'dog',
  'name',
  '-',
  'know',
  'itd',
  'shit',
  'ton',
  'work',
  'person',
  'protect',
  'could',
  'even',
  'damag',
  'work',
  'thank',
  'left',
  'still',
  'seem',
  'pretti',
  'upset',
  'thinkinh',
  'back',
  'im',
  'pretti',
  'sure',
  'compani',
  'yanke',
  'name',
  'wonder',
  'mani',
  'letter',
  'complaint',
  'sent',
  'anyway',
  'messag',
  'american',
  'friend',
  'make',
  'sure',
  'prick',
  'agre',
  'stupid',
  'know',
  'us',
  'huge',
  'might',
  'region',
  'thing',
  'im',
  'still',
  'sure',
  'start',
  'feel',
  'kind',
  'asshole-ish',
  'take',
  'serious',
  'may',
  'genuin',
  'issu',
  'come',
  'reddit',
  'two',
  'bird',
  'one',
  'stone',
  'know',
  'larg',
  'amount',
  'american',
  'frequent',
  'subreddit',
  'asshol',
  'issu',
  'state',
  'apologis',
  'eta',
  'shower',
  'comment',
  'nearli',
  'thousand',
  'cant',
  'keep',
  'im',
  'sorri',
  '😭',
  'anyway',
  'think',
  'south',
  'sister',
  'tori',
  'like',
  'republican',
  'eta',
  'partner',
  'sinc',
  'post',
  'gain',
  'traction',
  'want',
  'play',
  'game',
  'current',
  'tri',
  'babi',
  '-',
  'potenti',
  'babi',
  'name',
  'could',
  'mention',
  'know',
  'upset',
  'littl',
  'alreadi',
  'name',
  'pick',
  'one',
  'els',
  'know'],
 ['found',
  'pregnant',
  'recent',
  'plan',
  'husband',
  'tri',
  'make',
  'decis',
  'regard',
  'go',
  'pregnanc',
  'thing',
  'told',
  'tell',
  'anyon',
  'end',
  'tell',
  'mom',
  'made',
  'swear',
  'tell',
  'tell',
  'sure',
  'stay',
  'quiet',
  'well',
  'beg',
  'beg',
  'announc',
  'facebook',
  'guis',
  'use',
  'permiss',
  'said',
  'absolut',
  'lie',
  'said',
  'husband',
  'want',
  'announc',
  'later',
  'decid',
  'go',
  'day',
  'ago',
  'found',
  'log',
  'husband',
  'facebook',
  'account',
  'drop',
  'bomb',
  'made',
  'announc',
  'ye',
  'pretend',
  'husband',
  'behind',
  'back',
  'floor',
  'call',
  'said',
  'figur',
  'made',
  'announc',
  'use',
  'one',
  'social',
  'media',
  'account',
  'mind',
  'itd',
  'still',
  'look',
  'like',
  'made',
  'announc',
  'like',
  'state',
  'earlier',
  'still',
  'tri',
  'make',
  'decis',
  'lost',
  'temper',
  'yell',
  'made',
  'cri',
  'said',
  'overstep',
  'mess',
  'complet',
  'hung',
  'husband',
  'came',
  'room',
  'yell',
  'poor',
  'treatment',
  'abus',
  'toward',
  'mom',
  'told',
  'mom',
  'violat',
  'privaci',
  'put',
  'us',
  'pressur',
  'final',
  'make',
  'decis',
  'babi',
  'sinc',
  'famili',
  'call',
  'say',
  'congratul',
  'said',
  'fb',
  'none',
  'privaci',
  'violat',
  'yell',
  'hurt',
  'feel',
  'made',
  'cri',
  'matter',
  'period',
  'demand',
  'apolog',
  'well',
  'talk',
  'pregnanc',
  'later',
  'give',
  'answer',
  'refus',
  'tri',
  'forc',
  'go',
  'hous',
  'grovel',
  'apolog',
  'aita'],
 ['nurs',
  'busi',
  'schedul',
  'absolut',
  'crazi',
  'past',
  'coupl',
  'year',
  'husband',
  'work',
  'offic',
  'job',
  'family-ori',
  'type',
  'guy',
  'alway',
  'hang',
  'put',
  'famili',
  'famili',
  'live',
  'ranch',
  'middl',
  'liter',
  'nowher',
  'hassl',
  'go',
  'due',
  'work',
  'natur',
  'go',
  'function',
  'howev',
  'make',
  'sure',
  'attend',
  'big',
  'one',
  'last',
  'week',
  'famili',
  'want',
  'host',
  'bbq',
  'parti',
  'want',
  'go',
  'badli',
  'sinc',
  'brother',
  'bring',
  'wife',
  'sinc',
  'mock',
  'come',
  'alon',
  'past',
  'said',
  'sorri',
  'shift',
  'cover',
  'beg',
  'suggest',
  'swap',
  'shift',
  'nurs',
  'friend',
  'even',
  'call',
  'beg',
  'cover',
  'grew',
  'irrit',
  'told',
  'stop',
  'sulk',
  'whole',
  'day',
  'drop',
  'morn',
  'hour',
  'shift',
  'discov',
  'car',
  'tire',
  'air',
  'husband',
  'offer',
  'drive',
  'hospit',
  'pm',
  'agre',
  'got',
  'readi',
  'got',
  'car',
  'instead',
  'take',
  'hospit',
  'drove',
  'straight',
  'famili',
  'ranch',
  'dumbfound',
  'angri',
  'said',
  'trick',
  'attend',
  'bbq',
  'suck',
  'set',
  'shift',
  'mad',
  'know',
  'say',
  'got',
  'ranch',
  'sat',
  'outsid',
  'fume',
  'wait',
  'saw',
  'still',
  'time',
  'make',
  'hospit',
  'figur',
  'way',
  'get',
  'watch',
  'husband',
  'go',
  'insid',
  'leav',
  'keychain',
  'next',
  'right',
  'sit',
  'took',
  'rush',
  'back',
  'car',
  'park',
  'got',
  'car',
  'drove',
  'dad',
  'saw',
  'told',
  'start',
  'call',
  'phone',
  'relentlessli',
  'til',
  'turn',
  'got',
  'hospit',
  'time',
  'dare',
  'turn',
  'phone',
  'til',
  'past',
  'pm',
  'open',
  'saw',
  'ton',
  'angri',
  'messag',
  'berat',
  'call',
  'horribl',
  'manipul',
  'got',
  'phone',
  'yell',
  'aw',
  'stunt',
  'pull',
  'bail',
  'parti',
  'make',
  'look',
  'bad',
  'infront',
  'famili',
  'calm',
  'said',
  'know',
  'work',
  'import',
  'ever',
  'trust',
  'afteri',
  'basic',
  'stole',
  'car',
  'ran',
  'weve',
  'terribl',
  'term',
  'sinc',
  'famili',
  'also',
  'mad',
  'spoken',
  'yet',
  'calcifi',
  'anyth',
  'aita',
  'desper',
  'worri',
  'mess',
  'shift',
  'might',
  'cost',
  'job'],
 ['husband',
  'best',
  'friend',
  'nate',
  'got',
  'new',
  'girlfriend',
  'camilla',
  'half',
  'year',
  'ago',
  'move',
  'citi',
  'recent',
  'realli',
  'friend',
  'hang',
  'coupl',
  'time',
  'start',
  'get',
  'friendli',
  'context',
  'twenti',
  'husband',
  'nice',
  'job',
  'small',
  'flat',
  'play',
  'tenni',
  'hobbi',
  'camilla',
  'think',
  'rich',
  'peopl',
  'sport',
  'regularli',
  'travel',
  'find',
  '€',
  'plane',
  'ticket',
  'stay',
  'cheap',
  'hostel',
  '~',
  'night',
  'time',
  'point',
  'husband',
  'host',
  'littl',
  'get',
  'togeth',
  'nate',
  'camilla',
  'friend',
  'invit',
  'one',
  'point',
  'convers',
  'went',
  'topic',
  'like',
  'current',
  'level',
  'inflat',
  'lockdown',
  'effect',
  'peopl',
  'job',
  'hous',
  'market',
  'etc',
  'someth',
  'say',
  'agre',
  'camilla',
  'camilla',
  'cut',
  'said',
  'someth',
  'like',
  'haha',
  'offens',
  'way',
  'much',
  'spoil',
  'privileg',
  'girl',
  'understand',
  'thing',
  'like',
  'would',
  'need',
  'tragedi',
  'two',
  'life',
  'understand',
  'struggl',
  'love',
  'never',
  'experienc',
  'hardship',
  'life',
  'haha',
  'room',
  'went',
  'dead',
  'silent',
  'nobodi',
  'said',
  'anyth',
  'awkward',
  'silenc',
  'stood',
  'said',
  'well',
  'anybodi',
  'hungri',
  'shall',
  'eat',
  'never',
  'went',
  'back',
  'topic',
  'camilla',
  'messag',
  'next',
  'day',
  'ask',
  'could',
  'nate',
  'told',
  'afterward',
  'abus',
  'father',
  'fell',
  'ill',
  'teenag',
  'spent',
  'month',
  'hospit',
  'multipl',
  'life',
  'save',
  'surgeri',
  'took',
  'month',
  'learn',
  'walk',
  'camilla',
  'mad',
  'tell',
  'person',
  'thing',
  'make',
  'look',
  'terribl',
  'nate',
  'friend',
  'said',
  'even',
  'correct',
  'parti',
  'would',
  'better',
  'couldv',
  'apolog',
  'front',
  'everyon',
  'took',
  'chanc',
  'away',
  'never',
  'make',
  'friend',
  'honestli',
  'whole',
  'thing',
  'ridicul',
  'realli',
  'think',
  'im',
  'asshol',
  'never',
  'hurt',
  'ask',
  'mayb',
  'gentli',
  'correct',
  'said',
  'aita'],
 ['two',
  'daughter',
  'vegetarian',
  'husband',
  'son',
  'im',
  'probabl',
  'would',
  'call',
  'flexitarian',
  'son',
  'husband',
  'alway',
  'turn',
  'nose',
  'tofu',
  'meat',
  'altern',
  '-',
  'say',
  'weird',
  'made',
  'resembl',
  'real',
  'meat',
  'realli',
  'concept',
  'tast',
  'allergi',
  'famili',
  'often',
  'make',
  'two',
  'version',
  'dinner',
  '-',
  'one',
  'meat',
  'one',
  'real',
  'twice',
  'amount',
  'pot',
  'pan',
  'equal',
  'distribut',
  'clean',
  'cook',
  'hous',
  'thank',
  'daughter',
  'fun',
  'prank',
  'idea',
  'make',
  'two',
  'pot',
  'spaghetti',
  'sauc',
  'pretens',
  'one',
  'meat',
  'soy',
  'ground',
  'beef',
  'goal',
  'see',
  'brother',
  'father',
  'actual',
  'hate',
  'meat',
  'see',
  'could',
  'mayb',
  'save',
  'dish',
  'time',
  'futur',
  'everyon',
  'love',
  'dinner',
  'husband',
  'son',
  'finish',
  'plate',
  'youngest',
  'hold',
  'anymor',
  'told',
  'got',
  'upset',
  'fed',
  'someth',
  'told',
  'reddit',
  'aita'],
 ['book',
  'airbnb',
  'retreat',
  'husband',
  'sil',
  'husband',
  'month',
  'ago',
  'airbnb',
  'dog',
  'friendli',
  'made',
  'perfectli',
  'clear',
  'sil',
  'think',
  'dog',
  'welcom',
  'everywher',
  'matter',
  'cost',
  'said',
  'would',
  'find',
  'dog',
  'sitter',
  'reason',
  'question',
  'airbnb',
  'state',
  'hour',
  'away',
  'realli',
  'nice',
  'beach',
  'tampa',
  'husband',
  'flew',
  'sil',
  'insist',
  'drive',
  'left',
  'roughli',
  'hour',
  'prior',
  'flight',
  'said',
  'cheaper',
  'drive',
  'fli',
  'husband',
  'arriv',
  'sil',
  'husband',
  'alreadi',
  'sit',
  'driveway',
  'saw',
  'pull',
  'ask',
  'got',
  'key',
  'yet',
  'met',
  'owner',
  'along',
  'way',
  'said',
  'oh',
  'good',
  'give',
  'quick',
  'get',
  'brute',
  'instead',
  'without',
  'seen',
  'stop',
  'dead',
  'track',
  'like',
  'fuck',
  'kid',
  'right',
  'kept',
  'say',
  'thing',
  'like',
  'find',
  'anyon',
  'watch',
  'fuck',
  'old',
  'hous',
  'broken',
  'know',
  'anyon',
  'would',
  'ignor',
  'enough',
  'say',
  'pet',
  'allow',
  'basic',
  'kept',
  'make',
  'excus',
  'right',
  'husband',
  'sit',
  'complet',
  'dumbfound',
  'shake',
  'head',
  'got',
  'back',
  'rental',
  'car',
  'left',
  'got',
  'refund',
  'airbnb',
  'drop',
  'key',
  'woman',
  'explain',
  'situat',
  'told',
  'could',
  'still',
  'stay',
  'ive',
  'honest',
  'told',
  'place',
  'big',
  'husband',
  'end',
  'stay',
  'significantli',
  'less',
  'expens',
  'hotel',
  'paid',
  'almost',
  '$',
  'week',
  'airbnb',
  'spent',
  '$',
  'week',
  'hotel',
  'whole',
  'time',
  'sil',
  'blow',
  'us',
  'say',
  'cant',
  'afford',
  'stay',
  'husband',
  'make',
  'lot',
  'sil',
  'husband',
  'agre',
  'pay',
  'everyth',
  'say',
  'bring',
  'anyth',
  'snack',
  'afford',
  'price',
  'shit',
  'whatev',
  'straight',
  'ignor',
  'eye',
  'tri',
  'ruin',
  'trip',
  '%',
  'paid',
  'mil',
  'throat',
  'say',
  'least',
  'could',
  'done',
  'give',
  'money',
  'food',
  'instead',
  'leav',
  'strand',
  'told',
  'nope',
  'drive',
  'back',
  'home',
  'get',
  'food',
  'aita'],
 ['wife',
  'invit',
  'brother',
  'st',
  'birthday',
  'singl',
  'live',
  'alon',
  'apart',
  'give',
  'headsup',
  'wife',
  'get',
  'along',
  'well',
  'civil',
  'enough',
  'sit',
  'tabl',
  'went',
  'dinner',
  'talk',
  'everyth',
  'go',
  'well',
  'argument',
  'noth',
  'til',
  'wife',
  'went',
  'use',
  'bathroom',
  'later',
  'brother',
  'went',
  'use',
  'bathroom',
  'came',
  'back',
  'look',
  'piss',
  'kept',
  'give',
  'wife',
  'look',
  'know',
  'go',
  'til',
  'pull',
  'asid',
  'left',
  'told',
  'wife',
  'left',
  'use',
  'pad',
  'bathroom',
  'shock',
  'know',
  'say',
  'felt',
  'highli',
  'inappropri',
  'said',
  'appreci',
  'wife',
  'sign',
  'disrespect',
  'toward',
  'apolog',
  'profoundli',
  'said',
  'know',
  'ask',
  'speak',
  'welcom',
  'place',
  'anymor',
  'got',
  'car',
  'ask',
  'wife',
  'nonchantli',
  'said',
  'noth',
  'wrong',
  'brother',
  'ridicul',
  'kind',
  'flip',
  'told',
  'inappropri',
  'leav',
  'use',
  'pad',
  'place',
  'even',
  'bathroom',
  'trashcan',
  'made',
  'uncomfort',
  'yell',
  'ask',
  'supoos',
  'told',
  'couldv',
  'took',
  'threw',
  'outsid',
  'bathroom',
  '--',
  'brother',
  'place',
  'told',
  'felt',
  'yell',
  'call',
  'brother',
  'incel',
  'asshol',
  'get',
  'face',
  'said',
  'need',
  'use',
  'bathroom',
  'like',
  'pad',
  'vidibl',
  'sinc',
  'dump',
  'trashcan',
  'home',
  'still',
  'argu',
  'kept',
  'call',
  'brother',
  'name',
  'current',
  'speak',
  'avoid',
  'entir',
  'regardless',
  'feel',
  'like',
  'place',
  'get',
  'express',
  'make',
  'uncomfort',
  'edit',
  'cant',
  'give',
  'info',
  'expand',
  'seen',
  'tell',
  'trash',
  'lid',
  'like',
  'one',
  'trashcan',
  'lid',
  'top',
  'push',
  'want',
  'emphas',
  'fact',
  'guest',
  'respect',
  'peopl',
  'home',
  'argu',
  'make',
  'uncomfort',
  'said',
  'made',
  'uncomfort',
  'opinion',
  'acknowledg'],
 ['dad',
  'die',
  'mom',
  'wait',
  'long',
  'start',
  'move',
  'new',
  'partner',
  'month',
  'later',
  'dad',
  'left',
  'everyth',
  'even',
  'dime',
  'marri',
  'dad',
  'structur',
  'challeng',
  'attempt',
  'even',
  'ask',
  'pass',
  'one',
  'properti',
  'show',
  'new',
  'dad',
  'welcom',
  'even',
  'want',
  'dad',
  'specifi',
  'must',
  'access',
  'everyth',
  'left',
  'dude',
  'kid',
  'age',
  'mom',
  'priorit',
  'keep',
  'happi',
  'mean',
  'like',
  'ab\\',
  '*',
  'sive',
  'neglect',
  'tend',
  'favor',
  'went',
  'trip',
  'even',
  'tell',
  'go',
  'shed',
  'say',
  'someth',
  'line',
  'like',
  'go',
  'grandpar',
  'dad',
  'better',
  'mean',
  'im',
  'stupid',
  'know',
  'want',
  'turn',
  'ask',
  'leav',
  'hous',
  'kept',
  'fight',
  'dude',
  'also',
  'remind',
  'whose',
  'hous',
  'want',
  'play',
  'man',
  'hous',
  'also',
  'call',
  'john',
  'conroy',
  'grandpar',
  'told',
  'avoid',
  'confront',
  'went',
  'live',
  'mom',
  'would',
  'visit',
  'often',
  'tell',
  'much',
  'love',
  'need',
  'keep',
  'peac',
  'home',
  'colleg',
  'decid',
  'check',
  'properti',
  'also',
  'one',
  'mom',
  'live',
  'want',
  'renov',
  'rent',
  'sinc',
  'good',
  'one',
  'help',
  'afford',
  'master',
  'went',
  'inform',
  'mom',
  'one',
  'later',
  'found',
  'went',
  'vacat',
  'call',
  'answer',
  'proceed',
  'chang',
  'lock',
  'mainli',
  'offici',
  'take',
  'possess',
  'arriv',
  'yesterday',
  'could',
  'get',
  'cours',
  'call',
  'town',
  'went',
  'day',
  'renov',
  'work',
  'start',
  'week',
  'back',
  'yard',
  'mom',
  'came',
  'furiou',
  'yell',
  'say',
  'dare',
  'talk',
  'let',
  'know',
  'two',
  'week',
  'leav',
  'husband',
  'unemploy',
  'oh',
  'sorri',
  'self-employ',
  'furiou',
  'mom',
  'stepdaught',
  'start',
  'cri',
  'girl',
  'pregnant',
  'im',
  'sorri',
  'made',
  'mind',
  'mom',
  'famili',
  'shame',
  'id',
  'like',
  'know',
  'think',
  'im',
  'ta',
  'mom',
  'call',
  'today',
  'say',
  'talk',
  'edit',
  'im',
  'usa',
  'realli',
  'look',
  'legal',
  'advic',
  'guy',
  'life',
  'usa',
  'exist',
  'countri',
  'world'],
 ['long',
  'stori',
  'short',
  'husband',
  'one',
  'femal',
  'friend',
  'ill',
  'call',
  'sarah',
  'get',
  'along',
  'fine',
  'everi',
  'awhil',
  'shell',
  'make',
  'comment',
  'sit',
  'littl',
  'close',
  'touch',
  'lot',
  'compet',
  'close',
  'well',
  'know',
  'one',
  'big',
  'group',
  'friend',
  'ive',
  'talk',
  'husband',
  'sever',
  'time',
  'mani',
  'ad',
  'micro-act',
  'hard',
  'tell',
  'one',
  'singular',
  'thing',
  'without',
  'look',
  'crazi',
  'well',
  'past',
  'weekend',
  'group',
  'friend',
  'got',
  'togeth',
  'first',
  'time',
  'sinc',
  'boost',
  'husband',
  'elop',
  'week',
  'ago',
  'first',
  'time',
  'see',
  'us',
  'sinc',
  'sarah',
  'came',
  'right',
  'got',
  'face',
  'group',
  'congratul',
  'us',
  'tell',
  'husband',
  'disappoint',
  'tell',
  'ceremoni',
  'invit',
  'even',
  'send',
  'photo',
  'told',
  'nobodi',
  'except',
  'parent',
  'knew',
  'nobodi',
  'invit',
  'profession',
  'photo',
  'back',
  'girl',
  'start',
  'sob',
  'could',
  'want',
  'man',
  'honor',
  'get',
  'marri',
  'singl',
  'even',
  'invit',
  'friendship',
  'need',
  'seriou',
  'tlc',
  'recov',
  'front',
  'whole',
  'group',
  'take',
  'anymor',
  'said',
  'might',
  'best',
  'friend',
  'even',
  'consider',
  'frosti',
  'ooo',
  'crowd',
  'left',
  'hous',
  'crowd',
  'split',
  'husband',
  'friend',
  'came',
  'pictur',
  'think',
  'uncal',
  'let',
  'husband',
  'handl',
  'mad',
  'moment',
  'know',
  'far',
  'tldr',
  'told',
  'husband',
  'femal',
  'friend',
  'best',
  'friend',
  'embarrass',
  'front',
  'friend',
  'aita'],
 ['boyfriend',
  'current',
  'long-dist',
  'take',
  'turn',
  'visit',
  'came',
  'see',
  'almost',
  'two',
  'month',
  'see',
  'final',
  'make',
  'plan',
  'request',
  'five',
  'day',
  'approv',
  'job',
  'ive',
  'work',
  'six',
  'year',
  'im',
  'secur',
  'guard',
  'depart',
  'store',
  'shift',
  'head',
  'quickli',
  'pick',
  'bf',
  'airport',
  'clock',
  'say',
  'bye',
  'everyon',
  'new',
  'boss',
  'week',
  'stop',
  'ask',
  'could',
  'cover',
  'shift',
  'sinc',
  'one',
  'co-work',
  'call',
  'sick',
  'short-staf',
  'need',
  'stay',
  'coupl',
  'hour',
  '-hour',
  'shift',
  'exhaust',
  'respond',
  'im',
  'sorri',
  'im',
  'unabl',
  'cant',
  'stay',
  'late',
  'cover',
  'shift',
  'past',
  'mind',
  'somewher',
  'mention',
  'pick',
  'someon',
  'airport',
  'told',
  'could',
  'take',
  'uber',
  'boyfriend',
  'happi',
  'also',
  'key',
  'apart',
  'one',
  'els',
  'want',
  'stay',
  'third',
  'person',
  'ask',
  'said',
  'said',
  'sorri',
  'cant',
  'tonight',
  'anoth',
  'time',
  'call',
  'lousi',
  'worker',
  'im',
  'team',
  'player',
  'said',
  'guess',
  'im',
  'team',
  'player',
  'walk',
  'pass',
  'call',
  'ill',
  'see',
  'five',
  'day',
  'drive',
  'airport',
  'kept',
  'get',
  'call',
  'text',
  'got',
  'bad',
  'pull',
  'turn',
  'phone',
  'boss',
  'want',
  'come',
  'back',
  'work',
  'turn',
  'phone',
  'boyfriend',
  'could',
  'contact',
  'phone',
  'flood',
  'text',
  'messag',
  'ding',
  'ding',
  'think',
  'got',
  'close',
  'text',
  'block',
  'number',
  'happi',
  'see',
  'bf',
  'get',
  'email',
  'boss',
  'constantli',
  'suppos',
  'time',
  'respond',
  'rare',
  'take',
  'vacat',
  'one',
  'ask',
  'stuff',
  'know',
  'answer',
  'second',
  'even',
  'im',
  'tell',
  'know',
  'start',
  'get',
  'petti',
  'still',
  'fun',
  'boyfriend',
  'went',
  'work',
  'boss',
  'call',
  'offic',
  'blew',
  'unprofession',
  'still',
  'new',
  'job',
  'help',
  'least',
  'repli',
  'email',
  'respond',
  'peopl',
  'couldv',
  'help',
  'respons',
  'vacat',
  'time',
  'got',
  'first',
  'write-up',
  'ever',
  'someth',
  'im',
  'miss',
  'someth',
  'inher',
  'wrong',
  'im',
  'actual',
  'consid',
  'report',
  'still',
  'new',
  'job',
  'asshol',
  'edit',
  'im',
  'canadian',
  'live',
  'bc',
  'updat',
  'sent',
  'email',
  'hr',
  'email',
  'text',
  'call',
  'log',
  'evid',
  'job',
  'like',
  'callso',
  'understand',
  'bother',
  'age',
  'roughli',
  'happier',
  'note',
  'boyfriend',
  'plan',
  'move',
  'togeth',
  'edit',
  'im',
  'secur',
  'guard',
  'department',
  'store',
  'like',
  'job',
  'hr',
  'set',
  'meet',
  'tomorrow',
  'boss',
  'boss',
  'tri',
  'ask',
  'first',
  'week',
  'work',
  'told',
  'nice',
  'edit',
  'thank',
  'everyon',
  'support',
  'post',
  'thought',
  'littl',
  'dramat',
  'im',
  'glad',
  'im',
  'crazi',
  'one',
  'decid',
  'im',
  'gon',
  'na',
  'look',
  'new',
  'job',
  'still',
  'wan',
  'na',
  'secur',
  'work',
  'im',
  'gon',
  'na',
  'move',
  'worri',
  'im',
  'still',
  'go',
  'complain',
  'boss',
  'report',
  'final',
  'updat',
  'boss',
  'fire'],
 ['husband',
  'marri',
  'year',
  'husband',
  'nurs',
  'told',
  'want',
  'becom',
  'doctor',
  'fulli',
  'support',
  'first',
  'year',
  'medial',
  'school',
  'support',
  'us',
  'work',
  'school',
  'recent',
  'found',
  'rent',
  'rais',
  '$',
  'end',
  'contract',
  'april',
  'honestli',
  'last',
  'straw',
  'push',
  'us',
  'past',
  'financi',
  'comfort',
  'rais',
  'idea',
  'us',
  'buy',
  'home',
  'convers',
  'year',
  'husband',
  'alway',
  'said',
  'could',
  'paid',
  'school',
  'debt',
  'nurs',
  'paid',
  'earli',
  'ask',
  'mother',
  'real',
  'estat',
  'agent',
  'told',
  'wed',
  'pay',
  'would',
  'better',
  'money',
  'go',
  'toward',
  'mortgag',
  'repay',
  'rent',
  'brought',
  'husband',
  'shut',
  'almost',
  'immedi',
  'told',
  'agreement',
  'wait',
  'paid',
  'debt',
  'told',
  'nurs',
  'school',
  'year',
  'hundr',
  'thousand',
  'dollar',
  'worth',
  'debt',
  'doctor',
  'pay',
  'debt',
  '+',
  'year',
  'told',
  'support',
  'career',
  'chang',
  'financi',
  'support',
  'household',
  'best',
  'financi',
  'decis',
  'us',
  'also',
  'reliev',
  'financi',
  'burden',
  'brought',
  'save',
  'deposit',
  'could',
  'afford',
  'someth',
  'small',
  'modest',
  'within',
  'budget',
  'told',
  'interest',
  'use',
  'money',
  'pay',
  'loan',
  'ask',
  'realis',
  'financi',
  'burden',
  'would',
  'put',
  'said',
  'temporari',
  'eventu',
  'hed',
  'make',
  'would',
  'even',
  'id',
  'agre',
  'mother',
  'call',
  'ask',
  'go',
  'look',
  'buy',
  'hous',
  'told',
  'wed',
  'look',
  'somewher',
  'cheaper',
  'rent',
  'instead',
  'insist',
  'least',
  'consid',
  'made',
  'financi',
  'sens',
  'ask',
  'down-deposit',
  'told',
  'probabl',
  'go',
  'use',
  'pay',
  'husband',
  'debt',
  'want',
  'debt',
  'debt',
  'free',
  'student',
  'loan',
  'day',
  'later',
  'mother',
  'father',
  'came',
  'lunch',
  'told',
  'us',
  'news',
  'offer',
  'gift',
  'us',
  'down-deposit',
  'home',
  'moon',
  'shock',
  'offer',
  'left',
  'husband',
  'explod',
  'claim',
  'emascul',
  'made',
  'look',
  'bad',
  'front',
  'parent',
  'told',
  'never',
  'ask',
  'take',
  'privileg',
  'peopl',
  'get',
  'would',
  'reliev',
  'much',
  'financi',
  'burden',
  'refus',
  'talk',
  'parent',
  'apologis',
  'shamingemascul',
  'refus',
  'apologis',
  'told',
  'make',
  'parent',
  'theyd',
  'done',
  'noth',
  'wrong',
  'aita'],
 ['husband',
  'hunter',
  'suffer',
  'fertil',
  'problem',
  'recent',
  'decid',
  'get',
  'surrog',
  'friend',
  'friend',
  'busi',
  'get',
  'everyth',
  'done',
  'legal',
  'alreadi',
  'contract',
  'place',
  'egg',
  'use',
  'worri',
  'regard',
  'plu',
  'surrog',
  'respect',
  'kind',
  'woman',
  'keep',
  'part',
  'contract',
  'tact',
  'hunter',
  'start',
  'act',
  'strang',
  'ive',
  'notic',
  'focus',
  'attent',
  'surrog',
  'like',
  'skip',
  'work',
  'visit',
  'get',
  'thing',
  'ask',
  'chat',
  'time',
  'social',
  'media',
  'also',
  'constantli',
  'offer',
  'thing',
  'like',
  'drive',
  'place',
  'sometim',
  'even',
  'invit',
  'offer',
  'repair',
  'stuff',
  'complain',
  'even',
  'told',
  'thing',
  'even',
  'know',
  'like',
  'bring',
  'gift',
  'tri',
  'speak',
  'look',
  'like',
  'said',
  'son',
  'still',
  'ask',
  'tone',
  'respect',
  'woman',
  'space',
  'got',
  'mad',
  'accus',
  'jealou',
  'woman',
  'carri',
  'child',
  'said',
  'make',
  'look',
  'bad',
  'said',
  'surrog',
  'one',
  'complain',
  'behavior',
  'said',
  'true',
  'appar',
  'made',
  'somewhat',
  'angri',
  'gave',
  'time',
  'cool',
  'bit',
  'yesterday',
  'surrog',
  'call',
  'say',
  'hunter',
  'came',
  'told',
  'guest',
  'leav',
  'ask',
  'said',
  'want',
  'show',
  'car',
  'bought',
  'shock',
  'said',
  'declin',
  'car',
  'ask',
  'leav',
  'start',
  'argu',
  'use',
  'public',
  'transport',
  'risk',
  'babi',
  'wellb',
  'fume',
  'call',
  'demand',
  'get',
  'home',
  'eventu',
  'got',
  'back',
  'pick',
  'fight',
  'yell',
  'say',
  'noth',
  'overstep',
  'disrespect',
  'inappropri',
  'toward',
  'surrog',
  'explain',
  'car',
  'ensur',
  'babi',
  'safe',
  'told',
  'stop',
  'disrespect',
  'woman',
  'stop',
  'use',
  'babi',
  'excus',
  'stomp',
  'boundari',
  'rant',
  'tri',
  'make',
  'work',
  'even',
  'accus',
  'love',
  'son',
  'much',
  'way',
  'put',
  'car',
  'without',
  'tell',
  'left',
  'hous',
  'came',
  'back',
  'refus',
  'speak',
  'mightv',
  'hard',
  'mightv',
  'oblivi',
  'im',
  'less',
  'sure',
  'see',
  'reaction'],
 ['femal',
  'husband',
  'male',
  'daughter',
  'payton',
  'femal',
  'payton',
  'goe',
  'small',
  'school',
  'kid',
  'grade',
  'birthday',
  'parti',
  'next',
  'month',
  'sent',
  'invit',
  'friend',
  'school',
  'invit',
  'whole',
  'class',
  'except',
  'one',
  'student',
  'student',
  'invit',
  'bulli',
  'payton',
  'sever',
  'time',
  'weve',
  'meet',
  'school',
  'parent',
  'obvious',
  'payton',
  'want',
  'kid',
  'parti',
  'girl',
  'mother',
  'call',
  'talk',
  'say',
  'daughter',
  'cri',
  'kid',
  'invit',
  'everyon',
  'school',
  'talk',
  'parti',
  'payton',
  'parti',
  'known',
  'classmat',
  'top',
  'explain',
  'daughter',
  'nice',
  'daughter',
  'reason',
  'invit',
  'mother',
  'know',
  'mother',
  'said',
  'im',
  'teach',
  'child',
  'bulli',
  'use',
  'wealth',
  'make',
  'friend',
  'disagre',
  'mother',
  'ask',
  'daughter',
  'apolog',
  'write',
  'payton',
  'letter',
  'could',
  'reconsid',
  'told',
  'would',
  'becom',
  'big',
  'deal',
  'everi',
  'time',
  'see',
  'mom',
  'aita',
  'edit',
  'question',
  'invit',
  'hand',
  'classroom',
  'hand',
  'parent',
  'directli',
  'ive',
  'seen',
  'peopl',
  'ask',
  'exactli',
  'kind',
  'bulli',
  'occur',
  'ill',
  'give',
  'coupl',
  'exampl',
  'last',
  'year',
  'year',
  '-',
  'one',
  'time',
  'payton',
  'came',
  'home',
  'cri',
  'littl',
  'girl',
  'mean',
  'tell',
  'pretti',
  'chubbi',
  'etc',
  '-',
  'payton',
  'come',
  'home',
  'cri',
  'sever',
  'time',
  'girl',
  'told',
  'way',
  'cheerlead',
  'payton',
  'cheer',
  'weekend',
  'pretti',
  '-',
  'told',
  'payton',
  'play',
  'rest',
  'girl',
  'class',
  'play',
  'jump',
  'rope',
  'recess',
  'girl',
  'told',
  'let',
  'payton',
  'play',
  'payton',
  'turn',
  'girl',
  'purpos',
  'got',
  'swing',
  'rope',
  'nice',
  'teacher',
  'saw',
  'happen',
  '-',
  'call',
  'payton',
  'cri',
  'babi',
  'coupl',
  'incid',
  'happen',
  'updat',
  'payton',
  'parti',
  'today',
  'much',
  'fun',
  'student',
  'invit',
  'show',
  'make',
  'past',
  'commun',
  'gate',
  'neighborhood',
  'someon',
  'gate',
  'order',
  'peopl',
  'enter',
  'face',
  'paint',
  'balloon',
  'anim',
  'bounc',
  'hous',
  'obstacl',
  'cours',
  'magic',
  'show',
  'charact',
  'appear',
  'even',
  'life',
  'size',
  'barbi',
  'box',
  'pictur',
  'pink',
  'everyth',
  'activ',
  'kid',
  'everyth',
  'hit',
  'also',
  'thank',
  'comment',
  'suggest',
  'swag',
  'bag',
  'kid',
  'love'],
 ['stepson',
  'got',
  'new',
  'car',
  'bio',
  'mom',
  'famili',
  'well',
  'unlik',
  'could',
  'afford',
  'buy',
  'car',
  'im',
  'happi',
  'stepson',
  'son',
  'fact',
  'complain',
  'unfair',
  'husband',
  'let',
  'ex',
  'gift',
  'son',
  'car',
  'unreason',
  'know',
  'teenag',
  'year',
  'mostli',
  'hard',
  'even',
  'harder',
  'expect',
  'kid',
  'reason',
  'son',
  'want',
  'take',
  'part',
  'drive',
  'car',
  'compromis',
  'els',
  'would',
  'get',
  'rid',
  'sat',
  'explain',
  'car',
  'stepbroth',
  'properti',
  'expect',
  'drive',
  'unless',
  'given',
  'permiss',
  'non',
  'kept',
  'give',
  'us',
  'ultimatum',
  'say',
  'either',
  'share',
  'car',
  'stepbroth',
  'car',
  'goe',
  'husband',
  'confront',
  'son',
  'went',
  'done',
  'much',
  'damag',
  'car',
  'threw',
  'paint',
  'ruin',
  'light',
  'damag',
  'front',
  'complet',
  'stepson',
  'breakdown',
  'saw',
  'morn',
  'husband',
  'beyond',
  'livid',
  'see',
  'fottag',
  'driveway',
  'cam',
  'see',
  'son',
  'damag',
  'car',
  'husband',
  'confront',
  'son',
  'later',
  'son',
  'laugh',
  'give',
  'middl',
  'finger',
  'went',
  'take',
  'camp',
  'save',
  'summer',
  'pay',
  'damag',
  'gave',
  'husband',
  'son',
  'found',
  'went',
  'batshit',
  'everyon',
  'hous',
  'accus',
  'steal',
  'tri',
  'pleas',
  'husband',
  'sex',
  'told',
  'stepbroth',
  'warn',
  'blame',
  'also',
  'said',
  'fault',
  'get',
  'car',
  'get',
  'husband',
  'get',
  'car',
  'first',
  'place',
  'avoid',
  'favorit',
  'conflict',
  'spend',
  'major',
  'time',
  'room',
  'refus',
  'come',
  'eat',
  'anyth',
  'im',
  'worri',
  'eat',
  'end',
  'hospit',
  'low',
  'bp'],
 ['come',
  'sex-posit',
  'household',
  'parent',
  'taught',
  'sister',
  'sex',
  'sexual',
  'non-vanilla',
  'lifestyl',
  'young',
  'age',
  'affection',
  'touchi',
  'public',
  'still',
  'seem',
  'care',
  'opinion',
  'live',
  'very…',
  'non-convent',
  'lifestyl',
  'afraid',
  'flaunt',
  'one',
  'hand',
  'parent',
  'never',
  'treat',
  'sex',
  'shame',
  'subject',
  'therefor',
  'receiv',
  'comprehens',
  'inclus',
  'form',
  'sex',
  'educ',
  'hand',
  'think',
  'introduc',
  'mani',
  'topic',
  'young',
  'age',
  'mani',
  'way',
  'sister',
  'angi',
  'turn',
  'like',
  'parent',
  'proclaim',
  'sex-posit',
  'qualm',
  'openli',
  'discuss',
  'sex',
  'great',
  'detail',
  'everi',
  'opportun',
  'believ',
  'person',
  'uncomfort',
  'must',
  'conserv',
  'virginprud',
  'clearli',
  'hate',
  'form',
  'self-express',
  'word',
  'wife',
  'zara',
  'huge',
  'fan',
  'pda',
  'hand-hold',
  'occasion',
  'kiss',
  'cheek',
  'comfort',
  'much',
  'public',
  'also',
  'type',
  'peopl',
  'discuss',
  'sex-lif',
  'peopl',
  'much',
  'less',
  'famili',
  'angi',
  'like',
  'zara',
  'believ',
  'zara',
  'conservativeprudish',
  'famili',
  'often',
  'make',
  'fun',
  'zara',
  'look',
  'embarrass',
  'discuss',
  'excruci',
  'detail',
  'sex',
  'zara',
  'bare',
  'say',
  'anyth',
  'angi',
  'still',
  'manag',
  'make',
  'fun',
  'speak',
  'angi',
  'much',
  'recent',
  'zara',
  'brother',
  'pass',
  'away',
  'angi',
  'husband',
  'bill',
  'knew',
  'partner',
  'want',
  'pass',
  'condol',
  'zara',
  'angi',
  'bill',
  'want',
  'attend',
  'wake',
  'instead',
  'take',
  'separ',
  'car',
  'angi',
  'suggest',
  'go',
  'togeth',
  'honest',
  'huge',
  'fan',
  'idea',
  'two',
  'hour',
  'drive',
  'live',
  'destin',
  'also',
  'plan',
  'leav',
  'earli',
  'could',
  'help',
  'set',
  'plan',
  'leav',
  'late',
  'still',
  'manag',
  'first',
  'everyth',
  'alright',
  'understand',
  'one',
  'speak',
  'car',
  'quiet',
  'car',
  'peopl',
  'keep',
  'sleep',
  'midway',
  'drive',
  'angi',
  'bill',
  'start',
  'make',
  'backseat',
  'car',
  'say',
  'make',
  'mean',
  'full-on',
  'make',
  'push',
  'car',
  'door',
  'make',
  'sort',
  'nois',
  'zara',
  'extrem',
  'uncomfort',
  'pull',
  'start',
  'yell',
  'angi',
  'told',
  'disgust',
  'behaviour',
  'act',
  'like',
  'horni',
  'littl',
  'teenag',
  'angi',
  'said',
  'griev',
  'yell',
  'get',
  'car',
  'first',
  'protest',
  'angri',
  'tire',
  'alreadi',
  'told',
  'find',
  'way',
  'home',
  'parent',
  'think',
  'went',
  'far',
  'zara',
  'need',
  'loosen',
  'order',
  'part',
  'famili',
  'obvious',
  'angi',
  'bill',
  'still',
  'extrem',
  'piss',
  'edit',
  'initi',
  'pull',
  'pull',
  'small',
  'petrol',
  'station',
  'littl',
  'cafe',
  'say',
  'side',
  'road',
  'poor',
  'choic',
  'word',
  'apologis',
  'confus'],
 ['met',
  'cousin',
  'husband',
  'last',
  'juli',
  'wed',
  'live',
  'sever',
  'state',
  'away',
  'addit',
  'meet',
  'first',
  'time',
  'also',
  'first',
  'time',
  'seen',
  'cousin',
  'year',
  'instantli',
  'got',
  'bad',
  'vibe',
  'made',
  'sever',
  'comment',
  'rub',
  'wrong',
  'way',
  'told',
  'seem',
  'like',
  'wild',
  'child',
  'said',
  'would',
  'bet',
  'im',
  'bad',
  'girl',
  'colleg',
  'sinc',
  'meet',
  'follow',
  'instagram',
  'sporad',
  'send',
  'reel',
  'open',
  'comment',
  'odd',
  'thing',
  'post',
  'like',
  'look',
  'good',
  'cousin',
  '👍',
  'even',
  'dmd',
  'hey',
  'ill',
  'state',
  'weekend',
  'business…lol',
  'never',
  'open',
  'either',
  'definit',
  'creep',
  'feel',
  'like',
  'could',
  'say',
  'anyth',
  'cousin',
  'close',
  'ive',
  'alway',
  'felt',
  'like',
  'look',
  'devout',
  'christian',
  'fast',
  'forward',
  'week',
  'one',
  'fake',
  'account',
  'instagram',
  'pop',
  'pictur',
  'ask',
  'money',
  '-rate',
  'pictur',
  'bio',
  'broken',
  'english',
  'pictur',
  'poorli',
  'crop',
  'screenshot',
  'two',
  'recent',
  'post',
  'cashapp',
  'random',
  'string',
  'number',
  'letter',
  'account',
  'look',
  'fake',
  'mani',
  'friend',
  'sent',
  'report',
  'account',
  'cours',
  'person',
  'appar',
  'fell',
  'cousin',
  'husband',
  'got',
  'long',
  'nasti',
  'dm',
  'cousin',
  'tell',
  'toler',
  'sin',
  'lifestyl',
  'whatev',
  'mean',
  'time',
  'gone',
  'far',
  'said',
  'care',
  'famili',
  'long',
  'pose',
  'threat',
  'marriag',
  'longer',
  'welcom',
  'live',
  'calmli',
  'polit',
  'respond',
  'account',
  'alreadi',
  'report',
  'account',
  'instagram',
  'taken',
  'apolog',
  'appar',
  'disrupt',
  'day',
  'respond',
  'believ',
  'said',
  'piti',
  'low',
  'self',
  'esteem',
  'would',
  'keep',
  'prayer',
  'lost',
  'point',
  'call',
  'stupid',
  'fall',
  'account',
  'obvious',
  'fake',
  'said',
  'husband',
  'blatant',
  'creep',
  'embarrass',
  'even',
  'marri',
  'sent',
  'screenshot',
  'month',
  'dm',
  'never',
  'respond',
  'conclud',
  'say',
  'marriag',
  'easili',
  'threaten',
  'get',
  'divorc',
  'take',
  'insecur',
  'shortli',
  'got',
  'angri',
  'phone',
  'call',
  'mom',
  'grandma',
  'say',
  'cousin',
  'made',
  'honest',
  'mistak',
  'respons',
  'cruel',
  'unjustifi',
  'appar',
  'cousin',
  'show',
  'everyon',
  'messag',
  'humili',
  'said',
  'mom',
  'worri',
  'relationship',
  'side',
  'famili',
  'perman',
  'damag',
  'may',
  'welcom',
  'futur',
  'famili',
  'gather',
  'grandmama',
  'want',
  'drama',
  'realli',
  'feel',
  'like',
  'respons',
  'line',
  'sinc',
  'one',
  'els',
  'agre',
  'im',
  'sure',
  'aita'],
 ['-year-old',
  'male',
  'around',
  'nine',
  'dad',
  'start',
  'see',
  'friend',
  'mom',
  'cheat',
  'mom',
  'marri',
  'three',
  'kid',
  'togeth',
  'dad',
  'ask',
  'custodi',
  'grant',
  'weekend',
  'seem',
  'happi',
  'alway',
  'tri',
  'includ',
  'everyth',
  'kind',
  'weird',
  'frustrat',
  'even',
  'tri',
  'make',
  'call',
  'wife',
  'mom',
  'went',
  'full',
  'custodi',
  'sever',
  'time',
  'sinc',
  'wife',
  'make',
  'accept',
  'new',
  'famili',
  'import',
  'spend',
  'actual',
  'time',
  'alon',
  'stop',
  'go',
  'hous',
  'tri',
  'fight',
  'full',
  'custodi',
  'mom',
  'start',
  'date',
  'stepdad',
  'nice',
  'guy',
  'told',
  'stop',
  'reason',
  'stop',
  'go',
  'never',
  'told',
  'dad',
  'one',
  'wife',
  'hostil',
  'toward',
  'dad',
  'use',
  'pay',
  'attent',
  'think',
  'like',
  'way',
  'one',
  'day',
  'told',
  'behind',
  'dad',
  'back',
  'obstacl',
  'dad',
  'happi',
  'stay',
  'mom',
  'full',
  'time',
  'anniversari',
  'day',
  'ago',
  'want',
  'go',
  'call',
  'mom',
  'threaten',
  'go',
  'hed',
  'go',
  'court',
  'took',
  'four',
  'kid',
  'includ',
  'wife',
  'parent',
  'parents-in-law',
  'celebr',
  'nice',
  'restaur',
  'said',
  'ticket',
  'vacat',
  'say',
  'anyth',
  'look',
  'said',
  'one',
  'said',
  'thank',
  'im',
  'go',
  'seem',
  'angri',
  'said',
  'ok',
  'enough',
  'want',
  'go',
  'said',
  'ask',
  'question',
  'five',
  'time',
  'sixth',
  'time',
  'said',
  'hate',
  'wife',
  'start',
  'ask',
  'end',
  'tell',
  'mean',
  'thing',
  'said',
  'seemingli',
  'uncomfort',
  'told',
  'us',
  'finish',
  'meal',
  'one',
  'talk',
  'rest',
  'night',
  'finish',
  'ask',
  'stepdad',
  'pick',
  'spoken',
  'dad',
  'sinc',
  'sent',
  'messag',
  'ask',
  'chang',
  'mind',
  'trip',
  'said',
  'cousin',
  'told',
  'dad',
  'stay',
  'grandpar',
  'wife',
  'text',
  'yesterday',
  'call',
  'brat',
  'ask',
  'happi',
  'potenti',
  'destroy',
  'half-sibl',
  'home',
  'life',
  'ignor',
  'cousin',
  'say',
  'kid',
  'hurt',
  'cri',
  'dad',
  'home',
  'say',
  'said',
  'thing',
  'agre',
  'tell',
  'later',
  'go',
  'updat',
  'guy',
  '[',
  'httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac',
  ']',
  'httpswwwredditcomusertoldhim_thetruthcommentsvuuare_my_dad_and_i_in_a_better_plac'],
 ['hey',
  'boyfriend',
  'im',
  'weve',
  'togeth',
  'almost',
  'two',
  'year',
  'boyfriend',
  'extrem',
  'hygien',
  'way',
  'like',
  'shower',
  'twice',
  'day',
  'wash',
  'cloth',
  'everi',
  'singl',
  'wear',
  'leav',
  'singl',
  'dish',
  'sink',
  'dirti',
  'ask',
  'littl',
  'top',
  'clean',
  'everyth',
  'around',
  'hous',
  'need',
  'scrub',
  'bodi',
  'separ',
  'time',
  'one',
  'shower',
  'cycl',
  'make',
  'sure',
  'miss',
  'dirt',
  'shower',
  'easili',
  'hour',
  'day',
  'obvious',
  'good',
  'basic',
  'hygien',
  'skill',
  'much',
  'relax',
  'exampl',
  'wear',
  '-shirt',
  'twice',
  'wash',
  'long',
  'stain',
  'cover',
  'someth',
  'stinki',
  'might',
  'leav',
  'dish',
  'sink',
  'hour',
  'dinner',
  'get',
  'wash',
  'would',
  'prefer',
  'kept',
  'everyth',
  'right',
  'away',
  'yesterday',
  'night',
  'laundri',
  'alway',
  'air-dri',
  'cloth',
  'save',
  'money',
  'reduc',
  'fade',
  'shrink',
  'usual',
  'laundri',
  'person',
  'one',
  'happen',
  'one',
  'take',
  'cloth',
  'washer',
  'lay',
  'dri',
  'came',
  'across',
  'one',
  'pair',
  'panti',
  'specif',
  'wear',
  'time',
  'month',
  'im',
  'certain',
  'ladi',
  'understand',
  'keep',
  'panti',
  'separ',
  'period',
  'aka',
  'ugli',
  'mayb',
  'blood',
  'stain',
  'pair',
  'period',
  'cute',
  'well',
  'kempt',
  'one',
  'im',
  'period',
  'anyway',
  'upon',
  'see',
  'told',
  'need',
  'throw',
  'pair',
  'away',
  'disgust',
  'unhygien',
  'made',
  'quit',
  'comment',
  'gross',
  'despit',
  'clean',
  'blood',
  'stain',
  'previou',
  'periodspot',
  'situat',
  'attempt',
  'explain',
  'keep',
  'pair',
  'sole',
  'bleed',
  'common',
  'thing',
  'girl',
  'quickli',
  'stop',
  'could',
  'tell',
  'disagre',
  'told',
  'pretti',
  'sure',
  'girl',
  'made',
  'feel',
  'realli',
  'know',
  'gross',
  'ugli',
  'alien',
  'im',
  'realli',
  'sure',
  'definit',
  'made',
  'upset',
  'feel',
  'type',
  'way',
  'someth',
  'felt',
  'natur',
  'guess',
  'snap',
  'forget',
  'explan',
  'make',
  'feel',
  'like',
  'im',
  'gross',
  'small',
  'argument',
  'insu',
  'end',
  'go',
  'bed',
  'kind',
  'frustrst',
  'think',
  'im',
  'wrong',
  'aita',
  '*',
  'edit',
  '*',
  'add',
  'black',
  'panti',
  'exactli',
  'work',
  'iud',
  'period',
  'spot',
  'sporad',
  'could',
  'go',
  'month',
  'without',
  'period',
  'could',
  'two',
  'month',
  'row',
  'could',
  'random',
  'light',
  'spot',
  'full',
  'blown',
  'waterfal',
  'realli',
  'consist',
  'due',
  'iud',
  'cant',
  'exactli',
  'plan',
  'start',
  'wear',
  'specif',
  'black',
  'period',
  'panti'],
 ['three',
  'sibl',
  'live',
  'home',
  'older',
  'brother',
  'work',
  'go',
  'school',
  'middl',
  'youngest',
  'brother',
  'middl',
  'high',
  'school',
  'take',
  'care',
  'six',
  'year',
  'parent',
  'work',
  'one',
  'clean',
  'make',
  'food',
  'take',
  'care',
  'dog',
  'access',
  'car',
  'share',
  'brother',
  'take',
  'go',
  'see',
  'friend',
  'hook',
  'tinder',
  'rando',
  'bring',
  'home',
  'groceri',
  'bu',
  'oh',
  'yeah',
  'also',
  'groceri',
  'shop',
  'tri',
  'talk',
  'parent',
  'say',
  'brother',
  'find',
  'younger',
  'one',
  'concentr',
  'school',
  'third',
  'year',
  'colleg',
  'wreck',
  'boyfriend',
  'talk',
  'parent',
  'let',
  'move',
  'apart',
  'garag',
  'pay',
  'rent',
  'apart',
  'live',
  'home',
  'rent',
  'free',
  'also',
  'graduat',
  'great',
  'job',
  'talk',
  'fair',
  'commit',
  'way',
  'young',
  'think',
  'move',
  'togeth',
  'get',
  'marri',
  'say',
  'young',
  'anyon',
  'els',
  'know',
  'want',
  'life',
  'get',
  'nurs',
  'degre',
  'get',
  'job',
  'readi',
  'parent',
  'went',
  'away',
  'weekend',
  'nascar',
  'vega',
  'third',
  'vacat',
  'year',
  'begrudg',
  'holiday',
  'work',
  'hard',
  'tire',
  'unpaid',
  'nannydog',
  'sitter',
  'grab',
  'laptop',
  'cloth',
  'thing',
  'gift',
  'wait',
  'older',
  'brother',
  'get',
  'home',
  'left',
  'told',
  'go',
  'milk',
  'boyfriend',
  'wait',
  'car',
  'around',
  'corner',
  'start',
  'text',
  'twenti',
  'minut',
  'later',
  'say',
  'need',
  'car',
  'take',
  'car',
  'left',
  'key',
  'counter',
  'even',
  'hous',
  'key',
  'grandpar',
  'pay',
  'educ',
  'liter',
  'noth',
  'parent',
  'hold',
  'let',
  'know',
  'come',
  'back',
  'let',
  'parent',
  'know',
  'last',
  'race',
  'left',
  'charg',
  'younger',
  'kid',
  'bail',
  'drove',
  'straight',
  'home',
  'instead',
  'spend',
  'night',
  'parti',
  'drive',
  'home',
  'today',
  'everyon',
  'mad',
  'immatur',
  'thoughtless',
  'care',
  'anymor',
  'talk',
  'grandfath',
  'say',
  'right',
  'brother',
  'look',
  'mom',
  'keep',
  'call',
  'complain',
  'hous',
  'mess',
  'gone',
  'hour',
  'got',
  'home',
  'brother',
  'pig',
  'older',
  'brother',
  'say',
  'asshol',
  'parent',
  'make',
  'everyth',
  'use',
  'find',
  'give',
  'shit',
  '&',
  'xb',
  'aita'],
 ['start',
  'id',
  'like',
  'say',
  'im',
  'bit',
  'big',
  'girl',
  'shame',
  'love',
  'way',
  'live',
  'motto',
  'everybodi',
  'els',
  'taken',
  '😅',
  'mil',
  'dh',
  'mom',
  'alway',
  'made',
  'comment',
  'weight',
  'eversinc',
  'got',
  'pregnant',
  'start',
  'make',
  'comment',
  'low',
  'key',
  'shame',
  'eat',
  'whenev',
  'visit',
  'shed',
  'give',
  'smaller',
  'plate',
  'portion',
  'cup',
  'even',
  'spoon',
  'also',
  'buy',
  'small',
  'size',
  'cloth',
  'even',
  'though',
  'im',
  'nd',
  'trimest',
  'cloth',
  'fit',
  'sil',
  'decid',
  'throw',
  'babi',
  'shower',
  'dh',
  'deni',
  'sister',
  'offer',
  'throw',
  'one',
  'whole',
  'side',
  'inlaw',
  'invit',
  'mom',
  'refus',
  'come',
  'dh',
  'said',
  'sister',
  'anoth',
  'stori',
  'later',
  'got',
  'mil',
  'charg',
  'serv',
  'food',
  'guest',
  'serv',
  'cake',
  'juic',
  'got',
  'hungri',
  'talk',
  'got',
  'eat',
  'cake',
  'second',
  'put',
  'hand',
  'cake',
  'mil',
  'grab',
  'arm',
  'said',
  'id',
  'gain',
  'enough',
  'weight',
  'alreadi',
  'keep',
  'son',
  'happi',
  'live',
  'larg',
  'walru',
  'shock',
  'know',
  'react',
  'especi',
  'sinc',
  'said',
  'loud',
  'look',
  'sorry-not-sorri',
  'kind',
  'way',
  'put',
  'cake',
  'grab',
  'stuff',
  'start',
  'walk',
  'daughter',
  'stop',
  'say',
  'cant',
  'leav',
  'mid',
  'parti',
  'embarrass',
  'like',
  'told',
  'tell',
  'mom',
  'leav',
  'want',
  'stay',
  'went',
  'said',
  'crazi',
  'mom',
  'want',
  'kick',
  'infront',
  'everybodi',
  'turn',
  'around',
  'kept',
  'walk',
  'call',
  'mom',
  'come',
  'pick',
  'went',
  'home',
  'dh',
  'came',
  'home',
  'look',
  'furiou',
  'ask',
  'explain',
  'babi',
  'shower',
  'mention',
  'mom',
  'start',
  'rant',
  'fuck',
  'someth',
  'minor',
  'told',
  'minor',
  'opinion',
  'sinc',
  'liter',
  'cut',
  'food',
  'let',
  'eat',
  'hungri',
  'said',
  'mom',
  'meant',
  'well',
  'need',
  'get',
  'rid',
  'easili',
  'offend',
  'mindset',
  'immedietli',
  'pass',
  'son',
  'said',
  'cake',
  'essenti',
  'food',
  'good',
  'enough',
  'reason',
  'walk',
  'babi',
  'shower',
  'mom',
  'sister',
  'put',
  'ton',
  'money',
  'time',
  'effort',
  'said',
  'hour',
  'call',
  'fix',
  'thing',
  'refus',
  'went',
  'stay',
  'mom',
  'stop',
  'pressut',
  'call',
  'apolog',
  'happen',
  'kept',
  'talk',
  'piss',
  'let',
  'mom',
  'sister',
  'feel',
  'call',
  'ungrat',
  'spite',
  'overreact',
  'info',
  'lot',
  'ask',
  'dh',
  'said',
  'sister',
  'argument',
  'answer',
  'sister',
  'infertil',
  'year',
  'dh',
  'claim',
  'becon',
  'obssess',
  'babi',
  'simpli',
  'bought',
  'stuff',
  'babi',
  'gift',
  'want',
  'throw',
  'babi',
  'shower',
  'sister',
  'great',
  'person',
  'doubt',
  'great',
  'iswil',
  'aunt',
  'dh',
  'kept',
  'insist',
  'someth',
  'wrong',
  'led',
  'fight',
  'end',
  'call',
  'possess',
  '&',
  '$',
  '^',
  'mom',
  'kick',
  'sister',
  'cut',
  'contact',
  'issu',
  'got',
  'wors',
  'bil',
  'husband',
  'argu',
  'dh',
  'well'],
 ['situat',
  'prettyfruatr',
  'say',
  'least',
  'let',
  'start',
  'context',
  'husband',
  'yearold',
  'daughter',
  'play',
  'piano',
  'particip',
  'sever',
  'play',
  'outsid',
  'school',
  'thing',
  'husband',
  'invit',
  'mom',
  'everi',
  'perform',
  'daughter',
  'say',
  '-',
  'mani',
  'time',
  'shed',
  'put',
  'daughter',
  'point',
  'mess',
  'need',
  'work',
  'hello',
  'even',
  'expert',
  'happen',
  'everi',
  'time',
  'daughter',
  'pick',
  'neg',
  'comment',
  'self',
  'esteem',
  'kept',
  'get',
  'low',
  'extens',
  'perform',
  'kept',
  'get',
  'low',
  'well',
  'told',
  'husband',
  'mom',
  'need',
  'either',
  'stop',
  'put',
  'daughter',
  'stop',
  'come',
  'play',
  'said',
  'mom',
  'grandmoth',
  'includ',
  'event',
  'support',
  'daughter',
  'perform',
  'past',
  'wednesday',
  'told',
  'husband',
  'mom',
  'sit',
  'one',
  'said',
  'late',
  'sent',
  'link',
  'date',
  'locat',
  'event',
  'sigh',
  'said',
  'noth',
  'mom',
  'arriv',
  'like',
  '-',
  'minut',
  'later',
  'sat',
  'next',
  'kept',
  'pull',
  'close',
  'whisper',
  'ear',
  'roll',
  'eye',
  'hard',
  'play',
  'got',
  'chanc',
  'see',
  'daughter',
  'look',
  'nervou',
  'shake',
  '-',
  'mother',
  'law',
  'look',
  'said',
  'let',
  'say',
  'today',
  'perform',
  'disappoint',
  'daughter',
  'shock',
  'floor',
  'complet',
  'daughter',
  'start',
  'cri',
  'rush',
  'away',
  'mother',
  'law',
  'casual',
  'said',
  'oh',
  'go',
  'appoint',
  'salon',
  'chloe',
  'granddaught',
  'birthday',
  'parti',
  'fume',
  'told',
  'said',
  'daughter',
  'okay',
  'made',
  'upset',
  'said',
  'someth',
  'along',
  'line',
  'tell',
  'left',
  'went',
  'home',
  'lost',
  'husband',
  'tell',
  'mom',
  'keep',
  'put',
  'daughter',
  'right',
  'said',
  'im',
  'overdramat',
  'mom',
  'construct',
  'critic',
  'told',
  'need',
  'stop',
  'invit',
  'daughter',
  'perform',
  'said',
  'ridicul',
  'expect',
  'mom',
  'exclud',
  'granddaught',
  'life',
  'like',
  'big',
  'argument',
  'daughter',
  'even',
  'interest',
  'play',
  'anymor',
  'husband',
  'said',
  'way',
  'line',
  'use',
  'daughter',
  'fight',
  'mom',
  'also',
  'call',
  'control',
  'viciou',
  'aita',
  'eta',
  '[',
  'sinc',
  'took',
  'peopl',
  'ask',
  'question',
  'id',
  'like',
  'add',
  'context',
  'bulletpoint',
  'form',
  ']',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'talk',
  'due',
  'past',
  'disagr',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'uncomfort',
  'concept',
  'play',
  'piano',
  'think',
  'daughter',
  'wast',
  'time',
  'get',
  'distract',
  'zero',
  'benefit',
  'sinc',
  'husband',
  'want',
  'becom',
  'doctor',
  'daughter',
  'wan',
  'na',
  'doctor',
  'argument',
  'anoth',
  'time',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'think',
  'im',
  'wast',
  'husband',
  'money',
  'enrol',
  'daughter',
  'piano',
  'class',
  'sinc',
  '*',
  '[',
  ']',
  'husband',
  'told',
  'hell',
  'keep',
  'invit',
  'mom',
  'til',
  'learn',
  'stop',
  'use',
  'daughter',
  'tool',
  'fight',
  'mom',
  'believ',
  'im'],
 ['im',
  'prefac',
  'say',
  'daughter',
  'sandi',
  'incred',
  'sensit',
  'person',
  'love',
  'help',
  'peopl',
  'come',
  'well',
  'background',
  'compar',
  'friend',
  'past',
  'month',
  'chariti',
  'work',
  'cut',
  'hair',
  'donat',
  'cancer',
  'patient',
  'pawn',
  'thing',
  'sold',
  'expens',
  'clothessho',
  'andor',
  'gave',
  'away',
  'help',
  'friend',
  'famili',
  'wear',
  'thrift',
  'shop',
  'cloth',
  'someth',
  'wife',
  'happi',
  'think',
  'sandi',
  'wasi',
  'paint',
  'bad',
  'pictur',
  'us',
  'neglect',
  'parent',
  'give',
  'fals',
  'impress',
  'peopl',
  'poor',
  'fact',
  'well',
  'financi',
  'admit',
  'wife',
  'appear',
  'recent',
  'start',
  'notic',
  'exclud',
  'sandi',
  'eventsgath',
  'dress',
  'talk',
  'said',
  'head',
  'last',
  'week',
  'wife',
  'birthday',
  'celebr',
  'restaur',
  'ask',
  'wife',
  'get',
  'sandi',
  'meet',
  'although',
  'first',
  'hint',
  'sandi',
  'refus',
  'dress',
  'properli',
  'bring',
  'told',
  'bring',
  'wed',
  'issu',
  'parti',
  'would',
  'call',
  'wait',
  'saw',
  'wife',
  'walk',
  'restaur',
  'mad',
  'im',
  'gon',
  'na',
  'lie',
  'ask',
  'sandi',
  'told',
  'feel',
  'like',
  'come',
  'even',
  'though',
  'talk',
  'excit',
  'parti',
  'gut',
  'feel',
  'wife',
  'lie',
  'text',
  'sandi',
  'sure',
  'enough',
  'wife',
  'gave',
  'ultimatuim',
  'say',
  'either',
  'wear',
  'someth',
  'match',
  'class',
  'allow',
  'come',
  'birthday',
  'friend',
  'famili',
  'gather',
  'went',
  'call',
  'sandi',
  'outsid',
  'cri',
  'furiou',
  'walk',
  'insid',
  'restaur',
  'pick',
  'argument',
  'wife',
  'told',
  'famili',
  'friend',
  'exactli',
  'sandi',
  'wife',
  'look',
  'shock',
  'start',
  'argu',
  'end',
  'call',
  'entir',
  'event',
  'everyon',
  'els',
  'leav',
  'earli',
  'wife',
  'liter',
  'start',
  'yell',
  'restaur',
  'took',
  'stuff',
  'went',
  'home',
  'got',
  'back',
  'kept',
  'yell',
  'ruin',
  'birthday',
  'make',
  'scene',
  'humili',
  'infront',
  'friend',
  'famili',
  'said',
  'sandi',
  'act',
  'stubborn',
  'told',
  'act',
  'unreason',
  'exclud',
  'like',
  'sandi',
  'cri',
  'felt',
  'like',
  'big',
  'look',
  'despit',
  'wife',
  'say',
  'bug',
  'deal',
  'ruin',
  'birthday',
  'reason',
  'went',
  'stay',
  'famili',
  'even',
  'repli',
  'text',
  'read',
  'respond',
  'probabl',
  'expect',
  'apolog',
  'happen',
  'aita',
  'go',
  'far'],
 ['[',
  'fianc',
  '[',
  'got',
  'engag',
  'month',
  'ago',
  'hous',
  'current',
  'live',
  'move',
  'start',
  'help',
  'mortgag',
  'payment',
  'daughter',
  '[',
  'rubi',
  'ador',
  'anim',
  'pet',
  'far',
  'life',
  'unfortun',
  'dog',
  'tic',
  'pass',
  'away',
  'closest',
  'friend',
  'favorit',
  'pet',
  'devast',
  'well',
  'preciou',
  'way',
  'honor',
  'ive',
  'print',
  'middl',
  'size',
  'pictur',
  'rubi',
  'favorit',
  'put',
  'frame',
  'hang',
  'frame',
  'live',
  'room',
  'wall',
  'rubi',
  'happi',
  'especi',
  'sinc',
  'get',
  'see',
  'smile',
  'walk',
  'give',
  'comfort',
  'fianc',
  'saw',
  'got',
  'upset',
  'comment',
  'strang',
  'dog',
  'pictur',
  'wall',
  'much',
  'distract',
  'bring',
  'felt',
  'puzzl',
  'kind',
  'pictur',
  'hang',
  'wall',
  'suggest',
  'remov',
  'ignor',
  'one',
  'day',
  'got',
  'home',
  'saw',
  'taken',
  'rubi',
  'room',
  'cri',
  'hold',
  'pictur',
  'ask',
  'happen',
  'told',
  'fianc',
  'took',
  'pictur',
  'told',
  'allow',
  'hung',
  'also',
  'told',
  'keep',
  'room',
  'want',
  'lose',
  'good',
  'shock',
  'rush',
  'immedi',
  'start',
  'take',
  'certif',
  'wall',
  'doctor',
  'master',
  'bachelor',
  'degre',
  '-',
  'certif',
  'well',
  'took',
  'put',
  'bedroom',
  'discov',
  'snap',
  'said',
  'hous',
  'well',
  'respect',
  'input',
  'defens',
  'told',
  'sinc',
  'daughter',
  'keep',
  'room',
  'keep',
  'certif',
  'room',
  'accord',
  'logich',
  'yell',
  'demand',
  'stop',
  'nag',
  'act',
  'childishli',
  'spite',
  'want',
  'put',
  'back',
  'refus',
  'said',
  'tic',
  'pictur',
  'put',
  'back',
  'well',
  'yell',
  'disrespect',
  'achiev',
  'treat',
  'trash',
  'storm',
  'give',
  'rubi',
  'cold',
  'shoulder',
  'day',
  'say',
  'speak',
  'neither',
  'us',
  'til',
  'apolog',
  'put',
  'certif',
  'back',
  'wall'],
 ['-',
  'daughter',
  '-',
  'love',
  'bake',
  'incred',
  'good',
  'passion',
  'sinc',
  'encourag',
  'follow',
  'discov',
  'way',
  'becom',
  'better',
  'even',
  'enrol',
  'class',
  'academi',
  'learn',
  'met',
  'fianc',
  '-',
  'half',
  'year',
  'ago',
  'get',
  'marri',
  'soon',
  'wed',
  'cake',
  'idea',
  'daughter',
  'bake',
  'cake',
  'decor',
  'us',
  'daughter',
  'agre',
  'excit',
  'fianc',
  'glanc',
  'heard',
  'alon',
  'snap',
  'said',
  'cant',
  'believ',
  'seriou',
  'told',
  'like',
  'huge',
  'formal',
  'wed',
  'mani',
  'guest',
  'small',
  'parti',
  'famili',
  'love',
  'one',
  'said',
  'fuck',
  'joke',
  'let',
  'child',
  'bake',
  'wed',
  'cake',
  'ton',
  'profession',
  'baker',
  'make',
  'much',
  'decent',
  'lookingtast',
  'one',
  'said',
  'understand',
  'problem',
  'thought',
  'love',
  'bake',
  'respond',
  'love',
  'bake',
  'let',
  'stick',
  'muffin',
  'browni',
  'told',
  'unreason',
  'word',
  'hurt',
  'daughter',
  'abil',
  'told',
  'realist',
  'think',
  'guest',
  'say',
  'said',
  'guest',
  'famili',
  'friend',
  'doubt',
  'theyd',
  'make',
  'neg',
  'comment',
  'cake',
  'know',
  'daughter',
  'made',
  'matter',
  'fact',
  'might',
  'even',
  'think',
  'sweet',
  'got',
  'mad',
  'said',
  'noth',
  'sweet',
  'get',
  'embarrass',
  '*',
  '*',
  'wed',
  'day',
  'argu',
  'hour',
  'go',
  'back',
  'forth',
  'issu',
  'later',
  'got',
  'call',
  'mother',
  'tell',
  'start',
  'ration',
  'look',
  'thing',
  'son',
  'prespect',
  'suggest',
  'get',
  'profession',
  'cake',
  'wed',
  'daughter',
  'mayb',
  'bake',
  'cupcak',
  'buffett',
  'someth',
  'convinc',
  'felt',
  'like',
  'theyr',
  'decid',
  'wed',
  'plan',
  'forc',
  'want',
  'care',
  'cake',
  'look',
  'sentiment',
  'care'],
 ['famili',
  'tradit',
  'goe',
  'back',
  'gener',
  'oldest',
  'famili',
  'join',
  'militari',
  'main',
  'branch',
  'mom',
  'armi',
  'retir',
  'major',
  'grandpa',
  'air',
  'forc',
  'retir',
  'colonel',
  'believ',
  'great',
  'grandpa',
  'navi',
  'great',
  'great',
  'grandfath',
  'marin',
  'great',
  'grandfath',
  'also',
  'marin',
  'famili',
  'proud',
  'fact',
  'throw',
  'face',
  'sinc',
  'fresh',
  'cooter',
  'school',
  'year',
  'come',
  'end',
  'turn',
  'last',
  'month',
  'mom',
  'forc',
  'fit',
  'cours',
  'buy',
  'textbook',
  'help',
  'studi',
  'asvab',
  'would',
  'rebel',
  'awhil',
  'ago',
  'sadli',
  'younger',
  'brother',
  'past',
  'away',
  'year',
  'ago',
  'realli',
  'hard',
  'parent',
  'ive',
  'go',
  'along',
  'last',
  'week',
  'overheard',
  'mom',
  'talk',
  'phone',
  'recruit',
  'talk',
  'option',
  'possibl',
  'becom',
  'offic',
  'guess',
  'realiz',
  'final',
  'hit',
  'told',
  'mom',
  'im',
  'join',
  'day',
  'ago',
  'huge',
  'fight',
  'happen',
  'basic',
  'wast',
  'time',
  'call',
  'disappoint',
  'think',
  'right',
  'choos',
  'aita'],
 ['husband',
  'expect',
  'fir',
  'babi',
  'yei',
  'weve',
  'parent',
  'understand',
  'boundari',
  'overal',
  'realli',
  'good',
  'context',
  'come',
  'abus',
  'home',
  'cant',
  'stand',
  'touch',
  'get',
  'pregnant',
  'problem',
  'in-law',
  'im',
  'carri',
  'babi',
  'aw',
  'mil',
  'sil',
  'think',
  'touch',
  'belli',
  'whenev',
  'want',
  'husband',
  'talk',
  'said',
  'would',
  'rather',
  'touch',
  'understand',
  'big',
  'thing',
  'famili',
  'would',
  'simpli',
  'like',
  'ask',
  'instead',
  'feel',
  'hand',
  'random',
  'time',
  'rare',
  'move',
  'touch',
  'onto',
  'subject',
  'week',
  'ago',
  'best',
  'friend',
  'threw',
  'babi',
  'shower',
  'invit',
  'in-law',
  'sinc',
  'blood',
  'famili',
  'left',
  'let',
  'invit',
  'peopl',
  'includ',
  'aunts-cousin',
  'husband',
  'grandpar',
  'overal',
  'love',
  'moment',
  'one',
  'time',
  'sit',
  'eat',
  'cake',
  'mil',
  'talk',
  'fil',
  'sister',
  'tell',
  'someth',
  'babi',
  'put',
  'hand',
  'belli',
  'idk',
  'like',
  'took',
  'hand',
  'remov',
  'said',
  'know',
  'ive',
  'told',
  'touch',
  'without',
  'ask',
  'fir',
  'know',
  'ask',
  'first',
  'easi',
  'condescend',
  'voic',
  'mil',
  'fil',
  'sister',
  'look',
  'shock',
  'fil',
  'sister',
  'laugh',
  'mil',
  'got',
  'red',
  'face',
  'done',
  'mil',
  'approach',
  'said',
  'nice',
  'slip',
  'treat',
  'like',
  'kid',
  'smile',
  'said',
  'touch',
  'ask',
  'million',
  'time',
  'kid',
  'behavior',
  'call',
  'left',
  'sad',
  'got',
  'home',
  'fil',
  'call',
  'husband',
  'said',
  'would',
  'love',
  'us',
  'apolog',
  'said',
  'call',
  'ah'],
 ['recent',
  'admit',
  'hospit',
  'night',
  'due',
  'seriou',
  'life-threaten',
  'ill',
  'complet',
  'sever',
  'day',
  'horribl',
  'pain',
  'roommat',
  'convinc',
  'get',
  'medic',
  'help',
  'took',
  'work',
  'stay',
  'hospit',
  'express',
  'much',
  'support',
  'help',
  'famili',
  'live',
  'far',
  'away',
  'ive',
  'date',
  'sam',
  'nine',
  'month',
  'knew',
  'sick',
  'text',
  'first',
  'go',
  'hospit',
  'updat',
  'sinc',
  'work',
  'read',
  'messag',
  'much',
  'later',
  'sent',
  'around',
  'text',
  'updat',
  'nurs',
  'say',
  'includ',
  'photo',
  'iv',
  'give',
  'thumb',
  'first',
  'time',
  'ever',
  'hospit',
  'want',
  'keep',
  'shitti',
  'situat',
  'light-heart',
  'possibl',
  'respond',
  'hour',
  'later',
  'thumb',
  'ask',
  'everyth',
  'right',
  'said',
  'yeah',
  'hospit',
  'give',
  'lot',
  'anxieti',
  'id',
  'rather',
  'see',
  'look',
  'like',
  'told',
  'okay',
  'messag',
  'rest',
  'night',
  'think',
  'much',
  'next',
  'afternoon',
  'mom',
  'call',
  'ask',
  'okay',
  'impress',
  'sent',
  'hospit',
  'photo',
  'told',
  'share',
  'inform',
  'disrespect',
  'request',
  'remind',
  'grandfath',
  'die',
  'year',
  'earlier',
  'sam',
  'spend',
  'lot',
  'time',
  'hospit',
  'updat',
  'make',
  'griev',
  'apolog',
  'sent',
  'text',
  'say',
  'mean',
  'hurt',
  'feel',
  'left',
  'read',
  'roommat',
  'think',
  'anyth',
  'wrong',
  'sensitiveimmatur',
  'involv',
  'mom',
  'person',
  'think',
  'bit',
  'unfair',
  'realli',
  'close',
  'grandfath',
  'struggl',
  'anxieti',
  'feel',
  'realli',
  'realli',
  'guilti',
  'know',
  'mental',
  'health',
  'never',
  'want',
  'suffer',
  'aita',
  'updat',
  'morn',
  'woke',
  'text',
  'sam',
  'ask',
  'break',
  'told',
  'need',
  'focu',
  'much',
  'drama',
  'relationship',
  'agre',
  'ive',
  'sam',
  'anxieti',
  'attack',
  'hold',
  'cri',
  'arm',
  'time',
  'count',
  'never',
  'done',
  'ive',
  'made',
  'excus',
  'behavior',
  'ive',
  'beg',
  'go',
  'therapi',
  'alway',
  'refus',
  'hospit',
  'stay',
  'comment',
  'eye-open',
  'oh',
  'mom',
  'remind',
  'let',
  'go',
  'feel',
  'best',
  'im',
  'start',
  'therapi',
  'bc',
  'ill',
  'need',
  'support',
  'gone',
  'actual',
  'laugh',
  'loud',
  'one',
  'reach',
  'yet',
  'hope',
  'never',
  'roommat',
  'figur',
  'end',
  'thing',
  'yep',
  'feel',
  'lot',
  'emot',
  'know',
  'best',
  'also',
  'thank',
  'much',
  'love',
  'redditor',
  'given',
  'advic',
  'wish',
  'well',
  'im',
  'much',
  'better',
  'appreci',
  'ton'],
 ['ill',
  'prefac',
  'say',
  'husband',
  'famili',
  'get',
  'along',
  'like',
  'rare',
  'ever',
  'good',
  'term',
  'mental',
  'health',
  'decid',
  'put',
  'distanc',
  'us',
  'especi',
  'blame',
  'recent',
  'miscarriag',
  'happen',
  'month',
  'ago',
  'husband',
  'still',
  'see',
  'visit',
  'whenev',
  'want',
  'attend',
  'event',
  'even',
  'thanksgiv',
  'christma',
  'husband',
  'th',
  'birthday',
  'day',
  'ago',
  'plan',
  'celebr',
  'bought',
  'cake',
  'gift',
  'said',
  'famili',
  'invit',
  'celebr',
  'birthday',
  '*',
  'realli',
  'realli',
  'realli',
  '*',
  'want',
  'go',
  'birthday',
  'parti',
  'famili',
  'throw',
  'like',
  'argument',
  'told',
  'wait',
  'til',
  'finish',
  'celebr',
  'famili',
  'could',
  'celebr',
  'togeth',
  'home',
  'eat',
  'cake',
  'left',
  'felt',
  'terribl',
  'call',
  'turn',
  'phone',
  'mad',
  'took',
  'cake',
  'brought',
  'live',
  'room',
  'start',
  'eat',
  'ate',
  'whole',
  'thing',
  'save',
  'singl',
  'piec',
  'guess',
  'angri',
  'made',
  'hungri',
  'came',
  'home',
  'saw',
  'blew',
  'say',
  'spite',
  'punish',
  'ditch',
  'famili',
  'birthday',
  'like',
  'want',
  'remind',
  'paid',
  'cake',
  'call',
  'petti',
  'nut',
  'rant',
  'rant',
  'said',
  'get',
  'eat',
  'cake',
  'parent',
  'hous',
  'lot',
  'kid',
  'get',
  'enough',
  'cake',
  'time',
  'wors',
  'upset',
  'ever',
  'sinc',
  'aita'],
 ['diabet',
  'keep',
  'packag',
  'snack',
  'near',
  'essenti',
  'often',
  'time',
  'get',
  'low',
  'blood',
  'suger',
  'due',
  'issu',
  'appetit',
  'eat',
  'lunch',
  'dinner',
  'properli',
  'brother',
  'law',
  'pregnant',
  'wife',
  'move',
  'us',
  'month',
  'ago',
  'issu',
  'began',
  'sil',
  'start',
  'eat',
  'snack',
  'usual',
  'keep',
  'insid',
  'fridg',
  'tri',
  'buy',
  'snack',
  'sometim',
  'run',
  'end',
  'drink',
  'water',
  'mix',
  'sugar',
  'middl',
  'night',
  'anyth',
  'els',
  'eat',
  'husband',
  'go',
  'store',
  'get',
  'anyth',
  'told',
  'husband',
  'told',
  'patient',
  'brother',
  'wife',
  'pregnant',
  'consid',
  'sort',
  'sick',
  'need',
  'cut',
  'slack',
  'honest',
  'move',
  'snack',
  'bedroom',
  'insid',
  'box',
  'keep',
  'safe',
  'sil',
  'said',
  'strang',
  'longer',
  'buy',
  'snack',
  'told',
  'actual',
  'still',
  'keep',
  'safe',
  'room',
  'one',
  'touch',
  'side-ey',
  'argument',
  'ensu',
  'husband',
  'brother',
  'came',
  'home',
  'husband',
  'berat',
  'rude',
  'sil',
  'childish',
  'move',
  'snack',
  'keep',
  'bedroom',
  'told',
  'though',
  'know',
  'said',
  'overreact',
  'harm',
  'share',
  'demand',
  'put',
  'whatev',
  'snack',
  'back',
  'fridg',
  'stop',
  'act',
  'like',
  'child',
  'said',
  'sil',
  'husband',
  'get',
  'upset',
  'need',
  'understand',
  'im',
  'diabet',
  'need',
  'snack',
  'essenti',
  'yell',
  'face',
  'call',
  'childish',
  'walk',
  'bil',
  'sil',
  'cold',
  'shoulder',
  'husband',
  'keep',
  'push',
  'put',
  'snack',
  'back',
  'fridg',
  'belong',
  'speak',
  'well',
  'aita'],
 ['im',
  'turn',
  'forti',
  'last',
  'week',
  'im',
  'divorc',
  'teenag',
  'kid',
  'ex',
  'wife',
  'whole',
  'famili',
  'came',
  'gf',
  'appart',
  'last',
  'saturday',
  'birthday',
  'parti',
  'parent',
  'aunt',
  'uncl',
  'cousin',
  'brother',
  'famili',
  'two',
  'kid',
  'gf',
  'yro',
  'son',
  'live',
  'us',
  'recov',
  'alcohol',
  'ive',
  'sober',
  'year',
  'alcohol',
  'absolut',
  'ruin',
  'life',
  'destroy',
  'marriag',
  'nuke',
  'relationship',
  'kid',
  'year',
  'allow',
  'alcohol',
  'home',
  'anyon',
  'serv',
  'toler',
  'entir',
  'famili',
  'know',
  'well',
  'know',
  'entir',
  'histori',
  'alcohol',
  'th',
  'brother',
  'bought',
  'expens',
  'bottl',
  'whiskey',
  'write',
  'heavi',
  'bottl',
  'old',
  'whiskey',
  'probabl',
  'cost',
  'coupl',
  'hundr',
  'buck',
  'gave',
  'bottl',
  'shock',
  'said',
  'drink',
  'thank',
  'gift',
  'open',
  'bottl',
  'start',
  'pour',
  'shot',
  'plastic',
  'cup',
  'everyon',
  'daughter',
  'panic',
  'attack',
  'smell',
  'alcohol',
  'pain',
  'awar',
  'fault',
  'never',
  'forgiv',
  'told',
  'brother',
  'take',
  'alcohol',
  'balconi',
  'leav',
  'took',
  'shot',
  'whiskey',
  'told',
  'serious',
  'stop',
  'proceed',
  'pour',
  'whiskey',
  'said',
  'act',
  'like',
  'sober',
  'saint',
  'ruin',
  'everyon',
  'birthday',
  'year',
  'drink',
  'told',
  'come',
  'hallway',
  'talk',
  'refus',
  'put',
  'glass',
  'whiskey',
  'hand',
  'took',
  'trash',
  'threw',
  'whiskey',
  'bottl',
  'plastic',
  'cup',
  'took',
  'trash',
  'brother',
  'storm',
  'mom',
  'follow',
  'later',
  'call',
  'demand',
  'apolog',
  'disrespect',
  'brother',
  'like',
  'dad',
  'said',
  'overli',
  'sensit',
  'famili',
  'member',
  'also',
  'agre',
  'aita'],
 ['husband',
  'first',
  'time',
  'parent',
  '-month-old',
  'son',
  'jack',
  'ive',
  'struggl',
  'sinc',
  'born',
  'difficult',
  'pregnanc',
  'son',
  'colic',
  'matern',
  'leav',
  'short',
  'diagnos',
  'ppd',
  'get',
  'treatment',
  'husband',
  'demand',
  'job',
  'id',
  'love',
  'quit',
  'cant',
  'afford',
  'right',
  'mani',
  'friend',
  'state',
  'live',
  'im',
  'lone',
  'mil',
  'poor',
  'health',
  'husband',
  'gone',
  'per',
  'week',
  'help',
  'day',
  'even',
  'sinc',
  'jack',
  'born',
  'plu',
  'home',
  'flood',
  'broken',
  'pipe',
  'month',
  'ago',
  'handl',
  'cleanup',
  'nightmar',
  'mom',
  'live',
  'hour',
  'away',
  'never',
  'offer',
  'help',
  'anyth',
  'weve',
  'alway',
  'pretti',
  'good',
  'relationship',
  'stay-at-hom',
  'mom',
  'love',
  'devot',
  'brother',
  'sister',
  'empti',
  'nester',
  'spend',
  'day',
  'yoga',
  'see',
  'friend',
  'mom',
  'want',
  'see',
  'babi',
  'low',
  'effort',
  'ask',
  'time',
  'could',
  'babysit',
  'run',
  'errand',
  'alway',
  'say',
  'call',
  'height',
  'ppd',
  'sob',
  'say',
  'scare',
  'alon',
  'could',
  'come',
  'brunch',
  'plan',
  'stop',
  'ask',
  'anyth',
  'today…',
  'best',
  'friend',
  '+',
  'year',
  'get',
  'marri',
  'next',
  'weekend',
  'state',
  'hour',
  'away',
  'plane',
  'im',
  'maid',
  'honor',
  'husband',
  'offici',
  'children',
  'invit',
  'venu',
  'unsaf',
  'month',
  'ago',
  'start',
  'look',
  'someon',
  'watch',
  'jack',
  'call',
  'everyon',
  'could',
  'think',
  'month',
  'search',
  'final',
  'found',
  'babysitt',
  'state',
  'friend',
  'friend',
  'well',
  'babysitt',
  'call',
  'friday',
  'cancel',
  'ive',
  'spent',
  'past',
  'day',
  'call',
  'childcar',
  'agenc',
  'zero',
  'luck',
  'final',
  'explain',
  'desper',
  'mom',
  'ask',
  'could',
  'watch',
  'jack',
  'hour',
  'offer',
  'fli',
  'mom',
  'state',
  'us',
  'get',
  'hotel',
  'room',
  'shed',
  'need',
  'watch',
  'hour',
  'tear',
  'beg',
  'mom',
  'said',
  'yoga',
  'class',
  'want',
  'cancel',
  'straw',
  'broke',
  'camel',
  'back',
  'month',
  'empathi',
  'flounder',
  'ppd',
  'told',
  'mom',
  'sinc',
  'never',
  'help',
  'ever',
  'cut',
  'contact',
  'get',
  'see',
  'grandson',
  'know',
  'mom',
  'oblig',
  'help',
  'us',
  'expect',
  'see',
  'son',
  'aita',
  'deni',
  'mom',
  'relationship',
  'grandson',
  'never',
  'offer',
  'help'],
 ['happen',
  'last',
  'night',
  'im',
  'still',
  'hella',
  'confus',
  'whole',
  'thing',
  'date',
  'boyfriend',
  'month',
  'famili',
  'italian',
  'origin',
  'take',
  'lot',
  'pride',
  'invit',
  'hous',
  'sever',
  'time',
  'last',
  'night',
  'parent',
  'came',
  'apt',
  'first',
  'time',
  'said',
  'visit',
  'friend',
  'decid',
  'stop',
  'dinner',
  'freak',
  'said',
  'dinner',
  'late',
  'work',
  'time',
  'cook',
  'order',
  'pizza',
  'us',
  'second',
  'parent',
  'saw',
  'pizza',
  'got',
  'piss',
  'dad',
  'gave',
  'nasti',
  'stare',
  'said',
  'intent',
  'serv',
  'pizza',
  'italian',
  'word',
  'claim',
  'mock',
  'food',
  'assum',
  'caus',
  'theyr',
  'italian',
  'theyd',
  'eat',
  'italian',
  'food',
  'call',
  'racist',
  'confus',
  'said',
  'think',
  'interepret',
  'way',
  'said',
  'asian',
  'guest',
  'serv',
  'susi',
  'would',
  'like',
  'serv',
  'macdonald',
  'fri',
  'everi',
  'time',
  'visit',
  'sinc',
  'american',
  'eat',
  'stun',
  'word',
  'basic',
  'say',
  'theyr',
  'italian',
  'assum',
  'theyd',
  'like',
  'pizza',
  'butwho',
  'like',
  'pizza',
  'boyfriend',
  'mom',
  'got',
  'said',
  'want',
  'leav',
  'boyfriend',
  'tri',
  'get',
  'stay',
  'take',
  'easi',
  'left',
  'eventu',
  'blew',
  'say',
  'mess',
  'serv',
  'pizza',
  'insult',
  'indirectli',
  'told',
  'call',
  'apolog',
  'said',
  'time',
  'cook',
  'anyth',
  'show',
  'unexpectedli',
  'got',
  'upset',
  'ask',
  'parent',
  'need',
  'permiss',
  'visit',
  '*',
  '*',
  'back',
  'think',
  'hed',
  'call',
  'nut',
  'kept',
  'say',
  'insult',
  'parent',
  'need',
  'apolog',
  'im',
  'utterli',
  'genuinli',
  'confus',
  'aita'],
 ['littl',
  'girl',
  'mia',
  'start',
  'new',
  'school',
  'recent',
  'move',
  'start',
  'start',
  'new',
  'school',
  'got',
  'list',
  'suppli',
  'teacher',
  'requir',
  'plu',
  'extra',
  'like',
  'extra',
  'pack',
  'crayon',
  'etc',
  'know',
  'deal',
  'necessarili',
  'agre',
  'hill',
  'die',
  'got',
  'everyth',
  'list',
  'howev',
  'also',
  'got',
  'child',
  'suppli',
  'list',
  'say',
  'label',
  'mia',
  'particular',
  'type',
  'stationeri',
  'like',
  'ive',
  'heard',
  'horror',
  'stori',
  'kid',
  'stuff',
  'redistrubut',
  'end',
  'crappi',
  'suppli',
  'sat',
  'mia',
  'got',
  'personalis',
  'binder',
  'notebook',
  'pencil',
  'name',
  'etsi',
  'part',
  'item',
  'cant',
  'remov',
  'given',
  'anoth',
  'kid',
  'like',
  'said',
  'request',
  'bought',
  'extra',
  'binder',
  'etc',
  'turn',
  'right',
  'mia',
  'got',
  'home',
  'brought',
  'passiv',
  'aggress',
  'note',
  'teacher',
  'mia',
  'suppli',
  'appar',
  'tri',
  'gather',
  'suppli',
  'kid',
  'pick',
  'anoth',
  'one',
  'request',
  'switch',
  'mia',
  'suppli',
  'gener',
  'one',
  'im',
  'refus',
  'teacher',
  'request',
  'stop',
  'chat',
  'regard',
  'mia',
  'suppli',
  'post',
  'local',
  'fb',
  'group',
  'parent',
  'divid',
  'need',
  'anoth',
  'opinion',
  'go',
  'meet',
  'mia',
  'teacher',
  'asshol',
  'buy',
  'child',
  'person',
  'stationeri',
  'taken',
  'away'],
 ['begin',
  'love',
  'son',
  'heart',
  'blew',
  'marriag',
  'cheat',
  'move',
  'back',
  'home',
  'three',
  'children',
  'oldest',
  'daughter',
  'twin',
  'mf',
  'oldest',
  'got',
  'marri',
  'wonder',
  'man',
  'younger',
  'daughter',
  'go',
  'grad',
  'school',
  'oversea',
  'leav',
  'son',
  'let',
  'call',
  'carlo',
  'alway',
  'hand',
  'got',
  'marri',
  'ex',
  'wife',
  'three',
  'year',
  'old',
  'daughter',
  'love',
  'matter',
  'grandmoth',
  'child',
  'togeth',
  'grandchild',
  'two',
  'covid',
  'caus',
  'lot',
  'stress',
  'life',
  'work',
  'fli',
  'fli',
  'camp',
  'job',
  'gone',
  'two',
  'week',
  'time',
  'home',
  'two',
  'week',
  'make',
  'good',
  'money',
  'enjoy',
  'spend',
  'mayb',
  'littl',
  'bit',
  'much',
  'carlo',
  'cheat',
  'wife',
  'cowork',
  'judg',
  'perfect',
  'chose',
  'leav',
  'wife',
  'children',
  'move',
  'back',
  'home',
  'realli',
  'make',
  'sens',
  'rent',
  'apart',
  'someth',
  'day',
  'month',
  'home',
  'allow',
  'decid',
  'ass',
  'opinion',
  'bring',
  'dog',
  'grandbabi',
  'love',
  'dog',
  'tri',
  'punish',
  'ex',
  'tell',
  'leav',
  'beauti',
  'border',
  'colli',
  'perfect',
  'dog',
  'home',
  'huge',
  'yard',
  'lot',
  'walk',
  'trail',
  'nearbi',
  'even',
  'leash',
  'park',
  'ten',
  'minut',
  'drive',
  'away',
  'live',
  'apart',
  'downtown',
  'allow',
  'dog',
  'one',
  'would',
  'someth',
  'sedat',
  'non',
  'shed',
  'like',
  'maltes',
  'swear',
  'tri',
  'watch',
  'dog',
  'son',
  'irrespons',
  'walk',
  'much',
  'brush',
  'dog',
  'hold',
  'dog',
  'lever',
  'way',
  'ex',
  'life',
  'last',
  'straw',
  'last',
  'time',
  'work',
  'away',
  'two',
  'week',
  'nd',
  'came',
  'home',
  'one',
  'day',
  'fli',
  'unit',
  'state',
  'vacat',
  'new',
  'girlfriend',
  'call',
  'dil',
  'check',
  'want',
  'pup',
  'back',
  'almost',
  'cri',
  'joy',
  'pack',
  'everyth',
  'belong',
  'dog',
  'took',
  'grandchildren',
  'ecstat',
  'son',
  'came',
  'home',
  'three',
  'day',
  'leav',
  'work',
  'ask',
  'dog',
  'told',
  'truth',
  'call',
  'asshol',
  'give',
  'away',
  'pet',
  'also',
  'said',
  'tri',
  'go',
  'get',
  'dog',
  'bring',
  'back',
  'welcom',
  'home',
  'aita'],
 ['weve',
  'togeth',
  'year',
  'live',
  'togeth',
  'first',
  'date',
  'ask',
  'pursu',
  'higher',
  'educ',
  'high',
  'school',
  'explain',
  'fail',
  'high',
  'school',
  'believ',
  'high',
  'achiev',
  'possibl',
  'understand',
  'somebodi',
  'could',
  'fail',
  'high',
  'school',
  'find',
  'amus',
  'teas',
  'truth',
  'bother',
  'good',
  'job',
  'ive',
  'done',
  'great',
  'thing',
  'despit',
  'tradit',
  'educ',
  'worst',
  'littl',
  'annoy',
  'refus',
  'lose',
  'sleep',
  'tonight',
  'friend',
  'convers',
  'turn',
  'toward',
  'high',
  'school',
  'subject',
  'list',
  'studi',
  'final',
  'year',
  'began',
  'laugh',
  'say',
  'matter',
  'fail',
  'anyway',
  'sinc',
  'hed',
  'much',
  'drink',
  'took',
  'littl',
  'far',
  'start',
  'poke',
  'fun',
  'idiot',
  'fail',
  'high',
  'school',
  'tri',
  'play',
  'alcohol',
  'got',
  'better',
  'well',
  'snap',
  'respond',
  'earn',
  '$',
  'per',
  'hour',
  'earn',
  '$',
  'right',
  'well',
  'high',
  'school',
  'set',
  'success',
  'one',
  'friend',
  'said',
  'id',
  'ruin',
  'night',
  'coupl',
  'friend',
  'said',
  'come'],
 ['background',
  'wife',
  'two',
  'kid',
  'live',
  'vhcol',
  'citi',
  'made',
  'much',
  'wife',
  'pretti',
  'well',
  'incom',
  'wife',
  'would',
  'abl',
  'afford',
  'live',
  'citi',
  'job',
  'pretti',
  'low',
  'stress',
  'ish',
  'hour',
  'week',
  'requir',
  'call',
  'week',
  'month',
  'normal',
  'noth',
  'ever',
  'happen',
  'usual',
  'routin',
  'understand',
  'wife',
  'need',
  'drop',
  'whatev',
  'work',
  'work',
  'issu',
  'resolv',
  'ever',
  'happen',
  'everi',
  'quarter',
  'last',
  'hour',
  'wife',
  'hand',
  'much',
  'stress',
  'job',
  'boss',
  'incred',
  'demand',
  'often',
  'demand',
  'random',
  'inan',
  'thing',
  'power',
  'play',
  'subordin',
  'usual',
  'work',
  '-',
  'hour',
  'week',
  'result',
  'take',
  'care',
  'home',
  'stuff',
  'drop',
  'pick',
  'kid',
  'daycar',
  'cook',
  'meal',
  'gener',
  'keep',
  'hous',
  'clean',
  'aita',
  'incid',
  'on-cal',
  'week',
  'work',
  'hour',
  'wife',
  'got',
  'text',
  'boss',
  'fulfil',
  'emerg',
  'request',
  'client',
  'wife',
  'complain',
  'request',
  'realli',
  'could',
  'wait',
  'tomorrow',
  'would',
  'rather',
  'get',
  'done',
  'listen',
  'boss',
  'bitch',
  'morn',
  'done',
  'problem',
  'remind',
  'on-cal',
  'might',
  'need',
  'switch',
  'someth',
  'came',
  'made',
  'grunt',
  'acknowledg',
  'noth',
  'beyond',
  'hour',
  'later',
  'get',
  'all-hand',
  'call',
  'immedi',
  'come',
  'offic',
  'normal',
  'resolv',
  'issu',
  'remot',
  'issu',
  'prevent',
  'us',
  'remot',
  'rush',
  'upstair',
  'told',
  'wife',
  'leav',
  'turn',
  'around',
  'say',
  'sorri',
  'issu',
  'came',
  'first',
  'go',
  'tell',
  'work',
  'cant',
  'taken',
  'aback',
  'told',
  'issu',
  'someth',
  'skip',
  'anyth',
  'short',
  'physic',
  'hospit',
  'cant',
  'come',
  'got',
  'increasingli',
  'angri',
  'start',
  'rant',
  'told',
  'time',
  'leav',
  'get',
  'back',
  'discuss',
  'start',
  'cri',
  'time',
  'left',
  'offic',
  'way',
  'call',
  'continu',
  'argument',
  'heat',
  'moment',
  'said',
  'look',
  'respect',
  'put',
  'lot',
  'time',
  'energi',
  'work',
  'afford',
  'hous',
  'lifestyl',
  'without',
  'job',
  'push',
  'come',
  'shove',
  'job',
  'come',
  'first',
  'otherwis',
  'go',
  'street',
  'hung',
  'got',
  'home',
  'hour',
  'later',
  'around',
  'pm',
  'kid',
  'crash',
  'live',
  'room',
  'couch',
  'sever',
  'bowl',
  'cereal',
  'spill',
  'around',
  'went',
  'upstair',
  'wife',
  'lock',
  'bedroom',
  'refus',
  'talk',
  'morn',
  'found',
  'kid',
  'spent',
  'night',
  'cri',
  'room',
  'feed',
  'dinner',
  'tuck',
  'made',
  'cereal',
  'sleepov',
  'live',
  'room'],
 ['mobil',
  'sorri',
  'bad',
  'format',
  'context',
  'inherit',
  'holiday',
  'home',
  'grandma',
  'time',
  'ago',
  'never',
  'realli',
  'use',
  'roughli',
  'hour',
  'drive',
  'london',
  'live',
  'relev',
  'stori',
  '-the',
  'key',
  'holiday',
  'home',
  'rack',
  'liter',
  'everi',
  'key',
  'anyth',
  'boyfriend',
  '-the',
  'holiday',
  'hous',
  'secur',
  'system',
  'hook',
  'phone',
  'detect',
  'someon',
  'properti',
  'camera',
  'turn',
  'see',
  'boyfriend',
  'brother',
  'recent',
  'th',
  'child',
  'wife',
  'current',
  'live',
  'bedroom',
  'apart',
  'three',
  'day',
  'ago',
  'mine',
  'boyfriend',
  'hous',
  'kid',
  'talk',
  'anyth',
  'everyth',
  'hold',
  'babi',
  'boyfriend',
  'brother',
  'eventu',
  'mention',
  'holiday',
  'home',
  'enough',
  'space',
  'wife',
  'rais',
  'kid',
  'exact',
  'respons',
  'yeah',
  'im',
  'gon',
  'na',
  'let',
  'live',
  'went',
  'quiet',
  'wife',
  'start',
  'collect',
  'kid',
  'thing',
  'left',
  'minut',
  'boyfriend',
  'said',
  'anyth',
  'convers',
  'yet',
  'im',
  'feel',
  'bad',
  'respons',
  'know',
  'realli',
  'need',
  'space',
  'fast',
  'forward',
  'yesterday',
  'wake',
  'work',
  'realis',
  'boyfriend',
  'bed',
  'noth',
  'ordinari',
  'work',
  'im',
  'final',
  'walk',
  'door',
  'go',
  'grab',
  'key',
  'notic',
  'holiday',
  'home',
  'key',
  'gone',
  'look',
  'around',
  'cant',
  'find',
  'call',
  'boyfriend',
  'first',
  'time',
  'answer',
  'second',
  'time',
  'answer',
  'third',
  'time',
  'convers',
  'went',
  'hey',
  'seen',
  'hous',
  'key',
  'ye',
  'cool',
  'whyve',
  'got',
  'though',
  'grab',
  'accid',
  'ill',
  'return',
  'im',
  'back',
  'work',
  'thought',
  'everyth',
  'would',
  'fine',
  'continu',
  'day',
  'went',
  'work',
  'midway',
  'work',
  'day',
  'get',
  'notif',
  'hous',
  'secur',
  'system',
  'open',
  'find',
  'boyfriend',
  'brother',
  'famili',
  'outsid',
  'door',
  'move',
  'van',
  'back',
  'fume',
  'got',
  'home',
  'boyfriend',
  'alreadi',
  'act',
  'everyth',
  'normal',
  'start',
  'scream',
  'ask',
  'hell',
  'hed',
  'move',
  'famili',
  'hous',
  'without',
  'permiss',
  'tri',
  'justifi',
  'say',
  'help',
  'famili',
  'honestli',
  'made',
  'angri',
  'told',
  'day',
  'get',
  'brother',
  'famili',
  'hous',
  'would',
  'call',
  'polic',
  'trespass',
  'happen',
  'around',
  'yesterday',
  'hour',
  'ago',
  'call',
  'anyth',
  'fulli',
  'intend',
  'go',
  'threat',
  'know',
  'theyr',
  'struggl',
  'right',
  'wibta',
  'call',
  'polic',
  'edit',
  'thank',
  'advic',
  'search',
  'uk',
  'govern',
  'websit',
  'ive',
  'manag',
  'figur',
  'legal',
  'ive',
  'also',
  'call',
  'polic',
  'alreadi',
  'reciev',
  'updat',
  'yet',
  'ill',
  'share',
  'edit',
  'call',
  'polic',
  'small',
  'ago',
  'minut',
  'ago',
  'came',
  'return',
  'key',
  'let',
  'know',
  'famili',
  'told',
  'leav',
  'first',
  'refus',
  'eventu',
  'pack',
  'thing',
  'went',
  'ex',
  'boyfriend',
  'brother',
  'brother',
  'wife',
  'blow',
  'phone',
  'ask',
  'hell',
  'id',
  'put',
  'children',
  'ive',
  'block',
  'feel',
  'absolut',
  'terribl',
  'know',
  'probabl',
  'better',
  'way',
  'handl',
  'situat',
  'even',
  'consid',
  'let',
  'stay',
  'im',
  'sure',
  'would',
  'pay',
  'rent',
  'anyth',
  'futur',
  'plan',
  'rent',
  'home',
  'mani',
  'suggest',
  'im',
  'sure',
  'ex-boyfriend',
  'famili',
  'would',
  'take',
  'edit',
  'ive',
  'better',
  'secur',
  'system',
  'instal',
  'hous',
  'lock',
  'chang',
  'thank',
  'everyon',
  'gave',
  'advic',
  'time',
  'help',
  'get',
  'mental',
  'thank',
  'everyon'],
 ['mom',
  'marri',
  'step',
  'father',
  'year',
  'old',
  'son',
  'daughter',
  'year',
  'later',
  'togeth',
  'step',
  'brother',
  'half',
  'sister',
  'step',
  'father',
  'father',
  'figur',
  'know',
  'ive',
  'alway',
  'call',
  'dad',
  'actual',
  'dad',
  'life',
  'grow',
  'alway',
  'notic',
  'treat',
  'differ',
  'never',
  'mistreat',
  'alway',
  'interest',
  'children',
  'fact',
  'alway',
  'show',
  'littl',
  'interest',
  'ive',
  'alway',
  'felt',
  'like',
  'second',
  'class',
  'famili',
  'member',
  'mom',
  'treat',
  'step',
  'brother',
  'exactli',
  'like',
  'step',
  'father',
  'anyway',
  'last',
  'coupl',
  'year',
  'difficult',
  'step',
  'father',
  'start',
  'stuff',
  'sibl',
  'like',
  'go',
  'trip',
  'go',
  'fish',
  'hike',
  'father-children',
  'bond',
  'moment',
  'call',
  'never',
  'taken',
  'despit',
  'ask',
  'go',
  'initi',
  'alway',
  'said',
  'mayb',
  'next',
  'time',
  'call',
  'last',
  'week',
  'took',
  'asid',
  'explain',
  'children',
  'im',
  'child',
  'like',
  'said',
  'love',
  'differ',
  'cant',
  'dilut',
  'experi',
  'bring',
  'well',
  'said',
  'mom',
  'spend',
  'mother-child',
  'moment',
  'sister',
  'want',
  'well',
  'would',
  'good',
  'us',
  'us',
  'convers',
  'happen',
  'friday',
  'went',
  'weekend',
  'trip',
  'mom',
  'told',
  'feel',
  'cant',
  'chang',
  'made',
  'sure',
  'im',
  'alway',
  'treat',
  'equal',
  'come',
  'money',
  'true',
  'cant',
  'chang',
  'way',
  'feel',
  'need',
  'accept',
  'ive',
  'think',
  'weekend',
  'clear',
  'see',
  'son',
  'wrong',
  'see',
  'dad',
  'decid',
  'im',
  'step',
  'child',
  'toler',
  'mom',
  'im',
  'go',
  'pretend',
  'like',
  'anyth',
  'decid',
  'stop',
  'call',
  'dad',
  'go',
  'first',
  'name',
  'sunday',
  'night',
  'return',
  'said',
  'tom',
  'surpris',
  'say',
  'anyth',
  'dinner',
  'ask',
  'explain',
  'want',
  'dilut',
  'experi',
  'real',
  'children',
  'call',
  'dad',
  'clearli',
  'im',
  'son',
  'someth',
  'kept',
  'actual',
  'children',
  'told',
  'go',
  'room',
  'mom',
  'later',
  'came',
  'said',
  'hurt',
  'apolog',
  'said',
  'im',
  'follow',
  'lead',
  'treat',
  'exactli',
  'like',
  'want',
  'treat',
  'action',
  'hurt',
  'look',
  'mirror',
  'action',
  'mom',
  'told',
  'end',
  'man',
  'rais',
  'life',
  'need',
  'apolog',
  'show',
  'remors',
  'say',
  '%',
  'way',
  'dad',
  'ignor',
  'focu',
  'miss',
  '%',
  'reject',
  'entir',
  'declin',
  'said',
  'one',
  'need',
  'apolog',
  'want',
  'thing',
  'chang',
  'us',
  'asshol',
  'situat'],
 ['daughter',
  'die',
  'week',
  'ago',
  'sid',
  'day',
  'old',
  'imagin',
  'devast',
  'entir',
  'famili',
  'ive',
  'plan',
  'funer',
  'even',
  'babi',
  'quit',
  'expens',
  'mother',
  'hound',
  'get',
  'done',
  'cultur',
  'peopl',
  'funer',
  'happen',
  'day',
  'death',
  'ive',
  'save',
  'past',
  'week',
  'give',
  'babi',
  'funer',
  'deserv',
  'particularli',
  'urn',
  'would',
  'like',
  'final',
  'snap',
  'yesterday',
  'said',
  'sinc',
  'concern',
  'speed',
  'process',
  'pay',
  'fuck',
  'thing',
  'got',
  'upset',
  'sinc',
  'tri',
  'honor',
  'cultur',
  'dad',
  'think',
  'bit',
  'ass',
  'snap',
  'mostli',
  'suggest',
  'pay',
  'aita'],
 ['marri',
  'man',
  'year',
  'son',
  'son',
  'kill',
  'drunk',
  'driver',
  'support',
  'divorc',
  'year',
  'ago',
  'move',
  'differ',
  'state',
  'spoken',
  'sinc',
  'month',
  'ago',
  'contact',
  'executor',
  'inform',
  'death',
  'latest',
  'written',
  'year',
  'ago',
  'went',
  'inform',
  'left',
  'everyth',
  'except',
  '$',
  'left',
  'girlfriend',
  'togeth',
  'year',
  'live',
  'hous',
  'girlfriend',
  'demand',
  'surrend',
  'inherit',
  'say',
  'one',
  'drown',
  'grief',
  'move',
  'still',
  'feel',
  'guilt',
  'death',
  'son',
  'refus',
  'far',
  'still',
  'feel',
  'bit',
  'guilti',
  'sinc',
  'plan',
  'sell',
  'hous',
  'marit',
  'hous',
  'bear',
  'stay',
  'son',
  'death',
  'look',
  'hous',
  'cant',
  'afford',
  'job',
  'also',
  'make',
  'good',
  'live',
  'hous',
  'outright',
  'inherit',
  'parent',
  'aita',
  'edit',
  'sinc',
  'seem',
  'like',
  'frequent',
  'question',
  'offer',
  'stay',
  'hous',
  'free',
  'charg',
  'next',
  'month',
  'put',
  'market',
  'also',
  'offer',
  'choic',
  'whatev',
  'want',
  'take',
  'ex',
  'person',
  'affect',
  'hous',
  'furnitur',
  'want',
  'take',
  'continu',
  'use',
  'car'],
 ['husband',
  'pass',
  'away',
  'week',
  'ago',
  'use',
  'work',
  'compani',
  'year',
  'hed',
  'known',
  'lot',
  'peopl',
  'made',
  'mani',
  'friend',
  'day',
  'kept',
  'get',
  'text',
  'colleagu',
  'ted',
  'know',
  'person',
  'idea',
  'even',
  'got',
  'number',
  'first',
  'text',
  'text',
  'get',
  'number',
  'repli',
  'say',
  'got',
  'husband',
  'first',
  'felt',
  'annoy',
  'start',
  'get',
  'flirti',
  'text',
  'start',
  'get',
  'inappropri',
  'warn',
  'stop',
  'sent',
  'pic',
  'one',
  'night',
  'ask',
  'need',
  'compani',
  'sinc',
  'knew',
  'lone',
  'appal',
  'enrag',
  'even',
  'sleep',
  'night',
  'wait',
  'til',
  'earli',
  'morn',
  'go',
  'compani',
  'straight',
  'boss',
  'file',
  'report',
  'explain',
  'detail',
  'behavior',
  'end',
  'get',
  'fire',
  'colleagu',
  'said',
  'husband',
  'wrong',
  'disrespect',
  'memori',
  'start',
  'argu',
  'low',
  'come',
  'work',
  'hope',
  'ruin',
  'livelihood',
  'kept',
  'say',
  'work',
  'place',
  'noth',
  'told',
  'ive',
  'known',
  'husband',
  'colleagu',
  'colleagu',
  'friend',
  'said',
  'aim',
  'get',
  'fire',
  'noth',
  'wrong',
  'couldv',
  'talk',
  'instead',
  'mom',
  'call',
  'po',
  'husband',
  'also',
  'said',
  'point',
  'come',
  'livelihood',
  'sinc',
  'guy',
  'kid',
  'provid',
  'felt',
  'bed',
  'whole',
  'thing',
  'feel',
  'like',
  'made',
  'thing',
  'wors',
  'act',
  'emot'],
 ['ask',
  'play',
  'harp',
  'friend',
  'father',
  'wed',
  'normal',
  'would',
  'ask',
  'payment',
  'beforehand',
  'sinc',
  'famili',
  'friend',
  'ask',
  'could',
  'pay',
  'recept',
  'told',
  'ye',
  'date',
  'work',
  'set',
  'church',
  'hour',
  'hous',
  'show',
  'dress',
  'plan',
  'wear',
  'bride',
  'went',
  'music',
  'want',
  'rehears',
  'hanger',
  'look',
  'like',
  'would',
  'ugli',
  'hanger',
  'navi',
  'blue',
  'long',
  'sleev',
  'floor',
  'length',
  'surprisingli',
  'pretti',
  'got',
  'venu',
  'hour',
  'earli',
  'harp',
  'would',
  'time',
  'acclim',
  'room',
  'got',
  'bride',
  'mother',
  'came',
  'give',
  'corsag',
  'saw',
  'demand',
  'chang',
  'dress',
  'laugh',
  'ive',
  'known',
  'year',
  'realiz',
  'joke',
  'ask',
  'wrong',
  'said',
  'bride',
  'went',
  'non',
  'tradit',
  'dress',
  'also',
  'navi',
  'blue',
  'panick',
  'littl',
  'wed',
  'felt',
  'realli',
  'bad',
  'groom',
  'approv',
  'twice',
  'told',
  'mother',
  'ask',
  'color',
  'could',
  'chang',
  'bring',
  'extra',
  'dress',
  'unless',
  'dress',
  'somehow',
  'get',
  'approv',
  'beforehand',
  'told',
  'go',
  'bridal',
  'shop',
  'minut',
  'away',
  'buy',
  'new',
  'dress',
  'refus',
  'dress',
  'would',
  'cost',
  'get',
  'paid',
  'wed',
  'told',
  'afford',
  'felt',
  'bad',
  'begrudgingli',
  'walk',
  'away',
  'actual',
  'wed',
  'went',
  'smoothli',
  'everyon',
  'els',
  'left',
  'church',
  'congratul',
  'bride',
  'stop',
  'talk',
  'explain',
  'mother',
  'law',
  'said',
  'said',
  'fine',
  'think',
  'approv',
  'dress',
  'recept',
  'talk',
  'mother',
  'law',
  'payment',
  'refus',
  'pay',
  'want',
  'caus',
  'scene',
  'bride',
  'came',
  'heard',
  'us',
  'talk',
  'time',
  'also',
  'upset',
  'also',
  'refus',
  'pay',
  'know',
  'parent',
  'busi',
  'attend',
  'wed',
  'anyon',
  'back',
  'lot',
  'peopl',
  'assum',
  'harpist',
  'come',
  'lot',
  'money',
  'expens',
  'harp',
  'ive',
  'rent',
  'harp',
  'sinc',
  'th',
  'grade',
  'teacher',
  'pass',
  'bought',
  'amaz',
  'deal',
  'also',
  'charg',
  'lot',
  'less',
  'musician',
  'would',
  'colleg',
  'payment',
  'due',
  'day',
  'cant',
  'afford',
  'got',
  'parent',
  'involv',
  'got',
  'home',
  'dad',
  'talk',
  'friend',
  'father',
  'groom',
  'approv',
  'dress',
  'got',
  'payment',
  'still',
  'feel',
  'realli',
  'bad',
  'think',
  'anyth',
  'could',
  'done',
  'suck',
  'bought',
  'new',
  'dress',
  'aita'],
 ['husband',
  'marri',
  'year',
  'thing',
  'rockier',
  'good',
  'job',
  'make',
  'decent',
  'amount',
  'money',
  'wherea',
  'husband',
  'made',
  'much',
  'due',
  'fact',
  'still',
  'live',
  'parent',
  'got',
  'marri',
  'decid',
  'would',
  'move',
  'would',
  'continu',
  'pay',
  'rent',
  'bill',
  'long',
  'put',
  'money',
  'toward',
  'thing',
  'may',
  'need',
  'coupl',
  'name',
  'one',
  'leas',
  'howev',
  'got',
  'marri',
  'start',
  'cut',
  'work',
  'hour',
  'without',
  'say',
  'anyth',
  'first',
  'gave',
  'explan',
  'made',
  'plenti',
  'money',
  'us',
  'could',
  'work',
  'part',
  'time',
  'work',
  'around',
  'hous',
  'main',
  'breadwinn',
  'fine',
  'littl',
  'upset',
  'assum',
  'would',
  'okay',
  'say',
  'anyth',
  'felt',
  'fair',
  'work',
  'around',
  'hous',
  'initi',
  'spent',
  'major',
  'time',
  'go',
  'bar',
  'play',
  'video',
  'game',
  'etc',
  'point',
  'one',
  'work',
  '*',
  '*',
  'cook',
  'clean',
  'household',
  'chore',
  'husband',
  'told',
  'laid',
  'two',
  'month',
  'ago',
  'reason',
  'control',
  'assum',
  'time',
  'would',
  'begin',
  'job',
  'hunt',
  'began',
  'pay',
  'everyth',
  'earn',
  'decent',
  'amount',
  'money',
  'point',
  'pay',
  'rent',
  'bill',
  'groceri',
  'insur',
  'contribut',
  'emerg',
  'save',
  'financ',
  'lifestyl',
  'husband',
  'start',
  'indulg',
  'began',
  'pay',
  'night',
  'sub',
  'money',
  'trip',
  'look',
  'work',
  'etc',
  'assumpt',
  'would',
  'search',
  'new',
  'job',
  'least',
  'financ',
  'hobbi',
  'week',
  'ago',
  'ask',
  'job',
  'hunt',
  'go',
  'told',
  'feel',
  'like',
  'worth',
  'said',
  'comfort',
  'happi',
  'say',
  'least',
  'confront',
  'everyth',
  'financ',
  'take',
  'care',
  'household',
  'sat',
  'around',
  'play',
  'video',
  'game',
  'ass',
  'ill',
  'admit',
  'argument',
  'let',
  'slip',
  'actual',
  'quit',
  'never',
  'look',
  'anoth',
  'job',
  'furiou',
  'lie',
  'told',
  'want',
  'home',
  'right',
  'fast',
  'forward',
  'in-law',
  'understand',
  'extent',
  'call',
  'asshol',
  'want',
  'come',
  'back',
  'home',
  'get',
  'job',
  'seen',
  'husband',
  'time',
  'never',
  'home',
  'alway',
  'somewher',
  'longer',
  'pay',
  'everyth',
  'attitud',
  'toward',
  'make',
  'question',
  'entir',
  'relationship',
  'call',
  'asshol',
  'im',
  'begin',
  'think',
  'right',
  'asshol'],
 ['im',
  'stay',
  'home',
  'mom',
  'kid',
  'husband',
  'work',
  'full',
  'time',
  'get',
  'okay-',
  'salari',
  'tighten',
  'grip',
  'spend',
  'past',
  'month',
  'abl',
  'save',
  'go',
  'watch',
  'footbal',
  'event',
  'oversea',
  'liter',
  'obssess',
  'anyth',
  'footbal',
  'said',
  'rare',
  'ever',
  'get',
  'want',
  'want',
  'judg',
  'sinc',
  'money',
  'eventu',
  'discuss',
  'plan',
  'christma',
  'told',
  'handl',
  'everyth',
  'sinc',
  'back',
  'til',
  'dec',
  'th',
  'told',
  'put',
  'asid',
  'money',
  'christma',
  'decor',
  'food',
  'gift',
  'kid',
  'need',
  'etc',
  'money',
  'total',
  '$',
  'complet',
  'shock',
  'told',
  '$',
  'entir',
  'famili',
  'christma',
  'celebr',
  'ridicul',
  'enough',
  'shrug',
  'say',
  'got',
  'point',
  'pay',
  'friend',
  'girlfriend',
  'travel',
  'expens',
  'told',
  'take',
  'said',
  'decid',
  'leav',
  'buck',
  'anyth',
  'christma',
  'lot',
  'argument',
  'get',
  'resolv',
  'qatar',
  'left',
  'day',
  'ago',
  'yesterday',
  'clean',
  'found',
  'envelop',
  '$',
  'note',
  'tell',
  'make',
  'work',
  'sent',
  'messag',
  'ive',
  'decid',
  'anyth',
  'christma',
  'littl',
  'money',
  'period',
  'livid',
  'kept',
  'send',
  'angri',
  'messag',
  'anoth',
  'call',
  'spoil',
  'tell',
  'stop',
  'expect',
  'live',
  'like',
  'still',
  'live',
  'parent',
  'hous',
  'stop',
  'tri',
  'rob',
  'kid',
  'enjoy',
  'holiday',
  'like',
  'kid',
  'repli',
  'livid',
  'say',
  'im',
  'punish',
  'go',
  'tri',
  'guilt',
  'use',
  'money'],
 ['hello',
  'everyon',
  'happen',
  'hour',
  'ago',
  'mind',
  'boggl',
  'mef',
  'fiancem',
  'went',
  'bestfriend',
  'alexm',
  'now-fiance',
  'nellf',
  'engag',
  'parti',
  'today',
  'essenti',
  'engag',
  'parti',
  'talk',
  'older',
  'ladi',
  'spot',
  'iron',
  'ring',
  'wear',
  'one',
  'well',
  'iron',
  'ring',
  'present',
  'engin',
  'canada',
  'graduat',
  'ask',
  'whole',
  'bunch',
  'question',
  'career',
  'field',
  'engin',
  'etc',
  'turn',
  'nell',
  'futur',
  'mil',
  'sister',
  'nell',
  'alex',
  'came',
  'say',
  'congratul',
  'nell',
  'mil',
  'sister',
  'continu',
  'convers',
  'nell',
  'spoke',
  'said',
  'uhm',
  'lie',
  'engin',
  'work',
  'victoria',
  'secret',
  'someth',
  'like',
  'yeah',
  'use',
  'work',
  'victoria',
  'secret',
  'uni',
  'work',
  'softwar',
  'engin',
  'nell',
  'start',
  'laugh',
  'bit',
  'said',
  'stop',
  'lie',
  'everyon',
  'visibl',
  'got',
  'realli',
  'awkward',
  'fiance',
  'came',
  'greet',
  'everyon',
  'nell',
  'continu',
  'berat',
  'front',
  'everyon',
  'say',
  'lie',
  'job',
  'fianc',
  'enabl',
  'lie',
  'everyon',
  'say',
  'im',
  'engin',
  'told',
  'stop',
  'stood',
  'ground',
  'said',
  'ever',
  'lie',
  'job',
  'work',
  'realli',
  'hard',
  'get',
  'nell',
  'got',
  'extrem',
  'upset',
  'start',
  'say',
  'im',
  'ruin',
  'engag',
  'parti',
  'im',
  'make',
  'everyth',
  'someon',
  'like',
  'field',
  'work',
  'fianc',
  'got',
  'upset',
  'ask',
  'alex',
  'nell',
  'drunk',
  'say',
  'line',
  'right',
  'whatsoev',
  'speak',
  'like',
  'left',
  'earli',
  'keep',
  'get',
  'call',
  'text',
  'friend',
  'call',
  '\\',
  '*',
  'tch',
  'stand-offish',
  'fianc',
  'got',
  'call',
  'alex',
  'ask',
  'us',
  'make',
  'big',
  'deal',
  'fianc',
  'told',
  'go',
  'commun',
  'nell',
  'apolog',
  'edit',
  'im',
  'post',
  'updatetri',
  'figur',
  'bare',
  'pleas',
  'edit',
  'post',
  'updat',
  'profil',
  'httpswwwredditcomusersailorangelxocommentsucdwqupdate_aitaf_for_not_lying_about_my_profess'],
 ['throwaway',
  'account',
  'purpos',
  'privaci',
  'live',
  'bfm',
  'year',
  'first',
  'stay',
  'night',
  'overslept',
  'woke',
  'woke',
  'bad',
  'mood',
  'big',
  'fight',
  'made',
  'absolut',
  'clear',
  'wake',
  'even',
  'knew',
  'would',
  'late',
  'meet',
  'pope',
  'word',
  'calm',
  'wrote',
  'contract',
  'said',
  'would',
  'never',
  'wake',
  'circumst',
  'short',
  'emerg',
  'long',
  'never',
  'blame',
  'oversleep',
  'laugh',
  'sign',
  'kept',
  'import',
  'document',
  'daughter',
  'two',
  'lawyer',
  'get',
  'everyth',
  'write',
  'sign',
  'anyth',
  'unless',
  'lawyer',
  'read',
  'rule',
  'live',
  'fast',
  'forward',
  'yesterday',
  'start',
  'new',
  'job',
  'celebr',
  'night',
  'play',
  'guy',
  'onlin',
  'wake',
  'woke',
  'like',
  'usual',
  'stuff',
  'time',
  'wake',
  'left',
  'hous',
  'still',
  'asleep',
  'got',
  'back',
  'angri',
  'start',
  'shout',
  'blame',
  'late',
  'said',
  'woken',
  'notic',
  'overslept',
  'stay',
  'silent',
  'stop',
  'shout',
  'show',
  'paper',
  'sign',
  'said',
  'never',
  'woke',
  'never',
  'adult',
  'set',
  'alarm',
  'like',
  'rest',
  'us',
  'also',
  'late',
  'problem',
  'part',
  'say',
  'ah',
  'know',
  'old',
  'rule',
  'appli',
  'sinc',
  'longer',
  'work',
  'friend',
  'lax',
  'time',
  'still',
  'think',
  'noth',
  'wrong',
  'aita'],
 ['husband',
  'took',
  'nephew',
  'dad',
  'husband',
  'brother',
  'diagnos',
  'cancer',
  'told',
  'nephew',
  'would',
  'stay',
  'us',
  'til',
  'dad',
  'complet',
  'chemo',
  'treatment',
  'agre',
  'although',
  'consult',
  'first',
  'told',
  'hell',
  'responsibilti',
  'mine',
  'ask',
  'explain',
  'told',
  'consult',
  'take',
  'nephew',
  'im',
  'equip',
  'experienc',
  'take',
  'careb',
  'commit',
  'child',
  'care',
  'still',
  'cook',
  'clean',
  'obvious',
  'said',
  'fine',
  'hed',
  'take',
  'care',
  'day',
  'call',
  'afternoon',
  'say',
  'stuck',
  'hr',
  'meet',
  'ask',
  'could',
  'go',
  'pick',
  'nephew',
  'school',
  'said',
  'lunch',
  'mom',
  'discuss',
  'famili',
  'issu',
  'insist',
  'remind',
  'said',
  'hed',
  'take',
  'care',
  'nephew',
  'includ',
  'school',
  'pickupdropoff',
  'suggest',
  'tri',
  'get',
  'work',
  'call',
  'famili',
  'member',
  'go',
  'pick',
  'tri',
  'argu',
  'hung',
  'went',
  'home',
  'surprisinglyfound',
  'husband',
  'angri',
  'start',
  'yell',
  'call',
  'selfish',
  'unfeel',
  'told',
  'lack',
  'mamag',
  'fault',
  'yell',
  'say',
  'lunch',
  'mom',
  'couldv',
  'fuck',
  'wait',
  'chose',
  'fuck',
  'petti',
  'prove',
  'point',
  'said',
  'true',
  'told',
  'get',
  'stop',
  'act',
  'like',
  'victim',
  'put',
  'situat',
  'know',
  'commit',
  'yell',
  'ge',
  'tri',
  'help',
  'brother',
  'play',
  'victim',
  'refus',
  'help',
  'argu',
  'end',
  'go',
  'stay',
  'mom',
  'night',
  'text',
  'choic',
  'word',
  'turn',
  'phone',
  'still',
  'argu'],
 ['throw',
  'away',
  'wife',
  'two',
  'children',
  'work',
  'manag',
  'care',
  'home',
  'wife',
  'bakeri',
  'mum',
  'wife',
  'cook',
  'time',
  'much',
  'better',
  'cook',
  'cook',
  'sometim',
  'one',
  'take',
  'care',
  'hous',
  'kid',
  'chore',
  'yesterday',
  'came',
  'back',
  'work',
  'dinner',
  'readi',
  'plate',
  'everyon',
  'wife',
  'wash',
  'hand',
  'kid',
  'like',
  'food',
  'cut',
  'cut',
  'chicken',
  'piec',
  'look',
  'bit',
  'pink',
  'told',
  'wife',
  'look',
  'said',
  'littl',
  'pink',
  'fine',
  'told',
  'im',
  'let',
  'eat',
  'pink',
  'told',
  'stop',
  'babi',
  'kill',
  'kept',
  'tell',
  'pink',
  'middl',
  'eat',
  'get',
  'food',
  'poison',
  'danger',
  'told',
  'want',
  'eat',
  'cook',
  'dinner',
  'made',
  'chees',
  'ham',
  'toasti',
  'also',
  'made',
  'one',
  'eat',
  'told',
  'talk',
  'think',
  'cook',
  'horribl',
  'think',
  'horribl',
  'want',
  'kid',
  'eat',
  'told',
  'stop',
  'think',
  'right',
  'aita'],
 ['husband',
  'mike',
  'eldest',
  'famili',
  'pretti',
  'close',
  'sister',
  'beth',
  'spend',
  'almost',
  'week',
  'togeth',
  'beth',
  'issu',
  'father',
  'grow',
  'went',
  'contact',
  'took',
  'first',
  'car',
  'damag',
  'remain',
  'contact',
  'mike',
  'sinc',
  'everybodi',
  'els',
  'judg',
  'go',
  'contact',
  'get',
  'marri',
  'fianc',
  'year',
  'understand',
  'dad',
  'slowli',
  'get',
  'reconcil',
  'made',
  'clear',
  'want',
  'take',
  'part',
  'wed',
  'ask',
  'mike',
  'could',
  'walk',
  'aisl',
  'agre',
  'say',
  'taken',
  'aback',
  'felt',
  'bit',
  'odd',
  'dad',
  'aliv',
  'theyr',
  'speak',
  'term',
  'gon',
  'na',
  'wed',
  'logic',
  'thing',
  'walk',
  'aisl',
  'role',
  'older',
  'brother',
  'father',
  'mention',
  'fil',
  'feel',
  'brought',
  'beth',
  'attitud',
  'impli',
  'say',
  'object',
  'feel',
  'situat',
  'tradit',
  'practic',
  'got',
  'argument',
  'went',
  'home',
  'mike',
  'think',
  'im',
  'unreason',
  'possibl',
  'caus',
  'miss',
  'someth',
  'sentiment',
  'anyth',
  'feel',
  'honor',
  'ask',
  'said',
  'stop',
  'worri',
  'might',
  'say',
  'conflict',
  'us',
  'seem',
  'reach',
  'solut'],
 ['pretti',
  'sure',
  'asshol',
  'well',
  'see',
  'month',
  'pregnant',
  'take',
  'public',
  'transport',
  'work',
  'daili',
  'im',
  'alway',
  'exhaust',
  'caus',
  'work',
  'extra',
  'time',
  'abl',
  'afford',
  'basic',
  'necess',
  'take',
  'bu',
  'work',
  'everyday',
  'often',
  'time',
  'pack',
  'get',
  'lucki',
  'enough',
  'decent',
  'folk',
  'volunt',
  'seat',
  'mention',
  'use',
  'pregnanc',
  'excus',
  'get',
  'want',
  'peopl',
  'offer',
  'place',
  'kind',
  'sweet',
  'wednesday',
  'get',
  'bu',
  'like',
  'usual',
  'time',
  'one',
  'empti',
  'seat',
  'go',
  'sit',
  'find',
  'guy',
  'busi',
  'attir',
  'sit',
  'hand',
  'empti',
  'seat',
  'sort',
  'like',
  'rest',
  'say',
  'excus',
  'ask',
  'remov',
  'hand',
  'could',
  'sit',
  'tell',
  'seat',
  'taken',
  'ask',
  'say',
  'hand',
  'ngli',
  'laugh',
  'littl',
  'feel',
  'well',
  'ask',
  'remov',
  'could',
  'sit',
  'refus',
  'folk',
  'start',
  'stare',
  'tell',
  'im',
  'tire',
  'need',
  'sit',
  'repli',
  'say',
  'pregnanc',
  'problem',
  'enough',
  'point',
  'leg',
  'burn',
  'back',
  'hurt',
  'go',
  'ahead',
  'sit',
  'hand',
  'freak',
  'tri',
  'remov',
  'quickli',
  'shout',
  'start',
  'argu',
  'disrespect',
  'inappropri',
  'thing',
  'public',
  'less',
  'argu',
  'back',
  'ngl',
  'get',
  'say',
  'inappropri',
  'disrespect',
  'everyon',
  'stare',
  'sit',
  'feel',
  'bit',
  'shame',
  'happen',
  'tell',
  'husband',
  'incid',
  'wtfd',
  'entir',
  'time',
  'say',
  'inde',
  'act',
  'inappropri',
  'made',
  'guy',
  'uncomfort',
  'sit',
  'hand',
  'like',
  'tell',
  'fuck',
  'total',
  'inappropri',
  'despit',
  'say',
  'tire',
  'stand',
  'desper',
  'need',
  'sit',
  'aita',
  'eta',
  'sever',
  'points-',
  'like',
  'said',
  'get',
  'offer',
  'seat',
  'im',
  'treat',
  'well',
  'time',
  'unfortun',
  'run',
  'peopl',
  'guy',
  'seem',
  'upset',
  'someth',
  'argument',
  'probabl',
  'made',
  'wors',
  'couldv',
  'de-escal',
  'mayb',
  'talk',
  'driver',
  'ever',
  'im',
  'pretti',
  'sure',
  'pay',
  'seat',
  'put',
  'hand',
  'also',
  'passeng',
  'younger',
  'folk',
  'day',
  'normal',
  'would',
  'get',
  'seat',
  'older',
  'folk'],
 ['parent',
  'divorc',
  'ten',
  'year',
  'ago',
  'dad',
  'cheat',
  'mom',
  'marri',
  'woman',
  'kid',
  'step-sist',
  'juliaf',
  'step-broth',
  'josh',
  'dad',
  'cheat',
  'mom',
  'dad',
  'alreadi',
  'pass',
  'away',
  'total',
  'daddi',
  'girl',
  'ador',
  'glu',
  'hip',
  'mom',
  'encourag',
  'keep',
  'relationship',
  'split',
  'new',
  'wife',
  'famili',
  'never',
  'paid',
  'much',
  'attent',
  'mean',
  'good',
  'first',
  'alway',
  'share',
  'dad',
  'whenev',
  'visit',
  'went',
  'hike',
  'fish',
  'come',
  'went',
  'movi',
  'dinner',
  'outsid',
  'anyth',
  'come',
  'rememb',
  'use',
  'cri',
  'night',
  'understand',
  'stop',
  'turn',
  'want',
  'someth',
  'special',
  'dad',
  'said',
  'invit',
  'stepbroth',
  'broke',
  'cri',
  'ask',
  'never',
  'want',
  'spend',
  'time',
  'alon',
  'long',
  'talk',
  'got',
  'vent',
  'aw',
  'felt',
  'sit',
  'wait',
  'turn',
  'head',
  'notic',
  'tri',
  'talk',
  'attent',
  'would',
  'get',
  'middl',
  'ignor',
  'apolog',
  'would',
  'spend',
  'time',
  '-',
  'instanc',
  'lie',
  'realli',
  'enjoy',
  'could',
  'realli',
  'talk',
  'dad',
  'fun',
  'stuff',
  'around',
  'without',
  'wait',
  'stepbroth',
  'stop',
  'talk',
  'anyth',
  'julia',
  'ill',
  'graduat',
  'summer',
  'got',
  'earli',
  'accept',
  'colleg',
  'choic',
  'told',
  'parent',
  'decid',
  'someth',
  'celebr',
  'mom',
  'getaway',
  'weekend',
  'spa',
  'dad',
  'said',
  'would',
  'take',
  'beach',
  'honestli',
  'realli',
  'excit',
  'offer',
  'pay',
  'hotel',
  'reserv',
  'want',
  'feel',
  'matur',
  'lo',
  'dad',
  'said',
  'bunch',
  'time',
  'end',
  'convinc',
  'suppos',
  'leav',
  'today',
  'came',
  'pick',
  'step-sist',
  'said',
  'surpris',
  'sinc',
  'girl',
  'graduat',
  'appar',
  'beg',
  'come',
  'us',
  'agre',
  'say',
  'could',
  'get',
  'bed',
  'hell',
  'sleep',
  'floor',
  'us',
  'could',
  'feel',
  'eye',
  'burn',
  'told',
  'deal',
  'tri',
  'convinc',
  'end',
  'leav',
  'rage',
  'call',
  'hotel',
  'cancel',
  'room',
  'told',
  'dad',
  'arriv',
  'tri',
  'check',
  'call',
  'said',
  'yeah',
  'cancel',
  'hung',
  'sent',
  'long',
  'text',
  'apolog',
  'mom',
  'said',
  'okay',
  'owe',
  'apolog',
  'appar',
  'theyr',
  'way',
  'back',
  'find',
  'hotel',
  'eta',
  'someon',
  'suggest',
  'im',
  'ad',
  'trip',
  'dad',
  'spa',
  'getaway',
  'mom',
  'got',
  'earli',
  'accept',
  'graduat',
  'high',
  'school',
  'julia',
  'busi',
  'dad',
  'ask',
  'invit',
  'said',
  'also',
  'inform',
  'dad',
  'sinc',
  'keep',
  'hurt',
  'put',
  'famili',
  'explicitli',
  'ask',
  'would',
  'rather',
  'go',
  'nc',
  'current',
  'uninvit',
  'graduat',
  'last',
  'time',
  'still',
  'love',
  'hurt',
  'heart',
  'come',
  'cant',
  'keep',
  'anymor',
  'ask',
  'contact',
  'block',
  'mom',
  'explain',
  'everyth',
  'much',
  'cri',
  'part',
  'apolog',
  'hug',
  'know',
  'support',
  'decis'],
 ['live',
  'parent',
  'ive',
  'pay',
  'rent',
  'sinc',
  'sinc',
  'parent',
  'would',
  'financi',
  'fuck',
  'help',
  'parent',
  'told',
  'see',
  'someon',
  'relationship',
  'open',
  'give',
  'shit',
  'sinc',
  'affect',
  'guy',
  'see',
  'start',
  'stay',
  'night',
  'treat',
  'place',
  'like',
  'tri',
  'tell',
  'eat',
  'food',
  'tri',
  'talk',
  'parent',
  'said',
  'hous',
  'want',
  'realli',
  'tri',
  'put',
  'guy',
  'tri',
  'disciplin',
  'dog',
  'flip',
  'shit',
  'certainli',
  'way',
  'disciplin',
  'dog',
  'im',
  'alreadi',
  'sick',
  'shit',
  'yell',
  'hous',
  'call',
  'sort',
  'like',
  'dumb',
  '\\',
  '*',
  'nt',
  'piec',
  'shit',
  'free',
  'loader',
  'vile',
  'shit',
  'probabl',
  'way',
  'fuck',
  'say',
  'parent',
  'rush',
  'see',
  'go',
  'tell',
  'instead',
  'told',
  'call',
  'terribl',
  'parent',
  'shove',
  'hous',
  'ass',
  'im',
  'go',
  'pay',
  'rent',
  'live',
  'hous',
  'say',
  'dumb',
  '\\',
  '*',
  'nt',
  'cover',
  'rent',
  'ive',
  'sinc',
  'stay',
  'boyfriend',
  'parent',
  'recent',
  'text',
  'ask',
  'rent',
  'told',
  'fuck',
  'remind',
  'said',
  'feel',
  'like',
  'im',
  'wrong',
  'pay',
  'rent',
  'anymor',
  'went',
  'overboard',
  'word',
  'aita'],
 ['plan',
  'famili',
  'vacat',
  'older',
  'brother',
  'wife',
  'two',
  'niec',
  'parent',
  'everyon',
  'pay',
  'ticket',
  'vacat',
  'book',
  'februari',
  'discuss',
  'room',
  'arrang',
  'knew',
  'room',
  'wed',
  'stay',
  'would',
  'three',
  'bedroom',
  'discuss',
  'room',
  'arrang',
  'yesterday',
  'brother',
  'parent',
  'kind',
  'assum',
  'mind',
  'share',
  'room',
  'niec',
  'whilst',
  'brother',
  'wife',
  'parent',
  'get',
  'room',
  'said',
  'want',
  'share',
  'room',
  'said',
  'sleep',
  'brother',
  'sil',
  'room',
  'sinc',
  'theyr',
  'parent',
  'parent',
  'call',
  'dramat',
  'said',
  'big',
  'deal',
  'said',
  'niec',
  'give',
  'troubl',
  'told',
  'care',
  'said',
  'im',
  'bad',
  'aunt',
  'told',
  'grow',
  'told',
  'get',
  'room',
  'ill',
  'cancel',
  'ticket',
  'would',
  'result',
  'everyon',
  'els',
  'pay',
  'find',
  'someon',
  'els',
  'go',
  'place',
  'got',
  'group',
  'discount',
  'resort',
  'brother',
  'said',
  'im',
  'whini',
  'asshol',
  'accus',
  'narcissist'],
 ['im',
  'still',
  'pretti',
  'mad',
  'whole',
  'ordeal',
  'hubsand',
  'cowork',
  'wife',
  'mad',
  'us',
  'think',
  'humili',
  'think',
  'lack',
  'common',
  'sens',
  '&',
  'xb',
  'husband',
  'recent',
  'host',
  'cookout',
  'hous',
  'cowork',
  'get',
  'along',
  'pretti',
  'well',
  'enjoy',
  'host',
  'cowork',
  'wife',
  'julia',
  'goe',
  'hallway',
  'bathroom',
  'come',
  'back',
  'end',
  'go',
  'notic',
  'toilet',
  'clog',
  'start',
  'overflow',
  'someth',
  'larg',
  'white',
  'stuck',
  'use',
  'plunger',
  'unclog',
  'lo',
  'behold',
  'larg',
  'bloodi',
  'maxi',
  'pad',
  'julia',
  'last',
  'person',
  'use',
  'bathroom',
  'come',
  'ask',
  'tri',
  'flush',
  'pad',
  'toilet',
  'got',
  'embarrass',
  'said',
  'ye',
  'told',
  'need',
  'go',
  'clean',
  'mess',
  'made',
  'water',
  'floor',
  'particl',
  'pad',
  'blood',
  'everywher',
  'ask',
  'one',
  'ever',
  'taught',
  'flush',
  'pad',
  'septic',
  'tank',
  'cost',
  'thousand',
  'repair',
  'flush',
  'pad',
  'especi',
  'extra',
  'larg',
  'one',
  'like',
  'tri',
  'flush',
  'panti',
  'liner',
  'someth',
  '&',
  'xb',
  'julia',
  'cri',
  'husband',
  'yell',
  'especi',
  'someon',
  'els',
  'hous',
  'husband',
  'two',
  'femal',
  'cowork',
  'came',
  'defens',
  'pretti',
  'much',
  'said',
  'stupid',
  'julia',
  'half',
  'ass',
  'clean',
  'mess',
  'husband',
  'quickli',
  'left',
  'cowork',
  'think',
  'julia',
  'done',
  'husband',
  'cowork',
  'whole',
  'feud',
  'aita',
  'call',
  'husband',
  'cowork',
  'wife',
  'tri',
  'flush',
  'maxi',
  'pad',
  'toilet',
  '&',
  'xb',
  'edit',
  'septic',
  'tank',
  'septic',
  'tank',
  'repair',
  'easili',
  'go',
  'around',
  '$',
  'julia',
  'septic',
  'tank',
  'julia',
  'know',
  'better',
  'ask',
  'would',
  'flush',
  'pad',
  'home',
  'said',
  'julia',
  'said',
  'trashcan',
  'want',
  'walk',
  'pad',
  'differ',
  'trashcan',
  'trashcan',
  'bathroom',
  'outsid',
  'wash',
  'differ',
  'cowork',
  'got',
  'vomit',
  'think',
  'save',
  'embarrass',
  'would',
  'worth',
  'pay',
  'thousand',
  'dollar',
  'repair',
  'also',
  'saw',
  'toilet',
  'clog',
  'decid',
  'walk',
  'leav',
  'someon',
  'els'],
 ['four',
  'kid',
  'eldest',
  'izzi',
  'doll',
  'son',
  'luke',
  'autism',
  'adhd',
  'lovabl',
  'bit',
  'hand',
  'time',
  'therefor',
  'izzi',
  'wit',
  'fun',
  'not-so-fun',
  'part',
  'neurodivers',
  'develop',
  'saintli',
  'patienc',
  'knack',
  'help',
  'special',
  'need',
  'kid',
  'sens',
  'matur',
  'beyond',
  'year',
  'particulari',
  'notabl',
  'kind',
  'maisi',
  'girl',
  'class',
  'autism',
  'sever',
  'anxieti',
  'worsen',
  'result',
  'tumult',
  'last',
  'year',
  'izzi',
  'help',
  'maisi',
  'bought',
  'attent',
  'super',
  'proud',
  'mama',
  'next',
  'weekend',
  'school',
  'take',
  'daughter',
  'class',
  'trip',
  'thursday',
  'izzi',
  'teacher',
  'ask',
  'room',
  'maisi',
  'say',
  'would',
  'make',
  'maisi',
  'happi',
  'maisi',
  'intens',
  'separ',
  'anxieti',
  'never',
  'away',
  'home',
  'frame',
  'choic',
  'alway',
  'obedi',
  'want',
  'good',
  'teacher',
  'izzi',
  'agre',
  'came',
  'home',
  'cri',
  'say',
  'want',
  'maisi',
  'want',
  'break',
  'stress',
  'happi',
  'made',
  'heart',
  'break',
  'know',
  'anyon',
  'daughter',
  'deserv',
  'chanc',
  'kid',
  'lockdown',
  'usual',
  'outlet',
  'sport',
  'club',
  'spend',
  'lot',
  'time',
  'cranki',
  'luke',
  'whose',
  'routin',
  'destroy',
  'toddler',
  'excit',
  'big',
  'si',
  'home',
  'husband',
  'alway',
  'tri',
  'activ',
  'admittedli',
  'got',
  'harder',
  'furlough',
  'end',
  'unexpectedli',
  'got',
  'pregnant',
  'youngest',
  'luke',
  'also',
  'found',
  'babi',
  'difficult',
  'sensory-wis',
  'whichev',
  'parent',
  'tend',
  'babi',
  'often',
  'elsewher',
  'luke',
  'mean',
  'much',
  'attent',
  'izzi',
  'would',
  'like',
  'feel',
  'bad',
  'daughter',
  'rough',
  'ride',
  'frankli',
  'want',
  'give',
  'chanc',
  'littl',
  'girl',
  'instead',
  'adult',
  'contact',
  'teacher',
  'awar',
  'situat',
  'luke',
  'agre',
  'let',
  'izzi',
  'break',
  'would',
  'good',
  'thing',
  'today',
  'school',
  'spoke',
  'maisi',
  'mum',
  'inform',
  'maisi',
  'room',
  'trip',
  'know',
  'girl',
  'room',
  'love',
  'clearli',
  'unhappi',
  'ask',
  'ask',
  'izzi',
  'said',
  'choic',
  'respect',
  'sent',
  'trade',
  'bring',
  'izzi',
  'intoler',
  'maisi',
  'feel',
  'izzi',
  'abandon',
  'would',
  'feel',
  'son',
  'consid',
  'pull',
  'maisi',
  'trip',
  'feel',
  'would',
  'cope',
  'separ',
  'anxieti',
  'without',
  'izzi',
  'husband',
  'think',
  'school',
  'maisi',
  'mum',
  'job',
  'izzi',
  'accommod',
  'comment',
  'ring',
  'head',
  'izzi',
  'mum',
  'also',
  'luke',
  'much',
  'worri',
  'miss',
  'worri',
  'isol',
  'know',
  'exactli',
  'maisi',
  'mum',
  'feel',
  'much',
  'suck',
  'yet',
  'one',
  'thing',
  'allevi',
  'pain',
  'aita'],
 ['serious',
  'cant',
  'believ',
  'thing',
  'parent',
  'realli',
  'upset',
  'sister',
  'grew',
  'togeth',
  'close',
  'realli',
  'drama',
  'big',
  'fight',
  'caus',
  'distanc',
  'rather',
  'opposit',
  'person',
  'interest',
  'describ',
  'attitud',
  'toward',
  'sister',
  'would',
  'apathet',
  'love',
  'like',
  'sister',
  'want',
  'healthi',
  'happi',
  'unfortun',
  'hang',
  'call',
  'chat',
  'etc',
  'recent',
  'receiv',
  'opportun',
  'interview',
  'job',
  'near',
  'hometown',
  'reach',
  'see',
  'could',
  'stay',
  'week',
  'mother',
  'ecstat',
  'sister',
  'might',
  'come',
  'home',
  'final',
  'move',
  'across',
  'counti',
  'right',
  'colleg',
  'back',
  'almost',
  'year',
  'except',
  'christma',
  'spend',
  'thanksgiv',
  'in-law',
  'one',
  'birthdaybusi',
  'tripvac',
  'happi',
  'open',
  'home',
  'think',
  'could',
  'mayb',
  'bond',
  'deepen',
  'relationship',
  'kind',
  'awkward',
  'noth',
  'horribl',
  'third',
  'night',
  'came',
  'home',
  'drink',
  'friend',
  'around',
  'pm',
  'went',
  'kitchen',
  'snack',
  'realiz',
  'almost',
  'food',
  'gone',
  'im',
  'even',
  'exagger',
  'swear',
  '%',
  'pantri',
  'gone',
  'ask',
  'sister',
  'told',
  'shock',
  'ate',
  'anyth',
  'preserv',
  'unnatur',
  'poison',
  'bodi',
  'took',
  'upon',
  'throw',
  'away',
  'everyth',
  'deem',
  'unhealthi',
  'guy',
  'im',
  'talk',
  'much',
  'food',
  'packag',
  'unpackag',
  'even',
  'thing',
  'like',
  'spice',
  'fresh',
  'toss',
  'like',
  'someon',
  'rob',
  'kitchen',
  'demand',
  'pay',
  'replac',
  'everyth',
  'dug',
  'heel',
  'said',
  'favor',
  'way',
  'ate',
  'disgust',
  'liter',
  'word',
  'know',
  'im',
  'bias',
  'diet',
  'even',
  'crazi',
  'pretti',
  'much',
  'standard',
  'food',
  'find',
  'groceri',
  'store',
  'upset',
  'made',
  'pack',
  'leav',
  'end',
  'take',
  'cab',
  'minut',
  'away',
  'stay',
  'parent',
  'mom',
  'absolut',
  'devast',
  'fight',
  'insist',
  'apolog',
  'order',
  'keep',
  'peac',
  'realli',
  'hope',
  'sister',
  'take',
  'job',
  'move',
  'back',
  'told',
  'mom',
  'want',
  'lose',
  'one',
  'daughter',
  'shed',
  'keep',
  'push',
  'apolog',
  'someth',
  'feel',
  'right',
  'upset',
  'dad',
  'say',
  'cri',
  'everi',
  'night',
  'though',
  'love',
  'mom',
  'much',
  'feel',
  'like',
  'huge',
  'ah',
  'stubborn',
  'situat',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'answer',
  'question',
  'askeddmd',
  'ye',
  'invit',
  'sister',
  'drink',
  'declin',
  'say',
  'like',
  'go',
  'dive',
  'bar',
  'want',
  'stay',
  'sober',
  'work',
  'trip',
  'respect',
  'decis',
  'alreadi',
  'plan',
  'go',
  'girlfriend',
  'birthday',
  'math',
  'threw',
  'away',
  'close',
  'thousand',
  'dollar',
  'worth',
  'food',
  'list',
  'item',
  'comment',
  'includ',
  'dri',
  'pasta',
  'ground',
  'beef',
  'pre-cut',
  'veggi',
  'contain',
  'juic',
  'soup',
  'rice',
  'chicken',
  'broth',
  'leftov',
  'even',
  'bread',
  'white',
  'even',
  'close',
  'start',
  'list'],
 ['two',
  'year',
  'ago',
  'unexpectedli',
  'got',
  'pregnant',
  'beauti',
  'month',
  'old',
  'daughter',
  'ciara',
  'time',
  'friend',
  'circl',
  'got',
  'consider',
  'smaller',
  'best',
  'friend',
  'remain',
  'mia',
  'mia',
  'kid',
  'want',
  'kid',
  'brilliant',
  'ciara',
  'im',
  'sahm',
  'obvious',
  'much',
  'time',
  'hang',
  'previous',
  'mia',
  'live',
  'street',
  'manchest',
  'england',
  'walk',
  'distanc',
  'hous',
  'ive',
  'told',
  'mia',
  'numer',
  'time',
  'pop',
  'whenev',
  'want',
  'work',
  'home',
  'rare',
  'begin',
  'happen',
  'less',
  'less',
  'instead',
  'keep',
  'suggest',
  'go',
  'coffe',
  'pizza',
  'even',
  'drink',
  'time',
  'alway',
  'tell',
  'come',
  'well',
  'coffe',
  'place',
  'ask',
  'want',
  'go',
  'friend',
  'drink',
  'last',
  'weekend',
  'said',
  'welcom',
  'come',
  'well',
  'drink',
  'mine',
  'said',
  'alreadi',
  'plan',
  'felt',
  'weird',
  'drink',
  'know',
  'child',
  'around',
  'honestli',
  'feel',
  'neglect',
  'feel',
  'like',
  'put',
  'back',
  'burner',
  'want',
  'friend',
  'anymor',
  'im',
  'alway',
  'avail',
  'rare',
  'come',
  'think',
  'fair',
  'today',
  'saw',
  'photo',
  'saturday',
  'night',
  'fume',
  'ditch',
  'could',
  'go',
  'drink',
  'like',
  'felt',
  'reject',
  'horribl',
  'thought',
  'best',
  'friend',
  'clearli',
  'valu',
  'even',
  'drink',
  'hous',
  'finish',
  'work',
  'call',
  'ask',
  'fanci',
  'go',
  'coffe',
  'town',
  'ask',
  'come',
  'said',
  'ye',
  'disconnect',
  'heard',
  'mumbl',
  'like',
  'alway',
  'realli',
  'annoy',
  'came',
  'decid',
  'open',
  'everyth',
  'proudest',
  'matur',
  'moment',
  'shout',
  'aw',
  'friend',
  'bare',
  'come',
  'want',
  'spend',
  'time',
  'say',
  'stop',
  'play',
  'around',
  'said',
  'alway',
  'accommod',
  'year',
  'want',
  'spend',
  'time',
  'alway',
  'kid',
  'especi',
  'watch',
  'languag',
  'mia',
  'like',
  'swear',
  'said',
  'knew',
  'child',
  'respons',
  'said',
  'tom',
  'partner',
  'could',
  'take',
  'care',
  'ciara',
  'could',
  'time',
  'felt',
  'realli',
  'intrus',
  'told',
  'mind',
  'busi',
  'meddl',
  'marriag',
  'realli',
  'angri',
  'kick',
  'call',
  'selfish',
  'asshol',
  'way',
  'normal',
  'would',
  'expect',
  'call',
  'apolog',
  'done',
  'im',
  'start',
  'wonder',
  'asshol',
  'perhap',
  'harsh',
  'care',
  'discuss'],
 ['parent',
  'divorc',
  'sister',
  'year',
  'old',
  'met',
  'husband',
  'three',
  'year',
  'later',
  'widow',
  'month',
  'old',
  'son',
  'think',
  'month',
  'old',
  'met',
  'instantli',
  'move',
  'start',
  'claim',
  'son',
  'rais',
  'like',
  'us',
  'got',
  'engag',
  'week',
  'wed',
  'dad',
  'die',
  'point',
  'mom',
  'becom',
  'estrang',
  'entir',
  'extend',
  'famili',
  'told',
  'dad',
  'parent',
  'want',
  'see',
  'us',
  'soon',
  'would',
  'need',
  'come',
  'wed',
  'watch',
  'three',
  'us',
  'includ',
  'stepbroth',
  'told',
  'wed',
  'go',
  'forward',
  'want',
  'see',
  'us',
  'spend',
  'time',
  'us',
  'includ',
  'want',
  'tri',
  'argu',
  'time',
  'us',
  'offer',
  'pay',
  '%',
  'mom',
  'said',
  'said',
  'need',
  'come',
  'hous',
  'make',
  'effort',
  'three',
  'take',
  'two',
  'sister',
  'would',
  'argu',
  'mom',
  'one',
  'day',
  'particular',
  'dad',
  'birthday',
  'celebr',
  'everi',
  'year',
  'dad',
  'famili',
  'die',
  'even',
  'let',
  'day',
  'us',
  'stepbroth',
  'said',
  'get',
  'famili',
  'see',
  'less',
  'deserv',
  'present',
  'dad',
  'kid',
  'never',
  'met',
  'deserv',
  'never',
  'got',
  'call',
  'us',
  'selfish',
  'mindset',
  'last',
  'year',
  'turn',
  'move',
  'girlfriend',
  'left',
  'home',
  'stepbroth',
  'longer',
  'invit',
  'anyth',
  'dad',
  'famili',
  'longer',
  'saw',
  'sister',
  'also',
  'stop',
  'spend',
  'time',
  'mom',
  'hous',
  'stop',
  'speak',
  'quiet',
  'sever',
  'month',
  'last',
  'week',
  'mom',
  'show',
  'work',
  'demand',
  'talk',
  'told',
  'tire',
  'one',
  'kid',
  'left',
  'sick',
  'discard',
  'way',
  'sister',
  'advoc',
  'told',
  'one',
  'kid',
  'stepson',
  'sister',
  'longer',
  'kid',
  'famili',
  'longer',
  'forc',
  'includ',
  'see',
  'us',
  'fault',
  'forc',
  'first',
  'place',
  'wish',
  'luck',
  'kinda',
  'sarcast',
  'gon',
  'na',
  'lie',
  'ask',
  'leav',
  'text',
  'later',
  'night',
  'say',
  'good',
  'mom',
  'three',
  'us',
  'say',
  'one',
  'kid',
  'low',
  'aita'],
 ['boyfriend',
  'live',
  'togeth',
  'year',
  'alway',
  'bit',
  'money',
  'struggl',
  'use',
  'make',
  'usual',
  'pick',
  'slack',
  'hous',
  'hold',
  'howev',
  'start',
  'new',
  'job',
  'earn',
  'lot',
  'less',
  'ive',
  'start',
  'cautiou',
  'amount',
  'spend',
  'relationship',
  'would',
  'usual',
  'buy',
  'toiletri',
  'household',
  'product',
  'told',
  'would',
  'anymor',
  'need',
  'cut',
  'spend',
  'also',
  'work',
  'capabl',
  'buy',
  'thing',
  'thought',
  'agre',
  'time',
  'gone',
  'ive',
  'notic',
  'expens',
  'skin',
  'care',
  'even',
  'deodor',
  'use',
  'realli',
  'quickli',
  'ask',
  'multipl',
  'time',
  'pleas',
  'use',
  'stuff',
  'even',
  'bought',
  'skin',
  'care',
  'could',
  'thing',
  'thing',
  'set',
  'bought',
  '$',
  'dollar',
  'face',
  'wash',
  'suppos',
  'use',
  'sparingli',
  'horribl',
  'ezcema',
  'prescript',
  'product',
  'buy',
  'specif',
  'ezcema',
  'use',
  'pick',
  'bottl',
  'empti',
  'laugh',
  'said',
  'would',
  'replac',
  'refus',
  'learnt',
  'price',
  'took',
  'inventori',
  'everyth',
  'els',
  'found',
  'use',
  '$',
  'worth',
  'product',
  'around',
  'month',
  'know',
  'naiv',
  'tell',
  'price',
  'everyth',
  'get',
  'tell',
  'use',
  'end',
  'buy',
  'safe',
  'put',
  'sink',
  'put',
  'everyth',
  'left',
  'insid',
  'hid',
  'key',
  'go',
  'shower',
  'get',
  'readi',
  'use',
  'thing',
  'worri',
  'afford',
  'keep',
  'skin',
  'check',
  'found',
  'lost',
  'said',
  'overreact',
  'trust',
  'turn',
  'massiv',
  'deal',
  'friend',
  'think',
  'im',
  'harsh',
  'simpli',
  'afford',
  'keep',
  'buy',
  'skincar',
  'ive',
  'even',
  'hospitalis',
  'year',
  'due',
  'huge',
  'flare',
  'run',
  'product',
  'take',
  'serious',
  'know',
  'els',
  'ive',
  'alreadi',
  'tri',
  'ask',
  'asshol',
  'updat',
  'wow',
  'think',
  'go',
  'get',
  'much',
  'respons',
  'thank',
  'guy',
  'shatter',
  'rose',
  'tint',
  'glass',
  'talk',
  'one',
  'friend',
  'said',
  'idea',
  'take',
  '$',
  'product',
  'explain',
  'thought',
  'harsh',
  'unfortun',
  'share',
  'friend',
  'group',
  'break',
  'look',
  'realli',
  'hard',
  'sat',
  'talk',
  'tri',
  'convey',
  'trust',
  'anymor',
  'import',
  'skin',
  'care',
  'convers',
  'went',
  'time',
  'actual',
  'thought',
  'may',
  'turn',
  'new',
  'leaf',
  'told',
  'first',
  'year',
  'togeth',
  'coupl',
  'flare',
  'find',
  'good',
  'product',
  'work',
  'take',
  'oral',
  'steroid',
  'prescrib',
  'think',
  'would',
  'make',
  'buff',
  'gym',
  'whole',
  'year',
  'battl',
  'insecur',
  'unbear',
  'pain',
  'abl',
  'overcom',
  'flare',
  'honestli',
  'thing',
  'snap',
  'complet',
  'im',
  'stay',
  'friend',
  'hous',
  'week',
  'let',
  'pack',
  'thing',
  'figur',
  'place',
  'go',
  'thank',
  'everyon',
  'kind',
  'help',
  'realis',
  'stupid',
  '❤️'],
 ['name',
  'rynn',
  'rynn',
  'katherin',
  'ever',
  'sinc',
  'il',
  'met',
  'gotten',
  'idea',
  'actual',
  'name',
  'katherin',
  'rynn',
  'nicknam',
  'ask',
  'introduc',
  'tell',
  'peopl',
  'name',
  'alway',
  'go',
  'back',
  'husband',
  'took',
  'small',
  'break',
  'continu',
  'apolog',
  'seem',
  'better',
  'mil',
  'birthday',
  'invit',
  'celebr',
  'coupl',
  'friend',
  'came',
  'ask',
  'katherin',
  'said',
  'mil',
  'talk',
  'decid',
  'get',
  'littl',
  'bit',
  'jokey',
  'instead',
  'annoy',
  'play',
  'say',
  'mil',
  'forget',
  'sorri',
  'told',
  'wrong',
  'name',
  'ill',
  'need',
  'write',
  'name',
  'everyth',
  'forget',
  'friend',
  'found',
  'funni',
  'told',
  'weird',
  'gave',
  'wrong',
  'name',
  'fil',
  'came',
  'close',
  'end',
  'parti',
  'told',
  'stop',
  'tell',
  'peopl',
  'name',
  'katherin',
  'need',
  'accept',
  'name',
  'claim',
  'rude',
  'aw',
  'tri',
  'embarrass',
  'front',
  'friend',
  'joke',
  'mil',
  'friend',
  'husband',
  'told',
  'listen',
  'say',
  'took',
  'far',
  'mayb',
  'aita'],
 ['wife',
  'nina',
  'becam',
  'pregnant',
  'son',
  'jason',
  'twenti',
  'admit',
  'unplan',
  'pregnanc',
  'love',
  'son',
  'kept',
  'best',
  'rais',
  'jason',
  'kind',
  'respect',
  'treat',
  'well',
  'thought',
  'succeed',
  'jason',
  'work',
  'hard',
  'attend',
  'elit',
  'univers',
  'jason',
  'first',
  'wife',
  'sara',
  'daughter',
  'simon',
  'unfortun',
  'sara',
  'pass',
  'car',
  'accid',
  'simon',
  'third',
  'birthday',
  'jason',
  'rais',
  'simon',
  'simon',
  'four',
  'time',
  'met',
  'second',
  'wife',
  'move',
  'two',
  'hour',
  'away',
  'simon',
  'live',
  'us',
  'jason',
  'visit',
  'everi',
  'two',
  'month',
  'best',
  'wife',
  'would',
  'stay',
  'day',
  'buy',
  'simon',
  'present',
  'jason',
  'would',
  'say',
  'time',
  'leav',
  'nina',
  'suspect',
  'visit',
  'buy',
  'simon',
  'present',
  'wife',
  'make',
  'wife',
  'iri',
  'love',
  'ladi',
  'insist',
  'simon',
  'move',
  'move',
  'closer',
  'us',
  'want',
  'simon',
  'stepmom',
  'spend',
  'time',
  'jason',
  'shot',
  'idea',
  'say',
  'simon',
  'move',
  'move',
  'would',
  'hurt',
  'career',
  'best',
  'simon',
  'stay',
  'nina',
  'simon',
  'eleven',
  'ador',
  'jason',
  'make',
  'draw',
  'card',
  'constantli',
  'bake',
  'treat',
  'send',
  'devast',
  'daddi',
  'hero',
  'want',
  'spend',
  'time',
  'birthday',
  'juli',
  'cri',
  'jason',
  'call',
  'wish',
  'happi',
  'birthday',
  'iri',
  'tri',
  'lie',
  'simon',
  'make',
  'feel',
  'better',
  'phone',
  'line',
  'went',
  'jason',
  'forget',
  'simon',
  'believ',
  'simon',
  'summer',
  'camp',
  'week',
  'jason',
  'invit',
  'us',
  'parti',
  'celebr',
  'receiv',
  'promot',
  'parti',
  'jason',
  'told',
  'much',
  'money',
  'make',
  'promot',
  'job',
  'titl',
  'ask',
  'proud',
  'old',
  'man',
  'job',
  'titl',
  'elit',
  'univers',
  'alumni',
  'sigh',
  'told',
  'jason',
  'honestli',
  'proud',
  'late',
  'may',
  'well-pay',
  'job',
  'treat',
  'beauti',
  'daughter',
  'matter',
  'simon',
  'littl',
  'girl',
  'love',
  'much',
  'even',
  'seem',
  'care',
  'nina',
  'came',
  'back',
  'drink',
  'jason',
  'told',
  'said',
  'nina',
  'told',
  'agre',
  'treat',
  'simon',
  'right',
  'famili',
  'say',
  'nina',
  'wrong',
  'tell',
  'jason',
  'proud',
  'said',
  'know',
  'much',
  'statement',
  'hurt',
  'age',
  'never',
  'good',
  'enough',
  'father',
  'eye',
  'said',
  'jason',
  'probabl',
  'focus',
  'stabil',
  'career',
  'simon',
  'move',
  'also',
  'said',
  'jason',
  'promot',
  'parti',
  'time',
  'place',
  'call',
  'could',
  'congratul',
  'jason',
  'work',
  'hard',
  'save',
  'drama',
  'anoth',
  'day',
  'feel',
  'said',
  'need',
  'said',
  'famili',
  'disagre',
  'nina',
  'aita',
  'mani',
  'peopl',
  'ask',
  'jason',
  'pay',
  'child',
  'support',
  'believ',
  'pay',
  'child',
  'support',
  'respons',
  'met',
  'jason',
  'told',
  'us',
  'attend',
  'therapi',
  'begin',
  'learn',
  'later',
  'untruth',
  'simon',
  'see',
  'child',
  'psychologist',
  'seem',
  'talk',
  'psychologist',
  'school',
  'friend',
  'rather',
  'jason',
  'mani',
  'comment',
  'also',
  'suggest',
  'simon',
  'could',
  'resembl',
  'sara',
  'caus',
  'mani',
  'bad',
  'memori',
  'jason',
  'could',
  'possibl',
  'simon',
  'also',
  'resembl',
  'sara',
  'simon',
  'look',
  'like',
  'young',
  'version',
  'nina',
  'lighter',
  'skin',
  'slightli',
  'thicker',
  'hair',
  'issu',
  'seem',
  'jason',
  'want',
  'parent',
  'simon'],
 ['stbh',
  'get',
  'marri',
  'soon',
  'wed',
  'plan',
  'far',
  'go',
  'alright',
  'except',
  'thing',
  'argu',
  'like',
  'venu',
  'flower',
  'girl',
  'weve',
  'argu',
  'wed',
  'dress',
  'might',
  'sound',
  'clichè',
  'eversinc',
  'young',
  'dream',
  'beauti',
  'wed',
  'dress',
  'afford',
  'stbh',
  'think',
  'okay',
  'wast',
  'coupl',
  'thousand',
  'dress',
  'im',
  'go',
  'wear',
  '--',
  'ye',
  'might',
  'point',
  'one',
  'typic',
  'price',
  'wed',
  'dress',
  'two',
  'life',
  'time',
  'thing',
  'make',
  'sure',
  'special',
  'stbh',
  'still',
  'convinc',
  'suggest',
  'rent',
  'dress',
  'instead',
  'buy',
  'one',
  'start',
  'say',
  'im',
  'irrispons',
  'money',
  'brought',
  'much',
  'money',
  'ive',
  'alreadi',
  'put',
  'asid',
  'rent',
  'face',
  'mean',
  'makeup',
  'wear',
  'fake',
  'hair',
  'mean',
  'extens',
  'vision',
  'want',
  'tolook',
  'like',
  'sort',
  'speak',
  'wed',
  'think',
  'right',
  'bride',
  'went',
  'ahead',
  'purchas',
  'dress',
  'day',
  'later',
  'found',
  'miss',
  'closet',
  'freak',
  'told',
  'return',
  'got',
  'money',
  'back',
  'shock',
  'ask',
  'said',
  'thought',
  'dress',
  'ridicul',
  'expens',
  'wast',
  'money',
  'suggest',
  'go',
  'rent',
  'one',
  'blew',
  'went',
  'ive',
  'never',
  'done',
  'liter',
  'took',
  'step',
  'back',
  'told',
  'calm',
  'said',
  'right',
  'im',
  'one',
  'pay',
  'damn',
  'dress',
  'got',
  'upset',
  'said',
  'im',
  'pay',
  'marriag',
  'attitud',
  'set',
  'tone',
  'type',
  'dynam',
  'well',
  'marriag',
  'kept',
  'must',
  'expect',
  'pay',
  'everyth',
  'keep',
  'money',
  'spend',
  'irrespons',
  'never',
  'tell',
  'spend',
  'money',
  'respond',
  'get',
  'zero',
  'say',
  'spend',
  'money',
  'whatsoev',
  'told',
  'grow',
  'stop',
  'dream',
  'wed',
  'dress',
  'clichè',
  'storm',
  'call',
  'mom',
  'chew',
  'say',
  'let',
  'ruin',
  'son',
  'financi',
  'stabil',
  'deal',
  'money',
  'gener',
  'urg',
  'rent',
  'dress',
  'buy',
  'cheaper',
  'one',
  'way',
  'cheaper',
  'one',
  'pick',
  'move',
  'declin',
  'eta',
  'repeat',
  'question',
  'ye',
  'still',
  'money',
  'said',
  'hell',
  'give',
  'back',
  'agre',
  'solut'],
 ['im',
  'new',
  'reddit',
  'husband',
  'advis',
  'post',
  'help',
  'write',
  'mother',
  '-year-old',
  'daughter',
  'junior',
  'colleg',
  'attend',
  'school',
  'citi',
  'live',
  'daughter',
  'two',
  'friend',
  'live',
  'condominium',
  'friend',
  'pay',
  'below-market',
  'rent',
  'daughter',
  'condo',
  'inherit',
  'parent',
  'intent',
  'would',
  'pass',
  'ownership',
  'daughter',
  'matur',
  'enough',
  'place',
  'daughter',
  'husband',
  'agreement',
  'take',
  'ownership',
  'condo',
  'school',
  'financi',
  'independ',
  'earlier',
  'week',
  'daughter',
  'mention',
  'run',
  'household',
  'suppli',
  'would',
  'set',
  'asid',
  'time',
  'go',
  'shop',
  'end',
  'week',
  'daughter',
  'schedul',
  'especi',
  'rough',
  'late',
  'pick',
  'extra',
  'shift',
  'part',
  'time',
  'job',
  'due',
  'short',
  'staf',
  'want',
  'help',
  'offer',
  'pick',
  'suppli',
  'drop',
  'place',
  'accept',
  'next',
  'day',
  'pick',
  'suppli',
  'took',
  'condo',
  'knew',
  'daughter',
  'class',
  'knock',
  'one',
  'answer',
  'let',
  'front',
  'door',
  'open',
  'live',
  'room',
  'enter',
  'found',
  'one',
  'daughter',
  'roommat',
  'intim',
  'man',
  'live',
  'room',
  'couch',
  'obvious',
  'mortifi',
  'left',
  'suppli',
  'door',
  'left',
  'right',
  'away',
  'say',
  'anyth',
  'daughter',
  'happen',
  'want',
  'put',
  'uncomfort',
  'posit',
  'let',
  'know',
  'drop',
  'suppli',
  'friday',
  'got',
  'angri',
  'email',
  'roommat',
  'parent',
  'im',
  'sure',
  'exactli',
  'told',
  'email',
  'lambast',
  'invad',
  'daughter',
  'privaci',
  'said',
  'wrong',
  'im',
  'daughter',
  'landlord',
  'enter',
  'condo',
  'without',
  'give',
  '-hour',
  'notic',
  'theyr',
  'threaten',
  'take',
  'legal',
  'action',
  'vagu',
  'familiar',
  'requir',
  'think',
  'applic',
  'asshol',
  'situat',
  'feel',
  'bad',
  'happen',
  'also',
  'feel',
  'like',
  'line',
  'edit',
  'daughter',
  'awar',
  'come',
  'drop',
  'suppli',
  'ask',
  'leav',
  'kitchen',
  'adjac',
  'live',
  'room',
  'edit',
  'ask',
  'judgment',
  'whether',
  'violat',
  'law',
  'check',
  'friend',
  'lawyer',
  'think',
  'daughter',
  'gave',
  'explicit',
  'permiss',
  'enter',
  'home',
  'drop',
  'suppli',
  'im',
  'clear',
  'ask',
  'whether',
  'asshol',
  '&',
  'xb',
  'updat',
  'call',
  'text',
  'daughter',
  'ask',
  'discuss',
  'situat',
  'cant',
  'speak',
  'right',
  'roommat',
  'fight',
  'mediat',
  'awar',
  'situat',
  'sent',
  'quick',
  'explan',
  'daughter',
  'notifi',
  'roommat',
  'come',
  'roommat',
  'appar',
  'forgot',
  'man',
  'roommat',
  'boyfriend',
  'freak',
  'contact',
  'parent',
  'scare',
  'would',
  'spill',
  'bean',
  'still',
  'know',
  'exactli',
  'told',
  'parent',
  'assum',
  'full',
  'stori',
  'never',
  'met',
  'roommat',
  'boyfriend',
  'know',
  'roommat',
  'roommat',
  'fight',
  'needless',
  'say',
  'roommat',
  'move',
  'write',
  'comprehens',
  'formal',
  'leas',
  'roommat',
  'protect',
  'honesti',
  'roommat',
  'wonder',
  'anticip',
  'problem'],
 ['everi',
  'year',
  'famili',
  'spend',
  'christma',
  'hawaii',
  'weve',
  'done',
  'everi',
  'year',
  'sinc',
  'rememb',
  'fun',
  'famili',
  'tradit',
  'husband',
  'kid',
  'reorgan',
  'famili',
  'christma',
  'plan',
  'parent',
  'want',
  'see',
  'kid',
  'christma',
  'decid',
  'would',
  'celebr',
  'christma',
  'parent',
  'new',
  'year',
  'go',
  'hawaii',
  'actual',
  'christma',
  'system',
  'work',
  'us',
  'last',
  'year',
  'last',
  'year',
  'dad',
  'pass',
  'away',
  'around',
  'time',
  'year',
  'hit',
  'mom',
  'hard',
  'obviou',
  'reason',
  'go',
  'hawaii',
  'year',
  'plan',
  'wed',
  'holiday',
  'earli',
  'wed',
  'thanksgiv',
  'mom',
  'wed',
  'christma',
  'hawaii',
  'sinc',
  'kid',
  'miss',
  'last',
  'year',
  'thing',
  'go',
  'well',
  'right',
  'flight',
  'week',
  'said',
  'unsur',
  'said',
  'think',
  'might',
  'better',
  'stay',
  'said',
  'realli',
  'want',
  'spend',
  'christma',
  'famili',
  'felt',
  'like',
  'mom',
  'realli',
  'need',
  'unhappi',
  'made',
  'plan',
  'saw',
  'last',
  'month',
  'alreadi',
  'dad',
  'buy',
  'ticket',
  'hotel',
  'would',
  'incred',
  'unfair',
  'kid',
  'us',
  'go',
  'mom',
  'wed',
  'see',
  'day',
  'got',
  'back',
  'anyway',
  'got',
  'argument',
  'propos',
  'kid',
  'go',
  'hawaii',
  'stay',
  'mom',
  'decid',
  'clearli',
  'upset',
  'go',
  'forgo',
  'famili',
  'christma',
  'tradit',
  'see',
  'famili',
  'mom',
  'im',
  'hawaii',
  'watch',
  'rangl',
  'kid',
  'home',
  'alon',
  'said',
  'text',
  'respond',
  'much',
  'call',
  'talk',
  'minut',
  'want',
  'get',
  'phone',
  'talk',
  'girl',
  'aita'],
 ['backstori',
  'kid',
  'el',
  'kati',
  'camm',
  'isla',
  'im',
  'also',
  'current',
  'pregnant',
  'husband',
  'start',
  'ad',
  'colleg',
  'fund',
  'everi',
  'month',
  'kid',
  'pretti',
  'much',
  'soon',
  'found',
  'pregnant',
  'say',
  'exact',
  'amount',
  'husband',
  'excel',
  'job',
  'never',
  'told',
  'kid',
  'feel',
  'necessari',
  'el',
  'got',
  'pregnant',
  'end',
  'drop',
  'school',
  'disappoint',
  'understood',
  'howev',
  'impress',
  'would',
  'return',
  'later',
  'plan',
  'dad',
  'stuck',
  'around',
  'kid',
  'one',
  'way',
  'engag',
  'plan',
  'marri',
  'afford',
  'okay',
  'financi',
  'due',
  'market',
  'right',
  'theyv',
  'struggl',
  'el',
  'cant',
  'get',
  'job',
  'sinc',
  'diploma',
  'weve',
  'loan',
  'money',
  'kati',
  'senior',
  'got',
  'accept',
  'colleg',
  'weve',
  'set',
  'everyth',
  'obvious',
  'know',
  'fund',
  'kati',
  'el',
  'talk',
  'tell',
  'el',
  'school',
  'el',
  'ask',
  'plan',
  'pay',
  'kati',
  'respond',
  'colleg',
  'fund',
  'room',
  'talk',
  'made',
  'panic',
  'plan',
  'split',
  'remain',
  'four',
  'sinc',
  'knew',
  'go',
  'colleg',
  'el',
  'ask',
  'one',
  'go',
  'lie',
  'said',
  'ye',
  'got',
  'realli',
  'excit',
  'went',
  'call',
  'fianc',
  'tell',
  'good',
  'news',
  'confus',
  'told',
  'money',
  'ask',
  'said',
  'school',
  'got',
  'upset',
  'left',
  'hous',
  'next',
  'day',
  'get',
  'call',
  'el',
  'cri',
  'beg',
  'let',
  'fund',
  'could',
  'final',
  'afford',
  'payment',
  'mayb',
  'even',
  'wed',
  'told',
  'could',
  'money',
  'went',
  'back',
  'school',
  'whatev',
  'money',
  'keft',
  'could',
  'use',
  'whatev',
  'want',
  'got',
  'super',
  'mad',
  'start',
  'yell',
  'say',
  'money',
  'told',
  'money',
  'condit',
  'hung',
  'harass',
  'fianc',
  'famili',
  'fortun',
  'us',
  'call',
  'us',
  'asshol',
  'lot',
  'name',
  'say',
  'gon',
  'na',
  'go',
  'wast',
  'use',
  'set',
  'failur',
  'etc',
  'im',
  'wonder',
  'im',
  'asshol',
  'dad',
  'said',
  'give',
  'money',
  'save',
  'asshol',
  'updat',
  'think',
  'within',
  'rule',
  'pleas',
  'correct',
  'daughter',
  'came',
  'thursday',
  'abl',
  'work',
  'thing',
  'apolog',
  'long',
  'discuss',
  'get',
  'ged',
  'go',
  'trade',
  'school',
  'exchang',
  'give',
  'whatev',
  'money',
  'left',
  'decid',
  'one',
  'yet',
  'probabl',
  'cosmetolog',
  'fianc',
  'famili',
  'apolog',
  'also',
  'decid',
  'pay',
  'small',
  'wed',
  'ceremoni',
  'recept',
  'gift'],
 ['contempl',
  'whether',
  'post',
  'im',
  'curiou',
  'im',
  'half',
  'brother',
  'ethan',
  'mother',
  'marri',
  'new',
  'husband',
  'kid',
  'ethan',
  'father',
  'life',
  'stay',
  'full',
  'time',
  'spend',
  'time',
  'dad',
  'famili',
  'get',
  'along',
  'better',
  'love',
  'mom',
  'bit',
  'much',
  'sometim',
  'rare',
  'see',
  'ethan',
  'text',
  'occasion',
  'mother',
  'birthday',
  'day',
  'ago',
  'visit',
  'notic',
  'ethan',
  'newborn',
  'half',
  'sibl',
  'around',
  'ask',
  'mom',
  'said',
  'ask',
  'ethan',
  'check',
  'babi',
  'took',
  'break',
  'backyard',
  'btw',
  'massiv',
  'yeah',
  'ok',
  'biggi',
  'time',
  'later',
  'still',
  'find',
  'went',
  'ethan',
  'room',
  'rock',
  'babi',
  'inconsol',
  'cri',
  'stop',
  'diaper',
  'babi',
  'formula',
  'everywher',
  'say',
  'tri',
  'everyth',
  'stop',
  'manag',
  'calm',
  'somehow',
  'ask',
  'ethan',
  'call',
  'someon',
  'help',
  'said',
  'usual',
  'realli',
  'good',
  'mom',
  'make',
  'take',
  'care',
  'babi',
  'time',
  'panick',
  'told',
  'help',
  'half',
  'sister',
  'babi',
  'well',
  'still',
  'take',
  'care',
  'realli',
  'upset',
  'mean',
  'ye',
  'noth',
  'wrong',
  'need',
  'break',
  'ethan',
  'year',
  'old',
  'boy',
  'father',
  'mother',
  'appar',
  'take',
  'care',
  'half',
  'sibl',
  'mom',
  'step',
  'dad',
  'walk',
  'mom',
  'talk',
  'group',
  'peopl',
  'basic',
  'told',
  'cant',
  'believ',
  'dump',
  'respons',
  'ethan',
  'knew',
  'talk',
  'immedi',
  'told',
  'relax',
  'ethan',
  'like',
  'blah',
  'blah',
  'told',
  'blast',
  'son',
  'sob',
  'room',
  'overwhelm',
  'got',
  'realli',
  'red',
  'everyon',
  'went',
  'silent',
  'awkward',
  'yeah',
  'later',
  'got',
  'call',
  'mom',
  'say',
  'respect',
  'opinion',
  'situat',
  'need',
  'publicli',
  'humili',
  'front',
  'friend',
  'cowork',
  'appar',
  'boss',
  'cold',
  'idk',
  'cant',
  'get',
  'ethan',
  'head',
  'aita'],
 ['daughter',
  'get',
  'marri',
  'fall',
  'het',
  'dad',
  'suppos',
  'pay',
  'wed',
  'agre',
  'got',
  'save',
  'date',
  'invit',
  'day',
  'put',
  'payment',
  'bank',
  'need',
  'approv',
  'money',
  'paid',
  'yet',
  'wife',
  'invit',
  'wed',
  'divorc',
  'year',
  'marri',
  'wife',
  'year',
  'daughter',
  'never',
  'realli',
  'like',
  'wife',
  'get',
  'along',
  'well',
  'two',
  'kid',
  'love',
  'call',
  'daughter',
  'ask',
  'wife',
  'invit',
  'said',
  'wed',
  'day',
  'want',
  'invit',
  'real',
  'famili',
  'said',
  'well',
  'invit',
  'mom',
  'bf',
  'said',
  'ye',
  'said',
  'well',
  'okay',
  'invit',
  'wife',
  'pay',
  'wed',
  'declin',
  'said',
  'invit',
  'wife',
  'told',
  'ill',
  'cancel',
  'payment',
  'believ',
  'cancel',
  'daughter',
  'super',
  'piss',
  'ex',
  'wife',
  'aita',
  'eta',
  'wife',
  'met',
  'year',
  'divorc',
  'eta',
  'daughter',
  'wife',
  'never',
  'got',
  'along',
  'took',
  'mom',
  'side',
  'divorc',
  'relationship',
  'rocki',
  'ever',
  'sinc'],
 ['im',
  'week',
  'pregnant',
  'boyfriend',
  'took',
  'week',
  'work',
  'stay',
  'adjust',
  'parent',
  'newborn',
  'first',
  'im',
  'nervou',
  'realli',
  'need',
  'support',
  'right',
  'boyfriend',
  'mother',
  'took',
  'upon',
  'schedul',
  'patern',
  'vacat',
  'boyfriend',
  'last',
  'two',
  'week',
  'leav',
  'came',
  'dinner',
  'surpris',
  'expens',
  'paid',
  'vacat',
  'itali',
  'boyfriend',
  'patern',
  'present',
  'gave',
  'jade',
  'stone',
  'bracelet',
  'match',
  'newborn',
  'one',
  'babi',
  'part',
  'cultur',
  'give',
  'famili',
  'stone',
  'mother',
  'child',
  'enter',
  'famili',
  'kind',
  'howev',
  'told',
  'leav',
  'help',
  'babi',
  'taken',
  'aback',
  'said',
  'would',
  'week',
  'long',
  'enough',
  'husband',
  'never',
  'even',
  'stay',
  'hospit',
  'son',
  'born',
  'told',
  'boyfriend',
  'want',
  'go',
  'ask',
  'first',
  'buy',
  'extraordinari',
  'gift',
  'left',
  'tear',
  'ungrat',
  'ruin',
  'son',
  'experi',
  'boyfriend',
  'pretti',
  'much',
  'agre',
  'go',
  'atleast',
  'week',
  'paid',
  'realli',
  'want',
  'stay',
  'bond',
  'daughter',
  'aita'],
 ['husband',
  'kevin',
  'got',
  'marri',
  'month',
  'ago',
  'eversinc',
  'move',
  'away',
  'mom',
  'start',
  'call',
  'often',
  'mental',
  'breakdown',
  'heard',
  'move',
  'beg',
  'stay',
  'near',
  'caus',
  'need',
  'though',
  'older',
  'son',
  'anyhow',
  'shed',
  'call',
  'random',
  'time',
  'start',
  'call',
  'middl',
  'night',
  'specif',
  'thought',
  'weird',
  'said',
  'want',
  'hear',
  'kevin',
  'voic',
  'busi',
  'call',
  'day',
  'kevin',
  'respond',
  'call',
  'everi',
  'time',
  'say',
  'worri',
  'might',
  'emergencyit',
  'exhaust',
  'complet',
  'ruin',
  'alon',
  'time',
  'ask',
  'call',
  'like',
  'kept',
  'call',
  'kevin',
  'said',
  'cant',
  'bring',
  'ignor',
  'call',
  'ask',
  'patient',
  'last',
  'night',
  'decid',
  'wait',
  'til',
  'kevin',
  'asleep',
  'put',
  'phone',
  'vibrat',
  'wait',
  'call',
  'oclock',
  'roll',
  'around',
  'phone',
  'start',
  'vibrat',
  'nightstand',
  'stretch',
  'arm',
  'answer',
  'start',
  'make',
  '&',
  'nois',
  'bed',
  'im',
  'talk',
  'full',
  'moan',
  'dirti',
  'talk',
  'moan',
  'second',
  'end',
  'call',
  'kevin',
  'wake',
  'ask',
  'alright',
  'tell',
  'fever',
  'goe',
  'back',
  'sleep',
  'woke',
  'complet',
  'disast',
  'kevin',
  'angerili',
  'ask',
  'wtf',
  'last',
  'night',
  'mom',
  'call',
  'clearli',
  'livid',
  'mortifi',
  'caus',
  'kevin',
  'said',
  'traumat',
  'think',
  '*',
  'call',
  'told',
  'insist',
  'frustrat',
  'said',
  'done',
  'embarrass',
  'made',
  'mom',
  'uncomfort',
  'said',
  'call',
  'said',
  'still',
  'act',
  'childishli',
  'potenti',
  'harm',
  'relationship',
  'wit',
  'told',
  'tell',
  'behind',
  'said',
  'oh',
  'worri',
  'demand',
  'apolog',
  'immedietli',
  'shame',
  'text',
  'made',
  'refus',
  'mightv',
  'went',
  'wrong',
  'way',
  'frustrat',
  'aita'],
 ['sister',
  'anna',
  'marri',
  'friend',
  'lanc',
  'cool',
  'guy',
  'friend',
  'group',
  'handsom',
  'misteri',
  'smart',
  'quiet',
  'know',
  'end',
  'sister',
  'total',
  'opposit',
  'loud',
  'funni',
  'outgo',
  'beauti',
  'tho',
  'realli',
  'beauti',
  'got',
  'togeth',
  'everyon',
  'said',
  'good',
  'look',
  'anna',
  'seem',
  'realli',
  'love',
  'time',
  'use',
  'say',
  'dreami',
  'good',
  'treat',
  'spoil',
  'felt',
  'lanc',
  'alway',
  'stern',
  'quiet',
  'would',
  'revolv',
  'around',
  'famili',
  'gather',
  'engag',
  'much',
  'everyon',
  'surpris',
  'ask',
  'marri',
  'himmi',
  'sister',
  'never',
  'took',
  'wifey',
  'role',
  'seriou',
  'non-tradit',
  'wed',
  'lanc',
  'along',
  'made',
  'bunch',
  'rule',
  'agre',
  'move',
  'hous',
  'anna',
  'ban',
  'hous',
  'utensil',
  'wed',
  'gift',
  'list',
  'work',
  'finish',
  'studi',
  'plan',
  'kid',
  'sister',
  'pretti',
  'much',
  'look',
  'think',
  'lanc',
  'care',
  'alway',
  'snapchat',
  'instagram',
  'thought',
  'get',
  'marri',
  'would',
  'dress',
  'appropri',
  'sinc',
  'use',
  'use',
  'crop',
  'top',
  'blous',
  'dress',
  'shirt',
  'show',
  'cleavag',
  'short',
  'skirt',
  'tight',
  'jean',
  'say',
  'lanc',
  'like',
  'fine',
  'last',
  'week',
  'dad',
  'birthday',
  'parti',
  'sister',
  'lanc',
  'came',
  'wear',
  'pretti',
  'short',
  'floral',
  'dress',
  'nonetheless',
  'men',
  'look',
  'includ',
  'dad',
  'friend',
  'lanc',
  'stoic',
  'alway',
  'sister',
  'came',
  'mom',
  'say',
  'know',
  'quiet',
  'sinc',
  'like',
  'like',
  'wtf',
  'told',
  'dress',
  'like',
  'might',
  'take',
  'serious',
  'got',
  'sad',
  'sat',
  'quietli',
  'rest',
  'night',
  'think',
  'much',
  'day',
  'ago',
  'lanc',
  'text',
  'said',
  'would',
  'appreci',
  'comment',
  'wife',
  'way',
  'dress',
  'miss',
  'someth',
  'im',
  'love'],
 ['wife',
  'horribl',
  'habit',
  'discov',
  'month',
  'ago',
  'order',
  'lunch',
  'subway',
  'app',
  'told',
  'pick',
  'locat',
  'drive',
  'thru',
  'way',
  'go',
  'insid',
  'take',
  'babi',
  'car',
  'clip',
  'back',
  'minut',
  'later',
  'told',
  'big',
  'deal',
  'leav',
  'babi',
  'car',
  'run',
  'pick',
  'realli',
  'fast',
  'idea',
  'ever',
  'told',
  'comfort',
  'leav',
  'car',
  'alon',
  'even',
  'minut',
  'told',
  'sinc',
  'born',
  'alway',
  'fine',
  'told',
  'pick',
  'food',
  'run',
  'post',
  'offic',
  'pharmaci',
  'etc',
  'floor',
  'live',
  'horribl',
  'area',
  'also',
  'super',
  'safe',
  'either',
  'told',
  'ever',
  'told',
  'never',
  'stop',
  'think',
  'potenti',
  'danger',
  'would',
  'stop',
  'well',
  'yesterday',
  'drive',
  'home',
  'brother',
  'hous',
  'spot',
  'car',
  'ga',
  'station',
  'near',
  'place',
  'park',
  'spot',
  'front',
  'pump',
  'figur',
  'stop',
  'grab',
  'snack',
  'like',
  'decid',
  'stop',
  'go',
  'say',
  'get',
  'food',
  'pull',
  'park',
  'next',
  'howev',
  'got',
  'furiou',
  'find',
  'son',
  'car',
  'seat',
  'car',
  'even',
  'lock',
  'know',
  'came',
  'moment',
  'decid',
  'take',
  'son',
  'put',
  'car',
  'got',
  'car',
  'seat',
  'drove',
  'side',
  'ga',
  'station',
  'park',
  'lot',
  'wait',
  'wife',
  'come',
  'took',
  'six',
  'minut',
  'appear',
  'saw',
  'gone',
  'look',
  'stun',
  'second',
  'start',
  'frantic',
  'look',
  'around',
  'cri',
  'let',
  'go',
  'long',
  'saw',
  'pull',
  'phone',
  'presum',
  'call',
  'pull',
  'car',
  'around',
  'park',
  'got',
  'walk',
  'around',
  'son',
  'door',
  'open',
  'show',
  'look',
  'extrem',
  'reliev',
  'quickli',
  'turn',
  'anger',
  'ask',
  'took',
  'told',
  'need',
  'learn',
  'lesson',
  'promis',
  'stop',
  'leav',
  'car',
  'extrem',
  'irrespons',
  'easi',
  'pull',
  'take',
  'one',
  'els',
  'ga',
  'station',
  'even',
  'notic',
  'realli',
  'taken',
  'wouldv',
  'help',
  'wouldv',
  '%',
  'fault',
  'proceed',
  'call',
  'cruel',
  'psychot',
  'tri',
  'take',
  'son',
  'car',
  'said',
  'would',
  'drive',
  'home',
  'left',
  'came',
  'home',
  'much',
  'later',
  'ignor',
  'rest',
  'day',
  'acknowledg',
  'today',
  'say',
  'want',
  'apolog',
  'said',
  'absolut',
  'one',
  'say',
  'sorri',
  'guilt',
  'trip',
  'rest',
  'day',
  'say',
  'mother',
  'experi',
  'fear',
  'put',
  'go',
  'far',
  'aita',
  'edit',
  'pleas',
  'check',
  'comment',
  'updat',
  'cant',
  'add',
  'due',
  'charact',
  'limit'],
 ['son',
  'month',
  'old',
  'toddler',
  'wife',
  'stay-at-hom',
  'mom',
  'work',
  'six',
  'day',
  'week',
  'im',
  'usual',
  'gone',
  'twelv',
  'hour',
  'day',
  'alway',
  'check',
  'son',
  'remot',
  'via',
  'nurseri',
  'cam',
  'app',
  'alway',
  'awak',
  'morn',
  'around',
  'great',
  'sleep',
  'routin',
  'wind',
  'time',
  'start',
  'time',
  'everi',
  'even',
  'clean',
  'toy',
  'read',
  'book',
  'lay',
  'still',
  'awak',
  'fall',
  'asleep',
  'sleep',
  'night',
  'least',
  'twelv',
  'hour',
  'usual',
  'chanc',
  'check',
  'camera',
  'morn',
  'check',
  'morn',
  'closer',
  'everi',
  'time',
  'look',
  'though',
  'awak',
  'dark',
  'stand',
  'crib',
  'wait',
  'see',
  'immedi',
  'turn',
  'brightest',
  'night',
  'light',
  'camera',
  'speak',
  'camera',
  'app',
  'alway',
  'tell',
  'good',
  'morn',
  'love',
  'usual',
  'laugh',
  'say',
  'dada',
  'leav',
  'app',
  'call',
  'wife',
  'wake',
  'usual',
  'call',
  'three',
  'four',
  'time',
  'final',
  'answer',
  'obviou',
  'woke',
  'call',
  'tell',
  'son',
  'awak',
  'wait',
  'need',
  'get',
  'start',
  'day',
  'morn',
  'phone',
  'ask',
  'go',
  'get',
  'use',
  'bathroom',
  'said',
  'go',
  'kitchen',
  'prepar',
  'breakfast',
  'shed',
  'get',
  'ask',
  'get',
  'bathroom',
  'could',
  'go',
  'kitchen',
  'flip',
  'told',
  'piss',
  'call',
  'everi',
  'morn',
  'tell',
  'mom',
  'routin',
  'retort',
  'well',
  'routin',
  'suck',
  'awak',
  'hour',
  'still',
  'asleep',
  'call',
  'bother',
  'wait',
  'long',
  'need',
  'diaper',
  'chang',
  'probabl',
  'thirsti',
  'hungri',
  'want',
  'play',
  'wrong',
  'though',
  'need',
  'stop',
  'pleas',
  'complet',
  'honest',
  'answer',
  'thank',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'ban',
  'comment',
  'within',
  'first',
  'hour',
  'violat',
  'rule',
  'comment',
  'respond',
  'anyon',
  'im',
  'fairli',
  'new',
  'reddit',
  'user',
  'term',
  'post',
  '-',
  'normal',
  'read',
  'lot',
  '-',
  'clue',
  'temporari',
  'comment',
  'ban',
  'affect',
  'abil',
  'edit',
  'post',
  'would',
  'edit',
  'post',
  'much',
  'sooner',
  'known',
  'abl',
  'regardless',
  'comment',
  'ban',
  'mani',
  'thing',
  'need',
  'address',
  'post',
  'import',
  'one',
  'wife',
  'love',
  'anyon',
  'reddit',
  'think',
  'amaz',
  'woman',
  'wonder',
  'mother',
  'absolut',
  'think',
  'incompet',
  'parent',
  'think',
  'neglect',
  'son',
  'none',
  'inform',
  'provid',
  'ever',
  'suppos',
  'convey',
  'neg',
  'messag',
  'whole',
  'issu',
  'awak',
  'awak',
  'still',
  'asleep',
  '-',
  'agre',
  'stay',
  'late',
  'plu',
  'alarm',
  'set',
  'show',
  'wife',
  'post',
  'explod',
  'could',
  'believ',
  'kind',
  'attent',
  'got',
  'much',
  'love',
  'agre',
  'control',
  'believ',
  'micromanag',
  'daili',
  'life',
  'also',
  'mani',
  'peopl',
  'believ',
  'intent',
  'left',
  'medic',
  'issu',
  'ill',
  'list',
  '-',
  'postpartum',
  'depress',
  '-',
  'low',
  'vitamin',
  '-',
  '-',
  'chronic',
  'fatigu',
  'let',
  'explain',
  'list',
  'origin',
  'low',
  'vitamin',
  '-',
  'defici',
  'level',
  'lower',
  'consid',
  'best',
  'age',
  'accord',
  'recent',
  'bloodwork',
  'recommend',
  'result',
  'state',
  'number',
  'pgml',
  'pgml',
  'within',
  'normal',
  'rang',
  'level',
  'pgml',
  'doctor',
  'suggest',
  'sublingu',
  '-',
  'mcg',
  'daili',
  'rais',
  'level',
  'littl',
  'state',
  'apart',
  'could',
  'find',
  'reason',
  'chronic',
  'fatigu',
  'result',
  'especi',
  'purchas',
  'supplement',
  'mind',
  '-',
  'problem',
  'also',
  'bloodwork',
  'confirm',
  'everyth',
  'els',
  'normal',
  'postpartum',
  'depress',
  'activ',
  'monitor',
  'treat',
  'profession',
  'wife',
  'liter',
  'goe',
  'psychiatrist',
  'psychologist',
  'cant',
  'rememb',
  'exact',
  'titl',
  'multipl',
  'time',
  'year',
  'pay',
  'medic',
  'everi',
  'day',
  'initi',
  'tri',
  'depress',
  'medic',
  'follow',
  'regimen',
  'religi',
  'much',
  'chang',
  'address',
  'follow',
  'appoint',
  'new',
  'medic',
  'prescrib',
  'current',
  'medic',
  'normal',
  'use',
  'treat',
  'adhd',
  'narcolepsi',
  'doctor',
  'believ',
  'would',
  'allevi',
  'tired',
  'releas',
  'dopamin',
  'thu',
  'provid',
  'energi',
  'daili',
  'life',
  'seem',
  'true',
  'seem',
  'happi',
  'medicin',
  'chronic',
  'fatigu',
  'result',
  'poor',
  'schedul',
  'person',
  'health',
  'agre',
  'spend',
  'much',
  'time',
  'sit',
  'use',
  'phone',
  'nap',
  'son',
  'nap',
  'troubl',
  'fall',
  'asleep',
  'normal',
  'bedtim',
  'hour',
  'due',
  'daytim',
  'sleep',
  'alway',
  'go',
  'bed',
  'togeth',
  'told',
  'multipl',
  'time',
  'move',
  'live',
  'room',
  'fell',
  'asleep',
  'sleep',
  'bore',
  'lie',
  'midnight',
  'later',
  'come',
  'final',
  'drowsi',
  'decid',
  'sleep',
  'howev',
  'overstimul',
  'social',
  'media',
  'phone',
  'usag',
  'make',
  'difficult',
  'brain',
  'reach',
  'rem',
  'sleep',
  'normal',
  'fall',
  'asleep',
  'son',
  'wake',
  'eight',
  'hour',
  'pass',
  'still',
  'feel',
  'tire',
  'rest',
  'know',
  'known',
  'condit',
  'agre',
  'disagre',
  'caus',
  'sleep',
  'problem',
  'mind',
  'chronic',
  'fatigu',
  'insomnia',
  'viciou',
  'cycl',
  'mind',
  'stay',
  'late',
  'phone',
  'get',
  'sleep',
  'bodi',
  'need',
  'whether',
  'internet',
  'think',
  'bad',
  'mother',
  'neglig',
  'lazi',
  'abus',
  'import',
  'know',
  'love',
  'woman',
  'marri',
  'feel',
  'comfort',
  'leav',
  'kid',
  'amaz',
  'job',
  'comment',
  'state',
  'lazi',
  'much',
  'home',
  'deni',
  'statement',
  'moment',
  'still',
  'aggrav',
  'argument',
  'phone',
  'recent',
  'end',
  'truli',
  'think',
  'lazi',
  'ive',
  'seen',
  'think',
  'unmotiv',
  'due',
  'lack',
  'sleep',
  'four',
  'wall',
  'everi',
  'day',
  'final',
  'spi',
  'son',
  'two',
  'camera',
  'hous',
  'son',
  'room',
  'one',
  'camera',
  'provid',
  'wide-angl',
  'view',
  'entir',
  'room',
  'posit',
  'directli',
  'crib',
  'camera',
  'serv',
  'purpos',
  'day',
  'id',
  'bare',
  'abl',
  'hear',
  'background',
  'nois',
  'anoth',
  'room',
  'even',
  'tri',
  'listen',
  'wife',
  'amaz',
  'woman',
  'amaz',
  'mother',
  'son',
  'happi',
  'time',
  'super',
  'smart',
  'full',
  'energi',
  'extrem',
  'healthi',
  'hire',
  'nanni',
  'use',
  'daycar',
  'absolut',
  'noth',
  'wrong',
  'wife',
  'day',
  'wish',
  'shed',
  'start',
  'day',
  'earlier',
  'littl',
  'man',
  'want',
  'say',
  'thank',
  'everyon',
  'comment',
  'post',
  'messag',
  'wife',
  'long',
  'in-depth',
  'convers',
  'last',
  'night',
  'attent',
  'post',
  'receiv',
  'ive',
  'shown',
  'everyth',
  'tear',
  'much',
  'laugh',
  'lot',
  'thing',
  'think',
  'think',
  'import',
  'thing',
  'learn',
  'mani',
  'peopl',
  'quick',
  'judg',
  'big',
  'problem',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'need',
  'make',
  'clear',
  'wife',
  'narcolepsi',
  'take',
  'medicin',
  'narcolepsi',
  'said',
  'medicin',
  'take',
  'usual',
  'use',
  'treat',
  'narcolepsi',
  'adhd',
  'also',
  'adhd',
  'second',
  'thing',
  'learn',
  'peopl',
  'love',
  'add',
  'detail',
  'chang',
  'stori'],
 ['husband',
  'best',
  'friend',
  'jacob',
  'move',
  'us',
  'quiet',
  'make',
  'mess',
  'around',
  'hous',
  'like',
  'bil',
  'use',
  'live',
  'us',
  'howev',
  'jacob',
  'habit',
  'walk',
  'bedroom',
  'randomli',
  'take',
  'stuff',
  'husband',
  'closet',
  'say',
  'watch',
  'shirt',
  'frequent',
  'gotten',
  'increasingli',
  'annoy',
  'felt',
  'like',
  'privaci',
  'violat',
  'im',
  'privat',
  'person',
  'id',
  'like',
  'quiet',
  'time',
  'read',
  'mediat',
  'tri',
  'speak',
  'issu',
  'got',
  'brush',
  'last',
  'week',
  'jacob',
  'barg',
  'pm',
  'interrupt',
  'sleep',
  'sleep',
  'depriv',
  'whole',
  'day',
  'work',
  'got',
  'fed',
  'decid',
  'start',
  'sleep',
  'top',
  'bed',
  'full',
  'nake',
  'whenev',
  'im',
  'last',
  'night',
  'jacob',
  'walk',
  'pm',
  'saw',
  'let',
  'loud',
  'shiiiiit',
  'quickli',
  'turn',
  'around',
  'rush',
  'start',
  'hear',
  'commot',
  'outsid',
  'got',
  'dress',
  'see',
  'go',
  'met',
  'lot',
  'yell',
  'scold',
  'shame',
  'husband',
  'say',
  'line',
  'expos',
  'brother',
  'horrend',
  'sight',
  'ask',
  'meant',
  'yell',
  'stop',
  'act',
  'dumb',
  'said',
  'felt',
  'frusrtrat',
  'privaci',
  'got',
  'violat',
  'went',
  'jacob',
  'grab',
  'someth',
  'liter',
  'take',
  'second',
  'went',
  'made',
  'uncomfort',
  'describ',
  'behavior',
  'sl',
  '@',
  'tti',
  'argument',
  'got',
  'heat',
  'told',
  'start',
  'put',
  'decent',
  'cloth',
  'act',
  'like',
  'ladi',
  'instead',
  'sl',
  '$',
  'sinc',
  'room',
  'alreadi',
  'gave',
  'permiss',
  'got',
  'mad',
  'told',
  'loudli',
  'keep',
  'sleep',
  'bed',
  'nake',
  'long',
  'friend',
  'keep',
  'walk',
  'inti',
  'room',
  'walk',
  'stop',
  'complain',
  'complain',
  'say',
  'im',
  'ridicul',
  'even',
  'suggest',
  'attempt',
  'make',
  'jacob',
  'move',
  'aita',
  'still',
  'argu',
  'til',
  'morn',
  '*',
  'edit',
  '*',
  'said',
  'call',
  'word',
  'directli',
  'said',
  'compar',
  'behavior',
  'sl',
  '&'],
 ['daughter',
  'recent',
  'vacat',
  'spent',
  'day',
  'area',
  'known',
  'lot',
  'richfam',
  'peopl',
  'toward',
  'end',
  'day',
  'saw',
  'one',
  'daughter',
  'favorit',
  'celebr',
  'well',
  'call',
  'walk',
  'store',
  'daughter',
  'ran',
  'store',
  'got',
  'near',
  'stop',
  'secur',
  'said',
  'daughter',
  'daughter',
  'birthday',
  'want',
  'focu',
  'daughter',
  'daughter',
  'upset',
  'fan',
  'long',
  'time',
  'tri',
  'pictur',
  'turn',
  'away',
  'daughter',
  'crush',
  'later',
  'night',
  'made',
  'post',
  'talk',
  'experi',
  'let',
  'anyon',
  'go',
  'near',
  'daughter',
  'fact',
  'secur',
  'rude',
  'stop',
  'coupl',
  'second',
  'pictur',
  'understand',
  'daughter',
  'birthday',
  'minut',
  'interact',
  'fan',
  'go',
  'ruin',
  'day',
  'girl',
  'need',
  'learn',
  'world',
  'revolv',
  'around',
  'post',
  'end',
  'get',
  'lot',
  'attent',
  'lot',
  'peopl',
  'actual',
  'said',
  'daughter',
  'entitl',
  'expect',
  'interrupt',
  'daughter',
  'birthday',
  'everyon',
  'want',
  'pictur',
  'husband',
  'also',
  'saw',
  'post',
  'said',
  'believ',
  'would',
  'bash',
  'tri',
  'spend',
  'day',
  'daughter',
  'im',
  'tri',
  'bash',
  'spend',
  'day',
  'daughter',
  'without',
  'fan',
  'think',
  'least',
  'owe',
  'take',
  'pictur',
  'aita',
  'make',
  'post'],
 ['okay',
  'older',
  'brother',
  'well',
  'call',
  'jami',
  'weve',
  'roommat',
  'sinc',
  'time',
  'ive',
  'seen',
  'lot',
  'girl',
  'come',
  'go',
  'even',
  'relationship',
  'differ',
  'girl',
  'im',
  'huge',
  'fan',
  'action',
  'treat',
  'women',
  'gener',
  'life',
  'free',
  'mess',
  'much',
  'want',
  'turn',
  'blind',
  'eye',
  'four',
  'kid',
  'oldest',
  'daughter',
  'one',
  'actual',
  'pay',
  'child',
  'support',
  'rare',
  'see',
  'two',
  'twin',
  'boy',
  'one',
  'close',
  'friend',
  'take',
  'court',
  'best',
  'provid',
  'need',
  'help',
  'son',
  'realli',
  'know',
  'much',
  'think',
  'around',
  'want',
  'kid',
  'see',
  'mayb',
  'hand',
  'time',
  'around',
  'year',
  'see',
  'year',
  'old',
  'son',
  'call',
  'one',
  'accid',
  'said',
  'wish',
  'get',
  'irrit',
  'mother',
  'call',
  'essenti',
  'happen',
  'year',
  'ago',
  'jami',
  'met',
  'girl',
  'name',
  'natali',
  'immedi',
  'hit',
  'move',
  'apart',
  'like',
  'well',
  'enough',
  'habit',
  'expect',
  'last',
  'long',
  'surpris',
  'us',
  'sinc',
  'plan',
  'move',
  'month',
  'shed',
  'talk',
  'renov',
  'room',
  'sort',
  'stuff',
  'could',
  'space',
  'even',
  'laughingli',
  'said',
  'mayb',
  'could',
  'nurseri',
  'thought',
  'joke',
  'brush',
  'well',
  'coupl',
  'week',
  'ago',
  'dinner',
  'friend',
  'decor',
  'apart',
  'propos',
  'congratul',
  'problem',
  'night',
  'ago',
  'drink',
  'talk',
  'natali',
  'gush',
  'plan',
  'wed',
  'bridesmaid',
  'new',
  'ring',
  'went',
  'wrong',
  'mention',
  'want',
  'kid',
  'soon',
  'could',
  'could',
  'see',
  'brother',
  'best',
  'dad',
  'start',
  'laugh',
  'basic',
  'said',
  'best',
  'dad',
  'four',
  'ask',
  'meant',
  'brother',
  'start',
  'freak',
  'realiz',
  'know',
  'explain',
  'rais',
  'kid',
  'even',
  'want',
  'see',
  'want',
  'kid',
  'appar',
  'told',
  'brother',
  'drunk',
  'start',
  'yell',
  'call',
  'friend',
  'left',
  'stay',
  'away',
  'day',
  'two',
  'blew',
  'phone',
  'guess',
  'natali',
  'fight',
  'horribl',
  'blame',
  'ruin',
  'engag',
  'im',
  'ah',
  'tell',
  'choic',
  'tell',
  'kid',
  'parent',
  'agre',
  'talk',
  'honeslti',
  'feel',
  'like',
  'warn',
  'thing',
  'got',
  'seriou',
  'even',
  'deliber',
  'told',
  'aita'],
 ['husband',
  'recent',
  'move',
  'back',
  'hometown',
  'bought',
  'hous',
  'near',
  'parent',
  'decid',
  'host',
  'famili',
  'dinner',
  'cook',
  'dish',
  'includ',
  'french',
  'onion',
  'soup',
  'soup',
  'hit',
  'mom',
  'ask',
  'recip',
  'jokingli',
  'said',
  'secret',
  'ingredi',
  'tear',
  'onion',
  'mom',
  'stop',
  'eat',
  'stare',
  'tri',
  'eas',
  'tension',
  'explain',
  'joke',
  'respond',
  'minut',
  'got',
  'left',
  'knew',
  'strict',
  'know',
  'food',
  'came',
  'make',
  'sure',
  'theyr',
  'organ',
  'non-gmo',
  'actual',
  'went',
  'groceri',
  'shop',
  'dinner',
  'reassur',
  'realiz',
  'obviou',
  'onion',
  'joke',
  'would',
  'set',
  'husband',
  'tri',
  'get',
  'talk',
  'refus',
  'aita'],
 ['agre',
  'watch',
  'friend',
  'child',
  'overnight',
  'dad',
  'medic',
  'emerg',
  'expect',
  'shed',
  'hour',
  'hospit',
  'dad',
  'fell',
  'coma',
  'ask',
  'okay',
  'son',
  'stay',
  'overnight',
  'cours',
  'said',
  'ye',
  'next',
  'even',
  'came',
  'pick',
  'livid',
  'bath',
  'although',
  'mean',
  'filthi',
  'littl',
  'sweati',
  'mayb',
  'upset',
  'routin',
  'thing',
  'son',
  'autist',
  'terrifi',
  'shower',
  'bathtub',
  'time',
  'know',
  'terror',
  'shower',
  'id',
  'babysat',
  'left',
  'direct',
  'fill',
  'tub',
  'without',
  'bathroom',
  'even',
  'trigger',
  'opt',
  'clean',
  'babi',
  'wipe',
  'warm',
  'washcloth',
  'cooper',
  'put',
  'car',
  'seat',
  'return',
  'hous',
  'say',
  'id',
  'mess',
  'bedtim',
  'routin',
  'believ',
  'id',
  'send',
  'son',
  'home',
  'dirti',
  'thought',
  'better',
  'friend',
  'need',
  'sensit',
  'need',
  'autist',
  'kid',
  'post',
  'rant',
  'social',
  'media',
  'arriv',
  'home',
  'thought',
  'time',
  'togeth',
  'gone',
  'well-',
  'cri',
  'fifteen',
  'minut',
  'drop-off',
  'watch',
  'favorit',
  'show',
  'ate',
  'snack',
  'put',
  'bed',
  'morn',
  'woke',
  'ask',
  'tear',
  'breakfast',
  'lunch',
  'eaten',
  'play',
  'sign',
  'languag',
  'game',
  'cuddl',
  'cat',
  'wipe',
  'clean',
  'could',
  'aita',
  'press',
  'shower',
  'issu',
  'admittedli',
  'limit',
  'experi',
  'autism',
  'person',
  'know',
  'diagnos',
  'base',
  'prior',
  'instruct',
  'felt',
  'best',
  'could',
  'circumst'],
 ['*',
  '*',
  'final',
  'update-',
  '*',
  '*',
  'updat',
  'ive',
  'comment',
  'messag',
  'ask',
  'updat',
  'pretti',
  'anticlimact',
  'suggest',
  'cash',
  'key',
  'idea',
  'talk',
  'lawyer',
  'everyth',
  'board',
  'talk',
  'tenant',
  'offer',
  'cash',
  'leav',
  'without',
  'damag',
  'would',
  'cash',
  'damag',
  'wear',
  'tear',
  'home',
  'april',
  'present',
  'agre',
  'negoti',
  'came',
  'sum',
  'work',
  'parti',
  'date',
  'novemb',
  'th',
  'use',
  'cash',
  'add',
  'current',
  'save',
  'payment',
  'contract',
  'us',
  'sign',
  'rather',
  'unev',
  '-',
  '*',
  '*',
  'edit-',
  'sent',
  'husband',
  'told',
  'april',
  'instal',
  'new',
  'hot',
  'water',
  'tank',
  'told',
  'well',
  'dad',
  'wed',
  'like',
  'give',
  'notic',
  'summer',
  '*',
  '*',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'seem',
  'month',
  'enough',
  'notic',
  'sent',
  'email',
  'give',
  'addit',
  'month',
  'bring',
  'month',
  'notic',
  'son',
  'year',
  'old',
  'born',
  'bought',
  'second',
  'home',
  'alway',
  'intent',
  'gift',
  'adult',
  'modest',
  'home',
  'bedroom',
  'bungalow',
  'develop',
  'basement',
  'addit',
  'room',
  'minut',
  'live',
  'bought',
  'list',
  'rent',
  'love',
  'coupl',
  'start',
  'rent',
  'went',
  'children',
  'chose',
  'move',
  'continu',
  'live',
  'bedroom',
  'home',
  'kid',
  'dad',
  'work',
  'mom',
  'stay',
  'home',
  'import',
  'note',
  'bought',
  'home',
  'even',
  'year',
  'mortgag',
  'mortgag',
  'quit',
  'low',
  'rent',
  'much',
  'mortgag',
  'weve',
  'rais',
  'rent',
  'time',
  'year',
  'live',
  'rent',
  'still',
  'well',
  'averag',
  'area-',
  'look',
  'averag',
  'rent',
  'similar',
  'hous',
  '-month',
  'renter',
  'pay',
  'month',
  'start',
  'rent',
  'talk',
  'tell',
  'hous',
  'eventu',
  'son',
  'never',
  'actual',
  'expect',
  'renter',
  'year',
  'son',
  'graduat',
  'univers',
  'june',
  'stay',
  'us',
  'sinc',
  'respons',
  'young',
  'man',
  'decid',
  'christma',
  'would',
  'good',
  'time',
  'gift',
  'home',
  'begin',
  'septemb',
  'talk',
  'tenant',
  'gave',
  'month',
  'elect',
  'notic',
  'figur',
  'wed',
  'novemberdecemb',
  'get',
  'hous',
  'clean',
  'repair',
  'done',
  'understand',
  'happi',
  'post',
  'social',
  'media',
  'bad',
  'peopl',
  'kick',
  'cant',
  'afford',
  'rent',
  'anyth',
  'big',
  'enough',
  'famili',
  'oldest',
  'kid',
  'even',
  'found',
  'son',
  'facebook',
  'sent',
  'horribl',
  'messag',
  'idea',
  'plan',
  'gift',
  'facebook',
  'post',
  'share',
  'local',
  'commun',
  'group',
  'everyon',
  'comment',
  'evil',
  'landlord',
  'aita',
  'evict',
  'long',
  'term',
  'tenant',
  'son',
  'move',
  'edit',
  'add',
  'mention',
  'gift',
  'hous',
  'son',
  'start',
  'univers',
  'told',
  'move',
  'start',
  'uni',
  'edit',
  'legal',
  'evict',
  'notic',
  'also',
  'break',
  'leas',
  'year',
  'ago',
  'decid',
  'renew',
  'thought',
  'might',
  'buy',
  'soon',
  'move',
  'month',
  'month',
  'leas'],
 ['fianc',
  '&',
  'togeth',
  'year',
  'big',
  'famili',
  'dad',
  'older',
  'sister',
  'dad',
  'alway',
  'singl',
  'parent',
  'devot',
  'life',
  'sister',
  'work',
  '+',
  'job',
  'past',
  'year',
  'provid',
  'us',
  'love',
  'dad',
  'best',
  'relationship',
  'anyon',
  'could',
  'hope',
  'howev',
  'fianc',
  'get',
  'along',
  'differ',
  'opinion',
  'mani',
  'thing',
  'exampl',
  'fianc',
  'one',
  'time',
  'suggest',
  'dad',
  'sell',
  'truck',
  'sit',
  'year',
  'dad',
  'got',
  'offend',
  'grandfath',
  'truck',
  'monrg',
  'get',
  'fix',
  'anoth',
  'exampl',
  'fianc',
  'got',
  'mad',
  'dad',
  'parti',
  'talk',
  'struggl',
  'mom',
  'death',
  'accus',
  'collect',
  'symapthi',
  'point',
  'dad',
  'said',
  'alway',
  'talk',
  'casual',
  'recent',
  'disagr',
  'dad',
  'refus',
  'give',
  'fianc',
  'money',
  'contribut',
  'wed',
  'fianc',
  'complain',
  'said',
  'dad',
  'oblig',
  'pay',
  'wed',
  'yesterday',
  'fianc',
  'told',
  'look',
  'someon',
  'els',
  'walk',
  'aisl',
  'ask',
  'said',
  'dad',
  'refus',
  'help',
  'wed',
  'grate',
  'still',
  'invit',
  'got',
  'upset',
  'argu',
  'one',
  'dad',
  'refus',
  'contribut',
  'money',
  'offord',
  'pay',
  'two',
  'like',
  'bride',
  'want',
  'dad',
  'walk',
  'aisl',
  'wed',
  'day',
  'threw',
  'fit',
  'say',
  'tri',
  'ruin',
  'mood',
  'get',
  'upset',
  'wed',
  'day',
  'call',
  'selfish',
  'wabt',
  'take',
  'away',
  'moment',
  'alway',
  'dream',
  'sound',
  'cliché',
  'im',
  'like',
  'disagr',
  'dad',
  'fair',
  'given',
  'dad',
  'great',
  'term',
  'yell',
  'call',
  'selfish',
  'although',
  'wed',
  'mine',
  'said',
  'clearli',
  'give',
  'hoot',
  'uncomfort',
  'walk',
  'fume',
  'insist',
  'im',
  'innconsider',
  'project',
  'call',
  'selfish'],
 ['boyfriendm',
  'togeth',
  'year',
  'live',
  'nyc',
  'make',
  '$',
  'kyear',
  'im',
  'studi',
  'master',
  'social',
  'work',
  'incom',
  'right',
  'im',
  'unpaid',
  'yearlong',
  'internship',
  'daysweek',
  'well',
  'class',
  'daysweek',
  'rare',
  'get',
  'paid',
  'internship',
  'social',
  'work',
  'plu',
  'internship',
  'mandatori',
  'spend',
  'hour',
  'everyday',
  'either',
  'work',
  'studi',
  'commut',
  'class',
  'free',
  'day',
  'weekend',
  'time',
  'paid',
  'job',
  'mom',
  'help',
  'financi',
  'pay',
  'metrocard',
  'healthcar',
  'expens',
  'everyth',
  'els',
  'reli',
  'loan',
  'move',
  'boyfriend',
  'roach',
  'infest',
  'apart',
  'id',
  'stay',
  'place',
  'lot',
  'leas',
  'end',
  'soon',
  'ask',
  'want',
  'live',
  'first',
  'joke',
  'live',
  'standard',
  'would',
  'go',
  'sinc',
  'cant',
  'afford',
  'nice',
  'place',
  'insist',
  'pay',
  'rent',
  'finish',
  'grad',
  'school',
  'would',
  'split',
  'rent',
  'base',
  'incom',
  'origin',
  'want',
  'live',
  'cheaper',
  'place',
  'queen',
  'brooklyn',
  'boyfriend',
  'like',
  'current',
  'place',
  'insist',
  'move',
  'sinc',
  'would',
  'one',
  'pay',
  'rent',
  'move',
  '$',
  'kmonth',
  'luxuri',
  'condo',
  'citi',
  'august',
  'sudden',
  'boyfriend',
  'recent',
  'start',
  'ask',
  'pay',
  'half',
  'rent',
  '$',
  'kmonth',
  'confus',
  'one',
  'want',
  'pay',
  'rent',
  'full',
  'appar',
  'talk',
  'friend',
  'think',
  'weird',
  'pay',
  'rent',
  'gold',
  'digger',
  'let',
  'boyfriend',
  'know',
  'cant',
  'afford',
  '$',
  'kmonth',
  'said',
  'leech',
  'told',
  'find',
  'someon',
  'within',
  'social',
  'class',
  'worri',
  'gold',
  'digger',
  'like',
  'leech',
  'stay',
  'friend',
  'place',
  'day',
  'figur',
  'call',
  'mom',
  'situat',
  'help',
  'maximum',
  'afford',
  'rent',
  '$',
  'found',
  'place',
  'queen',
  'within',
  'price',
  'rang',
  'less',
  'min',
  'away',
  'citi',
  'bu',
  'ride',
  'away',
  'school',
  'went',
  'check',
  'coupl',
  'day',
  'ago',
  'ive',
  'text',
  'landlord',
  'new',
  'roommat',
  'alreadi',
  'sign',
  'leas',
  'told',
  'boyfriend',
  'new',
  'place',
  'got',
  'upset',
  'ask',
  'stay',
  'said',
  'accept',
  '$',
  'month',
  'instead',
  '$',
  'kmonth',
  'afford',
  'told',
  'want',
  'chang',
  'mind',
  'demand',
  'money',
  'futur',
  'live',
  'condo',
  'alon',
  'sever',
  'year',
  'like',
  'cant',
  'afford',
  'live',
  'without',
  'help',
  'mind',
  'split',
  'rent',
  'would',
  'live',
  'afford',
  'place',
  'outsid',
  'manhattan',
  'like',
  'origin',
  'want',
  'appar',
  'mutual',
  'friend',
  'think',
  'im',
  'unreason',
  'move',
  'instead',
  'talk',
  'stay',
  'pay',
  'amount',
  'afford',
  'rent',
  'let',
  'pay',
  'portion',
  'rent',
  'updat',
  'ye',
  'dump',
  'block',
  'idiot',
  'friend',
  'everyth',
  'friend',
  'also',
  'block',
  'sinc',
  'tri',
  'contact',
  'im',
  'go',
  'enjoy',
  'singl',
  'never',
  'reli',
  'man',
  'financi',
  'ever',
  'updat',
  'im',
  'go',
  'make',
  'clarif',
  'sinc',
  'lot',
  'confus',
  'clearli',
  'familiar',
  'nyc',
  'ye',
  'possibl',
  'find',
  'room',
  '$',
  'queen',
  'sever',
  'roommat',
  'room',
  'small',
  'shit',
  'ac',
  'obvious',
  'issu',
  'summer',
  'restaur',
  'mean',
  'ill',
  'probabl',
  'rodent',
  'roomi',
  'current',
  'roommat',
  'told',
  'rat',
  'problem',
  'past',
  'supposedli',
  'fix',
  'howev',
  'know',
  'mutant',
  'citi',
  'rat',
  'know',
  'theyll',
  'come',
  'back',
  'best',
  'im',
  'new',
  'bright',
  'eye',
  'transplant',
  'think',
  'nyc',
  'trendi',
  'rich',
  'part',
  'manhattan',
  'know',
  'look',
  'gener',
  'nyc',
  'landlord',
  'rent',
  'rule',
  'landlord',
  'accept',
  'guarantor',
  'follow',
  'rule',
  'landlord',
  'lenient',
  'come',
  'student',
  'landlord',
  'son',
  'also',
  'alumni',
  'school',
  'im',
  'current',
  'attend',
  'culturalethn',
  'background',
  'probabl',
  'gave',
  'leverag',
  'along',
  'fact',
  'mom',
  'meet',
  'requir',
  'also',
  'took',
  'week',
  'find',
  'current',
  'place',
  'start',
  '-year',
  'msw',
  'program',
  'septemb',
  'finish',
  'undergrad',
  'year',
  'ago',
  'work',
  'full',
  'time',
  'start',
  'master',
  'degre',
  'ye',
  'job',
  'paid',
  'rent',
  '$',
  'month',
  'roach',
  'infest',
  'apart',
  'queen',
  'share',
  'roommat',
  'obvious',
  'time',
  'work',
  'due',
  'schedul',
  'place',
  'rent',
  'stabil',
  'im',
  'confus',
  'came',
  'conclus',
  'cheap',
  'shitti',
  'place',
  'one',
  'want',
  'live',
  'ye',
  'ex',
  'make',
  'much',
  'money',
  'nyc',
  'workforc',
  'year',
  'peopl',
  'make',
  'money',
  'would',
  'whatev',
  'town',
  'especi',
  'field',
  'initi',
  'shock',
  'someon',
  'bachelor',
  'could',
  'earn',
  'much',
  'contribut',
  'absolut',
  'noth',
  'societi',
  'life',
  'charact',
  'limit',
  'hard',
  'includ',
  'everyth',
  'origin',
  'post',
  'got',
  'delet',
  'sinc',
  'exceed',
  'limit',
  'delet',
  'lot',
  'inform',
  'get',
  'post',
  'approv',
  'last',
  'thing',
  'need',
  'right',
  'non',
  'nycer',
  'rest',
  'bumfuck',
  'america',
  'tri',
  'sort',
  'weird',
  'gotcha',
  'moment',
  'think',
  'sex',
  'citi',
  'rich',
  'transplant',
  'social',
  'media',
  'repres',
  'real',
  'nyc'],
 ['context',
  'husband',
  'come',
  'wealthi',
  'famili',
  'inherit',
  'number',
  'asset',
  'rel',
  'one',
  'huge',
  'hous',
  'live',
  'right',
  'pool',
  'huge',
  'backyard',
  'lot',
  'featur',
  'decid',
  'host',
  'first',
  'cookout',
  'got',
  'marri',
  'month',
  'ago',
  'invit',
  'famili',
  'friday',
  'famili',
  'came',
  'lot',
  'fun',
  'everyon',
  'went',
  'home',
  'later',
  'got',
  'phonecal',
  'mom',
  'sound',
  'okay',
  'ask',
  'wether',
  'husband',
  'took',
  'money',
  'famili',
  'attend',
  'cookout',
  'confus',
  'ask',
  'talk',
  'told',
  'husband',
  'charg',
  'everi',
  'singl',
  'person',
  'side',
  'famili',
  'attend',
  'event',
  '$',
  'dollar',
  'utterli',
  'shock',
  'angri',
  'felt',
  'like',
  'legitim',
  'damag',
  'relationship',
  'famili',
  'almost',
  'came',
  'got',
  '$',
  'dollar',
  'livid',
  'hung',
  'phone',
  'confront',
  'immedi',
  'told',
  'famili',
  'got',
  'enjoy',
  'space',
  'view',
  'said',
  'think',
  'resort',
  'cookout',
  'sinc',
  'hous',
  'lot',
  'luxuri',
  'told',
  'horribl',
  'thing',
  'made',
  'wors',
  'fact',
  'famili',
  'pay',
  'like',
  'mine',
  'laugh',
  'remind',
  'famili',
  'gave',
  'hous',
  'demand',
  'give',
  'money',
  'back',
  'said',
  'even',
  'give',
  'sinc',
  'hous',
  'technic',
  'went',
  'took',
  'money',
  'gave',
  'everyon',
  'paid',
  'money',
  'back',
  'sincer',
  'apolog',
  'husband',
  'found',
  'flip',
  'call',
  'overstep',
  'disrespect',
  'told',
  'taken',
  'money',
  'famili',
  'guest',
  'hous',
  'correct',
  'say',
  'hous',
  'said',
  'hed',
  'bet',
  'famili',
  'never',
  'got',
  'attend',
  'cookout',
  'hous',
  'like',
  '$',
  'dollar',
  'disrespect',
  'went',
  'behind',
  'back',
  'took',
  'money',
  'mine',
  'stop',
  'talk',
  'argument',
  'keep',
  'vent',
  'mom',
  'take',
  'money',
  'earn',
  'way'],
 ['femal',
  'black',
  'marri',
  'husband',
  'male',
  'white',
  'weve',
  'marri',
  'year',
  'mil',
  'let',
  'call',
  'lisa',
  'alway',
  'made',
  'sli',
  'comment',
  'ive',
  'tri',
  'ignor',
  'year',
  'one',
  'point',
  'call',
  'hair',
  'nappi',
  'suggest',
  'relax',
  'shut',
  'immedi',
  'one',
  'point',
  'made',
  'comment',
  'asian',
  'cashier',
  'eye',
  'justifi',
  'say',
  'daughter-in-law',
  'black',
  'racist',
  'pregnant',
  'kept',
  'mention',
  'want',
  'daughter',
  'husband',
  'blue',
  'eye',
  'daughter',
  'born',
  'brown',
  'eye',
  'lisa',
  'even',
  'tri',
  'hide',
  'disappoint',
  'son',
  'born',
  'hazel',
  'eye',
  'hair',
  'also',
  'tighter',
  'sister',
  'made',
  'sli',
  'comment',
  'say',
  'cant',
  'best',
  'everyth',
  'insinu',
  'daughter',
  'bless',
  'lighter',
  'skin',
  'looser',
  'hair',
  'son',
  'bless',
  'pretti',
  'eye',
  'ive',
  'bought',
  'concern',
  'husband',
  'brush',
  'told',
  'product',
  'time',
  'week',
  'ago',
  'husband',
  'hold',
  'parti',
  'celebr',
  'year',
  'anniversari',
  'natur',
  'lisa',
  'invit',
  'ask',
  'could',
  'invit',
  'friend',
  'agre',
  'would',
  'bit',
  'bore',
  'year',
  'old',
  'woman',
  'engag',
  'convers',
  'bunch',
  'someth',
  'year',
  'old',
  'anyway',
  'friend',
  'show',
  'introduc',
  'black',
  'daughter-in-law',
  'made',
  'uncomfort',
  'pull',
  'side',
  'told',
  'want',
  'address',
  'shrug',
  'said',
  'daughter',
  'law',
  'black',
  'peopl',
  'sensit',
  'moment',
  'pent',
  'anger',
  'toward',
  'came',
  'flow',
  'rememb',
  'exactli',
  'said',
  'rememb',
  'call',
  'racist',
  'bitch',
  'walk',
  'away',
  'went',
  'kitchen',
  'start',
  'cri',
  'natur',
  'everyon',
  'went',
  'see',
  'commot',
  'told',
  'evil',
  'woman',
  'tri',
  'ruin',
  'relationship',
  'son',
  'grandchildren',
  'told',
  'call',
  'racist',
  'bitch',
  'everyon',
  'parti',
  'becam',
  'hostil',
  'toward',
  'told',
  'went',
  'far',
  'night',
  'husband',
  'got',
  'huge',
  'fight',
  'told',
  'need',
  'apolog',
  'mother',
  'told',
  'would',
  'never',
  'apolog',
  'unless',
  'receiv',
  'apolog',
  'lash',
  'went',
  'stay',
  'mom',
  'hous',
  'asshol'],
 ['sister',
  'get',
  'marri',
  'come',
  'weekend',
  'gone',
  'thursday-sunday',
  'ive',
  'known',
  'go',
  'gone',
  'months…',
  'month',
  'would',
  'even',
  'remind',
  'everi',
  'month',
  'knew',
  'knew',
  'nanni',
  'two',
  'amaz',
  'kid',
  'first',
  'time',
  'ever',
  'ask',
  'time',
  'boss',
  'alway',
  'like',
  'oh',
  'yeah',
  'sure',
  'sound',
  'like',
  'beauti',
  'wed',
  'howev',
  'got',
  'text',
  'hour',
  'ago',
  'say',
  'realli',
  'need',
  'weekend',
  'find',
  'anyon',
  'els',
  'piss',
  'know',
  'act',
  'calm',
  'sinc',
  'ya',
  'know',
  'job',
  'stay',
  'happi',
  'calm',
  'text',
  'back',
  'quick',
  'apolog',
  'said',
  'realli',
  'want',
  'miss',
  'sister',
  'wed',
  'sibl',
  'well',
  'boss',
  'woman',
  'went',
  'deep',
  'end',
  'said',
  'show',
  'watch',
  'kid',
  'weekend',
  'job',
  'come',
  'monday',
  'repli',
  'exactli',
  '______',
  'im',
  'sorri',
  'hard',
  'time',
  'look',
  'someon',
  'cover',
  'reach',
  'nanni',
  'friend',
  'see',
  'would',
  'like',
  'pick',
  'life',
  'time',
  'moment',
  'sister',
  'mean',
  'lose',
  'job',
  'sadli',
  'accept',
  'love',
  'job',
  'kid',
  'hope',
  'work',
  'someth',
  'think',
  'would',
  'devast',
  '_____',
  '_____',
  'need',
  'accept',
  'threw',
  'insult',
  'said',
  'im',
  'abandon',
  'kid',
  'idk',
  'want',
  'get',
  'new',
  'job',
  'work',
  'well',
  'two',
  'kiddo',
  'mom',
  'told',
  'asshol',
  'quickli',
  'accept',
  'might',
  'get',
  'fire',
  'told',
  'work',
  'suck',
  'sometim',
  'suck',
  'mom',
  'say',
  'adult',
  'miss',
  'sister',
  'wedding…',
  'idk',
  'realli',
  'big',
  'ah',
  'say',
  'edit',
  'clarifi',
  'mom',
  'good',
  'relationship',
  'ask',
  'advic',
  'room',
  'sister',
  'vent',
  'sister',
  'would',
  'gone',
  'contact',
  'dad',
  'pleas',
  'stop',
  'talk',
  'lot',
  'trauma',
  'anoth',
  'day',
  'lol'],
 ['got',
  'prestigi',
  'art',
  'show',
  'realli',
  'excit',
  'open',
  'friday',
  'go',
  'parti',
  'tell',
  'famili',
  'want',
  'sister',
  'come',
  'long',
  'stori',
  'short',
  'sister',
  'autist',
  'realli',
  'smart',
  'went',
  'ivi',
  'leagu',
  'school',
  'well',
  'social',
  'cue',
  'usual',
  'lead',
  'belittl',
  'mean',
  'parent',
  'alway',
  'tell',
  'get',
  'sinc',
  'autist',
  'cant',
  'help',
  'unleash',
  'way',
  'unleash',
  'think',
  'realli',
  'understand',
  'everi',
  'time',
  'someth',
  'good',
  'happen',
  'kind',
  'shit',
  'itm',
  'never',
  'ever',
  'apolog',
  'anyhow',
  'parent',
  'found',
  'art',
  'show',
  'got',
  'mad',
  'tell',
  'told',
  'theyll',
  'come',
  'open',
  'sister',
  'sinc',
  'current',
  'live',
  'us',
  'end',
  'break',
  'beg',
  'bring',
  'work',
  'hard',
  'sinc',
  'think',
  'paint',
  'silli',
  'first',
  'place',
  'know',
  'go',
  'tri',
  'bring',
  'front',
  'friend',
  'teacher',
  'ask',
  'could',
  'wait',
  'parti',
  'go',
  'later',
  'show',
  'week',
  'said',
  'theyd',
  'come',
  'parti',
  'also',
  'said',
  'ableist',
  'want',
  'exclud',
  'sister',
  'sister',
  'found',
  'start',
  'scream',
  'call',
  'asshol',
  'let',
  'share',
  'moment',
  'point',
  'view',
  'want',
  'happi',
  'night',
  'celebr',
  'accomplish',
  'idk',
  'everyon',
  'famili',
  'piss',
  'mayb',
  'asshol',
  'tldr',
  'sister',
  'insult',
  'time',
  'invit',
  'art',
  'show',
  'famili',
  'think',
  'im',
  'asshol'],
 ['im',
  'amateur',
  'baker',
  'like',
  'make',
  'cake',
  'peopl',
  'birthday',
  'ex',
  'like',
  'sweet',
  'stuff',
  'kid',
  'like',
  'help',
  'make',
  'cake',
  'normal',
  'make',
  'one',
  'anyway',
  'sake',
  'year',
  'girlfriend',
  'plan',
  'parti',
  'told',
  'alreadi',
  'order',
  'cake',
  'need',
  'make',
  'one',
  'told',
  'fine',
  'daughter',
  'kept',
  'ask',
  'would',
  'make',
  'dad',
  'cake',
  'upset',
  'said',
  'assum',
  'like',
  'ex',
  'make',
  'one',
  'sinc',
  'cake',
  'alway',
  'kid',
  'ex',
  'decid',
  'make',
  'small',
  'one',
  'sinc',
  'like',
  'eat',
  'cake',
  'anyway',
  'want',
  'kid',
  'think',
  'dislik',
  'dad',
  'told',
  'girlfriend',
  'beforehand',
  'go',
  'make',
  'small',
  'cake',
  'told',
  'bring',
  'parti',
  'told',
  'bring',
  'parti',
  'kid',
  'would',
  'give',
  'gift',
  'offer',
  'come',
  'earli',
  'give',
  'guest',
  'arriv',
  'could',
  'put',
  'away',
  'nobodi',
  'els',
  'would',
  'know',
  'cake',
  'agre',
  'repeatedli',
  'told',
  'bring',
  'take',
  'end',
  'keep',
  'complain',
  'mutual',
  'friend',
  'purpos',
  'ruin',
  'parti',
  'call',
  'weird',
  'make',
  'cake',
  'told',
  'aita'],
 ['im',
  'work',
  'sole',
  'incom',
  'earner',
  'time',
  'husband',
  'struggl',
  'find',
  'job',
  'montj',
  'idk',
  'ive',
  'sole',
  'pay',
  'everyth',
  'know',
  'summer',
  'time',
  'kid',
  'want',
  'go',
  'beach',
  'everi',
  'weekend',
  'im',
  'busi',
  'work',
  'often',
  'time',
  'husband',
  'bother',
  'take',
  'unless',
  'use',
  'car',
  'need',
  'work',
  'anyway',
  'put',
  'money',
  'toward',
  'renov',
  'upgrad',
  'old',
  'pool',
  'kid',
  'could',
  'use',
  'thing',
  'pool',
  'readi',
  'husband',
  'start',
  'invit',
  'friend',
  'come',
  'use',
  'hour',
  'theyd',
  'basic',
  'taken',
  'prevent',
  'kid',
  'enjoy',
  'complain',
  'deni',
  'pool',
  'sever',
  'time',
  'caus',
  'get',
  'upset',
  'talk',
  'husband',
  'tell',
  'limit',
  'friend',
  'usag',
  'pool',
  'flip',
  'say',
  'housewat',
  'cant',
  'control',
  'doeswho',
  'bring',
  'got',
  'mad',
  'return',
  'told',
  'tomorrow',
  'kid',
  'get',
  'pool',
  'els',
  'ban',
  'friend',
  'complet',
  'side',
  'eye',
  'said',
  'fine',
  'damn',
  'pool',
  'tomorrow',
  'well',
  'next',
  'day',
  'daughter',
  'call',
  'cri',
  'say',
  'dad',
  'brought',
  'friend',
  'refus',
  'let',
  'brother',
  'play',
  'pool',
  'livid',
  'liter',
  'left',
  'work',
  'right',
  'went',
  'home',
  'saw',
  'friend',
  'pool',
  'mess',
  'around',
  'scream',
  'head',
  'tell',
  'get',
  'husband',
  'tri',
  'get',
  'involv',
  'told',
  'friend',
  'leav',
  'blew',
  'act',
  'like',
  'lunat',
  'said',
  'control',
  'shamless',
  'said',
  'alreadi',
  'told',
  'let',
  'kid',
  'play',
  'pool',
  'yet',
  'ignor',
  'request',
  'yell',
  'say',
  'paid',
  'fix',
  'pool',
  'mean',
  'went',
  'back',
  'insid',
  'start',
  'call',
  'friend',
  'one',
  'one',
  'apolog',
  'behalf',
  'sinc',
  'said',
  'shamless',
  'left',
  'hous',
  'back',
  'yet',
  'edit__few',
  'thing',
  '*',
  'paid',
  'pool',
  'get',
  'renovatedupgrad',
  '*',
  'friend',
  'alway',
  'alway',
  'use',
  'give',
  'kid',
  'chanc',
  'spend',
  'time',
  '*',
  'friend',
  'trash',
  'pool',
  'everi',
  'singl',
  'time',
  'drop',
  'food',
  'drink',
  'end',
  'clean'],
 ['daughter',
  'liz',
  '[',
  ']',
  'love',
  'cook',
  'began',
  'discov',
  'new',
  'meal',
  'becam',
  'vegan',
  'picki',
  'eater',
  'past',
  'encourag',
  'cook',
  'food',
  'husband',
  'hate',
  'although',
  'still',
  'sit',
  'tabl',
  'us',
  'think',
  'differ',
  'food',
  'tabl',
  'disrespect',
  'famili',
  'eat',
  'eat',
  'thought',
  'ridicul',
  'ask',
  'let',
  'got',
  'agit',
  'said',
  'liz',
  'allow',
  'use',
  'tool',
  'kitchen',
  'decid',
  'cook',
  'sinc',
  'paid',
  'everyth',
  'kitchen',
  'fought',
  'back',
  'decis',
  'stood',
  'firm',
  'decid',
  'go',
  'buy',
  'tool',
  'need',
  'make',
  'meal',
  'buy',
  'groceri',
  'worri',
  'last',
  'night',
  'liz',
  'call',
  'cri',
  'say',
  'husband',
  'threw',
  'away',
  'tool',
  'got',
  'prevent',
  'cook',
  'fume',
  'went',
  'home',
  'start',
  'argu',
  'tell',
  'tool',
  'argu',
  'liz',
  'cook',
  '*',
  '*',
  'kitchen',
  'alreadi',
  '*',
  'author',
  '*',
  'blew',
  'went',
  'tell',
  'ridicul',
  'look',
  'excus',
  'prevent',
  'liz',
  'cook',
  'yell',
  'liz',
  'act',
  'spoil',
  'repeatedli',
  'let',
  'disrespect',
  'us',
  'tabl',
  'manner',
  'let',
  'cook',
  'food',
  'instead',
  'grate',
  'eat',
  'alreadi',
  'tabl',
  'fought',
  'went',
  'upstair',
  'follow',
  'say',
  'im',
  'avoid',
  'respons',
  'im',
  'encourag',
  'liz',
  'becom',
  'selfish',
  'egotist',
  'instead',
  'appreci',
  'infront',
  'refus',
  'talk',
  'said',
  'apolog',
  'react',
  'yell',
  'call',
  'name',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'let',
  'daughter',
  'buy',
  'groceri',
  'reason',
  'one',
  'use',
  'money',
  'give',
  'buy',
  'groceri',
  'two',
  'know',
  'need',
  'cook',
  'meal',
  'knowledg',
  'vegan',
  'product',
  'shop',
  'sometim',
  'take',
  'new',
  'place',
  'cultur',
  'factor',
  'latin',
  'america',
  'husband',
  'sole',
  'provid',
  'famili',
  'cant',
  'whole',
  'famili',
  'eat',
  'vegan',
  'younger',
  'kid',
  'eat',
  'veget'],
 ['wife',
  '-month-old',
  'son',
  'light',
  'live',
  'wife',
  'carri',
  'one',
  'feed',
  'exclus',
  'breastf',
  'fine',
  'wife',
  'choic',
  'suggest',
  'pump',
  'could',
  'also',
  'feed',
  'say',
  'uncomfort',
  'time-consum',
  'option',
  'also',
  'want',
  'use',
  'formula',
  'last',
  'night',
  'boy',
  'woke',
  'cri',
  'got',
  'clear',
  'hungri',
  'woke',
  'wife',
  'annoy',
  'groggi',
  'told',
  'feed',
  'told',
  'cant',
  'need',
  'get',
  'feed',
  'turn',
  'small',
  'argument',
  'end',
  'say',
  'fuck',
  'want',
  'yell',
  'anyth',
  'tone',
  'definit',
  'annoy',
  'minut',
  'got',
  'fed',
  'son',
  'get',
  'back',
  'bed',
  'tri',
  'get',
  'come',
  'back',
  'bed',
  'woke',
  'next',
  'day',
  'found',
  'shed',
  'cook',
  'whole',
  'breakfast',
  'super',
  'cold',
  'ask',
  'ok',
  'said',
  'mad',
  'wake',
  'ask',
  'want',
  'do-',
  'son',
  'breastf',
  'pump',
  'use',
  'formula',
  'wrong',
  'thing',
  'say',
  'got',
  'super',
  'mad',
  'yell',
  'im',
  'shame',
  'choic',
  'said',
  'im',
  'make',
  'easier',
  'either',
  'us',
  'ask',
  'friend',
  '-year-old',
  'side',
  'wife',
  'said',
  'breastfeed',
  'walk',
  'park',
  'wrong',
  'aita',
  'edit',
  'involv',
  'parent',
  'take',
  'care',
  'son',
  'day',
  'wife',
  'still',
  'feed',
  'day',
  'chang',
  'nappi',
  'bath',
  'household',
  'chore',
  'get',
  'wrong',
  'im',
  'expect',
  'bust',
  'ass',
  'deep-clean',
  'hous',
  'everyth',
  'day',
  'apart',
  'feeding\\',
  'therapi',
  'diagnos',
  'anyth',
  'im',
  'one',
  'get',
  'night',
  'first',
  'everi',
  'time',
  'also',
  'im',
  'woman',
  'man',
  'edit',
  'peopl',
  'tell',
  'simpli',
  'start',
  'lactat',
  'pleas',
  'googl',
  'search',
  'breast',
  'work',
  'way',
  'edit',
  'love',
  'god',
  'stop',
  'tell',
  'induc',
  'lactat',
  'know',
  'thing',
  'clever',
  'type',
  'well',
  'acktuh',
  'know',
  'edit',
  'respons',
  'ask',
  'comments-',
  '>',
  'lift',
  'shirt',
  'unclip',
  'bra',
  'wear',
  'one',
  'settl',
  'babi',
  'boob',
  'reclip',
  'bra',
  'lower',
  'shirt',
  'check',
  'nappi',
  'put',
  'babi',
  'back',
  'sleep',
  'cant',
  'get',
  'mad',
  '>',
  'need',
  'see',
  'doctor',
  'pretti',
  'clearli',
  'ppd',
  'alreadi',
  'see',
  'doctor',
  'therapist',
  'diagnos',
  'anyth',
  '>',
  'also',
  'get',
  'med',
  'induc',
  'lactat',
  'want',
  'abl',
  'feed',
  'fuck',
  'know',
  'refer',
  'peopl',
  'men',
  'tell',
  'start',
  'lactat',
  'mother',
  'fuck',
  'know',
  'procedur',
  'stg',
  'see',
  'anoth',
  'fuck',
  'comment',
  'well',
  'acktuh',
  'ill',
  'fuck',
  'lose'],
 ['updat',
  'tri',
  'make',
  'separ',
  'post',
  'remov',
  'ive',
  'talk',
  'said',
  'sorri',
  'speak',
  'like',
  'stand',
  'said',
  'apologis',
  'wed',
  'lot',
  'said',
  'noth',
  'realli',
  'resolv',
  'venu',
  'commun',
  'via',
  'fiancé',
  'unless',
  'talk',
  'phone',
  'goe',
  'speak',
  'noth',
  'chang',
  '--',
  '--',
  'edit',
  'ive',
  'dm',
  'ask',
  'nearli',
  'ident',
  'apart',
  'hair',
  'colour',
  'dy',
  'mine',
  'last',
  'year',
  'scar',
  'forehead',
  'car',
  'crash',
  'happen',
  'last',
  'year',
  'scar',
  'hair',
  'would',
  'mirror',
  'imag',
  'ye',
  'gone',
  'therapi',
  'spoken',
  'childhood',
  'origin',
  'reason',
  'go',
  'car',
  'crash',
  'came',
  'session',
  'edit',
  'wow',
  'cant',
  'believ',
  'respons',
  'post',
  'thank',
  'everyon',
  'kind',
  'word',
  'say',
  'someth',
  'come',
  'comment',
  'dm',
  'famili',
  'reason',
  'therapi',
  'said',
  'older',
  'edit',
  'went',
  'grief',
  'trauma',
  'went',
  'last',
  'year',
  'follow',
  'car',
  'crash',
  'lost',
  'close',
  'friend',
  'would',
  'bridesmaid',
  'difficult',
  'time',
  'deal',
  'loss',
  'spoke',
  'therapist',
  'found',
  'twin',
  'wonder',
  'never',
  'talk',
  'throwaway',
  'account',
  'sorri',
  'long',
  'lot',
  'get',
  'get',
  'marri',
  'six',
  'month',
  'fiancé',
  'wed',
  'realli',
  'small',
  'close',
  'famili',
  'friend',
  'weve',
  'quick',
  'engag',
  'weve',
  'togeth',
  'long',
  'year',
  'ident',
  'twin',
  'sister',
  'despit',
  'us',
  'twin',
  'never',
  'close',
  'due',
  'ms',
  'seemingli',
  'patholog',
  'need',
  'better',
  'everyth',
  'ever',
  'sinc',
  'littl',
  'better',
  'twin',
  'everyth',
  'want',
  'sport',
  'sport',
  'show',
  'interest',
  'hobbi',
  'excel',
  'hobbi',
  'parent',
  'alway',
  'made',
  'point',
  'let',
  'us',
  'find',
  'person',
  'outsid',
  'twin',
  'ms',
  'behaviour',
  'made',
  'hard',
  'grow',
  'got',
  'wors',
  'high',
  'school',
  'start',
  'date',
  'boy',
  'show',
  'interest',
  'get',
  'first',
  'matter',
  'like',
  'stop',
  'move',
  'away',
  'univers',
  'got',
  'first',
  'choic',
  'appli',
  'get',
  'grade',
  'move',
  'away',
  'found',
  'person',
  'met',
  'fiancé',
  'ive',
  'hardli',
  'seen',
  'past',
  'year',
  'except',
  'christmas',
  'birthday',
  'came',
  'head',
  'engag',
  'parti',
  'last',
  'month',
  'invit',
  'famili',
  'unknown',
  'mother',
  'told',
  'kind',
  'outfit',
  'wear',
  'came',
  'dress',
  'almost',
  'exactli',
  'like',
  'mine',
  'glamor',
  'hair',
  'makeup',
  'profession',
  'done',
  'look',
  'incred',
  'tri',
  'ignor',
  'celebr',
  'fiancé',
  'night',
  'went',
  'well',
  'decid',
  'make',
  'speech',
  'sidenot',
  'bridesmaid',
  'im',
  'best',
  'friend',
  'univers',
  'bridesmaid',
  'whole',
  'speech',
  'us',
  'twin',
  'everyth',
  'togeth',
  'much',
  'id',
  'alway',
  'tri',
  'like',
  'joke',
  'boy',
  'id',
  'date',
  'made',
  'dig',
  'bridesmaid',
  'op',
  'probabl',
  'worri',
  'id',
  'steal',
  'thunder',
  'round',
  'say',
  'get',
  'tire',
  'know',
  'fiancé',
  'saw',
  'red',
  'grab',
  'arm',
  'drag',
  'hallway',
  'ill',
  'admit',
  'swore',
  'lot',
  'scream',
  'idea',
  'everyon',
  'parti',
  'could',
  'hear',
  'rip',
  'call',
  'psychot',
  'jealou',
  '*',
  '*',
  'stand',
  'idea',
  'sister',
  'happi',
  'also',
  'yell',
  'spent',
  'entir',
  'live',
  'pretend',
  'singl',
  'unemploy',
  'still',
  'live',
  'home',
  'round',
  'tell',
  '*',
  'ck',
  'bother',
  'come',
  'wed',
  'want',
  'pathet',
  'wast',
  'dna',
  'harsh',
  'word',
  'realli',
  'mad',
  'sinc',
  'sever',
  'famili',
  'member',
  'includ',
  'mother',
  'call',
  'ah',
  'embarrass',
  'famili',
  'parti',
  'bring',
  'sensit',
  'subject',
  'unemploy',
  'im',
  'refus',
  'back',
  'despit',
  'nearli',
  'entir',
  'famili',
  'tell',
  'get',
  'aita',
  'updat',
  'fiancé',
  'talk',
  'venu',
  'monday',
  'make',
  'awar',
  'twin',
  'situat',
  'case',
  'turn',
  'day'],
 ['kid',
  'wife',
  'pleas',
  'come',
  'us',
  'mani',
  'kid',
  'work',
  'roughli',
  'hour',
  'week',
  'hour',
  'day',
  '-',
  'wife',
  'sahm',
  'major',
  'everyth',
  'clean',
  'cook',
  'everyth',
  'minu',
  'shop',
  'wife',
  'order',
  'onlin',
  'pick',
  'store',
  'aita',
  'scenario',
  'work',
  'schedul',
  'work',
  'bond',
  'fish',
  'trip',
  'friday',
  'night',
  'sunday',
  'summer',
  'said',
  'way',
  'im',
  'go',
  'follow',
  'reason',
  'despit',
  'wife',
  'tell',
  'go',
  'fun',
  'first',
  'everi',
  'saturday',
  'schedul',
  'wife',
  'type',
  'treat',
  'self',
  'appoint',
  'send',
  'mini',
  'shop',
  'spreekiddo',
  'free',
  'morn',
  'want',
  'one',
  'rule',
  'kid',
  'shop',
  'second',
  'im',
  'leav',
  'wife',
  'night',
  'day',
  'fish',
  'get',
  'drunk',
  'want',
  'go',
  'fish',
  'ill',
  'take',
  'yr',
  'old',
  'twin',
  'give',
  'wife',
  'less',
  'juggl',
  'creat',
  'memori',
  'third',
  'ladi',
  'work',
  'offic',
  'feel',
  'exclud',
  'like',
  'fish',
  'trip',
  'feel',
  'exclud',
  'fourth',
  'call',
  'stag',
  'weekend',
  'despit',
  'one',
  'get',
  'marri',
  'trust',
  'phrase',
  'especi',
  'sinc',
  'go',
  'fish',
  'near',
  'popular',
  'colleg',
  'age',
  'vacat',
  'spot',
  'known',
  'bar',
  'wast',
  'weekend',
  'shenanigan',
  'cowork',
  'call',
  'whip',
  'sinc',
  'said',
  'say',
  'itll',
  'give',
  'chanc',
  'know',
  'better',
  'sinc',
  'go',
  'wednesday',
  'go',
  'bar',
  'alway',
  'miss',
  'trip',
  'cowork',
  'wive',
  'kid',
  'signific',
  'recommend',
  'famili',
  'campout',
  'plan',
  'meet',
  'would',
  'cost',
  'amount',
  'blow',
  'thing',
  'lake',
  'boat',
  'one',
  'ski',
  'ext',
  'cookout',
  'kind',
  'deal',
  'famili',
  'activ',
  'work',
  'rent',
  'small',
  'cabin',
  'famili',
  'use',
  'region',
  'manag',
  'meet',
  'love',
  'even',
  'fish',
  'trip',
  'gave',
  'yearli',
  'bonu',
  'plan',
  'famili',
  'event',
  'everi',
  'year',
  'instead',
  'cowork',
  'get',
  'one',
  'plan',
  'fish',
  'trip',
  'cowork',
  'call',
  'whip',
  'bs',
  'name',
  'mad',
  'wive',
  'happi',
  'idea',
  'wive',
  'even',
  'email',
  'mom',
  'saturday',
  'morn',
  'idea',
  'like',
  'wife',
  'ad',
  'plan',
  'mad',
  'stag',
  'weekend',
  'cancel',
  'quot',
  'spend',
  'work',
  'paid',
  'trip',
  'babysit',
  'reddit',
  'aita',
  'get',
  'work',
  'trip',
  'cancel',
  'replac',
  'famili',
  'friendli',
  'event',
  'edit',
  'clariti',
  'also',
  'includ',
  'childfre',
  'cowork',
  'mine',
  'plan',
  'said',
  'need',
  'break',
  'get',
  'overwhelm',
  'welcom',
  'borrow',
  'boat',
  'relax',
  'without',
  'kid',
  'extrem',
  'water',
  'port'],
 ['im',
  'use',
  'thriwaway',
  'case',
  'husband',
  'tom',
  'marri',
  'year',
  'habit',
  'get',
  'leav',
  'event',
  'earli',
  'soon',
  'get',
  'bore',
  'see',
  'someon',
  'like',
  'come',
  'event',
  'like',
  'brother',
  'outright',
  'say',
  'pretend',
  'get',
  'sick',
  'feel',
  'headach',
  'stomach',
  'forc',
  'go',
  'home',
  'soon',
  'leav',
  'hed',
  'immedi',
  'go',
  'back',
  'normal',
  'suddenli',
  'pain',
  'headach',
  'go',
  'away',
  'admit',
  'strategi',
  'get',
  'boringundeisr',
  'event',
  'thing',
  'happen',
  'way',
  'often',
  'keep',
  'fall',
  'importantlyit',
  'impact',
  'relationship',
  'famili',
  'friend',
  'told',
  'mani',
  'time',
  'could',
  'go',
  'home',
  'feel',
  'comfort',
  'event',
  'trick',
  'go',
  'home',
  'told',
  'leav',
  'otherwis',
  'peopl',
  'would',
  'ask',
  'could',
  'drive',
  'sick',
  'told',
  'problem',
  'next',
  'time',
  'play',
  'along',
  'smirk',
  'stop',
  'bring',
  'day',
  'ago',
  'sister',
  'th',
  'birthday',
  'obvious',
  'huge',
  'event',
  'sinc',
  'youngest',
  'famili',
  'tom',
  'first',
  'said',
  'go',
  'ask',
  'go',
  'well',
  'feel',
  'sick',
  'sick',
  'specifi',
  'said',
  'gave',
  'option',
  'stay',
  'home',
  'got',
  'dress',
  'last',
  'minut',
  'went',
  'got',
  'went',
  'stay',
  'parent',
  'saw',
  'sister',
  'min',
  'later',
  'tom',
  'came',
  'say',
  'feel',
  'nauseou',
  'told',
  'go',
  'home',
  'feel',
  'sick',
  'figur',
  'got',
  'bore',
  'pretend',
  'sick',
  'get',
  'go',
  'home',
  'caus',
  'like',
  'parti',
  'told',
  'need',
  'stop',
  'game',
  'caus',
  'sister',
  'birthday',
  'swore',
  'sick',
  'refus',
  'go',
  'gave',
  'nasti',
  'stare',
  'dinner',
  'sat',
  'eat',
  'kept',
  'stare',
  'start',
  'move',
  'chair',
  'minut',
  'later',
  'drop',
  'start',
  'throw',
  'near',
  'chair',
  'everyon',
  'got',
  'seat',
  'dad',
  'went',
  'help',
  'immedi',
  'believ',
  'stood',
  'mom',
  'dad',
  'help',
  'shout',
  'knew',
  'sick',
  'told',
  'sick',
  'need',
  'go',
  'home',
  'believ',
  'everyon',
  'heard',
  'stare',
  'felt',
  'guilt',
  'shame',
  'embarrassementespeci',
  'dad',
  'look',
  'confirm',
  'statement',
  'horribl',
  'dinner',
  'cut',
  'short',
  'drive',
  'home',
  'got',
  'berat',
  'famili',
  'call',
  'neglect',
  'empathi',
  'refus',
  'listen',
  'told',
  'sick',
  'upset',
  'happen',
  'refus',
  'even',
  'talk',
  'except',
  'say',
  'fault',
  'parti',
  'ruin',
  'everyon',
  'cant',
  'even',
  'talk',
  'sister',
  'think',
  'sinc',
  'parti',
  'realli',
  'ah',
  'situat'],
 ['daughter',
  'go',
  'get',
  'marri',
  'june',
  'sinc',
  'littl',
  'girl',
  'promis',
  'pay',
  'wed',
  'someth',
  'happen',
  'two',
  'day',
  'ago',
  'made',
  'chang',
  'mind',
  'background',
  'ex-wif',
  'daughter',
  'young',
  'age',
  'got',
  'marri',
  'six',
  'year',
  'marriag',
  'could',
  'find',
  'come',
  'wife',
  'understood',
  'amic',
  'divorc',
  'split',
  'custodi',
  'daughter',
  'alway',
  'daddi',
  'girl',
  'alway',
  'got',
  'along',
  'well',
  'partner',
  'year',
  'plan',
  'wed',
  'pay',
  'let',
  'know',
  'thing',
  'want',
  'special',
  'day',
  '·',
  'sinc',
  'futur',
  'in-law',
  'conserv',
  'religi',
  'husband',
  'allow',
  'attend',
  'wed',
  'said',
  'ok',
  'day',
  '·',
  'son',
  'cant',
  'attend',
  'either',
  'go',
  'child-fre',
  'wed',
  '·',
  'cant',
  'talk',
  'lifestyl',
  'make',
  'in-law',
  'uncomfort',
  'therefor',
  'told',
  'in-law',
  'import',
  'pay',
  'wed',
  'got',
  'mad',
  'call',
  'child',
  'said',
  'keep',
  'attitud',
  'shell',
  'ask',
  'fil',
  'walk',
  'aisl',
  'said',
  'fine',
  'famili',
  'welcom',
  'im',
  'exclud',
  'im',
  'pay',
  'wed',
  'furiou',
  'said',
  'selfish',
  'pick',
  'favourit',
  'think',
  'complain',
  'cant',
  'afford',
  'wed',
  'sinc',
  'young',
  'remind',
  'promis',
  'made',
  'everyon',
  'includ',
  'mom',
  'call',
  'selfish',
  'aita',
  'updat',
  'daughter',
  'apologis',
  'chang',
  'mind',
  'rule',
  'still',
  'set',
  'decid',
  'pay',
  'apologis',
  'hug',
  'belov',
  'husband',
  'son',
  'even',
  'second',
  'exclud',
  'husband',
  'even',
  'help',
  'chang',
  'mind',
  'alreadi',
  'ask',
  'fil',
  'walk',
  'aisl',
  'im',
  'gon',
  'na',
  'take',
  'son',
  'husband',
  'special',
  'famili',
  'trip'],
 ['realli',
  'thought',
  'normal',
  'mani',
  'peopl',
  'tell',
  'im',
  'bitch',
  'start',
  'mess',
  'head',
  'tbh',
  'recent',
  'receiv',
  'hous',
  'grandmoth',
  'pass',
  'away',
  'left',
  'hous',
  'sister',
  'sat',
  'us',
  'decid',
  'bigger',
  'hous',
  'marri',
  'kid',
  'anoth',
  'way',
  'would',
  'move',
  'smaller',
  'bedroom',
  'hous',
  'sister',
  'husband',
  'ad',
  'titl',
  'hous',
  'help',
  'pay',
  'tax',
  'abl',
  'pay',
  'tax',
  'mine',
  'cheaper',
  'due',
  'smaller',
  'boyfriend',
  'year',
  'contribut',
  'financi',
  'toward',
  'think',
  'put',
  'titl',
  'housewarm',
  'parti',
  'last',
  'weekend',
  'parent',
  'came',
  'toward',
  'end',
  'night',
  'go',
  'lucki',
  'bf',
  'abl',
  'live',
  'somewher',
  'like',
  'rent',
  'free',
  'give',
  'us',
  'head',
  'start',
  'life',
  'appreci',
  'id',
  'given',
  'half',
  'hous',
  'bf',
  'correct',
  'titl',
  'welcom',
  'live',
  'pay',
  'rent',
  'money',
  'put',
  'toward',
  'studi',
  'master',
  'student',
  'immedi',
  'becam',
  'judgement',
  'say',
  'unfair',
  'put',
  'name',
  'titl',
  'clearli',
  'expect',
  'relationship',
  'last',
  'trust',
  'etc',
  'say',
  'unfair',
  'entitl',
  'half',
  'famili',
  'hous',
  'walk',
  'away',
  'numer',
  'member',
  'famili',
  'messag',
  'say',
  'im',
  'bitch',
  'trust',
  'tell',
  'watch',
  'clearli',
  'love',
  'etc',
  'aita',
  'ive',
  'gotten',
  'bunch',
  'messag',
  'ask',
  'bf',
  'think',
  'put',
  'respons',
  'brought',
  'monday',
  'said',
  'feel',
  'like',
  'sign',
  'trust',
  'said',
  'add',
  'man',
  'titl',
  'unless',
  'marri',
  'pay',
  'half',
  'rate',
  'stuff',
  'said',
  'feel',
  'like',
  'im',
  'blackmail',
  'get',
  'marri',
  'said',
  'want',
  'make',
  'huge',
  'commit',
  'like',
  'give',
  'half',
  'hous',
  'without',
  'commit',
  'said',
  'drop',
  'never',
  'go',
  'agre',
  'let',
  'leav',
  'argu'],
 ['grow',
  'sister',
  'close',
  'parent',
  'favorit',
  'daughter',
  'alway',
  'littl',
  'overweight',
  'pco',
  'sister',
  'slim',
  'fit',
  'alway',
  'held',
  'resent',
  'toward',
  'especi',
  'belittl',
  'mom',
  'let',
  'eat',
  'one',
  'serv',
  'dinner',
  'one',
  'serv',
  'dessert',
  'tell',
  'sleep',
  'make',
  'gain',
  'weight',
  'alway',
  'overshadow',
  'accomplish',
  'sister',
  'marri',
  'wealthi',
  'man',
  'commun',
  'indian',
  'marriag',
  'arrang',
  'beauti',
  'kid',
  'love',
  'niec',
  'nephew',
  'anyth',
  'marri',
  'husband',
  'two',
  'year',
  'ago',
  'tri',
  'babi',
  'almost',
  'one',
  'year',
  'sister',
  'alway',
  'said',
  'brought',
  'shame',
  'parent',
  'marri',
  'outsid',
  'cultur',
  'babi',
  'mani',
  'neg',
  'pregnanc',
  'test',
  'month',
  'ago',
  'final',
  'posit',
  'pregnanc',
  'test',
  'unfortun',
  'four',
  'month',
  'miscarriag',
  'devast',
  'believ',
  'go',
  'two',
  'month',
  'tragedi',
  'famili',
  'threw',
  'sister',
  'birthday',
  'parti',
  'husband',
  'announc',
  'pregnant',
  'heart',
  'ach',
  'happi',
  'even',
  'went',
  'sister',
  'kept',
  'make',
  'comment',
  'like',
  'even',
  'tri',
  'babi',
  'funni',
  'get',
  'pregnant',
  'easili',
  'thought',
  'thing',
  'get',
  'wors',
  'stand',
  'cousin',
  'sister',
  'said',
  'even',
  'want',
  'kid',
  'almost',
  'contempl',
  'abort',
  'said',
  'look',
  'women',
  'abort',
  'sister',
  'use',
  'weapon',
  'show',
  'fertil',
  'contempl',
  'abort',
  'decid',
  'keep',
  'babi',
  'announc',
  'realli',
  'hurt',
  'upset',
  'frustrat',
  'husband',
  'notic',
  'chang',
  'emot',
  'immedi',
  'said',
  'goodby',
  'parent',
  'let',
  'parti',
  'immedi',
  'got',
  'mani',
  'text',
  'sister',
  'cousin',
  'call',
  'jealou',
  'asshol',
  'walk',
  'sister',
  'birthday',
  'parti',
  'part',
  'pregnanc',
  'celebr',
  'husband',
  'friend',
  'say',
  'right',
  'feel',
  'way',
  'im',
  'sure',
  'asshol'],
 ['got',
  'marri',
  'husband',
  'month',
  'ago',
  'year',
  'old',
  'son',
  'previou',
  'marriag',
  'husband',
  'ador',
  'diner',
  'last',
  'night',
  'ask',
  'husband',
  'phone',
  'check',
  'payment',
  'option',
  'meal',
  'unlock',
  'screen',
  'saw',
  'son',
  'pic',
  'set',
  'homescreen',
  'wallpap',
  'ask',
  'husband',
  'long',
  'said',
  'month',
  'got',
  'upset',
  'point',
  'wise',
  'use',
  'pic',
  'son',
  'homescreen',
  'wallpap',
  'stranger',
  'see',
  'said',
  'pretti',
  'much',
  'almost',
  'one',
  'touch',
  'phone',
  'worri',
  'son',
  'pic',
  'seen',
  'stranger',
  'told',
  'touch',
  'phone',
  'see',
  'iphon',
  'homescreen',
  'said',
  'relax',
  'like',
  'post',
  'social',
  'media',
  'besid',
  'use',
  'son',
  'pic',
  'homescreen',
  'wallpap',
  'abl',
  'look',
  'time',
  'miss',
  'work',
  'demand',
  'remov',
  'said',
  'insist',
  'argument',
  'ensu',
  'point',
  'got',
  'paid',
  'part',
  'bill',
  'walk',
  'restaur',
  'decid',
  'stay',
  'hotel',
  'overwhelm',
  'text',
  'deepli',
  'hurt',
  'told',
  'remov',
  'pictur',
  'entir',
  'phone',
  'would',
  'make',
  'happi',
  'went',
  'say',
  'overreact',
  'look',
  'expect',
  'apolog',
  'happen',
  'ita'],
 ['late',
  'husband',
  'pass',
  'away',
  'car',
  'accid',
  'month',
  'pregnant',
  'difficult',
  'without',
  'famili',
  'much',
  'support',
  'move',
  'month',
  'funer',
  'older',
  'brother',
  'ask',
  'minut',
  'talk',
  'ask',
  'realli',
  'want',
  'go',
  'pregnanc',
  'shock',
  'heard',
  'even',
  'shock',
  'suggest',
  'make',
  'right',
  'decis',
  'emot',
  'decis',
  'reconsid',
  'son',
  'gave',
  'mani',
  'reason',
  'includ',
  'fact',
  'singlewidow',
  'mom',
  'consid',
  'much',
  'baggag',
  'mani',
  'men',
  'date',
  'lost',
  'kick',
  'last',
  'time',
  'saw',
  'son',
  'week',
  'old',
  'whole',
  'famili',
  'met',
  'happi',
  'welcom',
  'parent',
  'ask',
  'could',
  'let',
  'brother',
  'come',
  'meet',
  'son',
  'even',
  'hour',
  'refus',
  'said',
  'make',
  'mistak',
  'rob',
  'son',
  'futur',
  'love',
  'relationship',
  'uncl',
  'ask',
  'let',
  'emot',
  'dictat',
  'decis',
  'might',
  'last',
  'impact',
  'said',
  'extend',
  'famili',
  'got',
  'involv',
  'start',
  'push',
  'especi',
  'brother',
  'start',
  'insist',
  'say',
  'husband',
  'dear',
  'friend',
  'im',
  'right',
  'would',
  'make',
  'husband',
  'upset',
  'saw',
  'bitter',
  'selfish'],
 ['daughter',
  'seven',
  'autist',
  'partial',
  'verbal',
  'high',
  'stress',
  'situat',
  'goe',
  'mute',
  'anyway',
  'went',
  'sister',
  'hous',
  'happi',
  'friday',
  'whole',
  'famili',
  'get',
  'togeth',
  'run',
  'snd',
  'deliv',
  'packag',
  'gone',
  'like',
  'half',
  'hour',
  'anyway',
  'got',
  'back',
  'differ',
  'cloth',
  'clearli',
  'upset',
  'ask',
  'happen',
  'sister',
  'told',
  'wet',
  'chocol',
  'pop',
  'thing',
  'girl',
  'would',
  'never',
  'wet',
  'purpos',
  'extrem',
  'anxieti',
  'surround',
  'toilet',
  'point',
  'therapi',
  'know',
  'anxieti',
  'caus',
  'pretti',
  'sever',
  'clearli',
  'distress',
  'took',
  'home',
  'car',
  'broke',
  'sob',
  'unabl',
  'tell',
  'happen',
  'soon',
  'got',
  'home',
  'took',
  'upstair',
  'put',
  'pull',
  'pull',
  'access',
  'recommend',
  'control',
  'super',
  'cuddli',
  'sinc',
  'use',
  'aav',
  'devic',
  'sign',
  'two',
  'therapist',
  'due',
  'see',
  'next',
  'week',
  'see',
  'theyll',
  'abl',
  'help',
  'understand',
  'happen',
  'famili',
  'aw',
  'sister',
  'mainli',
  'still',
  'claim',
  'brat',
  'attent',
  'ive',
  'sinc',
  'told',
  'everi',
  'famili',
  'member',
  'see',
  'truth',
  'told',
  'may',
  'overkil',
  'think',
  'daughter',
  'would',
  'want',
  'see',
  'anyon',
  'anyway',
  'obvious',
  'upset',
  'lot',
  'peopl',
  'especi',
  'know',
  'happen',
  'im',
  'stand',
  'statement',
  '-',
  'sister',
  'tell',
  'back',
  'pressur',
  'famili',
  'member',
  'may',
  'help',
  'along',
  'im',
  'slightli',
  'concern',
  'im',
  'major',
  'ass',
  'though',
  'want',
  'see',
  'cant',
  'im',
  'start',
  'feel',
  'quit',
  'bad',
  'despit',
  'explain',
  'situat',
  'full',
  'ass',
  'eta',
  'daughter',
  'father',
  'although',
  'appreci',
  'mama',
  'bear',
  'comment',
  'lol',
  'eta',
  'updat',
  'updat',
  'post',
  'httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app',
  '&',
  'utm_source=shar'],
 ['obligatori',
  'throwawaylong',
  'time',
  'lurker',
  'disclaim',
  'appar',
  'matter',
  'month',
  'ago',
  'sister',
  'announc',
  'go',
  'get',
  'marri',
  'plan',
  'process',
  'took',
  'date',
  'venu',
  'agre',
  'sister',
  'babi',
  'love',
  'cri',
  'cri',
  'time',
  'unless',
  'someon',
  'take',
  'outsid',
  'fresh',
  'air',
  'day',
  'ago',
  'wed',
  'start',
  'town',
  'miss',
  'night',
  'wed',
  'basic',
  'get-togeth',
  'period',
  'famili',
  'member',
  'big',
  'parti',
  'show',
  'ceremoni',
  'recept',
  'second',
  'got',
  'sister',
  'ask',
  'take',
  'babi',
  'outsid',
  'order',
  'calm',
  'agre',
  'ceremoni',
  'start',
  'yet',
  'ask',
  'take',
  'babi',
  'outsid',
  'later',
  'ask',
  'babi',
  'sitter',
  'said',
  'spent',
  'money',
  'ceremoni',
  'parti',
  'kind',
  'annoy',
  'want',
  'sit',
  'ceremoni',
  'everyon',
  'jump',
  'tell',
  'sister',
  'favour',
  'day',
  'ask',
  'expect',
  'take',
  'babi',
  'fresh',
  'air',
  'gave',
  'huge',
  'list',
  'time',
  'basic',
  'meant',
  'miss',
  'import',
  'part',
  'exchang',
  'vow',
  'recept',
  'aisl',
  'walk',
  'read',
  'kiss',
  'etc',
  'figur',
  'total',
  'would',
  'minut',
  'actual',
  'sit',
  'insid',
  'rest',
  'babi',
  'point',
  'said',
  'someon',
  'would',
  'videotap',
  'convinc',
  'want',
  'watch',
  'sister',
  'reach',
  'mileston',
  'came',
  'told',
  'someon',
  'els',
  'could',
  'watch',
  'babi',
  'brother',
  'want',
  'watch',
  'wed',
  'miss',
  'get',
  'marri',
  'told',
  'realli',
  'mad',
  'tri',
  'show',
  'outsid',
  'ask',
  'recept',
  'told',
  'oh',
  'miss',
  '\\',
  '[',
  'babi',
  'name\\',
  ']',
  'need',
  'outsid',
  'fed',
  'final',
  'straw',
  'mother',
  'hold',
  'babi',
  'slip',
  'left',
  'next',
  'day',
  'get',
  'call',
  'sister',
  'scream',
  'ruin',
  'wed',
  'babi',
  'stop',
  'cri',
  'told',
  'left',
  'treat',
  'like',
  'babysitt',
  'instead',
  'guestfamili',
  'member',
  'said',
  'fault',
  'get',
  'nanni',
  'ask',
  'friend',
  'sinc',
  'ive',
  'nuke',
  'call',
  'famili',
  'call',
  'selfish',
  'tell',
  'im',
  'effect',
  'disown',
  'unless',
  'apologis',
  'see',
  'reason',
  'aita'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'word',
  'cant',
  'express',
  'much',
  'meant',
  'get',
  'much',
  'love',
  'last',
  'post',
  'everyon',
  'support',
  'action',
  'also',
  'acknowledg',
  'hurt',
  'sweet',
  'internet',
  'mom',
  'comment',
  'dmd',
  'yall',
  'know',
  'make',
  'someon',
  'feel',
  'love',
  'even',
  'total',
  'stranger',
  'lol',
  'sinc',
  'mani',
  'peopl',
  'want',
  'updat',
  'littl',
  'heavi',
  'coupl',
  'day',
  'need',
  'time',
  'process',
  'cri',
  'theyr',
  'split',
  'heard',
  'first',
  'grandma',
  'wife',
  'guess',
  'ex',
  'legit',
  'cri',
  'phone',
  'call',
  'tell',
  '*',
  '*',
  'sorri',
  'put',
  'posit',
  'dad',
  'longer',
  'convers',
  'told',
  'everyth',
  'els',
  'made',
  'decis',
  'cant',
  'stay',
  'someon',
  'like',
  'want',
  'know',
  'disgust',
  'also',
  'tell',
  'thank',
  'someth',
  'realli',
  'need',
  'hear',
  'dad',
  'yeah',
  'regardless',
  'two',
  'peopl',
  'split',
  'marriag',
  'said',
  'hard',
  'thing',
  'feel',
  'guilti',
  'ladi',
  'heartbroken',
  'go',
  'divorc',
  'month',
  'get',
  'marri',
  'want',
  'make',
  'time',
  'reassur',
  'someon',
  'els',
  'made',
  'right',
  'choic',
  'unexpectedli',
  'though',
  'dad',
  'want',
  'us',
  'talk',
  'yesterday',
  'girlfriend',
  'want',
  'trust',
  'get',
  'point',
  'one',
  'want',
  'dinner',
  'first',
  'place',
  'one',
  'thing',
  'know',
  'want',
  'talk',
  'would',
  'mental',
  'health',
  'probabl',
  'bad',
  'risk',
  'take',
  'met',
  'yeah',
  'listen',
  'girlfriend',
  'come',
  'stuff…',
  'first',
  'time',
  'life',
  'think',
  'convers',
  'mom',
  'much',
  'love',
  'happi',
  'excit',
  'famili',
  'die',
  'told',
  'even',
  'wrong',
  'cant',
  'ever',
  'blame',
  'simpli',
  'born',
  'shed',
  'still',
  'sorri',
  'complet',
  'stay',
  'away',
  'say',
  'horribl',
  'thing',
  'grow',
  'say',
  'malici',
  'sinc',
  'seem',
  'sincer',
  'still',
  'ouch',
  'end',
  'decid',
  'relationship',
  'eachoth',
  'never',
  'gon',
  'na',
  'happen',
  'said',
  'goodby',
  'least',
  'apolog',
  'tri',
  'put',
  'posit',
  'first',
  'good',
  'thing',
  'ever',
  'tell',
  'happen',
  'wife',
  'fault',
  'went',
  'home',
  'cri',
  'day',
  'process',
  'short',
  'therapi',
  'session',
  'support',
  'aunt',
  'girlfriend',
  'get',
  'rest',
  'famili',
  'leav',
  'alon',
  'least',
  'glad',
  'end',
  'resolv',
  'total',
  'happi',
  'end',
  'know',
  'end',
  'better',
  'way'],
 ['recent',
  'move',
  'new',
  'neighborhood',
  'neighbor',
  'love',
  'especi',
  'next',
  'door',
  'neighbor',
  'bless',
  'heart',
  'wink',
  'wink',
  'marri',
  'kid',
  'notic',
  'look',
  'toward',
  'hous',
  'far',
  'id',
  'caught',
  'twice',
  'binocular',
  'basic',
  'seemingli',
  'look',
  'live',
  'room',
  'hate',
  'confront',
  'close',
  'curtain',
  'go',
  'day',
  'start',
  'escal',
  'day',
  'peek',
  'backyard',
  'sit',
  'balconi',
  'binocular',
  'fell',
  'backyard',
  'look',
  'gone',
  'knew',
  'saw',
  'took',
  'binocular',
  'put',
  'insid',
  'even',
  'came',
  'knock',
  'door',
  'ask',
  'done',
  'whatnot',
  'roll',
  'eye',
  'kept',
  'civil',
  'brought',
  'binocular',
  'said',
  'mustv',
  'fell',
  'backyard',
  'earlier',
  'today',
  'like',
  'hmm',
  'wonder',
  'happen',
  'said',
  'someth',
  'kid',
  'probabl',
  'mess',
  'ask',
  'could',
  'go',
  'get',
  'said',
  'give',
  'unless',
  'wife',
  'come',
  'get',
  'look',
  'shock',
  'angri',
  'said',
  'binocular',
  'theyr',
  'special',
  'militari',
  'said',
  'wife',
  'noth',
  'told',
  'give',
  'back',
  'wife',
  'show',
  'ask',
  'send',
  'threw',
  'fit',
  'say',
  'cant',
  'send',
  'shell',
  'misunderstand',
  'situat',
  'told',
  'misunderstand',
  'kid',
  'realli',
  'one',
  'use',
  'binocular',
  'insist',
  'give',
  'back',
  'til',
  'wife',
  'come',
  'get',
  'got',
  'argument',
  'kept',
  'voic',
  'low',
  'could',
  'left',
  'look',
  'furiou',
  'complain',
  'want',
  'stir',
  'drama',
  'keep',
  'demand',
  'return',
  'binocular',
  'back',
  'leav',
  'wife',
  'aita',
  'eta',
  'forget',
  'age'],
 ['marri',
  'wife',
  'four',
  'year',
  'usual',
  'get',
  'along',
  'fine',
  'one',
  'issu',
  'weve',
  'sinc',
  'relationship',
  'began',
  'freezer',
  'simpli',
  'put',
  'wife',
  'stuff',
  'freezer',
  'full',
  'food',
  'constantli',
  'absolut',
  'zero',
  'space',
  'put',
  'anyth',
  'first',
  'tri',
  'solv',
  'buy',
  'fridg',
  'biggest',
  'freezer',
  'could',
  'find',
  'drop',
  'nearli',
  '$',
  'grand',
  'interpret',
  'invit',
  'buy',
  '*',
  '*',
  'frozen',
  'food',
  'could',
  'play',
  'microwav',
  'dinner',
  'tetri',
  'freezer',
  'everi',
  'singl',
  'nook',
  'cranni',
  'stuf',
  'full',
  'still',
  'buy',
  'frozen',
  'food',
  'somehow',
  'find',
  'way',
  'fit',
  'worst',
  'part',
  'buy',
  'frozen',
  'food',
  'freez',
  'someth',
  'meal',
  'prep',
  'ask',
  'least',
  'three',
  'four',
  'time',
  'day',
  'im',
  'go',
  'take',
  'freezer',
  'essenti',
  'nag',
  'remov',
  'food',
  'freezer',
  'put',
  'someth',
  'touch',
  'six',
  'month',
  'place',
  'last',
  'weekend',
  'final',
  'snap',
  'bought',
  'inexpens',
  'singl',
  'door',
  'deep',
  'freezer',
  'put',
  'basement',
  'near',
  'washerdry',
  'put',
  'coupl',
  'thing',
  '--',
  'mostli',
  'frozen',
  'veggi',
  'burrito',
  'realli',
  'mention',
  'wife',
  'home',
  'brought',
  'wife',
  'got',
  'home',
  'later',
  'day',
  'went',
  'downstair',
  'laundri',
  'discov',
  'freezer',
  'excitedli',
  'ran',
  'upstair',
  'tell',
  'upstair',
  'one',
  'full',
  'actual',
  'fit',
  'food',
  'respond',
  'circumst',
  'touch',
  'freezer',
  'mine',
  'singl',
  'ice',
  'cube',
  'put',
  'told',
  'even',
  'ask',
  'knew',
  'shed',
  'mention',
  '-',
  'time',
  'day',
  'need',
  'freezer',
  'room',
  'sulk',
  'tri',
  'debat',
  'issu',
  'abl',
  'placat',
  'coupl',
  'day',
  'later',
  'went',
  'basement',
  'get',
  'someth',
  'freezer',
  'found',
  '%',
  'full',
  'microwav',
  'dinner',
  'upon',
  'check',
  'freezer',
  'kitchen',
  'found',
  'still',
  'complet',
  'fulli',
  'calmli',
  'went',
  'downstair',
  'larg',
  'garbag',
  'bag',
  'threw',
  'everyth',
  'toss',
  'trash',
  'bin',
  'found',
  'padlock',
  'lie',
  'around',
  'lock',
  'chain',
  'later',
  'day',
  'wife',
  'brought',
  'frozen',
  'food',
  'put',
  'new',
  'freezer',
  'got',
  'downstair',
  'notic',
  'lock',
  'flip',
  'lid',
  'told',
  'control',
  'told',
  'way',
  'ever',
  'use',
  'freezer',
  'threw',
  'someth',
  'like',
  'tantrum',
  'left',
  'mom',
  'hous',
  'came',
  'back',
  'later',
  'day',
  'told',
  'hour',
  'unlock',
  'freezer',
  'noth',
  'realli',
  'happen',
  'hour',
  'complet',
  'ignor',
  'everyth',
  'say',
  'think',
  'action',
  'justifi',
  'wrong',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'thank',
  'comment',
  'everyon',
  'someth',
  'weird',
  'peopl',
  'assum',
  'never',
  'talk',
  'weve',
  'marri',
  'four',
  'year',
  'ongo',
  'issu',
  'realli',
  'think',
  'ive',
  'never',
  'brought',
  'frustrat',
  'tri',
  'put',
  'someth',
  'freezer',
  'realli',
  'think',
  'day',
  'hey',
  'go',
  'take',
  'freezer',
  'question',
  'never',
  'result',
  'argument',
  'clear',
  'comment',
  'suggest',
  'may',
  'want',
  'talk',
  'someon',
  'issu',
  'absolut',
  'lost',
  'go',
  'far',
  'threaten',
  'divorc',
  'peopl',
  'say',
  'spent',
  '$',
  'freezer',
  'avoid',
  'convers',
  '🙄',
  'want',
  'freez',
  'coupl',
  'fuck',
  'microwav',
  'burrito',
  'without',
  'ask',
  'day',
  'im',
  'go',
  'eat',
  'unless',
  'legitim',
  'drug',
  'wife',
  'carri',
  'limp',
  'bodi',
  'therapi',
  'go',
  'peopl',
  'think',
  'commun',
  'make',
  'everi',
  'singl',
  'issu',
  'go',
  'away',
  'obvious',
  'never',
  'convers',
  'person',
  'incap',
  'see',
  'reason'],
 ['ill',
  'keep',
  'short',
  'sister',
  'let',
  'say',
  'name',
  'lisa',
  'get',
  'marri',
  'later',
  'year',
  'wed',
  'child',
  'free',
  'im',
  'current',
  'pregnant',
  'time',
  'wed',
  'month',
  'babi',
  'ask',
  'lisa',
  'could',
  'come',
  'well',
  'lisa',
  'said',
  'accept',
  'told',
  'abl',
  'attend',
  'feel',
  'comfort',
  'leav',
  'young',
  'kid',
  'sitter',
  'famili',
  'would',
  'wed',
  'lisa',
  'pretti',
  'piss',
  'said',
  'im',
  'tri',
  'act',
  'holier-than-th',
  'punish',
  'child',
  'free',
  'wed',
  'said',
  'want',
  'give',
  'speech',
  'sister',
  'bride',
  'told',
  'cant',
  'attend',
  'cant',
  'bring',
  'babi',
  'repli',
  'friend',
  'kid',
  'know',
  'lot',
  'trust',
  'sitter',
  'shell',
  'give',
  'number',
  'ive',
  'refus',
  'mom',
  'said',
  'could',
  'stay',
  'home',
  'babi',
  'attend',
  'part',
  'ceremoni',
  'shell',
  'come',
  'ill',
  'go',
  'home',
  'lisa',
  'want',
  'parent',
  'whole',
  'time',
  'know',
  'im',
  'look',
  'kid',
  'might',
  'ah',
  'lisa',
  'upset',
  'im',
  'attend'],
 ['im',
  'year',
  'old',
  'man',
  'girlfriend',
  'year',
  'daughter',
  'previou',
  'partner',
  'freshman',
  'high',
  'school',
  'went',
  'yesterday',
  'find',
  'girlfriend',
  'cri',
  'tri',
  'figur',
  'go',
  'help',
  'told',
  'cri',
  'daughter',
  'school',
  'love',
  'daughter',
  'sweetest',
  'girl',
  'ever',
  'wish',
  'daughter',
  'well',
  'behav',
  'describ',
  'daughter',
  'nice',
  'friend',
  'group',
  'troubl',
  'bulli',
  'gener',
  'seem',
  'happi',
  'bet',
  'wonder',
  'mother',
  'would',
  'cri',
  'case',
  'mothermi',
  'girlfriend',
  'cri',
  'daughter',
  'popular',
  'athlet',
  'cheerlead',
  'homecom',
  'queen',
  'school',
  'daughter',
  'march',
  'beat',
  'drum',
  'think',
  'best',
  'anyon',
  'hope',
  'ye',
  'littl',
  'bit',
  'dorki',
  'mother',
  'refer',
  'loser',
  'cri',
  'fit',
  'animeh',
  'friend',
  'actual',
  'start',
  'anim',
  'club',
  'school',
  'pokémon',
  'video',
  'game',
  'wardrob',
  'black',
  'shirt',
  'anim',
  'video',
  'game',
  'charact',
  'happi',
  'kid',
  'got',
  'social',
  'circl',
  'similar',
  'interest',
  'circl',
  'mom',
  'wish',
  'quot',
  'turn',
  'red',
  'never',
  'would',
  'imagin',
  'daughter',
  'would',
  'dweeb',
  'need',
  'grow',
  'colleg',
  'person',
  'favorit',
  'caught',
  'dead',
  'kid',
  'look',
  'like',
  'call',
  'disgust',
  'told',
  'asham',
  'said',
  'daughter',
  'happi',
  'would',
  'feel',
  'hear',
  'mom',
  'cri',
  'perceiv',
  'popular',
  'told',
  'lucki',
  'daughter',
  'deal',
  'lot',
  'issu',
  'kid',
  'day',
  'end',
  'upset',
  'instead',
  'consol',
  'cri',
  'call',
  'name',
  'think',
  'cri',
  'mean',
  'anyth',
  'say',
  'horribl',
  'thing'],
 ['son',
  'daughter',
  'bought',
  'hous',
  'juli',
  'know',
  'move',
  'new',
  'home',
  'alway',
  'come',
  'unexpect',
  'cost',
  'right',
  'probabl',
  'deplet',
  'fund',
  'christma',
  'gave',
  '$',
  'son',
  'gave',
  'differ',
  'gift',
  'total',
  'somewher',
  'around',
  '$',
  'daughter',
  'work',
  'christma',
  'christma',
  'th',
  'stay',
  'us',
  'holiday',
  'yesterday',
  'son',
  'still',
  'live',
  'us',
  'today',
  'told',
  'us',
  'want',
  'say',
  'anyth',
  'sister',
  'feel',
  'hurt',
  'dispar',
  'valu',
  'gift',
  'explain',
  'gift',
  'got',
  'tailor',
  'interest',
  'sister',
  'pass',
  'big',
  'life',
  'mileston',
  'money',
  'import',
  'right',
  'sentiment',
  'said',
  'still',
  'hurt',
  'feel',
  'like',
  'proud',
  'wife',
  'got',
  'realli',
  'frustrat',
  'said',
  'ask',
  'would',
  'choos',
  'least',
  'charit',
  'interpret',
  'action',
  'said',
  'felt',
  'control',
  'said',
  'give',
  'money',
  'proud',
  'experi',
  'new',
  'homeown',
  'know',
  'someth',
  'alway',
  'break',
  'first',
  'six',
  'month',
  'alway',
  'expens',
  'said',
  'fine',
  'good',
  'still',
  'hurt',
  'get',
  'wors',
  'present',
  'feel',
  'like',
  'afterthought',
  'wife',
  'ask',
  'expect',
  'us',
  'get',
  'four',
  'thousand',
  'dollar',
  'worth',
  'gift',
  'said',
  'expect',
  'gift',
  'sister',
  'equal',
  'wife',
  'said',
  'thing',
  'son',
  'said',
  'said',
  'could',
  'given',
  'monetari',
  'equival',
  'gave',
  'told',
  'realli',
  'fair',
  'decid',
  'much',
  'spend',
  'someon',
  'els',
  'gift',
  'furthermor',
  'cash',
  'less',
  'person',
  'gift',
  'give',
  'cash',
  'equival',
  'got',
  'would',
  'get',
  'wors',
  'gift',
  'said',
  'listen',
  'justifi',
  'wife',
  'said',
  'need',
  'justifi',
  'anyth',
  'entitl',
  'point',
  'said',
  'want',
  'talk',
  'unless',
  'everyon',
  'civil',
  'went',
  'room',
  'skip',
  'lunch',
  'breakfast',
  'today',
  'left',
  'work',
  'say',
  'goodby',
  'even',
  'though',
  'right',
  'door',
  'wife',
  'irrit',
  'son',
  'clearli',
  'resent',
  'us',
  'cant',
  'realli',
  'decid',
  'wrong',
  'one',
  'hand',
  'abl',
  'give',
  'money',
  'whoever',
  'want',
  'never',
  'want',
  'hurt',
  'son',
  'feel',
  'wrong'],
 ['got',
  'propos',
  'month',
  'ago',
  'fiancé',
  'jax',
  'younger',
  'brother',
  'jacob',
  'went',
  'colleg',
  'colleg',
  'slept',
  'around',
  'lot',
  'pretti',
  'known',
  'fiancé',
  'knew',
  'brother',
  'jacob',
  'bit',
  'jokest',
  'like',
  'bring',
  'frequent',
  'famili',
  'gather',
  'birthday',
  'holiday',
  'etc',
  'fiancé',
  'famili',
  'often',
  'told',
  'stop',
  'saw',
  'uncomfort',
  'last',
  'night',
  'jacob',
  'birthday',
  'dinner',
  'fiancé',
  'lot',
  'friend',
  'younger',
  'famili',
  'member',
  'jacob',
  'start',
  'get',
  'drunk',
  'start',
  'crack',
  'unfunni',
  'joke',
  'includ',
  'say',
  'surpris',
  'never',
  'took',
  'chanc',
  'sleep',
  'colleg',
  'fed',
  'littl',
  'bit',
  'drunk',
  'told',
  'sleep',
  'life',
  'depend',
  'got',
  'piss',
  'kept',
  'silent',
  'dinner',
  'awkward',
  'rest',
  'time',
  'fiancé',
  'said',
  'famili',
  'said',
  'anyth',
  'wrong',
  'even',
  'wait',
  'tell',
  'morn',
  'woke',
  'text',
  'jacob',
  'friend',
  'tell',
  'im',
  'whore',
  'bitch',
  'anyth',
  'wrong',
  'friend',
  'request',
  'post',
  'get',
  'outsid',
  'opinion'],
 ['throwaway',
  'account',
  'privaci',
  'reason',
  'year',
  'old',
  'daughter',
  'year',
  'ago',
  'dad',
  'divorc',
  'found',
  'gay',
  'bread',
  'winner',
  'high',
  'earner',
  'housewif',
  'prefer',
  'let',
  'us',
  'live',
  'hous',
  'big',
  'one',
  'gate',
  'commun',
  'continu',
  'pay',
  'expens',
  'give',
  'spend',
  'money',
  'maintain',
  'lifestyl',
  'year',
  'later',
  'met',
  'current',
  'husband',
  'year',
  'later',
  'marri',
  'move',
  'daughter',
  'ex',
  'great',
  'friend',
  'especi',
  'sinc',
  'ex',
  'still',
  'much',
  'part',
  'life',
  'also',
  'wed',
  'gift',
  'gave',
  'half',
  'hous',
  'full',
  'husband',
  'daughter',
  'ex',
  'share',
  'castodi',
  'live',
  'us',
  'half',
  'time',
  'problem',
  'ex',
  'pay',
  'daughter',
  'go',
  'realli',
  'expens',
  'privat',
  'school',
  'buy',
  'expens',
  'gift',
  'birthday',
  'bought',
  '$',
  'car',
  'husband',
  'cant',
  'afford',
  'daughter',
  'daughter',
  'step-sist',
  'best',
  'relationship',
  'mainli',
  'husband',
  'ex',
  'hope',
  'would',
  'get',
  'back',
  'togeth',
  'keep',
  'poison',
  'daughter',
  'daughter',
  'use',
  'share',
  'stuff',
  'step-sist',
  'start',
  'ruin',
  'purpos',
  'husband',
  'made',
  'rule',
  'cant',
  'borrow',
  'stay',
  'sinc',
  'refus',
  'see',
  'parent',
  'forc',
  'husband',
  'good',
  'job',
  'noth',
  'close',
  'ex',
  'earn',
  'sinc',
  'decid',
  'hous',
  'enough',
  'help',
  'ex',
  'incom',
  'earn',
  'opinion',
  'enough',
  'step-daught',
  'th',
  'birthday',
  'come',
  'ask',
  'car',
  'ex',
  'gave',
  'daughter',
  'refus',
  'cours',
  'said',
  'would',
  'buy',
  'car',
  'fit',
  'budget',
  'threw',
  'tantrum',
  'threaten',
  'husband',
  'would',
  'never',
  'talk',
  'get',
  'car',
  'waver',
  'refus',
  '$',
  '+',
  'make',
  'year',
  'drown',
  'us',
  'debt',
  'still',
  'pay',
  'student',
  'loan',
  'medic',
  'debt',
  'hand',
  'love',
  'daughter',
  'lot',
  'feel',
  'partli',
  'respons',
  'sinc',
  'ask',
  'daughter',
  'get',
  'car',
  'birthday',
  'aita'],
 ['day',
  'ago',
  'sahm',
  'midst',
  'laundri',
  'husband',
  'breadwinn',
  'work',
  'pilot',
  'ask',
  'could',
  'iron',
  'uniform',
  'shift',
  'say',
  'ye',
  'busi',
  'laundri',
  'kid',
  'homework',
  'cook',
  'etc',
  'said',
  'may',
  'find',
  'time',
  'turn',
  'around',
  'walk',
  'away',
  'complet',
  'ignor',
  'say',
  'hour',
  'later',
  'came',
  'downstair',
  'freak',
  'ask',
  'iron',
  'uniform',
  'ask',
  'told',
  'busi',
  'remind',
  'say',
  'ye',
  'request',
  'blew',
  'say',
  'obvious',
  'care',
  'disaplay',
  'profession',
  'work',
  'umit',
  'unifotm',
  'like',
  'dirti',
  'need',
  'iron',
  'lectur',
  'work',
  'import',
  'although',
  'im',
  'sahm',
  'still',
  'make',
  'job',
  'prioriti',
  'decid',
  'miss',
  'shift',
  'way',
  'teach',
  'lesson',
  'show',
  'lack',
  'cooper',
  'refus',
  'help',
  'could',
  'affect',
  'money',
  'keep',
  'come',
  'call',
  'insan',
  'miss',
  'shift',
  'got',
  'offend',
  'call',
  'hypocrit',
  'call',
  'insan',
  'act',
  'surpris',
  'caus',
  'situat',
  'happen',
  'mean',
  'could',
  'taken',
  'time',
  'chore',
  'iron',
  'uniform',
  'still',
  'thought',
  'reaction',
  'bit',
  'much',
  'aita',
  'ask',
  'iron',
  'uniform',
  'im',
  'one',
  'usual',
  'iron',
  'said',
  'list',
  'hous',
  'chore',
  'list',
  'true',
  'give',
  'prioriti',
  'like',
  'chore',
  'like',
  'homework',
  'laundri'],
 ['im',
  'nurs',
  'work',
  'hour',
  'past',
  'month',
  'abl',
  'save',
  'money',
  'fix',
  'ceil',
  'hous',
  'ive',
  'save',
  'account',
  'sinc',
  'husband',
  'work',
  'sinc',
  'im',
  'tri',
  'balanc',
  'rent',
  'util',
  'payment',
  'husband',
  'golf',
  'enthusiast',
  'friend',
  'differ',
  'friend',
  'well',
  'afford',
  'expens',
  'golf',
  'gear',
  'trip',
  'mention',
  'want',
  'go',
  'golf',
  'trip',
  'next',
  'week',
  'invit',
  'husband',
  'initi',
  'refus',
  'though',
  'realli',
  'want',
  'go',
  'complain',
  'friend',
  'bought',
  'fanci',
  'golf',
  'gear',
  'old',
  'gear',
  'ask',
  'could',
  'lend',
  '$',
  'dollar',
  'could',
  'buy',
  'set',
  'golf',
  'club',
  'refus',
  '$',
  'set',
  'club',
  'crazi',
  'expens',
  'especi',
  'someon',
  'work',
  'got',
  'upset',
  'accus',
  'hold',
  'employ',
  'head',
  'help',
  'anyway',
  'thought',
  'argument',
  'discov',
  'pull',
  '$',
  'dollar',
  'account',
  'purchas',
  'set',
  'behind',
  'back',
  'went',
  'home',
  'explod',
  'swore',
  'hed',
  'return',
  'money',
  'get',
  'back',
  'trip',
  'told',
  'right',
  'take',
  'money',
  'spend',
  'set',
  'club',
  'ceil',
  'need',
  'fix',
  'said',
  'ceil',
  'requir',
  '$',
  'dollar',
  'either',
  'kid',
  'room',
  'affect',
  'demand',
  'return',
  'set',
  'pay',
  'right',
  'told',
  'unfair',
  'feel',
  'stuck',
  'friend',
  'afford',
  'buy',
  'whatev',
  'yell',
  'want',
  'someth',
  'told',
  'get',
  'job',
  'buy',
  'whatev',
  'tri',
  'tell',
  'hell',
  'pay',
  'find',
  'job',
  'get',
  'back',
  'trip',
  'refus',
  'kept',
  'beg',
  'let',
  'go',
  'trip',
  'well',
  'figur',
  'later',
  'said',
  'someth',
  'import',
  'ceil',
  'wouldv',
  'mayb',
  'wait',
  'say',
  'im',
  'abus',
  'control',
  'life',
  'edit',
  '--',
  'first',
  'im',
  'get',
  'mani',
  'comment',
  'im',
  'overwhelm',
  'respond',
  'peopl',
  'suggest',
  'return',
  'club',
  'camt',
  'never',
  'brought',
  'hous',
  'ive',
  'never',
  'seen',
  'know',
  'hide',
  'suspect',
  'brother',
  'hous',
  'im',
  'realli',
  'bad',
  'term',
  'cant',
  'go',
  'hous',
  'argument',
  'push',
  'get',
  'stay',
  'quiet',
  'til',
  'get',
  'back',
  'trip',
  'im',
  'put',
  'foot',
  'refus'],
 ['wednesday',
  'serv',
  'plate',
  'girlfriend',
  'said',
  'want',
  'pasta',
  'go',
  'make',
  'salad',
  'pretti',
  'sure',
  'go',
  'bother',
  'wait',
  'come',
  'back',
  'start',
  'eat',
  'sat',
  'tri',
  'talk',
  'day',
  'ask',
  'tri',
  'make',
  'point',
  'ask',
  'meant',
  'ask',
  'care',
  'go',
  'eat',
  'made',
  'said',
  'would',
  'lunch',
  'got',
  'frustrat',
  'focus',
  'salad',
  'engag',
  'dinner',
  'said',
  'make',
  'dinner',
  'anymor',
  'ask',
  'thought',
  'said',
  'clear',
  'get',
  'upset',
  'make',
  'food',
  'someon',
  'eat',
  'would',
  'better',
  'us',
  'make',
  'separ',
  'meal',
  'know',
  'get',
  'want',
  'one',
  'feel',
  'would',
  'hurt',
  'said',
  'okay',
  'make',
  'unilater',
  'decis',
  'relationship',
  'said',
  'want',
  'cook',
  'anymor',
  'cook',
  'go',
  'make',
  'upset',
  'kind',
  'went',
  'round',
  'round',
  'convers',
  'peter',
  'text',
  'work',
  'thursday',
  'go',
  'make',
  'salmon',
  'decid',
  'tri',
  'cook',
  'would',
  'let',
  'shed',
  'feel',
  'like',
  'one',
  'wed',
  'draw',
  'line',
  'end',
  'make',
  'salmon',
  'surpris',
  'expect',
  'tri',
  'convinc',
  'made',
  'quick',
  'omelett',
  'sat',
  'ask',
  'upset',
  'cook',
  'said',
  'accus',
  'make',
  'point',
  'ask',
  'go',
  'cook',
  'friday',
  'said',
  'put',
  'friday',
  'upset',
  'made',
  'enough',
  'curri',
  'one',
  'person',
  'call',
  'greedi',
  'point',
  'im',
  'ignor'],
 ['context',
  'short',
  'version-',
  'relationship',
  'twin',
  'brother',
  'best',
  'friend',
  'jake',
  'last',
  'year',
  'till',
  'finish',
  'collag',
  'ex',
  'gotten',
  'enough',
  'money',
  'extrem',
  'religi',
  'parent',
  'get',
  'head',
  'start',
  'life',
  'know',
  'go',
  'brother',
  'jake',
  'togeth',
  'whole',
  'time',
  'use',
  'cover',
  'feel',
  'matter',
  'brother',
  'sinc',
  'teen',
  'came',
  'idea',
  'use',
  'parent',
  'get',
  'suspici',
  'parent',
  'angri',
  'brother',
  'even',
  'cut',
  'contract',
  'year',
  'made',
  'push',
  'sinc',
  'us',
  'speak',
  'sinc',
  'refus',
  'speak',
  'brother',
  'due',
  'dismiss',
  'everyth',
  'came',
  'jake',
  'liter',
  'said',
  'understand',
  'choic',
  'brother',
  'wors',
  'like',
  'get',
  'jake',
  'come',
  'parent',
  'nut',
  'deserv',
  'treat',
  'like',
  'year',
  'sinc',
  'everyth',
  'came',
  'im',
  'current',
  'pregnant',
  'twin',
  'soon',
  'husband',
  'brother',
  'jake',
  'move',
  'back',
  'home',
  'town',
  'last',
  'year',
  'tri',
  'via',
  'familyfriend',
  'even',
  'cowork',
  'get',
  'talk',
  'mother',
  'beg',
  'sit',
  'like',
  'adult',
  'let',
  'past',
  'ruin',
  'son',
  'chanc',
  'relationship',
  'uncl',
  'hate',
  'sibl',
  'ruin',
  'famili',
  'mental',
  'health',
  'hour',
  'ago',
  'stop',
  'lunch',
  'show',
  'parent',
  'scan',
  'photo',
  'guess',
  'happi',
  'coupl',
  'liter',
  'shock',
  'minut',
  'brother',
  'tri',
  'hug',
  'push',
  'away',
  'got',
  'work',
  'physic',
  'stop',
  'shake',
  'brother',
  'jake',
  'tri',
  'apologis',
  'talk',
  'happen',
  'beg',
  'relationship',
  'tear',
  'beg',
  'leav',
  'alon',
  'end',
  'brother',
  'hand',
  'letter',
  'said',
  'realli',
  'wish',
  'thing',
  'could',
  'differ',
  'sister',
  'twin',
  'love',
  'kill',
  'eachoth',
  'anymor',
  'basic',
  'lost',
  'rip',
  'letter',
  'scream',
  'famili',
  'want',
  'leav',
  'alon',
  'walk',
  'get',
  'taxi',
  'home',
  'upset',
  'drive',
  'sinc',
  'parent',
  'famili',
  'member',
  'told',
  'im',
  'cruel',
  'bitter',
  'need',
  'stop',
  'live',
  'past',
  'get',
  'hey',
  'guy',
  'repli',
  'anymor',
  'im',
  'emot',
  'feel',
  'well',
  'due',
  'anyon',
  'sub',
  'amaz',
  'someon',
  'gave',
  'brother',
  'number',
  'famili',
  'stop',
  'call',
  'im',
  'gon',
  'na',
  'turn',
  'phone',
  'sake',
  'anyon',
  'ask',
  'fiancé',
  'said',
  'famili',
  'group',
  'anyon',
  'show',
  'home',
  'theyd',
  'better',
  'hope',
  'cop',
  'get',
  'answer',
  'door',
  'id',
  'like',
  'answer',
  'question',
  'lot',
  'peopl',
  'keep',
  'ask',
  'go-',
  'year',
  'see',
  'sign',
  '-',
  'basic',
  'brother',
  'ex',
  'alway',
  'close',
  'obvious',
  'never',
  'thought',
  'theyd',
  'someth',
  'like',
  'like',
  'brother',
  'meant',
  'protect',
  'bad',
  'guy',
  'kind',
  'relationship',
  'jake',
  'live',
  'togeth',
  'two',
  'year',
  'everyth',
  'normal',
  'coupl',
  'hope',
  'clear',
  'lot',
  'curios',
  'bedroom',
  'life',
  'angri',
  'brother',
  'jake',
  'hate',
  'jake',
  'never',
  'forgiv',
  'still',
  'piti',
  'situat',
  'parent',
  'reason',
  'im',
  'angri',
  'twin',
  'brother',
  'obviou',
  'plan',
  'parent',
  'go',
  'contact',
  'till',
  'babi',
  'born',
  'least',
  'month',
  'old',
  'right',
  'head',
  'space',
  'therapi',
  'ye',
  'help',
  'love',
  'trust',
  'peopl',
  'im',
  'way',
  'better',
  'place',
  'year',
  'ago',
  'happen',
  'give',
  'neg',
  'view',
  'lgbt+',
  'commun',
  'cours',
  'brother',
  'jake',
  'hurt',
  'whole',
  'commun',
  'let',
  'forget',
  'homophob',
  'asshol',
  'reason',
  'even',
  'happen',
  'grammar',
  'bad',
  'im',
  'sorri',
  'never',
  'check',
  'grammar',
  'internet',
  'unless',
  'work',
  'relat',
  'plu',
  'exhaust',
  'emot',
  'day'],
 ['-year',
  'old',
  'niec',
  'realli',
  'art',
  'craft',
  'recent',
  'got',
  'crochet',
  'christma',
  'told',
  'surpris',
  'gift',
  'seem',
  'realli',
  'excit',
  'told',
  'realli',
  'look',
  'forward',
  'well',
  'prepar',
  'gift',
  'actual',
  'art',
  'suppli',
  'christma',
  'famili',
  'gather',
  'brought',
  'gift',
  'super',
  'excit',
  'open',
  'open',
  'saw',
  'crochet',
  'anim',
  'im',
  'honest',
  'look',
  'realli',
  'realli',
  'bad',
  'give',
  'idea',
  'look',
  'like',
  'imagin',
  'someth',
  'rbadtaxidermi',
  'crochet',
  'form',
  'help',
  'burst',
  'laugh',
  'stop',
  'laugh',
  'matter',
  'hard',
  'tri',
  'suppress',
  'excus',
  'go',
  'washroom',
  'lock',
  'nearli',
  'minut',
  'came',
  'niec',
  'tear',
  'parent',
  'tri',
  'consol',
  'apolog',
  'profus',
  'told',
  'realli',
  'like',
  'gift',
  'kept',
  'cri',
  'shout',
  'call',
  'liar',
  'suck',
  'art',
  'niec',
  'avoid',
  'vast',
  'major',
  'parti',
  'tri',
  'make',
  'feel',
  'better',
  'display',
  'gift',
  'live',
  'room',
  'cabinet',
  'wife',
  'pull',
  'asid',
  'later',
  'day',
  'told',
  'take',
  'parti',
  'word',
  'realli',
  'ugli',
  'made',
  'uncomfort',
  'surprisingli',
  'adult',
  'understand',
  'situat',
  'feel',
  'realli',
  'bad',
  'feel',
  'like',
  'destroy',
  'niec',
  'confid',
  'im',
  'sure',
  'make'],
 ['tonight',
  'mil',
  'came',
  'dinner',
  'made',
  'swedish',
  'meatbal',
  'gravi',
  'mash',
  'potato',
  'broccoli',
  'home',
  'made',
  'bread',
  'hous',
  'tend',
  'eat',
  'loung',
  'room',
  'unless',
  'big',
  'event',
  'dish',
  'everyon',
  'meal',
  'kid',
  'mil',
  'husband',
  'take',
  'meal',
  'serv',
  'mine',
  'run',
  'line',
  'grab',
  'cloth',
  'hung',
  'earlier',
  'big',
  'deal',
  'serv',
  'gener',
  'portion',
  'everyon',
  'way',
  'thought',
  'could',
  'eat',
  'got',
  'back',
  'line',
  'dinner',
  'gone',
  'ask',
  'anyon',
  'knew',
  'happen',
  'food',
  'bench',
  'mil',
  'pipe',
  'say',
  'want',
  'pile',
  'bowl',
  'full',
  'meatbal',
  'way',
  'would',
  'ever',
  'eat',
  'im',
  'stun',
  'figur',
  'oh',
  'well',
  'ill',
  'grab',
  'fast',
  'food',
  'bit',
  'later',
  'someth',
  'mayb',
  'super',
  'hungri',
  'bad',
  'cook',
  'enough',
  'eaten',
  'want',
  'ask',
  'contain',
  'take',
  'extra',
  'portion',
  'home',
  'dinner',
  'next',
  'night',
  'im',
  'pretti',
  'annoy',
  'point',
  'mention',
  'meant',
  'dinner',
  'night',
  'take',
  'away',
  'meal',
  'next',
  'night',
  'say',
  'oh',
  'well',
  'eat',
  'repli',
  'thank',
  'hand',
  'contain',
  'want',
  'eat',
  'leftov',
  'leav',
  'husband',
  'put',
  'kid',
  'bed',
  'come',
  'back',
  'ask',
  'wrong',
  'tell',
  'im',
  'hungri',
  'cook',
  'meal',
  'get',
  'eat',
  'im',
  'piss',
  'agre',
  'mil',
  'way',
  'line',
  'messag',
  'action',
  'greedi',
  'selfish',
  'owe',
  'apolog',
  'repli',
  'tell',
  'act',
  'like',
  'asshol',
  'cook',
  'anticip',
  'would',
  'take',
  'home',
  'portion',
  'next',
  'day',
  'offer',
  'eat',
  'want',
  'fault',
  'owe',
  'apolog',
  'attitud',
  'snarki',
  'comment',
  'also',
  'post',
  'social',
  'media',
  'happen',
  'peopl',
  'say',
  'im',
  'asshol',
  'rude',
  'hostess',
  'also',
  'add',
  'im',
  'current',
  'pregnant',
  'feel',
  'like',
  'quit',
  'unreason',
  'time',
  'due',
  'hormon',
  'aita'],
 ['post',
  'small',
  'updat',
  'page',
  'groom',
  'whay',
  'possibl',
  'trigger',
  'bride',
  'edit',
  'post',
  'messag',
  'similar',
  'dress',
  'profil',
  'edit',
  '°',
  'open',
  'area',
  'everyon',
  'wear',
  'short',
  'sleev',
  'strapless',
  'orand',
  'spaghetti',
  'strap',
  'edit',
  'updat',
  'show',
  'parent',
  'messag',
  'theyr',
  'press',
  'charg',
  'last',
  'edit',
  'pleas',
  'send',
  'messag',
  'ask',
  'pic',
  'comfort',
  'stop',
  'recent',
  'attend',
  'wed',
  'bride',
  'accus',
  'destroy',
  'big',
  'day',
  'yr',
  'old',
  'wed',
  'dad',
  'friend',
  'daughter',
  'one',
  'demand',
  'girl',
  'modest',
  'simpl',
  'colour',
  'makeup',
  'request',
  'okay',
  'event',
  'big',
  'day',
  'came',
  'wore',
  'satin',
  'sage',
  'dress',
  'beauti',
  'still',
  'modest',
  'makeup',
  'shimmeri',
  'eyeshadow',
  'transpar',
  'gloss',
  'wed',
  'bride',
  'mom',
  'suddenli',
  'ask',
  'talk',
  'alon',
  'weird',
  'sinc',
  'talk',
  'dad',
  'instead',
  'bought',
  'bride',
  'dress',
  'room',
  'awkward',
  'bride',
  'start',
  'berat',
  'wear',
  'dress',
  'say',
  'im',
  'flashi',
  'im',
  'steal',
  'spotlight',
  'gave',
  'altern',
  'leav',
  'wed',
  'wear',
  'black',
  'dress',
  'doubl',
  'size',
  'remov',
  'makeup',
  'refus',
  'outfit',
  'bride',
  'want',
  'wear',
  'wouldv',
  'bothersom',
  'pull',
  'dress',
  'time',
  'plu',
  'parent',
  'would',
  'ask',
  'origin',
  'dress',
  'bride',
  'start',
  'cri',
  'told',
  'parent',
  'everyth',
  'demand',
  'got',
  'angri',
  'said',
  'theyr',
  'go',
  'give',
  'wed',
  'money',
  'lead',
  'fight',
  'dad',
  'friend',
  'today',
  'bride',
  'sent',
  'hate',
  'messag',
  'say',
  'ruin',
  'wed',
  'aita'],
 ['ill',
  'perfac',
  'say',
  'see',
  'michael',
  'realli',
  'funni',
  'bit',
  'sarcast',
  'though',
  'guy',
  'pretti',
  'much',
  'get',
  'along',
  'well',
  'weve',
  'date',
  'month',
  'michael',
  'like',
  'food',
  'cook',
  'want',
  'come',
  'hous',
  'cook',
  'dinner',
  'also',
  'meet',
  'dog',
  'first',
  'time',
  'saw',
  'picturesvideo',
  'overprotect',
  'grab',
  'need',
  'store',
  'went',
  'hous',
  'went',
  'well',
  'met',
  'dog',
  'sat',
  'talk',
  'suddenli',
  'dog',
  'start',
  'move',
  'funni',
  'way',
  'michael',
  'laugh',
  'look',
  'felt',
  'confus',
  'ask',
  'dog',
  'michael',
  'said',
  'dog',
  'tell',
  'like',
  'ummm',
  'okay',
  'flatout',
  'said',
  'dog',
  'thought',
  'ugli',
  'shock',
  'complet',
  'look',
  'michael',
  'ask',
  'seriou',
  'start',
  'explain',
  'dog',
  'like',
  'peopl',
  'get',
  'offend',
  'anim',
  'brhavior',
  'felt',
  'horribl',
  'person',
  'alway',
  'struggl',
  'self',
  'esteem',
  'stranger',
  'word',
  'ugli',
  'issu',
  'dog',
  'michael',
  'said',
  'like',
  'indirectli',
  'give',
  'opinion',
  'look',
  'use',
  'dog',
  'excus',
  'long',
  'stori',
  'short',
  'argument',
  'end',
  'cancel',
  'dinner',
  'go',
  'home',
  'michael',
  'call',
  'sever',
  'time',
  'pick',
  'lash',
  'entir',
  'time',
  'say',
  'overreact',
  'blame',
  'punish',
  'someth',
  'dog',
  'advis',
  'get',
  'rid',
  'toxic',
  'sensit',
  'deal',
  'whatev',
  'insecur',
  'soon',
  'possibl',
  'happen',
  'set',
  'tone',
  'relationship',
  'eventu',
  'marriag',
  'later',
  'respond',
  'later',
  'caus',
  'anoth',
  'argument',
  'sister',
  'said',
  'mess',
  'thing',
  'stupid',
  'laugh',
  'reason',
  'abl',
  'overeact'],
 ['mother',
  'daughter',
  'previou',
  'marriag',
  'three',
  'children',
  'rest',
  'boy',
  'import',
  'know',
  'last',
  'week',
  'mom',
  'talk',
  'one',
  'friend',
  'color',
  'want',
  'bridesmaid',
  'dress',
  'mom',
  'plan',
  'wed',
  'new',
  'boyfriend',
  'past',
  'two',
  'month',
  'engag',
  'one',
  'year',
  'wed',
  'decemb',
  'day',
  'birthday',
  'mom',
  'plan',
  'parti',
  'around',
  'time',
  'wed',
  'insist',
  'alright',
  'boyfriend',
  'would',
  'go',
  'honeymoon',
  'next',
  'day',
  'talk',
  'ask',
  'go',
  'look',
  'dress',
  'sinc',
  'ask',
  'flower',
  'girl',
  'could',
  'see',
  'disappoint',
  'look',
  'face',
  'ask',
  'confus',
  'respond',
  'minut',
  'later',
  'said',
  'well',
  'talk',
  'later',
  'hour',
  'later',
  'mom',
  'came',
  'thought',
  'go',
  'talk',
  'dress',
  'situat',
  'instead',
  'sat',
  'explain',
  'new',
  'boyfriend',
  'thought',
  'itd',
  'better',
  'fit',
  'three',
  'daughter',
  'lead',
  'wed',
  'whatev',
  'cool',
  'import',
  'note',
  'mom',
  'alway',
  'want',
  'girl',
  'girl',
  'look',
  'much',
  'like',
  'father',
  'caus',
  'strain',
  'relationship',
  'dad',
  'explain',
  'mother',
  'postpartum',
  'connect',
  'gave',
  'birth',
  'three',
  'younger',
  'step',
  'sibl',
  'look',
  'like',
  'hertriplet',
  'yo',
  'obvious',
  'overjoy',
  'hurt',
  'see',
  'happi',
  'brother',
  'similar',
  'experi',
  'significantli',
  'better',
  'look',
  'like',
  'know',
  'dramat',
  'thing',
  'say',
  'sometim',
  'feel',
  'like',
  'mother',
  'feel',
  'connect',
  'birth',
  'letdown',
  'right',
  'gate',
  'done',
  'ask',
  'dress',
  'still',
  'one',
  'disappoint',
  'look',
  'face',
  'came',
  'tell',
  'invit',
  'wed',
  'simpli',
  'boyfriend',
  'thought',
  'would',
  'upset',
  'famili',
  'mom',
  'previou',
  'marriag',
  'like',
  'dad',
  'also',
  'explain',
  'birthday',
  'happen',
  'either',
  'due',
  'want',
  'go',
  'honeymoon',
  'right',
  'away',
  'turn',
  'scream',
  'match',
  'yell',
  'im',
  'sorri',
  'look',
  'like',
  'enough',
  'love',
  'im',
  'sorri',
  'conceit',
  'get',
  'fact',
  'look',
  'like',
  'dad',
  'kick',
  'boyfriend',
  'within',
  'hour',
  'cri',
  'said',
  'brother',
  'know',
  'happen',
  'refus',
  'go',
  'wed',
  'upset',
  'even',
  'though',
  'care',
  'feel',
  'right',
  'brother',
  'actual',
  'relationship',
  'probabl',
  'mess',
  'let',
  'anger',
  'get',
  'best',
  'aita',
  'edit',
  'live',
  'dad',
  'full',
  'time',
  'custodi',
  'agreement',
  'know',
  'usual',
  'visit',
  'mom',
  'free',
  'ask',
  'come',
  'im',
  'oblig',
  'go',
  'parent',
  'marri',
  'two',
  'year',
  'prior',
  'second',
  'brother',
  'divorc',
  'birth',
  'date',
  'divorc',
  'way',
  'make',
  'work',
  'edit',
  'brother',
  'full',
  'blood',
  'girl',
  'mom',
  'half',
  'blood',
  'said',
  'step',
  'consid',
  'relat',
  'ive',
  'never',
  'room',
  'five',
  'minut',
  'due',
  'mom',
  'allow',
  'brother',
  'invit',
  'boyfriend',
  'actulli',
  'like',
  'famili',
  'get',
  'piss',
  'id',
  'excus',
  'exclud',
  'honestli',
  'care',
  'anymor',
  'situat',
  'see',
  'brother',
  'back',
  'dad',
  'threaten',
  'call',
  'cp',
  'ive',
  'talk',
  'want',
  'get',
  'three',
  'girl',
  'involv',
  'despit',
  'relationship'],
 ['daughter',
  '&',
  'danc',
  'team',
  'team',
  'competit',
  'sunday',
  'excit',
  'proud',
  'competit',
  'dad',
  'suggest',
  'go',
  'eat',
  'said',
  'would',
  'pay',
  'wherev',
  'want',
  'older',
  'daughter',
  'love',
  'seafood',
  'ask',
  'year',
  'go',
  'restaur',
  'unlimit',
  'crab',
  'leg',
  'prici',
  'restaur',
  'weve',
  'never',
  'abl',
  'immedi',
  'suggest',
  'restaur',
  'dad',
  'like',
  'suggest',
  'younger',
  'daughter',
  'suggest',
  'go',
  'favorit',
  'restaur',
  'local',
  'mexican',
  'restaur',
  'instead',
  'weve',
  'mani',
  'time',
  'much',
  'afford',
  'know',
  'would',
  'wast',
  'opportun',
  'said',
  'older',
  'daughter',
  'suggest',
  'made',
  'sens',
  'somewher',
  'wed',
  'never',
  'younger',
  'daughter',
  'complain',
  'like',
  'anyth',
  'assur',
  'menu',
  'would',
  'crab',
  'leg',
  'got',
  'sure',
  'enough',
  'mani',
  'dish',
  'seafood',
  'includ',
  'steak',
  'youngest',
  'favorit',
  'even',
  'though',
  'dish',
  'without',
  'seafood',
  'youngest',
  'daughter',
  'said',
  'hungri',
  'restaur',
  'smell',
  'weird',
  'order',
  'steak',
  'anyway',
  'younger',
  'daughter',
  'pout',
  'throughout',
  'meal',
  'pick',
  'steak',
  'older',
  'daughter',
  'happi',
  'complet',
  'absorb',
  'crab',
  'leg',
  'mom',
  'tri',
  'talk',
  'younger',
  'daughter',
  'competit',
  'respons',
  'end',
  'meal',
  'stuf',
  'except',
  'youngest',
  'dad',
  'told',
  'everyon',
  'pick',
  'dessert',
  'go',
  'except',
  'youngest',
  'clearli',
  'hungri',
  'ask',
  'dad',
  'leav',
  'alon',
  'alreadi',
  'upset',
  'got',
  'home',
  'tri',
  'talk',
  'explain',
  'rare',
  'opportun',
  'sometim',
  'need',
  'let',
  'someon',
  'els',
  'someth',
  'nice',
  'told',
  'could',
  'taken',
  'us',
  'mexican',
  'restaur',
  'weekend',
  'said',
  'restaur',
  'go',
  'night',
  'competit',
  'special',
  'went',
  'somewher',
  'like',
  'point',
  'know',
  'like',
  'tri',
  'said',
  'know',
  'hate',
  'seafood',
  'restaur',
  'known',
  'seafood',
  'cours',
  'want',
  'go',
  'special',
  'event',
  'annoy',
  'monday',
  'tuesday',
  'start',
  'mellow',
  'wednesday',
  'morn',
  'ask',
  'go',
  'mexican',
  'restaur',
  'tomorrow',
  'said',
  'week',
  'behavior',
  'well',
  'see',
  'next',
  'week',
  'happi',
  'hard',
  'think',
  'rude',
  'grandpar',
  'know',
  'teenag',
  'everyth',
  'feel',
  'like',
  'bigger',
  'deal',
  'let',
  'behavior',
  'slide',
  'taken',
  'mexican',
  'restaur'],
 ['daughter',
  'aria',
  'abandon',
  'us',
  'stepmoth',
  'younger',
  'half-sist',
  'go',
  'live',
  'enabl',
  'ex-wif',
  'sandra',
  'husband',
  'custodi',
  'sandra',
  'alway',
  'less',
  'strict',
  'alway',
  'let',
  'aria',
  'want',
  'never',
  'home',
  'rule',
  'also',
  'buy',
  'aria',
  'everyth',
  'want',
  'want',
  'live',
  'sandra',
  'live',
  'town',
  'aria',
  'highschool',
  'live',
  'min',
  'away',
  'one',
  'rule',
  'went',
  'meet',
  'friend',
  'mean',
  'drive',
  'next',
  'time',
  'met',
  'friend',
  'turn',
  'come',
  'friend',
  'parent',
  'want',
  'drive',
  'kid',
  'aria',
  'allow',
  'meet',
  'everyth',
  'fine',
  'way',
  'year',
  'major',
  'fallout',
  'happen',
  'last',
  'year',
  'highschool',
  'went',
  'trip',
  'anoth',
  'countri',
  'school',
  'bother',
  'send',
  'coupl',
  'text',
  'away',
  'day',
  'decid',
  'ground',
  'learn',
  'respect',
  'show',
  'love',
  'famili',
  'insist',
  'sent',
  'messag',
  'mother',
  'bare',
  'heard',
  'never',
  'lot',
  'friend',
  'invit',
  'popular',
  'girl',
  'birthday',
  'parti',
  'punish',
  'go',
  'parti',
  'forget',
  'famili',
  'got',
  'upset',
  'start',
  'call',
  'mother',
  'come',
  'pick',
  'illeg',
  'get',
  'week',
  'plu',
  'want',
  'go',
  'mother',
  'would',
  'lift',
  'punish',
  'let',
  'go',
  'parti',
  'mother',
  'came',
  'end',
  'week',
  'told',
  'aria',
  'come',
  'back',
  'want',
  'wait',
  'heard',
  'noth',
  'sister',
  'kept',
  'ask',
  'come',
  'back',
  'know',
  'explain',
  'love',
  'us',
  'prefer',
  'stay',
  'mother',
  'parti',
  'free-of-rul',
  'life',
  'year',
  'weve',
  'commun',
  'lawyer',
  'sandra',
  'intent',
  'help',
  'get',
  'daughter',
  'back',
  'final',
  'theyv',
  'demand',
  'pay',
  'child',
  'support',
  'even',
  'year',
  'old',
  'pay',
  'half',
  'colleg',
  'expens',
  'law',
  'aria',
  'turn',
  'adult',
  'start',
  'ad',
  'everyth',
  'pay',
  'excel',
  'send',
  'sandra',
  'updat',
  'know',
  'damag',
  'daughter',
  'expect',
  'aria',
  'pay',
  'debt',
  'gave',
  'sandra',
  'option',
  'pay',
  'refus',
  'aria',
  'tri',
  'get',
  'touch',
  'told',
  'cant',
  'fix',
  'emot',
  'part',
  'unless',
  'fix',
  'money',
  'part',
  'first',
  'need',
  'prove',
  'care',
  'money',
  'sandra',
  'say',
  'im',
  'asshol',
  'think',
  'sinc',
  'done',
  'noth',
  'tri',
  'take',
  'daughter',
  'away',
  'final',
  'want',
  'aita'],
 ['firstli',
  'sorri',
  'mobil',
  'throwaway',
  'emigr',
  'husband',
  'home',
  'countri',
  'year',
  'ago',
  'beauti',
  'son',
  'mother',
  'alway',
  'control',
  'frankli',
  'typic',
  'narcissist',
  'dead',
  'move',
  'even',
  'upset',
  'son',
  'combin',
  'husband',
  'termin',
  'ill',
  'pandem',
  'abl',
  'meet',
  'son',
  'week',
  'complain',
  'bitterli',
  'cheat',
  'special',
  'time',
  'first',
  'grandson',
  'exactli',
  'excit',
  'come',
  'visit',
  'us',
  'husband',
  'convinc',
  'tri',
  'let',
  'son',
  'relationship',
  'well',
  'moment',
  'arriv',
  'complain',
  '-',
  'hous',
  'small',
  'garden',
  'look',
  'etc',
  'complain',
  'son',
  'speak',
  'much',
  'english',
  'cant',
  'commun',
  'complain',
  'son',
  'want',
  'hug',
  'want',
  'stay',
  'patern',
  'grandmoth',
  'son',
  'spilt',
  'drink',
  'shout',
  'take',
  'gentl',
  'approach',
  'told',
  'lost',
  'tell',
  'idea',
  'rais',
  'kid',
  'told',
  'need',
  'respect',
  'method',
  'leav',
  'stop',
  'whole',
  'rest',
  'day',
  'could',
  'tell',
  'furiou',
  'night',
  'son',
  'one',
  'night',
  'go',
  'sleep',
  'poor',
  'husband',
  'also',
  'ib',
  'flare',
  'earli',
  'hour',
  'realis',
  'medic',
  'son',
  'settl',
  'around',
  'decid',
  'quick',
  'run',
  'hour',
  'pharmaci',
  'get',
  'medic',
  'leav',
  'son',
  'husband',
  'asleep',
  'sofa',
  'gone',
  'min',
  'came',
  'back',
  'mother',
  'rental',
  'car',
  'gone',
  'son',
  'husband',
  'still',
  'asleep',
  'shock',
  'gone',
  'tri',
  'mother',
  'mobil',
  'answer',
  'min',
  'becom',
  'increasingli',
  'hyster',
  'call',
  'polic',
  'came',
  'fast',
  'explain',
  'took',
  'thing',
  'serious',
  'hour',
  'later',
  'mother',
  'pull',
  'back',
  'start',
  'tell',
  'polic',
  'adult',
  'know',
  'english',
  'told',
  'could',
  'take',
  'son',
  'day',
  'current',
  'month',
  'pregnant',
  'said',
  'must',
  'pregnanc',
  'brain',
  'polic',
  'seem',
  'accept',
  'act',
  'like',
  'matter',
  'close',
  'sinc',
  'son',
  'home',
  'safe',
  'show',
  'everyon',
  'toy',
  'bought',
  'told',
  'mother',
  'leav',
  'never',
  'want',
  'see',
  'start',
  'tell',
  'famili',
  'kick',
  'reason',
  'cant',
  'find',
  'hotel',
  'blew',
  'phone',
  'told',
  'kidnap',
  'son',
  'go',
  'pursu',
  'polic',
  'call',
  '-hole',
  'say',
  'son',
  'kidnap',
  'taken',
  'day',
  'trip',
  'love',
  'grandmoth',
  'accus',
  'like',
  'could',
  'affect',
  'mother',
  'job',
  'nurs',
  'edit',
  '-',
  'lot',
  'peopl',
  'say',
  'husband',
  'push',
  'meet',
  'right',
  'think',
  'wrong',
  'forc',
  'agre',
  'ultim',
  'final',
  'say',
  'get',
  'lucki',
  'parent',
  'amaz',
  'despit',
  'know',
  'mother',
  'great',
  'want',
  'son',
  'miss',
  'expect',
  'snide',
  'comment',
  'awkward',
  'readi',
  'ignor',
  'son',
  'sinc',
  'mother',
  'normal',
  'weapon',
  'choic',
  'nasti',
  'comment',
  'understand',
  'kept',
  'smile',
  'know',
  'feel',
  'grief',
  'son',
  'go',
  'miss',
  'anoth',
  'grandmoth',
  'made',
  'bed',
  'edit',
  'holi',
  '*',
  '*',
  'real',
  'life',
  'tri',
  'chang',
  'narr',
  'kidnap',
  'son',
  'also',
  'think',
  'husband',
  'could',
  'sleep',
  'abduct',
  'marriag',
  'shamhow',
  'could',
  'reckless',
  'leav',
  'child',
  '@',
  'even',
  'updat',
  'sort',
  'thank',
  'everyon',
  'support',
  'seem',
  'mayb',
  'got',
  'bit',
  'lost',
  'translat',
  'emot',
  'polic',
  'spoke',
  'nativ',
  'languag',
  'fast',
  'strong',
  'accent',
  'case',
  'exactli',
  'drop',
  'spoken',
  'mother',
  'basic',
  'told',
  'approach',
  'hous',
  'consid',
  'threatharass',
  'act',
  'continu',
  'investig',
  'feel',
  'leav',
  'countri',
  'tomorrow',
  'enough',
  'resolut',
  'appar',
  'shown',
  'ticket',
  'info',
  'still',
  'get',
  'lot',
  'grief',
  'famili',
  'say',
  'understand',
  'mother',
  'struggl',
  'husband',
  'die',
  'on…thi',
  'make',
  'question',
  'reaction',
  'cant',
  'forgiv',
  'reach',
  'rel',
  'embassi',
  'feel',
  'like',
  'noth',
  'happen',
  'partner',
  'famili',
  'amaz',
  'look',
  'us'],
 ['okay',
  'friend',
  'plan',
  'wed',
  'nearli',
  'year',
  'want',
  'bridesmaid',
  'thing',
  'gone',
  'last',
  'coupl',
  'year',
  'lot',
  'friend',
  'drift',
  'apart',
  'abl',
  'attend',
  'medic',
  'reason',
  'fell',
  'bridesmaid',
  'origin',
  'plan',
  'girl',
  'attend',
  'day',
  'wed',
  'hectic',
  'bride',
  'got',
  'overwhelm',
  'bridesmaid',
  'basic',
  'whip',
  'everyth',
  'order',
  'calm',
  'hair',
  'stylist',
  'cancel',
  'reach',
  'friend',
  'mine',
  'ask',
  'could',
  'swing',
  'last',
  'minut',
  'help',
  'hair',
  'appar',
  'bride',
  'like',
  'band',
  'use',
  'coffe',
  'colour',
  'white',
  'white',
  'bobbi',
  'pin',
  'match',
  'hair',
  'colour',
  'ribbon',
  'curl',
  'right',
  'one',
  'point',
  'said',
  'friend',
  'idiot',
  'id',
  'heard',
  'enough',
  'understand',
  'stress',
  'need',
  'name',
  'call',
  'someon',
  'got',
  'equip',
  'last',
  'second',
  'drove',
  'minut',
  'event',
  'someon',
  'even',
  'know',
  'favour',
  'even',
  'paid',
  'work',
  'though',
  'offer',
  'told',
  'bride',
  'calm',
  'speak',
  'friend',
  'way',
  'instead',
  'end',
  'yell',
  'well',
  'told',
  'best',
  'could',
  'call',
  'pathet',
  'said',
  'outrag',
  'id',
  'lectur',
  'import',
  'stress',
  'day',
  'life',
  'said',
  'half',
  'mind',
  'cut',
  'bridesmaid',
  'told',
  'id',
  'save',
  'troubl',
  'left',
  'aftermath',
  'insan',
  'bridesmaid',
  'call',
  'tell',
  'ah',
  'selfish',
  'put',
  'littl',
  'attitud',
  'hour',
  'stress',
  'bride',
  'call',
  'cri',
  'betray',
  'horribl',
  'friend',
  'bride',
  'mother',
  'previous',
  'phone',
  'number',
  'call',
  'tell',
  'disgust',
  'attitud',
  'even',
  'boyfriend',
  'say',
  'could',
  'suck',
  'total',
  'ah',
  'move',
  'walk',
  'like',
  'stanc',
  'high',
  'stress',
  'feel',
  'like',
  'call',
  'friend',
  'name',
  'think',
  'call',
  'pathet',
  'stress',
  'excus',
  'talk',
  'someon',
  'opinion',
  'especi',
  'peopl',
  'tri',
  'help',
  'could',
  'wrong',
  'guess',
  'act',
  'like',
  'bridezilla',
  'thought',
  'aita'],
 ['im',
  'daughter',
  'harperf',
  'previou',
  'relationship',
  'full',
  'custodi',
  'mom',
  'involv',
  'life',
  'year',
  'ago',
  'marri',
  'wife',
  'ninaf',
  'tri',
  'child',
  'went',
  'doctor',
  'turn',
  'cant',
  'anymor',
  'kid',
  'due',
  'complic',
  'decid',
  'use',
  'sperm',
  'donor',
  'result',
  'son',
  'mark',
  'born',
  'month',
  'ago',
  'problem',
  'start',
  'nina',
  'got',
  'pregnant',
  'harper',
  'happi',
  'mark',
  'born',
  'thing',
  'got',
  'wors',
  'harper',
  'use',
  'spend',
  'day',
  'week',
  'togeth',
  'us',
  'without',
  'wife',
  'mark',
  'born',
  'anymor',
  'cant',
  'leav',
  'wife',
  'alon',
  'day',
  'week',
  'newborn',
  'harper',
  'angri',
  'main',
  'problem',
  'start',
  'day',
  'ago',
  'nina',
  'decid',
  'make',
  'nurseri',
  'mark',
  'instead',
  'bedroom',
  'multipl',
  'reason',
  'home',
  'bedroom',
  'master',
  'bedroom',
  'one',
  'side',
  'bedroom',
  'side',
  'one',
  'master',
  'room',
  'one',
  'harper',
  'hard',
  'nina',
  'go',
  'side',
  'home',
  'multipl',
  'time',
  'night',
  'mark',
  'wake',
  'ask',
  'harper',
  'pack',
  'stuff',
  'go',
  'one',
  'bedroom',
  'could',
  'give',
  'room',
  'mark',
  'first',
  'everyth',
  'seem',
  'alright',
  'said',
  'ok',
  'went',
  'room',
  'start',
  'pack',
  'less',
  'hour',
  'later',
  'brother',
  'show',
  'home',
  'ask',
  'harper',
  'call',
  'ask',
  'take',
  'came',
  'room',
  'stuff',
  'told',
  'give',
  'son',
  'left',
  'brother',
  'told',
  'could',
  'go',
  'one',
  'night',
  'day',
  'back',
  'even',
  'talk',
  'im',
  'receiv',
  'call',
  'famili',
  'call',
  'ah',
  'name',
  'trust',
  'judgement',
  'clearli',
  'favor',
  'harper',
  'first',
  'grandchild',
  'famili',
  'everyon',
  'favorit',
  'also',
  'tri',
  'accept',
  'mark',
  'son',
  'could',
  'see',
  'abl',
  'yet',
  'decid',
  'post',
  'get',
  'unbias',
  'opinion',
  'aita',
  'edit',
  'updat',
  'promis',
  'realiz',
  'ive',
  'mess',
  'went',
  'brother',
  'home',
  'tri',
  'get',
  'harper',
  'back',
  'even',
  'let',
  'see',
  'say',
  'want',
  'see',
  'said',
  'would',
  'let',
  'go',
  'back',
  'want',
  'go',
  'move',
  'anoth',
  'home',
  'close',
  'home',
  'want',
  'harper',
  'close',
  'keep',
  'eye',
  'make',
  'sure',
  'treat',
  'right',
  'use',
  'live',
  'close',
  'got',
  'marri',
  'wife',
  'famili',
  'get',
  'along',
  'move',
  'somewher',
  'farther',
  'away',
  'made',
  'harper',
  'sad',
  'harper',
  'get',
  'choos',
  'bedroom',
  'want',
  'new',
  'home',
  'spend',
  'time',
  'harper',
  'least',
  'one',
  'day',
  'week',
  'accept',
  'caus',
  'lot',
  'problem',
  'sinc',
  'wife',
  'like',
  'condit',
  'think',
  'reason',
  'got',
  'angri',
  'took',
  'mark',
  'went',
  'parent',
  'home',
  'stay',
  'im',
  'also',
  'receiv',
  'text',
  'inlaw',
  'call',
  'ah',
  'right',
  'im',
  'look',
  'new',
  'home',
  'closer',
  'brother',
  'home',
  'call',
  'harper',
  'brother',
  'convinc',
  'talk',
  'cri',
  'whole',
  'time',
  'tell',
  'felt',
  'like',
  'want',
  'anymor',
  'hear',
  'cri',
  'like',
  'realli',
  'broke',
  'heart',
  'honestli',
  'never',
  'meant',
  'hurt',
  'mani',
  'apolog',
  'gift',
  'final',
  'agre',
  'see',
  'go',
  'brother',
  'home',
  'everyday',
  'spend',
  'time',
  'also',
  'final',
  'agre',
  'come',
  'home',
  'find',
  'new',
  'home'],
 ['throwaway',
  'want',
  'sister',
  'find',
  'sister',
  'anni',
  'sf',
  'obsess',
  'girl',
  'let',
  'say',
  'jane',
  'sf',
  'husband',
  'cheat',
  'mid',
  'idk',
  'jane',
  'first',
  'last',
  'one',
  'decent',
  'one',
  'realiz',
  'marri',
  'broke',
  'found',
  'sent',
  'proof',
  'cheat',
  'wife',
  'somehow',
  'spun',
  'tri',
  'break',
  'us',
  'sister',
  'fell',
  'stupid',
  'jane',
  'alreadi',
  'block',
  'everyth',
  'one',
  'basic',
  'stalk',
  'month',
  'anyway',
  'anni',
  'stalk',
  'jane',
  'social',
  'time',
  'jane',
  'post',
  'someth',
  'bad',
  'happen',
  'anni',
  'call',
  'gloat',
  'time',
  'post',
  'anyth',
  'good',
  'happen',
  'anni',
  'start',
  'cri',
  'fair',
  'last',
  'month',
  'jane',
  'appar',
  'got',
  'high',
  'pay',
  'new',
  'job',
  'got',
  'engag',
  'pregnant',
  'anni',
  'full',
  'meltdown',
  'ever',
  'want',
  'talk',
  'shell',
  'call',
  'least',
  'twice',
  'week',
  'shit',
  'text',
  'multipl',
  'time',
  'day',
  'want',
  'advic',
  'want',
  'leav',
  'want',
  'vent',
  'endlessli',
  'sister',
  'also',
  'tire',
  'mom',
  'say',
  'need',
  'gentl',
  'hard',
  'anni',
  'want',
  'stop',
  'tri',
  'sympathi',
  'tough',
  'love',
  'chang',
  'subject',
  'suggest',
  'counsel',
  'noth',
  'work',
  'nonstop',
  'jane',
  'jane',
  'said',
  'hit',
  'boil',
  'point',
  'morn',
  'go',
  'jane',
  'fianc',
  'would',
  'cheat',
  'fat',
  'pregnant',
  'babi',
  'would',
  'basterd',
  'etc',
  'said',
  'care',
  'lost',
  'week',
  'lifetim',
  'reason',
  'made',
  'snap',
  'told',
  'anni',
  'slimi',
  'serial',
  'cheater',
  'like',
  'creep',
  'bare',
  'legal',
  'teen',
  'never',
  'support',
  'ill',
  'depress',
  'never',
  'lift',
  'finger',
  'around',
  'hous',
  'sulk',
  'babysit',
  'kid',
  'constantli',
  'make',
  'mean',
  'joke',
  'critic',
  'appear',
  'harshli',
  'even',
  'though',
  'averag',
  'look',
  'said',
  'someth',
  'like',
  'mayb',
  'obsess',
  'jane',
  'life',
  'massiv',
  'dumpster',
  'fire',
  'sinc',
  'deactiv',
  'social',
  'im',
  'get',
  'nonstop',
  'hate',
  'anni',
  'friend',
  'extend',
  'famili',
  'cruel',
  'appar',
  'moral',
  'condon',
  'cheat',
  'none',
  'go',
  'actual',
  'cheater',
  'though',
  'point',
  'cheater',
  'sister',
  'say',
  'wrong',
  'ah',
  'say',
  'harshli',
  'anni',
  'victim',
  'idk',
  'reddit',
  '&',
  'xb',
  'edit',
  'thank',
  'comment',
  'award',
  'advic',
  'sorri',
  'cant',
  'repli',
  'everyon',
  'ill',
  'keep',
  'suggest',
  'therapi',
  'anni',
  'ill',
  'track',
  'jane',
  'social',
  'let',
  'know',
  'anyth',
  'happen',
  'ill',
  'let',
  'know',
  'peopl',
  'suggest',
  'show',
  'thread',
  'anni',
  'know',
  'shell',
  'total',
  'explod',
  'think',
  'share',
  'privat',
  'stuff',
  'onlin',
  'even',
  'anonym'],
 ['neighbour',
  'mine',
  'children',
  'age',
  'seen',
  'mani',
  'timesand',
  'alway',
  'demand',
  'peopl',
  'take',
  'next',
  'elev',
  'kid',
  'need',
  'get',
  'home',
  'physic',
  'shove',
  'elev',
  'forc',
  'peopl',
  'includ',
  'elderli',
  'father',
  'way',
  'home',
  'work',
  '-',
  'take',
  'public',
  'transit',
  '-',
  'bu',
  'kid',
  'scream',
  'run',
  'aisl',
  'basic',
  'make',
  'scene',
  'driver',
  'ask',
  'kid',
  'sit',
  'get',
  'hurt',
  'sure',
  'enough',
  'one',
  'kid',
  'spin',
  'around',
  'one',
  'pole',
  'bump',
  'head',
  'go',
  'train',
  'track',
  'near',
  'place',
  'start',
  'scream',
  'look',
  'like',
  'physic',
  'okay',
  'blood',
  'even',
  'red',
  'mark',
  'screech',
  'rest',
  'ride',
  'build',
  'first',
  'build',
  'hit',
  'elev',
  'button',
  'came',
  'doubl',
  'stroller',
  'gaggl',
  'children',
  'run',
  'around',
  'step',
  'elev',
  'held',
  'door',
  'told',
  'would',
  'get',
  'wait',
  'next',
  'one',
  'said',
  'excus',
  'heavi',
  'sigh',
  'said',
  'stroller',
  'fit',
  'get',
  'take',
  'next',
  'one',
  'refus',
  'say',
  'would',
  'make',
  'tini',
  'could',
  'stay',
  'elev',
  'becam',
  'irat',
  'point',
  'kid',
  'said',
  'see',
  'im',
  'deal',
  'said',
  'understood',
  'overwhelm',
  'work',
  'long',
  'day',
  'need',
  'get',
  'home',
  'said',
  'im',
  'go',
  'pull',
  'stroller',
  'kid',
  'call',
  'asshol',
  'entir',
  'time',
  'peopl',
  'wait',
  'behind',
  'got',
  'two',
  'began',
  'thank',
  'stand',
  'time',
  'one',
  'call',
  'asshol',
  'sympathet',
  'situat',
  'think',
  'peopl',
  'make',
  'constant',
  'accommod',
  'peopl',
  'kid',
  'especi',
  'theyr',
  'rude',
  'demand',
  'aita',
  'edit',
  'peopl',
  'concern',
  'way',
  'woman',
  'treat',
  'father',
  'physic',
  'touch',
  'elev',
  'push',
  'stroller',
  'wave',
  'arm',
  'yell',
  'get',
  'sever',
  'time',
  'hear',
  'impair',
  'confus',
  'knew',
  'yell',
  'got',
  'elev',
  'put',
  'hand',
  'charg',
  'would',
  'file'],
 ['know',
  'titl',
  'sound',
  'horribl',
  'know',
  'els',
  'put',
  'busi',
  'person',
  'start',
  'colleg',
  'septemb',
  'job',
  'much',
  'week',
  'ago',
  'friend',
  'alic',
  'came',
  'door',
  'daughter',
  'milli',
  'told',
  'realli',
  'need',
  'appar',
  'emerg',
  'attend',
  'need',
  'urgent',
  'sitter',
  'realli',
  'ask',
  'gave',
  'kid',
  'bag',
  'toy',
  'book',
  'told',
  'would',
  'back',
  'hour',
  'problem',
  'milli',
  'sweet',
  'kid',
  'know',
  'well',
  'enough',
  'comfort',
  'around',
  'still',
  'bit',
  'unexpect',
  'go',
  'cinema',
  'thought',
  'would',
  'take',
  'would',
  'walk',
  'around',
  'bit',
  'watch',
  'someth',
  'everyth',
  'went',
  'smoothli',
  'watch',
  'movi',
  'togeth',
  'milli',
  'seem',
  'happi',
  'enjoy',
  'time',
  'well',
  'went',
  'park',
  'thought',
  'would',
  'nice',
  'get',
  'us',
  'ice',
  'cream',
  'vanilla',
  'swirl',
  'seem',
  'enjoy',
  'bit',
  'soon',
  'got',
  'home',
  'start',
  'throw',
  'develop',
  'seem',
  'rash',
  'thought',
  'mayb',
  'got',
  'bug',
  'someth',
  'call',
  'mom',
  'pick',
  'took',
  'hospit',
  'appar',
  'milli',
  'mild',
  'allergi',
  'dairi',
  'alic',
  'tell',
  'never',
  'seen',
  'alic',
  'give',
  'dairi',
  'thought',
  'dietari',
  'choic',
  'honest',
  'take',
  'much',
  'notic',
  'never',
  'knew',
  'explicitli',
  'safe',
  'noth',
  'bad',
  'go',
  'happen',
  'obvious',
  'uncomfort',
  'antihistamin',
  'kick',
  'kept',
  'call',
  'alic',
  'pick',
  'hour',
  'later',
  'soon',
  'told',
  'hospit',
  'got',
  'furiou',
  'came',
  'yell',
  'tell',
  'tri',
  'kill',
  'babi',
  'take',
  'care',
  'short',
  'notic',
  'idiot',
  'know',
  'child',
  'would',
  'react',
  'like',
  'ice',
  'cream',
  'apologis',
  'mani',
  'time',
  'sent',
  'card',
  'present',
  'milli',
  'appar',
  'tell',
  'group',
  'friend',
  'tri',
  'hurt',
  'milli',
  'trust',
  'around',
  'children',
  'friend',
  'berat',
  'lack',
  'attent',
  'told',
  'would',
  'carri',
  'respons',
  'anyth',
  'wors',
  'happen',
  'milli',
  'tri',
  'explain',
  'know',
  'noth',
  'wors',
  'go',
  'happen',
  'best',
  'help',
  'still',
  'becam',
  'divis',
  'event',
  'aita',
  'realli',
  'fault',
  'realli',
  'want',
  'best',
  'milli',
  'would',
  'never',
  'anyth',
  'hurt'],
 ['context',
  'rel',
  'use',
  'close',
  'friend',
  'mine',
  'well',
  'call',
  'gari',
  'stori',
  'contract',
  'cancer',
  'mid-',
  'male',
  'sympathet',
  'even',
  'contribut',
  '$',
  'donat',
  'pool',
  'treatment',
  'gari',
  'came',
  'one',
  'day',
  'took',
  'hat',
  'reveal',
  'freshli',
  'shaven',
  'head',
  'told',
  'everyon',
  'famili',
  'support',
  'rel',
  'lot',
  'mutual',
  'friend',
  'ask',
  'get',
  'bandwagon',
  'told',
  'want',
  'shave',
  'head',
  'like',
  'hair',
  'hair',
  'black',
  'regularli',
  'comb',
  'well',
  'style',
  'said',
  'could',
  'get',
  'wig',
  'someth',
  'actual',
  'brought',
  'shaver',
  'kit',
  'unbox',
  'told',
  'happen',
  'even',
  'realli',
  'know',
  'rel',
  'im',
  'end',
  'discuss',
  'call',
  '&',
  '$',
  '$',
  'hole',
  'left',
  'angri',
  'speak',
  'week',
  'last',
  'saturday',
  'got',
  'invit',
  'parti',
  'anoth',
  'close',
  'friend',
  'hous',
  'found',
  'gari',
  'tri',
  'thing',
  'sever',
  'friend',
  'coupl',
  'actual',
  'shave',
  'head',
  'gari',
  'parti',
  'blast',
  'hang',
  'play',
  'video',
  'game',
  'listen',
  'rock',
  'music',
  'way',
  'much',
  'drink',
  'drive',
  'home',
  'said',
  'could',
  'sleep',
  'upstair',
  'pass',
  'bed',
  'bliss',
  'sleep',
  'till',
  'shaken',
  'awak',
  'anoth',
  'friend',
  'told',
  'gari',
  'show',
  'late',
  'caught',
  'shave',
  'head',
  'pass',
  'saw',
  'look',
  'like',
  'mirror',
  'want',
  'scream',
  'like',
  'horror',
  'movi',
  'gari',
  'even',
  'shave',
  'one',
  'eyebrow',
  'gari',
  'still',
  'act',
  'proud',
  'say',
  'gon',
  'na',
  'shave',
  'rest',
  'like',
  'lol',
  'furiou',
  'call',
  'cop',
  'got',
  'gari',
  'fulli',
  'admit',
  'done',
  'even',
  'said',
  'justifi',
  'polic',
  'seem',
  'think',
  'classifi',
  'form',
  'assault',
  'ask',
  'want',
  'press',
  'charg',
  'first',
  'word',
  'mouth',
  'hell',
  'ye',
  'gari',
  'cuss',
  'took',
  'away',
  'cuff',
  'tri',
  'get',
  'hair',
  'restyl',
  'someth',
  'present',
  'save',
  'im',
  'bald',
  'bunch',
  'gari',
  'famili',
  'tell',
  'drop',
  'charg',
  'gari',
  'med',
  'mean',
  'like',
  'wtf',
  'never',
  'knew',
  'med',
  'still',
  'refus',
  'drop',
  'charg',
  'itll',
  'take',
  'month',
  'grow',
  'hair',
  'back',
  'way',
  'call',
  'messag',
  'gari',
  'rel',
  'start',
  'get',
  'everyon',
  'els',
  'friend',
  'group',
  'cut',
  'gari',
  'though',
  'say',
  'im',
  'right',
  'thing',
  'drop',
  'charg',
  'im',
  'divid',
  'aita',
  'press',
  'charg',
  'former',
  'friend',
  'shave',
  'head',
  'sleep',
  'edit',
  'want',
  'make',
  'someth',
  'clear',
  'mani',
  'peopl',
  'said',
  'thing',
  'like',
  'dude',
  'hair',
  'would',
  'say',
  'man',
  'girl',
  'hair',
  'took',
  'year',
  'grow',
  'would',
  'say',
  'thing',
  'sure',
  'hair',
  'grow',
  'back',
  'take',
  'time',
  'someth',
  'grew',
  'back',
  'fast',
  'peopl',
  'would',
  'less',
  'inclin',
  'care',
  'fast',
  'take',
  'month',
  'long',
  'hair',
  'year',
  'lot',
  'time',
  'wast',
  'grow',
  'plan',
  'push',
  'gari',
  'go',
  'prison',
  'plan',
  'drop',
  'charg',
  'either',
  'famili',
  'alreadi',
  'bail',
  'know',
  'med',
  'knew',
  'quit',
  'temper',
  'even',
  'entitl',
  'attitud',
  'time',
  'one',
  'exampl',
  'lunch',
  'want',
  'us',
  'combin',
  'check',
  'split',
  'evenli',
  'got',
  'expens',
  'thing',
  'menu',
  'got',
  'cheeseburg',
  'said',
  'gari',
  'went',
  'us',
  'good',
  'friend',
  'alway',
  'ass',
  'get',
  'way',
  'ive',
  'known',
  'like',
  'three',
  'year',
  'incid',
  'last',
  'straw',
  'lot',
  'mutual',
  'friend',
  'charg',
  'want',
  'send',
  'gari',
  'prison',
  'would',
  'like',
  'get',
  'therapi',
  'commun',
  'servic',
  'way',
  'gari',
  'act',
  'around',
  'past',
  'actual',
  'wonder',
  'long',
  'got',
  'violent',
  'ive',
  'seen',
  'heard',
  'get',
  'fight',
  'less',
  'edit',
  'ive',
  'gotten',
  'mani',
  'comment',
  'peopl',
  'say',
  'yta',
  'cancer',
  'actual',
  'read',
  'post',
  'gari',
  'one',
  'cancer',
  'rel',
  'know',
  'know',
  'kind',
  'cancer',
  'gari',
  'elabor',
  'want',
  'shave',
  'head',
  'person',
  'refus',
  'left',
  'tantrum',
  'shave',
  'head',
  'pass',
  'drunk',
  'parti'],
 ['hello',
  'one',
  'mani',
  'midwest',
  'hit',
  'snowpocolyps',
  'think',
  'got',
  'like',
  'inch',
  'live',
  'also',
  'want',
  'prefac',
  'like',
  'kid',
  'hate',
  'experi',
  'kid',
  'felt',
  'need',
  'produc',
  'work',
  'home',
  'receiv',
  'knock',
  'door',
  'today',
  'group',
  'like',
  'yearold',
  'ish',
  'boy',
  'shovel',
  'driveway',
  'side',
  'walk',
  'request',
  'payment',
  'expect',
  '$',
  'realli',
  'confus',
  'never',
  'knock',
  'ask',
  '*',
  'could',
  '*',
  'shovel',
  'drive',
  'way',
  'without',
  'ask',
  'expect',
  'paid',
  'realli',
  'dumb',
  'struck',
  'kind',
  'said',
  'cash',
  'one',
  'pull',
  'smart',
  'phone',
  'say',
  'mom',
  'venmo',
  'account',
  'extrem',
  'confus',
  'start',
  'say',
  'never',
  'agre',
  'pay',
  'anyth',
  'go',
  'shovel',
  'driveway',
  'lunch',
  'time',
  'ask',
  'would',
  'said',
  'kid',
  'got',
  'realli',
  'upset',
  'like',
  'go',
  'pay',
  'us',
  'work',
  'ask',
  'shovel',
  'drive',
  'way',
  'start',
  'yell',
  'kind',
  'shut',
  'door',
  'fast',
  'forward',
  'coupl',
  'hour',
  'mom',
  'come',
  'knock',
  'door',
  'open',
  'start',
  'scream',
  'pay',
  'kid',
  'point',
  '-',
  '$',
  'clearli',
  'go',
  'break',
  'wrong',
  '-',
  'put',
  'work',
  'paid',
  '-her',
  'boy',
  'nice',
  'thing',
  '-',
  'proud',
  'boy',
  'use',
  'snow',
  'day',
  'help',
  'peopl',
  'realli',
  'ungrat',
  'go',
  'make',
  'turn',
  'drug',
  'next',
  'time',
  'start',
  'get',
  'kind',
  'mad',
  'said',
  'never',
  'ask',
  'servic',
  'nice',
  'shovel',
  'drive',
  'way',
  'never',
  'agre',
  'pay',
  'realli',
  'ask',
  'first',
  'insist',
  'pay',
  'time',
  'theyll',
  'ask',
  'futur',
  'want',
  're-enforc',
  'bad',
  'behavior',
  'theyr',
  'children',
  'peopl',
  'feel',
  'need',
  'let',
  'get',
  'away',
  'whatev',
  'cycl',
  'want',
  'perpetu',
  'kid',
  'cant',
  'manipul',
  'peopl',
  'pay',
  'someth',
  'never',
  'ask',
  'idk',
  'far',
  'ive',
  'refus',
  'pay',
  'im',
  'get',
  'torch',
  'nextdoor',
  'heartless',
  'monster',
  'took',
  'advantag',
  'children',
  'im',
  'turn',
  'reddit',
  'aita',
  'ill',
  'pay',
  'guess',
  'idk',
  'im',
  'see',
  'situat',
  'clearli',
  'experi',
  'kid',
  'edit',
  'add',
  'peopl',
  'believ',
  'hear',
  'shovel',
  'fair',
  'thing',
  'suspici',
  'get',
  'inch',
  'husband',
  'shovel',
  'yesterday',
  'im',
  'sure',
  'much',
  'shovel',
  'vs',
  'left',
  'kid',
  'shovel',
  'inch',
  'home',
  'offic',
  'far',
  'back',
  'hous',
  'overlook',
  'back',
  'yard',
  'furthest',
  'back',
  'get',
  'still',
  'insid',
  '%',
  'time',
  'headphon',
  'meet',
  'music',
  'realli',
  'hear',
  'question',
  'drive',
  'way',
  'length',
  'car',
  'wide',
  'driveway',
  'probabl',
  'car',
  'long',
  'pretti',
  'standard',
  'also',
  'felt',
  'like',
  '$',
  'outrag'],
 ['date',
  'boyfriend',
  'month',
  'two',
  'littl',
  'children',
  'love',
  'go',
  'eat',
  'go',
  'week',
  'time',
  'happen',
  'forget',
  'credit',
  'card',
  'make',
  'payment',
  'id',
  'obvious',
  'end',
  'pay',
  'sinc',
  'kid',
  'us',
  'honestli',
  'left',
  'broke',
  'month',
  'month',
  'reciev',
  'payment',
  'nd',
  'job',
  'part',
  'time',
  'agre',
  'go',
  'togeth',
  'kid',
  'even',
  'sent',
  'text',
  'remind',
  'forget',
  'credit',
  'card',
  'laugh',
  'restaur',
  'order',
  'dinner',
  'let',
  'kid',
  'order',
  'lot',
  'new',
  'stuff',
  'menu',
  '$',
  '$',
  '$',
  'start',
  'eat',
  'mention',
  'credit',
  'card',
  'make',
  'sure',
  'forget',
  'look',
  'shock',
  'start',
  'search',
  'pocket',
  'look',
  'sorri',
  'way',
  'said',
  'guess',
  'forgot',
  'pair',
  'jean',
  'thought',
  'go',
  'wear',
  'ask',
  'foot',
  'bill',
  'time',
  'food',
  'tabl',
  'even',
  'get',
  'bit',
  'grab',
  'stuff',
  'got',
  'freak',
  'ask',
  'go',
  'told',
  'pay',
  'time',
  'enjoy',
  'dinner',
  'kid',
  'walk',
  'call',
  'later',
  'absolut',
  'lost',
  'said',
  'believ',
  'id',
  'walk',
  'leav',
  'kid',
  'situat',
  'said',
  'go',
  'pay',
  'kid',
  'food',
  'everi',
  'singl',
  'time',
  'unfair',
  'said',
  'forgot',
  'forgot',
  'yell',
  'like',
  'show',
  'sympathi',
  'kid',
  'cancel',
  'go',
  'home',
  'kid',
  'hungri',
  'sinc',
  'pay',
  'right',
  'got',
  'argument',
  'mad',
  'sinc',
  'say',
  'thing',
  'like',
  'need',
  'take',
  'look',
  'im',
  'treat',
  'kid',
  'specif',
  'let',
  'go',
  'hungri',
  'selfish',
  'aita'],
 ['boyfriend',
  'year',
  'kid',
  'year',
  'old',
  'son',
  'day',
  'yo',
  'stepson',
  'fell',
  'stair',
  'injur',
  'anckl',
  'dad',
  'get',
  'hospit',
  'need',
  'someon',
  'stay',
  'kid',
  'boyfriend',
  'told',
  'son',
  'skip',
  'workday',
  'stay',
  'watch',
  'stepbroth',
  'return',
  'son',
  'ask',
  'boyfriend',
  'pay',
  'babysit',
  'kid',
  'admit',
  'son',
  'best',
  'relationship',
  'stepdad',
  'stepsibl',
  'boyfriend',
  'shock',
  'son',
  'explain',
  'skip',
  'workday',
  'cost',
  'lose',
  'money',
  'ask',
  'boyfriend',
  'pay',
  'time',
  'boyfriend',
  'scold',
  'harshli',
  'told',
  'stay',
  'home',
  'stepbroth',
  'babysit',
  'deserv',
  'money',
  'plu',
  'skip',
  'one',
  'day',
  'work',
  'much',
  'harm',
  'son',
  'disagre',
  'kept',
  'argu',
  'boyfriend',
  'say',
  'stepbroth',
  'respons',
  'boyfriend',
  'end',
  'punish',
  'take',
  'away',
  'electron',
  'well',
  'cancel',
  'birthday',
  'month',
  'away',
  'son',
  'fought',
  'back',
  'talk',
  'unfair',
  'ask',
  'get',
  'involv',
  'side',
  'boyfriend',
  'realli',
  'appreci',
  'son',
  'use',
  'famili',
  'emerg',
  'advantag',
  'thought',
  'hed',
  'get',
  'money',
  'help',
  'famili',
  'son',
  'like',
  'stood',
  'conflict',
  'accus',
  'favor',
  'stepkid',
  'stay',
  'boyfriend',
  'good',
  'side',
  'ignor',
  'mistreat',
  'toward',
  'cut',
  'argument',
  'becom',
  'silent',
  'eversinc',
  'even',
  'refus',
  'eat',
  'us',
  'sit',
  'us',
  'aita',
  'agre',
  'boyfriend',
  'punish',
  'son'],
 ['ex',
  'best',
  'friend',
  'got',
  'marri',
  'saturday',
  'suppos',
  'maid',
  'honor',
  'remov',
  'wed',
  'disput',
  'regard',
  'makeup',
  'hair',
  'disinterest',
  'wed',
  'uninvit',
  'wed',
  'told',
  'friend',
  'side',
  'stori',
  'respons',
  'cake',
  'wed',
  'cancel',
  'order',
  'uninvit',
  'want',
  'reimburs',
  'invest',
  'wed',
  'told',
  'bride',
  'go',
  'bring',
  'cake',
  'new',
  'maid',
  'honor',
  'went',
  'pick',
  'cake',
  'learn',
  'cancel',
  'order',
  'abl',
  'get',
  'anoth',
  'cake',
  'appar',
  'nice',
  'bride',
  'groom',
  'sister',
  'attend',
  'told',
  'unfair',
  'cancel',
  'cake',
  'sister',
  'think',
  'let',
  'enjoy',
  'special',
  'day',
  'later',
  'discuss',
  'get',
  'money',
  'back',
  'bride',
  'refer',
  'cake',
  'gift',
  'claim',
  'gift',
  'return',
  'groom',
  'agre',
  'liter',
  'anyth',
  'preciou',
  'wife',
  'say'],
 ['husband',
  'year',
  'marri',
  'year',
  'suffer',
  'horrif',
  'trauma',
  'hand',
  'dad',
  'parent',
  'marri',
  'expect',
  'twin',
  'mom',
  'suffer',
  'kind',
  'hemorrhag',
  'end',
  'eclampsia',
  'husband',
  'mom',
  'twin',
  'sister',
  'make',
  'husband',
  'period',
  'time',
  'nicu',
  'dad',
  'told',
  'fault',
  'die',
  'grandpar',
  'meant',
  'world',
  'tri',
  'shield',
  'dad',
  'anger',
  'year',
  'old',
  'die',
  'also',
  'father',
  'blame',
  'spent',
  'next',
  'year',
  'hear',
  'day',
  'day',
  'reason',
  'point',
  'anoth',
  'person',
  'reassur',
  'met',
  'start',
  'heal',
  'away',
  'dad',
  'attend',
  'therapi',
  'big',
  'fear',
  'dad',
  'said',
  'true',
  'wonder',
  'man',
  'niec',
  'nephew',
  'ador',
  'alway',
  'good',
  'rest',
  'famili',
  'januari',
  'pregnant',
  'went',
  'scan',
  'learn',
  'miscarri',
  'soon',
  'husband',
  'heard',
  'someth',
  'insid',
  'broke',
  'start',
  'unravel',
  'middl',
  'mental',
  'health',
  'crisi',
  'weird',
  'manic',
  'laugh',
  'also',
  'sob',
  'ran',
  'room',
  'follow',
  'concern',
  'mom',
  'sister',
  'work',
  'hospit',
  'sister',
  'nurs',
  'mom',
  'work',
  'littl',
  'gift',
  'store',
  'saw',
  'worst',
  'moment',
  'saw',
  'medic',
  'personnel',
  'forc',
  'interven',
  'middl',
  'breakdown',
  'hyster',
  'total',
  'total',
  'broken',
  'noth',
  'could',
  'reach',
  'scariest',
  'moment',
  'life',
  'worst',
  'moment',
  'judg',
  'laugh',
  'told',
  'rest',
  'adult',
  'famili',
  'also',
  'judg',
  'famili',
  'awar',
  'histori',
  'told',
  'year',
  'ago',
  'husband',
  'end',
  'care',
  'psychiatrist',
  'suggest',
  'need',
  'lot',
  'help',
  'therapi',
  'could',
  'provid',
  'instead',
  'understand',
  'famili',
  'longer',
  'want',
  'around',
  'said',
  'man',
  'could',
  'laugh',
  'wife',
  'miscarriag',
  'kind',
  'man',
  'want',
  'around',
  'kid',
  'told',
  'would',
  'leav',
  'behind',
  'niec',
  'turn',
  'year',
  'first',
  'big',
  'parti',
  'sinc',
  'covid',
  'call',
  'said',
  'want',
  'us',
  'seen',
  'us',
  'mom',
  'list',
  'told',
  'abl',
  'come',
  'sorri',
  'upset',
  'ask',
  'never',
  'saw',
  'us',
  'come',
  'birthday',
  'parti',
  'miss',
  'told',
  'husband',
  'welcom',
  'adult',
  'famili',
  'anymor',
  'appar',
  'yell',
  'parent',
  'mine',
  'got',
  'shit',
  'tell',
  'said',
  'busi',
  'say',
  'aita'],
 ['mom',
  'tradit',
  'everi',
  'christma',
  'get',
  'custon',
  'stock',
  'grandchildren',
  'name',
  'codi',
  'mia',
  'sammi',
  'alainaetc',
  'hang',
  'stock',
  'near',
  'fireplac',
  'wife',
  'togeth',
  'year',
  'son',
  'stepkid',
  'former',
  'marriag',
  'found',
  'tradit',
  'mom',
  'said',
  'expect',
  'stepson',
  'get',
  'custom',
  'stock',
  'hang',
  'along',
  'kid',
  'stock',
  'ask',
  'mom',
  'said',
  'love',
  'step',
  'grandchild',
  'feel',
  'comfort',
  'yet',
  'stock',
  'name',
  'gang',
  'home',
  'appar',
  'wife',
  'refus',
  'drop',
  'chose',
  'hill',
  'die',
  'even',
  'told',
  'would',
  'attend',
  'christma',
  'parti',
  'mom',
  'start',
  'argu',
  'day',
  'final',
  'blew',
  'told',
  'reason',
  'dictat',
  'mom',
  'decor',
  'home',
  'stock',
  'hang',
  'start',
  'cri',
  'call',
  'blind',
  'see',
  'famili',
  'treat',
  'stepson',
  'said',
  'love',
  'stock',
  'go',
  'prove',
  'anyth',
  'said',
  'go',
  'call',
  'ridicul',
  'decid',
  'go',
  'someth',
  'trivial',
  'conflict',
  'sinc',
  'refus',
  'even',
  'speak',
  'aitaa',
  'say',
  'ridicul',
  'decid',
  'go',
  'stock',
  'stepson',
  'age'],
 ['last',
  'year',
  'husband',
  'die',
  'car',
  'accid',
  'separ',
  'year',
  'prior',
  'offici',
  'divorc',
  'name',
  'administr',
  'estat',
  'home',
  'im',
  'financi',
  'independ',
  'two',
  'children',
  'togeth',
  'late',
  'summer',
  'last',
  'year',
  'learn',
  'parent',
  'beneficiari',
  'receiv',
  'boat',
  'load',
  'money',
  'sinc',
  'death',
  'parent',
  'told',
  'want',
  'buy',
  'home',
  'wait',
  'go',
  'purchas',
  'sinc',
  'august',
  'pay',
  'mortgag',
  'home',
  'ever',
  'sinc',
  'februari',
  'warn',
  'sick',
  'pay',
  'two',
  'mortgag',
  'need',
  'go',
  'purchas',
  'drag',
  'feet',
  'ever',
  'sinc',
  'told',
  'lawyer',
  'hand',
  'control',
  'lawyer',
  'receiv',
  'kind',
  'formal',
  'offer',
  'lawyer',
  'state',
  'interest',
  'last',
  'week',
  'approach',
  'gentleman',
  'pay',
  'good',
  'money',
  'home',
  'warn',
  'hope',
  'would',
  'make',
  'move',
  'forward',
  'end',
  'scof',
  'told',
  'need',
  'patient',
  'wait',
  'entir',
  'year',
  'wait',
  'let',
  'pay',
  'mortgag',
  'home',
  'support',
  'children',
  'go',
  'vacat',
  'make',
  'larg',
  'purchas',
  'pay',
  'debt',
  'life',
  'insur',
  'asshol',
  'accept',
  'offer',
  'someon',
  'sell',
  'home',
  'dead',
  'son',
  'wrong'],
 ['son',
  'found',
  'one',
  'ex',
  'girlfriend',
  'month',
  'pregnant',
  'knew',
  'noth',
  'sort',
  'pregnant',
  'expect',
  'accept',
  'everyth',
  'question',
  'ask',
  'daughter',
  'good',
  'friend',
  'girl',
  'knew',
  'pregnanc',
  'said',
  'noth',
  'us',
  'friend',
  'ask',
  'son',
  'head',
  'heel',
  'ladi',
  'end',
  'break',
  'heart',
  'cheat',
  'needi',
  'manipul',
  'spend',
  'alot',
  'money',
  'would',
  'ask',
  'gift',
  'son',
  'even',
  'afford',
  'convinc',
  'use',
  'one',
  'credit',
  'card',
  'achiev',
  'daughter',
  'current',
  'live',
  'us',
  'actual',
  'room',
  'colleg',
  'also',
  'manipul',
  'think',
  'dose',
  'good',
  'believ',
  'convinc',
  'brother',
  'use',
  'credit',
  'even',
  'cheat',
  'show',
  'son',
  'ex',
  'girlfriend',
  'door',
  'help',
  'tell',
  'us',
  'pregnant',
  'seen',
  'door',
  'visual',
  'pregnant',
  'knew',
  'gon',
  'na',
  'say',
  'son',
  'father',
  'child',
  'immedi',
  'said',
  'son',
  'put',
  'money',
  'time',
  'patern',
  'test',
  'prove',
  'child',
  'son',
  'back',
  'agre',
  'daughter',
  'horrifi',
  'comment',
  'accus',
  'encourag',
  'dead',
  'beat',
  'father',
  'upset',
  'even',
  'give',
  'chanc',
  'explain',
  'son',
  'ex',
  'start',
  'cri',
  'say',
  'alway',
  'assum',
  'worst',
  'went',
  'month',
  'pregnanc',
  'alon',
  'least',
  'could',
  'ensur',
  'taken',
  'care',
  'better',
  'child',
  'agre',
  'child',
  'gon',
  'na',
  'ensur',
  'mom',
  'well',
  'ensur',
  'babi',
  'well',
  'want',
  'son',
  'involv',
  'get',
  'heart',
  'broken',
  'find',
  'child',
  'asshol',
  'quick',
  'updat',
  '--',
  'daughter',
  'spoke',
  'phone',
  'explain',
  'babi',
  'realli',
  'text',
  'lock',
  'respons',
  'babi',
  'way',
  'id',
  'ever',
  'encourag',
  'son',
  'abandon',
  'grandbabi',
  'daughter',
  'final',
  'agre',
  'test',
  'would',
  'benefici',
  'told',
  'shed',
  'call',
  'back',
  'later',
  'end',
  'get',
  'text',
  'back',
  'instead',
  'call',
  'ask',
  'could',
  'come',
  'back',
  'talk',
  'agre',
  'came',
  'son',
  'ex',
  'admit',
  'actual',
  'know',
  'father',
  'relationship',
  'multipl',
  'guy',
  'took',
  'long',
  'tell',
  'son',
  'tri',
  'figur',
  'father',
  'child',
  'certain',
  'son',
  'agre',
  'patern',
  'test',
  'soon',
  'abl',
  'one',
  'condit',
  'pay',
  'one',
  'thing',
  'found',
  'daughter',
  'son',
  'ex',
  'actual',
  'develop',
  'romant',
  'relationship',
  'beyond',
  'shock',
  'mean',
  'explain',
  'stick',
  'son',
  'ex',
  'much',
  'someth',
  'thought',
  'daughter',
  'would',
  'ever',
  'mean',
  'brother',
  'ex',
  'someon',
  'break',
  'hreat',
  'someth',
  'understand',
  'ill',
  'alway',
  'love',
  'daughter',
  'hurt',
  'see',
  'son',
  'feel',
  'realli',
  'hurt',
  'whole',
  'situat'],
 ['rent',
  'guy',
  'ty',
  'michael',
  'simon',
  'simon',
  'diabet',
  'hard',
  'time',
  'manag',
  'problem',
  'start',
  '-',
  'im',
  'last',
  'get',
  'home',
  'arriv',
  'guy',
  'home',
  'everytim',
  'tri',
  'order',
  'food',
  'restaur',
  'id',
  'ask',
  'guy',
  'want',
  'order',
  'well',
  'say',
  'first',
  'food',
  'arriv',
  'gather',
  'around',
  'livingroom',
  'help',
  'food',
  'irk',
  'lot',
  'sinc',
  'kept',
  'happen',
  'im',
  'nice',
  'tell',
  'day',
  'ago',
  'came',
  'home',
  'simon',
  'sit',
  'couch',
  'guy',
  'still',
  'order',
  'food',
  '*',
  '*',
  'ask',
  'want',
  'said',
  'time',
  'avoid',
  'share',
  'food',
  'decid',
  'go',
  'eat',
  'room',
  'food',
  'arriv',
  'ngl',
  'got',
  'look',
  'simon',
  'thought',
  'noth',
  'went',
  'bed',
  'pm',
  'around',
  'woke',
  'loud',
  'knock',
  'door',
  'open',
  'door',
  'ty',
  'yell',
  'say',
  'simon',
  'hypoglycem',
  'episod',
  'muchael',
  'drove',
  'hospit',
  'refus',
  'share',
  'dinner',
  'earlier',
  'understand',
  'eat',
  'hour',
  '*',
  'count',
  '*',
  'eat',
  'dinner',
  'took',
  'food',
  'room',
  'get',
  'ty',
  'start',
  'argu',
  'call',
  'selfish',
  'fuck',
  'hidingwithhold',
  'food',
  'let',
  'simon',
  'go',
  'know',
  'diabet',
  'cant',
  'stay',
  'without',
  'food',
  'long',
  'period',
  'time',
  'thank',
  'god',
  'recogn',
  'symptom',
  'took',
  'hospit',
  'earli',
  'said',
  'alreadi',
  'ask',
  'simon',
  'want',
  'eat',
  'said',
  '-',
  'ty',
  'said',
  'caus',
  'simon',
  'gon',
  'na',
  'say',
  'sinc',
  'hed',
  'money',
  'buy',
  'food',
  'hope',
  'id',
  'share',
  'hid',
  'instead',
  'said',
  'oblig',
  'pay',
  'food',
  'set',
  'horribl',
  'attitud',
  'dollar',
  'money',
  'issu',
  'simon',
  'talk',
  'michael',
  'ty',
  'kept',
  'blame',
  'said',
  'longer',
  'trust',
  'around',
  'simon',
  'moreov',
  'michael',
  'call',
  'simon',
  'parent',
  'argument',
  'caus',
  'said',
  'excus',
  'treat',
  'diabet',
  'like',
  'ive',
  'get',
  'lot',
  'bash',
  'feel',
  'incred',
  'guilti',
  'think',
  'might',
  'contribut',
  'way'],
 ['know',
  'titl',
  'sound',
  'ridicul',
  'context',
  'im',
  'current',
  'high',
  'school',
  'live',
  'dad',
  'brother',
  'mom',
  'pictur',
  'anymor',
  'im',
  'close',
  'father',
  'bad',
  'dad',
  'littl',
  'old',
  'fashion',
  'closer',
  'brother',
  'hobbi',
  'etc',
  'onto',
  'problem',
  'know',
  'start',
  'past',
  'coupl',
  'month',
  'dad',
  'brother',
  'start',
  'teas',
  'time',
  'month',
  'time',
  'even',
  'get',
  'remot',
  'irrit',
  'upset',
  'exampl',
  'brother',
  'ate',
  'snack',
  'mine',
  'save',
  'got',
  'mad',
  'joke',
  'oh',
  'time',
  'super',
  'annoy',
  'voic',
  'ive',
  'kept',
  'tri',
  'tell',
  'separ',
  'togeth',
  'realli',
  'annoy',
  'offens',
  'feel',
  'like',
  'theyr',
  'total',
  'minim',
  'feel',
  'thing',
  'feel',
  'valid',
  'reason',
  'annoy',
  'brush',
  'even',
  'chalk',
  'period',
  'matter',
  'time',
  'month',
  'well',
  'yesterday',
  'dinner',
  'whole',
  'famili',
  'dad',
  'side',
  'aunt',
  'birthday',
  'dinner',
  'got',
  'huge',
  'fight',
  'brother',
  'broke',
  'ipad',
  'instead',
  'apolog',
  'said',
  'whole',
  'time',
  'month',
  'thing',
  'admit',
  'time',
  'got',
  'grandma',
  'hous',
  'pretti',
  'piss',
  'cousin',
  'ask',
  'wrong',
  'dinner',
  'could',
  'explain',
  'brother',
  'interrupt',
  'oh',
  '*',
  'ladi',
  '*',
  'problem',
  'usual',
  'ignor',
  'hold',
  'thing',
  'enough',
  'start',
  'bawl',
  'admit',
  'kind',
  'went',
  'ham',
  'purpos',
  'caus',
  'scene',
  'freak',
  'whole',
  'famili',
  'aunt',
  'ask',
  'dad',
  'upset',
  'know',
  'told',
  'aunt',
  '*',
  'ladi',
  '*',
  'reason',
  'accord',
  'dad',
  'brother',
  'aunt',
  'grandma',
  'piss',
  'dad',
  'brother',
  'total',
  'got',
  'ream',
  'dinner',
  'tabl',
  'whole',
  'thing',
  'could',
  'tell',
  'super',
  'embarrass',
  'later',
  'night',
  'brother',
  'dad',
  'said',
  'ah',
  'caus',
  'scene',
  'embarrass',
  'said',
  'act',
  'like',
  'alway',
  'say',
  'guess',
  'dinner',
  'like',
  'plan'],
 ['marri',
  'husband',
  'cam',
  'two',
  'year',
  'weve',
  'togeth',
  'total',
  'friend',
  'older',
  'brother',
  'ive',
  'known',
  'even',
  'longer',
  'cam',
  'decid',
  'tri',
  'babi',
  'im',
  'current',
  'wk',
  'first',
  'told',
  'mil',
  'news',
  'first',
  'thing',
  'mention',
  'everi',
  'woman',
  'famili',
  'son',
  'daughter',
  'thought',
  'babi',
  'would',
  'boy',
  'cam',
  'told',
  'care',
  'want',
  'happi',
  'healthi',
  'child',
  'well',
  'im',
  'girl',
  'inform',
  'mil',
  'earlier',
  'even',
  'cam',
  'onboard',
  'idea',
  'huge',
  'dramat',
  'gender',
  'reveal',
  'decid',
  'go',
  'casual',
  'announc',
  'mil',
  'immedi',
  'seem',
  'upset',
  'told',
  'next',
  'time',
  'need',
  'tri',
  'harder',
  'give',
  'husband',
  'son',
  'laugh',
  'said',
  'realli',
  'much',
  'choic',
  'matter',
  'anoth',
  'child',
  'noth',
  'could',
  'make',
  'sure',
  'boy',
  'either',
  'said',
  'fault',
  'end',
  'boy',
  'first',
  'boy',
  'son',
  'wive',
  'boy',
  'first',
  'meant',
  'odd',
  'one',
  'cam',
  'told',
  'mom',
  'care',
  'son',
  'need',
  'stop',
  'blame',
  'someth',
  'possibl',
  'fault',
  'start',
  'get',
  'onto',
  'want',
  'child',
  'carri',
  'famili',
  'name',
  'instead',
  'daughter',
  'given',
  'away',
  'whole',
  'thing',
  'absolut',
  'ridicul',
  'told',
  'look',
  'get',
  'refresh',
  'cours',
  'read',
  'basic',
  'biolog',
  'learn',
  'th',
  'grade',
  'free',
  'give',
  'call',
  'apolog',
  'absolut',
  'ridicul',
  'husband',
  'left',
  'car',
  'said',
  'understood',
  'frustrat',
  'appreci',
  'speak',
  'mother',
  'like',
  'basic',
  'impli',
  'idiot',
  'told',
  'appreci',
  'way',
  'speak',
  'upset',
  'behalf',
  'daughter',
  'sinc',
  'mom',
  'clearli',
  'seem',
  'think',
  'less',
  'child',
  'even',
  'born',
  'rest',
  'car',
  'ride',
  'silent',
  'honestli',
  'talk',
  'sinc',
  'get',
  'back',
  'home',
  'either',
  'defend',
  'know',
  'side',
  'know',
  'brought',
  'way',
  'spoke',
  'unless',
  'realli',
  'thought',
  'line',
  'feel',
  'like',
  'bit',
  'ah',
  'im',
  'sure',
  'apolog'],
 ['bf',
  'went',
  'see',
  'parent',
  'first',
  'time',
  'weekend',
  'canadian',
  'thanksgiv',
  'suppos',
  'stay',
  'sat',
  'sun',
  'fli',
  'back',
  'afternoon',
  'monday',
  'im',
  'write',
  'sun',
  'night',
  'alreadi',
  'back',
  'bed',
  'bf',
  'parent',
  'greet',
  'us',
  'airport',
  'brought',
  'us',
  'home',
  'proceed',
  'ask',
  'drug',
  'bag',
  'pretti',
  'shock',
  'ask',
  'said',
  'tylenol',
  'nod',
  'show',
  'us',
  'room',
  'meant',
  'got',
  'guest',
  'room',
  'bf',
  'sleep',
  'old',
  'room',
  'parent',
  'serv',
  'dinner',
  'dinner',
  'ask',
  'pay',
  'portion',
  'thanksgiv',
  'dinner',
  '$',
  'pretti',
  'shock',
  'angri',
  'ive',
  'never',
  'ask',
  'pay',
  'someon',
  'ingredi',
  'fee',
  'guest',
  'place',
  'answer',
  'confront',
  'bf',
  'room',
  'ask',
  'ask',
  'pay',
  'say',
  'someth',
  'ask',
  'friend',
  'well',
  'bbq',
  'ask',
  'peopl',
  'pay',
  'portion',
  'honestli',
  'im',
  'shock',
  'friend',
  'remind',
  'eaten',
  'parent',
  'place',
  'dozen',
  'time',
  'never',
  'ask',
  'pay',
  'claim',
  'ask',
  'would',
  'never',
  'rude',
  'guest',
  'mom',
  'came',
  'got',
  'escort',
  'room',
  'fume',
  'look',
  'ticket',
  'home',
  'text',
  'bf',
  'say',
  'go',
  'home',
  'tomorrow',
  'call',
  'beg',
  'stay',
  'say',
  'famili',
  'alreadi',
  'like',
  'agre',
  'pay',
  'dinner',
  'im',
  'make',
  'wors',
  'ignor',
  'rebook',
  'earli',
  'flight',
  'expens',
  'got',
  'cab',
  'airport',
  'morn',
  'told',
  'friend',
  'confirm',
  'theyv',
  'never',
  'ask',
  'pay',
  'meal',
  'guest',
  'struggl',
  'even',
  'invit',
  'normal',
  'practic',
  'hous',
  'pretti',
  'big',
  'think',
  'money',
  'thing'],
 ['live',
  'girlfriend',
  'past',
  'six',
  'month',
  'earli',
  'overal',
  'great',
  'relationship',
  'well',
  'relationship',
  'began',
  'ive',
  'big',
  'fast',
  'food',
  'eater',
  'intersect',
  'citi',
  'host',
  'seven',
  'differ',
  'fast',
  'food',
  'restaur',
  'ill',
  'frequent',
  'basic',
  'sinc',
  'shift',
  'work',
  'im',
  'gener',
  'clock',
  'around',
  'tire',
  'cook',
  'ill',
  'hit',
  'burger',
  'joint',
  'cheeseburg',
  'fri',
  'girlfriend',
  'alway',
  'want',
  'exactli',
  'one',
  'bite',
  'exclus',
  'first',
  'bite',
  'everi',
  'item',
  'order',
  'notic',
  'would',
  'start',
  'contact',
  'way',
  'restaur',
  'ask',
  'want',
  'someth',
  'answer',
  'consist',
  'get',
  'home',
  'dig',
  'crinkl',
  'fast',
  'food',
  'bag',
  'like',
  'pavlov',
  'bell',
  'shell',
  'immedi',
  'beelin',
  'straight',
  'wherev',
  'im',
  'eat',
  'ask',
  'bite',
  'ive',
  'ask',
  'could',
  'leav',
  'littl',
  'end',
  'want',
  'first',
  'bite',
  'ive',
  'plead',
  'let',
  'buy',
  'food',
  'want',
  'eat',
  'much',
  'ive',
  'tri',
  'order',
  'bit',
  'let',
  'polish',
  'whole',
  'burger',
  'shell',
  'turn',
  'everi',
  'item',
  'sampler',
  'platter',
  'throw',
  'away',
  'food',
  'bought',
  'first',
  'bite',
  'eat',
  'like',
  'like',
  'bizarr',
  'culinari',
  'version',
  '*',
  'ju',
  'prima',
  'nocti',
  '*',
  'past',
  'week',
  'ive',
  'eat',
  'car',
  'discret',
  'dispos',
  'wrapper',
  'tell',
  'hungri',
  'work',
  'day',
  'found',
  'garbag',
  'bag',
  'full',
  'fast',
  'food',
  'wrapper',
  'bin',
  'garbag',
  'day',
  'furiou',
  'lie',
  'aita',
  'share'],
 ['babi',
  'daddi',
  'jasper',
  'im',
  'current',
  'week',
  'pregnant',
  'cheat',
  'import',
  'stori',
  'jasper',
  'fiancé',
  'maddi',
  'lost',
  'first',
  'child',
  'year',
  'year',
  'ago',
  'cant',
  'imagin',
  'go',
  'trough',
  'child-loss',
  'ive',
  'tri',
  'accommod',
  'ive',
  'set',
  'rule',
  'cant',
  'treat',
  'surrog',
  'im',
  'jasper',
  'kid',
  'shell',
  'step-mom',
  'adoptive-mom',
  'cant',
  'deliveri',
  'room',
  'im',
  'allow',
  'two',
  'peopl',
  'chose',
  'jasper',
  'mom',
  'argu',
  'realli',
  'tri',
  'push',
  'want',
  'haver',
  'jasper',
  'said',
  'want',
  'mom',
  'said',
  'clear',
  'even',
  'jasper',
  'room',
  'allow',
  'either',
  'way',
  'im',
  'comfort',
  'cant',
  'take',
  'big',
  'decis',
  'kid',
  'suggest',
  'ask',
  'cant',
  'take',
  'unless',
  'emerg',
  'asid',
  'awar',
  'situat',
  'common',
  'learn',
  'along',
  'way',
  'day',
  'ago',
  'three',
  'went',
  'dinner',
  'jasper',
  'ask',
  'given',
  'thought',
  'kid',
  'name',
  'said',
  'ye',
  'gave',
  'list',
  'told',
  'add',
  'name',
  'three',
  'could',
  'discuss',
  'chose',
  'one',
  'maddi',
  'told',
  'want',
  'give',
  'dad',
  'name',
  'middl',
  'name',
  'sinc',
  'special',
  'ill',
  'honest',
  'like',
  'idea',
  'famili',
  'name',
  'father',
  'one',
  'seem',
  'person',
  'also',
  'like',
  'behav',
  'like',
  'decis',
  'set',
  'sinc',
  'deal',
  'jasper',
  'seem',
  'fond',
  'idea',
  'either',
  'told',
  'could',
  'consid',
  'think',
  'sure',
  'maddi',
  'got',
  'quit',
  'pissi',
  'said',
  'fair',
  'allow',
  'say',
  'anyth',
  'without',
  'pass',
  'mom',
  'polic',
  'child',
  'cant',
  'deliveri',
  'room',
  'gave',
  'birth',
  'legal',
  'right',
  'least',
  '*',
  'could',
  '*',
  'let',
  'middl',
  'name',
  'jasper',
  'tri',
  'argu',
  'maddi',
  'refus',
  'took',
  'thing',
  'left',
  'us',
  'stay',
  'back',
  'apolog',
  'take',
  'back',
  'hous',
  'mom',
  'say',
  'understand',
  'maddi',
  'pov',
  'im',
  'child',
  'man',
  'lose',
  'babi',
  'allow',
  '*',
  'anyth',
  '*',
  'without',
  'jasper',
  'say',
  'ye',
  'first',
  'mayb',
  'let',
  'sinc',
  'middl',
  'name',
  'matter',
  'anymor',
  'still',
  'entertain',
  'idea',
  'want',
  'ask',
  'anyway',
  'ill',
  'happi',
  'give',
  'info',
  'someon',
  'need',
  'eta',
  'come',
  'clarif',
  'threesom',
  'got',
  'pregnant',
  'eta',
  'woa',
  'think',
  'would',
  'blow',
  'like',
  'want',
  'clarifi',
  'thing',
  'pleas',
  'stop',
  'say',
  'maddi',
  'unhing',
  'crazi',
  'neither',
  'us',
  'plan',
  'pregnanc',
  'tray',
  'steal',
  'babi',
  'im',
  'live',
  'neither',
  'live',
  'see',
  'regularli',
  'ye',
  'still',
  'sleep',
  'togeth',
  'call',
  'clarifi',
  'got',
  'pregnant',
  'time',
  'begin',
  'im',
  'still',
  'sleep',
  'three',
  'us',
  'agre',
  'meant',
  'noth',
  'make',
  'us',
  'partner',
  'theyv',
  'relationship',
  'never',
  'sleep',
  'maddi',
  'jasper',
  'happen',
  'time',
  'told',
  'babi',
  'three',
  'us',
  'long',
  'talk',
  'today',
  'got',
  'clarifi',
  'mani',
  'thing',
  'maddi',
  'thank',
  'judgment',
  'accept'],
 ['late',
  'wife',
  'kate',
  'pass',
  'away',
  'year',
  'ago',
  'famili',
  'heirloom',
  'pass',
  'sever',
  'gener',
  'start',
  'great',
  'grandmoth',
  'mother',
  'first',
  'daughter',
  'th',
  'thereabout',
  'birthday',
  'heirloom',
  'highli',
  'valuabl',
  'financi',
  'sens',
  'histori',
  'make',
  'valuabl',
  'peopl',
  'famili',
  'current',
  'possess',
  'kate',
  'pass',
  'away',
  'alway',
  'intend',
  'give',
  'daughter',
  'clair',
  'th',
  'birthday',
  'current',
  'marri',
  'current',
  'wife',
  'year',
  'ago',
  'step',
  'daughter',
  'sarah',
  'adopt',
  'consid',
  'daughter',
  'year',
  'month',
  'old',
  'th',
  'birthday',
  'month',
  'wife',
  'also',
  'adopt',
  'clair',
  'consid',
  'one',
  'famili',
  'wife',
  'ask',
  'give',
  'heirloom',
  'sarah',
  'birthday',
  'continu',
  'tradit',
  'hesit',
  'alway',
  'intend',
  'give',
  'clair',
  'kate',
  'daughter',
  'would',
  'want',
  'continu',
  'tradit',
  'wife',
  'counter',
  'belong',
  'famili',
  'give',
  'eldest',
  'daughter',
  'th',
  'birthday',
  'therefor',
  'sarah',
  'told',
  'consid',
  'sarah',
  'daughter',
  'kate',
  'daughter',
  'belong',
  'kate',
  'go',
  'kate',
  'daughter',
  'wife',
  'said',
  'clair',
  'daughter',
  'anyon',
  'els',
  'wife',
  'accus',
  'play',
  'favorit',
  'told',
  'truli',
  'consid',
  'sarah',
  'daughter',
  'ill',
  'right',
  'thing',
  'realli',
  'accept',
  'sarah',
  'real',
  'daughter',
  'yet',
  'consult',
  'son',
  'kate',
  'year',
  'old',
  'told',
  'go',
  'walk',
  'birthday',
  'parti',
  'bet',
  'one',
  'said',
  'readi',
  'sever',
  'consequ',
  'left',
  'frustrat',
  'way',
  'argument',
  'end',
  'give',
  'away',
  'mom',
  'belong',
  'clair',
  'wife',
  'think',
  'son',
  'overreact',
  'due',
  'age',
  'move',
  'never',
  'bond',
  'sarah',
  'like',
  'clair',
  'consid',
  'sarah',
  'real',
  'sister',
  'otherwis',
  'hed',
  'happi',
  'wife',
  'think',
  'clair',
  'happi',
  'sinc',
  'consid',
  'sarah',
  'big',
  'sister',
  'bring',
  'girl',
  'even',
  'closer',
  'togeth',
  'sarah',
  'happili',
  'share',
  'clair',
  'theyll',
  'would',
  'asshol',
  'wife',
  'want',
  'give',
  'heirloom',
  'sarah'],
 ['mom',
  'late',
  'stage',
  'alzheim',
  'unabl',
  'manag',
  'money',
  'need',
  'around',
  'clock',
  'care',
  'probabl',
  'would',
  'safer',
  'put',
  'nurs',
  'home',
  'made',
  'us',
  'promis',
  'last',
  'resort',
  'thank',
  'lot',
  'invest',
  'save',
  'dad',
  'pass',
  'get',
  'hire',
  'person',
  'carer',
  'homemi',
  'sister',
  'one',
  'live',
  'closest',
  'visit',
  'often',
  'handl',
  'mom',
  'financ',
  'give',
  'sister',
  '$',
  'month',
  'run',
  'errand',
  'help',
  'look',
  'mom',
  'sinc',
  'live',
  'state',
  'sister',
  'call',
  'tell',
  'lot',
  'cash',
  'withdraw',
  'recent',
  'mom',
  'card',
  'check',
  'nearli',
  'year',
  'worth',
  '$',
  '-',
  'withdrawn',
  'call',
  'sister',
  'handl',
  'financ',
  'confus',
  'say',
  'never',
  'take',
  'cash',
  'pay',
  'bill',
  'bank',
  'card',
  'use',
  'cc',
  'groceri',
  'etc',
  'freez',
  'bank',
  'card',
  'take',
  'red',
  'eye',
  'long',
  'stori',
  'short',
  'ask',
  'bank',
  'atm',
  'withdraw',
  'happen',
  'sister',
  'look',
  'shock',
  'googl',
  'locat',
  'realiz',
  'close',
  'son',
  'school',
  'wait',
  'son',
  'got',
  'home',
  'ask',
  'work',
  'said',
  'local',
  'restaur',
  'said',
  'would',
  'like',
  'go',
  'restaur',
  'confirm',
  'work',
  'got',
  'realli',
  'panick',
  'said',
  'manag',
  'chang',
  'know',
  'himi',
  'ask',
  'paycheck',
  'final',
  'give',
  'admit',
  'job',
  'sister',
  'ask',
  'money',
  'new',
  'stuff',
  'bought',
  'home',
  'come',
  'admit',
  'steal',
  'bank',
  'card',
  'make',
  'cash',
  'withdraw',
  'ask',
  'got',
  'pin',
  'sister',
  'confess',
  'write',
  'pin',
  'sticki',
  'note',
  'forget',
  '🤦\u200d♂️',
  'take',
  'bank',
  'statement',
  'calcul',
  '$',
  'told',
  'pay',
  'back',
  'im',
  'file',
  'polic',
  'report',
  'theft',
  'sister',
  'beg',
  'say',
  'anyth',
  'record',
  'might',
  'get',
  'colleg',
  'told',
  'pay',
  'said',
  'struggl',
  'moneysh',
  'singl',
  'mother',
  'told',
  'good',
  'enough',
  'complain',
  'son',
  'know',
  'better',
  'told',
  'put',
  'year',
  'old',
  'jail',
  'might',
  'older',
  'better',
  'learn',
  'lesson',
  'said',
  'take',
  'son',
  'inherit',
  'would',
  'mom',
  'yell',
  'mom',
  'state',
  'judg',
  'would',
  'write',
  'call',
  'lawyer',
  'ask',
  'suggest',
  'file',
  'polic',
  'report',
  'includ',
  'nephew',
  'name',
  'yet',
  'sister',
  'scream',
  'im',
  'ruin',
  'son',
  'life',
  'involv',
  'polic',
  'kid',
  'im',
  'happi',
  'steal',
  'grandma',
  'look',
  'mom',
  'sick',
  'cant',
  'imagin',
  'go',
  'older'],
 ['year',
  'old',
  'babysit',
  'make',
  'money',
  'took',
  'first',
  'aid',
  'cours',
  'babysit',
  'cours',
  'lat',
  'weekend',
  'one',
  'littl',
  'sister',
  'classmat',
  'parent',
  'wed',
  'go',
  'ask',
  'would',
  'babysit',
  'ask',
  'late',
  'would',
  'need',
  'pack',
  'overnight',
  'bag',
  'go',
  'stay',
  'night',
  'said',
  'would',
  'home',
  'midnight',
  'check',
  'dad',
  'okay',
  'ride',
  'want',
  'alon',
  'car',
  'adult',
  'know',
  'dad',
  'pick',
  'kid',
  'asleep',
  'watch',
  'tv',
  'text',
  'doubl',
  'would',
  'time',
  'mom',
  'text',
  'back',
  'ye',
  'still',
  'text',
  'answer',
  'call',
  'dad',
  'piss',
  'one',
  'oclock',
  'call',
  'answer',
  'dad',
  'went',
  'got',
  'coffe',
  'home',
  'came',
  'back',
  'calm',
  'good',
  'readi',
  'blow',
  'text',
  'everi',
  'minut',
  'respons',
  'idea',
  'text',
  'someon',
  'tri',
  'break',
  'garag',
  'alarm',
  'scare',
  'away',
  'home',
  'drunk',
  'uber',
  'minut',
  'dad',
  'made',
  'pay',
  'extra',
  'time',
  'left',
  'told',
  'im',
  'allow',
  'babysit',
  'unless',
  'charg',
  'overnight',
  'stay',
  'yesterday',
  'school',
  'saw',
  'mom',
  'pick',
  'sister',
  'school',
  'gave',
  'shit',
  'scare',
  'husband',
  'check',
  'secur',
  'camera',
  'one',
  'tri',
  'break',
  'said',
  'sorri',
  'alarm',
  'went',
  'call',
  'call',
  'liar',
  'fair',
  'feel',
  'bad',
  'lie',
  'first',
  'mom',
  'say',
  'suck',
  'dad',
  'say',
  'broke',
  'deal',
  'kind',
  'feel',
  'bad',
  'trick',
  'come',
  'home',
  'parti',
  'could',
  'told',
  'overnight',
  'text',
  'go',
  'late',
  'dad',
  'brought',
  'overnight',
  'bag',
  'happen',
  'edit',
  'mom',
  'want',
  'call',
  'polic',
  'see',
  'accid',
  'thought',
  'still',
  'wed',
  'would',
  'caus',
  'scene'],
 ['parent',
  'terribl',
  'money',
  'littl',
  'father',
  'gambl',
  'away',
  'save',
  '$',
  'riski',
  'penni',
  'stock',
  'got',
  'wipe',
  'forc',
  'move',
  'singl',
  'bedroom',
  'hous',
  'us',
  'mom',
  'fell',
  'mlm',
  'imag',
  'happen',
  'lost',
  'payment',
  'hous',
  'save',
  'beg',
  'sign',
  'sinc',
  'saw',
  'clearli',
  'scam',
  'show',
  'evid',
  'laugh',
  'ignor',
  'lost',
  '$',
  'recent',
  'fall',
  'colleg',
  'signup',
  'scam',
  'lost',
  '$',
  'sign',
  'colleg',
  'need',
  'loan',
  'tri',
  'go',
  'though',
  'privat',
  'broker',
  'promis',
  'get',
  'school',
  'loan',
  'would',
  'use',
  'whatev',
  'want',
  'went',
  'see',
  'broker',
  'told',
  'scam',
  'ignor',
  'basic',
  'tri',
  'scam',
  'govern',
  'got',
  'scam',
  'instead',
  'actual',
  'tri',
  'pri',
  'pen',
  'away',
  'father',
  'hand',
  'got',
  'desper',
  'write',
  'bank',
  'info',
  'ssn',
  'scream',
  'embarrass',
  'anyway',
  'lost',
  'money',
  'homeless',
  'credit',
  'crap',
  'bare',
  'afford',
  'even',
  'crappi',
  'apart',
  'probabl',
  'cant',
  'get',
  'money',
  'back',
  'sinc',
  'littl',
  'document',
  'broker',
  'promis',
  'live',
  'car',
  'beg',
  'money',
  '$',
  'save',
  'wait',
  'buy',
  'hous',
  'know',
  'stupidli',
  'told',
  'save',
  'hous',
  'call',
  'show',
  'apart',
  'ask',
  'money',
  'also',
  'want',
  'move',
  'meantim',
  'roommat',
  'agre',
  'visit',
  'friend',
  'famili',
  'max',
  'week',
  'prevent',
  'resent',
  'parent',
  'move',
  'probabl',
  'refus',
  'move',
  'go',
  'food',
  'pantri',
  'honestli',
  'cant',
  'find',
  'im',
  'sympathet',
  'sinc',
  'listen',
  'need',
  'money'],
 ['hey',
  'yall',
  'work',
  'compani',
  'year',
  'year',
  'long',
  'shift',
  'work',
  'weekend',
  'go',
  'extra',
  'mile',
  'compani',
  'final',
  'gave',
  'promot',
  'cowork',
  'heard',
  'confus',
  'point',
  'theyv',
  'compani',
  'longer',
  'work',
  'harder',
  'ignor',
  'comment',
  'sinc',
  'vent',
  'howev',
  'co',
  'worker',
  'name',
  'michael',
  'join',
  'us',
  'rare',
  'yesterday',
  'lunch',
  'break',
  'start',
  'vent',
  'demot',
  'stay',
  'quiet',
  'til',
  'brought',
  'promot',
  'flatout',
  'said',
  'reason',
  'got',
  'promot',
  'breast',
  'size',
  'shock',
  'almost',
  'drop',
  'cup',
  'look',
  'around',
  'everyon',
  'stare',
  'respond',
  'say',
  'reason',
  'got',
  'demot',
  'brain',
  'size',
  'face',
  'went',
  'pale',
  'peopl',
  'laugh',
  'piss',
  'beyon',
  'belief',
  'turn',
  'around',
  'walk',
  'co',
  'worker',
  'approach',
  'say',
  'michael',
  'reput',
  'ahead',
  'one',
  'best',
  'compani',
  'hire',
  'due',
  'circumst',
  'focu',
  'work',
  'got',
  'demot',
  'result',
  'impli',
  'stupid',
  'humili',
  'infront',
  'everybodi',
  'ask',
  'okay',
  'said',
  'said',
  'couldv',
  'ignor',
  'talk',
  'privat',
  'await',
  'apolog',
  'keep',
  'avoid',
  'feel',
  'horribl',
  'im',
  'mean',
  'person',
  'go',
  'way',
  'hurt',
  'feel',
  'start',
  'regret',
  'said',
  'aita'],
 ['pleas',
  'bear',
  'read',
  'post',
  'judg',
  'month',
  'old',
  'start',
  'allow',
  'visitor',
  'best',
  'friend',
  'came',
  'visit',
  'text',
  'suggest',
  'wear',
  'bra',
  'thick',
  'shirt',
  'plan',
  'hold',
  'son',
  'grab',
  'nippl',
  'hard',
  'friend',
  'pierc',
  'told',
  'theyr',
  'super',
  'sensit',
  'explain',
  'ignor',
  'messag',
  'came',
  'anyway',
  'nippl',
  'poke',
  'shirt',
  'month',
  'old',
  'stare',
  'hand',
  'readi',
  'offer',
  'give',
  'sweater',
  'look',
  'sideway',
  'suggest',
  'sexual',
  'breast',
  'cover',
  'explain',
  'case',
  'want',
  'hear',
  'respect',
  'decis',
  'ask',
  'still',
  'want',
  'hold',
  'babi',
  'grab',
  'son',
  'within',
  'minut',
  'death',
  'grip',
  'nippl',
  'jump',
  'scream',
  'pain',
  'pull',
  'said',
  'suggest',
  'bra',
  'made',
  'even',
  'mad',
  'said',
  'suggest',
  'misogynist',
  'confus',
  'left',
  'abruptli',
  'keep',
  'tell',
  'mutual',
  'friend',
  'sexual',
  'breast',
  'tri',
  'make',
  'wear',
  'bra',
  'welcom',
  'happen',
  'miss',
  'someth',
  'feel',
  'like',
  'reaction',
  'realli',
  'uncal',
  'eta',
  'midst',
  'argu',
  'suggest',
  'teach',
  'son',
  'grab',
  'nippl',
  'babi'],
 ['ill',
  'prefac',
  'say',
  'husband',
  'luke',
  'get',
  'along',
  'parent',
  'cant',
  'tell',
  'right',
  'wrong',
  'alway',
  'ongo',
  'tension',
  'civil',
  'enough',
  'sit',
  'togeth',
  'one',
  'tabl',
  'recent',
  'got',
  'invit',
  'christma',
  'celebr',
  'parent',
  'invit',
  'includ',
  'luke',
  'luke',
  'thought',
  'somewhat',
  'rude',
  'disrespect',
  'believ',
  'get',
  'invit',
  'name',
  'mention',
  'extent',
  'mine',
  'talk',
  'said',
  'go',
  'unless',
  'send',
  'proper',
  'invit',
  'call',
  'mom',
  'ask',
  'could',
  'thought',
  'ridicul',
  'said',
  'dad',
  'sister',
  'husband',
  'told',
  'fine',
  'luke',
  'sensit',
  'like',
  'simpl',
  'invit',
  'form',
  'text',
  'directli',
  'fix',
  'got',
  'defens',
  'said',
  'luke',
  'ridicul',
  'dad',
  'claim',
  'luke',
  'tri',
  'pull',
  'power',
  'move',
  'humili',
  'thought',
  'small',
  'issu',
  'still',
  'thought',
  'ridicul',
  'told',
  'attend',
  'send',
  'separ',
  'invit',
  'attend',
  'get',
  'blew',
  'sister',
  'start',
  'argu',
  'say',
  'luke',
  'need',
  'get',
  'shame',
  'tri',
  'forc',
  'parent',
  'send',
  'invit',
  'say',
  'come',
  'talk',
  'wait',
  'edit',
  'invit',
  'reciev',
  'text',
  'luke',
  'say',
  'simpl',
  'text',
  'finish',
  'conflict',
  'parent',
  'still',
  'think',
  'ridicul',
  'invit',
  'sinc',
  'alreadi',
  '*',
  '*',
  'updat',
  'got',
  'phone',
  'sister',
  'told',
  'parent',
  'disinvit',
  'luke',
  'probabl',
  'alreadi',
  'disinvit',
  'sinc',
  'argument',
  'occur',
  'celebr',
  'feel',
  'horribl',
  'cant',
  'argu',
  'anymor',
  'like',
  'cant',
  'argu',
  'everybodi',
  'els',
  'comment',
  'say',
  'admit',
  'luke',
  'problem',
  'caus',
  'disinvit',
  'event',
  'blame',
  '*',
  '*'],
 ['first',
  'first',
  'post',
  'ever',
  'want',
  'object',
  'opinion',
  'read',
  'lot',
  'kind',
  'post',
  'facebook',
  'anyth',
  'wrong',
  'pleas',
  'tell',
  'grandmoth',
  'wonder',
  'grandkid',
  'women',
  'men',
  'last',
  'grandkid',
  'got',
  'marri',
  'last',
  'octob',
  'husband',
  'usual',
  'get',
  'small',
  'gift',
  'usual',
  'cheapest',
  'thing',
  'registri',
  'day',
  'wed',
  'privat',
  'gift',
  'check',
  '$',
  'prefer',
  'use',
  'hous',
  'forc',
  'also',
  'ask',
  'keep',
  'privat',
  'big',
  'extend',
  'famili',
  'want',
  'expect',
  'us',
  'honor',
  'request',
  'came',
  'youngest',
  'granddaught',
  'bought',
  'air',
  'fryer',
  'cheapest',
  'thing',
  'registri',
  'sent',
  'advanc',
  'call',
  'us',
  'furiou',
  'went',
  'us',
  'cheap',
  'knew',
  'money',
  'love',
  'enough',
  'show',
  'get',
  'someth',
  'expens',
  'horrifi',
  'behavior',
  'went',
  'ahead',
  'threaten',
  'disinvit',
  'us',
  'get',
  'better',
  'gift',
  'discuss',
  'bought',
  'china',
  'set',
  'give',
  'money',
  'set',
  'asid',
  'decid',
  'deserv',
  'fast',
  'foreword',
  'last',
  'week',
  'met',
  'brother',
  'got',
  'talk',
  'found',
  'cash',
  'gift',
  'got',
  'ask',
  'cousin',
  'found',
  'got',
  'gift',
  'call',
  'us',
  'furiou',
  'discrimin',
  'told',
  'money',
  'behav',
  'want',
  'give',
  'start',
  'cri',
  'said',
  'extrem',
  'stress',
  'taken',
  'heart',
  'told',
  'stand',
  'decis',
  'refus',
  'attend',
  'christma',
  'mother',
  'dil',
  'call',
  'us',
  'ah',
  'awta'],
 ['wife',
  'dahlia',
  'lost',
  'apart',
  'month',
  'ago',
  'move',
  'mom',
  'temporarili',
  'issu',
  'began',
  'aris',
  'dahlia',
  'mom',
  'ask',
  'friend',
  'anthoni',
  'let',
  'us',
  'move',
  'til',
  'get',
  'enough',
  'money',
  'rent',
  'wife',
  'away',
  'visit',
  'famili',
  'agre',
  'even',
  'issu',
  'start',
  'aris',
  'fyi',
  'dahlia',
  'shi',
  'around',
  'anthoni',
  'grew',
  'conserv',
  'home',
  'understand',
  'sometim',
  'bit',
  'much',
  'admit',
  'exampl',
  'freak',
  'accid',
  'drank',
  'glass',
  'also',
  'made',
  'fuss',
  'pass',
  'guest',
  'room',
  'lie',
  'door',
  'open',
  'thank',
  'anthoni',
  'super',
  'understand',
  'abl',
  'talk',
  'issu',
  'last',
  'night',
  'dahlia',
  'pass',
  'hall',
  'notic',
  'frame',
  'pictur',
  'anthoni',
  'wife',
  'kiss',
  'hang',
  'wall',
  'told',
  'said',
  'made',
  'uncomfort',
  'ask',
  'could',
  'speak',
  'anthoni',
  'take',
  'well',
  'gave',
  'look',
  'spoke',
  'said',
  'bonker',
  'first',
  'wife',
  'put',
  'second',
  'pictur',
  'hold',
  'sentiment',
  'mean',
  'wife',
  'argu',
  'explicit',
  'pictur',
  'normal',
  'wed',
  'kiss',
  'start',
  'argu',
  'said',
  'like',
  'hang',
  'live',
  'room',
  'wall',
  'perfectli',
  'lit',
  'room',
  'ask',
  'littl',
  'consider',
  'like',
  'ask',
  'remov',
  'complet',
  'move',
  'elsewher',
  'dahlia',
  'reach',
  'keep',
  'wall',
  'til',
  'leav',
  'said',
  'sorri',
  'still',
  'refus',
  'explain',
  'dahlia',
  'feel',
  'said',
  'sorri',
  'would',
  'move',
  'pictur',
  'argu',
  'said',
  'hous',
  'pushi',
  'kind',
  'comfort',
  'make',
  'demand',
  'pushi',
  'still',
  'morn',
  'dahlia',
  'refus',
  'even',
  'come',
  'room',
  'pictur',
  'move',
  'anthoni',
  'refus',
  'make',
  'wors',
  'feel',
  'like',
  'im',
  'get',
  'stuck',
  'rock',
  'hard',
  'place',
  'ye',
  'might',
  'react',
  'feel',
  'like',
  'big',
  'ask',
  'anthoni',
  'declin',
  'turn',
  'fwiw',
  'id',
  'go',
  'extra',
  'mile',
  'make',
  'sure',
  'guest',
  'comfort',
  'anthoni',
  'friend',
  'mine',
  'year',
  'ask',
  'move',
  'strong',
  'bond',
  'constantli',
  'talk',
  'thing',
  'situat',
  'help',
  'consid',
  'brother'],
 ['live',
  'girlfriend',
  'sever',
  'month',
  'part',
  'thing',
  'realli',
  'good',
  'plan',
  'propos',
  'soon',
  'hope',
  'least',
  'coupl',
  'kid',
  'howev',
  'weve',
  'run',
  'conflict',
  'absolut',
  'morn',
  'person',
  'hate',
  'morn',
  'time',
  'forc',
  'bed',
  'morn',
  'shower',
  'alreadi',
  'least',
  'minut',
  '--',
  'even',
  'though',
  'work',
  'later',
  '--',
  'stove',
  'make',
  'breakfast',
  'like',
  'huge',
  'breakfast',
  'morn',
  'usual',
  'egg',
  'either',
  'french',
  'toast',
  'pancak',
  'hashbrown',
  'breakfast',
  'potato',
  'sausag',
  'bacon',
  'sometim',
  'weekend',
  'ham',
  'steak',
  'eat',
  'almost',
  'noth',
  'lunch',
  'usual',
  'smallish',
  'dinner',
  'love',
  'huge',
  'breakfast',
  'meanwhil',
  'ever',
  'cold',
  'cereal',
  'breakfast',
  'mayb',
  'im',
  'feel',
  'realli',
  'ambiti',
  'instant',
  'oatmeal',
  'orang',
  'juic',
  'even',
  'start',
  'come',
  'aliv',
  'halfway',
  'second',
  'cup',
  'coffe',
  'definit',
  'feel',
  'like',
  'cook',
  'morn',
  'howev',
  'girlfriend',
  'obvious',
  'recent',
  'ask',
  'shed',
  'start',
  'make',
  'breakfast',
  'ask',
  'go',
  'trade',
  'id',
  'sometim',
  'make',
  'breakfast',
  'told',
  'remind',
  'often',
  'make',
  'dinner',
  'said',
  'sinc',
  'trade',
  'make',
  'dinner',
  'trade',
  'make',
  'breakfast',
  'told',
  'way',
  'ill',
  'ever',
  'abl',
  'muster',
  'kind',
  'energi',
  'first',
  'thing',
  'morn',
  'sinc',
  'obvious',
  'make',
  'breakfast',
  'said',
  'would',
  'take',
  'next',
  'extra',
  'effort',
  'part',
  'throw',
  'coupl',
  'egg',
  'strip',
  'bacon',
  'extra',
  'portion',
  'hashbrown',
  'etc',
  'sinc',
  'alreadi',
  'anyway',
  'start',
  'fight',
  'say',
  'fair',
  'expect',
  'think',
  'morn',
  'sinc',
  'seem',
  'think',
  'make',
  'breakfast',
  'figur',
  'divis',
  'labor',
  'someth',
  'extra',
  'return',
  'think',
  'sinc',
  'make',
  'huge',
  'breakfast',
  'everi',
  'morn',
  'anyway',
  'throw',
  'extra',
  'portion',
  'whatev',
  'make',
  'would',
  'take',
  'next-to',
  'effort',
  'part',
  'return',
  'alreadi'],
 ['husband',
  'sore',
  'foot',
  'injuri',
  'medic',
  'condit',
  'would',
  'explain',
  'pain',
  'abl',
  'walk',
  'properli',
  'week',
  'absolut',
  'pain',
  'ass',
  'refus',
  'go',
  'doctor',
  'today',
  'appar',
  'prefer',
  'pop',
  'paracetamol',
  'complain',
  'gotten',
  'progress',
  'swollen',
  'misshapen',
  'look',
  'today',
  'gone',
  'funni',
  'colour',
  'cant',
  'put',
  'weight',
  'call',
  'gp',
  'sent',
  'walk',
  'clinic',
  'local',
  'hospit',
  'final',
  'get',
  'seen',
  'doctor',
  'refus',
  'even',
  'examin',
  'told',
  'without',
  'even',
  'look',
  'foot',
  'sprain',
  'go',
  'prescrib',
  'painkil',
  'ask',
  'start',
  'demonstr',
  'kind',
  'exercis',
  'involv',
  'go',
  'tipto',
  'flex',
  'toe',
  'ask',
  'would',
  'pleas',
  'look',
  'gone',
  'nearli',
  'black',
  'spot',
  'look',
  'similar',
  'wrist',
  'look',
  'broke',
  'year',
  'ago',
  'huf',
  'ask',
  'medic',
  'degre',
  'put',
  'back',
  'demand',
  'see',
  'anoth',
  'doctor',
  'senior',
  'asshol',
  'treat',
  'get',
  'thought',
  'pushi',
  'cow-',
  'husband',
  'say',
  'boo',
  'goos',
  'medic',
  'situat',
  'would',
  'accept',
  'doctor',
  'instruct',
  'without',
  'question',
  'actual',
  'need',
  'examin',
  'doctor',
  'left',
  'heard',
  'outsid',
  'cubicl',
  'tell',
  'senior',
  'doctor',
  'confront',
  'spous',
  'think',
  'web',
  'md',
  'search',
  'qualifi',
  'instruct',
  'real',
  'doctor',
  'practic',
  'medicin',
  'also',
  'state',
  'suspect',
  'husband',
  'exagger',
  'get',
  'opiat',
  'time',
  'doctor',
  'arriv',
  'im',
  'seeth',
  'lay',
  'exactli',
  'went',
  'explain',
  'want',
  'someon',
  'look',
  'foot',
  'send',
  'us',
  'away',
  'lookscu',
  'xray',
  'mri',
  'good',
  'painkil',
  'walk',
  'boot',
  'cast',
  'thing',
  'potenti',
  'need',
  'surgeri',
  'got',
  'stress',
  'fractur',
  'foot-',
  'probabl',
  'run',
  'admittedli',
  'wors',
  'need',
  'get',
  'treatment',
  'first',
  'start',
  'hurt',
  'second',
  'doctor',
  'someon',
  'hospit',
  'admin',
  'come',
  'apologis',
  'first',
  'doctor',
  'ask',
  'want',
  'make',
  'formal',
  'complaint',
  'outcom',
  'listen',
  'patient',
  'famili',
  'could',
  'wors',
  'husband',
  'husband',
  'said',
  'later',
  'first',
  'doctor',
  'may',
  'get',
  'sack',
  'complain',
  'left',
  'real',
  'harm',
  'done',
  'ah',
  'move',
  'complain',
  'usual',
  'karen',
  'tendenc',
  'patronis',
  'dismiss',
  'kept',
  'think',
  'young',
  'mother',
  'sick',
  'babi',
  'dissmis',
  'that-',
  'everyth',
  'would',
  'stand',
  'ground',
  'could',
  'realli',
  'seriou',
  'consequ',
  'edit',
  'thank',
  'comment',
  'awards-',
  'expect',
  'go',
  'mental',
  'ive',
  'shown',
  'hubbi',
  'post',
  'start',
  'realis',
  'seriou',
  'could',
  'go',
  'email',
  'admin',
  'guy',
  'saw',
  'afternoon-',
  'gave',
  'us',
  'contact',
  'detail',
  'complaint',
  'also',
  'agre',
  'delay',
  'treatment',
  'way',
  'incred',
  'stupid',
  'decid',
  'chase',
  'counsel',
  'referr',
  'gp',
  'less',
  'useless',
  'futur',
  'medic',
  'situat',
  'thank',
  'eventu',
  'given',
  'appropri',
  'treatment',
  'hope',
  'follow',
  'posit',
  'ill',
  'stick',
  'updat',
  'anyth',
  'interest',
  'report',
  'thank',
  'set',
  'mind',
  'eas',
  'share',
  'opinion'],
 ['ohhhkay',
  'might',
  'sound',
  'ridicul',
  'allow',
  'take',
  'time',
  'explain',
  'start',
  'work',
  'compani',
  'month',
  'guy',
  'cowork',
  'decent',
  'howev',
  'notic',
  'pattern',
  'femal',
  'cowork',
  'coupl',
  'consist',
  'openinglook',
  'phone',
  'whenev',
  'get',
  'chanc',
  'use',
  'bathroommeet',
  'etc',
  'far',
  'ive',
  'caught',
  'time',
  'take',
  'someth',
  'open',
  'app',
  'wouldv',
  'known',
  'still',
  'know',
  'kept',
  'snoop',
  'want',
  'tackl',
  'issu',
  'non-confront',
  'way',
  'sinc',
  'theyr',
  'beyond',
  'sweet',
  'except',
  'snoop',
  'thing',
  'set',
  'insult',
  'offens',
  'wallpap',
  'made',
  'wallpap',
  'say',
  'touch',
  'phone',
  'assholemuggleweirdo',
  'see',
  'john',
  'cena',
  'wave',
  'hand',
  'b__',
  'touch',
  'phone',
  'middl',
  'finger',
  'middl',
  'screen',
  'experi',
  'appar',
  'got',
  'claim',
  'offend',
  'person',
  'level',
  'call',
  'name',
  'told',
  'busi',
  'touch',
  'phone',
  'made',
  'excus',
  'say',
  'tri',
  'borrow',
  'chargercheck',
  'time',
  'etc',
  'etc',
  'offic',
  'got',
  'split',
  'said',
  'come',
  'ladi',
  'realli',
  'issu',
  'say',
  'justifi',
  'ultim',
  'one',
  'get',
  'control',
  'use',
  'wallpap',
  'theyr',
  'expect',
  'formal',
  'apolog',
  'refus',
  'aita',
  'handl',
  'inappropri'],
 ['yo',
  'son',
  'need',
  'hip',
  'bone',
  'osteoma',
  'surgeri',
  'mom',
  'schedul',
  'three',
  'week',
  'winter',
  'break',
  'ex',
  'share',
  'get',
  'winter',
  'break',
  'could',
  'take',
  'state',
  'see',
  'famili',
  'summer',
  'day',
  'surgeri',
  'ask',
  'ry',
  'could',
  'stay',
  'place',
  'recov',
  'surgeri',
  'ask',
  'said',
  'want',
  'said',
  'ry',
  'never',
  'surgeri',
  'big',
  'deal',
  'want',
  'think',
  'first',
  'thing',
  'face',
  'someth',
  'scari',
  'run',
  'mom',
  'dad',
  'told',
  'quit',
  'insult',
  'request',
  'plu',
  'go',
  'need',
  'help',
  'get',
  'dress',
  'undress',
  'bath',
  'first',
  'coupl',
  'day',
  'highli',
  'doubt',
  'hed',
  'comfort',
  'mom',
  'said',
  'husband',
  'could',
  'told',
  'surgeri',
  'im',
  'take',
  'hous',
  'releas',
  'care',
  'oper',
  'room',
  'ask',
  'could',
  'see',
  'place',
  'said',
  'agreement',
  'schedul',
  'facetim',
  'parent',
  'hous',
  'want',
  'ex',
  'wife',
  'home',
  'anymor',
  'want',
  'shoe',
  'foot',
  'id',
  'understand',
  'whether',
  'like',
  'held',
  'firm',
  'thing',
  'tens',
  'us',
  'ever',
  'sinc',
  'person',
  'care',
  'im',
  'apolog',
  'give',
  'want',
  'edit',
  'son',
  'get',
  'decid',
  'get',
  'stay',
  'long',
  'custodi',
  'agreement'],
 ['fiancé',
  'im',
  'take',
  'day',
  'honeymoon',
  'brazil',
  'origin',
  'trip',
  'work',
  'long',
  'time',
  'week',
  'ago',
  'learn',
  'parent',
  'hope',
  'stop',
  'visit',
  'us',
  'honeymoon',
  'even',
  'ask',
  'stay',
  'us',
  'rent',
  'bedroom',
  'place',
  'near',
  'beach',
  'night',
  'said',
  'absolut',
  'husband',
  'agre',
  'told',
  'want',
  'privaci',
  'parent',
  'grown',
  'close',
  'sent',
  'separ',
  'text',
  'ask',
  'lightheart',
  'way',
  'thought',
  'realli',
  'big',
  'problem',
  'agre',
  'said',
  'ye',
  'agre',
  'mom',
  'ask',
  'honest',
  '-',
  'said',
  'want',
  'abl',
  'open',
  'free',
  'without',
  'think',
  'houseguest',
  'said',
  'sex',
  'thought',
  'still',
  'lightheart',
  'repli',
  'im',
  'honest',
  'im',
  'go',
  'fuck',
  'brain',
  'everi',
  'room',
  'hous',
  'respons',
  'becom',
  'whole',
  'thing',
  'mother',
  'law',
  'think',
  'im',
  'disrespect',
  'father',
  'law',
  'think',
  'im',
  'sex',
  'monster',
  'kind',
  'husband',
  'think',
  'way',
  'far',
  'aita',
  'owe',
  'apolog'],
 ['run',
  'small',
  'onlin',
  'busi',
  'home',
  'novemb',
  'decemb',
  'busiest',
  'time',
  'year',
  'make',
  'lot',
  'money',
  'allow',
  'work',
  'less',
  'year',
  'ive',
  'sinc',
  'ive',
  'got',
  'decent',
  'idea',
  'focus',
  'work',
  '-',
  'month',
  'sacrific',
  'im',
  'make',
  'chill',
  'rest',
  'year',
  'year',
  'ive',
  'move',
  'boyfriend',
  'well',
  'technic',
  'move',
  'hous',
  'brainier',
  'move',
  'split',
  'chore',
  'half',
  'half',
  'work',
  'full',
  'time',
  'hour',
  'week',
  'move',
  'talk',
  'let',
  'know',
  'cant',
  'chore',
  'novemberdecemb',
  'ask',
  'could',
  'pick',
  'slack',
  'im',
  'physic',
  'unabl',
  'chore',
  'work',
  'anyth',
  '-',
  'hour',
  'day',
  'take',
  'full',
  'januari',
  'decompress',
  'said',
  'doubt',
  'work',
  'much',
  'see',
  'ask',
  'septemb',
  'octob',
  'make',
  'sure',
  'awar',
  'anyth',
  'meal',
  'prep',
  'advanc',
  'felt',
  'kind',
  'dismiss',
  'mid',
  'novemb',
  'argument',
  'chore',
  'done',
  'remind',
  'told',
  'said',
  'thought',
  'seriou',
  'told',
  'way',
  'hed',
  '%',
  'chore',
  'work',
  'said',
  'fine',
  'chore',
  'wait',
  'time',
  'live',
  'alon',
  'problem',
  'make',
  'much',
  'mess',
  'anyway',
  'happi',
  'drop',
  'seen',
  'much',
  'ive',
  'work',
  'much',
  'piss',
  'blew',
  'today',
  'regard',
  'chore',
  'said',
  'better',
  'work',
  'life',
  'balanc',
  'grow',
  'hous',
  'mess',
  'told',
  'mess',
  'fault',
  'bare',
  'leav',
  'offic',
  'call',
  'lazi',
  'bitch',
  'told',
  'time',
  'argu',
  'went',
  'back',
  'work',
  'stood',
  'front',
  'lock',
  'offic',
  'door',
  'shout',
  'believ',
  'bei',
  'mg',
  'seriou',
  'chore',
  'asshol',
  'move',
  'leav',
  'think',
  'im',
  'major',
  'asshol',
  'basic',
  'disappear',
  'month',
  'follow',
  'chore',
  'realli',
  'asshol',
  'say',
  'chore',
  'follow',
  'sorri',
  'typo',
  'im',
  'mobil',
  'autocorrect',
  'hate'],
 ['sister',
  'mari',
  'husband',
  'zach',
  'first',
  'child',
  'beauti',
  'babi',
  'girl',
  'month',
  'ago',
  'pretti',
  'nervou',
  'parent',
  'husband',
  'tom',
  'invit',
  'final',
  'meet',
  'niec',
  'thrill',
  'except',
  'worri',
  'tom',
  'make',
  'ass',
  'see',
  'tom',
  'mari',
  'alway',
  'hard',
  'time',
  'get',
  'along',
  'agre',
  'nearli',
  'anyth',
  'tom',
  'alway',
  'gotten',
  'kick',
  'challeng',
  'mari',
  'differ',
  'view',
  'opinion',
  'thing',
  'tom',
  'funni',
  'watch',
  'mari',
  'react',
  'say',
  'thing',
  'provok',
  'mari',
  'alway',
  'want',
  'prove',
  'view',
  'wrong',
  'head',
  'grad',
  'school',
  'social',
  'scienc',
  'finish',
  'right',
  'babi',
  'knowledg',
  'topic',
  'tom',
  'want',
  'argu',
  'mari',
  'problem',
  'debat',
  'liter',
  'job',
  'past',
  'tom',
  'mari',
  'initi',
  'argument',
  'guilti',
  'take',
  'far',
  'past',
  'ever',
  'sinc',
  'got',
  'pregnant',
  'babi',
  'mari',
  'calm',
  'lot',
  'wherea',
  'tom',
  'still',
  'tri',
  'bait',
  'debat',
  'touchi',
  'subject',
  'mainli',
  'polit',
  'person',
  'valu',
  'got',
  'point',
  'mari',
  'block',
  'social',
  'media',
  'month',
  'ago',
  'went',
  'visit',
  'ask',
  'tom',
  'nice',
  'mari',
  'zach',
  'start',
  'anyth',
  'tom',
  'said',
  'would',
  'tri',
  'best',
  'told',
  'would',
  'upset',
  'tri',
  'bait',
  'mari',
  'zach',
  'argument',
  'tom',
  'start',
  'even',
  'pretti',
  'strong',
  'kept',
  'reveal',
  'zach',
  'go',
  'one',
  'stay',
  'home',
  'daughter',
  'tom',
  'made',
  'comment',
  'like',
  'oh',
  'thought',
  'mom',
  'suppos',
  'zach',
  'said',
  'pretti',
  'sexist',
  'tom',
  'say',
  'tom',
  'ask',
  'zach',
  'told',
  'mom',
  'career',
  'mari',
  'give',
  'hard',
  'work',
  'did…',
  'tom',
  'start',
  'tangent',
  'mari',
  'cut',
  'told',
  'either',
  'quit',
  'leav',
  'done',
  'entertain',
  'nonsens',
  'tom',
  'laugh',
  'still',
  'awkward',
  'stay',
  'long',
  'got',
  'home',
  'told',
  'tom',
  'done',
  'embarrass',
  'allow',
  'join',
  'whenev',
  'visit',
  'mari',
  'im',
  'even',
  'invit',
  'back',
  'told',
  'make',
  'look',
  'smart',
  'alway',
  'insist',
  'convers',
  'make',
  'look',
  'like',
  'ass',
  'like',
  'fool',
  'tom',
  'said',
  'im',
  'blow',
  'way',
  'proport',
  'fault',
  'got',
  'offend',
  'anyth',
  'rude',
  'kick',
  'opinion',
  'mari',
  'anyth',
  'time',
  'snap',
  'back',
  'call',
  'name',
  'ask',
  'stop',
  'aita',
  'unreason'],
 ['roughli',
  'mani',
  'sibl',
  'even',
  'step',
  'sibl',
  'parent',
  'latest',
  'stepfath',
  'kid',
  'live',
  'half',
  'sibl',
  'mom',
  'side',
  'stepsibl',
  'full',
  'sister',
  'thing',
  'never',
  'particularli',
  'good',
  'stabl',
  'rock',
  'bottom',
  'mother',
  'stepfath',
  'go',
  'go',
  'away',
  'long',
  'time',
  'everyon',
  'rush',
  'get',
  'kid',
  'home',
  'im',
  'one',
  'everyon',
  'want',
  'want',
  'id',
  'gotten',
  'opportun',
  'grandma',
  'father',
  'side',
  'offer',
  'move',
  'even',
  'pay',
  'go',
  'colleg',
  'thing',
  'live',
  'sever',
  'state',
  'away',
  'talk',
  'social',
  'servic',
  'got',
  'answer',
  'could',
  'move',
  'without',
  'problem',
  'parent',
  'abl',
  'voluntarili',
  'gave',
  'guardianship',
  'im',
  'full',
  'sister',
  'rest',
  'could',
  'take',
  'stay',
  'state',
  'would',
  'full',
  'foster',
  'care',
  'placement',
  'though',
  'im',
  'sorri',
  'forc',
  'stay',
  'would',
  'destroy',
  'futur',
  'could',
  'definit',
  'surviv',
  'would',
  'stuck',
  'horribl',
  'place',
  'work',
  'paycheck',
  'paycheck',
  'could',
  'never',
  'real',
  'life',
  'made',
  'obviou',
  'choic',
  'social',
  'worker',
  'nice',
  'enough',
  'arrang',
  'stand',
  'front',
  'pickup',
  'obvious',
  'know',
  'exactli',
  'theyr',
  'care',
  'four',
  'phone',
  'text',
  'call',
  'non-stop',
  'help',
  'scream',
  'abandon',
  'known',
  'system',
  'go',
  'realli',
  'bad',
  'theyr',
  'age',
  'cant',
  'cant',
  'blow',
  'mine',
  'fs',
  'first',
  'chanc',
  'real',
  'life',
  'feel',
  'like',
  'owe',
  'us',
  'take',
  'wrong',
  'kid',
  'mom',
  'think',
  'grandma',
  'think',
  'done',
  'someth',
  'cant',
  'say',
  'let',
  'hous',
  'even',
  'could',
  'happen',
  'person',
  'think',
  'wors',
  'say',
  'like',
  'quiet',
  'obvious',
  'know',
  'full',
  'stori'],
 ['recent',
  'turn',
  'twenti',
  'parti',
  'celebr',
  'turn',
  'small',
  'gather',
  'favourit',
  'sushi',
  'restaur',
  'immedi',
  'famili',
  'friend',
  'everyth',
  'go',
  'well',
  'came',
  'time',
  'present',
  'see',
  'famili',
  'tradit',
  'first',
  'born',
  'turn',
  'twenti',
  'given',
  'pocket',
  'watch',
  'great',
  'grandfath',
  'countri',
  'still',
  'colon',
  'british',
  'great',
  'grandfath',
  'taken',
  'missionari',
  'becam',
  'teacher',
  'teacher',
  'super',
  'instrument',
  'commun',
  'partli',
  'fund',
  'first',
  'black',
  'school',
  'becam',
  'headmast',
  'thank',
  'commun',
  'chip',
  'get',
  'pocket',
  'watch',
  'grandfath',
  'turn',
  'given',
  'watch',
  'becam',
  'tradit',
  'per',
  'tradit',
  'expect',
  'get',
  'watch',
  'even',
  'made',
  'effort',
  'hint',
  'want',
  'watch',
  'whole',
  'year',
  'prior',
  'among',
  'present',
  'saw',
  'small',
  'box',
  'got',
  'excit',
  'think',
  'watch',
  'watch',
  'came',
  'wooden',
  'case',
  'velvet',
  'line',
  'insid',
  'size',
  'box',
  'saw',
  'made',
  'deliber',
  'choic',
  'open',
  'box',
  'last',
  'make',
  'sure',
  'night',
  'end',
  'highlight',
  'came',
  'time',
  'open',
  'box',
  'watch',
  'digit',
  'one',
  'good',
  'watch',
  'honest',
  'watch',
  'dad',
  'excit',
  'went',
  'prattl',
  'featur',
  'watch',
  'could',
  'count',
  'step',
  'connect',
  'phone',
  'via',
  'bluetooth',
  'control',
  'music',
  'measur',
  'heart',
  'rate',
  'etc',
  'talk',
  'burst',
  'tear',
  'left',
  'tabl',
  'run',
  'dad',
  'follow',
  'ask',
  'sad',
  'said',
  'want',
  'watch',
  'one',
  'belong',
  'great',
  'grandfath',
  'said',
  'want',
  'give',
  'younger',
  'brother',
  'sinc',
  'boy',
  'give',
  'leav',
  'famili',
  'sinc',
  'ill',
  'get',
  'marri',
  'man',
  'join',
  'famili',
  'came',
  'blow',
  'sinc',
  'ive',
  'alway',
  'closer',
  'dad',
  'brother',
  'brother',
  'even',
  'interest',
  'watch',
  'like',
  'whole',
  'life',
  'got',
  'argument',
  'end',
  'say',
  'immatur',
  'small',
  'matter',
  'given',
  'watch',
  'even',
  'boy',
  'left',
  'said',
  'two',
  'week',
  'ago',
  'spoken',
  'sinc',
  'asshol',
  'edit',
  'inform',
  'alway',
  'first',
  'born',
  'got',
  'first',
  'born',
  'alway',
  'men',
  'sinc',
  'tradit',
  'start',
  'im',
  'first',
  'femal',
  'first',
  'born',
  'suppos',
  'storm',
  'im',
  'twenti',
  'super',
  'overwhelm',
  'feel',
  'im',
  'prone',
  'tear',
  'alway',
  'calm',
  'especi',
  'sinc',
  'public',
  'space'],
 ['long',
  'titl',
  'sorri',
  'stepdad',
  'complet',
  'idiot',
  'today',
  'super',
  'hot',
  'temperatur',
  'wise',
  'took',
  'shirt',
  'mom',
  'husbandmi',
  'stepdad',
  'matt',
  'start',
  'yell',
  'inappropri',
  'shirt',
  'front',
  'littl',
  'sister',
  'call',
  'pervert',
  'creep',
  'said',
  'screw',
  'shirt',
  'time',
  'move',
  'last',
  'year',
  'told',
  'long',
  'live',
  'hous',
  'follow',
  'rule',
  'thing',
  'mom',
  'told',
  'sever',
  'time',
  'name',
  'leas',
  'pay',
  'bill',
  'told',
  'actual',
  'hous',
  'mom',
  'hous',
  'ill',
  'follow',
  'rule',
  'rule',
  'say',
  'cant',
  'shirtless',
  'either',
  'start',
  'pay',
  'rent',
  'shut',
  'mouth',
  'stop',
  'tri',
  'dictat',
  'bodi',
  'blew',
  'say',
  'disrespect',
  'cant',
  'treat',
  'father',
  'way',
  'told',
  'father',
  'dead',
  'ill',
  'show',
  'amount',
  'respect',
  'show',
  'went',
  'room',
  'im',
  'think',
  'mayb',
  'said',
  'im',
  'sure',
  'feel',
  'aita'],
 ['daughter',
  'sever',
  'end',
  'celiac',
  'cross-contamin',
  'would',
  'set',
  'back',
  'week',
  'taken',
  'us',
  'year',
  'get',
  'properli',
  'diagnos',
  'treat',
  'year',
  'old',
  'underweight',
  'sever',
  'anxieti',
  'food',
  'eat',
  'feel',
  'unsaf',
  'hard',
  'blame',
  'hous',
  'kitchen',
  'kitchenett',
  'basement',
  'complet',
  'full',
  'set',
  'pan',
  'utensil',
  'main',
  'rule',
  'hous',
  'absolut',
  'dairi',
  'gluten',
  'seafood',
  'kept',
  'cook',
  'kitchen',
  'older',
  'son',
  'allerg',
  'seafood',
  'wife',
  'lactos',
  'intoler',
  'kitchenett',
  'item',
  'contain',
  'ingredi',
  'sister',
  'kid',
  'move',
  'us',
  'person',
  'reason',
  'live',
  'basement',
  'bedroom',
  'move',
  'clearli',
  'explain',
  'rule',
  'took',
  'less',
  'week',
  'us',
  'find',
  'box',
  'pasta',
  'kitchen',
  'explain',
  'rule',
  'move',
  'apologet',
  'month',
  'later',
  'daughter',
  'come',
  'us',
  'panic',
  'sister',
  'make',
  'fri',
  'chicken',
  'kitchen',
  'sister',
  'apologet',
  'insist',
  'need',
  'kitchenett',
  'small',
  'felt',
  'harsh',
  'move',
  'food',
  'basement',
  'threw',
  'everi',
  'singl',
  'pan',
  'utensil',
  'may',
  'use',
  'deep',
  'clean',
  'kitchen',
  'incid',
  'make',
  'kitchen',
  'longer',
  '%',
  'guarante',
  'safe',
  'made',
  'regress',
  'therapi',
  'work',
  'unfortun',
  'right',
  'bad',
  'feed',
  'exclus',
  'takeout',
  'one',
  'gluten-fre',
  'restaur',
  'around',
  'unless',
  'want',
  'inpati',
  'care',
  'take',
  'us',
  'last',
  'sunday',
  'get',
  'home',
  'daughter',
  'worst',
  'panic',
  'attack',
  'ever',
  'seen',
  'mom',
  'sister',
  'kitchen',
  'make',
  'entir',
  'sunday',
  'dinner',
  'spaghetti',
  'mozzarella',
  'stick',
  'garlic',
  'bread',
  'work',
  'lost',
  'end',
  'absolut',
  'scream',
  'ruin',
  'life',
  'threaten',
  'daughter',
  'life',
  'last',
  'time',
  'threw',
  'food',
  'yard',
  'told',
  'sister',
  'realli',
  'care',
  'littl',
  'niec',
  'life',
  'could',
  'get',
  'fuck',
  'hous',
  'mom',
  'mad',
  'kick',
  'sister',
  'kid',
  'theyr',
  'vulner',
  'food',
  'allergi',
  'care',
  'even',
  'leav',
  'kid',
  'absolut',
  'need',
  'im',
  'done',
  'one',
  'rule',
  'one',
  'wife',
  'agre',
  'think',
  'give',
  'one',
  'last',
  'chanc',
  'allow',
  'sister',
  'bring',
  'food',
  'hous',
  'mom',
  'cant',
  'take',
  'cant',
  'afford',
  'rent',
  'anywher',
  'would',
  'homeless',
  'let',
  'stay',
  'im',
  'sure',
  'im',
  'wrong',
  'edit',
  'possibl',
  'inpati',
  'care',
  'come',
  'fulli',
  'investig',
  'medic',
  'team',
  'went',
  'inpati',
  'care',
  'would',
  'eat',
  'takeout',
  'restaur',
  'well',
  'would',
  'also',
  'abl',
  'safe',
  'cook',
  'facil',
  'true',
  'differ',
  'would',
  'monitor',
  'home'],
 ['im',
  'alway',
  'anim',
  'lover',
  'love',
  'snake',
  'tarantula',
  'scorpion',
  'lizard',
  'gecko',
  'dog',
  'cat',
  'move',
  'parent',
  'hous',
  'townhom',
  'decid',
  'adopt',
  'ball',
  'python',
  'docil',
  'love',
  'held',
  'set',
  'tank',
  'one',
  'room',
  'downstair',
  'fiancef',
  'decid',
  'readi',
  'move',
  'togeth',
  'slowli',
  'introduc',
  'snake',
  'thought',
  'snake',
  'realli',
  'cool',
  'even',
  'held',
  'time',
  'month',
  'ago',
  'friend',
  'came',
  'ever',
  'sinc',
  'ask',
  'find',
  'new',
  'home',
  'snake',
  'travel',
  'anoth',
  'state',
  'work',
  'trust',
  'take',
  'care',
  'snake',
  'gone',
  'week',
  'came',
  'back',
  'saw',
  'tank',
  'complet',
  'gone',
  'search',
  'hous',
  'nowher',
  'found',
  'went',
  'outsid',
  'check',
  'wood',
  'area',
  'behind',
  'townhom',
  'found',
  'tank',
  'tank',
  'open',
  'sign',
  'snake',
  'fianc',
  'got',
  'home',
  'show',
  'tank',
  'told',
  'pack',
  'suitcas',
  'find',
  'anoth',
  'place',
  'stay',
  'defens',
  'give',
  'snake',
  'much',
  'attent',
  'fianc',
  'current',
  'stay',
  'parent',
  'think',
  'overreact',
  'anim',
  'fianc',
  'upset',
  'talk',
  'accept',
  'apolog',
  '&',
  'xb',
  'aita',
  'kick',
  'fianc',
  'hous',
  'let',
  'snake',
  'loos',
  'outsid'],
 ['background',
  'im',
  'recov',
  'eat',
  'disord',
  'part',
  'recoveri',
  'mean',
  'im',
  'hungri',
  'need',
  'eat',
  'need',
  'get',
  'use',
  'respond',
  'hunger',
  'eat',
  'eat',
  'im',
  'hungri',
  'becom',
  'habit',
  'could',
  'relaps',
  'know',
  'hard',
  'lot',
  'peopl',
  'understand',
  'best',
  'way',
  'explain',
  'alway',
  'carri',
  'snack',
  'accommod',
  'boyfriend',
  'ask',
  'go',
  'famili',
  'event',
  'aunt',
  'hous',
  'dinner',
  'gather',
  'start',
  'four',
  'time',
  'around',
  'start',
  'feel',
  'hungri',
  'ate',
  'small',
  'granola',
  'bar',
  'purs',
  'reinforc',
  'eat',
  'hungri',
  'rule',
  'dinner',
  'excel',
  'left',
  'boyfriend',
  'upset',
  'said',
  'offend',
  'famili',
  'eat',
  'snack',
  'dinner',
  'serv',
  'impli',
  'bad',
  'host',
  'said',
  'wait',
  'remind',
  'eat',
  'im',
  'hungri',
  'said',
  'dinner',
  'hour',
  'suffici',
  'enforc',
  'rule',
  'work',
  'way',
  'eat',
  'soon',
  'realiz',
  'im',
  'hungri',
  'slipperi',
  'slope',
  'could',
  'lead',
  'go',
  'day',
  'without',
  'food',
  'boyfriend',
  'angri',
  'accus',
  'want',
  'attent',
  'inconsider',
  'wait',
  'rigid',
  'updat',
  'broke',
  'long',
  'talk',
  'happen',
  'acknowledg',
  'know',
  'best',
  'recoveri',
  'said',
  'relationship',
  'compromis',
  'said',
  'appli',
  'health',
  'said',
  'appli',
  'everyth',
  'said',
  'give',
  'space',
  'thank',
  'everyon',
  'without',
  'comment',
  'confid',
  'stand'],
 ['met',
  'wife',
  'year',
  'ago',
  'got',
  'marri',
  'month',
  'ago',
  'babi',
  'boy',
  'togeth',
  'got',
  'pregnent',
  'engag',
  'wife',
  'use',
  's_x',
  'worker',
  'judgement',
  'pleas',
  'surviv',
  'parent',
  'alway',
  'skeptic',
  'lot',
  'time',
  'ask',
  'wan',
  'na',
  'settl',
  'got',
  'prengnent',
  'went',
  'nut',
  'demand',
  'dna',
  'test',
  'refus',
  'attend',
  'wed',
  'til',
  'dna',
  'test',
  'done',
  'caus',
  'huge',
  'problem',
  'end',
  'miss',
  'wed',
  'obvious',
  'test',
  'done',
  'wife',
  'want',
  'prove',
  'point',
  'eventu',
  'parent',
  'made',
  'ammend',
  'reconcil',
  'start',
  'visit',
  'yesterday',
  'notic',
  'photo',
  'dna',
  'test',
  'hang',
  'live',
  'room',
  'ask',
  'told',
  'serv',
  'remind',
  'attend',
  'wed',
  'stun',
  'livid',
  'mention',
  'tell',
  'guest',
  'thing',
  'told',
  'mom',
  'dad',
  'mad',
  'ask',
  'repeatedli',
  'take',
  'say',
  'im',
  'harsh',
  'refus',
  'let',
  'go',
  'past',
  'well',
  'embarrass',
  'famili',
  'member',
  'refus',
  'take',
  'admit',
  'sarcast',
  'respons',
  'say',
  'goe',
  'hois',
  'decor',
  'beg',
  'refus',
  'come',
  'anymor',
  'til',
  'remov',
  'brother',
  'think',
  'petti',
  'childish',
  'said',
  'take',
  'alright',
  'im',
  'edit',
  'stuff',
  'first',
  'wife',
  'mind',
  'photo',
  'laugh',
  'sometim',
  'still',
  'carri',
  'hurt',
  'caus',
  'happen',
  'second',
  'longer',
  's_x',
  'work',
  'past',
  'mention',
  'brother',
  'close',
  'known',
  'crackhead',
  'famili'],
 ['husband',
  'woke',
  'mood',
  'morn',
  'told',
  'make',
  'cup',
  'coffe',
  'went',
  'work',
  'went',
  'made',
  'extra',
  'sugar',
  'like',
  'alway',
  'like',
  'hand',
  'tast',
  'made',
  'face',
  'said',
  'sweet',
  'told',
  'usual',
  'said',
  'good',
  'mood',
  'today',
  'told',
  'make',
  'anoth',
  'one',
  'mind',
  'alreadi',
  'min',
  'late',
  'work',
  'told',
  'alreadi',
  'one',
  'drink',
  'next',
  'thing',
  'knew',
  'drop',
  'tge',
  'cup',
  'floor',
  'purpos',
  'said',
  'longer',
  'go',
  'ahead',
  'make',
  'anoth',
  'one',
  'refus',
  'argument',
  'walk',
  'text',
  'bunch',
  'later',
  'say',
  'disrespect',
  'forc',
  'daili',
  'coffe',
  'act',
  'stubborn',
  'attitud',
  'remind',
  'much',
  'work',
  'pick',
  'much',
  'time',
  'rest',
  'hed',
  'sacrif',
  'order',
  'help',
  'recov',
  'birth',
  'son',
  'first',
  'week',
  'get',
  'said',
  'owe',
  'return',
  'keast',
  'one',
  'mani',
  'favor',
  'instead',
  'decid',
  'ruin',
  'day',
  'came',
  'home',
  'refus',
  'even',
  'look',
  'aita',
  'taken',
  'minut',
  'make',
  'anoth',
  'one'],
 ['sister',
  'husband',
  'move',
  'us',
  'day',
  'ago',
  'lost',
  'apart',
  'medic',
  'debt',
  'child',
  'nephew',
  'husband',
  'happi',
  'stay',
  'week',
  'til',
  'get',
  'resolv',
  'howev',
  'yesterday',
  'pm',
  'kitchen',
  'husband',
  'rush',
  'said',
  'saw',
  'sister',
  'husband',
  'walk',
  'bathroom',
  'theyd',
  'like',
  'taken',
  'shower',
  'togeth',
  'husband',
  'said',
  'irk',
  'agre',
  'somewhat',
  'inappropri',
  'ask',
  'speak',
  'sister',
  'matter',
  'got',
  'defens',
  'ask',
  'affect',
  'husband',
  'way',
  'told',
  'made',
  'husband',
  'feel',
  'uncomfort',
  'would',
  'rather',
  'take',
  'shower',
  'seper',
  'start',
  'rant',
  'overwhelm',
  'son',
  'health',
  'problem',
  'alon',
  'time',
  'togeth',
  'marri',
  'coupl',
  'found',
  'activ',
  'bond',
  'time',
  'spend',
  'togeth',
  'apolog',
  'felt',
  'request',
  'ask',
  'got',
  'mad',
  'said',
  'inconsider',
  'understand',
  'husband',
  'hangup',
  'husband',
  'start',
  'argu',
  'storm',
  'guest',
  'room',
  'nephew',
  'bil',
  'speak',
  'husband',
  'said',
  'right',
  'thing',
  'speak',
  'set',
  'boundari',
  'aita',
  'husband',
  'overreact',
  'info',
  'husband',
  'mention',
  'hear',
  'anyth',
  'saw',
  'get',
  'bathroom',
  'ye',
  'cloth',
  'bathroom',
  'hous',
  'spent',
  'apprxim',
  '+',
  'shower',
  'accord',
  'husband',
  'edit',
  '*',
  'im',
  'gon',
  'na',
  'bring',
  'husband',
  'look',
  'respons',
  'help',
  'answer',
  'question',
  'okay',
  'give',
  'minut',
  'edit',
  '*',
  'im',
  'sorri',
  'cant',
  'respond',
  'everi',
  'singl',
  'comment',
  'husband',
  'say',
  'uncomfort',
  'want',
  'expand',
  'situat'],
 ['husband',
  'huge',
  'snit',
  'taken',
  'spare',
  'room',
  'tonight',
  'first',
  'time',
  'sinc',
  'give',
  'birth',
  'month',
  'ago',
  'night',
  'mean',
  'babi',
  'bedtim',
  'feed',
  'routin',
  'left',
  'go',
  'cinema',
  'friend',
  'shortli',
  'bedtim',
  'routin',
  'would',
  'begin',
  'husband',
  'use',
  'help',
  'first',
  'month',
  'even',
  'sinc',
  'said',
  'busytir',
  'work',
  'talk',
  'babi',
  'routin',
  'room',
  'temp',
  'light',
  'nois',
  'etc',
  'prefer',
  'husband',
  'assur',
  'everyth',
  'control',
  'move',
  'bare',
  'start',
  'start',
  'get',
  'call',
  'husband',
  'text',
  'ask',
  'wrong',
  'said',
  'babi',
  'sleep',
  'text',
  'back',
  'remind',
  'babi',
  'prefer',
  'thing',
  'said',
  'done',
  'check',
  'babi',
  'monitor',
  'camera',
  'cover',
  'room',
  'could',
  'see',
  'room',
  'light',
  'white',
  'nois',
  'machin',
  'tuck',
  'babi',
  'blanket',
  'text',
  'say',
  'much',
  'start',
  'call',
  'despit',
  'know',
  'im',
  'theatr',
  'text',
  'come',
  'home',
  'put',
  'babi',
  'bed',
  'told',
  'sure',
  'everyth',
  'hand',
  'put',
  'phone',
  'dnd',
  'period',
  'check',
  'babi',
  'via',
  'monitor',
  'okay',
  'husband',
  'actual',
  'follow',
  'sleep',
  'routin',
  'movi',
  'saw',
  'husband',
  'continu',
  'call',
  'like',
  'next',
  'hour',
  'last',
  'spoke',
  'got',
  'home',
  'start',
  'argu',
  'ignor',
  'call',
  'berat',
  'left',
  'alon',
  'offer',
  'show',
  'bedtim',
  'last',
  'two',
  'day',
  'go',
  'want',
  'know',
  'aita',
  'ignor',
  'call',
  'help',
  'babi'],
 ['cant',
  'believ',
  'im',
  'post',
  'go',
  'ex',
  'richard',
  'year',
  'sinc',
  'separ',
  'due',
  'abus',
  'cheat',
  'divorc',
  'divorc',
  'expens',
  'countri',
  'whenev',
  'appli',
  'divorc',
  'richard',
  'insist',
  'medit',
  'divorc',
  'grant',
  'one',
  'us',
  'tri',
  'save',
  'marriag',
  'live',
  'mistress',
  'kid',
  'togeth',
  'conceiv',
  'still',
  'togeth',
  'due',
  'harass',
  'abus',
  'restrain',
  'order',
  'employ',
  'awar',
  'util',
  'compani',
  'ex',
  'work',
  'suppli',
  'build',
  'offic',
  'one',
  'major',
  'supplier',
  'countri',
  'actual',
  'event',
  'due',
  'restrict',
  'everyon',
  'current',
  'work',
  'home',
  'day',
  'offic',
  'richard',
  'decid',
  'show',
  'work',
  'kid',
  'demand',
  'see',
  'child',
  'support',
  'money',
  'sinc',
  'still',
  'legal',
  'marri',
  'employ',
  'awar',
  'situat',
  'recept',
  'refus',
  'tell',
  'im',
  'offic',
  'ask',
  'richard',
  'leav',
  'richard',
  'secur',
  'call',
  'child',
  'secur',
  'use',
  'forc',
  'remov',
  'richard',
  'recept',
  'threaten',
  'call',
  'util',
  'compani',
  'work',
  'richard',
  'believ',
  'recept',
  'long',
  'stori',
  'short',
  'mistress',
  'fire',
  'immedi',
  'effect',
  'richard',
  'show',
  'work',
  'seen',
  'gross',
  'misconduct',
  'discov',
  'richard',
  'mistress',
  'boss',
  'appar',
  'employ',
  'know',
  'togeth',
  'strictli',
  'forbidden',
  'relationship',
  'someon',
  'directli',
  'employ',
  'util',
  'compani',
  'apologis',
  'richard',
  'action',
  'gave',
  'consider',
  'discount',
  'servic',
  'make',
  'sure',
  'news',
  'happen',
  'spread',
  'sinc',
  'fire',
  'im',
  'get',
  'call',
  'unknown',
  'number',
  'variou',
  'richardshi',
  'mistress',
  'famili',
  'member',
  'friend',
  'say',
  'im',
  'respons',
  'jealou',
  'asshol',
  'get',
  'fire',
  'get',
  'richard',
  'back',
  'still',
  'friend',
  'common',
  'believ',
  'get',
  'fire',
  'loos',
  'sourc',
  'incom',
  'harsh',
  'prevent',
  'thatshouldnt',
  'spoken',
  'begin',
  'happen',
  'aita',
  'edit',
  'repeat',
  'comment',
  'famili',
  'believ',
  'okay',
  'sever',
  'partner',
  'respons',
  'kid',
  'even',
  'affair',
  'accord',
  'friend',
  'common',
  'spread',
  'lie',
  'get',
  'pregnant',
  'want',
  'never',
  'want',
  'kid',
  'mistress',
  'help',
  'us',
  'overreact',
  'call',
  'cheat',
  'stay',
  'support',
  'kid',
  'pull',
  'court',
  'get',
  'divorc',
  'alongsid',
  'still',
  'love',
  'commun',
  'better',
  'lie',
  'court',
  'grant',
  'divorc',
  'believ',
  'tri',
  'save',
  'marriag',
  'im',
  'unreason',
  'edit',
  'thank',
  'support',
  'im',
  'get',
  'bit',
  'overwhelm',
  'tri',
  'repli',
  'everyon',
  'want',
  'point',
  'thing',
  'famili',
  'belief',
  'normal',
  'countri',
  'im',
  'pretti',
  'sure',
  'chang',
  'situat',
  'would',
  'way',
  'round',
  'boss',
  'also',
  'incred',
  'frustrat',
  'situat',
  'gave',
  'contact',
  'friend',
  'happen',
  'famili',
  'lawyer',
  'agre',
  'help',
  'discount',
  'rate',
  'owe',
  'boss',
  'favour',
  'see',
  'court',
  'take',
  'long',
  'tri',
  'best',
  'make',
  'sure',
  'divorc',
  'grant',
  'also',
  'work',
  'win',
  'fee',
  'believ',
  'win',
  'case',
  'get',
  'richard',
  'cover',
  'outstand',
  'fee',
  'importantli',
  'pay',
  'child',
  'support',
  'instruct',
  'bit',
  'claim',
  'child',
  'mine',
  'mistress',
  'surrog',
  'bit',
  'complic',
  'mister',
  'lawyer',
  'owe',
  'beer',
  'said',
  'court',
  'cant',
  'make',
  'pay',
  'accept',
  'sinc',
  'evid',
  'agreement'],
 ['im',
  'live',
  'parent',
  'work',
  'night',
  'shift',
  'get',
  'home',
  'around',
  'sleep',
  'around',
  'parent',
  'would',
  'come',
  'bedroom',
  'wake',
  'could',
  'still',
  'time',
  'enjoy',
  'day',
  'start',
  'use',
  'lock',
  'door',
  'stop',
  'began',
  'play',
  'loud',
  'music',
  'wake',
  'start',
  'use',
  'ear',
  'bud',
  'block',
  'nois',
  'theyd',
  'call',
  'wake',
  'put',
  'phone',
  'disturb',
  'want',
  'awak',
  'spend',
  'time',
  'famili',
  'get',
  'im',
  'avail',
  'spend',
  'time',
  'afternoon',
  'see',
  'midday',
  'morn',
  'pick',
  'lock',
  'sent',
  'brother',
  'wake',
  'say',
  'miss',
  'took',
  'back',
  'downstair',
  'hand',
  'dad',
  'say',
  'still',
  'need',
  'sleep',
  'dad',
  'start',
  'rais',
  'voic',
  'im',
  'bare',
  'even',
  'part',
  'famili',
  'anymor',
  'began',
  'yell',
  'need',
  'sleep',
  'function',
  'shift',
  'like',
  'im',
  'unemploy',
  'stay',
  'night',
  'sleep',
  'day',
  'believ',
  'yell',
  'back',
  'stick',
  'around',
  'went',
  'back',
  'sleep',
  'time',
  'move',
  'dresser',
  'front',
  'door',
  'neither',
  'parent',
  'talk',
  'moment',
  'edit',
  'move',
  'option'],
 ['sister',
  'kim',
  'ident',
  'twin',
  'differ',
  'grow',
  'still',
  'hate',
  'say',
  'kim',
  'definit',
  'pick',
  'girl',
  'alway',
  'spew',
  'misogynist',
  'nonsens',
  'women',
  'weak',
  'abid',
  'men',
  'short',
  'petit',
  'cant',
  'anyth',
  'without',
  'big',
  'strong',
  'man',
  'around',
  'girl',
  'tri',
  'hard',
  'wear',
  'makeup',
  'pretti',
  'natur',
  'hate',
  'get',
  'gist',
  'kim',
  'attend',
  'colleg',
  'studi',
  'differ',
  'depart',
  'one',
  'class',
  'guy',
  'name',
  'dave',
  'dave',
  'typic',
  'handsom',
  'frat',
  'boy',
  'girl',
  'colleg',
  'crush',
  'includ',
  'kim',
  'summer',
  'ive',
  'start',
  'work',
  'small',
  'coffe',
  'shop',
  'near',
  'campu',
  'earn',
  'extra',
  'cash',
  'time',
  'dave',
  'becam',
  'frequent',
  'custom',
  'pretti',
  'friendli',
  'toward',
  'sinc',
  'recogn',
  'class',
  'admit',
  'attract',
  'ask',
  'get',
  'know',
  'know',
  'kim',
  'like',
  'decid',
  'reject',
  'dave',
  'instead',
  'offer',
  'set',
  'ident',
  'ask',
  'base',
  'attract',
  'realli',
  'matter',
  'dave',
  'agre',
  'gave',
  'sister',
  'number',
  'knew',
  'met',
  'date',
  'weekend',
  'time',
  'ask',
  'kim',
  'went',
  'sinc',
  'sick',
  'today',
  'shift',
  'dave',
  'approach',
  'ask',
  'could',
  'return',
  'kim',
  'lipgloss',
  'left',
  'car',
  'sinc',
  'knew',
  'brand',
  'expens',
  'ask',
  'return',
  'said',
  'want',
  'see',
  'date',
  'went',
  'confus',
  'ask',
  'date',
  'realli',
  'bad',
  'explain',
  'went',
  'nice',
  'restaur',
  'sister',
  'stop',
  'harass',
  'critic',
  'waitress',
  'wear',
  'much',
  'make',
  'look',
  'easi',
  'fiasco',
  'proceed',
  'say',
  'stuff',
  'imagin',
  'usual',
  'said',
  'andrew',
  'tate',
  'podcast',
  'dave',
  'appar',
  'rais',
  'singl',
  'mother',
  'sister',
  'horrifi',
  'excus',
  'bathroom',
  'paid',
  'meal',
  'venmod',
  'kim',
  'cash',
  'uber',
  'left',
  'restaur',
  'alon',
  'embarrass',
  'kim',
  'total',
  'understood',
  'dave',
  'walk',
  'apolog',
  'behalf',
  'took',
  'lipgloss',
  'return',
  'hour',
  'ago',
  'stop',
  'complain',
  'aw',
  'dave',
  'real',
  'man',
  'sinc',
  'real',
  'man',
  'usual',
  'like',
  'bring',
  'women',
  'inferior',
  'point',
  'cut',
  'told',
  'chanc',
  'nice',
  'date',
  'guy',
  'like',
  'ruin',
  'stop',
  'misogynist',
  'pick',
  'even',
  'one',
  'second',
  'im',
  'back',
  'apart',
  'kim',
  'stop',
  'text',
  'demand',
  'apolog',
  'feel',
  'like',
  'aita',
  'updat',
  'would',
  'like',
  'start',
  'say',
  'although',
  'agre',
  'excus',
  'kim',
  'action',
  'understand',
  'come',
  'place',
  'insecur',
  'although',
  'knew',
  'obsess',
  'male',
  'valid',
  'normal',
  'understand',
  'sever',
  'ive',
  'talk',
  'parent',
  'agre',
  'base',
  'told',
  'well',
  'tri',
  'convinc',
  'kim',
  'attend',
  'therapi',
  'holiday',
  'im',
  'shell',
  'agre',
  'worth',
  'shot',
  'end',
  'get',
  'dave',
  'phone',
  'number',
  'classmat',
  'ive',
  'sent',
  'text',
  'apolog',
  'went',
  'thank',
  'still',
  'pay',
  'sister',
  'meal',
  'make',
  'sure',
  'away',
  'get',
  'home',
  'safe',
  'talk',
  'bit',
  'one',
  'thing',
  'led',
  'anoth',
  'agre',
  'meet',
  'lunch',
  'next',
  'week',
  'class',
  'know',
  'consid',
  'date',
  'sinc',
  'label',
  'think',
  'ill',
  'meet',
  'see',
  'goe',
  'told',
  'kim',
  'say',
  'piss',
  'would',
  'understat',
  'call',
  'horribl',
  'sister',
  'agre',
  'meet',
  'guy',
  'publicli',
  'humili',
  'leav',
  'alon',
  'restaur',
  'retali',
  'remind',
  'one',
  'embarrass',
  'first',
  'caus',
  'scene',
  'public',
  'also',
  'one',
  'said',
  'manli',
  'enough',
  'lost',
  'interest',
  'cant',
  'say',
  'claim',
  'calm',
  'agre',
  'said',
  'femal',
  'like',
  'deserv',
  'manlier',
  'alpha',
  'male',
  'ye',
  'know',
  'sound',
  'super',
  'cringi',
  'know',
  'say',
  'laugh',
  'wish',
  'good',
  'luck',
  'think',
  'still',
  'bit',
  'salti',
  'ego',
  'definit',
  'bruis',
  'least',
  'know',
  'complet',
  'dave',
  'want',
  'thank',
  'everyon',
  'support',
  'award',
  'think',
  'ill',
  'post',
  'anoth',
  'updat',
  'anyth',
  'interest',
  'happen',
  'next',
  'week',
  'dave',
  'ill',
  'make',
  'sure',
  'updat',
  'page',
  'btw',
  'first',
  'time',
  'post',
  'say',
  'feel',
  'surreal',
  'open',
  'tiktok',
  'see',
  'post',
  'voic',
  'ai',
  'subway',
  'surfer',
  'gameplay',
  'background😂😂'],
 ['recent',
  'inherit',
  'money',
  'mom',
  'parent',
  'lose',
  'beyond',
  'devast',
  'money',
  'bare',
  'call',
  'inherit',
  'mom',
  'famili',
  'much',
  'better',
  'noth',
  'fianc',
  'first',
  'said',
  'deserv',
  'right',
  'whatev',
  'want',
  'howev',
  'told',
  'whole',
  'famili',
  'infertil',
  'brother',
  'wife',
  'pull',
  'asid',
  'convers',
  'start',
  'talk',
  'wantingneed',
  'nephewniec',
  'basic',
  'hint',
  'brother',
  'infertil',
  'issu',
  'flatout',
  'request',
  'pay',
  'brother',
  'wife',
  'ivf',
  'treatment',
  'inherit',
  'money',
  'taken',
  'aback',
  'initi',
  'declin',
  'got',
  'mad',
  'say',
  'selfish',
  '&',
  'bless',
  'never',
  'issu',
  'fertil',
  'liter',
  'noth',
  'lose',
  'give',
  'money',
  'easi',
  'money',
  'work',
  'upset',
  'point',
  'lash',
  'oit',
  'tell',
  'stop',
  'bother',
  'guilt',
  'deni',
  'request',
  'final',
  'decis',
  'got',
  'agit',
  'went',
  'campaign',
  'shame',
  'treat',
  'futur',
  'husband',
  'therefor',
  'get',
  'sayright',
  'inherit',
  'give',
  'singl',
  'crap',
  'famili',
  'issu'],
 ['live',
  'home',
  'grad',
  'school',
  'work',
  'part',
  'time',
  '+',
  'intern',
  'offic',
  'graduat',
  'june',
  'ive',
  'appli',
  'job',
  'much',
  'final',
  'move',
  'sister',
  'also',
  'live',
  'home',
  'school',
  'onlin',
  'work',
  'tri',
  'help',
  'chore',
  'around',
  'hous',
  'much',
  'possibl',
  'although',
  'difficult',
  'sinc',
  'leav',
  'hous',
  'earli',
  'morn',
  'come',
  'home',
  'late',
  'night',
  'last',
  'week',
  'came',
  'home',
  'clean',
  'dish',
  'dishwash',
  'said',
  'im',
  'gon',
  'na',
  'take',
  'quick',
  'shower',
  'empti',
  'dishwash',
  'dad',
  'went',
  'rant',
  'im',
  'useless',
  'never',
  'help',
  'around',
  'hous',
  'sister',
  'alway',
  'one',
  'everyth',
  'explain',
  'help',
  'seen',
  'help',
  'mean',
  'ask',
  'give',
  'exampl',
  'told',
  'took',
  'garbag',
  'night',
  'convers',
  'escal',
  'say',
  'shut',
  'argu',
  'longer',
  'easili',
  'make',
  'homeless',
  'want',
  'said',
  'ok',
  'went',
  'upstair',
  'next',
  'morn',
  'everyon',
  'still',
  'asleep',
  'pack',
  'thing',
  'left',
  'ive',
  'sleep',
  'car',
  'week',
  'take',
  'shower',
  'gym',
  'later',
  'day',
  'left',
  'parent',
  'call',
  'mom',
  'text',
  'ask',
  'come',
  'home',
  'suppos',
  'repli',
  'block',
  'entir',
  'famili',
  'number',
  'social',
  'media',
  'spoken',
  'sinc',
  'call',
  'text',
  'friend',
  'ask',
  'told',
  'friend',
  'im',
  'sleep',
  'car',
  'got',
  'confus',
  'text',
  'friend',
  'ask',
  'go',
  'parent',
  'ask',
  'im',
  'safe',
  'ok',
  'told',
  'closest',
  'friend',
  'left',
  'home',
  'im',
  'safe',
  'let',
  'know',
  'tell',
  'parent',
  'im',
  'fine',
  'desir',
  'speak',
  'anymor',
  'theyv',
  'beg',
  'friend',
  'disclos',
  'locat',
  'ask',
  'ask',
  'allow',
  'speak',
  'went',
  'friend',
  'yesterday',
  'told',
  'aw',
  'speak',
  'told',
  'threaten',
  'make',
  'homeless',
  'left',
  'volit',
  'insist',
  'make',
  'worri',
  'safeti',
  'horribl',
  'thing',
  'honestli',
  'think',
  'gave',
  'ask',
  'want',
  'get',
  'rid',
  'left',
  'aita',
  'leav',
  'refus',
  'commun',
  'edit',
  'mom',
  'happen',
  'dad',
  'side',
  'well',
  'awar',
  'incid',
  'know',
  'threaten',
  'made',
  'homeless',
  'also',
  'said',
  'like',
  'never',
  'go',
  'get',
  'job',
  'go',
  'stay',
  'home',
  'forev',
  'even',
  'though',
  'job',
  'rn',
  'internship',
  'unpaid',
  'though',
  'im',
  'activ',
  'look',
  'full',
  'time',
  'job',
  'ye',
  'theyv',
  'done',
  'thank',
  'everyon',
  'given',
  'advic',
  'appreci',
  'imagin'],
 ['bought',
  'new',
  'hous',
  'last',
  'year',
  'first',
  'view',
  'hous',
  'notic',
  'bike',
  'children',
  'toy',
  'driveway',
  'side',
  'yard',
  'final',
  'walkthrough',
  'sign',
  'final',
  'document',
  'got',
  'key',
  'notic',
  'kid',
  'driveway',
  'color',
  'sidewalk',
  'chalk',
  'ride',
  'scooter',
  'bike',
  'introduc',
  'kid',
  'ask',
  'live',
  'point',
  'hous',
  'next',
  'door',
  'walkthrough',
  'went',
  'hous',
  'kid',
  'point',
  'introduc',
  'parent',
  'let',
  'know',
  'buy',
  'hous',
  'would',
  'move',
  'also',
  'mention',
  'truck',
  'come',
  'us',
  'move',
  'thing',
  'safe',
  'kid',
  'driveway',
  'fine',
  'move',
  'kid',
  'play',
  'driveway',
  'still',
  'leav',
  'toy',
  'dig',
  'side',
  'yard',
  'went',
  'ask',
  'neighbor',
  'pleas',
  'kid',
  'clean',
  'toy',
  'stop',
  'dig',
  'yard',
  'mother',
  'said',
  'mr',
  'mr',
  'previou',
  'owner',
  'alway',
  'let',
  'kid',
  'tri',
  'dig',
  'fossil',
  'yard',
  'laugh',
  'said',
  'mr',
  'mr',
  'want',
  'kid',
  'dig',
  'play',
  'yard',
  'start',
  'bike',
  'driveway',
  'camera',
  'face',
  'front',
  'hous',
  'saw',
  'would',
  'ride',
  'driveway',
  'yard',
  'also',
  'start',
  'draw',
  'chalk',
  'went',
  'neighbor',
  'hous',
  'let',
  'know',
  'want',
  'kid',
  'play',
  'driveway',
  'yard',
  'draw',
  'chalk',
  'neighbor',
  'said',
  'mr',
  'mr',
  'alway',
  'let',
  'explain',
  'mr',
  'mr',
  'want',
  'also',
  'follow',
  'letter',
  'neighbor',
  'inform',
  'kid',
  'allow',
  'play',
  'dig',
  'draw',
  'properti',
  'sent',
  'certifi',
  'mail',
  'fast',
  'forward',
  'sunday',
  'hous',
  'garag',
  'cut',
  'wood',
  'project',
  'pull',
  'truck',
  'garag',
  'could',
  'work',
  'minut',
  'hear',
  'neighbor',
  'kid',
  'laugh',
  'driveway',
  'went',
  'see',
  'ride',
  'bike',
  'driveway',
  'told',
  'pleas',
  'ride',
  'bike',
  'driveway',
  'go',
  'home',
  'five',
  'minut',
  'said',
  'heard',
  'kid',
  'heard',
  'scream',
  'one',
  'kid',
  'rode',
  'bike',
  'straight',
  'truck',
  'neighbor',
  'came',
  'scream',
  'accus',
  'caus',
  'kid',
  'told',
  'true',
  'kid',
  'rode',
  'right',
  'car',
  'came',
  'see',
  'commot',
  'neighbor',
  'start',
  'scream',
  'would',
  'regret',
  'last',
  'night',
  'father',
  'came',
  'hous',
  'said',
  'respons',
  'medic',
  'bill',
  'kid',
  'get',
  'hurt',
  'told',
  'respons',
  'kid',
  'even',
  'yard',
  'aita',
  'pay',
  'medic',
  'bill',
  '*',
  '*',
  'updat',
  '*',
  '*',
  '*',
  '*',
  'read',
  'everi',
  'comment',
  'decid',
  'get',
  'proactiv',
  'view',
  'camera',
  'footag',
  'day',
  'incid',
  'show',
  'camera',
  'tell',
  'kid',
  'go',
  'home',
  'play',
  'driveway',
  'show',
  'kid',
  'ride',
  'bike',
  'driveway',
  'unfortun',
  'way',
  'truck',
  'park',
  'pick',
  'kid',
  'ride',
  'pick',
  'sound',
  'video',
  'howev',
  'pick',
  'kid',
  'tell',
  'mom',
  'kid',
  'rode',
  'truck',
  'call',
  'homeown',
  'insur',
  'compani',
  'inform',
  'incid',
  'agent',
  'deal',
  'ask',
  'us',
  'send',
  'copi',
  'certifi',
  'letterreceipt',
  'video',
  'incid',
  'say',
  'far',
  'insur',
  'concern',
  'call',
  'tri',
  'claim',
  'fight',
  'suggest',
  'go',
  'polic',
  'went',
  'afternoon',
  'took',
  'copi',
  'letter',
  'video',
  'show',
  'offic',
  'took',
  'report',
  'said',
  'neighbor',
  'fairli',
  'warn',
  'welcom',
  'properti',
  'ask',
  'want',
  'trespass',
  'said',
  'ye',
  'offic',
  'said',
  'anoth',
  'patrol',
  'offic',
  'would',
  'go',
  'afternoon',
  'speak',
  'famili',
  'let',
  'know',
  'trespass',
  'properti',
  'polic',
  'left',
  'father',
  'went',
  'profan',
  'lace',
  'tirad',
  'yard',
  'call',
  'choic',
  'name',
  'video',
  'record',
  'camera',
  'get',
  'new',
  'camera',
  'show',
  'portion',
  'driveway',
  '*',
  '*',
  '&',
  'xb',
  '&',
  'xb',
  '&',
  'xb'],
 ['hear',
  'husband',
  'sister',
  'nicol',
  'difficult',
  'upbring',
  'parent',
  'kick',
  'disown',
  'cut',
  'financi',
  'support',
  'refus',
  'marri',
  'famili',
  'friend',
  'instead',
  'went',
  'live',
  'late',
  'boyfriend',
  'pass',
  'away',
  'shortli',
  'son',
  'born',
  'inlaw',
  'kept',
  'pressur',
  'nicol',
  'let',
  'meet',
  'grandkid',
  'harass',
  'point',
  'got',
  'restrain',
  'order',
  'stop',
  'includ',
  'husband',
  'complain',
  'horribl',
  'thing',
  'said',
  'broke',
  'famili',
  'rob',
  'grandchild',
  'husband',
  'contact',
  'nicol',
  'start',
  'offer',
  'babysit',
  'son',
  'final',
  'found',
  'found',
  'new',
  'job',
  'grate',
  'howev',
  'eversinc',
  'start',
  'babysit',
  'nephew',
  'hed',
  'wait',
  'til',
  'drop',
  'nephew',
  'hed',
  'get',
  'car',
  'drive',
  'inlaw',
  'hous',
  'could',
  'see',
  'hed',
  'stay',
  'gone',
  'come',
  'back',
  'minut',
  'nicol',
  'expect',
  'arriv',
  'wan',
  'na',
  'say',
  'anyth',
  'first',
  'stand',
  'think',
  'betray',
  'hurt',
  'nicol',
  'would',
  'feel',
  'found',
  'told',
  'husband',
  'wrong',
  'sinc',
  'nephew',
  'mom',
  'consent',
  'go',
  'inlaw',
  'hous',
  'told',
  'nephew',
  'sake',
  'told',
  'shut',
  'stay',
  'famili',
  'affair',
  'caus',
  'argument',
  'us',
  'told',
  'stop',
  'id',
  'tell',
  'nicol',
  'said',
  'explain',
  'think',
  'fair',
  'nicol',
  'punish',
  'parent',
  'like',
  'ban',
  'see',
  'grandchild',
  '-',
  'told',
  'seriou',
  'caus',
  'restrain',
  'order',
  'nephew',
  'insist',
  'id',
  'tell',
  'stop',
  'said',
  'id',
  'cost',
  'lose',
  'nephew',
  'call',
  'bitter',
  'cruel',
  'even',
  'entertain',
  'idea',
  'told',
  'hell',
  'let',
  'inlaw',
  'know',
  'happi',
  'urg',
  'mind',
  'busi',
  'stop',
  'tri',
  'divid',
  'famili',
  'condon',
  'nicol',
  'unjustifi',
  'hatr',
  'parent'],
 ['singl',
  'mother',
  'daughter',
  'ami',
  'came',
  'year',
  'ago',
  'marri',
  'wife',
  'jenna',
  'last',
  'year',
  'daughter',
  'nora',
  'live',
  'togeth',
  'full',
  'custodi',
  'daughter',
  'kind',
  'hard',
  'adjust',
  'second',
  'mom',
  'got',
  'along',
  'well',
  'girl',
  'birthday',
  'close',
  'two',
  'day',
  'apart',
  'decid',
  'joint',
  'birthday',
  'parti',
  'sinc',
  'nora',
  'hard',
  'time',
  'make',
  'new',
  'friend',
  'move',
  'us',
  'shi',
  'famili',
  'live',
  'countri',
  'gift',
  'sent',
  'week',
  'earli',
  'huge',
  'bag',
  'least',
  'gift',
  'parti',
  'nice',
  'open',
  'bag',
  'night',
  'everyon',
  'left',
  'jenna',
  'hand',
  'present',
  'took',
  'gift',
  'row',
  'ami',
  'check',
  'bag',
  'froze',
  'see',
  'one',
  'gift',
  'nora',
  'parent',
  'pretend',
  'big',
  'deal',
  'open',
  'present',
  'saw',
  'eye',
  'drop',
  '$',
  'tumbler',
  'walmart',
  'sound',
  'ungrat',
  'ami',
  'gift',
  'much',
  'expens',
  'lot',
  'gift',
  'card',
  '$',
  'new',
  'phone',
  'limited-edit',
  'funko',
  'design',
  'cloth',
  'lot',
  'card',
  'wish',
  'happi',
  'birthday',
  'needless',
  'say',
  'blew',
  'famili',
  'chat',
  'call',
  'parent',
  'sibl',
  'extend',
  'famili',
  'sent',
  'gift',
  'consid',
  'nora',
  'parent',
  'cheap',
  'gift',
  'one',
  'took',
  'serious',
  'sinc',
  '*',
  'duti',
  'give',
  'gift',
  'someon',
  'els',
  'kid',
  '*',
  '*',
  'ami',
  'deserv',
  'sinc',
  'even',
  'throw',
  'birthday',
  'parti',
  '*',
  'emphas',
  'jenna',
  'nora',
  'problem',
  'nora',
  'clearli',
  'hurt',
  'sinc',
  'first',
  'time',
  'famili',
  'left',
  'night',
  'ask',
  'ami',
  'share',
  'gift',
  'stepsist',
  'coupl',
  'gift',
  'card',
  'new',
  'cloth',
  'ami',
  'refus',
  'surpris',
  'sinc',
  'never',
  'problem',
  'share',
  'even',
  'though',
  'nora',
  'bff',
  'usual',
  'get',
  'along',
  'ask',
  'ami',
  'start',
  'cri',
  'say',
  'never',
  'want',
  'joint',
  'birthday',
  'parti',
  'forc',
  'share',
  'everyth',
  'nora',
  'share',
  'room',
  'space',
  'make',
  'sure',
  'theyr',
  'invit',
  'parti',
  'sleepov',
  'nora',
  'left',
  'invit',
  'either',
  'goe',
  'ami',
  'state',
  'least',
  'want',
  'gift',
  'alon',
  'scold',
  'selfish',
  'stepsist',
  'ground',
  'took',
  'coupl',
  'present',
  'give',
  'nora',
  'turn',
  'want',
  'problem',
  'ami',
  'felt',
  'like',
  'piti',
  'sinc',
  'ami',
  'cold',
  'us',
  'want',
  'two',
  'girl',
  'closer',
  'joint',
  'parti',
  'thing',
  'aita',
  'clarif',
  'jenna',
  'bought',
  'gift',
  'girl',
  'tablet',
  'well',
  'friend',
  'nora',
  'also',
  'receiv',
  'gift',
  'extend',
  'famili',
  'sent',
  'ami',
  'well'],
 ['work',
  'tech',
  'consult',
  'job',
  'im',
  'woman',
  'team',
  'boss',
  'told',
  'come',
  'harsh',
  'client',
  'upbeat',
  'smile',
  'felt',
  'ick',
  'right',
  'away',
  'text',
  'group',
  'chat',
  'cowork',
  'without',
  'manag',
  'ask',
  'bossman',
  'ever',
  'told',
  'guy',
  'smile',
  'immedi',
  'round',
  'coupl',
  'cowork',
  'ask',
  'said',
  'point',
  'doubl',
  'standard',
  'cowork',
  'joke',
  'client',
  'right',
  'give',
  'anyth',
  'smile',
  'ask',
  'ever',
  'call',
  'harsh',
  'told',
  'boss',
  'told',
  'smile',
  'one',
  'cowork',
  'sent',
  'pictur',
  'girl',
  'pull',
  'silli',
  'face',
  'weird',
  'pinch',
  'smile',
  'bug-out',
  'eye',
  'say',
  'well',
  'bossman',
  'say',
  'get',
  'thought',
  'hilari',
  'decid',
  'actual',
  'anyway',
  'start',
  'smile',
  'around',
  'boss',
  'also',
  'bit',
  'stupidli',
  'keep',
  'mouth',
  'pinch',
  'tens',
  'gum',
  'display',
  'purpos',
  'pull',
  'chin',
  'back',
  'toward',
  'neck',
  'id',
  'get',
  'doubl',
  'chin',
  'never',
  'front',
  'actual',
  'client',
  'boss',
  'cowork',
  'joke',
  'boss',
  'kept',
  'look',
  'uncomfort',
  'ask',
  'meet',
  'week',
  'face',
  'pull',
  'said',
  'uhh',
  'face',
  'said',
  'one',
  'second',
  'ago',
  'cowork',
  'said',
  'smile',
  'get',
  'boss',
  'said',
  'look',
  'like',
  'pull',
  'face',
  'cowork',
  'pull',
  'phone',
  'pictur',
  'recent',
  'happi',
  'hour',
  'pull',
  'face',
  'make',
  'cowork',
  'laugh',
  'said',
  'dude',
  'hell',
  'wrong',
  'liter',
  'smile',
  'look',
  'pictur',
  'last',
  'friday',
  'cowork',
  'back',
  'say',
  'smile',
  'boss',
  'look',
  'kinda',
  'incredul',
  'clarifi',
  'someth',
  'make',
  'spontan',
  'laugh',
  'grin',
  'probabl',
  'look',
  'littl',
  'relax',
  'im',
  'put',
  'smile',
  'polit',
  'pose',
  'pictur',
  'guess',
  'smile',
  'tri',
  'polit',
  'let',
  'know',
  'come',
  'harsh',
  'meet',
  'anyway',
  'next',
  'one',
  'one',
  'meet',
  'boss',
  'said',
  'need',
  'chang',
  'demeanor',
  'much',
  'base',
  'comment',
  'honestli',
  'come',
  'disengen',
  'would',
  'look',
  'wors',
  'front',
  'client',
  'said',
  'yeah',
  'guess',
  'ive',
  'never',
  'realli',
  'good',
  'super',
  'peppi',
  'without',
  'look',
  'fake',
  'far',
  'know',
  'end',
  'except',
  'becom',
  'run',
  'joke',
  'offc',
  'look',
  'like',
  'nigel',
  'thornberri',
  'pretti',
  'smash',
  'nicknam',
  'honestli',
  'feel',
  'littl',
  'bad',
  'basic',
  'gaslit',
  'boss',
  'cowork',
  'instead',
  'direct',
  'say',
  'come',
  'across',
  'bit',
  'sexist',
  'aita',
  'fake',
  'smile',
  'thing'],
 ['found',
  'pregnant',
  'recent',
  'husband',
  'famili',
  'beyond',
  'happi',
  'excit',
  'heard',
  'husband',
  'marri',
  'time',
  'kid',
  'year',
  'obvious',
  'huge',
  'deal',
  'famili',
  'mom',
  'first',
  'time',
  'grandma',
  'babi',
  'threw',
  'celebr',
  'dinner',
  'us',
  'mom',
  'talk',
  'babi',
  'told',
  'alreadi',
  'start',
  'make',
  'memori',
  'start',
  'keepsak',
  'grandbabi',
  'felt',
  'bit',
  'confus',
  'ask',
  'husband',
  'bought',
  'someth',
  'babi',
  'gave',
  'said',
  'bring',
  'use',
  'pregnanc',
  'test',
  'gave',
  'store',
  'memori',
  'news',
  'grandbabi',
  'exisist',
  'floor',
  'look',
  'husband',
  'like',
  'realli',
  'nod',
  'smile',
  'ngl',
  'felt',
  'creep',
  'disgust',
  'uncomfort',
  'initi',
  'shock',
  'went',
  'call',
  'creepi',
  'disgust',
  'highli',
  'violat',
  'husband',
  'argu',
  'huge',
  'deal',
  'grab',
  'test',
  'got',
  'rid',
  'put',
  'plastic',
  'bag',
  'gift',
  'mom',
  'keepsak',
  'told',
  'made',
  'feel',
  'violat',
  'creep',
  'test',
  'liter',
  'pee',
  'mom',
  'said',
  'someth',
  'take',
  'care',
  'smell',
  'lash',
  'even',
  'demand',
  'get',
  'rid',
  'kept',
  'argu',
  'call',
  'control',
  'bil',
  'ask',
  'calm',
  'decid',
  'grab',
  'stuff',
  'go',
  'home',
  'husband',
  'start',
  'argu',
  'overreact',
  'said',
  'ruin',
  'famili',
  'joy',
  'behav',
  'find',
  'pregnanc',
  'test',
  'said',
  'mom',
  'babi',
  'somehow',
  'made',
  'whole',
  'thing',
  'hurt',
  'feel',
  'process',
  'liter',
  'pee',
  'test',
  'help',
  'flip',
  'even',
  'ruin',
  'joy',
  'news',
  'overeact'],
 ['throwaway',
  'acct',
  'sorri',
  'format',
  'mobil',
  'start',
  'new',
  'job',
  'front',
  'desk',
  'clerk',
  'hotel',
  'work',
  'night',
  'shift',
  'usual',
  'cowork',
  'sm',
  'never',
  'realli',
  'spoke',
  'night',
  'ago',
  'first',
  'night',
  'alon',
  'around',
  'notic',
  'person',
  'park',
  'lot',
  'see',
  'lot',
  'front',
  'desk',
  'light',
  'lot',
  'terribl',
  'realli',
  'see',
  'face',
  'get',
  'close',
  'lobbi',
  'door',
  'stand',
  'move',
  'five',
  'ten',
  'minut',
  'thought',
  'strang',
  'cours',
  'creep',
  'minut',
  'stand',
  'move',
  'guess',
  'call',
  'front',
  'desk',
  'move',
  'hand',
  'ear',
  'phone',
  'rang',
  'pick',
  'end',
  'heard',
  'buri',
  'none',
  'found',
  'low',
  'voic',
  'hung',
  'point',
  'terrifi',
  'ran',
  'back',
  'room',
  'call',
  'explain',
  'oper',
  'go',
  'sent',
  'coupl',
  'cop',
  'hotel',
  'arriv',
  'one',
  'cop',
  'talk',
  'person',
  'outsid',
  'one',
  'front',
  'desk',
  'talk',
  'tell',
  'person',
  'outsid',
  'claim',
  'also',
  'work',
  'confus',
  'also',
  'admit',
  'seen',
  'person',
  'face',
  'silhouett',
  'point',
  'offic',
  'person',
  'lot',
  'come',
  'turn',
  'cowork',
  'upset',
  'say',
  'would',
  'never',
  'prank',
  'knew',
  'go',
  'call',
  'polic',
  'tri',
  'get',
  'arrest',
  'go',
  'press',
  'charg',
  'tell',
  'manag',
  'happen',
  'next',
  'morn',
  'day',
  'guess',
  'told',
  'cowork',
  'happen',
  'one',
  'realli',
  'speak',
  'give',
  'bit',
  'attitud',
  'feel',
  'like',
  'took',
  'bit',
  'far',
  'call',
  'polic',
  'aita'],
 ['husband',
  'chri',
  'plan',
  'one',
  'week',
  'vacat',
  'state',
  'ski',
  'resort',
  'kid',
  'cousin',
  'martin',
  'lost',
  'wife',
  'cancer',
  'month',
  'ago',
  'left',
  'behind',
  'kid',
  'nearli',
  'age',
  'kid',
  '&',
  'husband',
  'devest',
  'best',
  'friend',
  'loss',
  'theyr',
  'close',
  'see',
  'friend',
  'understand',
  'tri',
  'help',
  'martin',
  'kid',
  'opinion',
  'littl',
  'much',
  'late',
  'suggest',
  'take',
  'martin',
  'kid',
  'us',
  'resort',
  'get',
  'mind',
  'grief',
  'bit',
  'apolog',
  'said',
  'sinc',
  'bare',
  'budget',
  'cover',
  'kid',
  'insist',
  'tri',
  'offer',
  'compromis',
  'still',
  'said',
  'work',
  'obvious',
  'piss',
  'drop',
  'eventu',
  'day',
  'trip',
  'found',
  'husband',
  'book',
  'two',
  'ticket',
  'martin',
  'kid',
  'instead',
  'kid',
  'one',
  'pay',
  'insist',
  'handl',
  'thd',
  'book',
  'make',
  'reserv',
  'stunnedi',
  'call',
  'apologet',
  'talk',
  'martin',
  'need',
  'alon',
  'time',
  'away',
  'kid',
  'kid',
  'need',
  'breather',
  'need',
  'vacat',
  'kid',
  'flip',
  'ask',
  'serious',
  'ok',
  'priorit',
  'otherskid',
  'said',
  'prioriti',
  'need',
  'help',
  'kid',
  'ask',
  'kid',
  'react',
  'find',
  'said',
  'im',
  'sure',
  'theyd',
  'understand',
  'said',
  'decid',
  'cancel',
  'vacat',
  'altogeth',
  'freak',
  'say',
  'cant',
  'make',
  'look',
  'small',
  'infront',
  'cousin',
  'famili',
  'sinc',
  'prais',
  'nice',
  'gestur',
  'refus',
  'negoti',
  'call',
  'horribl',
  'selfish',
  'cruel',
  'toward',
  'griev',
  'kid',
  'said',
  'hell',
  'make',
  'sure',
  'kid',
  'know',
  'im',
  'behav',
  'toward',
  'kid',
  'rob',
  'fun',
  'much',
  'need',
  'deserv',
  'talk',
  'piss',
  'keep',
  'throw',
  'fit',
  'fit',
  'claim',
  'ruin',
  'everybodi',
  'cancel',
  'feel',
  'bad',
  'kid',
  'think',
  'right',
  'aita',
  'cancel'],
 ['marri',
  'husband',
  'jeremi',
  'sinc',
  'son',
  'chri',
  'husband',
  'fantast',
  'relationship',
  'despit',
  'titl',
  'may',
  'sound',
  'like',
  'birthday',
  'week',
  'honestli',
  'put',
  'much',
  'thought',
  'husband',
  'gift',
  'giver',
  'say',
  'hard',
  'time',
  'figur',
  'get',
  'want',
  'wast',
  'money',
  'someth',
  'peopl',
  'use',
  'also',
  'practic',
  'person',
  'wherea',
  'im',
  'far',
  'sentiment',
  'type',
  'even',
  'get',
  'someth',
  'someth',
  'use',
  'everi',
  'day',
  'big',
  'deal',
  'obvious',
  'ive',
  'request',
  'sentiment',
  'piec',
  'never',
  'get',
  'pretti',
  'much',
  'gave',
  'ever',
  'ask',
  'anyth',
  'realli',
  'bother',
  'number',
  'year',
  'truli',
  'bother',
  'usual',
  'well',
  'son',
  'graduat',
  'year',
  'earli',
  'start',
  'colleg',
  'next',
  'year',
  'current',
  'work',
  'job',
  'choic',
  'ive',
  'ask',
  'cut',
  'back',
  'enjoy',
  'teen',
  'year',
  'adulthood',
  'work',
  'make',
  'happi',
  'work',
  'mechan',
  'shop',
  'junk',
  'yard',
  'buddi',
  'work',
  'least',
  'get',
  'time',
  'friend',
  'well',
  'husband',
  'hate',
  'spend',
  'money',
  'tri',
  'inflict',
  'us',
  'live',
  'frugal',
  'physic',
  'possibl',
  'save',
  'everi',
  'singl',
  'dime',
  'could',
  'retir',
  'right',
  'second',
  'abl',
  'go',
  'money',
  'save',
  'son',
  'come',
  'home',
  'last',
  'night',
  'buddi',
  'work',
  'like',
  'know',
  'week',
  'cant',
  'wait',
  'open',
  'pleas',
  'open',
  'buddi',
  'snicker',
  'thought',
  'would',
  'gag',
  'gift',
  'much',
  'surpris',
  'huge',
  'absolut',
  'gorgeou',
  'wall',
  'piec',
  'photo',
  'frame',
  'shelv',
  'built',
  'husband',
  'immedi',
  'like',
  'wow',
  'much',
  'cost',
  'could',
  'went',
  'ira',
  'ro',
  'account',
  'idk',
  'said',
  'right',
  'son',
  'immedi',
  'shot',
  'cold',
  'dagger',
  'husband',
  'say',
  'truli',
  'none',
  'busi',
  'money',
  'sinc',
  'outright',
  'refus',
  'buy',
  'mother',
  'nice',
  'thing',
  'absolut',
  'deserv',
  'make',
  'sure',
  'get',
  'someth',
  'nice',
  'record',
  'made',
  'cost',
  'us',
  'anyth',
  'husband',
  'stop',
  'talk',
  'look',
  'wait',
  'say',
  'someth',
  'shake',
  'head',
  'walk',
  'boy',
  'leav',
  'say',
  'allow',
  'chri',
  'embarass',
  'infront',
  'peopl',
  'said',
  'someth',
  'simpli',
  'told',
  'chri',
  'right',
  'aita'],
 ['step',
  'mother',
  'obvious',
  'get',
  'along',
  'step',
  'mother',
  'year',
  'money',
  'joint',
  'account',
  'dad',
  'step',
  'mother',
  'access',
  'debit',
  'card',
  'pin',
  'number',
  'earn',
  'money',
  'sell',
  'handcraft',
  'item',
  'broke',
  'curfew',
  'day',
  'ago',
  'suggest',
  'consid',
  'whether',
  'take',
  '%',
  'money',
  'account',
  'fine',
  'punish',
  'everi',
  'time',
  'happen',
  'take',
  '%',
  'noth',
  'left',
  'upset',
  'threat',
  'decid',
  'move',
  'money',
  'take',
  'away',
  'log',
  'onlin',
  'transfer',
  'big',
  'brother',
  'account',
  'night',
  'next',
  'day',
  'went',
  'open',
  'joint',
  'bank',
  'account',
  'brother',
  'move',
  'money',
  'access',
  'anymor',
  'upon',
  'learn',
  'happen',
  'dad',
  'step',
  'mom',
  'furiou',
  'brother',
  'step',
  'mom',
  'focus',
  'fact',
  'ive',
  'taken',
  'away',
  'mean',
  'punish',
  'dad',
  'upset',
  'trust',
  'enough',
  'protect',
  'money',
  'insist',
  'allow',
  'step',
  'mom',
  'ban',
  'see',
  'brother',
  'meaningless',
  'accept',
  'author',
  'dad',
  'say',
  'hurt',
  'trust',
  'result',
  'trust',
  'anymor',
  'aita',
  'move',
  'money'],
 ['two',
  'younger',
  'sister',
  'came',
  'visit',
  'husband',
  'suppos',
  '-week',
  'trip',
  'unfortun',
  'end',
  'earli',
  'caught',
  'follow',
  'husband',
  'dinner',
  'client',
  'told',
  'leav',
  'immedi',
  'could',
  'tell',
  'husband',
  'close',
  'explod',
  'even',
  'though',
  'kept',
  'beg',
  'hear',
  'let',
  'stay',
  'call',
  'dad',
  'let',
  'know',
  'would',
  'come',
  'home',
  'earli',
  'go',
  'well',
  'stepmoth',
  'want',
  'let',
  'stay',
  'morn',
  'would',
  'fli',
  'back',
  'daytim',
  'told',
  'possibl',
  'leav',
  'immedi',
  'im',
  'suppos',
  'visit',
  'soon',
  'sister',
  'told',
  'dad',
  'want',
  'see',
  'stepmoth',
  'said',
  'welcom',
  'hous',
  'reason',
  'husband',
  'angri',
  'client',
  'one',
  'notic',
  'take',
  'pictur',
  'confront',
  'rude',
  'aita'],
 ['husband',
  'hospit',
  'surgeri',
  'involv',
  'anesthesia',
  'mom',
  'came',
  'wait',
  'speak',
  'minor',
  'disagr',
  'offer',
  'coffe',
  'declin',
  'polit',
  'hour',
  'surgeri',
  'told',
  'one',
  'person',
  'goe',
  'room',
  'day',
  'sinc',
  'still',
  'anesthesia',
  'understand',
  'woke',
  'call',
  'mom',
  'nurs',
  'ask',
  'mom',
  'go',
  'irrit',
  'felt',
  'like',
  'wait',
  'stress',
  'got',
  'ignor',
  'nurs',
  'told',
  'still',
  'fulli',
  'awak',
  'repeatedli',
  'call',
  'mom',
  'spontan',
  'basic',
  'hint',
  'get',
  'work',
  'natur',
  'reaction',
  'husband',
  'help',
  'feel',
  'irk',
  'want',
  'go',
  'home',
  'left',
  'minut',
  'later',
  'mom',
  'call',
  'say',
  'got',
  'room',
  'left',
  'could',
  'get',
  'time',
  'instead',
  'wait',
  'went',
  'home',
  'said',
  'okay',
  'flew',
  'handl',
  'reason',
  'said',
  'son',
  'act',
  'like',
  'said',
  'blame',
  'someth',
  'cant',
  'control',
  'im',
  'unfair',
  'put',
  'blame',
  'disagr',
  'cut',
  'convers',
  'short',
  'sens',
  'somehow',
  'blame',
  'unacknowledg',
  'ignor',
  'husband',
  'text',
  'later',
  'say',
  'im',
  'hostil',
  'noth',
  'focu',
  'husband',
  'health',
  'instead',
  'act',
  'petti',
  'think',
  'anyth',
  'qualifi',
  'petti'],
 ['three',
  'older',
  'sibl',
  'diana',
  'sebastian',
  'jake',
  'surpris',
  'babi',
  'im',
  'closer',
  'jake',
  'diana',
  'sebastian',
  'jake',
  'alway',
  'interest',
  'sport',
  'train',
  'sinc',
  'went',
  'pro',
  'colleg',
  'even',
  'look',
  'like',
  'young',
  'schwarzenegg',
  'took',
  'sibl',
  'home',
  'activ',
  'watch',
  'mean',
  'young',
  '*',
  'desper',
  '*',
  'interact',
  'sibl',
  'lot',
  'needi',
  'thing',
  'took',
  'bake',
  'class',
  'diana',
  'watch',
  'everi',
  'stupid',
  'star',
  'war',
  'movi',
  'could',
  'talk',
  'sebastian',
  'becam',
  'rock',
  'jake',
  'im',
  'needi',
  'anymor',
  'never',
  'realli',
  'talk',
  'sebastian',
  'claim',
  'reason',
  'peopl',
  'mostli',
  'women',
  'reject',
  'look',
  'mean',
  'okay',
  'littl',
  'bald',
  'littl',
  'overweight',
  'also',
  'grumpi',
  'noisi',
  'think',
  'jake',
  'stupid',
  'look',
  'realli',
  'anoth',
  'reason',
  'jake',
  'phd',
  'im',
  'top',
  'class',
  'stupid',
  'muscl',
  'ive',
  'laugh',
  'disrespect',
  'resent',
  'year',
  'im',
  'bit',
  'older',
  'cut',
  'move',
  'away',
  'sad',
  'brother',
  'want',
  'relationship',
  'meh',
  'guy',
  'girl',
  'want',
  'anyth',
  'seriou',
  'month',
  'ago',
  'girl',
  'pick',
  'form',
  'parent',
  'hous',
  'introduc',
  'famili',
  'next',
  'day',
  'said',
  'sebastian',
  'sent',
  '*',
  'unfckabl',
  '*',
  'messag',
  'fb',
  'ever',
  'receiv',
  'life',
  'read',
  'someth',
  'call',
  'beauti',
  'said',
  'knew',
  'seriou',
  'offici',
  'ask',
  'date',
  'min',
  'later',
  'ask',
  'minut',
  'later',
  'ask',
  'show',
  'text',
  'minut',
  'later',
  'spent',
  'next',
  'minut',
  'insult',
  'block',
  'agre',
  'tell',
  'anyth',
  'said',
  'care',
  'broke',
  'remov',
  'hous',
  'ill',
  'live',
  'parent',
  'least',
  'month',
  'find',
  'anoth',
  'apart',
  'sebastian',
  'also',
  'live',
  'went',
  'trough',
  'door',
  'laugh',
  'call',
  'kick',
  'chad',
  'even',
  'look',
  'like',
  'littl',
  'jake',
  'still',
  'got',
  'broken',
  'know',
  'feel',
  'peopl',
  'reject',
  'look',
  'better',
  'look',
  'fuckboy',
  'stereotyp',
  'roll',
  'eye',
  'said',
  'look',
  'reason',
  'women',
  'run',
  'form',
  'rather',
  'creepi',
  'person',
  'rememb',
  'text',
  'sent',
  '\\',
  '[',
  'ex\\',
  ']',
  'month',
  'ago',
  'got',
  'red',
  'face',
  'mom',
  'said',
  'rude',
  'sebastian',
  'alreadi',
  'bad',
  'time',
  'age',
  'live',
  'home'],
 ['mom',
  'die',
  'year',
  'old',
  'dad',
  'end',
  'turn',
  'one',
  'good',
  'friend',
  'ana',
  'end',
  'get',
  'marri',
  'ana',
  'brought',
  'idea',
  'adopt',
  'day',
  'wed',
  'someth',
  'dad',
  'went',
  'nut',
  'mention',
  'kinda',
  'spoil',
  'rest',
  'wed',
  'next',
  'year',
  'realli',
  'intens',
  'therapi',
  'told',
  'therapist',
  'need',
  'mom',
  'would',
  'provid',
  'safeti',
  'betray',
  'mom',
  'accept',
  'anoth',
  'love',
  'mom',
  'life',
  'therapist',
  'put',
  'recommend',
  'court',
  'approv',
  'judg',
  'spoke',
  'told',
  'would',
  'run',
  'away',
  'would',
  'everyth',
  'never',
  'come',
  'back',
  'time',
  'meant',
  'busi',
  'ask',
  'want',
  'adopt',
  'listen',
  'address',
  'court',
  'deni',
  'adopt',
  'request',
  'told',
  'dad',
  'ana',
  'board',
  'adopt',
  'would',
  'approv',
  'court',
  'tri',
  'request',
  'differ',
  'judg',
  'receiv',
  'respons',
  'ask',
  'constantli',
  'chang',
  'mind',
  'ana',
  'would',
  'put',
  'tri',
  'fill',
  'place',
  'mom',
  'life',
  'everi',
  'time',
  'told',
  'could',
  'never',
  'mom',
  'took',
  'challeng',
  'tri',
  'harder',
  'better',
  'would',
  'dedic',
  'much',
  'time',
  'crazi',
  'never',
  'appreci',
  'instead',
  'ana',
  'instead',
  'dad',
  'tell',
  'ana',
  'saw',
  'mom',
  'thing',
  'want',
  'even',
  'kid',
  'oldest',
  'son',
  'son',
  'boy',
  'shed',
  'call',
  'boy',
  'mom',
  'etc',
  'wherea',
  'never',
  'call',
  'mom',
  'honest',
  'even',
  'love',
  'year',
  'see',
  'intrus',
  'famili',
  'member',
  'stop',
  'relationship',
  'dad',
  'also',
  'best',
  'like',
  'take',
  'answer',
  'quick',
  'tri',
  'push',
  'adopt',
  'even',
  'told',
  'would',
  'rather',
  'grandpar',
  'auntuncl',
  'close',
  'famili',
  'friend',
  'ana',
  'die',
  'insist',
  'ana',
  'mom',
  'best',
  'turn',
  'month',
  'ago',
  'ran',
  'like',
  'ass',
  'fire',
  'get',
  'away',
  'dad',
  'ana',
  'live',
  'matern',
  'grandpar',
  'littl',
  'move',
  'matern',
  'uncl',
  'live',
  'near',
  'realli',
  'good',
  'apprenticeship',
  'want',
  'join',
  'patern',
  'grandpar',
  'celebr',
  'wed',
  'anniversari',
  'past',
  'weekend',
  'ana',
  'approach',
  'hand',
  'paper',
  'adult',
  'adopt',
  'told',
  'love',
  'want',
  'know',
  'late',
  'would',
  'still',
  'adopt',
  'want',
  'make',
  'relationship',
  'offici',
  'mother',
  'son',
  'ask',
  'could',
  'delusion',
  'said',
  'adopt',
  'year',
  'told',
  'would',
  'chang',
  'mind',
  'dad',
  'piss',
  'choic',
  'word',
  'chao',
  'ensu',
  'parti',
  'aita'],
 ['throwaway',
  'friend',
  'know',
  'main',
  'account',
  'mum',
  'move',
  'step',
  'dad',
  '\\',
  '[',
  'sd\\',
  ']',
  'step',
  'brother',
  '\\',
  '[',
  'sb\\',
  ']',
  'around',
  'two',
  'year',
  'ago',
  'nice',
  'sneaker',
  'collect',
  'amass',
  'work',
  'casual',
  'job',
  'resel',
  'sneaker',
  'sb',
  'show',
  'interest',
  'sneaker',
  'collect',
  'previous',
  'guess',
  'age',
  'matter',
  'come',
  'room',
  'often',
  'look',
  'collect',
  'also',
  'recent',
  'grown',
  'size',
  'import',
  'recent',
  'ask',
  'let',
  'wear',
  'shoe',
  'collect',
  'im',
  'oppos',
  'theyr',
  'shoe',
  'feel',
  'like',
  'final',
  'say',
  'get',
  'wear',
  'care',
  'absolut',
  'thrash',
  'shoe',
  'common',
  'sens',
  'wear',
  'shoe',
  'decreas',
  'valu',
  'significantli',
  'like',
  'hold',
  'unworn',
  'case',
  'price',
  'spike',
  'everi',
  'time',
  'ask',
  'ive',
  'told',
  'recent',
  'told',
  'import',
  'outing',
  'go',
  'go',
  'friend',
  'want',
  'wear',
  'one',
  'shoe',
  'told',
  'time',
  'threw',
  'absolut',
  'fit',
  'got',
  'sd',
  'involv',
  'sd',
  'told',
  'im',
  'greedi',
  'let',
  'sb',
  'wear',
  'one',
  'sinc',
  'mani',
  'told',
  'valu',
  'everyon',
  'told',
  'resel',
  'valu',
  'pair',
  'sd',
  'absolut',
  'shock',
  'devolv',
  'argument',
  'pay',
  'rent',
  'realli',
  'paid',
  'retail',
  'price',
  'resel',
  'price',
  'seem',
  'understand',
  'sd',
  'sb',
  'left',
  'realis',
  'budg',
  'thought',
  'situat',
  'head',
  'work',
  'saturday',
  'howev',
  'bu',
  'ride',
  'home',
  'scroll',
  'instagram',
  'sb',
  'post',
  'pictur',
  'wear',
  'exact',
  'shoe',
  'let',
  'wear',
  'angri',
  'comment',
  'fuck',
  'wear',
  'shoe',
  'delet',
  'comment',
  'seem',
  'like',
  'late',
  'friend',
  'saw',
  'embarrass',
  'told',
  'shoe',
  'told',
  'sd',
  'happen',
  'call',
  'furi',
  'ask',
  'embarrass',
  'son',
  'like',
  'shoe',
  'worth',
  'fuck',
  'yell',
  'back',
  'sb',
  'busi',
  'wear',
  'stuff',
  'feel',
  'sd',
  'encourag',
  'fuck',
  'hung',
  'got',
  'home',
  'got',
  'full',
  'yell',
  'told',
  'lucki',
  'allow',
  'live',
  'roof',
  'mum',
  'step',
  'defend',
  'argu',
  'past',
  'day',
  'half',
  'ask',
  'sb',
  'give',
  'shoe',
  'back',
  'told',
  'never',
  'touch',
  'shit',
  'hole',
  'room',
  'sinc',
  'thing',
  'realli',
  'tens',
  'hous',
  'reddit',
  'aita',
  'allow',
  'brother',
  'wear',
  'shoe',
  'embarrass',
  'instagram',
  'anyway'],
 ['wife',
  'year',
  'old',
  'son',
  'weve',
  'incred',
  'busi',
  'work',
  'schedul',
  'last',
  'year',
  'famili',
  'great',
  'job',
  'help',
  'son',
  'usual',
  'member',
  'inlaw',
  'take',
  'son',
  'whenev',
  'work',
  'trip',
  'shift',
  'come',
  'wife',
  'mom',
  'sister',
  'dad',
  'except',
  'year',
  'old',
  'brother',
  'law',
  'wife',
  'brother',
  'made',
  'clear',
  'interest',
  'spend',
  'time',
  'nephew',
  'keep',
  'say',
  'reason',
  'actual',
  'child',
  'free',
  'mani',
  'emerg',
  'turn',
  'wife',
  'away',
  'beg',
  'watch',
  'son',
  'even',
  'budg',
  'apolog',
  'attitud',
  'came',
  'head',
  'coupl',
  'day',
  'ago',
  'work',
  'meet',
  'wife',
  'town',
  'inlaw',
  'attend',
  'wed',
  'one',
  'free',
  'watch',
  'son',
  'except',
  'bil',
  'show',
  'place',
  'told',
  'desper',
  'help',
  'need',
  'watch',
  'son',
  'hour',
  'refus',
  'even',
  'suggest',
  'take',
  'work',
  'good',
  'suggest',
  'beg',
  'said',
  'enough',
  'confront',
  'ask',
  'like',
  'nephew',
  'threw',
  'im',
  'child',
  'free',
  'excus',
  'made',
  'lose',
  'told',
  'stop',
  'cring',
  'keep',
  'say',
  'use',
  'excus',
  'unsupport',
  'sister',
  'cold',
  'toward',
  'nephew',
  'told',
  'realli',
  'better',
  'stop',
  'neg',
  'got',
  'mad',
  'said',
  'right',
  'disrespect',
  'lifestylechoic',
  'attitud',
  'get',
  'exchang',
  'word',
  'said',
  'son',
  'respons',
  'whatsoev',
  'left',
  'complain',
  'inlaw',
  'call',
  'disrespect',
  'son',
  'treat',
  'like',
  'insist',
  'respons',
  'son',
  'expect',
  'much',
  'guilt',
  'want',
  'apolog',
  'wife',
  'said',
  'help',
  'support',
  'rock',
  'decid',
  'take',
  'time',
  'consid',
  'apolog',
  'aita'],
 ['recent',
  'wed',
  'beach',
  'beauti',
  'hotel',
  'cancun',
  'mani',
  'friend',
  'famili',
  'could',
  'go',
  'happi',
  'problem',
  'ceremoni',
  'peopl',
  'sea',
  'play',
  'jet',
  'ski',
  'activ',
  'realli',
  'bother',
  'would',
  'appear',
  'background',
  'told',
  'wed',
  'planner',
  'understand',
  'said',
  'would',
  'fix',
  'talk',
  'owner',
  'activ',
  'peopl',
  'area',
  'sea',
  'expect',
  'kind',
  'nice',
  'declin',
  'continu',
  'even',
  'took',
  'time',
  'go',
  'ask',
  'stop',
  'care',
  'go',
  'tell',
  'someon',
  'hotel',
  'husband',
  'stop',
  'said',
  'would',
  'ah',
  'thing',
  'told',
  'stand',
  'ah',
  'thing',
  'went',
  'look',
  'hotel',
  'staff',
  'said',
  'noth',
  'could',
  'return',
  'husband',
  'moodi',
  'wonder',
  'realli',
  'ah',
  'thing',
  'aita'],
 ['throwaway',
  'first',
  'post',
  'yada',
  'yada',
  'bad',
  'write',
  'bc',
  'charact',
  'limit',
  'went',
  'grand',
  'canyon',
  'bf',
  'im',
  '%',
  'afraid',
  'height',
  'go',
  'near',
  'windowsrail',
  'type',
  'scare',
  'phobia',
  'full',
  'sens',
  'word',
  'bc',
  'want',
  'go',
  'first',
  'place',
  'famou',
  'destin',
  'figur',
  'worth',
  'face',
  'fear',
  'multipl',
  'convo',
  'bf',
  'fear',
  'least',
  'separ',
  'in-depth',
  'convo',
  'scare',
  'panic',
  'attack',
  'around',
  'stranger',
  'long',
  'histori',
  'panic',
  'attack',
  'assur',
  'hed',
  'help',
  'maintain',
  'distanc',
  'ledg',
  '&',
  'calm',
  'got',
  'overwhelmedscar',
  'went',
  'plan',
  'tour',
  'go',
  'follow',
  'day',
  'well',
  'day',
  'tour',
  'stop',
  'scenic',
  'lookout',
  'take',
  'pictur',
  '&',
  'decid',
  'itd',
  'funni',
  'grab',
  '&',
  'pretend',
  'tri',
  '&',
  'push',
  'edg',
  'cliff',
  'immedi',
  'freak',
  '&',
  'unsurprisingli',
  'panic',
  'attack',
  'front',
  'group',
  'poor',
  'guid',
  'tri',
  'calm',
  'im',
  'proud',
  'act',
  'ill',
  'tell',
  'pretti',
  'sob',
  '&',
  'yell',
  'cruel',
  'knew',
  'terrifi',
  '&',
  'evil',
  'use',
  'yell',
  'back',
  'joke',
  'take',
  'serious',
  '&',
  'get',
  'bc',
  'embarrass',
  'myselfhim',
  'fair',
  'wasit',
  'quit',
  'embarrass',
  'think',
  'ah',
  'next',
  'part',
  'told',
  'horribl',
  'person',
  '&',
  'ex',
  'right',
  'leav',
  'context',
  'ex',
  'left',
  'bc',
  'thought',
  'immatur',
  'left',
  'right',
  'high',
  'profil',
  'famili',
  'event',
  '&',
  'embarrass',
  'among',
  'famili',
  'yell',
  'fuck',
  'say',
  '&',
  'hindsight',
  'think',
  'right',
  'especi',
  'sinc',
  'public',
  'tour',
  'guid',
  'separ',
  'us',
  '&',
  'took',
  'back',
  'offic',
  '&',
  'idea',
  'hotel',
  'got',
  'stuff',
  '&',
  'got',
  'flight',
  'parent',
  'state',
  '&',
  'ive',
  'stay',
  'figur',
  'relationship',
  'still',
  'aliv',
  'live',
  'togeth',
  '&',
  'work',
  'compani',
  'life',
  'go',
  'get',
  'messi',
  'thing',
  'ton',
  'mutual',
  'friend',
  '&',
  'half',
  'textingcal',
  'say',
  'im',
  'overreact',
  '&',
  'psycho',
  'bitch',
  'besid',
  'closest',
  'friend',
  'told',
  'anyon',
  'anyth',
  'bc',
  'know',
  'everyon',
  'heard',
  'version',
  'event',
  '&',
  'theyr',
  'make',
  'seem',
  'like',
  'im',
  'lead',
  'pr',
  'campaign',
  'social',
  'media',
  '&',
  'said',
  'anyth',
  'anyon',
  'besid',
  'best',
  'friend',
  'theyr',
  'particularli',
  'mad',
  'left',
  'arizona',
  'think',
  'worth',
  'hate',
  'im',
  'get',
  'left',
  'rental',
  'car',
  '&',
  'hotel',
  'room',
  '&',
  'took',
  'uber',
  'airport',
  'paid',
  'everyth',
  'includ',
  'hotel',
  'room',
  '&',
  'left',
  'note',
  'room',
  'tell',
  'go',
  'parent',
  'feel',
  'like',
  'peopl',
  'understand',
  'mani',
  'peopl',
  'say',
  'thing',
  'im',
  'start',
  'question',
  'soaita'],
 ['year',
  'old',
  'daughter',
  'ariel',
  'ex-wif',
  'lauren',
  'ariel',
  'young',
  'huge',
  'struggl',
  'move',
  'lauren',
  'famili',
  'work',
  'multipl',
  'job',
  'lauren',
  'best',
  'friend',
  'thru',
  'thing',
  'end',
  'ariel',
  'lauren',
  'friend',
  'tori',
  'told',
  'lauren',
  'messag',
  'guy',
  'went',
  'would',
  'give',
  'number',
  'check',
  'lauren',
  'phone',
  'found',
  'ask',
  'divorc',
  'lauren',
  'piss',
  'want',
  'reconcil',
  'got',
  'split',
  'custodi',
  'lauren',
  'made',
  'life',
  'hell',
  'lauren',
  'badmouth',
  'would',
  'miss',
  'pick',
  'time',
  'make',
  'decis',
  'without',
  'talk',
  'dad',
  'offer',
  'money',
  'relinquish',
  'custodi',
  'told',
  'ariel',
  'start',
  'colleg',
  'deal',
  'mom',
  'would',
  'split',
  'remarri',
  'tori',
  'ariel',
  'tori',
  'rock',
  'divorc',
  'date',
  'till',
  'year',
  'later',
  'lauren',
  'use',
  'warp',
  'ariel',
  'tori',
  'son',
  'exclud',
  'whenev',
  'spend',
  'night',
  'talk',
  'go',
  'room',
  'famili',
  'around',
  'son',
  'walk',
  'basement',
  'come',
  'hurt',
  'lot',
  'ive',
  'spent',
  'thousand',
  'therapi',
  'peopl',
  'bring',
  'still',
  'util',
  'point',
  'ariel',
  'nasti',
  'sake',
  'mom',
  'convinc',
  'cheat',
  'friend',
  'babi',
  'funni',
  'ive',
  'point',
  'timelin',
  'even',
  'match',
  'ive',
  'done',
  'everyth',
  'point',
  'includ',
  'famili',
  'time',
  'therapi',
  'ariel',
  'plain',
  'rude',
  'done',
  'tri',
  'ariel',
  'graduat',
  'hs',
  'may',
  'host',
  'parti',
  'invit',
  'famili',
  'told',
  'ariel',
  'found',
  'disrespect',
  'id',
  'send',
  'card',
  'go',
  'care',
  'spoken',
  'sinc',
  'get',
  'call',
  'lauren',
  'say',
  'paid',
  'first',
  'semest',
  'wonder',
  'id',
  'pay',
  'said',
  'longer',
  'pay',
  'im',
  'pull',
  'money',
  'household',
  'ariel',
  'disrespect',
  'rd',
  'ex',
  'went',
  'say',
  'agreement',
  'remind',
  'dad',
  'tri',
  'buy',
  'custodi',
  'said',
  'alway',
  'want',
  'full',
  'control',
  'custodi',
  'figur',
  'text',
  'ive',
  'put',
  'long',
  'enough',
  'got',
  'year',
  'child',
  'support',
  'plan',
  'set',
  'record',
  'straight',
  'done',
  'block',
  'call',
  'ariel',
  'told',
  'gave',
  'reason',
  'im',
  'pay',
  'told',
  'need',
  'look',
  'loan',
  'would',
  'pay',
  'colleg',
  'least',
  'tri',
  'form',
  'bond',
  'famili',
  'creat',
  'situat',
  'attitud',
  'want',
  'help',
  'need',
  'attempt',
  'start',
  'cri',
  'fall',
  'told',
  'expect',
  'let',
  'know',
  'plan',
  'move',
  'money',
  'around',
  'wife',
  'side',
  'say',
  'weve',
  'bad',
  'guy',
  'long',
  'enough',
  'im',
  'get',
  'shit',
  'aita'],
 ['last',
  'weekend',
  'decid',
  'go',
  'make',
  'famili',
  'wife',
  'kid',
  'big',
  'breakfast',
  'spread',
  'part',
  'lame',
  'accord',
  'oldest',
  'daughter',
  'famili',
  'time',
  'decid',
  'day',
  'plan',
  'breakfast',
  'togeth',
  'watch',
  'movi',
  'lunch',
  'play',
  'game',
  'famili',
  'releas',
  'kid',
  'clutch',
  'lame',
  'famili',
  'time',
  'anyway',
  'got',
  'earli',
  'heat',
  'waffl',
  'iron',
  'huge',
  'stovetop',
  'skillet',
  'went',
  'work',
  'make',
  'waffl',
  'scrambl',
  'egg',
  'bacon',
  'sausag',
  'hashbrown',
  'finish',
  'kid',
  'plate',
  'wife',
  'ask',
  'throw',
  'coupl',
  'egg',
  'overeasi',
  'one',
  'famili',
  'stand',
  'runni',
  'yolk',
  'neither',
  'kid',
  'touch',
  'realli',
  'like',
  'told',
  'nah',
  'im',
  'finish',
  'alreadi',
  'realli',
  'want',
  'coupl',
  'egg',
  'way',
  'want',
  'make',
  'go',
  'im',
  'done',
  'respond',
  'alreadi',
  'cook',
  'im',
  'mood',
  'coupl',
  'overeasi',
  'egg',
  'cant',
  'throw',
  'refus',
  'turn',
  'way',
  'quiet',
  'bicker',
  'argument',
  'mind',
  'sinc',
  'one',
  'hand',
  'feel',
  'bad',
  'wife',
  'ask',
  'small',
  'favor',
  'big',
  'deal',
  'fulfil',
  'hand',
  'made',
  'plenti',
  'food',
  'alreadi',
  'wife',
  'like',
  'scrambl',
  'egg',
  'fine',
  'plenti',
  'food',
  'eat',
  'need',
  'go',
  'insist',
  'special',
  'request',
  'honestli',
  'silli',
  'petti',
  'fight',
  'nonetheless',
  'im',
  'curiou',
  'peopl',
  'think',
  'right',
  'edit',
  'top',
  'question',
  'ask',
  'wife',
  'routin',
  'bicker',
  'way',
  'bother',
  'much',
  'neither',
  'us',
  'usual',
  'dig',
  'heel',
  'much',
  'someth',
  'minor',
  'felt',
  'weird',
  'enough',
  'ask',
  'stranger',
  'said',
  'dissent',
  'prevail',
  'opinion',
  'wrong',
  'accept',
  'let',
  'lazi',
  'mood',
  'morn',
  'take',
  'made',
  'wife',
  'happi',
  'peopl',
  'make',
  'way',
  'much',
  'wife',
  'love',
  'love',
  'children',
  'everyth',
  'good',
  'good',
  'famili',
  'stop',
  'wish',
  'bad',
  'upon',
  'marriag',
  'famili',
  'got',
  'littl',
  'lazi',
  'one',
  'morn',
  'want',
  'know',
  'wrong',
  'one',
  'situat',
  'appar',
  'accept',
  'final',
  'peopl',
  'appar',
  'took',
  'say',
  'cook',
  'favor',
  'wife',
  'mean',
  'almost',
  'noth',
  'contribut',
  'famili',
  'whole',
  'thing',
  'bit',
  'orphan',
  'statist',
  'context',
  'full-tim',
  'job',
  'wife',
  'work',
  '-',
  'hour',
  'week',
  'home',
  'divis',
  'labor',
  'fair',
  'accept',
  'im',
  'asshol',
  'lazi',
  'given',
  'wife',
  'want'],
 ['im',
  'mother',
  'twin',
  'dad',
  'split',
  'year',
  'ago',
  'im',
  'fix',
  'meant',
  'nowmarri',
  'husband',
  'kevin',
  'problem',
  'iskevin',
  'think',
  'girl',
  'disciplin',
  'simpli',
  'follow',
  'everyth',
  'tell',
  'see',
  'fatherwev',
  'alreadi',
  'talk',
  'especi',
  'part',
  'expect',
  'dress',
  'want',
  'behav',
  'want',
  'even',
  'call',
  'weirdo',
  'teenag',
  'new',
  'thing',
  'anyway',
  'told',
  'need',
  'loosen',
  'littl',
  'lessen',
  'expect',
  'get',
  'hard',
  'given',
  'brought',
  'conserv',
  'household',
  'hard-cor',
  'christian',
  'famili',
  'last',
  'week',
  'start',
  'fight',
  'see',
  'one',
  'girl',
  'hairstyl',
  'said',
  'look',
  'trashi',
  'cancel',
  'trip',
  'mall',
  'refus',
  'drive',
  'us',
  'coupl',
  'day',
  'ago',
  'want',
  'go',
  'dinner',
  'intend',
  'get',
  'work',
  'stuff',
  'get',
  'done',
  'husband',
  'agre',
  'hed',
  'take',
  'girl',
  'go',
  'restaur',
  'wait',
  'call',
  'got',
  'hous',
  'complain',
  'girl',
  'wear',
  'girl',
  'sent',
  'pic',
  'thought',
  'noth',
  'wrong',
  'outfit',
  'told',
  'drop',
  'go',
  'said',
  'fine',
  'mutter',
  'someth',
  'enabl',
  'thrm',
  'hung',
  'still',
  'work',
  'got',
  'call',
  'one',
  'girl',
  'tell',
  'stepdad',
  'stand',
  'wait',
  'outsid',
  'restaur',
  'want',
  'seen',
  'dress',
  'like',
  'stun',
  'rush',
  'restaur',
  'found',
  'near',
  'car',
  'explain',
  'told',
  'wait',
  'car',
  'til',
  'tell',
  'come',
  'basic',
  'wait',
  'start',
  'cri',
  'get',
  'car',
  'went',
  'insid',
  'restaur',
  'found',
  'phone',
  'went',
  'told',
  'asham',
  'treat',
  'daughter',
  'like',
  'someth',
  'asham',
  'tri',
  'backpaddl',
  'say',
  'like',
  'interrupt',
  'walk',
  'cancel',
  'dinner',
  'went',
  'home',
  'came',
  'back',
  'hour',
  'later',
  'tri',
  'argu',
  'cant',
  'blame',
  'disapprov',
  'girl',
  'reckless',
  'tri',
  'commun',
  'shut',
  'treat',
  'less',
  'parent',
  'want',
  'best',
  'speak',
  'girl',
  'anymor'],
 ['daughter',
  'previou',
  'relationship',
  'father',
  'contact',
  'husband',
  'year',
  'close',
  'father',
  'ever',
  'known',
  'daughter',
  'born',
  'deaf',
  'commun',
  'via',
  'bsl',
  'fluent',
  'learn',
  'alongsid',
  'husband',
  'fluent',
  'get',
  'want',
  'abl',
  'commun',
  'fulli',
  'also',
  'help',
  'teach',
  'children',
  'togeth',
  'commun',
  'older',
  'sister',
  'went',
  'parent',
  'easter',
  'dinner',
  'sibl',
  'niecesnephew',
  'cours',
  'brought',
  'daughter',
  'kid',
  'happi',
  'get',
  'plenti',
  'chocol',
  'play',
  'togeth',
  'issu',
  'rose',
  'howev',
  'dinner',
  'daughter',
  'kept',
  'put',
  'fork',
  'knife',
  'sign',
  'husband',
  'talk',
  'caus',
  'eat',
  'slower',
  'everyon',
  'els',
  'mil',
  'ask',
  'tell',
  'sign',
  'dinner',
  'tabl',
  'food',
  'go',
  'get',
  'cold',
  'plu',
  'set',
  'bad',
  'exampl',
  'distract',
  'kid',
  'beat',
  'around',
  'bush',
  'got',
  'angri',
  'told',
  'mil',
  'daughter',
  'commun',
  'im',
  'go',
  'make',
  'sign',
  '*',
  '*',
  'encourag',
  'daughter',
  'continu',
  'eat',
  'dinner',
  'got',
  'cold',
  'sign',
  'nothat',
  'piss',
  'make',
  'think',
  'peopl',
  'tri',
  'make',
  'daughter',
  'play',
  'quiet',
  'hand',
  'gameaka',
  'sign',
  'told',
  'mil',
  'way',
  'could',
  'ask',
  'daughter',
  'told',
  'everyon',
  'els',
  'talk',
  'end',
  'leav',
  'littl',
  'earli',
  'husband',
  'support',
  'tri',
  'tell',
  'mother',
  'mean',
  'real',
  'harm',
  'get',
  'would',
  'sensit',
  'topic',
  'ive',
  'refus',
  'speak',
  'mil',
  'sinc',
  'dinner',
  'apologis',
  'husband',
  'think',
  'im',
  'bit',
  'harsh',
  'need',
  'one',
  'reach',
  'oliv',
  'branch',
  'matter',
  'cant',
  'help',
  'feel',
  'biolog',
  'grandchild',
  'deaf',
  'said',
  'someth',
  'insensit',
  'impli',
  'distract',
  'bad',
  'exampl',
  'know',
  'mayb',
  'im',
  'defens',
  'child',
  'im',
  'protect',
  'think'],
 ['tri',
  'keep',
  'short',
  '-',
  'marri',
  'year',
  'old',
  'woman',
  'plan',
  'kid',
  'recent',
  'issu',
  'cowork',
  'boss',
  'email',
  'heri',
  'ask',
  'one',
  'us',
  'could',
  'cover',
  'even',
  'call',
  '-',
  'job',
  'occasion',
  'even',
  'call',
  'due',
  'collabor',
  'differ',
  'time',
  'zone',
  'cowork',
  'ask',
  'son',
  'soccer',
  'game',
  'said',
  'cant',
  'volleybal',
  'game',
  'said',
  'soccer',
  'game',
  'kid',
  'volleybal',
  'game',
  'said',
  'respect',
  'outside-of-work',
  'commit',
  'less',
  'import',
  'children',
  'take',
  'call',
  'taken',
  'last',
  'two',
  'scof',
  'know',
  'peopl',
  'around',
  'offic',
  'gossip',
  'sinc',
  'say',
  'super',
  'mess',
  'made',
  'miss',
  'kid',
  'soccer',
  'game',
  'think',
  'incred',
  'import',
  'support',
  'work',
  'mother',
  'alway',
  'happi',
  'accommod',
  'schedul',
  'mother',
  'work',
  'caus',
  'signific',
  'inconveni',
  '-',
  'exampl',
  'cowork',
  'leav',
  'earli',
  'pick',
  'kid',
  'compani',
  'great',
  'im',
  'happi',
  'work',
  'project',
  'schedul',
  'around',
  'also',
  'would',
  'taken',
  'call',
  'conflict',
  'long',
  'pattern',
  'take',
  'significantli',
  'even',
  'call',
  'talk',
  'friend',
  'mother',
  'said',
  'done',
  'peopl',
  'kid',
  'realli',
  'empathi',
  'work',
  'parent',
  'understand',
  'hard',
  'said',
  'respect',
  'understand',
  'work',
  'mother',
  'much',
  'stress',
  'live',
  'decid',
  'mother',
  'also',
  'said',
  'respect',
  'empathi',
  'work',
  'mother',
  'also',
  'valu',
  'time',
  'choic',
  'equal',
  'similarli',
  'scof',
  'said',
  'understand',
  'aita',
  'follow-up',
  'thank',
  'everyon',
  'support',
  'id',
  'like',
  'acknowledg',
  'lot',
  'support',
  'come',
  'work',
  'mother',
  'appreci',
  'almost',
  'respect',
  'anyon',
  'bash',
  'mother',
  'gener',
  'use',
  'misogynist',
  'term',
  'need',
  'support'],
 ['lost',
  'husband',
  'week',
  'ago',
  'cancer',
  'got',
  'treat',
  'came',
  'back',
  'still',
  'devast',
  'im',
  'tri',
  'stay',
  'collect',
  'welcom',
  'support',
  'famili',
  'member',
  'come',
  'offer',
  'help',
  'despit',
  'constant',
  'chang',
  'mood',
  'due',
  'grief',
  'sister',
  'support',
  'one',
  'although',
  'husband',
  'would',
  'act',
  'inappropri',
  'sometim',
  'especi',
  'told',
  'funer',
  'im',
  'burden',
  'free',
  'live',
  'life',
  'given',
  'husband',
  'sole',
  'carer',
  'tri',
  'let',
  'go',
  'comment',
  'think',
  'know',
  'better',
  'sister',
  'famili',
  'came',
  'visit',
  'last',
  'week',
  'cook',
  'dinner',
  'kept',
  'compani',
  'bit',
  'dinner',
  'brother',
  'law',
  'ask',
  'minut',
  'insid',
  'kitchen',
  'start',
  'tell',
  'cowork',
  'singl',
  'went',
  'list',
  'everyth',
  'good',
  'confus',
  'tell',
  'reach',
  'pant',
  'pocket',
  'pull',
  'piec',
  'paper',
  'co',
  'worker',
  'phone',
  'number',
  'tell',
  'give',
  'call',
  'sometim',
  'floor',
  'realli',
  'tell',
  'joke',
  'look',
  'seriou',
  'kept',
  'insist',
  'take',
  'number',
  'lost',
  'start',
  'yell',
  'husband',
  'die',
  'mind',
  'tri',
  'hook',
  'cowork',
  'tri',
  'explain',
  'like',
  'offer',
  'someth',
  'help',
  'know',
  'meant',
  'call',
  'disrespect',
  'yell',
  'get',
  'hous',
  'sister',
  'ran',
  'kitchen',
  'know',
  'go',
  'told',
  'pressur',
  'leav',
  'hous',
  'sister',
  'ask',
  'calm',
  'left',
  'sister',
  'left',
  'quietli',
  'id',
  'calm',
  'sat',
  'famili',
  'said',
  'right',
  'okay',
  'need',
  'keep',
  'mind',
  'sister',
  'help',
  'much',
  'cook',
  'comfort',
  'much',
  'difficult',
  'time',
  'react',
  'like',
  'couldv',
  'littl',
  'consider',
  'grace',
  'said',
  'kick',
  'much',
  'call',
  'later',
  'talk',
  'thing',
  'ruin',
  'relationship',
  'possibl',
  'sister',
  'day',
  'call',
  'sister',
  'visit',
  'call',
  'mean',
  'upset',
  'im',
  'begin',
  'think',
  'theyr',
  'like',
  'hurt',
  'act',
  'ungrat',
  'everyth',
  'theyv',
  'done'],
 ['motorcycl',
  'accid',
  'earlier',
  'week',
  'wife',
  'kid',
  'previou',
  'marriag',
  'year',
  'old',
  'togeth',
  'collaps',
  'lung',
  'chest',
  'tube',
  'put',
  'broken',
  'leg',
  'arm',
  'torn',
  'ligament',
  'knee',
  'ive',
  'hospit',
  'sinc',
  'monday',
  'came',
  'day',
  'accid',
  'stay',
  'back',
  'morn',
  'gone',
  'home',
  'night',
  'yesterday',
  'stay',
  'pm',
  'prepar',
  'hous',
  'hurrican',
  'come',
  'today',
  'weather',
  'great',
  'said',
  'want',
  'leav',
  'kid',
  'told',
  'upset',
  'basic',
  'went',
  'everyth',
  'alon',
  'wouldv',
  'done',
  'anyth',
  'told',
  'much',
  'possibl',
  'fair',
  'dump',
  'kid',
  'daughter',
  'especi',
  'sinc',
  'ill',
  'need',
  'lot',
  'help',
  'get',
  'home',
  'daughter',
  'need',
  'help',
  'kid',
  'work',
  'told',
  'marriag',
  'mean',
  'thick',
  'thin',
  'feel',
  'abandon',
  'im',
  'get',
  'one',
  'word',
  'answer',
  'aita',
  'feel',
  'like',
  'afterthought'],
 ['aunt',
  'year',
  'old',
  'niec',
  'ava',
  'sister',
  'bil',
  'live',
  'close',
  'babysit',
  'sometim',
  'pay',
  'im',
  'happi',
  'anyway',
  'friday',
  'anniversari',
  'ask',
  'week',
  'advanc',
  'could',
  'babysit',
  'provision',
  'agre',
  'noth',
  'els',
  'plan',
  'plan',
  'chang',
  'howev',
  'old',
  'colleg',
  'friend',
  'told',
  'stop',
  'town',
  'friday',
  'seen',
  'nearli',
  'year',
  'realli',
  'want',
  'see',
  'gave',
  'sister',
  'day',
  'notic',
  'could',
  'longer',
  'babysit',
  'friday',
  'make',
  'arrang',
  'respond',
  'text',
  'read',
  'assum',
  'ok',
  'friday',
  'howev',
  'sister',
  'stop',
  'hous',
  'ava',
  'confus',
  'ask',
  'told',
  'leav',
  'ava',
  'origin',
  'plan',
  'said',
  'busi',
  'repli',
  'famili',
  'import',
  'silli',
  'colleg',
  'friend',
  'step',
  'respons',
  'aunt',
  'could',
  'protest',
  'bolt',
  'back',
  'car',
  'bil',
  'drove',
  'leav',
  'ava',
  'tri',
  'call',
  'left',
  'phone',
  'none',
  'call',
  'went',
  'know',
  'leav',
  'ava',
  'alon',
  'also',
  'want',
  'cancel',
  'plansther',
  'famili',
  'member',
  'live',
  'near',
  'me-',
  'howev',
  'friend',
  'jade',
  'live',
  'near',
  'good',
  'kid',
  'babi',
  'sit',
  'side',
  'hustl',
  'call',
  'explain',
  'situat',
  'even',
  'offer',
  'pay',
  'look',
  'ava',
  'understand',
  'said',
  'shed',
  'free',
  'thank',
  'profus',
  'drop',
  'ava',
  'text',
  'sister',
  'say',
  'id',
  'left',
  'ava',
  'jade',
  'collect',
  'hous',
  'relev',
  'stori',
  'neither',
  'sister',
  'ava',
  'know',
  'jade',
  'person',
  'sister',
  'respond',
  'immedi',
  'hour',
  'start',
  'spam',
  'phone',
  'turn',
  'phone',
  'alreadi',
  'point',
  'anyway',
  'pick',
  'ava',
  'later',
  'even',
  'perfectli',
  'happi',
  'howev',
  'sister',
  'bil',
  'furiou',
  'dump',
  'ava',
  'stranger',
  'even',
  'though',
  'know',
  'jade',
  'trust',
  'friend',
  'mine',
  'accus',
  'endang',
  'niec',
  'mani',
  'famili',
  'member',
  'side',
  'ive',
  'get',
  'angri',
  'text',
  'weekend',
  'realli',
  'know',
  'think',
  'felt',
  'like',
  'act',
  'best',
  'could',
  'given',
  'circumst',
  'aita'],
 ['oldest',
  'famili',
  'two',
  'sibl',
  'sister',
  'die',
  'month',
  'old',
  'sid',
  'death',
  'time',
  'brother',
  'young',
  'age',
  'brother',
  'show',
  'concern',
  'behavior',
  'year',
  'got',
  'wors',
  'destruct',
  'angri',
  'local',
  'children',
  'hospit',
  'psych',
  'eval',
  'behavior',
  'assess',
  'sinc',
  'year',
  'old',
  'polic',
  'call',
  'hous',
  'mani',
  'time',
  'help',
  'get',
  'control',
  'never',
  'formal',
  'diagnos',
  'medic',
  'time',
  'sedat',
  'tri',
  'curb',
  'outburst',
  'life',
  'hold',
  'allow',
  'friend',
  'allow',
  'attend',
  'birthday',
  'parti',
  'old',
  'enough',
  'walk',
  'money',
  'tight',
  'meant',
  'sacrif',
  'lot',
  'last',
  'celebr',
  'birthday',
  'famili',
  'hit',
  'noth',
  'consid',
  'old',
  'enough',
  'someth',
  'friend',
  'without',
  'adult',
  'supervis',
  'even',
  'ask',
  'gift',
  'anyth',
  'broken',
  'brother',
  'nightmar',
  'parent',
  'would',
  'often',
  'leav',
  'charg',
  'could',
  'get',
  'break',
  'life',
  'hell',
  'around',
  'consid',
  'old',
  'enough',
  'watch',
  'mom',
  'got',
  'groceri',
  'even',
  'though',
  'old',
  'enough',
  'go',
  'hang',
  'friend',
  'hour',
  'night',
  'time',
  'even',
  'overnight',
  'prepar',
  'hous',
  'destroy',
  'everi',
  'time',
  'parent',
  'would',
  'express',
  'disappoint',
  'handl',
  'thing',
  'best',
  'period',
  'time',
  'place',
  'residenti',
  'treatment',
  'whole',
  'month',
  'far',
  'best',
  'month',
  'life',
  'year',
  'point',
  'hard',
  'return',
  'better',
  'left',
  'felt',
  'like',
  'life',
  'end',
  'move',
  'soon',
  'could',
  'distanc',
  'famili',
  'parent',
  'tri',
  'keep',
  'touch',
  'bitter',
  'toward',
  'childhood',
  'awar',
  'made',
  'excus',
  'made',
  'certain',
  'decis',
  'need',
  'help',
  'brother',
  'gotten',
  'wors',
  'kind',
  'break',
  'month',
  'want',
  'babysit',
  'hour',
  'night',
  'get',
  'break',
  'told',
  'told',
  'need',
  'help',
  'told',
  'would',
  'never',
  'help',
  'told',
  'unfair',
  'ask',
  'could',
  'aita'],
 ['labor',
  'hour',
  'alot',
  'pain',
  'take',
  'epidur',
  'husband',
  'constantli',
  'phone',
  'ether',
  'play',
  'game',
  'talk',
  'bro',
  'realli',
  'loud',
  'ask',
  'pleas',
  'hang',
  'hed',
  'hang',
  'phone',
  'like',
  'min',
  'later',
  'call',
  'back',
  'realli',
  'want',
  'talk',
  'friend',
  'went',
  'boy',
  'trip',
  'without',
  'ask',
  'stay',
  'back',
  'could',
  'went',
  'labor',
  'call',
  'tell',
  'trip',
  'go',
  'apolog',
  'blame',
  'nag',
  'realli',
  'annoy',
  'told',
  'want',
  'talk',
  'friend',
  'could',
  'elsewher',
  'pain',
  'peac',
  'like',
  'alright',
  'fine',
  'babi',
  'ill',
  'call',
  'back',
  'later',
  'min',
  'peac',
  'mom',
  'facetim',
  'proceed',
  'put',
  'video',
  'callhi',
  'mom',
  'make',
  'comment',
  'rememb',
  'labor',
  'still',
  'even',
  'claim',
  'look',
  'good',
  'doctor',
  'even',
  'flirt',
  'hold',
  'back',
  'everyth',
  'insid',
  'say',
  'someth',
  'want',
  'disrespect',
  'mother',
  'law',
  'time',
  'sometim',
  'make',
  'stupidest',
  'comment',
  'worst',
  'time',
  'moment',
  'could',
  'stand',
  'talk',
  'nurs',
  'end',
  'come',
  'could',
  'tell',
  'upset',
  'ask',
  'everyth',
  'alright',
  'tell',
  'realli',
  'want',
  'alon',
  'end',
  'kick',
  'husband',
  'turn',
  'end',
  'miss',
  'birth',
  'first',
  'born',
  'daughter',
  'left',
  'hospit',
  'piss',
  'got',
  'nurs',
  'kick',
  'room',
  'refus',
  'come',
  'see',
  'daughter',
  'afterward',
  'angri',
  'kick',
  'mother',
  'law',
  'visit',
  'hospit',
  'stop',
  'take',
  'im',
  'bad',
  'wife',
  'remov',
  'husband',
  'room',
  'got',
  'home',
  'kept',
  'bring',
  'ruin',
  'moment',
  'bond',
  'daughter',
  'could',
  'never',
  'forgiv',
  'asshol',
  'kick',
  'husband',
  'deliveri',
  'room',
  'make',
  'phone',
  'call'],
 ['known',
  'sil',
  'three',
  'year',
  'type',
  'person',
  'alway',
  'need',
  'right',
  'need',
  'charg',
  'everyth',
  'demand',
  'well',
  'sil',
  'famili',
  'member',
  'disrespect',
  'rude',
  'clean',
  'expect',
  'everyon',
  'act',
  'like',
  'maid',
  'servant',
  'around',
  'think',
  'highli',
  'never',
  'wrong',
  'think',
  'wrong',
  'sil',
  'famili',
  'realli',
  'punish',
  'kid',
  'like',
  'consequ',
  'even',
  'like',
  'gentl',
  'parent',
  'type',
  'either',
  'sil',
  'sister',
  'son',
  'extrem',
  'chaotic',
  'throw',
  'tantrum',
  'get',
  'someth',
  'center',
  'attent',
  'theyr',
  'birthday',
  'need',
  'gift',
  'open',
  'gift',
  'need',
  'blow',
  'candl',
  'frustrat',
  'im',
  'usual',
  'around',
  'famili',
  'gather',
  'stuff',
  'sil',
  'sinc',
  'friend',
  'cancel',
  'help',
  'make',
  'invit',
  'saw',
  'one',
  'name',
  'sil',
  'nephew',
  'ask',
  'want',
  'go',
  'said',
  'yeah',
  'ask',
  'told',
  'talk',
  'tantrum',
  'hell',
  'probabl',
  'throw',
  'fit',
  'recept',
  'stuff',
  'got',
  'mad',
  'said',
  'know',
  'talk',
  'told',
  'famili',
  'sister',
  'caus',
  'sister',
  'write',
  'messag',
  'say',
  'wrong',
  'stuff',
  'like',
  'well',
  'day',
  'wed',
  'come',
  'everyon',
  'come',
  'happi',
  'except',
  'nephew',
  'cri',
  'throw',
  'fit',
  'sil',
  'came',
  'liter',
  'start',
  'scream',
  'poor',
  'pastor',
  'stop',
  'wait',
  'parent',
  'leav',
  'parti',
  'back',
  'cri',
  'cut',
  'cake',
  'scream',
  'extrem',
  'loud',
  'push',
  'sil',
  'hold',
  'glass',
  'wine',
  'spill',
  'start',
  'cri',
  'turn',
  'around',
  'leav',
  'look',
  'said',
  'told',
  'start',
  'cri',
  'even',
  'got',
  'home',
  'mom',
  'call',
  'extrem',
  'immatur',
  'want',
  'apolog',
  'aita',
  'edit',
  'went',
  'facebook',
  'saw',
  'long',
  'post',
  'sil',
  'sister',
  'basic',
  'say',
  'sil',
  'knew',
  'nephew',
  'want',
  'throw',
  'tantrum',
  'never',
  'invit',
  'also',
  'call',
  'sil',
  'selfish',
  'say',
  'offer',
  'nephew',
  'cut',
  'cake',
  'sil',
  'famili',
  'also',
  'agre',
  'call',
  'sil',
  'selfish',
  'went',
  'sil',
  'hous',
  'bottl',
  'wine',
  'told',
  'right',
  'never',
  'invit',
  'still',
  'apolog',
  'though',
  'kick',
  'ive',
  'offer',
  'pay',
  'get',
  'wed',
  'dress',
  'clean',
  'said',
  'fine'],
 ['aita',
  'call',
  'husband',
  'without',
  'fail',
  'everi',
  'time',
  'husband',
  'wake',
  'middl',
  'night',
  'wake',
  'fulli',
  'ask',
  'time',
  'us',
  'sleep',
  'cellphon',
  'charg',
  'next',
  'bed',
  'easi',
  'reach',
  'check',
  'time',
  'phone',
  'wake',
  'ask',
  'husband',
  'say',
  'im',
  'ah',
  'im',
  'make',
  'big',
  'deal',
  'noth',
  'say',
  'wake',
  'someth',
  'meaningless',
  'less',
  'effort',
  'expend',
  'ask',
  'show',
  'complet',
  'disregard',
  'realli',
  'selfish',
  'know',
  'go',
  'say',
  'im',
  'make',
  'huge',
  'deal',
  'noth',
  'like',
  'sometim',
  'thing',
  'often',
  'sever',
  'time',
  'week',
  'alway',
  'take',
  'forev',
  'fall',
  'back',
  'sleep',
  'work',
  'full',
  'time',
  'job',
  'infant',
  '%',
  'nighttim',
  'babi',
  'duti',
  'husband',
  'commut',
  'farther',
  'say',
  'make',
  'sens',
  'let',
  'sleep',
  'sinc',
  'door',
  'morn',
  'need',
  'clear',
  'im',
  'complain',
  'wake',
  'due',
  'babi',
  'need',
  'wake',
  'cri',
  'think',
  'husband',
  'even',
  'hear',
  'complaint',
  'strictli',
  'wake',
  'ask',
  'time',
  'feel',
  'like',
  'realli',
  'selfish',
  'sometim',
  'want',
  'sleep',
  'anyway…',
  'aita',
  'complain',
  'tell',
  'husband',
  'cut',
  'needlessli',
  'insensit',
  'need'],
 ['sister',
  'wealthi',
  'conserv',
  'parent',
  'long',
  'back-and-forth',
  'decid',
  'kick',
  'two',
  'day',
  'th',
  'birthday',
  'close',
  'one',
  'best',
  'friend',
  'parent',
  'gener',
  'took',
  'hous',
  'bronx',
  'month',
  'live',
  'friend',
  'mom',
  'becam',
  'mom',
  'dad',
  'becam',
  'dad',
  'friend',
  'famili',
  'would',
  'explain',
  'peopl',
  'would',
  'alway',
  'say',
  'theyr',
  'black',
  'famili',
  'black',
  'mom',
  'black',
  'dad',
  'etc',
  'say',
  'white',
  'famili',
  'take',
  'time',
  'figur',
  'thing',
  'eventu',
  'bio',
  'parent',
  'accept',
  'someth',
  'black',
  'famili',
  'support',
  'move',
  'back',
  'childhood',
  'home',
  'would',
  'alway',
  'call',
  'black',
  'mom',
  'dad',
  'would',
  'visit',
  'time',
  'time',
  'never',
  'stop',
  'famili',
  'next',
  'week',
  'im',
  'get',
  'marri',
  'wonder',
  'man',
  'biolog',
  'parent',
  'pay',
  'larg',
  'portion',
  'wed',
  'im',
  'insist',
  'black',
  'famili',
  'includ',
  'family-onli',
  'wed',
  'portrait',
  'bio',
  'parent',
  'say',
  'theyr',
  'realli',
  'famili',
  'plan',
  'back',
  'bio',
  'parent',
  'pay',
  'id',
  'like',
  'know',
  'asshol'],
 ['spent',
  'last',
  'night',
  'boyfriend',
  'famili',
  'wed',
  'gone',
  'dinner',
  'dad',
  'gon',
  'na',
  'drive',
  'boyfriend',
  'parent',
  'brother',
  'squeez',
  'dad',
  'car',
  'went',
  'restaur',
  'drink',
  'dad',
  'two',
  'sinc',
  'gon',
  'na',
  'drive',
  'way',
  'back',
  'dad',
  'start',
  'ask',
  'work',
  'self',
  'drive',
  'car',
  'yeah',
  'im',
  'system',
  'engin',
  'job',
  'hop',
  'hand',
  'autonomi',
  'compani',
  'start',
  'ask',
  'like',
  'tesla',
  'joke',
  'fine',
  'long',
  'one',
  'drive',
  'ask',
  'thought',
  'fsd',
  'hed',
  'bought',
  'ask',
  'turn',
  'said',
  'car',
  'laugh',
  'ask',
  'still',
  'scare',
  'work',
  'stuff',
  'everyday',
  'like',
  'uhh',
  'stop',
  'pull',
  'liter',
  'start',
  'turn',
  'like',
  'im',
  'kid',
  'let',
  'car',
  'gon',
  'na',
  'boyfriend',
  'dad',
  'brother',
  'start',
  'laugh',
  'boyfriend',
  'still',
  'say',
  'anyth',
  'dad',
  'like',
  'itll',
  'fine',
  'reach',
  'boyfriend',
  'littl',
  'brother',
  'tri',
  'door',
  'handl',
  'lock',
  'get',
  'mad',
  'probabl',
  'moreso',
  'tipsi',
  'yell',
  'let',
  'fuck',
  'boyfriend',
  'start',
  'tri',
  'tell',
  'calm',
  'drunk',
  'told',
  'fuck',
  'matter',
  'id',
  'outta',
  'sober',
  'drunk',
  'told',
  'stop',
  'cuss',
  'front',
  'littl',
  'brother',
  'told',
  'tell',
  'dad',
  'cut',
  'shit',
  'anyth',
  'cuss',
  'dad',
  'like',
  'fine',
  'realiz',
  'itd',
  'suuuch',
  'big',
  'deal',
  'drove',
  'home',
  'normal',
  'thing',
  'tens',
  'hell',
  'got',
  'back',
  'hous',
  'mad',
  'overreact',
  'first',
  'time',
  'met',
  'famili',
  'togeth',
  'got',
  'angri',
  'like',
  'im',
  'one',
  'decid',
  'one',
  'thing',
  'said',
  'im',
  'comfort',
  'car',
  'ask',
  'laugh',
  'said',
  'dad',
  'use',
  'car',
  'lot',
  'fine',
  'ask',
  'sinc',
  'rock',
  'climber',
  'would',
  'ever',
  'get',
  'rout',
  'carbain',
  'lock',
  'someon',
  'say',
  'time',
  'fine',
  'like',
  'absolut',
  'differ',
  'like',
  'liter',
  'like',
  'know',
  'climber',
  'whod',
  'shit',
  'nobodi',
  'field',
  'know',
  'would',
  'stay',
  'car',
  'got',
  'mad',
  'told',
  'go',
  'sleep',
  'drunk',
  'honestli',
  'today',
  'woke',
  'sober',
  'stand',
  'like',
  'comfort',
  'happen',
  'boyfriend',
  'famili',
  'laugh',
  'start',
  'tri',
  'one',
  'fuck',
  'thing',
  'said',
  'like',
  'whatev',
  'thing',
  'fuck',
  'aita',
  'yell',
  'boyfriend',
  'dad',
  'let',
  'car',
  'edit',
  '-',
  'im',
  'tri',
  'get',
  'fight',
  'favorit',
  'billionair',
  'take',
  'somewher',
  'els',
  'want',
  'fanboy',
  'argument',
  'tho',
  'record',
  'answer',
  'none'],
 ['wife',
  'expect',
  'first',
  'babi',
  'togeth',
  'made',
  'appoint',
  'find',
  'gender',
  'babi',
  'import',
  'hope',
  'boy',
  'unfortun',
  'day',
  'dr',
  'appoint',
  'attend',
  'friend',
  'birthday',
  'rememb',
  'last',
  'minut',
  'ask',
  'wife',
  'could',
  'cancel',
  'appoint',
  'go',
  'anoth',
  'day',
  'look',
  'shock',
  'even',
  'consid',
  'cancel',
  'appoint',
  'go',
  'friend',
  'birthday',
  'said',
  'choic',
  'said',
  'cancel',
  'dr',
  'appoint',
  'tabl',
  'appoint',
  'restrict',
  'specif',
  'time',
  'date',
  'cant',
  'miss',
  'shell',
  'go',
  'alon',
  'told',
  'thatd',
  'selfish',
  'besid',
  'ruin',
  'news',
  'find',
  'babi',
  'boy',
  'girl',
  'cut',
  'discuss',
  'told',
  'go',
  'birthday',
  'parti',
  'later',
  'found',
  'cancel',
  'dr',
  'appoint',
  'went',
  'mom',
  'came',
  'home',
  'seeth',
  'blew',
  'start',
  'argu',
  'go',
  'behind',
  'back',
  'without',
  'said',
  'fault',
  'priorit',
  'parti',
  'child',
  'told',
  'priorit',
  'anyth',
  'liter',
  'couldv',
  'cancel',
  'wouldv',
  'went',
  'anoth',
  'day',
  'clearli',
  'tri',
  'steer',
  'fight',
  'direct',
  'look',
  'like',
  'neglect',
  'irrespons',
  'one',
  'fought',
  'said',
  'im',
  'probabl',
  'angri',
  'girl',
  'respond',
  'wrong',
  'went',
  'outsid',
  'room',
  'claim',
  'stress',
  'act',
  'like',
  'owe',
  'apolog',
  'top',
  'everyth',
  'els',
  'feel',
  'upset',
  'like',
  'deciev',
  'aita',
  'info',
  'first',
  'jesu',
  'swear',
  'came',
  'think',
  'somewhat',
  'justifi',
  'frustrat',
  'wrong',
  'seem',
  'although',
  'wan',
  'na',
  'point',
  'go',
  'parti',
  'without',
  'tell',
  'wife',
  'discuss',
  'first',
  'also',
  'friend',
  'live',
  'hour',
  'away',
  'leav',
  'appoit',
  'know',
  'went',
  'wouldv',
  'appreci',
  'least',
  'upfront',
  'couldv',
  'said',
  'go',
  'anyway',
  'instead',
  'told',
  'go',
  'parti',
  'think',
  'go',
  'cancel',
  'reschedul',
  'edit',
  'specul',
  'type',
  'parent',
  'amwil',
  'realli',
  'know',
  'enough',
  'make',
  'assumpt',
  'id',
  'appreci',
  'focu',
  'conflict',
  'present'],
 ['cant',
  'believ',
  'im',
  'post',
  'made',
  'whole',
  'new',
  'account',
  'peopl',
  'life',
  'tie',
  'main',
  'one',
  'visibl',
  'muslim',
  'wear',
  'hijab',
  'care',
  'opinion',
  'im',
  'regard',
  'religion',
  'keep',
  'thought',
  'also',
  'live',
  'south',
  'usa',
  'thank',
  'specif',
  'citi',
  'live',
  'larg',
  'metropolitan',
  'one',
  'incred',
  'divers',
  'rare',
  'run',
  'issu',
  'howev',
  'friend',
  'let',
  'call',
  'salli',
  'marri',
  'man',
  'famili',
  'conserv',
  'american',
  'care',
  'less',
  'someon',
  'polit',
  'view',
  'unless',
  'start',
  'tri',
  'talk',
  'shove',
  'throat',
  'opinion',
  'invit',
  'debat',
  'prepar',
  'hear',
  'opinion',
  'sinc',
  'gave',
  'unsolicit',
  'time',
  'could',
  'neg',
  'affect',
  'someon',
  'els',
  'week',
  'ago',
  'went',
  'salli',
  'engag',
  'parti',
  'law',
  'loudli',
  'talk',
  'polit',
  'polit',
  'quit',
  'agre',
  'talk',
  'even',
  'go',
  'caus',
  'drama',
  'fight',
  'friend',
  'engag',
  'parti',
  'howev',
  'parti',
  'spent',
  'time',
  'hang',
  'friend',
  'salli',
  'law',
  'kept',
  'look',
  'oddli',
  'side',
  'eye',
  'tri',
  'take',
  'heart',
  'ignor',
  'next',
  'day',
  'salli',
  'call',
  'thank',
  'come',
  'point',
  'call',
  'seem',
  'nervou',
  'say',
  'someth',
  'ask',
  'spit',
  'admit',
  'made',
  'law',
  'uncomfort',
  'though',
  'freeli',
  'talk',
  'someon',
  'like',
  'around',
  'say',
  'sorri',
  'law',
  'seem',
  'like',
  'blatant',
  'racist',
  'like',
  'im',
  'one',
  'marri',
  'like',
  'hope',
  'great',
  'wed',
  'come',
  'salli',
  'expect',
  'help',
  'wed',
  'freelanc',
  'make',
  'artist',
  'ask',
  'take',
  'hijab',
  'wed',
  'makeup',
  'scare',
  'law',
  'may',
  'asshol',
  'tell',
  'way',
  'fuck',
  'hell',
  'would',
  'ever',
  'chang',
  'compromis',
  'religion',
  'bunch',
  'stranger',
  'step',
  'foot',
  'near',
  'id',
  'hate',
  'scare',
  'mad',
  'offend',
  'futur',
  'famili',
  'friend',
  'say',
  'suggest',
  'wildli',
  'inappropri',
  'promis',
  'makeup',
  'free',
  'wed',
  'month',
  'away',
  'left',
  'tough',
  'posit',
  'aita',
  'aww',
  'first',
  'award',
  'thank',
  'guy',
  '🥰🥰',
  'edit',
  'thank',
  'everyon',
  'amaz',
  'comment',
  'insight',
  'love',
  'read',
  'everi',
  'one',
  'kind',
  'thing',
  'say',
  'even',
  'disagre',
  'word',
  'thought',
  'slightli',
  'rude',
  'thank',
  'comment',
  'point',
  'someon',
  'said',
  'care',
  'opinion',
  'certainli',
  'get',
  'lot',
  'comment',
  'bla',
  'bla',
  'bla',
  'meant',
  'care',
  'bigot',
  'opinion',
  'critic',
  'religion',
  'absolut',
  'reason',
  'someon',
  'comment',
  'ta',
  'gave',
  'reason',
  'muslim',
  'suck',
  'oppress',
  'subjug',
  'men',
  'genuin',
  'read',
  'appreci',
  'feedback',
  'think',
  'post',
  'fake',
  'racism',
  'exist',
  'anymore…',
  'bro',
  'wish',
  'deal',
  'million',
  'african',
  'american',
  'poc',
  'across',
  'world',
  'undoubtedli',
  'million',
  'time',
  'wors',
  'minim',
  'experi',
  'fortun',
  'never',
  'experienc',
  'racism',
  'xenophobia',
  'first',
  'hand',
  'thank',
  'everyon',
  'appreci',
  'yall',
  'much'],
 ['im',
  'turn',
  'less',
  'month',
  'parent',
  'talk',
  'throw',
  'parti',
  'friend',
  'famili',
  'celebr',
  'let',
  'get',
  'excit',
  'start',
  'feel',
  'dumb',
  'part',
  'see',
  'littl',
  'sister',
  'ava',
  'babi',
  'parent',
  'tri',
  'year',
  'born',
  'struggl',
  'born',
  'prematur',
  'almost',
  'die',
  'meant',
  'parent',
  'put',
  'lot',
  'time',
  'littl',
  'meant',
  'lot',
  'time',
  'world',
  'revolv',
  'around',
  'back',
  'would',
  'hear',
  'peopl',
  'say',
  'littl',
  'older',
  'thing',
  'would',
  'return',
  'normal',
  'never',
  'realli',
  'parent',
  'priorit',
  'ava',
  'know',
  'lot',
  'younger',
  'make',
  'sens',
  'time',
  'exampl',
  'two',
  'year',
  'ago',
  'christma',
  'realli',
  'want',
  'ps',
  'made',
  'deal',
  'parent',
  'save',
  'amount',
  'money',
  'would',
  'pay',
  'rest',
  'gift',
  'drop',
  'came',
  'close',
  'us',
  'money',
  'mom',
  'told',
  'ava',
  'need',
  'haircut',
  'want',
  'pamper',
  'littl',
  'shed',
  'development',
  'pediatrician',
  'hate',
  'money',
  'would',
  'gotten',
  'ps',
  'went',
  'never',
  'got',
  'ps',
  'instead',
  'got',
  'cloth',
  'food',
  'stuff',
  'christma',
  'food',
  'share',
  'item',
  'get',
  'even',
  'favorit',
  'high',
  'school',
  'award',
  'ceremoni',
  'may',
  'celebr',
  'student',
  'help',
  'make',
  'school',
  'better',
  'given',
  'one',
  'help',
  'school',
  'act',
  'mentor',
  'sort',
  'ava',
  'school',
  'play',
  'day',
  'parent',
  'chose',
  'go',
  'school',
  'play',
  'instead',
  'award',
  'ceremoni',
  'even',
  'rememb',
  'ask',
  'got',
  'home',
  'birthday',
  'alway',
  'aim',
  'someth',
  'ava',
  'enjoy',
  'chuck',
  'chees',
  'bring',
  'friend',
  'hire',
  'bounc',
  'hous',
  'famili',
  'come',
  'alway',
  'smaller',
  'one',
  'mean',
  'get',
  'enjoy',
  'younger',
  'kid',
  'small',
  'bounc',
  'hous',
  'spotlight',
  'alway',
  'goe',
  'least',
  'blown',
  'birthday',
  'candl',
  'sinc',
  'year',
  'realli',
  'thought',
  'would',
  'differ',
  'plan',
  'sound',
  'realli',
  'fun',
  'parent',
  'found',
  'ava',
  'bulli',
  'school',
  'rough',
  'time',
  'told',
  'look',
  'forward',
  'anyth',
  'includ',
  'parti',
  'thought',
  'would',
  'nice',
  'someth',
  'could',
  'enjoy',
  'give',
  'spotlight',
  'day',
  'assur',
  'love',
  'want',
  'told',
  'birthday',
  'thought',
  'want',
  'enjoy',
  'told',
  'ava',
  'need',
  'big',
  'brother',
  'think',
  'make',
  'feel',
  'special',
  'told',
  'deserv',
  'feel',
  'way',
  'told',
  'go',
  'done',
  'told',
  'everyth',
  'need',
  'ava',
  'might',
  'whole',
  'world',
  'might',
  'whole',
  'focu',
  'life',
  'mine',
  'parent',
  'got',
  'mad',
  'aita'],
 ['fianc',
  'come',
  'well',
  'famili',
  'come',
  'work',
  'class',
  'famili',
  'fianc',
  'famili',
  'nice',
  'cant',
  'help',
  'throw',
  'comment',
  'might',
  'gold',
  'digger',
  'exampl',
  'buy',
  'someth',
  'theyll',
  'go',
  'oh',
  'jason',
  'bought',
  'know',
  'look',
  'like',
  'right',
  'andor',
  'wait',
  'jason',
  'paid',
  'gold',
  'digger',
  'make',
  'partner',
  'pay',
  'stuff',
  'time',
  '*',
  'sayin',
  '*',
  'demean',
  'fianc',
  'noth',
  'stop',
  'especi',
  'bad',
  'place',
  'life',
  'lost',
  'job',
  'sinc',
  'keep',
  'secret',
  'im',
  'one',
  'pay',
  'everyth',
  'go',
  'month',
  'last',
  'week',
  'parent',
  'invit',
  'us',
  'dinner',
  'insist',
  'go',
  'went',
  'dinner',
  'tabl',
  'mom',
  'grab',
  'hand',
  'liter',
  'eat',
  'look',
  'bracelet',
  'went',
  'oh',
  'bracelet',
  'look',
  'realli',
  'nice',
  'jason',
  'pay',
  'nod',
  'remind',
  'bought',
  'birthday',
  'gift',
  'last',
  'year',
  'like',
  'hmmmm',
  'wonder',
  'much',
  'cost',
  'lean',
  'back',
  'said',
  'know',
  'rememb',
  'brother',
  'date',
  'gold',
  'digger',
  'womansh',
  'reciev',
  'expens',
  'stuff',
  'like',
  'point',
  'bracelet',
  'bracelet',
  'birthday',
  'stun',
  'cut',
  'ask',
  'meant',
  'say',
  'gold',
  'digger',
  'threw',
  'hand',
  'went',
  'meanif',
  'shoe',
  'fit',
  'laugh',
  'awkwardli',
  'silenc',
  'took',
  'look',
  'fianc',
  'shook',
  'head',
  'like',
  'snap',
  'told',
  'bold',
  'impli',
  'gold',
  'digger',
  'im',
  'liter',
  'provid',
  'unemploy',
  'son',
  'month',
  'look',
  'shock',
  'glanc',
  'shock',
  'dad',
  'ask',
  'true',
  'fianc',
  'froze',
  'look',
  'angri',
  'argument',
  'ensu',
  'dinner',
  'cut',
  'short',
  'leav',
  'start',
  'berat',
  'rage',
  'fit',
  'car',
  'yell',
  'lash',
  'defens',
  'said',
  'sat',
  'let',
  'mom',
  'continuelli',
  'impli',
  'gold',
  'digger',
  'said',
  'never',
  'outright',
  'call',
  'gold',
  'digger',
  'head',
  'said',
  'still',
  'right',
  'take',
  'advantag',
  'unfortun',
  'circumst',
  'get',
  'back',
  'mom',
  'expos',
  'famili',
  'parent',
  'went',
  'disappoint',
  'result',
  'got',
  'disinvit',
  'thanksgiv',
  'blew',
  'morn',
  'kept',
  'say',
  'screw',
  'badli',
  'innoc',
  'bystand'],
 ['love',
  'bake',
  'love',
  'share',
  'bake',
  'good',
  'gener',
  'get',
  'along',
  'everyon',
  'els',
  'offic',
  'except',
  'one',
  'guy',
  'call',
  'leo',
  'real',
  'name',
  'good',
  'term',
  'event',
  'happen',
  'year',
  'ago',
  'first',
  'join',
  'compani',
  'year',
  'ago',
  'fresh',
  'graduat',
  'leo',
  'complain',
  'lazi',
  'hate',
  'clean',
  'mistak',
  'made',
  'vomit',
  'blood',
  'ask',
  'mentor',
  'help',
  'gener',
  'report',
  'way',
  'expect',
  'want',
  'instead',
  'ask',
  'look',
  'report',
  'follow',
  'style',
  'fortun',
  'redeploy',
  'anoth',
  'role',
  'depart',
  'better',
  'mentor',
  'talk',
  'sinc',
  'birthday',
  'fell',
  'sunday',
  'decid',
  'bake',
  'cupcak',
  'everyon',
  'offic',
  'form',
  'celebr',
  'given',
  'friday',
  'week',
  'consid',
  'bake',
  'one',
  'decid',
  'tri',
  'share',
  'food',
  'reject',
  'believ',
  'even',
  'made',
  'cupcak',
  'would',
  'turn',
  'way',
  'way',
  'make',
  'loss',
  'face',
  'front',
  'everyon',
  'offic',
  'practic',
  'reason',
  'decid',
  'make',
  'cupcak',
  'hole',
  'cupcak',
  'tray',
  'would',
  'round',
  'bake',
  'peopl',
  'offic',
  'exclud',
  'friday',
  'came',
  'offic',
  'box',
  'cupcak',
  'took',
  'whole',
  'night',
  'bake',
  'also',
  'woke',
  'earli',
  'put',
  'frost',
  'right',
  'lunch',
  'went',
  'tabl',
  'tabl',
  'offer',
  'colleagu',
  'cupcak',
  'everyon',
  'appreci',
  'reach',
  'leo',
  'tabl',
  'tri',
  'offer',
  'expect',
  'said',
  'manner',
  'find',
  'pretti',
  'respect',
  'distribut',
  'cupcak',
  'one',
  'colleagu',
  'came',
  'ask',
  'extra',
  'cupcak',
  'leo',
  'reject',
  'told',
  'colleagu',
  'actual',
  'bake',
  'enough',
  'offic',
  'exclud',
  'leo',
  'extra',
  'cupcak',
  'colleagu',
  'look',
  'shock',
  'told',
  'bake',
  'cupcak',
  'come',
  'cheap',
  'sinc',
  'leo',
  'go',
  'reject',
  'anyway',
  'bake',
  'also',
  'told',
  'limit',
  'oven',
  'simpli',
  'enough',
  'time',
  'three',
  'round',
  'bake',
  'turn',
  'end',
  'came',
  'back',
  'monday',
  'word',
  'appar',
  'spread',
  'everyon',
  'depart',
  'leo',
  'get',
  'cupcak',
  'left',
  'intent',
  'leo',
  'say',
  'anyth',
  'cupcak',
  'thing',
  'told',
  'colleagu',
  'realli',
  'upset',
  'realli',
  'love',
  'cupcak',
  'would',
  'came',
  'around',
  'left',
  'fridg',
  'leav',
  'alon',
  'get',
  'reddit',
  'asshol',
  'bake',
  'cupcak',
  'instead',
  'mean',
  'could',
  'one',
  'round',
  'oven',
  'one',
  'two',
  'cupcak',
  'would',
  'wast',
  'electr',
  'time'],
 ['okay',
  'said',
  'aw',
  'pleas',
  'hear',
  'wife',
  'two',
  'kid',
  'age',
  'neither',
  'plan',
  'happi',
  'yro',
  'cerebr',
  'palsi',
  'wheelchair',
  'dress',
  'talk',
  'bit',
  'hard',
  'understand',
  'first',
  'understand',
  'fine',
  'put',
  'littl',
  'effort',
  'great',
  'school',
  'great',
  'great',
  'kid',
  'brother',
  'wife',
  'cant',
  'kid',
  'lot',
  'ivf',
  'treatment',
  'success',
  'know',
  'devast',
  'especi',
  'sil',
  'mother',
  'hous',
  'dinner',
  'night',
  'brother',
  'sil',
  'tell',
  'us',
  'last',
  'unsuccess',
  'round',
  'ivf',
  'said',
  'might',
  'probabl',
  'tri',
  'said',
  'sorri',
  'must',
  'aw',
  'later',
  'even',
  'mom',
  'ask',
  'yro',
  'plan',
  'futur',
  'etc',
  'school',
  'go',
  'gf',
  'like',
  'girl',
  'etc',
  'typic',
  'grandma',
  'stuff',
  'lol',
  'sil',
  'said',
  'even',
  'date',
  'son',
  'hear',
  'look',
  'said',
  'said',
  'well',
  'hell',
  'care',
  'forev',
  'realli',
  'want',
  'bring',
  'woman',
  'ask',
  'stop',
  'brother',
  'said',
  'ask',
  'question',
  'point',
  'everyon',
  'heard',
  'us',
  'talk',
  'sil',
  'said',
  'wife',
  'mean',
  'offend',
  'slow',
  'child',
  'might',
  'much',
  'work',
  'without',
  'date',
  'stuff',
  'loudli',
  'repli',
  'son',
  'slow',
  'way',
  'line',
  'said',
  'relax',
  'pleas',
  'jeez',
  'thought',
  'patienc',
  'sinc',
  'rais',
  'retard',
  'child',
  'lost',
  'said',
  'know',
  'good',
  'thing',
  'cant',
  'children',
  'would',
  'terribl',
  'mother',
  'broke',
  'cri',
  'brother',
  'call',
  'ah'],
 ['im',
  'listen',
  'chemic',
  'romanc',
  'almost',
  'religi',
  'easili',
  'sinc',
  'like',
  'theyr',
  'play',
  'countri',
  'week',
  'time',
  'two',
  'ticket',
  'bought',
  'one',
  'one',
  'boyfriend',
  'concert',
  'realli',
  'import',
  'partial',
  'reschedul',
  'twice',
  'partial',
  'altern',
  'band',
  'member',
  'live',
  'long',
  'one',
  'may',
  'dead',
  'next',
  'opportun',
  'roll',
  'around',
  'youngest',
  'brother',
  'jack',
  'cerebr',
  'palsi',
  'wear',
  'afo',
  'splint',
  'theyr',
  'bulki',
  'wear',
  'certain',
  'type',
  'shoe',
  'type',
  'like',
  'quit',
  'expens',
  'mom',
  'ticket',
  'ed',
  'sheeran',
  'back',
  'holiday',
  'bit',
  'broke',
  'assum',
  'shed',
  'sell',
  '*',
  '*',
  'ticket',
  'talk',
  'sell',
  'ticket',
  'wrong',
  'sold',
  'mine',
  'like',
  'doubl',
  'price',
  'paid',
  'well',
  'theyr',
  'sold',
  'date',
  'go',
  'realli',
  'know',
  'ill',
  'ever',
  'get',
  'opportun',
  'im',
  'livid',
  'pack',
  'shit',
  'last',
  'night',
  'went',
  'boyfriend',
  'parent',
  'okay',
  'mom',
  'think',
  'im',
  'beyond',
  'unreason',
  'leav',
  'overreact',
  'im',
  'make',
  'look',
  'like',
  'bad',
  'mother',
  'etc',
  'etc',
  'even',
  'got',
  'older',
  'sister',
  'ring',
  'berat',
  'phone',
  'im',
  'start',
  'feel',
  'like',
  'asshol',
  'even',
  'though',
  'thought',
  'right',
  'begin',
  'aita',
  'edit',
  'bought',
  'ticket',
  'money',
  'earn',
  'sinc',
  'fact',
  'job',
  'leech',
  'mother'],
 ['*',
  '*',
  'edit',
  'titl',
  'meant',
  'ask',
  'aita',
  'give',
  'husband',
  'fake',
  'key',
  'demand',
  'drive',
  'car',
  'im',
  'sorri',
  'made',
  'error',
  'titl',
  'cant',
  'edit',
  '*',
  '*',
  'becam',
  'incom',
  'earner',
  'husband',
  'jeff',
  'lost',
  'job',
  'month',
  'ago',
  'car',
  'anymor',
  'sold',
  'abl',
  'pay',
  'debt',
  'start',
  'ask',
  'drive',
  'car',
  'excus',
  'want',
  'look',
  'job',
  'problem',
  'thisfirst',
  'im',
  'nurs',
  'work',
  'odd',
  'hour',
  'need',
  'car',
  'time',
  'liter',
  'take',
  'day',
  'come',
  'back',
  'late',
  'even',
  'second',
  'everi',
  'time',
  'come',
  'home',
  'car',
  'either',
  'bust',
  'taillight',
  'damag',
  'front',
  'flat',
  'tire',
  'etc',
  'etc',
  'etc',
  'far',
  'spend',
  'nearli',
  '$',
  'buck',
  'get',
  'back',
  'good',
  'shape',
  'told',
  'longer',
  'want',
  'take',
  'car',
  'said',
  'let',
  'drive',
  'could',
  'continu',
  'look',
  'job',
  'told',
  'could',
  'search',
  'onlin',
  'said',
  'someth',
  'scammer',
  'tri',
  'pose',
  'potenti',
  'employ',
  'get',
  'person',
  'info',
  'never',
  'happen',
  'us',
  'day',
  'ago',
  'went',
  'car',
  'end',
  'late',
  'shift',
  'call',
  'friend',
  'cover',
  'tri',
  'call',
  'return',
  'home',
  'midnight',
  'fight',
  'said',
  'friend',
  'time',
  'pass',
  'took',
  'key',
  'car',
  'put',
  'pillow',
  'went',
  'sleep',
  'next',
  'morn',
  'saw',
  'stand',
  'near',
  'bed',
  'want',
  'give',
  'car',
  'key',
  'could',
  'go',
  'look',
  'job',
  'said',
  'got',
  'mad',
  'start',
  'demand',
  'hand',
  'told',
  'fine',
  'point',
  'toward',
  'sock',
  'drawer',
  'lot',
  'junk',
  'told',
  'lie',
  'got',
  'old',
  'key',
  'look',
  'like',
  'walk',
  'lock',
  'door',
  'got',
  'bed',
  'minut',
  'later',
  'came',
  'back',
  'start',
  'pound',
  'door',
  'ask',
  'gave',
  'fake',
  'key',
  'said',
  'get',
  'backh',
  'start',
  'yell',
  'say',
  'childish',
  'demand',
  'open',
  'door',
  'give',
  'real',
  'key',
  'remain',
  'bed',
  'kept',
  'yell',
  'outsid',
  'say',
  'im',
  'give',
  'lot',
  'shit',
  'work',
  'yet',
  'let',
  '*',
  'effect',
  '*',
  'look',
  'job',
  'also',
  'said',
  'id',
  'test',
  'patienc',
  'sever',
  'time',
  'enough',
  'yell',
  'left',
  'infuri',
  'madden',
  'whole',
  'situat',
  'shift',
  'cover',
  'knew',
  'took',
  'car',
  'bring',
  'back',
  'time',
  'got',
  'work',
  'talk',
  'full',
  'sulk',
  'mode',
  'return',
  'kept',
  'rant',
  'unsupport',
  'childish',
  'pull',
  'stunt'],
 ['parent',
  'divorc',
  'year',
  'old',
  'contact',
  'father',
  'year',
  'made',
  'choic',
  'priorit',
  'new',
  'famili',
  'step-son',
  'eventu',
  'children',
  'new',
  'wife',
  'brother',
  'visit',
  'got',
  'remarri',
  'call',
  'ask',
  'go',
  'visit',
  'us',
  'would',
  'say',
  'busi',
  'divorc',
  'liter',
  'daddi',
  'littl',
  'girl',
  'belov',
  'golden',
  'child',
  'joke',
  'thought',
  'father',
  'best',
  'want',
  'marri',
  'man',
  'like',
  'grew',
  'fact',
  'drop',
  'brother',
  'caus',
  'deep',
  'seat',
  'wound',
  'deep',
  'heart',
  'never',
  'ever',
  'forgiv',
  'caus',
  'never',
  'paid',
  'child',
  'support',
  'mother',
  'support',
  'brother',
  'singl',
  'parent',
  'decid',
  'take',
  'court',
  'never',
  'want',
  'anyth',
  'parent',
  'custodi',
  'howev',
  'year',
  'long',
  'time',
  'thank',
  'mother',
  'love',
  'care',
  'us',
  'alreadi',
  'forgotten',
  'move',
  'life',
  'goe',
  'brother',
  'grown',
  'live',
  'comfort',
  'live',
  'take',
  'care',
  'mother',
  'love',
  'end',
  'stori',
  'morn',
  'ss',
  'contact',
  'via',
  'fb',
  'said',
  'want',
  'talk',
  'regard',
  'father',
  'confus',
  'first',
  'rememb',
  'ye',
  'someon',
  'like',
  'life',
  'told',
  'father',
  'medic',
  'condit',
  'treatment',
  'cost',
  'lot',
  'sent',
  'togeth',
  'screenshot',
  'medic',
  'report',
  'would',
  'nice',
  'could',
  'pay',
  'bill',
  'also',
  'father',
  'want',
  'speak',
  'brother',
  'told',
  'man',
  'lost',
  'right',
  'father',
  'decid',
  'contact',
  'us',
  'also',
  'father',
  'medic',
  'bill',
  'non',
  'concern',
  'children',
  'go',
  'around',
  'harrass',
  'random',
  'peopl',
  'money',
  'also',
  'year',
  'unpaid',
  'child',
  'support',
  'could',
  'use',
  'cover',
  'medic',
  'expens',
  'call',
  'veng',
  'heartless',
  'bitch',
  'repli',
  'smile',
  'emoji',
  'block',
  'ass',
  'talk',
  'mom',
  'said',
  'right',
  'angri',
  'still',
  'father',
  'unwel',
  'could',
  'help',
  'bit',
  'told',
  'way',
  'hell',
  'go',
  'pay',
  'bill',
  'children',
  'pay',
  'let',
  'settl',
  'made',
  'bed',
  'let',
  'sleep',
  'asshol',
  'edit',
  'mani',
  'peopl',
  'confus',
  'ss',
  'case',
  'step-son',
  'apolog',
  'confus',
  'edit',
  'anyon',
  'interest',
  'updat',
  'pleas',
  'go',
  'page',
  'post',
  'also',
  'would',
  'like',
  'thank',
  'wonder',
  'feedback',
  'neg',
  'posit'],
 ['share',
  'apart',
  'friend',
  'ive',
  'known',
  'year',
  'place',
  'year',
  'real',
  'issu',
  'get',
  'along',
  'well',
  'heap',
  'togeth',
  'work',
  'full',
  'time',
  'univers',
  'student',
  'split',
  'bill',
  'food',
  'rent',
  'middl',
  'hate',
  'idea',
  'share',
  'hous',
  'want',
  'feel',
  'like',
  'home',
  'month',
  'ago',
  'start',
  'see',
  'girl',
  'spend',
  'everi',
  'day',
  'night',
  'place',
  'also',
  'univers',
  'student',
  'hate',
  'studio',
  'apart',
  'recent',
  'issu',
  'never',
  'ask',
  'pay',
  'anyth',
  'eat',
  'meal',
  'place',
  'take',
  'food',
  'uni',
  'need',
  'way',
  'see',
  'housem',
  'buy',
  'bit',
  'food',
  'realli',
  'matter',
  'week',
  'got',
  'home',
  'uni',
  'went',
  'kitchen',
  'make',
  'coffe',
  'assign',
  'need',
  'work',
  'want',
  'pick',
  'open',
  'fridg',
  'notic',
  'redbul',
  'assum',
  'housem',
  'gotten',
  'us',
  'grab',
  'one',
  'drank',
  'next',
  'morn',
  'breakfast',
  'open',
  'fridg',
  'got',
  'super',
  'angri',
  'one',
  'redbul',
  'miss',
  'said',
  'thought',
  'housem',
  'gotten',
  'start',
  'tell',
  'bought',
  'ask',
  'need',
  'apologis',
  'take',
  'go',
  'tell',
  'fridg',
  'ask',
  'stuff',
  'want',
  'start',
  'conflict',
  'apologis',
  'demand',
  'replac',
  'sinc',
  'start',
  'label',
  'drink',
  'food',
  'bring',
  'make',
  'point',
  'say',
  'said',
  'housem',
  'want',
  'stay',
  'place',
  'unless',
  'go',
  'start',
  'pay',
  'rent',
  'pay',
  'bill',
  'pitch',
  'pay',
  'food',
  'want',
  'pay',
  'anymor',
  'abus',
  'take',
  'drink',
  'fridg',
  'aita',
  'updat',
  'address',
  'common',
  'thing',
  'iv',
  'read',
  'also',
  'thank',
  'nice',
  'see',
  'said',
  'ita',
  '🤣',
  'avoid',
  'say',
  'anyth',
  'time',
  'housem',
  'close',
  'brother',
  'want',
  'fight',
  'like',
  'make',
  'pick',
  'honestli',
  'know',
  'would',
  'dump',
  'ass',
  'stick',
  'housem',
  'great',
  'guy',
  'way',
  'think',
  'tri',
  'take',
  'advantag',
  'gf',
  'stay',
  'mate',
  'kept',
  'alway',
  'sometim',
  'peopl',
  'buy',
  'us',
  'food',
  'pitch',
  'thank',
  'never',
  'expect',
  'act',
  'famili',
  'hous',
  'rather',
  'housem',
  'never',
  'issu',
  'manipul',
  'side',
  'stori',
  'housem',
  'alway',
  'movi',
  'night',
  'week',
  'tradit',
  'love',
  'said',
  'want',
  'join',
  'us',
  'everi',
  'time',
  'around',
  'min',
  'wisper',
  'someth',
  'act',
  'certain',
  'way',
  'draw',
  'away',
  'bedroom',
  'honestli',
  'peev',
  'tad',
  'clearli',
  'tri',
  'assert',
  'domin',
  'also',
  'joke',
  'housem',
  'littl',
  'abl',
  'think',
  'bigger',
  'head',
  'littl',
  'one',
  'activ',
  'laugh',
  'comment',
  'call',
  'pushov',
  'see',
  'look',
  'like',
  'normal',
  'first',
  'stand',
  'react',
  'someth',
  'hate',
  'peopl',
  'rude',
  'situat',
  'issu',
  'desir',
  'caus',
  'issu',
  'less',
  'want',
  'conflict',
  'housem',
  'sinc',
  'talk',
  'need',
  'pay',
  'leav',
  'spent',
  'time',
  'place',
  'come',
  'round',
  'abil',
  'kill',
  'mood',
  'room',
  'want',
  'separ',
  'think',
  'cant',
  'see',
  'last',
  'eitherbut',
  'hot',
  'think',
  'wrong',
  'heada',
  'lot'],
 ['two',
  'son',
  'age',
  'ex',
  'broke',
  'number',
  'issu',
  'one',
  'emili',
  'woman',
  'work',
  'year',
  'two',
  'grew',
  'close',
  'alway',
  'tell',
  'ex',
  'deserv',
  'better',
  'tri',
  'steal',
  'famili',
  'away',
  'time',
  'even',
  'pretend',
  'wife',
  'work',
  'function',
  'ex',
  'would',
  'laugh',
  'well',
  'realli',
  'bad',
  'money',
  'stuff',
  'separ',
  'made',
  'thing',
  'offici',
  'emili',
  'came',
  'surpris',
  'emili',
  'even',
  'openli',
  'hostil',
  'realiz',
  'ex',
  'famili',
  'still',
  'like',
  'would',
  'still',
  'includ',
  'mention',
  'realiz',
  'boy',
  'super',
  'happi',
  'dad',
  'new',
  'girlfriend',
  'emili',
  'actual',
  'call',
  'ex',
  'mom',
  '\\',
  '*',
  'nt',
  'say',
  'best',
  'mom',
  'famili',
  'dinner',
  'ex',
  'got',
  'firm',
  'warn',
  'judg',
  'use',
  'emili',
  'exchang',
  'boy',
  'deal',
  'custodi',
  'issu',
  'confront',
  'number',
  'time',
  'exchang',
  'front',
  'children',
  'show',
  'hostil',
  'say',
  'thing',
  'could',
  'taken',
  'alien',
  'parent',
  'continu',
  'allow',
  'ex',
  'fine',
  'breach',
  'judg',
  'order',
  'told',
  'happen',
  'custodi',
  'would',
  'modifi',
  'recent',
  'increas',
  'anger',
  'toward',
  'emili',
  'unabl',
  'children',
  'want',
  'boy',
  'consid',
  'mom',
  'ask',
  'help',
  'said',
  'nope',
  'emili',
  'mother',
  'children',
  'go',
  'encourag',
  'consid',
  'one',
  'year',
  'verbal',
  'abus',
  'boy',
  'award',
  'night',
  'back',
  'start',
  'june',
  'school',
  'emili',
  'told',
  'boy',
  'get',
  'photo',
  'school',
  'newslett',
  'said',
  'told',
  'ask',
  'said',
  'mom',
  'say',
  'ex',
  'scold',
  'boy',
  'said',
  'noth',
  'ex',
  'emili',
  'said',
  'back',
  'allow',
  'disrespect',
  'told',
  'find',
  'said',
  'disrespect',
  'claim',
  'shitti',
  'parent',
  'let',
  'kid',
  'get',
  'away',
  'teach',
  'disrespect',
  'women',
  'etc',
  'find',
  'aita'],
 ['dad',
  'remarri',
  'year',
  'ago',
  'custodi',
  'sister',
  'full-sibl',
  'fri',
  'sun',
  'also',
  'two',
  'step-children',
  'visit',
  'dad',
  'weekend',
  'see',
  'sister',
  'dad',
  'best',
  'relationship',
  'love',
  'sister',
  'heart',
  'im',
  'best',
  'still',
  'around',
  'step-sist',
  'heavili',
  'obsess',
  'korean',
  'japanes',
  'cultur',
  'full',
  '-pop',
  'anim',
  'thing',
  'like',
  'noth',
  'wrong',
  'im',
  'bash',
  'sister',
  'like',
  'problem',
  'obsess',
  'caus',
  'eat',
  'asian',
  'food',
  'sinc',
  'mommi',
  'girl',
  'dad',
  'priorit',
  'new',
  'famili',
  'sister',
  'thing',
  'eat',
  'theyr',
  'asian',
  'sister',
  'told',
  'done',
  'miss',
  'hamburg',
  'pizza',
  'pasta',
  'etc',
  'cant',
  'eat',
  'dad',
  'mom',
  'rare',
  'mom',
  'cook',
  'thing',
  'everi',
  'week',
  'mom',
  'mexican',
  'cook',
  'mexican',
  'stuff',
  'dad',
  'order',
  'take',
  'almost',
  'everi',
  'weekend',
  'yeah',
  'mostli',
  'order',
  'sushi',
  'stuff',
  'like',
  'weekend',
  'turn',
  'pay',
  'step-sist',
  'step-mom',
  'talk',
  'korean',
  'restaur',
  'thing',
  'like',
  'look',
  'sister',
  'ask',
  'whatd',
  'want',
  'eat',
  'said',
  'crave',
  'hamburg',
  'week',
  'said',
  'done',
  'ill',
  'order',
  'step-sist',
  'said',
  'noo',
  'like',
  'eat',
  'shrug',
  'said',
  'could',
  'order',
  'someth',
  'els',
  'dad',
  'said',
  'eat',
  'thing',
  'sinc',
  'famili',
  'said',
  'okay',
  'burger',
  'went',
  'back',
  'forth',
  'end',
  'order',
  'burger',
  'sister',
  'dad',
  'step-mom',
  'sushi',
  'dad',
  'call',
  'ah',
  'make',
  'feel',
  'left',
  'ask',
  'whatd',
  'thought',
  'kid',
  'kick'],
 ['reason',
  'know',
  'liter',
  'caught',
  'room',
  'go',
  'thing',
  'freakin',
  'camera',
  'nephew',
  'habit',
  'steal',
  'thing',
  'theyv',
  'gotten',
  'troubl',
  'time',
  'store',
  'hed',
  'leav',
  'someth',
  'pocket',
  'ofc',
  'kid',
  'usual',
  'say',
  'forgot',
  'even',
  'school',
  'brother',
  'told',
  'come',
  'talk',
  'princip',
  'aim',
  'coupl',
  'occas',
  'seem',
  'like',
  'theyv',
  'done',
  'anyth',
  'stop',
  'come',
  'stay',
  'brother',
  'lost',
  'job',
  'gon',
  'na',
  'make',
  'bill',
  'includ',
  'rent',
  'uber',
  'rn',
  'search',
  'job',
  'move',
  'want',
  'nephew',
  'specif',
  'famili',
  'famili',
  'guess',
  'month',
  'ago',
  'final',
  'bought',
  'engag',
  'ring',
  'girlfriend',
  'plan',
  'propos',
  'soon',
  'know',
  '$',
  'ring',
  'spent',
  'year',
  'save',
  'hidden',
  'room',
  'one',
  'drawer',
  'one',
  'time',
  'found',
  'snoop',
  'room',
  'told',
  'brother',
  'control',
  'damm',
  'kid',
  'got',
  'one',
  'cheap',
  'spi',
  'cam',
  'room',
  'incas',
  'last',
  'week',
  'notic',
  'box',
  'check',
  'cam',
  'show',
  'home',
  'brother',
  'wife',
  'yell',
  'say',
  'left',
  'tv',
  'guest',
  'room',
  'look',
  'stuff',
  'know',
  'fact',
  'lie',
  'thing',
  'said',
  'one',
  'watch',
  'took',
  'end',
  'find',
  'second',
  'day',
  'brother',
  'tell',
  'cant',
  'find',
  'told',
  'either',
  'find',
  'ring',
  'repay',
  '$',
  'spent',
  'cant',
  'stay',
  'anymor',
  'brother',
  'got',
  'realli',
  'upset',
  'told',
  'know',
  'situat',
  'right',
  'yeah',
  'tough',
  'spot',
  'ignor',
  'fact',
  'kid',
  'cant',
  'parent',
  'took',
  'someth',
  'extrem',
  'import',
  'cost',
  'lot',
  'time',
  'money',
  'given',
  'week',
  'leav',
  'hous',
  'find',
  'ring',
  'theyr',
  'stay',
  'cheap',
  'motel',
  'brother',
  'stop',
  'beg',
  'come',
  'back',
  'theyr',
  'pay',
  'right',
  'night',
  'come',
  'directli',
  'save',
  'stop',
  'call',
  'heartless',
  'let',
  'someth',
  'like',
  'come',
  'help',
  'difficult',
  'time',
  'nephew',
  'keep',
  'say',
  'sorri',
  'hard',
  'right',
  'want',
  'around',
  'even',
  'know',
  'ring',
  'everi',
  'time',
  'think',
  'make',
  'mad',
  'hard',
  'care',
  'situat',
  'make',
  'asshol'],
 ['imagin',
  'im',
  'gon',
  'na',
  'get',
  'rake',
  'coal',
  'one',
  'fiancé',
  'mayb',
  'much',
  'longer',
  'way',
  'back',
  'vacat',
  'recent',
  'great',
  'time',
  'everyth',
  'went',
  'without',
  'issu',
  'start',
  'board',
  'plane',
  'know',
  'better',
  'bring',
  'small',
  'backpack',
  'essenti',
  'incas',
  'get',
  'check',
  'bag',
  'surviv',
  'backpack',
  'alway',
  'pass',
  'baggag',
  'check',
  'size',
  'weight',
  'done',
  'lot',
  'travel',
  'fight',
  'system',
  'fiancé',
  'wan',
  'na',
  'listen',
  'advic',
  'chose',
  'bring',
  'basic',
  'regular',
  'full-siz',
  'bag',
  'bare',
  'fit',
  'standard',
  'carri',
  'gener',
  'speak',
  'airlin',
  'worker',
  'wan',
  'na',
  'deal',
  'troubl',
  'allow',
  'time',
  'airlin',
  'worker',
  'pack',
  'flight',
  'board',
  'last',
  'economi',
  'shit',
  'show',
  'got',
  'fine',
  'first',
  'littl',
  'backpack',
  'could',
  'hear',
  'argument',
  'board',
  'tunnel',
  'thingi',
  'get',
  'heat',
  'go',
  'back',
  'tri',
  'smooth',
  'fiancé',
  'rush',
  'pass',
  'board',
  'plane',
  'assum',
  'heard',
  'super',
  'clearli',
  'attend',
  'given',
  'let',
  'case',
  'found',
  'seat',
  'settl',
  'pretti',
  'tire',
  'could',
  'tell',
  'upset',
  'kinda',
  'tuck',
  'window',
  'put',
  'hat',
  'tri',
  'take',
  'nap',
  'soon',
  'airlin',
  'worker',
  'cop',
  'show',
  'fuck',
  'around',
  'want',
  'plane',
  'tri',
  'plead',
  'cri',
  'etc',
  'mayb',
  'moment',
  'panic',
  'plain',
  'self',
  'preservationth',
  'cop',
  'ask',
  'togeth',
  'blurt',
  'shake',
  'head',
  'emphat',
  'got',
  'kill',
  'dagger',
  'eye',
  'shot',
  'grab',
  'bag',
  'follow',
  'cop',
  'also',
  'swear',
  'scream',
  'whole',
  'way',
  'obvious',
  'well',
  'event',
  'im',
  'post',
  'eventu',
  'get',
  'home',
  'caught',
  'next',
  'flight',
  'bag',
  'check',
  'lol',
  'pick',
  'obvious',
  'thought',
  'asshol',
  'honest',
  'almost',
  'everyon',
  'know',
  'think',
  'im',
  'asshol',
  'except',
  'boss',
  'co',
  'worker',
  'context',
  'much',
  'reli',
  'back',
  'time',
  'gave',
  'word',
  'would',
  'realli',
  'import',
  'project',
  'time',
  'sensit',
  'happi',
  'get',
  'thrown',
  'asshol',
  'self',
  'preserv',
  'aita'],
 ['start',
  'see',
  'guy',
  'roughli',
  'year',
  'half',
  'ago',
  'yo',
  'almost',
  'daughter',
  'name',
  'chrissi',
  'yo',
  'son',
  'well',
  'met',
  'kid',
  'month',
  'back',
  'last',
  'month',
  'start',
  'weekend',
  'visit',
  'super',
  'hard',
  'adjust',
  'especi',
  'kid',
  'get',
  'along',
  'part',
  'im',
  'realli',
  'hard',
  'time',
  'son',
  'alway',
  'fairli',
  'good',
  'kid',
  'hardli',
  'ever',
  'given',
  'issu',
  'never',
  'drew',
  'wall',
  'broke',
  'anyth',
  'import',
  'talk',
  'back',
  'asid',
  'occasion',
  'obvious',
  'kid',
  'perfect',
  'alway',
  'super',
  'quick',
  'ask',
  'permiss',
  'touch',
  'stuff',
  'person',
  'think',
  'luck',
  'knew',
  'kid',
  'well',
  'behav',
  'child',
  'readi',
  'think',
  'im',
  'overwhelm',
  'sinc',
  'weekend',
  'visit',
  'stay',
  'guest',
  'room',
  'destroy',
  'lot',
  'rip',
  'hole',
  'mattress',
  'say',
  'alreadi',
  'draw',
  'wall',
  'windowsil',
  'make',
  'marker',
  'even',
  'take',
  'new',
  'feminin',
  'pad',
  'room',
  'cut',
  'put',
  'hole',
  'wall',
  'said',
  'alreadi',
  'buy',
  'brand',
  'new',
  'thing',
  'shampoo',
  'condition',
  '%',
  'gone',
  'trash',
  'end',
  'shower',
  'last',
  'minut',
  'everi',
  'singl',
  'time',
  'stomp',
  'feet',
  'slam',
  'door',
  'speak',
  'knock',
  'thing',
  'wall',
  'gener',
  'good',
  'kid',
  'fuck',
  'destruct',
  'realli',
  'set',
  'come',
  'weekend',
  'dad',
  'son',
  'father',
  'call',
  'offic',
  'sign',
  'would',
  'take',
  'roughli',
  'hour',
  'max',
  'left',
  'without',
  'well',
  'got',
  'back',
  'sit',
  'kitchen',
  'tabl',
  'photo',
  'album',
  'lay',
  'front',
  'cut',
  'face',
  'everyth',
  'els',
  'photo',
  'glu',
  'scrapbook',
  'photo',
  'get',
  'back',
  'print',
  'year',
  'ago',
  'foster',
  'care',
  'copi',
  'photo',
  'dead',
  'friend',
  'well',
  'went',
  'bf',
  'phone',
  'outdoor',
  'told',
  'need',
  'leav',
  'explain',
  'situat',
  'told',
  'fuck',
  'done',
  'photo',
  'stupid',
  'may',
  'huge',
  'part',
  'childhood',
  'destroy',
  'told',
  'done',
  'speak',
  'daughter',
  'destroy',
  'shit',
  'time',
  'go',
  'think',
  'im',
  'ah',
  'throw',
  'year',
  'half',
  'drain',
  'pictur'],
 ['brother',
  'tyler',
  'parent',
  'got',
  'divorc',
  'extrem',
  'messi',
  'fought',
  'constantli',
  'courtroom',
  'favorit',
  'weapon',
  'tyler',
  'alreadi',
  'away',
  'colleg',
  'hour',
  'drive',
  'away',
  'dorm',
  'apart',
  'favorit',
  'place',
  'run',
  'away',
  'whenev',
  'get',
  'away',
  'divorc',
  'particularli',
  'close',
  'close',
  'brother',
  'couldv',
  'turn',
  'blind',
  'eye',
  'owe',
  'hell',
  'lot',
  'year',
  'sinc',
  'parent',
  'remarri',
  'sever',
  'step',
  'half',
  'sibl',
  'side',
  'never',
  'met',
  'younger',
  'anyth',
  'person',
  'tyler',
  'prefer',
  'keep',
  'distanc',
  'away',
  'drama',
  'parent',
  'howev',
  'still',
  'push',
  'us',
  'mostli',
  'buddi',
  'buddi',
  'new',
  'kid',
  'mayb',
  'still',
  'want',
  'use',
  'one-up',
  'tool',
  'like',
  'theyr',
  'race',
  'get',
  'us',
  'act',
  'big',
  'brother',
  'kid',
  'know',
  'sure',
  'know',
  'im',
  'interest',
  'anyth',
  'person',
  'im',
  'graduat',
  'colleg',
  'soon',
  'tyler',
  'want',
  'take',
  'coupl',
  'friend',
  'along',
  'cross-countri',
  'road',
  'trip',
  'celebr',
  'go',
  'old',
  'colleg',
  'got',
  'job',
  'citi',
  'graduat',
  'think',
  'possibl',
  'anyth',
  'like',
  'thing',
  'past',
  'two',
  'year',
  'im',
  'super',
  'excit',
  'weve',
  'prepar',
  'thing',
  'run',
  'problem',
  'later',
  'ive',
  'document',
  'thing',
  'mainli',
  'instagram',
  'stori',
  'realiz',
  'step',
  'sibl',
  'alreadi',
  'follow',
  'set',
  'account',
  'privat',
  'coupl',
  'year',
  'back',
  'word',
  'got',
  'around',
  'everyon',
  'start',
  'demand',
  'take',
  'step',
  'half',
  'us',
  'even',
  'chang',
  'trip',
  'make',
  'kid',
  'friendli',
  'kind',
  'absurd',
  'entitl',
  'admit',
  'lost',
  'temper',
  'fifth',
  'time',
  'call',
  'good',
  'brother',
  'mom',
  'oldest',
  'step',
  'daughter',
  'insist',
  'everyon',
  'yell',
  'one',
  'get',
  'call',
  'brother',
  'tyler',
  'rest',
  'dad',
  'spawn',
  'less',
  'stranger',
  'went',
  'well',
  'imagin',
  'tyler',
  'friend',
  'thought',
  'hilari',
  'long',
  'overdu',
  'everyon',
  'els',
  'think',
  'im',
  'asshol',
  'edit',
  'first',
  'holi',
  'shit',
  'thank',
  'judgement',
  'opinion',
  'stori',
  'advic',
  'itll',
  'take',
  'read',
  'eventu',
  'second',
  'id',
  'like',
  'give',
  'addit',
  'info',
  'base',
  'common',
  'questionsspecul',
  'ive',
  'seen',
  'far',
  'mom',
  'dad',
  'cheat',
  'remarri',
  'quickli',
  'within',
  'year',
  'post',
  'divorc',
  'say',
  'ive',
  'never',
  'seen',
  'new',
  'kid',
  'exagger',
  'tyler',
  'tho',
  'actual',
  'never',
  'even',
  'met',
  'beyond',
  'forc',
  'bond',
  'session',
  'like',
  'twice',
  'rememb',
  'alway',
  'tri',
  'synch',
  'stay',
  'turn',
  'stay',
  'parent',
  'cant',
  'swing',
  'ill',
  'go',
  'stay',
  'tyler',
  'weekend',
  'avoid',
  'much',
  'possibl',
  'children',
  'question',
  'mom',
  'step',
  'annoy',
  'one',
  'also',
  'one',
  'follow',
  'ig',
  'step',
  'ask',
  'back',
  'said',
  'half',
  'never',
  'whine',
  'directli',
  'mom',
  'said',
  'cri',
  'dad',
  'step',
  'call',
  'sent',
  'coupl',
  'dm',
  'open',
  'twin',
  'half',
  'dad',
  'push',
  'take',
  'coupl',
  'hour',
  'start',
  'annoy',
  'idea',
  'exactli',
  'news',
  'spread',
  'rest',
  'annoyingli',
  'hope',
  'help',
  'clear',
  'thing',
  'sorri',
  'gave',
  'wrong',
  'impress',
  'best',
  'state',
  'mind',
  'wrote',
  'origin',
  'post',
  'edit',
  'updat',
  'peopl',
  'still',
  'reach',
  'ask',
  'happen',
  'post',
  'im',
  'realli',
  'sure',
  'post',
  'updat',
  'hope',
  'okay',
  'first',
  'wan',
  'na',
  'thank',
  'everyon',
  'perspect',
  'emot',
  'longer',
  'run',
  'high',
  'im',
  'littl',
  'surpris',
  'reason',
  'comment',
  'got',
  'downvot',
  'thank',
  'valid',
  'frustrat',
  'agre',
  'gentl',
  'esh',
  'voter',
  'despit',
  'final',
  'judgement',
  'im',
  'oblig',
  'bring',
  'anyon',
  'brother',
  'trip',
  'way',
  'dealt',
  'whole',
  'situat',
  'came',
  'place',
  'anger',
  'hurt',
  'ive',
  'gone',
  'still',
  'go',
  'therapi',
  'shit',
  'parent',
  'put',
  'ive',
  'made',
  'progress',
  'parent',
  'anyon',
  'relat',
  'bs',
  'still',
  'bring',
  'worst',
  'mind',
  'situat',
  'step',
  'sister',
  'text',
  'apolog',
  'said',
  'said',
  'howev',
  'reiter',
  'tyler',
  'invit',
  'ask',
  'extend',
  'apolog',
  'brother',
  'told',
  'said',
  'step',
  'brother',
  'open',
  'dm',
  'repli',
  'polit',
  'firm',
  'mom',
  'dad',
  'email',
  'made',
  'mistak',
  'think',
  'carefully-kept',
  'distanc',
  'enough',
  'least',
  'semblanc',
  'relationship',
  'told',
  'listen',
  'tyler',
  'year',
  'ago',
  'cut',
  'loss',
  'like',
  'ask',
  'lose',
  'number',
  'email',
  'anyth',
  'anymor',
  'block',
  'parent',
  'number',
  'set',
  'email',
  'spam',
  'box',
  'step',
  'sibl',
  'howev',
  'remov',
  'anyon',
  'recogn',
  'ig',
  'follow',
  'parent',
  'newoth',
  'number',
  'still',
  'get',
  'block',
  'ignor',
  'step',
  'sibl',
  'point',
  'realli',
  'engag',
  'meltdown',
  'close',
  'door',
  'face',
  'either',
  'think',
  'ill',
  'ever',
  'place',
  'step',
  'half',
  'sibl',
  'tyler',
  'closer',
  'introspect',
  'think',
  'im',
  'readi',
  'complet',
  'end',
  'possibl',
  'either',
  'matter',
  'imposs',
  'seem',
  'right',
  'guess',
  'thank',
  'tyler',
  'smug',
  'sinc',
  'show',
  'post',
  'whatev',
  'earn',
  'right'],
 ['realli',
  'sweet',
  'mil',
  'dh',
  'mom',
  'get',
  'along',
  'time',
  'howev',
  'visit',
  'home',
  'notic',
  'goe',
  'throw',
  'drawer',
  'bedroom',
  'look',
  'charger',
  'someth',
  'find',
  'bit',
  'invas',
  'embarrass',
  'especi',
  'open',
  'wrong',
  'drawer',
  'would',
  'personalitem',
  'like',
  'lingeri',
  'goe',
  'complain',
  'uncomfort',
  'everi',
  'singl',
  'time',
  'weve',
  'gone',
  'back',
  'forth',
  'state',
  'wrong',
  'even',
  'look',
  'person',
  'stuff',
  'said',
  'got',
  'confus',
  'know',
  'drawer',
  'item',
  'look',
  'dh',
  'suggest',
  'bring',
  'whatev',
  'need',
  'instead',
  'go',
  'insid',
  'look',
  'never',
  'ask',
  'decid',
  'label',
  'drawersmean',
  'put',
  'sign',
  'everi',
  'drawer',
  'elimin',
  'dear',
  'mil',
  'confus',
  'exampl',
  'put',
  'sock',
  'sign',
  'sock',
  'drawer',
  'lingeri',
  'sign',
  'lingeri',
  'underwear',
  'drawer',
  'electron',
  'makeup',
  'drawer',
  'etc',
  'get',
  'idea',
  'next',
  'time',
  'mil',
  'visit',
  'walk',
  'bedroom',
  'look',
  'someth',
  'kitchen',
  'cook',
  'minut',
  'later',
  'came',
  'husband',
  'ask',
  'sign',
  'drawer',
  'told',
  'label',
  'drawer',
  'end',
  'confus',
  'help',
  'find',
  'look',
  'quickli',
  'look',
  'offend',
  'said',
  'niether',
  'small',
  'child',
  'stupid',
  'treat',
  'like',
  'said',
  'realli',
  'tri',
  'help',
  'also',
  'tri',
  'prevent',
  'see',
  'stuff',
  'upset',
  'past',
  'got',
  'madder',
  'kept',
  'argu',
  'left',
  'stay',
  'bil',
  'hous',
  'bil',
  'call',
  'berat',
  'dh',
  'dh',
  'lash',
  'say',
  'caus',
  'mess',
  'need',
  'apolog'],
 ['husband',
  'big',
  'game',
  'addict',
  'parent',
  'hate',
  'play',
  'game',
  'got',
  'multipl',
  'fight',
  'children',
  'adult',
  'hobbi',
  'sore',
  'subject',
  'famili',
  'opt',
  'lie',
  'say',
  'outsid',
  'anyon',
  'ask',
  'work',
  'home',
  'right',
  'work',
  'proceed',
  'play',
  'game',
  'midnight',
  'none',
  'us',
  'like',
  'leav',
  'hous',
  'practic',
  'next',
  '%',
  'time',
  'humanli',
  'possibl',
  'way',
  'either',
  'us',
  'cheat',
  'one',
  'anoth',
  'current',
  'pregnant',
  'caus',
  'inlaw',
  'visit',
  'frequent',
  'due',
  'increas',
  'visit',
  'reduc',
  'much',
  'game',
  'time',
  'better',
  'health',
  'babi',
  'see',
  'us',
  'game',
  'gotten',
  'argument',
  'hobbi',
  'unaccept',
  'childish',
  'need',
  'chang',
  'sunday',
  'known',
  'everyon',
  'unavail',
  'day',
  'alway',
  'say',
  'date',
  'someth',
  'realiti',
  'home',
  'get',
  'weekli',
  'game',
  'quota',
  'cover',
  'husband',
  'went',
  'game',
  'cafe',
  'friend',
  'vise',
  'stay',
  'home',
  'last',
  'sunday',
  'mil',
  'decid',
  'later',
  'call',
  'middl',
  'match',
  'suppos',
  'act',
  'suspici',
  'want',
  'end',
  'convers',
  'asap',
  'ask',
  'repli',
  'automat',
  'without',
  'think',
  'date',
  'husband',
  'accord',
  'husband',
  'later',
  'call',
  'said',
  'bar',
  'friend',
  'mil',
  'decid',
  'visit',
  'hous',
  'undoubtli',
  'middl',
  'anoth',
  'game',
  'avoid',
  'phone',
  'call',
  'pretend',
  'hear',
  'knock',
  'match',
  'minut',
  'afterward',
  'answer',
  'door',
  'pretend',
  'sleep',
  'answer',
  'phone',
  'door',
  'mil',
  'explod',
  'call',
  'cheater',
  'child',
  'pregnant',
  'son',
  'otherwis',
  'would',
  'answer',
  'door',
  'idea',
  'would',
  'cheat',
  'would',
  'even',
  'possibl',
  'cheat',
  'partner',
  'hilari',
  'burst',
  'laugh',
  'anger',
  'mil',
  'even',
  'continu',
  'berat',
  'smile',
  'sit',
  'think',
  'ridicul',
  'husband',
  'came',
  'home',
  'berat',
  'front',
  'cheat',
  'husband',
  'visibl',
  'confus',
  'whole',
  'time',
  'confirm',
  'mother',
  'possibl',
  'way',
  'cheat',
  'explain',
  'togeth',
  'practic',
  'everi',
  'moment',
  'day',
  'mil',
  'saw',
  'get',
  'side',
  'proceed',
  'get',
  'mad',
  'lead',
  'call',
  'asshol',
  'pretend',
  'affair',
  'never',
  'correct',
  'told',
  'peopl',
  'although',
  'never',
  'clarifi',
  'cheat',
  'think',
  'place',
  'come',
  'unannounc',
  'proclaim',
  'cheater',
  'aita'],
 ['marri',
  'jeff',
  'year',
  'ago',
  'daughter',
  'alicia',
  '-',
  'previou',
  'marriag',
  'daughter',
  'morgan',
  '-',
  'previou',
  'marriag',
  'well',
  'alicia',
  'closer',
  'morgan',
  'alway',
  'someth',
  'upset',
  'exampl',
  'morgan',
  'move',
  'jeff',
  'tri',
  'control',
  '&',
  'cant',
  'go',
  'area',
  'allow',
  'redecor',
  'put',
  'furnitur',
  'room',
  'morgan',
  'got',
  'etc',
  'excus',
  'want',
  'keep',
  'hous',
  'mom',
  'left',
  'much',
  'possibl',
  'jeff',
  'ask',
  'us',
  'patient',
  'shed',
  'come',
  'around',
  'eventu',
  'come',
  'around',
  'still',
  'tri',
  'control',
  'area',
  'mine',
  'morgan',
  'life',
  'million',
  'convers',
  'end',
  'throw',
  'tantrum',
  'jeff',
  'talk',
  'told',
  'tri',
  'control',
  'morgan',
  'ever',
  'agre',
  'morgan',
  'birthday',
  'day',
  'ago',
  'plan',
  'celebr',
  'restaur',
  'let',
  'morgan',
  'choos',
  'one',
  'pick',
  'realli',
  'nice',
  'restaur',
  'top',
  'expens',
  'agre',
  'parti',
  'would',
  'howev',
  'alicia',
  'heard',
  'restaur',
  'go',
  'went',
  'morgan',
  'said',
  'cant',
  'go',
  'restaur',
  'ton',
  'memori',
  'perfect',
  'old',
  'famili',
  'let',
  'us',
  'taint',
  'memori',
  'found',
  'beyond',
  'illog',
  'unreason',
  'told',
  'could',
  'stay',
  'home',
  'said',
  '-',
  'idea',
  'morgan',
  'jeff',
  'famili',
  'use',
  'mom',
  'jeff',
  'got',
  'argument',
  'jeff',
  'told',
  'tell',
  'morgan',
  'pick',
  'anoth',
  'restuar',
  'snap',
  'told',
  'alicia',
  'right',
  'dictat',
  'daughter',
  'go',
  'encourag',
  'told',
  'encourag',
  'anyth',
  'tri',
  'keep',
  'parti',
  'satisfi',
  'told',
  'get',
  'morgan',
  'chang',
  'restaur',
  'gothat',
  'decid',
  'go',
  'chang',
  'want',
  'end',
  'go',
  'morgan',
  'celebr',
  'mom',
  'morgan',
  'cours',
  'felt',
  'upset',
  'stepdad',
  'miss',
  'birthday',
  'celebr',
  'point',
  'argu',
  'liter',
  'gain',
  'noth',
  'insist',
  'particular',
  'restaur',
  'upset',
  'alicia',
  'refus',
  'speak',
  'us',
  'even',
  'ruin',
  'relationship',
  'morgan',
  'said',
  'morgan',
  'choic',
  'said',
  'adult',
  'situat',
  'fail',
  'navig',
  'aita',
  'still',
  'go',
  'restaur',
  'although',
  'alicia',
  'forbid',
  'us',
  'want',
  'make',
  'morgan',
  'feel',
  'like',
  'say',
  'right',
  'spend',
  'birthday',
  'howev',
  'want',
  'edit',
  'mom',
  'aliv',
  'know',
  'assum',
  'deceas',
  'aliv',
  'alicia',
  'see',
  'weekli'],
 ['husband',
  'disabl',
  'wheelchair',
  'home',
  'need',
  'around',
  'assist',
  'id',
  'chair',
  'nearbi',
  'laundri',
  'cook',
  'clean',
  'time',
  'except',
  'go',
  'bathroom',
  'even',
  'hed',
  'complain',
  'away',
  'long',
  'even',
  'go',
  'shop',
  'everyth',
  'get',
  'deliv',
  'home',
  'seen',
  'girlfriend',
  'arrang',
  'start',
  'girl',
  'night',
  'place',
  'sinc',
  'cant',
  'away',
  'home',
  'especi',
  'night',
  'ask',
  'husband',
  'ptuvaci',
  'friend',
  'come',
  'tookit',
  'badli',
  'took',
  'annoy',
  'bother',
  'assur',
  'like',
  'said',
  'true',
  'id',
  'let',
  'sit',
  'us',
  'girl',
  'night',
  'absolut',
  'refus',
  'tri',
  'explain',
  'friend',
  'need',
  'privaci',
  'time',
  'spend',
  'togeth',
  'also',
  'explain',
  'sit',
  'us',
  'would',
  'ruin',
  'purpos',
  'girl',
  'night',
  'threw',
  'hissi',
  'fit',
  'call',
  'selfish',
  'rude',
  'refus',
  'start',
  'give',
  'cold',
  'shoulder',
  'say',
  'agre',
  'includ',
  'speak',
  'aita',
  'choos',
  'hill',
  'die',
  'accord',
  'context^',
  'gone',
  'seen',
  'friend',
  'even',
  'famili',
  'go',
  'also',
  'refus',
  'stay',
  'home',
  'someon',
  'els',
  'look',
  'even',
  'let',
  'sight',
  'minut',
  'sometim',
  'bring',
  'near',
  'bathroom',
  'coukd',
  'wait',
  'door',
  'open',
  'im',
  'take',
  'time',
  'sociabl',
  'natur',
  'friend',
  'onki',
  'friend',
  'show',
  'true',
  'color',
  'becam',
  'disabl',
  'put',
  'distanc',
  'girl',
  'night',
  'issu',
  'said',
  'would',
  'let',
  'friend',
  'continu',
  'exclud',
  'caus',
  'major',
  'argument',
  'us'],
 ['rais',
  'super',
  'religi',
  'parent',
  'fight',
  'abl',
  'go',
  'normal',
  'colleg',
  'christian',
  'one',
  'weird',
  'rule',
  'said',
  'pay',
  'school',
  'come',
  'back',
  'right',
  'path',
  'struggl',
  'coupl',
  'month',
  'friend',
  'told',
  'strip',
  'club',
  'work',
  'hire',
  'danc',
  'whole',
  'life',
  'good',
  'figur',
  'hire',
  'pretti',
  'fast',
  'month',
  'drop',
  'colleg',
  'make',
  'seriou',
  'money',
  '$',
  'bad',
  'week',
  '$',
  'realli',
  'good',
  'one',
  'parent',
  'found',
  'disown',
  'goe',
  'extend',
  'famili',
  'except',
  'cousin',
  'fast',
  'foreward',
  'year',
  'hous',
  'outright',
  'tesla',
  'debt',
  'also',
  'appart',
  'build',
  'rent',
  'strip',
  'short',
  'lifespan',
  'invest',
  'parent',
  'contact',
  'appar',
  'father',
  'lost',
  'busi',
  'covid',
  'mom',
  'alway',
  'shm',
  'declar',
  'bankruptci',
  'realli',
  'struggl',
  'live',
  'old',
  'camper',
  'also',
  'appar',
  'mom',
  'diabet',
  'dad',
  'alway',
  'heart',
  'problem',
  'want',
  'help',
  'said',
  'parent',
  'anymor',
  'furthermor',
  'accord',
  'religion',
  'church',
  'money',
  'earn',
  'sin',
  'use',
  'damn',
  'soul',
  'hell',
  'realli',
  'want',
  'mom',
  'start',
  'cri',
  'dad',
  'said',
  'know',
  'went',
  'wrong',
  'last',
  'coupl',
  'aunt',
  'uncl',
  'call',
  'chang',
  'famili',
  'help',
  'famili',
  'tune',
  'fast',
  'ask',
  'help',
  'coupl',
  'week',
  'later',
  'start',
  'feel',
  'like',
  'ah',
  'month',
  'incom',
  'strip',
  'would',
  'make',
  'realli',
  'big',
  'chang',
  'even',
  'miss',
  'bad',
  'aita'],
 ['date',
  'jaym',
  'four',
  'month',
  'handsom',
  'smart',
  'funni',
  'well-educ',
  'awesom',
  'job',
  'sweetheart',
  'sunday',
  'whole',
  'day',
  'plan',
  'us',
  'go',
  'walk',
  'natur',
  'trail',
  'go',
  'back',
  'place',
  'dinner',
  'make',
  'excit',
  'go',
  'first',
  'time',
  'id',
  'hous',
  'sinc',
  'hike',
  'said',
  'could',
  'bring',
  'dog',
  'shelbi',
  'us',
  'made',
  'us',
  'roast',
  'veget',
  'dinner',
  'finish',
  'plate',
  'jay',
  'took',
  'kitchen',
  'still',
  'half',
  'roast',
  'left',
  'close',
  'shelbi',
  'dinner',
  'time',
  'took',
  'half',
  'half',
  'roast',
  'still',
  'raw',
  'veget',
  'fridg',
  'put',
  'plate',
  'shelbi',
  'carri',
  'plate',
  'back',
  'door',
  'shelbi',
  'feed',
  'outsid',
  'jay',
  'ask',
  'told',
  'feed',
  'shelbi',
  'jay',
  'said',
  'someth',
  'like',
  'well',
  'dog',
  'food',
  'jay',
  'know',
  'mainli',
  'feed',
  'shelbi',
  'raw',
  'diet',
  'open',
  'door',
  'put',
  'plate',
  'shelbi',
  'jay',
  'got',
  'took',
  'plate',
  'away',
  'went',
  'kitchen',
  'came',
  'back',
  'wrap',
  'tinfoil',
  'told',
  'leav',
  'excus',
  'made',
  'dinner',
  'dog',
  'ask',
  'help',
  'sinc',
  'wouldv',
  'use',
  'leftov',
  'leav',
  'tell',
  'made',
  'meal',
  'us',
  'could',
  'pleas',
  'knew',
  'damn',
  'well',
  'feed',
  'shelbi',
  'tri',
  'talk',
  'friend',
  'later',
  'night',
  'said',
  'jay',
  'right',
  'upset',
  'friend',
  'never',
  'realli',
  'approv',
  'treat',
  'dog',
  'feel',
  'like',
  'probabl',
  'bit',
  'bias',
  'wrong',
  'person',
  'ask',
  'aita',
  'feed',
  'dog',
  'like',
  'normal',
  'would',
  'clarif',
  'get',
  'restaur',
  'food',
  'daili',
  'eat',
  'mayb',
  'time',
  'month',
  'eat',
  'dog',
  'safe',
  'restaur',
  'make',
  'food',
  'dog',
  'request',
  'bring',
  'home',
  'shelbi',
  'daili',
  'meal',
  'bit',
  'brown',
  'rice',
  'raw',
  'veget',
  'ground',
  'chicken',
  'heart',
  'beef',
  'liver',
  'heart',
  'liver',
  'boil',
  'enough',
  'kill',
  'bacteria',
  'approv',
  'shelbi',
  'vet',
  'ask',
  'jay',
  'prepar',
  'roast',
  'could',
  'know',
  'safe',
  'give',
  'also',
  'got',
  'fresh',
  'unus',
  'veget',
  'fridg',
  'updat',
  'accept',
  'im',
  'ah',
  'said',
  'jay',
  'respons',
  'harsh',
  'see',
  'entitl',
  'thank',
  'peopl',
  'respond',
  'actual',
  'issu',
  'go',
  'diet',
  'thank',
  'concern',
  'came',
  'ask',
  'jay',
  'get',
  'debat',
  'dog',
  'food',
  'shelbi',
  'diet',
  'year',
  'healthi',
  'activ',
  'puppo',
  'vet',
  'need',
  'know',
  'jay',
  'apolog',
  'accept',
  'apolog',
  'broke',
  'said',
  'last',
  'straw',
  'thing',
  'without',
  'ask',
  'first',
  'talk',
  'take',
  'thing',
  'plate',
  'drink',
  'without',
  'ask',
  'ive',
  'tri',
  'better',
  'keep',
  'slip',
  'realiz',
  'bad',
  'im',
  'go',
  'work',
  'next',
  'guy',
  'peopl',
  'said',
  'go',
  'place',
  'month',
  'red',
  'flag',
  'decis',
  'respect',
  'want',
  'go',
  'someon',
  'hous',
  'know',
  'live',
  'first',
  'month',
  'date',
  'get',
  'know'],
 ['im',
  '*',
  'still',
  '*',
  'shock',
  'whole',
  'thing',
  'happen',
  'want',
  'hear',
  'outsid',
  'perspect',
  'kid',
  'ago',
  'receiv',
  'invit',
  'sister',
  'wed',
  'husband',
  'kid',
  'wed',
  'differ',
  'countri',
  'good',
  'time',
  'could',
  'go',
  'book',
  'everyth',
  'readi',
  'go',
  'got',
  'bit',
  'time',
  'wed',
  'quit',
  'liter',
  '*',
  'day',
  '*',
  'wed',
  'inform',
  'go',
  'child-fre',
  'wed',
  'look',
  'issu',
  'child',
  'free',
  'wed',
  'bit',
  'frustrat',
  'mean',
  'known',
  'go',
  'child-fre',
  'arrang',
  'couldv',
  'made',
  'travel',
  'invit',
  'annoy',
  'thing',
  'switch',
  'also',
  'understand',
  'wed',
  'stress',
  'sometim',
  'thing',
  'go',
  'chang',
  'spent',
  'quit',
  'bit',
  'time',
  'tri',
  'find',
  'place',
  'three',
  'youngest',
  'stay',
  'wed',
  'sort',
  'eventu',
  'okay',
  'wed',
  'day',
  'chang',
  'made',
  'everyth',
  'good',
  'way',
  'got',
  'messag',
  'sister',
  'excit',
  'see',
  'two',
  'bit',
  'confus',
  'cours',
  'three',
  'us',
  'go',
  'decid',
  'probabl',
  'error',
  'worri',
  'got',
  'sister',
  'seem',
  'surpris',
  'see',
  'oldest',
  'nice',
  'surpris',
  'either',
  'pretti',
  'condescend',
  'surpris',
  'wed',
  'day',
  'probabl',
  'nervou',
  'ill',
  'let',
  'go',
  'wed',
  'help',
  'feel',
  'ignor',
  'us',
  'know',
  'none',
  'ever',
  'happen',
  'even',
  'care',
  'wed',
  'pay',
  'equal',
  'attent',
  'everyon',
  'everyth',
  'els',
  'felt',
  'weird',
  'wed',
  'sent',
  'messag',
  'nice',
  'see',
  'wouldv',
  'appreci',
  'respect',
  'child-fre',
  'part',
  'repli',
  'say',
  'happi',
  'enjoy',
  'everi',
  'second',
  'wed',
  'thought',
  'respect',
  'miscommun',
  'sorri',
  'told',
  'miscommun',
  'disrespect',
  'apolog',
  'basic',
  'reiter',
  'alreadi',
  'said',
  'apolog',
  'aita',
  'edit',
  'wonder',
  'invitationrsvp',
  'invit',
  'said',
  '<',
  'bride',
  'groom',
  'name',
  '>',
  'would',
  'like',
  'invit',
  '<',
  'name',
  '>',
  'ask',
  'rsvp',
  'email',
  'also',
  'seen',
  'sister',
  'wed',
  'clear',
  'knew',
  'plan',
  'attend',
  'ye',
  'year',
  'old',
  '-',
  'use',
  'definit',
  'child',
  'son',
  'daughter',
  'under-',
  'sorri',
  'confus'],
 ['month',
  'pregnant',
  'first',
  'child',
  'babi',
  'also',
  'first',
  'grandchildnephew',
  'husband',
  'famili',
  'everyon',
  'excit',
  'lost',
  'mother',
  'father',
  'pandem',
  'child',
  'much',
  'famili',
  'sinc',
  'death',
  'parent',
  'year',
  'ago',
  'husband',
  'famili',
  'welcom',
  'open',
  'arm',
  'part',
  'becom',
  'close',
  'mil',
  'sil',
  'alway',
  'want',
  'gender',
  'reveal',
  'trust',
  'sil',
  'organ',
  'everyth',
  'day',
  'go',
  'parti',
  'start',
  'receiv',
  'messag',
  'husband',
  'rel',
  'even',
  'close',
  'friend',
  'congratul',
  'babi',
  'boy',
  'went',
  'ask',
  'happen',
  'sil',
  'confess',
  'let',
  'slip',
  'mil',
  'told',
  'everyon',
  'sex',
  'babi',
  'know',
  'hold',
  'took',
  'proport',
  'beyond',
  'imagin',
  'nobodi',
  'call',
  'tell',
  'parti',
  'cancel',
  'heartbroken',
  'well',
  'extrem',
  'hurt',
  'two',
  'usual',
  'accompani',
  'ultrasound',
  'shop',
  'babi',
  'room',
  'mil',
  'would',
  'stay',
  'time',
  'deliveri',
  'breach',
  'trust',
  'stop',
  'invit',
  'ask',
  'respect',
  'boundari',
  'pressur',
  'go',
  'honestli',
  'even',
  'send',
  'babi',
  'shower',
  'invit',
  'realli',
  'avoid',
  'contact',
  'much',
  'possibl',
  'everyon',
  'knew',
  'boy',
  'husband',
  'start',
  'complain',
  'push',
  'away',
  'mistak',
  'could',
  'happen',
  'harsh',
  'yesterday',
  'brought',
  'said',
  'still',
  'feel',
  'comfort',
  'said',
  'soon',
  'tell',
  'mother',
  'abl',
  'go',
  'birth',
  'think',
  'face',
  'show',
  'respons',
  'start',
  'say',
  'hard',
  'excit',
  'blabla',
  'limit',
  'said',
  'keep',
  'push',
  'mother',
  'labor',
  'either',
  'stop',
  'come',
  'start',
  'say',
  'cross',
  'line',
  'right',
  'moment',
  'take',
  'far',
  'slept',
  'couch',
  'talk',
  'necessari',
  'aita',
  'well',
  'mani',
  'say',
  'gender',
  'reveal',
  'honestli',
  'care',
  'think',
  'tacki',
  'mom',
  'type',
  'likelov',
  'alway',
  'dream',
  'grandchildren',
  'said',
  'made',
  'grandmoth',
  'cant',
  'meet',
  'son',
  'even',
  'know',
  'im',
  'pregnant',
  'want',
  'someth',
  'tacki',
  'care',
  'everyon',
  'knew',
  'import',
  'reason',
  'alway',
  'want',
  'gender',
  'reveal',
  'mom',
  'either',
  'extra',
  'let',
  'go',
  'point',
  '-',
  'time',
  'say',
  'would',
  'never',
  'approach',
  'right',
  'see',
  'alreadi',
  'grief',
  'pregnanc',
  'hormon',
  'day-to-day',
  'stress',
  'deal',
  'want',
  'anyth',
  'els',
  'bother',
  '-',
  'obvious',
  'want',
  'husband',
  'childbirth',
  'lot',
  'stress',
  'bring',
  'topic',
  'time',
  'doubt',
  'hell',
  'stop',
  'even',
  'time',
  'deliveri',
  'tri',
  'convinc',
  'even',
  'goe',
  'say',
  'anyth',
  'mother',
  'come',
  'ill',
  'ask',
  'leav'],
 ['first',
  'would',
  'like',
  'inform',
  'autism',
  'spectrum',
  'go',
  'use',
  'sarcasm',
  'comment',
  'pleas',
  'label',
  'difficulti',
  'distinguish',
  'even',
  'written',
  'also',
  'feel',
  'free',
  'give',
  'straight',
  'fragil',
  'person',
  'live',
  'roommat',
  'close',
  'month',
  'leas',
  'rent',
  'util',
  'much',
  'ex-roomm',
  'handl',
  'tick',
  'could',
  'say',
  'count',
  'mean',
  'count',
  'step',
  'stair',
  'lightpost',
  'sip',
  'bite',
  'food',
  'pillow',
  'help',
  'cope',
  'stimul',
  'world',
  'move',
  'made',
  'clear',
  'roommat',
  'allow',
  'touch',
  'food',
  'meal',
  'prep',
  'sinc',
  'cant',
  'eat',
  'anyth',
  'famili',
  'cook',
  'cook',
  'tend',
  'count',
  'individu',
  'piec',
  'food',
  'think',
  'mani',
  'chicken',
  'chunk',
  'mani',
  'piec',
  'veget',
  'eat',
  'number',
  'match',
  'tend',
  'get',
  'overwhelm',
  'respect',
  'first',
  'coupl',
  'month',
  'start',
  'steal',
  'bite',
  'stress',
  'would',
  'talk',
  'first',
  'use',
  'deni',
  'apolog',
  'promis',
  'never',
  'coupl',
  'week',
  'later',
  'would',
  'day',
  'ago',
  'got',
  'home',
  'stress',
  'day',
  'took',
  'contain',
  'strawberri',
  'got',
  'end',
  'strawberri',
  'short',
  'meltdown',
  'first',
  'year',
  'manag',
  'calm',
  'feel',
  'better',
  'call',
  'parent',
  'ask',
  'move',
  'back',
  'look',
  'anoth',
  'place',
  'pack',
  'stuff',
  'next',
  'day',
  'inform',
  'move',
  'upfront',
  'month',
  'rent',
  'need',
  'give',
  'anyth',
  'actual',
  'gave',
  'week',
  'rent',
  'even',
  'know',
  'move',
  'today',
  'call',
  'panick',
  'situat',
  'told',
  'bad',
  'mental',
  'health',
  'longer',
  'live',
  'block',
  'everywher',
  'hang',
  'call',
  'ah',
  'told',
  'becom',
  'homeless',
  'spare',
  'measli',
  'strawberri',
  'bad',
  'human',
  'interact',
  'judg',
  'situat',
  'accur',
  'aita',
  'situat',
  'edit',
  'thank',
  'comment',
  'explain',
  'wrong',
  'calcul',
  'much',
  'money',
  'need',
  'send',
  'make',
  'even',
  'day',
  'rent',
  'includ',
  'day',
  'move',
  'tell',
  'venmo',
  'also',
  'peopl',
  'messag',
  'tell',
  'live',
  'alon',
  'cant',
  'handl',
  'roommat',
  'live',
  'year',
  'roommat',
  'includ',
  'go',
  'colleg',
  'work',
  'someon',
  'confid',
  'reach',
  'life',
  'shake',
  'pleas',
  'say',
  'thing',
  'someon',
  'els',
  'see',
  'throwaway',
  'comment',
  'serious',
  'break',
  'someon',
  'trust'],
 ['background',
  'wife',
  'makeup',
  'artist',
  'alway',
  'heavi',
  'makeup',
  'look',
  'weird',
  'guy',
  'sometim',
  'love',
  'enjoy',
  'problem',
  'though',
  'friend',
  'famili',
  'tend',
  'make',
  'funni',
  'lightheart',
  'comment',
  'makeup',
  'seem',
  'take',
  'serious',
  'situat',
  'th',
  'birthday',
  'day',
  'ago',
  'celebr',
  'small',
  'diner',
  'guy',
  'friend',
  'wife',
  'guy',
  'friend',
  'brutal',
  'honest',
  'make',
  'joke',
  'teas',
  'time',
  'wife',
  'know',
  'surpris',
  'anyway',
  'wife',
  'took',
  'miut',
  'use',
  'toilet',
  'get',
  'makeup',
  'fix',
  'boy',
  'chat',
  'got',
  'back',
  'ask',
  'look',
  'could',
  'answer',
  'friend',
  'austin',
  'respond',
  'jokingli',
  'say',
  'damn',
  'look',
  'like',
  'got',
  'cancer',
  'ward',
  'heavi',
  'makeup',
  'face',
  'rest',
  'guy',
  'start',
  'laugh',
  'stare',
  'wife',
  'got',
  'upset',
  'start',
  'argu',
  'austin',
  'aw',
  'join',
  'much',
  'comot',
  'felt',
  'upset',
  'fight',
  'birthday',
  'celebr',
  'ask',
  'wife',
  'calm',
  'take',
  'seat',
  'ask',
  'okay',
  'friend',
  'make',
  'fun',
  'austin',
  'said',
  'come',
  'joke',
  'threw',
  'habd',
  'said',
  'admit',
  'wife',
  'overreact',
  'realli',
  'joke',
  'lash',
  'took',
  'uber',
  'home',
  'parti',
  'cut',
  'short',
  'got',
  'home',
  'began',
  'argu',
  'told',
  'overreact',
  'take',
  'everyth',
  'serious',
  'know',
  'great',
  'alway',
  'look',
  'turn',
  'argument',
  'let',
  'friend',
  'insult',
  'defend',
  'integr',
  'basic',
  'forc',
  'thise',
  'guy',
  'upon',
  'ine',
  'arrang',
  'enitr',
  'celebr',
  'kept',
  'cri',
  'get',
  'humili',
  'dismiss',
  'feel',
  'say',
  'overreact'],
 ['fyi',
  'singl',
  'dad',
  'year',
  'mom',
  'essenti',
  'ran',
  'us',
  'daughter',
  'victoria',
  'great',
  'kid',
  'make',
  'proud',
  'dad',
  'teen',
  'year',
  'arriv',
  'weve',
  'certainli',
  'fair',
  'share',
  'disagr',
  'grade',
  'cloth',
  'mainli',
  'unfortun',
  'interest',
  'boy',
  'theyr',
  'interest',
  'god',
  'listen',
  'send',
  'help',
  'normal',
  'say',
  'date',
  'im',
  'fine',
  'meet',
  'kid',
  'go',
  'way',
  'kind',
  'rule',
  'goofi',
  'daughter',
  'home',
  'nose',
  'im',
  'come',
  'hunt',
  'big',
  'scari',
  'dad',
  'speech',
  'wan',
  'na',
  'meet',
  'kid',
  'put',
  'face',
  'name',
  'day',
  'ago',
  'said',
  'guy',
  'name',
  'vinc',
  'ask',
  'fine',
  'well',
  'friday',
  'night',
  'came',
  'get',
  'told',
  'victoria',
  'oh',
  'good',
  'talk',
  'parent',
  'like',
  'sarcast',
  'said',
  'love',
  'hear',
  'eas',
  'hear',
  'guy',
  'activ',
  'avoid',
  'parent',
  'got',
  'phd',
  'sarcasm',
  'receiv',
  'eyerol',
  'said',
  'could',
  'use',
  'tonight',
  'practic',
  'talk',
  'parent',
  'said',
  'anyth',
  'want',
  'said',
  'meet',
  'go',
  'date',
  'got',
  'foot',
  'stomp',
  'fair',
  'told',
  'overbear',
  'want',
  'meet',
  'kid',
  'told',
  'go',
  'want',
  'told',
  'text',
  'guy',
  'date',
  'go',
  'room',
  'start',
  'cri',
  'sent',
  'text',
  'told',
  'hate',
  'went',
  'room',
  'slam',
  'door',
  'time',
  'aita'],
 ['makeup',
  'artist',
  'past',
  'year',
  'charg',
  '$',
  'bridal',
  'makeup',
  'around',
  'bridesmaid',
  'etc',
  'makeup',
  'regular',
  'parti',
  'makeup',
  'charg',
  'around',
  '$',
  'week',
  'ago',
  'ladi',
  'book',
  'parti',
  'makeup',
  'june',
  'th',
  'book',
  'went',
  'think',
  'id',
  'regular',
  'parti',
  'makeup',
  'agre',
  '$',
  'peopl',
  'come',
  'assum',
  'rel',
  'point',
  'slip',
  'woman',
  'wed',
  'realis',
  'woman',
  'im',
  'makeup',
  'bride',
  'im',
  'bridal',
  'makeup',
  'charg',
  'simpl',
  'parti',
  'makeup',
  'complet',
  'piss',
  'lie',
  'occas',
  'kept',
  'job',
  'finish',
  'gave',
  '$',
  'notifi',
  'actual',
  '$',
  'short',
  'ask',
  'meant',
  'said',
  'bridal',
  'makeup',
  'bride',
  'charg',
  'bride',
  'said',
  'agre',
  'simpla',
  'parti',
  'makeup',
  'basic',
  'rip',
  'work',
  'amount',
  'time',
  'use',
  'product',
  'id',
  'use',
  'bridal',
  'makeup',
  'titl',
  'event',
  'matter',
  'told',
  'get',
  'dictat',
  'form',
  'price',
  'refus',
  'pay',
  'call',
  'scammer',
  'told',
  'get',
  'left',
  'mom',
  'threw',
  '$',
  'face',
  'told',
  'get',
  'lost',
  'tell',
  'happen',
  'friend',
  'side',
  'bride',
  'said',
  'unless',
  'use',
  'expens',
  'product',
  'extra',
  'labor',
  'im',
  'justifi',
  'charg',
  'sinc',
  'request',
  'parti',
  'makeup',
  'charg',
  'aita'],
 ['care',
  'famili',
  'recogn',
  'use',
  'throwaway',
  'want',
  'follow',
  'back',
  'regular',
  'account',
  'first',
  'im',
  'girl',
  'gf',
  'year',
  'obvious',
  'midlat',
  'twenti',
  'share',
  'financ',
  'live',
  'togeth',
  'plan',
  'marri',
  'buy',
  'hous',
  'etc',
  'relev',
  'later',
  'brother',
  'sent',
  'wed',
  'invit',
  'name',
  'ask',
  'dan',
  'said',
  'covid',
  'restrict',
  'number',
  'one',
  'get',
  '+',
  'fair',
  'enough',
  'problem',
  'anyway',
  'get',
  'saturday',
  'everyon',
  '+',
  'even',
  'cousin',
  'casual',
  'see',
  'guy',
  'like',
  'coupl',
  'week',
  'obviou',
  'first',
  'time',
  'gf',
  'treat',
  'differ',
  'first',
  'time',
  'blatant',
  'beyond',
  'plausibl',
  'deniabl',
  'im',
  'furiou',
  'grit',
  'teeth',
  'smile',
  'get',
  'ceremoni',
  'recept',
  'famili',
  'immedi',
  'notic',
  'gf',
  'miss',
  'ask',
  'go',
  'say',
  'sick',
  'decid',
  'know',
  'fuck',
  'said',
  'invit',
  'gee',
  'wonder',
  'shout',
  'pretti',
  'clear',
  'bitter',
  'shortli',
  'brother',
  'new',
  'wife',
  'come',
  'storm',
  'sob',
  'whisper-shout',
  'threat',
  'left',
  'immedi',
  'famili',
  'talk',
  'except',
  'yell',
  'rest',
  'famili',
  'talk',
  'except',
  'yell',
  'mom',
  'insist',
  'mix',
  'upmisunderstand',
  'invit',
  'dad',
  'want',
  'apolog',
  'even',
  'though',
  'though',
  'wrong',
  'exclud',
  'day',
  'made',
  'caus',
  'drama',
  'dan',
  'maddi',
  'shun',
  'half',
  'extend',
  'famili',
  'half',
  'split',
  'side',
  'stay',
  'neutral',
  'mom',
  'think',
  'apolog',
  'tell',
  'everyon',
  'misunderstand',
  'smooth',
  'kinda',
  'wan',
  'na',
  'aita'],
 ['cousin',
  'live',
  'hour',
  'drive',
  'rest',
  'famili',
  'month',
  'ago',
  'drove',
  'wed',
  'due',
  'limit',
  'space',
  'children',
  'invit',
  'wed',
  'except',
  'bride',
  'young',
  'niec',
  'nephew',
  'babi',
  'month',
  'old',
  'time',
  'comfort',
  'leav',
  'alon',
  'unfamiliar',
  'place',
  'stranger',
  'babysitt',
  'cousin',
  'hire',
  'kid',
  'decid',
  'bring',
  'wed',
  'wrote',
  'rsvp',
  'bring',
  'would',
  'sit',
  'lap',
  'would',
  'bring',
  'food',
  'cousin',
  'say',
  'anyth',
  'assum',
  'ok',
  'babi',
  'cri',
  'ceremoni',
  'quickli',
  'took',
  'room',
  'recept',
  'whole',
  'time',
  'bodi',
  'carrier',
  'make',
  'much',
  'fuss',
  'thought',
  'everyth',
  'ok',
  'wed',
  'aunt',
  'groom',
  'mom',
  'confront',
  'told',
  'rude',
  'bring',
  'babi',
  'without',
  'permiss',
  'explain',
  'wrote',
  'rsvp',
  'plan',
  'cousin',
  'object',
  'said',
  'cousin',
  'bride',
  'problem',
  'bride',
  'want',
  'start',
  'drama',
  'know',
  'well',
  'cousin',
  'babi',
  'month',
  'old',
  'time',
  'aunt',
  'said',
  'problem',
  'leav',
  'babi',
  'certifi',
  'babysitt',
  'done',
  'cousin',
  'upset',
  'thought',
  'groom',
  'gave',
  'special',
  'treatment',
  'let',
  'bring',
  'babi',
  'make',
  'leav',
  'kid',
  'babysitt',
  'mean',
  'start',
  'drama',
  'aita'],
 ['longtim',
  'lurker',
  'first',
  'time',
  'poster',
  'nb',
  'graduat',
  'law',
  'school',
  'next',
  'weekend',
  'backstori',
  'parent',
  'divorc',
  'remarri',
  'thing',
  'father',
  'wife',
  'kelli',
  'alway',
  'tens',
  'got',
  'marri',
  'long',
  'short',
  'end',
  'move',
  'back',
  'mom',
  'due',
  'bluntli',
  'kelli',
  'also',
  'someon',
  'hard',
  'like',
  'abras',
  'quit',
  'rude',
  'time',
  'never',
  'gotten',
  'along',
  'last',
  'year',
  'tri',
  'harder',
  'nicer',
  'sake',
  'father',
  'went',
  'law',
  'school',
  'three',
  'year',
  'ago',
  'time',
  'kelli',
  'support',
  'decis',
  'comment',
  'fact',
  'think',
  'would',
  'actual',
  'see',
  'well',
  'im',
  'graduat',
  'great',
  'job',
  'im',
  'realli',
  'proud',
  'realli',
  'feel',
  'like',
  'got',
  'hard',
  'work',
  'kelli',
  'never',
  'introduc',
  'anyon',
  'assist',
  'work',
  'fair',
  'also',
  'way',
  'expect',
  'kelli',
  'use',
  'lawyer',
  'current',
  'realli',
  'anyth',
  'discuss',
  'due',
  'close',
  'first',
  'place',
  'graduat',
  'law',
  'school',
  'gave',
  'first',
  'gen',
  'law',
  'student',
  'sash',
  'wear',
  'father',
  'call',
  'today',
  'ask',
  'wear',
  'sash',
  'kelli',
  'offend',
  'think',
  'consid',
  'famili',
  'also',
  'therefor',
  'first',
  'gener',
  'lawyer',
  'got',
  'frustrat',
  'told',
  'dad',
  'theyr',
  'welcom',
  'come',
  'offend',
  'much',
  'wear',
  'gen',
  'one',
  'sash',
  'dad',
  'got',
  'upset',
  'well',
  'essenti',
  'said',
  'big',
  'deal',
  'wear',
  'sash',
  'sash',
  'invalid',
  'due',
  'kelli',
  'wife',
  'thu',
  'step-moth',
  'end',
  'phone',
  'call',
  'bad',
  'note',
  'aita',
  'refus',
  'wear',
  'sash',
  'kelli',
  'tri',
  'diplomat',
  'kelli',
  'worri',
  'may',
  'wrong',
  'hill',
  'die',
  'understand',
  'one',
  'graduat',
  'wonder',
  'im',
  'make',
  'big',
  'deal',
  'noth',
  'hand',
  'im',
  'realli',
  'proud',
  'one',
  'els',
  'famili',
  'lawyer',
  'first',
  'reddit',
  'aita',
  'edit',
  'fix',
  'typo',
  'sorri'],
 ['backstori',
  'mom',
  'alway',
  'want',
  'daughter',
  'instead',
  'end',
  'son',
  'grandson',
  'year',
  'ago',
  'young',
  'woman',
  'year',
  'old',
  'daughter',
  'let',
  'call',
  'daughter',
  'lili',
  'move',
  'across',
  'street',
  'singl',
  'mom',
  'famili',
  'area',
  'mom',
  'offer',
  'help',
  'take',
  'care',
  'littl',
  'girl',
  'mom',
  'workedstudi',
  'year',
  'becom',
  'adopt',
  'momgrandmoth',
  'woman',
  'daughter',
  'woman',
  'marri',
  'husband',
  'girl',
  'togeth',
  'close',
  'whole',
  'famili',
  'especi',
  'lili',
  'mom',
  'born',
  'rais',
  'itali',
  'dad',
  'french',
  'brother',
  'speak',
  'french',
  'italian',
  'lili',
  'fluent',
  'french',
  'italian',
  'know',
  'cultur',
  'brother',
  'know',
  'mom',
  'recip',
  'mom',
  'also',
  'help',
  'pay',
  'privat',
  'school',
  'tuition',
  'like',
  'public',
  'school',
  'area',
  'lili',
  'son',
  'nephew',
  'graduat',
  'high',
  'school',
  'may',
  'son',
  'nephew',
  'got',
  'card',
  'check',
  '$',
  'mom',
  'took',
  'lili',
  'europ',
  'week',
  'summer',
  'got',
  'mom',
  'hous',
  'son',
  'last',
  'night',
  'plan',
  'stay',
  'day',
  'live',
  'hour',
  'away',
  'park',
  'driveway',
  'right',
  'dinner',
  'mom',
  'told',
  'need',
  'move',
  'car',
  'lili',
  'could',
  'park',
  'driveway',
  'said',
  'lili',
  'could',
  'park',
  'street',
  'mom',
  'said',
  'driveway',
  'lili',
  'spot',
  'move',
  'told',
  'son',
  'get',
  'bag',
  'went',
  'home',
  'mom',
  'call',
  'sinc',
  'last',
  'night',
  'ask',
  'come',
  'back',
  'say',
  'overreact',
  'ask',
  'move',
  'car',
  'refus',
  'son',
  'celebr',
  'without',
  'im',
  'start',
  'wonder',
  'asshol',
  'leav',
  'mom',
  'told',
  'move',
  'car'],
 ['mym',
  'girlfriend',
  'togeth',
  'year',
  'cover',
  'tattoo',
  'ive',
  'alway',
  'like',
  'alway',
  'artist',
  'tattoo',
  'friend',
  'year',
  'parent',
  'conserv',
  'tradit',
  'plan',
  'trip',
  'visit',
  'us',
  'told',
  'wear',
  'longer',
  'cloth',
  'cover',
  'refus',
  'day',
  'visit',
  'wore',
  'crop',
  'top',
  'short',
  'show',
  'tattoo',
  'warn',
  'came',
  'shrug',
  'shock',
  'parent',
  'came',
  'start',
  'compliment',
  'tattoo',
  'especi',
  'mom',
  'mom',
  'spent',
  'age',
  'talk',
  'tattoo',
  'dad',
  'went',
  'backyard',
  'came',
  'back',
  'mom',
  'rush',
  'father',
  'show',
  'tattoo',
  'girlfriend',
  'gave',
  'four',
  'small',
  'flower',
  'run',
  'arm',
  'said',
  'repres',
  'famili',
  'dad',
  'love',
  'mom',
  'busi',
  'tell',
  'everyon',
  'facebook',
  'girlfriend',
  'came',
  'downstair',
  'ask',
  'would',
  'put',
  'mom',
  'without',
  'ask',
  'laugh',
  'face',
  'said',
  'mom',
  'grown',
  'woman',
  'parent',
  'took',
  'girlfriend',
  'side',
  'storm',
  'upstair',
  'could',
  'hear',
  'hour',
  'downstair',
  'parent',
  'left',
  'day',
  'cant',
  'bring',
  'talk',
  'behind',
  'back'],
 ['separ',
  'husband',
  'month',
  'saw',
  'side',
  'dad',
  'brother',
  'never',
  'thought',
  'would',
  'treat',
  'terribl',
  'side',
  'husband',
  'complet',
  'multipl',
  'occas',
  'told',
  'beg',
  'husband',
  'forgiv',
  'even',
  'though',
  'separ',
  'way',
  'treat',
  'made',
  'clear',
  'divorc',
  'would',
  'want',
  'noth',
  'time',
  'everyth',
  'stay',
  'husband',
  'good',
  'grace',
  'made',
  'everyth',
  'hurt',
  'twice',
  'much',
  'husband',
  'end',
  'reconcil',
  'admittedli',
  'cri',
  'told',
  'bad',
  'treat',
  'husband',
  'piss',
  'cut',
  'tie',
  'profession',
  'social',
  'dad',
  'brother',
  'ask',
  'speak',
  'mend',
  'thing',
  'hurt',
  'famili',
  'busi',
  'im',
  'still',
  'upset',
  'feel',
  'petti',
  'told',
  'tri',
  'beg',
  'forgiv',
  'theyr',
  'angri',
  'brother',
  'said',
  'im',
  'vindict',
  'aita'],
 ['ex',
  'cheat',
  'current',
  'wife',
  'year',
  'ago',
  'ex',
  'share',
  'three',
  'son',
  'ex',
  'wife',
  'daughter',
  'son',
  'ex',
  'also',
  'cheat',
  'ex',
  'two',
  'said',
  'meant',
  'great',
  'kid',
  'bigger',
  'happier',
  'famili',
  'blah',
  'blah',
  'blah',
  'way',
  'much',
  'sting',
  'affair',
  'partner',
  'marriag',
  'get',
  'call',
  'kid',
  'stepmom',
  'im',
  'sorri',
  'ex',
  'gone',
  'man',
  'slept',
  'behind',
  'back',
  'month',
  'husband',
  'found',
  'civil',
  'kid',
  'around',
  'ignor',
  'kid',
  'around',
  'whole',
  'thing',
  'happen',
  'ex',
  'parent',
  'disgust',
  'cheat',
  'mil',
  'told',
  'destroy',
  'kid',
  'foundat',
  'leav',
  'spous',
  'never',
  'easi',
  'divorc',
  'hard',
  'kid',
  'anyway',
  'add',
  'conflict',
  'way',
  'cheat',
  'take',
  'someth',
  'child',
  'rare',
  'ever',
  'get',
  'back',
  'parent',
  'still',
  'care',
  'want',
  'best',
  'despit',
  'togeth',
  'stay',
  'close',
  'welcom',
  'ex',
  'wife',
  'involv',
  'ex',
  'life',
  'sinc',
  'realli',
  'stepkid',
  'bother',
  'lot',
  'youngest',
  'son',
  'award',
  'school',
  'coupl',
  'week',
  'ago',
  'ex',
  'wife',
  'ex',
  'wife',
  'end',
  'come',
  'complain',
  'mine',
  'ex',
  'parent',
  'show',
  'briefli',
  'spoke',
  'son',
  'left',
  'say',
  'unfair',
  'kid',
  'understand',
  'ex',
  'famili',
  'noth',
  'never',
  'see',
  'know',
  'kid',
  'relationship',
  'said',
  'ex',
  'famili',
  'love',
  'hurt',
  'feel',
  'feel',
  'good',
  'enough',
  'ill',
  'honest',
  'roll',
  'eye',
  'first',
  'laugh',
  'seem',
  'expect',
  'sympathi',
  'help',
  'laugh',
  'piss',
  'heard',
  'ex',
  'sinc',
  'rude',
  'care',
  'kid',
  'least',
  'think',
  'kid',
  'keep',
  'bad',
  'blood',
  'us',
  'laugh',
  'suffer',
  'one',
  'part',
  'care',
  'believ',
  'im',
  'fine',
  'kid',
  'see',
  'anoth',
  'part',
  'wonder',
  'asshol',
  'laugh',
  'aita'],
 ['wife',
  'live',
  'suburban',
  'hous',
  'daughter',
  'emili',
  'neighbour',
  'next',
  'door',
  'walter',
  'singl',
  'father',
  'two',
  'daughter',
  'live',
  'littl',
  'two',
  'year',
  'wife',
  'realli',
  'like',
  'watch',
  'scari',
  'movi',
  'never',
  'enjoy',
  'get',
  'scare',
  'end',
  'bad',
  'time',
  'prefer',
  'avoid',
  'friend',
  'sometim',
  'go',
  'popular',
  'one',
  'also',
  'like',
  'older',
  'indi',
  'foreign',
  'horror',
  'movi',
  'alway',
  'hard',
  'time',
  'find',
  'peopl',
  'nich',
  'interest',
  'big',
  'deal',
  'met',
  'walter',
  'found',
  'also',
  'share',
  'tendenc',
  'quickli',
  'start',
  'make',
  'plan',
  'watch',
  'movi',
  'togeth',
  'invit',
  'part',
  'refus',
  'prefer',
  'stay',
  'home',
  'babysit',
  'emili',
  'walter',
  'daughter',
  'cinephil',
  'reunion',
  'sometim',
  'go',
  'movi',
  'theater',
  'time',
  'stay',
  'walter',
  'place',
  'watch',
  'stuf',
  'home',
  'cinema',
  'usual',
  'go',
  'anoth',
  'town',
  'order',
  'catch',
  'specif',
  'function',
  'weird',
  'movi',
  'normal',
  'come',
  'back',
  'late',
  'eventu',
  'start',
  'stuff',
  'outsid',
  'watch',
  'movi',
  'like',
  'go',
  'dinner',
  'walter',
  'invit',
  'us',
  'includ',
  'kid',
  'go',
  'restaur',
  'friend',
  'said',
  'expens',
  'like',
  'kind',
  'place',
  'feel',
  'wast',
  'money',
  'think',
  'kid',
  'would',
  'enjoy',
  'either',
  'insist',
  'stay',
  'kid',
  'let',
  'two',
  'go',
  'becam',
  'regular',
  'thing',
  'way',
  'good',
  'deal',
  'walter',
  'pay',
  'wife',
  'dinner',
  'cant',
  'longer',
  'complain',
  'take',
  'fanci',
  'restaur',
  'movi',
  'dinner',
  'night',
  'becam',
  'common',
  'grown',
  'littl',
  'tire',
  'burden',
  'constantli',
  'babysit',
  'girl',
  'talk',
  'wife',
  'walter',
  'explain',
  'usual',
  'like',
  'leav',
  'duaghter',
  'babysitt',
  'say',
  'realli',
  'comfort',
  'know',
  'watch',
  'experienc',
  'father',
  'like',
  'instead',
  'teenag',
  'girl',
  'nevertheless',
  'agre',
  'much',
  'load',
  'offer',
  'start',
  'pay',
  'standard',
  'babysitt',
  'fee',
  'time',
  'goe',
  'wife',
  'thought',
  'fair',
  'approach',
  'issu',
  'wife',
  'fulli',
  'say',
  'paid',
  'babysit',
  'daughter',
  'daughter',
  'close',
  'friend',
  'famili',
  'like',
  'walter',
  'argu',
  'insist',
  'notion',
  'open',
  'chang',
  'even',
  'get',
  'mad',
  'everi',
  'time',
  'talk',
  'walter',
  'promis',
  'convinc',
  'seem',
  'abl',
  'either',
  'asshol'],
 ['wife',
  'tradit',
  'everi',
  'christma',
  'would',
  'bake',
  'christma',
  'cooki',
  'frost',
  'freind',
  'wed',
  'give',
  'cooki',
  'freind',
  'famili',
  'helper',
  'everi',
  'year',
  'wife',
  'would',
  'take',
  'bulk',
  'bake',
  'duti',
  'insist',
  'knew',
  'bake',
  'right',
  'let',
  'whoever',
  'help',
  'frost',
  'alway',
  'insist',
  'bake',
  'frost',
  'fun',
  'part',
  'thing',
  'peopl',
  'want',
  'usual',
  'frost',
  'bake',
  'marathon',
  'would',
  'last',
  'wee',
  'hour',
  'morn',
  'sstart',
  'around',
  'noon',
  'well',
  'year',
  'reason',
  'relev',
  'post',
  'today',
  'would',
  'avail',
  'day',
  'normal',
  'sad',
  'abl',
  'cooki',
  'tradit',
  'said',
  'capabl',
  'bake',
  'cooki',
  'seem',
  'think',
  'joke',
  'could',
  'bassicli',
  'never',
  'well',
  'said',
  'id',
  'tri',
  'wish',
  'sarcast',
  'good',
  'luck',
  'well',
  'run-up',
  'day',
  'bake',
  'frost',
  'start',
  'run',
  'drill',
  'optim',
  'product',
  'enter',
  'test',
  'tragic',
  'mistak',
  'montagei',
  'start',
  'rearrang',
  'hous',
  'variou',
  'configur',
  'run',
  'test',
  'dough',
  'use',
  'see',
  'long',
  'took',
  'bake',
  'make',
  'appropri',
  'chang',
  'run',
  'tast',
  'tester',
  'substitut',
  'ingredi',
  'quicker',
  'bake',
  'time',
  'preserv',
  'tast',
  'make',
  'cooki',
  'thin',
  'possibl',
  'without',
  'compris',
  'frost',
  'ratio',
  'canva',
  'space',
  'creativ',
  'andor',
  'compris',
  'structur',
  'integr',
  'etc',
  'come',
  'day',
  'bake',
  'everyth',
  'scienc',
  'freind',
  'famili',
  'come',
  'give',
  'run',
  'coupl',
  'hour',
  'kink',
  'work',
  'cooki',
  'flow',
  'breakneck',
  'pace',
  'eventu',
  'start',
  'run',
  'materi',
  'someth',
  'never',
  'happen',
  'wife',
  'aegi',
  'start',
  'make',
  'run',
  'store',
  'necessari',
  'raw',
  'materi',
  'fuel',
  'mighti',
  'cooki',
  'forg',
  'time',
  'exhaust',
  'around',
  'produc',
  'least',
  'time',
  'amount',
  'cooki',
  'ever',
  'well',
  'wife',
  'get',
  'home',
  'coupl',
  'day',
  'later',
  'weirdli',
  'upset',
  'insist',
  'cooki',
  'tast',
  'weird',
  'spent',
  'much',
  'money',
  'activ',
  'tri',
  'make',
  'look',
  'bad',
  'make',
  'much',
  'truth',
  'ran',
  'blind',
  'test',
  'see',
  'anyon',
  'could',
  'differenti',
  'old',
  'recip',
  'mine',
  'one',
  'could',
  'also',
  'spent',
  '%',
  'year',
  'previou',
  'slot',
  'cheaper',
  'ingredi',
  'bought',
  'stuff',
  'bulk',
  'absolut',
  'zero',
  'intent',
  'upstag',
  'simpli',
  'goal',
  'maxim',
  'cooki',
  'product',
  'say',
  'even',
  'purpos',
  'thought',
  'made',
  'look',
  'circl',
  'embarrass',
  'actual',
  'call',
  'asshol',
  'never',
  'call',
  'asshol',
  'year',
  'marriag',
  'cant',
  'help',
  'think',
  'aita'],
 ['husband',
  'jack',
  'marri',
  'later',
  'life',
  '–',
  'second',
  'marriag',
  'us',
  'children',
  'biolog',
  'children',
  'still',
  'close',
  'former',
  'step-son',
  'thoma',
  'help',
  'rais',
  'well',
  'financi',
  '–',
  'jack',
  'jack',
  'busi',
  'front',
  'intend',
  'busi',
  'left',
  'children',
  'sign',
  'prenup',
  'wed',
  'basic',
  'said',
  'get',
  'keep',
  'brought',
  'marriag',
  'kept',
  'financ',
  'separ',
  'though',
  'contribut',
  'joint',
  'account',
  'household',
  'expens',
  '–',
  'split',
  'time',
  '–',
  'jack',
  'left',
  'everyth',
  'children',
  'left',
  'mine',
  'thoma',
  'awar',
  'done',
  'fine',
  'jack',
  'busi',
  'went',
  'year',
  'ago',
  'desper',
  'keep',
  'busi',
  'go',
  'pour',
  'save',
  'busi',
  'grandfath',
  'father',
  'determin',
  'abl',
  'hand',
  'children',
  'end',
  'lose',
  'almost',
  'everyth',
  'complet',
  'devast',
  'standard',
  'live',
  'wise',
  'much',
  'chang',
  'except',
  'pay',
  '%',
  'household',
  'expens',
  'love',
  'fine',
  'health',
  'scare',
  'month',
  'ago',
  'realiz',
  'die',
  'jack',
  'would',
  'left',
  'noth',
  'give',
  'everyth',
  'thoma',
  'told',
  'jack',
  'plan',
  'chang',
  'plan',
  'put',
  'third',
  'asset',
  'trust',
  'thomass',
  'children',
  'current',
  'call',
  'nana',
  'third',
  'directli',
  'thoma',
  'third',
  'trust',
  'jack',
  'would',
  'set',
  'jack',
  'would',
  'receiv',
  'gener',
  'monthli',
  'check',
  'die',
  'asset',
  'trust',
  'would',
  'go',
  'thoma',
  'way',
  'want',
  'jack',
  'taken',
  'care',
  'aliv',
  'want',
  'go',
  'thoma',
  '–',
  'jack',
  'kid',
  'jack',
  'furiou',
  'children',
  'go',
  'receiv',
  'anyth',
  'kept',
  'point',
  'step-children',
  'one',
  'former',
  'one',
  'kid',
  'get',
  'noth',
  'thoma',
  'everyth',
  'say',
  'time',
  'got',
  'togeth',
  'jack',
  'children',
  'grown',
  'one',
  'alreadi',
  'child',
  'anoth',
  'marri',
  'occasion',
  'holiday',
  'never',
  'live',
  'jack',
  'kid',
  'mine',
  'biolog',
  '–',
  'thoma',
  'son',
  'everi',
  'way',
  'count',
  'get',
  'along',
  'jack',
  'kid',
  'close',
  'jack',
  'threaten',
  'leav',
  'keep',
  'say',
  'care',
  'kid',
  'mean',
  'care',
  'ive',
  'told',
  'nonsens',
  'respond',
  'well',
  'ultimatum',
  'plan',
  'leav',
  'asset',
  'separ',
  'ever',
  'marri',
  'money',
  'suddenli',
  'want',
  'leav',
  'money',
  'kid',
  'aita',
  'want'],
 ['sorri',
  'format',
  'suck',
  'mobil',
  'type',
  'fiancéef',
  'never',
  'gotten',
  'along',
  'sister',
  'fiancé',
  'never',
  'like',
  'close',
  'sister',
  'caus',
  'argument',
  'propos',
  'fiancé',
  'sarah',
  'month',
  'ago',
  'thing',
  'go',
  'smoothli',
  'fact',
  'would',
  'say',
  'relationship',
  'never',
  'better',
  'day',
  'ago',
  'sarah',
  'list',
  'peopl',
  'want',
  'bridesmaid',
  'surprisingli',
  'sister',
  'one',
  'said',
  'plan',
  'ask',
  'month',
  'wed',
  'sarah',
  'ask',
  'knew',
  'want',
  'groomsmen',
  'list',
  'coupl',
  'friend',
  'sarah',
  'knew',
  'keegan',
  'joe',
  'sammi',
  'etc',
  'said',
  'want',
  'sister',
  'one',
  'groomsmen',
  'made',
  'sarah',
  'upset',
  'said',
  'tradit',
  'woman',
  'groomsman',
  'would',
  'embarrass',
  'explain',
  'sister',
  'one',
  'import',
  'peopl',
  'life',
  'go',
  'apart',
  'wed',
  'made',
  'sarah',
  'even',
  'upset',
  'accus',
  'tri',
  'ruin',
  'wed',
  'day',
  'lock',
  'bathroom',
  'day',
  'sinc',
  'spoken',
  'mani',
  'famili',
  'member',
  'reach',
  'ask',
  'includ',
  'sister',
  'wed',
  'sarah',
  'import',
  'woman',
  'life',
  'sister',
  'mil',
  'even',
  'call',
  'tell',
  'make',
  'sarah',
  'depress',
  'horribl',
  'person',
  'futur',
  'wife',
  'sister',
  'heard',
  'told',
  'okay',
  'invit',
  'stood',
  'ground',
  'told',
  'sister',
  'would',
  'includ',
  'matter',
  'aita',
  'edit',
  'sarah',
  'dislik',
  'stem',
  'walk',
  'sister',
  'cuddl',
  'sister',
  'head',
  'shoulder',
  'arm',
  'wrap',
  'around',
  'made',
  'sarah',
  'upset',
  'nd',
  'edit',
  'sister',
  'aromant',
  'told',
  'first',
  'came',
  'would',
  'like',
  'never',
  'get',
  'marri',
  'made',
  'sad',
  'told',
  'could',
  'apart',
  'wed',
  'even',
  'thing',
  'never',
  'forget',
  'look',
  'joy',
  'sister',
  'face',
  'back',
  'wonder',
  'rd',
  'edit',
  'plan',
  'call',
  'engag',
  'sarah',
  'get',
  'home',
  'work',
  'sister',
  'import',
  'miser',
  'marriag',
  'home',
  'around',
  'est',
  'lookout',
  'updat',
  'around',
  'th',
  'final',
  'edit',
  'hello',
  'reddit',
  'gon',
  'na',
  'littl',
  'long',
  'patient',
  'got',
  'home',
  'work',
  'told',
  'sarah',
  'need',
  'talk',
  'agre',
  'sat',
  'live',
  'room',
  'start',
  'ask',
  'problem',
  'sister',
  'groomsman',
  'also',
  'mani',
  'suggest',
  'sad',
  'trauma',
  'relat',
  'sarah',
  'told',
  'went',
  'say',
  'sister',
  'groomsman',
  'untradit',
  'said',
  'men',
  'groomsmen',
  'woman',
  'bridesmaid',
  'sarah',
  'also',
  'said',
  'uncomfort',
  'close',
  'sister',
  'ask',
  'elabor',
  'sarah',
  'impli',
  'sibl',
  'relationship',
  'said',
  'cuddl',
  'sibl',
  'someth',
  'never',
  'seen',
  'seem',
  'like',
  'someth',
  'normal',
  'sibl',
  'assur',
  'sarah',
  'noth',
  'like',
  'happen',
  'seem',
  'like',
  'want',
  'accept',
  'let',
  'argu',
  'gave',
  'sarah',
  'ultimatum',
  'could',
  'go',
  'coupl',
  'therapi',
  'could',
  'tri',
  'repair',
  'relationship',
  'sister',
  'tell',
  'famili',
  'stop',
  'guilt',
  'go',
  'call',
  'engag',
  'sarah',
  'blew',
  'said',
  'go',
  'stay',
  'mother',
  'famili',
  'law',
  'complet',
  'piss',
  'send',
  'hate',
  'messag',
  'facebook',
  'lol',
  'guess',
  'like',
  'end',
  'sarah',
  'wrap',
  'thing',
  'good',
  'note',
  'sister',
  'plan',
  'move',
  'mental',
  'health',
  'drain',
  'decid',
  'move',
  'togeth',
  'thank',
  'everyon',
  'stick',
  'appreci',
  'kind',
  'messag',
  'end',
  'show',
  'sister',
  'delight'],
 ['live',
  'basement',
  'suit',
  'laundri',
  'room',
  'next',
  'room',
  'share',
  'famili',
  'rent',
  'part',
  'rental',
  'agreement',
  'one',
  'day',
  'week',
  'famili',
  'unlock',
  'door',
  'laundri',
  'room',
  'lead',
  'suit',
  'thu',
  'access',
  'room',
  'day',
  'put',
  'cloth',
  'machin',
  'shut',
  'door',
  'suit',
  'hear',
  'rucku',
  'stair',
  'laundri',
  'room',
  'lead',
  'rest',
  'hous',
  'assum',
  'access',
  'laundri',
  'room',
  'cloth',
  'dri',
  'laundri',
  'room',
  'sudden',
  'hear',
  'yell',
  'wife',
  'next',
  'thing',
  'know',
  'ambul',
  'arriv',
  '&',
  'xb',
  'soon',
  'learn',
  'appar',
  'year',
  'old',
  'open',
  'dryer',
  'climb',
  'dryer',
  'faulti',
  'shut',
  'open',
  'door',
  'yea',
  'kid',
  'tumbl',
  'door',
  'open',
  'machin',
  'shut',
  'door',
  'open',
  '&',
  'xb',
  'last',
  'week',
  'kid',
  'turn',
  'rel',
  'fine',
  'landlord',
  'landladi',
  'want',
  'reimburs',
  'son',
  'ambul',
  'bill',
  'medic',
  'bill',
  'insur',
  'total',
  '$',
  'laundri',
  'kid',
  'climb',
  'realli',
  '&',
  'xb',
  'think',
  'respons',
  'charg',
  'watch',
  'kid',
  'pay',
  'insan',
  'amount',
  'rent',
  'begin',
  'agre',
  'babysit',
  'anyon',
  'addit',
  'laundri',
  'machin',
  'appar',
  'faulti',
  '&',
  'xb',
  '&',
  'xb',
  'insist',
  'sure',
  'went',
  'forum',
  'orient',
  'toward',
  'landlord',
  'see',
  'realli',
  'respons',
  'ask',
  'famili',
  'ever',
  'rais',
  'rent',
  'live',
  'one',
  'year',
  'month',
  'admit',
  'rais',
  'rent',
  'leas',
  'renew',
  'first',
  'year',
  'still',
  'chariti',
  'pay',
  'rent',
  'time',
  'everytim',
  'caus',
  'problem',
  'assum',
  'collect',
  'littl',
  'extra',
  'still',
  'better',
  'risk',
  'tri',
  'find',
  'tenant',
  'troubl',
  'etc',
  'atleast',
  'think',
  'anyway',
  'plan',
  'stay',
  'leas',
  'end',
  'anyway',
  'told',
  'landlord',
  'grate',
  'rais',
  'rent',
  'pay',
  'moral',
  'fair',
  'aita',
  '&',
  'xb',
  'edit',
  'thank',
  'advic',
  'discuss',
  'lawyer',
  'think',
  'tri',
  'pursu',
  'outsid',
  'guilt',
  'trip',
  'think',
  'know',
  'realli',
  'case',
  'clear',
  'thing',
  'ye',
  'laundri',
  'week',
  'singl',
  'person',
  'load',
  'one',
  'day',
  'week',
  'enough',
  'fair',
  'landpeopl',
  'express',
  'let',
  'know',
  'need',
  'extra',
  'day',
  'whatev',
  'laundri',
  'seem',
  'chill',
  'part',
  'idk',
  'ive',
  'never',
  'taken',
  'offer',
  'know',
  'kid',
  'got',
  'tini',
  'like',
  'newborn',
  'door',
  'take',
  'much',
  'effort',
  'open',
  'idk',
  'responsibl',
  'know',
  'ye',
  'realli',
  'major',
  'respons',
  'landlord',
  'forum',
  'go',
  'detail',
  'caus',
  'need',
  'state',
  'verdict',
  'came',
  'poni',
  'fair',
  'ye',
  'commentsdiscuss',
  'stupid',
  'situat',
  'sympathi',
  'toward',
  'major',
  'verdict',
  'echo',
  'chamber',
  'wasa',
  'whether',
  'pay',
  'grate',
  'rais',
  'rent',
  'pay',
  'risk',
  'leechor',
  'nice',
  'deal',
  'tenant',
  'easi',
  'mind',
  'ive',
  'never',
  'caus',
  'troubl',
  'begin',
  'asid',
  'audac',
  'dri',
  'cloth',
  'st',
  'centuri',
  'machin',
  'kid',
  'climb',
  'guess',
  'close',
  'dryer',
  'kid',
  'wth',
  'im',
  'assum',
  'tumbledw',
  'still',
  'run',
  'open',
  'door',
  'troubl',
  'leav',
  'machin',
  'liter',
  'roll',
  'around',
  'insid',
  'question',
  'medic',
  'bill',
  'graduat',
  'student',
  'long',
  'term',
  'exchang',
  'program',
  'canada',
  'ive',
  'never',
  'paid',
  'medic',
  'bill',
  'life',
  'accept',
  'fact',
  'would',
  'expens'],
 ['throw',
  'pretti',
  'big',
  'christma',
  'parti',
  'everi',
  'year',
  'go',
  'decad',
  'year',
  'ago',
  'one',
  'threw',
  'friend',
  'tara',
  'met',
  'former',
  'co-work',
  'toni',
  'hit',
  'date',
  'two',
  'year',
  'later',
  'christma',
  'parti',
  'show',
  'ring',
  'finger',
  'announc',
  'first',
  'time',
  'engag',
  'super',
  'happi',
  'got',
  'marri',
  'spring',
  'get',
  'invit',
  'send',
  'around',
  'parti',
  'invit',
  'year',
  'see',
  'reason',
  'invit',
  'back',
  'think',
  'worthi',
  'make',
  'guest',
  'list',
  'known',
  'year',
  'basic',
  'introduc',
  'liter',
  'announc',
  'engag',
  'home',
  'got',
  'back',
  'today',
  'theyr',
  'upset',
  'us',
  'invit',
  'year',
  'parti',
  'someth',
  'consid',
  'special',
  'think',
  'im',
  'petti',
  'coupl',
  'friend',
  'mention',
  'smaller',
  'wed',
  'feel',
  'like',
  'im',
  'punish',
  'though',
  'probabl',
  'peopl',
  'knew',
  'least',
  'littl',
  'surpris',
  'name',
  'made',
  'cut',
  'us',
  'make',
  'stink',
  'anyth',
  'see',
  'welcom',
  'home',
  'snub',
  'like',
  'partner',
  'think',
  'let',
  'go',
  'invit',
  'back',
  'see',
  'reason',
  'aita'],
 ['friend',
  'nick',
  'wife',
  'jess',
  'babi',
  'im',
  'close',
  'friend',
  'babi',
  'look',
  'like',
  'nick',
  'question',
  'relat',
  'one',
  'nick',
  'friend',
  'bit',
  'mgtow',
  'type',
  'guy',
  'brainwash',
  'nick',
  'want',
  'take',
  'patern',
  'test',
  'nick',
  'ask',
  'advic',
  'bring',
  'topic',
  'jess',
  'shock',
  'thought',
  'relationship',
  'good',
  'trust',
  'babi',
  'look',
  'like',
  'nick',
  'start',
  'ask',
  'nick',
  'question',
  'think',
  'jess',
  'cheat',
  'made',
  'suspici',
  'admit',
  'anyth',
  'need',
  'test',
  'certain',
  'told',
  'nick',
  'bad',
  'idea',
  'could',
  'realli',
  'hurt',
  'jess',
  'extrem',
  'traumat',
  'birth',
  'babi',
  'huge',
  'get',
  'epidur',
  'everyth',
  'rip',
  'think',
  'might',
  'even',
  'postpartum',
  'depress',
  'need',
  'support',
  'love',
  'accus',
  'cheat',
  'kept',
  'say',
  'need',
  'certain',
  'jess',
  'understand',
  'ask',
  'would',
  'feel',
  'jess',
  'ask',
  'patern',
  'test',
  'anna',
  'femal',
  'best',
  'friend',
  'babi',
  'born',
  'last',
  'year',
  'said',
  'would',
  'realli',
  'disappoint',
  'jess',
  'would',
  'make',
  'rethink',
  'entir',
  'relationship',
  'possibl',
  'even',
  'break',
  'differ',
  'jess',
  'spend',
  'money',
  'rais',
  'anna',
  'babi',
  'think',
  'might',
  'nick',
  'mad',
  'support',
  'help',
  'say',
  'im',
  'woman',
  'could',
  'never',
  'understand',
  'father',
  'im',
  'even',
  'tri',
  'understand',
  'it…',
  'partial',
  'true',
  'say',
  'thing',
  'even',
  'tri',
  'understand',
  'mother',
  'baselessli',
  'accus',
  'cheat',
  'traumat',
  'birth',
  'aita',
  'edit',
  'clarif',
  'nick',
  'babi',
  'anna',
  'best',
  'friend',
  'anna',
  'babi',
  'boyfriend',
  'tri',
  'use',
  'exampl',
  'ask',
  'nick',
  'would',
  'feel',
  'jess',
  'ask',
  'patern',
  'test',
  'sure',
  'nick',
  'cheat',
  'anna',
  'father',
  'anna',
  'child',
  'exampl',
  'hope',
  'make',
  'see',
  'hurt',
  'accus',
  'like'],
 ['im',
  'part',
  'time',
  'braider',
  'take',
  'job',
  'serious',
  'make',
  'money',
  'want',
  'career',
  'work',
  'pm-pm',
  'weekday',
  'am-pm',
  'weekend',
  'school',
  'first',
  'prioriti',
  'weekend',
  'enjoy',
  'weekend',
  'import',
  'polici',
  'book',
  'link',
  'even',
  'book',
  'appoint',
  'read',
  'polici',
  'coupl',
  'polici',
  'show=no',
  'appoint',
  'minut',
  'grace',
  'period',
  'appoint',
  'cancel',
  'extra',
  'peopl',
  'etc',
  'etc',
  'client',
  'respect',
  'rule',
  'alway',
  'come',
  'girl',
  'tiffani',
  'book',
  'appoint',
  'june',
  'th',
  'pm',
  'get',
  'wig',
  'instal',
  'braid',
  'applic',
  'anoth',
  'client',
  'right',
  'braid',
  'wear',
  'braid',
  'braid',
  'know',
  'braid',
  'take',
  'hour',
  'braid',
  'alreadi',
  'take',
  'hour',
  'plu',
  'book',
  'take',
  'shampoo',
  'extra',
  'time',
  'came',
  'time',
  'tiffani',
  'appoint',
  'set',
  'everyth',
  'pm',
  'came',
  'minut',
  'grace',
  'period',
  'worri',
  'minut',
  'text',
  'ask',
  'still',
  'come',
  'never',
  'receiv',
  'text',
  'back',
  'go',
  'took',
  'show',
  'put',
  'stuff',
  'away',
  'start',
  'get',
  'stuff',
  'readi',
  'next',
  'client',
  'text',
  'tiffani',
  'told',
  'appoint',
  'cancel',
  'could',
  'come',
  'pick',
  'wig',
  'custom',
  'everyth',
  'free',
  'need',
  'someon',
  'els',
  'instal',
  'never',
  'receiv',
  'text',
  'back',
  'next',
  'client',
  'came',
  'around',
  'start',
  'work',
  'head',
  'mayb',
  'around',
  'ish',
  'mom',
  'call',
  'told',
  'client',
  'door',
  'work',
  'hous',
  'come',
  'see',
  'get',
  'cut',
  'outsid',
  'stop',
  'middl',
  'client',
  'hair',
  'go',
  'see',
  'tiffani',
  'tri',
  'cuss',
  'say',
  'ruin',
  'babi',
  'shower',
  'appoint',
  'cancel',
  'explain',
  'polici',
  'minut',
  'late',
  'even',
  'hour',
  'hour',
  'late',
  'hair',
  'anymor',
  'gave',
  'wig',
  'sent',
  'way',
  'start',
  'talk',
  'social',
  'media',
  'everybodi',
  'comment',
  'drag',
  'say',
  'im',
  'unprofession',
  'book',
  'ive',
  'noth',
  'profession',
  'cant',
  'respect',
  'rule',
  'get',
  'hair',
  'done',
  'plenti',
  'hairstylist',
  'stay',
  'mom',
  'said',
  'im',
  'wrong',
  'im',
  'get',
  'lot',
  'messag',
  'get',
  'lot',
  'comment',
  'post',
  'talk',
  'unprofession',
  'im',
  'noth',
  'respect',
  'time',
  'ive',
  'even',
  'client',
  'cancel',
  'appoint',
  'see',
  'post',
  'im',
  'lose',
  'money',
  'client',
  'petti',
  'mess',
  'know',
  'im',
  'wrong',
  'aita',
  'updat',
  'text',
  'privat',
  'receiv',
  'respons',
  'back',
  'took',
  'advic',
  'comment',
  'mostli',
  'ubiterdicta',
  'comment',
  'post',
  'say',
  'said',
  'comment',
  'comment',
  'mix',
  'togeth',
  'say',
  'anyth',
  'back',
  'post',
  'magic',
  'delet',
  '|',
  'would',
  'like',
  'public',
  'apolog',
  'ill',
  'take',
  'post',
  'delet',
  'knew',
  'wrong',
  'chock',
  'ive',
  'never',
  'realli',
  'anyth',
  'happen',
  'like',
  'lot',
  'comment',
  'realli',
  'appreci',
  'want',
  'thank',
  'honestli',
  'stuck',
  'busi',
  'young',
  'age',
  'hard',
  'im',
  'busi',
  'forese',
  'thank',
  'yall',
  'much',
  'bless',
  'posit',
  'comment',
  'realli',
  'mean',
  'lot',
  'could',
  'hair',
  'free',
  'would',
  'lol',
  'good',
  'daynight',
  '❤️'],
 ['titl',
  'say',
  'im',
  'boyfriend',
  'alway',
  'live',
  'home',
  'mom',
  'chore',
  'move',
  'week',
  'ago',
  'ask',
  'help',
  'learn',
  'certain',
  'thing',
  'start',
  'cook',
  'figur',
  'would',
  'one',
  'use',
  'skill',
  'know',
  'everi',
  'night',
  'im',
  'cook',
  'help',
  'bit',
  'explain',
  'thing',
  'first',
  'two',
  'week',
  'week',
  'told',
  'tri',
  'without',
  'help',
  'found',
  'easi',
  'recip',
  'food',
  'like',
  'left',
  'tri',
  'thing',
  'everi',
  'singl',
  'night',
  'week',
  'ive',
  'big',
  'part',
  'cook',
  'know',
  'cut',
  'know',
  'tast',
  'better',
  'im',
  'tire',
  'cook',
  'ive',
  'almost',
  'chore',
  'told',
  'im',
  'done',
  'hell',
  'laundri',
  'cook',
  'everi',
  'day',
  'dish',
  'day',
  'cook',
  '*',
  'ask',
  '*',
  'certain',
  'thing',
  'cant',
  'find',
  'answer',
  'show',
  'got',
  'upset',
  'relationship',
  'help',
  'feel',
  'like',
  'want',
  'learn',
  'push',
  'thing',
  'ive',
  'shown',
  'make',
  'french',
  'toast',
  'twice',
  'still',
  'claim',
  'know',
  'even',
  'wrote',
  'recip',
  'want',
  'put',
  'effort',
  'instead',
  'expect',
  'ive',
  'talk',
  'mom',
  'said',
  'grate',
  'even',
  'ask',
  'learn',
  'boyfriend',
  'think',
  'want',
  'help',
  'anyth',
  'think',
  'grown',
  'man',
  'need',
  'hand',
  'held',
  'entir',
  'way',
  'especi',
  'simpler',
  'stuff',
  'aita',
  'edit',
  'cook',
  'also',
  'thing',
  'like',
  'vacuum',
  'dish',
  'think',
  'lack',
  'confid',
  'know',
  'thing',
  'seen',
  'vacuum',
  'ive',
  'explain',
  'still',
  'want',
  'show'],
 ['friend',
  'jame',
  'close',
  'friend',
  'sinc',
  'primari',
  'school',
  'jame',
  'date',
  'janet',
  'month',
  'janet',
  'believ',
  'women',
  'all-natur',
  'mean',
  'makeup',
  'plastic',
  'surgeri',
  'tattoo',
  'pierc',
  'anyth',
  'superfici',
  'put',
  'ive',
  'properli',
  'spoken',
  'time',
  'alway',
  'brought',
  'girlfriend',
  'nicol',
  'togeth',
  'year',
  'long',
  'ive',
  'known',
  'ive',
  'known',
  'glam',
  'ive',
  'rare',
  'seen',
  'leav',
  'hous',
  'without',
  'makeup',
  'though',
  'time',
  'cant',
  'tell',
  'dress',
  'nicol',
  'nose',
  'pierc',
  'ear',
  'pierc',
  'tattoo',
  'candid',
  'get',
  'nose',
  'done',
  'everyth',
  'janet',
  'hate',
  'week',
  'ago',
  'jame',
  'invit',
  'us',
  'beach',
  'hous',
  'relax',
  'week',
  'away',
  'citi',
  'go',
  'jame',
  'janet',
  'nicol',
  'thought',
  'go',
  'fun',
  'time',
  'way',
  'get',
  'know',
  'janet',
  'bit',
  'better',
  'sinc',
  'nicol',
  'jame',
  'alreadi',
  'great',
  'friend',
  'nicol',
  'read',
  'book',
  'loung',
  'sun',
  'janet',
  'ask',
  'want',
  'go',
  'swim',
  'nicol',
  'declin',
  'terribl',
  'swimmer',
  'want',
  'ruin',
  'hair',
  'second',
  'part',
  'joke',
  'janet',
  'scof',
  'mutter',
  'someth',
  'nicol',
  'snobbi',
  'bitch',
  'nicol',
  'brush',
  'dinner',
  'janet',
  'kept',
  'insult',
  'nicol',
  'everyth',
  'nicol',
  'would',
  'speak',
  'janet',
  'would',
  'call',
  'posh',
  'pretenti',
  'brat',
  'jame',
  'would',
  'laugh',
  'someth',
  'said',
  'would',
  'immedi',
  'turn',
  'nicol',
  'say',
  'someth',
  'like',
  'men',
  'prefer',
  'all-natur',
  'women',
  'made',
  'whole',
  'dinner',
  'awkward',
  'ask',
  'janet',
  'stop',
  'multipl',
  'time',
  'first',
  'nicol',
  'laugh',
  'make',
  'joke',
  'whole',
  'thing',
  'eventu',
  'got',
  'uncomfort',
  'hat',
  'left',
  'tabl',
  'janet',
  'call',
  'fake',
  'sensit',
  'told',
  'shut',
  'fuck',
  'left',
  'tabl',
  'janet',
  'woke',
  'nicol',
  'nap',
  'pour',
  'cold',
  'water',
  'throw',
  'dress',
  'pool',
  'loosen',
  'left',
  'soon',
  'could',
  'jame',
  'apologis',
  'profus',
  'behaviour',
  'ive',
  'told',
  'comfort',
  'hang',
  'janet',
  'yet',
  'ask',
  'apologis',
  'janet',
  'ruin',
  'good',
  'time',
  'help',
  'resolv',
  'conflict',
  'said',
  'apologis',
  'janet',
  'refus',
  'thought',
  'accept',
  'ran',
  'jame',
  'janet',
  'store',
  'jame',
  'confront',
  'ask',
  'apologis',
  'janet',
  'look',
  'desper',
  'could',
  'tell',
  'realli',
  'want',
  'apologis',
  'look',
  'janet',
  'straight',
  'eye',
  'told',
  'im',
  'sorri',
  'jealou',
  'vindict',
  'bitch',
  'ask',
  'leav',
  'alon',
  'got',
  'bunch',
  'angri',
  'call',
  'jame',
  'call',
  'petti',
  'hypocrit',
  'name-cal',
  'janet',
  'nicol',
  'think',
  'handl',
  'situat',
  'better'],
 ['yesterday',
  'make',
  'lunch',
  'heard',
  'realli',
  'loud',
  'sound',
  'ceil',
  'fall',
  'bookshelf',
  'fallen',
  'husband',
  'daughter',
  'person',
  'hous',
  'son',
  'pretti',
  'sure',
  'room',
  'opposit',
  'side',
  'hous',
  'kitchen',
  'make',
  'way',
  'check',
  'everi',
  'room',
  'everyth',
  'seem',
  'order',
  'knock',
  'son',
  'door',
  'call',
  'name',
  'answer',
  'must',
  'knockedcal',
  'time',
  'tri',
  'open',
  'door',
  'lock',
  'point',
  'get',
  'realli',
  'freak',
  'think',
  'mayb',
  'tip',
  'wardrob',
  'bookshelf',
  'fallen',
  'pass',
  'floor',
  'basic',
  'scream',
  'name',
  'answer',
  'idea',
  'threw',
  'door',
  'broke',
  'clearli',
  'door',
  'alreadi',
  'weak',
  'im',
  'think',
  'termit',
  'yeah',
  'broke',
  'son',
  'fine',
  'freak',
  'door',
  'fine',
  'sound',
  'tv',
  'volum',
  'max',
  'appar',
  'answer',
  'call',
  'want',
  'bother',
  'movi',
  'word',
  'scream',
  'like',
  'harpi',
  'annoy',
  'tri',
  'watch',
  'movi',
  'fix',
  'door',
  'said',
  'go',
  'fix',
  'sinc',
  'fix',
  'would',
  'buy',
  'new',
  'door',
  'door',
  'expens',
  'soon',
  'dad',
  'got',
  'home',
  'would',
  'remov',
  'door',
  'entir',
  'broken',
  'stay',
  'got',
  'realli',
  'mad',
  'said',
  'right',
  'door',
  'deserv',
  'privaci',
  'said',
  'door',
  'one',
  'broke',
  'consequ',
  'action',
  'want',
  'door',
  'would',
  'buy',
  'know',
  'money',
  'right',
  'door',
  'chang',
  'bathroom',
  'said',
  'fuck',
  'said',
  'ground',
  'aita',
  'door',
  'husband',
  'fine',
  'say',
  'know',
  'scare',
  'know',
  'appropri',
  'punish',
  'im',
  'terrifi',
  'anyth',
  'happen',
  'realli',
  'need',
  'reach',
  'son',
  'abl',
  'calm',
  'sinc',
  'im',
  'wonder',
  'mayb',
  'im',
  'asshol'],
 ['background',
  'sf',
  'husband',
  'sm',
  'bought',
  '-bedroom',
  'hous',
  'year',
  'ago',
  'shortli',
  'panini',
  'cours',
  'took',
  'master',
  'bedroom',
  'two',
  'bedroom',
  'went',
  'children',
  'put',
  'nice',
  'doubl',
  'bed',
  'larger',
  'room',
  'singl',
  'bed',
  'smaller',
  'room',
  'told',
  'could',
  'choos',
  'room',
  'whoever',
  'end',
  'larger',
  'room',
  'may',
  'ask',
  'share',
  'reloc',
  'visit',
  'famili',
  'member',
  'whoever',
  'end',
  'smaller',
  'room',
  'would',
  'themself',
  'alway',
  'almost',
  'never',
  'famili',
  'hubbi',
  'children',
  'parent',
  'provinc',
  'surpris',
  'older',
  'daughter',
  'chose',
  'smaller',
  'room',
  'younger',
  'son',
  'chose',
  'larger',
  'room',
  'ok',
  'work',
  'seem',
  'happi',
  'choic',
  'ok',
  'remain',
  'way',
  'coupl',
  'year',
  '-day',
  'weekend',
  'come',
  'kid',
  'mother',
  'decid',
  'come',
  'visit',
  'cours',
  'told',
  'ok',
  'husband',
  'seen',
  'awhil',
  'told',
  'son',
  'larger',
  'room',
  'bed',
  'grandma',
  'would',
  'day',
  'would',
  'use',
  'bed',
  'well',
  'son',
  'threw',
  'fit',
  'want',
  'share',
  'room',
  'grandma',
  'even',
  'air',
  'mattress',
  'even',
  'night',
  'smell',
  'funni',
  'remind',
  'origin',
  'deal',
  'offer',
  'put',
  'air',
  'mattress',
  'live',
  'room',
  'enough',
  'hed',
  'privaci',
  'sister',
  'offer',
  'let',
  'put',
  'air',
  'mattress',
  'room',
  'requir',
  'ok',
  'either',
  'husband',
  'offer',
  'let',
  'put',
  'air',
  'mattress',
  'room',
  'said',
  'share',
  'room',
  'parent',
  'yugh',
  'god',
  'bless',
  'privileg',
  'whatev',
  'final',
  'put',
  'foot',
  'said',
  'condit',
  'bigger',
  'room',
  'give',
  'visit',
  'famili',
  'member',
  'one',
  'way',
  'anoth',
  'sleep',
  'air',
  'mattress',
  'night',
  'choos',
  'air',
  'mattress',
  'goe',
  'room',
  'room',
  'live',
  'room',
  'liter',
  'room',
  'hous',
  'sleep',
  'air',
  'mattress',
  'grandma',
  'shortli',
  'confront',
  'husband',
  'came',
  'suggest',
  'encourag',
  'mom',
  'stay',
  'hotel',
  'ask',
  'go',
  'pay',
  'hotel',
  'sinc',
  'cant',
  'afford',
  'cant',
  'afford',
  'put',
  'went',
  'silent',
  'call',
  'ta',
  'forc',
  'son',
  'give',
  'room',
  'three',
  'night',
  'suggest',
  'tell',
  'mom',
  'come',
  'sinc',
  'appar',
  'none',
  'us',
  'afford',
  'edit',
  'sincer',
  'appreci',
  'everyon',
  'comment',
  'judgement',
  'offici',
  'reach',
  'point',
  'everi',
  'time',
  'look',
  'notif',
  'add',
  'everi',
  'second',
  'without',
  'even',
  'hit',
  'refresh',
  'clearli',
  'post',
  'main',
  'account',
  'sinc',
  'appar',
  'reddit',
  'karma',
  'import',
  'way',
  'lol',
  'follow',
  'common',
  'aita',
  'trend',
  'respond',
  'common',
  'theme',
  'offer',
  'husband',
  'bed',
  'mom',
  'husband',
  'back',
  'problem',
  'also',
  'viabli',
  'sleep',
  'air',
  'mattress',
  'go',
  'detail',
  'also',
  'assum',
  'incred',
  'obviou',
  'everyon',
  'viabl',
  'husband',
  'mother',
  'sleep',
  'bed',
  'togeth',
  'sleep',
  'air',
  'mattress',
  'mention',
  'would',
  'never',
  'allow',
  'give',
  'bed',
  'visitor',
  'mom',
  'sleep',
  'couchair',
  'mattress',
  'year',
  'old',
  'need',
  'say',
  'anyth',
  'involv',
  'son',
  'daughter',
  'switch',
  'room',
  'daughter',
  'help',
  'short',
  'term',
  'seem',
  'bit',
  'smug',
  'right',
  'overal',
  'room',
  'choic',
  'desir',
  'switch',
  'room',
  'forc',
  'kind',
  'parent',
  'would',
  'hold',
  'son',
  'letter',
  'deal',
  'go',
  'back',
  'word',
  'daughter',
  'may',
  'decid',
  'im',
  'ta',
  'ill',
  'accept',
  'hypocrit',
  'fulli',
  'awar',
  'privaci',
  'yo',
  'boy',
  'requir',
  'weve',
  'convers',
  'prompt',
  'coupl',
  'comment',
  'also',
  'recent',
  'ask',
  'husband',
  'privat',
  'convers',
  'son',
  'would',
  'way',
  'chang',
  'situat',
  'said',
  'sinc',
  'current',
  'reason',
  'believ',
  'husband',
  'would',
  'lie',
  'outright',
  'im',
  'consid',
  'convers',
  'close',
  'rip',
  'dm',
  'appar',
  'lol',
  'know',
  'happen',
  '-someth',
  'marri',
  'mom',
  'pleas',
  'know',
  'interest'],
 ['niec',
  'lili',
  'lili',
  'result',
  'affair',
  'ex',
  'fiance',
  'brother',
  'still',
  'togeth',
  'led',
  'believ',
  'lili',
  'mine',
  'throughout',
  'entir',
  'pregnanc',
  'almost',
  'sign',
  'birth',
  'certif',
  'ex',
  'confess',
  'guilt',
  'lili',
  'probabl',
  'brother',
  'dna',
  'test',
  'lili',
  'mine',
  'teen',
  'got',
  'accid',
  'left',
  'infertil',
  'doctor',
  'said',
  'chanc',
  'father',
  'child',
  'slim',
  'nonexist',
  'imagin',
  'crush',
  'felt',
  'discov',
  'im',
  'go',
  'father',
  'also',
  'betray',
  'peopl',
  'love',
  'year',
  'sinc',
  'well',
  'im',
  'first',
  'famili',
  'attend',
  'univers',
  'land',
  'high',
  'pay',
  'job',
  'right',
  'graduat',
  'busi',
  'invest',
  'properti',
  'sinc',
  'im',
  'singl',
  'childless',
  'spend',
  'incom',
  'howev',
  'pleas',
  'ex',
  'end',
  'marri',
  'brother',
  'im',
  'somewhat',
  'cordial',
  'toward',
  'cant',
  'bring',
  'fulli',
  'forgiv',
  'although',
  'know',
  'lili',
  'blameless',
  'whenev',
  'see',
  'im',
  'constantli',
  'remind',
  'overjoy',
  'hold',
  'hospit',
  'think',
  'mine',
  'cant',
  'bare',
  'look',
  'long',
  'visit',
  'grow',
  'take',
  'fun',
  'trip',
  'give',
  'lavish',
  'gift',
  'like',
  'rest',
  'niec',
  'nephew',
  'mean',
  'hate',
  'admit',
  'kept',
  'distanc',
  'oldest',
  'nephew',
  'turn',
  'decid',
  'pay',
  'colleg',
  'educ',
  'sinc',
  'could',
  'efford',
  'parent',
  'even',
  'rent',
  'one',
  'apart',
  'cheap',
  'worri',
  'money',
  'could',
  'focu',
  'get',
  'educ',
  'sinc',
  'thing',
  'niec',
  'last',
  'week',
  'lili',
  'approach',
  'famili',
  'event',
  'inquir',
  'could',
  'pay',
  'educ',
  'told',
  'call',
  'jerk',
  'ask',
  'distant',
  'toward',
  'parent',
  'point',
  'even',
  'favor',
  'rest',
  'cousin',
  'told',
  'parent',
  'enough',
  'money',
  'afford',
  'educ',
  'ask',
  'could',
  'possibl',
  'expect',
  'ok',
  'watch',
  'ex',
  'brother',
  'affair',
  'behind',
  'back',
  'play',
  'happi',
  'famili',
  'front',
  'lili',
  'got',
  'quiet',
  'rest',
  'event',
  'left',
  'earli',
  'later',
  'got',
  'call',
  'ex',
  'yell',
  'ruin',
  'famili',
  'appar',
  'brother',
  'bother',
  'tell',
  'lili',
  'year',
  'ago',
  'know',
  'angri',
  'decid',
  'go',
  'live',
  'bf',
  'famili',
  'im',
  'start',
  'feel',
  'guilti',
  'told',
  'truth',
  'sinc',
  'affect',
  'thought',
  'would',
  'time',
  'grown',
  'enough',
  'know',
  'truth',
  'think',
  'couldv',
  'lie',
  'face',
  'even',
  'want',
  'aita',
  'quick',
  'editupd',
  'ask',
  'hard',
  'look',
  'lili',
  'year',
  'coupl',
  'reason',
  'sum',
  'ex',
  'began',
  'date',
  'broke',
  'year',
  'knew',
  'infertil',
  'issu',
  'much',
  'want',
  'dad',
  'still',
  'led',
  'believ',
  'babi',
  'mine',
  'name',
  'lili',
  'born',
  'sinc',
  'alway',
  'like',
  'name',
  'want',
  'name',
  'daughter',
  'ex',
  'chang',
  'name',
  'even',
  'discov',
  'mine',
  'brother',
  'look',
  'alik',
  'lili',
  'look',
  'like',
  'brother',
  'result',
  'also',
  'look',
  'lot',
  'like',
  'ex',
  'tell',
  'back',
  'father',
  'suspect',
  'thing',
  'wit',
  'child',
  'look',
  'like',
  'name',
  'chose',
  'rais',
  'woman',
  'love',
  'long',
  'infertil',
  'realli',
  'made',
  'imposs',
  'activ',
  'part',
  'lili',
  'life',
  'like',
  'cousin',
  'resent',
  'sake',
  'mental',
  'health',
  'decid',
  'listen',
  'advic',
  'text',
  'lili',
  'ask',
  'would',
  'like',
  'meet',
  'convers',
  'went',
  'sinc',
  'like',
  'said',
  'deserv',
  'answer',
  'repli',
  'yet',
  'ill',
  'updat',
  'updat',
  'ive',
  'met',
  'lili',
  'yesterday',
  'told',
  'relationship',
  'mother',
  'start',
  'went',
  'detail',
  'accid',
  'went',
  'cheat',
  'birth',
  'got',
  'everyth',
  'ask',
  'turn',
  'told',
  'everyth',
  'parent',
  'told',
  'grow',
  'appar',
  'told',
  'around',
  'time',
  'born',
  'miracl',
  'babi',
  'name',
  'lili',
  'die',
  'hospit',
  'sinc',
  'share',
  'name',
  'held',
  'sort',
  'resent',
  'toward',
  'still',
  'process',
  'told',
  'feel',
  'like',
  'twist',
  'retel',
  'actual',
  'happen',
  'insult',
  'needl',
  'say',
  'lot',
  'cri',
  'involv',
  'apolog',
  'end',
  'lili',
  'said',
  'better',
  'know',
  'truth',
  'bf',
  'famili',
  'amaz',
  'support',
  'throughout',
  'famili',
  'decid',
  'offici',
  'cut',
  'contact',
  'ex',
  'brother',
  'lili',
  'adult',
  'need',
  'also',
  'invit',
  'along',
  'see',
  'ask',
  'go',
  'therapi',
  'ye',
  'therapist',
  'one',
  'suggest',
  'distanc',
  'lili',
  'parent',
  'year',
  'ago',
  'honestli',
  'wonder',
  'mental',
  'health',
  'cant',
  'say',
  'regret',
  'decis',
  'suicid',
  'back',
  'think',
  'regular',
  'contact',
  'wouldv',
  'possibl',
  'done',
  'good',
  'decid',
  'ill',
  'tri',
  'best',
  'involv',
  'lili',
  'life',
  'interact',
  'parent',
  'inord',
  'meet',
  'lili',
  'agre',
  'said',
  'also',
  'want',
  'get',
  'know',
  'better',
  'overal',
  'whole',
  'incid',
  'open',
  'lot',
  'old',
  'wound',
  'im',
  'glad',
  'happen',
  'need',
  'happen',
  'say',
  'hope',
  'lili',
  'probabl',
  'heal',
  'move',
  'live'],
 ['seen',
  'husband',
  'month',
  'stay',
  'sister',
  'promis',
  'would',
  'pick',
  'airport',
  'would',
  'spend',
  'time',
  'togeth',
  'sent',
  'brother',
  'instead',
  'upset',
  'even',
  'though',
  'brother-in-law',
  'told',
  'someth',
  'came',
  'instead',
  'ask',
  'could',
  'go',
  'get',
  'ice',
  'cream',
  'went',
  'home',
  'seem',
  'want',
  'go',
  'suggest',
  'take',
  'uber',
  'plan',
  'agre',
  'went',
  'got',
  'ice',
  'cream',
  'entir',
  'time',
  'phone',
  'felt',
  'like',
  'tri',
  'rush',
  'final',
  'got',
  'home',
  'husband',
  'annoy',
  'want',
  'know',
  'come',
  'home',
  'immedi',
  'said',
  'clear',
  'schedul',
  'even',
  'could',
  'spend',
  'time',
  'togeth',
  'like',
  'ask',
  'told',
  'assum',
  'busi',
  'sinc',
  'come',
  'airport',
  'still',
  'upset',
  'brother',
  'take',
  'get',
  'ice',
  'cream',
  'aita'],
 ['ex',
  'husband',
  'year',
  'old',
  'twin',
  'togeth',
  'due',
  'lot',
  'complic',
  'pregnanc',
  'got',
  'partial',
  'hysterectomi',
  'divorc',
  'pregnanc',
  'discov',
  'cheat',
  'good',
  'dad',
  'girlfriend',
  'pregnant',
  'cheat',
  'current',
  'girlfriend',
  'know',
  'wife',
  'time',
  'firmli',
  'believ',
  'run',
  'pretti',
  'success',
  'bake',
  'compani',
  'small',
  'town',
  'custom',
  'dessert',
  'includ',
  'gender',
  'reveal',
  'cake',
  'husband',
  'girlfriend',
  'call',
  'ask',
  'would',
  'gender',
  'reveal',
  'cake',
  'said',
  'would',
  'mean',
  'lot',
  'mother',
  'babi',
  'sibl',
  'made',
  'cake',
  'parti',
  'told',
  'think',
  'eventu',
  'told',
  'admittedli',
  'incred',
  'bitter',
  'ex',
  'cheat',
  'bedridden',
  'medic',
  'fragil',
  'pregnant',
  'children',
  'want',
  'involv',
  'celebr',
  'new',
  'child',
  'specifi',
  'said',
  'alright',
  'hung',
  'ex',
  'call',
  'told',
  'rude',
  'unreason',
  'complet',
  'unprofession',
  'put',
  'issu',
  'busi',
  'told',
  'allow',
  'refus',
  'servic',
  'anyon',
  'hung',
  'feel',
  'like',
  'let',
  'feel',
  'get',
  'way',
  'busi',
  'made',
  'cake',
  'like',
  'celebr',
  'hand',
  'feel',
  'like',
  'im',
  'allow',
  'refus',
  'busi',
  'howev',
  'see',
  'fit',
  'aita',
  'edit',
  'singl',
  'mother',
  'pleas',
  'misinterpret',
  'post',
  'sad',
  'singl',
  'mom',
  'bitter',
  'ex',
  'happi',
  'got',
  'marri',
  'novemb',
  'wonder',
  'woman',
  'husband',
  'joint',
  'custodi',
  'children',
  'great',
  'support',
  'system',
  'ye',
  'still',
  'bitter',
  'husband',
  'cheat',
  'bedridden',
  'scare',
  'babi'],
 ['garag',
  'metr',
  'away',
  'neighbour',
  'bedroom',
  'babi',
  'sleep',
  'ive',
  'got',
  'roller',
  'door',
  'beep',
  'quietli',
  'four',
  'time',
  'within',
  'second',
  'arriv',
  'home',
  'push',
  'button',
  'quiet',
  'time',
  'cant',
  'hear',
  'sit',
  'room',
  'adjac',
  'garag',
  'partner',
  'come',
  'home',
  'sinc',
  'neighbour',
  'babi',
  'ive',
  'made',
  'effort',
  'consider',
  'nois',
  'despit',
  'alreadi',
  'sound',
  'proof',
  'rumpu',
  'room',
  'ive',
  'stop',
  'play',
  'drum',
  'pm',
  'ive',
  'also',
  'declin',
  'host',
  'friend',
  'outsid',
  'backyard',
  'due',
  'nois',
  'think',
  'ive',
  'consider',
  'appar',
  'get',
  'home',
  'work',
  'pm',
  'put',
  'car',
  'garag',
  'coupl',
  'week',
  'ago',
  'neighbour',
  'approach',
  'ask',
  'could',
  'wait',
  'morn',
  'put',
  'car',
  'away',
  'declin',
  'break',
  'car',
  'street',
  'late',
  'car',
  'also',
  'one',
  'target',
  'thiev',
  'lot',
  'part',
  'expens',
  'enthusiast',
  'car',
  'apologis',
  'firm',
  'tell',
  'circumst',
  'leav',
  'car',
  'overnight',
  'also',
  'know',
  'sleep',
  'window',
  'open',
  'face',
  'garag',
  'thought',
  'would',
  'weird',
  'bring',
  'suggest',
  'close',
  'window',
  'im',
  'also',
  'confus',
  'market',
  'exhaust',
  'car',
  'louder',
  'origin',
  'noth',
  'say',
  'coupl',
  'night',
  'ago',
  'came',
  'home',
  'husband',
  'car',
  'block',
  'driveway',
  'enough',
  'get',
  'car',
  'kind',
  'useless',
  'push',
  'button',
  'even',
  'reach',
  'driveway',
  'beep',
  'anyway',
  'come',
  'car',
  'tow',
  'done',
  'sinc',
  'today',
  'saturday',
  'decid',
  'play',
  'drum',
  'around',
  'lunch',
  'time',
  'sound',
  'proof',
  'rumpu',
  'room',
  'hear',
  'minim',
  'vibrat',
  'kick',
  'outsid',
  'rear',
  'properti',
  'quit',
  'far',
  'away',
  'neighbour',
  'still',
  'someth',
  'say',
  'wife',
  'came',
  'basic',
  'said',
  'put',
  'nois',
  'long',
  'enough',
  'exhaust',
  'due',
  'kid',
  'never',
  'sleep',
  'thank',
  'nois',
  'make',
  'definit',
  'still',
  'mif',
  'driveway',
  'block',
  'situat',
  'night',
  'snap',
  'littl',
  'tell',
  'id',
  'consider',
  'enough',
  'alreadi',
  'made',
  'concess',
  'term',
  'nois',
  'said',
  'within',
  'right',
  'play',
  'music',
  'pm',
  'council',
  'ive',
  'cut',
  'pm',
  'consider',
  'kid',
  'said',
  'shell',
  'get',
  'done',
  'cater',
  'famili'],
 ['alright',
  'sonm',
  'ex',
  'husband',
  'got',
  'divorc',
  'emot',
  'affair',
  'turn',
  'physic',
  'kid',
  'ap',
  'singl',
  'dad',
  'atm',
  'ap',
  'left',
  'son',
  'goe',
  'hous',
  'weekend',
  'sometim',
  'kid',
  'come',
  'hous',
  'son',
  'somewhat',
  'friend',
  'realli',
  'mind',
  'problem',
  'im',
  'plan',
  'take',
  'son',
  'disney',
  'ive',
  'save',
  'believ',
  'go',
  'least',
  'life',
  'experi',
  'well',
  'good',
  'grade',
  'whole',
  'semest',
  'believ',
  'son',
  'mustv',
  'told',
  'half',
  'brother',
  'ex',
  'husband',
  'call',
  'ask',
  'day',
  'im',
  'plan',
  'leav',
  'drive',
  'confus',
  'initi',
  'realiz',
  'talk',
  'told',
  'gon',
  'na',
  'trip',
  'son',
  'start',
  'get',
  'mad',
  'accus',
  'favor',
  'son',
  'half',
  'sibl',
  'tri',
  'petti',
  'past',
  'action',
  'told',
  'least',
  'offer',
  'son',
  'go',
  'told',
  'gon',
  'na',
  'pay',
  'anoth',
  'plane',
  'ticket',
  'suppli',
  'son',
  'want',
  'go',
  'need',
  'pay',
  'hang',
  'could',
  'say',
  'anyth',
  'els',
  'son',
  'say',
  'dad',
  '‘',
  'disappoint',
  'decis',
  'go',
  'tri',
  '‘',
  'chang',
  'mind',
  'half',
  'sibl',
  'could',
  'fun',
  'remark',
  'ex',
  'friend',
  'heard',
  'situat',
  'say',
  'im',
  'ta',
  'let',
  'brother',
  'go',
  'trip',
  'well',
  'im',
  'selfish',
  'petti',
  'im',
  'start',
  'reconsid',
  'everyth',
  'relent',
  'want',
  'outsid',
  'opinion',
  'aita'],
 ['date',
  'max',
  'month',
  'nose',
  'job',
  'broke',
  'nose',
  'twice',
  'kid',
  'left',
  'larg',
  'bump',
  'breast',
  'augment',
  'bump',
  'two',
  'cup',
  'size',
  'life',
  'long',
  'insecur',
  'bulli',
  'realli',
  'reliev',
  'get',
  'done',
  'onto',
  'present',
  'met',
  'max',
  'friend',
  'thing',
  'great',
  'last',
  'night',
  'stroll',
  'social',
  'media',
  'sofa',
  'stop',
  'old',
  'classmat',
  'vacat',
  'photo',
  'wore',
  'bikini',
  'frankli',
  'obviou',
  'implant',
  'look',
  'great',
  'happi',
  'tell',
  'max',
  'glanc',
  'moment',
  'said',
  'gross',
  'ask',
  'deal',
  'said',
  'women',
  'get',
  'implant',
  'surgeri',
  'huge',
  'turn',
  'guy',
  'men',
  'prefer',
  'natur',
  'two',
  'balloon',
  'insecur',
  'look',
  'help',
  'laugh',
  'said',
  'turn',
  'got',
  'confus',
  'ask',
  'meant',
  'inform',
  'procedur',
  'done',
  'kept',
  'deni',
  'say',
  'joke',
  'show',
  'old',
  'photo',
  'got',
  'quiet',
  'left',
  'shortli',
  'got',
  'text',
  'say',
  'disclos',
  'first',
  'date',
  'led',
  'need',
  'reconsid',
  'thing',
  'next',
  'day',
  'heard',
  'anyth',
  'im',
  'bewild',
  'aita',
  'edit',
  'alright',
  'yall',
  'got',
  'text',
  'minut',
  'ago',
  'ask',
  'meet',
  'think',
  'want',
  'continu',
  'relationship',
  'want',
  'talk',
  'thing',
  'comment',
  'think',
  'sent',
  'back',
  'along',
  'line',
  'reaction',
  'made',
  'realiz',
  'partner',
  'im',
  'look',
  'ive',
  'decid',
  'continu',
  'relationship',
  'yeah',
  'im',
  'singl',
  'kind',
  'confus',
  'mention',
  'futur',
  'date',
  'offici',
  'weed',
  'like',
  'even',
  'bring',
  'oh',
  'well',
  'like',
  'im',
  'content',
  'natur',
  'unnatur',
  'part',
  'ill',
  'find',
  'someon',
  'huge',
  'hang',
  'plastic',
  'surgeri',
  'edit',
  'woke',
  'way',
  'repli',
  'comment',
  'got',
  'overnight',
  'thank',
  'everybodi',
  'opinion',
  'thank',
  'everyon',
  'wish',
  'well',
  'sad',
  'plenti',
  'good',
  'time',
  'month',
  'hope',
  'one',
  'ill',
  'alright',
  'time',
  'self-dat',
  'cheer',
  'edit',
  'final',
  'repli',
  'text',
  'hope',
  'could',
  'start',
  'honest',
  'begin',
  'guess',
  'one',
  'us',
  'matur',
  'enough',
  'look',
  'past',
  'shortcom',
  'relationship',
  'im',
  'glad',
  'reveal',
  'got',
  'involv',
  'goodby',
  'good',
  'luck',
  'find',
  'someon',
  'caus',
  'real',
  'man',
  'would',
  'respect',
  'someon',
  'cant',
  'even',
  'respect',
  'bodi',
  'wow',
  'comfort',
  'decis',
  'im',
  'extra',
  'comfort',
  'lmfao',
  'block',
  'bye',
  '✌️he',
  'never',
  'deserv',
  'limit',
  'edit',
  'set'],
 ['updat',
  'first',
  'want',
  'thank',
  'encourag',
  'messag',
  'mean',
  'lot',
  'want',
  'clear',
  'confus',
  'live',
  'europ',
  'countri',
  'uni',
  'free',
  'pay',
  'apart',
  'way',
  'depend',
  'parent',
  'financi',
  'hang',
  'head',
  'call',
  'grandma',
  'explain',
  'situat',
  'side',
  'encourag',
  'talk',
  'parent',
  'call',
  'mom',
  'pour',
  'situat',
  'feel',
  'fair',
  'quit',
  'upset',
  'first',
  'hung',
  'call',
  'grandma',
  'grandma',
  'call',
  'mom',
  'basic',
  'told',
  'eventu',
  'led',
  'mom',
  'apolog',
  'grandma',
  'come',
  'take',
  'care',
  'jame',
  'agre',
  'help',
  'whenev',
  'time',
  'get',
  'paid',
  'well',
  'parent',
  'think',
  'best',
  'go',
  'low',
  'contact',
  'thing',
  'settl',
  'want',
  'complet',
  'cut',
  'tie',
  'think',
  'famili',
  'still',
  'import',
  'howev',
  'think',
  'good',
  'around',
  'littl',
  'parent',
  'seem',
  'upset',
  'still',
  'feel',
  'bad',
  'see',
  'brother',
  'much',
  'think',
  'best',
  'two',
  'brother',
  'year',
  'old',
  'ever',
  'sinc',
  'youngest',
  'born',
  'expect',
  'look',
  'quit',
  'lot',
  'usual',
  'mind',
  'feel',
  'like',
  'free',
  'nanni',
  'sometim',
  'parent',
  'make',
  'seem',
  'like',
  'respons',
  'mom',
  'often',
  'yell',
  'one',
  'help',
  'jame',
  'yo',
  'brother',
  'take',
  'care',
  'father',
  'away',
  'lot',
  'work',
  'sometim',
  'even',
  'week',
  'septemb',
  'start',
  'uni',
  'apart',
  'move',
  'weekend',
  'note',
  'parent',
  'said',
  'multipl',
  'time',
  'past',
  'year',
  'cant',
  'wait',
  'move',
  'lazi',
  'opinion',
  'never',
  'help',
  'next',
  'week',
  'orient',
  'week',
  'uni',
  'uni',
  'hometown',
  'move',
  'far',
  'get',
  'place',
  'orient',
  'week',
  'super',
  'import',
  'get',
  'know',
  'peopl',
  'spend',
  'next',
  'year',
  'also',
  'import',
  'attend',
  'import',
  'info',
  'given',
  'week',
  'schedul',
  'quit',
  'pack',
  'whole',
  'week',
  'day',
  'start',
  'continu',
  'till',
  'late',
  'night',
  'problem',
  'parent',
  'import',
  'work',
  'stuff',
  'next',
  'week',
  'well',
  'mom',
  'fli',
  'abroad',
  'work',
  'dad',
  'away',
  'whole',
  'week',
  'well',
  'parent',
  'said',
  'expect',
  'take',
  'jame',
  'daycar',
  'spend',
  'even',
  'feed',
  'bath',
  'put',
  'bed',
  'told',
  'possibl',
  'uni',
  'schedul',
  'take',
  'daycar',
  'depend',
  'schedul',
  'help',
  'remind',
  'yo',
  'brother',
  'also',
  'capabl',
  'help',
  'sinc',
  'still',
  'live',
  'pack',
  'schedul',
  'week',
  'time',
  'help',
  'parent',
  'said',
  'possibl',
  'sinc',
  'brother',
  'focu',
  'high',
  'school',
  'studi',
  'young',
  'note',
  'would',
  'take',
  'care',
  'jame',
  'whole',
  'weekend',
  'sinc',
  'yo',
  'want',
  'difficult',
  'parent',
  'ask',
  'much',
  'got',
  'realli',
  'angri',
  'explain',
  'situat',
  'told',
  'ask',
  'help',
  'ever',
  'give',
  'offer',
  'money',
  'either',
  'take',
  'care',
  'yo',
  'entir',
  'week',
  'whilst',
  'push',
  'import',
  'thing',
  'asid',
  'know',
  'fact',
  'sometim',
  'give',
  'brother',
  'money',
  'help',
  'never',
  'offer',
  'feel',
  'like',
  'wrong',
  'might',
  'see',
  'thing',
  'clearli',
  'aita'],
 ['context',
  'need',
  'obvious',
  'hate',
  'brother',
  'alway',
  'golden',
  'child',
  'oop',
  'babi',
  'never',
  'want',
  'girl',
  'plu',
  'fussi',
  'babi',
  'compar',
  'annoy',
  'mother',
  'hate',
  'kept',
  'tell',
  'lie',
  'parent',
  '-',
  'stole',
  'someth',
  'would',
  'blame',
  'believ',
  'edit',
  'believ',
  'insan',
  'typo',
  'sorri',
  'sabotag',
  'relationship',
  'bulli',
  'forc',
  'friend',
  'parent',
  'alway',
  'took',
  'side',
  'left',
  'home',
  'colleg',
  'manag',
  'get',
  'scholarship',
  'soon',
  'could',
  'stay',
  'hometown',
  'rent',
  'place',
  'near',
  'parent',
  'paid',
  'cours',
  'stop',
  'contact',
  'famili',
  'group',
  'chat',
  'alway',
  'brother',
  'achiev',
  'never',
  'sent',
  'money',
  'live',
  'anoth',
  'state',
  'marri',
  'famili',
  'invit',
  'bother',
  'show',
  'wed',
  'second',
  'babi',
  'way',
  'husband',
  'famili',
  'great',
  'help',
  'lot',
  'anyway',
  'parent',
  'tradit',
  'male',
  'head',
  'famili',
  'tradit',
  'crap',
  'brother',
  'come',
  'shock',
  'absolut',
  'demand',
  'blood',
  'relat',
  'descend',
  'carri',
  'famili',
  'name',
  'mention',
  'kid',
  'husband',
  'surnam',
  'adopt',
  'option',
  'neither',
  'surrog',
  'accept',
  'proper',
  'marriag',
  'blue',
  'brother',
  'contact',
  'appar',
  'parent',
  'disown',
  'live',
  'money',
  'never',
  'work',
  'unless',
  'fix',
  'relationship',
  'lay',
  'claim',
  'children',
  '-',
  'sinc',
  'caus',
  'drift',
  'away',
  'famili',
  'sole',
  'caus',
  'blame',
  'parent',
  'actual',
  'flew',
  'state',
  'cri',
  'lot',
  'blame',
  'bulli',
  'stress',
  'closet',
  'yadda',
  'yadda',
  'told',
  'famili',
  'dead',
  'care',
  'say',
  'im',
  'petti',
  'ruin',
  'adult',
  'life',
  'childhood',
  'slight',
  'also',
  'im',
  'homophob',
  'etc',
  'refus',
  'back',
  'contact',
  'parent',
  'back-up',
  'sourc',
  'blood',
  'relat',
  'grand',
  'babi',
  'golden',
  'child',
  'fail',
  'aita',
  'edit',
  'forgot',
  'add',
  'parent',
  'also',
  'want',
  'futur',
  'babi',
  'im',
  'pregnant',
  'carri',
  'famili',
  'surnam'],
 ['boyfriend',
  'took',
  'ex',
  'kid',
  'last',
  'minut',
  'overnight',
  'stay',
  'sinc',
  'father',
  'kid',
  'cancel',
  'plan',
  'friend',
  'night',
  'busi',
  'took',
  'overnight',
  'babi',
  'daddi',
  'bail',
  'told',
  'brunch',
  'reserv',
  'next',
  'morn',
  'happi',
  'help',
  'need',
  'pick',
  'knew',
  'agre',
  'drop',
  'well',
  'next',
  'morn',
  'yet',
  'text',
  'call',
  'answer',
  'roll',
  'around',
  'tri',
  'call',
  'pick',
  'groggi',
  'voic',
  'tell',
  'us',
  'got',
  'worst',
  'hangov',
  'pick',
  'pm',
  'remind',
  'brunch',
  'reserv',
  'tell',
  'us',
  'take',
  'us',
  'kid',
  'year',
  'old',
  'enjoy',
  'take',
  'child',
  'age',
  'eat',
  'boyfriend',
  'cancel',
  'reserv',
  'get',
  'readi',
  'kid',
  'decid',
  'pick',
  'furiou',
  'point',
  'child',
  'boyfriend',
  'child',
  'call',
  'tell',
  'noon',
  'would',
  'call',
  'polic',
  'collect',
  'child',
  'live',
  'minut',
  'away',
  'call',
  'bitch',
  'told',
  'minut',
  'come',
  'get',
  'wait',
  'hour',
  'sign',
  'drop',
  'child',
  'sinc',
  'live',
  'apart',
  'complex',
  'need',
  'access',
  'get',
  'call',
  'cop',
  'told',
  'babysit',
  'know',
  'parent',
  'suppos',
  'hour',
  'ago',
  'basic',
  'treat',
  'would',
  'lost',
  'child',
  'took',
  'station',
  'littl',
  'miss',
  'final',
  'roll',
  'pm',
  'get',
  'belliger',
  'discov',
  'actual',
  'call',
  'cop',
  'gave',
  'child',
  'call',
  'sort',
  'wonder',
  'name',
  'storm',
  'polic',
  'station',
  'edit',
  'know',
  'shed',
  'even',
  'gone',
  'home',
  'also',
  'contact',
  'father',
  'sinc',
  'contact',
  'inform',
  'edit',
  'mother',
  'child',
  'also',
  'neglect',
  'last',
  'straw',
  'us',
  'shed',
  'mayb',
  'chang',
  'diaper',
  'twice',
  'throughout',
  'whole',
  'day',
  'good',
  'day',
  'multipl',
  'time',
  'id',
  'seen',
  'refil',
  'bottl',
  'clean',
  'day',
  'actual',
  'rotten',
  'milk',
  'insid'],
 ['fiancé',
  'expect',
  'babi',
  'girl',
  'next',
  'month',
  'realli',
  'excit',
  'first',
  'child',
  'weve',
  'tri',
  'prepar',
  'parenthood',
  'lot',
  'famili',
  'help',
  'us',
  'babi',
  'stuff',
  'give',
  'us',
  'gener',
  'advic',
  'theyr',
  'also',
  'realli',
  'super',
  'excit',
  'especi',
  'fmil',
  'stubborn',
  'person',
  'realli',
  'accept',
  'apart',
  'famili',
  'yet',
  'alway',
  'tell',
  'fiancé',
  'could',
  'much',
  'better',
  'fallen',
  'trap',
  'child',
  'hurt',
  'lot',
  'fiancé',
  'talk',
  'still',
  'apologis',
  'anyth',
  'tend',
  'ignor',
  'also',
  'one',
  'mum',
  'post',
  'everi',
  'littl',
  'detail',
  'life',
  'facebook',
  'like',
  'fiancé',
  'propos',
  'straight',
  'facebook',
  'could',
  'announc',
  'recent',
  'fiancé',
  'come',
  'name',
  'littl',
  'girl',
  'decid',
  'perfect',
  'name',
  'day',
  'ago',
  'phone',
  'call',
  'fiancé',
  'accident',
  'slip',
  'tell',
  'fmil',
  'weve',
  'chosen',
  'name',
  'non',
  'stop',
  'messag',
  'us',
  'call',
  'us',
  'find',
  'name',
  'want',
  'tell',
  'babi',
  'born',
  'ruin',
  'surpris',
  'whole',
  'facebook',
  'find',
  'comfort',
  'tell',
  'everyon',
  'tri',
  'guilt',
  'trip',
  'fiancé',
  'tell',
  'hurt',
  'tell',
  'mother',
  'name',
  'grandchild',
  'love',
  'especi',
  'gon',
  'na',
  'tri',
  'keep',
  'see',
  'babi',
  'im',
  'sure',
  'would',
  'think',
  'noth',
  'said',
  'suggest',
  'stop',
  'get',
  'fiancé',
  'back',
  'wrote',
  'messag',
  'say',
  'want',
  'know',
  'cant',
  'post',
  'facebook',
  'agre',
  'told',
  'fake',
  'name',
  'minut',
  'later',
  'check',
  'fb',
  'cant',
  'believ',
  'im',
  'go',
  'granni',
  'babi',
  'charlott',
  'next',
  'month',
  'proud',
  'fiancé',
  'name',
  'partner',
  'fiancé',
  'furiou',
  'call',
  'told',
  'wrong',
  'announc',
  'said',
  'overjoy',
  'resist',
  'told',
  'even',
  'name',
  'gon',
  'na',
  'tell',
  'born',
  'hung',
  'afew',
  'day',
  'fiancé',
  'get',
  'text',
  'say',
  'mean',
  'im',
  'ah',
  'tell',
  'wrong',
  'name',
  'word',
  'even',
  'tell',
  'fmil',
  'wrong',
  'name',
  'grandchild',
  'aita',
  '*',
  '*',
  'updat',
  '*',
  '*',
  'want',
  'start',
  'say',
  'appreci',
  'love',
  'support',
  'guy',
  'sent',
  'realli',
  'entertain',
  'read',
  'everyon',
  'opinion',
  'matter',
  'restor',
  'faith',
  'think',
  'everyth',
  'turn',
  'fine',
  'fiancé',
  'babi',
  'girl',
  'post',
  'fiancé',
  'sat',
  'mil',
  'dinner',
  'spoke',
  'boundari',
  'want',
  'start',
  'clean',
  'slate',
  'alway',
  'give',
  'second',
  'chanc',
  'acknowledg',
  'aswel',
  'want',
  'get',
  'along',
  'fiancé',
  'babi',
  'let',
  'see',
  'goe',
  'also',
  'fiancé',
  'start',
  'refer',
  'babi',
  'girl',
  'lotti',
  'short',
  'charlott',
  'found',
  'hilari',
  'post',
  'blow',
  'mayb',
  'might',
  'keep',
  'lotti',
  'middl',
  'name',
  'know',
  'wonder',
  'seen',
  'post',
  'profil',
  'fiancé',
  'still',
  'serv',
  'still',
  'intend',
  'join',
  'weve',
  'agre',
  'babi',
  'girl',
  'look',
  'fiancé',
  'away',
  'mum',
  'trust',
  'life',
  'whilst',
  'go',
  'away',
  'basic',
  'train',
  'appreci',
  'kind',
  'word',
  'might',
  'probabl',
  'anoth',
  'updat',
  'lotti',
  'born',
  '*',
  '*',
  'final',
  'updat',
  '*',
  '*',
  'thank',
  'love',
  'support',
  'sent',
  'way',
  'sinc',
  'post',
  'amaz',
  'read',
  'peopl',
  'stori',
  'similar',
  'mine',
  'advic',
  'given',
  'last',
  'final',
  'updat',
  'stori',
  'th',
  'august',
  'welcom',
  'elena',
  'beatric',
  'june',
  'world',
  'weigh',
  'lb',
  'fiancé',
  'side',
  'whole',
  'way',
  'could',
  'ask',
  'anyth',
  'perfect',
  'want',
  'wait',
  'atleast',
  'day',
  'announc',
  'want',
  'bubbl',
  'tell',
  'anyon',
  'els',
  'th',
  'august',
  'announc',
  'friend',
  'famili',
  'born',
  'sent',
  'bunch',
  'congrat',
  'mil',
  'upset',
  'left',
  'birth',
  'sinc',
  'meet',
  'realli',
  'brought',
  'anymor',
  'thank',
  'love',
  'support'],
 ['basic',
  'titl',
  'fianc',
  'get',
  'marri',
  'end',
  'year',
  'son',
  'former',
  'marriag',
  'late',
  'wife',
  'pass',
  'away',
  'cancer',
  'id',
  'like',
  'think',
  'stepson',
  'good',
  'relationship',
  'howev',
  'sensit',
  'emot',
  'kid',
  'ive',
  'ever',
  'met',
  'im',
  'say',
  'bad',
  'thingbut',
  'make',
  'difficult',
  'deal',
  'sometim',
  'said',
  'alreadi',
  'prepar',
  'powerpoint',
  'project',
  'honor',
  'mom',
  'plan',
  'play',
  'display',
  'wed',
  'instant',
  'mani',
  'reason',
  'fianc',
  'said',
  'let',
  'want',
  'rememb',
  'honor',
  'mom',
  'told',
  'occass',
  'wed',
  'noth',
  'stepson',
  'mom',
  'im',
  'sure',
  'put',
  'whole',
  'powerpoint',
  'project',
  'wed',
  'take',
  'away',
  'guest',
  'attent',
  'make',
  'confus',
  'fianc',
  'said',
  'respect',
  'son',
  'wish',
  'also',
  'said',
  'hell',
  'pay',
  'screen',
  'everyth',
  'huge',
  'fight',
  'refus',
  'even',
  'consid',
  'whole',
  'thing',
  'go',
  'even',
  'offer',
  'mayb',
  'pictur',
  'seat',
  'altern',
  'stepson',
  'thing',
  'pretti',
  'tens',
  'stepson',
  'talk',
  'fianc',
  'keep',
  'tri',
  'guilt',
  'say',
  'ye',
  'make',
  'feel',
  'overwhelm',
  'aita',
  'refus',
  'make',
  'happen',
  'fianc',
  'comment',
  'say',
  'refus',
  'indic',
  'issu',
  'stepson',
  'mom',
  'unfair',
  'sinc',
  'spent',
  'much',
  'time',
  'effort',
  'prepar',
  'project',
  'obviouslymean',
  'lot',
  'side',
  'note',
  '-',
  'stepson',
  'mom',
  'neg',
  'feel',
  'toward',
  'fact',
  'think',
  'fighter',
  'battl',
  'cancer',
  'twice',
  'play',
  'huge',
  'role',
  'fianc',
  'becom',
  'im',
  'grate',
  'edit',
  'im',
  'sorri',
  'want',
  'put',
  'link',
  'someth',
  'fail',
  'tri',
  'show',
  'size',
  'screen',
  'fianc',
  'show',
  'earlier',
  'stepson',
  'grief',
  'first',
  'met',
  'seem',
  'keep',
  'attend',
  'famili',
  'function',
  'even',
  'insid',
  'hous',
  'avoid',
  'spend',
  'time',
  'famili',
  'quiet',
  'time',
  'realli',
  'talk',
  'much',
  'suggest',
  'therapi',
  'fianc',
  'said',
  'mention',
  'son',
  'yell',
  'tell',
  'stop',
  'act',
  'like',
  'someth',
  'wrong',
  'bring',
  'therapi',
  'fianc',
  'stop',
  'bring',
  'whenev',
  'tri',
  'mention',
  'hed',
  'shut',
  'hard'],
 ['wife',
  'turn',
  'week',
  'im',
  'weve',
  'alway',
  'strong',
  'relationship',
  'love',
  'much',
  'wife',
  'best',
  'friend',
  'childhood',
  'jimmi',
  'know',
  'well',
  'year',
  'weve',
  'gotten',
  'know',
  'gotten',
  'close',
  'best',
  'bud',
  'like',
  'older',
  'brother',
  'lot',
  'way',
  'wife',
  'goe',
  'birthday',
  'parti',
  'love',
  'stoic',
  'introvert',
  'thought',
  'would',
  'nice',
  'throw',
  'surpris',
  'th',
  'birthday',
  'make',
  'special',
  'event',
  'want',
  'make',
  'gift',
  'would',
  'love',
  'jimmi',
  'incred',
  'artist',
  'past',
  'two',
  'month',
  'ive',
  'take',
  'lesson',
  'wife',
  'curiou',
  'spend',
  'much',
  'time',
  'away',
  'home',
  'jimmi',
  'made',
  'vagu',
  'excus',
  'tell',
  'make',
  'gift',
  'made',
  'coupl',
  'comment',
  'never',
  'seem',
  'upset',
  'told',
  'week',
  'birthday',
  'made',
  'plan',
  'jimmi',
  'job',
  'flexibl',
  'hour',
  'uncommon',
  'upset',
  'anyth',
  'birthday',
  'came',
  'could',
  'say',
  'anyth',
  'left',
  'work',
  'put',
  'plan',
  'action',
  'decor',
  'place',
  'brought',
  'cake',
  'learn',
  'youtub',
  'store',
  'friend',
  'hous',
  'got',
  'dozen',
  'bouquet',
  'flower',
  'got',
  'gift',
  'suppos',
  'come',
  'home',
  'wait',
  'hour',
  'come',
  'home',
  'call',
  'jimmi',
  'said',
  'seen',
  'call',
  'pick',
  'check',
  'locat',
  'restaur',
  'went',
  'restaur',
  'friend',
  'eat',
  'birthday',
  'cake',
  'present',
  'never',
  'met',
  'friend',
  'think',
  'theyr',
  'work',
  'seem',
  'sad',
  'smile',
  'energet',
  'want',
  'take',
  'home',
  'show',
  'gift',
  'would',
  'happi',
  'came',
  'told',
  'come',
  'home',
  'grab',
  'thing',
  'left',
  'uber',
  'back',
  'say',
  'anyth',
  'home',
  'start',
  'cri',
  'sleep',
  'couch',
  'avoid',
  'wife',
  'talk',
  'jimmi',
  'either',
  'told',
  'mom',
  'call',
  'asshol',
  'know',
  'aita'],
 ['wife',
  'gave',
  'birth',
  'day',
  'ago',
  'believ',
  'fairli',
  'standard',
  'pregnanc',
  'best',
  'take',
  'care',
  'thing',
  'make',
  'easi',
  'took',
  'hospit',
  'due',
  'sister',
  'mother',
  'met',
  'us',
  'problem',
  'start',
  'taken',
  'deliveri',
  'room',
  'ask',
  'nurs',
  'mother',
  'sister',
  'allow',
  'deliveri',
  'told',
  'want',
  'wait',
  'ive',
  'deliv',
  'calm',
  'let',
  'room',
  'kind',
  'shock',
  'want',
  'make',
  'scene',
  'said',
  'ok',
  'sat',
  'wait',
  'room',
  'realli',
  'discuss',
  'plan',
  'hospit',
  'reason',
  'think',
  'son',
  'born',
  'text',
  'sister',
  'knew',
  'wife',
  'go',
  'said',
  'told',
  'ask',
  'wife',
  'concern',
  'someth',
  'consid',
  'someon',
  'would',
  'made',
  'fuss',
  'made',
  'thing',
  'difficult',
  'text',
  'back',
  'say',
  'wife',
  'want',
  'see',
  'like',
  'ad',
  'agre',
  'wife',
  'tri',
  'convinc',
  'ultim',
  'choic',
  'respect',
  'sat',
  'wait',
  'room',
  'hour',
  'get',
  'minim',
  'updat',
  'labor',
  'fairli',
  'slow',
  'decid',
  'point',
  'text',
  'sister',
  'go',
  'home',
  'id',
  'meet',
  'son',
  'brought',
  'home',
  'handl',
  'birth',
  'certif',
  'stuff',
  'next',
  'day',
  'came',
  'home',
  'hour',
  'later',
  'final',
  'abl',
  'meet',
  'son',
  'wife',
  'mother',
  'sister',
  'left',
  'got',
  'angri',
  'leav',
  'hospit',
  'angri',
  'told',
  'talk',
  'day',
  'given',
  'birth',
  'drop',
  'subject',
  'final',
  'told',
  'exclud',
  'birth',
  'son',
  'reason',
  'see',
  'need',
  'hang',
  'around',
  'hospit',
  'wait',
  'room',
  'hour',
  'noth',
  'even',
  'sister',
  'think',
  'wrong',
  'said',
  'could',
  'complic',
  'need',
  'repli',
  'kept',
  'room',
  'doctor',
  'would',
  'handl',
  'problem',
  'anyway',
  'call',
  'inconsider',
  'asshol',
  'talk',
  'short',
  'sever',
  'day',
  'sister',
  'told',
  'apolog',
  'move',
  'past',
  'stress',
  'time',
  'wife',
  'think',
  'im',
  'owe',
  'bigger',
  'apolog',
  'first',
  'exclud',
  'son',
  'birth'],
 ['husband',
  'rent',
  'aunt',
  'home',
  'got',
  'marri',
  'sign',
  'month',
  'month',
  'leas',
  'move',
  'move',
  'marriag',
  'rent',
  'super',
  'cheap',
  'parent',
  'recent',
  'came',
  'ask',
  'could',
  'park',
  'rv',
  'home',
  'see',
  'problem',
  'yard',
  'realli',
  'big',
  'space',
  'citi',
  'ordin',
  'rv',
  'park',
  'back',
  'yard',
  'rv',
  'gate',
  'fenc',
  'husband',
  'went',
  'aunt',
  'ask',
  'could',
  'instal',
  'rv',
  'gate',
  'aunt',
  'said',
  'husband',
  'relay',
  'messag',
  'parent',
  'seem',
  'upset',
  'told',
  'day',
  'ago',
  'came',
  'home',
  'work',
  'saw',
  'dad',
  'construct',
  'crew',
  'home',
  'remov',
  'part',
  'fenc',
  'gate',
  'appl',
  'tree',
  'way',
  'fit',
  'rv',
  'yard',
  'husband',
  'angri',
  'told',
  'dad',
  'continu',
  'need',
  'repair',
  'fenc',
  'point',
  'felt',
  'like',
  'pointless',
  'fenc',
  'guy',
  'alreadi',
  'built',
  'column',
  'gate',
  'would',
  'cost',
  'lot',
  'money',
  'rebuild',
  'fenc',
  'told',
  'dad',
  'finish',
  'job',
  'make',
  'sure',
  'left',
  'super',
  'clean',
  'look',
  'nice',
  'plan',
  'talk',
  'aunt',
  'later',
  'explain',
  'happen',
  'know',
  'dad',
  'told',
  'guy',
  'remov',
  'tree',
  'husband',
  'aunt',
  'came',
  'saw',
  'tree',
  'cut',
  'start',
  'cri',
  'refus',
  'talk',
  'dad',
  'husband',
  'came',
  'home',
  'found',
  'day',
  'notic',
  'door',
  'termin',
  'leas',
  'tri',
  'call',
  'aunt',
  'answer',
  'phone',
  'call',
  'mil',
  'went',
  'talk',
  'aunt',
  'later',
  'got',
  'sever',
  'messag',
  'call',
  'cut',
  'aunt',
  'late',
  'husband',
  'tree',
  'idea',
  'plant',
  'tree',
  'husband',
  'whole',
  'famili',
  'realli',
  'angri',
  'never',
  'told',
  'remov',
  'tree',
  'feel',
  'like',
  'thrown',
  'bu'],
 ['figur',
  'read',
  'post',
  'would',
  'appreci',
  'updat',
  'regard',
  'student',
  'tri',
  'protect',
  'read',
  'comment',
  'right',
  'wouldv',
  'ass',
  'fail',
  'pronunci',
  'excel',
  'would',
  'shame',
  'forc',
  'chang',
  'made',
  'decis',
  'think',
  'happi',
  'find',
  'exam',
  'went',
  'chat',
  'ava',
  'told',
  'well',
  'done',
  'year',
  'explain',
  'student',
  'taught',
  'specif',
  'pronunci',
  'correctincorrect',
  'accent',
  'expect',
  'chang',
  'see',
  'well',
  'sinc',
  'teach',
  'certain',
  'pronunci',
  'expect',
  'know',
  'pronunci',
  'rule',
  'teach',
  'told',
  'know',
  'differ',
  'pronunci',
  'without',
  'actual',
  'implement',
  'exam',
  'ask',
  'question',
  'regard',
  'pronunci',
  'differ',
  'rest',
  'standard',
  'exam',
  'convers',
  'present',
  'mark',
  'base',
  'dialect',
  'speak',
  'pass',
  'fli',
  'color',
  'know',
  'yet',
  'receiv',
  'scholarship',
  'next',
  'year',
  'grade',
  'go',
  'forward',
  'well',
  'make',
  'sure',
  'student',
  'speak',
  'differ',
  'dialect',
  'get',
  'full',
  'grade',
  'long',
  'know',
  'differ',
  'pronunci',
  'region',
  'requir',
  'anyway',
  'part',
  'exam'],
 ['wife',
  'grade',
  '+',
  'picki',
  'eater',
  'bothersom',
  'certain',
  'degre',
  'holiday',
  'basic',
  'shitshow',
  'begin',
  'shed',
  'refus',
  'eat',
  'certain',
  'meal',
  'mom',
  'would',
  'take',
  'personallywhich',
  'result',
  'seri',
  'argument',
  'compromis',
  'year',
  'wife',
  'offer',
  'bring',
  'food',
  'thanksgiv',
  'dinner',
  'stun',
  'ask',
  'thought',
  'look',
  'confus',
  'told',
  'weird',
  'itd',
  'bring',
  'food',
  'especi',
  'woudlnt',
  'share',
  'anybodi',
  'els',
  'told',
  'think',
  'mom',
  'react',
  'shed',
  'get',
  'offend',
  'upset',
  'wife',
  'said',
  'problem',
  'tri',
  'make',
  'work',
  'bring',
  'meal',
  'told',
  'mom',
  'might',
  'like',
  'even',
  'allow',
  'blew',
  'ask',
  'want',
  'either',
  'eat',
  'food',
  'like',
  'go',
  'hungri',
  'suggest',
  'give',
  'mom',
  'food',
  'chanc',
  'said',
  'mom',
  'cook',
  'like',
  'certain',
  'food',
  'argument',
  'end',
  'tell',
  'could',
  'stay',
  'home',
  'thanksgiv',
  'whatev',
  'meal',
  'like',
  'got',
  'quiet',
  'lash',
  'call',
  'insensit',
  'neg',
  'say',
  'repeatedli',
  'ask',
  'calm',
  'stop',
  'rant',
  'basic',
  'exclud',
  'major',
  'event',
  'start',
  'cold',
  'shoulder',
  'time',
  'guilt',
  'say',
  'im',
  'treat',
  'poorli',
  'offer',
  'perfect',
  'compromis',
  'updat',
  'wife',
  'decid',
  'go',
  'spend',
  'thankgiv',
  'famili',
  'way',
  'live',
  'hour',
  'away',
  'mean',
  'unnecesari',
  'travel',
  'expens',
  'instead',
  'basic',
  'ditch',
  'whole',
  'week',
  'yall',
  'happi',
  'though',
  'appreci',
  'insight',
  'comment',
  'situat',
  'othersnot',
  'much',
  'especi',
  'assumpt',
  'claim',
  'wife',
  'allergi',
  'yall',
  'get',
  'anyway',
  'sall',
  'good',
  'guess',
  'though',
  'im',
  'thrill',
  'decis',
  'feel',
  'like',
  'spite',
  'get',
  'cave'],
 ['muslim',
  'moroccan',
  'obvious',
  'muslim',
  'guess',
  'wear',
  'hijab',
  'first',
  'first',
  'name',
  'name',
  'common',
  'western',
  'countri',
  'think',
  'sarah',
  'lina',
  'nadia',
  'miriam',
  'last',
  'name',
  'came',
  'know',
  'actual',
  'jewish',
  'name',
  'jewish',
  'ancestor',
  'common',
  'countri',
  'name',
  'would',
  'think',
  'moroccan',
  'sinc',
  'amazigh',
  'moroccan',
  'nativ',
  'light',
  'skin',
  'light',
  'hair',
  'eye',
  'would',
  'think',
  'hear',
  'african',
  'came',
  'us',
  'accent',
  'pandem',
  'specif',
  'august',
  'hire',
  'compani',
  'work',
  'remot',
  '%',
  'time',
  'septemb',
  'st',
  'start',
  'go',
  'offic',
  'cowork',
  'let',
  'call',
  'sort',
  'friend',
  'belong',
  'team',
  'even',
  'work',
  'remot',
  'use',
  'friendli',
  'chat',
  'sometim',
  'start',
  'work',
  'site',
  'happi',
  'friend',
  'chat',
  'first',
  'day',
  'want',
  'share',
  'lunch',
  'declin',
  'abl',
  'tell',
  'sure',
  'pan',
  'cook',
  'chicken',
  'use',
  'cook',
  'pork',
  'said',
  'follow',
  'kosher',
  'letter',
  'huh',
  'repli',
  'actual',
  'halal',
  'obvious',
  'confus',
  'grasp',
  'situat',
  'becam',
  'cold',
  'spot',
  'sad',
  'say',
  'use',
  'reaction',
  'mind',
  'heard',
  'anoth',
  'one',
  'bite',
  'dust',
  'move',
  'life',
  'start',
  'act',
  'hostil',
  'toward',
  'exampl',
  'see',
  'hear',
  'distanc',
  'would',
  'make',
  'blatantli',
  'islamophob',
  'comment',
  'follow',
  'around',
  'offic',
  'cowork',
  'ask',
  'coff',
  'would',
  'loudli',
  'say',
  'come',
  'us',
  '*',
  '*',
  'go',
  'etc',
  'make',
  'everyon',
  'els',
  'uncomfort',
  'last',
  'straw',
  'thursday',
  'go',
  'coff',
  'run',
  'take',
  'turn',
  'want',
  'take',
  'bag',
  'big',
  'tote',
  'bag',
  'well',
  'threw',
  'fit',
  'said',
  'either',
  'take',
  'bag',
  'call',
  'secur',
  'ask',
  'go',
  'said',
  'meant',
  'told',
  'god',
  'know',
  'peopl',
  'exactli',
  'known',
  'harmless',
  'bag',
  'everyon',
  'shock',
  'said',
  'went',
  'far',
  'went',
  'hr',
  'directli',
  'report',
  'coupl',
  'cowork',
  'call',
  'friday',
  'said',
  'longer',
  'work',
  'space',
  'today',
  'receiv',
  'email',
  'transfer',
  'anoth',
  'depart',
  'felt',
  'reliev',
  'mom',
  'said',
  'know',
  'better',
  'dealt',
  'without',
  'impact',
  'livelihood',
  'aita'],
 ['cousin',
  'delaneyf',
  'get',
  'marri',
  'soon',
  'ask',
  'flower',
  'girl',
  'wed',
  'know',
  'im',
  'bit',
  'old',
  'im',
  'youngest',
  'girl',
  'side',
  'famili',
  'around',
  'month',
  'ask',
  'flower',
  'girl',
  'diagnos',
  'anaplast',
  'ependymoma',
  'grade',
  'start',
  'chemotherapi',
  'hair',
  'start',
  'fall',
  'pretti',
  'quickli',
  'call',
  'delaney',
  'ask',
  'hell',
  'suppos',
  'hair',
  'told',
  'itd',
  'fine',
  'leav',
  'alon',
  'long',
  'could',
  'knew',
  'hair',
  'probabl',
  'go',
  'last',
  'till',
  'wed',
  'day',
  'brother',
  'order',
  'wig',
  'onlin',
  'wig',
  'look',
  'lot',
  'like',
  'actual',
  'hair',
  'hair',
  'continu',
  'come',
  'clump',
  'get',
  'extrem',
  'tangl',
  'realli',
  'uncomfort',
  'one',
  'ever',
  'told',
  'lose',
  'hair',
  'would',
  'physic',
  'pain',
  'eventu',
  'coupl',
  'day',
  'bridal',
  'shower',
  'rehears',
  'dinner',
  'happen',
  'day',
  'nearli',
  'half',
  'hair',
  'come',
  'sick',
  'hot',
  'mess',
  'hair',
  'becom',
  'cut',
  'hair',
  'day',
  'rehears',
  'dinner',
  'wore',
  'wig',
  'braelyn',
  'famili',
  'friend',
  'delaney',
  'ask',
  'hair',
  'stylist',
  'could',
  'figur',
  'style',
  'delaney',
  'walk',
  'braelyn',
  'show',
  'use',
  'wig',
  'glue',
  'absolut',
  'lost',
  'ask',
  'hair',
  'told',
  '‘',
  'cancer',
  'lost',
  'hair',
  'kept',
  'berat',
  'eventu',
  'admit',
  'shave',
  'head',
  'aw',
  'hair',
  'look',
  'call',
  'selfish',
  'brat',
  'said',
  'permiss',
  'anyth',
  'drastic',
  'hair',
  'wed'],
 ['sister',
  'pass',
  'away',
  'month',
  'ago',
  'cancer',
  'devast',
  'word',
  'cant',
  'express',
  'feel',
  'husband',
  'struggl',
  'pay',
  'debt',
  'ask',
  'husband',
  'take',
  'niec',
  'age',
  '&',
  'time',
  'say',
  'im',
  'good',
  'term',
  'weve',
  'fair',
  'share',
  'disagr',
  'past',
  'tri',
  'sue',
  'husband',
  'mother',
  'hous',
  'im',
  'live',
  'husband',
  'daughter',
  'claim',
  'need',
  'money',
  'pay',
  'sister',
  'treatment',
  'way',
  'get',
  'brother',
  'refus',
  'yo',
  'help',
  'long',
  'stori',
  'good',
  'term',
  'agre',
  'take',
  'niec',
  'tri',
  'negoti',
  'say',
  'daughter',
  'griev',
  'need',
  'remain',
  'parent',
  'around',
  'said',
  'could',
  'see',
  'visit',
  'husband',
  'agre',
  'first',
  'brother',
  'inlaw',
  'show',
  'niec',
  'day',
  'ago',
  'let',
  'girl',
  'turn',
  'away',
  'tri',
  'talk',
  'let',
  'stay',
  'huge',
  'argument',
  'girl',
  'went',
  'insid',
  'cri',
  'dad',
  'left',
  'repeatedli',
  'say',
  'want',
  'husband',
  'back',
  'say',
  'might',
  'make',
  'mistak',
  'seper',
  'girl',
  'dad',
  'theyr',
  'griev',
  'aunt',
  'berat',
  'say',
  'mess',
  'entir',
  'argu',
  'home',
  'font',
  'feel',
  'comfort',
  'stay',
  'done',
  'call',
  'selfish',
  'bitter',
  'said',
  'im',
  'make',
  'difficult',
  'girl',
  'lost',
  'mom',
  'girl',
  'quiet',
  'yo',
  'niec',
  'keep',
  'argu',
  'want',
  'dad',
  'husband',
  'still',
  'think',
  'make',
  'mistak',
  'get',
  'girl',
  'resent',
  'dad',
  'griev'],
 ['team',
  'work',
  'day',
  'wfo',
  'day',
  'wfh',
  'sensit',
  'physic',
  'paper',
  'file',
  'work',
  'part',
  'work',
  'still',
  'come',
  'offic',
  'one',
  'team',
  'member',
  'sarah',
  'appeal',
  'day',
  'wfo',
  'day',
  'wfh',
  'instead',
  'basi',
  'kid',
  'look',
  'although',
  'team',
  'member',
  'also',
  'kid',
  'sarah',
  'problem',
  'come',
  'day',
  'week',
  'pandem',
  'relent',
  'request',
  'becam',
  'upset',
  'accus',
  'inflex',
  'start',
  'cri',
  'offic',
  'also',
  'check',
  'rest',
  'team',
  'make',
  'sure',
  'ok',
  'ive',
  'notic',
  'late',
  'sarah',
  'wfh',
  'tendenc',
  'go',
  'offlin',
  'away',
  'skype',
  'offic',
  'hour',
  'usual',
  'offlin',
  'away',
  'hour',
  'time',
  'yesterday',
  'final',
  'ask',
  'told',
  'peopl',
  'intern',
  'client',
  'extern',
  'stakehold',
  'come',
  'work',
  'matter',
  'handl',
  'could',
  'locat',
  'one',
  'extern',
  'stakehold',
  'even',
  'told',
  'sarah',
  'leav',
  'clarifi',
  'sarah',
  'leav',
  'stakehold',
  'bewild',
  'offlin',
  'whole',
  'morn',
  'sarah',
  'defens',
  'sarcast',
  'apologis',
  'repli',
  'messag',
  'immedi',
  'ad',
  'long',
  'got',
  'work',
  'done',
  'matter',
  'onlin',
  'offlin',
  'told',
  'onlin',
  'entir',
  'pm',
  'durat',
  'minim',
  'pm',
  'break',
  'lunch',
  'peopl',
  'reach',
  'need',
  'team',
  'member',
  'notic',
  'start',
  'follow',
  'exampl',
  'particularli',
  'sinc',
  'sarah',
  'senior',
  'sarah',
  'unhappi',
  'sinc',
  'ive',
  'come',
  'awar',
  'say',
  'thing',
  'rest',
  'team',
  'includ',
  'dinosaur',
  'still',
  'work',
  'accord',
  'former',
  'work',
  'norm',
  'aita',
  'edit',
  'entir',
  'divis',
  'includ',
  'sarah',
  'report',
  'sarah',
  'salari',
  'hourli',
  'sarah',
  'work',
  'affect',
  'behaviour',
  'part',
  'job',
  'avail',
  'intern',
  'client',
  'applic',
  'extern',
  'stakehold',
  'extern',
  'stakehold',
  'see',
  'whether',
  'sarah',
  'onlin',
  'offlin',
  'link',
  'singl',
  'public',
  'skype',
  'network',
  'compris',
  'relat',
  'agenc',
  'organis',
  'compani',
  'ministri',
  'separ',
  'sarah',
  'conduct',
  'affect',
  'team',
  'member',
  'sinc',
  'respond',
  'queri',
  'meant',
  'sarah',
  'particularli',
  'urgent',
  'also',
  'reflect',
  'badli',
  'divis',
  'whole',
  'sarah',
  'unreach'],
 ['son',
  'wife',
  'babi',
  'boy',
  'everyon',
  'overjoy',
  'excit',
  'issu',
  'risen',
  'recent',
  'dil',
  'pregnant',
  'suggest',
  'host',
  'welcom',
  'parti',
  'grandson',
  'right',
  'get',
  'discharg',
  'hospit',
  'ive',
  'made',
  'arrang',
  'even',
  'empti',
  'room',
  'stay',
  'reason',
  'said',
  'shed',
  'rather',
  'spend',
  'first',
  'week',
  'home',
  'newborn',
  'said',
  'welcom',
  'parti',
  'husband',
  'talk',
  'son',
  'said',
  'well',
  'see',
  'coupl',
  'day',
  'ago',
  'found',
  'daughter',
  'law',
  'given',
  'birth',
  'week',
  'ago',
  'one',
  'knew',
  'nephew',
  'told',
  'immedi',
  'call',
  'son',
  'confirm',
  'wife',
  'lie',
  'hid',
  'date',
  'birth',
  'famili',
  'told',
  'accept',
  'lie',
  'want',
  'welcom',
  'parti',
  'love',
  'support',
  'given',
  'famili',
  'told',
  'disappoint',
  'oneh',
  'ruin',
  'welcom',
  'grandbabi',
  'also',
  'invit',
  'famili',
  'member',
  'theyr',
  'right',
  'disappoint',
  'well',
  'said',
  'last',
  'resort',
  'kept',
  'push',
  'made',
  'wife',
  'uncomfort',
  'appreci',
  'tri',
  'celebr',
  'new',
  'famili',
  'member',
  'proper',
  'manner',
  'argument',
  'end',
  'call',
  'upon',
  'say',
  'ruin',
  'joy',
  'newborn',
  'husband',
  'start',
  'text',
  'sinc',
  'stop',
  'repli',
  'phonecal',
  'threaten',
  'block',
  'nephew',
  'tattl',
  'think',
  'nephew',
  'decent',
  'enough',
  'inform',
  'famili',
  'otherwis',
  'god',
  'know',
  'long',
  'son',
  'wife',
  'go',
  'hide',
  'son',
  'keep',
  'us',
  'arm',
  'length',
  'weve',
  'alway',
  'kind',
  'welcom',
  'daughter',
  'law',
  'ger',
  'famili',
  'would',
  'disrespect',
  'famili',
  'like',
  'hand',
  'famili',
  'member',
  'see',
  'justifi',
  'action',
  'insist',
  'parti',
  'ps',
  'folk',
  'id',
  'appreci',
  'leav',
  'nephew',
  'conflict',
  'part'],
 ['friend',
  'zoey',
  'boyfriend',
  'rent',
  'apart',
  'near',
  'us',
  'love',
  'live',
  'landlord',
  'announc',
  'sell',
  'soon',
  'zoey',
  'boyfriend',
  'devast',
  'even',
  'talk',
  'someon',
  'bank',
  'sadli',
  'cant',
  'afford',
  'buy',
  'place',
  'husband',
  'talk',
  'realiz',
  'enough',
  'money',
  'buy',
  'apart',
  'told',
  'zoey',
  'boyfriend',
  'could',
  'buy',
  'could',
  'keep',
  'live',
  'differ',
  'would',
  'send',
  'rent',
  'money',
  'differ',
  'account',
  'zoey',
  'boyfriend',
  'lost',
  'basic',
  'start',
  'yell',
  'us',
  'said',
  'need',
  'us',
  'take',
  'away',
  'apart',
  'get',
  'rich',
  'rent',
  'money',
  'said',
  'someth',
  'us',
  'make',
  '*',
  '*',
  'buy',
  'apart',
  'us',
  'mortgag',
  'paid',
  'rent',
  'would',
  'use',
  'call',
  'us',
  'arrog',
  'among',
  'thing',
  'meanwhil',
  'im',
  'baffl',
  'overreact',
  'im',
  'wander',
  'offer',
  'realli',
  'offens',
  'aita'],
 ['sister',
  'cancer',
  'singl',
  'mom',
  'year',
  'old',
  'son',
  'ask',
  'take',
  'get',
  'treat',
  'could',
  'help',
  'focu',
  'studi',
  'provid',
  'normal',
  'routin',
  'husband',
  'asthma',
  'need',
  'inhal',
  'throughout',
  'day',
  'thing',
  'nephew',
  'prankster',
  'hed',
  'hide',
  'inhal',
  'prank',
  'give',
  'back',
  'soon',
  'panic',
  'hous',
  'far',
  'done',
  'time',
  'thought',
  'mess',
  'around',
  'day',
  'husband',
  'call',
  'work',
  'panic',
  'say',
  'inhal',
  'lost',
  'ask',
  'nephew',
  'taken',
  'prankmbut',
  'doubt',
  'sinc',
  'nephew',
  'would',
  'give',
  'back',
  'instantli',
  'panic',
  'got',
  'home',
  'look',
  'hour',
  'go',
  'thd',
  'hospit',
  'eventu',
  'got',
  'back',
  'found',
  'sit',
  'coffe',
  'tabl',
  'husband',
  'look',
  'next',
  'thing',
  'knew',
  'nephew',
  'giggl',
  'upstair',
  'moment',
  'lost',
  'yell',
  'told',
  'longer',
  'welcom',
  'home',
  'start',
  'panick',
  'parent',
  'call',
  'get',
  'bottom',
  'happen',
  'still',
  'defend',
  'say',
  'prank',
  'took',
  'thing',
  'far',
  'kick',
  'mom',
  'struggl',
  'insist',
  'take',
  'back',
  'refus',
  'theyr',
  'give',
  'hell',
  'unsupport',
  'make',
  'thing',
  'difficult',
  'struggl',
  'sister',
  'even',
  'blame',
  'husband',
  'keep',
  'thing',
  'lock',
  'away',
  'aita',
  'make',
  'hasti',
  'decidion'],
 ['im',
  'sahm',
  'kid',
  'dad',
  'sole',
  'incom',
  'earner',
  'hous',
  'respons',
  'bill',
  'groceri',
  'recent',
  'tightn',
  'grip',
  'expens',
  'would',
  'get',
  'mad',
  'littl',
  'thing',
  'like',
  'laundri',
  'twice',
  'week',
  'kid',
  'use',
  'clean',
  'product',
  'usual',
  'yesterday',
  'make',
  'breakfast',
  'kid',
  'use',
  'egg',
  'make',
  'scrambl',
  'egg',
  'came',
  'tabl',
  'found',
  'use',
  'start',
  'lash',
  'call',
  'irresponsbil',
  'use',
  'egg',
  'instead',
  'call',
  'unreason',
  'egg',
  'us',
  'kid',
  'get',
  'enough',
  'yell',
  'say',
  'keep',
  'mind',
  'one',
  'expect',
  'pay',
  'worri',
  'run',
  'groceri',
  'got',
  'upset',
  'lost',
  'appetit',
  'told',
  'could',
  'whole',
  'thing',
  'call',
  'childish',
  'immatur',
  'sulk',
  'honest',
  'straightforward',
  'end',
  'coffe',
  'breakfast',
  'left',
  'work',
  'without',
  'speak',
  'amitheasshol',
  'use',
  'egg',
  'instead',
  'whole',
  'famili',
  'could',
  'eat'],
 ['wife',
  'friend',
  'childhood',
  'name',
  'anthoni',
  'im',
  'complet',
  'honest',
  'say',
  'get',
  'along',
  'like',
  'rude',
  'disrespect',
  'noth',
  'like',
  'feel',
  'toward',
  'annoy',
  'sort',
  'speak',
  'much',
  'wife',
  'see',
  'live',
  'alon',
  'suffer',
  'medic',
  'condit',
  'cancer',
  'requir',
  'go',
  'hospit',
  'regularli',
  'receiv',
  'treatment',
  'found',
  'wife',
  'promis',
  'go',
  'everi',
  'chemo',
  'treatment',
  'support',
  'said',
  'commit',
  'made',
  'rough',
  'time',
  'sinc',
  'one',
  'els',
  'besid',
  'okayi',
  'issu',
  'first',
  'start',
  'affect',
  'eg',
  'cant',
  'go',
  'see',
  'friend',
  'stay',
  'son',
  'day',
  'wife',
  'could',
  'anthoni',
  'treatment',
  'etc',
  'etc',
  'ive',
  'talk',
  'said',
  'anthoni',
  'need',
  'compani',
  'support',
  'need',
  'let',
  'go',
  'last',
  'week',
  'kind',
  'last',
  'straw',
  'anthoni',
  'chemo',
  'session',
  'treatment',
  'wife',
  'want',
  'go',
  'ask',
  'stay',
  'home',
  'son',
  'told',
  'meet',
  'mom',
  'sister',
  'eat',
  'lunch',
  'home',
  'said',
  'need',
  'go',
  'kind',
  'flip',
  'said',
  'need',
  'could',
  'liter',
  'go',
  'see',
  'home',
  'next',
  'day',
  'someth',
  'threw',
  'fit',
  'call',
  'cruel',
  'forc',
  'leav',
  'anthoni',
  'sinc',
  'make',
  'look',
  'bad',
  'also',
  'said',
  'appoint',
  'mom',
  'sister',
  'import',
  'chemo',
  'session',
  'decid',
  'leav',
  'end',
  'argument',
  'end',
  'stay',
  'home',
  'kept',
  'ignor',
  'got',
  'back',
  'call',
  'selfish',
  'let',
  'support',
  'anthoni',
  'go',
  'girlfriend',
  'think',
  'im',
  'control',
  'jerk',
  'consider',
  'anthoni',
  'go',
  'aita'],
 ['recent',
  'found',
  'husband',
  'instal',
  'track',
  'devic',
  'sister',
  'car',
  'mechan',
  'fix',
  'confront',
  'refus',
  'tell',
  'go',
  'expand',
  'situat',
  'sister',
  'close',
  'threaten',
  'tell',
  'husband',
  'lash',
  'say',
  'noth',
  'line',
  'get',
  'involv',
  'told',
  'complic',
  'cant',
  'say',
  'anyth',
  'keep',
  'nose',
  'argument',
  'start',
  'avoid',
  'say',
  'gon',
  'na',
  'issu',
  'go',
  'threat',
  'aita',
  'threatn',
  'tell',
  'back',
  'context',
  'ask',
  'put',
  'context',
  'im',
  'sure',
  'relev',
  'found',
  'track',
  'devic',
  'heard',
  'talk',
  'phone',
  'said',
  'mom',
  'phone',
  'knew',
  'doubt',
  'close',
  'sil',
  'also',
  'talk',
  'phone',
  'sound',
  'like',
  'talk',
  'mom',
  'tone',
  'formal',
  'usual'],
 ['[',
  ']',
  'marri',
  'wife',
  '[',
  ']',
  'year',
  'wonder',
  '-year-old',
  'daughter',
  '-year-old',
  'son',
  'wife',
  'mother',
  'view',
  'agre',
  'two',
  'year',
  'ago',
  'daughter',
  'th',
  'birthday',
  'sent',
  'book',
  'crash',
  'diet',
  'promis',
  'someth',
  'like',
  'pound',
  'weight',
  'loss',
  'three',
  'day',
  'daughter',
  'devast',
  'underli',
  'messag',
  'clear',
  'day',
  'month',
  'start',
  'eat',
  'whole',
  'plate',
  'food',
  'dinner',
  'daughter',
  'healthi',
  'girl',
  'highli',
  'activ',
  'studiou',
  'importantli',
  'happi',
  'grandmoth',
  'believ',
  'reach',
  'full',
  'potenti',
  'whatev',
  'mean',
  'think',
  'shell',
  'front',
  'cover',
  'magazin',
  'shed',
  'weight',
  'sinc',
  'made',
  'view',
  'clear',
  'made',
  'mission',
  'block',
  'unsupervis',
  'contact',
  'includ',
  'gift',
  'month',
  'ago',
  'daughter',
  'upcom',
  'th',
  'birthday',
  'grandma',
  'text',
  'ask',
  'new',
  'address',
  'normal',
  'would',
  'ask',
  'wife',
  'sinc',
  'answer',
  'within',
  'minut',
  'text',
  'instead',
  'wife',
  'would',
  'given',
  'real',
  'address',
  'abl',
  'respond',
  'first',
  'fake',
  'one',
  'tell',
  'wife',
  'respons',
  'necessari',
  'guarante',
  'id',
  'home',
  'intercept',
  'gift',
  'daughter',
  'would',
  'open',
  'someth',
  'address',
  'gave',
  'numbersa',
  'street',
  'somewher',
  'even',
  'sure',
  'exist',
  'coupl',
  'week',
  'later',
  'daughter',
  'birthday',
  'realiz',
  'fact',
  'exist',
  'packag',
  'return',
  'wife',
  'furiou',
  'wife',
  'amend',
  'address',
  'gave',
  'grandma',
  'insist',
  'complet',
  'innoc',
  'packag',
  'well',
  'day',
  'schedul',
  'deliveri',
  'decid',
  'work',
  'home',
  'arriv',
  'open',
  'found',
  'baton',
  'twirl',
  'uniform',
  'daughter',
  'hobbi',
  'sound',
  'innoc',
  'enough',
  'least',
  'two',
  'size',
  'small',
  'sat',
  'wife',
  'stupid',
  'thing',
  'front',
  'us',
  'said',
  'clearli',
  'intent',
  'wife',
  'refus',
  'acknowledg',
  'mother',
  'even',
  'madder',
  'throw',
  'uniform',
  'neighbor',
  'garbag',
  'neighbor',
  'permiss',
  'handl',
  'correctli'],
 ['get',
  'marri',
  'fiancé',
  'decid',
  'dri',
  'wed',
  'sinc',
  'drink',
  'see',
  'point',
  'spend',
  'money',
  'alcohol',
  'debat',
  'get',
  'cash',
  'bar',
  'decid',
  'alcohol',
  'wide',
  'rang',
  'drink',
  'juic',
  'soda',
  'provid',
  'inform',
  'guest',
  'via',
  'invit',
  'someth',
  'along',
  'line',
  'worri',
  'choos',
  'driver',
  'pay',
  'taxi',
  'sinc',
  'everybodi',
  'abl',
  'drive',
  'friend',
  'call',
  'ask',
  'joke',
  'dri',
  'wed',
  'deni',
  'ask',
  'two',
  'time',
  'still',
  'deni',
  'joke',
  'ask',
  'wrong',
  'suppos',
  'fun',
  'without',
  'alcohol',
  'function',
  'night',
  'alright',
  'chose',
  'dri',
  'wed',
  'might',
  'ah',
  'told',
  'oblig',
  'provid',
  'alcohol',
  'abl',
  'fun',
  'without',
  'need',
  'alcohol',
  'badli',
  'function',
  'without',
  'even',
  'one',
  'night',
  'peopl',
  'knew',
  'might',
  'alcohol',
  'problem',
  'consid',
  'therapi',
  'treat',
  'flip',
  'took',
  'invit',
  'back',
  'apologis',
  'use',
  'mani',
  'slur',
  'friend',
  'divid',
  'asshol',
  'say',
  'right',
  'say',
  'right',
  'reddit',
  'aita',
  'someon',
  'said',
  'edit',
  'cash',
  'bar',
  '-',
  'debat',
  'decid',
  'sinc',
  'would',
  'pay',
  'fee',
  'open',
  'cash',
  'bar',
  'want',
  'pay',
  'alcohol',
  'event',
  'wed',
  'host',
  'dinnerspartysev',
  'regularli',
  'friend',
  'never',
  'provid',
  'alcohol',
  'peopl',
  'know',
  'us',
  'known',
  'never',
  'one',
  'provid',
  'alcohol',
  'one',
  'want',
  'would',
  'bring',
  'beer',
  'two',
  'garden',
  'parti',
  'drank',
  'avail',
  'edit',
  'serious',
  'shock',
  '„',
  'hate',
  'wed',
  'drink',
  'comment',
  'despis',
  'wed',
  'come',
  'hammer',
  'instead',
  'stay',
  'away',
  'one',
  'forc',
  'come',
  'hate',
  'wed',
  'much',
  'edit',
  'still',
  'amaz',
  'mani',
  'peopl',
  'need',
  'alcohol',
  'social',
  'gather',
  'say',
  'need',
  'function',
  'fun',
  'bore',
  'without',
  '-',
  'still',
  'firmli',
  'believ',
  'healthi',
  'thank',
  'info',
  'less',
  'peopl',
  'come',
  'wed',
  'afraid',
  'peopl',
  'come',
  'coupl',
  'declin',
  'grandma',
  'birthday',
  'day',
  'happi',
  'birthday',
  'advanc',
  'see',
  'reddit',
  'also',
  'decid',
  'ah',
  'take',
  'thank',
  'respect',
  'convers',
  'discuss'],
 ['fianc',
  'invit',
  'go',
  'along',
  'trip',
  'california',
  'week',
  'children',
  'due',
  'father',
  'wrestl',
  'tournament',
  'miss',
  'alreadi',
  'spent',
  'hundr',
  'nonrefund',
  'ticket',
  'particip',
  'drove',
  'famili',
  'alreadi',
  'quit',
  'exhaust',
  'get',
  'resort',
  'listen',
  'month',
  'old',
  'scream',
  'practic',
  'entir',
  'ride',
  'hour',
  'insist',
  'go',
  'drive',
  'swap',
  'drive',
  'site',
  'see',
  'cram',
  'vehicl',
  'like',
  'sardin',
  'floor',
  'famili',
  'dog',
  'lb',
  'bull',
  'mastiff',
  'two',
  'puppi',
  'ye',
  'dog',
  'shit',
  'also',
  'present',
  'quick',
  'clean',
  'still',
  'car',
  'putrid',
  'get',
  'resort',
  'quickli',
  'notic',
  'seen',
  'built',
  'babysitt',
  'fianc',
  'sister',
  'month',
  'old',
  'daughter',
  'everytim',
  'fsil',
  'husband',
  'want',
  'take',
  'shower',
  'swim',
  'eat',
  'even',
  'feel',
  'like',
  'hold',
  'child',
  'thrown',
  'lap',
  'basic',
  'everi',
  'singl',
  'time',
  'adult',
  'claim',
  'child',
  'want',
  'cant',
  'exactli',
  'argu',
  'point',
  'held',
  'babi',
  'much',
  'put',
  'arm',
  'quit',
  'often',
  'even',
  'pass',
  'hallway',
  'hit',
  'point',
  'get',
  'piss',
  'pool',
  'yesterday',
  'fsil',
  'get',
  'within',
  'minut',
  'pass',
  'babi',
  'hand',
  'back',
  'mayb',
  'minut',
  'later',
  'claim',
  'need',
  'use',
  'restroom',
  'stay',
  'indoor',
  'mayb',
  'minut',
  'later',
  'come',
  'insid',
  'pass',
  'babi',
  'say',
  'need',
  'shower',
  'ask',
  'bring',
  'child',
  'minut',
  'pass',
  'babi',
  'lock',
  'room',
  'ive',
  'bare',
  'left',
  'sinc',
  'fianc',
  'come',
  'bit',
  'ago',
  'tell',
  'go',
  'eat',
  'told',
  'feel',
  'like',
  'go',
  'becom',
  'highchair',
  'babi',
  'parent',
  'ate',
  'ive',
  'alreadi',
  'held',
  'child',
  'enough',
  'sever',
  'drink',
  'spill',
  'octopu',
  'arm',
  'said',
  'cant',
  'sit',
  'avoid',
  'hold',
  'babi',
  'wast',
  'trip',
  'say',
  'half',
  'time',
  'ask',
  'though',
  'babi',
  'practic',
  'toss',
  'aita'],
 ['began',
  'work',
  'home',
  'month',
  'ago',
  'husband',
  'bought',
  'hous',
  'live',
  'got',
  'togeth',
  'call',
  'properti',
  'fine',
  'hous',
  'small',
  'room',
  'one',
  'use',
  'empti',
  'til',
  'start',
  'use',
  'offic',
  'wfh',
  'job',
  'go',
  'fine',
  'job',
  'til',
  'sat',
  'last',
  'night',
  'say',
  'expect',
  '%',
  'profit',
  'whatev',
  'get',
  'job',
  'sinc',
  'provid',
  'offic',
  'work',
  'complet',
  'caught',
  'guard',
  'ask',
  'seriou',
  'went',
  'home',
  'could',
  'use',
  'room',
  'purpos',
  'sinc',
  'properti',
  'said',
  'call',
  'unreason',
  'led',
  'blowup',
  'yell',
  'say',
  'get',
  'penni',
  'pitch',
  'fit',
  'accus',
  'take',
  'full',
  'advantag',
  'even',
  'though',
  'mortgag',
  'paid',
  'chore',
  'hous',
  'well',
  'share',
  'pay',
  'bill',
  'half',
  'got',
  'famili',
  'involv',
  'theyr',
  'split',
  'mom',
  'think',
  'im',
  'difficult',
  '%',
  'huge',
  'amout',
  'room',
  'provid',
  'stabil',
  'wfh',
  'husband',
  'get',
  'sort',
  'benefit',
  'aita',
  'put',
  'foot',
  'refus',
  'pay',
  'penni'],
 ['date',
  'john',
  'year',
  'singl',
  'dad',
  'kid',
  '[',
  'jr',
  'mm',
  ']',
  'move',
  'kid',
  'littl',
  'ago',
  'gave',
  'say',
  'super',
  'protect',
  'kid',
  'abl',
  'meet',
  'til',
  'later',
  'said',
  'might',
  'like',
  'start',
  'eas',
  'accept',
  'encourag',
  'push',
  'extra',
  'friendli',
  'buy',
  'stuff',
  'cook',
  'daili',
  'busi',
  'often',
  'time',
  'boy',
  'cling',
  'see',
  'see',
  'get',
  'wrong',
  'im',
  'grate',
  'outcom',
  'issu',
  'cant',
  'away',
  'long',
  'time',
  'hour',
  'id',
  'move',
  'cant',
  'go',
  'anywher',
  'without',
  'take',
  'bare',
  'time',
  'wors',
  'work',
  'got',
  'interrupt',
  'john',
  'suggest',
  'work',
  'less',
  'hour',
  'happen',
  'sister',
  'get',
  'marri',
  'soon',
  'itll',
  'held',
  'hour',
  'away',
  'ill',
  'travel',
  'invit',
  'state',
  'child-fre',
  'cant',
  'take',
  'kid',
  'john',
  'heard',
  'told',
  'immedi',
  'call',
  'apolog',
  'caus',
  'attend',
  'stun',
  'ask',
  'went',
  'much',
  'kid',
  'ador',
  'theyll',
  'go',
  'crazi',
  'im',
  'hour',
  'away',
  'besid',
  'busi',
  'look',
  'said',
  'fault',
  'either',
  'take',
  'time',
  'work',
  'stay',
  'get',
  'babysitt',
  'threw',
  'fit',
  'selfish',
  'unfeel',
  'let',
  'attend',
  'wed',
  'tell',
  'sister',
  'let',
  'kid',
  'come',
  'cant',
  'ask',
  'thing',
  'insist',
  'go',
  'kept',
  'say',
  'go',
  'went',
  'told',
  'boy',
  'look',
  'excus',
  'get',
  'time',
  'away',
  'even',
  'speak',
  'confront',
  'said',
  'result',
  'insist',
  'go',
  'wed',
  'choos',
  'sister',
  'stepkid',
  'even',
  'said',
  'thank',
  'kid',
  'accept',
  'give',
  'much',
  'attent',
  'speechless',
  'felt',
  'offend',
  'aita',
  'stand',
  'ground',
  'want',
  'go',
  'sister',
  'great',
  'relationship',
  'attend',
  'wed',
  'caus',
  'issu',
  'edit',
  'inform',
  'answer',
  'question',
  'biolog',
  'mom',
  'eldest',
  'late',
  'wife',
  'date',
  'ex',
  'girlfriend',
  'middl',
  'youngest',
  'child',
  'pictur',
  'eldest',
  'user',
  'kind',
  'distant',
  'half',
  'brother',
  'issu',
  'year',
  'left',
  'navig',
  'help',
  're-bond',
  'like',
  'said',
  'like',
  'spend',
  'time',
  'result',
  'bond',
  'togeth',
  'great',
  'thing',
  'john',
  'clearli',
  'busi',
  'tri',
  'fix',
  'problem',
  'long',
  'time',
  'ago'],
 ['cant',
  'believ',
  'happen',
  'go',
  'daughter',
  'alway',
  'natur',
  'blond',
  'howev',
  'last',
  'month',
  'brown',
  'hair',
  'come',
  'root',
  'ask',
  'us',
  'dye',
  'earlierbthi',
  'month',
  'said',
  'ye',
  'done',
  'profession',
  '-',
  'appoint',
  'book',
  'th',
  'februari',
  'popular',
  'salon',
  'good',
  'reput',
  'mean',
  'long',
  'wait',
  'time',
  'done',
  'done',
  'right',
  'reason',
  'sister',
  'wife',
  'sensit',
  'scalp',
  'last',
  'time',
  'older',
  'daughter',
  'use',
  'home',
  'kit',
  'went',
  'badli',
  'wrong',
  'doctor',
  'kind',
  'wrong',
  'youngest',
  'daughter',
  'happi',
  'agre',
  'wait',
  'weekend',
  'went',
  'friend',
  'bought',
  'home',
  'kit',
  'die',
  'hair',
  'friend',
  'hous',
  'without',
  'adult',
  'assist',
  'well',
  'orang',
  'offer',
  'buy',
  'brown',
  'black',
  'kit',
  'cover',
  'appoint',
  'scream',
  'blond',
  'brunett',
  'realli',
  'left',
  'room',
  'sinc',
  'refus',
  'go',
  'school',
  'fix',
  'said',
  'magic',
  'hair',
  'fix',
  'spell',
  'choic',
  'go',
  'dark',
  'week',
  'put',
  'orang',
  'colour',
  'phone',
  'salon',
  'move',
  'appoint',
  'contact',
  'case',
  'cancel',
  'reddit',
  'aita',
  'send',
  'daughter',
  'school',
  'self',
  'inflict',
  'orang',
  'hair',
  'edit',
  'clear',
  'mention',
  'time',
  'brownbrunett',
  'option',
  'temporari',
  'colour',
  'perman',
  'itd',
  'wash',
  'week',
  'anyway',
  'edit',
  'tri',
  'salon',
  'aswel',
  'howev',
  'similar',
  'wait',
  'time',
  'one',
  'fitnusnin',
  'earlier',
  'th',
  'jan',
  'honestli',
  'googl',
  'review',
  'mix',
  'bag-',
  'star',
  'overli',
  'confid',
  'one',
  'edit',
  'thank',
  'respons',
  'advic',
  'die',
  'tri',
  'purpleblu',
  'shampoo',
  'instead',
  'hope',
  'tone',
  'also',
  'wife',
  'got',
  'phone',
  'salon',
  'get',
  'friday',
  'shell',
  'suck',
  'rest',
  'week',
  'go',
  'costbu',
  'nearli',
  'twice',
  'much',
  'normal',
  'salon',
  'guess',
  'extra',
  'chore',
  'final',
  'edit',
  'wife',
  'sourc',
  'silver',
  'shampoo',
  'shortli',
  'daughter',
  'emerg',
  'room',
  'apologis',
  'us',
  'tantrum',
  'accept',
  'apologis',
  'ruin',
  'hair',
  'laugh',
  'said',
  'hair',
  'apologis',
  'grab',
  'mirror',
  'stroke',
  'hair',
  'said',
  'heartfelt',
  'sorri',
  'seem',
  'right',
  'world'],
 ['recent',
  'threw',
  'year-old',
  'birthday',
  'parti',
  'real',
  'birthday',
  'parti',
  'sinc',
  'year',
  'old',
  'due',
  'covid',
  'first',
  'one',
  'hed',
  'actual',
  'rememb',
  'want',
  'make',
  'special',
  'invit',
  'closest',
  'friend',
  'famili',
  'member',
  'kid',
  'one',
  'cousin',
  'singl',
  'mom',
  'unruli',
  'year-old',
  'loud',
  'disobedi',
  'nightmar',
  'public',
  'came',
  'time',
  'blow',
  'candl',
  'cut',
  'birthday',
  'cake',
  'came',
  'stood',
  'directli',
  'next',
  'son',
  'anticip',
  'go',
  'happen',
  'next',
  'ask',
  'husband',
  'stand',
  'behind',
  'kid',
  'case',
  'tri',
  'pull',
  'anyth',
  'sang',
  'kid',
  'kept',
  'tri',
  'blow',
  'candl',
  'husband',
  'kept',
  'block',
  'pull',
  'back',
  'could',
  'tell',
  'kid',
  'get',
  'frustrat',
  'eventu',
  'son',
  'blew',
  'candl',
  'kid',
  'absolut',
  'lost',
  'threw',
  'tantrum',
  'slam',
  'entir',
  'arm',
  'cake',
  'knock',
  'tabl',
  'awkward',
  'everyon',
  'gasp',
  'got',
  'quiet',
  'son',
  'look',
  'us',
  'could',
  'tell',
  'start',
  'cri',
  'effort',
  'caus',
  'bigger',
  'scene',
  'husband',
  'pick',
  'whisper',
  'anoth',
  'special',
  'cake',
  'seem',
  'calm',
  'meanwhil',
  'cousin',
  'still',
  'stand',
  'scream',
  'cri',
  'arm',
  'cover',
  'cake',
  'mom',
  'nowher',
  'seen',
  'walk',
  'sink',
  'wash',
  'quietli',
  'told',
  'done',
  'cake',
  'apolog',
  'cousin',
  'scream',
  'face',
  'ran',
  'away',
  'husband',
  'end',
  'run',
  'buy',
  'sheet',
  'cake',
  'cut',
  'serv',
  'everyon',
  'spoke',
  'cousin',
  'parti',
  'happen',
  'sinc',
  'room',
  'brush',
  'say',
  'kid',
  'kid',
  'complet',
  'disagre',
  'ive',
  'plenti',
  'birthday',
  'parti',
  'kid',
  'let',
  'birthday',
  'boygirl',
  'moment',
  'suggest',
  'pay',
  'ruin',
  'cake',
  'look',
  'like',
  'crazi',
  'told',
  'import',
  'us',
  'birthday',
  'special',
  'son',
  'sinc',
  'would',
  'first',
  'one',
  'rememb',
  'would',
  'rememb',
  'cousin',
  'ruin',
  'special',
  'moment',
  'got',
  'extrem',
  'defens',
  'refus',
  'pay',
  'anyth',
  'accus',
  'act',
  'like',
  'perfect',
  'mom',
  'began',
  'list',
  'way',
  'fact',
  'perfect',
  'hurt',
  'convers',
  'spoken',
  'sinc',
  'sent',
  'bill',
  'ruin',
  'cake',
  'paid',
  'us',
  'actual',
  'feel',
  'pay',
  'cake',
  'sinc',
  'kid',
  'reason',
  'get',
  'new',
  'one',
  'go',
  'far',
  'husband',
  'think',
  'shell',
  'never',
  'pay',
  'us',
  'drop',
  'issu',
  'point',
  'say',
  'sinc',
  'singl',
  'mom',
  'probabl',
  'hard',
  'cut',
  'slack',
  'understand',
  'feel',
  'like',
  'let',
  'son',
  'hook',
  'lead',
  'even',
  'bigger',
  'problem',
  'futur',
  'hold',
  'account',
  'aita'],
 ['father',
  'also',
  'take',
  'care',
  'niec',
  'father',
  'pass',
  'away',
  'wife',
  'alway',
  'treat',
  'like',
  'famili',
  'give',
  'thing',
  'equal',
  'feel',
  'left',
  'honestli',
  'realli',
  'care',
  'financi',
  'cant',
  'support',
  'life',
  'eldest',
  'move',
  'away',
  'money',
  'spare',
  'abl',
  'get',
  'thing',
  'daughter',
  'go',
  'away',
  'colleg',
  'neic',
  'excit',
  'came',
  'wife',
  'colleg',
  'like',
  'told',
  'great',
  'think',
  'colleg',
  'said',
  'would',
  'good',
  'appli',
  'scholarship',
  'would',
  'easier',
  'later',
  'laugh',
  'ask',
  'tuition',
  'would',
  'pay',
  'told',
  'money',
  'pay',
  'kid',
  'would',
  'help',
  'basic',
  'necess',
  'silent',
  'went',
  'room',
  'appar',
  'spoke',
  'father',
  'call',
  'rage',
  'said',
  'cruel',
  'especi',
  'sinc',
  'brother',
  'alway',
  'close',
  'aliv',
  'told',
  'type',
  'money',
  'save',
  'said',
  'care',
  'wouldv',
  'start',
  'save',
  'soon',
  'took',
  'brother',
  'die',
  'young',
  'much',
  'save',
  'niec',
  'mother',
  'side',
  'offer',
  'anyth',
  'admit',
  'couldv',
  'told',
  'earlier',
  'pay',
  'tuition',
  'aita',
  'edit',
  'addit',
  'inform',
  'ye',
  'receiv',
  'ss',
  'brother',
  'littl',
  'credit',
  'much',
  'pay',
  'im',
  'legal',
  'guardian',
  'adopt',
  'im',
  'look',
  'fafsa'],
 ['happen',
  'yesterday',
  'morn',
  'morn',
  'kitchen',
  'eat',
  'breakfast',
  'wear',
  'regular',
  'underwar',
  'suddenli',
  'heard',
  'gasp',
  'sound',
  'come',
  'toward',
  'turn',
  'saw',
  'mother',
  'sister',
  'law',
  'yell',
  'wear',
  'utter',
  'shock',
  'froze',
  'seat',
  'husband',
  'asleep',
  'time',
  'mustv',
  'heard',
  'mom',
  'sister',
  'scream',
  'ran',
  'downstair',
  'ask',
  'go',
  'mom',
  'start',
  'rant',
  'loudli',
  'appropri',
  'scene',
  'daughter',
  'saw',
  'im',
  'still',
  'sit',
  'shock',
  'husband',
  'start',
  'yell',
  'go',
  'put',
  'someth',
  'quickli',
  'went',
  'upstair',
  'mom',
  'kept',
  'yell',
  'call',
  'shameless',
  'inappropri',
  'heard',
  'husband',
  'say',
  'happen',
  'mad',
  'put',
  'coat',
  'went',
  'downstair',
  'start',
  'argu',
  'mother',
  'law',
  'told',
  'come',
  'without',
  'notic',
  'turn',
  'husband',
  'told',
  'come',
  'discuss',
  'famili',
  'crisi',
  'mother',
  'law',
  'said',
  'wrong',
  'walk',
  'around',
  'half',
  'nake',
  'know',
  'key',
  'might',
  'show',
  'minut',
  'told',
  'home',
  'said',
  'son',
  'home',
  'argu',
  'husband',
  'told',
  'knock',
  'apolog',
  'refus',
  'went',
  'bavk',
  'upstair',
  'mom',
  'sister',
  'left',
  'call',
  'childish',
  'inappropri',
  'tri',
  'explain',
  'side',
  'said',
  'done',
  'done',
  'promis',
  'mom',
  'apolog',
  'said',
  'never',
  'apolog',
  'gon',
  'na',
  'wait',
  'decad',
  'got',
  'upset',
  'call',
  'disreslect',
  'toward',
  'guest',
  'mother',
  'in-law',
  'technic',
  'guest',
  'still',
  'nag',
  'apolog',
  'mom',
  'via',
  'email',
  'get',
  'aita',
  'apolog',
  'ill',
  'apolog',
  'turn',
  'im',
  'ta',
  'edit',
  '-',
  'wow',
  'mani',
  'comment',
  'cant',
  'respond',
  'howev',
  'ju',
  'saw',
  'info',
  'question',
  '-',
  'ill',
  'answer',
  '*',
  'first',
  'formost',
  'im',
  'american',
  'wish',
  'lol',
  'guy',
  'probabl',
  'figur',
  'horrif',
  'grammar',
  'lol',
  'best',
  '*',
  'mother',
  'in-law',
  'copi',
  'key',
  'happen',
  'told',
  'husband',
  'tell',
  'mom',
  'give',
  'key',
  'back',
  'said',
  'punish',
  'someth',
  '*',
  'ye',
  'tend',
  'take',
  'side',
  'often',
  'super',
  'conserv',
  'like',
  'much',
  '*',
  'oh',
  'one',
  'thing',
  'countri',
  'live',
  'countri',
  'origin',
  'treat',
  'women',
  'possess',
  'eg',
  'instead',
  'call',
  'name',
  'would',
  'say',
  'eric',
  'wife',
  'woman',
  'rude',
  'offens',
  'anoth',
  'eg',
  'lot',
  'place',
  'women',
  'access',
  'see',
  'woman',
  'drive',
  'seen',
  'unusu',
  'thing',
  'reason',
  'marri',
  'husband',
  'differ',
  'truth',
  'told',
  'ive',
  'feel',
  'overwhelm',
  'depress',
  'late',
  'mom',
  'near',
  'could',
  'visit',
  'vent'],
 ['english',
  'first',
  'languag',
  'us',
  'stream',
  'devic',
  'price',
  'realli',
  'ill',
  'tri',
  'keep',
  'short',
  'mom',
  'pass',
  'away',
  'four',
  'year',
  'ago',
  'one',
  'thing',
  'dadm',
  'clang',
  'ever',
  'sinc',
  'movi',
  'realli',
  'enjoy',
  'togeth',
  'guess',
  'took',
  'comfort',
  'keep',
  'activ',
  'time',
  'sisterf',
  'got',
  'two',
  'screen',
  'netflix',
  'subscript',
  'gave',
  'one',
  'dad',
  'could',
  'use',
  'whenev',
  'want',
  'four',
  'year',
  'abl',
  'get',
  'pretti',
  'much',
  'rest',
  'sinc',
  'sister',
  'pay',
  'dad',
  'netflix',
  'thought',
  'gave',
  'one',
  'screen',
  'use',
  'biggi',
  'ive',
  'town',
  'ever',
  'sinc',
  'new',
  'year',
  'eve',
  'final',
  'came',
  'back',
  'home',
  'week',
  'ago',
  'told',
  'dad',
  'see',
  'movi',
  'togeth',
  'netflix',
  'sum',
  'said',
  'netflix',
  'work',
  'found',
  'odd',
  'ask',
  'meant',
  'take',
  'phone',
  'said',
  'ask',
  'sister',
  'month',
  'ago',
  'said',
  'work',
  'theyd',
  'wait',
  'work',
  'hum',
  'tri',
  'log',
  'let',
  'call',
  'sister',
  'ask',
  'password',
  'said',
  'share',
  'account',
  'anymor',
  'nephew',
  'use',
  'one',
  'screen',
  'anoth',
  'husband',
  'enrag',
  'ask',
  'told',
  'lie',
  'dad',
  'said',
  'heart',
  'tell',
  'told',
  'heart',
  'lie',
  'hang',
  'sinc',
  'ive',
  'gotten',
  'dad',
  'new',
  'netflix',
  'account',
  'ive',
  'chang',
  'password',
  'dad',
  'two',
  'day',
  'ago',
  'call',
  'say',
  'bil',
  'want',
  'watch',
  'got',
  'account',
  'kick',
  'told',
  'yeah',
  'flip',
  'ask',
  'password',
  'cant',
  'afford',
  'said',
  'well',
  'heart',
  'tell',
  'hang',
  'phone',
  'bil',
  'text',
  'call',
  'petti',
  'ah',
  'dad',
  'oblivi',
  'sister',
  'call',
  'ask',
  'password',
  'one',
  'platform',
  'know',
  'children-friendli',
  'one',
  'nephew',
  'want',
  'see',
  'encanto',
  'said',
  'apolog',
  'dad',
  'first',
  'least',
  'said',
  'nephew',
  'discomfort'],
 ['husband',
  'expect',
  'babi',
  'may',
  'know',
  'new',
  'batman',
  'movi',
  'releas',
  'earli',
  'march',
  'husband',
  'big',
  'fan',
  'kind',
  'stuff',
  'want',
  'see',
  'open',
  'day',
  'issu',
  'estim',
  'due',
  'date',
  'exactli',
  'day',
  'know',
  'fraction',
  'babi',
  'actual',
  'born',
  'exact',
  'due',
  'day',
  'alway',
  'regular',
  'period',
  'feel',
  'may',
  'one',
  'case',
  'say',
  'import',
  'see',
  'movi',
  'first',
  'day',
  'spoiler',
  'even',
  'end',
  'babi',
  'day',
  'watch',
  'movi',
  'worst',
  'would',
  'arriv',
  'hour',
  'late',
  'big',
  'deal',
  'say',
  'irrat',
  'emot',
  'pregnant',
  'upset',
  'feel',
  'depriorit',
  'asshol'],
 ['marri',
  'wife',
  'last',
  'year',
  'four',
  'year',
  'date',
  'mix',
  'famili',
  'two',
  'boy',
  'dylan',
  'tyler',
  'girl',
  'sam',
  'children',
  'accommod',
  'idea',
  'live',
  'togeth',
  'pretti',
  'well',
  'dylan',
  'ty',
  'father',
  'wife',
  'got',
  'divorc',
  'tyler',
  'born',
  'agre',
  'would',
  'visit',
  'right',
  'around',
  'two',
  'three',
  'year',
  'ago',
  'tyler',
  'call',
  'dad',
  'dinner',
  'night',
  'wife',
  'ask',
  'correct',
  'children',
  'call',
  'dad',
  'respect',
  'actual',
  'father',
  'found',
  'weird',
  'agre',
  'caus',
  'end',
  'theyr',
  'children',
  'although',
  'never',
  'end',
  'week',
  'dylan',
  'footbal',
  'match',
  'tyler',
  'piano',
  'lesson',
  'wife',
  'usual',
  'pick',
  'time',
  'work',
  'suggest',
  'pick',
  'togeth',
  'dylan',
  'practic',
  'jump',
  'car',
  'went',
  'pick',
  'tyler',
  'sinc',
  'decid',
  'meet',
  'piano',
  'teacher',
  'met',
  'wife',
  'dylan',
  'greet',
  'us',
  'ask',
  'kid',
  'dad',
  'sincer',
  'forgot',
  'promis',
  'made',
  'year',
  'ago',
  'said',
  'inde',
  'father',
  'wife',
  'almost',
  'instantli',
  'correct',
  'stepfath',
  'dylan',
  'said',
  'loud',
  'mom',
  'return',
  'home',
  'awkward',
  'arriv',
  'call',
  'break',
  'promis',
  'say',
  'im',
  'kid',
  'dad',
  'make',
  'wors',
  'morn',
  'notic',
  'kid',
  'act',
  'distant',
  'toward',
  'mother',
  'deliber',
  'call',
  'dad',
  'whenev',
  'around',
  'feel',
  'guilti',
  'caus',
  'first',
  'time',
  'tension',
  'fault',
  'aita',
  'call',
  'kid',
  'updat',
  'thank',
  'comment',
  'read',
  'still',
  'appreci',
  'hour',
  'ago',
  'lunch',
  'decid',
  'bring',
  'topic',
  'ask',
  'wife',
  'kid',
  'call',
  'dad',
  'someth',
  'want',
  'said',
  'afraid',
  'call',
  'dad',
  'public',
  'would',
  'make',
  'kid',
  'believ',
  'forc',
  'view',
  'dad',
  'dylan',
  'told',
  'ridicul',
  'agre',
  'said',
  'caus',
  'thought',
  'would',
  'creat',
  'conflict',
  'ask',
  'sam',
  'dylan',
  'take',
  'tyler',
  'room',
  'open',
  'feel',
  'interact',
  'ex',
  'know',
  'kid',
  'father',
  'stuff',
  'still',
  'told',
  'thought',
  'guy',
  'trash',
  'parent',
  'give',
  'bad',
  'exampl',
  'kid',
  'interact',
  'much',
  'said',
  'want',
  'keep',
  'good',
  'relationship',
  'dude',
  'case',
  'kid',
  'want',
  'live',
  'told',
  'hurt',
  'kid',
  'focu',
  'spend',
  'time',
  'instead',
  'sinc',
  'mother',
  'know',
  'feel',
  'mani',
  'year',
  'final',
  'told',
  'anyth',
  'dylan',
  'tyler',
  'call',
  'dad',
  'im',
  'happi',
  'want',
  'stop',
  'whatev',
  'ridicul',
  'reason',
  'may',
  'shell',
  'ask',
  'kid',
  'cant',
  'mean',
  'must',
  'realiz',
  'shitti',
  'request',
  'admit',
  'got',
  'littl',
  'heat',
  'use',
  'harsher',
  'word',
  'wouldv',
  'like',
  'use',
  'im',
  'still',
  'glad',
  'could',
  'final',
  'tell',
  'ill',
  'start',
  'direct',
  'toward',
  'touch',
  'adopt',
  'subject',
  'thought',
  'much',
  'later',
  'ill',
  'bring',
  'updat',
  'happen',
  'sinc',
  'support',
  'idea',
  'thank',
  'help',
  'thank',
  'award',
  'pleas',
  'use',
  'money',
  'reddit',
  'haha'],
 ['rent',
  'spare',
  'bedroom',
  'hous',
  '$',
  'month',
  'market',
  'rate',
  'area',
  'know',
  'roommat',
  'well',
  'work',
  'compani',
  'work',
  'earli',
  'morn',
  'work',
  'late',
  'even',
  'often',
  'ship',
  'pass',
  'night',
  'friday',
  'hot',
  'water',
  'heater',
  'broke',
  'home',
  'warranti',
  'guy',
  'said',
  'get',
  'anyon',
  'monday',
  'morn',
  'hot',
  'ball',
  'right',
  'upset',
  'cold',
  'shower',
  'kill',
  'anyon',
  'text',
  'tenant',
  'hot',
  'water',
  'monday',
  'respond',
  '👍',
  'see',
  'weekend',
  'normal',
  'said',
  'guy',
  'got',
  'fix',
  'heater',
  'done',
  'text',
  'let',
  'know',
  'hot',
  'water',
  'back',
  'hit',
  'gem',
  'hotel',
  'bill',
  '$',
  'want',
  'reimburs',
  'deduct',
  'next',
  'month',
  'rent',
  'stare',
  'text',
  'good',
  'even',
  'know',
  'gone',
  'got',
  'hotel',
  'room',
  'hot',
  'water',
  'extra',
  'could',
  'shower',
  'work',
  'got',
  'hotel',
  'room',
  'text',
  'hey',
  'know',
  'left',
  'rent',
  'still',
  'due',
  'full',
  'first',
  'month',
  'regardless',
  'choos',
  'sleep',
  'elsewher',
  'weekend',
  'text',
  'back',
  'water',
  'stay',
  'landlord',
  'provid',
  'livabl',
  'accomod',
  'text',
  'back',
  'water',
  'hot',
  'winter',
  'might',
  'point',
  'rent',
  'still',
  'due',
  'full',
  'failur',
  'pay',
  'rent',
  'result',
  'file',
  'court',
  'impact',
  'credit',
  'stop',
  'respond',
  'text',
  'friend',
  'said',
  'way',
  'harsh',
  'counter',
  '$',
  'discount',
  'two',
  'day',
  'someth',
  'sure',
  'shed',
  'ask',
  '$',
  'reduct',
  'would',
  'reason',
  'im',
  'pay',
  'hotel',
  'audac',
  'ask',
  'piss',
  'know',
  'jump',
  'talk',
  'file',
  'thirti',
  'day',
  'bit',
  'dramat',
  'ta'],
 ['ill',
  'prefac',
  'say',
  'boyfriend',
  'togeth',
  'year',
  'half',
  'ive',
  'jump',
  'one',
  'job',
  'anoth',
  'unemploy',
  'due',
  'health',
  'issu',
  'affect',
  'perform',
  'work',
  'usual',
  'im',
  'one',
  'handl',
  'rent',
  'bill',
  'groceri',
  'etc',
  'use',
  'credit',
  'card',
  'make',
  'purchas',
  'want',
  'last',
  'week',
  'boyfriend',
  'nowher',
  'ask',
  'credit',
  'card',
  'ask',
  'sinc',
  'im',
  'one',
  'handl',
  'payment',
  'supermarket',
  'trip',
  'told',
  'want',
  'buy',
  'food',
  'agre',
  'let',
  'take',
  'told',
  'return',
  'later',
  'got',
  'back',
  'later',
  'ask',
  'credit',
  'card',
  'like',
  'credit',
  'card',
  'thought',
  'joke',
  'told',
  'give',
  'back',
  'said',
  'hed',
  'keep',
  'ask',
  'said',
  'could',
  'start',
  'handl',
  'pay',
  'stuff',
  'behalf',
  'felt',
  'uncomfort',
  'said',
  'id',
  'rather',
  'burden',
  'stuff',
  'ask',
  'hand',
  'credit',
  'card',
  'refus',
  'said',
  'hell',
  'keep',
  'sinc',
  'much',
  'money',
  'anyway',
  'livid',
  'tri',
  'argu',
  'told',
  'trust',
  'let',
  'keep',
  'swore',
  'spend',
  'penni',
  'next',
  'morn',
  'went',
  'cancel',
  'regist',
  'new',
  'one',
  'mustv',
  'tri',
  'use',
  'call',
  'confus',
  'ask',
  'credit',
  'card',
  'valid',
  'anymor',
  'told',
  'cancel',
  'regist',
  'new',
  'one',
  'lost',
  'start',
  'scold',
  'say',
  'believ',
  'level',
  'petti',
  'kept',
  'trust',
  'financ',
  'financi',
  'abus',
  'becom',
  'late',
  'hung',
  'argument',
  'continu',
  'home',
  'call',
  'paranoid',
  'unreason',
  'start',
  'cold',
  'shoulder',
  'sulk',
  'day',
  'feel',
  'like',
  'hurt',
  'feel',
  'show',
  'amount',
  'distrust',
  'toward',
  'aita',
  'canel',
  'credit',
  'card',
  'edit',
  'ad',
  'info',
  '*',
  'like',
  'said',
  'physic',
  'disabl',
  'limit',
  'opportun',
  'work',
  'receiv',
  'disabl',
  'benefit',
  'want',
  'refus',
  'acknowledg',
  'disabl',
  'pretend',
  'exist',
  '*',
  'tell',
  'look',
  'job',
  'hed',
  'blame',
  'peopl',
  'purpos',
  'refus',
  'employ',
  'say',
  'look',
  'like',
  'lack',
  'beneaath',
  '*',
  'come',
  'humbl',
  'background',
  'longer',
  'contact',
  'famili',
  'due',
  'abandon',
  'issu',
  'friend',
  'lean',
  '*',
  'sinc',
  'someon',
  'ask',
  'answer',
  'almost',
  '%',
  'chore',
  '%',
  'reason',
  'disabl',
  '*',
  'final',
  'pay',
  'rent',
  'bill',
  'groceri',
  'med',
  'transport',
  'well',
  'need',
  'card',
  'constantli'],
 ['grandpar',
  'lot',
  'next',
  'hous',
  'use',
  'yard',
  'space',
  'sister',
  'born',
  'grandpa',
  'knock',
  'old',
  'shed',
  'empti',
  'lot',
  'built',
  'playground',
  'us',
  'everyth',
  'made',
  'two',
  'hand',
  'kid',
  'dream',
  'play',
  'chanc',
  'got',
  'grew',
  'let',
  'kid',
  'neighborhood',
  'use',
  'place',
  'play',
  'issu',
  'year',
  'later',
  'pass',
  'hous',
  'went',
  'mom',
  'found',
  'im',
  'expect',
  'husband',
  'andr',
  'start',
  'serious',
  'look',
  'hous',
  'wed',
  'half',
  'tri',
  'mom',
  'suggest',
  'buy',
  'grandpar',
  'hous',
  'sinc',
  'know',
  'good',
  'place',
  'us',
  'buy',
  'would',
  'keep',
  'famili',
  'still',
  'good',
  'shape',
  'hoa',
  'close',
  'good',
  'school',
  'bought',
  'steal',
  'move',
  'asap',
  'right',
  'away',
  'notic',
  'parent',
  'hang',
  'playground',
  'kid',
  'mind',
  'first',
  'use',
  'chanc',
  'introduc',
  'everyon',
  'love',
  'younger',
  'id',
  'expect',
  'seem',
  'bunch',
  'coupl',
  'kid',
  'taken',
  'street',
  'past',
  'year',
  'problem',
  'aros',
  'neighbor',
  'witch',
  'nw',
  'brought',
  'kid',
  'one',
  'afternoon',
  'happen',
  'window',
  'saw',
  'flash',
  'red',
  'outsid',
  'kid',
  'red',
  'shirt',
  'liter',
  'stand',
  'roof',
  'one',
  'stori',
  'playhous',
  'almost',
  'feet',
  'ground',
  'ran',
  'outsid',
  'think',
  'alon',
  'said',
  'need',
  'get',
  'right',
  'nw',
  'storm',
  'know',
  'yell',
  'fuck',
  'tell',
  'kid',
  'shit',
  'ask',
  'mom',
  'get',
  'ye',
  'ask',
  'make',
  'son',
  'get',
  'got',
  'hurt',
  'argu',
  'say',
  'make',
  'anyth',
  'told',
  'properti',
  'ye',
  'could',
  'kid',
  'fell',
  'thank',
  'halfway',
  'onto',
  'grass',
  'still',
  'wail',
  'like',
  'die',
  'fine',
  'got',
  'without',
  'issu',
  'ran',
  'nw',
  'pick',
  'said',
  'hed',
  'hurt',
  'shed',
  'su',
  'threaten',
  'cop',
  'leav',
  'flip',
  'call',
  'gin',
  'jockey',
  'random',
  'af',
  'drink',
  'let',
  'alon',
  'gin',
  'left',
  'andr',
  'worri',
  'peopl',
  'might',
  'tri',
  'sue',
  'us',
  'kid',
  'got',
  'hurt',
  'land',
  'even',
  'thought',
  'put',
  'fenc',
  'parent',
  'came',
  'ask',
  'fenc',
  'told',
  'thank',
  'nw',
  'heard',
  'shun',
  'parent',
  'none',
  'let',
  'kid',
  'play',
  'feel',
  'guilti',
  'son',
  'get',
  'punish',
  'action',
  'mayb',
  'say',
  'want',
  'fenc',
  'instead',
  'tell',
  'nw',
  'would',
  'kinder',
  'aita'],
 ['husband',
  'togeth',
  'year',
  'marri',
  'month',
  'relationship',
  'without',
  'problem',
  'week',
  'wed',
  'husband',
  'close',
  'friend',
  'woman',
  'let',
  'call',
  'ava',
  'known',
  'sinc',
  'sophomor',
  'high',
  'school',
  'never',
  'problem',
  'ava',
  'thought',
  'obviou',
  'husband',
  'friend',
  'mean',
  'long-term',
  'boyfriend',
  'felt',
  'jealousi',
  'anyth',
  'actual',
  'got',
  'along',
  'ava',
  'pretti',
  'well',
  'hung',
  'togeth',
  'regularli',
  'husband',
  'drop',
  'bombshel',
  'week',
  'got',
  'marri',
  'rememb',
  'sat',
  'told',
  'ava',
  'reveal',
  'feel',
  'tri',
  'convinc',
  'get',
  'marri',
  'even',
  'broke',
  'boyfriend',
  'year',
  'prove',
  'seriou',
  'husband',
  'husband',
  'agre',
  'cut',
  'uninvit',
  'wed',
  'neither',
  'one',
  'us',
  'contact',
  'sinc',
  'husband',
  'th',
  'birthday',
  'yesterday',
  'want',
  'dinner',
  'famili',
  'friend',
  'restaur',
  'eat',
  'sudden',
  'ava',
  'walk',
  'walk',
  'tabl',
  'say',
  'mean',
  'intrud',
  'get',
  'dinner',
  'saw',
  'us',
  'wish',
  'husband',
  'happi',
  'birthday',
  'expect',
  'leav',
  'husband',
  'ask',
  'want',
  'join',
  'us',
  'look',
  'husband',
  'like',
  'fuck',
  'im',
  'visibl',
  'uncomfort',
  'irrit',
  'stand',
  'tell',
  'ava',
  'seat',
  'walk',
  'get',
  'uber',
  'home',
  'want',
  'absolut',
  'noth',
  'husband',
  'come',
  'home',
  'almost',
  'two',
  'hour',
  'later',
  'immedi',
  'start',
  'argument',
  'tell',
  'overreact',
  'act',
  'immatur',
  'ask',
  'ask',
  'ava',
  'eat',
  'us',
  'thought',
  'page',
  'repli',
  'nice',
  'think',
  'would',
  'big',
  'deal',
  'long',
  'time',
  'sinc',
  'seen',
  'probabl',
  'feel',
  'anymor',
  'tell',
  'ruin',
  'birthday',
  'im',
  'still',
  'upset',
  'think',
  'im',
  'one',
  'wrong',
  'mean',
  'woman',
  'liter',
  'tri',
  'steal',
  'partner',
  'aita'],
 ['son',
  'year',
  'old',
  'recent',
  'attend',
  'friend',
  'th',
  'birthday',
  'parti',
  'friend',
  'best',
  'friend',
  'son',
  'let',
  'son',
  'anymuch',
  'junk',
  'food',
  'usual',
  'bring',
  'snack',
  'incid',
  'carrot',
  'stick',
  'ranch',
  'event',
  'lot',
  'sugari',
  'food',
  'best',
  'friend',
  'bake',
  'lot',
  'made',
  'special',
  'chocol',
  'cake',
  'son',
  'birthday',
  'come',
  'son',
  'let',
  'cake',
  'person',
  'prefer',
  'health',
  'allergi',
  'reason',
  'diabet',
  'gluten',
  'free',
  'son',
  'know',
  'allow',
  'cake',
  'addit',
  'told',
  'best',
  'friend',
  'parti',
  'friend',
  'appar',
  'got',
  'upset',
  'told',
  'good',
  'cake',
  'bad',
  'like',
  'say',
  'mom',
  'made',
  'birthday',
  'cake',
  'son',
  'ate',
  'cake',
  'got',
  'sugar',
  'rush',
  'crash',
  'make',
  'cranki',
  'rest',
  'day',
  'left',
  'parti',
  'told',
  'friend',
  'need',
  'kind',
  'consequ',
  'son',
  'teach',
  'peer',
  'pressur',
  'children',
  'eat',
  'thing',
  'theyr',
  'allow',
  'said',
  'issu',
  'allergi',
  'health',
  'sorri',
  'son',
  'cranki',
  'punish',
  'son',
  'talk',
  'birthday',
  'say',
  'also',
  'shell',
  'shell',
  'watch',
  'closelymak',
  'sure',
  'husband',
  'futur',
  'well',
  'chat',
  'anoth',
  'day',
  'respect',
  'food',
  'habit',
  'love',
  'friend',
  'histor',
  'husband',
  'alway',
  'said',
  'ye',
  'son',
  'given',
  'consequ',
  'anyth',
  'us',
  'present',
  'parti',
  'see',
  'share',
  'cake',
  'outsid',
  'eat',
  'backyard',
  'father',
  'parent',
  'supervis',
  'clean',
  'issu',
  'anyon',
  'go',
  'behind',
  'anyon',
  'back',
  'teach',
  'children',
  'boundari',
  'respect',
  'let',
  'son',
  'stay',
  'rest',
  'parti',
  'friend',
  'like',
  'ruin',
  'day',
  'aita',
  'upset',
  'friend',
  'son',
  'fact',
  'punish',
  'son',
  'pressur',
  'son',
  'eat',
  'cake'],
 ['sever',
  'year',
  'ago',
  'grandpar',
  'th',
  'anniversari',
  'parti',
  'set',
  'kinda',
  'like',
  'wed',
  'recept',
  'choic',
  'meal',
  'option',
  'differ',
  'german',
  'food',
  'steak',
  'like',
  'chose',
  'steak',
  'actual',
  'event',
  'someon',
  'come',
  'order',
  'mix',
  'end',
  'pickl',
  'wrap',
  'meat',
  'everyon',
  'insist',
  'pick',
  'tri',
  'gave',
  'dad',
  'like',
  'later',
  'realiz',
  'end',
  'person',
  'come',
  'food',
  'big',
  'deal',
  'well',
  'sinc',
  'becom',
  'joke',
  'famili',
  'theyv',
  'done',
  '-',
  'time',
  'sinc',
  'whenev',
  'weddingev',
  'food',
  'select',
  'grandma',
  'aliv',
  'yell',
  'dad',
  'sinc',
  'instig',
  'im',
  'sure',
  'get',
  'meal',
  'annoy',
  'make',
  'mad',
  'deal',
  'cousin',
  'got',
  'marri',
  'saturday',
  'week',
  'ago',
  'sent',
  'card',
  'pick',
  'meal',
  'sent',
  'dad',
  'mine',
  'sister',
  'dad',
  'hous',
  'one',
  'return',
  'envelop',
  'option',
  'steak',
  'chicken',
  'stuf',
  'portobello',
  'mushroom',
  'select',
  'steak',
  'specif',
  'told',
  'dad',
  'let',
  'damn',
  'steak',
  'instead',
  'mess',
  'said',
  'write',
  'anyth',
  'card',
  'fast',
  'forward',
  'saturday',
  'everyth',
  'go',
  'well',
  'wed',
  'nice',
  'sit',
  'dinner',
  'give',
  'mushroom',
  'stuf',
  'vegetarian',
  'pilaf',
  'said',
  'must',
  'mistak',
  'select',
  'beef',
  'server',
  'said',
  'star',
  'place',
  'card',
  'meant',
  'order',
  'vegetarian',
  'look',
  'dad',
  'laugh',
  'said',
  'call',
  'natali',
  'sent',
  'card',
  'told',
  'becam',
  'vegetarian',
  'want',
  'chang',
  'choic',
  'sister',
  'said',
  'dad',
  'think',
  'get',
  'old',
  'said',
  'said',
  'mess',
  'said',
  'said',
  'write',
  'card',
  'call',
  'eat',
  'mushroom',
  'said',
  'time',
  'pass',
  'dad',
  'said',
  'serious',
  'even',
  'go',
  'tri',
  'theyrejust',
  'mushroom',
  'hurt',
  'shook',
  'head',
  'hate',
  'mushroom',
  'im',
  'sick',
  'joke',
  'sat',
  'til',
  'peopl',
  'start',
  'get',
  'got',
  'went',
  'bar',
  'beer',
  'avoid',
  'dad',
  'til',
  'left',
  'sister',
  'later',
  'said',
  'least',
  'tri',
  'littl',
  'kinda',
  'rude',
  'leav',
  'whole',
  'plate',
  'food',
  'sit',
  'said',
  'could',
  'rice',
  'stuff',
  'know',
  'mushroom',
  'pilaf',
  'honestli',
  'make',
  'want',
  'go',
  'anymor',
  'famili',
  'event',
  'meal',
  'aita',
  'eat',
  'food',
  'wed'],
 ['ex',
  'husband',
  'got',
  'divorc',
  'year',
  'ago',
  'share',
  'custodi',
  'year',
  'old',
  'daughter',
  'got',
  'marri',
  'year',
  'old',
  'daughter',
  'wife',
  'daughter',
  'would',
  'spend',
  'time',
  'daughter',
  'regularli',
  'ador',
  'come',
  'hous',
  'rare',
  'meet',
  'wife',
  'diagnos',
  'cancer',
  'start',
  'treatment',
  'recent',
  'day',
  'came',
  'drop',
  'daughter',
  'ask',
  'speak',
  'talk',
  'wife',
  'circumst',
  'famili',
  'abl',
  'christma',
  'celebr',
  'year',
  'said',
  'fair',
  'daughter',
  'ask',
  'could',
  'includ',
  'famili',
  'celebr',
  'point',
  'girl',
  'great',
  'time',
  'togeth',
  'bond',
  'make',
  'memori',
  'said',
  'sorri',
  'famili',
  'tradit',
  'celebr',
  'sacr',
  'thing',
  'feel',
  'comfort',
  'includ',
  'anyon',
  'els',
  'plu',
  'itd',
  'awkward',
  'home',
  'said',
  'daughter',
  'may',
  'famili',
  'sure',
  'halfsist',
  'ask',
  'stop',
  'think',
  'best',
  'kid',
  'suggest',
  'take',
  'daughter',
  'spend',
  'christma',
  'grandpar',
  'said',
  'parent',
  'nc',
  'tri',
  'cut',
  'convers',
  'short',
  'stop',
  'start',
  'go',
  'cruel',
  'declin',
  'includ',
  'daughter',
  'alreadi',
  'hard',
  'time',
  'adjust',
  'saw',
  'begin',
  'cri',
  'step',
  'back',
  'said',
  'longer',
  'feel',
  'comfort',
  'convers',
  'ask',
  'leav',
  'still',
  'text',
  'ask',
  'agre',
  'let',
  'daughter',
  'come',
  'spend',
  'christma',
  'even',
  'offer',
  'stay',
  'away',
  'make',
  'less',
  'uncomfort',
  'said',
  'call',
  'selfish',
  'unfeel',
  '*',
  'point',
  'worth',
  'mention',
  'famili',
  'go',
  'attend',
  'said',
  'feel',
  'comfort',
  'situat',
  'thu',
  'said',
  'itd',
  'awkward',
  '*'],
 ['cant',
  'figur',
  'anyth',
  'wrong',
  'honestli',
  'idea',
  'go',
  'hope',
  'someon',
  'give',
  'clue',
  'relev',
  'info',
  'far',
  'know',
  'brother',
  'wife',
  'expect',
  'first',
  'girl',
  'two',
  'boy',
  'love',
  'ricki',
  'jace',
  'sil',
  'alway',
  'want',
  'girl',
  'excit',
  'one',
  'also',
  'want',
  'name',
  'girl',
  'chloe',
  'love',
  'name',
  'brother',
  'hate',
  'name',
  'chloe',
  'realli',
  'want',
  'name',
  'daughter',
  'stephani',
  'argu',
  'week',
  'sinc',
  'find',
  'gender',
  'got',
  'parent',
  'hous',
  'late',
  'last',
  'night',
  'sil',
  'person',
  'still',
  'awak',
  'talk',
  'littl',
  'bit',
  'ask',
  'weirdest',
  'question',
  'ask',
  'knew',
  'stori',
  'great',
  'aunt',
  'stephani',
  'confus',
  'liter',
  'said',
  'sil',
  'clarifi',
  'talk',
  'grandmoth',
  'older',
  'sister',
  'die',
  'grandma',
  'littl',
  'girl',
  'grandma',
  'two',
  'sister',
  'name',
  'judi',
  'lynn',
  'one',
  'famili',
  'name',
  'stephani',
  'far',
  'know',
  'told',
  'much',
  'sil',
  'chang',
  'subject',
  'soon',
  'went',
  'bed',
  'morn',
  'brother',
  'wife',
  'sulk',
  'breakfast',
  'even',
  'kid',
  'could',
  'tell',
  'ricki',
  'kept',
  'say',
  'stop',
  'grumpi',
  'christma',
  'imagin',
  'got',
  'brother',
  'alon',
  'confront',
  'snap',
  'meddl',
  'told',
  'stay',
  'marriag',
  'brother',
  'piss',
  'sil',
  'even',
  'talk',
  'im',
  'afraid',
  'say',
  'anyth',
  'parent',
  'drag',
  'especi',
  'sinc',
  'still',
  'know',
  'either',
  'grandmoth',
  'secret',
  'sister',
  'know',
  'brother',
  'reason',
  'brother',
  'lie',
  'wife',
  'convinc',
  'name',
  'babi',
  'stephani',
  'option',
  'seem',
  'equal',
  'weird',
  'mayb',
  'third',
  'possibl',
  'im',
  'see',
  'reddit',
  'asshol',
  'pleas',
  'explain',
  'want',
  'reason',
  'christma',
  'ruin',
  'updat',
  'awkward',
  'christma',
  'eve',
  'dinner',
  'ever',
  'got',
  'ta',
  'keep',
  'short',
  'lot',
  'go',
  'everyon',
  'know',
  'brother',
  'kid',
  'namesexcept',
  'kid',
  'obvious',
  'piss',
  'weirdli',
  'mom',
  'piss',
  'christma',
  'truce',
  'place',
  'kid',
  'fight',
  'holiday',
  'howev',
  'babi',
  'definit',
  'go',
  'name',
  'chloe',
  'brother',
  'quickli',
  'back',
  'mom',
  'said',
  'choic',
  'word',
  'topic',
  'complet',
  'ban',
  'rest',
  'festiv',
  'least',
  'theyv',
  'tie',
  'bow',
  'situat',
  'christma',
  'morn',
  'updat',
  'asid',
  'glare',
  'coupl',
  'boy',
  'stock',
  'stuffer',
  'robin',
  'funko',
  'pop',
  'everyth',
  'went',
  'well',
  'gift',
  'open',
  'well',
  'woken',
  'jump',
  'one',
  'nephew',
  'think',
  'brother',
  'realiz',
  'cross',
  'line',
  'attent',
  'wife',
  'mention',
  'get',
  'chloe',
  'name',
  'embroid',
  'stuff',
  'get',
  'home',
  'even',
  'told',
  'mom',
  'would',
  'christma',
  'breakfast',
  'could',
  'break',
  'gave',
  'im',
  'sorri',
  'grin',
  'open',
  'gift',
  'think',
  'everyth',
  'go',
  'fine'],
 ['live',
  'famili',
  'cottag',
  'given',
  'ownership',
  'cottag',
  'waterfront',
  'properti',
  'face',
  'medium-s',
  'lake',
  'famili',
  'live',
  'gener',
  'great',
  'grandfath',
  'origin',
  'bought',
  'pass',
  'eventu',
  'lead',
  'neighbor',
  'differ',
  'stori',
  'mani',
  'peopl',
  'known',
  'sinc',
  'childhood',
  'move',
  'hous',
  'neighbor',
  'torn',
  'replac',
  'design',
  'style',
  'home',
  'construct',
  'home',
  'came',
  'new',
  'neighbor',
  'hoa',
  'member',
  '&',
  'xb',
  'problem',
  'start',
  'next-door',
  'neighbor',
  'sophief-',
  'fish',
  'one',
  'day',
  'cano',
  'fish',
  'approach',
  'sophi',
  'beach',
  'start',
  'ask',
  'legal',
  'fish',
  'lake',
  'said',
  'long',
  'pay',
  '$',
  'per',
  'year',
  'licens',
  'said',
  'go',
  'caught',
  'fish',
  'want',
  'start',
  'process',
  'dinner',
  'get',
  'lake',
  'convers',
  'hear',
  'two',
  'week',
  'encount',
  'time',
  'person',
  'letter',
  'letter',
  'wrote',
  'danger',
  'fish',
  'environ',
  'stop',
  'respons',
  'chose',
  'simpli',
  'chuck',
  'recycl',
  'bin',
  'ignor',
  'worth',
  'time',
  '&',
  'xb',
  'recent',
  'encount',
  'two',
  'day',
  'ago',
  'friend',
  'afternoon',
  'ran',
  'back',
  'hous',
  'beer',
  'along',
  'one',
  'friend',
  'grab',
  'drink',
  'heard',
  'knock',
  'door',
  'answer',
  'door',
  'sophi',
  'anoth',
  'letter',
  'hand',
  'letter',
  'said',
  'tri',
  'diplomat',
  'enough',
  'letter',
  'hoa',
  'admittedli',
  'bit',
  'tipsi',
  'time',
  'respons',
  'laugh',
  'call',
  'stupid',
  'believ',
  'hoa',
  'anyth',
  'close',
  'door',
  '&',
  'xb',
  'sober',
  'feel',
  'conflict',
  'one',
  'hand',
  'feel',
  'justifi',
  'action',
  'fish',
  'none',
  'busi',
  'hand',
  'feel',
  'could',
  'dealt',
  'tact',
  'way',
  'asshol'],
 ['husband',
  'first',
  'babi',
  'four',
  'month',
  'ago',
  'recent',
  'visit',
  'famili',
  'let',
  'peopl',
  'outsid',
  'parent',
  'meet',
  'child',
  'fil',
  'birthday',
  'yesterday',
  'throw',
  'small',
  'parti',
  'husband',
  'decid',
  'join',
  'took',
  'babi',
  'us',
  'import',
  'add',
  'bilm',
  'husband',
  'sisterfhusband',
  'like',
  'much',
  'way',
  'dree',
  'express',
  'talk',
  'say',
  'lot',
  'bad',
  'word',
  'favorit',
  'thing',
  'say',
  'woman\\\\\\',
  'follow',
  'someth',
  'realli',
  'stupid',
  'husband',
  'think',
  'might',
  'thing',
  'care',
  'neither',
  'tbh',
  'find',
  'funni',
  'two',
  'kid',
  'tho',
  'sweet',
  'boy',
  'realli',
  'polit',
  'well',
  'behav',
  'act',
  'misbehav',
  'noth',
  'sil',
  'bil',
  'realli',
  'type',
  'parent',
  'let',
  'kid',
  'run',
  'around',
  'break',
  'thing',
  'whatev',
  'want',
  'ill',
  'give',
  'much',
  'yesterday',
  'parti',
  'babi',
  'got',
  'hungri',
  'eat',
  'cake',
  'alreadi',
  'ask',
  'mother',
  'father',
  'law',
  'okay',
  'nurs',
  'wherev',
  'want',
  'might',
  'get',
  'hungri',
  'chat',
  'hang',
  'would',
  'prefer',
  'insid',
  'mind',
  'fil',
  'birthday',
  'said',
  'could',
  'wherev',
  'want',
  'sil',
  'got',
  'pregnant',
  'never',
  'ask',
  'somewher',
  'els',
  'fair',
  'thank',
  'wear',
  'sundress',
  'cri',
  'pop',
  'boob',
  'nurs',
  'right',
  'nephew',
  'told',
  'bil',
  'daddi',
  'boobi',
  'boobi',
  'aunt',
  '\\',
  '[',
  'op\\',
  ']',
  'boobi',
  'said',
  'boobi',
  'sweetest',
  'voic',
  'bil',
  'clear',
  'throat',
  'ask',
  'go',
  'insid',
  'kid',
  'see',
  'said',
  'fil',
  'mil',
  'alreadi',
  'said',
  'okay',
  'kid',
  'deal',
  'sil',
  'ask',
  'stop',
  'truth',
  'care',
  'long',
  'kid',
  'went',
  'back',
  'cake',
  'quickli',
  'seat',
  'near',
  'got',
  'littl',
  'close',
  'whisper',
  'swear',
  'woman',
  'wouldv',
  'breastfe',
  'insid',
  'smile',
  'said',
  'loud',
  'breastfe',
  'insid',
  'go',
  'insuffer',
  'somewher',
  'els',
  'sweeti',
  'got',
  'hella',
  'mad',
  'cours',
  'said',
  'noth',
  'els',
  'leav',
  'sil',
  'said',
  'wrong',
  'mil',
  'kinda',
  'agre',
  'sinc',
  'mil',
  'host',
  'im',
  'feel',
  'bit',
  'bad',
  'aita'],
 ['context',
  'mom',
  'marri',
  'step-dad',
  'year',
  'ago',
  'brother',
  'scott',
  'see',
  'step-dad',
  'father',
  'famili',
  'patern',
  'famili',
  'ill',
  'refer',
  'dad',
  'step-grandad',
  'gran',
  'dad',
  'gtr',
  'gran',
  'gave',
  'year',
  'ago',
  'car',
  'sick',
  'fuck',
  'also',
  'normal',
  'car',
  'drive',
  'work',
  'gtr',
  'fun',
  'show',
  'bro',
  'love',
  'car',
  'dad',
  'let',
  'drive',
  'whenev',
  'want',
  'even',
  'ad',
  'insur',
  'turn',
  'use',
  'car',
  'almost',
  'everyday',
  'abl',
  'buy',
  'last',
  'week',
  'notic',
  'scott',
  'bit',
  'sad',
  'said',
  'kid',
  'bulli',
  'parent',
  'went',
  'school',
  'talk',
  'princip',
  'problem',
  'somewhat',
  'fix',
  'still',
  'bum',
  'decid',
  'surpris',
  'yesterday',
  'pick',
  'dad',
  'car',
  'park',
  'car',
  'got',
  'wait',
  'sit',
  'trunk',
  'guy',
  'approach',
  'said',
  'sit',
  'peopl',
  'car',
  'laugh',
  'said',
  'mine',
  'problem',
  'must',
  'admit',
  'look',
  'younger',
  'mightv',
  'mistaken',
  'high',
  'schooler',
  'believ',
  'said',
  'car',
  'mine',
  'go',
  'owner',
  'got',
  'back',
  'said',
  'car',
  'got',
  'mad',
  'said',
  'look',
  'son',
  'car',
  'get',
  'ill',
  'even',
  'take',
  'pictur',
  'two',
  'get',
  'nervou',
  'get',
  'nervou',
  'tend',
  'laugh',
  'thought',
  'mock',
  'yell',
  'get',
  'car',
  'belong',
  'show',
  'proof',
  'yell',
  'tri',
  'steal',
  'car',
  'ask',
  'leav',
  'alon',
  'wait',
  'brother',
  'move',
  'meter',
  'notic',
  'make',
  'call',
  'tune',
  'call',
  'polic',
  'brother',
  'get',
  'time',
  'realli',
  'happi',
  'see',
  'dad',
  'car',
  'ran',
  'hug',
  'tri',
  'pick',
  'get',
  'guy',
  'stop',
  'mean',
  'open',
  'door',
  'obviou',
  'car',
  'mine',
  'point',
  'either',
  'way',
  'polic',
  'came',
  'ask',
  'normal',
  'question',
  'explain',
  'dad',
  'car',
  'guy',
  'said',
  'ja',
  'knew',
  'show',
  'proof',
  'licens',
  'dad',
  'paper',
  'insur',
  'paper',
  'name',
  'even',
  'text',
  'dad',
  'said',
  'hey',
  'im',
  'gon',
  'na',
  'pick',
  'scott',
  'car',
  'answer',
  'ok',
  'offer',
  'call',
  'could',
  'ask',
  'said',
  'need',
  'polic',
  'let',
  'leav',
  'scold',
  'guy',
  'drive',
  'guy',
  'call',
  'ah',
  'couldv',
  'show',
  'prefer',
  'dick'],
 ['edit',
  'phew',
  'im',
  'glad',
  'im',
  'nut',
  'wan',
  'na',
  'clarifi',
  'boss',
  'throw',
  'bu',
  'told',
  'ladi',
  'profession',
  'go',
  'away',
  'quit',
  'bother',
  'us',
  'laugh',
  'afterward',
  'retrospect',
  'pretti',
  'funni',
  'edit',
  'second',
  'hour',
  'post',
  'encount',
  'someon',
  'call',
  'children',
  'littl',
  'peopl',
  'second',
  'time',
  'life',
  'hell',
  'guess',
  'thing',
  'ok',
  'sound',
  'stupid',
  'hell',
  'drive',
  'nut',
  'recent',
  'got',
  'job',
  'climb',
  'gym',
  'boulder',
  'rope',
  'got',
  'call',
  'ladi',
  'ask',
  'appropri',
  'group',
  'littl',
  'peopl',
  'assum',
  'meant',
  'know',
  'peopl',
  'dwarfism',
  'short-statur',
  'peopl',
  'etc',
  'like',
  'polici',
  'know',
  'peopl',
  'form',
  'dwarfism',
  'might',
  'issu',
  'bone',
  'joint',
  'whatev',
  'tell',
  'ok',
  'climb',
  'risk',
  'medic',
  'issu',
  'ask',
  'doctor',
  'well',
  'day',
  'book',
  'come',
  'around',
  'turn',
  'littl',
  'peopl',
  'actual',
  'like',
  'dozen',
  'small',
  'children',
  'fuck',
  'disast',
  'strict',
  'kid',
  'per',
  'adult',
  'ratio',
  'kid',
  'gym',
  'also',
  'kid',
  'allow',
  'belay',
  'theyv',
  'assess',
  'pretti',
  'much',
  'tell',
  'come',
  'insid',
  'ladi',
  'goe',
  'ruin',
  'weekend',
  'get',
  'manag',
  'bail',
  'laugh',
  'ass',
  'also',
  'call',
  'dumbass',
  'understand',
  'talk',
  'kid',
  'fuck',
  'refer',
  'children',
  'littl',
  'peopl',
  'realli',
  'suppos',
  'anticip',
  'woman',
  'use',
  'extrem',
  'specif',
  'term',
  'actual',
  'refer',
  'anoth',
  'group',
  'peopl',
  'entir',
  'help',
  'reddit',
  'assholedumbass'],
 ['throwaway',
  'husband',
  'spend',
  'two',
  'month',
  'differ',
  'state',
  'work',
  'came',
  'back',
  'day',
  'ago',
  'obvious',
  'thrill',
  'back',
  'ive',
  'miss',
  'lot',
  'hope',
  'would',
  'abl',
  'spend',
  'time',
  'togeth',
  'two',
  'us',
  'howev',
  'mom',
  'came',
  'suppos',
  'come',
  'home',
  'slightli',
  'annoy',
  'know',
  'excit',
  'son',
  'back',
  'howev',
  'never',
  'left',
  'like',
  'prepar',
  'deal',
  'day',
  'two',
  'day',
  'nine',
  'day',
  'second',
  'time',
  'togeth',
  'insist',
  'stay',
  'instead',
  'hotel',
  'record',
  'live',
  'hour',
  'away',
  'guest',
  'room',
  'right',
  'next',
  'wall',
  'thin',
  'two',
  'us',
  'go',
  'come',
  'us',
  'make',
  'one',
  'us',
  'stay',
  'bc',
  'otherwis',
  'would',
  'bad',
  'host',
  'follow',
  'us',
  'around',
  'hous',
  'constantli',
  'want',
  'cuddl',
  'watch',
  'movi',
  'sit',
  'arm',
  'chair',
  'want',
  'go',
  'romant',
  'restaur',
  'better',
  'make',
  'tabl',
  'three',
  'even',
  'left',
  'live',
  'room',
  'go',
  'chat',
  'room',
  'follow',
  'us',
  'earlier',
  'today',
  'ask',
  'leav',
  'even',
  'though',
  'us',
  'hint',
  'need',
  'go',
  'kept',
  'say',
  'readi',
  'go',
  'yet',
  'want',
  'time',
  'son',
  'tri',
  'tell',
  'want',
  'alon',
  'time',
  'kept',
  'insist',
  'join',
  'us',
  'final',
  'snap',
  'said',
  'sinc',
  'seem',
  'oblivi',
  'put',
  'bluntli',
  'want',
  'fuck',
  'son',
  'want',
  'see',
  'hear',
  'need',
  'leav',
  'ik',
  'classiest',
  'respons',
  'ever',
  'frustrat',
  'anyway',
  'yell',
  'eventu',
  'left',
  'final',
  'got',
  'alon',
  'time',
  'blow',
  'phone',
  'say',
  'disgust',
  'respect',
  'son',
  'keep',
  'tell',
  'husband',
  'someon',
  'crude',
  'dare',
  'let',
  'speak',
  'like',
  'im',
  'sure',
  'get',
  'idea',
  'ik',
  'said',
  'realli',
  'inappropri',
  'aita',
  'edit',
  'read',
  'comment',
  'definit',
  'let',
  'husband',
  'know',
  'need',
  'step',
  'agre',
  'made',
  'leav',
  'love',
  'death',
  'want',
  'accommod',
  'fear',
  'make',
  'angri',
  'nasti',
  'angri',
  'turn',
  'whole',
  'famili',
  'howev',
  'need',
  'set',
  'boundari'],
 ['im',
  'engag',
  'noah',
  'first',
  'christma',
  'spent',
  'famili',
  'met',
  'summer',
  'move',
  'near',
  'famili',
  'finish',
  'colleg',
  'get',
  'marri',
  'februari',
  'expect',
  'first',
  'child',
  'togeth',
  'may',
  'someon',
  'famili',
  'see',
  'close',
  'famili',
  'want',
  'make',
  'sure',
  'show',
  'appreci',
  'gift',
  'gave',
  'tri',
  'get',
  'someth',
  'person',
  'would',
  'love',
  'one',
  'sister',
  'love',
  'read',
  'made',
  'book',
  'sleev',
  'littl',
  'detail',
  'favorit',
  'book',
  'one',
  'niec',
  'spectrum',
  'want',
  'cloth',
  'stuffi',
  'made',
  'cloth',
  'put',
  'stuffi',
  'bought',
  'mom',
  'jewelri',
  'box',
  'admir',
  'coupl',
  'time',
  'mention',
  'never',
  'real',
  'one',
  'dad',
  'bought',
  'frame',
  'offic',
  'big',
  'enough',
  'hold',
  'photo',
  'whole',
  'famili',
  'sinc',
  'alway',
  'complain',
  'find',
  'one',
  'big',
  'enough',
  'nice',
  'enough',
  'room',
  'individu',
  'frame',
  'includ',
  'photo',
  'noah',
  'provid',
  'got',
  'sister',
  'favorit',
  'makeup',
  'mention',
  'afford',
  'buy',
  'late',
  'got',
  'brother',
  'sign',
  'piec',
  'memorabilia',
  'favorit',
  'sport',
  'team',
  'rest',
  'niec',
  'nephew',
  'bought',
  'wish',
  'list',
  'item',
  'parent',
  'get',
  'noah',
  'thought',
  'would',
  'love',
  'everyth',
  'told',
  'need',
  'go',
  'effort',
  'spent',
  'week',
  'track',
  'everyth',
  'search',
  'certain',
  'item',
  'realli',
  'thought',
  'theyd',
  'like',
  'christma',
  'day',
  'happen',
  'could',
  'tell',
  'someth',
  'spent',
  'whole',
  'time',
  'worri',
  'bought',
  'stuff',
  'like',
  'anymor',
  'someth',
  'said',
  'noth',
  'next',
  'day',
  'ask',
  'noah',
  'hell',
  'think',
  'like',
  'kind',
  'stalker',
  'buy',
  'person',
  'stuff',
  'im',
  'almost',
  'stranger',
  'next',
  'day',
  'saw',
  'apolog',
  'gift',
  'gave',
  'told',
  'would',
  'lot',
  'mind',
  'futur',
  'offer',
  'make',
  'one',
  'sister',
  'call',
  'stalker',
  'face',
  'told',
  'wonder',
  'famili',
  'want',
  'creepi',
  'stuff',
  'like',
  'noah',
  'yell',
  'apolog',
  'told',
  'want',
  'hurt',
  'anyon',
  'would',
  'learn',
  'told',
  'overstep',
  'noah',
  'said',
  'leav',
  'owe',
  'apolog',
  'feel',
  'bad',
  'noah',
  'support',
  'told',
  'noth',
  'wrong',
  'sure',
  'much',
  'offens',
  'true',
  'need',
  'ask',
  'aita',
  'also',
  'sure',
  'relev',
  'grew',
  'unhappi',
  'home',
  'parent',
  'unkind',
  'sister',
  'much',
  'older',
  'also',
  'hate',
  'think',
  'mayb',
  'parent',
  'treat',
  'end',
  'nobodi',
  'want',
  'time',
  'homeless',
  'good',
  'period',
  'noah',
  'sister',
  'meant',
  'told',
  'honestli',
  'ask',
  'eta',
  'want',
  'clarifi',
  'someth',
  'might',
  'sound',
  'strang',
  'spoken',
  'phone',
  'met',
  'person',
  'year',
  'covid',
  'us',
  'live',
  'differ',
  'citi',
  'time',
  'gotten',
  'chanc',
  'genuin',
  'close',
  'sorri',
  'anoth',
  'edit',
  'want',
  'clarifi',
  'met',
  'person',
  'christma',
  'feel',
  'like',
  'mess',
  'express',
  'met',
  'first',
  'time',
  'summer',
  'also',
  'sinc',
  'peopl',
  'ask',
  'got',
  'gift',
  'card',
  'return',
  'gift',
  'want',
  'thank',
  'everyon',
  'comment',
  'go',
  'talk',
  'happen',
  'therapist',
  'work',
  'build',
  'confid',
  'im',
  'work',
  'progress',
  'therapi',
  'first',
  'time',
  'abl',
  'see',
  'realli',
  'good',
  'therapist',
  'histori',
  'left',
  'much',
  'belief',
  'confid',
  'never',
  'good',
  'never',
  'ever',
  'meant',
  'make',
  'anyon',
  'awkward',
  'uncomfort',
  'make',
  'someon',
  'feel',
  'bad',
  'see',
  'comment',
  'believ',
  'majorli',
  'wrong',
  'known',
  'better',
  'first',
  'christma',
  'famili',
  'set',
  'fianc',
  'person',
  'share',
  'christma',
  'know',
  'want',
  'famili',
  'accept',
  'work',
  'okay',
  'apolog',
  'tri',
  'hard',
  'noah',
  'want',
  'talk',
  'famili',
  'calm',
  'might',
  'take',
  'bit',
  'angri',
  'readi',
  'see',
  'apolog',
  'kind',
  'mani',
  'peopl',
  'made',
  'cri',
  'help',
  'take',
  'comfort',
  'fact',
  'wrong',
  'appreci',
  'honesti',
  'also',
  'peopl',
  'would',
  'like',
  'see',
  'much'],
 ['turn',
  'earli',
  'august',
  'th',
  'birthday',
  'want',
  'go',
  'celebr',
  'famili',
  'go',
  'favorit',
  'chines',
  'restaur',
  'im',
  'quit',
  'picki',
  'eater',
  'im',
  'autist',
  'issu',
  'textur',
  'type',
  'asian',
  'food',
  'safe',
  'food',
  'come',
  'western',
  'cuisin',
  'lot',
  'option',
  'unless',
  'make',
  'home',
  'everyth',
  'organis',
  'readi',
  'go',
  'week',
  'prior',
  'birthday',
  'brother',
  'fiancé',
  'vicki',
  'said',
  'cant',
  'go',
  'said',
  'seafood',
  'allergi',
  'contact',
  'restaur',
  'said',
  'cant',
  'realist',
  'cater',
  'polit',
  'advis',
  'eat',
  'vicki',
  'brother',
  'suggest',
  'go',
  'italian',
  'restaur',
  'instead',
  'everyon',
  'board',
  'buti',
  'hate',
  'italian',
  'food',
  'textur',
  'chees',
  'pasta',
  'gross',
  'got',
  'upset',
  'suppos',
  'dinner',
  '*',
  '*',
  'birthday',
  'like',
  'got',
  'forgotten',
  'talk',
  'parent',
  'told',
  'stop',
  'complain',
  'vicki',
  'cant',
  'help',
  'allergi',
  'suck',
  'went',
  'spent',
  'birthday',
  'miser',
  'end',
  'sneak',
  'snack',
  'restaur',
  'well',
  'last',
  'weekend',
  'spontan',
  'went',
  'brother',
  'hous',
  'warn',
  'forgotten',
  'hoodi',
  'day',
  'prior',
  'brother',
  'let',
  'insid',
  'saw',
  'vicki',
  'sat',
  'couch',
  'scof',
  'tuna',
  'like',
  'nobodi',
  'busi',
  'thought',
  'allerg',
  'seafood',
  'vicki',
  'talk',
  'th',
  'birthday',
  'last',
  'month',
  'said',
  'go',
  'chines',
  'restaur',
  'allerg',
  'seafood',
  'vicki',
  'well',
  'im',
  '*',
  'medic',
  '*',
  'allerg',
  'cant',
  'stand',
  'smell',
  'shrimp',
  'prawn',
  'make',
  'feel',
  'nauseou',
  'ruin',
  'th',
  'birthday',
  'like',
  'seafood',
  'smell',
  'wow',
  'storm',
  'block',
  'vicki',
  'brother',
  'everyth',
  'believ',
  'talk',
  'parent',
  'think',
  'im',
  'dramat',
  'restaur',
  'told',
  'apologis',
  'vicki',
  'speak',
  'like',
  'home',
  'angri',
  'went',
  'go',
  'stay',
  'bf',
  'famili',
  'day',
  'kindli',
  'let',
  'stay',
  'famili',
  'think',
  'went',
  'super',
  'overboard',
  'call',
  'brat',
  'entitl',
  'know',
  'feel',
  'ah',
  'edit',
  'thank',
  'wonder',
  'comment',
  'award',
  'hope',
  'great',
  'day'],
 ['parent',
  'split',
  'custodi',
  'pretti',
  'random',
  'day',
  'im',
  'home',
  'sometim',
  'im',
  'dad',
  'im',
  'dad',
  'start',
  'date',
  'jane',
  'ago',
  'mayb',
  'year',
  'daughter',
  'mandi',
  'think',
  'start',
  'spend',
  'lot',
  'time',
  'dad',
  'apart',
  'theyr',
  'still',
  'alway',
  'first',
  'time',
  'stay',
  'somehow',
  'mandi',
  'end',
  'bed',
  'mom',
  'cotb',
  'thing',
  'brought',
  'dad',
  'somehow',
  'woke',
  'middl',
  'night',
  'bed',
  'kick',
  'dad',
  'jane',
  'said',
  'mean',
  'full',
  'anyway',
  'share',
  'stuff',
  'chair',
  'dad',
  'live',
  'room',
  'got',
  'gift',
  'comfi',
  'move',
  'itll',
  'go',
  'well',
  'mandi',
  'alway',
  'want',
  'race',
  'chair',
  'even',
  'win',
  'race',
  'dad',
  'make',
  'let',
  'sit',
  'theyr',
  'guest',
  'end',
  'sit',
  'floor',
  'dad',
  'reclin',
  'jane',
  'lay',
  'across',
  'couch',
  'stay',
  'room',
  'instead',
  'dad',
  'tri',
  'get',
  'come',
  'sit',
  'floor',
  'like',
  'dog',
  'keep',
  'say',
  'im',
  'difficult',
  'teenag',
  'though',
  'one',
  'time',
  'mom',
  'went',
  'stuff',
  'drop',
  'bought',
  'blanket',
  'favorit',
  'team',
  'logo',
  'excit',
  'sleep',
  'stupid',
  'know',
  'let',
  'take',
  'dad',
  'dad',
  'made',
  'share',
  'mandi',
  'fair',
  'got',
  'someth',
  'mandi',
  'blanket',
  'happen',
  'anyth',
  'share',
  'mandi',
  'someth',
  'id',
  'like',
  'use',
  'tell',
  'want',
  'let',
  'one',
  'time',
  'mandi',
  'read',
  'one',
  'book',
  'jane',
  'dad',
  'start',
  'fight',
  'jane',
  'want',
  'leav',
  'mandi',
  'want',
  'take',
  'book',
  'said',
  'leav',
  'dad',
  'yell',
  'let',
  'made',
  'got',
  'back',
  'would',
  'lost',
  'one',
  'favorit',
  'book',
  'dad',
  'plan',
  'go',
  'ice',
  'fish',
  'someth',
  'weve',
  'done',
  'sinc',
  'well',
  'brought',
  'jane',
  'mandi',
  'along',
  'complain',
  'cold',
  'fish',
  'gross',
  'bore',
  'left',
  'earli',
  'said',
  'sometim',
  'compromis',
  'got',
  'home',
  'mad',
  'mom',
  'annoy',
  'call',
  'argu',
  'talk',
  'repeat',
  'compromis',
  'crap',
  'suppos',
  'go',
  'back',
  'day',
  'later',
  'decid',
  'want',
  'never',
  'even',
  'spend',
  'time',
  'anymor',
  'point',
  'go',
  'told',
  'mom',
  'said',
  'choic',
  'told',
  'said',
  'im',
  'use',
  'child',
  'cant',
  'spoil',
  'whole',
  'life',
  'cant',
  'run',
  'away',
  'whenev',
  'problem',
  'well',
  'sinc',
  'famili',
  'tri',
  'get',
  'go',
  'back',
  'aita',
  'visit',
  'dad',
  'anymor',
  'edit',
  'peopl',
  'said',
  'go',
  'famili',
  'counsel',
  'put',
  'therapi',
  'year',
  'back',
  'homework',
  'serious',
  'reason',
  'therapist',
  'start',
  'call',
  'parent',
  'want',
  'go',
  'anymor',
  'mom',
  'take',
  'therapist',
  'even',
  'call',
  'tri',
  'talk',
  'dad',
  'ignor'],
 ['hire',
  'babysitt',
  'year',
  'old',
  'kid',
  'week',
  'ago',
  'husband',
  'work',
  'shift',
  'work',
  'long',
  'hour',
  'market',
  'compani',
  'far',
  'weve',
  'issu',
  'til',
  'yesterday',
  'came',
  'home',
  'pm',
  'notic',
  'babysitt',
  'wet',
  'hair',
  'new',
  'cloth',
  'told',
  'took',
  'shower',
  'one',
  'kid',
  'spill',
  'milk',
  'confus',
  'visibl',
  'upset',
  'tri',
  'reassur',
  'kid',
  'fine',
  'husband',
  'watch',
  'took',
  'shower',
  'last',
  'minut',
  'confus',
  'husband',
  'home',
  'shift',
  'cover',
  'told',
  'think',
  'appropri',
  'shower',
  'home',
  'like',
  'argu',
  'fine',
  'choic',
  'leav',
  'milk',
  'like',
  'argu',
  'husband',
  'heard',
  'commot',
  'got',
  'involv',
  'said',
  'big',
  'deal',
  'make',
  'told',
  'babysitt',
  'appreci',
  'basic',
  'ignor',
  'felt',
  'dismiss',
  'feel',
  'still',
  'went',
  'home',
  'still',
  'argu',
  'phone',
  'think',
  'done',
  'noth',
  'wrong',
  'said',
  'unfair',
  'mention',
  'potenti',
  'cut',
  'salari',
  'husband',
  'keep',
  'say',
  'im',
  'overreact',
  'poor',
  'girl',
  'handl',
  'milk',
  'stain',
  'bodi',
  'cloth',
  'help',
  'feel',
  'inappropri',
  'check',
  'aita',
  'reaction',
  'info',
  'im',
  'one',
  'pay',
  'husband',
  'told',
  'call',
  'text',
  'alway',
  'avail',
  'anyth',
  'happen',
  'even',
  'know',
  'husband',
  'home',
  'time',
  'notic',
  'said',
  'argu',
  'even',
  'told',
  'husband',
  'home',
  'know',
  'big',
  'stain',
  'argu',
  'cover',
  'milk',
  '+hr',
  'question',
  'husband',
  'go',
  'work',
  'said',
  'feel',
  'bit',
  'sick',
  'swap',
  'shift',
  'cowork',
  'babysitt',
  'said',
  'experi',
  'ye',
  'normal',
  'bring',
  'bag',
  'cloth',
  'wet',
  'wipe',
  'stuff',
  'like'],
 ['date',
  'boyfriend',
  'smith',
  '+',
  'month',
  'plan',
  'go',
  'roadtrip',
  'happen',
  'kept',
  'insist',
  'let',
  'friend',
  'tag',
  'along',
  'brought',
  'promis',
  'ask',
  'let',
  'bring',
  'friend',
  'sinc',
  'im',
  'one',
  'pay',
  'expens',
  'car',
  'alway',
  'want',
  'us',
  'go',
  'alon',
  'without',
  'friend',
  'tag',
  'along',
  'wan',
  'na',
  'pay',
  'friend',
  'agre',
  'id',
  'come',
  'pick',
  'morn',
  'could',
  'ago',
  'came',
  'car',
  'enter',
  'neighborhood',
  'howev',
  'saw',
  'stand',
  'outsid',
  'bag',
  'friend',
  'also',
  'stand',
  'bag',
  'shock',
  'furiou',
  'pull',
  'turn',
  'around',
  'kept',
  'drive',
  'went',
  'back',
  'home',
  'saw',
  'run',
  'rearview',
  'mirror',
  'stop',
  'start',
  'call',
  'respond',
  'til',
  'got',
  'home',
  'lash',
  'phone',
  'ask',
  'hell',
  'turn',
  'around',
  'left',
  'told',
  'appreci',
  'basic',
  'tri',
  'forc',
  'take',
  'friend',
  'us',
  'said',
  'alreadi',
  'call',
  'aw',
  'amd',
  'said',
  'ruin',
  'entir',
  'thing',
  'us',
  'act',
  'immatur',
  'spite',
  'said',
  'couldv',
  'accept',
  'told',
  'would',
  'never',
  'accept',
  'put',
  'situat',
  'im',
  'expect',
  'suck',
  'hung',
  'yell',
  'minut',
  'call',
  'back',
  'got',
  'respons',
  'text',
  'embarrass',
  'infront',
  'friend',
  'refus',
  'speak',
  'til',
  'apolog',
  'aita',
  'turn',
  'around',
  'car',
  'go',
  'home',
  'make',
  'right',
  'call'],
 ['use',
  'ta',
  'stori',
  'medic',
  'inform',
  'want',
  'peopl',
  'main',
  'know',
  'english',
  'second',
  'languag',
  'free',
  'correct',
  'fat',
  'girl',
  'sinc',
  'young',
  'last',
  'year',
  'got',
  'point',
  'weight',
  'kg',
  'pound',
  'cm',
  'ft',
  'height',
  'matter',
  'hard',
  'tri',
  'exercis',
  'diet',
  'enough',
  'went',
  'endocrinologist',
  'start',
  'medicin',
  'new',
  'trend',
  'obes',
  'patient',
  'give',
  'name',
  'safeti',
  'reason',
  'treatment',
  'like',
  'miracl',
  'year',
  'obvious',
  'exercis',
  'diet',
  'kg',
  'pound',
  'away',
  'ideal',
  'weight',
  'know',
  'sound',
  'like',
  'lot',
  'believ',
  'huge',
  'step',
  'forward',
  'never',
  'skinni',
  'show',
  'enter',
  'friend',
  'jess',
  'jess',
  'also',
  'chubbi',
  'girl',
  'level',
  'still',
  'enough',
  'affect',
  'self',
  '-',
  'esteem',
  'long',
  'stori',
  'short',
  'jess',
  'ask',
  'done',
  'told',
  'medicin',
  'dosag',
  'use',
  'thought',
  'would',
  'tri',
  'therapi',
  'know',
  'help',
  'doctor',
  'bought',
  'medicin',
  'use',
  'guy',
  'medicin',
  'manag',
  'care',
  'start',
  'low',
  'volum',
  'increas',
  'current',
  'one',
  'process',
  'take',
  'month',
  'use',
  'full',
  'dosi',
  'first',
  'tri',
  'basic',
  'complet',
  'reset',
  'digest',
  'system',
  'pain',
  'worst',
  'append',
  'projectil',
  'puke',
  'explos',
  'diarrhea',
  'among',
  'probabl',
  'mild',
  'damag',
  'pancrea',
  'enter',
  'er',
  'left',
  'hospit',
  'day',
  'later',
  'jess',
  'famili',
  'even',
  'common',
  'friend',
  'blame',
  'happen',
  'also',
  'ask',
  'pay',
  'money',
  'spent',
  'drug',
  'less',
  '$',
  'usa',
  'dollar',
  'also',
  'hospit',
  'cost',
  'insur',
  'cover',
  'poison',
  'drug',
  'send',
  'doctor',
  'aita'],
 ['im',
  'gon',
  'na',
  'quick',
  'husband',
  'disabl',
  'expand',
  'privaci',
  'got',
  'servic',
  'dog',
  'month',
  'ago',
  'help',
  'daili',
  'basi',
  'brother',
  'famili',
  'lost',
  'home',
  'ask',
  'move',
  'us',
  'week',
  'til',
  'find',
  'anoth',
  'place',
  'stay',
  'thing',
  'niec',
  'start',
  'complain',
  'servic',
  'dog',
  'make',
  'uncomfort',
  'strang',
  'allergi',
  'noth',
  'uncomfort',
  'told',
  'brother',
  'ask',
  'could',
  'move',
  'dog',
  'said',
  'absolut',
  'dog',
  'liter',
  'help',
  'human',
  'come',
  'peopl',
  'disabl',
  'incred',
  'smart',
  'importantli',
  'mind',
  'busi',
  'never',
  'bother',
  'niec',
  'uncomfort',
  'reason',
  'brother',
  'wife',
  'start',
  'beg',
  'say',
  'temporari',
  'refus',
  'said',
  'husband',
  'realli',
  'need',
  'dog',
  'much',
  'sinc',
  'home',
  'time',
  'yet',
  'still',
  'refus',
  'tri',
  'talk',
  'husband',
  'directli',
  'shut',
  'immedietli',
  'brother',
  'wife',
  'start',
  'argument',
  'right',
  'brother',
  'went',
  'work',
  'start',
  'yell',
  'valu',
  'dog',
  'niec',
  'comfort',
  'said',
  'dog',
  'husband',
  'need',
  'brother',
  'came',
  'home',
  'kept',
  'argu',
  'said',
  'unsupport',
  'cruel',
  'niec',
  'alreadi',
  'enough',
  'husband',
  'got',
  'involv',
  'ask',
  'take',
  'father',
  'hous',
  'dog',
  'said',
  'dad',
  'said',
  'dog',
  'stay',
  'brother',
  'wife',
  'guest',
  'room',
  'sulk',
  'hard',
  'niec',
  'ignor',
  'meanwhil',
  'husband',
  'sit',
  'kitchen',
  'tri',
  'convinc',
  'let',
  'go',
  'stay',
  'dad',
  'keep',
  'peac',
  'brother',
  'man',
  'husband',
  'like',
  'time',
  'alway',
  'want',
  'keep',
  'peac',
  'liter',
  'cuss',
  'hell',
  'apolog',
  'like',
  'fault',
  'think',
  'owe',
  'peopl',
  'accept',
  'disabl',
  'man',
  'sad',
  'true',
  'home',
  'time',
  'still',
  'need',
  'servic',
  'dog',
  'throughout',
  'day',
  'amitheasshol',
  'refus',
  'move',
  'dog',
  'temporarili',
  'niec',
  'upset'],
 ['tri',
  'save',
  'money',
  'possibl',
  'wed',
  'ceremoni',
  'use',
  'publix',
  'cater',
  'wife',
  'think',
  'guest',
  'ok',
  'eat',
  'finger',
  'food',
  'fruitveget',
  'tray',
  'assort',
  'chees',
  'wing',
  'chicken',
  'tender',
  'know',
  'shell',
  'hungri',
  'satisfi',
  'want',
  'also',
  'roast',
  'chicken',
  'tabl',
  'think',
  'side',
  'think',
  'would',
  'incred',
  'rude',
  'openli',
  'much',
  'better',
  'meal',
  'guest',
  'would',
  'us',
  'tear',
  'apart',
  'full',
  'bird',
  'munch',
  'tender',
  'convers',
  'id',
  'perfectli',
  'fine',
  'appet',
  'everyon',
  'us',
  'includ',
  'cost',
  'everi',
  'tabl',
  'get',
  'roast',
  'chicken',
  'would',
  'put',
  'us',
  'like',
  '$',
  'plate',
  'accord',
  'save',
  'money',
  'everi',
  'decis',
  'make',
  'justifi',
  'go',
  'wed',
  'anybodi',
  'els',
  'want',
  'wide',
  'varieti',
  'option',
  'cater',
  'either',
  'want',
  'stuff',
  'shed',
  'like',
  'think',
  'wed',
  'total',
  'asshol',
  'go',
  'idea',
  'thought'],
 ['flew',
  'home',
  'thanksgiv',
  'week',
  'got',
  'earli',
  'flight',
  'morn',
  'would',
  'abl',
  'laundri',
  'tomorrow',
  'relax',
  'go',
  'back',
  'work',
  'plus-siz',
  'woman',
  'caus',
  'final',
  'diagnos',
  'three',
  'year',
  'weight',
  'gain',
  'ive',
  'lost',
  'lb',
  'last',
  'four',
  'week',
  'book',
  'flight',
  'spent',
  'extra',
  'money',
  'book',
  'two',
  'adjac',
  'seat',
  'whoever',
  'third',
  'seat',
  'row',
  'would',
  'squish',
  'busi',
  'fli',
  'great',
  'person',
  'row',
  'cool',
  'share',
  'middl',
  'seat',
  'snack',
  'play',
  'pokemon',
  'switch',
  'visit',
  'anim',
  'cross',
  'island',
  'fli',
  'home',
  'thing',
  'becam',
  'bit',
  'problemat',
  'settl',
  'pair',
  'seat',
  'gentleman',
  'tri',
  'sit',
  'daughter',
  '\\~',
  'waif',
  'overweight',
  'dad',
  'middl',
  'seat',
  'bum',
  'take',
  'good',
  'third',
  'middl',
  'seat',
  'said',
  'polit',
  'im',
  'sorri',
  'seat',
  'book',
  'daughter',
  'cant',
  'sit',
  'put',
  'hand',
  'seat',
  'immedi',
  'complain',
  'abl',
  'book',
  'seat',
  'togeth',
  'need',
  'sit',
  'daughter',
  'shrug',
  'said',
  'sorri',
  'problem',
  'seat',
  'call',
  'stewardess',
  'complain',
  'explain',
  'situat',
  'show',
  'pair',
  'ticket',
  'flight',
  'attend',
  'offer',
  'comp',
  'extra',
  'seat',
  'said',
  'thank',
  'need',
  'extra',
  'room',
  'wave',
  'bum',
  'partway',
  'middl',
  'seat',
  'stewardess',
  'came',
  'back',
  'ten',
  'minut',
  'later',
  'wife',
  'coupl',
  'agre',
  'switch',
  'seat',
  'man',
  'could',
  'sit',
  'daughter',
  'without',
  'attempt',
  'shame',
  'help',
  'dad',
  'need',
  'comment',
  'selfish',
  'edit',
  'woman',
  'switch',
  'seat',
  'rude',
  'stewardess',
  'stewardess',
  'noth',
  'polit',
  'said',
  'book',
  'earli',
  'book',
  'two',
  'seat',
  'togeth',
  'put',
  'plainli',
  'im',
  'fat',
  'two',
  'seat',
  'separ',
  'seat',
  'exactli',
  'propos',
  'split',
  'fat',
  'ass',
  'half',
  'sit',
  'one',
  'half',
  'one',
  'seat',
  'half',
  'seat',
  'woman',
  'turn',
  'red',
  'face',
  'bitch',
  'disgust',
  'repli',
  'lack',
  'plan',
  'emerg',
  'scowl',
  'entir',
  'rest',
  'flight',
  'told',
  'folk',
  'land',
  'dad',
  'thought',
  'funniest',
  'thing',
  'hed',
  'ever',
  'heard',
  'mom',
  'yell',
  'encourag',
  'said',
  'help',
  'dad',
  'kid',
  'two',
  'seat',
  'want',
  'know',
  'aita',
  'edit',
  'oh',
  'expect',
  'much',
  'respons',
  'folk',
  'although',
  'thank',
  'everyon',
  'went',
  'eat',
  'pass',
  'jet',
  'lag',
  'ill',
  'start',
  'go',
  'comment',
  'today'],
 ['marri',
  'husband',
  'year',
  'ive',
  'never',
  'marri',
  'marri',
  'twice',
  'kid',
  'request',
  'financ',
  'split',
  'fine',
  'see',
  'blow',
  'money',
  'frusrtat',
  'say',
  'kid',
  'commit',
  'provid',
  'think',
  'kid',
  'would',
  'need',
  'much',
  'money',
  'live',
  'like',
  'kid',
  'bank',
  'account',
  'alway',
  'almost',
  'empti',
  'whilea',
  'mine',
  'take',
  'turn',
  'pay',
  'daili',
  'expens',
  'stuff',
  'late',
  'struggl',
  'money',
  'borrow',
  'number',
  'peopl',
  'includ',
  'brother',
  'week',
  'ago',
  'seem',
  'desper',
  'money',
  'ask',
  'deal',
  'said',
  'need',
  'money',
  'kid',
  'seem',
  'fishi',
  'sinc',
  'kid',
  'realli',
  'need',
  'much',
  'money',
  'expens',
  'eldest',
  'came',
  'ask',
  'borrow',
  'pull',
  'account',
  'tri',
  'ask',
  'need',
  'money',
  'said',
  'none',
  'busi',
  'insist',
  'hell',
  'return',
  'asap',
  'said',
  'okay',
  'condit',
  'sign',
  'contract',
  'state',
  'hell',
  'return',
  'money',
  'full',
  'act',
  'shock',
  'offend',
  'went',
  'trust',
  'word',
  'told',
  'got',
  'one',
  'condit',
  'kept',
  'rant',
  'im',
  'refus',
  'help',
  'make',
  'situat',
  'difficult',
  'instead',
  'co-oper',
  'insist',
  'contract',
  'sign',
  'even',
  'pull',
  'penni',
  'morn',
  'told',
  'one',
  'time',
  'blew',
  'said',
  'famili',
  'asham',
  'involv',
  'court',
  'lawyer',
  'famili',
  'left',
  'hous',
  'upset',
  'respond',
  'call',
  'yet',
  'aita',
  'stand',
  'ground',
  'condit',
  '*',
  '*',
  'updat',
  '*',
  'weve',
  'talk',
  'got',
  'home',
  'tri',
  'press',
  'tell',
  'need',
  'money',
  'gave',
  'attitud',
  'said',
  'worri',
  'still',
  'stood',
  'condit',
  'made',
  'call',
  'fuck',
  'useless',
  'storm',
  'spend',
  'night',
  'withat',
  'god',
  'know'],
 ['ill',
  'prefac',
  'say',
  'widow',
  'kid',
  'recent',
  'got',
  'back',
  'work',
  'sinc',
  'work',
  'nightshift',
  'get',
  'kid',
  'babysitt',
  'theyr',
  'school',
  'day',
  'sister',
  'stay',
  'abl',
  'find',
  'babysitt',
  'help',
  'co',
  'worker',
  'actual',
  'theyr',
  'relat',
  'thing',
  'go',
  'pretti',
  'well',
  'except',
  'day',
  'ago',
  'babysitt',
  'call',
  'work',
  'tell',
  'year',
  'old',
  'daughter',
  'broke',
  'glass',
  'got',
  'home',
  'heard',
  'side',
  'stori',
  'came',
  'conclus',
  'fact',
  'accid',
  'babysitt',
  'said',
  'daughter',
  'broke',
  'intent',
  'refus',
  'let',
  'outsid',
  'late',
  'even',
  'ask',
  'year',
  'old',
  'daughter',
  'said',
  'babysitt',
  'stori',
  'accur',
  'sinc',
  'sister',
  'beef',
  'figur',
  'lie',
  'set',
  'sister',
  'year',
  'old',
  'daughter',
  'cri',
  'said',
  'mean',
  'accid',
  'apolog',
  'babysitt',
  'misunderstand',
  'insist',
  'misunderstand',
  'ask',
  'pay',
  'pair',
  'new',
  'glass',
  'taken',
  'aback',
  'request',
  'told',
  'thought',
  'talk',
  'roll',
  'accid',
  'insist',
  'accid',
  'apolog',
  'refus',
  'said',
  'unfair',
  'expect',
  'pay',
  'especi',
  'sinc',
  'pay',
  'attent',
  'keep',
  'glass',
  'safe',
  'regardless',
  'wether',
  'accid',
  'babysitt',
  'argu',
  'start',
  'cri',
  'swear',
  'daughter',
  'broke',
  'get',
  'back',
  'year',
  'old',
  'daughter',
  'side',
  'year',
  'old',
  'said',
  'side',
  'babysitt',
  'benefit',
  'girl',
  'start',
  'fight',
  'end',
  'tell',
  'babysitt',
  'leav',
  'got',
  'co',
  'worker',
  'involv',
  'said',
  'take',
  'respons',
  'pay',
  'babysitt',
  'new',
  'glass',
  'sinc',
  'afford',
  'broke',
  'colleg',
  'student',
  'need',
  'glass',
  'apolog',
  'refus',
  'pay',
  'co',
  'worker',
  'got',
  'upset',
  'shame',
  'condon',
  'younger',
  'daughter',
  'action',
  'treat',
  'babysitt',
  'poorli',
  'victim',
  'situat',
  'day',
  'babysitt',
  'still',
  'want',
  'pay',
  'new',
  'glass',
  'feel',
  'like',
  'tri',
  'use',
  'fact',
  'im',
  'dire',
  'need',
  'help',
  'hope',
  'get',
  'extra',
  'money',
  'pocket'],
 ['five',
  'month',
  'ago',
  'struck',
  'agreement',
  'roommat',
  'husband',
  'live',
  'two',
  'peopl',
  'pretti',
  'small',
  'fridg',
  'never',
  'room',
  'anyth',
  'alway',
  'two',
  'household',
  'worth',
  'ingredi',
  'stock',
  'plu',
  'get',
  'pretti',
  'annoy',
  'two',
  'set',
  'peopl',
  'fight',
  'realli',
  'kitchen',
  'everi',
  'day',
  'time',
  'cook',
  'dinner',
  'propos',
  'deal',
  'everyon',
  'contribut',
  'commun',
  'dinner',
  'budget',
  'would',
  'cook',
  'dinner',
  'four',
  'us',
  'everi',
  'day',
  'im',
  'great',
  'economis',
  'cook',
  'low',
  'budget',
  'toot',
  'horn',
  'anyth',
  'cook',
  'huge',
  'hobbi',
  'mine',
  'feel',
  'confid',
  'say',
  'im',
  'shabbi',
  'either',
  'like',
  'cook',
  'wide',
  'rang',
  'food',
  'someth',
  'husband',
  'love',
  'exampl',
  'japanese-styl',
  'ramen',
  'chines',
  'brais',
  'pork',
  'rice',
  'moroccan',
  'curri',
  'shakshuka',
  'pasta',
  'salad',
  'grill',
  'fish',
  'roast',
  'veget',
  'authent',
  'italian',
  'carbonara',
  'thing',
  'might',
  'show',
  'dinner',
  'tabl',
  'cook',
  'thing',
  'went',
  'well',
  'coupl',
  'month',
  'roommat',
  'start',
  'make',
  'request',
  'fine',
  'sometim',
  'would',
  'even',
  'ask',
  'idea',
  'cook',
  'restrict',
  'came',
  'came',
  'came',
  'kept',
  'pile',
  'list',
  'pasta',
  'curri',
  'rosemari',
  'thyme',
  'oregano',
  'provinci',
  'herb',
  'oliv',
  'asian',
  'noodl',
  'soy',
  'sauc',
  'oyster',
  'sauc',
  'peanut-bas',
  'sauc',
  'chickpea',
  'lamb',
  'pesto',
  'basmati',
  'rice',
  'pork',
  'belli',
  'sun-dri',
  'tomato',
  'szechuan',
  'pepper',
  'szechuan',
  'pepper',
  'oil',
  'vinegar',
  'balsam',
  'couscou',
  'shrimp',
  'fennel',
  'garam',
  'masala',
  'sugar',
  'low',
  'salt',
  'sure',
  'plenti',
  'forgot',
  'would',
  'definit',
  'mention',
  'use',
  'like',
  'adventur',
  'cook',
  'got',
  'realli',
  'realli',
  'tire',
  'limit',
  'honestli',
  'felt',
  'like',
  'hand',
  'new',
  'restrict',
  'everi',
  'day',
  'stop',
  'cook',
  'went',
  'back',
  'cook',
  'husband',
  'roommat',
  'pretti',
  'upset',
  'im',
  'cook',
  'anymor',
  'start',
  'hint',
  'would',
  'like',
  'cook',
  'say',
  'asshol',
  'edit',
  'move',
  'week',
  'tomorrow',
  'buy',
  'applianc',
  'rent',
  'place',
  'short',
  'term',
  'wait',
  'close',
  'hous'],
 ['let',
  'prefac',
  'say',
  'struggl',
  'alcohol',
  'year',
  'difficult',
  'period',
  'life',
  'im',
  'year',
  'sober',
  'much',
  'better',
  'life',
  'got',
  'marri',
  'wife',
  'last',
  'year',
  'stepson',
  'jake',
  'jake',
  'realli',
  'close',
  'cordial',
  'relationship',
  'dad',
  'pictur',
  'pretti',
  'clear',
  'never',
  'see',
  'dad',
  'jake',
  'done',
  'number',
  'thing',
  'past',
  'caus',
  'us',
  'fight',
  'like',
  'get',
  'troubl',
  'make',
  'pay',
  'damag',
  'damag',
  'thing',
  'pay',
  'also',
  'constantli',
  'mock',
  'soberti',
  'everi',
  'chanc',
  'get',
  'issu',
  'got',
  'work',
  'time',
  'mock',
  'pretti',
  'much',
  'still',
  'told',
  'told',
  'wife',
  'make',
  'feel',
  'got',
  'nowher',
  'father',
  'day',
  'come',
  'wife',
  'famili',
  'came',
  'celebr',
  'us',
  'dinner',
  'jake',
  'surpris',
  'gift',
  'say',
  'father',
  'day',
  'thought',
  'sweet',
  'complet',
  'charact',
  'get',
  'anyth',
  'howev',
  'way',
  'smug',
  'smile',
  'feel',
  'comfort',
  'anywayi',
  'open',
  'beholdther',
  'flask',
  'glassfrankli',
  'felt',
  'like',
  'made',
  'fun',
  'mock',
  'one',
  'biggest',
  'difficult',
  'struggl',
  'entir',
  'life',
  'frozei',
  'know',
  'say',
  'act',
  'sinc',
  'everyon',
  'liter',
  'watch',
  'jake',
  'giggl',
  'hard',
  'got',
  'piss',
  'put',
  'everyth',
  'back',
  'grab',
  'box',
  'told',
  'belong',
  'hous',
  'open',
  'door',
  'walk',
  'trash',
  'threw',
  'entir',
  'thing',
  'wife',
  'mom',
  'stepson',
  'door',
  'watch',
  'jake',
  'went',
  'downstair',
  'wife',
  'start',
  'argu',
  'got',
  'argument',
  'parent',
  'left',
  'wife',
  'got',
  'upset',
  'say',
  'react',
  'childish',
  'jake',
  'teas',
  'loosen',
  'stop',
  'dramat',
  'refus',
  'get',
  'engag',
  'much',
  'tension',
  'hous',
  'silenc',
  'in-law',
  'aita',
  'handl'],
 ['complet',
  'treatment',
  'medic',
  'issu',
  'affect',
  'bodi',
  'gain',
  'weight',
  'due',
  'medic',
  'condit',
  'also',
  'medic',
  'none',
  'old',
  'cloth',
  'fit',
  'anymor',
  'bought',
  'new',
  'fit',
  'cloth',
  'husband',
  'birthday',
  'parti',
  'ask',
  'wear',
  'one',
  'old',
  'dress',
  'one',
  'favorit',
  'appeas',
  'said',
  'ye',
  'although',
  'feel',
  'comfort',
  'wear',
  'especi',
  'weight',
  'gain',
  'restaur',
  'famili',
  'friend',
  'arriv',
  'sister',
  'soon',
  'saw',
  'walk',
  'bust',
  'laughingh',
  'point',
  'dress',
  'go',
  'hyster',
  'say',
  'oh',
  'god',
  'felt',
  'incred',
  'mad',
  'especi',
  'start',
  'laugh',
  'well',
  'one',
  'friend',
  'start',
  'whistl',
  'mock',
  'tone',
  'turn',
  'around',
  'instantli',
  'walk',
  'sister',
  'follow',
  'went',
  'home',
  'cri',
  'littl',
  'kept',
  'call',
  'non',
  'stop',
  'came',
  'home',
  'start',
  'talk',
  'oversensit',
  'natur',
  'reaction',
  'upon',
  'see',
  'dress',
  'time',
  'said',
  'overreact',
  'made',
  'scene',
  'noth',
  'also',
  'said',
  'ruin',
  'birthay',
  'urg',
  'get',
  'therapi',
  'oversensit',
  'im',
  'inflict',
  'upon',
  'aita',
  'overreact',
  'upset',
  'refus',
  'even',
  'reciev',
  'gift',
  'edit',
  'need',
  'explain',
  'way',
  'laugh',
  'first',
  'start',
  'giggl',
  'tri',
  'cover',
  'mouth',
  'matter',
  'second',
  'burst',
  'laugh',
  'middl',
  'restaur',
  'guest',
  'confus',
  'mustv',
  'understood',
  'laugh',
  'join',
  'friend',
  'whistl',
  'mockingli',
  'repeatedli',
  'turn',
  'head',
  'like',
  'someth',
  'caught',
  'attent',
  'could',
  'overreact',
  'could',
  'get',
  'overwhelm',
  'joke',
  'laugh',
  'new',
  'come',
  'kind',
  'teas',
  'everyth',
  'even',
  'famili',
  'kid',
  'also',
  'also',
  'said',
  'caught',
  'guard',
  'blame',
  'reaction'],
 ['daughter',
  'grade',
  'remot',
  'month',
  'ago',
  'physic',
  'school',
  'long',
  'recent',
  'told',
  'want',
  'pack',
  'lunch',
  'anymor',
  'eat',
  'kid',
  'eat',
  'want',
  'eat',
  'favourit',
  'food',
  'opt',
  'ask',
  'pizza',
  'ask',
  'eat',
  'favourit',
  'food',
  'anymor',
  'told',
  'want',
  'abl',
  'sit',
  'student',
  'shock',
  'know',
  'sit',
  'student',
  'told',
  'teacher',
  'made',
  'sit',
  'room',
  'lunch',
  'time',
  'brought',
  'smelli',
  'food',
  'clear',
  'grow',
  'also',
  'target',
  'teacher',
  'let',
  'bring',
  'shrimp',
  'anyth',
  'garlic',
  'onion',
  'hate',
  'smell',
  'tri',
  'pack',
  'anyth',
  'could',
  'caus',
  'target',
  'child',
  'like',
  'spam',
  'sushi',
  'egg',
  'fri',
  'rice',
  'realli',
  'upset',
  'half',
  'chines',
  'clearli',
  'look',
  'asian',
  'felt',
  'childhood',
  'trauma',
  'happen',
  'call',
  'home',
  'room',
  'teacher',
  'meet',
  'teacher',
  'said',
  'make',
  'sit',
  'room',
  'eat',
  'daughter',
  'told',
  'ask',
  'best',
  'friend',
  'confirm',
  'ye',
  'anoth',
  'teacher',
  'confirm',
  'seen',
  'eat',
  'alon',
  'home',
  'room',
  'teacher',
  'switch',
  'stori',
  'daughter',
  'brought',
  'persimmon',
  'school',
  'distract',
  'kid',
  'thought',
  'eat',
  'tomato',
  'want',
  'distract',
  'student',
  'foreign',
  'food',
  'refus',
  'believ',
  'inappropri',
  'said',
  'see',
  'anyth',
  'wrong',
  'send',
  'eat',
  'go',
  'principl',
  'take',
  'daughter',
  'anoth',
  'home',
  'room',
  'finish',
  'school',
  'year',
  'teacher',
  'said',
  'happen',
  'despit',
  'daughter',
  'swear',
  'happen',
  'everi',
  'day',
  'week',
  'told',
  'told',
  'specif',
  'time',
  'brought',
  'tomato',
  'egg',
  'stir',
  'fri',
  'boy',
  'bulli',
  'look',
  'like',
  'blood',
  'teacher',
  'send',
  'eat',
  'room',
  'rather',
  'tell',
  'stop',
  'husband',
  'believ',
  'say',
  'teacher',
  'would',
  'said',
  'someth',
  'send',
  'eat',
  'think',
  'understand',
  'white'],
 ['seriou',
  'post',
  'feel',
  'bit',
  'guilti',
  'thought',
  'ask',
  'train',
  'yesterday',
  'busi',
  'sinc',
  'long',
  'trip',
  'start',
  'read',
  'book',
  'phone',
  'explicit',
  'matur',
  'scene',
  'man',
  'sit',
  'besid',
  'obvious',
  'read',
  'shoulder',
  '-which',
  'thought',
  'rude',
  'stop',
  'him-',
  'got',
  'steami',
  'scene',
  'bare',
  'second',
  'make',
  'disgust',
  'nois',
  'say',
  'could',
  'read',
  'filth',
  'public',
  'pervert',
  'sexual',
  'harass',
  'surpris',
  'thought',
  'would',
  'embarrass',
  'avert',
  'eye',
  'well',
  'shame',
  'said',
  'one',
  'told',
  'look',
  'phone',
  'screen',
  'realli',
  'harass',
  'start',
  'read',
  'loud',
  'turn',
  'red',
  'chang',
  'seat',
  'cool',
  'felt',
  'bit',
  'bad',
  'respons',
  'also',
  'know',
  'peopl',
  'would',
  'feel',
  'awkward',
  'read',
  'smut',
  'public',
  'aita'],
 ['got',
  'daughter',
  'new',
  'car',
  'month',
  'ago',
  'stepbroth',
  'gone',
  'crazi',
  'ever',
  'sinc',
  'bern',
  'attempt',
  'drive',
  'daughter',
  'made',
  'clear',
  'want',
  'hed',
  'refer',
  'car',
  'would',
  'get',
  'mad',
  'daughter',
  'decor',
  'pink',
  'add',
  'teddi',
  'bear',
  'necklac',
  'decor',
  'hed',
  'get',
  'angri',
  'say',
  'ruin',
  'car',
  'embarrass',
  'infront',
  'friend',
  'although',
  'never',
  'let',
  'get',
  'insid',
  'ask',
  'husband',
  'talk',
  'son',
  'said',
  'daughter',
  'need',
  'chill',
  'fastforward',
  'past',
  'friday',
  'daughter',
  'call',
  'work',
  'say',
  'stepbroth',
  'took',
  'car',
  'upstair',
  'demand',
  'key',
  'refus',
  'call',
  'phone',
  'respond',
  'call',
  'husband',
  'told',
  'happen',
  'told',
  'need',
  'go',
  'bring',
  'car',
  'back',
  'id',
  'call',
  'polic',
  'call',
  'son',
  'call',
  'back',
  'say',
  'son',
  'take',
  'go',
  'movi',
  'friend',
  'bring',
  'back',
  'pm',
  'wait',
  'watn',
  'one',
  'time',
  'bring',
  'back',
  'stall',
  'call',
  'polic',
  'report',
  'stolen',
  'stepson',
  'pick',
  'locat',
  'brought',
  'local',
  'polic',
  'station',
  'got',
  'car',
  'back',
  'mess',
  'decor',
  'toy',
  'gone',
  'daughter',
  'stop',
  'cri',
  'husband',
  'blew',
  'phone',
  'call',
  'polic',
  'son',
  'caus',
  'spend',
  'night',
  'came',
  'home',
  'next',
  'day',
  'huge',
  'argument',
  'ensu',
  'husband',
  'say',
  'made',
  'mistak',
  'report',
  'car',
  'miss',
  'said',
  'escal',
  'situat',
  'one',
  'creat',
  'got',
  'son',
  'similar',
  'car',
  'least',
  'told',
  'daughter',
  'share',
  'otherwis',
  'deal',
  'son',
  'temper',
  'tantrum',
  'hous',
  'full',
  'tension',
  'sinc',
  'everyon',
  'mad',
  'want',
  'polic',
  'involv',
  'see',
  'daughter',
  'cri',
  'take'],
 ['hello',
  'work',
  'law',
  'firm',
  'year',
  'high',
  'school',
  'sweetheart',
  'die',
  'die',
  'propos',
  'said',
  'ye',
  'struck',
  'grief',
  'could',
  'never',
  'bring',
  'take',
  'ring',
  'gave',
  'around',
  'year',
  'ago',
  'final',
  'move',
  'chose',
  'adopt',
  'girl',
  'everyon',
  'firm',
  'assum',
  'im',
  'marri',
  'due',
  'ring',
  'kid',
  'one',
  'co-work',
  'appar',
  'crush',
  'invit',
  'group',
  'friend',
  'work',
  'birthday',
  'ask',
  'husband',
  'told',
  'pass',
  'daughter',
  'bit',
  'shock',
  'say',
  'except',
  'lost',
  'said',
  'lie',
  'us',
  'year',
  'cant',
  'believ',
  'storm',
  'show',
  'work',
  'day',
  'return',
  'even',
  'look',
  'eye',
  'co-work',
  'ask',
  'apolog',
  'think',
  'need',
  'im',
  'wonder',
  'im',
  'asshol'],
 ['situat',
  'bit',
  'mess',
  'ill',
  'mention',
  'relev',
  'conflict',
  'hand',
  'wife',
  'liz',
  'marri',
  'year',
  'preschool',
  'age',
  'kid',
  'current',
  'live',
  'citi',
  'parent',
  'mom',
  'would',
  'take',
  'kid',
  'wife',
  'work',
  'liz',
  'one',
  'much',
  'larger',
  'incom',
  'got',
  'even',
  'better',
  'job',
  'opportun',
  'requir',
  'us',
  'move',
  'anoth',
  'citi',
  'agre',
  'sinc',
  'could',
  'easili',
  'find',
  'job',
  'field',
  'citi',
  'move',
  'famili',
  'heard',
  'sell',
  'hous',
  'move',
  'hell',
  'broke',
  'loos',
  'sunday',
  'mom',
  'liz',
  'got',
  'huge',
  'fight',
  'liz',
  'told',
  'mom',
  'well',
  'move',
  'away',
  'hire',
  'babysitt',
  'kid',
  'longer',
  'need',
  'mom',
  'said',
  'want',
  'grandkid',
  'move',
  'away',
  'even',
  'said',
  'let',
  'kid',
  'live',
  'hous',
  'move',
  'liz',
  'laugh',
  'mom',
  'lost',
  'basic',
  'say',
  'liz',
  'ungrat',
  'witch',
  'grandkid',
  'move',
  'happen',
  'dead',
  'bodi',
  'began',
  'exchang',
  'harsher',
  'word',
  'liz',
  'snap',
  'told',
  'mom',
  'butt',
  'privat',
  'matter',
  'concern',
  'said',
  'right',
  'decid',
  'thing',
  'regard',
  'kid',
  'mom',
  'firmli',
  'told',
  'dead',
  'wrong',
  'proceed',
  'tell',
  'involv',
  'grandmoth',
  'know',
  'right',
  'take',
  'liz',
  'court',
  'ensur',
  'still',
  'get',
  'see',
  'grankid',
  'liz',
  'shock',
  'look',
  'left',
  'saw',
  'sit',
  'say',
  'anyth',
  'told',
  'check',
  'mom',
  'told',
  'unfair',
  'mom',
  'mom',
  'feel',
  'upset',
  'longer',
  'abl',
  'see',
  'grandchildren',
  '-',
  'honestli',
  'told',
  'liz',
  'bit',
  'selfish',
  'consid',
  'mom',
  'feel',
  'crucial',
  'presenc',
  'kid',
  'life',
  'first',
  'liz',
  'start',
  'argu',
  'say',
  'believ',
  'stand',
  'behind',
  'defend',
  'hear',
  'mom',
  'say',
  'shed',
  'get',
  'court',
  'involv',
  'said',
  'mom',
  'upset',
  'blame',
  'reaction',
  'liz',
  'start',
  'yell',
  'call',
  'unsupport',
  'enabl',
  'went',
  'home',
  'kid',
  'insist',
  'famili',
  'problem',
  'handl',
  'although',
  'whole',
  'move',
  'thing',
  'idea',
  'situat',
  'resolv',
  'liz',
  'mom',
  'get',
  'intens',
  'fight',
  'choos',
  'stay',
  'valid',
  'argument',
  'liz',
  'call',
  'aw',
  'side',
  'see',
  'mom',
  'spoke',
  'okay',
  'fact',
  'mom',
  'caus',
  'us',
  'issu',
  'court',
  'aita',
  'get',
  'liz',
  'want',
  'support',
  'feel',
  'like',
  'mom',
  'punish',
  'fault',
  'love',
  'grandmoth',
  'kid'],
 ['updat',
  'httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'im',
  'regular',
  'local',
  'coffe',
  'shop',
  'stop',
  'nearli',
  'everyday',
  'lunch',
  'break',
  'ive',
  'gotten',
  'know',
  'owner',
  'staff',
  'theyr',
  'great',
  'usual',
  'leav',
  '%',
  'tip',
  'yesterday',
  'went',
  'girl',
  'recogn',
  'behind',
  'counter',
  'assum',
  'new',
  'place',
  'usual',
  'order',
  'medium',
  'light',
  'roast',
  'coffe',
  'black',
  'room',
  'turn',
  'around',
  'pour',
  'coffe',
  'notic',
  'fill',
  'cup',
  'halfway',
  'light',
  'roast',
  'fill',
  'rest',
  'dark',
  'roast',
  'put',
  'cup',
  'front',
  'ask',
  'fill',
  'cup',
  'dark',
  'roast',
  'order',
  'light',
  'roast',
  'said',
  'ran',
  'light',
  'roast',
  'use',
  'dark',
  'roast',
  'top',
  'told',
  'drink',
  'dark',
  'roast',
  'respond',
  'make',
  'differ',
  'feel',
  'like',
  'put',
  'new',
  'pot',
  'would',
  'take',
  'min',
  'told',
  'label',
  'differ',
  'wouldv',
  'wait',
  'fresh',
  'pot',
  'order',
  'someth',
  'els',
  'gave',
  'wtf',
  'look',
  'said',
  'industri',
  'standard',
  'walk',
  'back',
  'come',
  'back',
  'sent',
  'anoth',
  'worker',
  'im',
  'friendli',
  'apolog',
  'got',
  'correct',
  'coffe',
  'went',
  'today',
  'owner',
  'half-jokingli',
  'half-seri',
  'ask',
  'caus',
  'problem',
  'employe',
  'feel',
  'comfort',
  'go',
  'anymor',
  'im',
  'wonder',
  'realli',
  'standard',
  'practic',
  'ah'],
 ['see',
  'bottom',
  'updat',
  'work',
  'tech',
  'compani',
  'im',
  'one',
  'two',
  'women',
  'technic',
  'role',
  'introvert',
  'great',
  'recruit',
  'everi',
  'time',
  'recruit',
  'event',
  'get',
  'volun-told',
  'especi',
  'frustrat',
  'whole',
  'team',
  'crunch',
  'time',
  'day',
  'spend',
  'recruit',
  'day',
  'make',
  'later',
  'recruit',
  'event',
  'local',
  'colleg',
  'young',
  'woman',
  'think',
  'appli',
  'ask',
  'divers',
  'compani',
  'look',
  'good',
  'panel',
  'promot',
  'materi',
  'side',
  'note',
  'almost',
  'everi',
  'person',
  'color',
  'woman',
  'queer',
  'present',
  'person',
  'promo',
  'materi',
  'either',
  'quit',
  'never',
  'work',
  'first',
  'place',
  'answer',
  'honestli',
  'front',
  'small',
  'group',
  'well',
  'two',
  'women',
  'technic',
  'role',
  'one',
  'sometim',
  'feel',
  'like',
  'work',
  'two',
  'job',
  'one',
  'engin',
  'one',
  'token',
  'girl',
  'engin',
  'get',
  'pull',
  'away',
  'work',
  'everi',
  'photo',
  'op',
  'recruit',
  'event',
  'honestli',
  'like',
  'trailblaz',
  'prepar',
  'take',
  'extra',
  'unspoken',
  'pr',
  'girl',
  'engin',
  'might',
  'find',
  'role',
  'fulfil',
  'prefer',
  'keep',
  'head',
  'focu',
  'technic',
  'side',
  'easier',
  'compani',
  'gender',
  'racial',
  'divers',
  'appreci',
  'honestli',
  'manag',
  'run',
  'event',
  'told',
  'leav',
  'meet',
  'hr',
  'manag',
  'tomorrow',
  'think',
  'opinion',
  'news',
  'ive',
  'alreadi',
  'told',
  'im',
  'interest',
  'assign',
  'photo',
  'op',
  'recruit',
  'disproportion',
  'gender',
  'ive',
  'told',
  'import',
  'help',
  'recruit',
  'divers',
  'staff',
  'sinc',
  'compani',
  'tri',
  'improv',
  'feel',
  'like',
  'theyr',
  'mad',
  'said',
  'quiet',
  'part',
  'loud',
  'recruit',
  'event',
  'honest',
  'answer',
  'question',
  'keep',
  'brought',
  'thing',
  'uniqu',
  'perspect',
  'whatnot',
  'think',
  'might',
  'also',
  'see',
  'someth',
  'good',
  'tri',
  'outreach',
  'divers',
  'applic',
  'pool',
  'see',
  'ruin',
  'aita',
  'said',
  'job',
  '--',
  '-upadt',
  'meet',
  '--',
  '-',
  'edit',
  '-',
  'meet',
  'record',
  'consent',
  'even',
  'though',
  'hard',
  'come',
  'agreement',
  'basic',
  'said',
  'understood',
  'ask',
  'recruit',
  'want',
  'femal',
  'applic',
  'felt',
  'could',
  'help',
  'recruit',
  'way',
  'men',
  'team',
  'want',
  'share',
  'uniqu',
  'perspect',
  'woman',
  'feild',
  'correct',
  'manag',
  'hr',
  'confirm',
  'said',
  'role',
  'often',
  'refer',
  'trailblaz',
  'also',
  'often',
  'refer',
  'token',
  'certain',
  'gender',
  'race',
  'either',
  'way',
  'role',
  'publicli',
  'present',
  'divers',
  'compani',
  'understood',
  'part',
  'role',
  'mandat',
  'manag',
  'assist',
  'recruit',
  'women',
  'said',
  'ask',
  'experi',
  'potenti',
  'applic',
  'answer',
  'felt',
  'honest',
  'way',
  'say',
  '-',
  'two',
  'women',
  '-',
  'feel',
  'top',
  'technic',
  'role',
  'role',
  'woman',
  'trailblaz',
  'token',
  'women',
  '-',
  'dual',
  'role',
  'appeal',
  'would',
  'good',
  'fit',
  'pure',
  'technic',
  'role',
  'appeal',
  'may',
  'good',
  'fit',
  'see',
  'similar',
  'recruit',
  'say',
  'fast',
  'pace',
  'role',
  'enjoy',
  'role',
  'would',
  'good',
  'fit',
  'may',
  'wonder',
  'call',
  'meet',
  'employe',
  'describ',
  'role',
  'sort',
  'person',
  'want',
  'fill',
  'role',
  'hr',
  'guy',
  'said',
  'token',
  'often',
  'seen',
  'neg',
  'connot',
  'deter',
  'applic',
  'said',
  'fast',
  'pace',
  'also',
  'seen',
  'neg',
  'peopl',
  'outsid',
  'oblig',
  'exampl',
  'understand',
  'frank',
  'natur',
  'role',
  'problem',
  'fact',
  'recruit',
  'often',
  'encourag',
  'frank',
  'attract',
  'candid',
  'genuin',
  'good',
  'match',
  'would',
  'help',
  'attract',
  'sort',
  'woman',
  'would',
  'like',
  'token',
  'femal',
  'engin',
  'deter',
  'type',
  'woman',
  'would',
  'manag',
  'got',
  'frustrat',
  'rais',
  'voic',
  'say',
  'nobodi',
  'want',
  'token',
  'honestli',
  'look',
  'shit',
  'face',
  'said',
  'realli',
  'track',
  'previou',
  'comment',
  'frequent',
  'said',
  'proud',
  'repres',
  'compani',
  'much',
  'need',
  'event',
  'sound',
  'like',
  'see',
  'admir',
  'much',
  'appreci',
  'role',
  'said',
  'smartass',
  'said',
  'apolog',
  'im',
  'frustrat',
  'number',
  'contradict',
  'messag',
  'around',
  'role',
  'frank',
  'job',
  'expect',
  'recruit',
  'good',
  'fit',
  'candid',
  'howev',
  'frank',
  'person',
  'job',
  'expect',
  'despit',
  'never',
  'commun',
  'hear',
  'proud',
  'happi',
  'repres',
  'compani',
  'femal',
  'engin',
  'attract',
  'women',
  'hear',
  'nobodi',
  'want',
  'shoe',
  'describ',
  'role',
  'deter',
  'applic',
  'hear',
  'compani',
  'make',
  'effort',
  'toward',
  'divers',
  'howev',
  'effort',
  'seem',
  'continu',
  'retent',
  'year',
  'four',
  'femal',
  'employe',
  'quit',
  'two',
  'hire',
  'rapidli',
  'quit',
  'retent',
  'rate',
  'far',
  'lower',
  'averag',
  'im',
  'frankli',
  'confus',
  'role',
  'compani',
  'want',
  'engin',
  'want',
  'token',
  'manag',
  'snap',
  'said',
  'engin',
  'said',
  'would',
  'like',
  'job',
  'duti',
  'reflect',
  'hr',
  'guy',
  'said',
  'permit',
  'publicli',
  'repres',
  'compani',
  'anymor',
  'said',
  'okay',
  'mad',
  'feel',
  'like',
  'manag',
  'piss',
  'im',
  'well',
  'along',
  'interview',
  'process',
  'sever',
  'compani',
  'hope',
  'problem',
  'anymor',
  'im',
  'quit',
  'till',
  'new',
  'offer',
  'sign',
  'im',
  'concern',
  'get',
  'fire',
  'get',
  'unemploy'],
 ['saw',
  'similar',
  'post',
  'hour',
  'ago',
  'want',
  'ask',
  'myf',
  'sister',
  'marri',
  'man',
  'twice',
  'age',
  'woman',
  'year',
  'got',
  'pregnant',
  'nephew',
  'year',
  'male',
  'husband',
  'ex-wif',
  'obvious',
  'kick',
  'oldest',
  'follow',
  'took',
  'month',
  'ago',
  'wife',
  'hous',
  'divorc',
  'ask',
  'stay',
  'year',
  'unlit',
  'theyr',
  'abl',
  'buy',
  'hous',
  'said',
  'ye',
  'honestli',
  'mind',
  'love',
  'nephew',
  'heart',
  'home',
  'famili',
  'home',
  'dad',
  'left',
  'quit',
  'big',
  'thing',
  'okay',
  'sister',
  'husband',
  'alway',
  'paid',
  'rent',
  'time',
  'son',
  'actual',
  'help',
  'around',
  'hous',
  'said',
  'love',
  'nephew',
  'happi',
  'sister',
  'around',
  'context',
  'im',
  'sex',
  'worker',
  'real',
  'life',
  'sister',
  'know',
  'never',
  'comment',
  'recent',
  'think',
  'famili',
  'happen',
  'sister',
  'step-son',
  'ill',
  'call',
  'aaron',
  'alway',
  'mess',
  'room',
  'okay',
  'space',
  'like',
  'notic',
  'start',
  'leav',
  'food',
  'drink',
  'around',
  'want',
  'rat',
  'cockroach',
  'hous',
  'ask',
  'bunch',
  'time',
  '*',
  'gentli',
  '*',
  'pleas',
  'clean',
  'room',
  'unsanitari',
  'live',
  'babi',
  'alway',
  'like',
  'yeah',
  'yeah',
  'dad',
  'sister',
  'ask',
  'fought',
  'said',
  'room',
  'clean',
  'sunday',
  'gon',
  'na',
  'throw',
  'away',
  'everyth',
  'find',
  'floor',
  'believ',
  'neither',
  'clean',
  'hire',
  'someon',
  'ask',
  'throw',
  'everyth',
  'away',
  'separ',
  'cloth',
  'bag',
  'food',
  'came',
  'back',
  'saw',
  'room',
  'got',
  'angri',
  'said',
  'right',
  'thing',
  'throw',
  'away',
  'like',
  '%',
  'cloth',
  'blabla',
  'threaten',
  'tell',
  'everyon',
  'whore',
  'taken',
  'aback',
  'ask',
  'meant',
  'said',
  'found',
  'gon',
  'na',
  'get',
  'video',
  'dunno',
  'send',
  'famili',
  'bitch',
  'teach',
  'bitch',
  'behav',
  'said',
  'room',
  'cleaner',
  'fuck',
  'dirti',
  'needl',
  'say',
  'kick',
  'sister',
  'defend',
  'impli',
  'brought',
  'kick',
  'crash',
  'couch',
  'husband',
  'got',
  'apt',
  'claim',
  'tell',
  'everyon',
  'ah',
  'eta',
  'im',
  'ask',
  'legal',
  'advic',
  'legal',
  'wrong'],
 ['son',
  'grew',
  'live',
  'ex-wif',
  'ex',
  'extrem',
  'high',
  'conflict',
  'due',
  'job',
  'lawyer',
  'use',
  'court',
  'inflict',
  'much',
  'damag',
  'life',
  'could',
  'never',
  'understand',
  'push',
  'divorc',
  'claim',
  'lost',
  'feel',
  'natur',
  'avoid',
  'share',
  'detail',
  'usual',
  'gave',
  'one',
  'word',
  'text',
  'repli',
  'thing',
  'involv',
  'son',
  'work',
  'son',
  'turn',
  'found',
  'son',
  'tell',
  'ex',
  'everyth',
  'hear',
  'home',
  'even',
  'record',
  'video',
  'send',
  'continu',
  'even',
  'therapi',
  'son',
  'explain',
  'damag',
  'over-shar',
  'wast',
  'thousand',
  'dollar',
  'pointless',
  'legal',
  'fight',
  'start',
  'pure',
  'son',
  'spi',
  'wife',
  'made',
  'decis',
  'longer',
  'share',
  'inform',
  'could',
  'potenti',
  'caus',
  'issu',
  'therapist',
  'suggest',
  'approach',
  'unfortun',
  'meant',
  'kept',
  'news',
  'promot',
  'vacat',
  'plan',
  'extend',
  'famili',
  'issu',
  'son',
  'found',
  'trip',
  'way',
  'continu',
  'son',
  'turn',
  'ex',
  'remarri',
  'remov',
  'focu',
  'son',
  'found',
  'purpos',
  'childhood',
  'furiou',
  'say',
  'treat',
  'outsid',
  'apolog',
  'profus',
  'wife',
  'tri',
  'explain',
  'refus',
  'give',
  'chanc',
  'resolv',
  'gone',
  'tirad',
  'parent',
  'sibl',
  'call',
  'neglig',
  'parent',
  'also',
  'told',
  'ex',
  'ex',
  'su',
  'someth',
  'complet',
  'unrel',
  'stand',
  'ill',
  'wast',
  'thousand',
  'lawyer',
  'anyway',
  'want',
  'aita'],
 ['husband',
  'togeth',
  'year',
  'month',
  'pregnant',
  'almost',
  'girl',
  'husband',
  'famili',
  'tradit',
  'name',
  'babi',
  'born',
  'name',
  'embroid',
  'onto',
  'blanket',
  'pass',
  'gener',
  'gener',
  'babi',
  'wrap',
  'blanket',
  'born',
  'im',
  'tri',
  'come',
  'name',
  'like',
  'name',
  'suggest',
  'reson',
  'husband',
  'get',
  'annoy',
  'late',
  'tell',
  'pick',
  'name',
  'babi',
  'grandmoth',
  'name',
  'beatric',
  'want',
  'name',
  'like',
  'want',
  'list',
  'name',
  'see',
  'name',
  'think',
  'appropri',
  'although',
  'sound',
  'odd',
  'want',
  'see',
  'name',
  'decid',
  'pleas',
  'famili',
  'honour',
  'late',
  'sister',
  'want',
  'name',
  'jessica',
  'name',
  'pass',
  'away',
  'heart',
  'attack',
  'mean',
  'lot',
  'told',
  'particular',
  'name',
  'want',
  'hear',
  'insult',
  'everi',
  'time',
  'suggest',
  'name',
  'hell',
  'attack',
  'call',
  'ugli',
  'varieti',
  'way',
  'today',
  'mother',
  'pressur',
  'suggest',
  'name',
  'blurt',
  'name',
  'jessica',
  'paus',
  'laugh',
  'said',
  'name',
  'larg',
  'girl',
  'unsuit',
  'name',
  'went',
  'ask',
  'want',
  'babi',
  'ugli',
  'tri',
  'ruin',
  'life',
  'even',
  'born',
  'initi',
  'overwhelm',
  'anger',
  'ask',
  'stop',
  'talk',
  'harshli',
  'right',
  'impli',
  'ugli',
  'beyonc',
  'annoy',
  'told',
  'leav',
  'hous',
  'want',
  'caus',
  'argument',
  'left',
  'return',
  'home',
  'husband',
  'explain',
  'extrem',
  'disappoint',
  'action',
  'look',
  'close',
  'sister',
  'struggl',
  'frustrat',
  'mother',
  'next',
  'day',
  'doorstep',
  'told',
  'decid',
  'name',
  'said',
  'decor',
  'tacki',
  'said',
  'name',
  'babi',
  'conni',
  'mother',
  'name',
  'neither',
  'husband',
  'pick',
  'caus',
  'argument',
  'us',
  'told',
  'ask',
  'leav',
  'eventu',
  'insult',
  'issu',
  'ask',
  'hubbi',
  'said',
  'right',
  'speak',
  'also',
  'open',
  'name',
  'suggest',
  'said',
  'incred',
  'selfish',
  'said',
  'go',
  'pack',
  'thing',
  'went',
  'older',
  'sister',
  'hous',
  'fume',
  'husband',
  'insult',
  'younger',
  'sister',
  'name',
  'tri',
  'contact',
  'day',
  'apologis',
  'want',
  'speak',
  'ive',
  'also',
  'decid',
  'im',
  'tell',
  'famili',
  'go',
  'labour',
  'must',
  'allow',
  'anywher',
  'near',
  'im',
  'birth',
  'child',
  'aita'],
 ['marri',
  'ex',
  'year',
  'divorc',
  'went',
  'separ',
  'way',
  'year',
  'ago',
  'divorc',
  'kept',
  'surnam',
  'necessarili',
  'like',
  'felt',
  'like',
  'still',
  'attach',
  'famili',
  'could',
  'understand',
  'practic',
  'reason',
  'enough',
  'let',
  'bother',
  'recent',
  'gave',
  'birth',
  'babi',
  'post',
  'pictur',
  'said',
  'child',
  'reveal',
  'name',
  'friend',
  'sent',
  'comment',
  'surnam',
  'ask',
  'knock',
  'follow',
  'four',
  'peopl',
  'directli',
  'contact',
  'either',
  'congratul',
  'ask',
  'confirm',
  'whether',
  'child',
  'mother',
  'say',
  'catch',
  'whisper',
  'church',
  'bump',
  'sister',
  'town',
  'obvious',
  'congratul',
  'ask',
  'kid',
  'name',
  'said',
  'name',
  'ask',
  'surnam',
  'confirm',
  'child',
  'legal',
  'surnam',
  'obvious',
  'xyz',
  '[',
  'mine',
  ']',
  'ask',
  'problem',
  'piss',
  'surnam',
  'uniqu',
  'especi',
  'area',
  'sinc',
  'famili',
  'origin',
  'peopl',
  'hear',
  'surnam',
  'natur',
  'think',
  'famili',
  'assum',
  'kid',
  'fuck',
  'wors',
  'father',
  'appar',
  'pictur',
  'know',
  'fuck',
  'go',
  'straight',
  'said',
  'fuck',
  'weird',
  'give',
  'newborn',
  'surnam',
  'man',
  'divorc',
  'way',
  'link',
  'kid',
  'sound',
  'almost',
  'obsess',
  'said',
  'gave',
  'daughter',
  'surnam',
  'mother',
  'mine',
  'asshol',
  'edit',
  'children',
  'one',
  'child',
  'apart',
  'one',
  'previou',
  'saw',
  'ask',
  'comment',
  'answer',
  'also',
  'surnam',
  'impact',
  'profession',
  'know',
  'father',
  'surnam',
  'use'],
 ['updat',
  '[',
  ']',
  'httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'relationship',
  'wife',
  'sam',
  'rocki',
  'sinc',
  'son',
  'oliv',
  'born',
  'two',
  'year',
  'ago',
  'got',
  'pregnant',
  'month',
  'got',
  'marri',
  'thing',
  'fine',
  'oliv',
  'deliveri',
  'assum',
  'postpartum',
  'depress',
  'sam',
  'never',
  'sought',
  'specif',
  'diagnosi',
  'born',
  'like',
  'care',
  'less',
  'child',
  'plan',
  'children',
  'earli',
  'marriag',
  'scari',
  'cant',
  'describ',
  'all-encompass',
  'love',
  'come',
  'parent',
  'fear',
  'worth',
  'still',
  'alway',
  'throughout',
  'oliv',
  'life',
  'especi',
  'first',
  'year',
  'essenti',
  'act',
  'singl',
  'parent',
  'help',
  'mean',
  'sound',
  'diminish',
  'man',
  'godsend',
  'best',
  'friend',
  'matt',
  'plan',
  'oliv',
  'breastf',
  'wife',
  'interest',
  'born',
  'one',
  'chang',
  'diaper',
  'mix',
  'formula',
  'bottl',
  'hous',
  'share',
  'felt',
  'oppress',
  'like',
  'joy',
  'bond',
  'son',
  'suck',
  'energi',
  'would',
  'take',
  'oliv',
  'matt',
  'want',
  'rambl',
  'long',
  'exactli',
  'zero',
  'time',
  'life',
  'matt',
  'shown',
  'ive',
  'known',
  'sinc',
  'safe',
  'say',
  'even',
  'time',
  'wonder',
  'thing',
  'given',
  'could',
  'sleep',
  'soundli',
  'know',
  'babi',
  'would',
  'taken',
  'care',
  'place',
  'refug',
  'good',
  'oliv',
  'shoulder',
  'cri',
  'think',
  'ill',
  'ever',
  'abl',
  'repay',
  'im',
  'definit',
  'tri',
  'everi',
  'singl',
  'day',
  'thing',
  'wife',
  'kind',
  'start',
  'look',
  'recent',
  'event',
  'sent',
  'us',
  'huge',
  'downward',
  'spiral',
  'oliv',
  'speech',
  'delay',
  'realli',
  'pick',
  'thing',
  'third',
  'birthday',
  'near',
  'babbl',
  'dadada',
  'toward',
  'matt',
  'daddi',
  'sinc',
  'ad',
  'vocabulari',
  'use',
  'refer',
  'us',
  'never',
  'correct',
  'check',
  'matt',
  'make',
  'sure',
  'fine',
  'said',
  'honor',
  'bestow',
  'titl',
  'sam',
  'got',
  'hear',
  'recent',
  'facetim',
  'matt',
  'basic',
  'went',
  'ballist',
  'much',
  'hate',
  'admit',
  'say',
  'parent',
  'true',
  'hurt',
  'need',
  'outsid',
  'opinion',
  'aita',
  'allow',
  'call',
  'dad'],
 ['recent',
  'got',
  'marri',
  'matt',
  'matt',
  'stepsist',
  'tiffani',
  'met',
  'less',
  'time',
  'five',
  'year',
  'date',
  'matt',
  'live',
  'nearbi',
  'close',
  'husband',
  'howev',
  'invit',
  'wed',
  'mention',
  'tiffani',
  'attract',
  'pretti',
  'current',
  'fashion',
  'bodi',
  'type',
  'also',
  'dress',
  'well',
  'spend',
  'money',
  'appear',
  'well',
  'known',
  'even',
  'though',
  'ive',
  'met',
  'time',
  'whenev',
  'brought',
  'law',
  'alway',
  'mention',
  'invest',
  'imag',
  'begrudg',
  'ceremoni',
  'went',
  'fine',
  'afterward',
  'law',
  'congratul',
  'fil',
  'comment',
  'look',
  'beauti',
  'next',
  'breath',
  'mention',
  'tiffani',
  'wife',
  'caught',
  'eye',
  'shook',
  'head',
  'ignor',
  'tiffani',
  'came',
  'say',
  'congratul',
  'look',
  'stun',
  'dress',
  'beauti',
  'fit',
  'perfectli',
  'hair',
  'make',
  'look',
  'like',
  'theyd',
  'done',
  'profession',
  'wear',
  'pair',
  'obvious',
  'design',
  'shoe',
  'outfit',
  'total',
  'appropri',
  'event',
  'still',
  'weirdli',
  'upset',
  'look',
  'immedi',
  'felt',
  'self',
  'consciou',
  'next',
  'even',
  'matt',
  'told',
  'look',
  'great',
  'rare',
  'talk',
  'rest',
  'night',
  'everi',
  'singl',
  'male',
  'guest',
  'wed',
  'ask',
  'tiffani',
  'know',
  'singl',
  'etc',
  'speech',
  'fed',
  'almost',
  'tear',
  'even',
  'best',
  'man',
  'mention',
  'speech',
  'cuff',
  'let',
  'go',
  'went',
  'honeymoon',
  'tri',
  'forget',
  'whole',
  'thing',
  'came',
  'back',
  'week',
  'ago',
  'past',
  'weekend',
  'dinner',
  'law',
  'tiffani',
  'visit',
  'learn',
  'got',
  'engag',
  'show',
  'us',
  'comic',
  'larg',
  'ring',
  'said',
  'plan',
  'wed',
  'next',
  'year',
  'would',
  'black',
  'tie',
  'event',
  'could',
  'stop',
  'jokingli',
  'said',
  'pretti',
  'sure',
  'id',
  'alreadi',
  'wed',
  'one',
  'white',
  'dress',
  'ask',
  'meant',
  'thought',
  'point',
  'lie',
  'admit',
  'felt',
  'upstag',
  'wed',
  'laugh',
  'said',
  'cant',
  'upstag',
  'bride',
  'ask',
  'could',
  'wear',
  'white',
  'wed',
  'shrug',
  'said',
  'think',
  'itll',
  'help',
  'apologis',
  'felt',
  'outfit',
  'inappropri',
  'law',
  'move',
  'convers',
  'went',
  'dinner',
  'got',
  'home',
  'husband',
  'blew',
  'say',
  'embarrass',
  'petti',
  'jealou',
  'tiffani',
  'said',
  'even',
  'like',
  'even',
  'know',
  'cant',
  'anyth',
  'look',
  'like',
  'cloth',
  'afford',
  'made',
  'look',
  'bitter',
  'childish',
  'associ',
  'admit',
  'best',
  'moment',
  'thought',
  'would',
  'least',
  'understand',
  'felt',
  'given',
  'heard',
  'everyon',
  'comment',
  'night',
  'demand',
  'apologis',
  'tiffani',
  'parent',
  'think',
  'said',
  'anyth',
  'heinou',
  'aita'],
 ['origin',
  'post',
  'httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'would',
  'like',
  'updat',
  'anyon',
  'left',
  'kind',
  'comment',
  'might',
  'stumbl',
  'upon',
  'updat',
  'post',
  'comment',
  'chat',
  'receiv',
  'push',
  'accept',
  'job',
  'move',
  'citi',
  'januari',
  'th',
  'start',
  'job',
  'januari',
  'th',
  'happen',
  'quickli',
  'realis',
  'need',
  'put',
  'first',
  'asshol',
  'live',
  'life',
  'despit',
  'incred',
  'pain',
  'boyfriend',
  'mother',
  'agre',
  'longer',
  'speak',
  'allow',
  'see',
  'boyfriend',
  'guess',
  'longer',
  'boyfriend',
  'year',
  'knew',
  'would',
  'happen',
  'said',
  'goodby',
  'told',
  'want',
  'repeat',
  'said',
  'howev',
  'aw',
  'say',
  'ruin',
  'christma',
  'made',
  'decis',
  'rd',
  'knew',
  'possibl',
  'time',
  'sensit',
  'offer',
  'one',
  'comment',
  'said',
  'never',
  'go',
  'good',
  'time',
  'plu',
  'side',
  'hate',
  'made',
  'leav',
  'job',
  'tie',
  'anymor',
  'may',
  'asshol',
  'eye',
  'need',
  'fleet',
  'moment',
  'regret',
  'famili',
  'therapist',
  'said',
  'day',
  'sinc',
  'make',
  'decis',
  'seem',
  'lighter',
  'excit',
  'new',
  'chapter',
  'thank',
  'kind',
  'comment'],
 ['fiancé',
  'plan',
  'wed',
  'come',
  'larg',
  'famili',
  'sister',
  'kid',
  'sister',
  'bridesmaid',
  'one',
  'serv',
  'maid',
  'honor',
  'come',
  'smaller',
  'famili',
  'parent',
  'sister',
  'niec',
  'brynn',
  'brynn',
  'year',
  'old',
  'pretti',
  'much',
  'best',
  'pal',
  'im',
  'godfatheri',
  'love',
  'bit',
  'care',
  'fiancé',
  'choos',
  'sister',
  'bridesmaid',
  'likewis',
  'sister',
  'cool',
  'feel',
  'sort',
  'way',
  'fiancé',
  'brother-in-law',
  'wed',
  'parti',
  'fiancé',
  'request',
  'ultim',
  'side',
  'parti',
  'want',
  'came',
  'time',
  'pick',
  'younger',
  'role',
  'wed',
  'older',
  'nephew',
  'junior',
  'groomsmen',
  'younger',
  'ring',
  'bearer',
  'one',
  'niec',
  'aubrey',
  'fiancé',
  'want',
  'flower',
  'girl',
  'said',
  'fine',
  'also',
  'want',
  'brynn',
  'one',
  'walk',
  'aisl',
  'togeth',
  'itd',
  'super',
  'cute',
  'brynn',
  'love',
  'play',
  'aubrey',
  'get',
  'along',
  'fiancé',
  'say',
  'want',
  'wed',
  'tradit',
  'one',
  'flower',
  'girl',
  'suggest',
  'brynn',
  'could',
  'hold',
  'sign',
  'someth',
  'aubrey',
  'threw',
  'flower',
  'fiancé',
  'said',
  'sit',
  'sister',
  'parent',
  'point',
  'insist',
  'said',
  'brynn',
  'would',
  'flower',
  'girl',
  'text',
  'sister',
  'ask',
  'agre',
  'fiancé',
  'got',
  'piss',
  'said',
  'day',
  'brynn',
  'mean',
  'great',
  'deal',
  'shell',
  'wed',
  'fiancé',
  'aubrey',
  'mom',
  'mad',
  'say',
  'im',
  'steal',
  'aubrey',
  'spotlight',
  'aita',
  'updat',
  'okay',
  'wow',
  'expect',
  'blow',
  'way',
  'thank',
  'everyon',
  'reach',
  'morn',
  'fiancé',
  'sat',
  'talk',
  'wed',
  'gener',
  'brought',
  'brynn',
  'aubrey',
  'fiancé',
  'kept',
  'parrot',
  'tradit',
  'let',
  'aubrey',
  'spotlight',
  'shot',
  'compromis',
  'compromis',
  'aubrey',
  'walk',
  'first',
  'brynn',
  'blow',
  'bubbl',
  'hold',
  'sign',
  'etc',
  'final',
  'fiancé',
  'honest',
  'want',
  'brynn',
  'wed',
  'brynn',
  'syndrom',
  'said',
  'everyon',
  'look',
  'take',
  'piti',
  'etc',
  'turn',
  'spotlight',
  'aubrey',
  'fuck',
  'fiancé',
  'told',
  'fuck',
  'call',
  'ableist',
  'said',
  'worri',
  'spotlight',
  'steal',
  'anymor',
  'wed',
  'ive',
  'left',
  'apart',
  'stay',
  'sister',
  'play',
  'brynn',
  'phone',
  'blow',
  'text',
  'call',
  'fiancé',
  'magic',
  'readi',
  'compromis',
  'need',
  'time',
  'like',
  'done',
  'yall',
  'right'],
 ['throwaway',
  'account',
  'fake',
  'name',
  'wife',
  'also',
  'reddit',
  'sorri',
  'long',
  'post',
  'wife',
  'three',
  'son',
  'alex',
  'dylan',
  'jake',
  'kid',
  'alway',
  'want',
  'dog',
  'parent',
  'said',
  'never',
  'got',
  'chanc',
  'get',
  'one',
  'twenti',
  'recent',
  'interest',
  'one',
  'spark',
  'ask',
  'famili',
  'thought',
  'get',
  'dog',
  'wife',
  'enthusiast',
  'relent',
  'week',
  'ask',
  'alex',
  'jake',
  'excit',
  'get',
  'one',
  'dylan',
  'immedi',
  'oppos',
  'idea',
  'dylan',
  'alway',
  'differ',
  'son',
  'never',
  'interest',
  'sport',
  'alway',
  'subdu',
  'brother',
  'alway',
  'made',
  'hard',
  'connect',
  'remain',
  'oppos',
  'idea',
  'get',
  'dog',
  'son',
  'manag',
  'wear',
  'final',
  'relent',
  'howev',
  'said',
  'get',
  'dog',
  'go',
  'interact',
  'take',
  'care',
  'would',
  'complet',
  'brother',
  'found',
  'ridicul',
  'agre',
  'moment',
  'hope',
  'would',
  'chang',
  'mind',
  'meet',
  'dog',
  'problem',
  'chang',
  'mind',
  'yet',
  'weve',
  'zeu',
  'seven',
  'month',
  'dylan',
  'warm',
  'slightest',
  'play',
  'dog',
  'cuddl',
  'let',
  'zeu',
  'room',
  'destroy',
  'stuff',
  'whenev',
  'near',
  'dog',
  'ignor',
  'find',
  'complet',
  'ridicul',
  'zeu',
  'love',
  'dylan',
  'follow',
  'around',
  'whenev',
  'see',
  'jump',
  'get',
  'attent',
  'play',
  'dylan',
  'recept',
  'chang',
  'told',
  'dylan',
  'last',
  'week',
  'would',
  'charg',
  'walk',
  'dog',
  'everi',
  'day',
  'school',
  'dylan',
  'straight',
  'refus',
  'shut',
  'convers',
  'everi',
  'time',
  'bring',
  'week',
  'walk',
  'dog',
  'frustrat',
  'told',
  'start',
  'listen',
  'allow',
  'go',
  'comic',
  'book',
  'store',
  'anymor',
  'freak',
  'told',
  'wife',
  'wife',
  'upset',
  'claim',
  'knew',
  'get',
  'knew',
  'dylan',
  'play',
  'dog',
  'intoler',
  'dog',
  'weird',
  'refus',
  'entertain',
  'longer',
  'wife',
  'short',
  'ever',
  'sinc',
  'convers',
  'dylan',
  'cold',
  'well',
  'alex',
  'agre',
  'mother',
  'make',
  'second',
  'thought',
  'reddit',
  'aita'],
 ['fparent',
  'remodel',
  'hous',
  'dad',
  'tore',
  'big',
  'chunk',
  'back',
  'brother',
  'sister',
  'husband',
  'clean',
  'pick',
  'rubbish',
  'left',
  'import',
  'say',
  'like',
  'bil',
  'quit',
  'misogynist',
  'disrespect',
  'boundari',
  'know',
  'badli',
  'speak',
  'famili',
  'brother',
  'father',
  'noth',
  'like',
  'believ',
  'aw',
  'wrong',
  'much',
  'sister',
  'claim',
  'happi',
  'tri',
  'interact',
  'less',
  'feel',
  'uncomfort',
  'presenc',
  'year',
  'ago',
  'use',
  'made',
  'fun',
  'anyth',
  'also',
  'use',
  'sister',
  'mom',
  'thing',
  'like',
  'cook',
  'serv',
  'plate',
  'laundri',
  'childcar',
  'anyth',
  'said',
  'father',
  'bil',
  'usual',
  'leav',
  'hour',
  'work',
  'dad',
  'work',
  'construct',
  'bil',
  'compani',
  'ive',
  'dad',
  'lunch',
  'two',
  'year',
  'sinc',
  'got',
  'like',
  'cook',
  'cook',
  'dinner',
  'us',
  'pack',
  'exampl',
  'instanc',
  'made',
  'enchilada',
  'pack',
  'side',
  'lettuc',
  'sour',
  'cream',
  'green',
  'salsa',
  'small',
  'contain',
  'bag',
  'chip',
  'chunk',
  'slice',
  'fruit',
  'appl',
  'pear',
  'also',
  'pack',
  'water',
  'coke',
  'came',
  'kitchen',
  'mom',
  'told',
  'dad',
  'lunch',
  'alreadi',
  'car',
  'could',
  'eat',
  'someth',
  'leav',
  'without',
  'worri',
  'bil',
  'said',
  'shrug',
  'shoulder',
  'said',
  'left',
  'contain',
  'island',
  'welcom',
  'pack',
  'stuff',
  'water',
  'coke',
  'fridg',
  'gave',
  'dirti',
  'look',
  'ask',
  'said',
  'dad',
  'mom',
  'got',
  'middl',
  'told',
  'start',
  'pack',
  'bil',
  'lunch',
  '*',
  'smirk',
  '*',
  'said',
  'sat',
  'plate',
  'said',
  'could',
  'pack',
  'lunch',
  'buy',
  'someth',
  'job',
  'mom',
  'said',
  '*',
  'embarrass',
  '*',
  'dad',
  'cut',
  'told',
  'bil',
  'stop',
  'fight',
  'pack',
  'stuff',
  'alreadi',
  'cook',
  'us',
  'end',
  'say',
  'would',
  'eat',
  'someth',
  'work',
  'left',
  'earli',
  'mom',
  'tri',
  'berat',
  'dad',
  'cut',
  'said',
  'bil',
  'alreadi',
  'adult',
  'said',
  'pack',
  'lunch',
  'dad',
  'said',
  'yeah',
  'demand',
  'left',
  'mom',
  'call',
  'ah',
  'rais',
  'better',
  'aita',
  'eta',
  'post',
  'got',
  'distract',
  'homework',
  'wow',
  'thought',
  'would',
  'get',
  'much',
  'attent',
  'thank',
  'judgment',
  'ill',
  'read',
  'comment',
  'answer',
  'eta',
  'thank',
  'everyon',
  'kind',
  'comment',
  'dad',
  'truli',
  'best',
  'love',
  'heart',
  'im',
  'realli',
  'happi',
  'say',
  'awesom',
  'thing',
  'read',
  'post',
  'comment',
  'brother',
  'happi',
  'thank'],
 ['husband',
  'got',
  'marri',
  'week',
  'ago',
  'obvious',
  'still',
  'upset',
  'think',
  'wrong',
  'thought',
  'would',
  'ask',
  'gave',
  'plu',
  'one',
  'marri',
  'coupl',
  'knew',
  'well',
  'husband',
  'one',
  'childhood',
  'friend',
  'come',
  'state',
  'attend',
  'ive',
  'met',
  'bunch',
  'girlfriend',
  'three',
  'year',
  'time',
  'distanc',
  'want',
  'give',
  'plu',
  'one',
  'husband',
  'beg',
  'sinc',
  'travel',
  'know',
  'anyon',
  'els',
  'wed',
  'want',
  'uncomfort',
  'travel',
  'alon',
  'said',
  'fine',
  'make',
  'happi',
  'flash',
  'forward',
  'recept',
  'see',
  'girl',
  'never',
  'seen',
  'ask',
  'husband',
  'told',
  'friend',
  'gf',
  'broke',
  'day',
  'wed',
  'sinc',
  'alreadi',
  'rsvped',
  'brought',
  'friend',
  'piss',
  'sinc',
  'made',
  'except',
  'want',
  'anyon',
  'random',
  'wed',
  'one',
  'bridesmaid',
  'go',
  'tell',
  'could',
  'stay',
  'date',
  'pleas',
  'go',
  'back',
  'hotel',
  'privat',
  'event',
  'said',
  'ok',
  'make',
  'fuss',
  'left',
  'come',
  'back',
  'though',
  'everyth',
  'fine',
  'great',
  'night',
  'husband',
  'found',
  'next',
  'day',
  'got',
  'argument',
  'mad',
  'friend',
  'travel',
  'kick',
  'without',
  'talk',
  'kick',
  'date',
  'week',
  'later',
  'husband',
  'still',
  'bring',
  'time',
  'time',
  'friend',
  'answer',
  'text',
  'kind',
  'feel',
  'bad',
  'wed',
  'want',
  'stranger'],
 ['husband',
  'togeth',
  'year',
  'marri',
  'athlet',
  'peopl',
  'least',
  'use',
  'weve',
  'plan',
  'holiday',
  'past',
  'year',
  'without',
  'go',
  'major',
  'detail',
  'expens',
  'standard',
  'holiday',
  'wouldv',
  'involv',
  'lot',
  'hike',
  'look',
  'forward',
  'accid',
  'recent',
  'without',
  'go',
  'much',
  'detail',
  'trigger',
  'lost',
  'leg',
  'upset',
  'im',
  'place',
  'openli',
  'speak',
  'outsid',
  'therapi',
  'obvious',
  'due',
  'recent…restrict',
  'im',
  'unabl',
  'wed',
  'plan',
  'holiday',
  'thought',
  'holiday',
  'non',
  'refundable…',
  'expect',
  'husband',
  'want',
  'go',
  'current',
  'famili',
  'ask',
  'famili',
  'claim',
  'hard',
  'around',
  'know',
  'support',
  'whatev',
  'said',
  'yesterday',
  'invit',
  'sister',
  'place',
  'baffl',
  'expect',
  'support',
  '-',
  'said',
  'two',
  'month',
  'im',
  'like',
  'cancel',
  'someth',
  'said',
  'need',
  'break',
  '-',
  'support',
  'deserv',
  'also',
  'look',
  'forward',
  'it…',
  'said',
  'go',
  'paid',
  'spot',
  'cant',
  'use',
  'ask',
  'im',
  'seriou',
  'spite',
  'sister',
  'done',
  'anything…',
  'said',
  'ask',
  'im',
  'text',
  'last',
  'week',
  '£',
  'get',
  'free',
  'holiday',
  'anyway',
  'upset',
  'claim',
  'hell',
  'still',
  'go',
  'pay',
  'sister',
  'sinc',
  'expens',
  'last',
  'check',
  'fulli',
  'book',
  'aita',
  'id',
  'ask',
  'famili',
  'friend',
  'feel',
  'like',
  'text'],
 ['live',
  'next',
  'door',
  'jenni',
  'live',
  'husband',
  'child',
  'work',
  'almost',
  'day',
  'outsid',
  'spare',
  'time',
  'play',
  'game',
  'ps',
  'week',
  'pay',
  'good',
  'internet',
  'like',
  'lag',
  'play',
  'internet',
  'slow',
  'ps',
  'room',
  'internet',
  'router',
  'live',
  'room',
  'wi-fi',
  'cabl',
  'constantli',
  'check',
  'internet',
  'speed',
  'alway',
  'month',
  'ago',
  'invit',
  'jenni',
  'famili',
  'dinner',
  'gave',
  'wifi',
  'password',
  'appar',
  'weak',
  'hous',
  'went',
  'polit',
  'last',
  'month',
  'start',
  'notic',
  'bad',
  'internet',
  'speed',
  'th',
  'technic',
  'visit',
  'resolv',
  'technician',
  'ask',
  'pass',
  'password',
  'someon',
  'build',
  'put',
  'piec',
  'togeth',
  'chang',
  'password',
  'internet',
  'crap',
  'want',
  'share',
  'peopl',
  'last',
  'week',
  'neighbor',
  'knock',
  'door',
  'ask',
  'wi-fi',
  'password',
  'internet',
  'work',
  'comment',
  'say',
  'chang',
  'peopl',
  'apart',
  'use',
  'got',
  'messag',
  'said',
  'hard',
  'time',
  'pay',
  'internet',
  'desper',
  'use',
  'mine',
  'give',
  'new',
  'password',
  'promis',
  'would',
  'use',
  'night',
  'got',
  'home',
  'work',
  'deni',
  'say',
  'night',
  'leisur',
  'time',
  'want',
  'bad',
  'internet',
  'want',
  'pay',
  'internet',
  'good',
  'peopl',
  'even',
  'use',
  'month',
  'without',
  'permiss',
  'stomp',
  'oh',
  'gosh',
  'new',
  'imag',
  'build',
  'petti',
  'bitch',
  'want',
  'share',
  'wi-fi',
  'peopl',
  'struggl',
  'financi',
  'aita'],
 ['ta',
  'account',
  'got',
  'marri',
  'two',
  'month',
  'ago',
  'moder',
  'affair',
  'open',
  'bar',
  'nice',
  'dress',
  'kid',
  'slightli',
  'upscal',
  'place',
  'would',
  'like',
  'guess',
  'live',
  'hire',
  'photograph',
  'compani',
  'midsiz',
  'place',
  'assign',
  'employe',
  'met',
  'time',
  'go',
  'expect',
  'venu',
  'etc',
  'red',
  'flag',
  'noth',
  'weird',
  'day',
  'wed',
  'show',
  'sheer',
  'white',
  'blous',
  'lace',
  'complet',
  'see',
  'bra',
  'notic',
  'husband',
  'notic',
  'everyon',
  'notic',
  'guest',
  'spent',
  'even',
  'tri',
  'look',
  'away',
  'recept',
  'could',
  'overhear',
  'peopl',
  'talk',
  'joke',
  'husband',
  'good',
  'laugh',
  'everyth',
  'done',
  'sort',
  'wtf',
  'realli',
  'happen',
  'guess',
  'everi',
  'wed',
  'need',
  'weird',
  'stori',
  'least',
  'mine',
  'involv',
  'guest',
  'coupl',
  'week',
  'ago',
  'got',
  'photo',
  'packag',
  'good',
  'line',
  'paid',
  'day',
  'later',
  'get',
  'one',
  'automat',
  'email',
  'survey',
  'ask',
  'overal',
  'rate',
  'well',
  'even',
  'rate',
  'photograph',
  'well',
  'except',
  'profession',
  'categori',
  'gave',
  'box',
  'fill',
  'felt',
  'cloth',
  'could',
  'profession',
  'manag',
  'call',
  'clariti',
  'explain',
  'outfit',
  'said',
  'big',
  'deal',
  'realli',
  'situat',
  'appropri',
  'manag',
  'say',
  'much',
  'sound',
  'seriou',
  'thank',
  'inform',
  'end',
  'stori',
  'right',
  'well',
  'nope',
  'weekend',
  'photograph',
  'girl',
  'show',
  'drunk',
  'lawn',
  'wear',
  'three',
  'bra',
  'start',
  'scream',
  'hous',
  'long',
  'stori',
  'short',
  'let',
  'go',
  'job',
  'felt',
  'ah',
  'blame',
  'eventu',
  'call',
  'polic',
  'remov',
  'peopl',
  'know',
  'torn',
  'think',
  'funni',
  'let',
  'go',
  'think',
  'deserv',
  'call',
  'aita'],
 ['girlfriend',
  'year',
  'boy',
  '&',
  'previou',
  'relationship',
  'mom',
  'pictur',
  'work',
  'full',
  'time',
  'girlfriend',
  'use',
  'stay',
  'home',
  'take',
  'care',
  'everyth',
  'els',
  'still',
  'help',
  'yet',
  'would',
  'complain',
  'kid',
  'caus',
  'constant',
  'mess',
  'receiv',
  'proper',
  'desciplin',
  'accid',
  'like',
  'break',
  'vase',
  'list',
  'goe',
  'complain',
  'parent',
  'true',
  'sinc',
  'provid',
  'incom',
  'yet',
  'decid',
  'want',
  'go',
  'back',
  'work',
  'start',
  'look',
  'found',
  'potenti',
  'job',
  'interview',
  'yesterday',
  'call',
  'remind',
  'pick',
  'kid',
  'school',
  'sinc',
  'respons',
  'said',
  'start',
  'interview',
  'told',
  'go',
  'get',
  'stun',
  'told',
  'work',
  'said',
  'could',
  'take',
  'break',
  'refus',
  'wouldv',
  'affect',
  'job',
  'ask',
  'shed',
  'take',
  'minut',
  'quickli',
  'go',
  'pick',
  'refus',
  'end',
  'get',
  'argument',
  'tell',
  'figur',
  'someth',
  'beforehand',
  'blew',
  'say',
  'im',
  'parent',
  'tire',
  'beck',
  'call',
  'time',
  'kid',
  'end',
  'pick',
  'friend',
  'minut',
  'later',
  'made',
  'upset',
  'home',
  'got',
  'huge',
  'argument',
  'girlfriend',
  'call',
  'selfish',
  'kid',
  'ditch',
  'like',
  'said',
  'import',
  'interview',
  'parent',
  'couldv',
  'figur',
  'someth',
  'instead',
  'expect',
  'drop',
  'pick',
  'kid',
  'call',
  'asshol',
  'went',
  'stay',
  'mom'],
 ['cousin',
  'get',
  'marri',
  'novemb',
  'daughter',
  'dad',
  'brother',
  'context',
  'get',
  'along',
  'bulli',
  'grow',
  'uncl',
  'pass',
  'away',
  'tri',
  'steal',
  'dad',
  'never',
  'allow',
  'made',
  'time',
  'us',
  'day',
  'cousin',
  'still',
  'say',
  'bitch',
  'let',
  'patern',
  'figur',
  'true',
  'neither',
  'mom',
  'dad',
  'allow',
  'mistreat',
  'abus',
  'much',
  'parent',
  'use',
  'watch',
  'afraid',
  'tell',
  'could',
  'see',
  'import',
  'dad',
  'relationship',
  'kept',
  'quiet',
  'bulli',
  'decreas',
  'never',
  'went',
  'away',
  'still',
  'make',
  'fun',
  'im',
  'singl',
  'im',
  'dumb',
  'etc',
  'etc',
  'got',
  'engag',
  'exclud',
  'bridal',
  'parti',
  'matter',
  'fact',
  'includ',
  'rest',
  'famili',
  'mom',
  'side',
  'brother',
  'dad',
  'found',
  'suspici',
  'thing',
  'got',
  'lot',
  'wors',
  'funni',
  'comment',
  'ill',
  'probabl',
  'attend',
  'alon',
  'think',
  'bridesmaid',
  'dress',
  'would',
  'flatter',
  'size',
  'etc',
  'took',
  'parent',
  'dinner',
  'last',
  'week',
  'ask',
  'dad',
  'walk',
  'aisl',
  'know',
  'excus',
  'gave',
  'came',
  'room',
  'ask',
  'would',
  'okay',
  'honest',
  'said',
  'told',
  'made',
  'life',
  'hell',
  'even',
  'uncl',
  'pass',
  'away',
  'sinc',
  'daughter',
  'thought',
  'would',
  'experi',
  'us',
  'knew',
  'would',
  'ask',
  'want',
  'make',
  'feel',
  'clear',
  'end',
  'day',
  'decis',
  'ill',
  'accept',
  'whatev',
  'decid',
  'know',
  'import',
  'told',
  'love',
  'daughter',
  'well',
  'dad',
  'told',
  'cousin',
  'blame',
  'tell',
  'everyon',
  'forc',
  'jealou',
  'littl',
  'fix',
  'welcom',
  'wed',
  'mom',
  'aunt',
  'side',
  'low',
  'blow',
  'part',
  'famili',
  'say',
  'fair',
  'mom',
  'call',
  'yesterday',
  'told',
  'lie',
  'import',
  'moment',
  'brother',
  'told',
  'stop',
  'harass',
  'theyll',
  'drop',
  'parti',
  'help',
  'think',
  'caus',
  'big',
  'mess'],
 ['tri',
  'type',
  'without',
  'use',
  'name',
  'comprehens',
  'anyon',
  'know',
  'see',
  'happen',
  'son',
  'name',
  'robin',
  'five',
  'letter',
  'nicknam',
  'mom',
  'one',
  'kid',
  'class',
  'convinc',
  'name',
  'robert',
  'volunt',
  'pickup',
  'ill',
  'drive',
  'shell',
  'go',
  'get',
  'son',
  'yell',
  'robert',
  'robert',
  'first',
  'week',
  'brush',
  'learn',
  'name',
  'bunch',
  'differ',
  'kid',
  'hard',
  'would',
  'tell',
  'came',
  'back',
  'son',
  'actual',
  'name',
  'robin',
  'ive',
  'said',
  'almost',
  'everi',
  'singl',
  'day',
  'month',
  'last',
  'week',
  'saw',
  'school',
  'function',
  'went',
  'introduc',
  'basic',
  'said',
  'im',
  'robin',
  'father',
  'might',
  'recogn',
  'pickup',
  'way',
  'name',
  'robert',
  'respons',
  'confound',
  'said',
  'robin',
  'girl',
  'name',
  'unisex',
  'way',
  'common',
  'boy',
  'good',
  'nicknam',
  'robert',
  'shell',
  'call',
  'real',
  'name',
  'instead',
  'tri',
  'correct',
  'sinc',
  'robin',
  'nicknam',
  'wander',
  'away',
  'next',
  'time',
  'walk',
  'car',
  'got',
  'annoy',
  'said',
  'im',
  'robin',
  'friday',
  'call',
  'son',
  'robert',
  'ask',
  'problem',
  'loud',
  'voic',
  'shout',
  'loud',
  'enough',
  'teacher',
  'ran',
  'volunt',
  'mom',
  'ran',
  'away',
  'tri',
  'explain',
  'teacher',
  'look',
  'like',
  'three',
  'head',
  'said',
  'would',
  'go',
  'get',
  'son',
  'got',
  'email',
  'later',
  'ask',
  'come',
  'monday',
  'meet',
  'know',
  'approach',
  'apolog',
  'yell',
  'demand',
  'apolog',
  'constant',
  'disrespect',
  'ask',
  'mom',
  'allow',
  'volunt',
  'anymor',
  'least',
  'get',
  'son',
  'feel',
  'like',
  'tri',
  'reason',
  'mayb',
  'sensit',
  'small',
  'updat',
  'wife',
  'reach',
  'charli',
  'mom',
  'facebook',
  'ask',
  'weird',
  'pickup',
  'mom',
  'call',
  'charli',
  'differ',
  'name',
  'well',
  'accord',
  'charli',
  'mom',
  'weird',
  'pickup',
  'mom',
  'call',
  'charli',
  'charlott',
  'charli',
  'legal',
  'name',
  'matter',
  'charli',
  'mom',
  'fan',
  'assum',
  'mistak',
  'want',
  'say',
  'anyth',
  'know',
  'pickup',
  'hectic',
  'confus',
  'lot',
  'kid',
  'similar',
  'name',
  'wife',
  'share',
  'stori',
  'charli',
  'mom',
  'agre',
  'email',
  'inform',
  'could',
  'bring',
  'meet',
  'need',
  'charli',
  'mom',
  'also',
  'said',
  'would',
  'reach',
  'parent',
  'question',
  'weird',
  'pickup',
  'mom',
  'lot',
  'kid',
  'went',
  'kindergarten',
  'togeth',
  'son',
  'know',
  'mani',
  'parent',
  'well',
  'yet',
  'charli',
  'mom',
  'realli',
  'nice',
  'help',
  'wife',
  'even',
  'set',
  'playdat',
  'kid',
  'regardless',
  'meet',
  'turn',
  'one',
  'nice',
  'thing',
  'came',
  'meet',
  '&',
  'pickup',
  'first',
  'wife',
  'came',
  'meet',
  'huge',
  'inconveni',
  'im',
  'glad',
  'realli',
  'toler',
  'bs',
  'got',
  'teacher',
  'princip',
  'wife',
  'realli',
  'let',
  'say',
  'anyth',
  'shed',
  'gone',
  'everyth',
  'weird',
  'pickup',
  'mom',
  'relat',
  'son',
  'also',
  'charli',
  'potenci',
  'kid',
  'princip',
  'realli',
  'surpris',
  'princip',
  'said',
  'teacher',
  'would',
  'talk',
  'mom',
  'apolog',
  'yell',
  'shook',
  'hand',
  'pickup',
  'day',
  'weird',
  'pickup',
  'mom',
  'look',
  'eye',
  'call',
  'robin',
  'robert',
  'actual',
  'name',
  'quiet',
  'whole',
  'time',
  'sorri',
  'anticlimact'],
 ['becom',
  'common',
  'surround',
  'gym',
  'realli',
  'annoy',
  'reason',
  'ive',
  'chang',
  'gym',
  'year',
  'alon',
  'work',
  'pillar',
  'everyday',
  'life',
  'past',
  'ten',
  'year',
  'im',
  'gym',
  'everi',
  'day',
  'week',
  'go',
  'gym',
  'talk',
  'peopl',
  'make',
  'friend',
  'make',
  'funni',
  'video',
  'go',
  'train',
  'go',
  'home',
  'howev',
  'new',
  'video',
  'trend',
  'mani',
  'folk',
  'want',
  'record',
  'exercis',
  'post',
  'social',
  'media',
  'busi',
  'mine',
  'whatev',
  'want',
  'also',
  'think',
  'need',
  'stop',
  'work-out',
  'accommod',
  'last',
  'night',
  'squat',
  'smith',
  'machin',
  'work',
  'head-phon',
  'notic',
  'someon',
  'tri',
  'get',
  'attent',
  'suddenli',
  'felt',
  'tap',
  'shoulder',
  'mid-squat',
  'notic',
  'woman',
  'annoy',
  'express',
  'bare',
  'allow',
  'finish',
  'movement',
  'start',
  'talk',
  'muffl',
  'due',
  'headphon',
  'long',
  'stori',
  'short',
  'annoy',
  'train',
  'smith',
  'machin',
  'want',
  'record',
  'regular',
  'squat',
  'howev',
  'said',
  'best',
  'spot',
  'front',
  'smith',
  'machin',
  'one',
  'want',
  'frame',
  'want',
  'stop',
  'seri',
  'record',
  'usual',
  'someon',
  'come',
  'good',
  'attitud',
  'ask',
  'ok',
  'stop',
  'seri',
  'two',
  'record',
  'even',
  'move',
  'machin',
  'would',
  'absolut',
  'mind',
  'compli',
  'woman',
  'noth',
  'sort',
  'extrem',
  'arrog',
  'honestli',
  'extrem',
  'annoy',
  'petti',
  'told',
  'record',
  'done',
  'proceed',
  'everi',
  'singl',
  'exercis',
  'could',
  'smith',
  'machin',
  'squat',
  'smith',
  'hip',
  'thrust',
  'smith',
  'petti',
  'know',
  'done',
  'felt',
  'vindic',
  'see',
  'annoy',
  'express',
  'said',
  'peopl',
  'said',
  'asshol',
  'machin',
  'could',
  'use',
  'honestli',
  'might',
  'right',
  'hey',
  'thought',
  'id',
  'ask',
  'internet',
  'much',
  'asshol'],
 ['mom',
  'pass',
  'away',
  'childbirth',
  'pretti',
  'much',
  'father',
  'occasion',
  'visit',
  'grandpar',
  'side',
  'sinc',
  'live',
  'took',
  'masculin',
  'style',
  'like',
  'like',
  'one',
  'boy',
  'boy',
  'father',
  'rexi',
  '-rex',
  'obsess',
  'year',
  'barbi',
  'bought',
  'like',
  'ew',
  'almost',
  'dress',
  'skirt',
  'also',
  'hair',
  'realli',
  'aw',
  'everi',
  'time',
  'around',
  'began',
  'date',
  'woman',
  'call',
  'maria',
  'daughter',
  'time',
  'name',
  'staci',
  'maria',
  'total',
  'sweetheart',
  'staci',
  'horribl',
  'bulli',
  'look',
  'like',
  'girl',
  'like',
  'man',
  'stuff',
  'like',
  'car',
  'bike',
  'stuff',
  'like',
  'admit',
  'also',
  'mani',
  'friend',
  'grow',
  'neither',
  'femal',
  'male',
  'person',
  'dad',
  'grew',
  'got',
  'involv',
  'like',
  'make',
  'thing',
  'short',
  'staci',
  'would',
  'often',
  'throw',
  'aw',
  'comment',
  'boy',
  'weirdo',
  'etc',
  'dad',
  'would',
  'comment',
  'less-bulli',
  'way',
  'hurt',
  'confirm',
  'staci',
  'daughter',
  'son',
  'broke',
  'heart',
  'call',
  'staci',
  'peach',
  'like',
  'mario',
  'princess',
  '-rex',
  '°',
  'look',
  'brought',
  'dress',
  'skirt',
  'dy',
  'part',
  'hair',
  'sweet',
  'pink',
  'made',
  'staci',
  'laugh',
  'even',
  'dad',
  'like',
  'woa',
  'pink',
  'girl',
  'th',
  'birthday',
  'staci',
  'put',
  'black',
  'dye',
  'shampoo',
  'ruin',
  'whole',
  'look',
  'guess',
  'stick',
  'broke',
  'camel',
  'back',
  'cri',
  'horribl',
  'point',
  'breath',
  'told',
  'dad',
  'front',
  'maria',
  'staci',
  'done',
  'year',
  'along',
  'dad',
  'aw',
  'remark',
  'subtli',
  'enabl',
  'staci',
  'aw',
  'comment',
  'end',
  'left',
  'maria',
  'staci',
  'obviou',
  'go',
  'back',
  'eventu',
  'marri',
  'step-mom',
  'turn',
  'dad',
  'apolog',
  'talk',
  'year',
  'attend',
  'therapi',
  'like',
  'talk',
  'think',
  'broke',
  'relationship',
  'dad',
  'away',
  'never',
  'abl',
  'fix',
  'know',
  'back',
  'yesterday',
  'talk',
  'tri',
  'joke',
  'said',
  'want',
  'rememb',
  'ill',
  'never',
  'forgiv',
  'join',
  'staci',
  'bulli',
  'said',
  'possibl',
  'im',
  'still',
  'hold',
  'grudg',
  'say',
  'alway',
  'absolut',
  'broke',
  'heart',
  'confid',
  'tri',
  'argu',
  'step-mom',
  'said',
  'need',
  'let',
  'go',
  'feel',
  'feel',
  'still',
  'cri',
  'rememb',
  'say',
  'im',
  'ah',
  'left',
  'made',
  'amend'],
 ['husband',
  'disagr',
  'time',
  'time',
  'noth',
  'major',
  'normal',
  'stuff',
  'habit',
  'throw',
  'someth',
  'mine',
  'way',
  'teach',
  'lesson',
  'whenev',
  'upset',
  'argument',
  'time',
  'threw',
  'handmad',
  'necklac',
  'daughter',
  'made',
  'mother',
  'day',
  'argument',
  'want',
  'hang',
  'buddi',
  'day',
  'mom',
  'surgeri',
  'want',
  'stay',
  'home',
  'daughter',
  'refus',
  'yesterday',
  'found',
  'threw',
  'necklac',
  'admit',
  'went',
  'also',
  'told',
  'necklac',
  'special',
  'daughter',
  'spent',
  'much',
  'time',
  'effort',
  'make',
  'comfort',
  'told',
  'shed',
  'make',
  'ident',
  'one',
  'buy',
  'tool',
  'went',
  'husband',
  'told',
  'expect',
  'cough',
  'money',
  'pay',
  'thr',
  'tool',
  'daughter',
  'could',
  'make',
  'similar',
  'necklac',
  'laugh',
  'said',
  'delusion',
  'expect',
  'pay',
  'even',
  'apolog',
  'part',
  'argument',
  'felt',
  'like',
  'noth',
  'apolog',
  'ye',
  'stay',
  'home',
  'famili',
  'emerg',
  'said',
  'one',
  'friend',
  'come',
  'stay',
  'chloe',
  'oh',
  'ye',
  'piss',
  'said',
  'pay',
  'told',
  'daughter',
  'knew',
  'set',
  'say',
  'tri',
  'turn',
  'daughter',
  'brainwash',
  'think',
  'bad',
  'guy',
  'scenario',
  'told',
  'im',
  'still',
  'expect',
  'pay',
  'say',
  'im',
  'gang',
  'daughter'],
 ['husband',
  'bought',
  'first',
  'singl',
  'stori',
  'hous',
  'week',
  'ago',
  'put',
  'money',
  'toward',
  'name',
  'titl',
  'day',
  'ago',
  'host',
  'dinner',
  'famili',
  'famili',
  'live',
  'anoth',
  'state',
  'friend',
  'celebr',
  'occas',
  'brought',
  'gift',
  'took',
  'tour',
  'around',
  'hous',
  'overal',
  'good',
  'time',
  'til',
  'dinner',
  'husband',
  'suddenli',
  'start',
  'tell',
  'stori',
  'much',
  'sacrific',
  'mani',
  'extra',
  'job',
  'took',
  'mani',
  'year',
  'spent',
  'save',
  'buy',
  'hous',
  'complet',
  'ignor',
  'part',
  'role',
  'confus',
  'kept',
  'stare',
  'went',
  'found',
  'hous',
  'much',
  'troubl',
  'got',
  'get',
  'famili',
  'friend',
  'look',
  'impress',
  'kept',
  'say',
  'hous',
  'hous',
  'said',
  'hold',
  'told',
  'hous',
  'hous',
  'equal',
  'save',
  'conribut',
  'equal',
  'abl',
  'purchas',
  'mom',
  'ask',
  'seriou',
  'offer',
  'show',
  'legal',
  'document',
  'husband',
  'look',
  'shock',
  'got',
  'quiet',
  'friend',
  'famili',
  'kept',
  'look',
  'excus',
  'bathroom',
  'minut',
  'say',
  'goodby',
  'guest',
  'later',
  'blew',
  'ask',
  'wth',
  'said',
  'lie',
  'first',
  'place',
  'ask',
  'could',
  'possibl',
  'gain',
  'say',
  'said',
  'could',
  'possibl',
  'lost',
  'ever',
  'think',
  'speak',
  'got',
  'mad',
  'repli',
  'dismiss',
  'role',
  'buy',
  'hous',
  'like',
  'like',
  'oh',
  'decid',
  'humili',
  'infront',
  'famili',
  'friend',
  'appear',
  'import',
  'preteni',
  'much',
  'found',
  'insult',
  'argu',
  'mess',
  'ruin',
  'joy',
  'new',
  'home',
  'couldv',
  'avoid',
  'got',
  'tire',
  'argu',
  'went',
  'sleep',
  'gone',
  'radio',
  'silenc',
  'next',
  'day',
  'act',
  'upset',
  'day'],
 ['gf',
  'date',
  'year',
  'want',
  'move',
  'togeth',
  'want',
  'bedroom',
  'bath',
  'apart',
  'townhous',
  'near',
  'work',
  'im',
  'nd',
  'year',
  'patholog',
  'resid',
  'resid',
  'year',
  'long',
  'work',
  'home',
  'want',
  'offic',
  'also',
  'make',
  'make',
  'rent',
  '$',
  'month',
  '+',
  'util',
  'want',
  'go',
  'half',
  'rent',
  'util',
  'would',
  'pay',
  'roughli',
  'month',
  'use',
  'one',
  'room',
  'offic',
  'feel',
  'like',
  'pay',
  'pay',
  '$',
  'pay',
  '$',
  'think',
  'even',
  'use',
  'extra',
  'room',
  'live',
  'near',
  'hospit',
  'expens',
  'pay',
  'half',
  'could',
  'get',
  'cheaper',
  'place',
  'live',
  'near',
  'work',
  'think',
  'pay',
  'live',
  'near',
  'work',
  'pay',
  'ga',
  'pay',
  'half',
  'rent',
  'find',
  'selfish',
  'make',
  'much',
  'mean',
  'complet',
  'resid',
  'easili',
  'make',
  '$',
  'year',
  'accord',
  'fair',
  'wait',
  'year',
  'potenti',
  'get',
  'paid',
  'back',
  'could',
  'breakup',
  'would',
  'subsid',
  'pay',
  'bit',
  'put',
  'skin',
  'game',
  'gold',
  'digger',
  'wait',
  'make',
  'bank',
  'without',
  'give',
  'anyth',
  'first',
  'place',
  'argu',
  'time',
  'want',
  'know',
  'im',
  'crazi',
  'think',
  'selfish'],
 ['son',
  'go',
  'attend',
  'commun',
  'colleg',
  'live',
  'husband',
  'younger',
  'half',
  'sister',
  'day',
  'found',
  'found',
  'accept',
  'job',
  'without',
  'tell',
  'upset',
  'reason',
  'first',
  'told',
  'sinc',
  'live',
  'hous',
  'also',
  'importantli',
  'im',
  'left',
  'without',
  'someon',
  'stay',
  'girl',
  'shift',
  'start-end',
  'son',
  'usual',
  'one',
  'stay',
  'home',
  'girl',
  'new',
  'job',
  'hour',
  'one',
  'way',
  'anoth',
  'impact',
  'told',
  'friend',
  'found',
  'job',
  'happen',
  '-',
  'think',
  'knew',
  'give',
  'stay',
  'sister',
  'work',
  'husband',
  'travel',
  'time',
  'pilot',
  'paid',
  'child',
  'care',
  'son',
  'said',
  'surpris',
  'tri',
  'work',
  'save',
  'money',
  'abl',
  'pay',
  'absurd',
  'sinc',
  'liter',
  'live',
  'us',
  'without',
  'pay',
  'anyth',
  'except',
  'entertain',
  'said',
  'need',
  'job',
  'reallist',
  'go',
  'stay',
  'watch',
  'sister',
  'day',
  'end',
  'especi',
  'get',
  'paid',
  'kept',
  'argu',
  'husband',
  'got',
  'involv',
  'upset',
  'say',
  'son',
  'respect',
  'us',
  'son',
  'basic',
  'like',
  'attitud',
  'us',
  'kept',
  'refus',
  'discuss',
  'wirh',
  'us',
  'say',
  'right',
  'upset',
  'accept',
  'im',
  'justi',
  'think',
  'inconsider',
  'husband',
  'struggl',
  'provid',
  'famili',
  'whole',
  'mean',
  'someth',
  'act',
  'selfishli',
  'eta',
  'okay',
  'seem',
  'mention',
  'reason',
  'babysitt',
  'option',
  'ideal',
  'daughter',
  'want',
  'babysitt',
  'theyr',
  'deal',
  'issu',
  'unconfort',
  'stranger',
  'home',
  'besid',
  'son',
  'decid',
  'stay',
  'ask',
  'anyth',
  'eta',
  'okay',
  'impli',
  'suggest',
  'im',
  'make',
  'son',
  'girl',
  'babysitt',
  'fact',
  'true',
  'much',
  'stay',
  'home',
  'studi',
  'play',
  'video',
  'game',
  'ador',
  'sister',
  'stay',
  'want',
  'otherwis',
  'forc',
  'also',
  'husband',
  'said',
  'girl',
  'young',
  'therapi',
  'agre'],
 ['miscarriag',
  'last',
  'year',
  'worst',
  'moment',
  'life',
  'took',
  'big',
  'hit',
  'relationship',
  'husband',
  'divorc',
  'got',
  'final',
  'last',
  'month',
  'honestli',
  'differ',
  'type',
  'pain',
  'thank',
  'wonder',
  'friend',
  'famili',
  'whove',
  'support',
  'way',
  'christma',
  'dinner',
  'famili',
  'lot',
  'rel',
  'kept',
  'check',
  'ask',
  'okay',
  'bring',
  'food',
  'felt',
  'realli',
  'love',
  'pretti',
  'fun',
  'overal',
  'took',
  'mind',
  'everyth',
  'bit',
  'cousin',
  'fianc',
  'recent',
  'pass',
  'dinner',
  'talk',
  'much',
  'mostli',
  'kept',
  'saw',
  'get',
  'soda',
  'ask',
  'could',
  'bring',
  'one',
  'well',
  'go',
  'well',
  'got',
  'upset',
  'start',
  'go',
  'bring',
  'thing',
  'get',
  'told',
  'complet',
  'fine',
  'ask',
  'sinc',
  'alreadi',
  'make',
  'big',
  'deal',
  'look',
  'like',
  'cri',
  'kept',
  'go',
  'expect',
  'everyon',
  'fawn',
  'one',
  'care',
  'fianc',
  'told',
  'best',
  'im',
  'sorri',
  'feel',
  'way',
  'grief',
  'competit',
  'understand',
  'peopl',
  'overheard',
  'us',
  'convers',
  'chang',
  'huge',
  'issu',
  'sister',
  'messag',
  'later',
  'said',
  'aw',
  'aw',
  'told',
  'best',
  'friend',
  'happen',
  'suggest',
  'post',
  'opinion',
  'think',
  'big',
  'deal',
  'thought',
  'otherwis',
  'asshol'],
 ['daughter',
  'th',
  'grade',
  'thursday',
  'night',
  'got',
  'first',
  'period',
  'freak',
  'sad',
  'get',
  'older',
  'night',
  'like',
  'deal',
  'lot',
  'unfamiliar',
  'hormon',
  'end',
  'take',
  'next',
  'day',
  'mental',
  'health',
  'day',
  'call',
  'school',
  'said',
  'wed',
  'person',
  'matter',
  'male',
  'teacher',
  'realli',
  'get',
  'suffic',
  'say',
  'want',
  'keep',
  'privat',
  'next',
  'day',
  'teacher',
  'stop',
  'drop',
  'kind',
  'corner',
  'outsid',
  'build',
  'block',
  'path',
  'leav',
  'alreadi',
  'grate',
  'nerv',
  'ask',
  'daughter',
  'day',
  'prior',
  'said',
  'wed',
  'person',
  'matter',
  'home',
  'resolv',
  'thank',
  'concern',
  'said',
  'realli',
  'must',
  'work',
  'said',
  '*',
  '*',
  'tell',
  'kind',
  'lean',
  'drop',
  'voic',
  'octav',
  'though',
  'tri',
  'lord',
  'one',
  'kid',
  'fan',
  'either',
  'told',
  '*',
  '*',
  'anyth',
  'continu',
  'speak',
  'way',
  'might',
  'chat',
  'administr',
  'said',
  'tell',
  'would',
  'unexcus',
  'absenc',
  'need',
  'someth',
  'like',
  'five',
  'matter',
  'would',
  'daughter',
  'first',
  'shrug',
  'shoulder',
  'mention',
  'could',
  'get',
  'expung',
  'higher',
  'level',
  'final',
  'said',
  'realli',
  'late',
  'work',
  'push',
  'past',
  'left',
  'call',
  'expect',
  'job',
  'left',
  'loop',
  'thing',
  'like',
  'keep',
  'child',
  'school',
  'told',
  'hed',
  'manag',
  'got',
  'car',
  'vent',
  'husband',
  'felt',
  'mayb',
  'id',
  'bit',
  'brash',
  'teacher',
  'come',
  'place',
  'genuin',
  'concern',
  'daughter',
  'feel',
  'bit',
  'badli',
  'though',
  'mayb',
  'jump',
  'conclus',
  'stonewal',
  'way',
  'asshol'],
 ['buddi',
  'kalen',
  'suppos',
  'get',
  'marri',
  'ex',
  'fiance',
  'kayley',
  'next',
  'weekend',
  'togeth',
  'like',
  '-',
  'year',
  'seem',
  'like',
  'perfect',
  'coupl',
  'love',
  'happi',
  'alway',
  'sweet',
  'thing',
  'etc',
  'alway',
  'joke',
  'relationship',
  'goal',
  'everyon',
  'shock',
  'kayley',
  'call',
  'us',
  'last',
  'week',
  'frantic',
  'ask',
  'knew',
  'kalen',
  'come',
  'home',
  'work',
  'day',
  'warn',
  'noth',
  'know',
  'went',
  'coupl',
  'day',
  'ago',
  'kayley',
  'make',
  'post',
  'wed',
  'still',
  'go',
  'un-wed',
  'partyrecept',
  'late',
  'get',
  'refund',
  'immedi',
  'kalen',
  'start',
  'messag',
  'us',
  'upset',
  'ask',
  'go',
  'appar',
  'go',
  'someth',
  'want',
  'stay',
  'togeth',
  'kayley',
  'broke',
  'instead',
  'devast',
  'furiou',
  'think',
  'parti',
  'hard',
  'day',
  'need',
  'support',
  'friend',
  'split',
  'way',
  'see',
  'alreadi',
  'took',
  'time',
  'wed',
  'cabin',
  'alreadi',
  'book',
  'know',
  'get',
  'refund',
  'alreadi',
  'bought',
  'new',
  'cloth',
  'wed',
  'look',
  'forward',
  'romant',
  'weekend',
  'away',
  'mountain',
  'suck',
  'kalen',
  'heartbroken',
  'kind',
  'brought',
  'plu',
  'kayley',
  'upgrad',
  'cash',
  'bar',
  'open',
  'bar',
  'friend',
  'think',
  'sinc',
  'friend',
  'first',
  'go',
  'hard',
  'time',
  'even',
  'dumbass',
  'fault',
  'well',
  'respons',
  'harm',
  'parti',
  'drink',
  'say',
  'use',
  'time',
  'someth',
  'nice',
  'instead'],
 ['brother',
  'wife',
  'live',
  'mom',
  'hous',
  'mom',
  'tend',
  'get',
  'involv',
  'marriag',
  'constantli',
  'brother',
  'let',
  'sil',
  'alway',
  'complain',
  'mom',
  'steamrol',
  'decis',
  'violat',
  'privaci',
  'sil',
  'got',
  'pregnant',
  'mom',
  'got',
  'wors',
  'went',
  'brought',
  'whole',
  'nurseri',
  'put',
  'room',
  'despit',
  'sil',
  'one',
  'room',
  'recent',
  'conflict',
  'mom',
  'push',
  'deliveri',
  'room',
  'sil',
  'say',
  'brother',
  'side',
  'mom',
  'make',
  'promis',
  'keep',
  'happi',
  'last',
  'week',
  'gather',
  'mom',
  'hous',
  'brother',
  'birthday',
  'friend',
  'came',
  'ask',
  'sil',
  'dinner',
  'tabl',
  'brother',
  'nonchantli',
  'said',
  'princess',
  'act',
  'spoil',
  'immatur',
  'everyth',
  'shock',
  'hurt',
  'behalf',
  'respond',
  'actuallysh',
  'probabl',
  'upset',
  'realiz',
  'grade',
  'mama',
  'boy',
  'readi',
  'whatev',
  'mom',
  'say',
  'ignor',
  'wife',
  'wish',
  'brief',
  'silenc',
  'friend',
  'stare',
  'start',
  'argu',
  'disrespect',
  'told',
  'husband',
  'say',
  'someth',
  'husband',
  'said',
  'mind',
  'meim',
  'bystand',
  '--',
  'sitter',
  'dinner',
  'got',
  'awkward',
  'brother',
  'friend',
  'left',
  'earli',
  'went',
  'say',
  'embarrasse',
  'friend',
  'ruin',
  'birthday',
  'dinner',
  'decid',
  'go',
  'home',
  'caus',
  'kept',
  'yell',
  'mom',
  'call',
  'demand',
  'apolog',
  'rude',
  'thing',
  'said',
  'dinner',
  'refus',
  'aita'],
 ['hey',
  'yall',
  'husband',
  'wan',
  'na',
  'thank',
  'everyon',
  'overwhelm',
  'amount',
  'support',
  'love',
  'updat',
  'peopl',
  'ask',
  'mom',
  'support',
  'husband',
  '&',
  'relationship',
  'agre',
  'gave',
  'aunt',
  '&',
  'uncl',
  'chanc',
  'apolog',
  'could',
  'tell',
  'dad',
  'tell',
  'whole',
  'stori',
  'evict',
  'press',
  'mom',
  'found',
  'truth',
  'day',
  'ago',
  'ive',
  'hard',
  'time',
  'day',
  'told',
  'dad',
  'reach',
  'aunt',
  '&',
  'uncl',
  'show',
  'remors',
  'said',
  'want',
  'kid',
  '*',
  'ggot',
  'us',
  'yeah',
  'realli',
  'said',
  'ask',
  'would',
  'invit',
  'us',
  'stay',
  'truli',
  'felt',
  'get',
  'bad',
  'one',
  'thing',
  'live',
  'vermont',
  'gay',
  'anoth',
  'thing',
  'visit',
  'hometown',
  'throw',
  'lifestyl',
  'everyon',
  'face',
  'shack',
  'motel',
  'local',
  'motel',
  'owner',
  'whose',
  'famili',
  'childhood',
  'friend',
  'mom',
  'gossip',
  'us',
  'everi',
  'time',
  'nice',
  'face',
  'behind',
  'back',
  'differ',
  'stori',
  'everyon',
  'know',
  'would',
  'becom',
  'talk',
  'town',
  'stay',
  'idea',
  'toler',
  'never',
  'stay',
  'long',
  'visit',
  'could',
  'sens',
  'someth',
  'push',
  'feel',
  'asid',
  'face',
  'nice',
  'peopl',
  'know',
  'claim',
  'love',
  'mom',
  'said',
  'aunt',
  '&',
  'uncl',
  'tri',
  'save',
  'face',
  'rest',
  'town',
  '&',
  'tri',
  'control',
  'behavior',
  'time',
  'evict',
  'dad',
  'ask',
  'mom',
  'reach',
  'gossip',
  'friend',
  'accord',
  'friend',
  '&',
  'major',
  'part',
  'shit',
  'talk',
  'one',
  'ever',
  'said',
  'anyth',
  'face',
  'feel',
  'disgust',
  'betray',
  'naiv',
  'enrag',
  'dad',
  'decid',
  'evict',
  'told',
  'freeload',
  'somewher',
  'els',
  '&',
  'never',
  'accept',
  'anyon',
  'famili',
  'would',
  'treat',
  'son',
  'way',
  'mom',
  'say',
  'gone',
  'nc',
  'mom',
  'told',
  'think',
  'brother',
  'husband',
  '&',
  'pride',
  'joy',
  'feel',
  'proud',
  'dad',
  'like',
  'mention',
  'hero',
  'ice',
  'cake',
  'alway',
  'support',
  'told',
  'came',
  'bi',
  'would',
  'alway',
  'back',
  'kept',
  'promis',
  'dad',
  'know',
  'internet',
  'famou',
  'still',
  'know',
  'break',
  'lol',
  'humbl',
  'guy',
  'dad',
  'use',
  'social',
  'media',
  'safe',
  'bro',
  'know',
  'post',
  'weve',
  'tri',
  'figur',
  'plan',
  'action',
  'weve',
  'contact',
  'journalist',
  'weve',
  'gotten',
  'mani',
  'love',
  'messag',
  'end',
  'day',
  'im',
  'averag',
  'guy',
  'still',
  'tri',
  'process',
  'fact',
  'got',
  'betray',
  'scale',
  'cant',
  'even',
  'comprehend',
  'say',
  'ah',
  'let',
  'cousin',
  'go',
  'homeless',
  'confid',
  'say',
  'parent',
  'thank'],
 ['updat',
  'thank',
  'everyon',
  'im',
  'sorri',
  'cant',
  'repli',
  'mani',
  'first',
  'point',
  'hate',
  'kid',
  'would',
  'want',
  'hurt',
  'wish',
  'exact',
  'opposit',
  'two',
  'unblock',
  'famili',
  'sent',
  'pretti',
  'long',
  'msg',
  'calmli',
  'explain',
  'happen',
  'concern',
  'also',
  'includ',
  'link',
  'child',
  'fall',
  'hors',
  'size',
  'mine',
  'explain',
  'want',
  'kid',
  'face',
  'injuri',
  'disabilityor',
  'death',
  'respons',
  'posit',
  'third',
  'reach',
  'famili',
  'birthday',
  'girl',
  'explain',
  'happen',
  'mortifi',
  'idea',
  'given',
  'permiss',
  'set',
  'meet-the-horsey',
  'weekend',
  'landown',
  'permiss',
  'set',
  'arena',
  'temp',
  'fenc',
  'etc',
  'know',
  'also',
  'two',
  'poni',
  'hire',
  'place',
  'poni',
  'ride',
  'friend',
  'long',
  'stori',
  'short',
  'hors',
  'year',
  'rescu',
  'knackeri',
  'month',
  'old',
  'foal',
  'stori',
  'keep',
  'huge',
  'field',
  'hors',
  'absolut',
  'appl',
  'eye',
  'mind',
  'peopl',
  'say',
  'fenc',
  'live',
  'suburb',
  'obvious',
  'go',
  'happen',
  'hate',
  'mother',
  'keep',
  'offer',
  'friend',
  'grandkid',
  'poni',
  'ride',
  'neither',
  'hors',
  'kid',
  'uhpeopl',
  'im',
  'sick',
  'show',
  'properti',
  'met',
  'gaggl',
  'kid',
  'expect',
  'poni',
  'ride',
  'ive',
  'laid',
  'law',
  'told',
  'mum',
  'explod',
  'ive',
  'stay',
  'firm',
  'spoke',
  'properti',
  'owner',
  'worri',
  'mum',
  'show',
  'tri',
  'give',
  'kid',
  'poni',
  'ride',
  'without',
  'supervis',
  'agre',
  'liabil',
  'mark',
  'allow',
  'properti',
  'without',
  'yesterday',
  'call',
  'say',
  'kid',
  'go',
  'rocker',
  'allow',
  'properti',
  'spoke',
  'phone',
  'told',
  'bugger',
  'never',
  'tri',
  'rubbish',
  'sinc',
  'ive',
  'block',
  'famili',
  'omg',
  'fli',
  'monkey',
  'scream',
  'im',
  'privledg',
  'selfish',
  'child',
  'hate',
  'monster',
  'think',
  'wrong',
  'start',
  'realli',
  'get',
  'ah'],
 ['feel',
  'like',
  'insan',
  'person',
  'make',
  'new',
  'reddit',
  'know',
  'sil',
  'follow',
  'reddit',
  'sil',
  'obsses',
  'swear',
  'god',
  'weve',
  'known',
  'year',
  'start',
  'date',
  'brother',
  'start',
  'got',
  'weird',
  'vibe',
  'ask',
  'got',
  'certain',
  'piec',
  'cloth',
  'jewelri',
  'buy',
  'exact',
  'one',
  'dye',
  'hair',
  'dye',
  'hair',
  'colour',
  'post',
  'instagram',
  'certain',
  'restaur',
  'go',
  'next',
  'day',
  'week',
  'got',
  'new',
  'hair',
  'stylist',
  'tag',
  'quick',
  'edit',
  'meant',
  'tag',
  'stylist',
  'sil',
  'instagram',
  'month',
  'later',
  'visit',
  'thank',
  'send',
  'new',
  'client',
  'guess',
  'post',
  'photo',
  'room',
  'month',
  'ago',
  'next',
  'time',
  'visit',
  'place',
  'sheet',
  'say',
  'age',
  'coincid',
  'kind',
  'thing',
  'happen',
  'time',
  'sometim',
  'ill',
  'run',
  'groceri',
  'store',
  'shell',
  'ask',
  'im',
  'pick',
  'tell',
  'say',
  'oh',
  'funni',
  'buy',
  'exact',
  'thing',
  'ive',
  'peopl',
  'tell',
  'say',
  'thought',
  'stress',
  'similar',
  'hair',
  'wish',
  'see',
  'kicker',
  'husband',
  'best',
  'friendsbusi',
  'partner',
  'live',
  'block',
  'away',
  'us',
  'ive',
  'brought',
  'husband',
  'sinc',
  'start',
  'weve',
  'talk',
  'either',
  'deni',
  'say',
  'coincid',
  'say',
  'think',
  'good',
  'tast',
  'cant',
  'help',
  'promis',
  'shell',
  'stop',
  'never',
  'husband',
  'realiz',
  'frustrat',
  'ultim',
  'say',
  'harmless',
  'sister',
  'cant',
  'cut',
  'copi',
  'day',
  'ask',
  'shampoo',
  'use',
  'refus',
  'tell',
  'knew',
  'go',
  'buy',
  'start',
  'cri',
  'husband',
  'told',
  'big',
  'deal',
  'told',
  'assur',
  'go',
  'buy',
  'curiou',
  'hair',
  'alway',
  'nice',
  'yesterday',
  'went',
  'place',
  'dinner',
  'use',
  'washroom',
  'decid',
  'check',
  'suspicion',
  'look',
  'tub',
  'saw',
  'bought',
  'shampoo',
  'frustrat',
  'brought',
  'bottl',
  'tabl',
  'front',
  'husband',
  'told',
  'allow',
  'buy',
  'shampoo',
  'shit',
  'got',
  'stop',
  'els',
  'cut',
  'husband',
  'regardless',
  'husband',
  'say',
  'never',
  'see',
  'obvious',
  'husband',
  'said',
  'embarrass',
  'start',
  'cri',
  'left',
  'may',
  'react',
  'situat',
  'make',
  'crazi',
  'friend',
  'know',
  'said',
  'overreact',
  'understand',
  'posit',
  'im',
  'constantli',
  'husband',
  'want',
  'apolog',
  'want',
  'eta',
  'forgot',
  'mention',
  'someth',
  'import',
  'block',
  'instagram',
  'account',
  'privat',
  'know',
  'secret',
  'account',
  'follow',
  'sometim',
  'mention',
  'thing',
  'ive',
  'post',
  'like',
  'went',
  'beach',
  'tell',
  'next',
  'time',
  'hung',
  'ask',
  'nice',
  'time',
  'beach',
  'ask',
  'husband',
  'told',
  'deni',
  'tell',
  'etc'],
 ['move',
  'apart',
  'back',
  'keep',
  'minimalist',
  'lifestyl',
  'actual',
  'much',
  'like',
  'good',
  'invest',
  'long',
  'run',
  'relev',
  'later',
  'ran',
  'plumb',
  'issu',
  'easi',
  'fix-',
  'least',
  'know',
  'plumb',
  'call',
  'uncl',
  'ask',
  'could',
  'help',
  'came',
  'aunt',
  'take',
  'look',
  'go',
  'like',
  'quit',
  'reason',
  'took',
  'grandmoth',
  'ring',
  'despit',
  'push',
  'peopl',
  'get',
  'want',
  'use',
  'mother',
  'death',
  'excus',
  'alway',
  'leav',
  'father',
  '&',
  'accord',
  'knew',
  'except',
  'cruel',
  'mother',
  'uncl',
  'use',
  'realli',
  'great',
  'came',
  'along',
  'bend',
  'everi',
  'whim',
  'digress',
  'come',
  'complain',
  'look',
  'like',
  'dirt',
  'poor',
  'minim',
  'funish',
  'look',
  'uptight',
  'say',
  'id',
  'rather',
  'make',
  'memori',
  'stuff',
  'leav',
  'notic',
  'silver',
  'box',
  'keep',
  'sterl',
  'flatwar',
  'spent',
  'good',
  'year',
  'save',
  'money',
  'buy',
  'nice',
  'flatwar',
  'reason',
  'grow',
  'valu',
  'pass',
  'along',
  'children',
  'last',
  'long',
  'time',
  'start',
  'ask',
  'brush',
  'keep',
  'say',
  'heirloom',
  'true',
  'still',
  'keep',
  'break',
  'say',
  'flatwar',
  'ask',
  'mani',
  'place',
  'set',
  'say',
  'cant',
  'rememb',
  'goe',
  'say',
  'small',
  'dinner',
  'parti',
  'borrow',
  'say',
  'pout',
  'rest',
  'time',
  'leav',
  'uncl',
  'say',
  'need',
  'tool',
  'specif',
  'part',
  'fix',
  'plumb',
  'come',
  'back',
  'later',
  'thank',
  'say',
  'bye',
  'arrang',
  'week',
  'later',
  'come',
  'back',
  'key',
  'left',
  'lockbox',
  'sinc',
  'would',
  'work',
  'come',
  'home',
  'look',
  'around',
  'damn',
  'silver',
  'box',
  'miss',
  'know',
  '*',
  'exactli',
  '*',
  'call',
  'polic',
  'give',
  'inform',
  'show',
  'photo',
  'took',
  'insur',
  'long',
  'stori',
  'short',
  'box',
  'dine',
  'room',
  'show',
  'uncl',
  'arrest',
  'theft',
  'aunt',
  'keep',
  'call',
  'screech',
  'horribl',
  'go',
  'hell',
  'give',
  'crimin',
  'record',
  'say',
  'thought',
  'made',
  'abl',
  'take',
  'answer',
  'silver',
  'rarer',
  'pattern',
  'easili',
  'replac',
  'threw',
  'comment',
  'back',
  'face',
  'say',
  'thought',
  'want',
  'memori',
  'stuff',
  'hung',
  'think',
  'ta',
  'uncl',
  'aunt',
  'opinion',
  'effect',
  'punish',
  'someon',
  'done',
  'influenc',
  'get',
  'mad',
  'think',
  'breach',
  'trust',
  'feel',
  'fine',
  'asshol',
  'edit',
  'clarif',
  'regard',
  'ring',
  'ill',
  'put',
  'comment',
  'got',
  'buri',
  'went',
  'miss',
  'quit',
  'actual',
  'know',
  'aunt',
  'taken',
  'saw',
  'wear',
  'famili',
  'function',
  'year',
  'later',
  'tri',
  'play',
  'differ',
  'ring',
  'money',
  'time',
  'willpow',
  'deal',
  'time',
  'school',
  'everyth',
  'mom',
  'deal',
  'cancer',
  'put',
  'back',
  'burner',
  'also',
  'edit',
  'call',
  'tri',
  'retreiv',
  'ring',
  'want',
  'go',
  'miss',
  'gave',
  'head',
  'thank',
  'repli',
  'far'],
 ['throwaway',
  'mobil',
  'account',
  'get',
  'marri',
  'wonder',
  'fiancé',
  'fall',
  'week',
  'ago',
  'bachelorett',
  'parti',
  'girl',
  'dream',
  'wed',
  'dreamt',
  'bachelorett',
  'weekend',
  'put',
  'lot',
  'plan',
  'weekend',
  'made',
  'lot',
  'phone',
  'call',
  'reserv',
  'everyth',
  'basic',
  'thursday',
  'night',
  '-',
  'sunday',
  'morn',
  'closest',
  'girlfriend',
  'rent',
  'hous',
  'start',
  'disast',
  'told',
  'girl',
  'get',
  'hous',
  'earli',
  'thursday',
  'could',
  'decor',
  'set',
  'got',
  'well',
  'got',
  'hous',
  'done',
  'decor',
  'bum',
  'want',
  'wow',
  'moment',
  'came',
  'saw',
  'set',
  'felt',
  'rob',
  'still',
  'decent',
  'first',
  'night',
  'friday',
  'woke',
  'everyon',
  'make',
  'breakfast',
  'get',
  'readi',
  'pack',
  'day',
  '-',
  'vineyard',
  'boat',
  'lunch',
  'happi',
  'hour',
  'drink',
  'dinner',
  'club',
  'get',
  'shade',
  'afternoon',
  'peopl',
  'said',
  'rush',
  'place',
  'place',
  'carri',
  'chang',
  'cloth',
  'day',
  'limit',
  'time',
  'citi',
  'want',
  'make',
  'saturday',
  'wors',
  'brunch',
  'one',
  'awak',
  'time',
  'end',
  'loyal',
  'bridesmaid',
  'went',
  'shop',
  'hour',
  'got',
  'back',
  'hous',
  'one',
  'even',
  'apologet',
  'even',
  'though',
  'close',
  'tear',
  'day',
  'last',
  'straw',
  'later',
  'night',
  'go',
  'dinner',
  'nobodi',
  'wear',
  'match',
  'shirt',
  'got',
  'weekend',
  'peopl',
  'want',
  'wear',
  'stuff',
  'agre',
  'even',
  'though',
  'moh',
  'notifi',
  'everyon',
  'point',
  'said',
  'fuck',
  'weekend',
  'ruin',
  'lock',
  'room',
  'cri',
  'even',
  'wors',
  'came',
  'hour',
  'later',
  'half',
  'girl',
  'gone',
  'anyway',
  'without',
  'aka',
  'actual',
  'bride',
  'end',
  'drive',
  'home',
  'earli',
  'sunday',
  'left',
  'hous',
  'mess',
  'girl',
  'pick',
  'upset',
  'almost',
  'week',
  'one',
  'realli',
  'text',
  'except',
  'bridesmaid',
  'moh',
  'know',
  'sound',
  'bridezilla-ish',
  'suppos',
  'friend',
  'suppos',
  'celebr',
  'weekend',
  'felt',
  'neglect',
  'im',
  'realli',
  'upset',
  'understand',
  'expect',
  'may',
  'seem',
  'like',
  'lot',
  'made',
  'expect',
  'clear',
  'group',
  'let',
  'bad',
  'tell',
  'aita',
  'edit',
  'peopl',
  'ask',
  'question',
  'ye',
  'peopl',
  'genuin',
  'want',
  'celebr',
  'wed',
  'parti',
  'colleg',
  'friend',
  'childhood',
  'friend',
  'work',
  'friend',
  'etc',
  'moh',
  'sent',
  'itinerari',
  'month',
  'ago',
  'clear',
  'activ',
  'plan',
  'price',
  'per',
  'person',
  'someon',
  'want',
  'skip',
  'problem',
  'girl',
  'paid',
  'accordingli',
  'knew',
  'get',
  'edit',
  'well',
  'im',
  'clearli',
  'ta',
  'ive',
  'decid',
  'apolog',
  'want',
  'one',
  'weekend',
  'need',
  'rethink',
  'friend',
  'group',
  'make',
  'chang',
  'wed',
  'invit',
  'list',
  'thank'],
 ['still',
  'girlfriend',
  'almost',
  'year',
  'last',
  'year',
  'gave',
  'key',
  'hous',
  'spend',
  'day',
  'live',
  'togeth',
  'full',
  'time',
  'day',
  'ago',
  'make',
  'quick',
  'trip',
  'work',
  'ask',
  'could',
  'invit',
  'friend',
  'hous',
  'girl',
  'night',
  'thursday',
  'accept',
  'return',
  'yesterday',
  'morn',
  'fir',
  'thing',
  'notic',
  'rag',
  'doll',
  'miss',
  'wall',
  'first',
  'instinct',
  'call',
  'girlfriend',
  'ask',
  'put',
  'somewher',
  'els',
  'deni',
  'said',
  'doll',
  'check',
  'gp',
  'doll',
  'ye',
  'gp',
  'gp',
  'mark',
  'hous',
  'one',
  'friend',
  'let',
  'call',
  'jess',
  'tri',
  'nice',
  'told',
  'gf',
  'tell',
  'friend',
  'bring',
  'back',
  'pm',
  'ill',
  'pretend',
  'never',
  'happen',
  'ill',
  'involv',
  'polic',
  'tri',
  'fight',
  'told',
  'gp',
  'well',
  'gf',
  'call',
  'back',
  'say',
  'jess',
  'deni',
  'doll',
  'huge',
  'argument',
  'warn',
  'play',
  'get',
  'polic',
  'involv',
  'wait',
  'went',
  'polic',
  'went',
  'hous',
  'got',
  'doll',
  'back',
  'press',
  'charg',
  'gf',
  'bigger',
  'argument',
  'press',
  'charg',
  'includ',
  'known',
  'doll',
  'made',
  'father',
  'could',
  'stolen',
  'anyth',
  'els',
  'bat',
  'eye',
  'gave',
  'friend',
  'chanc',
  'tri',
  'play',
  'stupid',
  'call',
  'asshol',
  'drop',
  'charg',
  'edit',
  'answer',
  'question',
  'wll',
  'tri',
  'answer',
  '*',
  'doll',
  'rag',
  'doll',
  'better',
  'said',
  'raggedi',
  'ann',
  'doll',
  '*',
  'father',
  'mani',
  'hobbi',
  'tri',
  'make',
  'doll',
  'plan',
  'sell',
  'first',
  'one',
  'made',
  'freak',
  'raggedi',
  'ann',
  'doll',
  'last',
  'manli',
  'sell',
  'raggedi',
  'ann',
  'doll',
  'ridicul',
  'know',
  'gave',
  'one',
  'actual',
  'made',
  'best',
  'friend',
  'doll',
  'hang',
  'room',
  'pass',
  'away',
  'hung',
  'live',
  'room',
  'xs',
  'eye',
  'look',
  'creepi',
  'look',
  'dead',
  '*',
  'gp',
  'home',
  'rob',
  'month',
  'ago',
  'care',
  'clean',
  'hous',
  'far',
  'leav',
  'doll',
  'ive',
  'expens',
  'item',
  'could',
  'stolen',
  'know',
  'would',
  'steal',
  'bloodi',
  'doll',
  'sick',
  'joke',
  '*',
  'gf',
  'never',
  'complain',
  'least',
  'talk',
  'tell',
  'drop',
  'charg',
  'talk',
  'tomorrow',
  'find',
  'let',
  'friend',
  'take',
  'doll',
  'theyv',
  'never',
  'anyth',
  'like',
  'relationship',
  'right',
  'im',
  'think',
  'break',
  '&',
  'xb',
  'hope',
  'right',
  'updat',
  'want',
  'give',
  'context',
  'doll',
  'import',
  'correct',
  'say',
  'manli',
  'sell',
  'doll',
  'father',
  'got',
  'sick',
  'kidney',
  'failur',
  'retir',
  'fill',
  'time',
  'hobbi',
  'year',
  'diagnosi',
  'came',
  'school',
  'one',
  'day',
  'finish',
  'doll',
  'ask',
  'go',
  'sell',
  'said',
  'ye',
  'anymor',
  'ask',
  'repli',
  'would',
  'buy',
  'doll',
  'man',
  'look',
  'angri',
  'diagnosi',
  'father',
  'would',
  'laugh',
  'would',
  'made',
  'fill',
  'big',
  'box',
  'knock',
  'everi',
  'door',
  'sell',
  'worri',
  'peopl',
  'would',
  'say',
  'could',
  'sell',
  'anxiou',
  'less',
  'energet',
  'less',
  'confid',
  'doubt',
  'afraid',
  'none',
  'mind',
  'ill',
  'beat',
  'bodi',
  'also',
  'mind',
  'thought',
  'made',
  'peac',
  'deseas',
  'time',
  'left',
  'realiti',
  'final',
  'caught',
  'us',
  'turn',
  'point',
  'way',
  'move',
  'forward',
  'thing',
  'father',
  'made',
  'carri',
  'safe',
  'tri',
  'put',
  'doll',
  'box',
  'closet',
  'even',
  'tri',
  'give',
  'away',
  'heart',
  'give',
  'peac',
  'see',
  'tracker',
  'may',
  'seem',
  'excess',
  'ex',
  'knew',
  'updat',
  'mani',
  'hit',
  'nail',
  'ex',
  'came',
  'yesterday',
  'mess',
  'explain',
  'actual',
  'problem',
  'doll',
  'instead',
  'tell',
  'went',
  'friend',
  'told',
  'creepi',
  'weird',
  'grown',
  'man',
  'doll',
  'attach',
  'reinforc',
  'feel',
  'regular',
  'topic',
  'came',
  'idea',
  'get',
  'rid',
  'doll',
  'never',
  'follow',
  'thursday',
  'friend',
  'fed',
  'someth',
  'plan',
  'move',
  'togeth',
  'left',
  'ex',
  'jess',
  'talk',
  'agre',
  'jess',
  'would',
  'take',
  'doll',
  'ex',
  'would',
  'take',
  'care',
  'rest',
  'ex',
  'forgot',
  'gp',
  'confront',
  'panick',
  'actual',
  'call',
  'jess',
  'told',
  'jess',
  'told',
  'worri',
  'anyth',
  'obvious',
  'wrong',
  'broke',
  'tri',
  'plead',
  'even',
  'suggest',
  'coupl',
  'therapi',
  'stand',
  'anymor',
  'call',
  'mr',
  'lawyer',
  'told',
  'continu',
  'process',
  'noth',
  'come',
  'even',
  'ex',
  'confess',
  'tri',
  'either',
  'way',
  'ive',
  'alreadi',
  'chang',
  'lock',
  'im',
  'buy',
  'camera',
  'whole',
  'hous',
  'like',
  'thank',
  'took',
  'time',
  'mess',
  'never',
  'thought',
  'get',
  'attent',
  'got',
  'tri',
  'answer',
  'question',
  'hope',
  'everyth',
  'goe',
  'well',
  'thank'],
 ['year',
  'old',
  'foster',
  'daughter',
  'name',
  'may',
  'around',
  'month',
  'love',
  'piec',
  'im',
  'consid',
  'adopt',
  'even',
  'sister',
  'kate',
  'recent',
  'suffer',
  'miscarriag',
  'took',
  'real',
  'toll',
  'marriag',
  'get',
  'divorc',
  'husband',
  'stay',
  'cant',
  'bear',
  'live',
  'right',
  'kate',
  'howev',
  'horribl',
  'guest',
  'may',
  'everytim',
  'may',
  'ask',
  'someth',
  'talk',
  'kate',
  'burst',
  'tear',
  'yell',
  'kate',
  'great',
  'sister',
  'understand',
  'griev',
  'mean',
  'lash',
  'may',
  'simpli',
  'exist',
  'ive',
  'told',
  'multipl',
  'time',
  'yell',
  'may',
  'came',
  'head',
  'confront',
  'morn',
  'may',
  'ask',
  'kate',
  'could',
  'move',
  'could',
  'get',
  'snack',
  'cabinet',
  'kate',
  'snap',
  'wait',
  'damn',
  'second',
  'brat',
  'overheard',
  'live',
  'room',
  'made',
  'kate',
  'move',
  'way',
  'told',
  'apolog',
  'may',
  'kate',
  'burst',
  'tear',
  'say',
  'take',
  'may',
  'remind',
  'lost',
  'told',
  'grown',
  'adult',
  'know',
  'better',
  'bulli',
  'child',
  'problem',
  'told',
  'may',
  'go',
  'room',
  'real',
  'quick',
  'kate',
  'got',
  'huge',
  'argument',
  'end',
  'tell',
  'take',
  'see',
  'foster',
  'daughter',
  'could',
  'find',
  'somewher',
  'els',
  'stay',
  'left',
  'parent',
  'hous',
  'told',
  'everyth',
  'ive',
  'get',
  'massag',
  'day',
  'tell',
  'horribl',
  'sister',
  'said',
  'griev',
  'ask',
  'could',
  'put',
  'someon',
  'els',
  'kid',
  'think',
  'disgust',
  'thing',
  'send',
  'anyon',
  'person',
  'think',
  'insensit',
  'daughter',
  'relationship',
  'accord',
  'mom',
  'cri',
  'hour',
  'stop',
  'talk',
  'im',
  'monster',
  'think',
  'feel',
  'aita',
  'think',
  'right',
  'yell',
  'kid',
  'lost'],
 ['girlfriend',
  'togeth',
  'almost',
  'year',
  'gift',
  'sorta',
  'sore',
  'spot',
  'least',
  'first',
  'year',
  'togeth',
  'made',
  'cake',
  'thing',
  'birthday',
  'nice',
  'everyth',
  'took',
  'like',
  'half',
  'back',
  'give',
  'famili',
  'seem',
  'kinda',
  'weird',
  'like',
  'present',
  'im',
  'take',
  'part',
  'back',
  'birthday',
  'came',
  'year',
  'bunch',
  'stuff',
  'got',
  'balloon',
  'flower',
  'card',
  'gift',
  'christma',
  'came',
  'gave',
  'gift',
  'get',
  'anyth',
  'fallow',
  'birthday',
  'mine',
  'noth',
  'birthday',
  'year',
  'got',
  'gift',
  'go',
  'like',
  'first',
  'year',
  'last',
  'christma',
  'want',
  'seat',
  'cover',
  'car',
  'bought',
  'want',
  'see',
  'even',
  'gave',
  'card',
  'anyth',
  'went',
  'lunch',
  'day',
  'christma',
  'kept',
  'insist',
  'come',
  'felt',
  'like',
  'give',
  'sinc',
  'still',
  'wrap',
  'sit',
  'live',
  'room',
  'sorta',
  'last',
  'straw',
  'gift',
  'birthday',
  'came',
  'thing',
  'noth',
  'almost',
  'year',
  'birthday',
  'christmas',
  'got',
  'half',
  'gift',
  'ive',
  'tri',
  'talk',
  'claim',
  'forgot',
  'mani',
  'peopl',
  'shop',
  'christma',
  'etc',
  'drop',
  'hint',
  'birthday',
  'differ',
  'stuff',
  'knew',
  'want',
  'want',
  'buy',
  'birthday',
  'came',
  'get',
  'anyth',
  'figur',
  'keep',
  'put',
  'effort',
  'buy',
  'gift',
  'someon',
  'cant',
  'bother',
  'even',
  'make',
  'card',
  'financi',
  'thing',
  'either',
  'make',
  'amount',
  'like',
  'said',
  'id',
  'appreci',
  'homemad',
  'card',
  'drew',
  'someth',
  'went',
  'celebr',
  'saturday',
  'kept',
  'say',
  'excit',
  'get',
  'gift',
  'took',
  'dinner',
  'want',
  'come',
  'came',
  'hous',
  'kept',
  'look',
  'around',
  'said',
  'okay',
  'im',
  'readi',
  'open',
  'gift',
  'said',
  'gift',
  'said',
  'serious',
  'birthdayyyi',
  'said',
  'knowww',
  'said',
  'quit',
  'mess',
  'around',
  'said',
  'im',
  'mess',
  'around',
  'realli',
  'get',
  'anyth',
  'said',
  'come',
  'said',
  'know',
  'want',
  'said',
  'realli',
  'even',
  'get',
  'card',
  'said',
  'figur',
  'gift',
  'anymor',
  'mean',
  'give',
  'gave',
  'usual',
  'excus',
  'hard',
  'shop',
  'im',
  'tell',
  'id',
  'like',
  'stuff',
  '-',
  'buck',
  'well',
  'forget',
  'thing',
  'said',
  'reciev',
  'give',
  'thank',
  'passiv',
  'aggress',
  'asshol',
  'ruin',
  'birthday',
  'aita',
  'get',
  'girlfriend',
  'birthday',
  'present'],
 ['famili',
  'south',
  'asia',
  'live',
  'state',
  'parent',
  'love',
  'older',
  'brother',
  'toler',
  'expect',
  'stay',
  'home',
  'take',
  'care',
  'brother',
  'got',
  'partial',
  'scholarship',
  'state',
  'school',
  'gtfo',
  'work',
  'four',
  'year',
  'undergrad',
  'fortun',
  'enough',
  'get',
  'full',
  'scholarship',
  'degre',
  'graduat',
  'univers',
  'small',
  'debt',
  'two',
  'degre',
  'found',
  'career',
  'realli',
  'enjoy',
  'husband',
  'love',
  'parent',
  'paid',
  'brother',
  'educ',
  'well',
  'chosen',
  'five',
  'children',
  'go',
  'privat',
  'school',
  'kind',
  'extra',
  'curricular',
  'activ',
  'wife',
  'sahm',
  'even',
  'though',
  'nanni',
  'know',
  'five',
  'young',
  'children',
  'would',
  'difficult',
  'manag',
  'im',
  'say',
  'degre',
  'well',
  'chosen',
  'one',
  'incom',
  'household',
  'expect',
  'first',
  'child',
  'wait',
  'year',
  'decid',
  'start',
  'famili',
  'stop',
  'two',
  'husband',
  'get',
  'vasectomi',
  'afterward',
  'much',
  'agreement',
  'futur',
  'parent',
  'howev',
  'decid',
  'go',
  'sell',
  'home',
  'come',
  'live',
  'us',
  'larg',
  'properti',
  'in-law',
  'suit',
  'hcol',
  'citi',
  'west',
  'coast',
  'told',
  'husband',
  'want',
  'live',
  'us',
  'concur',
  'told',
  'said',
  'alreadi',
  'list',
  'home',
  'duti',
  'daughter',
  'would',
  'take',
  'care',
  'parent',
  'old',
  'age',
  'said',
  'gave',
  'money',
  'sale',
  'home',
  'would',
  'find',
  'nice',
  'retir',
  'home',
  'could',
  'live',
  'would',
  'pay',
  'bill',
  'pass',
  'away',
  'like',
  'idea',
  'much',
  'call',
  'ungrat',
  'child',
  'expect',
  'sent',
  'check',
  'one',
  'year',
  'worth',
  'rent',
  'food',
  'util',
  'sundri',
  'said',
  'move',
  'one',
  'year',
  'turn',
  'respons',
  'point',
  'told',
  'contact',
  'without',
  'go',
  'lawyer',
  'play',
  'whack',
  'mole',
  'block',
  'attempt',
  'reach',
  'famili',
  'member',
  'state',
  'back',
  'home',
  'call',
  'asshol',
  'brother',
  'contact',
  'said',
  'make',
  'famili',
  'look',
  'bad',
  'take',
  'gave',
  'choic',
  'either',
  'take',
  'never',
  'bring',
  'would',
  'go',
  'nc',
  'well',
  'harsh',
  'make',
  'asshol',
  'probabl',
  'add',
  'approv',
  'marri',
  'person',
  'cultur',
  'religion',
  'contribut',
  'wed',
  'even',
  'though',
  'attend'],
 ['engag',
  'met',
  'becam',
  'bff',
  'lost',
  'contact',
  'move',
  'dad',
  'stepmom',
  'sm',
  'step-si',
  'yr',
  'ago',
  'found',
  'one',
  'anoth',
  'discov',
  'wed',
  'feel',
  'afraid',
  'say',
  'anyth',
  'afraid',
  'ruin',
  'friendship',
  'insecur',
  'appear',
  'believ',
  'deserv',
  'better',
  'accid',
  'caus',
  'injuri',
  'face',
  'neck',
  'shoulder',
  'surgeri',
  'accid',
  'scar',
  'facial',
  'prosthet',
  'struggl',
  'self-imag',
  'due',
  'peopl',
  'percept',
  'took',
  'lot',
  'convinc',
  'find',
  'handsom',
  'sm',
  'obsess',
  'appear',
  'judgment',
  'anyon',
  'fit',
  'beauti',
  'standard',
  'go',
  'public',
  'berat',
  'stranger',
  'dad',
  'knew',
  'hesit',
  'introduc',
  'sm',
  'know',
  'propos',
  'dad',
  'insist',
  'visit',
  'celebr',
  'dinner',
  'could',
  'meet',
  'warn',
  'advanc',
  'told',
  'go',
  'want',
  'disappoint',
  'dad',
  'one',
  'point',
  'sm',
  'ask',
  'plan',
  'photog',
  'wed',
  'wed',
  'thought',
  'date',
  'closer',
  'halloween',
  'could',
  'wear',
  'mask',
  'fun',
  'cue',
  'sm',
  'giggl',
  'piss',
  'uncomfort',
  'turn',
  'ask',
  'serious',
  'happen',
  'face',
  'look',
  'like',
  'someon',
  'set',
  'fire',
  'tri',
  'put',
  'hatchet',
  'lost',
  'mind',
  'carri',
  'hous',
  'wouldv',
  'hurt',
  'told',
  'relax',
  'fine',
  'insult',
  'person',
  'care',
  'noth',
  'cordial',
  'expect',
  'retali',
  'dad',
  'blew',
  'phone',
  'tri',
  'apolog',
  'told',
  'hurt',
  'theyd',
  'disgust',
  'two',
  'adult',
  'degrad',
  'anoth',
  'human',
  'someth',
  'control',
  'told',
  'sm',
  'upset',
  'id',
  'hurt',
  'expect',
  'apolog',
  'told',
  'happen',
  'week',
  'later',
  'dad',
  'tell',
  'car',
  'accid',
  'end',
  'nasti',
  'lacer',
  'forehead',
  'may',
  'ta',
  'went',
  'dad',
  'get',
  'stuff',
  'lay',
  'couch',
  'cri',
  'phone',
  'life',
  'ugli',
  'disfigur',
  'couldv',
  'ignor',
  'said',
  'outsid',
  'match',
  'insid',
  'next',
  'time',
  'feel',
  'need',
  'insult',
  'someon',
  'look',
  'mayb',
  'take',
  'look',
  'mirror',
  'first',
  'open',
  'mouth',
  'burst',
  'tear',
  'sm',
  'came',
  'see',
  'rucku',
  'told',
  'see',
  'vs',
  'face',
  'idea',
  'halloween',
  'wed',
  'grow',
  'go',
  'well',
  'caus',
  'meltdown',
  'dad',
  'hous',
  'upset',
  'upset',
  'vulner',
  'time',
  'sm',
  'accus',
  'lack',
  'empathi',
  'theyr',
  'demand',
  'apolog',
  'im',
  'refus',
  'understand',
  'believ',
  'kick'],
 ['born',
  'teen',
  'mom',
  'mom',
  'later',
  'marri',
  'stepdad',
  'sibl',
  'respect',
  'im',
  'colleg',
  'easter',
  'colleg',
  'found',
  'mom',
  'stepdad',
  'took',
  'famili',
  'photo',
  'without',
  'card',
  'mom',
  'said',
  'need',
  'print',
  'time',
  'colleg',
  'colleg',
  'minut',
  'away',
  'feel',
  'like',
  'stepdad',
  'resent',
  'famili',
  'includ',
  'guy',
  'child',
  'also',
  'describ',
  'photo',
  'close',
  'famili',
  'backped',
  'said',
  'close',
  'physic',
  'im',
  'colleg',
  'decid',
  'play',
  'littl',
  'joke',
  'took',
  'younger',
  'sibl',
  'two',
  'best',
  'friend',
  'walmart',
  'photo',
  'shop',
  'took',
  'deliber',
  'cheesi',
  'famili',
  'photo',
  'wear',
  'blue',
  'jean',
  'jean',
  'jacket',
  'friend',
  'dress',
  'mom',
  'stepdad',
  'femal',
  'friend',
  'wore',
  'bald',
  'cap',
  'stepdad',
  'male',
  'friend',
  'wore',
  'wig',
  'denim',
  'dress',
  'mom',
  'friend',
  'realli',
  'talent',
  'makeup',
  'honestli',
  'great',
  'job',
  'make',
  'look',
  'like',
  'took',
  'bunch',
  'pictur',
  'prop',
  'pick',
  'favorit',
  'us',
  'stand',
  'silli',
  'action',
  'pose',
  'wear',
  'raccoon',
  'skin',
  'hat',
  'makeup',
  'hair',
  'big',
  'hat',
  'agre',
  'friend',
  'look',
  'like',
  'parent',
  'pictur',
  'postcard',
  'size',
  'honestli',
  'realli',
  'fun',
  'photo',
  'realli',
  'differ',
  'seriou',
  'one',
  'famili',
  'alway',
  'take',
  'print',
  'card',
  'sign',
  'love',
  'name',
  'famili',
  'swap',
  'card',
  'envelop',
  'mom',
  'prepar',
  'reseal',
  'sort',
  'sticker',
  'use',
  'appar',
  'coupl',
  'extend',
  'famili',
  'member',
  'look',
  'hard',
  'enough',
  'pictur',
  'notic',
  'someth',
  'display',
  'peopl',
  'mention',
  'mom',
  'pictur',
  'funni',
  'piss',
  'thought',
  'talk',
  'bore',
  'photo',
  'sit',
  'picnic',
  'blanket',
  'giant',
  'easter',
  'basket',
  'aunt',
  'sent',
  'photo',
  'card',
  'famili',
  'group',
  'chat',
  'said',
  'gig',
  'mom',
  'furiou',
  'send',
  'joke',
  'card',
  'embarrass',
  'famili',
  'also',
  'send',
  'card',
  'made',
  'wrote',
  'told',
  'get',
  'upset',
  'left',
  'famili',
  'photo',
  'appar',
  'big',
  'deal',
  'treat',
  'like',
  'part',
  'famili',
  'said',
  'make',
  'mockeri',
  'stepdad',
  'cross',
  'dresser',
  'photo',
  'said',
  'want',
  'photo',
  'close',
  'famili',
  'like',
  'stepdad',
  'consid',
  'friend',
  'mine',
  'closest',
  'famili',
  'guess',
  'someth',
  'choos',
  'mom',
  'got',
  'mad',
  'sass',
  'told',
  'leav',
  'went',
  'back',
  'colleg',
  'aita',
  'pull',
  'stunt',
  'easter',
  'photo'],
 ['husband',
  'wish',
  'decid',
  'get',
  'oldest',
  'bryan',
  'motorcycl',
  'th',
  'birthday',
  'month',
  'ago',
  'could',
  'go',
  'ride',
  'togeth',
  'surpris',
  'last',
  'minut',
  'gift',
  'know',
  'also',
  'appar',
  'went',
  'got',
  'licens',
  'behind',
  'back',
  'take',
  'without',
  'look',
  'like',
  'bad',
  'guy',
  'sinc',
  'alreadi',
  'laid',
  'strict',
  'rule',
  'suppos',
  'ever',
  'drive',
  'speed',
  'limit',
  'could',
  'drive',
  'dad',
  'around',
  'suppos',
  'passeng',
  'husband',
  'separ',
  'right',
  'stay',
  'nearbi',
  'apart',
  'figur',
  'marriag',
  'bryan',
  'stay',
  'week',
  'stay',
  'dad',
  'next',
  'week',
  'last',
  'friday',
  'bryan',
  'dad',
  'get',
  'call',
  'hospit',
  'say',
  'boyfriend',
  'clark',
  'motarcycl',
  'accid',
  'rush',
  'hospit',
  'find',
  'bryan',
  'kinda',
  'bang',
  'gash',
  'forehead',
  'cut',
  'bruis',
  'concuss',
  'ask',
  'happend',
  'look',
  'final',
  'got',
  'neve',
  'tell',
  'wreck',
  'motorcycl',
  'take',
  'clark',
  'home',
  'basebal',
  'practic',
  'decid',
  'street',
  'race',
  'guy',
  'lost',
  'control',
  'bike',
  'flip',
  'steam',
  'ask',
  'hell',
  'ride',
  'motorcycl',
  'without',
  'dad',
  'would',
  'someth',
  'stupid',
  'especi',
  'ride',
  'someon',
  'els',
  'start',
  'cri',
  'say',
  'sorri',
  'want',
  'know',
  'clark',
  'ok',
  'went',
  'check',
  'found',
  'clark',
  'parent',
  'piss',
  'told',
  'clark',
  'broken',
  'rib',
  'leg',
  'two',
  'finger',
  'promis',
  'take',
  'care',
  'medic',
  'bill',
  'calm',
  'husband',
  'show',
  'tri',
  'explain',
  'apolog',
  'let',
  'bryan',
  'ride',
  'around',
  'bf',
  'went',
  'middl',
  'hospit',
  'yell',
  'reason',
  'separ',
  'irrespons',
  'parent',
  'never',
  'took',
  'anyth',
  'serious',
  'went',
  'talk',
  'bryan',
  'still',
  'mad',
  'told',
  'hed',
  'pay',
  'clark',
  'medic',
  'bill',
  'colleg',
  'fund',
  'money',
  'hed',
  'save',
  'sinc',
  'ive',
  'get',
  'call',
  'husband',
  'inlaw',
  '*',
  '*',
  '*',
  'tch',
  'husband',
  'possibl',
  'take',
  'colleg',
  'away',
  'bryan',
  'mistak',
  'aita'],
 ['husband',
  'recent',
  'host',
  'famili',
  'dinner',
  'announc',
  'pregnanc',
  'import',
  'add',
  'husband',
  'close',
  'relationship',
  'father',
  'keep',
  'around',
  'still',
  'minor',
  'sibl',
  'love',
  'care',
  'fil',
  'type',
  'person',
  'still',
  'think',
  'women',
  'serv',
  'men',
  'din',
  'time',
  'like',
  'serv',
  'first',
  'breadwinn',
  'shit',
  'like',
  'usual',
  'care',
  'sinc',
  'mostli',
  'ignor',
  'howev',
  'time',
  'famili',
  'present',
  'consid',
  'fuck',
  'around',
  'found',
  'dad',
  'favorit',
  'person',
  'world',
  'mom',
  'die',
  'littl',
  'dad',
  'took',
  'care',
  'older',
  'sister',
  'theyr',
  'famili',
  'left',
  'dinner',
  'husband',
  'cook',
  'thing',
  'knew',
  'famili',
  'would',
  'like',
  'first',
  'issu',
  'start',
  'fil',
  'tri',
  'sit',
  'one',
  'head',
  'tabl',
  'husband',
  'said',
  'sad',
  'one',
  'sat',
  'father',
  'sister',
  'either',
  'side',
  'brother',
  'fil',
  'kinda',
  'middl',
  'like',
  'second',
  'problem',
  'caus',
  'everyon',
  'kinda',
  'serv',
  'howev',
  'dad',
  'damag',
  'nerv',
  'right',
  'hand',
  'struggl',
  'hold',
  'spoonsfork',
  'sister',
  'bought',
  'parkinson-frienli',
  'cutleri',
  'set',
  'bring',
  'around',
  'big',
  'spoon',
  'serv',
  'still',
  'hard',
  'offer',
  'serv',
  'plate',
  'sister',
  'serv',
  'drink',
  'sat',
  'eat',
  'chat',
  'three',
  'four',
  'minut',
  'fil',
  'ask',
  'loud',
  'one',
  'go',
  'serv',
  'plate',
  'husband',
  'look',
  'confus',
  'say',
  'mil',
  'get',
  'hurri',
  'take',
  'plate',
  'fil',
  'say',
  'hostess',
  'father',
  'cand',
  'say',
  'ye',
  'father',
  'injur',
  'hand',
  'fine',
  'say',
  'eat',
  'shrug',
  'said',
  'could',
  'starv',
  'care',
  'leav',
  'mil',
  'everyon',
  'agre',
  'father',
  'said',
  'disrespect',
  'thing',
  'say',
  'apolog',
  'way',
  'aita'],
 ['feel',
  'like',
  'devil',
  'right',
  'ill',
  'accept',
  'whatev',
  'judgement',
  'run',
  'team',
  'peopl',
  'compani',
  'offer',
  'larg',
  'amount',
  'matern',
  'leav',
  'month',
  'one',
  'employe',
  'got',
  'pregnant',
  'recent',
  'ill',
  'call',
  'jess',
  'team',
  'project',
  'base',
  'work',
  'period',
  'leav',
  'ml',
  'finish',
  'project',
  'work',
  'left',
  'start',
  'work',
  'project',
  'without',
  'period',
  'team',
  'adapt',
  'work',
  'without',
  'expertis',
  'certain',
  'matter',
  'adapt',
  'eventu',
  'us',
  'develop',
  'skill',
  'need',
  'workload',
  'situat',
  'split',
  'half',
  'work',
  'jess',
  'use',
  'hire',
  'someon',
  'new',
  'come',
  'team',
  'handl',
  'part',
  'jesss',
  'workload',
  'new',
  'employe',
  'came',
  'significantli',
  'reduc',
  'cost',
  'straight',
  'uni',
  'pay',
  'fraction',
  'jess',
  'cost',
  'current',
  'jess',
  'come',
  'back',
  'team',
  'anoth',
  'issu',
  'firm',
  'inform',
  'us',
  'fuck',
  'reason',
  'longer',
  'budget',
  'person',
  'team',
  'let',
  'someon',
  'go',
  'news',
  'came',
  'submit',
  'paperwork',
  'jesss',
  'return',
  'month',
  'project',
  'take',
  'estim',
  'month',
  'decis',
  'came',
  'jess',
  'man',
  'hire',
  'replac',
  'reason',
  'hire',
  'replac',
  'normal',
  'anticip',
  'project',
  'workload',
  'would',
  'far',
  'greater',
  'current',
  'capac',
  'tell',
  'titl',
  'chose',
  'replac',
  'follow',
  'reason',
  '*',
  'far',
  'cheaper',
  'thu',
  'free',
  'lot',
  'money',
  'keep',
  'jess',
  '*',
  'date',
  'project',
  'would',
  'abl',
  'move',
  'forward',
  'seamlessli',
  'wherea',
  'jess',
  'would',
  'take',
  'time',
  'catch',
  'speed',
  'half',
  'project',
  '*',
  'client',
  'alreadi',
  'knew',
  'like',
  'work',
  'wherea',
  'know',
  'jess',
  '*',
  'field',
  'prolong',
  'period',
  'whilst',
  'past',
  'month',
  'may',
  'may',
  'find',
  'hard',
  'adapt',
  'back',
  'work',
  'life',
  'whilst',
  'question',
  '*',
  'perform',
  'work',
  'better',
  'interact',
  'better',
  'team',
  'obvious',
  'ideal',
  'situat',
  'want',
  'keep',
  'put',
  'new',
  'singl',
  'mother',
  'job',
  'line',
  'cold',
  'right',
  'team',
  'firm',
  'told',
  'id',
  'write',
  'brilliant',
  'letter',
  'recommend',
  'month',
  'could',
  'tri',
  'appli',
  'job',
  'firm',
  'hope',
  'well',
  'budget',
  'snap',
  'told',
  'bother',
  'call',
  'cunt',
  'left',
  'know',
  'sound',
  'cold',
  'heartless',
  'fair',
  'employe',
  'jess',
  'right',
  'aita'],
 ['close',
  'famili',
  'live',
  'differ',
  'state',
  'much',
  'contact',
  'brother',
  'got',
  'marri',
  'last',
  'weekend',
  'invit',
  'told',
  'ill',
  'come',
  '+',
  'husband',
  'recent',
  'separ',
  'found',
  'pregnant',
  'extend',
  'famili',
  'know',
  'separ',
  'pregnanc',
  'told',
  'brother',
  'pregnant',
  'spoke',
  'phone',
  'wed',
  'congratul',
  'less',
  'famili',
  'also',
  'knew',
  'marriag',
  'rocki',
  'parent',
  'also',
  'knew',
  'pregnanc',
  'month',
  'pregnant',
  'right',
  'get',
  'divorc',
  'show',
  'wed',
  'everyon',
  'super',
  'shock',
  'see',
  'pregnant',
  'alon',
  'lot',
  'question',
  'follow',
  'answer',
  'littl',
  'info',
  'possibl',
  'ceremoni',
  'priest',
  'mention',
  'pregnanc',
  'small',
  'town',
  'priest',
  'sinc',
  'kid',
  'make',
  'joke',
  'whatev',
  'next',
  'bride',
  'groom',
  '-',
  'babi',
  'someth',
  'like',
  'op',
  'babi',
  'hope',
  'mani',
  'join',
  'beauti',
  'famili',
  'bride',
  'groom',
  'bride',
  'piss',
  'everyon',
  'knew',
  'pregnant',
  'pictur',
  'take',
  'part',
  'recept',
  'brother',
  'say',
  'okay',
  'want',
  'take',
  'pic',
  'favourit',
  'sister',
  'first',
  'nephew',
  'laugh',
  'said',
  'niec',
  'actual',
  'super',
  'happi',
  'took',
  'pic',
  'bride',
  'came',
  'later',
  'call',
  'ah',
  'upstag',
  'wed',
  'pregnanc',
  'also',
  'babi',
  'gender',
  'announc',
  'famili',
  'obvious',
  'side',
  'brother',
  'think',
  'act',
  'crazi',
  'noth',
  'wrong',
  'parent',
  'think',
  'inform',
  'peopl',
  'pregnant',
  'come',
  'wed',
  '+',
  'kept',
  'quit',
  'gender',
  'realli',
  'ah'],
 ['ok',
  'wife',
  'habit',
  'put',
  'note',
  'affirm',
  'lunch',
  'pack',
  'year',
  'start',
  'suffer',
  'issu',
  'surround',
  'employ',
  'appreci',
  'lot',
  'give',
  'strength',
  'renew',
  'energi',
  'rest',
  'day',
  'anyway',
  'co-work',
  'know',
  'sometim',
  'would',
  'teas',
  'call',
  'th',
  'th',
  'grader',
  'call',
  'wife',
  'granni',
  'teas',
  'noth',
  'unusu',
  'happen',
  'lunch',
  'guy',
  'depart',
  'sit',
  'togeth',
  'co-work',
  'mine',
  'jimmi',
  'newest',
  'employe',
  'compani',
  'lost',
  'wife',
  'month',
  'ago',
  'sort',
  'pricat',
  'dude',
  'gener',
  'howev',
  'start',
  'sit',
  'us',
  'lunch',
  'break',
  'guy',
  'insist',
  'sit',
  'eat',
  'food',
  'look',
  'note',
  'wife',
  'left',
  'rins',
  'repeat',
  'til',
  'day',
  'ago',
  'one',
  'co-work',
  'pull',
  'asid',
  'began',
  'talk',
  'note',
  'thing',
  'brought',
  'told',
  'jimmi',
  'enjoy',
  'sit',
  'us',
  'lunch',
  'break',
  'help',
  'feel',
  'uncomfort',
  'note',
  'keep',
  'pullinh',
  'packag',
  'everi',
  'day',
  'went',
  'tell',
  'dude',
  'lost',
  'wife',
  'see',
  'get',
  'note',
  'mine',
  'hit',
  'nerv',
  'remind',
  'late',
  'wife',
  'felt',
  'puzzl',
  'ask',
  'ok',
  'suppos',
  'told',
  'consid',
  'tell',
  'wife',
  'stop',
  'put',
  'note',
  'mayb',
  'find',
  'way',
  'instead',
  'bring',
  'work',
  'jimmi',
  'look',
  'likei',
  'sure',
  'say',
  'told',
  'ridicul',
  'remind',
  'jimmi',
  'sent',
  'messag',
  'think',
  'itd',
  'give',
  'space',
  'react',
  'told',
  'liter',
  'lose',
  'noth',
  'consider',
  'poor',
  'guy',
  'andb',
  'less',
  'insensit',
  'told',
  'said',
  'fault',
  'jimmi',
  'struggl',
  'grief',
  'like',
  'even',
  'know',
  'well',
  'acommad',
  'extent',
  'said',
  'cruel',
  'selfish',
  'got',
  'witnesd',
  'argument',
  'shame',
  'stanc',
  'refus',
  'went',
  'back',
  'work',
  'project',
  'thing',
  'tens',
  'workplac',
  'guy',
  'im',
  'close',
  'say',
  'empathet',
  'tri',
  'make',
  'jimmi',
  'uncomfort',
  'went',
  'hell',
  'get',
  'sit',
  'lunchbreak'],
 ['job',
  'year',
  'also',
  'marri',
  'husbandm',
  'durat',
  'except',
  'year',
  'wfh',
  'husband-',
  'florist-',
  'send',
  'small',
  'bouquet',
  'flower',
  'everi',
  'monday',
  'think',
  'rose',
  'small',
  'bunch',
  'babi',
  'breathjust',
  'small',
  'arrang',
  'small',
  'vase',
  'desk',
  'put',
  'year',
  'new',
  'woman',
  'join',
  'workplac',
  'first',
  'monday',
  'receiv',
  'bouquet',
  'ask',
  'special',
  'day',
  'anoth',
  'cowork',
  'said',
  'weekli',
  'gift',
  'husband',
  'made',
  'face',
  'chang',
  'subject',
  'start',
  'make',
  'comment',
  'everi',
  'singl',
  'monday',
  'receptionist',
  'bring',
  'gift',
  'small',
  'thing',
  'like',
  'well',
  'cant',
  'afford',
  'wast',
  'money',
  'stuff',
  'like',
  'think',
  'bit',
  'tacki',
  'never',
  'react',
  'jab',
  'pro',
  'select',
  'hear',
  'last',
  'monday',
  'went',
  'lign',
  'imo',
  'said',
  'think',
  'hubbi',
  'overcompens',
  'sure',
  'mistress',
  'piss',
  'said',
  'well',
  'us',
  'love',
  'spous',
  'like',
  'show',
  'us',
  'stay',
  'toxic',
  'relationship',
  'sake',
  'keep',
  'appear',
  'low',
  'blow',
  'sinc',
  'knew',
  'troubl',
  'husband',
  'start',
  'sob',
  'left',
  'work',
  'earli',
  'everi',
  'singl',
  'person',
  'offic',
  'say',
  'right',
  'patient',
  'would',
  'situat',
  'cant',
  'help',
  'feel',
  'like',
  'went',
  'far',
  'aita'],
 ['im',
  'full',
  'time',
  'student',
  'work',
  'part',
  'time',
  'last',
  'year',
  'one',
  'cowork',
  'ill',
  'linda',
  'lost',
  'yo',
  'accid',
  'terribl',
  'heartbroken',
  'met',
  'kid',
  'bunch',
  'time',
  'sinc',
  'singl',
  'mother',
  'sometim',
  'take',
  '~~retribution~~',
  'contribut',
  'sing',
  'paid',
  'day',
  'could',
  'take',
  'time',
  'came',
  'back',
  'two',
  'month',
  'ive',
  'work',
  'sinc',
  'turn',
  'yo',
  'chang',
  'boss',
  'basic',
  'made',
  'mother',
  'day',
  'christma',
  'new',
  'year',
  'someth',
  'deserv',
  'peopl',
  'kid',
  'said',
  'peopl',
  'kid',
  'obvious',
  'mother',
  'deserv',
  'spent',
  'day',
  'howev',
  'made',
  'compromis',
  'sent',
  'list',
  'name',
  'month',
  'peopl',
  'could',
  'trade',
  'well',
  'asid',
  'guy',
  'alreadi',
  'gave',
  'day',
  'im',
  'non-moth',
  'mother',
  'still',
  'aliv',
  'went',
  'nc',
  'year',
  'ago',
  'either',
  'way',
  'think',
  'itll',
  'nice',
  'day',
  'prepar',
  'final',
  'mom',
  'cowork',
  'ask',
  'day',
  'polit',
  'said',
  'well',
  'linda',
  'approach',
  'said',
  'first',
  'mother',
  'day',
  'without',
  'son',
  'want',
  'ask',
  'could',
  'trade',
  'day',
  'said',
  'told',
  'sorri',
  'said',
  'thank',
  'went',
  'back',
  'space',
  'one',
  'mom',
  'alreadi',
  'trade',
  'day',
  'one',
  'guy',
  'said',
  'ah',
  'give',
  'sinc',
  'even',
  'talk',
  'mom',
  'anymor',
  'deserv',
  'ask',
  'gave',
  'day',
  'answer',
  'mother',
  'agre',
  'let',
  'lost',
  'child',
  'includ',
  'boss',
  'said',
  'im',
  'entitl',
  'keep',
  'ill',
  'use',
  'day',
  'someth',
  'import',
  'linda',
  'silent',
  'sinc',
  'ask',
  'last',
  'wednesday',
  'cowork',
  'call',
  'ah',
  'im',
  'sure',
  'eta',
  'someon',
  'sent',
  'one',
  'cowork',
  'two',
  'send',
  'aw',
  'messag',
  'call',
  'name',
  'get',
  'im',
  'heartless',
  'bitch',
  'im',
  'sorri',
  'ill',
  'give',
  'day',
  'linda',
  'studi',
  'get',
  'home',
  'know',
  'lose',
  'child',
  'feel',
  'even',
  'plan',
  'decid',
  'go',
  'nc',
  'mom',
  'lost',
  'famili',
  'im',
  'also',
  'alon',
  'keep',
  'scholarship',
  'studi',
  'sometim',
  'get',
  'job',
  'freelanc',
  'stuff',
  'pay',
  'place',
  'thing',
  'anoth',
  'job',
  'ill',
  'put',
  'two',
  'week',
  'notic',
  'cant',
  'hardli',
  'take',
  'day',
  'realli',
  'need',
  'money',
  'even',
  'use',
  'day',
  'lay',
  'around',
  'rest',
  'trade',
  'work',
  'work',
  'eta',
  'know',
  'fuck',
  'bulli',
  'someth',
  'benefit',
  'trade',
  'day',
  'eta',
  'someon',
  'suggest',
  'ill',
  'add',
  'linda',
  'take',
  'day',
  'itll',
  'unpaid',
  'allow',
  'linda',
  'day',
  'fall',
  'final'],
 ['*',
  '*',
  'updat',
  'brother',
  'left',
  'appar',
  'sister',
  'steal',
  'goe',
  'place',
  'admit',
  'keep',
  'thing',
  'sometim',
  'cant',
  'help',
  'act',
  'think',
  'much',
  'admit',
  'took',
  'ipad',
  'claim',
  'intent',
  'hurt',
  'left',
  'case',
  'plan',
  'take',
  'school',
  'brag',
  'return',
  'sinc',
  'way',
  'expens',
  'want',
  'take',
  'risk',
  'appar',
  'lost',
  'someon',
  'took',
  'bag',
  'swear',
  'sold',
  'anyth',
  'mean',
  'pointless',
  'keep',
  'lie',
  'went',
  'room',
  'came',
  'back',
  'bunch',
  'thing',
  'mine',
  'brother',
  'belong',
  'cousin',
  'friend',
  'even',
  'one',
  'caleb',
  'ring',
  'know',
  'refus',
  'give',
  'inform',
  'also',
  'refus',
  'tell',
  'broke',
  'safe',
  'parent',
  'outsid',
  'talk',
  'alon',
  'dad',
  'let',
  'caleb',
  'spend',
  'night',
  '*',
  '*',
  'myf',
  'sisterf',
  'habit',
  'take',
  'thing',
  'bedroom',
  'keep',
  'lose',
  'father',
  'talk',
  'ground',
  'make',
  'pay',
  'back',
  'listen',
  'mom',
  'alway',
  'take',
  'side',
  'make',
  'excus',
  'dad',
  'enough',
  'bough',
  'small',
  'safe',
  'mom',
  'wish',
  'keep',
  'jewelri',
  'make-up',
  'diari',
  'gift',
  'boyfriend',
  'caleb',
  'cal',
  'come',
  'upper',
  'class',
  'famili',
  'alway',
  'buy',
  'stuff',
  'get',
  'stolen',
  'sister',
  'preciou',
  'gift',
  'ipad',
  'pro',
  'gave',
  'th',
  'birthday',
  'feb',
  'love',
  'draw',
  'hobbi',
  'form',
  'express',
  'relax',
  'use',
  'laptop',
  'sinc',
  'cal',
  'gave',
  'ipad',
  'free',
  'time',
  'class',
  'train',
  'garden',
  'option',
  'cal',
  'also',
  'made',
  'custom',
  'case',
  'paint',
  'lot',
  'thing',
  'im',
  'home',
  'leav',
  'safe',
  'one',
  'thing',
  'want',
  'lose',
  'honest',
  'want',
  'sister',
  'put',
  'hand',
  'spent',
  'two',
  'day',
  'brothersm',
  'apart',
  'plan',
  'lil',
  'sister',
  'birthday',
  'parti',
  'came',
  'back',
  'went',
  'take',
  'ipad',
  'sketch',
  'idea',
  'found',
  'case',
  'thought',
  'leav',
  'somewher',
  'els',
  'sure',
  'also',
  'never',
  'took',
  'case',
  'favorit',
  'thing',
  'look',
  'around',
  'whole',
  'room',
  'dad',
  'offic',
  'garden',
  'sinc',
  'im',
  'usual',
  'time',
  'also',
  'call',
  'cal',
  'ask',
  'left',
  'hous',
  'said',
  'famili',
  'came',
  'back',
  'aw',
  'cri',
  'kitchen',
  'dad',
  'ask',
  'happen',
  'told',
  'find',
  'ipad',
  'mom',
  'said',
  'lazili',
  'sister',
  'lost',
  'train',
  'yesterday',
  'ask',
  'said',
  'sister',
  'took',
  'school',
  'lost',
  'accid',
  'happen',
  'let',
  'go',
  'actual',
  'livid',
  'said',
  'sister',
  'open',
  'safe',
  'dunno',
  'stole',
  'tablet',
  'mom',
  'told',
  'shut',
  'never',
  'call',
  'sister',
  'theft',
  'dad',
  'got',
  'involv',
  'much',
  'fight',
  'said',
  'sister',
  'pay',
  'back',
  'sister',
  'said',
  'money',
  'attempt',
  'go',
  'room',
  'told',
  'ill',
  'take',
  'money',
  'parti',
  'keep',
  'ipad',
  'came',
  'right',
  'told',
  'mom',
  'side',
  'demand',
  'money',
  'said',
  'owe',
  'get',
  'keep',
  'ran',
  'room',
  'father',
  'said',
  'could',
  'buy',
  'anoth',
  'one',
  'brother',
  'transfer',
  'money',
  'hour',
  'ago',
  'sit',
  'cal',
  'account',
  'one',
  'yet',
  'sister',
  'cri',
  'lost',
  'sweet',
  'sixteen',
  'parti',
  'say',
  'tablet',
  'worth',
  'much',
  'less',
  'eta',
  'brother',
  'come',
  'home',
  'around',
  'min',
  'talk',
  'parent',
  'know',
  'might',
  'sister',
  'cal',
  'also',
  'way',
  'instal',
  'lock',
  'eta',
  'brother',
  'took',
  'parent',
  'sister',
  'im',
  'home',
  'cal',
  'right',
  'alreadi',
  'instal',
  'lock',
  'look',
  'safe'],
 ['throwaway',
  'account',
  'two',
  'older',
  'sister',
  'grow',
  'jane',
  'kim',
  'kim',
  'got',
  'sick',
  'die',
  'give',
  'birth',
  'niec',
  'laura',
  'year',
  'kim',
  'pass',
  'jane',
  'laura',
  'dad',
  'tom',
  'confess',
  'date',
  'engag',
  'everyon',
  'surpris',
  'one',
  'vocal',
  'disgust',
  'accus',
  'cheat',
  'jane',
  'tom',
  'explain',
  'someth',
  'plan',
  'cheat',
  'knew',
  'kim',
  'would',
  'would',
  'want',
  'happi',
  'conveni',
  'sinc',
  'know',
  'dead',
  'attend',
  'wed',
  'upset',
  'everyon',
  'els',
  'accept',
  'relationship',
  'thing',
  'hurt',
  'jane',
  'tom',
  'intend',
  'complet',
  'eras',
  'kim',
  'laura',
  'life',
  'bare',
  'kim',
  'die',
  'decid',
  'would',
  'better',
  'laura',
  'thought',
  'jane',
  'mother',
  'everi',
  'sens',
  'word',
  'adopt',
  'final',
  'tom',
  'got',
  'rid',
  'item',
  'would',
  'suggest',
  'kim',
  'ever',
  'relationship',
  'made',
  'famili',
  'swear',
  'never',
  'tell',
  'laura',
  'truth',
  'jane',
  'expect',
  'everyon',
  'side',
  'famili',
  'refus',
  'deni',
  'access',
  'laura',
  'hurt',
  'thought',
  'time',
  'kim',
  'cri',
  'know',
  'live',
  'long',
  'enough',
  'see',
  'laura',
  'grow',
  'way',
  'could',
  'honor',
  'lie',
  'even',
  'laura',
  'name',
  'legal',
  'chang',
  'someth',
  'jane',
  'like',
  'kim',
  'pick',
  'laura',
  'first',
  'name',
  'distanc',
  'famili',
  'time',
  'parent',
  'alway',
  'tri',
  'get',
  'us',
  'reconcil',
  'cite',
  'like',
  'arrang',
  'either',
  'accept',
  'better',
  'apart',
  'laura',
  'life',
  'grow',
  'laura',
  'known',
  'never',
  'realli',
  'interact',
  'appar',
  'interest',
  'studi',
  'field',
  'work',
  'reach',
  'social',
  'media',
  'last',
  'time',
  'saw',
  'person',
  'start',
  'tear',
  'much',
  'look',
  'like',
  'kim',
  'would',
  'talk',
  'time',
  'time',
  'eventu',
  'laura',
  'ask',
  'around',
  'tri',
  'keep',
  'vagu',
  'laura',
  'knew',
  'stori',
  'seem',
  'like',
  'person',
  'describ',
  'talk',
  'dm',
  'like',
  'probabl',
  'done',
  'video',
  'chat',
  'someth',
  'look',
  'directli',
  'eye',
  'broke',
  'confess',
  'everyth',
  'kim',
  'die',
  'made',
  'seri',
  'video',
  'laura',
  'watch',
  'big',
  'moment',
  'told',
  'ever',
  'want',
  'watch',
  'id',
  'send',
  'laura',
  'ask',
  'send',
  'heard',
  'noth',
  'day',
  'recent',
  'got',
  'call',
  'enrag',
  'jane',
  'tom',
  'berat',
  'ruin',
  'famili',
  'laura',
  'watch',
  'video',
  'confront',
  'parent',
  'confirm',
  'everyth',
  'laura',
  'move',
  'current',
  'speak',
  'anyon',
  'one',
  'know',
  'right',
  'everyon',
  'angri',
  'aita',
  'eta',
  'keep',
  'see',
  'let',
  'clarifi',
  'parent',
  'talk',
  'kim',
  'pictur',
  'hous',
  'laura',
  'knew',
  'know',
  'kim',
  'gave',
  'birth',
  'parent',
  'went',
  'along',
  'tom',
  'jane',
  'threaten',
  'nc',
  'unless',
  'im',
  'upset',
  'understand',
  'still',
  'talk',
  'said',
  'last',
  'time',
  'saw',
  'laura',
  'person',
  'brief',
  'pass',
  'come',
  'visit',
  'parent',
  'hous',
  'watch',
  'get',
  'car',
  'pull',
  'drive',
  'way',
  'actual',
  'speak',
  'last',
  'week',
  'life',
  'kim',
  'made',
  'seri',
  'video',
  'togeth',
  'kim',
  'could',
  'leav',
  'special',
  'messag',
  'laura',
  'import',
  'event',
  'kim',
  'also',
  'wrote',
  'letter',
  'laura',
  'tom',
  'got',
  'rid',
  'letter',
  'got',
  'rid',
  'final',
  'cut',
  'backup',
  'video',
  'still',
  'copi',
  'know',
  'honestli',
  'forgot',
  'found',
  'move',
  'saw',
  'small',
  'box',
  'ye',
  'jane',
  'tom',
  'two',
  'bio',
  'children',
  'togeth',
  'unless',
  'chang',
  'mind',
  'jane',
  'tom',
  'everi',
  'intent',
  'never',
  'tell',
  'laura',
  'think',
  'big',
  'deal',
  'sinc',
  'famili',
  'medic',
  'histori',
  'would',
  'still',
  'updat',
  'laura',
  'reach',
  'parent',
  'safe',
  'girlfriend'],
 ['updat',
  'everyon',
  'think',
  'im',
  'femal',
  'im',
  'male',
  'took',
  'transit',
  'today',
  'street',
  'car',
  'total',
  'open',
  'avail',
  'realli',
  'nice',
  'differ',
  'seat',
  'avail',
  'alon',
  'sit',
  'window',
  'seat',
  'random',
  'stranger',
  'came',
  'sat',
  'next',
  'think',
  'guy',
  'sit',
  'next',
  'like',
  'avail',
  'seat',
  'front',
  'back',
  'sat',
  'next',
  'said',
  'himwhi',
  'sit',
  'next',
  'mani',
  'seat',
  'everywher',
  'street',
  'car',
  'littl',
  'strang',
  'said',
  'well',
  'seat',
  'seat',
  'sit',
  'wherev',
  'want',
  'unreason',
  'said',
  'correct',
  'spot',
  'understand',
  'chose',
  'sit',
  'right',
  'next',
  'entir',
  'street',
  'car',
  'empti',
  'sit',
  'anywher',
  'want',
  'street',
  'car',
  'respond',
  'thing',
  'thought',
  'okay',
  'want',
  'conflict',
  'random',
  'stranger',
  'even',
  'know',
  'end',
  'get',
  'move',
  'situat',
  'perplex',
  'like',
  'unwritten',
  'rule',
  'abund',
  'avail',
  'seat',
  'sit',
  'alon',
  'aita',
  'situat'],
 ['edit',
  'marri',
  'refer',
  'dil',
  'easier',
  'sake',
  'storytel',
  'son',
  'dil',
  'yo',
  'togeth',
  'year',
  'live',
  'togeth',
  'weve',
  'alway',
  'thought',
  'nice',
  'girl',
  'seem',
  'make',
  'son',
  'happi',
  'problem',
  'us',
  'son',
  'law',
  'firm',
  'current',
  'tri',
  'get',
  'start',
  'proud',
  'fortun',
  'enough',
  'help',
  'start',
  'loan',
  'dil',
  'work',
  'retail',
  'job',
  'happi',
  'time',
  'ago',
  'husband',
  'apart',
  'decid',
  'order',
  'food',
  'husband',
  'want',
  'pay',
  'sinc',
  'dil',
  'order',
  'phone',
  'gave',
  'card',
  'could',
  'draw',
  'money',
  'account',
  'thought',
  'goe',
  'without',
  'say',
  'draw',
  'amount',
  'lunch',
  'howev',
  'dil',
  'appar',
  'put',
  'card',
  'appl',
  'pay',
  'use',
  'sinc',
  'notic',
  'month',
  'recent',
  'saw',
  'withdraw',
  'recogn',
  'account',
  'look',
  'discov',
  'dil',
  'use',
  'card',
  'phone',
  'spend',
  'around',
  'quit',
  'shock',
  'call',
  'ask',
  'hell',
  'use',
  'card',
  'got',
  'defens',
  'tri',
  'deni',
  'eventu',
  'said',
  'entitl',
  'care',
  'sinc',
  'notic',
  'use',
  'month',
  'told',
  'need',
  'pay',
  'us',
  'back',
  'immedi',
  'wed',
  'report',
  'action',
  'theft',
  'appar',
  'money',
  'pay',
  'us',
  'back',
  'weve',
  'gone',
  'son',
  'offer',
  'pay',
  'us',
  'back',
  'even',
  'though',
  'actual',
  'afford',
  'money',
  'us',
  'fact',
  'stolen',
  'huge',
  'amount',
  'money',
  'comfort',
  'took',
  'us',
  'time',
  'notic',
  'still',
  'recogn',
  'serious',
  'steal',
  'usd',
  'son',
  'complet',
  'dismiss',
  'behavior',
  'excus',
  'stress',
  'taken',
  'respons',
  'honestli',
  'want',
  'go',
  'forward',
  'polic',
  'report',
  'teach',
  'consequ',
  'action',
  'would',
  'ta',
  '&',
  'xb'],
 ['sister',
  'recent',
  'move',
  'get',
  'divorc',
  'nowher',
  'stay',
  'daughter',
  'live',
  'two',
  'bedroom',
  'apart',
  'cramp',
  'tension',
  'high',
  'niec',
  'terribl',
  'honest',
  'scream',
  'day',
  'long',
  'top',
  'lung',
  'work',
  'home',
  'tri',
  'get',
  'sister',
  'get',
  'stop',
  'depress',
  'divorc',
  'struggl',
  'get',
  'bed',
  'ask',
  'niec',
  'quiet',
  'smirk',
  'continu',
  'play',
  'screech',
  'gotten',
  'reprimand',
  'work',
  'also',
  'recent',
  'broke',
  'laptop',
  'made',
  'clear',
  'niec',
  'allow',
  'use',
  'electron',
  'minu',
  'live',
  'room',
  'tv',
  'lo',
  'behold',
  'niec',
  'got',
  'hand',
  'laptop',
  'play',
  'game',
  'spill',
  'milk',
  'ruin',
  'furiou',
  'sister',
  'paid',
  'replac',
  'let',
  'go',
  'tri',
  'mani',
  'time',
  'talk',
  'sister',
  'unaccept',
  'keep',
  'get',
  'blown',
  'told',
  'let',
  'griev',
  'peac',
  'feel',
  'bad',
  'best',
  'put',
  'today',
  'came',
  'home',
  'errand',
  'find',
  'niec',
  'play',
  'nintendo',
  'switch',
  'mind',
  'kept',
  'room',
  'must',
  'gone',
  'look',
  'annoy',
  'held',
  'hand',
  'told',
  'give',
  'ignor',
  'call',
  'sister',
  'take',
  'care',
  'daughter',
  'asleep',
  'told',
  'leav',
  'alon',
  'grab',
  'switch',
  'right',
  'niec',
  'hand',
  'took',
  'back',
  'room',
  'start',
  'scream',
  'cri',
  'liter',
  'roll',
  'floor',
  'ignor',
  'well',
  'decid',
  'accept',
  'took',
  'sharpi',
  'drew',
  'live',
  'room',
  'wall',
  'saw',
  'freak',
  'tf',
  'told',
  'spoil',
  'fuck',
  'brat',
  'start',
  'scream',
  'cri',
  'even',
  'wors',
  'final',
  'woke',
  'sister',
  'came',
  'instead',
  'angri',
  'scold',
  'daughter',
  'behavior',
  'scold',
  'yell',
  'call',
  'spoil',
  'brat',
  'proudest',
  'moment',
  'yell',
  'sister',
  'kind',
  'let',
  'stay',
  'rent',
  'free',
  'treat',
  'like',
  'absolut',
  'shit',
  'return',
  'parent',
  'child',
  'go',
  'parent',
  'child',
  'need',
  'get',
  'shit',
  'togeth',
  'daughter',
  'control',
  'could',
  'find',
  'somewher',
  'els',
  'stay',
  'daughter',
  'get',
  'troubl',
  'job',
  'respect',
  'person',
  'belong',
  'probabl',
  'go',
  'lose',
  'secur',
  'deposit',
  'accept',
  'word',
  'sister',
  'start',
  'cri',
  'call',
  'ah',
  'niec',
  'come',
  'room',
  'feel',
  'bad',
  'aita',
  'editclarificafion',
  'prior',
  'incid',
  'rais',
  'voic',
  'niec',
  'singl',
  'time',
  'tri',
  'talk',
  'respect',
  'home',
  'thing',
  'care',
  'less',
  'also',
  'laugh',
  'cri',
  'broken',
  'laptop',
  'even',
  'say',
  'singl',
  'word',
  'talk',
  'sister',
  'tri',
  'convers',
  'sister',
  'niec',
  'behavior',
  'guilt',
  'told',
  'go',
  'hard',
  'time',
  'niec',
  'alway',
  'like',
  'even',
  'divorc',
  'though',
  'im',
  'sure',
  'devast',
  'life',
  'event',
  'made',
  'thing',
  'wors',
  'go',
  'set',
  'date',
  'leav',
  'thing',
  'calm',
  'bit',
  'also',
  'talk',
  'sister',
  'therapi'],
 ['know',
  'titl',
  'paint',
  'total',
  'ah',
  'pleas',
  'hear',
  'daughter',
  'sara',
  'smart',
  'girl',
  'gpa',
  'valedictorian',
  'class',
  'gotten',
  'word',
  'dream',
  'colleg',
  'receiv',
  'full',
  'ride',
  'scholarship',
  'colleg',
  'fund',
  'found',
  'scholarship',
  'agre',
  'would',
  'still',
  'give',
  'money',
  'pay',
  'thing',
  'would',
  'need',
  'colleg',
  'hous',
  'food',
  'etc',
  'well',
  'came',
  'home',
  'yesterday',
  'kind',
  'sad',
  'ask',
  'matter',
  'said',
  'go',
  'go',
  'colleg',
  'anymor',
  'appar',
  'boyfriend',
  'bryan',
  'told',
  'go',
  'anymor',
  'background',
  'bryan',
  'famili',
  'well',
  'parent',
  'never',
  'issu',
  'disciplin',
  'child',
  'mean',
  'rude',
  'disrespect',
  'although',
  'seem',
  'sweet',
  'daughter',
  'alon',
  'shell',
  'complain',
  'whenev',
  'theyr',
  'friend',
  'bryan',
  'constantli',
  'put',
  'compar',
  'instagram',
  'model',
  'bryan',
  'current',
  'enrol',
  'colleg',
  'set',
  'cours',
  'futur',
  'roll',
  'card',
  'sara',
  'say',
  'background',
  'info',
  'daughter',
  'go',
  'school',
  'marin',
  'biolog',
  'well',
  'daughter',
  'told',
  'convers',
  'tell',
  'bryan',
  'full',
  'ride',
  'scholarship',
  'excit',
  'final',
  'go',
  'school',
  'marin',
  'biolog',
  'never',
  'support',
  'dream',
  'marin',
  'biologist',
  'alway',
  'told',
  'go',
  'colleg',
  'real',
  'job',
  'sat',
  'told',
  'go',
  'colleg',
  'told',
  'wait',
  'town',
  'worri',
  'get',
  'job',
  'even',
  'parent',
  'support',
  'feel',
  'comfort',
  'go',
  'colleg',
  'state',
  'far',
  'away',
  'also',
  'said',
  'made',
  'feel',
  'unmanli',
  'set',
  'cours',
  'futur',
  'give',
  'good',
  'life',
  'none',
  'told',
  'go',
  'make',
  'decis',
  'right',
  'away',
  'knew',
  'go',
  'let',
  'daughter',
  'throw',
  'away',
  'futur',
  'like',
  'ask',
  'colleg',
  'fund',
  'could',
  'help',
  'support',
  'bryan',
  'dream',
  'took',
  'time',
  'think',
  'sat',
  'today',
  'told',
  'colleg',
  'fund',
  'spend',
  'bryan',
  'start',
  'freak',
  'ask',
  'money',
  'ask',
  'listen',
  'ask',
  'actual',
  'could',
  'see',
  'seriou',
  'futur',
  'bryan',
  'said',
  'noth',
  'first',
  'time',
  'start',
  'cri',
  'ask',
  'gentli',
  'time',
  'admit',
  'still',
  'cri',
  'plead',
  'pleas',
  'throw',
  'away',
  'futur',
  'someon',
  'cant',
  'see',
  'life',
  'nod',
  'went',
  'room',
  'time',
  'think',
  'ive',
  'learn',
  'broke',
  'bryan',
  'call',
  'nom',
  'stop',
  'cri',
  'beg',
  'speak',
  'feel',
  'guilti',
  'sort',
  'like',
  'ah'],
 ['husband',
  'primari',
  'resid',
  'itali',
  'mine',
  'uk',
  'one',
  'trip',
  'itali',
  'housekeep',
  'told',
  'wife',
  'husband',
  'friend',
  'kept',
  'tri',
  'visit',
  'said',
  'came',
  'everi',
  'singl',
  'day',
  'even',
  'though',
  'day',
  'even',
  'home',
  'work',
  'home',
  'even',
  'say',
  'hello',
  'went',
  'togeth',
  'group',
  'brought',
  'two',
  'us',
  'ask',
  'stop',
  'told',
  'husband',
  'like',
  'disturb',
  'work',
  'realli',
  'arrang',
  'someth',
  'instead',
  'turn',
  'wave',
  'act',
  'like',
  'big',
  'deal',
  'ask',
  'sever',
  'time',
  'stop',
  'continu',
  'minut',
  'back',
  'uk',
  'everi',
  'singl',
  'time',
  'end',
  'fed',
  'contact',
  'husband',
  'ask',
  'tell',
  'wife',
  'stop',
  'awar',
  'go',
  'said',
  'would',
  'speak',
  'wife',
  'angri',
  'claim',
  'im',
  'impli',
  'thing',
  'type',
  'woman',
  'also',
  'said',
  'treat',
  'like',
  'husband',
  'properti',
  'pathet',
  'tell',
  'instead',
  'admit',
  'made',
  'insecur',
  'husband',
  'mostli',
  'indiffer',
  'also',
  'told',
  'caus',
  'chao',
  'friendship',
  'group',
  'everybodi',
  'know',
  'go',
  'caus',
  'lot',
  'gossip',
  'aita'],
 ['wife',
  'babyboy',
  'week',
  'ago',
  'everythibg',
  'go',
  'fine',
  'health',
  'problem',
  'complic',
  'whatsoev',
  'howev',
  'wife',
  'often',
  'exhaust',
  'let',
  'mom',
  'come',
  'help',
  'clean',
  'stuff',
  'bare',
  'time',
  'work',
  'also',
  'time',
  'spend',
  'time',
  'babi',
  'bond',
  'littl',
  'bit',
  'thing',
  'wife',
  'act',
  'strang',
  'whenev',
  'see',
  'mom',
  'son',
  'shed',
  'make',
  'face',
  'talk',
  'descend',
  'tone',
  'even',
  'rais',
  'voic',
  'caus',
  'mom',
  'feel',
  'hurt',
  'ask',
  'wife',
  'said',
  'mom',
  'ask',
  'elapor',
  'complain',
  'mom',
  'hold',
  'babi',
  'long',
  'take',
  'forev',
  'give',
  'back',
  'mom',
  'argu',
  'wife',
  'could',
  'ask',
  'nice',
  'instead',
  'outright',
  'yell',
  'wife',
  'defend',
  'say',
  'start',
  'rais',
  'voic',
  'alreadi',
  'ask',
  'coupl',
  'time',
  'mom',
  'listen',
  'start',
  'argu',
  'mom',
  'start',
  'cri',
  'felt',
  'enrag',
  'pull',
  'wife',
  'asid',
  'told',
  'stop',
  'act',
  'keep',
  'get',
  'anymor',
  'help',
  'mom',
  'argu',
  'tri',
  'feed',
  'son',
  'aw',
  'think',
  'act',
  'said',
  'understood',
  'frustrat',
  'ye',
  'mom',
  'thing',
  'requir',
  'patienc',
  'us',
  'littl',
  'kind',
  'go',
  'long',
  'way',
  'keep',
  'peac',
  'difficult',
  'time',
  'call',
  'selfish',
  'said',
  'easi',
  'say',
  'im',
  'one',
  'deal',
  'argument',
  'escal',
  'despit',
  'tri',
  'cut',
  'short',
  'went',
  'outsid',
  'calm',
  'wife',
  'start',
  'cold',
  'shoulder',
  'told',
  'okay',
  'told',
  'go',
  'sc',
  '*',
  'ew',
  'deal',
  'take',
  'son',
  'back',
  'mom',
  'time',
  'feed',
  'sinc',
  'condon',
  'behabior',
  'realli',
  'condon',
  'anyth',
  'realli',
  'think',
  'stress',
  'ye',
  'way',
  'behav',
  'around',
  'mom',
  'opinion',
  'okay',
  'etm',
  'good',
  'im',
  'see',
  'much',
  'anger',
  'im',
  'sorri',
  'respond',
  'want',
  'peopl',
  'calm',
  'understand',
  'way',
  'agre',
  'mom',
  'behavior',
  'wife',
  'react',
  'isnot',
  'okay',
  'realli',
  'thank',
  'much',
  'though',
  'ok',
  'nice',
  'day'],
 ['get',
  'might',
  'brainer',
  'hear',
  'dad',
  'pass',
  'coupl',
  'day',
  'ago',
  'longtim',
  'come',
  'made',
  'wors',
  'covid',
  'im',
  'handl',
  'funer',
  'arrang',
  'name',
  'executor',
  'estat',
  'includ',
  'aunt',
  'uncl',
  'plan',
  'process',
  'respect',
  'discuss',
  'aunt',
  'said',
  'cousin',
  'diagnos',
  'asperg',
  'syndrom',
  'want',
  'perform',
  'interpret',
  'danc',
  'church',
  'infront',
  'casket',
  'bid',
  'father',
  'farewel',
  'said',
  'absolut',
  'one',
  'happen',
  'church',
  'priest',
  'would',
  'stroke',
  'next',
  'cousin',
  'good',
  'dancer',
  'hobbi',
  'im',
  'happi',
  'found',
  'someth',
  'love',
  'feel',
  'dad',
  'funer',
  'right',
  'venu',
  'showcas',
  'move',
  'candl',
  'wind',
  'aunt',
  'fit',
  'cousin',
  'also',
  'extrem',
  'upset',
  'accus',
  'let',
  'say',
  'goodby',
  'way',
  'told',
  'welcom',
  'danc',
  'grave',
  'whenev',
  'want',
  'funer',
  'time',
  'anoth',
  'cousin',
  'told',
  'plan',
  'record',
  'youtub',
  'video',
  'hard',
  'think',
  'respect',
  'know',
  'dad',
  'wouldv',
  'hate',
  'thing',
  'turn',
  'spectacl',
  'aita'],
 ['im',
  'yo',
  'femal',
  'recent',
  'start',
  'new',
  'job',
  'well',
  'month',
  'ago',
  'guy',
  'offic',
  'plu',
  'boss',
  'boss',
  'one',
  'guy',
  'think',
  'natur',
  'charm',
  'ladi',
  'would',
  'instantli',
  'fall',
  'look',
  'like',
  'thumb',
  'lot',
  'dumb',
  'confid',
  'make',
  'inappropri',
  'comment',
  'even',
  'talk',
  'work',
  'issu',
  'keep',
  'arm',
  'length',
  'im',
  'profession',
  'workmat',
  'day',
  'ago',
  'chase',
  'workmat',
  'procrastin',
  'send',
  'document',
  'went',
  'make',
  'send',
  'said',
  'ok',
  'took',
  'phone',
  'open',
  'messag',
  'app',
  'sent',
  'file',
  'look',
  'notic',
  'save',
  'number',
  'jessica',
  'rabbit',
  'ask',
  'confus',
  'look',
  'shock',
  'eye',
  'wide',
  'open',
  'said',
  'im',
  'sorri',
  'let',
  'go',
  'interrog',
  'confess',
  'boss',
  'alway',
  'call',
  'jessica',
  'rabbit',
  'clear',
  'im',
  'natur',
  'red',
  'head',
  'got',
  'mom',
  'dye',
  'hair',
  'red',
  'get',
  'darker',
  'look',
  'like',
  'jessica',
  'rabbit',
  'im',
  'flat',
  'tabl',
  'ye',
  'trust',
  'issu',
  'work',
  'hard',
  'like',
  'bodi',
  'despis',
  'thought',
  'compar',
  'hyper',
  'sexual',
  'cartoon',
  'charact',
  'talk',
  'boss',
  'came',
  'offic',
  'ask',
  'nicknam',
  'said',
  'sexi',
  'redhead',
  'told',
  'stop',
  'feel',
  'safe',
  'said',
  'angri',
  'compliment',
  'said',
  'storm',
  'went',
  'hr',
  'formal',
  'complaint',
  'hr',
  'ladi',
  'said',
  'shell',
  'process',
  'complaint',
  'worthless',
  'boss',
  'like',
  'told',
  'like',
  'boss',
  'attitud',
  'need',
  'warrant',
  'stop',
  'sinc',
  'boss',
  'stop',
  'talk',
  'workmat',
  'say',
  'im',
  'way',
  'dramat',
  'know',
  'take',
  'compliment',
  'also',
  'complain',
  'feel',
  'safe',
  'around',
  'know',
  'twist',
  'word',
  'somehow',
  'ta',
  'edit',
  'expect',
  'mani',
  'comment',
  'thank',
  'hard',
  'read',
  'ive',
  'take',
  'note',
  'ill',
  'tri',
  'best',
  'even',
  'tho',
  'afford',
  'jobless',
  'month',
  'im',
  'scare',
  'quit',
  'goe',
  'nowher',
  'clear',
  'snoop',
  'phone',
  'stand',
  'cowork',
  'sit',
  'chair',
  'clear',
  'view',
  'phone',
  'saw',
  'save',
  'number',
  'jessica',
  'rabbit',
  'oh',
  'guy',
  'call',
  'horribl',
  'name',
  'dm',
  'wish',
  'horribl',
  'thing',
  'happen',
  'hope',
  'get',
  'help',
  'otherwis',
  'never',
  'work',
  'relationship',
  'women',
  'sinc',
  'seem',
  'hate',
  'women',
  'much',
  '&',
  'xb',
  'updat',
  'thank',
  'guy',
  'support',
  'ive',
  'mail',
  'hr',
  'ask',
  'thing',
  'write',
  'lack',
  'action',
  'ive',
  'got',
  'absolut',
  'noth',
  'later',
  'found',
  'lawyer',
  'sent',
  'strongli',
  'word',
  'legal',
  'mail',
  'hr',
  'respons',
  'yet',
  'yesterday',
  'friday',
  'let',
  'give',
  'time',
  'cowork',
  'save',
  'jessica',
  'rabbit',
  'spoke',
  'apolog',
  'said',
  'would',
  'help',
  'hr',
  'ask',
  'testimoni',
  'lawsuit',
  'said',
  'thumb',
  'boss',
  'alway',
  'refer',
  'jessica',
  'rabbit',
  'point',
  'cowork',
  'though',
  'jessica',
  'real',
  'name',
  'also',
  'told',
  'chang',
  'nicknam',
  'known',
  'amber',
  'heard',
  'im',
  'furiou',
  'im',
  'keep',
  'straight',
  'face',
  'punish',
  'get',
  'settl',
  'somehow',
  'updat',
  'hello',
  'updat',
  'profil',
  'sorri',
  'miss',
  'day'],
 ['two',
  'son',
  'david',
  'shawn',
  'david',
  'alway',
  'quiet',
  'lot',
  'friend',
  'perfectionist',
  'shawn',
  'laid',
  'back',
  'easy-go',
  'let',
  'anyth',
  'bother',
  'shawn',
  'best',
  'friend',
  'sinc',
  'littl',
  'franki',
  'seven',
  'year',
  'ago',
  'franki',
  'father',
  'stroke',
  'left',
  'sever',
  'disabl',
  'franki',
  'mother',
  'beth',
  'sole',
  'earner',
  'famili',
  'summer',
  'come',
  'know',
  'thing',
  'tough',
  'famili',
  'husband',
  'arrang',
  'pay',
  'send',
  'franki',
  'sleep',
  'away',
  'camp',
  'send',
  'son',
  'save',
  'camp',
  'happen',
  'cover',
  'franki',
  'summer',
  'camp',
  'everi',
  'year',
  'david',
  'recent',
  'came',
  'us',
  'gay',
  'cours',
  'accept',
  'love',
  'son',
  'emot',
  'reveal',
  'great',
  'deal',
  'bulli',
  'school',
  'shawn',
  'franki',
  'among',
  'instig',
  'franki',
  'ask',
  'david',
  'figur',
  '[',
  'slur',
  ']',
  'yet',
  'made',
  'comment',
  'stare',
  'boy',
  'locker',
  'room',
  'told',
  'belong',
  'girl',
  'room',
  'confront',
  'shawn',
  'told',
  'play',
  'around',
  'seriou',
  'big',
  'deal',
  'told',
  'brother',
  'took',
  'serious',
  'big',
  'deal',
  'unaccept',
  'ive',
  'taken',
  'away',
  'video',
  'game',
  'end',
  'school',
  'year',
  'ground',
  'month',
  'sinc',
  'apolog',
  'brother',
  'call',
  'beth',
  'told',
  'happen',
  'dismiss',
  'told',
  'son',
  'sexual',
  'punchlin',
  'respect',
  'friendship',
  'shawn',
  'franki',
  'leav',
  'david',
  'alon',
  'beth',
  'repli',
  'david',
  'made',
  'target',
  'overli',
  'sensit',
  'tattletal',
  'told',
  'want',
  'hear',
  'franki',
  'said',
  'anoth',
  'bad',
  'word',
  'david',
  'said',
  'boy',
  'boy',
  'theyll',
  'work',
  'get',
  'involv',
  'first',
  'deposit',
  'camp',
  'due',
  'week',
  'made',
  'decis',
  'sponsor',
  'franki',
  'call',
  'camp',
  'offic',
  'explain',
  'due',
  'bulli',
  'franki',
  'part',
  'would',
  'pay',
  'camp',
  'year',
  'beth',
  'know',
  'ive',
  'sponsor',
  'camp',
  'sinc',
  'franki',
  'told',
  'anonym',
  'donor',
  'cover',
  'camp',
  'peopl',
  'know',
  'husband',
  'camp',
  'offic',
  'told',
  'husband',
  'done',
  'understood',
  'felt',
  'badli',
  'franki',
  'get',
  'go',
  'shawn',
  'would',
  'without',
  'best',
  'friend',
  'camp',
  'point',
  'beth',
  'would',
  'like',
  'said',
  'someth',
  'knew',
  'pay',
  'camp',
  'feel',
  'like',
  'miss',
  'point',
  'act',
  'way',
  'wrong',
  'pay',
  'camp',
  'way',
  'beth',
  'afford',
  'camp',
  'like',
  'go',
  'affect',
  'job',
  'franki',
  'home',
  'day',
  'feel',
  'made',
  'right',
  'choic',
  'protect',
  'son',
  'still',
  'feel',
  'guilti',
  'asshol'],
 ['*',
  '*',
  'final',
  'updat',
  'daughter',
  'came',
  'pick',
  'kid',
  'even',
  'ask',
  'could',
  'talk',
  'much',
  'calmer',
  'time',
  'explain',
  'point',
  'view',
  'anoth',
  'babi',
  'feel',
  'blindsid',
  'declar',
  'babi',
  'said',
  'mention',
  'want',
  'got',
  'marri',
  'recal',
  'convers',
  '*',
  '*',
  '*',
  '*',
  'talk',
  'product',
  'share',
  'one',
  'push',
  'anoth',
  'one',
  'husband',
  'love',
  'idea',
  'complet',
  'confess',
  'doubt',
  'would',
  'still',
  'board',
  'found',
  'would',
  'pay',
  'childcar',
  'time',
  'around',
  'husband',
  'grew',
  'poorer',
  'side',
  'budget',
  'everyth',
  'worri',
  'lose',
  'job',
  'complain',
  'kid',
  'around',
  'covid',
  'let',
  'kid',
  'sympath',
  'share',
  'side',
  'marriag',
  'admit',
  'probabl',
  'right',
  'anoth',
  'babi',
  'go',
  'talk',
  'steve',
  'tonight',
  'move',
  'forward',
  'plan',
  'caveat',
  'babi',
  'would',
  'full-tim',
  'daycar',
  'husband',
  'help',
  'emerg',
  '*',
  '*',
  '*',
  '*',
  'also',
  'abl',
  'discuss',
  'current',
  'situat',
  'express',
  'feel',
  'underappreci',
  'given',
  'everyth',
  'done',
  'famili',
  'share',
  'jealou',
  'cant',
  'instead',
  'felt',
  'work',
  'mom',
  'except',
  'summer',
  'kid',
  'said',
  'would',
  'talk',
  'steve',
  'enrol',
  'kid',
  'beforeaftercar',
  'program',
  'come',
  'septemb',
  'would',
  'take',
  'usual',
  'also',
  'send',
  'program',
  'need',
  '*',
  '*',
  '*',
  '*',
  'also',
  'made',
  'sure',
  'gave',
  'grandkid',
  'extra',
  'tight',
  'hug',
  'today',
  'watch',
  'happen',
  'texa',
  'make',
  'feel',
  'seem',
  'trivial',
  '*',
  '*',
  'husband',
  'rob',
  'kid',
  'erica',
  'mike',
  'kid',
  'marri',
  'erica',
  'husband',
  'steve',
  'live',
  'nearbi',
  'us',
  'issu',
  'concern',
  'work',
  'full-tim',
  'kid',
  '&',
  'year',
  'ago',
  'daughter',
  'ask',
  'husband',
  'would',
  'becom',
  'full-tim',
  'childcar',
  'could',
  'continu',
  'work',
  'afford',
  'comfort',
  'life',
  'agre',
  'discuss',
  'much',
  'watch',
  'babi',
  'expect',
  'teacher',
  'retir',
  'year',
  'could',
  'take',
  'pension',
  'husband',
  'continu',
  'work',
  'made',
  'sacrific',
  'like',
  'vacat',
  'ad',
  'save',
  'abl',
  'make',
  'work',
  'could',
  'take',
  'full',
  'pension',
  'husband',
  'retir',
  'year',
  'later',
  'arrang',
  'work',
  'enjoy',
  'kid',
  'except',
  'year',
  'start',
  'feel',
  'like',
  'take',
  'advantag',
  'help',
  'lockdown',
  'work',
  'home',
  'expect',
  'us',
  'keep',
  'kid',
  'day',
  'want',
  'split',
  'time',
  'week',
  'sinc',
  'preschooldaycar',
  'close',
  'settl',
  'us',
  'sil',
  'complain',
  'pretti',
  'much',
  'everi',
  'day',
  'thing',
  'got',
  'better',
  'kid',
  'abl',
  'school',
  'fast',
  'forward',
  'year',
  'bit',
  'blowup',
  'kindergarten',
  'daughter',
  'want',
  'start',
  'school',
  'unknown',
  'insist',
  'need',
  'go',
  'need',
  'break',
  'also',
  'ask',
  'spend',
  'time',
  'preschooldaycar',
  'program',
  'sil',
  'complain',
  'cost',
  'push',
  'anyway',
  'relent',
  'past',
  'spring',
  'sil',
  'push',
  'us',
  'take',
  'kid',
  'week',
  'could',
  'go',
  'vacat',
  'said',
  'take',
  'kid',
  'said',
  'afford',
  'one',
  'went',
  'vacat',
  'mayb',
  'much',
  'background',
  'feel',
  'like',
  'context',
  'import',
  'said',
  'daughter',
  'casual',
  'convers',
  'day',
  'mention',
  'obgyn',
  'appoint',
  'test',
  'ask',
  'everyth',
  'okay',
  'said',
  'steve',
  'tri',
  'babi',
  'ask',
  'childcar',
  'plan',
  'look',
  'like',
  'crazi',
  'said',
  'us',
  'said',
  'would',
  'nice',
  'told',
  'tri',
  'anoth',
  'babi',
  'said',
  'none',
  'busi',
  'said',
  'im',
  'provid',
  'year',
  'babysit',
  'told',
  'viabl',
  'childcar',
  'option',
  'new',
  'babi',
  'beg',
  'reconsid',
  'go',
  'kindergarten',
  'feel',
  'like',
  'get',
  'day',
  'back',
  'extent',
  'refus',
  'start',
  'infant',
  'erica',
  'said',
  'make',
  'choos',
  'dream',
  'kid',
  'financi',
  'stabil',
  'argu',
  'two',
  'beauti',
  'children',
  'financi',
  'stabl',
  'ruin',
  'anoth',
  'babi',
  'might',
  'ta',
  'erica',
  'feel',
  'like',
  'told',
  'sooner',
  'feel',
  'like',
  'never',
  'agre',
  'lifetim',
  'rais',
  'kid',
  '&',
  'xb',
  'edit',
  'continu',
  'watch',
  'two',
  'grandchildren',
  'school',
  'summer',
  'agre',
  'enjoy',
  'school',
  'provid',
  'nice',
  'break',
  'us',
  'fun',
  'thing',
  'kid',
  'summer',
  'want',
  'start',
  'anoth',
  'babi',
  'edit',
  'add',
  'bit',
  'context',
  'want',
  'answer',
  'comment',
  'see',
  'lot',
  '\\-we',
  'paid',
  'ask',
  'retir',
  'earli',
  'would',
  'stay',
  'longer',
  'watch',
  'grandkid',
  'probabl',
  'would',
  'put',
  'anoth',
  'year',
  'love',
  'job',
  'put',
  'year',
  'help',
  'daughter',
  'grandchildren',
  'problem',
  'husband',
  'good',
  'job',
  'prepar',
  'retir',
  'felt',
  'could',
  'swing',
  '\\-we',
  'take',
  'time',
  'requir',
  'week',
  'year',
  'minimum',
  'travel',
  'visit',
  'son',
  'famili',
  'settl',
  'daughter',
  'get',
  'week',
  'vacat',
  'year',
  'sil',
  'get',
  'first',
  'sil',
  'complain',
  'daughter',
  'would',
  'never',
  'get',
  'vacat',
  'togeth',
  'said',
  'would',
  'simpli',
  'arrang',
  'care',
  'option',
  'want',
  'time',
  'togeth',
  'could',
  'still',
  'week',
  'hold',
  'one',
  'time',
  'past',
  'year',
  'parent',
  'came',
  'stay',
  'watch',
  'kid',
  'week',
  'away',
  'term',
  'tell',
  'anoth',
  'babi',
  'tri',
  'make',
  'see',
  'everyth',
  'focu',
  'less',
  'would',
  'never',
  'tell',
  'woman',
  'bodi',
  'daughter',
  'want',
  'see',
  'hurt',
  'lastli',
  'daughter',
  'sil',
  'plenti',
  'money',
  'respons',
  'come',
  'cost',
  'anyth',
  'sil',
  'cheap',
  'think',
  'version',
  'stabil',
  'mani',
  'differ'],
 ['older',
  'brother',
  'date',
  'anoth',
  'guy',
  'around',
  'year',
  'issu',
  'brother',
  'gay',
  'one',
  'wear',
  'wed',
  'ring',
  'order',
  'pretend',
  'marri',
  'see',
  'live',
  'countri',
  'gay',
  'marriag',
  'still',
  'allow',
  'romania',
  'despit',
  'brother',
  'boyfriend',
  'start',
  'wear',
  'wed',
  'ring',
  'recent',
  'ask',
  'brother',
  'told',
  'despit',
  'abl',
  'legal',
  'alreadi',
  'consid',
  'marri',
  'spiritu',
  'theyr',
  'hope',
  'one',
  'day',
  'gay',
  'marriag',
  'allow',
  'legal',
  'well',
  'either',
  'leav',
  'countri',
  'wait',
  'till',
  'gay',
  'marriag',
  'made',
  'legal',
  'well',
  'think',
  'nice',
  'told',
  'wear',
  'wed',
  'ring',
  'till',
  'actual',
  'get',
  'offici',
  'marri',
  'think',
  'kind',
  'distast',
  'told',
  'theyr',
  'symbol',
  'love',
  'theyr',
  'hurt',
  'anyon',
  'wear',
  'disagre',
  'theyr',
  'activ',
  'mislead',
  'peopl',
  'think',
  'theyr',
  'actual',
  'marri',
  'frankli',
  'make',
  'mockeri',
  'marriag',
  'brother',
  'told',
  'care',
  'peopl',
  'includ',
  'think',
  'wear',
  'wed',
  'ring',
  'mayb',
  'mind',
  'busi',
  'left',
  'furious',
  'gon',
  'na',
  'lie',
  'think',
  'comment',
  'kind',
  'line',
  'give',
  'opinion',
  'peopl',
  'wear',
  'wed',
  'ring',
  'theyr',
  'actual',
  'marri',
  'yet',
  'seem',
  'take',
  'person',
  'boyfriend',
  'also',
  'contact',
  'later',
  'told',
  'romant',
  'live',
  'concern',
  'stay',
  'aita'],
 ['grew',
  'without',
  'father',
  'long',
  'time',
  'mom',
  'last',
  'year',
  'mom',
  'got',
  'marri',
  'step',
  'dad',
  'brad',
  'brad',
  'kid',
  'tessaf',
  'jakem',
  'dad',
  'pass',
  'away',
  'shortli',
  'born',
  'leav',
  'mom',
  'mountain',
  'debt',
  'one',
  'thing',
  'refus',
  'sell',
  'wed',
  'dress',
  'alway',
  'talk',
  'dream',
  'get',
  'marri',
  'wear',
  'dress',
  'least',
  'veil',
  'gorgeou',
  'simpl',
  'white',
  'dress',
  'long',
  'lace',
  'veil',
  'dad',
  'dress',
  'hand-mad',
  'design',
  'mom',
  'wed',
  'mom',
  'remarri',
  'still',
  'refus',
  'sell',
  'dress',
  'got',
  'new',
  'dress',
  'wed',
  'brad',
  'alway',
  'talk',
  'dress',
  'mine',
  'tessa',
  'got',
  'engag',
  'last',
  'week',
  'excit',
  'show',
  'ring',
  'talk',
  'wed',
  'plan',
  'tessa',
  'know',
  'much',
  'dress',
  'mean',
  'talk',
  'wed',
  'mom',
  'brad',
  'threw',
  'idea',
  'wear',
  'dress',
  'mom',
  'save',
  'wed',
  'caus',
  'itll',
  'save',
  'us',
  'much',
  'money',
  'mom',
  'brought',
  'fact',
  'comfort',
  'sinc',
  'save',
  'dress',
  'brad',
  'said',
  'mom',
  'agre',
  'sinc',
  'two',
  'wed',
  'dress',
  'wear',
  'one',
  'tessa',
  'also',
  'point',
  'dress',
  'would',
  'need',
  'mani',
  'alter',
  'even',
  'fit',
  'sinc',
  'im',
  'much',
  'shorter',
  'mom',
  'im',
  'thin',
  'mom',
  'tessa',
  'also',
  'said',
  'would',
  'year',
  'id',
  'need',
  'gon',
  'na',
  'issu',
  'mom',
  'fenc',
  'brad',
  'pull',
  'dress',
  'storag',
  'hand',
  'tessa',
  'freak',
  'grab',
  'dress',
  'hand',
  'told',
  'allow',
  'wear',
  'mom',
  'dress',
  'get',
  'mom',
  'dress',
  'buy',
  'allow',
  'wear',
  'dress',
  'mom',
  'save',
  'lock',
  'dress',
  'room',
  'all-day',
  'mom',
  'text',
  'come',
  'door',
  'ask',
  'come',
  'talk',
  'brad',
  'brad',
  'call',
  'spoil',
  'selfish',
  'say',
  'im',
  'act',
  'like',
  'huge',
  'brat',
  'cant',
  'let',
  'stranger',
  'wear',
  'thing',
  'dad',
  'left',
  'feel',
  'bad',
  'tessa',
  'realli',
  'upset',
  'cri',
  'text',
  'ask',
  'apolog',
  'give',
  'dress',
  'back',
  'cant',
  'tell',
  'im',
  'wrong',
  'brad',
  'tessa',
  'think',
  'im',
  'ass',
  'stepbroth',
  'friend',
  'agre',
  'stand',
  'ground'],
 ['daughter',
  'amanda',
  'husband',
  'chri',
  'marri',
  'month',
  'ago',
  'amanda',
  'live',
  'sinc',
  'colleg',
  'still',
  'gener',
  'area',
  'current',
  'amanda',
  'chri',
  'focus',
  'futur',
  'mostli',
  'fun',
  'thing',
  'theyr',
  'still',
  'young',
  'noth',
  'wrong',
  'opinion',
  'think',
  'young',
  'peopl',
  'kind',
  'period',
  'life',
  'especi',
  'pandem',
  'got',
  'call',
  'amanda',
  'chri',
  'told',
  'taken',
  'sever',
  'test',
  'confirm',
  'amanda',
  'pregnant',
  'would',
  'host',
  'announc',
  'dinner',
  'want',
  'immedi',
  'famili',
  'know',
  'right',
  'away',
  'could',
  'bare',
  'wait',
  'tri',
  'sinc',
  'marri',
  '*',
  '*',
  'note',
  'intend',
  'pregnanc',
  '*',
  '*',
  'told',
  'thrill',
  'grandpa',
  'dinner',
  'parti',
  'happen',
  'last',
  'week',
  'announc',
  'met',
  'happi',
  'excit',
  'chri',
  'amanda',
  'talk',
  'friend',
  'chri',
  'made',
  'comment',
  'along',
  'line',
  'good',
  'thing',
  'bobbi',
  'work',
  'confus',
  'ask',
  'talk',
  'amanda',
  'reveal',
  'chri',
  'expect',
  'alway',
  'watch',
  'babi',
  'work',
  'could',
  'fun',
  'time',
  'work',
  'love',
  'children',
  'never',
  'regret',
  'dad',
  'sign',
  'new',
  'babi',
  'im',
  'done',
  'want',
  'enjoy',
  'retir',
  'free',
  'without',
  'underag',
  'children',
  'explain',
  'amanda',
  'chri',
  'also',
  'mani',
  'great',
  'daycar',
  'option',
  'area',
  'amanda',
  'began',
  'caus',
  'scene',
  'told',
  'thrill',
  'grandpa',
  'respond',
  'exactli',
  'thrill',
  '*',
  '*',
  'grandpa',
  '*',
  '*',
  'parent',
  'babi',
  'said',
  'help',
  'sinc',
  'worri',
  'work',
  'receiv',
  'pension',
  'young',
  'suppos',
  'best',
  'year',
  'life',
  'think',
  'unfair',
  'chriss',
  'life',
  'babi',
  'frank',
  'respond',
  'amanda',
  'cours',
  'chriss',
  'life',
  'go',
  'babi',
  'mean',
  'parent',
  'gotten',
  'pregnant',
  'expect',
  'someon',
  'els',
  'rais',
  '*',
  '*',
  '*',
  '*',
  'child',
  'amanda',
  'yell',
  'surpris',
  'put',
  'shitti',
  'nurs',
  'home',
  'son',
  'michael',
  'say',
  'harsh',
  'deliveri',
  'messag',
  'son',
  'nathan',
  'agre',
  'amanda',
  'chri',
  'expect',
  'much',
  'irrespons',
  'purpos',
  'get',
  'pregnant',
  'believ',
  'time',
  'rais',
  'babi',
  'sister',
  'sandra',
  'howev',
  'told',
  'comment',
  'callou',
  'misogynist',
  'rais',
  'newborn',
  'twenti',
  'year',
  'realiz',
  'much',
  'harder',
  'parent',
  'gotten',
  'agre',
  'start',
  'provid',
  'least',
  'four',
  'day',
  'childcar',
  'per',
  'week',
  'go',
  'multipl',
  'famili',
  'member',
  'agre',
  'sandra',
  'im',
  'look',
  'unbias',
  'perspect',
  'aita'],
 ['throwaway',
  'account',
  'ill',
  'tri',
  'keep',
  'brief',
  'possibl',
  'english',
  'first',
  'languag',
  'apologis',
  'mistak',
  'work',
  'offic',
  'job',
  'co-work',
  'ann',
  'ann',
  'current',
  'pregnant',
  'around',
  'month',
  'pregnant',
  'dedic',
  'break',
  'room',
  'go',
  'lunch',
  'allow',
  'eat',
  'anyth',
  'drink',
  'anyth',
  'except',
  'water',
  'bottl',
  'offic',
  'comput',
  'break',
  'schedul',
  'everyday',
  'ann',
  'go',
  'break',
  'togeth',
  'lunch',
  'break',
  'one',
  'els',
  'schedul',
  'take',
  'break',
  'earlier',
  'later',
  'break',
  'room',
  'chair',
  'coupl',
  'couch',
  'past',
  'two',
  'week',
  'ann',
  'start',
  'take',
  'nap',
  'one',
  'couch',
  'lunch',
  'break',
  'know',
  'busi',
  'break',
  'want',
  'last',
  'friday',
  'ann',
  'take',
  'break',
  'usual',
  'listen',
  'music',
  'headphon',
  'around',
  'got',
  'go',
  'back',
  'work',
  'realli',
  'pay',
  'attent',
  'ann',
  'everyon',
  'confus',
  'say',
  'ann',
  'around',
  'need',
  'boss',
  'went',
  'break',
  'room',
  'ann',
  'still',
  'sleep',
  'ann',
  'got',
  'warn',
  'boss',
  'ann',
  'angri',
  'break',
  'end',
  'time',
  'woken',
  'said',
  'im',
  'selfish',
  'careless',
  'lot',
  'cowork',
  'ann',
  'side',
  'agre',
  'told',
  'ann',
  'cant',
  'wake',
  'sleep',
  'break',
  'said',
  'babi',
  'make',
  'tire',
  'accus',
  'call',
  'lazi',
  'insensit',
  'edit',
  'add',
  'break',
  'end',
  'scroll',
  'phone',
  'listen',
  'music',
  'adhd',
  'thing',
  'im',
  'quit',
  'oblivi',
  'surround',
  'wake',
  'ann',
  'malic',
  'ann',
  'ask',
  'wake',
  'wouldv',
  'done',
  'edit',
  'work',
  'place',
  'cant',
  'leav',
  'work',
  'station',
  'left',
  'go',
  'look',
  'ann',
  'get',
  'back',
  'work',
  'wouldv',
  'gotten',
  'troubl',
  'boss',
  'alreadi',
  'look',
  'ann',
  'cowork',
  'need',
  'someth',
  'edit',
  'ann',
  'normal',
  'set',
  'alarm',
  'doze',
  'know',
  'wake',
  'usual',
  'thank',
  'award'],
 ['husband',
  'compani',
  'recent',
  'chose',
  'attend',
  'confer',
  'miami',
  'chose',
  'co-work',
  'ton',
  'candid',
  'quit',
  'honor',
  'compani',
  'told',
  'allow',
  'bring',
  'spousespartn',
  'spring',
  'plane',
  'ticket',
  'us',
  'want',
  'bring',
  'us',
  'theyd',
  'buy',
  'ticket',
  'pocket',
  'husband',
  'ask',
  'want',
  'go',
  'emphat',
  'told',
  'id',
  'never',
  'florida',
  'life',
  'thought',
  'itd',
  'fun',
  'trip',
  'told',
  'great',
  'went',
  'websit',
  'buy',
  'ticket',
  'ask',
  'id',
  'ok',
  'fli',
  'coach',
  'even',
  'though',
  'hed',
  'fli',
  'first',
  'class',
  'way',
  '--',
  'coach',
  'way',
  'home',
  'ask',
  'fli',
  'togeth',
  'repli',
  'first',
  'class',
  'expens',
  'feel',
  'bad',
  'cant',
  'afford',
  'especi',
  'want',
  'go',
  'fun',
  'miami',
  'flight',
  'hour',
  'realli',
  'realli',
  'bother',
  'understood',
  'first',
  'class',
  'ticket',
  'would',
  'strain',
  'budget',
  'bit',
  'kind',
  'man',
  'live',
  'first',
  'class',
  'wife',
  'sit',
  'coach',
  'ask',
  'respond',
  'come',
  'im',
  'take',
  'along',
  'work',
  'trip',
  'earn',
  'first',
  'class',
  'seat',
  'work',
  'hard',
  'reward',
  'insist',
  'truli',
  'afford',
  'first',
  'class',
  'seat',
  'could',
  'would',
  'hurt',
  'littl',
  'could',
  'gentleman',
  'give',
  'seat',
  'argu',
  'ultim',
  'agre',
  'give',
  'seat',
  'good',
  'time',
  'miami',
  'littl',
  'mad',
  'sinc',
  'say',
  'earn',
  'first',
  'class',
  'seat',
  'free',
  'cost',
  'us',
  'noth',
  'unlik',
  'plane',
  'ticket',
  'let',
  'enjoy',
  'hed',
  'earn',
  'instead',
  'guilt',
  'think',
  'babi',
  'put',
  'wife',
  'comfort',
  'especi',
  'sinc',
  'made',
  'choic',
  'cheap',
  'close',
  'parent',
  'weve',
  'taken',
  'argument',
  'mediat',
  'split',
  'father',
  'agre',
  'gentleman',
  'mother',
  'think',
  'earn',
  'first',
  'class',
  'seat',
  'let',
  'ill',
  'ask',
  'aita'],
 ['*',
  '*',
  'situat',
  '*',
  '*',
  'recent',
  'bought',
  'one-stori',
  'hous',
  'note',
  'purchas',
  'sole',
  'wife',
  'help',
  'save',
  'start',
  'save',
  'even',
  'met',
  'name',
  'parent',
  'threw',
  'us',
  'parti',
  'happi',
  'ocass',
  'mom',
  'ask',
  'copi',
  'key',
  'case',
  'emerg',
  'let',
  'made',
  'wife',
  'upset',
  'say',
  'anyth',
  'time',
  'wait',
  'til',
  'alon',
  'start',
  'argu',
  'say',
  'let',
  'mother',
  'copi',
  'key',
  'said',
  'sinc',
  'mother',
  'known',
  'respect',
  'privaci',
  'trust',
  'member',
  'famili',
  'said',
  'feel',
  'comfort',
  'idea',
  'someon',
  'els',
  'resid',
  'copi',
  'key',
  'also',
  'brought',
  'mother',
  'pay',
  'penni',
  'toward',
  'hous',
  'disqualifi',
  'get',
  'key',
  'said',
  'big',
  'deal',
  'kept',
  'presist',
  'say',
  'need',
  'take',
  'key',
  'back',
  'quit',
  'frankli',
  'fume',
  'point',
  'im',
  'one',
  'bought',
  'hous',
  'decis',
  'decid',
  'get',
  'copi',
  'key',
  'end',
  'stori',
  'scream',
  'say',
  'technic',
  'contribut',
  'toward',
  'hous',
  'save',
  'back',
  'use',
  'pay',
  'rent',
  'daili',
  'expens',
  'save',
  'money',
  'told',
  'act',
  'put',
  'mom',
  'name',
  'titl',
  'ridicul',
  'said',
  'respect',
  'opiniin',
  'keep',
  'undermin',
  'input',
  'weve',
  'go',
  'back',
  'forth',
  'sinc',
  'let',
  'know',
  'take',
  'key',
  'back',
  'shell',
  'think',
  'irrat',
  'unreason',
  'act',
  'like',
  'copi',
  'hous',
  'key',
  'decis',
  'made',
  'could',
  'save',
  'us',
  'case',
  'emerg',
  'kept',
  'downplay',
  'eta',
  'think',
  'crucial',
  'mention',
  'conflict',
  'mother',
  'wife',
  'theyr',
  'near',
  'perfect',
  'term',
  'alright',
  'thought',
  'ive',
  'alreadi',
  'establish'],
 ['son',
  'adam',
  'best',
  'friend',
  'carlo',
  'pass',
  'away',
  'year',
  'ago',
  'car',
  'accid',
  'loss',
  'complet',
  'devast',
  'adam',
  'point',
  'lost',
  'job',
  'like',
  'brother',
  'famili',
  'known',
  'famili',
  'year',
  'also',
  'devast',
  'loss',
  'carlo',
  'left',
  'behind',
  'girlfriend',
  'yo',
  'son',
  'know',
  'girlfriend',
  'well',
  'sinc',
  'bring',
  'around',
  'much',
  'til',
  'son',
  'born',
  'adam',
  'told',
  'see',
  'take',
  'care',
  'carloss',
  'famili',
  'need',
  'great',
  'glad',
  'step',
  'make',
  'sure',
  'carloss',
  'famili',
  'get',
  'help',
  'adam',
  'also',
  'got',
  'new',
  'job',
  'sort',
  'limit',
  'contact',
  'month',
  'start',
  'visit',
  'us',
  'late',
  'look',
  'differ',
  'gener',
  'calm',
  'smile',
  'often',
  'even',
  'open',
  'talk',
  'carlo',
  'without',
  'get',
  'emot',
  'reliev',
  'happi',
  'last',
  'week',
  'contact',
  'dad',
  'said',
  'someth',
  'tell',
  'us',
  'visit',
  'brought',
  'carloss',
  'girlfriend',
  'child',
  'dinner',
  'sudden',
  'told',
  'us',
  'carloss',
  'girlfriend',
  'start',
  'date',
  'announc',
  'engag',
  'shock',
  'expect',
  'know',
  'say',
  'felt',
  'upset',
  'shock',
  'mostli',
  'adam',
  'notic',
  'reaction',
  'ask',
  'wrong',
  'told',
  'never',
  'expect',
  'get',
  'best',
  'friend',
  'partner',
  'peopl',
  'talk',
  'bad',
  'would',
  'look',
  'carloss',
  'famili',
  'close',
  'friend',
  'carloss',
  'girlfriend',
  'excus',
  'son',
  'bathroom',
  'adam',
  'began',
  'argu',
  'went',
  'upset',
  'fiance',
  'support',
  'said',
  'told',
  'got',
  'togeth',
  'best',
  'friend',
  'partner',
  'perhap',
  'use',
  'grief',
  'get',
  'date',
  'act',
  'shock',
  'call',
  'unbeliev',
  'ask',
  'leav',
  'hous',
  'got',
  'left',
  'husband',
  'said',
  'mess',
  'make',
  'scene',
  'react',
  'way',
  'went',
  'upstair',
  'stay',
  'alon',
  'hour',
  'day',
  'adam',
  'call',
  'husband',
  'keep',
  'tri',
  'get',
  'speak',
  'kept',
  'say',
  'need',
  'time'],
 ['recent',
  'got',
  'twin',
  'sister',
  'expel',
  'school',
  'report',
  'bulli',
  'think',
  'anyth',
  'wrong',
  'grandpa',
  'side',
  'parent',
  'think',
  'betray',
  'sister',
  'sister',
  'never',
  'nicest',
  'person',
  'got',
  'troubl',
  'bulli',
  'elementari',
  'school',
  'earlier',
  'middl',
  'school',
  'gotten',
  'detent',
  'iss',
  'worst',
  'punish',
  'gotten',
  'far',
  'mean',
  'sibl',
  'cousin',
  'want',
  'th',
  'grade',
  'week',
  'ago',
  'play',
  'basketbal',
  'outsid',
  'lunch',
  'allow',
  'friend',
  'good',
  'time',
  'saw',
  'boy',
  'cri',
  'grass',
  'friend',
  'went',
  'see',
  'wrong',
  'boy',
  'tell',
  'us',
  'bulli',
  'group',
  'kid',
  'preppi',
  'post',
  'skincar',
  'routin',
  'tiktok',
  'starbuck',
  'ice',
  'coffe',
  'gener',
  'seen',
  'feminin',
  'male',
  'aesthet',
  'kid',
  'call',
  'gay',
  'slur',
  'gay',
  'told',
  'thought',
  'cool',
  'start',
  'discuss',
  'skincar',
  'fashion',
  'us',
  'know',
  'much',
  'friend',
  'tri',
  'talk',
  'nike',
  'stuff',
  'fashion',
  'know',
  'mostli',
  'sport',
  'stuff',
  'actual',
  'knew',
  'quit',
  'bit',
  'said',
  'start',
  'take',
  'cours',
  'local',
  'colleg',
  'fashion',
  'histori',
  'also',
  'th',
  'grade',
  'like',
  'us',
  'calm',
  'ask',
  'want',
  'play',
  'ball',
  'us',
  'amaz',
  'good',
  'said',
  'realli',
  'sport',
  'natur',
  'good',
  'us',
  'play',
  'hardest',
  'score',
  'us',
  'play',
  'team',
  'encourag',
  'potenti',
  'tri',
  'team',
  'high',
  'school',
  'said',
  'hed',
  'consid',
  'week',
  'weve',
  'start',
  'hang',
  'park',
  'play',
  'drop',
  'phone',
  'one',
  'friend',
  'pick',
  'unintent',
  'open',
  'messag',
  'instagram',
  'sinc',
  'got',
  'notif',
  'saw',
  'someon',
  'text',
  'homophob',
  'stuff',
  'boy',
  'notic',
  'sister',
  'one',
  'kid',
  'send',
  'messag',
  'told',
  'ok',
  'wed',
  'go',
  'ap',
  'sister',
  'friend',
  'call',
  'offic',
  'got',
  'bunch',
  'troubl',
  'girl',
  'boy',
  'one',
  'boyfriend',
  'sister',
  'ringlead',
  'cruelest',
  'got',
  'harshest',
  'punish',
  'expel',
  'mother',
  'father',
  'said',
  'gone',
  'ap',
  'instead',
  'talk',
  'grandfath',
  'differ',
  'perspect',
  'sinc',
  'involv',
  'progress',
  'activist',
  'group',
  'teen',
  'year',
  'colleg',
  'year',
  'straight',
  'saw',
  'gay',
  'friend',
  'get',
  'bulli',
  'horrifi',
  'even',
  'though',
  'straight',
  'boy',
  'sister',
  'call',
  'asshol',
  'snitch',
  'say',
  'hate',
  'friend',
  'reassur',
  'right',
  'thing'],
 ['husband',
  'stay',
  'hospit',
  'health',
  'issu',
  'got',
  'start',
  'wet',
  'bed',
  'everi',
  'night',
  'talk',
  'doctor',
  'gave',
  'us',
  'med',
  'take',
  'time',
  'suggest',
  'husband',
  'use',
  'adult',
  'diaper',
  'temporarili',
  'said',
  'sinc',
  'sick',
  'anyth',
  'im',
  'one',
  'clean',
  'everi',
  'time',
  'grew',
  'tire',
  'kept',
  'wet',
  'bed',
  'even',
  'consid',
  'diaper',
  'point',
  'yesterday',
  'morn',
  'final',
  'strawi',
  'saw',
  'hed',
  'wet',
  'bed',
  'kind',
  'went',
  'kept',
  'talk',
  'like',
  'hear',
  'kept',
  'stare',
  'wall',
  'kid',
  'heard',
  'fuss',
  'came',
  'ask',
  'go',
  'show',
  'state',
  'bed',
  'sheet',
  'said',
  'see',
  'dad',
  'keep',
  'wet',
  'bed',
  'throw',
  'tantrum',
  'ask',
  'wear',
  'diaper',
  'stare',
  'husband',
  'look',
  'shock',
  'leav',
  'room',
  'said',
  'done',
  'defens',
  'want',
  'defend',
  'thought',
  'unfair',
  'kid',
  'accus',
  'yell',
  'dad',
  'reason',
  'said',
  'humili',
  'infront',
  'kid',
  'made',
  'feel',
  'terribl',
  'told',
  'less',
  'embarrass',
  'feel',
  'less',
  'terribl',
  'stop',
  'wet',
  'bed',
  'like',
  'child',
  'start',
  'cri',
  'say',
  'struggl',
  'health',
  'said',
  'cruel',
  'descend',
  'toward',
  'im',
  'tri',
  'turn',
  'kid',
  'well',
  'shame',
  'infront',
  'sister',
  'visit',
  'vent',
  'said',
  'understood',
  'still',
  'wrong',
  'get',
  'kid',
  'involv',
  'im',
  'fee',
  'conflict',
  'whether',
  'right',
  'thing',
  'mayb',
  'get',
  'understand',
  'affect',
  'well',
  'aita',
  'kid',
  'age'],
 ['sister',
  'pass',
  'away',
  'month',
  'ago',
  'kid',
  '&',
  'help',
  'take',
  'care',
  'either',
  'visit',
  'bil',
  'hous',
  'come',
  'mine',
  'day',
  'ago',
  'bil',
  'left',
  'kid',
  'day',
  'call',
  'even',
  'ask',
  'could',
  'stay',
  'night',
  'cours',
  'agre',
  'kid',
  'fell',
  'asleep',
  'read',
  'stori',
  'woke',
  'nois',
  'open',
  'eye',
  'saw',
  'bil',
  'slowli',
  'claimb',
  'bed',
  'freak',
  'ask',
  'tri',
  'calm',
  'said',
  'saw',
  'kid',
  'want',
  'join',
  'us',
  'sit',
  'right',
  'mei',
  'confus',
  'ask',
  'thought',
  'appropri',
  'thing',
  'said',
  'kid',
  'think',
  'id',
  'mind',
  'felt',
  'extremli',
  'uncomfort',
  'got',
  'ask',
  'pleas',
  'leav',
  'room',
  'object',
  'say',
  'cant',
  'keep',
  'away',
  'kid',
  'told',
  'id',
  'kid',
  'join',
  'minut',
  'eventu',
  'walk',
  'kid',
  'get',
  'dress',
  'took',
  'home',
  'call',
  'unnecesarili',
  'cruel',
  'rude',
  'next',
  'day',
  'tri',
  'call',
  'check',
  'kid',
  'still',
  'upset',
  'say',
  'asleep',
  'interrupt',
  'sleep',
  'refus',
  'let',
  'join',
  'us',
  'bed',
  'hung',
  'felt',
  'mani',
  'thing',
  'told',
  'mom',
  'said',
  'apolog',
  'behav',
  'toward',
  'griev',
  'bil',
  'aita',
  'say'],
 ['-year-old',
  'daughter',
  'harley',
  'wife',
  'extrem',
  'extrem',
  'religi',
  'anyth',
  'written',
  'bibl',
  'im',
  'still',
  'relig',
  'harley',
  'arriv',
  'got',
  'think',
  'daughter',
  'someth',
  'fit',
  'belief',
  'wife',
  'howev',
  'exact',
  'opposit',
  'conflict',
  'year',
  'ago',
  'daughter',
  'said',
  'like',
  'girl',
  'told',
  'first',
  'sat',
  'wife',
  'told',
  'news',
  'happi',
  'itmi',
  'wife',
  'say',
  'anyth',
  'look',
  'disappoint',
  'upset',
  'long',
  'partner',
  'hurt',
  'way',
  'place',
  'shame',
  'told',
  'wife',
  'tri',
  'tear',
  'daughter',
  'agre',
  'go',
  'make',
  'sacrific',
  'sake',
  'daughter',
  'well-b',
  'pleas',
  'make',
  'feel',
  'support',
  'turn',
  'wife',
  'go',
  'daughter',
  'show',
  'differ',
  'date',
  'app',
  'men',
  'tri',
  'set',
  'guy',
  'recommend',
  'date',
  'one',
  'friend',
  'son',
  'forc',
  'go',
  'end',
  'tell',
  'daughter',
  'normal',
  'need',
  'go',
  'confess',
  'phase',
  'went',
  'month',
  'idea',
  'would',
  'stop',
  'aroundmi',
  'daughter',
  'end',
  'break',
  'ask',
  'go',
  'told',
  'everyth',
  'say',
  'angri',
  'would',
  'understat',
  'furiou',
  'wife',
  'honestli',
  'outdat',
  'cruel',
  'point',
  'sleep',
  'sleep',
  'guest',
  'bedroom',
  'even',
  'look',
  'went',
  'marriag',
  'counsel',
  'wife',
  'chang',
  'much',
  'still',
  'let',
  'comment',
  'slip',
  'bite',
  'tongu',
  'guess',
  'daughter',
  'got',
  'girlfriend',
  'want',
  'meet',
  'sat',
  'us',
  'said',
  'want',
  'go',
  'trust',
  'wife',
  'enough',
  'make',
  'comment',
  'get',
  'readi',
  'wife',
  'mad',
  'say',
  'believ',
  'could',
  'exclud',
  'said',
  'made',
  'daughter',
  'feel',
  'way',
  'way',
  'fix',
  'get',
  'ridicul',
  'homophobiai',
  'told',
  'let',
  'religion',
  'get',
  'way',
  'love',
  'daughter',
  'year',
  'shell',
  'ask',
  'talk',
  'anymor',
  'said',
  'show',
  'daughter',
  'much',
  'love',
  'support',
  'interfer',
  'step',
  'foward',
  'daughter',
  'get',
  'stomp',
  'wife',
  'start',
  'cri',
  'stop',
  'speak',
  'told',
  'therapist',
  'think',
  'wrong',
  'grewup',
  'think',
  'excus',
  'homophobia',
  'famili',
  'also',
  'say',
  'im',
  'asshol'],
 ['put',
  'cheat',
  'quot',
  'think',
  'cheat',
  'colleagu',
  'disagre',
  'im',
  'everyon',
  'involv',
  '-',
  'month',
  'ago',
  'unit',
  'vp',
  'announc',
  'retir',
  'end',
  'year',
  'compani',
  'went',
  'search',
  'mode',
  'recent',
  'found',
  'manag',
  'promot',
  'vp',
  'posit',
  'posit',
  'need',
  'fill',
  'bring',
  'us',
  'current',
  'situat',
  'im',
  'singl',
  'kid',
  'respons',
  'except',
  'realli',
  'want',
  'posit',
  'visibl',
  'posit',
  'great',
  'step',
  'stone',
  'career',
  'seen',
  'manag',
  'promot',
  'itll',
  'almost',
  'doubl',
  'pay',
  'found',
  'manag',
  'promot',
  'start',
  'take',
  'extra',
  'project',
  'take',
  'work',
  'home',
  'leav',
  'work',
  'normal',
  'hour',
  'work',
  'home',
  'pm',
  'even',
  'weekend',
  'extra',
  'hour',
  'allow',
  'take',
  'harder',
  'project',
  'peopl',
  'turn',
  'complet',
  'anyon',
  'els',
  'manag',
  'vp',
  'notic',
  'compliment',
  'hustl',
  'colleagu',
  'also',
  'notic',
  'increas',
  'product',
  'last',
  'week',
  'work',
  'friend',
  'ask',
  'im',
  'abl',
  'project',
  'hr',
  'told',
  'night',
  'weekend',
  'word',
  'got',
  'around',
  'week',
  'weekli',
  'confer',
  'call',
  'colleagu',
  'told',
  'cut',
  'accus',
  'cheat',
  'im',
  'put',
  'amount',
  'hour',
  'cant',
  'im',
  'skew',
  'product',
  'number',
  'refus',
  'think',
  'cheat',
  'argu',
  'put',
  'amount',
  'hour',
  'said',
  'cant',
  'famili',
  'time',
  'refus',
  'work',
  'hour',
  'get',
  'paid',
  'salari',
  'spent',
  'meet',
  'argu',
  'cheat',
  'aita',
  'edit',
  'add',
  'post',
  'charact',
  'limit',
  'colleagu',
  'supervisor',
  'mentor',
  'vp',
  'differ',
  'unit',
  'advis',
  'promot',
  'process',
  'step',
  'need',
  'take',
  'also',
  'told',
  'expect',
  'get',
  'promot',
  'im',
  'go',
  'fulli',
  'inform',
  'basic',
  'manag',
  'work',
  '-',
  'hr',
  'week',
  'alway',
  'call',
  'go',
  'detail',
  'itll',
  'bore',
  'feel',
  'free',
  'ask',
  'ill',
  'updat',
  'see',
  'question',
  'repeat',
  'edit',
  'brought',
  'mani',
  'time',
  'get',
  'promot',
  'hustl',
  'month',
  'two',
  'manag',
  'look',
  'entir',
  'career',
  'time',
  'compani',
  'howev',
  'mentor',
  'told',
  'think',
  'import',
  'project',
  'come',
  'complet',
  'said',
  'vp',
  'manag',
  'expect',
  'keep',
  'product',
  'look',
  'see',
  'climb',
  'open',
  'posit',
  'goe',
  'say',
  'everyth',
  'equal',
  'skill',
  'knowledg',
  'etc',
  'littl',
  'chanc',
  'person',
  'religi',
  'work',
  'hr',
  'promot',
  'posit',
  'requir',
  '-',
  'hr',
  'person',
  'view',
  'doubl',
  'pay',
  'compens',
  'increas',
  'hr',
  'edit',
  'question',
  'cowork',
  'one',
  'extra',
  'work',
  'one',
  'lead',
  'charg',
  'make',
  'nois',
  'ladi',
  'longest',
  'longer',
  'even',
  'recent',
  'promot',
  'manag',
  'weve',
  'alway',
  'cordial',
  'work',
  'relationship',
  'viciou',
  'late',
  'supervisor',
  'salari',
  'know',
  'place',
  'requir',
  'sign',
  'sheet',
  'salari',
  'posit',
  'constraint',
  'know',
  'audit',
  'comput',
  'usag',
  'see',
  'much',
  'littl',
  'work',
  'colleagu',
  'submit',
  'applic',
  'cv',
  'posit',
  'applic',
  'busi',
  'unit',
  'within',
  'compani',
  'highli',
  'desir',
  'job',
  'thank',
  'read',
  'post',
  'give',
  'opinion',
  'spent',
  'night',
  'read',
  'everi',
  'one',
  'ill',
  'post',
  'updat',
  'statu',
  'find',
  'coupl',
  'week',
  'anyon',
  'still',
  'interest'],
 ['aita',
  'refus',
  'give',
  'disney',
  'adult',
  'niec',
  'turn',
  'got',
  'magicmixi',
  'sister',
  'elsa',
  'strict',
  'disney',
  'toy',
  'polici',
  'liter',
  'give',
  'us',
  'list',
  'accept',
  'disney-onli',
  'toy',
  'niec',
  'want',
  'obsess',
  'get',
  'magicmixi',
  'sinc',
  'friend',
  'got',
  'one',
  'bil',
  'care',
  'get',
  'stuff',
  'time',
  'text',
  'said',
  'okay',
  'stick',
  'list',
  'sinc',
  'grandpar',
  'got',
  'stuff',
  'disney-rel',
  'said',
  'want',
  'niec',
  'branch',
  'ignor',
  'list',
  'elsa',
  '*',
  '*',
  'disney',
  'adul',
  '*',
  '*',
  'everyth',
  'disney',
  'relat',
  'niec',
  'born',
  'elsa',
  'sent',
  'facebook',
  'post',
  'family-wid',
  'email',
  'anyth',
  'without',
  'disney',
  'charact',
  'toy',
  'cloth',
  'bed',
  'furnitur',
  '*',
  'anyth',
  '*',
  'would',
  'get',
  'thrown',
  'donat',
  'thrown',
  'weve',
  'never',
  'actual',
  'sent',
  'niec',
  'gift',
  'knew',
  'elsa',
  'would',
  'throw',
  'away',
  'disney',
  'aesthet',
  'shell',
  'throw',
  'thing',
  'away',
  'front',
  'peopl',
  'gift',
  'theyr',
  'plaster',
  'cartoon',
  'charact',
  'birthday',
  'parti',
  'niec',
  'open',
  'magicmixi',
  'went',
  'banana',
  'elsa',
  'say',
  'anyth',
  'neutral',
  'cute',
  'move',
  'someth',
  'els',
  'parti',
  'elsa',
  'went',
  'apeshit',
  'said',
  'fault',
  'throw',
  'kid',
  'toy',
  'away',
  'appar',
  'bil',
  'got',
  'big',
  'fight',
  'tri',
  'throw',
  'parti',
  'also',
  'tri',
  'give',
  'sever',
  'parent',
  'parti',
  'mom',
  'mom',
  'group',
  'call',
  'insensit',
  'shed',
  'tri',
  'get',
  'rid',
  'toy',
  'kid',
  'excit',
  'ask',
  'go',
  'gift',
  'mom',
  'call',
  'later',
  'said',
  'huge',
  'ah',
  'stick',
  'elsa',
  'want',
  'make',
  'anxiou',
  'present',
  'guess',
  'parti',
  'mom',
  'group',
  'friend',
  'got',
  'piss',
  'found',
  'throw',
  'gift',
  'away',
  'niec',
  'uninvit',
  'lot',
  'spring',
  'activ',
  'aita',
  'give',
  'disney',
  'adult',
  'get',
  'kid',
  'toy',
  'actual',
  'want'],
 ['fiancé',
  'propos',
  'last',
  'week',
  'weve',
  'date',
  'year',
  'yo',
  'daughter',
  'previou',
  'marriag',
  'mom',
  'pass',
  'year',
  'ago',
  'yo',
  'son',
  'fiancé',
  'start',
  'date',
  'notic',
  'daughter',
  'master',
  'bedroom',
  'found',
  'weird',
  'ive',
  'never',
  'seen',
  'child',
  'take',
  'master',
  'bedroom',
  'brush',
  'say',
  'hous',
  'normal',
  'slept',
  '*',
  'explan',
  '*',
  'thought',
  'meant',
  'inherit',
  'pass',
  'away',
  'still',
  'weird',
  'aliv',
  'either',
  'way',
  'say',
  'anyth',
  'begin',
  'knew',
  'busi',
  'engag',
  'said',
  'want',
  'move',
  'live',
  'togeth',
  'decid',
  'wed',
  'date',
  'said',
  'could',
  'could',
  'get',
  'hous',
  'regardless',
  'ask',
  'wrong',
  'one',
  'said',
  'noth',
  'daughter',
  'honest',
  'get',
  'littl',
  'mad',
  'said',
  'fair',
  'call',
  'daughter',
  'get',
  'marri',
  'suppos',
  'adopt',
  'son',
  'hous',
  'also',
  'said',
  'want',
  'daughter',
  'master',
  'got',
  'littl',
  'nervou',
  'said',
  'hous',
  'realli',
  'belong',
  'late',
  'wife',
  'pass',
  'hous',
  'becam',
  'daughter',
  'enough',
  'money',
  'mayb',
  '%',
  'hous',
  'pay',
  'rest',
  'togeth',
  'shock',
  'said',
  'could',
  'ask',
  'daughter',
  'hous',
  'dad',
  'said',
  'daughter',
  'got',
  'angri',
  'call',
  'jerk',
  'told',
  'truth',
  'said',
  'like',
  'homeless',
  'anyth',
  'still',
  'year',
  'mayb',
  'daughter',
  'leav',
  'colleg',
  'said',
  'alway',
  'known',
  'move',
  'save',
  'ask',
  'els',
  'belong',
  'daughter',
  'know',
  'said',
  'car',
  'kia',
  'car',
  'alway',
  'use',
  'leav',
  'colleg',
  'call',
  'jerk',
  'left',
  'son',
  'parent',
  'hous',
  'told',
  'famili',
  'brother',
  'laugh',
  'talk',
  'act',
  'like',
  'gold',
  'digger',
  'call',
  'ah',
  'felt',
  'betray',
  'lie',
  'realli',
  'ta',
  'think',
  'im',
  'justifi',
  'eta',
  'saw',
  'post',
  'ask',
  'ring',
  'back',
  'guess',
  'problem',
  'anymor',
  'eta',
  'need',
  'keep',
  'comment',
  'hell',
  'come',
  'tomorrow',
  'get',
  'ring',
  'car',
  'thing'],
 ['around',
  'three',
  'month',
  'got',
  'marri',
  'husband',
  'ive',
  'hear',
  'il',
  'nonstop',
  'husband',
  'younger',
  'sister',
  'alic',
  'opinion',
  'total',
  'brat',
  'alic',
  'type',
  'childhood',
  'sick',
  'overcam',
  'howev',
  'parent',
  'extrem',
  'lenient',
  'point',
  'correct',
  'form',
  'without',
  'big',
  'deal',
  'let',
  'go',
  'multipl',
  'job',
  'mani',
  'friend',
  'alway',
  'center',
  'attent',
  'sil',
  'birthday',
  'parent',
  'got',
  'alic',
  'gift',
  'case',
  'got',
  'jealou',
  'child',
  'sisterli',
  'figur',
  'best',
  'friend',
  'mari',
  'met',
  'third',
  'grade',
  'sinc',
  'children',
  'instantli',
  'click',
  'fierc',
  'protect',
  'husband',
  'decid',
  'summer',
  'wed',
  'surpris',
  'alic',
  'show',
  'wear',
  'laci',
  'white',
  'dress',
  'told',
  'pick',
  'wed',
  'catalog',
  'wouldv',
  'believ',
  'wed',
  'main',
  'recept',
  'cocktail',
  'hour',
  'peopl',
  'kept',
  'ask',
  'alic',
  'becom',
  'visual',
  'annoy',
  'lot',
  'peopl',
  'thought',
  'husband',
  'ex',
  'instead',
  'sister',
  'could',
  'tell',
  'situat',
  'piss',
  'mari',
  'watch',
  'mari',
  'walk',
  'husband',
  'famili',
  'greet',
  'way',
  'back',
  'trip',
  'fell',
  'alic',
  'hold',
  'glass',
  'full',
  'red',
  'wine',
  'alic',
  'ran',
  'bathroom',
  'mil',
  'follow',
  'dad',
  'came',
  'us',
  'start',
  'demand',
  'mari',
  'leav',
  'told',
  'mari',
  'lightweight',
  'mistak',
  'husband',
  'back',
  'said',
  'sinc',
  'mari',
  'thin',
  'cant',
  'handl',
  'much',
  'alcohol',
  'wed',
  'make',
  'sure',
  'sober',
  'recept',
  'recept',
  'alic',
  'wear',
  'beauti',
  'green',
  'dress',
  'brought',
  'ross',
  'mari',
  'magic',
  'felt',
  'better',
  'law',
  'bring',
  'incid',
  'nonstop',
  'hard',
  'time',
  'feel',
  'bad',
  'even',
  'though',
  'know',
  'accid'],
 ['wife',
  'gave',
  'birth',
  'recent',
  'tri',
  'breastfe',
  'babi',
  'like',
  'formula',
  'cant',
  'latch',
  'onto',
  'silicon',
  'nippl',
  'properli',
  'hard',
  'time',
  'produc',
  'enough',
  'milk',
  'mom',
  'midwif',
  'said',
  'stress',
  'wife',
  'stress',
  'make',
  'enough',
  'breastmilk',
  'doctor',
  'lactat',
  'consult',
  'confirm',
  'stress',
  'impact',
  'flow',
  'milk',
  'wife',
  'work',
  'ping',
  'us',
  'even',
  'though',
  'six',
  'month',
  'matern',
  'leav',
  'mom',
  'move',
  'us',
  'help',
  'babi',
  'wife',
  'famili',
  'live',
  'far',
  'anyth',
  'moral',
  'support',
  'make',
  'wife',
  'food',
  'stuff',
  'help',
  'milk',
  'product',
  'make',
  'wife',
  'rest',
  'make',
  'sure',
  'get',
  'enough',
  'sleep',
  'mom',
  'suggest',
  'wife',
  'lie',
  'quiet',
  'dim',
  'room',
  'mom',
  'would',
  'rub',
  'feet',
  'shoulder',
  'would',
  'stroke',
  'hair',
  'thing',
  'sooth',
  'wife',
  'let',
  'feel',
  'relax',
  'actual',
  'work',
  'best',
  'import',
  'part',
  'start',
  'process',
  'babi',
  'hungri',
  'wife',
  'incred',
  'irrit',
  'childhood',
  'friend',
  'becki',
  'becki',
  'worst',
  'type',
  'soul',
  'suck',
  'person',
  'make',
  'shitti',
  'problem',
  'run',
  'wife',
  'fix',
  'wife',
  'reluct',
  'stand',
  'becki',
  'becki',
  'girl',
  'make',
  'fun',
  'childhood',
  'treat',
  'wife',
  'like',
  'person',
  'servant',
  'sunday',
  'becki',
  'came',
  'man',
  'hook',
  'dump',
  'plu',
  'spent',
  'money',
  'booz',
  'weed',
  'afford',
  'rent',
  'month',
  'alreadi',
  'late',
  'expect',
  'call',
  'wife',
  'could',
  'fix',
  'problem',
  'said',
  'told',
  'leav',
  'wife',
  'breastfeed',
  'insist',
  'tri',
  'sneak',
  'past',
  'enter',
  'hous',
  'told',
  'wife',
  'breastfeed',
  'could',
  'disturb',
  'per',
  'mom',
  'suggest',
  'told',
  'would',
  'stress',
  'wife',
  'problem',
  'want',
  'come',
  'talk',
  'call',
  'control',
  'momma',
  'boy',
  'friend',
  'wife',
  'later',
  'text',
  'call',
  'asshol',
  'wife',
  'say',
  'care',
  'told',
  'leav',
  'said',
  'could',
  'gentler',
  'problem'],
 ['throwaway',
  'ye',
  'know',
  'kid',
  'way',
  'young',
  'mym',
  'son',
  'turn',
  'last',
  'sunday',
  'usual',
  'small',
  'parti',
  'mother',
  'hous',
  'invit',
  'brothersm',
  'kid',
  'sister',
  'daughter',
  'well',
  'neighbor',
  'usual',
  'one',
  'kid',
  'birthday',
  'blow',
  'candl',
  'mom',
  'use',
  'us',
  'yet',
  'ever',
  'sinc',
  'kiddo',
  'turn',
  'refus',
  'last',
  'year',
  'cousin',
  'blow',
  'particip',
  'birthday',
  'came',
  'want',
  'anyon',
  'kid',
  'end',
  'throw',
  'cake',
  'anyway',
  'kid',
  'son',
  'cri',
  'rest',
  'even',
  'refus',
  'eat',
  'cake',
  'sister',
  'talk',
  'daughter',
  'right',
  'brother',
  'said',
  'son',
  'littl',
  'prick',
  'learn',
  'share',
  'stop',
  'talk',
  'monthli',
  'mother',
  'forc',
  'us',
  'make',
  'amend',
  'week',
  'ago',
  'told',
  'kid',
  'allow',
  'blow',
  'candl',
  'son',
  'brother',
  'like',
  'cours',
  'sil',
  'said',
  'gon',
  'na',
  'explain',
  'kid',
  'okay',
  'fast',
  'forward',
  'parti',
  'gf',
  'come',
  'kiddo',
  'cake',
  'gather',
  'around',
  'tabl',
  'sing',
  'happi',
  'birthday',
  'boy',
  'blow',
  'goddamn',
  'candl',
  'notic',
  'nephew',
  'cover',
  'mouth',
  'hand',
  'kid',
  'notic',
  'blow',
  'jump',
  'straight',
  'momma',
  'arm',
  'happi',
  'nephew',
  'start',
  'cri',
  'tell',
  'brother',
  'let',
  'fair',
  'sil',
  'tri',
  'explain',
  'someth',
  'brother',
  'come',
  'right',
  'let',
  'kid',
  'fun',
  'remind',
  'told',
  'son',
  'gon',
  'na',
  'alon',
  'say',
  'told',
  'well',
  'like',
  'leav',
  'mom',
  'tell',
  'im',
  'joke',
  'brother',
  'took',
  'kid',
  'leav',
  'son',
  'obvious',
  'confus',
  'end',
  'play',
  'kid',
  'forget',
  'mom',
  'say',
  'im',
  'ah',
  'son',
  'understand',
  'way',
  'forc',
  'apolog',
  'gf',
  'sister',
  'say',
  'im',
  'right',
  'son',
  'birthday',
  'know',
  'eta',
  'peopl',
  'get',
  'blow',
  'candl',
  'ill',
  'better',
  'next',
  'time',
  'question',
  'tho'],
 ['eversinc',
  'femal',
  'got',
  'diagnos',
  'cancer',
  'breast',
  'cancer',
  'month',
  'ago',
  'husband',
  'come',
  'home',
  'busi',
  'stay',
  'last',
  'neatli',
  'month',
  'cancel',
  'contract',
  'compani',
  'got',
  'replac',
  'drive',
  'hospit',
  'take',
  'care',
  'medic',
  'im',
  'grate',
  'develop',
  'habit',
  'blame',
  'condit',
  'everi',
  'littl',
  'thing',
  'hed',
  'make',
  'comment',
  'like',
  'cancer',
  'drive',
  'middl',
  'night',
  'look',
  'medicin',
  'cancer',
  'pull',
  'xyz',
  'bank',
  'account',
  'cover',
  'bill',
  'becus',
  'cancer',
  'seen',
  'famili',
  'hed',
  'say',
  'cancer',
  'id',
  'still',
  'contract',
  'cancer',
  'wed',
  'beg',
  'dad',
  'help',
  'basic',
  'blame',
  'condit',
  'grew',
  'tire',
  'say',
  'anyth',
  'think',
  'say',
  'thing',
  'frustrat',
  'becom',
  'much',
  'worn',
  'final',
  'straw',
  'day',
  'ago',
  'reheat',
  'dinner',
  'hate',
  'eat',
  'anyth',
  'frozen',
  'put',
  'tabl',
  'start',
  'eat',
  'disgust',
  'face',
  'grab',
  'glass',
  'water',
  'enter',
  'kitchen',
  'stay',
  'saw',
  'loudli',
  'said',
  'would',
  'ever',
  'thought',
  'id',
  'settl',
  'frozen',
  'meal',
  'cancer',
  'health',
  'declin',
  'eat',
  'frozen',
  'junk',
  'sinc',
  'cant',
  'even',
  'cook',
  'snap',
  'yell',
  'say',
  'cancer',
  'choic',
  'im',
  'happi',
  'situat',
  'im',
  'constant',
  'remark',
  'condit',
  'gone',
  'far',
  'need',
  'stop',
  'got',
  'mad',
  'argu',
  'say',
  'much',
  'affect',
  'im',
  'incred',
  'unfair',
  'yell',
  'vent',
  'let',
  'frustrat',
  'bottl',
  'explod',
  'leav',
  'everyth',
  'threw',
  'fork',
  'walk',
  'sat',
  'cri',
  'bit',
  'felt',
  'bad',
  'yell',
  'get',
  'fed',
  'listen',
  'say',
  'thing',
  'day',
  'night',
  'top',
  'everyth',
  'els',
  'im',
  'deal'],
 ['throwaway',
  'privaci',
  'reason',
  'marri',
  'wife',
  'hannah',
  'year',
  'daughter',
  'morgan',
  'daughter-moth',
  'relationship',
  'complet',
  'transpar',
  'herethey',
  'fight',
  'often',
  'get',
  'along',
  'morgan',
  'use',
  'spend',
  'time',
  'mom',
  'stay',
  'us',
  'school',
  'rememb',
  'hannah',
  'tell',
  'novel',
  'morgan',
  'write',
  'laptop',
  'admit',
  'sneak',
  'look',
  'without',
  'morgan',
  'knowledg',
  'prais',
  'write',
  'style',
  'stori',
  'tell',
  'thought',
  'posit',
  'thing',
  'yesterday',
  'got',
  'back',
  'home',
  'found',
  'morgan',
  'mom',
  'yell',
  'hannah',
  'ask',
  'happen',
  'morgon',
  'told',
  'hannah',
  'delet',
  'novel',
  'hannah',
  'said',
  'morgan',
  'creat',
  'charact',
  'novel',
  'use',
  'descript',
  'name',
  'make',
  'villian',
  'wrote',
  'bad',
  'word',
  'mirgan',
  'argu',
  'charact',
  'hannah',
  'busi',
  'snoop',
  'laptop',
  'begin',
  'hannah',
  'broke',
  'cri',
  'ex',
  'wife',
  'thraten',
  'watch',
  'fight',
  'noth',
  'said',
  'singl',
  'word',
  'step',
  'minut',
  'get',
  'fresh',
  'air',
  'moment',
  'later',
  'hannah',
  'unload',
  'defend',
  'argument',
  'instead',
  'act',
  'cowerdli',
  'morgan',
  'mom',
  'also',
  'said',
  'done',
  'someth',
  'hannah',
  'decid',
  'snoop',
  'delet',
  'morgan',
  'month',
  'worth',
  'work',
  'becam',
  'much',
  'berat',
  'yell',
  'face',
  'morgan',
  'went',
  'home',
  'mom',
  'cri',
  'refus',
  'speak',
  'hannah',
  'check',
  'hotel',
  'also',
  'refus',
  'speak',
  'text',
  'side',
  'kept',
  'come',
  'tell',
  'done',
  'someth',
  'took',
  'side',
  'argument',
  'stay',
  'one',
  'feet',
  'entir',
  'week',
  'work',
  'mental',
  'physic',
  'health',
  'drain',
  'im',
  'tire',
  'fight',
  'time',
  'blame',
  'actionsor',
  'lack',
  'expect',
  'get',
  'involv',
  'someth',
  'fix',
  'done',
  'anyth',
  'yet',
  'asshol',
  'get',
  'involv'],
 ['son',
  'month',
  'cranki',
  'morn',
  'teeth',
  'go',
  'groceri',
  'shop',
  'sinc',
  'take',
  'care',
  'came',
  'normal',
  'calm',
  'babi',
  'carrier',
  'right',
  'want',
  'held',
  'forgot',
  'mom',
  'yesterday',
  'went',
  'stroller',
  'market',
  'plan',
  'min',
  'realli',
  'today',
  'ladi',
  'kept',
  'pop',
  'everi',
  'aisl',
  'well',
  'small',
  'market',
  'like',
  'intent',
  'follow',
  'us',
  'stop',
  'cri',
  'shed',
  'say',
  'hungri',
  'bring',
  'bottl',
  'would',
  'tell',
  'hungri',
  'ate',
  'min',
  'ago',
  'uh',
  'oh',
  'sure',
  'hope',
  'daddi',
  'rememb',
  'chang',
  'diaper',
  'morn',
  'diaper',
  'dirti',
  'point',
  'pick',
  'littl',
  'bit',
  'calm',
  'rock',
  'lost',
  'shit',
  'got',
  'check',
  'line',
  'need',
  'put',
  'back',
  'stroller',
  'could',
  'put',
  'everyth',
  'counter',
  'pay',
  'alreadi',
  'stress',
  'day',
  'im',
  'overwhelm',
  'tri',
  'hurri',
  'put',
  'everyth',
  'bag',
  'son',
  'cri',
  'ladi',
  'checkout',
  'line',
  'next',
  'mine',
  'say',
  'mayb',
  'next',
  'time',
  'stay',
  'home',
  'mommi',
  'think',
  'normal',
  'im',
  'confront',
  'person',
  'one',
  'realli',
  'got',
  'well',
  'mom',
  'pass',
  'away',
  'mind',
  'damm',
  'busi',
  'alreadi',
  'go',
  'look',
  'littl',
  'shock',
  'peopl',
  'red',
  'ladi',
  'say',
  'anyth',
  'park',
  'lot',
  'apolog',
  'mom',
  'think',
  'need',
  'rude',
  'throw',
  'face',
  'know',
  'happen',
  'realli',
  'wan',
  'na',
  'get',
  'anymor',
  'told',
  'get',
  'hell',
  'way',
  'leav',
  'alon',
  'got',
  'car',
  'left',
  'im',
  'home',
  'calm',
  'wonder',
  'point',
  'like',
  'said',
  'normal',
  'im',
  'like',
  'peopl',
  'sinc',
  'alreadi',
  'hard',
  'day',
  'stuff',
  'infuri',
  'bad',
  'overreact',
  'though',
  'get',
  'sometim',
  'peopl',
  'think',
  'theyr',
  'help',
  'realiti',
  'know',
  'noth',
  'come',
  'calm',
  'babi',
  'usual',
  'brush',
  'aita'],
 ['hey',
  'asshol',
  'tell',
  'mil',
  'go',
  'fuck',
  'husband',
  'realli',
  'close',
  'relationship',
  'mom',
  'never',
  'realli',
  'bother',
  'thought',
  'sweet',
  'sister',
  'first',
  'met',
  'famili',
  'becam',
  'clear',
  'husband',
  'mother',
  'favourit',
  'shower',
  'love',
  'attent',
  'sister',
  'realli',
  'get',
  'first',
  'met',
  'look',
  'say',
  'ye',
  'know',
  'thought',
  'noth',
  'like',
  'year',
  'snide',
  'comment',
  'snide',
  'comment',
  'told',
  'husband',
  'shook',
  'tell',
  'head',
  'feel',
  'insecur',
  'got',
  'marri',
  'year',
  'ago',
  'mother',
  'wore',
  'white',
  'wed',
  'kind',
  'weird',
  'decid',
  'ruin',
  'day',
  'marri',
  'mil',
  'start',
  'send',
  'link',
  'websit',
  'tri',
  'babi',
  'way',
  'keep',
  'husband',
  'satisfi',
  'relationship',
  'let',
  'know',
  'time',
  'babi',
  'would',
  'first',
  'know',
  'christma',
  'bought',
  'topic',
  'babi',
  'dinner',
  'tabl',
  'front',
  'famili',
  'guy',
  'tri',
  'frequent',
  'websit',
  'read',
  'calmli',
  'shut',
  'husband',
  'said',
  'noth',
  'got',
  'home',
  'ask',
  'husband',
  'say',
  'anyth',
  'told',
  'mayb',
  'would',
  'good',
  'take',
  'advic',
  'instead',
  'blame',
  'mother',
  'take',
  'harsh',
  'look',
  'mirror',
  'hurt',
  'apologis',
  'everyth',
  'went',
  'back',
  'normal',
  'fast',
  'forward',
  'wednesday',
  'husband',
  'drop',
  'basket',
  'easter',
  'egg',
  'hunt',
  'in-law',
  'niec',
  'nephew',
  'everi',
  'year',
  'mother',
  'law',
  'said',
  'look',
  'like',
  'gain',
  'bit',
  'pregnant',
  'yet',
  'floor',
  'husband',
  'silent',
  'told',
  'frown',
  'ive',
  'heard',
  'need',
  'work',
  'littl',
  'bit',
  'harder',
  'bedroom',
  'might',
  'work',
  'look',
  'straight',
  'told',
  'go',
  'fuck',
  'mind',
  'busi',
  'told',
  'sensit',
  'need',
  'show',
  'littl',
  'respect',
  'look',
  'babi',
  'left',
  'immedi',
  'went',
  'car',
  'husband',
  'follow',
  'ask',
  'fuck',
  'wrong',
  'told',
  'straight',
  'place',
  'sex',
  'life',
  'want',
  'know',
  'tell',
  'told',
  'suck',
  'need',
  'respect',
  'mother',
  'mean',
  'well',
  'done',
  'even',
  'get',
  'car',
  'stood',
  'yell',
  'back',
  'forth',
  'uber',
  'came',
  'day',
  'im',
  'stay',
  'sister',
  'hous',
  'famili',
  'said',
  'right',
  'receiv',
  'multipl',
  'call',
  'husband',
  'famili',
  'call',
  'bitch',
  'asham',
  'apologis',
  'mother',
  'law',
  'fat',
  'chanc',
  'need',
  'know',
  'wrong',
  'feel',
  'like',
  'im',
  'made',
  'feel',
  'crazi',
  'im',
  'slowli',
  'get',
  'aita',
  'tell',
  'mil',
  'go',
  'fuck',
  'edit',
  'ive',
  'seen',
  'coupl',
  'peopl',
  'mention',
  'thought',
  'would',
  'add',
  'use',
  'condom',
  'husband',
  'said',
  'allerg',
  'latex',
  'never',
  'use',
  'howev',
  'alway',
  'birth',
  'control',
  'notic',
  'recent',
  'pill',
  'go',
  'miss',
  'magic',
  'reapear',
  'abl',
  'take',
  'regularli',
  'edit',
  'hey',
  'ive',
  'read',
  'comment',
  'last',
  'hour',
  'im',
  'gon',
  'na',
  'lie',
  'im',
  'super',
  'freak',
  'im',
  'go',
  'stay',
  'sister',
  'tonight',
  'tomorrow',
  'brother',
  'go',
  'get',
  'import',
  'belong',
  'place',
  'im',
  'gon',
  'na',
  'take',
  'pregnanc',
  'test',
  'tomorrow',
  'case',
  'look',
  'get',
  'lawyer',
  'im',
  'avoid',
  'husband',
  'call',
  'eat',
  'pizza',
  'sister',
  'finger',
  'cross',
  'goe',
  'well',
  'thank',
  'everyon',
  'advic',
  'updat',
  'soon'],
 ['cousin',
  'ted',
  'close',
  'age',
  'year',
  'apart',
  'alway',
  'close',
  'kid',
  'even',
  'adulthood',
  'still',
  'kept',
  'touch',
  'ted',
  'met',
  'maddi',
  'year',
  'ago',
  'start',
  'bring',
  'famili',
  'stuff',
  'problem',
  'maddi',
  'click',
  'talk',
  'famili',
  'stuff',
  'someon',
  'want',
  'hangout',
  'becom',
  'friend',
  'cousin',
  'ted',
  'sister',
  'realli',
  'click',
  'maddi',
  'cool',
  'good',
  'justdont',
  'im',
  'nice',
  'polit',
  'got',
  'way',
  'becom',
  'besti',
  'aunt',
  'ted',
  'mom',
  'realli',
  'push',
  'though',
  'know',
  'age-ish',
  'annoy',
  'anytim',
  'event',
  'shed',
  'find',
  'way',
  'push',
  'us',
  'togeth',
  'felt',
  'like',
  'littl',
  'kid',
  'forc',
  'play',
  'someon',
  'colleg',
  'graduat',
  'parti',
  'grandpar',
  'bigger',
  'houseyard',
  'move',
  'maddi',
  'work',
  'nice',
  'exclud',
  'even',
  'though',
  'inconveni',
  'meant',
  'friend',
  'come',
  'rush',
  'around',
  'anyway',
  'like',
  'said',
  'ive',
  'never',
  'rude',
  'anyth',
  'never',
  'realli',
  'bond',
  'ted',
  'maddi',
  'get',
  'marri',
  'soon',
  'knew',
  'engag',
  'know',
  'wed',
  'anoth',
  'famili',
  'member',
  'ask',
  'get',
  'wed',
  'gift',
  'said',
  'know',
  'said',
  'better',
  'figur',
  'wed',
  'date-',
  'soon',
  'said',
  'oh',
  'know',
  'invit',
  'said',
  'well',
  'mayb',
  'person',
  'still',
  'get',
  'gift',
  'ask',
  'dad',
  'got',
  'invit',
  'guess',
  'ago',
  'said',
  'crappi',
  'invit',
  'reschedul',
  'parti',
  'said',
  'graduat',
  'parti',
  'weddingnow',
  'know',
  'bigger',
  'person',
  'get',
  'gift',
  'petti',
  'want',
  'buy',
  'gift',
  'probabl',
  'invit',
  'ted',
  'futur',
  'event',
  'know',
  'left',
  'everyon',
  'els',
  'famili',
  'invit',
  'mayb',
  'im',
  'cousin',
  'side',
  'mayb',
  'budget',
  'thing',
  'person',
  'want',
  'spend',
  'money',
  'gift',
  'cool',
  'enough',
  'invit',
  'like',
  'birthday',
  'parti',
  'expect',
  'someon',
  'invit',
  'send',
  'birthday',
  'present',
  'aita',
  'send',
  'gift'],
 ['mention',
  'name',
  'age',
  'protect',
  'privaci',
  'daughter',
  'inlwa',
  'sham',
  'kid',
  'son',
  'breadwinn',
  'understand',
  'put',
  'child',
  'care',
  'respons',
  'upon',
  'use',
  'im',
  'money',
  'maker',
  'excus',
  'notic',
  'tag',
  'along',
  'visit',
  'daughter',
  'wed',
  'day',
  'ago',
  'ask',
  'son',
  'wife',
  'come',
  'said',
  'got',
  'mad',
  'told',
  'let',
  'come',
  'said',
  'decis',
  'said',
  'busi',
  'call',
  'said',
  'want',
  'come',
  'told',
  'stay',
  'home',
  'kid',
  'babysitt',
  'enough',
  'wait',
  'till',
  'day',
  'wed',
  'brought',
  'trust',
  'babysitt',
  'stay',
  'kid',
  'took',
  'daughter',
  'inlaw',
  'wed',
  'got',
  'car',
  'son',
  'saw',
  'us',
  'angrili',
  'ask',
  'told',
  'back',
  'said',
  'brought',
  'told',
  'behavior',
  'unhing',
  'toward',
  'kid',
  'mom',
  'berat',
  'say',
  'im',
  'get',
  'involv',
  'marriag',
  'im',
  'end',
  'leav',
  'wed',
  'go',
  'bar',
  'call',
  'later',
  'say',
  'ruin',
  'night',
  'said',
  'im',
  'enabl',
  'wife',
  'attitud',
  'help',
  'enforc',
  'boundari',
  'expect',
  'apolog',
  'husband',
  'back',
  'say',
  'overstep',
  'aita',
  'overstep'],
 ['cousin',
  'extend',
  'famili',
  'mother',
  'side',
  'dote',
  'sinc',
  'youngest',
  'uncl',
  'rather',
  'late',
  'life',
  'late',
  'born',
  'larg',
  'age',
  'gap',
  'us',
  'tend',
  'treat',
  'niec',
  'cousin',
  'age',
  'niec',
  'nephew',
  'dad',
  'side',
  'cousin',
  'youngest',
  'famili',
  'tend',
  'let',
  'get',
  'away',
  'lot',
  'stuff',
  'let',
  'get',
  'away',
  'age',
  'im',
  'probabl',
  'one',
  'famili',
  'even',
  'reprimand',
  'someth',
  'shouldntlik',
  'pinch',
  'famili',
  'helper',
  'use',
  'hous',
  'sofa',
  'person',
  'see',
  'saw',
  'enter',
  'colleg',
  'late',
  'proud',
  'abl',
  'graduat',
  'colleg',
  'high',
  'honour',
  'four',
  'year',
  'natur',
  'want',
  'parent',
  'howev',
  'appar',
  'cousin',
  'import',
  'piano',
  'recit',
  'graduat',
  'day',
  'absolut',
  'want',
  'parent',
  'along',
  'thought',
  'parent',
  'would',
  'least',
  'attend',
  'colleg',
  'graduat',
  'nooooo',
  'appar',
  'niec',
  'piano',
  'recit',
  'import',
  'daughter',
  'graduat',
  'older',
  'brother',
  'girlfriend',
  'one',
  'attend',
  'graduat',
  'fine',
  'im',
  'adult',
  'brother',
  'girlfriend',
  'loss',
  'recent',
  'due',
  'covid',
  'restrict',
  'lift',
  'countri',
  'abl',
  'dine',
  'famili',
  'decid',
  'night',
  'dinner',
  'leav',
  'restaur',
  'howev',
  'got',
  'phone',
  'call',
  'work',
  'step',
  'away',
  'answer',
  'whilst',
  'dad',
  'foot',
  'bill',
  'due',
  'high',
  'nois',
  'level',
  'final',
  'finish',
  'went',
  'back',
  'famili',
  'nowher',
  'sight',
  'call',
  'phone',
  'went',
  'unansw',
  'point',
  'start',
  'panic',
  'strand',
  'middl',
  'nowher',
  'phone',
  'made',
  'multipl',
  'tri',
  'parent',
  'phone',
  'answer',
  'left',
  'choic',
  'hail',
  'equival',
  'uber',
  'countri',
  'went',
  'back',
  'home',
  'fast',
  'forward',
  'hour',
  'pm',
  'parent',
  'uncl',
  'famili',
  'enter',
  'hous',
  'laugh',
  'someth',
  'uncl',
  'go',
  'got',
  'tire',
  'wait',
  'left',
  'told',
  'thing',
  'earlierthat',
  'answer',
  'phone',
  'call',
  'counter',
  'answer',
  'phone',
  'mom',
  'answer',
  'oh',
  '<',
  'cousin',
  '>',
  'want',
  'ice',
  'cream',
  'went',
  'total',
  'blew',
  'point',
  'say',
  'forgot',
  'daughter',
  'niec',
  'want',
  'ice',
  'cream',
  'heat',
  'anger',
  'might',
  'said',
  'ought',
  'parent',
  'even',
  'uncl',
  'famili',
  'mad',
  'upset',
  'want',
  'get',
  'cousin',
  'ice',
  'cream',
  'say',
  'im',
  'adult',
  'alway',
  'go',
  'home',
  'im',
  'upset',
  'aita'],
 ['husband',
  'yo',
  'yo',
  'daughter',
  'yo',
  'happi',
  'told',
  'girl',
  'anoth',
  'ultrasound',
  'told',
  'anoth',
  'girl',
  'husband',
  'happi',
  'turn',
  'told',
  'wrong',
  'actual',
  'boy',
  'ny',
  'husband',
  'freak',
  'excitemet',
  'reaction',
  'us',
  'boy',
  '*',
  'noth',
  '*',
  'like',
  'either',
  'reaction',
  'girl',
  'actual',
  'jump',
  'around',
  'yell',
  'immedi',
  'call',
  'friend',
  'famili',
  'kept',
  'hug',
  'swing',
  'daughter',
  'around',
  'tell',
  'get',
  'brother',
  'confront',
  'excit',
  'girl',
  'said',
  'caus',
  'want',
  'boy',
  'got',
  'piss',
  'want',
  'babi',
  'shower',
  'guess',
  'realli',
  'babi',
  'shower',
  'ask',
  'anyth',
  'still',
  'birth',
  'thought',
  'kid',
  'first',
  'realiz',
  'seriou',
  'got',
  'realli',
  'upset',
  'start',
  'argument',
  'wibta',
  'let',
  'attend',
  'babi',
  'shower',
  'birth'],
 ['child',
  'year',
  'ago',
  'nova',
  'terribl',
  'person',
  'back',
  'stay',
  'life',
  'deepli',
  'regret',
  'month',
  'ago',
  'contact',
  'mom',
  'see',
  'see',
  'child',
  'happili',
  'agre',
  'copar',
  'seem',
  'reliev',
  'understand',
  'consid',
  'kid',
  'younger',
  'nova',
  'nova',
  'bit',
  'distant',
  'first',
  'better',
  'gener',
  'good',
  'kid',
  'someth',
  'realiz',
  'punish',
  'seem',
  'work',
  'also',
  'disrespect',
  'time',
  'tell',
  'someth',
  'punish',
  'ground',
  'leav',
  'without',
  'permiss',
  'ask',
  'mom',
  'punish',
  'said',
  'never',
  'punish',
  'ive',
  'heard',
  'nova',
  'seem',
  'like',
  'would',
  'cuss',
  'yell',
  'think',
  'good',
  'punish',
  'kid',
  'night',
  'ago',
  'nova',
  'ask',
  'live',
  'told',
  'id',
  'love',
  'live',
  'one',
  'condit',
  'follow',
  'rule',
  'respect',
  'say',
  'anyth',
  'went',
  'back',
  'mom',
  'home',
  'mom',
  'nova',
  'ask',
  'told',
  'ah',
  'kid',
  'ask',
  'deadbeat',
  'dad',
  'take',
  'must',
  'someth',
  'wrong',
  'make',
  'condit',
  'say',
  'ye',
  'take',
  'realli',
  'wrong',
  'condit',
  'cant',
  'parent',
  'listen',
  'mom',
  'daughter',
  'refus',
  'talk',
  'mom',
  'like',
  'problem',
  'seem',
  'busi',
  'kid',
  'think',
  'would',
  'like',
  'weekend',
  'fun',
  'parent',
  'realli',
  'problem',
  'edit',
  'took',
  'nova',
  'ice',
  'cream',
  'ask',
  'want',
  'live',
  'said',
  'want',
  'live',
  'anymor',
  'gon',
  'na',
  'send',
  'back',
  'anyway',
  'apolog',
  'told',
  'would',
  'never',
  'send',
  'back',
  'would',
  'happi',
  'live',
  'want',
  'know',
  'reason',
  'talk',
  'said',
  'want',
  'sleep',
  'turn',
  'start',
  'come',
  'home',
  'mom',
  'gave',
  'bedroom',
  'younger',
  'sister',
  'one',
  'babi',
  'cri',
  'night',
  'keep',
  'awak',
  'told',
  'talk',
  'mom',
  'stay',
  'gon',
  'na',
  'rule',
  'expect',
  'follow',
  'even',
  'still',
  'love',
  'leav',
  'said',
  'gon',
  'na',
  'tri',
  'promis',
  'appar',
  'annoy',
  'fun',
  'call',
  'mom',
  'expect',
  'problem',
  'let',
  'live'],
 ['sister',
  'take',
  'huge',
  'pride',
  'virgin',
  'cours',
  'amaz',
  'rais',
  'religi',
  'famili',
  'parent',
  'give',
  'shit',
  'pure',
  'belief',
  'want',
  'wait',
  'marri',
  'judgment',
  'kept',
  'sex',
  'life',
  'around',
  'twist',
  'turn',
  'event',
  'end',
  'get',
  'pregnant',
  'two',
  'month',
  'iud',
  'pregnant',
  'caus',
  'sister',
  'dislik',
  'even',
  'shame',
  'sex',
  'tell',
  'hope',
  'father',
  'would',
  'leav',
  'singl',
  'mom',
  'teach',
  'lesson',
  'casual',
  'sex',
  'safe',
  'say',
  'cut',
  'pregnanc',
  'beg',
  'apolog',
  'way',
  'back',
  'son',
  'born',
  'becam',
  'cordial',
  'sister',
  'boyfriend',
  'sinc',
  'junior',
  'high',
  'school',
  'im',
  'alway',
  'boast',
  'theyr',
  'wait',
  'till',
  'theyr',
  'marri',
  'relationship',
  'built',
  'trust',
  'actual',
  'love',
  'lust',
  'blah',
  'blah',
  'surpris',
  'week',
  'ago',
  'old',
  'cowork',
  'work',
  'pregnant',
  'confid',
  'drama',
  'sister',
  'cut',
  'time',
  'call',
  'tell',
  'sister',
  'boyfriend',
  'messag',
  'tinder',
  'sent',
  'proof',
  'profil',
  'fake',
  'name',
  'one',
  'blurri',
  'mirror',
  'pictur',
  'clearli',
  'messag',
  'said',
  'girlfriend',
  'know',
  'one',
  'hook',
  'cowork',
  'told',
  'know',
  'unmatch',
  'luckili',
  'taken',
  'screenshot',
  'add',
  'onto',
  'shock',
  'told',
  'found',
  'sister',
  'page',
  'mine',
  'alreadi',
  'messag',
  'sister',
  'block',
  'immedi',
  'say',
  'anyth',
  'birthday',
  'recent',
  'basement',
  'hous',
  'small',
  'get',
  'togeth',
  'famili',
  'boyfriend',
  'friend',
  'surpris',
  'surpris',
  'end',
  'parti',
  'son',
  'woke',
  'went',
  'get',
  'brought',
  'downstair',
  'littl',
  'cousin',
  'play',
  'say',
  'cute',
  'sister',
  'goe',
  'awww',
  'cute',
  'look',
  'like',
  'daddi',
  'wait',
  '____',
  'one',
  'ten',
  'guy',
  'daddi',
  'boyfriend',
  'start',
  'die',
  'laughter',
  'everyon',
  'went',
  'quiet',
  'embarrass',
  'said',
  'name',
  'trevor',
  'met',
  'tinder',
  'girlfriend',
  'care',
  'sleep',
  'girl',
  'think',
  'know',
  'smirk',
  'boyfriend',
  'thought',
  'theyd',
  'embarrass',
  'leav',
  'without',
  'expos',
  'sister',
  'start',
  'scream',
  'say',
  'im',
  'bitch',
  'get',
  'fuck',
  'parti',
  'went',
  'room',
  'son',
  'littl',
  'cousin',
  'put',
  'two',
  'two',
  'togeth',
  'made',
  'tinder',
  'find',
  'profil',
  'show',
  'sister',
  'downstair',
  'could',
  'hear',
  'shriek',
  'kick',
  'everyon',
  'parent',
  'even',
  'care',
  'joke',
  'theyr',
  'say',
  'aita'],
 ['throw',
  'away',
  'account',
  'brother',
  'came',
  'wife',
  'yesterday',
  'spent',
  'night',
  'wife',
  'worth',
  'mention',
  'come',
  'muslim',
  'famili',
  'wife',
  'brother',
  'wife',
  'arriv',
  'wife',
  'get',
  'home',
  'work',
  'wear',
  'scrub',
  'name',
  'badg',
  'made',
  'polit',
  'convers',
  'brother',
  'sil',
  'wife',
  'went',
  'chang',
  'cloth',
  'also',
  'worth',
  'mention',
  'wife',
  'tattoo',
  'pierc',
  'dy',
  'hair',
  'stretch',
  'ear',
  'much',
  'stereotyp',
  'goth',
  'girl',
  'done',
  'came',
  'back',
  'live',
  'room',
  'tank',
  'top',
  'pair',
  'short',
  'brother',
  'avert',
  'eye',
  'sister',
  'law',
  'stop',
  'look',
  'wife',
  'wife',
  'tattoo',
  'thigh',
  'ankl',
  'left',
  'leg',
  'tattoo',
  'calf',
  'right',
  'leg',
  'wife',
  'final',
  'notic',
  'ask',
  'sil',
  'like',
  'tattoo',
  'simpli',
  'blush',
  'wife',
  'smile',
  'tell',
  'fine',
  'im',
  'use',
  'stare',
  'forget',
  'mani',
  'tattoo',
  'pierc',
  'sil',
  'brother',
  'ask',
  'mani',
  'pierc',
  'almost',
  'tattoo',
  'even',
  'continu',
  'dinner',
  'convers',
  'turn',
  'wife',
  'tattoo',
  'sil',
  'ask',
  'plan',
  'wife',
  'tell',
  'ye',
  'current',
  'work',
  'full',
  'back',
  'piec',
  'brother',
  'roll',
  'eye',
  'continu',
  'eat',
  'shortli',
  'dinner',
  'get',
  'readi',
  'bed',
  'worth',
  'mention',
  'wife',
  'sleep',
  'shirt',
  'pj',
  'pant',
  'point',
  'wife',
  'nude',
  'semi',
  'nude',
  'go',
  'bed',
  'brother',
  'come',
  'bedroom',
  'wife',
  'process',
  'put',
  'tattoo',
  'lotion',
  'tattoo',
  'back',
  'shirt',
  'pull',
  'back',
  'arm',
  'chest',
  'cover',
  'breast',
  'brother',
  'see',
  'run',
  'room',
  'wife',
  'embarrass',
  'tell',
  'worri',
  'fault',
  'knock',
  'im',
  'done',
  'go',
  'see',
  'brother',
  'need',
  'tell',
  'see',
  'wife',
  'state',
  'undress',
  'need',
  'husband',
  'tell',
  'cover',
  'wife',
  'need',
  'see',
  'bodi',
  'need',
  'see',
  'bodi',
  'tell',
  'knock',
  'fault',
  'wife',
  'left',
  'earli',
  'next',
  'morn',
  'ive',
  'get',
  'lot',
  'phone',
  'call',
  'parent',
  'say',
  'wife',
  'loos',
  'woman',
  'need',
  'cover',
  'tell',
  'leav',
  'alon',
  'parent',
  'brother',
  'want',
  'apolog',
  'us',
  'asshol',
  'updat',
  'hello',
  'everyon',
  'final',
  'home',
  'turn',
  'crazi',
  'day',
  'thought',
  'id',
  'take',
  'time',
  'updat',
  'everyon',
  'situat',
  'go',
  'tonight',
  'went',
  'dinner',
  'parent',
  'brother',
  'wife',
  'moment',
  'sat',
  'could',
  'tell',
  'famili',
  'uncomfort',
  'tri',
  'gentli',
  'break',
  'ice',
  'talk',
  'weather',
  'final',
  'mother',
  'ask',
  'go',
  'apolog',
  'incid',
  'home',
  'wife',
  'kind',
  'women',
  'start',
  'apolog',
  'explain',
  'cut',
  'explain',
  'brother',
  'barg',
  'bedroom',
  'without',
  'knock',
  'door',
  'close',
  'fell',
  'deaf',
  'ear',
  'final',
  'demand',
  'know',
  'dislik',
  'wife',
  'much',
  'answer',
  'proper',
  'wife',
  'kid',
  'weve',
  'marri',
  'go',
  'three',
  'year',
  'wife',
  'decidedli',
  'child',
  'free',
  'due',
  'lot',
  'factor',
  'get',
  'wife',
  'hardest',
  'work',
  'woman',
  'ever',
  'meet',
  'work',
  'full',
  'time',
  'goe',
  'school',
  'full',
  'time',
  'saw',
  'red',
  'final',
  'snap',
  'back',
  'parent',
  'wife',
  'proper',
  'marri',
  'coupl',
  'children',
  'wife',
  'proper',
  'wife',
  'support',
  'love',
  'kind',
  'woman',
  'ever',
  'met',
  'mother',
  'ask',
  'would',
  'take',
  'care',
  'us',
  'old',
  'said',
  'would',
  'take',
  'care',
  'convers',
  'turn',
  'tattoo',
  'parent',
  'knew',
  'one',
  'forearm',
  'collarbon',
  'wife',
  'pull',
  'sleev',
  'show',
  'mani',
  'mani',
  'tattoo',
  'mother',
  'nearli',
  'faint',
  'wife',
  'rel',
  'heavili',
  'tattoo',
  'woman',
  'love',
  'brother',
  'turn',
  'ask',
  'ask',
  'wife',
  'pull',
  'sleev',
  'back',
  'final',
  'snap',
  'tell',
  'exactli',
  'shove',
  'opinion',
  'bodi',
  'go',
  'happen',
  'ever',
  'walk',
  'bedroom',
  'without',
  'knock',
  'goe',
  'red',
  'quiet',
  'wife',
  'turn',
  'say',
  'leav',
  'get',
  'follow',
  'outsid',
  'tell',
  'longer',
  'want',
  'relationship',
  'famili',
  'prevent',
  'see',
  'tell',
  'longer',
  'want',
  'see',
  'either',
  'apolog',
  'treat',
  'like',
  'famili',
  'sinc',
  'return',
  'home',
  'wife',
  'play',
  'floor',
  'two',
  'pit',
  'bull',
  'australian',
  'shepherd',
  'puppi',
  'may',
  'longer',
  'parent',
  'know',
  'ill',
  'alway',
  'wife',
  'live',
  'updat'],
 ['context',
  'parent',
  'mexican',
  'although',
  'speak',
  'english',
  'well',
  'dad',
  'sound',
  'bit',
  'like',
  'gloria',
  'modern',
  'famili',
  'sibl',
  'mf',
  'speak',
  'spanish',
  'elder',
  'brother',
  'got',
  'marri',
  'wife',
  'two',
  'year',
  'ago',
  'none',
  'sibl',
  'realli',
  'like',
  'believ',
  'smartest',
  'girl',
  'whole',
  'world',
  'alway',
  'alway',
  'correct',
  'us',
  'shit',
  'mr',
  'smarti',
  'pant',
  'know',
  'one',
  'languag',
  'din',
  'us',
  'parent',
  'speak',
  'english',
  'yesterday',
  'mom',
  'made',
  'bomb',
  'ass',
  'dinner',
  'invit',
  'brother',
  'wife',
  'sister',
  'come',
  'eat',
  'us',
  'brother',
  'talk',
  'pangea',
  'soon',
  'came',
  'trough',
  'door',
  'correct',
  'us',
  'pronunci',
  'even',
  'tho',
  'said',
  'spanish',
  'english',
  'roll',
  'eye',
  'said',
  'noth',
  'want',
  'spoil',
  'dinner',
  'parent',
  'said',
  'said',
  'bitchi',
  'comment',
  'sat',
  'eat',
  'quiet',
  'famili',
  'talk',
  'togeth',
  'group',
  'sinc',
  'sil',
  'english',
  'younger',
  'brother',
  'talk',
  'dad',
  'movi',
  'guy',
  'escap',
  'boat',
  'dad',
  'say',
  '*',
  'boat',
  '*',
  '*',
  'bought',
  '*',
  'bro',
  'care',
  'pretti',
  'obviou',
  'given',
  'context',
  'said',
  '*',
  'bought',
  '*',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'innoc',
  'dad',
  'tri',
  'say',
  '*',
  'boat',
  '*',
  '*',
  'bought',
  '*',
  'sound',
  'said',
  '*',
  '*',
  'boat',
  '*',
  '*',
  '*',
  'bought',
  '*',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'dad',
  'obvious',
  'embarrass',
  'tri',
  'sigh',
  'said',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'its-',
  'cut',
  'said',
  'bitch',
  'cant',
  'say',
  'talk',
  'anyway',
  'brother',
  'mom',
  'look',
  'sil',
  'said',
  'help',
  'said',
  'rude',
  'mani',
  'languag',
  'speak',
  'correct',
  'someon',
  'dad',
  'took',
  'hand',
  'smile',
  'thing',
  'got',
  'awkward',
  'left',
  'brother',
  'demand',
  'apolog',
  'ah',
  'dad',
  'think',
  'mom',
  'sure',
  'idk',
  'aita'],
 ['wife',
  'live',
  'across',
  'countri',
  'famili',
  'visit',
  'wed',
  'funer',
  'big',
  'family-rel',
  'event',
  'wife',
  'deaf',
  'ive',
  'never',
  'close',
  'anyon',
  'famili',
  'grandpar',
  'cousin',
  'aunt',
  'uncl',
  'brother',
  'father',
  'singl',
  'dad',
  'never',
  'bother',
  'look',
  'past',
  'disabl',
  'grow',
  'bare',
  'minimum',
  'fed',
  'cloth',
  'made',
  'small',
  'talk',
  'never',
  'actual',
  'tri',
  'get',
  'know',
  'anyth',
  'beyond',
  'even',
  'learn',
  'sign',
  'languag',
  'talk',
  'read',
  'lip',
  'im',
  'often',
  'left',
  'convers',
  'never',
  'bother',
  'get',
  'know',
  'wife',
  'either',
  'think',
  'stupid',
  'incap',
  'anyth',
  'cant',
  'hear',
  'still',
  'treat',
  'us',
  'like',
  'children',
  'hate',
  'especi',
  'wife',
  'purpos',
  'visit',
  'sinc',
  'success',
  'career',
  'wife',
  'weve',
  'complet',
  'sinc',
  'colleg',
  'healthi',
  'bank',
  'account',
  'travel',
  'lot',
  'readi',
  'buy',
  'nice',
  'hous',
  'wait',
  'hous',
  'market',
  'cool',
  'despit',
  'famili',
  'think',
  'wife',
  'famili',
  'take',
  'care',
  'us',
  'ie',
  'help',
  'financi',
  'manag',
  'financ',
  'walk',
  'us',
  'everyday',
  'task',
  'like',
  'buy',
  'groceri',
  'pay',
  'bill',
  'believ',
  'intellig',
  'perfectli',
  'capabl',
  'peopl',
  'done',
  'well',
  'older',
  'brother',
  'deaf',
  'close',
  'whole',
  'famili',
  'life',
  'togeth',
  'work',
  'odd',
  'job',
  'unstabl',
  'relationship',
  'regularli',
  'mooch',
  'peopl',
  'yet',
  'famili',
  'still',
  'rever',
  'smart',
  'capabl',
  'person',
  'narcissist',
  'alway',
  'treat',
  'poorli',
  'famili',
  'enabl',
  'bad',
  'behavior',
  'anoth',
  'reason',
  'keep',
  'arm',
  'length',
  'hope',
  'ive',
  'given',
  'enough',
  'context',
  'issu',
  'wife',
  '-year-old',
  'daughter',
  'wife',
  'pregnant',
  'decid',
  'want',
  'famili',
  'daughter',
  'life',
  'healthi',
  'around',
  'peopl',
  'constantli',
  'disrespect',
  'parent',
  'turn',
  'deaf',
  'treat',
  'respect',
  'either',
  'one',
  'famili',
  'keep',
  'touch',
  'anyway',
  'see',
  'reason',
  'volunt',
  'inform',
  'never',
  'told',
  'daughter',
  'keep',
  'social',
  'media',
  'visit',
  'sinc',
  'born',
  'stay',
  'home',
  'wife',
  'brother',
  'somehow',
  'found',
  'daughter',
  'exist',
  'week',
  'ago',
  'whole',
  'famili',
  'upset',
  'blame',
  'wife',
  'think',
  'control',
  'true',
  'accus',
  'deni',
  'daughter',
  'famili',
  'couldv',
  'help',
  'rais',
  'mani',
  'differ',
  'way',
  'may',
  'point',
  'im',
  'start',
  'wonder',
  'wife',
  'selfish',
  'keep',
  'daughter',
  'big',
  'famili',
  'full',
  'cousin',
  'age',
  'hang-up',
  'aita'],
 ['husband',
  'older',
  'sister',
  'mom',
  'three',
  'age',
  'sil',
  'allow',
  'lot',
  'behavior',
  'quit',
  'destruct',
  'messi',
  'kid',
  'fine',
  'hous',
  'least',
  'mine',
  'like',
  'husband',
  'told',
  'need',
  'make',
  'clear',
  'hous',
  'rule',
  'differ',
  'brush',
  'kid',
  'kick',
  'ball',
  'around',
  'insid',
  'break',
  'possess',
  'bounc',
  'furnitur',
  'shoe',
  'leav',
  'stain',
  'empti',
  'storag',
  'contain',
  'hous',
  'floor',
  'walk',
  'away',
  'want',
  'get',
  'leav',
  'rest',
  'husband',
  'step',
  'ask',
  'respons',
  'get',
  'back',
  'momdad',
  'awar',
  'true',
  'home',
  'put',
  'stuff',
  'go',
  'insid',
  'get',
  'anyway',
  'said',
  'shoe',
  'insid',
  'straight',
  'said',
  'also',
  'gotten',
  'ball',
  'take',
  'away',
  'play',
  'insid',
  'theyr',
  'il',
  'hous',
  'oldest',
  'even',
  'told',
  'fil',
  'fuck',
  'correct',
  'made',
  'decis',
  'husband',
  'want',
  'deal',
  'home',
  'without',
  'come',
  'sil',
  'attempt',
  'come',
  'kid',
  'husband',
  'away',
  'work',
  'told',
  'allow',
  'told',
  'speak',
  'husband',
  'find',
  'home',
  'visit',
  'allow',
  'piss',
  'husband',
  'told',
  'decid',
  'let',
  'anymor',
  'either',
  'im',
  'worst',
  'offend',
  'eye',
  'aita'],
 ['im',
  'pregnant',
  'due',
  'around',
  'time',
  'also',
  'like',
  'would',
  'never',
  'spend',
  'time',
  'outsid',
  'someth',
  'famili',
  'relat',
  'even',
  'im',
  'hang',
  'space',
  'babi',
  'shower',
  'organ',
  'cousin',
  'good',
  'friend',
  'well',
  'two',
  'close',
  'friend',
  'shower',
  'today',
  'actual',
  'stepsist',
  'nobodi',
  'offer',
  'throw',
  'shower',
  'week',
  'ago',
  'mom',
  'ask',
  'let',
  'share',
  'mine',
  'said',
  'stepsist',
  'ask',
  'throw',
  'one',
  'said',
  'yet',
  'close',
  'enough',
  'invit',
  'im',
  'go',
  'spend',
  'money',
  'throw',
  'one',
  'mom',
  'told',
  'nobodi',
  'none',
  'friend',
  'offer',
  'nobodi',
  'bio',
  'famili',
  'side',
  'offer',
  'either',
  'told',
  'mom',
  'fault',
  'nobodi',
  'point',
  'time',
  'ask',
  'peopl',
  'want',
  'support',
  'network',
  'outsid',
  'husband',
  'mom',
  'said',
  'sister',
  'repli',
  'lack',
  'support',
  'network',
  'babi',
  'shower',
  'problem',
  'context',
  'stepsist',
  'lost',
  'parent',
  'mom',
  'marri',
  'dad',
  'alway',
  'claim',
  'loss',
  'greater',
  'mine',
  'outright',
  'told',
  'right',
  'griev',
  'way',
  'griev',
  'mom',
  'made',
  'lie',
  'patern',
  'grandpar',
  'call',
  'unwant',
  'bastard',
  'jealou',
  'take',
  'spent',
  'time',
  'told',
  'cousin',
  'patern',
  'cousin',
  'treat',
  'like',
  'famili',
  'shed',
  'get',
  'troubl',
  'got',
  'found',
  'also',
  'kind',
  'person',
  'expect',
  'want',
  'would',
  'never',
  'reciproc',
  'dislik',
  'consid',
  'famili',
  'still',
  'call',
  'child',
  'mom',
  'husband',
  'even',
  'stepsist',
  'outrag',
  'would',
  'callou',
  'say',
  'care',
  'niec',
  'aita'],
 ['brother',
  'hugo',
  'hugo',
  'got',
  'then-girlfriend',
  'ami',
  'pregnant',
  'daughter',
  'ashley',
  'later',
  'got',
  'marri',
  'babi',
  'boy',
  'year',
  'ive',
  'becom',
  'close',
  'ashley',
  'im',
  'home',
  'live',
  'abroad',
  'take',
  'show',
  'shop',
  'hors',
  'ride',
  'etc',
  'also',
  'keep',
  'contact',
  'via',
  'text',
  'bright',
  'thought',
  'pleasur',
  'around',
  'ami',
  'never',
  'like',
  'mostli',
  'put',
  'asid',
  'ashley',
  'bf',
  'visit',
  'famili',
  'christma',
  'leav',
  'go',
  'ski',
  'arrang',
  'ashley',
  'come',
  'ski',
  'stay',
  'us',
  'new',
  'year',
  'ami',
  'keen',
  'idea',
  'relent',
  'ashley',
  'excit',
  'learn',
  'ski',
  'school',
  'friend',
  'took',
  'bf',
  'hire',
  'car',
  'pick',
  'ashley',
  'school',
  'friday',
  'excit',
  'sport',
  'car',
  'let',
  'friend',
  'sit',
  'take',
  'pictur',
  'dinner',
  'ask',
  'would',
  'drive',
  'chaperon',
  'friend',
  'go',
  'ice',
  'skate',
  'tuesday',
  'town',
  'hugo',
  'said',
  'probabl',
  'want',
  'look',
  'bunch',
  'kid',
  'ami',
  'alreadi',
  'plan',
  'chaperon',
  'ashley',
  'ignor',
  'beg',
  'chaperon',
  'realli',
  'mind',
  'ami',
  'look',
  'annoy',
  'said',
  'want',
  'mess',
  'establish',
  'plan',
  'ashley',
  'kept',
  'push',
  'said',
  'want',
  'ami',
  'come',
  'ami',
  'dress',
  'badli',
  'never',
  'fun',
  'embarrass',
  'hugo',
  'told',
  'apologis',
  'also',
  'kept',
  'insist',
  'true',
  'ami',
  'got',
  'teari',
  'hugo',
  'kept',
  'tell',
  'ashley',
  'shed',
  'upset',
  'mother',
  'made',
  'ashley',
  'angrier',
  'dug',
  'heel',
  'told',
  'allow',
  'go',
  'ice',
  'skate',
  'speak',
  'ami',
  'yesterday',
  'ami',
  'hugo',
  'came',
  'said',
  'want',
  'ashley',
  'come',
  'ski',
  'anymor',
  'ami',
  'feel',
  'like',
  'ashley',
  'need',
  'spend',
  'time',
  'famili',
  'hugo',
  'support',
  'ask',
  'would',
  'tell',
  'ashley',
  'bf',
  'chang',
  'plan',
  'go',
  'trip',
  'anymor',
  'ask',
  'said',
  'told',
  'ashley',
  'truth',
  'would',
  'blame',
  'ami',
  'would',
  'defeat',
  'point',
  'tri',
  'build',
  'bridg',
  'ashley',
  'said',
  'understand',
  'feel',
  'right',
  'lie',
  'ashley',
  'parent',
  'made',
  'decis',
  'need',
  'deal',
  'consequ',
  'push',
  'onto',
  'ami',
  'said',
  'care',
  'ashley',
  'would',
  'realis',
  'best',
  'fall',
  'sword',
  'rather',
  'alien',
  'mother',
  'said',
  'hugo',
  'said',
  'take',
  'wednesday',
  'think',
  'ashley',
  'still',
  'standoffish',
  'mother',
  'know',
  'find',
  'mother',
  'cancel',
  'ski',
  'trip',
  'get',
  'wors',
  'im',
  'wonder',
  'go',
  'along',
  'ami',
  'plan',
  'want',
  'best',
  'ashley',
  'aita',
  'edit',
  'add',
  'background',
  'ami',
  'ashley',
  'relationship',
  'comment',
  'elsewher',
  'lot',
  'come',
  'ami',
  'tri',
  'hard',
  'ashley',
  'friend',
  'ami',
  'young',
  'ashley',
  'quit',
  'isol',
  'care',
  'hugo',
  'work',
  'went',
  'uni',
  'cut',
  'parent',
  'time',
  'threw',
  'effort',
  'mum',
  'close',
  'ashley',
  'humanli',
  'possibl',
  'ashley',
  'explain',
  'becom',
  'suffoc',
  'tri',
  'forg',
  'circl',
  'feel',
  'like',
  'ami',
  'insist',
  'part',
  'also',
  'refus',
  'engag',
  'level',
  'second',
  'part',
  'parent',
  'pay',
  'ashley',
  'attend',
  'prestigi',
  'privat',
  'school',
  'hugo',
  'ami',
  'nowher',
  'near',
  'affluent',
  'famili',
  'ashley',
  'feel',
  'bit',
  'left',
  'part',
  'reason',
  'chip',
  'extra',
  'curricular',
  'activ',
  'fact',
  'alway',
  'feel',
  'like',
  'fit',
  'hard',
  'school',
  'full',
  'non-work',
  'rang',
  'roverbirkin',
  'mother',
  'either',
  'cool',
  'absent',
  'ami',
  'neither',
  'involv',
  'ashley',
  'find',
  'stifl',
  'want',
  'involv',
  'social',
  'life',
  'also',
  'opinion',
  'ashley',
  'tri',
  'get',
  'emot',
  'space',
  'mother',
  'way',
  'know',
  '-',
  'make',
  'want',
  'spend',
  'time',
  'ami',
  'respond',
  'request',
  'think',
  'resort',
  'mean',
  'obvious',
  'okay',
  'edit',
  'sinc',
  'ask',
  'lot',
  'ashley',
  'talk',
  'sinc',
  'dinner',
  'know',
  'think',
  'said',
  'said',
  'weve',
  'talk',
  'even',
  'said',
  'said',
  'said',
  'go',
  'ham',
  'tell',
  'entitledspoiltthrow',
  'kitchen',
  'sink',
  'know',
  'think',
  'wrong',
  'agre',
  'updat',
  'anyon',
  'interest',
  '-',
  'httpswwwredditcomramitheassholecommentsfwzupdate_my_brother_and_sil_asked_me_to_lie_to_mi'],
 ['im',
  'emerg',
  'medic',
  'dispatch',
  'basic',
  'mean',
  'call',
  'emerg',
  'need',
  'ambul',
  'chanc',
  'itll',
  'go',
  'reward',
  'stress',
  'job',
  'call',
  'ive',
  'handl',
  'give',
  'nightmar',
  'chang',
  'job',
  'hour',
  'howev',
  'extrem',
  'unsoci',
  'sometim',
  'get',
  'home',
  'routin',
  'get',
  'home',
  'ill',
  'quickli',
  'chang',
  'go',
  'hour',
  'long',
  'jog',
  'listen',
  'podcast',
  'jog',
  'take',
  'boyfriend',
  'bakeri',
  'share',
  'meal',
  'breakfast',
  'dinner',
  'day',
  'work',
  'kind',
  'shift',
  'time',
  'see',
  'help',
  'set',
  'littl',
  'head',
  'back',
  'home',
  'sleep',
  'noth',
  'abnorm',
  'ever',
  'happen',
  'new',
  'neighbour',
  'recent',
  'move',
  'cul-de-sac',
  'woman',
  'late',
  'earli',
  'im',
  'sure',
  'know',
  'neighbour',
  'well',
  'often',
  'abil',
  'socialis',
  'due',
  'work',
  'hour',
  'one',
  'recent',
  'jog',
  'paus',
  'way',
  'cul-de-sac',
  'pavement',
  'near',
  'home',
  'pick',
  'podcast',
  'phone',
  'come',
  'shout',
  'near',
  'home',
  'better',
  'get',
  'call',
  'polic',
  'quickli',
  'apologis',
  'explain',
  'im',
  'neighbour',
  'jog',
  'believ',
  'sight',
  'go',
  'unlock',
  'front',
  'door',
  'prove',
  'ye',
  'live',
  'kept',
  'shout',
  'polic',
  'stop',
  'retreat',
  'back',
  'home',
  'continu',
  'jog',
  'except',
  'watch',
  'next',
  'time',
  'jog',
  'next',
  'next',
  'time',
  'call',
  'vagu',
  'threat',
  'polic',
  'time',
  'scare',
  'children',
  'alway',
  'time',
  'admit',
  'id',
  'final',
  'enough',
  'laugh',
  'im',
  'foot',
  'tall',
  'woman',
  'look',
  'like',
  'solid',
  'breez',
  'would',
  'blow',
  'also',
  'told',
  'mind',
  'fuck',
  'busi',
  'seem',
  'like',
  'weirdo',
  'alway',
  'watch',
  'go',
  'jog',
  'hour',
  'also',
  'told',
  'call',
  'say',
  'co-work',
  'im',
  'proud',
  'lost',
  'temper',
  'get',
  'alway',
  'boyfriend',
  'suggest',
  'share',
  'meal',
  'day',
  'mayb',
  'anxieti',
  'see',
  'someon',
  'outsid',
  'earli',
  'put',
  'edg',
  'handl',
  'poorli',
  'admit',
  'felt',
  'guilti',
  'id',
  'thought',
  'jog',
  'hour',
  'shift',
  'harmless',
  'im',
  'use',
  'weird',
  'hour',
  'asshol',
  'jog',
  'time',
  'would',
  'freak',
  'one',
  'neighbour'],
 ['im',
  '-year-old',
  'man',
  'wife',
  'jess',
  '-year-old',
  'woman',
  'marri',
  'three',
  'year',
  'six',
  'month',
  'ago',
  'start',
  'experi',
  'erectil',
  'dysfunct',
  'larg',
  'spur',
  'anxieti',
  'medic',
  'condit',
  'current',
  'see',
  'doctor',
  'jess',
  'gone',
  'blame',
  'blame',
  'basic',
  'weekli',
  'pendulum',
  'swing',
  'one',
  'way',
  'late',
  'found',
  'humor',
  'guess',
  'laugh',
  'littl',
  'sever',
  'psycholog',
  'symptom',
  'jazz',
  'well',
  'friday',
  'night',
  'met',
  'friend',
  'drink',
  'includ',
  'us',
  'six',
  'peopl',
  'tabl',
  'discuss',
  'turn',
  'direct',
  'led',
  'drunk',
  'jess',
  'say',
  'yeah',
  'im',
  'get',
  'guy',
  'cant',
  'even',
  'get',
  'point',
  'first',
  'reaction',
  'shock',
  'shed',
  'say',
  'someth',
  'horribl',
  'privat',
  'without',
  'miss',
  'beat',
  'respond',
  'yeah',
  'wife',
  'like',
  'even',
  'blame',
  'everyon',
  'laugh',
  'assum',
  'kid',
  'silli',
  'thing',
  'mean',
  'kind',
  'year',
  'old',
  'get',
  'ed',
  'first',
  'place',
  'right',
  'well',
  'next',
  'morn',
  'jess',
  'incred',
  'hung',
  'distinctli',
  'rememb',
  'said',
  'got',
  'upset',
  'real',
  'scream',
  'head',
  'type',
  'quiet',
  'dare',
  'type',
  'respond',
  'threw',
  'everyth',
  'tabl',
  'respond',
  'spur',
  'moment',
  'thing',
  'respons',
  'calcul',
  'think',
  'asshol'],
 ['use',
  'new',
  'account',
  'hope',
  'sister',
  'find',
  'know',
  'reddit…',
  'wife',
  'younger',
  'sister',
  'colleg',
  'area',
  'leas',
  'temporari',
  'live',
  'stay',
  'us',
  'look',
  'new',
  'place',
  'honestli',
  'big',
  'fan',
  'kind',
  'bratti',
  'realli',
  'made',
  'stand',
  'attitud',
  'month',
  'old',
  'son',
  'anytim',
  'subject',
  'sonkid',
  'come',
  'find',
  'way',
  'make',
  'child-fre',
  'exampl',
  'announc',
  'pregnanc',
  'famili',
  'everyon',
  'happi',
  'us',
  'reaction',
  'eww',
  'gross',
  'tell',
  'us',
  'sorri',
  'weird',
  'think',
  'pregnant',
  'glad',
  'never',
  'go',
  'alreadi',
  'put',
  'us',
  'sour',
  'moment',
  'chang',
  'throughout',
  'wife',
  'pregnanc',
  'ignor',
  'son',
  'born',
  'threw',
  'fit',
  'law',
  'sent',
  'coupl',
  'pic',
  'call',
  'wife',
  'ask',
  'tell',
  'parent',
  'send',
  'anyth',
  'everyon',
  'care',
  'babi',
  'one',
  'sent',
  'still',
  'mad',
  'us',
  'shove',
  'babi',
  'throat',
  'wife',
  'gotten',
  'mad',
  'attitud',
  'folk',
  'say',
  'express',
  'take',
  'person',
  'let',
  'move',
  'got',
  'wors',
  'son',
  'cri',
  'loudli',
  'say',
  'oh',
  'god',
  'shut',
  'see',
  'why-',
  'yada',
  'yada',
  'kid',
  'etc',
  'annoy',
  'needi',
  'make',
  'dramat',
  'gag',
  'nois',
  'feed',
  'fruit',
  'tell',
  'us',
  'take',
  'somewher',
  'els',
  'wife',
  'tell',
  'fuck',
  'deal',
  'understand',
  'someon',
  'person',
  'like',
  'kid',
  'never',
  'want',
  'go',
  'way',
  'alway',
  'talk',
  'much',
  'hate',
  'anyth',
  'son',
  'alway',
  'say',
  'someth',
  'appreci',
  'neg',
  'toward',
  'child',
  'earlier',
  'son',
  'hit',
  'head',
  'start',
  'cri',
  'calm',
  'minut',
  'wo',
  'ask',
  'opinion',
  'say',
  'guy',
  'month',
  'abort',
  'snap',
  'hate',
  'babi',
  'much',
  'welcom',
  'get',
  'hell',
  'hous',
  'understand',
  'deep',
  'hate',
  'kid',
  'mayb',
  'get',
  'therapi',
  'one',
  'thing',
  'like',
  'anoth',
  'alway',
  'wan',
  'na',
  'make',
  'known',
  'much',
  'despis',
  'tire',
  'annoy',
  'rant',
  'eat',
  'food',
  'free',
  'complain',
  'babi',
  'act',
  'like',
  'one',
  'yeah',
  'quit',
  'bit',
  'said',
  'say',
  'anyth',
  'told',
  'wife',
  'parent',
  'reason',
  'think',
  'jerk',
  'threaten',
  'live',
  'situat',
  'place',
  'go',
  'right',
  'option',
  'wife',
  'agre',
  'trigger',
  'argument',
  'parent',
  'get',
  'still',
  'young',
  'dumb',
  'im',
  'ask',
  'im',
  'ta'],
 ['would',
  'like',
  'start',
  'say',
  'husband',
  'come',
  'well',
  'famili',
  'friend',
  'well',
  'well',
  'unlik',
  'famili',
  'come',
  'humbl',
  'work',
  'class',
  'lot',
  'asset',
  'like',
  'inlaw',
  'husband',
  'care',
  'appear',
  'first',
  'tri',
  'control',
  'look',
  'butdid',
  'buy',
  'thing',
  'said',
  'id',
  'love',
  'noth',
  'style',
  'realli',
  'marriag',
  'sat',
  'tell',
  'get',
  '%',
  'choos',
  'look',
  'except',
  'im',
  'famili',
  'introduc',
  'brand',
  'choos',
  'new',
  'cloth',
  'start',
  'wear',
  'whenev',
  'im',
  'famili',
  'friend',
  'although',
  'limit',
  'choic',
  'wear',
  'im',
  'simpl',
  'thing',
  'friend',
  'birthday',
  'celebr',
  'upscal',
  'restaur',
  'husband',
  'bought',
  '$',
  'dress',
  'wear',
  'ocass',
  'like',
  'mani',
  'thing',
  'told',
  'id',
  'wear',
  '$',
  'floral',
  'maxi',
  'dress',
  'think',
  'good',
  'idea',
  'said',
  'violat',
  'rule',
  'gave',
  'got',
  'marri',
  'said',
  'dress',
  'bought',
  'style',
  'said',
  'either',
  'wear',
  'dress',
  'go',
  'said',
  'fine',
  'whatev',
  'still',
  'happi',
  'got',
  'restaur',
  'one',
  'said',
  'anyth',
  'dress',
  'except',
  'friend',
  'said',
  'look',
  'great',
  'dinner',
  'husband',
  'move',
  'quickli',
  'spill',
  'wine',
  'chest',
  'lap',
  'freak',
  'said',
  'thank',
  'replac',
  'pull',
  '$',
  'previous',
  'want',
  'wear',
  'bag',
  'whole',
  'time',
  'help',
  'think',
  'deliber',
  'spill',
  'wine',
  'floral',
  'dress',
  'forc',
  'wear',
  'dress',
  'hand',
  'dress',
  'told',
  'go',
  'chang',
  'got',
  'instead',
  'go',
  'restroom',
  'made',
  'way',
  'door',
  'ask',
  'wait',
  'kept',
  'walk',
  'open',
  'phone',
  'get',
  'uber',
  'get',
  'home',
  'stood',
  'outsid',
  'start',
  'argu',
  'said',
  'get',
  'behav',
  'like',
  'embarrass',
  'like',
  'said',
  'look',
  'dress',
  'tri',
  'trick',
  'wear',
  'want',
  'spill',
  'wine',
  'told',
  'go',
  'back',
  'insid',
  'said',
  'move',
  'til',
  'uber',
  'arriv',
  'threw',
  'fit',
  'call',
  'embarrass',
  'stood',
  'till',
  'left',
  'home',
  'went',
  'say',
  'couldv',
  'worn',
  'dress',
  'make',
  'scene',
  'doubl',
  'walk',
  'said',
  'disrespect',
  'choic',
  'impli',
  'embarrass',
  'said',
  'call',
  'spade',
  'spade',
  'quit',
  'act',
  'insensit',
  'get',
  'offend',
  'noth',
  'said',
  'made',
  'joke',
  'infront',
  'friend',
  'one',
  'one',
  'compliment',
  'dress',
  'one',
  'constantli',
  'tri',
  'video',
  'chat',
  'whenev',
  'see',
  'onlin',
  'tri',
  'call',
  'respond',
  'made',
  'feel',
  'uncomfort',
  'aita',
  'handl',
  'right'],
 ['year',
  'old',
  'daughter',
  'chloe',
  'mom',
  'never',
  'marri',
  'circumst',
  'life',
  'longthen',
  'mom',
  'got',
  'marri',
  'stepdad',
  'somewhat',
  'decent',
  'guy',
  'nosi',
  'decent',
  'came',
  'back',
  'countri',
  'chloe',
  'open',
  'idea',
  'rebuild',
  'relationship',
  'though',
  'mom',
  'alway',
  'throw',
  'face',
  'chloe',
  'stepdad',
  'realleg',
  'parent',
  'alway',
  'chloe',
  'know',
  'bond',
  'chloe',
  'thing',
  'id',
  'gone',
  'past',
  'ignor',
  'judgement',
  'remark',
  'chloe',
  'get',
  'marri',
  'come',
  'feb',
  'taken',
  'back',
  'told',
  'consid',
  'stepdad',
  'walk',
  'aisl',
  'went',
  'convers',
  'talk',
  'uncomfort',
  'idea',
  'talk',
  'stepdad',
  'play',
  'huge',
  'part',
  'life',
  'want',
  'honor',
  'includ',
  'told',
  'cours',
  'absolut',
  'invalid',
  'feel',
  'deni',
  'much',
  'good',
  'influenc',
  'stepdad',
  'feel',
  'comfort',
  'told',
  'itd',
  'ok',
  'guest',
  'said',
  'want',
  'part',
  'bad',
  'said',
  'either',
  'stepdad',
  'way',
  'im',
  'thought',
  'petti',
  'got',
  'upset',
  'say',
  'okay',
  'put',
  'posit',
  'make',
  'choos',
  'forc',
  'hand',
  'realli',
  'ultim',
  'choic',
  'forc',
  'hand',
  'complain',
  'ruin',
  'wed',
  'make',
  'resent',
  'toward',
  'stepdad',
  'argument',
  'escal',
  'point',
  'said',
  'come',
  'wed',
  'continu',
  'forc',
  'issu',
  'mom',
  'contact',
  'call',
  'selfish',
  'jealou',
  'spite',
  'whatnot',
  'claim',
  'hurt',
  'chloe',
  'feel',
  'spite',
  'dare',
  'show',
  'appreci',
  'man',
  'step',
  'parent',
  'ill',
  'ever',
  'told',
  'stay',
  'ityour',
  'reason',
  'problem',
  'stay',
  'chloe',
  'chloe',
  'answer',
  'phonecal',
  'tri',
  'speak',
  'fianc',
  'said',
  'chloe',
  'upset',
  'fact',
  'put',
  'feel',
  'disrespect',
  'stepdad',
  'ask',
  'choos',
  'us',
  'advis',
  'one',
  'thing',
  'sinc',
  'import',
  'im',
  'feel',
  'uneasi',
  'even',
  'think',
  'think',
  'ill',
  'ever',
  'okay'],
 ['throw',
  'away',
  'caus',
  'want',
  'famili',
  'member',
  'find',
  'issu',
  'mym',
  'wife',
  'month',
  'pregnant',
  'sinc',
  'pregnant',
  'go',
  'small',
  'thing',
  'like',
  'make',
  'dinner',
  'cook',
  'wrong',
  'thing',
  'pregnant',
  'never',
  'like',
  'alway',
  'sweet',
  'yesterday',
  'wife',
  'came',
  'back',
  'parent',
  'hous',
  'made',
  'homemad',
  'pizza',
  'us',
  'told',
  'want',
  'pizza',
  'cook',
  'someth',
  'els',
  'told',
  'quick',
  'easi',
  'ill',
  'make',
  'ask',
  'homemad',
  'chicken',
  'dumpl',
  'told',
  'im',
  'make',
  'take',
  'age',
  'told',
  'pregnant',
  'crave',
  'dumpl',
  'told',
  'know',
  'pregnant',
  'im',
  'make',
  'dumpl',
  'start',
  'rage',
  'cook',
  'someth',
  'pm',
  'night',
  'im',
  'whip',
  'ingredi',
  'told',
  'make',
  'anyth',
  'pizza',
  'sit',
  'couch',
  'sob',
  'say',
  'love',
  'babi',
  'told',
  'ill',
  'make',
  'dumpl',
  'tomorrow',
  'night',
  'tonight',
  'told',
  'fuck',
  'somewher',
  'els',
  'ask',
  'friend',
  'could',
  'stay',
  'night',
  'said',
  'ye',
  'pack',
  'cloth',
  'slam',
  'door',
  'behind',
  'half',
  'way',
  'friend',
  'wife',
  'text',
  'beg',
  'come',
  'back',
  'told',
  'fuck',
  'like',
  'aita'],
 ['husband',
  'one',
  'night',
  'stand',
  'much',
  'counsel',
  'decid',
  'forgiv',
  'work',
  'marriag',
  'unfortun',
  'woman',
  'got',
  'pregnant',
  '-year-old',
  'boy',
  'two',
  '-year-old',
  'french',
  'bulldog',
  'two',
  'kid',
  'husband',
  'unfortun',
  'short',
  'hair',
  'dog',
  'kind',
  'tend',
  'produc',
  'reaction',
  'allerg',
  'fulli',
  'prepar',
  'welcom',
  'child',
  'home',
  'open',
  'arm',
  'best',
  'stepmoth',
  'could',
  'possibl',
  'child',
  'innoc',
  'littl',
  'brother',
  'two',
  'children',
  'husband',
  'visit',
  'everi',
  'weekend',
  'unfortun',
  'child',
  'highli',
  'allerg',
  'dog',
  'mother',
  'demand',
  'get',
  'rid',
  'dog',
  'dog',
  'thick',
  'thin',
  'suffer',
  'sever',
  'depress',
  'husband',
  'cheat',
  'kid',
  'ador',
  'absolut',
  'refus',
  'get',
  'rid',
  'dog',
  'told',
  'husband',
  'either',
  'visit',
  'hotel',
  'get',
  'second',
  'apart',
  'son',
  'build',
  'in-law',
  'unit',
  'expens',
  'garag',
  'told',
  'stipul',
  'come',
  'pocket',
  'may',
  'dip',
  'kid',
  'colleg',
  'fund',
  'dog',
  'stay',
  'child',
  'young',
  'understand',
  'allow',
  'come',
  'hous',
  'feel',
  'left',
  'result',
  'aita',
  'refus',
  'get',
  'rid',
  'dog',
  'husband',
  'cheat',
  'hem',
  'haw',
  'want',
  'thing',
  'peopl',
  'told',
  'divorc',
  'well',
  'away',
  'dog'],
 ['origin',
  'post',
  'httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'want',
  'say',
  'thank',
  'everyon',
  'comment',
  'pmd',
  'advic',
  'first',
  'post',
  'almost',
  'month',
  'ago',
  'receiv',
  'lot',
  'help',
  'advic',
  'took',
  'consider',
  'plan',
  'next',
  'week',
  'post',
  'end',
  'move',
  'friend',
  'kind',
  'enough',
  'let',
  'stay',
  'pay',
  'small',
  'amount',
  'rent',
  'return',
  'also',
  'end',
  'talk',
  'parent',
  'dad',
  'apolog',
  'behaviour',
  'promis',
  'never',
  'make',
  'threat',
  'like',
  'honestli',
  'came',
  'shock',
  'im',
  'glad',
  'thing',
  'got',
  'resolv',
  'us',
  'let',
  'know',
  'stay',
  'friend',
  'pay',
  'small',
  'amount',
  'rent',
  'meantim',
  'process',
  'find',
  'apart',
  'suggest',
  'move',
  'back',
  'free',
  'find',
  'job',
  'place',
  'took',
  'offer',
  'move',
  'back',
  'home',
  'issu',
  'sinc',
  'move',
  'back',
  'finish',
  'grad',
  'school',
  'complet',
  'internship',
  'week',
  'ago',
  'land',
  'full',
  'time',
  'job',
  'field',
  'also',
  'found',
  'apart',
  'min',
  'walk',
  'job',
  'start',
  'job',
  'next',
  'week',
  'move',
  'new',
  'place',
  'week'],
 ['high',
  'school',
  'friend',
  'diana',
  'recent',
  'got',
  'master',
  'degre',
  'live',
  'anoth',
  'citi',
  'bare',
  'ever',
  'saw',
  'alway',
  'busi',
  'long',
  'phone',
  'call',
  'talk',
  'briefli',
  'everi',
  'time',
  'spent',
  'degre',
  'manag',
  'get',
  'marri',
  'start',
  'famili',
  'diana',
  'visit',
  'famili',
  'met',
  'lunch',
  'ask',
  'degre',
  'work',
  'prospect',
  'etc',
  'master',
  'translat',
  'interpret',
  'someth',
  'like',
  'said',
  'got',
  'job',
  'move',
  'brussel',
  'told',
  'crazi',
  'cant',
  'find',
  'job',
  'local',
  'degre',
  'wast',
  'time',
  'move',
  'anoth',
  'countri',
  'said',
  'amaz',
  'job',
  'opportun',
  'get',
  'anywher',
  'around',
  'appar',
  'job',
  'relat',
  'eu',
  'parliament',
  'whatev',
  'admit',
  'lost',
  'abbrevi',
  'use',
  'said',
  'amaz',
  'opportun',
  'excit',
  'ask',
  'pay',
  'told',
  'said',
  'husband',
  'earn',
  'without',
  'degre',
  'right',
  'easter',
  'time',
  'money',
  'said',
  'start',
  'salari',
  'itll',
  'grow',
  'first',
  'year',
  'saw',
  'pretti',
  'much',
  'train',
  'junior',
  'posit',
  'said',
  'couldv',
  'gotten',
  'similar',
  'job',
  'wast',
  'year',
  'andi',
  'instead',
  'couldv',
  'alreadi',
  'work',
  'andi',
  'start',
  'famili',
  'rude',
  'said',
  'unhappi',
  'want',
  'famili',
  'threw',
  'face',
  'appar',
  'im',
  'alway',
  'complain',
  'husband',
  'im',
  'criticis',
  'best',
  'husband',
  'world',
  'told',
  'ridicul',
  'mean',
  'call',
  'asshol',
  'paid',
  'left',
  'restaur',
  'tod',
  'friend',
  'theyr',
  'split',
  'asshol',
  'tell',
  'aita',
  'tell',
  'truth'],
 ['basic',
  'brother',
  'inlaw',
  'husband',
  'brother',
  'pass',
  'away',
  'cancer',
  'week',
  'ago',
  'widowwif',
  'aka',
  'sister',
  'inlaw',
  'never',
  'realli',
  'good',
  'term',
  'inlawsh',
  'inlaw',
  'issu',
  'past',
  'gather',
  'mother',
  'inlaw',
  'plan',
  'go',
  'court',
  'grandpar',
  'right',
  'get',
  'visit',
  'kid',
  'inlaw',
  'ask',
  'sister',
  'inlaw',
  'give',
  'brother',
  'inlaw',
  'wed',
  'ring',
  'could',
  'keep',
  'refus',
  'got',
  'huge',
  'argument',
  'left',
  'kid',
  'went',
  'home',
  'yesterday',
  'hope',
  'take',
  'ring',
  'told',
  'buri',
  'brother',
  'inlaw',
  'parent',
  'inlaw',
  'mention',
  'devast',
  'suggest',
  'might',
  'lie',
  'get',
  'drop',
  'suddenli',
  'got',
  'quickli',
  'got',
  'car',
  'went',
  'hous',
  'anoth',
  'huge',
  'argument',
  'sister',
  'inlaw',
  'call',
  'later',
  'cuss',
  'say',
  'horribl',
  'basic',
  'meddl',
  'life',
  'encourag',
  'inlaw',
  'come',
  'harrass',
  'argu',
  'made',
  'suggest',
  'real',
  'issu',
  'hung',
  'tell',
  'mind',
  'busi',
  'stop',
  'get',
  'involv',
  'husband',
  'berat',
  'said',
  'said',
  'parent',
  'crazi',
  'approv',
  'behavior',
  'even',
  'help',
  'harrass',
  'griev',
  'sister',
  'inlaw',
  'mean',
  'parent',
  'inlaw',
  'also',
  'griev',
  'griev',
  'sister',
  'inlaw',
  'word',
  'hurt',
  'make',
  'suggest',
  'saw',
  'devast',
  'parent',
  'inlaw',
  'edit',
  'sister',
  'inlaw',
  'close',
  'seem',
  'resent',
  'reason',
  'even',
  'sitat',
  'took',
  'place'],
 ['basic',
  'titl',
  'daughter',
  'thing',
  'bake',
  'bake',
  'cake',
  'said',
  'sweet',
  'make',
  'money',
  'sell',
  'work',
  'rel',
  'friend',
  'supposedli',
  'us',
  'husband',
  'stepdad',
  'th',
  'birthday',
  'took',
  'place',
  'day',
  'ago',
  'ask',
  'daughter',
  'bake',
  'birthday',
  'cake',
  'agre',
  'told',
  'pay',
  'respond',
  'pfff',
  'pay',
  'get',
  'outta',
  'im',
  'dad',
  'insist',
  'see',
  'ye',
  'person',
  'peopl',
  'pleaser',
  'outright',
  'demand',
  'money',
  'said',
  'hed',
  'pay',
  'day',
  'went',
  'pay',
  'cent',
  'decid',
  'go',
  'ahead',
  'sell',
  'wrist',
  'watch',
  'bought',
  'birthday',
  'cake',
  'pay',
  'foubd',
  'went',
  'told',
  'rnough',
  'time',
  'paid',
  'seven',
  'reciev',
  'cake',
  'said',
  'teach',
  'treat',
  'famili',
  'relationship',
  'transact',
  'raid',
  'materialist',
  'explain',
  'time',
  'effort',
  'even',
  'money',
  'put',
  'toward',
  'make',
  'cake',
  'lash',
  'verbal',
  'call',
  'asshll',
  'make',
  'move',
  'enabl',
  'daughter',
  'expect',
  'much',
  'famili',
  'suppos',
  'help',
  'noth',
  'return',
  'furiou',
  'told',
  'almost',
  'whole',
  'famili',
  'took',
  'back',
  'birthday',
  'gift',
  'return',
  'got',
  'enough',
  'shame',
  'famili',
  'member',
  'begin',
  'think',
  'might',
  'asshol',
  'dealt',
  'aita',
  'yall',
  'daughter',
  'want',
  'expect',
  'paid',
  'intend',
  'free',
  'would',
  'kept',
  'mouth',
  'shut',
  'also',
  'wristwatch',
  'idnt',
  'expens',
  'kept',
  'rest',
  'money',
  'give',
  'daughter',
  'share'],
 ['epilepsi',
  'seizur',
  'bc',
  'take',
  'medic',
  'seizur',
  'condit',
  'control',
  'mani',
  'ppl',
  'life',
  'rlli',
  'get',
  'except',
  'dad',
  'unfortun',
  'mom',
  'dad',
  'separ',
  'yr',
  'start',
  'date',
  'guy',
  'jeff',
  'singl',
  'dad',
  'kid',
  'age',
  '&',
  'come',
  'kid',
  'visit',
  'us',
  'everi',
  'week',
  'yesterday',
  'visit',
  'brought',
  'kid',
  'usuallylik',
  'sit',
  'get',
  'know',
  'futur',
  'stepsibl',
  'better',
  'mom',
  'say',
  'anyway',
  'sit',
  'grab',
  'medic',
  'made',
  'jeff',
  'side',
  'eye',
  'like',
  'sec',
  'told',
  'kid',
  'go',
  'room',
  'start',
  'berat',
  'ask',
  'hell',
  'confus',
  'languag',
  'know',
  'meant',
  'told',
  'ok',
  'take',
  'medic',
  'infront',
  'kidsi',
  'like',
  'start',
  'rant',
  'kid',
  'see',
  'stuff',
  'went',
  'room',
  'room',
  'take',
  'medic',
  'import',
  'shock',
  'mom',
  'even',
  'say',
  'anyth',
  'time',
  'rlli',
  'got',
  'question',
  'said',
  'stepsubk',
  'theyr',
  'young',
  'age',
  'expos',
  'sight',
  'im',
  'gon',
  'come',
  'better',
  'way',
  'deal',
  'condit',
  'medic',
  'intak',
  'want',
  'kid',
  'expos',
  'start',
  'live',
  'togeth',
  'famili',
  'told',
  'problem',
  'caus',
  'argument',
  'escal',
  'mom',
  'side',
  'go',
  'room',
  'calm',
  'bit',
  'kid',
  'left',
  'mom',
  'pick',
  'anoth',
  'argument',
  'say',
  'consuder',
  'kid',
  'see',
  'medic',
  'said',
  'jeff',
  'point',
  'rude',
  'told',
  'expect',
  'apolog',
  'get',
  'right',
  'jeff',
  'next',
  'time',
  'visit',
  'said',
  'im',
  'punish',
  'next',
  'weekend',
  'attitud',
  'toward',
  'stepda',
  'asshol'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'damm',
  'know',
  'say',
  'everyon',
  '*',
  'realli',
  '*',
  'want',
  'know',
  'happen',
  'gon',
  'na',
  'start',
  'first',
  '&',
  'say',
  'spoke',
  'friend',
  'babi',
  'shower',
  'apolog',
  'drama',
  'idea',
  'gon',
  'na',
  'happen',
  'hear',
  'first',
  'like',
  'comment',
  'suggest',
  'idea',
  'ex',
  'past',
  'told',
  'fine',
  'parti',
  'awkward',
  'blame',
  'great',
  'hear',
  'meant',
  'celebr',
  'babi',
  'friend',
  'want',
  'celebr',
  'got',
  'confirm',
  'plu',
  'guy',
  '👍🏻',
  'ta',
  'obvious',
  'want',
  'know',
  'answer',
  'main',
  'question',
  'babi',
  'kid',
  'deal',
  'talk',
  'phone',
  'went',
  'first',
  'beat',
  'topic',
  'probabl',
  'read',
  'mind',
  'start',
  'tell',
  'someth',
  'import',
  'talk',
  'apolog',
  'blame',
  'parti',
  'sum',
  'agre',
  'get',
  'patern',
  'test',
  'done',
  'asap',
  'handl',
  'curios',
  'alreadi',
  'drive',
  'crazi',
  'definit',
  'kid',
  'ive',
  'look',
  'result',
  'million',
  'time',
  'sinc',
  'got',
  'back',
  'alreadi',
  'knew',
  'son',
  'mine',
  'found',
  'pregnant',
  'left',
  'want',
  'tell',
  'went',
  'back',
  'work',
  'told',
  'id',
  'alreadi',
  'flew',
  'back',
  'hurt',
  'sinc',
  'seem',
  'like',
  'care',
  'much',
  'scare',
  'go',
  'back',
  'help',
  'take',
  'care',
  'kid',
  'hard',
  'hear',
  'actual',
  'cri',
  'talk',
  'person',
  'im',
  'still',
  'shock',
  'learn',
  'let',
  'come',
  'meet',
  'day',
  'ago',
  'emot',
  'af',
  'hold',
  'realli',
  'got',
  'damm',
  'big',
  'alreadi',
  'whole',
  'day',
  'spent',
  'son',
  'stay',
  'late',
  'talk',
  'gon',
  'na',
  'new',
  'gon',
  'na',
  'go',
  'flow',
  'holi',
  'fuck',
  'son',
  'crazi',
  'right',
  'far',
  'boyfriend',
  'seem',
  'like',
  'cheat',
  'least',
  'tell',
  'littl',
  'bit',
  'info',
  'got',
  'piss',
  'exclus',
  'either',
  'got',
  'pregnant',
  'around',
  'long',
  '*',
  '*',
  'obvious',
  'see',
  'piss',
  'thought',
  'still',
  'live',
  'state',
  'mess',
  'right',
  'wan',
  'na',
  'around',
  'son',
  'kid',
  'told',
  'worri',
  'relationship',
  'thing',
  'want',
  'make',
  'sure',
  'son',
  'dad',
  'life',
  'even',
  'ive',
  'got',
  'idea',
  'im',
  'rn',
  'dad',
  'want',
  'alreadi',
  'miss',
  'time',
  'im',
  'excit',
  'see',
  'tmrw'],
 ['husband',
  'friend',
  'austin',
  'known',
  'colleg',
  'theyr',
  'like',
  'brother',
  'togeth',
  'extend',
  'friend',
  'group',
  'group',
  'guy',
  'hang',
  'togeth',
  'time',
  'austin',
  'get',
  'along',
  'seem',
  'mock',
  'infertil',
  'bring',
  'ocassionli',
  'hurt',
  'ive',
  'alway',
  'want',
  'children',
  'make',
  'constant',
  'topic',
  'convers',
  'hurt',
  'husband',
  'think',
  'hypersensit',
  'anyway',
  'month',
  'ago',
  'austin',
  'got',
  'fight',
  'comment',
  'infertil',
  'say',
  'hurri',
  'give',
  'nephewniec',
  'biolog',
  'clock',
  'tick',
  'plan',
  'go',
  'trip',
  'togeth',
  'austin',
  'disinvit',
  'yell',
  'said',
  'ruin',
  'dinner',
  'said',
  'perfectli',
  'okay',
  'fact',
  'felt',
  'much',
  'relief',
  'longer',
  'around',
  'anymor',
  'husband',
  'first',
  'time',
  'okay',
  'away',
  'austin',
  'said',
  'still',
  'want',
  'go',
  'trip',
  'said',
  'noth',
  'til',
  'told',
  'still',
  'expect',
  'pay',
  'travel',
  'expens',
  'refus',
  'said',
  'start',
  'argument',
  'im',
  'punish',
  'stay',
  'home',
  'told',
  'issu',
  'austin',
  'told',
  'could',
  'go',
  'get',
  'money',
  'elsewher',
  'unabl',
  'borrow',
  'anymor',
  'money',
  'add',
  'debt',
  'got',
  'fire',
  'may',
  'insist',
  'refus',
  'start',
  'call',
  'spite',
  'unfair',
  'refus',
  'pay',
  'travel',
  'expens',
  'attempt',
  'tj',
  'get',
  'stay',
  'home',
  'said',
  'relationship',
  'austin',
  'bigger',
  'comment',
  'austin',
  'made',
  'bigger',
  'exagger',
  'sensit',
  'insecur',
  'sulk',
  'cave',
  'give',
  'money',
  'aita',
  'insist',
  'pay'],
 ['wife',
  'kid',
  'gener',
  'agre',
  'parent',
  'recent',
  'incid',
  'wife',
  'disagre',
  'want',
  'see',
  'wrong',
  'week',
  'ago',
  'home',
  'yo',
  'sick',
  'stomach',
  'bug',
  'make',
  'soup',
  'got',
  'call',
  'twin',
  'high',
  'school',
  'tell',
  'want',
  'speak',
  'daughter',
  'receiv',
  'day',
  'iss',
  'bulli',
  'incid',
  'son',
  'sick',
  'spoke',
  'via',
  'phone',
  'told',
  'everyth',
  'happen',
  'daughter',
  'group',
  'friend',
  'pick',
  'boy',
  'wear',
  'crop',
  'top',
  'boy',
  'told',
  'teacher',
  'ask',
  'stop',
  'stop',
  'sent',
  'offic',
  'talk',
  'boy',
  'admit',
  'bulli',
  'go',
  'day',
  'kept',
  'bother',
  'ask',
  'stop',
  'daughter',
  'son',
  'came',
  'home',
  'son',
  'face',
  'bright',
  'red',
  'told',
  'daughter',
  'go',
  'room',
  'sat',
  'son',
  'see',
  'okay',
  'appar',
  'boy',
  'bulli',
  'close',
  'friend',
  'one',
  'footbal',
  'teammat',
  'boy',
  'talk',
  'son',
  'friend',
  'said',
  'someth',
  'thought',
  'cool',
  'men',
  'use',
  'wear',
  'sport',
  'crop',
  'top',
  'boy',
  'told',
  'thought',
  'cool',
  'tri',
  'boy',
  'went',
  'bought',
  'jersey',
  'thrift',
  'store',
  'made',
  'crop',
  'top',
  'spoke',
  'daughter',
  'show',
  'much',
  'remors',
  'dismiss',
  'last',
  'year',
  'also',
  'got',
  'troubl',
  'bulli',
  'someon',
  'bc',
  'cloth',
  'also',
  'gotten',
  'troubl',
  'racism',
  'school',
  'white',
  'area',
  'white',
  'friend',
  'say',
  'racist',
  'stuff',
  'class',
  'wife',
  'got',
  'home',
  'discuss',
  'punish',
  'agre',
  'buy',
  'new',
  'cloth',
  'plenti',
  'good',
  'cloth',
  'alreadi',
  'weekend',
  'went',
  'visit',
  'brother',
  'brother',
  'live',
  'around',
  'hour',
  'away',
  'small',
  'town',
  'see',
  'often',
  'week',
  'town',
  'annual',
  'fair',
  'fair',
  'booth',
  'local',
  'busi',
  'oldest',
  'son',
  'went',
  'booth',
  'antiqu',
  'sport',
  'stuff',
  'book',
  'booth',
  'get',
  'book',
  'sport',
  'histori',
  'son',
  'love',
  'read',
  'yo',
  'got',
  'plushi',
  'toy',
  'youngest',
  'look',
  'video',
  'game',
  'oldest',
  'daughter',
  'went',
  'cloth',
  'stop',
  'told',
  'rule',
  'still',
  'place',
  'said',
  'could',
  'buy',
  'book',
  'video',
  'game',
  'candi',
  'ect',
  'cloth',
  'one',
  'thing',
  'could',
  'get',
  'bug',
  'wife',
  'wife',
  'eventu',
  'told',
  'would',
  'reconsid',
  'talk',
  'told',
  'chang',
  'stanc',
  'let',
  'buy',
  'stuff',
  'thought',
  'entitl',
  'daughter',
  'buy',
  'anyth',
  'wife',
  'think',
  'tough',
  'call',
  'mom',
  'advic',
  'also',
  'agre',
  'wife',
  'aita'],
 ['know',
  'seem',
  'bad',
  'hear',
  'pleas',
  'im',
  'month',
  'pregnant',
  'husband',
  'excit',
  'cant',
  'wait',
  'parent',
  'decid',
  'tell',
  'peopl',
  'till',
  'week',
  'parti',
  'in-law',
  'wineri',
  'beauti',
  'sil',
  'let',
  'call',
  'taylor',
  'got',
  'engag',
  'engag',
  'parti',
  'im',
  'known',
  'love',
  'wine',
  'im',
  'alcohol',
  'like',
  'glass',
  'wine',
  'glass',
  'water',
  'rest',
  'outing',
  'engag',
  'parti',
  'drink',
  'water',
  'talk',
  'law',
  'taylor',
  'offer',
  'glass',
  'wine',
  'told',
  'feel',
  'like',
  'drink',
  'kept',
  'offer',
  'kept',
  'refus',
  'made',
  'mani',
  'excus',
  'till',
  'ask',
  'pregnant',
  'joke',
  'nervous',
  'smile',
  'tri',
  'walk',
  'away',
  'scream',
  'ruin',
  'engag',
  'parti',
  'tell',
  'im',
  'pregnant',
  'husband',
  'invit',
  'wed',
  'asshol'],
 ['guy',
  'paul',
  'go',
  'date',
  'month',
  'met',
  'tinder',
  'realli',
  'like',
  'offici',
  'start',
  'date',
  'yet',
  'call',
  'bf',
  'vice',
  'versa',
  'still',
  'get',
  'know',
  'thing',
  'love',
  'vs',
  'hate',
  'past',
  'coupl',
  'week',
  'send',
  'pic',
  'car',
  'sit',
  'mechan',
  'cousin',
  'shop',
  'week',
  'went',
  'need',
  'fix',
  'made',
  'long',
  'list',
  'calcul',
  'total',
  'sent',
  'screenshot',
  'look',
  'wonder',
  'told',
  'financi',
  'hardship',
  'atm',
  'ask',
  'could',
  'help',
  'pay',
  'car',
  'get',
  'fix',
  'quickli',
  'hell',
  'abl',
  'take',
  'roadtrip',
  'promis',
  'felt',
  'uncomfort',
  'bc',
  'money',
  'talk',
  'around',
  'kind',
  'money',
  'hand',
  'brought',
  'colleg',
  'fund',
  'suggest',
  'skip',
  'one',
  'semest',
  'could',
  'pay',
  'car',
  'shock',
  'brought',
  'idk',
  'know',
  'import',
  'colleg',
  'assur',
  'hell',
  'pay',
  'back',
  'time',
  'skip',
  'one',
  'semest',
  'ask',
  'time',
  'think',
  'kept',
  'call',
  'decid',
  'give',
  'polit',
  'ask',
  'told',
  'educ',
  'prioriti',
  'cant',
  'handl',
  'skip',
  'semster',
  'even',
  'one',
  'hung',
  'say',
  'need',
  'time',
  'text',
  'say',
  'show',
  'support',
  'made',
  'open',
  'vulner',
  'chose',
  'money',
  'refus',
  'lend',
  'struggl',
  'need',
  'matter',
  'felt',
  'realli',
  'guilti',
  'start',
  'call',
  'text',
  'say',
  'might',
  'respond',
  'make',
  'room',
  'compromis',
  'aita',
  'refus',
  'pay',
  'edit',
  'talk',
  'cousin',
  'car',
  'also',
  'visit',
  'place',
  'met',
  'parent',
  'like',
  'know',
  'address'],
 ['first',
  'time',
  'post',
  'sorri',
  'made',
  'mistak',
  'recent',
  'lost',
  'fiance',
  'jake',
  'weve',
  'togeth',
  'year',
  'death',
  'unexpect',
  'im',
  'still',
  'mourn',
  'funer',
  'arrang',
  'paid',
  'brother',
  'jim',
  'ask',
  'im',
  'go',
  'return',
  'engag',
  'ring',
  'famili',
  'context',
  'engag',
  'ring',
  'jake',
  'propos',
  'ancient',
  'famili',
  'heirloom',
  'gorgeou',
  'ring',
  'make',
  'priceless',
  'stori',
  'behind',
  'jake',
  'got',
  'ring',
  'grandma',
  'month',
  'start',
  'date',
  'claim',
  'knew',
  'back',
  'would',
  'marri',
  'day',
  'want',
  'get',
  'grandma',
  'bless',
  'ring',
  'propos',
  'grandma',
  'alreadi',
  'pass',
  'away',
  'bless',
  'put',
  'ring',
  'made',
  'extra',
  'special',
  'us',
  'ask',
  'jim',
  'seriou',
  'said',
  'ye',
  'appar',
  'long',
  'term',
  'girlfriend',
  'staci',
  'saw',
  'ring',
  'ago',
  'fell',
  'love',
  'stori',
  'behind',
  'kept',
  'nag',
  'get',
  'someth',
  'similar',
  'figur',
  'sinc',
  'longer',
  'marri',
  'jake',
  'propos',
  'staci',
  'told',
  'rude',
  'ring',
  'bless',
  'especi',
  'jake',
  'mind',
  'even',
  'case',
  'bring',
  'jake',
  'funer',
  'incred',
  'disrespect',
  'funer',
  'got',
  'massag',
  'staci',
  'say',
  'would',
  'mean',
  'world',
  'new',
  'owner',
  'ring',
  'could',
  'alway',
  'think',
  'jim',
  'wed',
  'bittersweet',
  'end',
  'relationship',
  'said',
  'ring',
  'bless',
  'one',
  'grandson',
  'marri',
  'love',
  'life',
  'sinc',
  'jim',
  'live',
  'grandson',
  'left',
  'claim',
  'block',
  'ex',
  'mil',
  'also',
  'reach',
  'said',
  'although',
  'understand',
  'pain',
  'cant',
  'keep',
  'ring',
  'sinc',
  'famili',
  'heirloom',
  'suck',
  'give',
  'jim',
  'snap',
  'told',
  'ring',
  'stay',
  'follow',
  'grave',
  'need',
  'beauti',
  'symbol',
  'jake',
  'love',
  'let',
  'jim',
  'staci',
  'sulli',
  'memori',
  'ring',
  'legal',
  'mine',
  'cri',
  'bitter',
  'keep',
  'harass',
  'social',
  'media',
  'say',
  'im',
  'bad',
  'person',
  'stole',
  'famili',
  'heirloom',
  'spite',
  'jim',
  'staci',
  'jealousi',
  'ignor',
  'today',
  'met',
  'brother',
  'said',
  'although',
  'jim',
  'approach',
  'highli',
  'inappropri',
  'im',
  'selfish',
  'keep',
  'ring',
  'keep',
  'sake',
  'could',
  'alway',
  'wear',
  'differ',
  'jewelri',
  'jake',
  'bought',
  'memori',
  'could',
  'never',
  'replac',
  'heirloom',
  'famili',
  'gener',
  'im',
  'back',
  'home',
  'cant',
  'stop',
  'think',
  'point',
  'sure',
  'everyth',
  'right',
  'mayb',
  'im',
  'blind',
  'grief',
  'friend',
  'suggest',
  'ask',
  'object',
  'opinion',
  'recommend',
  'place',
  'aita',
  'updat',
  'im',
  'write',
  'answer',
  'commonli',
  'ask',
  'question',
  'think',
  'ive',
  'made',
  'mind',
  'ring',
  'met',
  'jake',
  'grandma',
  'pass',
  'away',
  'year',
  'engag',
  'time',
  'alreadi',
  'introduc',
  'famili',
  'suppos',
  'get',
  'marri',
  'met',
  'halloween',
  'parti',
  'thought',
  'fit',
  'brother',
  'help',
  'cancel',
  'wed',
  'venu',
  'cater',
  'sinc',
  'heart',
  'children',
  'due',
  'person',
  'reason',
  'never',
  'plan',
  'biolog',
  'kid',
  'howev',
  'plan',
  'adoptingfost',
  'marriag',
  'final',
  'staci',
  'mention',
  'coupl',
  'time',
  'gorgeou',
  'engag',
  'ring',
  'ask',
  'could',
  'tri',
  'refus',
  'back',
  'thought',
  'tri',
  'hint',
  'jim',
  'propos',
  'alreadi',
  'think',
  'actual',
  'interest',
  'ring',
  'ring',
  'legal',
  'mine',
  'jake',
  'im',
  'written',
  'beneficiari',
  'written',
  'year',
  'ago',
  'chang',
  'sinc',
  'jake',
  'pass',
  'away',
  'work',
  'relat',
  'accid',
  'claim',
  'life',
  'insur',
  'plu',
  'su',
  'compani',
  'work',
  'sinc',
  'believ',
  'death',
  'due',
  'neglig',
  'couldv',
  'avoid',
  'im',
  'current',
  'legal',
  'battl',
  'compani',
  'paid',
  'funer',
  'want',
  'make',
  'sure',
  'everyth',
  'organ',
  'way',
  'jake',
  'would',
  'want',
  'horribl',
  'sound',
  'financi',
  'well',
  'jake',
  'death',
  'due',
  'life',
  'insur',
  'compani',
  'compens',
  'im',
  'practic',
  'rich',
  'fund',
  'organ',
  'realli',
  'nice',
  'funer',
  'told',
  'ex',
  'mil',
  'ill',
  'take',
  'ring',
  'grave',
  'meant',
  'jake',
  'pass',
  'consid',
  'join',
  'coupl',
  'time',
  'final',
  'start',
  'go',
  'therapi',
  'think',
  'ill',
  'ever',
  'date',
  'get',
  'engag',
  'pain',
  'decis',
  'would',
  'rather',
  'wait',
  'hell',
  'freez',
  'let',
  'staci',
  'jim',
  'get',
  'ring',
  'ring',
  'stay',
  'howev',
  'consid',
  'follow',
  'option',
  'jake',
  'one',
  'cousin',
  'live',
  'far',
  'away',
  'use',
  'babysit',
  'parent',
  'still',
  'live',
  'town',
  'think',
  'ill',
  'gift',
  'ring',
  'graduat',
  'hs',
  'pay',
  'colleg',
  'tuition',
  'use',
  'life',
  'insur',
  'money',
  'got',
  'hope',
  'way',
  'right',
  'jake',
  'grandma',
  'say',
  'time',
  'heal',
  'hope',
  'year',
  'enough',
  'let',
  'go',
  'ring',
  'guess',
  'well',
  'see',
  'im',
  'tell',
  'anyon',
  'famili',
  'plan',
  'let',
  'think',
  'theyv',
  'lost',
  'ring',
  'forev',
  'think',
  'punish',
  'fit',
  'action',
  'btw',
  'lost',
  'comment',
  'said',
  'someon',
  'compar',
  'staci',
  'gollum',
  'know',
  'genuin',
  'made',
  'laugh',
  'first',
  'time',
  'thank'],
 ['daughter',
  'graduat',
  'high',
  'school',
  'hung',
  'photo',
  'graduat',
  'parti',
  'live',
  'room',
  'wall',
  'want',
  'go',
  'commun',
  'colleg',
  'well',
  'live',
  'stepdad',
  'husband',
  'recent',
  'earn',
  'master',
  'degre',
  'yesterday',
  'show',
  'graduat',
  'photo',
  'frame',
  'prepar',
  'hung',
  'ask',
  'gon',
  'na',
  'hang',
  'said',
  'live',
  'room',
  'said',
  'great',
  'right',
  'next',
  'ami',
  'graduat',
  'photo',
  'said',
  'next',
  'instead',
  'puzzl',
  'ask',
  'said',
  'feel',
  'right',
  'graduat',
  'photo',
  'master',
  'degre',
  'hung',
  'next',
  'high',
  'school',
  'graduat',
  'photo',
  'high',
  'school',
  'degre',
  'said',
  'photi',
  'differ',
  'weight',
  'valu',
  'suggest',
  'take',
  'daughter',
  'photo',
  'hang',
  'instead',
  'fume',
  'refus',
  'let',
  'photo',
  'hung',
  'anywher',
  'near',
  'claim',
  'entir',
  'wall',
  'refus',
  'sai',
  'photo',
  'month',
  'daughter',
  'desrv',
  'display',
  'encourag',
  'got',
  'upset',
  'said',
  'make',
  'big',
  'deal',
  'could',
  'instead',
  'use',
  'hallway',
  'hall',
  'someth',
  'refus',
  'argument',
  'kept',
  'insist',
  'graduat',
  'photo',
  'taken',
  'hung',
  'wall',
  'due',
  'differ',
  'degre',
  'valu',
  'weight',
  'also',
  'thought',
  'highschool',
  'photo',
  'hang-on',
  'wall',
  'worthi',
  'call',
  'inconsider',
  'feel',
  'say',
  'disrespect',
  'effort',
  'said',
  'choos',
  'hill',
  'die',
  'ridicul',
  'aita',
  'choos',
  'hill',
  'die'],
 ['okay',
  'im',
  'bit',
  'dilemma',
  'current',
  'week',
  'pregnant',
  'get',
  'readi',
  'receiv',
  'girl',
  'problem',
  'husband',
  'recent',
  'told',
  'want',
  'teach',
  'spanish',
  'thing',
  '‘',
  'even',
  'spanish',
  'born',
  'live',
  'spain',
  'sinc',
  'sort',
  'cultur',
  'famili',
  'connect',
  'spain',
  'might',
  'consid',
  'american',
  'initi',
  'told',
  'around',
  'week',
  'thought',
  'joke',
  'let',
  'go',
  'brought',
  'told',
  'felt',
  'told',
  'told',
  'guy',
  'would',
  'hard',
  'differ',
  'languag',
  'start',
  'argu',
  'mani',
  'kid',
  'rais',
  'bilingu',
  'smart',
  'also',
  'feel',
  'like',
  'might',
  'cut',
  'child',
  'mad',
  'accept',
  'cant',
  'help',
  'wonder',
  'asshol'],
 ['throwaway',
  'privaci',
  'background',
  'whenev',
  'year',
  'old',
  'son',
  'get',
  'injur',
  'hurt',
  'id',
  'normal',
  'kiss',
  'injur',
  'area',
  'way',
  'comfort',
  'make',
  'pain',
  'go',
  'away',
  'also',
  'use',
  'sourc',
  'strength',
  'certainli',
  'see',
  'way',
  'kiss',
  'skin',
  'directli',
  'cover',
  'injur',
  'area',
  'obvious',
  'year',
  'old',
  'husband',
  'got',
  'accid',
  'injuri',
  'wound',
  'left',
  'part',
  'chest',
  'pain',
  'toler',
  'take',
  'medic',
  'day',
  'help',
  'chang',
  'wound',
  'dress',
  'clean',
  'wound',
  'could',
  'place',
  'new',
  'wound',
  'dress',
  'ask',
  'kiss',
  'refus',
  'feel',
  'right',
  'wound',
  'still',
  'fresh',
  'alreadi',
  'antibiot',
  'ointment',
  'appli',
  'want',
  'insist',
  'kept',
  'declin',
  'got',
  'made',
  'said',
  'son',
  'suggest',
  'let',
  'go',
  'proceed',
  'appli',
  'new',
  'wound',
  'dress',
  'stop',
  'went',
  'long',
  'vent',
  'care',
  'clearli',
  'feel',
  'gross',
  'want',
  'kiss',
  'wound',
  'thought',
  'silli',
  'told',
  'let',
  'finish',
  'chang',
  'wound',
  'dress',
  'start',
  'argu',
  'leav',
  'room',
  'left',
  'kept',
  'sulk',
  'rest',
  'night',
  'told',
  'son',
  'mommi',
  'love',
  'daddi',
  'want',
  'kiss',
  'wound',
  'could',
  'get',
  'better',
  'floor',
  'son',
  'actual',
  'came',
  'upset',
  'husband',
  'made',
  'feel',
  'bad',
  'around',
  'kept',
  'think',
  'caus',
  'situat',
  'done',
  'want',
  'instead',
  'creat',
  'tension',
  'hous',
  'think'],
 ['know',
  'sound',
  'like',
  'swear',
  'desper',
  'situat',
  'girlfriend',
  'month',
  'visibl',
  'scar',
  'neck',
  'hate',
  'ask',
  'hate',
  'tellth',
  'stori',
  'behind',
  'believ',
  'stori',
  'yet',
  'im',
  'wait',
  'til',
  'comfort',
  'share',
  'met',
  'famili',
  'sever',
  'time',
  'coursemom',
  'aunt',
  'aske',
  'scarlik',
  '-',
  'time',
  'coupl',
  'hour',
  'dinner',
  'movi',
  'time',
  'etc',
  'got',
  'bothersom',
  'girlfriend',
  'would',
  'look',
  'uncomfort',
  'could',
  'tell',
  'question',
  'bring',
  'sad',
  'told',
  'mom',
  'stop',
  'ask',
  'invas',
  'question',
  'scar',
  'everi',
  'time',
  'shed',
  'say',
  'okay',
  'ask',
  'promis',
  'would',
  'turn',
  'around',
  'mother',
  'day',
  'girlfriend',
  'attend',
  'dinner',
  'mom',
  'sit',
  'live',
  'room',
  'mom',
  'goe',
  'ask',
  'girlfriend',
  'scar',
  'time',
  'bigger',
  'audienc',
  'whole',
  'famili',
  'girlfriend',
  'said',
  'shed',
  'rather',
  'talk',
  'mom',
  'kept',
  'corner',
  'kept',
  'ask',
  'yesno',
  'form',
  'sit',
  'next',
  'mom',
  'forc',
  'loud',
  'fart',
  'attempt',
  'take',
  'pressur',
  'attent',
  'away',
  'girlfriend',
  'get',
  'mom',
  'switch',
  'focu',
  'someth',
  'els',
  'like',
  'woohp',
  'famili',
  'start',
  'laugh',
  'mom',
  'turn',
  'gave',
  'nasti',
  'stare',
  'got',
  'awkward',
  'ngl',
  'desper',
  'realli',
  'yell',
  'mom',
  'stop',
  'start',
  'fight',
  'mother',
  'day',
  'thought',
  'instead',
  'make',
  'scene',
  'pull',
  'kitchen',
  'scold',
  'admit',
  'intenti',
  'call',
  'childish',
  'said',
  'want',
  'bring',
  'girlfriend',
  'scar',
  'said',
  'swear',
  'like',
  'time',
  'anyway',
  'girlfriend',
  'left',
  'girlfriend',
  'stop',
  'laugh',
  'car',
  'unfortun',
  'dad',
  'upset',
  'say',
  'behav',
  'poorli',
  'childishli',
  'infront',
  'extend',
  'famili',
  'told',
  'grow',
  'aita'],
 ['brother',
  'singl',
  'widow',
  'dad',
  'kid',
  'nephew',
  'age',
  'use',
  'babysitt',
  'ever',
  'sinc',
  'met',
  'new',
  'girlfriend',
  'stop',
  'hire',
  'help',
  'girlfriend',
  'claim',
  'want',
  'kid',
  'warm',
  'get',
  'use',
  'woman',
  'life',
  'wtf',
  'start',
  'ask',
  'watch',
  'boy',
  'whenev',
  'someth',
  'id',
  'help',
  'im',
  'abl',
  'work',
  'demand',
  'job',
  'need',
  'cover',
  'full',
  'time',
  'whatev',
  'reason',
  'refus',
  'acknowledg',
  'day',
  'ago',
  'go',
  'lunch',
  'girlfriend',
  'meet',
  'friend',
  'want',
  'boy',
  'told',
  'work',
  'beg',
  'take',
  'day',
  'refus',
  'went',
  'work',
  'cowork',
  'mine',
  'enter',
  'offic',
  'behind',
  'nephew',
  'flabbergast',
  'told',
  'brother',
  'drop',
  'coulld',
  'stay',
  'state',
  'disbelief',
  'also',
  'furiou',
  'felt',
  'stuck',
  'terrifi',
  'boss',
  'would',
  'see',
  'get',
  'troubl',
  'even',
  'take',
  'time',
  'busi',
  'frustrrat',
  'call',
  'polic',
  'explain',
  'happen',
  'got',
  'ahold',
  'brother',
  'wss',
  'forc',
  'come',
  'take',
  'well',
  'get',
  'troubl',
  'authorti',
  'spent',
  'hour',
  'talk',
  'bkss',
  'eventu',
  'found',
  'leav',
  'work',
  'earli',
  'go',
  'home',
  'even',
  'brother',
  'call',
  'start',
  'scream',
  'call',
  'name',
  'sort',
  'say',
  'ruin',
  'meet',
  'girlfriend',
  'friend',
  'caus',
  'get',
  'troubl',
  'polic',
  'call',
  'vile',
  'sob',
  'said',
  'couldv',
  'kid',
  'coupl',
  'hour',
  'even',
  'took',
  'home',
  'took',
  'rest',
  'day',
  'speak',
  'girlfriend',
  'constantli',
  'shame',
  'id',
  'done',
  'say',
  'treat',
  'kid',
  'better',
  'asham'],
 ['myf',
  'sonm',
  'came',
  'husbandm',
  'year',
  'old',
  'husband',
  'atheist',
  'support',
  'lgbtq+',
  'commun',
  'proud',
  'son',
  'come',
  'howev',
  'husband',
  'mother',
  'devout',
  'cathol',
  'extrem',
  'intoler',
  'gay',
  'peopl',
  'wealthi',
  'children',
  'told',
  'young',
  'age',
  'colleg',
  'would',
  'paid',
  'long',
  'attend',
  'privat',
  'christian',
  'cathol',
  'school',
  'believ',
  'keep',
  'parti',
  'premarit',
  'sex',
  'etc',
  'agre',
  'argu',
  'children',
  'get',
  'best',
  'educ',
  'possibl',
  'regardless',
  'school',
  'religi',
  'affili',
  'top',
  'prioriti',
  'refus',
  'chang',
  'mind',
  'son',
  'chose',
  'christian',
  'colleg',
  'one',
  'state',
  'attend',
  'graduat',
  'lot',
  'colleg',
  'credit',
  'take',
  'mani',
  'ap',
  'class',
  'high',
  'school',
  'done',
  'three',
  'year',
  'oppos',
  'four',
  'current',
  'began',
  'year',
  'two',
  'alreadi',
  'paid',
  'labor',
  'day',
  'weekend',
  'came',
  'home',
  'celebr',
  'grandma',
  'birthday',
  'told',
  'one',
  'cousin',
  'talk',
  'boy',
  'colleg',
  'thought',
  'could',
  'trust',
  'seem',
  'support',
  'accord',
  'son',
  'told',
  'mom',
  'dad',
  'husband',
  'sister',
  'husband',
  'religi',
  'mother',
  'law',
  'son',
  'livid',
  'call',
  'inform',
  'make',
  'futur',
  'payment',
  'toward',
  'tuition',
  'told',
  'relay',
  'messag',
  'longer',
  'speak',
  'told',
  'mani',
  'time',
  'come',
  'grandma',
  'cousin',
  'aunt',
  'uncl',
  'colleg',
  'hate',
  'cant',
  'husband',
  'afford',
  'colleg',
  'like',
  'mother',
  'law',
  'go',
  'contact',
  'two',
  'childrenf',
  'get',
  'chanc',
  'tuition',
  'paid',
  'well',
  'son',
  'okay',
  'wait',
  'sake',
  'sibl',
  'unfortun',
  'take',
  'student',
  'loan',
  'eat',
  'cost',
  'final',
  'year',
  'son',
  'obvious',
  'devast',
  'final',
  'year',
  'colleg',
  'paid',
  'next',
  'year',
  'cousin',
  'someon',
  'trust',
  'want',
  'husband',
  'foot',
  'bill',
  'next',
  'year',
  '$',
  'save',
  'current',
  'plan',
  'use',
  'much',
  'need',
  'kitchen',
  'renov',
  'oven',
  'bare',
  'work',
  'dishwash',
  'work',
  'kitchen',
  'worn',
  'outdat',
  'son',
  'call',
  'asshol',
  'priorit',
  'remodel',
  'educ',
  'weve',
  'explain',
  'kitchen',
  'fall',
  'apart',
  'much',
  'need',
  'nowher',
  'near',
  'cost',
  'tuition',
  'even',
  'postpon',
  'would',
  'still',
  'short',
  'privat',
  'school',
  'expens',
  'feel',
  'like',
  'adult',
  'need',
  'one',
  'deal',
  'consequ',
  'us',
  'aita',
  'use',
  'famili',
  'save',
  'cover',
  'remain',
  'tuition',
  'edit',
  'feel',
  'like',
  'clear',
  'kitchen',
  'remodel',
  'obvious',
  'applianc',
  'alon',
  'go',
  'cost',
  '$',
  'major',
  'money',
  'go',
  'go',
  'necessari',
  'infrastructur',
  'repair',
  'live',
  'expens',
  'area',
  'ye',
  'cost',
  'fix',
  'necess',
  'kitchen',
  'way',
  'fanci',
  'clear',
  'origin',
  'post',
  'remodel',
  'aesthet'],
 ['throwaway',
  'husband',
  'famili',
  'know',
  'normal',
  'reddit',
  'husband',
  'marri',
  'almost',
  'six',
  'year',
  'time',
  'engag',
  'neither',
  'us',
  'much',
  'money',
  'way',
  'could',
  'afford',
  'wed',
  'dress',
  'want',
  'wear',
  'thank',
  'mother',
  'someth',
  'seamstress',
  'offer',
  'help',
  'make',
  'dream',
  'dress',
  'spent',
  'year',
  'find',
  'pattern',
  'pick',
  'fabric',
  'make',
  'beauti',
  'wed',
  'dress',
  'complet',
  'scratch',
  'first',
  'big',
  'project',
  'ive',
  'ever',
  'sewn',
  'im',
  'quit',
  'proud',
  'make',
  'also',
  'brought',
  'much',
  'closer',
  'mother',
  'whole',
  'project',
  'sort',
  'bond',
  'experi',
  'also',
  'hold',
  'lot',
  'addit',
  'sentiment',
  'valu',
  'dad',
  'pass',
  'away',
  'make',
  'sew',
  'heart',
  'shape',
  'cutout',
  'one',
  'shirt',
  'line',
  'dress',
  'order',
  'keep',
  'big',
  'day',
  'dress',
  'brought',
  'closer',
  'husband',
  'famili',
  'mean',
  'much',
  'sil',
  'got',
  'engag',
  'recent',
  'similar',
  'situat',
  'wed',
  'got',
  'colleg',
  'start',
  'work',
  'teacher',
  'loan',
  'rel',
  'low',
  'salari',
  'much',
  'money',
  'pay',
  'wed',
  'dress',
  'shop',
  'bit',
  'stress',
  'dress',
  'fit',
  'tast',
  'far',
  'budget',
  'lead',
  'tuesday',
  'morn',
  'call',
  'husband',
  'ask',
  'would',
  'let',
  'borrow',
  'dress',
  'mention',
  'could',
  'someth',
  'borrow',
  'husband',
  'say',
  'would',
  'ask',
  'first',
  'loan',
  'sister',
  'told',
  'problem',
  'id',
  'bare',
  'miss',
  'sit',
  'box',
  'anyway',
  'still',
  'said',
  'would',
  'ask',
  'forgot',
  'finish',
  'work',
  'day',
  'pick',
  'job',
  'came',
  'home',
  'littl',
  'sister',
  'tri',
  'wed',
  'dress',
  'mom',
  'clip',
  'back',
  'fit',
  'better',
  'see',
  'somebodi',
  'els',
  'dress',
  'total',
  'blindsid',
  'stun',
  'ask',
  'mil',
  'said',
  'plan',
  'alter',
  'sinc',
  'sil',
  'significantli',
  'smaller',
  'told',
  'way',
  'would',
  'loan',
  'dress',
  'anyon',
  'repres',
  'love',
  'husband',
  'bond',
  'famili',
  'well',
  'escal',
  'argument',
  'end',
  'mil',
  'call',
  'selfish',
  'bitch',
  'leav',
  'sil',
  'husband',
  'thank',
  'grab',
  'dress',
  'argument',
  'grab',
  'left',
  'realli',
  'upset',
  'thought',
  'time',
  'call',
  'use',
  'dress',
  'love',
  'sil',
  'feel',
  'mayb',
  'overreact',
  'shut',
  'quickli',
  'aita',
  'tldr',
  'sil',
  'want',
  'borrow',
  'homemad',
  'wed',
  'dress',
  'tri',
  'without',
  'knowledg',
  'freak',
  'said',
  'edit',
  'clip',
  'meant',
  'use',
  'binder',
  'clip',
  'secur',
  'excess',
  'fabric',
  'actual',
  'damag',
  'dress'],
 ['situat',
  'began',
  'year',
  'ago',
  'blew',
  'face',
  'last',
  'week',
  'son',
  'gregori',
  'year',
  'old',
  'began',
  'th',
  'grade',
  'friend',
  'peter',
  'also',
  'began',
  'th',
  'grade',
  'gregori',
  'peter',
  'friend',
  'sinc',
  'elementari',
  'school',
  'last',
  'year',
  'notic',
  'gregori',
  'would',
  'raven',
  'hungri',
  'school',
  'everi',
  'day',
  'would',
  'come',
  'home',
  'eat',
  'frozen',
  'dinner',
  'someth',
  'help',
  'second',
  'dinner',
  'time',
  'chalk',
  '-year-old',
  'boy',
  'let',
  'someth',
  'situat',
  'nag',
  'though',
  'gregori',
  'clear',
  'first',
  'eventu',
  'came',
  'clean',
  'peter',
  'sent',
  'school',
  'everi',
  'day',
  'lunch',
  'look',
  'like',
  'typic',
  'case',
  'neglect',
  'unfit',
  'parent',
  'one',
  'time',
  'gregori',
  'went',
  'hous',
  'came',
  'home',
  'comment',
  'smell',
  'realli',
  'bad',
  'peter',
  'parent',
  'lock',
  'garag',
  'hour',
  'feel',
  'bad',
  'peter',
  'decid',
  'discret',
  'begin',
  'give',
  'gregori',
  'food',
  'everi',
  'day',
  'doubl',
  'food',
  'time',
  'becam',
  'less',
  'discret',
  'began',
  'pack',
  'separ',
  'lunch',
  'peter',
  'never',
  'thank',
  'anyon',
  'knew',
  'peter',
  'eat',
  'food',
  'sent',
  'year',
  'thing',
  'differ',
  'money',
  'tighter',
  'person',
  'reason',
  'frankli',
  'expens',
  'thing',
  'decid',
  'spend',
  'exorbit',
  'amount',
  'money',
  'support',
  'someon',
  'els',
  'child',
  'sat',
  'gregori',
  'told',
  'would',
  'pack',
  'one',
  'lunch',
  'alon',
  'made',
  'extrem',
  'clear',
  'share',
  'anyon',
  'includ',
  'peter',
  'gregori',
  'follow',
  'instruct',
  'one',
  'day',
  'last',
  'week',
  'got',
  'phone',
  'call',
  'peter',
  'mother',
  'livid',
  'cut',
  'peter',
  'without',
  'singl',
  'word',
  'ask',
  'becam',
  'respons',
  'feed',
  'son',
  'respond',
  'known',
  'send',
  'gregori',
  'school',
  'much',
  'food',
  'would',
  'handl',
  'ask',
  'rememb',
  'began',
  'send',
  'school',
  'two',
  'lunch',
  'first',
  'place',
  'hung',
  'feel',
  'conflict',
  'know',
  'im',
  'kind',
  'thrown',
  'back',
  'face',
  'approach',
  'situat',
  'incorrectli'],
 ['im',
  'realli',
  'upset',
  'need',
  'fli',
  'california',
  'washington',
  'dad',
  'surgeri',
  'accid',
  'want',
  'help',
  'stepmom',
  'day',
  'gone',
  'week',
  'ask',
  'sister',
  'could',
  'come',
  'day',
  'water',
  'plant',
  'check',
  'mail',
  'also',
  'blue',
  'parakeet',
  'love',
  'male',
  'femal',
  'femal',
  'readi',
  'lay',
  'egg',
  'alreadi',
  'nest',
  'cage',
  'trip',
  'alreadi',
  'sit',
  'egg',
  'nest',
  'told',
  'sister',
  'alway',
  'make',
  'sure',
  'clean',
  'cup',
  'bird',
  'food',
  'add',
  'everyday',
  'keep',
  'water',
  'clean',
  'explain',
  'twice',
  'want',
  'make',
  'sure',
  'bird',
  'egg',
  'would',
  'okay',
  'male',
  'would',
  'bring',
  'food',
  'femal',
  'eat',
  'sit',
  'egg',
  'want',
  'sure',
  'would',
  'follow',
  'said',
  'also',
  'clean',
  'tray',
  'cage',
  'everyday',
  'sinc',
  'leav',
  'ask',
  'bird',
  'food',
  'water',
  'clean',
  'etc',
  'told',
  'ye',
  'everytim',
  'noth',
  'worri',
  'final',
  'got',
  'back',
  'last',
  'night',
  'first',
  'thing',
  'check',
  'bird',
  'yeah',
  'cage',
  'clean',
  'water',
  'guess',
  'food',
  'cup',
  'trash',
  'seed',
  'alreadi',
  'ate',
  'mother',
  'bird',
  'was…you',
  'know',
  'obvious',
  'egg',
  'surviv',
  'either',
  'one',
  'still',
  'aliv',
  'male',
  'look',
  'sad',
  'first',
  'thing',
  'notic',
  'right',
  'top',
  'nest',
  'box',
  'look',
  'insid',
  'cant',
  'tell',
  'much',
  'cri',
  'take',
  'egg',
  'die',
  'still',
  'tri',
  'incub',
  'babi',
  'sister',
  'claim',
  'cup',
  'alway',
  'full',
  'assum',
  'need',
  'put',
  'food',
  'despit',
  'tell',
  'refil',
  'cup',
  'food',
  'noth',
  'keep',
  'say',
  'honest',
  'mistak',
  'mean',
  'die',
  'im',
  'refus',
  'pay',
  '$',
  'promis',
  'drive',
  'everyday',
  'follow',
  'everyth',
  'instruct',
  'everyth',
  'els',
  'except',
  'one',
  'thing',
  'fair',
  'refus',
  'pay',
  'call',
  'petti',
  'shitti',
  'brother',
  'favor',
  'take',
  'time',
  'day',
  'give',
  'money',
  'need',
  'im',
  'still',
  'realli',
  'sadangri',
  'bird',
  'feel',
  'like',
  'deserv',
  'anyth',
  'one',
  'respons',
  'mayb',
  'know',
  'aita'],
 ['ftm',
  'tran',
  'came',
  'famili',
  'month',
  'ago',
  'everyon',
  'support',
  'although',
  'believ',
  'mom',
  'tini',
  'bit',
  'bum',
  'said',
  'would',
  'alway',
  'support',
  'though',
  'need',
  'time',
  'process',
  'honestli',
  'pain',
  'reason',
  'im',
  'mom',
  'got',
  'tattoo',
  'sister',
  'name',
  'dead',
  'name',
  'born',
  'huge',
  'tattoo',
  'uniqu',
  'design',
  'incorpor',
  'dead',
  'name',
  'cover',
  'arm',
  'realli',
  'proud',
  'old',
  'sister',
  'design',
  'gift',
  'birthday',
  'obvious',
  'constantli',
  'see',
  'dead',
  'name',
  'kind',
  'trigger',
  'therefor',
  'told',
  'need',
  'remov',
  'seem',
  'shock',
  'told',
  'old',
  'longer',
  'tattoo',
  'session',
  'gotten',
  'tattoo',
  'year',
  'bc',
  'also',
  'diagnos',
  'depress',
  'use',
  'excus',
  'energi',
  'chang',
  'anymor',
  'realli',
  'believ',
  'whatev',
  'often',
  'tri',
  'cover',
  'cloth',
  'feel',
  'like',
  'enough',
  'knowledg',
  'name',
  'still',
  'haunt',
  'refus',
  'chang',
  'lot',
  'fight',
  'said',
  'realli',
  'tri',
  'hide',
  'part',
  'bodi',
  'love',
  'bc',
  'much',
  'histori',
  'love',
  'children',
  'tattoo',
  'cant',
  'realli',
  'relat',
  'particularli',
  'signific',
  'tattoo',
  'birthday',
  'day',
  'ago',
  'famili',
  'came',
  'issu',
  'came',
  'bc',
  'cousin',
  'show',
  'new',
  'tattoo',
  'someon',
  'ask',
  'dead',
  'name',
  'tattoo',
  'mom',
  'got',
  'uncomfort',
  'silent',
  'excus',
  'went',
  'kitchen',
  'everyon',
  'start',
  'ask',
  'told',
  'want',
  'remov',
  'tattoo',
  'want',
  'sister',
  'also',
  'want',
  'bc',
  'believ',
  'would',
  'look',
  'realli',
  'aw',
  'sinc',
  'entir',
  'design',
  'attach',
  'name',
  'way',
  'cover',
  'would',
  'make',
  'entir',
  'arm',
  'black',
  'anyway',
  'actual',
  'plan',
  'reaction',
  'cousin',
  'relat',
  'bit',
  'bc',
  'queer',
  'reason',
  'got',
  'furiou',
  'went',
  'mom',
  'scream',
  'unsupport',
  'accus',
  'transphob',
  'believ',
  'although',
  'nice',
  'see',
  'someon',
  'get',
  'angri',
  'tattoo',
  'bc',
  'cousin',
  'final',
  'say',
  'thing',
  'feel',
  'want',
  'put',
  'word',
  'mom',
  'panic',
  'attack',
  'left',
  'hous',
  'stay',
  'grandpa',
  'dad',
  'sister',
  'angri',
  'make',
  'famili',
  'gang',
  'aita',
  'edit',
  'read',
  'comment',
  'tri',
  'apolog',
  'mom',
  'current',
  'nc',
  'stuff',
  'happen',
  'especi',
  'cousin',
  'know',
  'updat',
  'work',
  'ill',
  'tri',
  'post',
  'one',
  'figur',
  'ps',
  'show',
  'sister',
  'well',
  'want',
  'say',
  'thank',
  'wholeheartedli',
  'agre',
  'everyon',
  'say',
  'im',
  'ta'],
 ['week',
  'ago',
  'learn',
  'step',
  'brother',
  'tiktok',
  'dad',
  'step',
  'mom',
  'two',
  'step',
  'brother',
  'pari',
  'stay',
  'mom',
  'time',
  'im',
  'would',
  'love',
  'even',
  'tell',
  'go',
  'immedi',
  'sent',
  'text',
  'dad',
  'ask',
  'theyr',
  'enjoy',
  'time',
  'pari',
  'despit',
  'read',
  'repli',
  'late',
  'night',
  'tri',
  'play',
  'dumb',
  'said',
  'great',
  'wish',
  'could',
  'yeah',
  'repli',
  'could',
  'taken',
  'said',
  'possibl',
  'well',
  'talk',
  'later',
  'return',
  'told',
  'im',
  'hurt',
  'take',
  'dad',
  'took',
  'asid',
  'told',
  'financ',
  'tight',
  'vacat',
  'gift',
  'step',
  'mom',
  'parent',
  'bought',
  'dad',
  'daughter',
  'grandchildren',
  'remind',
  'act',
  'entitl',
  'way',
  'effect',
  'guest',
  'even',
  'though',
  'grandpar',
  'paid',
  'invit',
  'act',
  'entitl',
  'way',
  'convinc',
  'could',
  'refus',
  'go',
  'without',
  'paid',
  'gone',
  'somewher',
  'cheaper',
  'stay',
  'littl',
  'less',
  'longer',
  'ask',
  'mom',
  'pitch',
  'would',
  'exclusionari',
  'money',
  'could',
  'made',
  'work',
  'told',
  'dad',
  'disappoint',
  'came',
  'last',
  'night',
  'step',
  'mom',
  'parent',
  'came',
  'dinner',
  'subject',
  'vacat',
  'came',
  'everyon',
  'takibg',
  'sit',
  'quiet',
  'thank',
  'nice',
  'thing',
  'famili',
  'dad',
  'look',
  'frowni',
  'way',
  'everyon',
  'went',
  'quiet',
  'dad',
  'tri',
  'explain',
  'understood',
  'expens',
  'gift',
  'im',
  'act',
  'like',
  'entitl',
  'brat',
  'go',
  'room',
  'cant',
  'behav',
  'said',
  'seem',
  'like',
  'belong',
  'anyway',
  'told',
  'enjoy',
  'famili',
  'dinner',
  'left',
  'later',
  'grandmoth',
  'came',
  'room',
  'tri',
  'explain',
  'gift',
  'grandchildren',
  'afford',
  'includ',
  'well',
  'said',
  'initi',
  'budget',
  'daughter',
  'grandchildren',
  'stretch',
  'includ',
  'dad',
  'well',
  'wish',
  'could',
  'done',
  'could',
  'realli',
  'stretch',
  'told',
  'problem',
  'dad',
  'beef',
  'get',
  'act',
  'like',
  'care',
  'either',
  'ok',
  'like',
  'im',
  'stranger',
  'care',
  'ball',
  'put',
  'big',
  'girl',
  'pant',
  'wear',
  'sleev',
  'ask',
  'get',
  'room',
  'left',
  'heard',
  'tell',
  'dad',
  'rude',
  'im',
  'ground',
  'notic',
  'act',
  'like',
  'entitl',
  'brat',
  'aita',
  'situat',
  'edit',
  'relev',
  'step',
  'grandmoth',
  'comment',
  'tri',
  'includ',
  'abl',
  'work',
  'budget',
  'nonsens',
  'theyr',
  'rich',
  'excus',
  'take',
  'fool',
  'relev',
  'hold',
  'grudg',
  'dad',
  'im',
  'specifi',
  'cleariti'],
 ['[',
  ']',
  'met',
  'wonder',
  'man',
  'philip',
  '[',
  ']',
  'year',
  'ago',
  'got',
  'marri',
  'month',
  'ago',
  'context',
  'yo',
  'son',
  'billi',
  'previou',
  'relationship',
  'ex',
  'pictur',
  'admit',
  'philip',
  'relationship',
  'famili',
  'great',
  'would',
  'disagre',
  'lot',
  'thing',
  'exampl',
  'argument',
  'dad',
  'said',
  'keep',
  'grandson',
  'away',
  'philip',
  'state',
  'visit',
  'billi',
  'work',
  'sick',
  'time',
  'latest',
  'argument',
  'made',
  'thing',
  'wors',
  'mom',
  'sister',
  'discuss',
  'natur',
  'remedi',
  'theyr',
  'stuff',
  'niec',
  'philip',
  'pediatrician',
  'call',
  'ignor',
  'use',
  'med',
  'instead',
  'caus',
  'huge',
  'argument',
  'philip',
  'longer',
  'welcom',
  'parent',
  'hous',
  'theyd',
  'sent',
  'billi',
  'invit',
  'christma',
  'includ',
  'philip',
  'expect',
  'given',
  'strain',
  'relationship',
  'becom',
  'call',
  'mom',
  'confirm',
  'ill',
  'attend',
  'minut',
  'philip',
  'found',
  'went',
  'say',
  'could',
  'believ',
  'fine',
  'famili',
  'exclud',
  'agre',
  'go',
  'leav',
  'behind',
  'told',
  'celebr',
  'get',
  'decid',
  'guestlist',
  'also',
  'im',
  'leav',
  'behind',
  'plan',
  'christma',
  'said',
  'thought',
  'wed',
  'automat',
  'celebr',
  'togeth',
  'us',
  'im',
  'take',
  'billi',
  'away',
  'well',
  'thought',
  'bit',
  'melodramat',
  'liter',
  'hour',
  'parent',
  'home',
  'insist',
  'principl',
  'respect',
  'big',
  'argument',
  'said',
  'basic',
  'alien',
  'continu',
  'pick',
  'argument',
  'famili',
  'start',
  'rant',
  'say',
  'fact',
  'invit',
  'fact',
  'let',
  'spend',
  'christma',
  'alon',
  'without',
  'billi',
  'went',
  'back',
  'forth',
  'issu',
  'seem',
  'reach',
  'solut',
  'parent',
  'use',
  'spend',
  'everi',
  'major',
  'holiday',
  'billi',
  'see',
  'much',
  'pressur',
  'im',
  'get',
  'side'],
 ['full',
  'time',
  'colleg',
  'student',
  'right',
  'im',
  'live',
  'sister',
  'clair',
  'husband',
  'thoma',
  'get',
  'current',
  'semster',
  'work',
  'everyth',
  'need',
  'daili',
  'skinhair',
  'routin',
  'borrow',
  'stuff',
  'clair',
  'clair',
  'issu',
  'begin',
  'start',
  'complain',
  'randomli',
  'walk',
  'room',
  'go',
  'look',
  'stuff',
  'ask',
  'gave',
  'hard',
  'time',
  'walk',
  'thoma',
  'half',
  'nake',
  'get',
  'eye',
  'shadow',
  'borrow',
  'time',
  'walk',
  'late',
  'night',
  'told',
  'ned',
  'get',
  'permiss',
  'enter',
  'room',
  'take',
  'anyth',
  'figur',
  'would',
  'make',
  'thing',
  'complic',
  'enough',
  'ask',
  'borrow',
  'item',
  'last',
  'night',
  'around',
  'pm',
  'went',
  'upstair',
  'bedroom',
  'grab',
  'hair',
  'dryer',
  'walk',
  'woop',
  'saw',
  'intim',
  'posit',
  'togeth',
  'bed',
  'idea',
  'theyr',
  'especi',
  'sinc',
  'clair',
  'told',
  'thoma',
  'feel',
  'sick',
  'past',
  'day',
  'lash',
  'yell',
  'get',
  'quickli',
  'grab',
  'hair',
  'dryer',
  'walk',
  'shut',
  'door',
  'minut',
  'later',
  'came',
  'downstair',
  'robe',
  'went',
  'say',
  'done',
  'repeatedli',
  'disrespect',
  'violat',
  'husband',
  'privaci',
  'told',
  'cool',
  'big',
  'deal',
  'need',
  'dryer',
  'time',
  'ask',
  'permissin',
  'got',
  'even',
  'louder',
  'say',
  'busi',
  'barg',
  'marit',
  'space',
  'embarrass',
  'husband',
  'like',
  'told',
  'sorri',
  'realli',
  'overreact',
  'whole',
  'thing',
  'made',
  'piss',
  'went',
  'im',
  'live',
  'rent',
  'free',
  'yet',
  'respect',
  'enough',
  'stop',
  'argu',
  'went',
  'room',
  'morn',
  'thoma',
  'left',
  'hous',
  'earli',
  'amd',
  'clair',
  'ignor',
  'breakfast',
  'still',
  'upset',
  'say',
  'get',
  'say',
  'wether',
  'overreact',
  'behavior',
  'inappropri',
  'even',
  'want',
  'apolog',
  'husband',
  'make',
  'last',
  'night',
  'awkward'],
 ['everyon',
  'work',
  'full',
  'time',
  'daycar',
  'younger',
  'preschool',
  'still',
  'diaper',
  'day',
  'huge',
  'barbecu',
  'friend',
  'high',
  'school',
  'friend',
  'parent',
  'also',
  'ran',
  'one',
  'preschool',
  'mom',
  'chat',
  'littl',
  'minut',
  'mom',
  'said',
  'kid',
  'diaper',
  'dirti',
  'ask',
  'could',
  'chang',
  'thought',
  'joke',
  'laugh',
  'made',
  'joke',
  'back',
  'chang',
  'diaper',
  'im',
  'clock',
  'friend',
  'sit',
  'kind',
  'laugh',
  'awkwardli',
  'look',
  'dead',
  'seriou',
  'said',
  'realli',
  'chang',
  'diaper',
  'felt',
  'realli',
  'awkward',
  'said',
  'sorri',
  'went',
  'walk',
  'away',
  'start',
  'explain',
  'husband',
  'one',
  'chang',
  'diaper',
  'germaphob',
  'emetaphobia',
  'fear',
  'throw',
  'done',
  'time',
  'absolut',
  'alway',
  'threw',
  'appar',
  'crippl',
  'fear',
  'felt',
  'regardless',
  'circumst',
  'inappropri',
  'ask',
  'said',
  'seem',
  'realli',
  'shock',
  'continu',
  'explain',
  'much',
  'hate',
  'chang',
  'diaper',
  'husband',
  'help',
  'told',
  'like',
  'chang',
  'either',
  'think',
  'inappropri',
  'keep',
  'push',
  'alreadi',
  'told',
  'said',
  'devast',
  'learn',
  'daughter',
  'favorit',
  'teacher',
  'littl',
  'empathi',
  'walk',
  'away',
  'minut',
  'later',
  'saw',
  'put',
  'kid',
  'car',
  'leav',
  'assum',
  'went',
  'wherev',
  'husband',
  'text',
  'boss',
  'tell',
  'happen',
  'go',
  'vacat',
  'assum',
  'mother',
  'would',
  'say',
  'someth',
  'boss',
  'told',
  'could',
  'tell',
  'detail',
  'get',
  'back',
  'shed',
  'let',
  'know',
  'mom',
  'said',
  'anyth',
  'seem',
  'like',
  'right',
  'say',
  'think',
  'im',
  'ah',
  'situat',
  'employe',
  'even',
  'still',
  'think',
  'someth',
  'ask',
  'someon',
  'outsid',
  'work',
  'hour',
  'know',
  'mom',
  'well',
  'rare',
  'talk',
  'pickup',
  'drop',
  'sit',
  'tabl',
  'friend',
  'presum',
  'know',
  'situat',
  'wouldv',
  'better',
  'peopl',
  'ask',
  'help',
  'think',
  'would',
  'rather',
  'let',
  'kid',
  'sit',
  'dirti',
  'diaper',
  'car',
  'ride',
  'home',
  'instead',
  'chang',
  'go',
  'place',
  'without',
  'husband',
  'part',
  'make',
  'feel',
  'littl',
  'bit',
  'like',
  'asshol',
  'fact',
  'kid',
  'sit',
  'poop',
  'car',
  'ride',
  'home',
  'assum',
  'left',
  'would',
  'either',
  'ask',
  'one',
  'friend',
  'suck',
  'asshol',
  'updat',
  '+',
  'context',
  'pretti',
  'sure',
  'ah',
  'thank',
  'valid',
  'lot',
  'peopl',
  'ask',
  'plan',
  'go',
  'parti',
  'possibl',
  'couldv',
  'suggest',
  'call',
  'cp',
  'report',
  'neglect',
  'want',
  'add',
  'stuff',
  'probabl',
  'said',
  'first',
  'time',
  'around',
  'ive',
  'never',
  'post',
  'first',
  'school',
  'work',
  'incred',
  'expens',
  'parent',
  'incred',
  'wealthi',
  'kind',
  'entitl',
  'complet',
  'surpris',
  'also',
  'know',
  'famili',
  'nanni',
  'occasion',
  'drop',
  'kid',
  'pick',
  'know',
  'live-in',
  'nanni',
  'boss',
  'say',
  'enough',
  'time',
  'handl',
  'diaper',
  'chang',
  'especi',
  'sinc',
  'child',
  'older',
  'sleep',
  'night',
  'feel',
  'bad',
  'husband',
  'seem',
  'like',
  'pretti',
  'nice',
  'guy',
  'think',
  'chang',
  'kid',
  'much',
  'normal',
  'parent',
  'nanni',
  'secondli',
  'talk',
  'friend',
  'mom',
  'host',
  'parti',
  'mother',
  'relat',
  'peopl',
  'invit',
  'kind',
  'invit',
  'everyon',
  'know',
  'type',
  'thing',
  'appar',
  'famili',
  'usual',
  'handl',
  'husband',
  'around',
  'assum',
  'plan',
  'ran',
  'figur',
  'need',
  'bother',
  'famili',
  'anymor',
  'im',
  'sure',
  'get',
  'fed',
  'chang',
  'child',
  'old',
  'enough',
  'start',
  'potti',
  'train',
  'said',
  'embarrass',
  'go',
  'ask',
  'someon',
  'els',
  'final',
  'everyon',
  'say',
  'call',
  'cp',
  'talk',
  'boss',
  'complet',
  'side',
  'btw',
  'think',
  'necessari',
  'time',
  'truli',
  'believ',
  'kid',
  'alon',
  'often',
  'enough',
  'problem',
  'kid',
  'never',
  'kind',
  'seriou',
  'diaper',
  'rash',
  'would',
  'indic',
  'left',
  'dirti',
  'diaper',
  'long',
  'period',
  'time',
  'though',
  'mom',
  'drop',
  'dirti',
  'diaper',
  'occasion',
  'seem',
  'like',
  'happen',
  'car',
  'whove',
  'never',
  'chang',
  'diaper',
  'kind',
  'tell',
  'fresh',
  'vs',
  'sit',
  'awhil',
  'go',
  'keep',
  'close',
  'eye',
  'though',
  'keep',
  'record',
  'stuff',
  'like',
  'though',
  'agre',
  'mom',
  'seriou',
  'issu',
  'caus',
  'problem',
  'diaper',
  'rash',
  'seem',
  'rare',
  'occas',
  'think',
  'warrant',
  'cp',
  'call'],
 ['last',
  'thursday',
  'went',
  'boyfriend',
  'jay',
  'hous',
  'thanksgiv',
  'brought',
  'son',
  'jay',
  'togeth',
  'year',
  'half',
  'amaz',
  'man',
  'world',
  'amaz',
  'son',
  'bio',
  'father',
  'life',
  'genuin',
  'see',
  'one',
  'jay',
  'parent',
  'came',
  'well',
  'get',
  'along',
  'ever',
  'seen',
  'time',
  'thanksgiv',
  'time',
  'realli',
  'bond',
  'guess',
  'never',
  'met',
  'son',
  'person',
  'either',
  'knew',
  'time',
  'arriv',
  'jay',
  'parent',
  'alreadi',
  'help',
  'finish',
  'dinner',
  'greet',
  'jay',
  'dad',
  'ask',
  'littl',
  'guy',
  'introduc',
  'son',
  'introduc',
  'jay',
  'parent',
  'grandma',
  'grandpa',
  'preciou',
  'boy',
  'notic',
  'time',
  'three',
  'becam',
  'quiet',
  'almost',
  'immedi',
  'end',
  'wait',
  'live',
  'room',
  'alon',
  'almost',
  'half',
  'hour',
  'dinner',
  'thing',
  'incred',
  'awkward',
  'rest',
  'night',
  'son',
  'end',
  'call',
  'parent',
  'grandpa',
  'grandma',
  'quickli',
  'notic',
  'would',
  'disingenu',
  'awkward',
  'dinner',
  'say',
  'anyth',
  'stick',
  'around',
  'long',
  'either',
  'left',
  'cold',
  'ask',
  'jay',
  'deal',
  'lost',
  'claim',
  'put',
  'incred',
  'awkward',
  'posit',
  'parent',
  'appar',
  'think',
  'seriou',
  'yet',
  'began',
  'question',
  'use',
  'replac',
  'daddi',
  'said',
  'way',
  'line',
  'introduc',
  'way',
  'without',
  'even',
  'talk',
  'beforehand',
  'think',
  'ridicul',
  'one',
  'day',
  'go',
  'son',
  'stepdad',
  'go',
  'formal',
  'nonsens',
  'claim',
  'point',
  'end',
  'fight',
  'till',
  'storm',
  'talk',
  'sinc',
  'simpli',
  'wait',
  'apolog',
  'talk',
  'sister',
  'last',
  'night',
  'said',
  'mortifi',
  'hear',
  'say',
  'also',
  'geat',
  'read',
  'seriou',
  'never',
  'felt',
  'like',
  'jay',
  'intend',
  'take',
  'dad',
  'role',
  'got',
  'question',
  'wrong',
  'edit',
  'ok',
  'mess',
  'genuin',
  'thought',
  'jay',
  'would',
  'ok',
  'jay',
  'alway',
  'treat',
  'son',
  'well',
  'guess',
  'misread',
  'treat',
  'kindli',
  'ok',
  'father',
  'figur',
  'im',
  'pretti',
  'sure',
  'ruin',
  'importantli',
  'hurt',
  'son',
  'edit',
  'call',
  'jay',
  'apolog',
  'go',
  'take',
  'break',
  'im',
  'go',
  'look',
  'make',
  'sure',
  'scar',
  'kid'],
 ['wife',
  'two',
  'daughter',
  '&',
  'year',
  'old',
  'prime',
  'disney',
  'age',
  'theyr',
  'super',
  'princess',
  'weve',
  'talk',
  'take',
  'disney',
  'next',
  'year',
  'know',
  'theyd',
  'love',
  'wife',
  'never',
  'ive',
  'once-',
  'year',
  'old',
  'definit',
  'memor',
  'trip',
  'famili',
  'save',
  'weve',
  'alway',
  'known',
  'disney',
  'would',
  'big',
  'trip',
  'girl',
  'juli',
  'fil',
  'got',
  'diagnos',
  'prostat',
  'cancer',
  'round',
  'chemo',
  'rather',
  'intens',
  'stay',
  'hospit',
  'gotten',
  'wors',
  'spread',
  'across',
  'organ',
  'bodi',
  'rather',
  'tri',
  'suffer',
  'fight',
  'opt',
  'chemo',
  'tri',
  'live',
  'time',
  'left',
  'result',
  'mil',
  'decid',
  'make',
  'memori',
  'famili',
  'one',
  'memori',
  'take',
  'daughter',
  'disney',
  '&',
  'surpris',
  'trip',
  'yesterday',
  'christma',
  'first',
  'thought',
  'wife',
  'would',
  'well-',
  'weve',
  'alway',
  'said',
  'weve',
  'want',
  'get',
  'experi',
  'take',
  'see',
  'face',
  'howev',
  'found',
  'mil',
  'clear',
  'wife',
  'last',
  'month',
  'wife',
  'tell',
  'thought',
  'would',
  'surpris',
  'excit',
  'daughter',
  'sat',
  'rest',
  'night',
  'got',
  'home',
  'seriou',
  'discuss',
  'told',
  'wife',
  'want',
  'daughter',
  'first',
  'trip',
  'disney',
  'without',
  'us',
  'suggest',
  'go',
  'along',
  'trip',
  'februari',
  'book',
  'flights+hotel+ticket',
  'wife',
  'time',
  'theyr',
  'go',
  'still',
  'go',
  'almost',
  '$',
  'told',
  'wife',
  'talk',
  'parent',
  '&',
  'declin',
  'trip',
  'wife',
  'say',
  'im',
  'selfish',
  'heartless',
  'rob',
  'daughter',
  'experi',
  '&',
  'rob',
  'core',
  'memori',
  'fil',
  'pass',
  'line'],
 ['lost',
  'wife',
  'year',
  'ago',
  'son',
  'got',
  'custodi',
  'pass',
  'bio',
  'father',
  'sign',
  'parent',
  'right',
  'birth',
  'never',
  'even',
  'met',
  'kid',
  'daughter',
  'togeth',
  'yro',
  'son',
  'consid',
  'son',
  'way',
  'syndrom',
  'die',
  'mother',
  'ask',
  'come',
  'live',
  'two',
  'week',
  'ago',
  'spend',
  'time',
  'us',
  'die',
  'month',
  'left',
  'live',
  'told',
  'come',
  'spend',
  'week',
  'first',
  'well',
  'see',
  'work',
  'everyon',
  'kid',
  'came',
  'thing',
  'go',
  'okay',
  'day',
  'ago',
  'special',
  'order',
  'new',
  'set',
  'toy',
  'yro',
  'realli',
  'expens',
  'one',
  'let',
  'fli',
  'even',
  'though',
  'normal',
  'let',
  'kid',
  'choos',
  'hundr',
  'dollar',
  'worth',
  'toy',
  'get',
  'tri',
  'someth',
  'nice',
  'grandkid',
  'today',
  'set',
  'arriv',
  'dinner',
  'dinner',
  'ask',
  'son',
  'toy',
  'chose',
  'said',
  'choos',
  'toy',
  'ask',
  'mom',
  'chose',
  'son',
  'sometim',
  'mix',
  'thing',
  'thought',
  'hee',
  'forgot',
  'said',
  'bought',
  'toy',
  'grandbabi',
  'said',
  'two',
  'grandkid',
  'two',
  'children',
  'said',
  'son',
  'told',
  'kid',
  'go',
  'play',
  'live',
  'room',
  'told',
  'mother',
  'kind',
  'talk',
  'unaccept',
  'hous',
  'said',
  'true',
  'oblig',
  'go',
  'foster',
  'care',
  'stick',
  'facil',
  'life',
  'ruin',
  'flip',
  'call',
  'sort',
  'name',
  'told',
  'ill',
  'call',
  'hospic',
  'first',
  'thing',
  'morn',
  'take',
  'day',
  'cri',
  'night',
  'beg',
  'make',
  'go',
  'die',
  'alon',
  'hospic',
  'said',
  'cross',
  'line',
  'im',
  'done',
  'aunt',
  'call',
  'ah',
  'friend',
  'said',
  'let',
  'go',
  'time',
  'limit',
  'sister',
  'live',
  'abroad',
  'said',
  'plain',
  'cruel',
  'cousin',
  'said',
  'said',
  'aw',
  'right',
  'thing',
  'feel',
  'littl',
  'bit',
  'guilti',
  'anyway',
  'aita',
  'eta',
  'still',
  'visit',
  'mother',
  'hospic',
  'want',
  'say',
  'mani',
  'peopl',
  'mention'],
 ['im',
  'current',
  'plan',
  'wed',
  'get',
  'nitti',
  'gritti',
  'detail',
  'background',
  'parent',
  'got',
  'divorc',
  'divorc',
  'happen',
  'dad',
  'fell',
  'love',
  'current',
  'wifemi',
  'stepmom',
  'alic',
  'claim',
  'cheat',
  'wait',
  'separ',
  'anyth',
  'physic',
  'happen',
  'know',
  'need',
  'know',
  'whether',
  'true',
  'point',
  'dad',
  'alic',
  'got',
  'marri',
  'live',
  'togeth',
  'time',
  'two',
  'sibl',
  'within',
  'next',
  'year',
  'parent',
  'split',
  'custodi',
  'alic',
  '%',
  'mother',
  'figur',
  'close',
  'everi',
  'tough',
  'moment',
  'life',
  'also',
  'help',
  'pay',
  'colleg',
  'grad',
  'school',
  'im',
  'extrem',
  'appreci',
  'mom',
  'good',
  'mom',
  'weve',
  'never',
  'close',
  'dad',
  'alic',
  'person',
  'differ',
  'plan',
  'first',
  'danc',
  'right',
  'first',
  'danc',
  'fiance',
  'pick',
  'dad',
  'parent',
  'still',
  'marri',
  'drama',
  'close',
  'alic',
  'realli',
  'feel',
  'right',
  'exclud',
  'danc',
  'mom',
  'ask',
  'shed',
  'comfort',
  'one',
  'well',
  'overjoy',
  'cri',
  'emot',
  'im',
  'realli',
  'excit',
  'mom',
  'found',
  'flip',
  'said',
  'im',
  'replac',
  'like',
  'dad',
  'replac',
  'told',
  'replac',
  'support',
  'entir',
  'life',
  'consid',
  'true',
  'bonu',
  'mother',
  'want',
  'exclud',
  'want',
  'accept',
  'yesterday',
  'aunt',
  'mom',
  'sister',
  'call',
  'rip',
  'new',
  'one',
  'know',
  'littl',
  'controversi',
  'heart',
  'realli',
  'want',
  'aita',
  'go',
  'two',
  'mother',
  'son',
  'danc',
  'person',
  'ive',
  'wed',
  'step',
  'involv',
  'two',
  'mother',
  'son',
  'father',
  'daughter',
  'seem',
  'realli',
  'sweet',
  'like',
  'overkil',
  'would',
  'shorten',
  'version',
  'song',
  'long',
  'matter'],
 ['cowork',
  'martin',
  'alway',
  'forget',
  'leav',
  'stuff',
  'alway',
  'forget',
  'phone',
  'charger',
  'home',
  'borrow',
  'mine',
  'use',
  'mind',
  'lend',
  'charger',
  'nice',
  'person',
  'love',
  'maintain',
  'good',
  'relationship',
  'cowork',
  'especi',
  'male',
  'cowork',
  'day',
  'restroom',
  'walk',
  'back',
  'offic',
  'saw',
  'martin',
  'hand',
  'insid',
  'purs',
  'liter',
  'look',
  'shock',
  'highli',
  'person',
  'stuff',
  'carri',
  'purs',
  'freak',
  'snatch',
  'purs',
  'hand',
  'ask',
  'got',
  'nervou',
  'said',
  'look',
  'charger',
  'ask',
  'thought',
  'okay',
  'look',
  'purs',
  'said',
  'sinc',
  'alway',
  'lend',
  'charger',
  'thought',
  'mind',
  'look',
  'purs',
  'ask',
  'offic',
  'need',
  'right',
  'told',
  'violat',
  'privaci',
  'disrespect',
  'boundari',
  'went',
  'file',
  'report',
  'compani',
  'headquat',
  'tell',
  'happen',
  'said',
  'unaccept',
  'promis',
  'deal',
  'martin',
  'got',
  'int',
  'troubl',
  'cowork',
  'piss',
  'say',
  'overreact',
  'went',
  'way',
  'overboard',
  'report',
  'situat',
  'femal',
  'cowork',
  'told',
  'get',
  'stop',
  'cri',
  'victim',
  'simpl',
  'misunderstand',
  'felt',
  'guilti',
  'afte',
  'think',
  'might',
  'blown',
  'propot',
  'overeact'],
 ['partner',
  'daughter',
  'month',
  'long',
  'time',
  'issu',
  'get',
  'help',
  'kid',
  'morn',
  'think',
  'abl',
  'sleep',
  'day',
  'work',
  'think',
  'get',
  'kid',
  'least',
  'altern',
  'lie',
  'bit',
  'weve',
  'see',
  'therapist',
  'mention',
  'help',
  'morn',
  'recent',
  'famili',
  'trip',
  'plan',
  'zoo',
  'parent',
  'sister',
  'kid',
  'previous',
  'weve',
  'gone',
  'day',
  'ive',
  'need',
  'shake',
  'partner',
  'awak',
  'sever',
  'time',
  'lie',
  'bed',
  'get',
  'kid',
  'readi',
  'hell',
  'final',
  'get',
  'minut',
  'leav',
  'shout',
  'im',
  'get',
  'car',
  'ive',
  'mention',
  'frustrat',
  'lot',
  'work',
  'get',
  'kid',
  'readi',
  'go',
  'fair',
  'leav',
  'lie',
  'bed',
  'hed',
  'apologis',
  'promis',
  'next',
  'time',
  'hed',
  'get',
  'help',
  'night',
  'trip',
  'told',
  'id',
  'need',
  'awak',
  'could',
  'get',
  'everyon',
  'readi',
  'leav',
  'said',
  'hed',
  'set',
  'alarm',
  'went',
  'bed',
  'alarm',
  'went',
  'got',
  'partner',
  'kept',
  'sleep',
  'decid',
  'go',
  'wake',
  'time',
  'continu',
  'get',
  'kid',
  'readi',
  'still',
  'sleep',
  'load',
  'kid',
  'car',
  'set',
  'arriv',
  'zoo',
  'famili',
  'ask',
  'mention',
  'still',
  'bed',
  'chose',
  'come',
  'got',
  'phone',
  'call',
  'ask',
  'everyon',
  'said',
  'went',
  'zoo',
  'plan',
  'wait',
  'get',
  'never',
  'got',
  'realli',
  'mad',
  'told',
  'woken',
  'like',
  'alway',
  'caus',
  'miss',
  'trip',
  'call',
  'mum',
  'complain',
  'yell',
  'middl',
  'zoo',
  'unfair',
  'given',
  'shake',
  'let',
  'know',
  'need',
  'get',
  'leav',
  'mother',
  'jump',
  'said',
  'respons',
  'get',
  'bed',
  'need',
  'take',
  'respons',
  'word',
  'exchang',
  'famili',
  'stalk',
  'rest',
  'trip',
  'blast',
  'kid',
  'parent',
  'sister',
  'nephew',
  'got',
  'home',
  'partner',
  'start',
  'woken',
  'aita',
  'wake',
  'go',
  'without',
  'thing',
  'come',
  'want',
  'clarifi',
  '-',
  'alway',
  'like',
  'oldest',
  'two',
  'littl',
  'alway',
  'even',
  'get',
  'anyway',
  'els',
  'cook',
  'breakfast',
  'go',
  'work',
  'move',
  'parent',
  'one',
  'point',
  'thing',
  'start',
  'chang',
  'famili',
  'incred',
  'misogynist',
  'dad',
  'work',
  'come',
  'home',
  'watch',
  'tv',
  'drink',
  'beer',
  'mum',
  'everyth',
  'els',
  'includ',
  'get',
  'work',
  'etc',
  'belief',
  'seem',
  'rub',
  'mum',
  'quick',
  'tell',
  'someth',
  'woman',
  'job',
  '-',
  'see',
  'therapist',
  'independ',
  'suggest',
  'form',
  'depress',
  '-',
  'gener',
  'pretti',
  'good',
  'otherwis',
  'help',
  'dinner',
  'clean',
  'put',
  'kid',
  'bed',
  'etc',
  'entir',
  'useless',
  'get',
  'bed',
  'morn',
  'long',
  'stand',
  'issu',
  'though',
  '-',
  'vasectomi',
  'babi',
  'turn',
  'incomplet',
  'hysterectomi'],
 ['move',
  'new',
  'neighborhood',
  'almost',
  'year',
  'ago',
  'live',
  'alon',
  'partner',
  'kid',
  'mom',
  'live',
  'part',
  'year',
  '-month',
  'year',
  'realli',
  'like',
  'neighborhood',
  'issu',
  'tight',
  'knit',
  'commun',
  'neighborhood',
  'bbq',
  'least',
  'month',
  'kid',
  'play',
  'togeth',
  'school',
  'etc',
  'next',
  'door',
  'neighbor',
  'one',
  'side',
  'sever',
  'disabl',
  'child',
  'almost',
  'complet',
  'non',
  'verbal',
  'wheelchair',
  'bound',
  'nurs',
  'help',
  'care',
  'know',
  'parent',
  'struggl',
  'understand',
  'mom',
  'quit',
  'job',
  'full',
  'time',
  'carer',
  'older',
  'child',
  'ive',
  'gotten',
  'rel',
  'close',
  'parent',
  'love',
  'neighbor',
  'older',
  'child',
  'respect',
  'honestli',
  'one',
  'sweetest',
  'children',
  'neighborhood',
  'mom',
  'bought',
  'minivan',
  'custom',
  'ramp',
  'wheelchair',
  'tie',
  'easili',
  'transport',
  'mobil',
  'equip',
  'usual',
  'ecv',
  'wheelchair',
  'stay',
  '-',
  'month',
  'year',
  'mom',
  'spend',
  'time',
  'sister',
  'friend',
  'home',
  'countri',
  'car',
  'sit',
  'mostli',
  'unus',
  'unless',
  'reason',
  'move',
  'bigger',
  'thing',
  'fit',
  'daili',
  'driver',
  'notic',
  'neighbor',
  'car',
  'suitabl',
  'transport',
  'daughter',
  'without',
  'take',
  'wheelchair',
  'fight',
  'keep',
  'tube',
  'wire',
  'place',
  'offer',
  'use',
  'minivan',
  'use',
  'transport',
  'mom',
  'weve',
  'agreement',
  'place',
  'work',
  'well',
  'us',
  'almost',
  'month',
  'theyv',
  'ask',
  'use',
  'car',
  'go',
  'road',
  'trip',
  'trip',
  'schedul',
  'last',
  'week',
  'main',
  'reason',
  'trip',
  'take',
  'kid',
  'disneyworld',
  'first',
  'time',
  'problem',
  'mom',
  'suppos',
  'arriv',
  'coupl',
  'day',
  'would',
  'leav',
  'ask',
  'could',
  'delay',
  'trip',
  'day',
  'least',
  'get',
  'airport',
  'minim',
  'stress',
  'adam',
  'leav',
  'date',
  'want',
  'said',
  'need',
  'abl',
  'comfort',
  'get',
  'mom',
  'airport',
  'hour',
  'flight',
  'want',
  'comfort',
  'worri',
  'get',
  'car',
  'call',
  'selfish',
  'ive',
  'oust',
  'rest',
  'commun',
  'invit',
  'last',
  'bbq',
  'nobodi',
  'say',
  'wave',
  'back',
  'street',
  'anymor',
  'neighbor',
  'kid',
  'come',
  'see',
  'dog',
  'run',
  'around',
  'yard',
  'almost',
  'week',
  'tri',
  'text',
  'neighbor',
  'text',
  'went',
  'undeliv',
  'think',
  'block',
  'feel',
  'like',
  'im',
  'live',
  'hostil',
  'environ',
  'uncomfort',
  'cave',
  'let',
  'take',
  'car'],
 ['decid',
  'keep',
  'pregnanc',
  'know',
  'im',
  'go',
  'knew',
  'fiancé',
  'go',
  'happi',
  'news',
  'futur',
  'sister-in-lawbest',
  'friend',
  'person',
  'knew',
  'took',
  'test',
  'suggest',
  'hous',
  'also',
  'agre',
  'brother',
  'unlik',
  'happi',
  'felt',
  'like',
  'tell',
  'immedi',
  'anyway',
  'kept',
  'argu',
  'told',
  'need',
  'time',
  'process',
  'felt',
  'like',
  'make',
  'excus',
  'avoid',
  'tell',
  'end',
  'told',
  'dinner',
  'famili',
  'upset',
  'confront',
  'front',
  'everybodi',
  'know',
  'everybodi',
  'upset',
  'keep',
  'sister',
  'kept',
  'tri',
  'reach',
  'apologis',
  'happen',
  'ignor',
  'excus',
  'brother',
  'keep',
  'gave',
  'week',
  'tell',
  'last',
  'time',
  'call',
  'upset',
  'answer',
  'yell',
  'heat',
  'moment',
  'uninvit',
  'wed',
  'told',
  'would',
  'find',
  'new',
  'bridesmaid',
  'ive',
  'given',
  'fiancé',
  'famili',
  'anoth',
  'reason',
  'upset',
  'ive',
  'refus',
  'let',
  'come',
  'wed',
  'even',
  'regular',
  'guest',
  'despit',
  'ask',
  'import',
  'attend',
  'aita'],
 ['context',
  'move',
  'brother',
  'divorc',
  'month',
  'ago',
  'brought',
  'yo',
  'daughter',
  'brother',
  'girlfriend',
  'month',
  'old',
  'daughter',
  'niec',
  'happen',
  'past',
  'friday',
  'brother',
  'girlfriend',
  'shift',
  'nurs',
  'brother',
  'wfh',
  'meet',
  'hous',
  'hour',
  'watch',
  'babi',
  'via',
  'nannycam',
  'appar',
  'need',
  'diaper',
  'chang',
  'busi',
  'text',
  'daughter',
  'ask',
  'shed',
  'go',
  'quickli',
  'chang',
  'cousin',
  'diaper',
  'refus',
  'told',
  'reason',
  'one',
  'feel',
  'confort',
  'around',
  'babi',
  'two',
  'alreadi',
  'late',
  'friend',
  'birthday',
  'parti',
  'friend',
  'brother',
  'wait',
  'outsid',
  'brother',
  'insist',
  'refus',
  'made',
  'cut',
  'meet',
  'get',
  'kick',
  'daughter',
  'hous',
  'point',
  'got',
  'home',
  'huge',
  'argument',
  'found',
  'brother',
  'berat',
  'daughter',
  'help',
  'babi',
  'cousin',
  'small',
  'one',
  'time',
  'favor',
  'got',
  'kick',
  'meet',
  'daughter',
  'cri',
  'told',
  'brother',
  'said',
  'daughter',
  'girlfriend',
  'respond',
  'reli',
  'daughter',
  'care',
  'explain',
  'one',
  'time',
  'favor',
  'support',
  'us',
  'sinc',
  'divorc',
  'ex',
  'told',
  'excus',
  'forc',
  'daughter',
  'feel',
  'comfort',
  'girlfriend',
  'got',
  'involv',
  'call',
  'grate',
  'asshol',
  'told',
  'us',
  'week',
  'move',
  'tri',
  'speak',
  'brother',
  'girlfriend',
  'decis',
  'shut',
  'say',
  'wrong',
  'tell',
  'instead',
  'hold',
  'daughter',
  'account',
  'lack',
  'support'],
 ['love',
  'son',
  'anyth',
  'rais',
  'respect',
  'everyon',
  'regardless',
  'differ',
  'year',
  'old',
  'year',
  'old',
  'great',
  'year',
  'old',
  'howev',
  'bulli',
  'gay',
  'boy',
  'class',
  'less',
  'happi',
  'found',
  'cousin',
  'told',
  'gave',
  'chanc',
  'invit',
  'dinner',
  'apolog',
  'refus',
  'say',
  'sorri',
  'get',
  'embarrass',
  'told',
  'front',
  'friend',
  'care',
  'happi',
  'treatment',
  'end',
  'ground',
  'seem',
  'affect',
  'clearli',
  'learn',
  'lesson',
  'contact',
  'famili',
  'let',
  'know',
  'go',
  'agre',
  'meet',
  'dinner',
  'gave',
  'son',
  'chanc',
  'apolog',
  'got',
  'extrem',
  'upsetangri',
  'mayb',
  'said',
  'nobodi',
  'even',
  'like',
  'word',
  'cours',
  'apolog',
  'famili',
  'left',
  'son',
  'got',
  'big',
  'argument',
  'left',
  'said',
  'sorri',
  'nobodi',
  'like',
  'kid',
  'told',
  'like',
  'much',
  'right',
  'either',
  'got',
  'quiet',
  'apolog',
  'went',
  'room',
  'ive',
  'told',
  'apolog',
  'student',
  'bulli',
  'ground',
  'lift',
  'still',
  'hide',
  'room',
  'rare',
  'speak',
  'ex',
  'husband',
  'say',
  'told',
  'like',
  'excus',
  'cours',
  'behaviour',
  'reason',
  'togeth',
  'cant',
  'help',
  'miser',
  'ah',
  'understand',
  'may',
  'nicest',
  'thing',
  'hear',
  'listen',
  'word',
  'say',
  'downright',
  'bulli',
  'aita',
  'lot',
  'happen',
  'sinc',
  'made',
  'post',
  'figur',
  'id',
  'pop',
  'let',
  'peopl',
  'know',
  'unfold',
  'ive',
  'littl',
  'chit',
  'chat',
  'son',
  'get',
  'bottom',
  'behaviour',
  'turn',
  'hed',
  'ask',
  'victim',
  'date',
  'turn',
  'instead',
  'act',
  'like',
  'normal',
  'human',
  'decid',
  'spite',
  'start',
  'bulli',
  'boy',
  'still',
  'make',
  'weve',
  'talk',
  'consent',
  'fact',
  'nobodi',
  'oblig',
  'date',
  'know',
  'understand',
  'hurt',
  'spoken',
  'im',
  'ex',
  'also',
  'openli',
  'homophob',
  'longer',
  'want',
  'visit',
  'weekend',
  'hope',
  'father',
  'longer',
  'make',
  'great',
  'impress',
  'also',
  'want',
  'thank',
  'everyon',
  'kind',
  'word',
  'mama',
  'thought',
  'shed',
  'handl',
  'tough',
  'situat',
  'poorli',
  'appreci',
  'kind'],
 ['mother',
  'two',
  'wonder',
  'daughter',
  'sophia',
  'nichol',
  'im',
  'realli',
  'sure',
  'cruel',
  'toward',
  'sophia',
  'decis',
  'nichol',
  'got',
  'marri',
  'year',
  'sophia',
  'first',
  'child',
  'first',
  'grandchild',
  'ive',
  'good',
  'relationship',
  'daughter',
  'ive',
  'alway',
  'tri',
  'make',
  'sure',
  'neither',
  'felt',
  'like',
  'favor',
  'admit',
  'rough',
  'patch',
  'sophia',
  'nichol',
  'got',
  'engag',
  'ask',
  'would',
  'walk',
  'aisl',
  'sinc',
  'father',
  'never',
  'life',
  'ask',
  'uncl',
  'brother',
  'said',
  'want',
  'happi',
  'agre',
  'help',
  'plan',
  'wed',
  'daughter',
  'sophia',
  'announc',
  'pregnanc',
  'around',
  'begin',
  'year',
  'time',
  'pan',
  'would',
  'due',
  'nichol',
  'wed',
  'ask',
  'would',
  'deliveri',
  'room',
  'stay',
  'husband',
  'week',
  'babi',
  'born',
  'help',
  'excit',
  'sinc',
  'alreadi',
  'live',
  'town',
  'see',
  'almost',
  'daili',
  'stay',
  'problem',
  'instead',
  'sophia',
  'went',
  'labor',
  'almost',
  'week',
  'earli',
  'afternoon',
  'nichol',
  'wed',
  'miss',
  'sophia',
  'first',
  'call',
  'alreadi',
  'almost',
  'hour',
  'away',
  'nichol',
  'live',
  'help',
  'set',
  'thing',
  'last',
  'minut',
  'errand',
  'help',
  'call',
  'back',
  'found',
  'labor',
  'want',
  'get',
  'soon',
  'possibl',
  'told',
  'sophia',
  'would',
  'best',
  'could',
  'would',
  'let',
  'know',
  'immedi',
  'id',
  'explain',
  'situat',
  'nichol',
  'understand',
  'also',
  'want',
  'understood',
  'sophia',
  'want',
  'nichol',
  'abl',
  'move',
  'ceremoni',
  'morn',
  'make',
  'quick',
  'ish',
  'minut',
  'ceremoni',
  'would',
  'hour',
  'gap',
  'ceremoni',
  'recept',
  'thought',
  'good',
  'compromis',
  'would',
  'let',
  'girl',
  'call',
  'sophia',
  'want',
  'get',
  'night',
  'ask',
  'husband',
  'said',
  'ye',
  'ask',
  'pleas',
  'consid',
  'second',
  'choic',
  'could',
  'get',
  'sophia',
  'got',
  'upset',
  'told',
  'forget',
  'got',
  'hospit',
  'earli',
  'next',
  'afternoon',
  'miss',
  'birth',
  'coupl',
  'hour',
  'sophia',
  'mad',
  'want',
  'come',
  'move',
  'room',
  'thought',
  'understand',
  'would',
  'talk',
  'soon',
  'coupl',
  'week',
  'tri',
  'apolog',
  'ive',
  'talk',
  'son-in-law',
  'said',
  'theyr',
  'mad',
  'chose',
  'ditch',
  'sophia',
  'need',
  'parti',
  'ask',
  'outsid',
  'perspect',
  'wrong',
  'go',
  'hospit',
  'right',
  'away',
  'aita',
  'edit',
  'stay',
  'nichol',
  'recept',
  'left',
  'immedi',
  'follow',
  'ceremoni',
  'still',
  'wait',
  'hour',
  'end',
  'wed',
  'ceremoni',
  'morn',
  'recept',
  'afternoon',
  'could',
  'push',
  'back',
  'later',
  'day',
  'due',
  'recept',
  'venu',
  'event',
  'even'],
 ['daughter',
  'recent',
  'decid',
  'go',
  'back',
  'colleg',
  'take',
  'year',
  'drop',
  'colleg',
  'month',
  'say',
  'adamantli',
  'advis',
  'end',
  'move',
  'boyfriend',
  'start',
  'work',
  'famili',
  'restaur',
  'busi',
  'still',
  'littl',
  'north',
  'set',
  'asid',
  'account',
  'set',
  'asid',
  'tuition',
  'money',
  'wife',
  'want',
  'remodel',
  'kitchen',
  'decid',
  'go',
  'ahead',
  'money',
  'well',
  'daughter',
  'decid',
  'go',
  'back',
  'colleg',
  'work',
  'boyfriend',
  'like',
  'job',
  'follow',
  'shock',
  'use',
  'colleg',
  'money',
  'toward',
  'hous',
  'even',
  'though',
  'convers',
  'left',
  'ask',
  'could',
  'access',
  'colleg',
  'tuition',
  'account',
  'move',
  'boyfriend',
  'explicitli',
  'said',
  'said',
  'save',
  'tuition',
  'noth',
  'els',
  'left',
  'wed',
  'use',
  'someth',
  'els',
  'said',
  'thought',
  'bluf',
  'actual',
  'mean',
  'need',
  'help',
  'pay',
  'colleg',
  'sinc',
  'still',
  'pay',
  'younger',
  'brother',
  'yearli',
  'tuition',
  'told',
  'need',
  'work',
  'part',
  'time',
  'go',
  'cheaper',
  'place',
  'like',
  'commun',
  'colleg',
  'rather',
  'state',
  'school',
  'angri',
  'ignor',
  'mother',
  'phone',
  'call',
  'mother',
  'said',
  'mayb',
  'still',
  'help',
  'financi',
  'near',
  'retir',
  'age',
  'littl',
  'behind',
  'retir',
  'goal',
  'want',
  'take',
  'away',
  'save',
  'daughter',
  'made',
  'bad',
  'choic',
  'feel',
  'like',
  'given',
  'good',
  'altern',
  'even',
  'offer',
  'let',
  'stay',
  'hous',
  'free',
  'rent',
  'focu',
  'pay',
  'colleg',
  'aita'],
 ['make',
  'brief',
  'issu',
  'dad',
  'mom',
  'die',
  'stepmom',
  'came',
  'along',
  'hate',
  'lot',
  'decis',
  'made',
  'left',
  'long',
  'last',
  'impact',
  'take',
  'colleg',
  'fund',
  'pay',
  'stepbroth',
  'surgeri',
  'unfortun',
  'dead',
  'die',
  'last',
  'year',
  'age',
  'chronic',
  'heart',
  'problem',
  'put',
  'distanc',
  'still',
  'see',
  'grandpar',
  'uncl',
  'aunt',
  'cousin',
  'etc',
  'holiday',
  'season',
  'come',
  'dad',
  'start',
  'talk',
  'rel',
  '-',
  'close',
  'rel',
  'went',
  'overwhelm',
  'feel',
  'lonli',
  'upcom',
  'divorc',
  'invit',
  'spend',
  'christma',
  'alon',
  'heartbroken',
  'respons',
  'told',
  'ill',
  'gladli',
  'spend',
  'christma',
  'give',
  'back',
  'colleg',
  'fund',
  'form',
  'christma',
  'gift',
  'like',
  'respons',
  'thought',
  'harsh',
  'rel',
  'said',
  'judgement',
  'petti',
  'greedi',
  'asshol',
  'say',
  'lost',
  'much',
  'said',
  'could',
  'save',
  'stepson',
  'stepbroth',
  'life',
  'describ',
  'nobl',
  'owe',
  'thing',
  'went',
  'home',
  'big',
  'argument',
  'uncl',
  'came',
  'said',
  'feel',
  'like',
  'shit',
  'mayb',
  'calmli',
  'polit',
  'declin',
  'invit',
  'said',
  'made',
  'feel',
  'guilti',
  'handl',
  'stepbroth',
  'situat',
  'edit',
  'took',
  'look',
  'see',
  'im',
  'get',
  'shitload',
  'comment',
  'answer',
  'question',
  '_the',
  'fund',
  'made',
  'dad',
  'mom',
  'sahm',
  'work',
  'agre',
  'fund',
  'would',
  'go',
  'toward',
  'educatiot',
  '_i',
  'abl',
  'get',
  'colleg',
  'start',
  'work',
  'pay',
  'way',
  'rel',
  'help',
  'uncl',
  'much',
  'said',
  'felt',
  'like',
  'shit',
  'berat',
  'hold',
  'special',
  'place',
  'life',
  'last',
  'person',
  'want',
  'disppoint',
  'let',
  'edit',
  'okay',
  'say',
  'fund',
  'mine',
  'whose',
  'fund',
  'lmfao',
  'realli',
  'get',
  'mayb',
  'expand',
  'exactli',
  'fund',
  'mine',
  'belong',
  'also',
  'think',
  'im',
  'cruel',
  'dad',
  'lost',
  'much',
  'tri',
  'go',
  'way',
  'mean',
  'malici',
  'matter',
  'fact',
  'want',
  'littl',
  'noth',
  'time',
  'play',
  'nice',
  'pleas',
  'uncl',
  'rel'],
 ['recent',
  'gotten',
  'great',
  'medic',
  'diagnosi',
  'prognosi',
  'peac',
  'sat',
  'husband',
  'figur',
  'obvious',
  'receiv',
  'estat',
  'take',
  'care',
  'kid',
  'decent',
  'spectacular',
  'career',
  'like',
  'work',
  'oldest',
  'brother',
  'gigant',
  '-bag',
  'addict',
  'parent',
  'wast',
  'live',
  'tri',
  'help',
  'spent',
  'somuch',
  'time',
  'money',
  'littl',
  'formi',
  'sister',
  'hold',
  'love',
  'kid',
  'understand',
  'urg',
  'help',
  'problem',
  'real',
  'issu',
  'brother',
  'abandon',
  'niec',
  'parent',
  'tri',
  'get',
  'custodi',
  'member',
  'church',
  'parent',
  'cut',
  'left',
  'home',
  'get',
  'colleg',
  'educ',
  'instead',
  'stay',
  'home',
  'help',
  'like',
  'good',
  'daughter',
  'congreg',
  'help',
  'hire',
  'lawyer',
  'keep',
  'girl',
  'away',
  'strang',
  'enough',
  'girl',
  'reach',
  'stop',
  'get',
  'financi',
  'support',
  'leav',
  'niec',
  'money',
  'spend',
  'howev',
  'want',
  'go',
  'pay',
  'post',
  'secondari',
  'educ',
  'use',
  'time',
  'donat',
  'chariti',
  'parent',
  'hate',
  'advoc',
  'women',
  'reproduct',
  'right',
  'sent',
  'parent',
  'copi',
  'knew',
  'come',
  'kind',
  'peopl',
  'would',
  'take',
  'loan',
  'count',
  'money',
  'death',
  'bail',
  'call',
  'asshol',
  'give',
  'money',
  'take',
  'care',
  'niec',
  'complain',
  'go',
  'debt',
  'take',
  'care',
  'girl',
  'offer',
  'take',
  'custodi',
  'husband',
  'two',
  'year',
  'know',
  'get',
  'path',
  'away',
  'church',
  'parent',
  'relent',
  'say',
  'challeng',
  'leav',
  'like',
  'good',
  'luck',
  'lawyer',
  'confid',
  'protect',
  'money',
  'heard',
  'brother',
  'call',
  'asshol',
  'depriv',
  'kid',
  'help',
  'forc',
  'parent',
  'shitti',
  'posit',
  'ask',
  'last',
  'time',
  'sent',
  'money',
  'help',
  'kid',
  'yell',
  'obscen',
  'hung',
  'husband',
  'support',
  'decis',
  'lot',
  'famili',
  'call',
  'ask',
  'help',
  'parent',
  'string',
  'attach',
  'aita',
  'edit',
  'thank',
  'kind',
  'word',
  'love',
  'trust',
  'husband',
  'love',
  'children',
  'howev',
  'educ',
  'save',
  'account',
  'set',
  'asid',
  'avail',
  'age',
  'decid',
  'got',
  'marri'],
 ['sorri',
  'seem',
  'place',
  'realli',
  'use',
  'platform',
  'brother',
  'told',
  'post',
  'femal',
  'work',
  'tech',
  'compani',
  'start',
  'work',
  'right',
  'graduat',
  'colleg',
  'start',
  'lowest',
  'rank',
  'ofc',
  'ive',
  'promot',
  'twice',
  'kind',
  'like',
  'import',
  'job',
  'still',
  'peopl',
  'first',
  'recent',
  'manag',
  'section',
  'start',
  'work',
  'compani',
  'met',
  'boss',
  'becom',
  'good',
  'friend',
  'short',
  'relationship',
  'time',
  'end',
  'good',
  'term',
  'cowork',
  'know',
  'least',
  'cant',
  '%',
  'sure',
  'date',
  'never',
  'told',
  'anyon',
  'although',
  'could',
  'see',
  'us',
  'leav',
  'togeth',
  'sometim',
  'join',
  'dot',
  'guess',
  'date',
  'got',
  'first',
  'promot',
  'peopl',
  'made',
  'comment',
  'fairli',
  'new',
  'although',
  'work',
  'lot',
  'promot',
  'ignor',
  'recent',
  'said',
  'got',
  'anoth',
  'promot',
  'cowork',
  'want',
  'go',
  'celebr',
  'agre',
  'went',
  'bar',
  'mani',
  'us',
  'depart',
  'work',
  'even',
  'like',
  'fun',
  'one',
  'cowork',
  'told',
  'proud',
  'much',
  'work',
  'get',
  'promot',
  'anoth',
  'cowork',
  'woman',
  'told',
  'must',
  'tire',
  'work',
  'especi',
  'insid',
  'sheet',
  'work',
  'start',
  'laugh',
  'make',
  'joke',
  'like',
  'make',
  'boss',
  'fall',
  'love',
  'plan',
  'along',
  'call',
  'strateg',
  'woman',
  'tell',
  'must',
  'suck',
  '*',
  'ck',
  'well',
  'boss',
  'got',
  'two',
  'promot',
  'obvious',
  'angri',
  'embarrass',
  'remind',
  'even',
  'date',
  'give',
  'promot',
  'boss',
  'boss',
  'cant',
  'make',
  'kind',
  'decis',
  'brush',
  'tell',
  'opinion',
  'matter',
  'easili',
  'convinc',
  'boss',
  'promot',
  'want',
  'told',
  'realli',
  'disgust',
  'impli',
  'wh',
  '*',
  'need',
  'sleep',
  'boss',
  'promot',
  'pay',
  'bill',
  'left',
  'next',
  'morn',
  'went',
  'hand',
  'project',
  'boss',
  'ask',
  'us',
  'finish',
  'woman',
  'start',
  'joke',
  'told',
  'rude',
  'left',
  'celebr',
  'said',
  'joke',
  'apolog',
  'tri',
  'ignor',
  'hand',
  'project',
  'could',
  'get',
  'start',
  'told',
  'start',
  'work',
  'woman',
  'said',
  'okay',
  'mr',
  'bosss',
  'last',
  'name',
  'lost',
  'yell',
  'shut',
  'get',
  'work',
  'alreadi',
  'ill',
  'fill',
  'report',
  'hr',
  'left',
  'work',
  'ive',
  'talk',
  'boss',
  'agre',
  'told',
  'brother',
  'happen',
  'think',
  'yell',
  'although',
  'agre',
  'rude',
  'mother',
  'also',
  'think',
  'im',
  'kinda',
  'confus',
  'asshol',
  'brother',
  'recommend',
  'post',
  'edit',
  'ive',
  'talk',
  'boss',
  'told',
  'compani',
  'date',
  'polici',
  'also',
  'check',
  'decid',
  'go',
  'hr',
  'yet',
  'ill',
  'tri',
  'make',
  'thing',
  'peac',
  'cowork',
  'boss',
  'recommend',
  'write',
  'report',
  'written',
  'proof',
  'happen',
  'edit',
  'long',
  'day',
  'work',
  'today',
  'manag',
  'train',
  'made',
  'time',
  'talk',
  'cowork',
  'ive',
  'decid',
  'sinc',
  'doubt',
  'promot',
  'ask',
  'hr',
  'investig',
  'theyll',
  'see',
  'im',
  'best',
  'person',
  'charg',
  'said',
  'gon',
  'na',
  'take',
  'coupl',
  'day',
  'ask',
  'keep',
  'manag',
  'duti',
  'meantim',
  'might',
  'chanc',
  'lose',
  'promot',
  'go',
  'back',
  'posit',
  'senior',
  'ask',
  'hr',
  'chanc',
  'senior',
  'salari',
  'month',
  'got',
  'rais',
  'new',
  'promot',
  'also',
  'refus',
  'use',
  'privileg',
  'cowork',
  'ask',
  'problem',
  'also',
  'apolog',
  'yell',
  'apolog',
  'make',
  'joke',
  'laugh',
  'told',
  'relationship',
  'boss',
  'remind',
  'compani',
  'rule',
  'date',
  'basic',
  'told',
  'care',
  'agre',
  'cowork',
  'tell',
  'everyth',
  'matter',
  'hr',
  'includ',
  'argument',
  'bar',
  'relationship',
  'boss',
  'time',
  'promot',
  'hr',
  'could',
  'see',
  'full',
  'pictur',
  'meant',
  'fill',
  'report',
  'theyll',
  'sanction',
  'also',
  'told',
  'want',
  'make',
  'work',
  'environ',
  'least',
  'peac',
  'also',
  'said',
  'could',
  'talk',
  'hr',
  'move',
  'anoth',
  'depart',
  'want',
  'one',
  'person',
  'left',
  'woman',
  'start',
  'everyth',
  'boss',
  'also',
  'ask',
  'hr',
  'investig',
  'ever',
  'taken',
  'advantag',
  'charg',
  'help',
  'peopl',
  'get',
  'promot',
  'benefit',
  'well',
  'sure',
  'noth',
  'wrong',
  'happen',
  'basic',
  'lot',
  'work',
  'hr',
  'know',
  'mani',
  'gave',
  'differ',
  'advic',
  'like',
  'go',
  'hr',
  'think',
  'best',
  'hr',
  'think',
  'manag',
  'ill',
  'gladli',
  'go',
  'back',
  'posit',
  'ill',
  'tri',
  'work',
  'hard',
  'get',
  'anoth',
  'promot',
  'mayb',
  'hr',
  'think',
  'best',
  'candid',
  'promot',
  'cowork',
  'know',
  'im',
  'relationship',
  'boss',
  'ill',
  'probabl',
  'edit',
  'anymor',
  'thank',
  'advic'],
 ['start',
  'id',
  'like',
  'say',
  'gf',
  'women',
  'lesbian',
  'say',
  'hope',
  'preempt',
  '‘',
  'typic',
  'man',
  'comment',
  'happen',
  'last',
  'month',
  'best',
  'friend',
  'still',
  'give',
  'shit',
  'one',
  'year',
  'anniversari',
  'ask',
  'want',
  'told',
  'someth',
  'romant',
  'littl',
  'necklac',
  'someth',
  'cute',
  'brows',
  'around',
  'amazon',
  'found',
  'emuls',
  'blender',
  'ping',
  'head',
  'gf',
  'love',
  'cook',
  'alway',
  'talk',
  'gadget',
  'want',
  'plu',
  'made',
  'homemad',
  'tomato',
  'sauc',
  'rememb',
  'complain',
  'hard',
  'make',
  'sauc',
  'smooth',
  'caus',
  'emuls',
  'blender',
  'im',
  'practic',
  'gift',
  'giver',
  'like',
  'give',
  'thing',
  'peopl',
  'use',
  'bought',
  'super',
  'excit',
  'give',
  'day',
  'roll',
  'around',
  'give',
  'bottl',
  'whiskey',
  'ive',
  'eye',
  'age',
  'could',
  'never',
  'justifi',
  'cost',
  'hype',
  'encourag',
  'gf',
  'open',
  'open',
  'face',
  'kinda',
  'fall',
  'goe',
  '‘',
  'oh…',
  'emuls',
  'blender…',
  'told',
  'rememb',
  'talk',
  'kitchen',
  'gadget',
  'want',
  'excit',
  'give',
  'kept',
  'cool',
  'told',
  'appreci',
  'thought',
  'littl',
  'upset',
  'jewelri',
  'confus',
  'explain',
  'felt',
  'anniversari',
  'romanticsentiment',
  'gift',
  'versu',
  'practic',
  'appreci',
  'greatli',
  'lie',
  'wish',
  'necklac',
  'point',
  'onlin',
  'noth',
  'fanci',
  '$',
  'mushroom',
  'necklac',
  'share',
  'woe',
  'friend',
  'friend',
  'thought',
  'hilari',
  'inept',
  'understood',
  'gf',
  'upset',
  'gift',
  'gf',
  'best',
  'friend',
  'also',
  'got',
  'wind',
  'situat',
  'rib',
  'tell',
  'gf',
  'get',
  'back',
  'kitchen',
  'joke',
  'etc',
  'gf',
  'fine',
  'know',
  'disappoint',
  'end',
  'buy',
  'necklac',
  'week',
  'gave',
  'blender',
  'aita',
  'give',
  'gf',
  'practic',
  'gift',
  'versu',
  'necklac',
  'want'],
 ['daughter',
  'lara',
  'struggl',
  'focu',
  'studi',
  'brother',
  'kyle',
  'ryan',
  'constantli',
  'disrespect',
  'privaci',
  'day',
  'ago',
  'yell',
  'kyle',
  'come',
  'room',
  'ask',
  'happen',
  'explain',
  'kyle',
  'flip',
  'item',
  'upsid',
  'call',
  'kyle',
  'come',
  'flip',
  'everyth',
  'right',
  'side',
  'yesterday',
  'ryan',
  'run',
  'room',
  'kept',
  'steal',
  'stuff',
  'ran',
  'get',
  'back',
  'night',
  'day',
  'lara',
  'tri',
  'sleep',
  'brother',
  'suddenli',
  'barg',
  'ran',
  'result',
  'scream',
  'stay',
  'close',
  'door',
  'sleep',
  'give',
  'exampl',
  'today',
  'morn',
  'father',
  'told',
  'like',
  'way',
  'scream',
  'said',
  'tri',
  'sleep',
  'brother',
  'make',
  'kind',
  'rucku',
  'told',
  'kid',
  'learn',
  'said',
  'never',
  'learn',
  'way',
  'learn',
  'lock',
  'instal',
  'room',
  'want',
  'went',
  'back',
  'forth',
  'threaten',
  'would',
  'move',
  'soon',
  'becam',
  'financi',
  'independ',
  'sinc',
  'go',
  'wait',
  'matur',
  'alreadi',
  'know',
  'respect',
  'privaci',
  'said',
  'wait',
  'includ',
  'convers',
  'overheard',
  'went',
  'room',
  'told',
  'go',
  'lock',
  'set',
  'alreadi',
  'wast',
  'time',
  'without',
  'need',
  'lock',
  'want',
  'fail',
  'lara',
  'said',
  'never',
  'go',
  'listen',
  'without',
  'told',
  'would',
  'make',
  'sure',
  'enter',
  'room',
  'even',
  'heard',
  'shout',
  'live',
  'room',
  'father',
  'explain',
  'go',
  'lara',
  'said',
  'make',
  'kyle',
  'tea',
  'allow',
  'said',
  'go',
  'tell',
  'said',
  'promis',
  'tell',
  'ryan',
  'never',
  'go',
  'room',
  'say',
  'anth',
  'ran',
  'upstair',
  'room',
  'told',
  'right',
  'complain',
  'sinc',
  'alway',
  'sleep',
  'kyle',
  'room',
  'school',
  'brother',
  'agre',
  'lara',
  'call',
  'us',
  'worst',
  'none',
  'us',
  'allow',
  'room',
  'leav',
  'come',
  'back',
  'minut',
  'say',
  'sleep',
  'kyle',
  'room',
  'never',
  'use',
  'asid',
  'sleep',
  'night',
  'use',
  'studi',
  'would',
  'never',
  'go',
  'meanwhil',
  'constantli',
  'disturb',
  'mess',
  'stuff',
  'made',
  'unabl',
  'sleep',
  'last',
  'night',
  'told',
  'ever',
  'go',
  'room',
  'need',
  'go',
  'kyle',
  'start',
  'say',
  'right',
  'go',
  'room',
  'tri',
  'sleep',
  'play',
  'lara',
  'yell',
  'said',
  'wait',
  'move',
  'soon',
  'longer',
  'deal',
  'also',
  'call',
  'aw',
  'mother',
  'give',
  'bedroom',
  'lock'],
 ['husband',
  'sister',
  'suppos',
  'marri',
  'septemb',
  'chose',
  'item',
  'registri',
  'exact',
  'item',
  'ad',
  'weird',
  'detail',
  'explicitli',
  'mention',
  'previous',
  'need',
  'option',
  'registri',
  'accident',
  'list',
  'option',
  'ask',
  'make',
  'sure',
  'got',
  'need',
  'knew',
  'exactli',
  'plan',
  'gift',
  'sadli',
  'broken',
  'gift',
  'ship',
  'yet',
  'anyway',
  'cancel',
  'past',
  'week',
  'reach',
  'sinc',
  'knew',
  'purchas',
  'live',
  'far',
  'away',
  'concern',
  'deliv',
  'someon',
  'stolen',
  'explain',
  'cancel',
  'pretti',
  'upset',
  'mil',
  'reach',
  'us',
  'feel',
  'unkind',
  'cancel',
  'order',
  'feel',
  'sinc',
  'sil',
  'clearli',
  'go',
  'difficult',
  'time',
  'holiday',
  'approach',
  'wouldv',
  'appropri',
  'let',
  'gift',
  'reach',
  'anyway',
  'obvious',
  'unfortun',
  'circumst',
  'substanti',
  'gift',
  '$',
  'pretti',
  'well',
  'threshold',
  'id',
  'normal',
  'spend',
  'typic',
  'holiday',
  'gift',
  'come',
  'ill',
  'mention',
  'short',
  'sweet',
  'husband',
  'militari',
  'current',
  'deploy',
  'big',
  'piec',
  'puzzl',
  'im',
  'solo',
  'awkward',
  'adventur'],
 ['fiancé',
  'get',
  'marri',
  'come',
  'conserv',
  'famili',
  'mom',
  'wed',
  'plan',
  'pose',
  'supervisor',
  'overse',
  'catch',
  '&',
  'elmini',
  'anyth',
  'could',
  'seen',
  'offens',
  'wed',
  'dress',
  'fiascoi',
  'told',
  'get',
  'dress',
  'show',
  'much',
  'skincam',
  'makeup',
  'issu',
  'show',
  'fiancé',
  'look',
  'want',
  'choos',
  'gasp',
  'said',
  'mom',
  'would',
  'stroke',
  'saw',
  'frustart',
  'ask',
  'next',
  'thing',
  'knew',
  'expect',
  'send',
  'look',
  'model',
  'almost',
  'makeup',
  'light',
  'makeup',
  'eyeshadow',
  'glowli',
  'lipstick',
  'justplain',
  'look',
  'refus',
  'choos',
  'suggest',
  'argument',
  'fiancé',
  'came',
  'home',
  'argu',
  'im',
  'plan',
  'humili',
  'famili',
  'wed',
  'want',
  'look',
  'like',
  'clown',
  'make',
  'joke',
  'us',
  'snap',
  'call',
  'delusion',
  'think',
  'ill',
  'let',
  'mom',
  'get',
  'say',
  'makeup',
  'wear',
  'sinc',
  'face',
  'said',
  'thing',
  'mine',
  'marriag',
  'im',
  'clearli',
  'immatur',
  'avoid',
  'say',
  'know',
  'im',
  'avoid',
  'mom',
  'sent',
  'text',
  'best',
  'interest',
  'heart',
  'aita'],
 ['ex',
  'wife',
  'part',
  'shortli',
  'birth',
  'year',
  'old',
  'daughter',
  'also',
  'year',
  'old',
  'son',
  'togeth',
  'messi',
  'breakup',
  'slightest',
  'fell',
  'love',
  'still',
  'maintain',
  'incred',
  'friendship',
  'today',
  'co-par',
  'easi',
  'custodi',
  'court',
  'involv',
  'spend',
  'week',
  'week',
  'live',
  'close',
  'anyway',
  'anyway',
  'love',
  'arrang',
  'ex',
  'wife',
  'agre',
  'way',
  'would',
  'rais',
  'punish',
  'children',
  'misbehav',
  'way',
  'structur',
  'stay',
  'consist',
  'one',
  'parent',
  'favour',
  'ive',
  'date',
  'girl',
  'around',
  'year',
  'alway',
  'amaz',
  'children',
  'last',
  'decemb',
  'got',
  'marri',
  'thing',
  'fine',
  'last',
  'week',
  'daughter',
  'stole',
  'pocket',
  'full',
  'chocol',
  'littl',
  'corner',
  'store',
  'ex',
  'would',
  'march',
  'store',
  'return',
  'chocol',
  'owner',
  'apolog',
  'new',
  'wife',
  'took',
  'children',
  'home',
  'sat',
  'daughter',
  'tabl',
  'forc',
  'eat',
  'entir',
  'lot',
  'make',
  'brother',
  'watch',
  'continu',
  'make',
  'daughter',
  'eat',
  'even',
  'shed',
  'complain',
  'belli',
  'ach',
  'son',
  'told',
  'got',
  'home',
  'work',
  'immedi',
  'confront',
  'wife',
  'tell',
  'ex',
  'system',
  'disciplin',
  'kid',
  'absolut',
  'choic',
  'punish',
  'children',
  'goe',
  'agre',
  'upon',
  'method',
  'keep',
  'everyth',
  'consist',
  'appreci',
  'make',
  'daughter',
  'feel',
  'sick',
  'slept',
  'night',
  'skip',
  'dinner',
  'stomach',
  'wife',
  'extrem',
  'upset',
  'say',
  'cant',
  'expect',
  'marri',
  'say',
  'rais',
  'repeat',
  'rais',
  'ex',
  'respect',
  'follow',
  'method',
  'got',
  'silent',
  'treatment',
  'day',
  'said',
  'handl',
  'sight',
  'anymor',
  'went',
  'stay',
  'mother',
  'cours',
  'mother',
  'call',
  'ah',
  'say',
  'im',
  'treat',
  'unequ',
  'parent',
  'figur',
  'hous',
  'say',
  'kid',
  'rais',
  'well',
  'consid',
  'stepmom',
  'spoke',
  'ex',
  'agre',
  'stanc',
  'thank',
  'stand',
  'choic',
  'defend',
  'agreement',
  'aita',
  'littl',
  'updat',
  'yall',
  'thing',
  'blew',
  'quit',
  'dramat',
  'last',
  'hour',
  'ive',
  'chanc',
  'talk',
  'kid',
  'treatment',
  'im',
  'home',
  'lot',
  'peopl',
  'suspect',
  'warn',
  'fear',
  'use',
  'parent',
  'punish',
  'tactic',
  'son',
  'whenev',
  'misbehav',
  'includ',
  'make',
  'stand',
  'sun',
  'concret',
  'let',
  'go',
  'punish',
  'jump',
  'pool',
  'told',
  'rip',
  'sketch',
  'book',
  'punish',
  'draw',
  'desk',
  'put',
  'hand',
  'ici',
  'water',
  'punish',
  'steal',
  'ice',
  'pop',
  'son',
  'rang',
  'alarm',
  'time',
  'sister',
  'punish',
  'confront',
  'wife',
  'seem',
  'find',
  'problem',
  'action',
  'claim',
  'relat',
  'behaviour',
  'exhibit',
  'needless',
  'say',
  'im',
  'happi',
  'got',
  'ta',
  'go'],
 ['know',
  'sound',
  'insan',
  'caus',
  'grief',
  'week',
  'move',
  'back',
  'home',
  'year',
  'ago',
  'take',
  'parent',
  'hobbi',
  'farm',
  'parent',
  'ask',
  'continu',
  'keep',
  'sheep',
  'goat',
  'herd',
  'predat',
  'anim',
  'common',
  'weve',
  'alway',
  'livestock',
  'guard',
  'dog',
  'well',
  'train',
  'social',
  'allow',
  'dog',
  'know',
  'farm',
  'unless',
  'im',
  'entir',
  'time',
  'set',
  'like',
  '-',
  'one',
  'side',
  'sheep',
  'pasturesbarn',
  'side',
  'goat',
  'middl',
  'gigant',
  'fenc',
  'area',
  'dog',
  'toy',
  'feeder',
  'water',
  'trough',
  'wade',
  'pool',
  'dog',
  'shed',
  'go',
  'one',
  'pastur',
  'gate',
  'dog',
  'area',
  'face',
  'back',
  'hous',
  'regular',
  'garden',
  'gate',
  'fix',
  'predat',
  'climb',
  'top',
  'space',
  'inch',
  'gap',
  'top',
  'gate',
  'gate',
  'post',
  'move',
  'latch',
  'easili',
  'small',
  'dog',
  'squeez',
  'noth',
  'gone',
  'one',
  'dog',
  'male',
  'neuter',
  'reason',
  'relat',
  'commun',
  'us',
  'know',
  'helper',
  'come',
  'go',
  'sinc',
  'doggo',
  'perform',
  'specif',
  'function',
  'farm',
  'commun',
  'dog',
  'older',
  'femal',
  'spay',
  'job',
  'requir',
  'travel',
  'awhil',
  'week',
  'trip',
  'month',
  'ago',
  'gf',
  'invit',
  'friend',
  'taylor',
  'come',
  'stay',
  'gone',
  'taylor',
  'arriv',
  'ask',
  'us',
  'room',
  'could',
  'put',
  'dog',
  'crate',
  'told',
  'bring',
  'dog',
  'sinc',
  'id',
  'gone',
  'arriv',
  'dog',
  'heat',
  'gf',
  'told',
  'could',
  'bring',
  'offer',
  'pay',
  'dog',
  'go',
  'local',
  'kennel',
  'sinc',
  'id',
  'gone',
  'gf',
  'taylor',
  'said',
  'control',
  'told',
  'want',
  'leav',
  'room',
  'issu',
  'day',
  'leav',
  'taylor',
  'let',
  'dog',
  'unsupervis',
  'caught',
  'dog',
  'tri',
  'squeez',
  'gap',
  'gate',
  'got',
  'dog',
  'brought',
  'back',
  'told',
  'either',
  'keep',
  'dog',
  'leash',
  'supervis',
  'time',
  'outsid',
  'goe',
  'home',
  'gf',
  'fought',
  'leav',
  'work',
  'trip',
  'resolv',
  'ask',
  'cousin',
  'gone',
  'said',
  'wife',
  'saw',
  'dog',
  'leash',
  'taylor',
  'left',
  'day',
  'got',
  'home',
  'week',
  'later',
  'dog',
  'puppi',
  'gf',
  'admit',
  'put',
  'taylor',
  'dog',
  'leash',
  'cousin',
  'let',
  'run',
  'rest',
  'time',
  'dog',
  'kept',
  'get',
  'dog',
  'yard',
  'boy',
  'stop',
  'saw',
  'taylor',
  'want',
  'pay',
  'half',
  'vet',
  'bill',
  'puppi',
  'expens',
  'theyr',
  'home',
  'rail',
  'gf',
  'dog',
  'neuter',
  'refus',
  'pay',
  'dog',
  'contain',
  'stay',
  'suppos',
  'told',
  'taylor',
  'bring',
  'dog',
  'begin',
  'gf',
  'cover',
  'expens',
  'sinc',
  'went',
  'behind',
  'back',
  'wrong',
  'edit',
  'post',
  'updat',
  'profil',
  'sinc',
  'issu',
  'yet',
  'fulli',
  'resolv',
  'thank',
  'everyon',
  'support',
  'kind',
  '[',
  'updat',
  ']',
  'httpswwwredditcomuseraitapuppy_powercommentsvgqzupdate_for_aita_for_not_paying_half_towards_mi'],
 ['gave',
  'birth',
  'christma',
  'day',
  'son',
  'birth',
  'lessen',
  'visit',
  'husband',
  'made',
  'list',
  'octob',
  'sent',
  'everyon',
  'rule',
  'includ',
  '-up',
  'date',
  'vaccin',
  '-if',
  'feel',
  'anyway',
  'sick',
  'visit',
  '-',
  'let',
  'us',
  'know',
  'week',
  'hand',
  'arrang',
  'daytim',
  '-',
  'smoker',
  '-',
  'phone',
  'call',
  'visit',
  'pm-pm',
  '-you',
  'stay',
  'hour',
  '-no',
  'pick',
  'babi',
  'without',
  'consent',
  '-no',
  'adivc',
  '-no',
  'perfumedeodor',
  '-',
  'explain',
  '-',
  'pictur',
  'taken',
  'post',
  'social',
  'media',
  '-',
  'visit',
  'first',
  'time',
  'expect',
  'give',
  'mom',
  'gift',
  'card',
  'gift',
  'babi',
  'approv',
  'list',
  '-',
  'ever',
  'come',
  'matter',
  'mani',
  'time',
  'give',
  'list',
  'ether',
  'food',
  'groceri',
  'bring',
  'chore',
  'list',
  'choos',
  '-',
  'two',
  'visit',
  'week',
  'per',
  'person',
  'help',
  'keep',
  'visit',
  'minimum',
  'one',
  'complain',
  'favourit',
  'everyon',
  'treat',
  'equal',
  'bring',
  'onto',
  'current',
  'situat',
  'sister',
  'lawf',
  'studi',
  'differ',
  'part',
  'countri',
  'rare',
  'home',
  'ask',
  'visit',
  'last',
  'week',
  'go',
  'back',
  'school',
  'set',
  'date',
  'link',
  'gift',
  'list',
  'sent',
  'takeout',
  'wed',
  'like',
  'includ',
  'chore',
  'choos',
  'sent',
  'immedi',
  'text',
  'back',
  'say',
  'broke',
  'extra',
  'chore',
  'instead',
  'husband',
  'talk',
  'came',
  'decis',
  'bent',
  'rule',
  'one',
  'person',
  'everyon',
  'would',
  'want',
  'treatment',
  'told',
  'clear',
  'rule',
  'mayb',
  'next',
  'time',
  'could',
  'visit',
  'beg',
  'even',
  'said',
  'would',
  'clean',
  'whole',
  'hous',
  'would',
  'june',
  'would',
  'home',
  'simpli',
  'text',
  'repli',
  'left',
  'morn',
  'got',
  'multipl',
  'text',
  'law',
  'belittl',
  'us',
  'use',
  'child',
  'cash',
  'grab',
  'husband',
  'simpli',
  'repli',
  'rule',
  'one',
  'deserv',
  'special',
  'treatment',
  'told',
  'famili',
  'time',
  'block',
  'sinc',
  'famili',
  'friend',
  'told',
  'us',
  'wrong',
  'broke',
  'collag',
  'student',
  'would',
  'understood',
  'look',
  'way',
  'tri',
  'reach',
  'sister',
  'repli'],
 ['husband',
  'birthday',
  'sever',
  'day',
  'ago',
  'decid',
  'go',
  'celebr',
  'new',
  'diner',
  'invit',
  'inlaw',
  'join',
  'us',
  'throughtout',
  'entir',
  'celebr',
  'ish',
  'waitress',
  'serv',
  'tabl',
  'kept',
  'act',
  'strang',
  'take',
  'eye',
  'husband',
  'threw',
  'inappropri',
  'comment',
  'infront',
  'us',
  'came',
  'went',
  'feel',
  'uncomfort',
  'decid',
  'make',
  'scene',
  'hope',
  'shed',
  'stop',
  'brought',
  'drink',
  'put',
  'tabl',
  'lean',
  'close',
  'enough',
  'toward',
  'husband',
  'think',
  'one',
  'would',
  'hear',
  'heard',
  'said',
  'sparkl',
  'eye',
  'ignit',
  'ps',
  'husband',
  'electric-blu',
  'eye',
  'flabergast',
  'truli',
  'believ',
  'said',
  'told',
  'know',
  'inappropri',
  'right',
  'need',
  'stop',
  'smug',
  'smile',
  'turn',
  'around',
  'walk',
  'away',
  'got',
  'weird',
  'look',
  'inlaw',
  'awe',
  'got',
  'home',
  'left',
  'bad',
  'review',
  'diner',
  'next',
  'day',
  'im',
  'contact',
  'manag',
  'ask',
  'specifi',
  'bad',
  'experi',
  'diner',
  'tell',
  'call',
  'back',
  'tell',
  'busi',
  'new',
  'kind',
  'review',
  'might',
  'harm',
  'reput',
  'ask',
  'itd',
  'take',
  'take',
  'tell',
  'consequ',
  'waitress',
  'call',
  'back',
  'tell',
  'fire',
  'take',
  'review',
  'im',
  'contact',
  'waitress',
  'sm',
  'tell',
  'mean',
  'caus',
  'disturb',
  'compliment',
  'husband',
  'eye',
  'ruin',
  'career',
  'caus',
  'potenti',
  'lose',
  'apart',
  'becom',
  'homeless',
  'get',
  'fire',
  'diner',
  'unabl',
  'pay',
  'rent',
  'respond',
  'inlaw',
  'point',
  'overreact',
  'stuff',
  'happen',
  'often',
  'diner',
  'caus',
  'irrepar',
  'damag',
  'young',
  'ladi',
  'life',
  'noth',
  'also',
  'mil',
  'said',
  'mustv',
  'done',
  'felt',
  'jealou',
  'waitress',
  'aita',
  'eta',
  'review',
  'left',
  'busi',
  'facebook',
  'page',
  'contact',
  'manag',
  'via',
  'phone',
  'number',
  'avail',
  'profil',
  'waitress',
  'reach',
  'via',
  'messag',
  'eta',
  'im',
  'see',
  'varieti',
  'opinion',
  'doneor',
  'handl',
  'agre',
  'might',
  'let',
  'thing',
  'get',
  'hand',
  'plan',
  'get',
  'fire',
  'even',
  'want',
  'get',
  'manag',
  'involv',
  'leav',
  'review',
  'also',
  'ask',
  'insecurejeal',
  'much',
  'ill',
  'give',
  'answer',
  'gave',
  'mil',
  'might',
  'think',
  'appropri',
  'way',
  'act',
  'work'],
 ['im',
  'engag',
  'fianc',
  'sam',
  'get',
  'marri',
  'soon',
  'say',
  'marri',
  'year',
  'old',
  'son',
  'pass',
  'away',
  'year',
  'ago',
  'let',
  'tell',
  'still',
  'pretti',
  'much',
  'griev',
  'judg',
  'griev',
  'cloud',
  'think',
  'sometim',
  'current',
  'wed',
  'plan',
  'phase',
  'ask',
  'reserv',
  'chair',
  'venu',
  'deceas',
  'son',
  'dumbfound',
  'heard',
  'said',
  'know',
  'son',
  'spriritu',
  'hed',
  'like',
  'reserv',
  'seat',
  'respect',
  'make',
  'feel',
  'includ',
  'tri',
  'gentl',
  'seem',
  'insan',
  'told',
  'cant',
  'guest',
  'ask',
  'question',
  'think',
  'mental',
  'unstabl',
  'ask',
  'let',
  'go',
  'idea',
  'offer',
  'compromis',
  'leav',
  'last',
  'chair',
  'back',
  'empti',
  'one',
  'notic',
  'felt',
  'uneasi',
  'ask',
  'let',
  'go',
  'kept',
  'bring',
  'say',
  'get',
  'say',
  'sinc',
  'wed',
  'son',
  'alway',
  'famili',
  'fight',
  'tell',
  'wed',
  'peopl',
  'laugh',
  'us',
  'said',
  'noth',
  'lose',
  'say',
  'ye',
  'im',
  'selfish',
  'snap',
  'told',
  'get',
  'got',
  'quiet',
  'suddenli',
  'stop',
  'argu',
  'shut',
  'complet',
  'heard',
  'sob',
  'smoke',
  'outsid',
  'refus',
  'speak',
  'even',
  'let',
  'sit',
  'like',
  'eversinc',
  'fight',
  'avoid',
  'could',
  'blown',
  'propot',
  'thought',
  'request',
  'weird',
  'mani',
  'guest',
  'make',
  'wed',
  'laugh',
  'stock',
  '*',
  'edit',
  'add',
  'think',
  'thing',
  'common',
  'admit',
  'handl',
  'convers',
  'better',
  'guest',
  'refer',
  'male',
  'cousin',
  'theyr',
  'terribl',
  'make',
  'fun',
  'everyth',
  'take',
  'everi',
  'opportun',
  'turn',
  'event',
  'laugh',
  'stock',
  'cant',
  'keep',
  'attend',
  'theyr',
  'famili',
  'time',
  'want',
  'give',
  'chanc',
  'hurt',
  'sam',
  'feel',
  'make',
  'rude',
  'comment',
  'love',
  'sam',
  'sympath',
  'struggl',
  'feel',
  'like',
  'dismiss',
  'feel',
  'thought',
  '*'],
 ['put',
  'thing',
  'perspect',
  'uni',
  'gym',
  'gym',
  'treadmil',
  'two',
  'togeth',
  'one',
  'end',
  'gym',
  'rest',
  'line',
  'howev',
  'line',
  'six',
  'second',
  'five',
  'treadmil',
  'order',
  'treadmil',
  'gym',
  'today',
  'woman',
  'approach',
  'said',
  'hey',
  'need',
  'treadmil',
  'third',
  'treadmil',
  'row',
  'woman',
  'said',
  'notic',
  'two',
  'women',
  'get',
  'fourth',
  'fifth',
  'treadmil',
  'everi',
  'treadmil',
  'free',
  'like',
  'jog',
  'machin',
  'anyth',
  'said',
  'uh',
  'open',
  'treadmills…',
  'repli',
  'yeah',
  'oke',
  'next',
  'friend',
  'repli',
  'said',
  'came',
  'work',
  'friend',
  'im',
  'go',
  'treadmil',
  'next',
  'friend',
  'im',
  'ask',
  'pleas',
  'move',
  'differ',
  'treadmil',
  'friend',
  'repli',
  'im',
  'declin',
  'move',
  'woman',
  'said',
  'like',
  'said',
  'machin',
  'open',
  'like',
  'move',
  'anoth',
  'one',
  'see',
  'make',
  'issu',
  'said',
  'one',
  'make',
  'issu',
  'im',
  'middl',
  'workout',
  'oblig',
  'move',
  'first',
  'said',
  'im',
  'move',
  'woman',
  'said',
  'friend',
  'isr',
  'worth',
  'im',
  'leav',
  'women',
  'stop',
  'work',
  'got',
  'treadmil',
  'start',
  'follow',
  'friend',
  'one',
  'look',
  'back',
  'said',
  'wow',
  'jerk',
  'think',
  'rude',
  'unread'],
 ['fianc',
  'short',
  'height',
  'alway',
  'sourc',
  'insecur',
  'take',
  'comment',
  'serious',
  'wed',
  'approach',
  'ask',
  'id',
  'consid',
  'wear',
  'flat',
  'shoe',
  'wed',
  'confus',
  'like',
  'confus',
  'ask',
  'joke',
  'went',
  'rant',
  'want',
  'made',
  'fun',
  'wed',
  'choos',
  'wear',
  'high',
  'heel',
  'look',
  'awkward',
  'photo',
  'infront',
  'guest',
  'refus',
  'kept',
  'call',
  'selfish',
  'inconsider',
  'said',
  'priorit',
  'bare',
  'high',
  'heel',
  'comfort',
  'happi',
  'big',
  'day',
  'mom',
  'involv',
  'push',
  'reconsid',
  'refus',
  'discuss',
  'said',
  'unwilling',
  'cooper',
  'huge',
  'indic',
  'level',
  'matur',
  'went',
  'long',
  'rant',
  'length',
  'real',
  'wive',
  'go',
  'help',
  'husband',
  'said',
  'im',
  'appar',
  'immatur',
  'shallow',
  'commit',
  'marriag',
  'make',
  'issu',
  'selfish',
  'want',
  'high',
  'heel',
  'help',
  'make',
  'wed',
  'dress',
  'look',
  'better',
  'feel',
  'like',
  'deserv',
  'look',
  'best',
  'wed',
  'like',
  'everi',
  'bride',
  'dream',
  'insecur',
  'prevent',
  'get',
  'aita',
  'edit',
  'typo',
  'clarifi',
  'im',
  'slightli',
  'taller',
  'said',
  'want',
  'look',
  'taller',
  '*',
  'answer',
  'question',
  '*',
  'gust',
  'talk',
  'male',
  'friend',
  'men',
  'famili',
  'comment',
  'height',
  'time',
  'call',
  'name',
  'shorti',
  'koala',
  'lil',
  'hobbit',
  'list',
  'long',
  'even',
  'list',
  'joke',
  'like',
  'said',
  'im',
  'slightli',
  'taller',
  'want',
  'taller',
  'similar',
  'argument',
  'height',
  'issu',
  'first',
  'time',
  'ask',
  'wear',
  'heel',
  'time',
  'let',
  'wear',
  'sometim',
  'refus',
  'attend',
  'event',
  'im',
  'ask',
  'age'],
 ['famili',
  'get',
  'togeth',
  'father',
  'day',
  'older',
  'brother',
  'adam',
  'came',
  'also',
  'got',
  'pizza',
  'son',
  'drew',
  'autist',
  'vegetarian',
  'also',
  'food',
  'textur',
  'issu',
  'pizza',
  'like',
  'chees',
  'drew',
  'wait',
  'everyon',
  'settl',
  'get',
  'pizza',
  'avoid',
  'overwhelm',
  'adam',
  'normal',
  'eat',
  'meat',
  'lover',
  'pizza',
  'went',
  'second',
  'last',
  'grab',
  'last',
  'piec',
  'chees',
  'lick',
  'front',
  'son',
  'pizza',
  'eat',
  'call',
  'adam',
  'laugh',
  'say',
  'earli',
  'bird',
  'got',
  'piss',
  'kick',
  'adam',
  'home',
  'parent',
  'got',
  'mad',
  'say',
  'father',
  'day',
  'im',
  'ruin',
  'dad',
  'end',
  'tell',
  'mom',
  'last',
  'famili',
  'event',
  'ever',
  'host',
  'home',
  'host',
  'everyth',
  'sinc',
  'got',
  'marri',
  'almost',
  'year',
  'ago',
  'parent',
  'said',
  'overreact',
  'thu',
  'ruin',
  'dad',
  'father',
  'day',
  'said',
  'adam',
  'ruin',
  'go',
  'kid',
  'autism',
  'reason',
  'mom',
  'left',
  'cri',
  'im',
  'back',
  'host',
  'anymor',
  'event',
  'includ',
  'suppos',
  'th',
  'juli',
  'bbq'],
 ['son',
  'sleepov',
  'last',
  'night',
  'friend',
  'friend',
  'parent',
  'wife',
  'huge',
  'favor',
  'wife',
  'father',
  'surgeri',
  'yesterday',
  'need',
  'get',
  'home',
  'midnight',
  'ye',
  'stori',
  'begin',
  'us',
  'alreadi',
  'debt',
  'anyway',
  'naptim',
  'today',
  'son',
  'start',
  'freak',
  'find',
  'sleepi',
  'dumbo',
  'stuf',
  'anim',
  '*',
  '*',
  'sleep',
  'without',
  'sleepi',
  'dumbo',
  'rememb',
  'pick',
  'see',
  'sleepi',
  'dumbo',
  'text',
  'mom',
  'dad',
  'friend',
  'get',
  'respons',
  'wife',
  'wreck',
  'im',
  'bother',
  'son',
  'freak',
  'tell',
  'get',
  'car',
  'go',
  'get',
  'sleepi',
  'dumbo',
  'slightli',
  'calm',
  'drive',
  'tri',
  'call',
  'way',
  'get',
  'knock',
  'wait',
  'bit',
  'answer',
  'point',
  'son',
  'start',
  'freak',
  'afraid',
  'someth',
  'happen',
  'sleepi',
  'dumbo',
  'tri',
  'reassur',
  'start',
  'cri',
  'knock',
  'wife',
  'coupl',
  'answer',
  'say',
  'work',
  'ask',
  'want',
  'explain',
  'sleepi',
  'dumbo',
  'say',
  'work',
  'say',
  'time',
  'look',
  'dumbo',
  'tell',
  'us',
  'come',
  'back',
  'later',
  'son',
  'start',
  'freak',
  'ask',
  'look',
  'say',
  'need',
  'focu',
  'promis',
  'fast',
  'let',
  'get',
  'friend',
  'room',
  'sleepi',
  'dumbo',
  'bed',
  'son',
  'get',
  'hustl',
  'us',
  'thank',
  'mom',
  'glare',
  'way',
  'home',
  'hug',
  'sleepi',
  'dumbo',
  'whole',
  'time',
  'remind',
  'care',
  'sleepi',
  'dumbo',
  'futur',
  'home',
  'naptim',
  'commenc',
  'peac',
  'hour',
  'ago',
  'wife',
  'got',
  'text',
  'im',
  'go',
  'copi',
  'past',
  '{',
  '}',
  '{',
  'wife',
  '}',
  'realli',
  'appreci',
  'way',
  '{',
  '}',
  'barg',
  'hous',
  'earlier',
  'today',
  'work',
  'know',
  'lot',
  'go',
  'right',
  'world',
  'revolv',
  'around',
  '{',
  'husband',
  '}',
  'agre',
  'favor',
  'mean',
  'get',
  'walk',
  'us',
  'futur',
  'call',
  'answer',
  'mean',
  'good',
  'time',
  'come',
  'felt',
  'embarrass',
  'guilti',
  'read',
  'wife',
  'howev',
  'furiou',
  'call',
  'wife',
  'coupl',
  'indel',
  'name',
  'realli',
  'grate',
  'agre',
  'babysit',
  'us',
  'accept',
  'blame',
  'forget',
  'sleepi',
  'dumbo',
  'first',
  'time',
  'know',
  'ask',
  'come',
  'get',
  'quit',
  'big',
  'deal',
  'make',
  'though',
  'wife',
  'piss',
  'know',
  'much',
  'misplac',
  'fear',
  'dad',
  'though',
  'asshol',
  'unfortun',
  'situat'],
 ['cat',
  'name',
  'stargaz',
  'adopt',
  'around',
  'year',
  'ago',
  'truli',
  'littl',
  'survivor',
  'abus',
  'result',
  'eye',
  'three',
  'leg',
  'nobodi',
  'want',
  'adopt',
  'deformati',
  'also',
  'black',
  'cat',
  'bc',
  'gon',
  'na',
  'euthan',
  'otherwis',
  'sister',
  'move',
  'citi',
  'week',
  'husband',
  'need',
  'someon',
  'watch',
  'kid',
  'sinc',
  'gon',
  'na',
  'grown',
  'celebr',
  'parti',
  'agre',
  'niec',
  'theyr',
  'littl',
  'handl',
  'id',
  'also',
  'great',
  'enrich',
  'cat',
  'sinc',
  'love',
  'children',
  'women',
  'im',
  'man',
  'trust',
  'niec',
  'love',
  'first',
  'littl',
  'scare',
  'thought',
  'cute',
  'sister',
  'went',
  'pick',
  'bell',
  'rang',
  'cat',
  'went',
  'run',
  'also',
  'door',
  'sister',
  'saw',
  'freak',
  'start',
  'scream',
  'cat',
  'ran',
  'away',
  'due',
  'nois',
  'sister',
  'start',
  'yell',
  'let',
  'cat',
  'around',
  'kid',
  'say',
  'demon',
  'next',
  'day',
  'husband',
  'call',
  'said',
  'unless',
  'cat',
  'goe',
  'ill',
  'never',
  'aita'],
 ['wifef',
  'im',
  'tri',
  'get',
  'pregnant',
  'deal',
  'boy',
  'would',
  'get',
  'choos',
  'full',
  'name',
  'daughter',
  'would',
  'fine',
  'deal',
  'veto',
  'case',
  'like',
  'name',
  'chosen',
  'got',
  'pregnant',
  'wife',
  'complet',
  'sure',
  'boy',
  'mother',
  'know',
  'entir',
  'famili',
  'convinc',
  'babi',
  'shower',
  'everyth',
  'blue',
  'gift',
  'demand',
  'masculin',
  'mother',
  'alreadi',
  'start',
  'knit',
  'thing',
  'name',
  'wife',
  'chosen',
  'babi',
  'came',
  'saw',
  'girl',
  'ecstat',
  'although',
  'want',
  'boy',
  'girl',
  'alway',
  'imagin',
  'first',
  'born',
  'girl',
  'wife',
  'though',
  'seemingli',
  'exhaust',
  'happi',
  'wrote',
  'name',
  'birth',
  'certif',
  'let',
  'know',
  'use',
  'name',
  'alreadi',
  'run',
  'past',
  'year',
  'later',
  'come',
  'home',
  'work',
  'find',
  'mil',
  'wife',
  'talk',
  'daughter',
  'use',
  'anoth',
  'name',
  'inquir',
  'talk',
  'kinda',
  'went',
  'deer',
  'headlight',
  'blurt',
  'talk',
  'daughter',
  'ask',
  'use',
  'anoth',
  'name',
  'mil',
  'said',
  'decid',
  'name',
  'went',
  'rant',
  'unfair',
  'chose',
  'name',
  'complet',
  'unsuit',
  'etc',
  'shock',
  'first',
  'time',
  'anyon',
  'claim',
  'object',
  'name',
  'realiz',
  'reason',
  'daughter',
  'troubl',
  'recogn',
  'name',
  'use',
  'two',
  'differ',
  'name',
  'entir',
  'time',
  'wife',
  'later',
  'came',
  'suggest',
  'offici',
  'get',
  'name',
  'chang',
  'stuck',
  'gun',
  'told',
  'need',
  'stop',
  'led',
  'fight',
  'unsupport',
  'stole',
  'right',
  'name',
  'child',
  'gave',
  'birth',
  'told',
  'opportun',
  'veto',
  'name',
  'long',
  'gone',
  'cant',
  'expect',
  'support',
  'someth',
  'stupid',
  'worst',
  'part',
  'could',
  'convinc',
  'chang',
  'first',
  'name',
  'one',
  'want',
  'odd',
  'feminin',
  'version',
  'name',
  'want',
  'son',
  'imagin',
  'use',
  'femal',
  'version',
  'name',
  'drake',
  'thoma',
  'got',
  'angri',
  'left',
  'daughter',
  'went',
  'parent',
  'entir',
  'famili',
  'except',
  'fil',
  'call',
  'control',
  'unfair',
  'chose',
  'entir',
  'name',
  'made',
  'honestli',
  'left',
  'field',
  'creepi',
  'im',
  'consid',
  'divorc',
  'parent',
  'friend',
  'said',
  'understand',
  'im',
  'upset',
  'come',
  'compromis',
  'chang',
  'name',
  'someth',
  'like',
  'divorc',
  'overkil',
  'think',
  'feel',
  'gut',
  'may',
  'tri',
  'recreat',
  'son',
  'sacrif',
  'daughter',
  'use',
  'differ',
  'name',
  'address',
  'year',
  'els',
  'reddit',
  'aita',
  'compromis',
  'daughter',
  'name',
  'updat',
  '[',
  'updat',
  'aita',
  'stick',
  'mym',
  'gun',
  'came',
  'daughter',
  'name',
  'ok-toe-',
  'redditcom',
  ']',
  'httpswwwredditcomuserok-toe-commentsvbkaupdate_aita_for_sticking_to_mym_guns_when_it'],
 ['super',
  'weird',
  'situat',
  'need',
  'judgement',
  'engag',
  'amanda',
  'year',
  'date',
  'year',
  'old',
  'daughter',
  'name',
  'alexi',
  'alexi',
  'good',
  'relationship',
  'amanda',
  'ex',
  'good',
  'relationship',
  'part',
  'im',
  'total',
  'comfort',
  'role',
  'amanda',
  'ex',
  'alexi',
  'weird',
  'thing',
  'get',
  'togeth',
  'sunday',
  'hangout',
  'three',
  'guess',
  'start',
  'famili',
  'tradit',
  'divorc',
  'kept',
  'go',
  'make',
  'breakfast',
  'watch',
  'movi',
  'hang',
  'around',
  'day',
  'togeth',
  'find',
  'realli',
  'weird',
  'tbh',
  'like',
  'im',
  'insecur',
  'would',
  'want',
  'spend',
  'day',
  'week',
  'ex',
  'beyond',
  'said',
  'weird',
  'found',
  'start',
  'date',
  'amanda',
  'said',
  'alexi',
  'look',
  'forward',
  'weekli',
  'never',
  'stop',
  'first',
  'would',
  'hang',
  'room',
  'basement',
  'sunday',
  'got',
  'tire',
  'trap',
  'hous',
  'start',
  'leav',
  'whole',
  'day',
  'amanda',
  'would',
  'never',
  'ask',
  'go',
  'anyth',
  'even',
  'notic',
  'gone',
  'first',
  'golf',
  'get',
  'errand',
  'done',
  'would',
  'find',
  'bar',
  'reconnect',
  'old',
  'friend',
  'bella',
  'bella',
  'date',
  'year',
  'ago',
  'remain',
  'good',
  'friend',
  'sinc',
  'broke',
  'husband',
  'move',
  'new',
  'apart',
  'told',
  'one',
  'sunday',
  'plan',
  'go',
  'movi',
  'instead',
  'invit',
  'smoke',
  'weed',
  'watch',
  'movi',
  'cook',
  'hung',
  'nice',
  'ever',
  'sinc',
  'becom',
  'weekli',
  'tradit',
  'whenev',
  'sunday',
  'would',
  'come',
  'id',
  'head',
  'bella',
  'wed',
  'hangout',
  'day',
  'see',
  'need',
  'bring',
  'amanda',
  'go',
  'never',
  'ask',
  'even',
  'wonder',
  'everi',
  'sunday',
  'yesterday',
  'bella',
  'stop',
  'hous',
  'drop',
  'phone',
  'charger',
  'left',
  'place',
  'amanda',
  'ask',
  'bella',
  'phone',
  'charger',
  'told',
  'sunday',
  'ask',
  'told',
  'sunday',
  'hangout',
  'spot',
  'flip',
  'say',
  'rude',
  'let',
  'know',
  'hang',
  'ex',
  'laugh',
  'said',
  'realli',
  'see',
  'ironi',
  'statement',
  'said',
  'differ',
  'forthcom',
  'herex',
  'relationship',
  'issu',
  'said',
  'said',
  'alreadi',
  'bring',
  'said',
  'import',
  'daughter',
  'suppos',
  'interfer',
  'highlight',
  'daughter',
  'week',
  'order',
  'make',
  'feel',
  'better',
  'ill',
  'sneak',
  'back',
  'door',
  'head',
  'friend',
  'hous',
  'see',
  'even',
  'issu',
  'trust',
  'adult',
  'amanda',
  'want',
  'anymor',
  'said',
  'want',
  'find',
  'anoth',
  'way',
  'spend',
  'sunday',
  'said',
  'want',
  'ex',
  'sunday',
  'anymor',
  'play',
  'aita',
  'updat',
  'shit',
  'alreadi',
  'hit',
  'fan',
  'whole',
  'situat',
  'ive',
  'put',
  'foot',
  'said',
  'im',
  'forc',
  'hous',
  'anymor',
  'sunday',
  'funday',
  'ex',
  'place',
  'move',
  'forward',
  'ill',
  'post',
  'complet',
  'updat',
  'want',
  'clarifi',
  'reason',
  'hang',
  'ask',
  'first',
  'alway',
  'felt',
  'awkward',
  'whole',
  'thing',
  'first',
  'stay',
  'away',
  'ask',
  'felt',
  'like',
  'fourth',
  'wheel',
  'decid',
  'quit',
  'tri',
  'bella',
  'realli',
  'help',
  'went',
  'someth',
  'similar']]
In [ ]:
top_posts["body_clean"] = post_texts
top_posts.head()
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
0 AITA for bringing my SIL’s wallet to the resta... Edit: update on profile\n\nMy (f28) SIL “Amy” ... 68548 x2k5kv NTA. Stone cold busted. Next time she books an... 1449 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-31 19:59:37 [edit, updat, profil, sil, ami, alway, come, v... edit update profile sil amy always comes visit...
1 AITA for bringing up my brother's "premature" ... I am a nurse practitioner and I am the primary... 56392 zvmflw You can tell the family about the time you wer... 692 https://www.reddit.com/r/AmItheAsshole/comment... 2022-12-26 13:44:43 [nurs, practition, primari, care, provid, lot,... nurse practitioner primary care provider lot l...
2 AITA for not taking down my video that was a g... I have a sister that’s 6 years older than me. ... 54769 wyjbjs NTA\n\nMy parents missed my wedding too all be... 1587 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-26 22:25:55 [sister, year, older, parent, year, cancel, la... sister thats years older parents years cancel ...
3 UPDATE AITA for walking out of the Airport whe... Hello!.\n\n\nI don't know where to begin...it'... 51465 ur2l3s I'm sorry you are going through this, but I'm ... 18672 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-16 20:28:59 [hello, know, beginit, absolut, nightmar, rece... hello know beginits absolute nightmare recentl...
4 AITA for walking out of the Airport when I saw... \n\nI F30 don't have the best relationship wit... 50028 unhse2 Definitely NTA. You know that if you had sucke... 9416 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-11 21:27:15 [best, relationship, husband, mom, sinc, day, ... best relationship husbands mom since day one t...
In [ ]:
def generate_ngrams(text, ngram = 1):
    temp = zip(*[text[i:] for i in range(0,ngram)]) # set with pairs, three, ..., ns of tokens
    ans = [' '.join(ngram) for ngram in temp] # joins the elements in strings
    ans = pd.Series(ans).map(lambda x: re.sub(" ", '_', x)) # replaces spaces with '_'
    return list(ans)
In [ ]:
for i in range(0,len(post_texts)):
    unigrams = post_texts[i]
    bigrams = generate_ngrams(post_texts[i], ngram = 2)
    trigrams = generate_ngrams(post_texts[i], ngram = 3)
    
    text = []
    text.append(unigrams)
    text.append(bigrams)
    text.append(trigrams)
    
    post_texts[i] = [item for sublist in text for item in sublist] 

post_texts
Out[ ]:
[['edit',
  'updat',
  'profil',
  'sil',
  'ami',
  'alway',
  'come',
  'visit',
  'town',
  'stay',
  'us',
  'instead',
  'hotel',
  'alway',
  'want',
  'go',
  'expens',
  'restaur',
  'alway',
  'conveni',
  'forget',
  'wallet',
  'dome',
  'excus',
  'cant',
  'pay',
  'share',
  'impli',
  'sinc',
  'make',
  'much',
  'money',
  'one',
  'pay',
  'husband',
  'pay',
  '*',
  'specif',
  '*',
  'make',
  'fair',
  'amount',
  'money',
  'much',
  'treat',
  'someon',
  'everi',
  'time',
  'come',
  'town',
  'nonetheless',
  'past',
  'paid',
  'bill',
  'ask',
  'pay',
  'back',
  'never',
  'made',
  'reserv',
  'extrem',
  'expens',
  'restaur',
  'last',
  'night',
  'left',
  'made',
  'clear',
  'pay',
  'bill',
  'might',
  'asshol',
  'ill',
  'admit',
  'got',
  'move',
  'straight',
  'episod',
  'two',
  'half',
  'men',
  'leav',
  'husband',
  'went',
  'car',
  'pretend',
  'forgot',
  'someth',
  'went',
  'back',
  'insid',
  'found',
  'wallet',
  'sit',
  'right',
  'top',
  'suitcas',
  'put',
  'purs',
  'went',
  'restaur',
  'done',
  'eat',
  'ask',
  'separ',
  'bill',
  'said',
  'need',
  'one',
  'bill',
  'forgot',
  'wallet',
  'reach',
  'purs',
  'said',
  'wallet',
  'extrem',
  'furiou',
  'said',
  'touch',
  'grab',
  'wallet',
  'aita',
  'take',
  'wallet',
  'bring',
  'restaur',
  'edit',
  'wow',
  'thank',
  'award',
  'jeez',
  'lol',
  'mani',
  'comment',
  'cant',
  'keep',
  'thank',
  'everyon',
  'someth',
  'say',
  'edit',
  'ami',
  'call',
  'saw',
  'post',
  'yell',
  'badmouth',
  'internet',
  'honestli',
  'care',
  'ami',
  'hope',
  'read',
  'comment',
  'wake',
  'call',
  'edit_updat',
  'updat_profil',
  'profil_sil',
  'sil_ami',
  'ami_alway',
  'alway_come',
  'come_visit',
  'visit_town',
  'town_stay',
  'stay_us',
  'us_instead',
  'instead_hotel',
  'hotel_alway',
  'alway_want',
  'want_go',
  'go_expens',
  'expens_restaur',
  'restaur_alway',
  'alway_conveni',
  'conveni_forget',
  'forget_wallet',
  'wallet_dome',
  'dome_excus',
  'excus_cant',
  'cant_pay',
  'pay_share',
  'share_impli',
  'impli_sinc',
  'sinc_make',
  'make_much',
  'much_money',
  'money_one',
  'one_pay',
  'pay_husband',
  'husband_pay',
  'pay_*',
  '*_specif',
  'specif_*',
  '*_make',
  'make_fair',
  'fair_amount',
  'amount_money',
  'money_much',
  'much_treat',
  'treat_someon',
  'someon_everi',
  'everi_time',
  'time_come',
  'come_town',
  'town_nonetheless',
  'nonetheless_past',
  'past_paid',
  'paid_bill',
  'bill_ask',
  'ask_pay',
  'pay_back',
  'back_never',
  'never_made',
  'made_reserv',
  'reserv_extrem',
  'extrem_expens',
  'expens_restaur',
  'restaur_last',
  'last_night',
  'night_left',
  'left_made',
  'made_clear',
  'clear_pay',
  'pay_bill',
  'bill_might',
  'might_asshol',
  'asshol_ill',
  'ill_admit',
  'admit_got',
  'got_move',
  'move_straight',
  'straight_episod',
  'episod_two',
  'two_half',
  'half_men',
  'men_leav',
  'leav_husband',
  'husband_went',
  'went_car',
  'car_pretend',
  'pretend_forgot',
  'forgot_someth',
  'someth_went',
  'went_back',
  'back_insid',
  'insid_found',
  'found_wallet',
  'wallet_sit',
  'sit_right',
  'right_top',
  'top_suitcas',
  'suitcas_put',
  'put_purs',
  'purs_went',
  'went_restaur',
  'restaur_done',
  'done_eat',
  'eat_ask',
  'ask_separ',
  'separ_bill',
  'bill_said',
  'said_need',
  'need_one',
  'one_bill',
  'bill_forgot',
  'forgot_wallet',
  'wallet_reach',
  'reach_purs',
  'purs_said',
  'said_wallet',
  'wallet_extrem',
  'extrem_furiou',
  'furiou_said',
  'said_touch',
  'touch_grab',
  'grab_wallet',
  'wallet_aita',
  'aita_take',
  'take_wallet',
  'wallet_bring',
  'bring_restaur',
  'restaur_edit',
  'edit_wow',
  'wow_thank',
  'thank_award',
  'award_jeez',
  'jeez_lol',
  'lol_mani',
  'mani_comment',
  'comment_cant',
  'cant_keep',
  'keep_thank',
  'thank_everyon',
  'everyon_someth',
  'someth_say',
  'say_edit',
  'edit_ami',
  'ami_call',
  'call_saw',
  'saw_post',
  'post_yell',
  'yell_badmouth',
  'badmouth_internet',
  'internet_honestli',
  'honestli_care',
  'care_ami',
  'ami_hope',
  'hope_read',
  'read_comment',
  'comment_wake',
  'wake_call',
  'edit_updat_profil',
  'updat_profil_sil',
  'profil_sil_ami',
  'sil_ami_alway',
  'ami_alway_come',
  'alway_come_visit',
  'come_visit_town',
  'visit_town_stay',
  'town_stay_us',
  'stay_us_instead',
  'us_instead_hotel',
  'instead_hotel_alway',
  'hotel_alway_want',
  'alway_want_go',
  'want_go_expens',
  'go_expens_restaur',
  'expens_restaur_alway',
  'restaur_alway_conveni',
  'alway_conveni_forget',
  'conveni_forget_wallet',
  'forget_wallet_dome',
  'wallet_dome_excus',
  'dome_excus_cant',
  'excus_cant_pay',
  'cant_pay_share',
  'pay_share_impli',
  'share_impli_sinc',
  'impli_sinc_make',
  'sinc_make_much',
  'make_much_money',
  'much_money_one',
  'money_one_pay',
  'one_pay_husband',
  'pay_husband_pay',
  'husband_pay_*',
  'pay_*_specif',
  '*_specif_*',
  'specif_*_make',
  '*_make_fair',
  'make_fair_amount',
  'fair_amount_money',
  'amount_money_much',
  'money_much_treat',
  'much_treat_someon',
  'treat_someon_everi',
  'someon_everi_time',
  'everi_time_come',
  'time_come_town',
  'come_town_nonetheless',
  'town_nonetheless_past',
  'nonetheless_past_paid',
  'past_paid_bill',
  'paid_bill_ask',
  'bill_ask_pay',
  'ask_pay_back',
  'pay_back_never',
  'back_never_made',
  'never_made_reserv',
  'made_reserv_extrem',
  'reserv_extrem_expens',
  'extrem_expens_restaur',
  'expens_restaur_last',
  'restaur_last_night',
  'last_night_left',
  'night_left_made',
  'left_made_clear',
  'made_clear_pay',
  'clear_pay_bill',
  'pay_bill_might',
  'bill_might_asshol',
  'might_asshol_ill',
  'asshol_ill_admit',
  'ill_admit_got',
  'admit_got_move',
  'got_move_straight',
  'move_straight_episod',
  'straight_episod_two',
  'episod_two_half',
  'two_half_men',
  'half_men_leav',
  'men_leav_husband',
  'leav_husband_went',
  'husband_went_car',
  'went_car_pretend',
  'car_pretend_forgot',
  'pretend_forgot_someth',
  'forgot_someth_went',
  'someth_went_back',
  'went_back_insid',
  'back_insid_found',
  'insid_found_wallet',
  'found_wallet_sit',
  'wallet_sit_right',
  'sit_right_top',
  'right_top_suitcas',
  'top_suitcas_put',
  'suitcas_put_purs',
  'put_purs_went',
  'purs_went_restaur',
  'went_restaur_done',
  'restaur_done_eat',
  'done_eat_ask',
  'eat_ask_separ',
  'ask_separ_bill',
  'separ_bill_said',
  'bill_said_need',
  'said_need_one',
  'need_one_bill',
  'one_bill_forgot',
  'bill_forgot_wallet',
  'forgot_wallet_reach',
  'wallet_reach_purs',
  'reach_purs_said',
  'purs_said_wallet',
  'said_wallet_extrem',
  'wallet_extrem_furiou',
  'extrem_furiou_said',
  'furiou_said_touch',
  'said_touch_grab',
  'touch_grab_wallet',
  'grab_wallet_aita',
  'wallet_aita_take',
  'aita_take_wallet',
  'take_wallet_bring',
  'wallet_bring_restaur',
  'bring_restaur_edit',
  'restaur_edit_wow',
  'edit_wow_thank',
  'wow_thank_award',
  'thank_award_jeez',
  'award_jeez_lol',
  'jeez_lol_mani',
  'lol_mani_comment',
  'mani_comment_cant',
  'comment_cant_keep',
  'cant_keep_thank',
  'keep_thank_everyon',
  'thank_everyon_someth',
  'everyon_someth_say',
  'someth_say_edit',
  'say_edit_ami',
  'edit_ami_call',
  'ami_call_saw',
  'call_saw_post',
  'saw_post_yell',
  'post_yell_badmouth',
  'yell_badmouth_internet',
  'badmouth_internet_honestli',
  'internet_honestli_care',
  'honestli_care_ami',
  'care_ami_hope',
  'ami_hope_read',
  'hope_read_comment',
  'read_comment_wake',
  'comment_wake_call'],
 ['nurs',
  'practition',
  'primari',
  'care',
  'provid',
  'lot',
  'low',
  'risk',
  'matern',
  'case',
  'practic',
  'work',
  'also',
  'work',
  'hand',
  'hand',
  'doctor',
  'midwiv',
  'creat',
  'healthi',
  'matern',
  'birth',
  'postpartum',
  'situat',
  'fiance',
  'complet',
  'resid',
  'live',
  'togeth',
  'year',
  'hurri',
  'get',
  'marri',
  'origin',
  'plan',
  'coupl',
  'year',
  'ago',
  'got',
  'realli',
  'busi',
  'two',
  'year',
  'drive',
  'religi',
  'parent',
  'crazi',
  'youngest',
  'son',
  'live',
  'sin',
  'realli',
  'care',
  'im',
  'adult',
  'want',
  'get',
  'marri',
  'june',
  'visit',
  'parent',
  'christma',
  'way',
  'came',
  'togeth',
  'year',
  'everyon',
  'parent',
  'hous',
  'folk',
  'three',
  'sibl',
  'fiance',
  'seven',
  'grandchildren',
  'seventeen',
  'peopl',
  'dinner',
  'mom',
  'start',
  'go',
  'glad',
  'final',
  'get',
  'marri',
  'embarrass',
  'church',
  'dad',
  'say',
  'proud',
  'three',
  'older',
  'kid',
  'either',
  'wait',
  'get',
  'marri',
  'move',
  'togeth',
  'got',
  'marri',
  'right',
  'away',
  'move',
  'togeth',
  'fiance',
  'get',
  'embarrass',
  'get',
  'mad',
  'stupid',
  'argument',
  'mani',
  'time',
  'famili',
  'dinner',
  'last',
  'straw',
  'ask',
  'repeatedli',
  'accept',
  'control',
  'live',
  'life',
  'refus',
  'stay',
  'visit',
  'even',
  'come',
  'alon',
  'hotel',
  'easier',
  'start',
  'talk',
  'prematur',
  'babi',
  'read',
  'almost',
  'three',
  'month',
  'prematur',
  'weigh',
  'pound',
  'super',
  'strong',
  'healthi',
  'born',
  'littl',
  'nicu',
  'high',
  'hope',
  'babi',
  'well',
  'mom',
  'dad',
  'got',
  'deer',
  'headlight',
  'look',
  'face',
  'bad',
  'fuck',
  'around',
  'fiance',
  'feel',
  'ask',
  'oldest',
  'brother',
  'born',
  'almost',
  'four',
  'month',
  'prematur',
  'chanc',
  'could',
  'check',
  'famili',
  'album',
  'keep',
  'record',
  'famili',
  'birth',
  'stuff',
  'alreadi',
  'know',
  'brother',
  'pound',
  'almost',
  'long',
  'born',
  'grandmoth',
  'told',
  'first',
  'time',
  'parent',
  'tri',
  'shame',
  'subject',
  'get',
  'chang',
  'fast',
  'supper',
  'parent',
  'told',
  'tri',
  'embarrass',
  'privat',
  'thing',
  'concern',
  'told',
  'heard',
  'anyth',
  'live',
  'arrang',
  'ever',
  'rest',
  'life',
  'would',
  'make',
  'sure',
  'keep',
  'bring',
  'fact',
  'mom',
  'second',
  'trimest',
  'got',
  'marri',
  'parent',
  'mad',
  'tell',
  'behav',
  'home',
  'fiance',
  'happi',
  'seem',
  'subject',
  'good',
  'aita',
  'nurs_practition',
  'practition_primari',
  'primari_care',
  'care_provid',
  'provid_lot',
  'lot_low',
  'low_risk',
  'risk_matern',
  'matern_case',
  'case_practic',
  'practic_work',
  'work_also',
  'also_work',
  'work_hand',
  'hand_hand',
  'hand_doctor',
  'doctor_midwiv',
  'midwiv_creat',
  'creat_healthi',
  'healthi_matern',
  'matern_birth',
  'birth_postpartum',
  'postpartum_situat',
  'situat_fiance',
  'fiance_complet',
  'complet_resid',
  'resid_live',
  'live_togeth',
  'togeth_year',
  'year_hurri',
  'hurri_get',
  'get_marri',
  'marri_origin',
  'origin_plan',
  'plan_coupl',
  'coupl_year',
  'year_ago',
  'ago_got',
  'got_realli',
  'realli_busi',
  'busi_two',
  'two_year',
  'year_drive',
  'drive_religi',
  'religi_parent',
  'parent_crazi',
  'crazi_youngest',
  'youngest_son',
  'son_live',
  'live_sin',
  'sin_realli',
  'realli_care',
  'care_im',
  'im_adult',
  'adult_want',
  'want_get',
  'get_marri',
  'marri_june',
  'june_visit',
  'visit_parent',
  'parent_christma',
  'christma_way',
  'way_came',
  'came_togeth',
  'togeth_year',
  'year_everyon',
  'everyon_parent',
  'parent_hous',
  'hous_folk',
  'folk_three',
  'three_sibl',
  'sibl_fiance',
  'fiance_seven',
  'seven_grandchildren',
  'grandchildren_seventeen',
  'seventeen_peopl',
  'peopl_dinner',
  'dinner_mom',
  'mom_start',
  'start_go',
  'go_glad',
  'glad_final',
  'final_get',
  'get_marri',
  'marri_embarrass',
  'embarrass_church',
  'church_dad',
  'dad_say',
  'say_proud',
  'proud_three',
  'three_older',
  'older_kid',
  'kid_either',
  'either_wait',
  'wait_get',
  'get_marri',
  'marri_move',
  'move_togeth',
  'togeth_got',
  'got_marri',
  'marri_right',
  'right_away',
  'away_move',
  'move_togeth',
  'togeth_fiance',
  'fiance_get',
  'get_embarrass',
  'embarrass_get',
  'get_mad',
  'mad_stupid',
  'stupid_argument',
  'argument_mani',
  'mani_time',
  'time_famili',
  'famili_dinner',
  'dinner_last',
  'last_straw',
  'straw_ask',
  'ask_repeatedli',
  'repeatedli_accept',
  'accept_control',
  'control_live',
  'live_life',
  'life_refus',
  'refus_stay',
  'stay_visit',
  'visit_even',
  'even_come',
  'come_alon',
  'alon_hotel',
  'hotel_easier',
  'easier_start',
  'start_talk',
  'talk_prematur',
  'prematur_babi',
  'babi_read',
  'read_almost',
  'almost_three',
  'three_month',
  'month_prematur',
  'prematur_weigh',
  'weigh_pound',
  'pound_super',
  'super_strong',
  'strong_healthi',
  'healthi_born',
  'born_littl',
  'littl_nicu',
  'nicu_high',
  'high_hope',
  'hope_babi',
  'babi_well',
  'well_mom',
  'mom_dad',
  'dad_got',
  'got_deer',
  'deer_headlight',
  'headlight_look',
  'look_face',
  'face_bad',
  'bad_fuck',
  'fuck_around',
  'around_fiance',
  'fiance_feel',
  'feel_ask',
  'ask_oldest',
  'oldest_brother',
  'brother_born',
  'born_almost',
  'almost_four',
  'four_month',
  'month_prematur',
  'prematur_chanc',
  'chanc_could',
  'could_check',
  'check_famili',
  'famili_album',
  'album_keep',
  'keep_record',
  'record_famili',
  'famili_birth',
  'birth_stuff',
  'stuff_alreadi',
  'alreadi_know',
  'know_brother',
  'brother_pound',
  'pound_almost',
  'almost_long',
  'long_born',
  'born_grandmoth',
  'grandmoth_told',
  'told_first',
  'first_time',
  'time_parent',
  'parent_tri',
  'tri_shame',
  'shame_subject',
  'subject_get',
  'get_chang',
  'chang_fast',
  'fast_supper',
  'supper_parent',
  'parent_told',
  'told_tri',
  'tri_embarrass',
  'embarrass_privat',
  'privat_thing',
  'thing_concern',
  'concern_told',
  'told_heard',
  'heard_anyth',
  'anyth_live',
  'live_arrang',
  'arrang_ever',
  'ever_rest',
  'rest_life',
  'life_would',
  'would_make',
  'make_sure',
  'sure_keep',
  'keep_bring',
  'bring_fact',
  'fact_mom',
  'mom_second',
  'second_trimest',
  'trimest_got',
  'got_marri',
  'marri_parent',
  'parent_mad',
  'mad_tell',
  'tell_behav',
  'behav_home',
  'home_fiance',
  'fiance_happi',
  'happi_seem',
  'seem_subject',
  'subject_good',
  'good_aita',
  'nurs_practition_primari',
  'practition_primari_care',
  'primari_care_provid',
  'care_provid_lot',
  'provid_lot_low',
  'lot_low_risk',
  'low_risk_matern',
  'risk_matern_case',
  'matern_case_practic',
  'case_practic_work',
  'practic_work_also',
  'work_also_work',
  'also_work_hand',
  'work_hand_hand',
  'hand_hand_doctor',
  'hand_doctor_midwiv',
  'doctor_midwiv_creat',
  'midwiv_creat_healthi',
  'creat_healthi_matern',
  'healthi_matern_birth',
  'matern_birth_postpartum',
  'birth_postpartum_situat',
  'postpartum_situat_fiance',
  'situat_fiance_complet',
  'fiance_complet_resid',
  'complet_resid_live',
  'resid_live_togeth',
  'live_togeth_year',
  'togeth_year_hurri',
  'year_hurri_get',
  'hurri_get_marri',
  'get_marri_origin',
  'marri_origin_plan',
  'origin_plan_coupl',
  'plan_coupl_year',
  'coupl_year_ago',
  'year_ago_got',
  'ago_got_realli',
  'got_realli_busi',
  'realli_busi_two',
  'busi_two_year',
  'two_year_drive',
  'year_drive_religi',
  'drive_religi_parent',
  'religi_parent_crazi',
  'parent_crazi_youngest',
  'crazi_youngest_son',
  'youngest_son_live',
  'son_live_sin',
  'live_sin_realli',
  'sin_realli_care',
  'realli_care_im',
  'care_im_adult',
  'im_adult_want',
  'adult_want_get',
  'want_get_marri',
  'get_marri_june',
  'marri_june_visit',
  'june_visit_parent',
  'visit_parent_christma',
  'parent_christma_way',
  'christma_way_came',
  'way_came_togeth',
  'came_togeth_year',
  'togeth_year_everyon',
  'year_everyon_parent',
  'everyon_parent_hous',
  'parent_hous_folk',
  'hous_folk_three',
  'folk_three_sibl',
  'three_sibl_fiance',
  'sibl_fiance_seven',
  'fiance_seven_grandchildren',
  'seven_grandchildren_seventeen',
  'grandchildren_seventeen_peopl',
  'seventeen_peopl_dinner',
  'peopl_dinner_mom',
  'dinner_mom_start',
  'mom_start_go',
  'start_go_glad',
  'go_glad_final',
  'glad_final_get',
  'final_get_marri',
  'get_marri_embarrass',
  'marri_embarrass_church',
  'embarrass_church_dad',
  'church_dad_say',
  'dad_say_proud',
  'say_proud_three',
  'proud_three_older',
  'three_older_kid',
  'older_kid_either',
  'kid_either_wait',
  'either_wait_get',
  'wait_get_marri',
  'get_marri_move',
  'marri_move_togeth',
  'move_togeth_got',
  'togeth_got_marri',
  'got_marri_right',
  'marri_right_away',
  'right_away_move',
  'away_move_togeth',
  'move_togeth_fiance',
  'togeth_fiance_get',
  'fiance_get_embarrass',
  'get_embarrass_get',
  'embarrass_get_mad',
  'get_mad_stupid',
  'mad_stupid_argument',
  'stupid_argument_mani',
  'argument_mani_time',
  'mani_time_famili',
  'time_famili_dinner',
  'famili_dinner_last',
  'dinner_last_straw',
  'last_straw_ask',
  'straw_ask_repeatedli',
  'ask_repeatedli_accept',
  'repeatedli_accept_control',
  'accept_control_live',
  'control_live_life',
  'live_life_refus',
  'life_refus_stay',
  'refus_stay_visit',
  'stay_visit_even',
  'visit_even_come',
  'even_come_alon',
  'come_alon_hotel',
  'alon_hotel_easier',
  'hotel_easier_start',
  'easier_start_talk',
  'start_talk_prematur',
  'talk_prematur_babi',
  'prematur_babi_read',
  'babi_read_almost',
  'read_almost_three',
  'almost_three_month',
  'three_month_prematur',
  'month_prematur_weigh',
  'prematur_weigh_pound',
  'weigh_pound_super',
  'pound_super_strong',
  'super_strong_healthi',
  'strong_healthi_born',
  'healthi_born_littl',
  'born_littl_nicu',
  'littl_nicu_high',
  'nicu_high_hope',
  'high_hope_babi',
  'hope_babi_well',
  'babi_well_mom',
  'well_mom_dad',
  'mom_dad_got',
  'dad_got_deer',
  'got_deer_headlight',
  'deer_headlight_look',
  'headlight_look_face',
  'look_face_bad',
  'face_bad_fuck',
  'bad_fuck_around',
  'fuck_around_fiance',
  'around_fiance_feel',
  'fiance_feel_ask',
  'feel_ask_oldest',
  'ask_oldest_brother',
  'oldest_brother_born',
  'brother_born_almost',
  'born_almost_four',
  'almost_four_month',
  'four_month_prematur',
  'month_prematur_chanc',
  'prematur_chanc_could',
  'chanc_could_check',
  'could_check_famili',
  'check_famili_album',
  'famili_album_keep',
  'album_keep_record',
  'keep_record_famili',
  'record_famili_birth',
  'famili_birth_stuff',
  'birth_stuff_alreadi',
  'stuff_alreadi_know',
  'alreadi_know_brother',
  'know_brother_pound',
  'brother_pound_almost',
  'pound_almost_long',
  'almost_long_born',
  'long_born_grandmoth',
  'born_grandmoth_told',
  'grandmoth_told_first',
  'told_first_time',
  'first_time_parent',
  'time_parent_tri',
  'parent_tri_shame',
  'tri_shame_subject',
  'shame_subject_get',
  'subject_get_chang',
  'get_chang_fast',
  'chang_fast_supper',
  'fast_supper_parent',
  'supper_parent_told',
  'parent_told_tri',
  'told_tri_embarrass',
  'tri_embarrass_privat',
  'embarrass_privat_thing',
  'privat_thing_concern',
  'thing_concern_told',
  'concern_told_heard',
  'told_heard_anyth',
  'heard_anyth_live',
  'anyth_live_arrang',
  'live_arrang_ever',
  'arrang_ever_rest',
  'ever_rest_life',
  'rest_life_would',
  'life_would_make',
  'would_make_sure',
  'make_sure_keep',
  'sure_keep_bring',
  'keep_bring_fact',
  'bring_fact_mom',
  'fact_mom_second',
  'mom_second_trimest',
  'second_trimest_got',
  'trimest_got_marri',
  'got_marri_parent',
  'marri_parent_mad',
  'parent_mad_tell',
  'mad_tell_behav',
  'tell_behav_home',
  'behav_home_fiance',
  'home_fiance_happi',
  'fiance_happi_seem',
  'happi_seem_subject',
  'seem_subject_good',
  'subject_good_aita'],
 ['sister',
  'year',
  'older',
  'parent',
  'year',
  'cancel',
  'last',
  'min',
  'sister',
  'basketbal',
  'game',
  'op',
  'sorri',
  'sister',
  'feel',
  'like',
  'go',
  'graduat',
  'op',
  'sorri',
  'sister',
  'bad',
  'day',
  'work',
  'miss',
  'major',
  'smaller',
  'event',
  'life',
  'melt',
  'met',
  'love',
  'life',
  'decid',
  'tie',
  'knot',
  'begin',
  'told',
  'parent',
  'worri',
  'sister',
  'ruin',
  'anoth',
  'special',
  'moment',
  'life',
  'mom',
  'told',
  'would',
  'happen',
  'day',
  'wed',
  'receiv',
  'voicemail',
  'mom',
  'say',
  'come',
  'sister',
  'dog',
  'sick',
  'upset',
  'hurt',
  'best',
  'man',
  'howev',
  'jokest',
  'took',
  'phone',
  'went',
  'fiancé',
  'ask',
  'could',
  'post',
  'video',
  'wed',
  'gift',
  'social',
  'media',
  'love',
  'idea',
  'idea',
  'came',
  'home',
  'honeymoon',
  'lake',
  'side',
  'cabin',
  'cell',
  'servic',
  'post',
  'caption',
  'best',
  'friend',
  'amaz',
  'person',
  'even',
  'parent',
  'never',
  'show',
  'video',
  'still',
  'pictur',
  'us',
  'next',
  'parent',
  'danc',
  'floor',
  'cut',
  'cake',
  'would',
  'normal',
  'see',
  'parent',
  'wed',
  'pictur',
  'sound',
  'behind',
  'video',
  'mom',
  'voic',
  'mail',
  'explain',
  'come',
  'sister',
  'dog',
  'sick',
  'came',
  'home',
  'week',
  'later',
  'hundr',
  'messag',
  'famili',
  'member',
  'side',
  'insist',
  'take',
  'told',
  'sister',
  'stop',
  'cri',
  'mom',
  'refus',
  'leav',
  'hous',
  'mayb',
  'take',
  'got',
  'messag',
  'call',
  'famili',
  'back',
  'right',
  'away',
  'wait',
  'vacat',
  'time',
  'work',
  'enjoy',
  'time',
  'wife',
  'new',
  'home',
  'contact',
  'anyon',
  'dad',
  'told',
  'take',
  'video',
  'bad',
  'night',
  'make',
  'wife',
  'come',
  'repli',
  'exactli',
  'plan',
  'make',
  'wed',
  'life',
  'time',
  'thing',
  'choos',
  'ignor',
  'feel',
  'whole',
  'matter',
  'repeat',
  'make',
  'told',
  'would',
  'take',
  'video',
  'made',
  'miss',
  'wed',
  'fluster',
  'hung',
  'phone',
  'said',
  'thing',
  'could',
  'taken',
  'video',
  'sister_year',
  'year_older',
  'older_parent',
  'parent_year',
  'year_cancel',
  'cancel_last',
  'last_min',
  'min_sister',
  'sister_basketbal',
  'basketbal_game',
  'game_op',
  'op_sorri',
  'sorri_sister',
  'sister_feel',
  'feel_like',
  'like_go',
  'go_graduat',
  'graduat_op',
  'op_sorri',
  'sorri_sister',
  'sister_bad',
  'bad_day',
  'day_work',
  'work_miss',
  'miss_major',
  'major_smaller',
  'smaller_event',
  'event_life',
  'life_melt',
  'melt_met',
  'met_love',
  'love_life',
  'life_decid',
  'decid_tie',
  'tie_knot',
  'knot_begin',
  'begin_told',
  'told_parent',
  'parent_worri',
  'worri_sister',
  'sister_ruin',
  'ruin_anoth',
  'anoth_special',
  'special_moment',
  'moment_life',
  'life_mom',
  'mom_told',
  'told_would',
  'would_happen',
  'happen_day',
  'day_wed',
  'wed_receiv',
  'receiv_voicemail',
  'voicemail_mom',
  'mom_say',
  'say_come',
  'come_sister',
  'sister_dog',
  'dog_sick',
  'sick_upset',
  'upset_hurt',
  'hurt_best',
  'best_man',
  'man_howev',
  'howev_jokest',
  'jokest_took',
  'took_phone',
  'phone_went',
  'went_fiancé',
  'fiancé_ask',
  'ask_could',
  'could_post',
  'post_video',
  'video_wed',
  'wed_gift',
  'gift_social',
  'social_media',
  'media_love',
  'love_idea',
  'idea_idea',
  'idea_came',
  'came_home',
  'home_honeymoon',
  'honeymoon_lake',
  'lake_side',
  'side_cabin',
  'cabin_cell',
  'cell_servic',
  'servic_post',
  'post_caption',
  'caption_best',
  'best_friend',
  'friend_amaz',
  'amaz_person',
  'person_even',
  'even_parent',
  'parent_never',
  'never_show',
  'show_video',
  'video_still',
  'still_pictur',
  'pictur_us',
  'us_next',
  'next_parent',
  'parent_danc',
  'danc_floor',
  'floor_cut',
  'cut_cake',
  'cake_would',
  'would_normal',
  'normal_see',
  'see_parent',
  'parent_wed',
  'wed_pictur',
  'pictur_sound',
  'sound_behind',
  'behind_video',
  'video_mom',
  'mom_voic',
  'voic_mail',
  'mail_explain',
  'explain_come',
  'come_sister',
  'sister_dog',
  'dog_sick',
  'sick_came',
  'came_home',
  'home_week',
  'week_later',
  'later_hundr',
  'hundr_messag',
  'messag_famili',
  'famili_member',
  'member_side',
  'side_insist',
  'insist_take',
  'take_told',
  'told_sister',
  'sister_stop',
  'stop_cri',
  'cri_mom',
  'mom_refus',
  'refus_leav',
  'leav_hous',
  'hous_mayb',
  'mayb_take',
  'take_got',
  'got_messag',
  'messag_call',
  'call_famili',
  'famili_back',
  'back_right',
  'right_away',
  'away_wait',
  'wait_vacat',
  'vacat_time',
  'time_work',
  'work_enjoy',
  'enjoy_time',
  'time_wife',
  'wife_new',
  'new_home',
  'home_contact',
  'contact_anyon',
  'anyon_dad',
  'dad_told',
  'told_take',
  'take_video',
  'video_bad',
  'bad_night',
  'night_make',
  'make_wife',
  'wife_come',
  'come_repli',
  'repli_exactli',
  'exactli_plan',
  'plan_make',
  'make_wed',
  'wed_life',
  'life_time',
  'time_thing',
  'thing_choos',
  'choos_ignor',
  'ignor_feel',
  'feel_whole',
  'whole_matter',
  'matter_repeat',
  'repeat_make',
  'make_told',
  'told_would',
  'would_take',
  'take_video',
  'video_made',
  'made_miss',
  'miss_wed',
  'wed_fluster',
  'fluster_hung',
  'hung_phone',
  'phone_said',
  'said_thing',
  'thing_could',
  'could_taken',
  'taken_video',
  'sister_year_older',
  'year_older_parent',
  'older_parent_year',
  'parent_year_cancel',
  'year_cancel_last',
  'cancel_last_min',
  'last_min_sister',
  'min_sister_basketbal',
  'sister_basketbal_game',
  'basketbal_game_op',
  'game_op_sorri',
  'op_sorri_sister',
  'sorri_sister_feel',
  'sister_feel_like',
  'feel_like_go',
  'like_go_graduat',
  'go_graduat_op',
  'graduat_op_sorri',
  'op_sorri_sister',
  'sorri_sister_bad',
  'sister_bad_day',
  'bad_day_work',
  'day_work_miss',
  'work_miss_major',
  'miss_major_smaller',
  'major_smaller_event',
  'smaller_event_life',
  'event_life_melt',
  'life_melt_met',
  'melt_met_love',
  'met_love_life',
  'love_life_decid',
  'life_decid_tie',
  'decid_tie_knot',
  'tie_knot_begin',
  'knot_begin_told',
  'begin_told_parent',
  'told_parent_worri',
  'parent_worri_sister',
  'worri_sister_ruin',
  'sister_ruin_anoth',
  'ruin_anoth_special',
  'anoth_special_moment',
  'special_moment_life',
  'moment_life_mom',
  'life_mom_told',
  'mom_told_would',
  'told_would_happen',
  'would_happen_day',
  'happen_day_wed',
  'day_wed_receiv',
  'wed_receiv_voicemail',
  'receiv_voicemail_mom',
  'voicemail_mom_say',
  'mom_say_come',
  'say_come_sister',
  'come_sister_dog',
  'sister_dog_sick',
  'dog_sick_upset',
  'sick_upset_hurt',
  'upset_hurt_best',
  'hurt_best_man',
  'best_man_howev',
  'man_howev_jokest',
  'howev_jokest_took',
  'jokest_took_phone',
  'took_phone_went',
  'phone_went_fiancé',
  'went_fiancé_ask',
  'fiancé_ask_could',
  'ask_could_post',
  'could_post_video',
  'post_video_wed',
  'video_wed_gift',
  'wed_gift_social',
  'gift_social_media',
  'social_media_love',
  'media_love_idea',
  'love_idea_idea',
  'idea_idea_came',
  'idea_came_home',
  'came_home_honeymoon',
  'home_honeymoon_lake',
  'honeymoon_lake_side',
  'lake_side_cabin',
  'side_cabin_cell',
  'cabin_cell_servic',
  'cell_servic_post',
  'servic_post_caption',
  'post_caption_best',
  'caption_best_friend',
  'best_friend_amaz',
  'friend_amaz_person',
  'amaz_person_even',
  'person_even_parent',
  'even_parent_never',
  'parent_never_show',
  'never_show_video',
  'show_video_still',
  'video_still_pictur',
  'still_pictur_us',
  'pictur_us_next',
  'us_next_parent',
  'next_parent_danc',
  'parent_danc_floor',
  'danc_floor_cut',
  'floor_cut_cake',
  'cut_cake_would',
  'cake_would_normal',
  'would_normal_see',
  'normal_see_parent',
  'see_parent_wed',
  'parent_wed_pictur',
  'wed_pictur_sound',
  'pictur_sound_behind',
  'sound_behind_video',
  'behind_video_mom',
  'video_mom_voic',
  'mom_voic_mail',
  'voic_mail_explain',
  'mail_explain_come',
  'explain_come_sister',
  'come_sister_dog',
  'sister_dog_sick',
  'dog_sick_came',
  'sick_came_home',
  'came_home_week',
  'home_week_later',
  'week_later_hundr',
  'later_hundr_messag',
  'hundr_messag_famili',
  'messag_famili_member',
  'famili_member_side',
  'member_side_insist',
  'side_insist_take',
  'insist_take_told',
  'take_told_sister',
  'told_sister_stop',
  'sister_stop_cri',
  'stop_cri_mom',
  'cri_mom_refus',
  'mom_refus_leav',
  'refus_leav_hous',
  'leav_hous_mayb',
  'hous_mayb_take',
  'mayb_take_got',
  'take_got_messag',
  'got_messag_call',
  'messag_call_famili',
  'call_famili_back',
  'famili_back_right',
  'back_right_away',
  'right_away_wait',
  'away_wait_vacat',
  'wait_vacat_time',
  'vacat_time_work',
  'time_work_enjoy',
  'work_enjoy_time',
  'enjoy_time_wife',
  'time_wife_new',
  'wife_new_home',
  'new_home_contact',
  'home_contact_anyon',
  'contact_anyon_dad',
  'anyon_dad_told',
  'dad_told_take',
  'told_take_video',
  'take_video_bad',
  'video_bad_night',
  'bad_night_make',
  'night_make_wife',
  'make_wife_come',
  'wife_come_repli',
  'come_repli_exactli',
  'repli_exactli_plan',
  'exactli_plan_make',
  'plan_make_wed',
  'make_wed_life',
  'wed_life_time',
  'life_time_thing',
  'time_thing_choos',
  'thing_choos_ignor',
  'choos_ignor_feel',
  'ignor_feel_whole',
  'feel_whole_matter',
  'whole_matter_repeat',
  'matter_repeat_make',
  'repeat_make_told',
  'make_told_would',
  'told_would_take',
  'would_take_video',
  'take_video_made',
  'video_made_miss',
  'made_miss_wed',
  'miss_wed_fluster',
  'wed_fluster_hung',
  'fluster_hung_phone',
  'hung_phone_said',
  'phone_said_thing',
  'said_thing_could',
  'thing_could_taken',
  'could_taken_video'],
 ['hello',
  'know',
  'beginit',
  'absolut',
  'nightmar',
  'recent',
  'feel',
  'like',
  'lose',
  'saniti',
  'detail',
  'situat',
  'admit',
  'husband',
  'mom',
  'favor',
  'sibl',
  'affect',
  'relationship',
  'well',
  'never',
  'seen',
  'issu',
  'differ',
  'mom',
  'treat',
  'bother',
  'made',
  'feel',
  'uncomfort',
  'whole',
  'dynam',
  'made',
  'feel',
  'uncomfort',
  'go',
  'low',
  'contact',
  'never',
  'even',
  'option',
  'like',
  'see',
  'call',
  'everyday',
  'sibl',
  'talk',
  '%',
  'believ',
  'mom',
  'favorit',
  'like',
  'said',
  'bare',
  'blame',
  'see',
  'wrong',
  'til',
  'day',
  'mani',
  'instanc',
  'found',
  'make',
  'excus',
  'behavior',
  'even',
  'post',
  'spontani',
  'know',
  'guess',
  'much',
  'love',
  'realli',
  'realli',
  'want',
  'abl',
  'work',
  'thing',
  'type',
  'thing',
  'without',
  'let',
  'affect',
  'marriag',
  'regard',
  'happen',
  'trip',
  'tri',
  'talk',
  'said',
  'came',
  'place',
  'blame',
  'blame',
  'toward',
  'continu',
  'argument',
  'told',
  'need',
  'space',
  'would',
  'go',
  'stay',
  'sister',
  'take',
  'well',
  'liter',
  'got',
  'couch',
  'open',
  'door',
  'tell',
  'go',
  'right',
  'moment',
  'see',
  'still',
  'even',
  'anywher',
  'near',
  'understand',
  'done',
  'justmad',
  'thing',
  'perfectli',
  'clear',
  'pictur',
  'year',
  'year',
  'life',
  'live',
  'like',
  'like',
  'noi',
  'cant',
  'cant',
  'take',
  'anymor',
  'especi',
  'keep',
  'focus',
  'right',
  'everi',
  'time',
  'mom',
  'wrong',
  'im',
  'alway',
  'aggress',
  'crazi',
  'jealou',
  'pathet',
  'overreactor',
  'peopl',
  'opinion',
  'advic',
  'concern',
  'like',
  'sparklik',
  'wake',
  'call',
  'realli',
  'need',
  'though',
  'wish',
  'get',
  'far',
  'done',
  'done',
  'right',
  'im',
  'stay',
  'sister',
  'brought',
  'dog',
  'well',
  'sent',
  'last',
  'messag',
  'tell',
  'im',
  'one',
  'choos',
  'end',
  'togeth',
  'believ',
  'way',
  'around',
  'especi',
  'keep',
  'make',
  'mom',
  'victim',
  'situat',
  'becom',
  'clear',
  'keep',
  'go',
  'circl',
  'end',
  'reach',
  'im',
  'exhaust',
  'overwhelm',
  'im',
  'mad',
  'expect',
  'chang',
  'butat',
  'least',
  'im',
  'given',
  'option',
  'decid',
  'best',
  'futur',
  'even',
  'seper',
  'divorc',
  'big',
  'thank',
  'reach',
  'resourc',
  'feel',
  'lucki',
  'come',
  'across',
  'want',
  'give',
  'updat',
  'sinc',
  'mani',
  'ask',
  'hello_know',
  'know_beginit',
  'beginit_absolut',
  'absolut_nightmar',
  'nightmar_recent',
  'recent_feel',
  'feel_like',
  'like_lose',
  'lose_saniti',
  'saniti_detail',
  'detail_situat',
  'situat_admit',
  'admit_husband',
  'husband_mom',
  'mom_favor',
  'favor_sibl',
  'sibl_affect',
  'affect_relationship',
  'relationship_well',
  'well_never',
  'never_seen',
  'seen_issu',
  'issu_differ',
  'differ_mom',
  'mom_treat',
  'treat_bother',
  'bother_made',
  'made_feel',
  'feel_uncomfort',
  'uncomfort_whole',
  'whole_dynam',
  'dynam_made',
  'made_feel',
  'feel_uncomfort',
  'uncomfort_go',
  'go_low',
  'low_contact',
  'contact_never',
  'never_even',
  'even_option',
  'option_like',
  'like_see',
  'see_call',
  'call_everyday',
  'everyday_sibl',
  'sibl_talk',
  'talk_%',
  '%_believ',
  'believ_mom',
  'mom_favorit',
  'favorit_like',
  'like_said',
  'said_bare',
  'bare_blame',
  'blame_see',
  'see_wrong',
  'wrong_til',
  'til_day',
  'day_mani',
  'mani_instanc',
  'instanc_found',
  'found_make',
  'make_excus',
  'excus_behavior',
  'behavior_even',
  'even_post',
  'post_spontani',
  'spontani_know',
  'know_guess',
  'guess_much',
  'much_love',
  'love_realli',
  'realli_realli',
  'realli_want',
  'want_abl',
  'abl_work',
  'work_thing',
  'thing_type',
  'type_thing',
  'thing_without',
  'without_let',
  'let_affect',
  'affect_marriag',
  'marriag_regard',
  'regard_happen',
  'happen_trip',
  'trip_tri',
  'tri_talk',
  'talk_said',
  'said_came',
  'came_place',
  'place_blame',
  'blame_blame',
  'blame_toward',
  'toward_continu',
  'continu_argument',
  'argument_told',
  'told_need',
  'need_space',
  'space_would',
  'would_go',
  'go_stay',
  'stay_sister',
  'sister_take',
  'take_well',
  'well_liter',
  'liter_got',
  'got_couch',
  'couch_open',
  'open_door',
  'door_tell',
  'tell_go',
  'go_right',
  'right_moment',
  'moment_see',
  'see_still',
  'still_even',
  'even_anywher',
  'anywher_near',
  'near_understand',
  'understand_done',
  'done_justmad',
  'justmad_thing',
  'thing_perfectli',
  'perfectli_clear',
  'clear_pictur',
  'pictur_year',
  'year_year',
  'year_life',
  'life_live',
  'live_like',
  'like_like',
  'like_noi',
  'noi_cant',
  'cant_cant',
  'cant_take',
  'take_anymor',
  'anymor_especi',
  'especi_keep',
  'keep_focus',
  'focus_right',
  'right_everi',
  'everi_time',
  'time_mom',
  'mom_wrong',
  'wrong_im',
  'im_alway',
  'alway_aggress',
  'aggress_crazi',
  'crazi_jealou',
  'jealou_pathet',
  'pathet_overreactor',
  'overreactor_peopl',
  'peopl_opinion',
  'opinion_advic',
  'advic_concern',
  'concern_like',
  'like_sparklik',
  'sparklik_wake',
  'wake_call',
  'call_realli',
  'realli_need',
  'need_though',
  'though_wish',
  'wish_get',
  'get_far',
  'far_done',
  'done_done',
  'done_right',
  'right_im',
  'im_stay',
  'stay_sister',
  'sister_brought',
  'brought_dog',
  'dog_well',
  'well_sent',
  'sent_last',
  'last_messag',
  'messag_tell',
  'tell_im',
  'im_one',
  'one_choos',
  'choos_end',
  'end_togeth',
  'togeth_believ',
  'believ_way',
  'way_around',
  'around_especi',
  'especi_keep',
  'keep_make',
  'make_mom',
  'mom_victim',
  'victim_situat',
  'situat_becom',
  'becom_clear',
  'clear_keep',
  'keep_go',
  'go_circl',
  'circl_end',
  'end_reach',
  'reach_im',
  'im_exhaust',
  'exhaust_overwhelm',
  'overwhelm_im',
  'im_mad',
  'mad_expect',
  'expect_chang',
  'chang_butat',
  'butat_least',
  'least_im',
  'im_given',
  'given_option',
  'option_decid',
  'decid_best',
  'best_futur',
  'futur_even',
  'even_seper',
  'seper_divorc',
  'divorc_big',
  'big_thank',
  'thank_reach',
  'reach_resourc',
  'resourc_feel',
  'feel_lucki',
  'lucki_come',
  'come_across',
  'across_want',
  'want_give',
  'give_updat',
  'updat_sinc',
  'sinc_mani',
  'mani_ask',
  'hello_know_beginit',
  'know_beginit_absolut',
  'beginit_absolut_nightmar',
  'absolut_nightmar_recent',
  'nightmar_recent_feel',
  'recent_feel_like',
  'feel_like_lose',
  'like_lose_saniti',
  'lose_saniti_detail',
  'saniti_detail_situat',
  'detail_situat_admit',
  'situat_admit_husband',
  'admit_husband_mom',
  'husband_mom_favor',
  'mom_favor_sibl',
  'favor_sibl_affect',
  'sibl_affect_relationship',
  'affect_relationship_well',
  'relationship_well_never',
  'well_never_seen',
  'never_seen_issu',
  'seen_issu_differ',
  'issu_differ_mom',
  'differ_mom_treat',
  'mom_treat_bother',
  'treat_bother_made',
  'bother_made_feel',
  'made_feel_uncomfort',
  'feel_uncomfort_whole',
  'uncomfort_whole_dynam',
  'whole_dynam_made',
  'dynam_made_feel',
  'made_feel_uncomfort',
  'feel_uncomfort_go',
  'uncomfort_go_low',
  'go_low_contact',
  'low_contact_never',
  'contact_never_even',
  'never_even_option',
  'even_option_like',
  'option_like_see',
  'like_see_call',
  'see_call_everyday',
  'call_everyday_sibl',
  'everyday_sibl_talk',
  'sibl_talk_%',
  'talk_%_believ',
  '%_believ_mom',
  'believ_mom_favorit',
  'mom_favorit_like',
  'favorit_like_said',
  'like_said_bare',
  'said_bare_blame',
  'bare_blame_see',
  'blame_see_wrong',
  'see_wrong_til',
  'wrong_til_day',
  'til_day_mani',
  'day_mani_instanc',
  'mani_instanc_found',
  'instanc_found_make',
  'found_make_excus',
  'make_excus_behavior',
  'excus_behavior_even',
  'behavior_even_post',
  'even_post_spontani',
  'post_spontani_know',
  'spontani_know_guess',
  'know_guess_much',
  'guess_much_love',
  'much_love_realli',
  'love_realli_realli',
  'realli_realli_want',
  'realli_want_abl',
  'want_abl_work',
  'abl_work_thing',
  'work_thing_type',
  'thing_type_thing',
  'type_thing_without',
  'thing_without_let',
  'without_let_affect',
  'let_affect_marriag',
  'affect_marriag_regard',
  'marriag_regard_happen',
  'regard_happen_trip',
  'happen_trip_tri',
  'trip_tri_talk',
  'tri_talk_said',
  'talk_said_came',
  'said_came_place',
  'came_place_blame',
  'place_blame_blame',
  'blame_blame_toward',
  'blame_toward_continu',
  'toward_continu_argument',
  'continu_argument_told',
  'argument_told_need',
  'told_need_space',
  'need_space_would',
  'space_would_go',
  'would_go_stay',
  'go_stay_sister',
  'stay_sister_take',
  'sister_take_well',
  'take_well_liter',
  'well_liter_got',
  'liter_got_couch',
  'got_couch_open',
  'couch_open_door',
  'open_door_tell',
  'door_tell_go',
  'tell_go_right',
  'go_right_moment',
  'right_moment_see',
  'moment_see_still',
  'see_still_even',
  'still_even_anywher',
  'even_anywher_near',
  'anywher_near_understand',
  'near_understand_done',
  'understand_done_justmad',
  'done_justmad_thing',
  'justmad_thing_perfectli',
  'thing_perfectli_clear',
  'perfectli_clear_pictur',
  'clear_pictur_year',
  'pictur_year_year',
  'year_year_life',
  'year_life_live',
  'life_live_like',
  'live_like_like',
  'like_like_noi',
  'like_noi_cant',
  'noi_cant_cant',
  'cant_cant_take',
  'cant_take_anymor',
  'take_anymor_especi',
  'anymor_especi_keep',
  'especi_keep_focus',
  'keep_focus_right',
  'focus_right_everi',
  'right_everi_time',
  'everi_time_mom',
  'time_mom_wrong',
  'mom_wrong_im',
  'wrong_im_alway',
  'im_alway_aggress',
  'alway_aggress_crazi',
  'aggress_crazi_jealou',
  'crazi_jealou_pathet',
  'jealou_pathet_overreactor',
  'pathet_overreactor_peopl',
  'overreactor_peopl_opinion',
  'peopl_opinion_advic',
  'opinion_advic_concern',
  'advic_concern_like',
  'concern_like_sparklik',
  'like_sparklik_wake',
  'sparklik_wake_call',
  'wake_call_realli',
  'call_realli_need',
  'realli_need_though',
  'need_though_wish',
  'though_wish_get',
  'wish_get_far',
  'get_far_done',
  'far_done_done',
  'done_done_right',
  'done_right_im',
  'right_im_stay',
  'im_stay_sister',
  'stay_sister_brought',
  'sister_brought_dog',
  'brought_dog_well',
  'dog_well_sent',
  'well_sent_last',
  'sent_last_messag',
  'last_messag_tell',
  'messag_tell_im',
  'tell_im_one',
  'im_one_choos',
  'one_choos_end',
  'choos_end_togeth',
  'end_togeth_believ',
  'togeth_believ_way',
  'believ_way_around',
  'way_around_especi',
  'around_especi_keep',
  'especi_keep_make',
  'keep_make_mom',
  'make_mom_victim',
  'mom_victim_situat',
  'victim_situat_becom',
  'situat_becom_clear',
  'becom_clear_keep',
  'clear_keep_go',
  'keep_go_circl',
  'go_circl_end',
  'circl_end_reach',
  'end_reach_im',
  'reach_im_exhaust',
  'im_exhaust_overwhelm',
  'exhaust_overwhelm_im',
  'overwhelm_im_mad',
  'im_mad_expect',
  'mad_expect_chang',
  'expect_chang_butat',
  'chang_butat_least',
  'butat_least_im',
  'least_im_given',
  'im_given_option',
  'given_option_decid',
  'option_decid_best',
  'decid_best_futur',
  'best_futur_even',
  'futur_even_seper',
  'even_seper_divorc',
  'seper_divorc_big',
  'divorc_big_thank',
  'big_thank_reach',
  'thank_reach_resourc',
  'reach_resourc_feel',
  'resourc_feel_lucki',
  'feel_lucki_come',
  'lucki_come_across',
  'come_across_want',
  'across_want_give',
  'want_give_updat',
  'give_updat_sinc',
  'updat_sinc_mani',
  'sinc_mani_ask'],
 ['best',
  'relationship',
  'husband',
  'mom',
  'sinc',
  'day',
  'one',
  'tri',
  'make',
  'remark',
  'compar',
  'tri',
  'get',
  'good',
  'side',
  'start',
  'overli',
  'prais',
  'everyth',
  'sometim',
  'even',
  'copi',
  'like',
  'one',
  'time',
  'liter',
  'dyi',
  'hair',
  'purpl',
  'like',
  'mine',
  'everyon',
  'point',
  'ridicul',
  'look',
  'actual',
  'blame',
  'accus',
  'tri',
  'make',
  'joke',
  'anyway',
  'husband',
  'took',
  'week',
  'work',
  'go',
  'visit',
  'place',
  'countri',
  '-',
  'tourism',
  'word',
  'thing',
  'one',
  'save',
  'arrang',
  'trip',
  'husband',
  'respons',
  'book',
  'ticket',
  'husband',
  'mom',
  'want',
  'come',
  'along',
  'threw',
  'temper',
  'tantrum',
  'said',
  'call',
  'text',
  'sent',
  'peopl',
  'talk',
  'let',
  'come',
  'even',
  'threaten',
  'call',
  'polic',
  'make',
  'complaint',
  'get',
  'us',
  'stay',
  'cant',
  'come',
  'husband',
  'said',
  'take',
  'told',
  'wrong',
  'tell',
  'trip',
  'first',
  'place',
  'gave',
  'ultimatim',
  'said',
  'go',
  'cant',
  'come',
  'told',
  'id',
  'gladli',
  'call',
  'bluff',
  'made',
  'take',
  'word',
  'back',
  'say',
  'fine',
  'tell',
  'stop',
  'take',
  'thing',
  'got',
  'quieter',
  'suspeci',
  'quieter',
  'day',
  'trip',
  'came',
  'got',
  'airport',
  'pm',
  'husband',
  'walk',
  'ahead',
  'look',
  'left',
  'right',
  'like',
  'look',
  'someon',
  'ask',
  'respond',
  'lead',
  'wait',
  'area',
  'first',
  'thing',
  'saw',
  'mom',
  'stand',
  'luggag',
  'froze',
  'spot',
  'felt',
  'cold',
  'wave',
  'wash',
  'fume',
  'insid',
  'husband',
  'hug',
  'quietli',
  'turn',
  'around',
  'start',
  'walk',
  'toward',
  'exit',
  'husband',
  'follow',
  'shout',
  'stop',
  'tri',
  'stop',
  'told',
  'harshest',
  'way',
  'possibl',
  'tri',
  'say',
  'overreact',
  'mom',
  'anyway',
  'let',
  'go',
  'mess',
  'trip',
  'us',
  'told',
  'mom',
  'could',
  'still',
  'go',
  'go',
  'home',
  'went',
  'home',
  'sob',
  'dog',
  'fur',
  'sever',
  'minut',
  'turn',
  'book',
  'ticket',
  'without',
  'know',
  'hour',
  'later',
  'came',
  'home',
  'yell',
  'rage',
  'pathet',
  'spite',
  'walk',
  'go',
  'home',
  'ruin',
  'trip',
  'last',
  'minut',
  'told',
  'caus',
  'happen',
  'said',
  'hard',
  'mom',
  'ridicul',
  'refus',
  'fight',
  'kept',
  'berat',
  'call',
  'famili',
  'tell',
  'trip',
  'cancel',
  'famili',
  'said',
  'ruin',
  'suck',
  'done',
  'best',
  'enjoy',
  'realli',
  'overreact',
  'best_relationship',
  'relationship_husband',
  'husband_mom',
  'mom_sinc',
  'sinc_day',
  'day_one',
  'one_tri',
  'tri_make',
  'make_remark',
  'remark_compar',
  'compar_tri',
  'tri_get',
  'get_good',
  'good_side',
  'side_start',
  'start_overli',
  'overli_prais',
  'prais_everyth',
  'everyth_sometim',
  'sometim_even',
  'even_copi',
  'copi_like',
  'like_one',
  'one_time',
  'time_liter',
  'liter_dyi',
  'dyi_hair',
  'hair_purpl',
  'purpl_like',
  'like_mine',
  'mine_everyon',
  'everyon_point',
  'point_ridicul',
  'ridicul_look',
  'look_actual',
  'actual_blame',
  'blame_accus',
  'accus_tri',
  'tri_make',
  'make_joke',
  'joke_anyway',
  'anyway_husband',
  'husband_took',
  'took_week',
  'week_work',
  'work_go',
  'go_visit',
  'visit_place',
  'place_countri',
  'countri_-',
  '-_tourism',
  'tourism_word',
  'word_thing',
  'thing_one',
  'one_save',
  'save_arrang',
  'arrang_trip',
  'trip_husband',
  'husband_respons',
  'respons_book',
  'book_ticket',
  'ticket_husband',
  'husband_mom',
  'mom_want',
  'want_come',
  'come_along',
  'along_threw',
  'threw_temper',
  'temper_tantrum',
  'tantrum_said',
  'said_call',
  'call_text',
  'text_sent',
  'sent_peopl',
  'peopl_talk',
  'talk_let',
  'let_come',
  'come_even',
  'even_threaten',
  'threaten_call',
  'call_polic',
  'polic_make',
  'make_complaint',
  'complaint_get',
  'get_us',
  'us_stay',
  'stay_cant',
  'cant_come',
  'come_husband',
  'husband_said',
  'said_take',
  'take_told',
  'told_wrong',
  'wrong_tell',
  'tell_trip',
  'trip_first',
  'first_place',
  'place_gave',
  'gave_ultimatim',
  'ultimatim_said',
  'said_go',
  'go_cant',
  'cant_come',
  'come_told',
  'told_id',
  'id_gladli',
  'gladli_call',
  'call_bluff',
  'bluff_made',
  'made_take',
  'take_word',
  'word_back',
  'back_say',
  'say_fine',
  'fine_tell',
  'tell_stop',
  'stop_take',
  'take_thing',
  'thing_got',
  'got_quieter',
  'quieter_suspeci',
  'suspeci_quieter',
  'quieter_day',
  'day_trip',
  'trip_came',
  'came_got',
  'got_airport',
  'airport_pm',
  'pm_husband',
  'husband_walk',
  'walk_ahead',
  'ahead_look',
  'look_left',
  'left_right',
  'right_like',
  'like_look',
  'look_someon',
  'someon_ask',
  'ask_respond',
  'respond_lead',
  'lead_wait',
  'wait_area',
  'area_first',
  'first_thing',
  'thing_saw',
  'saw_mom',
  'mom_stand',
  'stand_luggag',
  'luggag_froze',
  'froze_spot',
  'spot_felt',
  'felt_cold',
  'cold_wave',
  'wave_wash',
  'wash_fume',
  'fume_insid',
  'insid_husband',
  'husband_hug',
  'hug_quietli',
  'quietli_turn',
  'turn_around',
  'around_start',
  'start_walk',
  'walk_toward',
  'toward_exit',
  'exit_husband',
  'husband_follow',
  'follow_shout',
  'shout_stop',
  'stop_tri',
  'tri_stop',
  'stop_told',
  'told_harshest',
  'harshest_way',
  'way_possibl',
  'possibl_tri',
  'tri_say',
  'say_overreact',
  'overreact_mom',
  'mom_anyway',
  'anyway_let',
  'let_go',
  'go_mess',
  'mess_trip',
  'trip_us',
  'us_told',
  'told_mom',
  'mom_could',
  'could_still',
  'still_go',
  'go_go',
  'go_home',
  'home_went',
  'went_home',
  'home_sob',
  'sob_dog',
  'dog_fur',
  'fur_sever',
  'sever_minut',
  'minut_turn',
  'turn_book',
  'book_ticket',
  'ticket_without',
  'without_know',
  'know_hour',
  'hour_later',
  'later_came',
  'came_home',
  'home_yell',
  'yell_rage',
  'rage_pathet',
  'pathet_spite',
  'spite_walk',
  'walk_go',
  'go_home',
  'home_ruin',
  'ruin_trip',
  'trip_last',
  'last_minut',
  'minut_told',
  'told_caus',
  'caus_happen',
  'happen_said',
  'said_hard',
  'hard_mom',
  'mom_ridicul',
  'ridicul_refus',
  'refus_fight',
  'fight_kept',
  'kept_berat',
  'berat_call',
  'call_famili',
  'famili_tell',
  'tell_trip',
  'trip_cancel',
  'cancel_famili',
  'famili_said',
  'said_ruin',
  'ruin_suck',
  'suck_done',
  'done_best',
  'best_enjoy',
  'enjoy_realli',
  'realli_overreact',
  'best_relationship_husband',
  'relationship_husband_mom',
  'husband_mom_sinc',
  'mom_sinc_day',
  'sinc_day_one',
  'day_one_tri',
  'one_tri_make',
  'tri_make_remark',
  'make_remark_compar',
  'remark_compar_tri',
  'compar_tri_get',
  'tri_get_good',
  'get_good_side',
  'good_side_start',
  'side_start_overli',
  'start_overli_prais',
  'overli_prais_everyth',
  'prais_everyth_sometim',
  'everyth_sometim_even',
  'sometim_even_copi',
  'even_copi_like',
  'copi_like_one',
  'like_one_time',
  'one_time_liter',
  'time_liter_dyi',
  'liter_dyi_hair',
  'dyi_hair_purpl',
  'hair_purpl_like',
  'purpl_like_mine',
  'like_mine_everyon',
  'mine_everyon_point',
  'everyon_point_ridicul',
  'point_ridicul_look',
  'ridicul_look_actual',
  'look_actual_blame',
  'actual_blame_accus',
  'blame_accus_tri',
  'accus_tri_make',
  'tri_make_joke',
  'make_joke_anyway',
  'joke_anyway_husband',
  'anyway_husband_took',
  'husband_took_week',
  'took_week_work',
  'week_work_go',
  'work_go_visit',
  'go_visit_place',
  'visit_place_countri',
  'place_countri_-',
  'countri_-_tourism',
  '-_tourism_word',
  'tourism_word_thing',
  'word_thing_one',
  'thing_one_save',
  'one_save_arrang',
  'save_arrang_trip',
  'arrang_trip_husband',
  'trip_husband_respons',
  'husband_respons_book',
  'respons_book_ticket',
  'book_ticket_husband',
  'ticket_husband_mom',
  'husband_mom_want',
  'mom_want_come',
  'want_come_along',
  'come_along_threw',
  'along_threw_temper',
  'threw_temper_tantrum',
  'temper_tantrum_said',
  'tantrum_said_call',
  'said_call_text',
  'call_text_sent',
  'text_sent_peopl',
  'sent_peopl_talk',
  'peopl_talk_let',
  'talk_let_come',
  'let_come_even',
  'come_even_threaten',
  'even_threaten_call',
  'threaten_call_polic',
  'call_polic_make',
  'polic_make_complaint',
  'make_complaint_get',
  'complaint_get_us',
  'get_us_stay',
  'us_stay_cant',
  'stay_cant_come',
  'cant_come_husband',
  'come_husband_said',
  'husband_said_take',
  'said_take_told',
  'take_told_wrong',
  'told_wrong_tell',
  'wrong_tell_trip',
  'tell_trip_first',
  'trip_first_place',
  'first_place_gave',
  'place_gave_ultimatim',
  'gave_ultimatim_said',
  'ultimatim_said_go',
  'said_go_cant',
  'go_cant_come',
  'cant_come_told',
  'come_told_id',
  'told_id_gladli',
  'id_gladli_call',
  'gladli_call_bluff',
  'call_bluff_made',
  'bluff_made_take',
  'made_take_word',
  'take_word_back',
  'word_back_say',
  'back_say_fine',
  'say_fine_tell',
  'fine_tell_stop',
  'tell_stop_take',
  'stop_take_thing',
  'take_thing_got',
  'thing_got_quieter',
  'got_quieter_suspeci',
  'quieter_suspeci_quieter',
  'suspeci_quieter_day',
  'quieter_day_trip',
  'day_trip_came',
  'trip_came_got',
  'came_got_airport',
  'got_airport_pm',
  'airport_pm_husband',
  'pm_husband_walk',
  'husband_walk_ahead',
  'walk_ahead_look',
  'ahead_look_left',
  'look_left_right',
  'left_right_like',
  'right_like_look',
  'like_look_someon',
  'look_someon_ask',
  'someon_ask_respond',
  'ask_respond_lead',
  'respond_lead_wait',
  'lead_wait_area',
  'wait_area_first',
  'area_first_thing',
  'first_thing_saw',
  'thing_saw_mom',
  'saw_mom_stand',
  'mom_stand_luggag',
  'stand_luggag_froze',
  'luggag_froze_spot',
  'froze_spot_felt',
  'spot_felt_cold',
  'felt_cold_wave',
  'cold_wave_wash',
  'wave_wash_fume',
  'wash_fume_insid',
  'fume_insid_husband',
  'insid_husband_hug',
  'husband_hug_quietli',
  'hug_quietli_turn',
  'quietli_turn_around',
  'turn_around_start',
  'around_start_walk',
  'start_walk_toward',
  'walk_toward_exit',
  'toward_exit_husband',
  'exit_husband_follow',
  'husband_follow_shout',
  'follow_shout_stop',
  'shout_stop_tri',
  'stop_tri_stop',
  'tri_stop_told',
  'stop_told_harshest',
  'told_harshest_way',
  'harshest_way_possibl',
  'way_possibl_tri',
  'possibl_tri_say',
  'tri_say_overreact',
  'say_overreact_mom',
  'overreact_mom_anyway',
  'mom_anyway_let',
  'anyway_let_go',
  'let_go_mess',
  'go_mess_trip',
  'mess_trip_us',
  'trip_us_told',
  'us_told_mom',
  'told_mom_could',
  'mom_could_still',
  'could_still_go',
  'still_go_go',
  'go_go_home',
  'go_home_went',
  'home_went_home',
  'went_home_sob',
  'home_sob_dog',
  'sob_dog_fur',
  'dog_fur_sever',
  'fur_sever_minut',
  'sever_minut_turn',
  'minut_turn_book',
  'turn_book_ticket',
  'book_ticket_without',
  'ticket_without_know',
  'without_know_hour',
  'know_hour_later',
  'hour_later_came',
  'later_came_home',
  'came_home_yell',
  'home_yell_rage',
  'yell_rage_pathet',
  'rage_pathet_spite',
  'pathet_spite_walk',
  'spite_walk_go',
  'walk_go_home',
  'go_home_ruin',
  'home_ruin_trip',
  'ruin_trip_last',
  'trip_last_minut',
  'last_minut_told',
  'minut_told_caus',
  'told_caus_happen',
  'caus_happen_said',
  'happen_said_hard',
  'said_hard_mom',
  'hard_mom_ridicul',
  'mom_ridicul_refus',
  'ridicul_refus_fight',
  'refus_fight_kept',
  'fight_kept_berat',
  'kept_berat_call',
  'berat_call_famili',
  'call_famili_tell',
  'famili_tell_trip',
  'tell_trip_cancel',
  'trip_cancel_famili',
  'cancel_famili_said',
  'famili_said_ruin',
  'said_ruin_suck',
  'ruin_suck_done',
  'suck_done_best',
  'done_best_enjoy',
  'best_enjoy_realli',
  'enjoy_realli_overreact'],
 ['boyfriend',
  'apart',
  'weekend',
  'cook',
  'dinner',
  'studi',
  'exam',
  'made',
  'pasta',
  'chunki',
  'sauc',
  'meatbal',
  'veggi',
  'told',
  'dinner',
  'readi',
  'goe',
  'dinner',
  'tonight',
  '*',
  'tch',
  'like',
  'lot',
  'emphasi',
  'last',
  'word',
  'fed',
  'id',
  'pretti',
  'rough',
  'day',
  'work',
  'aw',
  'bad',
  'associ',
  'word',
  'use',
  'peopl',
  'life',
  'pretti',
  'abus',
  'irrit',
  'drop',
  'pot',
  'pasta',
  'sauc',
  'id',
  'carri',
  'right',
  'ground',
  'like',
  'well',
  'noth',
  'dinner',
  'tonight',
  'better',
  'hear',
  'use',
  'word',
  'girl',
  'freak',
  'sauc',
  'land',
  'rug',
  'even',
  'said',
  'serious',
  'act',
  'like',
  'bitch',
  'right',
  'dunno',
  'els',
  'call',
  'walk',
  'got',
  'takeout',
  'went',
  'friend',
  'hous',
  'thought',
  'funni',
  'boyfriend',
  'furiou',
  'kept',
  'text',
  'call',
  'send',
  'voic',
  'memo',
  'tri',
  'explain',
  'say',
  'dinner',
  'tonight',
  '*',
  'tch',
  'tiktok',
  'trend',
  'quot',
  'someth',
  'joke',
  'put',
  'tiktok',
  'thought',
  'shittiest',
  'excus',
  'ever',
  'matter',
  'saw',
  'joke',
  'stole',
  'joke',
  'still',
  'disrespect',
  'chang',
  'fact',
  'thought',
  'shit',
  'funni',
  'demean',
  'tri',
  'favor',
  'like',
  'hell',
  'came',
  'studi',
  'make',
  'home',
  'cook',
  'dinner',
  'decid',
  'time',
  'joke',
  'put',
  'phone',
  'disturb',
  'night',
  'split',
  'bottl',
  'wine',
  'friend',
  'roommat',
  'next',
  'morn',
  'send',
  'angri',
  'text',
  'demand',
  'clean',
  'rug',
  'busi',
  'exam',
  'shock',
  'left',
  'overnight',
  'disgust',
  'text',
  'back',
  'say',
  'yeah',
  '*',
  'tch',
  'tax',
  'honey',
  'leav',
  'alon',
  'till',
  'readi',
  'handl',
  'cook',
  'clean',
  '*',
  'tch',
  'anymor',
  'also',
  'vile',
  'left',
  'soak',
  'night',
  'call',
  'told',
  'okay',
  'household',
  'work',
  'throw',
  'full',
  'pot',
  'sauc',
  'ground',
  'clean',
  'told',
  'yeah',
  'im',
  'comfort',
  'chore',
  'see',
  'like',
  '*',
  'tch',
  'told',
  'trend',
  'got',
  'piss',
  'play',
  'tiktok',
  'trend',
  'bs',
  'excus',
  'told',
  'well',
  'im',
  'start',
  'trend',
  'call',
  'sauc',
  'littl',
  'joke',
  'peopl',
  'throw',
  'pasta',
  'sauc',
  'around',
  'cant',
  'mad',
  'littl',
  'trend',
  'littl',
  'jokey',
  'joke',
  'littl',
  'prank',
  'bro',
  'got',
  'realli',
  'piss',
  'hung',
  'im',
  'serious',
  'wonder',
  'dumb',
  'fuck',
  'tiktok',
  'joke',
  'gon',
  'na',
  'end',
  'thing',
  'us',
  'aita',
  'react',
  'boyfriend',
  'ask',
  'dinner',
  'tonight',
  '*',
  'tch',
  'edit',
  'address',
  'comment',
  'ive',
  'gotten',
  'lot',
  'time',
  'repli',
  'everi',
  'time',
  '>',
  'tell',
  'call',
  'bitch',
  'like',
  'would',
  'know',
  'otherwis',
  'honestli',
  'someon',
  'gotten',
  'age',
  'realiz',
  'women',
  'whole',
  'like',
  'demean',
  'slur',
  'use',
  'theyr',
  'beyond',
  'help',
  'someth',
  'need',
  'told',
  'go',
  'life',
  'like',
  'hey',
  'man',
  'case',
  'think',
  'might',
  'like',
  'demean',
  'slur',
  'gender',
  'use',
  'actual',
  'comment',
  'someth',
  'like',
  'let',
  'tell',
  'uncertain',
  'term',
  'women',
  'like',
  'call',
  'bitch',
  'men',
  'call',
  'women',
  'bitch',
  'need',
  'told',
  'unkind',
  'consid',
  'offici',
  'told',
  'excus',
  'understand',
  'boyfriend_apart',
  'apart_weekend',
  'weekend_cook',
  'cook_dinner',
  'dinner_studi',
  'studi_exam',
  'exam_made',
  'made_pasta',
  'pasta_chunki',
  'chunki_sauc',
  'sauc_meatbal',
  'meatbal_veggi',
  'veggi_told',
  'told_dinner',
  'dinner_readi',
  'readi_goe',
  'goe_dinner',
  'dinner_tonight',
  'tonight_*',
  '*_tch',
  'tch_like',
  'like_lot',
  'lot_emphasi',
  'emphasi_last',
  'last_word',
  'word_fed',
  'fed_id',
  'id_pretti',
  'pretti_rough',
  'rough_day',
  'day_work',
  'work_aw',
  'aw_bad',
  'bad_associ',
  'associ_word',
  'word_use',
  'use_peopl',
  'peopl_life',
  'life_pretti',
  'pretti_abus',
  'abus_irrit',
  'irrit_drop',
  'drop_pot',
  'pot_pasta',
  'pasta_sauc',
  'sauc_id',
  'id_carri',
  'carri_right',
  'right_ground',
  'ground_like',
  'like_well',
  'well_noth',
  'noth_dinner',
  'dinner_tonight',
  'tonight_better',
  'better_hear',
  'hear_use',
  'use_word',
  'word_girl',
  'girl_freak',
  'freak_sauc',
  'sauc_land',
  'land_rug',
  'rug_even',
  'even_said',
  'said_serious',
  'serious_act',
  'act_like',
  'like_bitch',
  'bitch_right',
  'right_dunno',
  'dunno_els',
  'els_call',
  'call_walk',
  'walk_got',
  'got_takeout',
  'takeout_went',
  'went_friend',
  'friend_hous',
  'hous_thought',
  'thought_funni',
  'funni_boyfriend',
  'boyfriend_furiou',
  'furiou_kept',
  'kept_text',
  'text_call',
  'call_send',
  'send_voic',
  'voic_memo',
  'memo_tri',
  'tri_explain',
  'explain_say',
  'say_dinner',
  'dinner_tonight',
  'tonight_*',
  '*_tch',
  'tch_tiktok',
  'tiktok_trend',
  'trend_quot',
  'quot_someth',
  'someth_joke',
  'joke_put',
  'put_tiktok',
  'tiktok_thought',
  'thought_shittiest',
  'shittiest_excus',
  'excus_ever',
  'ever_matter',
  'matter_saw',
  'saw_joke',
  'joke_stole',
  'stole_joke',
  'joke_still',
  'still_disrespect',
  'disrespect_chang',
  'chang_fact',
  'fact_thought',
  'thought_shit',
  'shit_funni',
  'funni_demean',
  'demean_tri',
  'tri_favor',
  'favor_like',
  'like_hell',
  'hell_came',
  'came_studi',
  'studi_make',
  'make_home',
  'home_cook',
  'cook_dinner',
  'dinner_decid',
  'decid_time',
  'time_joke',
  'joke_put',
  'put_phone',
  'phone_disturb',
  'disturb_night',
  'night_split',
  'split_bottl',
  'bottl_wine',
  'wine_friend',
  'friend_roommat',
  'roommat_next',
  'next_morn',
  'morn_send',
  'send_angri',
  'angri_text',
  'text_demand',
  'demand_clean',
  'clean_rug',
  'rug_busi',
  'busi_exam',
  'exam_shock',
  'shock_left',
  'left_overnight',
  'overnight_disgust',
  'disgust_text',
  'text_back',
  'back_say',
  'say_yeah',
  'yeah_*',
  '*_tch',
  'tch_tax',
  'tax_honey',
  'honey_leav',
  'leav_alon',
  'alon_till',
  'till_readi',
  'readi_handl',
  'handl_cook',
  'cook_clean',
  'clean_*',
  '*_tch',
  'tch_anymor',
  'anymor_also',
  'also_vile',
  'vile_left',
  'left_soak',
  'soak_night',
  'night_call',
  'call_told',
  'told_okay',
  'okay_household',
  'household_work',
  'work_throw',
  'throw_full',
  'full_pot',
  'pot_sauc',
  'sauc_ground',
  'ground_clean',
  'clean_told',
  'told_yeah',
  'yeah_im',
  'im_comfort',
  'comfort_chore',
  'chore_see',
  'see_like',
  'like_*',
  '*_tch',
  'tch_told',
  'told_trend',
  'trend_got',
  'got_piss',
  'piss_play',
  'play_tiktok',
  'tiktok_trend',
  'trend_bs',
  'bs_excus',
  'excus_told',
  'told_well',
  'well_im',
  'im_start',
  'start_trend',
  'trend_call',
  'call_sauc',
  'sauc_littl',
  'littl_joke',
  'joke_peopl',
  'peopl_throw',
  'throw_pasta',
  'pasta_sauc',
  'sauc_around',
  'around_cant',
  'cant_mad',
  'mad_littl',
  'littl_trend',
  'trend_littl',
  'littl_jokey',
  'jokey_joke',
  'joke_littl',
  'littl_prank',
  'prank_bro',
  'bro_got',
  'got_realli',
  'realli_piss',
  'piss_hung',
  'hung_im',
  'im_serious',
  'serious_wonder',
  'wonder_dumb',
  'dumb_fuck',
  'fuck_tiktok',
  'tiktok_joke',
  'joke_gon',
  'gon_na',
  'na_end',
  'end_thing',
  'thing_us',
  'us_aita',
  'aita_react',
  'react_boyfriend',
  'boyfriend_ask',
  'ask_dinner',
  'dinner_tonight',
  'tonight_*',
  '*_tch',
  'tch_edit',
  'edit_address',
  'address_comment',
  'comment_ive',
  'ive_gotten',
  'gotten_lot',
  'lot_time',
  'time_repli',
  'repli_everi',
  'everi_time',
  'time_>',
  '>_tell',
  'tell_call',
  'call_bitch',
  'bitch_like',
  'like_would',
  'would_know',
  'know_otherwis',
  'otherwis_honestli',
  'honestli_someon',
  'someon_gotten',
  'gotten_age',
  'age_realiz',
  'realiz_women',
  'women_whole',
  'whole_like',
  'like_demean',
  'demean_slur',
  'slur_use',
  'use_theyr',
  'theyr_beyond',
  'beyond_help',
  'help_someth',
  'someth_need',
  'need_told',
  'told_go',
  'go_life',
  'life_like',
  'like_hey',
  'hey_man',
  'man_case',
  'case_think',
  'think_might',
  'might_like',
  'like_demean',
  'demean_slur',
  'slur_gender',
  'gender_use',
  'use_actual',
  'actual_comment',
  'comment_someth',
  'someth_like',
  'like_let',
  'let_tell',
  'tell_uncertain',
  'uncertain_term',
  'term_women',
  'women_like',
  'like_call',
  'call_bitch',
  'bitch_men',
  'men_call',
  'call_women',
  'women_bitch',
  'bitch_need',
  'need_told',
  'told_unkind',
  'unkind_consid',
  'consid_offici',
  'offici_told',
  'told_excus',
  'excus_understand',
  'boyfriend_apart_weekend',
  'apart_weekend_cook',
  'weekend_cook_dinner',
  'cook_dinner_studi',
  'dinner_studi_exam',
  'studi_exam_made',
  'exam_made_pasta',
  'made_pasta_chunki',
  'pasta_chunki_sauc',
  'chunki_sauc_meatbal',
  'sauc_meatbal_veggi',
  'meatbal_veggi_told',
  'veggi_told_dinner',
  'told_dinner_readi',
  'dinner_readi_goe',
  'readi_goe_dinner',
  'goe_dinner_tonight',
  'dinner_tonight_*',
  'tonight_*_tch',
  '*_tch_like',
  'tch_like_lot',
  'like_lot_emphasi',
  'lot_emphasi_last',
  'emphasi_last_word',
  'last_word_fed',
  'word_fed_id',
  'fed_id_pretti',
  'id_pretti_rough',
  'pretti_rough_day',
  'rough_day_work',
  'day_work_aw',
  'work_aw_bad',
  'aw_bad_associ',
  'bad_associ_word',
  'associ_word_use',
  'word_use_peopl',
  'use_peopl_life',
  'peopl_life_pretti',
  'life_pretti_abus',
  'pretti_abus_irrit',
  'abus_irrit_drop',
  'irrit_drop_pot',
  'drop_pot_pasta',
  'pot_pasta_sauc',
  'pasta_sauc_id',
  'sauc_id_carri',
  'id_carri_right',
  'carri_right_ground',
  'right_ground_like',
  'ground_like_well',
  'like_well_noth',
  'well_noth_dinner',
  'noth_dinner_tonight',
  'dinner_tonight_better',
  'tonight_better_hear',
  'better_hear_use',
  'hear_use_word',
  'use_word_girl',
  'word_girl_freak',
  'girl_freak_sauc',
  'freak_sauc_land',
  'sauc_land_rug',
  'land_rug_even',
  'rug_even_said',
  'even_said_serious',
  'said_serious_act',
  'serious_act_like',
  'act_like_bitch',
  'like_bitch_right',
  'bitch_right_dunno',
  'right_dunno_els',
  'dunno_els_call',
  'els_call_walk',
  'call_walk_got',
  'walk_got_takeout',
  'got_takeout_went',
  'takeout_went_friend',
  'went_friend_hous',
  'friend_hous_thought',
  'hous_thought_funni',
  'thought_funni_boyfriend',
  'funni_boyfriend_furiou',
  'boyfriend_furiou_kept',
  'furiou_kept_text',
  'kept_text_call',
  'text_call_send',
  'call_send_voic',
  'send_voic_memo',
  'voic_memo_tri',
  'memo_tri_explain',
  'tri_explain_say',
  'explain_say_dinner',
  'say_dinner_tonight',
  'dinner_tonight_*',
  'tonight_*_tch',
  '*_tch_tiktok',
  'tch_tiktok_trend',
  'tiktok_trend_quot',
  'trend_quot_someth',
  'quot_someth_joke',
  'someth_joke_put',
  'joke_put_tiktok',
  'put_tiktok_thought',
  'tiktok_thought_shittiest',
  'thought_shittiest_excus',
  'shittiest_excus_ever',
  'excus_ever_matter',
  'ever_matter_saw',
  'matter_saw_joke',
  'saw_joke_stole',
  'joke_stole_joke',
  'stole_joke_still',
  'joke_still_disrespect',
  'still_disrespect_chang',
  'disrespect_chang_fact',
  'chang_fact_thought',
  'fact_thought_shit',
  'thought_shit_funni',
  'shit_funni_demean',
  'funni_demean_tri',
  'demean_tri_favor',
  'tri_favor_like',
  'favor_like_hell',
  'like_hell_came',
  'hell_came_studi',
  'came_studi_make',
  'studi_make_home',
  'make_home_cook',
  'home_cook_dinner',
  'cook_dinner_decid',
  'dinner_decid_time',
  'decid_time_joke',
  'time_joke_put',
  'joke_put_phone',
  'put_phone_disturb',
  'phone_disturb_night',
  'disturb_night_split',
  'night_split_bottl',
  'split_bottl_wine',
  'bottl_wine_friend',
  'wine_friend_roommat',
  'friend_roommat_next',
  'roommat_next_morn',
  'next_morn_send',
  'morn_send_angri',
  'send_angri_text',
  'angri_text_demand',
  'text_demand_clean',
  'demand_clean_rug',
  'clean_rug_busi',
  'rug_busi_exam',
  'busi_exam_shock',
  'exam_shock_left',
  'shock_left_overnight',
  'left_overnight_disgust',
  'overnight_disgust_text',
  'disgust_text_back',
  'text_back_say',
  'back_say_yeah',
  'say_yeah_*',
  'yeah_*_tch',
  '*_tch_tax',
  'tch_tax_honey',
  'tax_honey_leav',
  'honey_leav_alon',
  'leav_alon_till',
  'alon_till_readi',
  'till_readi_handl',
  'readi_handl_cook',
  'handl_cook_clean',
  'cook_clean_*',
  'clean_*_tch',
  '*_tch_anymor',
  'tch_anymor_also',
  'anymor_also_vile',
  'also_vile_left',
  'vile_left_soak',
  'left_soak_night',
  'soak_night_call',
  'night_call_told',
  'call_told_okay',
  'told_okay_household',
  'okay_household_work',
  'household_work_throw',
  'work_throw_full',
  'throw_full_pot',
  'full_pot_sauc',
  'pot_sauc_ground',
  'sauc_ground_clean',
  'ground_clean_told',
  'clean_told_yeah',
  'told_yeah_im',
  'yeah_im_comfort',
  'im_comfort_chore',
  'comfort_chore_see',
  'chore_see_like',
  'see_like_*',
  'like_*_tch',
  '*_tch_told',
  'tch_told_trend',
  'told_trend_got',
  'trend_got_piss',
  'got_piss_play',
  'piss_play_tiktok',
  'play_tiktok_trend',
  'tiktok_trend_bs',
  'trend_bs_excus',
  'bs_excus_told',
  'excus_told_well',
  'told_well_im',
  'well_im_start',
  'im_start_trend',
  'start_trend_call',
  'trend_call_sauc',
  'call_sauc_littl',
  'sauc_littl_joke',
  'littl_joke_peopl',
  'joke_peopl_throw',
  'peopl_throw_pasta',
  'throw_pasta_sauc',
  'pasta_sauc_around',
  'sauc_around_cant',
  'around_cant_mad',
  'cant_mad_littl',
  'mad_littl_trend',
  'littl_trend_littl',
  'trend_littl_jokey',
  'littl_jokey_joke',
  'jokey_joke_littl',
  'joke_littl_prank',
  'littl_prank_bro',
  'prank_bro_got',
  'bro_got_realli',
  'got_realli_piss',
  'realli_piss_hung',
  'piss_hung_im',
  'hung_im_serious',
  'im_serious_wonder',
  'serious_wonder_dumb',
  'wonder_dumb_fuck',
  'dumb_fuck_tiktok',
  'fuck_tiktok_joke',
  'tiktok_joke_gon',
  'joke_gon_na',
  'gon_na_end',
  'na_end_thing',
  'end_thing_us',
  'thing_us_aita',
  'us_aita_react',
  'aita_react_boyfriend',
  'react_boyfriend_ask',
  'boyfriend_ask_dinner',
  'ask_dinner_tonight',
  'dinner_tonight_*',
  'tonight_*_tch',
  '*_tch_edit',
  'tch_edit_address',
  'edit_address_comment',
  'address_comment_ive',
  'comment_ive_gotten',
  'ive_gotten_lot',
  'gotten_lot_time',
  'lot_time_repli',
  'time_repli_everi',
  'repli_everi_time',
  'everi_time_>',
  'time_>_tell',
  '>_tell_call',
  'tell_call_bitch',
  'call_bitch_like',
  'bitch_like_would',
  'like_would_know',
  'would_know_otherwis',
  'know_otherwis_honestli',
  'otherwis_honestli_someon',
  'honestli_someon_gotten',
  'someon_gotten_age',
  'gotten_age_realiz',
  'age_realiz_women',
  'realiz_women_whole',
  'women_whole_like',
  'whole_like_demean',
  'like_demean_slur',
  'demean_slur_use',
  'slur_use_theyr',
  'use_theyr_beyond',
  'theyr_beyond_help',
  'beyond_help_someth',
  'help_someth_need',
  'someth_need_told',
  'need_told_go',
  'told_go_life',
  'go_life_like',
  'life_like_hey',
  'like_hey_man',
  'hey_man_case',
  'man_case_think',
  'case_think_might',
  'think_might_like',
  'might_like_demean',
  'like_demean_slur',
  'demean_slur_gender',
  'slur_gender_use',
  'gender_use_actual',
  'use_actual_comment',
  'actual_comment_someth',
  'comment_someth_like',
  'someth_like_let',
  'like_let_tell',
  'let_tell_uncertain',
  'tell_uncertain_term',
  'uncertain_term_women',
  'term_women_like',
  'women_like_call',
  'like_call_bitch',
  'call_bitch_men',
  'bitch_men_call',
  'men_call_women',
  'call_women_bitch',
  'women_bitch_need',
  'bitch_need_told',
  'need_told_unkind',
  'told_unkind_consid',
  'unkind_consid_offici',
  'consid_offici_told',
  'offici_told_excus',
  'told_excus_understand'],
 ['im',
  'yro',
  'singl',
  'father',
  'three',
  'theur',
  'mom',
  'die',
  'year',
  'ago',
  'son',
  'yro',
  'andrew',
  'yro',
  'connor',
  'yro',
  'max',
  'connor',
  'born',
  'femal',
  'tran',
  'came',
  'tran',
  'year',
  'ago',
  'social',
  'transit',
  'yet',
  'phisic',
  'sister',
  'got',
  'marri',
  'son',
  'also',
  'invit',
  'famili',
  'known',
  'connor',
  'tran',
  'year',
  'adjust',
  'well',
  'much',
  'sister',
  'pretti',
  'indiffer',
  'wed',
  'realli',
  'super',
  'well',
  'organis',
  'last',
  'detail',
  'want',
  'men',
  'wear',
  'shirt+ti',
  'women',
  'sundress',
  'textednh',
  'pictur',
  'outfit',
  'day',
  'wed',
  'said',
  'nia',
  'dress',
  'bit',
  'surpris',
  'told',
  'deadnam',
  'son',
  'hell',
  'wear',
  'shirt',
  'tie',
  'like',
  'rest',
  'men',
  'come',
  'said',
  'fine',
  'recept',
  'sister',
  'got',
  'mad',
  'connor',
  'wear',
  'tie',
  'say',
  'much',
  'sat',
  'tabl',
  'card',
  'nia',
  'went',
  'sister',
  'said',
  'use',
  'real',
  'name',
  'told',
  'boy',
  'leav',
  'told',
  'dare',
  'caus',
  'scene',
  'wed',
  'nia',
  'guy',
  'day',
  'call',
  'bigot',
  'left',
  'famili',
  'say',
  'ruin',
  'wed',
  'im_yro',
  'yro_singl',
  'singl_father',
  'father_three',
  'three_theur',
  'theur_mom',
  'mom_die',
  'die_year',
  'year_ago',
  'ago_son',
  'son_yro',
  'yro_andrew',
  'andrew_yro',
  'yro_connor',
  'connor_yro',
  'yro_max',
  'max_connor',
  'connor_born',
  'born_femal',
  'femal_tran',
  'tran_came',
  'came_tran',
  'tran_year',
  'year_ago',
  'ago_social',
  'social_transit',
  'transit_yet',
  'yet_phisic',
  'phisic_sister',
  'sister_got',
  'got_marri',
  'marri_son',
  'son_also',
  'also_invit',
  'invit_famili',
  'famili_known',
  'known_connor',
  'connor_tran',
  'tran_year',
  'year_adjust',
  'adjust_well',
  'well_much',
  'much_sister',
  'sister_pretti',
  'pretti_indiffer',
  'indiffer_wed',
  'wed_realli',
  'realli_super',
  'super_well',
  'well_organis',
  'organis_last',
  'last_detail',
  'detail_want',
  'want_men',
  'men_wear',
  'wear_shirt+ti',
  'shirt+ti_women',
  'women_sundress',
  'sundress_textednh',
  'textednh_pictur',
  'pictur_outfit',
  'outfit_day',
  'day_wed',
  'wed_said',
  'said_nia',
  'nia_dress',
  'dress_bit',
  'bit_surpris',
  'surpris_told',
  'told_deadnam',
  'deadnam_son',
  'son_hell',
  'hell_wear',
  'wear_shirt',
  'shirt_tie',
  'tie_like',
  'like_rest',
  'rest_men',
  'men_come',
  'come_said',
  'said_fine',
  'fine_recept',
  'recept_sister',
  'sister_got',
  'got_mad',
  'mad_connor',
  'connor_wear',
  'wear_tie',
  'tie_say',
  'say_much',
  'much_sat',
  'sat_tabl',
  'tabl_card',
  'card_nia',
  'nia_went',
  'went_sister',
  'sister_said',
  'said_use',
  'use_real',
  'real_name',
  'name_told',
  'told_boy',
  'boy_leav',
  'leav_told',
  'told_dare',
  'dare_caus',
  'caus_scene',
  'scene_wed',
  'wed_nia',
  'nia_guy',
  'guy_day',
  'day_call',
  'call_bigot',
  'bigot_left',
  'left_famili',
  'famili_say',
  'say_ruin',
  'ruin_wed',
  'im_yro_singl',
  'yro_singl_father',
  'singl_father_three',
  'father_three_theur',
  'three_theur_mom',
  'theur_mom_die',
  'mom_die_year',
  'die_year_ago',
  'year_ago_son',
  'ago_son_yro',
  'son_yro_andrew',
  'yro_andrew_yro',
  'andrew_yro_connor',
  'yro_connor_yro',
  'connor_yro_max',
  'yro_max_connor',
  'max_connor_born',
  'connor_born_femal',
  'born_femal_tran',
  'femal_tran_came',
  'tran_came_tran',
  'came_tran_year',
  'tran_year_ago',
  'year_ago_social',
  'ago_social_transit',
  'social_transit_yet',
  'transit_yet_phisic',
  'yet_phisic_sister',
  'phisic_sister_got',
  'sister_got_marri',
  'got_marri_son',
  'marri_son_also',
  'son_also_invit',
  'also_invit_famili',
  'invit_famili_known',
  'famili_known_connor',
  'known_connor_tran',
  'connor_tran_year',
  'tran_year_adjust',
  'year_adjust_well',
  'adjust_well_much',
  'well_much_sister',
  'much_sister_pretti',
  'sister_pretti_indiffer',
  'pretti_indiffer_wed',
  'indiffer_wed_realli',
  'wed_realli_super',
  'realli_super_well',
  'super_well_organis',
  'well_organis_last',
  'organis_last_detail',
  'last_detail_want',
  'detail_want_men',
  'want_men_wear',
  'men_wear_shirt+ti',
  'wear_shirt+ti_women',
  'shirt+ti_women_sundress',
  'women_sundress_textednh',
  'sundress_textednh_pictur',
  'textednh_pictur_outfit',
  'pictur_outfit_day',
  'outfit_day_wed',
  'day_wed_said',
  'wed_said_nia',
  'said_nia_dress',
  'nia_dress_bit',
  'dress_bit_surpris',
  'bit_surpris_told',
  'surpris_told_deadnam',
  'told_deadnam_son',
  'deadnam_son_hell',
  'son_hell_wear',
  'hell_wear_shirt',
  'wear_shirt_tie',
  'shirt_tie_like',
  'tie_like_rest',
  'like_rest_men',
  'rest_men_come',
  'men_come_said',
  'come_said_fine',
  'said_fine_recept',
  'fine_recept_sister',
  'recept_sister_got',
  'sister_got_mad',
  'got_mad_connor',
  'mad_connor_wear',
  'connor_wear_tie',
  'wear_tie_say',
  'tie_say_much',
  'say_much_sat',
  'much_sat_tabl',
  'sat_tabl_card',
  'tabl_card_nia',
  'card_nia_went',
  'nia_went_sister',
  'went_sister_said',
  'sister_said_use',
  'said_use_real',
  'use_real_name',
  'real_name_told',
  'name_told_boy',
  'told_boy_leav',
  'boy_leav_told',
  'leav_told_dare',
  'told_dare_caus',
  'dare_caus_scene',
  'caus_scene_wed',
  'scene_wed_nia',
  'wed_nia_guy',
  'nia_guy_day',
  'guy_day_call',
  'day_call_bigot',
  'call_bigot_left',
  'bigot_left_famili',
  'left_famili_say',
  'famili_say_ruin',
  'say_ruin_wed'],
 ['ever',
  'sinc',
  'son',
  'month',
  'ago',
  'husband',
  'start',
  'make',
  'indirect',
  'comment',
  'bodi',
  'never',
  'say',
  'hurt',
  'word',
  'find',
  'observ',
  'call',
  'hurt',
  'exampl',
  'hed',
  'see',
  'wear',
  'old',
  'top',
  'say',
  'oh',
  'top',
  'use',
  'look',
  'good',
  'anymor',
  'though',
  'look',
  'waist',
  'say',
  'wow',
  'know',
  'waist',
  'could',
  'get',
  'wide',
  'basic',
  'passiv',
  'stuff',
  'tri',
  'ignor',
  'til',
  'extend',
  'friend',
  'famili',
  'fyi',
  'went',
  'month',
  'month',
  'month',
  'went',
  'christma',
  'celebr',
  'famili',
  'home',
  'sil',
  'compliment',
  'floral',
  'maxi',
  'dress',
  'husband',
  'said',
  'agre',
  'look',
  'nice',
  'youthough',
  'admit',
  'waist',
  'could',
  'get',
  'smaller',
  'awkward',
  'silenc',
  'took',
  'absolut',
  'fume',
  'last',
  'straw',
  'got',
  'chair',
  'middl',
  'dinner',
  'shout',
  'top',
  'lung',
  'shut',
  'fuck',
  'bodddyyi',
  'absolut',
  'speechless',
  'famili',
  'stare',
  'tri',
  'get',
  'calm',
  'situat',
  'got',
  'tens',
  'dinner',
  'end',
  'cut',
  'short',
  'husband',
  'storm',
  'friend',
  'place',
  'spend',
  'night',
  'upon',
  'leav',
  'nasti',
  'text',
  'say',
  'embarrass',
  'made',
  'scene',
  'observ',
  'made',
  'call',
  'childish',
  'told',
  'get',
  'therapi',
  'insecur',
  'instead',
  'verbal',
  'abus',
  'scare',
  'famili',
  'feel',
  'like',
  'absolut',
  'idiot',
  'asshol',
  'like',
  'ruin',
  'christma',
  'everybodi',
  'sensit',
  'aita',
  'ever_sinc',
  'sinc_son',
  'son_month',
  'month_ago',
  'ago_husband',
  'husband_start',
  'start_make',
  'make_indirect',
  'indirect_comment',
  'comment_bodi',
  'bodi_never',
  'never_say',
  'say_hurt',
  'hurt_word',
  'word_find',
  'find_observ',
  'observ_call',
  'call_hurt',
  'hurt_exampl',
  'exampl_hed',
  'hed_see',
  'see_wear',
  'wear_old',
  'old_top',
  'top_say',
  'say_oh',
  'oh_top',
  'top_use',
  'use_look',
  'look_good',
  'good_anymor',
  'anymor_though',
  'though_look',
  'look_waist',
  'waist_say',
  'say_wow',
  'wow_know',
  'know_waist',
  'waist_could',
  'could_get',
  'get_wide',
  'wide_basic',
  'basic_passiv',
  'passiv_stuff',
  'stuff_tri',
  'tri_ignor',
  'ignor_til',
  'til_extend',
  'extend_friend',
  'friend_famili',
  'famili_fyi',
  'fyi_went',
  'went_month',
  'month_month',
  'month_month',
  'month_went',
  'went_christma',
  'christma_celebr',
  'celebr_famili',
  'famili_home',
  'home_sil',
  'sil_compliment',
  'compliment_floral',
  'floral_maxi',
  'maxi_dress',
  'dress_husband',
  'husband_said',
  'said_agre',
  'agre_look',
  'look_nice',
  'nice_youthough',
  'youthough_admit',
  'admit_waist',
  'waist_could',
  'could_get',
  'get_smaller',
  'smaller_awkward',
  'awkward_silenc',
  'silenc_took',
  'took_absolut',
  'absolut_fume',
  'fume_last',
  'last_straw',
  'straw_got',
  'got_chair',
  'chair_middl',
  'middl_dinner',
  'dinner_shout',
  'shout_top',
  'top_lung',
  'lung_shut',
  'shut_fuck',
  'fuck_bodddyyi',
  'bodddyyi_absolut',
  'absolut_speechless',
  'speechless_famili',
  'famili_stare',
  'stare_tri',
  'tri_get',
  'get_calm',
  'calm_situat',
  'situat_got',
  'got_tens',
  'tens_dinner',
  'dinner_end',
  'end_cut',
  'cut_short',
  'short_husband',
  'husband_storm',
  'storm_friend',
  'friend_place',
  'place_spend',
  'spend_night',
  'night_upon',
  'upon_leav',
  'leav_nasti',
  'nasti_text',
  'text_say',
  'say_embarrass',
  'embarrass_made',
  'made_scene',
  'scene_observ',
  'observ_made',
  'made_call',
  'call_childish',
  'childish_told',
  'told_get',
  'get_therapi',
  'therapi_insecur',
  'insecur_instead',
  'instead_verbal',
  'verbal_abus',
  'abus_scare',
  'scare_famili',
  'famili_feel',
  'feel_like',
  'like_absolut',
  'absolut_idiot',
  'idiot_asshol',
  'asshol_like',
  'like_ruin',
  'ruin_christma',
  'christma_everybodi',
  'everybodi_sensit',
  'sensit_aita',
  'ever_sinc_son',
  'sinc_son_month',
  'son_month_ago',
  'month_ago_husband',
  'ago_husband_start',
  'husband_start_make',
  'start_make_indirect',
  'make_indirect_comment',
  'indirect_comment_bodi',
  'comment_bodi_never',
  'bodi_never_say',
  'never_say_hurt',
  'say_hurt_word',
  'hurt_word_find',
  'word_find_observ',
  'find_observ_call',
  'observ_call_hurt',
  'call_hurt_exampl',
  'hurt_exampl_hed',
  'exampl_hed_see',
  'hed_see_wear',
  'see_wear_old',
  'wear_old_top',
  'old_top_say',
  'top_say_oh',
  'say_oh_top',
  'oh_top_use',
  'top_use_look',
  'use_look_good',
  'look_good_anymor',
  'good_anymor_though',
  'anymor_though_look',
  'though_look_waist',
  'look_waist_say',
  'waist_say_wow',
  'say_wow_know',
  'wow_know_waist',
  'know_waist_could',
  'waist_could_get',
  'could_get_wide',
  'get_wide_basic',
  'wide_basic_passiv',
  'basic_passiv_stuff',
  'passiv_stuff_tri',
  'stuff_tri_ignor',
  'tri_ignor_til',
  'ignor_til_extend',
  'til_extend_friend',
  'extend_friend_famili',
  'friend_famili_fyi',
  'famili_fyi_went',
  'fyi_went_month',
  'went_month_month',
  'month_month_month',
  'month_month_went',
  'month_went_christma',
  'went_christma_celebr',
  'christma_celebr_famili',
  'celebr_famili_home',
  'famili_home_sil',
  'home_sil_compliment',
  'sil_compliment_floral',
  'compliment_floral_maxi',
  'floral_maxi_dress',
  'maxi_dress_husband',
  'dress_husband_said',
  'husband_said_agre',
  'said_agre_look',
  'agre_look_nice',
  'look_nice_youthough',
  'nice_youthough_admit',
  'youthough_admit_waist',
  'admit_waist_could',
  'waist_could_get',
  'could_get_smaller',
  'get_smaller_awkward',
  'smaller_awkward_silenc',
  'awkward_silenc_took',
  'silenc_took_absolut',
  'took_absolut_fume',
  'absolut_fume_last',
  'fume_last_straw',
  'last_straw_got',
  'straw_got_chair',
  'got_chair_middl',
  'chair_middl_dinner',
  'middl_dinner_shout',
  'dinner_shout_top',
  'shout_top_lung',
  'top_lung_shut',
  'lung_shut_fuck',
  'shut_fuck_bodddyyi',
  'fuck_bodddyyi_absolut',
  'bodddyyi_absolut_speechless',
  'absolut_speechless_famili',
  'speechless_famili_stare',
  'famili_stare_tri',
  'stare_tri_get',
  'tri_get_calm',
  'get_calm_situat',
  'calm_situat_got',
  'situat_got_tens',
  'got_tens_dinner',
  'tens_dinner_end',
  'dinner_end_cut',
  'end_cut_short',
  'cut_short_husband',
  'short_husband_storm',
  'husband_storm_friend',
  'storm_friend_place',
  'friend_place_spend',
  'place_spend_night',
  'spend_night_upon',
  'night_upon_leav',
  'upon_leav_nasti',
  'leav_nasti_text',
  'nasti_text_say',
  'text_say_embarrass',
  'say_embarrass_made',
  'embarrass_made_scene',
  'made_scene_observ',
  'scene_observ_made',
  'observ_made_call',
  'made_call_childish',
  'call_childish_told',
  'childish_told_get',
  'told_get_therapi',
  'get_therapi_insecur',
  'therapi_insecur_instead',
  'insecur_instead_verbal',
  'instead_verbal_abus',
  'verbal_abus_scare',
  'abus_scare_famili',
  'scare_famili_feel',
  'famili_feel_like',
  'feel_like_absolut',
  'like_absolut_idiot',
  'absolut_idiot_asshol',
  'idiot_asshol_like',
  'asshol_like_ruin',
  'like_ruin_christma',
  'ruin_christma_everybodi',
  'christma_everybodi_sensit',
  'everybodi_sensit_aita'],
 ['recent',
  'inherit',
  'good',
  'amount',
  'money',
  'mom',
  'keep',
  'money',
  'seper',
  'account',
  'still',
  'decid',
  'want',
  'go',
  'wast',
  'notic',
  'husband',
  'constantli',
  'bring',
  'inherit',
  'money',
  'make',
  'countless',
  'suggest',
  'spend',
  'anoth',
  'thing',
  'expect',
  'pay',
  'nearli',
  'everyth',
  'past',
  'coupl',
  'week',
  'nye',
  'husband',
  'met',
  'famili',
  'restaur',
  'celebr',
  'go',
  'fine',
  'found',
  'expect',
  'pay',
  'everyon',
  'tabl',
  'husband',
  'mom',
  'joke',
  'pay',
  'dinner',
  'inherit',
  'pocket',
  'made',
  'livid',
  'show',
  'reaction',
  'silent',
  'paid',
  'fooddrink',
  'got',
  'made',
  'way',
  'restaur',
  'shout',
  'like',
  'crowd',
  'husband',
  'tri',
  'get',
  'come',
  'back',
  'drove',
  'home',
  'got',
  'back',
  'yele',
  'say',
  'pathet',
  'get',
  'walk',
  'famili',
  '*',
  'reli',
  '*',
  'pay',
  'food',
  'thougt',
  'graciou',
  'enough',
  'wrong',
  'said',
  'humili',
  'famili',
  'attempt',
  'get',
  'back',
  'abl',
  'help',
  'mom',
  'sick',
  'true',
  'im',
  'gon',
  'na',
  'say',
  'mad',
  'say',
  'caus',
  'huge',
  'rift',
  'famili',
  'hurt',
  'pay',
  'celebratori',
  'dinner',
  'aita',
  'recent_inherit',
  'inherit_good',
  'good_amount',
  'amount_money',
  'money_mom',
  'mom_keep',
  'keep_money',
  'money_seper',
  'seper_account',
  'account_still',
  'still_decid',
  'decid_want',
  'want_go',
  'go_wast',
  'wast_notic',
  'notic_husband',
  'husband_constantli',
  'constantli_bring',
  'bring_inherit',
  'inherit_money',
  'money_make',
  'make_countless',
  'countless_suggest',
  'suggest_spend',
  'spend_anoth',
  'anoth_thing',
  'thing_expect',
  'expect_pay',
  'pay_nearli',
  'nearli_everyth',
  'everyth_past',
  'past_coupl',
  'coupl_week',
  'week_nye',
  'nye_husband',
  'husband_met',
  'met_famili',
  'famili_restaur',
  'restaur_celebr',
  'celebr_go',
  'go_fine',
  'fine_found',
  'found_expect',
  'expect_pay',
  'pay_everyon',
  'everyon_tabl',
  'tabl_husband',
  'husband_mom',
  'mom_joke',
  'joke_pay',
  'pay_dinner',
  'dinner_inherit',
  'inherit_pocket',
  'pocket_made',
  'made_livid',
  'livid_show',
  'show_reaction',
  'reaction_silent',
  'silent_paid',
  'paid_fooddrink',
  'fooddrink_got',
  'got_made',
  'made_way',
  'way_restaur',
  'restaur_shout',
  'shout_like',
  'like_crowd',
  'crowd_husband',
  'husband_tri',
  'tri_get',
  'get_come',
  'come_back',
  'back_drove',
  'drove_home',
  'home_got',
  'got_back',
  'back_yele',
  'yele_say',
  'say_pathet',
  'pathet_get',
  'get_walk',
  'walk_famili',
  'famili_*',
  '*_reli',
  'reli_*',
  '*_pay',
  'pay_food',
  'food_thougt',
  'thougt_graciou',
  'graciou_enough',
  'enough_wrong',
  'wrong_said',
  'said_humili',
  'humili_famili',
  'famili_attempt',
  'attempt_get',
  'get_back',
  'back_abl',
  'abl_help',
  'help_mom',
  'mom_sick',
  'sick_true',
  'true_im',
  'im_gon',
  'gon_na',
  'na_say',
  'say_mad',
  'mad_say',
  'say_caus',
  'caus_huge',
  'huge_rift',
  'rift_famili',
  'famili_hurt',
  'hurt_pay',
  'pay_celebratori',
  'celebratori_dinner',
  'dinner_aita',
  'recent_inherit_good',
  'inherit_good_amount',
  'good_amount_money',
  'amount_money_mom',
  'money_mom_keep',
  'mom_keep_money',
  'keep_money_seper',
  'money_seper_account',
  'seper_account_still',
  'account_still_decid',
  'still_decid_want',
  'decid_want_go',
  'want_go_wast',
  'go_wast_notic',
  'wast_notic_husband',
  'notic_husband_constantli',
  'husband_constantli_bring',
  'constantli_bring_inherit',
  'bring_inherit_money',
  'inherit_money_make',
  'money_make_countless',
  'make_countless_suggest',
  'countless_suggest_spend',
  'suggest_spend_anoth',
  'spend_anoth_thing',
  'anoth_thing_expect',
  'thing_expect_pay',
  'expect_pay_nearli',
  'pay_nearli_everyth',
  'nearli_everyth_past',
  'everyth_past_coupl',
  'past_coupl_week',
  'coupl_week_nye',
  'week_nye_husband',
  'nye_husband_met',
  'husband_met_famili',
  'met_famili_restaur',
  'famili_restaur_celebr',
  'restaur_celebr_go',
  'celebr_go_fine',
  'go_fine_found',
  'fine_found_expect',
  'found_expect_pay',
  'expect_pay_everyon',
  'pay_everyon_tabl',
  'everyon_tabl_husband',
  'tabl_husband_mom',
  'husband_mom_joke',
  'mom_joke_pay',
  'joke_pay_dinner',
  'pay_dinner_inherit',
  'dinner_inherit_pocket',
  'inherit_pocket_made',
  'pocket_made_livid',
  'made_livid_show',
  'livid_show_reaction',
  'show_reaction_silent',
  'reaction_silent_paid',
  'silent_paid_fooddrink',
  'paid_fooddrink_got',
  'fooddrink_got_made',
  'got_made_way',
  'made_way_restaur',
  'way_restaur_shout',
  'restaur_shout_like',
  'shout_like_crowd',
  'like_crowd_husband',
  'crowd_husband_tri',
  'husband_tri_get',
  'tri_get_come',
  'get_come_back',
  'come_back_drove',
  'back_drove_home',
  'drove_home_got',
  'home_got_back',
  'got_back_yele',
  'back_yele_say',
  'yele_say_pathet',
  'say_pathet_get',
  'pathet_get_walk',
  'get_walk_famili',
  'walk_famili_*',
  'famili_*_reli',
  '*_reli_*',
  'reli_*_pay',
  '*_pay_food',
  'pay_food_thougt',
  'food_thougt_graciou',
  'thougt_graciou_enough',
  'graciou_enough_wrong',
  'enough_wrong_said',
  'wrong_said_humili',
  'said_humili_famili',
  'humili_famili_attempt',
  'famili_attempt_get',
  'attempt_get_back',
  'get_back_abl',
  'back_abl_help',
  'abl_help_mom',
  'help_mom_sick',
  'mom_sick_true',
  'sick_true_im',
  'true_im_gon',
  'im_gon_na',
  'gon_na_say',
  'na_say_mad',
  'say_mad_say',
  'mad_say_caus',
  'say_caus_huge',
  'caus_huge_rift',
  'huge_rift_famili',
  'rift_famili_hurt',
  'famili_hurt_pay',
  'hurt_pay_celebratori',
  'pay_celebratori_dinner',
  'celebratori_dinner_aita'],
 ['boyfriend',
  'go',
  'er',
  'accid',
  'got',
  'truli',
  'ridicul',
  'bill',
  'back',
  'offer',
  'fight',
  'bill',
  'ive',
  'done',
  'said',
  'sure',
  'went',
  'all-out',
  'honestli',
  'grand',
  'insur',
  'would',
  'fuck',
  'holiday',
  'plan',
  'pretti',
  'bad',
  '-',
  'call',
  'hospit',
  'author',
  'handl',
  'bill',
  'access',
  'medic',
  'record',
  '-',
  'got',
  'item',
  'bill',
  'compar',
  'price',
  'code',
  'fair',
  'price',
  '-',
  'call',
  'bill',
  'disput',
  'bill',
  'told',
  'bill',
  'collect',
  'bill',
  'id',
  'need',
  'contact',
  'admin',
  'disput',
  '-',
  'bounc',
  'around',
  'call',
  'center',
  'hour',
  'tri',
  'get',
  'someon',
  'actual',
  'qualifi',
  'bill',
  'disput',
  'get',
  'nowher',
  '-',
  'googl',
  'linkedin',
  'search',
  'hospit',
  'board',
  'director',
  'upper',
  'manag',
  '-',
  'got',
  'email',
  'influenti',
  'peopl',
  'hospit',
  'plu',
  'hospit',
  'investor',
  '-',
  'everi',
  'day',
  'would',
  'send',
  'email',
  'work',
  'way',
  'chain',
  'write',
  'increasingli',
  'long',
  'email',
  'describ',
  'bill',
  'client',
  'time',
  'fair',
  'price',
  'servic',
  'render',
  'bill',
  'depart',
  'custom',
  'servic',
  'depart',
  'grow',
  'list',
  'manag',
  'id',
  'email',
  'fail',
  'address',
  'issu',
  '-',
  'escal',
  'email',
  'write',
  'director-level',
  'staff',
  'entir',
  'board',
  'director',
  'number',
  'outsid',
  'investor',
  'ccd',
  'ask',
  'written',
  'statement',
  'regard',
  'justif',
  'bill',
  'rate',
  'time',
  'higher',
  'nation',
  'averag',
  'commensur',
  'servic',
  'avail',
  'hospit',
  'sternli',
  'lay',
  'failur',
  'appropri',
  'respond',
  'everi',
  'level',
  'compani',
  'well',
  'id',
  'done',
  'honestli',
  'like',
  'minut',
  'day',
  'reduc',
  'bill',
  '$',
  '$',
  'yep',
  'twenty-six',
  'fuckin',
  'dollar',
  'well',
  'told',
  'boyfriend',
  'good',
  'news',
  'first',
  'overjoy',
  'blown',
  'away',
  'like',
  'liter',
  'jump',
  'hug',
  'say',
  'liter',
  'christma',
  'miracl',
  'ask',
  'said',
  'hard',
  'send',
  'coupl',
  'email',
  'day',
  'curiou',
  'id',
  'said',
  'hand',
  'phone',
  'start',
  'get',
  'stress',
  'flip',
  'back',
  'email',
  'like',
  'told',
  'went',
  'way',
  'far',
  'expect',
  'disput',
  'bill',
  'depart',
  'someth',
  'normal',
  'reason',
  'like',
  'internet',
  'stalk',
  'everi',
  'singl',
  'manag',
  'board',
  'member',
  'investor',
  'harass',
  'drop',
  'bill',
  'frustrat',
  'id',
  'save',
  'us',
  'grand',
  'actual',
  'made',
  'possibl',
  'us',
  'afford',
  'nice',
  'christma',
  'save',
  'money',
  'mad',
  'id',
  'bit',
  'hardass',
  'furiou',
  'also',
  'mad',
  'say',
  'author',
  'disput',
  'bill',
  'basic',
  'threaten',
  'harass',
  'whole',
  'damn',
  'hospit',
  'week',
  'aita',
  'got',
  'boyfriend',
  'medic',
  'bill',
  'drop',
  'boyfriend_go',
  'go_er',
  'er_accid',
  'accid_got',
  'got_truli',
  'truli_ridicul',
  'ridicul_bill',
  'bill_back',
  'back_offer',
  'offer_fight',
  'fight_bill',
  'bill_ive',
  'ive_done',
  'done_said',
  'said_sure',
  'sure_went',
  'went_all-out',
  'all-out_honestli',
  'honestli_grand',
  'grand_insur',
  'insur_would',
  'would_fuck',
  'fuck_holiday',
  'holiday_plan',
  'plan_pretti',
  'pretti_bad',
  'bad_-',
  '-_call',
  'call_hospit',
  'hospit_author',
  'author_handl',
  'handl_bill',
  'bill_access',
  'access_medic',
  'medic_record',
  'record_-',
  '-_got',
  'got_item',
  'item_bill',
  'bill_compar',
  'compar_price',
  'price_code',
  'code_fair',
  'fair_price',
  'price_-',
  '-_call',
  'call_bill',
  'bill_disput',
  'disput_bill',
  'bill_told',
  'told_bill',
  'bill_collect',
  'collect_bill',
  'bill_id',
  'id_need',
  'need_contact',
  'contact_admin',
  'admin_disput',
  'disput_-',
  '-_bounc',
  'bounc_around',
  'around_call',
  'call_center',
  'center_hour',
  'hour_tri',
  'tri_get',
  'get_someon',
  'someon_actual',
  'actual_qualifi',
  'qualifi_bill',
  'bill_disput',
  'disput_get',
  'get_nowher',
  'nowher_-',
  '-_googl',
  'googl_linkedin',
  'linkedin_search',
  'search_hospit',
  'hospit_board',
  'board_director',
  'director_upper',
  'upper_manag',
  'manag_-',
  '-_got',
  'got_email',
  'email_influenti',
  'influenti_peopl',
  'peopl_hospit',
  'hospit_plu',
  'plu_hospit',
  'hospit_investor',
  'investor_-',
  '-_everi',
  'everi_day',
  'day_would',
  'would_send',
  'send_email',
  'email_work',
  'work_way',
  'way_chain',
  'chain_write',
  'write_increasingli',
  'increasingli_long',
  'long_email',
  'email_describ',
  'describ_bill',
  'bill_client',
  'client_time',
  'time_fair',
  'fair_price',
  'price_servic',
  'servic_render',
  'render_bill',
  'bill_depart',
  'depart_custom',
  'custom_servic',
  'servic_depart',
  'depart_grow',
  'grow_list',
  'list_manag',
  'manag_id',
  'id_email',
  'email_fail',
  'fail_address',
  'address_issu',
  'issu_-',
  '-_escal',
  'escal_email',
  'email_write',
  'write_director-level',
  'director-level_staff',
  'staff_entir',
  'entir_board',
  'board_director',
  'director_number',
  'number_outsid',
  'outsid_investor',
  'investor_ccd',
  'ccd_ask',
  'ask_written',
  'written_statement',
  'statement_regard',
  'regard_justif',
  'justif_bill',
  'bill_rate',
  'rate_time',
  'time_higher',
  'higher_nation',
  'nation_averag',
  'averag_commensur',
  'commensur_servic',
  'servic_avail',
  'avail_hospit',
  'hospit_sternli',
  'sternli_lay',
  'lay_failur',
  'failur_appropri',
  'appropri_respond',
  'respond_everi',
  'everi_level',
  'level_compani',
  'compani_well',
  'well_id',
  'id_done',
  'done_honestli',
  'honestli_like',
  'like_minut',
  'minut_day',
  'day_reduc',
  'reduc_bill',
  'bill_$',
  '$_$',
  '$_yep',
  'yep_twenty-six',
  'twenty-six_fuckin',
  'fuckin_dollar',
  'dollar_well',
  'well_told',
  'told_boyfriend',
  'boyfriend_good',
  'good_news',
  'news_first',
  'first_overjoy',
  'overjoy_blown',
  'blown_away',
  'away_like',
  'like_liter',
  'liter_jump',
  'jump_hug',
  'hug_say',
  'say_liter',
  'liter_christma',
  'christma_miracl',
  'miracl_ask',
  'ask_said',
  'said_hard',
  'hard_send',
  'send_coupl',
  'coupl_email',
  'email_day',
  'day_curiou',
  'curiou_id',
  'id_said',
  'said_hand',
  'hand_phone',
  'phone_start',
  'start_get',
  'get_stress',
  'stress_flip',
  'flip_back',
  'back_email',
  'email_like',
  'like_told',
  'told_went',
  'went_way',
  'way_far',
  'far_expect',
  'expect_disput',
  'disput_bill',
  'bill_depart',
  'depart_someth',
  'someth_normal',
  'normal_reason',
  'reason_like',
  'like_internet',
  'internet_stalk',
  'stalk_everi',
  'everi_singl',
  'singl_manag',
  'manag_board',
  'board_member',
  'member_investor',
  'investor_harass',
  'harass_drop',
  'drop_bill',
  'bill_frustrat',
  'frustrat_id',
  'id_save',
  'save_us',
  'us_grand',
  'grand_actual',
  'actual_made',
  'made_possibl',
  'possibl_us',
  'us_afford',
  'afford_nice',
  'nice_christma',
  'christma_save',
  'save_money',
  'money_mad',
  'mad_id',
  'id_bit',
  'bit_hardass',
  'hardass_furiou',
  'furiou_also',
  'also_mad',
  'mad_say',
  'say_author',
  'author_disput',
  'disput_bill',
  'bill_basic',
  'basic_threaten',
  'threaten_harass',
  'harass_whole',
  'whole_damn',
  'damn_hospit',
  'hospit_week',
  'week_aita',
  'aita_got',
  'got_boyfriend',
  'boyfriend_medic',
  'medic_bill',
  'bill_drop',
  'boyfriend_go_er',
  'go_er_accid',
  'er_accid_got',
  'accid_got_truli',
  'got_truli_ridicul',
  'truli_ridicul_bill',
  'ridicul_bill_back',
  'bill_back_offer',
  'back_offer_fight',
  'offer_fight_bill',
  'fight_bill_ive',
  'bill_ive_done',
  'ive_done_said',
  'done_said_sure',
  'said_sure_went',
  'sure_went_all-out',
  'went_all-out_honestli',
  'all-out_honestli_grand',
  'honestli_grand_insur',
  'grand_insur_would',
  'insur_would_fuck',
  'would_fuck_holiday',
  'fuck_holiday_plan',
  'holiday_plan_pretti',
  'plan_pretti_bad',
  'pretti_bad_-',
  'bad_-_call',
  '-_call_hospit',
  'call_hospit_author',
  'hospit_author_handl',
  'author_handl_bill',
  'handl_bill_access',
  'bill_access_medic',
  'access_medic_record',
  'medic_record_-',
  'record_-_got',
  '-_got_item',
  'got_item_bill',
  'item_bill_compar',
  'bill_compar_price',
  'compar_price_code',
  'price_code_fair',
  'code_fair_price',
  'fair_price_-',
  'price_-_call',
  '-_call_bill',
  'call_bill_disput',
  'bill_disput_bill',
  'disput_bill_told',
  'bill_told_bill',
  'told_bill_collect',
  'bill_collect_bill',
  'collect_bill_id',
  'bill_id_need',
  'id_need_contact',
  'need_contact_admin',
  'contact_admin_disput',
  'admin_disput_-',
  'disput_-_bounc',
  '-_bounc_around',
  'bounc_around_call',
  'around_call_center',
  'call_center_hour',
  'center_hour_tri',
  'hour_tri_get',
  'tri_get_someon',
  'get_someon_actual',
  'someon_actual_qualifi',
  'actual_qualifi_bill',
  'qualifi_bill_disput',
  'bill_disput_get',
  'disput_get_nowher',
  'get_nowher_-',
  'nowher_-_googl',
  '-_googl_linkedin',
  'googl_linkedin_search',
  'linkedin_search_hospit',
  'search_hospit_board',
  'hospit_board_director',
  'board_director_upper',
  'director_upper_manag',
  'upper_manag_-',
  'manag_-_got',
  '-_got_email',
  'got_email_influenti',
  'email_influenti_peopl',
  'influenti_peopl_hospit',
  'peopl_hospit_plu',
  'hospit_plu_hospit',
  'plu_hospit_investor',
  'hospit_investor_-',
  'investor_-_everi',
  '-_everi_day',
  'everi_day_would',
  'day_would_send',
  'would_send_email',
  'send_email_work',
  'email_work_way',
  'work_way_chain',
  'way_chain_write',
  'chain_write_increasingli',
  'write_increasingli_long',
  'increasingli_long_email',
  'long_email_describ',
  'email_describ_bill',
  'describ_bill_client',
  'bill_client_time',
  'client_time_fair',
  'time_fair_price',
  'fair_price_servic',
  'price_servic_render',
  'servic_render_bill',
  'render_bill_depart',
  'bill_depart_custom',
  'depart_custom_servic',
  'custom_servic_depart',
  'servic_depart_grow',
  'depart_grow_list',
  'grow_list_manag',
  'list_manag_id',
  'manag_id_email',
  'id_email_fail',
  'email_fail_address',
  'fail_address_issu',
  'address_issu_-',
  'issu_-_escal',
  '-_escal_email',
  'escal_email_write',
  'email_write_director-level',
  'write_director-level_staff',
  'director-level_staff_entir',
  'staff_entir_board',
  'entir_board_director',
  'board_director_number',
  'director_number_outsid',
  'number_outsid_investor',
  'outsid_investor_ccd',
  'investor_ccd_ask',
  'ccd_ask_written',
  'ask_written_statement',
  'written_statement_regard',
  'statement_regard_justif',
  'regard_justif_bill',
  'justif_bill_rate',
  'bill_rate_time',
  'rate_time_higher',
  'time_higher_nation',
  'higher_nation_averag',
  'nation_averag_commensur',
  'averag_commensur_servic',
  'commensur_servic_avail',
  'servic_avail_hospit',
  'avail_hospit_sternli',
  'hospit_sternli_lay',
  'sternli_lay_failur',
  'lay_failur_appropri',
  'failur_appropri_respond',
  'appropri_respond_everi',
  'respond_everi_level',
  'everi_level_compani',
  'level_compani_well',
  'compani_well_id',
  'well_id_done',
  'id_done_honestli',
  'done_honestli_like',
  'honestli_like_minut',
  'like_minut_day',
  'minut_day_reduc',
  'day_reduc_bill',
  'reduc_bill_$',
  'bill_$_$',
  '$_$_yep',
  '$_yep_twenty-six',
  'yep_twenty-six_fuckin',
  'twenty-six_fuckin_dollar',
  'fuckin_dollar_well',
  'dollar_well_told',
  'well_told_boyfriend',
  'told_boyfriend_good',
  'boyfriend_good_news',
  'good_news_first',
  'news_first_overjoy',
  'first_overjoy_blown',
  'overjoy_blown_away',
  'blown_away_like',
  'away_like_liter',
  'like_liter_jump',
  'liter_jump_hug',
  'jump_hug_say',
  'hug_say_liter',
  'say_liter_christma',
  'liter_christma_miracl',
  'christma_miracl_ask',
  'miracl_ask_said',
  'ask_said_hard',
  'said_hard_send',
  'hard_send_coupl',
  'send_coupl_email',
  'coupl_email_day',
  'email_day_curiou',
  'day_curiou_id',
  'curiou_id_said',
  'id_said_hand',
  'said_hand_phone',
  'hand_phone_start',
  'phone_start_get',
  'start_get_stress',
  'get_stress_flip',
  'stress_flip_back',
  'flip_back_email',
  'back_email_like',
  'email_like_told',
  'like_told_went',
  'told_went_way',
  'went_way_far',
  'way_far_expect',
  'far_expect_disput',
  'expect_disput_bill',
  'disput_bill_depart',
  'bill_depart_someth',
  'depart_someth_normal',
  'someth_normal_reason',
  'normal_reason_like',
  'reason_like_internet',
  'like_internet_stalk',
  'internet_stalk_everi',
  'stalk_everi_singl',
  'everi_singl_manag',
  'singl_manag_board',
  'manag_board_member',
  'board_member_investor',
  'member_investor_harass',
  'investor_harass_drop',
  'harass_drop_bill',
  'drop_bill_frustrat',
  'bill_frustrat_id',
  'frustrat_id_save',
  'id_save_us',
  'save_us_grand',
  'us_grand_actual',
  'grand_actual_made',
  'actual_made_possibl',
  'made_possibl_us',
  'possibl_us_afford',
  'us_afford_nice',
  'afford_nice_christma',
  'nice_christma_save',
  'christma_save_money',
  'save_money_mad',
  'money_mad_id',
  'mad_id_bit',
  'id_bit_hardass',
  'bit_hardass_furiou',
  'hardass_furiou_also',
  'furiou_also_mad',
  'also_mad_say',
  'mad_say_author',
  'say_author_disput',
  'author_disput_bill',
  'disput_bill_basic',
  'bill_basic_threaten',
  'basic_threaten_harass',
  'threaten_harass_whole',
  'harass_whole_damn',
  'whole_damn_hospit',
  'damn_hospit_week',
  'hospit_week_aita',
  'week_aita_got',
  'aita_got_boyfriend',
  'got_boyfriend_medic',
  'boyfriend_medic_bill',
  'medic_bill_drop'],
 ['fiance',
  'get',
  'marri',
  'weve',
  'decid',
  'wed',
  'gon',
  'na',
  'childfre',
  'hate',
  'toward',
  'children',
  'keep',
  'organ',
  'contain',
  'brother',
  'chri',
  'wife',
  'yro',
  'son',
  'everyon',
  'call',
  'miracl',
  'rainbow',
  'babi',
  'came',
  'sever',
  'fail',
  'pregnanc',
  'last',
  'year',
  'found',
  'nephew',
  'includ',
  'children',
  'rule',
  'tri',
  'convinc',
  'make',
  'except',
  'chri',
  'told',
  'son',
  'miracl',
  'babi',
  'presenc',
  'wed',
  'bring',
  'bless',
  'fiance',
  'refus',
  'said',
  'wed',
  'childfre',
  'wife',
  'kept',
  'send',
  'fiance',
  'pic',
  'nephew',
  'month',
  'old',
  'mean',
  'told',
  'stop',
  'brother',
  'told',
  'might',
  'caus',
  'rift',
  'relationship',
  'said',
  'explain',
  'wed',
  'childfre',
  'ask',
  'point',
  'babi',
  'differ',
  'sinc',
  'rainbow',
  'miracl',
  'babi',
  'said',
  'explain',
  'wed',
  'childfre',
  'brought',
  'visit',
  'home',
  'knew',
  'go',
  'stop',
  'id',
  'made',
  'flash',
  'card',
  'advanc',
  'phrase',
  'wed',
  'childfre',
  'period',
  'pull',
  'start',
  'slowli',
  'show',
  'flash',
  'card',
  'one',
  'one',
  'order',
  '-',
  'wed',
  'sticker',
  'bride',
  'groom',
  '-',
  'child',
  'sticker',
  'babi',
  '-',
  'freee',
  'sticker',
  '🚫',
  'sign',
  '-',
  'period',
  'huge',
  'black',
  'dot',
  'sticker',
  'stun',
  'ask',
  'get',
  'chri',
  'lost',
  'shit',
  'wife',
  'alreadi',
  'grab',
  'stuff',
  'walk',
  'chri',
  'call',
  'asshol',
  'said',
  'disrespect',
  'wife',
  'son',
  'one',
  'nephew',
  'rush',
  'argu',
  'fiance',
  'saw',
  'whole',
  'thing',
  'thought',
  'funni',
  'parent',
  'chri',
  'livid',
  'beyond',
  'measur',
  'theyr',
  'tell',
  'everyon',
  'amount',
  'disrespect',
  'mockeri',
  'display',
  'toward',
  'im',
  'told',
  'fix',
  'fiance_get',
  'get_marri',
  'marri_weve',
  'weve_decid',
  'decid_wed',
  'wed_gon',
  'gon_na',
  'na_childfre',
  'childfre_hate',
  'hate_toward',
  'toward_children',
  'children_keep',
  'keep_organ',
  'organ_contain',
  'contain_brother',
  'brother_chri',
  'chri_wife',
  'wife_yro',
  'yro_son',
  'son_everyon',
  'everyon_call',
  'call_miracl',
  'miracl_rainbow',
  'rainbow_babi',
  'babi_came',
  'came_sever',
  'sever_fail',
  'fail_pregnanc',
  'pregnanc_last',
  'last_year',
  'year_found',
  'found_nephew',
  'nephew_includ',
  'includ_children',
  'children_rule',
  'rule_tri',
  'tri_convinc',
  'convinc_make',
  'make_except',
  'except_chri',
  'chri_told',
  'told_son',
  'son_miracl',
  'miracl_babi',
  'babi_presenc',
  'presenc_wed',
  'wed_bring',
  'bring_bless',
  'bless_fiance',
  'fiance_refus',
  'refus_said',
  'said_wed',
  'wed_childfre',
  'childfre_wife',
  'wife_kept',
  'kept_send',
  'send_fiance',
  'fiance_pic',
  'pic_nephew',
  'nephew_month',
  'month_old',
  'old_mean',
  'mean_told',
  'told_stop',
  'stop_brother',
  'brother_told',
  'told_might',
  'might_caus',
  'caus_rift',
  'rift_relationship',
  'relationship_said',
  'said_explain',
  'explain_wed',
  'wed_childfre',
  'childfre_ask',
  'ask_point',
  'point_babi',
  'babi_differ',
  'differ_sinc',
  'sinc_rainbow',
  'rainbow_miracl',
  'miracl_babi',
  'babi_said',
  'said_explain',
  'explain_wed',
  'wed_childfre',
  'childfre_brought',
  'brought_visit',
  'visit_home',
  'home_knew',
  'knew_go',
  'go_stop',
  'stop_id',
  'id_made',
  'made_flash',
  'flash_card',
  'card_advanc',
  'advanc_phrase',
  'phrase_wed',
  'wed_childfre',
  'childfre_period',
  'period_pull',
  'pull_start',
  'start_slowli',
  'slowli_show',
  'show_flash',
  'flash_card',
  'card_one',
  'one_one',
  'one_order',
  'order_-',
  '-_wed',
  'wed_sticker',
  'sticker_bride',
  'bride_groom',
  'groom_-',
  '-_child',
  'child_sticker',
  'sticker_babi',
  'babi_-',
  '-_freee',
  'freee_sticker',
  'sticker_🚫',
  '🚫_sign',
  'sign_-',
  '-_period',
  'period_huge',
  'huge_black',
  'black_dot',
  'dot_sticker',
  'sticker_stun',
  'stun_ask',
  'ask_get',
  'get_chri',
  'chri_lost',
  'lost_shit',
  'shit_wife',
  'wife_alreadi',
  'alreadi_grab',
  'grab_stuff',
  'stuff_walk',
  'walk_chri',
  'chri_call',
  'call_asshol',
  'asshol_said',
  'said_disrespect',
  'disrespect_wife',
  'wife_son',
  'son_one',
  'one_nephew',
  'nephew_rush',
  'rush_argu',
  'argu_fiance',
  'fiance_saw',
  'saw_whole',
  'whole_thing',
  'thing_thought',
  'thought_funni',
  'funni_parent',
  'parent_chri',
  'chri_livid',
  'livid_beyond',
  'beyond_measur',
  'measur_theyr',
  'theyr_tell',
  'tell_everyon',
  'everyon_amount',
  'amount_disrespect',
  'disrespect_mockeri',
  'mockeri_display',
  'display_toward',
  'toward_im',
  'im_told',
  'told_fix',
  'fiance_get_marri',
  'get_marri_weve',
  'marri_weve_decid',
  'weve_decid_wed',
  'decid_wed_gon',
  'wed_gon_na',
  'gon_na_childfre',
  'na_childfre_hate',
  'childfre_hate_toward',
  'hate_toward_children',
  'toward_children_keep',
  'children_keep_organ',
  'keep_organ_contain',
  'organ_contain_brother',
  'contain_brother_chri',
  'brother_chri_wife',
  'chri_wife_yro',
  'wife_yro_son',
  'yro_son_everyon',
  'son_everyon_call',
  'everyon_call_miracl',
  'call_miracl_rainbow',
  'miracl_rainbow_babi',
  'rainbow_babi_came',
  'babi_came_sever',
  'came_sever_fail',
  'sever_fail_pregnanc',
  'fail_pregnanc_last',
  'pregnanc_last_year',
  'last_year_found',
  'year_found_nephew',
  'found_nephew_includ',
  'nephew_includ_children',
  'includ_children_rule',
  'children_rule_tri',
  'rule_tri_convinc',
  'tri_convinc_make',
  'convinc_make_except',
  'make_except_chri',
  'except_chri_told',
  'chri_told_son',
  'told_son_miracl',
  'son_miracl_babi',
  'miracl_babi_presenc',
  'babi_presenc_wed',
  'presenc_wed_bring',
  'wed_bring_bless',
  'bring_bless_fiance',
  'bless_fiance_refus',
  'fiance_refus_said',
  'refus_said_wed',
  'said_wed_childfre',
  'wed_childfre_wife',
  'childfre_wife_kept',
  'wife_kept_send',
  'kept_send_fiance',
  'send_fiance_pic',
  'fiance_pic_nephew',
  'pic_nephew_month',
  'nephew_month_old',
  'month_old_mean',
  'old_mean_told',
  'mean_told_stop',
  'told_stop_brother',
  'stop_brother_told',
  'brother_told_might',
  'told_might_caus',
  'might_caus_rift',
  'caus_rift_relationship',
  'rift_relationship_said',
  'relationship_said_explain',
  'said_explain_wed',
  'explain_wed_childfre',
  'wed_childfre_ask',
  'childfre_ask_point',
  'ask_point_babi',
  'point_babi_differ',
  'babi_differ_sinc',
  'differ_sinc_rainbow',
  'sinc_rainbow_miracl',
  'rainbow_miracl_babi',
  'miracl_babi_said',
  'babi_said_explain',
  'said_explain_wed',
  'explain_wed_childfre',
  'wed_childfre_brought',
  'childfre_brought_visit',
  'brought_visit_home',
  'visit_home_knew',
  'home_knew_go',
  'knew_go_stop',
  'go_stop_id',
  'stop_id_made',
  'id_made_flash',
  'made_flash_card',
  'flash_card_advanc',
  'card_advanc_phrase',
  'advanc_phrase_wed',
  'phrase_wed_childfre',
  'wed_childfre_period',
  'childfre_period_pull',
  'period_pull_start',
  'pull_start_slowli',
  'start_slowli_show',
  'slowli_show_flash',
  'show_flash_card',
  'flash_card_one',
  'card_one_one',
  'one_one_order',
  'one_order_-',
  'order_-_wed',
  '-_wed_sticker',
  'wed_sticker_bride',
  'sticker_bride_groom',
  'bride_groom_-',
  'groom_-_child',
  '-_child_sticker',
  'child_sticker_babi',
  'sticker_babi_-',
  'babi_-_freee',
  '-_freee_sticker',
  'freee_sticker_🚫',
  'sticker_🚫_sign',
  '🚫_sign_-',
  'sign_-_period',
  '-_period_huge',
  'period_huge_black',
  'huge_black_dot',
  'black_dot_sticker',
  'dot_sticker_stun',
  'sticker_stun_ask',
  'stun_ask_get',
  'ask_get_chri',
  'get_chri_lost',
  'chri_lost_shit',
  'lost_shit_wife',
  'shit_wife_alreadi',
  'wife_alreadi_grab',
  'alreadi_grab_stuff',
  'grab_stuff_walk',
  'stuff_walk_chri',
  'walk_chri_call',
  'chri_call_asshol',
  'call_asshol_said',
  'asshol_said_disrespect',
  'said_disrespect_wife',
  'disrespect_wife_son',
  'wife_son_one',
  'son_one_nephew',
  'one_nephew_rush',
  'nephew_rush_argu',
  'rush_argu_fiance',
  'argu_fiance_saw',
  'fiance_saw_whole',
  'saw_whole_thing',
  'whole_thing_thought',
  'thing_thought_funni',
  'thought_funni_parent',
  'funni_parent_chri',
  'parent_chri_livid',
  'chri_livid_beyond',
  'livid_beyond_measur',
  'beyond_measur_theyr',
  'measur_theyr_tell',
  'theyr_tell_everyon',
  'tell_everyon_amount',
  'everyon_amount_disrespect',
  'amount_disrespect_mockeri',
  'disrespect_mockeri_display',
  'mockeri_display_toward',
  'display_toward_im',
  'toward_im_told',
  'im_told_fix'],
 ['husband',
  '&',
  'expect',
  'first',
  'babi',
  'excit',
  'thing',
  'bare',
  'attend',
  'dr',
  'appoint',
  'excus',
  'even',
  'valid',
  'miss',
  'dr',
  'appoint',
  'soccer',
  'drink',
  'board',
  'game',
  'friend',
  'respons',
  'alway',
  'im',
  'one',
  'carri',
  'babi',
  'go',
  'see',
  'dr',
  'last',
  'week',
  'final',
  'straw',
  'suppos',
  'come',
  'babi',
  'gender',
  'reveal',
  'appoint',
  'chose',
  'come',
  'last',
  'minut',
  'friend',
  'invit',
  'fish',
  'chip',
  'meal',
  'pretti',
  'livid',
  'make',
  'fuss',
  'mom',
  'went',
  'instead',
  'text',
  'ask',
  'tell',
  'result',
  'boy',
  'girl',
  'refus',
  'tell',
  'kept',
  'spam',
  'call',
  'hung',
  'time',
  'came',
  'home',
  'fume',
  'demand',
  'tell',
  'result',
  'refus',
  'bluntli',
  'told',
  'sinc',
  'refus',
  'attend',
  'appoint',
  'get',
  'result',
  'til',
  'babi',
  'born',
  'said',
  'wile',
  'die',
  'hill',
  'went',
  'call',
  'spite',
  'immatur',
  'punish',
  'said',
  'father',
  'right',
  'know',
  'call',
  'dramat',
  'sinc',
  'alon',
  'mom',
  'said',
  'get',
  'result',
  'period',
  'fume',
  'told',
  'famili',
  'theyr',
  'pressur',
  'stop',
  'play',
  'mind',
  'game',
  'tell',
  'declin',
  'aita',
  'editupd',
  'first',
  'wow',
  'expect',
  'blow',
  'sorri',
  'cant',
  'answer',
  'comment',
  'feel',
  'overwhelmedum',
  'want',
  'mention',
  'husband',
  'attempt',
  'contact',
  'dr',
  'get',
  'result',
  'go',
  'well',
  'anoth',
  'argument',
  'get',
  'sinc',
  'mom',
  'one',
  'made',
  'call',
  'husband_&',
  '&_expect',
  'expect_first',
  'first_babi',
  'babi_excit',
  'excit_thing',
  'thing_bare',
  'bare_attend',
  'attend_dr',
  'dr_appoint',
  'appoint_excus',
  'excus_even',
  'even_valid',
  'valid_miss',
  'miss_dr',
  'dr_appoint',
  'appoint_soccer',
  'soccer_drink',
  'drink_board',
  'board_game',
  'game_friend',
  'friend_respons',
  'respons_alway',
  'alway_im',
  'im_one',
  'one_carri',
  'carri_babi',
  'babi_go',
  'go_see',
  'see_dr',
  'dr_last',
  'last_week',
  'week_final',
  'final_straw',
  'straw_suppos',
  'suppos_come',
  'come_babi',
  'babi_gender',
  'gender_reveal',
  'reveal_appoint',
  'appoint_chose',
  'chose_come',
  'come_last',
  'last_minut',
  'minut_friend',
  'friend_invit',
  'invit_fish',
  'fish_chip',
  'chip_meal',
  'meal_pretti',
  'pretti_livid',
  'livid_make',
  'make_fuss',
  'fuss_mom',
  'mom_went',
  'went_instead',
  'instead_text',
  'text_ask',
  'ask_tell',
  'tell_result',
  'result_boy',
  'boy_girl',
  'girl_refus',
  'refus_tell',
  'tell_kept',
  'kept_spam',
  'spam_call',
  'call_hung',
  'hung_time',
  'time_came',
  'came_home',
  'home_fume',
  'fume_demand',
  'demand_tell',
  'tell_result',
  'result_refus',
  'refus_bluntli',
  'bluntli_told',
  'told_sinc',
  'sinc_refus',
  'refus_attend',
  'attend_appoint',
  'appoint_get',
  'get_result',
  'result_til',
  'til_babi',
  'babi_born',
  'born_said',
  'said_wile',
  'wile_die',
  'die_hill',
  'hill_went',
  'went_call',
  'call_spite',
  'spite_immatur',
  'immatur_punish',
  'punish_said',
  'said_father',
  'father_right',
  'right_know',
  'know_call',
  'call_dramat',
  'dramat_sinc',
  'sinc_alon',
  'alon_mom',
  'mom_said',
  'said_get',
  'get_result',
  'result_period',
  'period_fume',
  'fume_told',
  'told_famili',
  'famili_theyr',
  'theyr_pressur',
  'pressur_stop',
  'stop_play',
  'play_mind',
  'mind_game',
  'game_tell',
  'tell_declin',
  'declin_aita',
  'aita_editupd',
  'editupd_first',
  'first_wow',
  'wow_expect',
  'expect_blow',
  'blow_sorri',
  'sorri_cant',
  'cant_answer',
  'answer_comment',
  'comment_feel',
  'feel_overwhelmedum',
  'overwhelmedum_want',
  'want_mention',
  'mention_husband',
  'husband_attempt',
  'attempt_contact',
  'contact_dr',
  'dr_get',
  'get_result',
  'result_go',
  'go_well',
  'well_anoth',
  'anoth_argument',
  'argument_get',
  'get_sinc',
  'sinc_mom',
  'mom_one',
  'one_made',
  'made_call',
  'husband_&_expect',
  '&_expect_first',
  'expect_first_babi',
  'first_babi_excit',
  'babi_excit_thing',
  'excit_thing_bare',
  'thing_bare_attend',
  'bare_attend_dr',
  'attend_dr_appoint',
  'dr_appoint_excus',
  'appoint_excus_even',
  'excus_even_valid',
  'even_valid_miss',
  'valid_miss_dr',
  'miss_dr_appoint',
  'dr_appoint_soccer',
  'appoint_soccer_drink',
  'soccer_drink_board',
  'drink_board_game',
  'board_game_friend',
  'game_friend_respons',
  'friend_respons_alway',
  'respons_alway_im',
  'alway_im_one',
  'im_one_carri',
  'one_carri_babi',
  'carri_babi_go',
  'babi_go_see',
  'go_see_dr',
  'see_dr_last',
  'dr_last_week',
  'last_week_final',
  'week_final_straw',
  'final_straw_suppos',
  'straw_suppos_come',
  'suppos_come_babi',
  'come_babi_gender',
  'babi_gender_reveal',
  'gender_reveal_appoint',
  'reveal_appoint_chose',
  'appoint_chose_come',
  'chose_come_last',
  'come_last_minut',
  'last_minut_friend',
  'minut_friend_invit',
  'friend_invit_fish',
  'invit_fish_chip',
  'fish_chip_meal',
  'chip_meal_pretti',
  'meal_pretti_livid',
  'pretti_livid_make',
  'livid_make_fuss',
  'make_fuss_mom',
  'fuss_mom_went',
  'mom_went_instead',
  'went_instead_text',
  'instead_text_ask',
  'text_ask_tell',
  'ask_tell_result',
  'tell_result_boy',
  'result_boy_girl',
  'boy_girl_refus',
  'girl_refus_tell',
  'refus_tell_kept',
  'tell_kept_spam',
  'kept_spam_call',
  'spam_call_hung',
  'call_hung_time',
  'hung_time_came',
  'time_came_home',
  'came_home_fume',
  'home_fume_demand',
  'fume_demand_tell',
  'demand_tell_result',
  'tell_result_refus',
  'result_refus_bluntli',
  'refus_bluntli_told',
  'bluntli_told_sinc',
  'told_sinc_refus',
  'sinc_refus_attend',
  'refus_attend_appoint',
  'attend_appoint_get',
  'appoint_get_result',
  'get_result_til',
  'result_til_babi',
  'til_babi_born',
  'babi_born_said',
  'born_said_wile',
  'said_wile_die',
  'wile_die_hill',
  'die_hill_went',
  'hill_went_call',
  'went_call_spite',
  'call_spite_immatur',
  'spite_immatur_punish',
  'immatur_punish_said',
  'punish_said_father',
  'said_father_right',
  'father_right_know',
  'right_know_call',
  'know_call_dramat',
  'call_dramat_sinc',
  'dramat_sinc_alon',
  'sinc_alon_mom',
  'alon_mom_said',
  'mom_said_get',
  'said_get_result',
  'get_result_period',
  'result_period_fume',
  'period_fume_told',
  'fume_told_famili',
  'told_famili_theyr',
  'famili_theyr_pressur',
  'theyr_pressur_stop',
  'pressur_stop_play',
  'stop_play_mind',
  'play_mind_game',
  'mind_game_tell',
  'game_tell_declin',
  'tell_declin_aita',
  'declin_aita_editupd',
  'aita_editupd_first',
  'editupd_first_wow',
  'first_wow_expect',
  'wow_expect_blow',
  'expect_blow_sorri',
  'blow_sorri_cant',
  'sorri_cant_answer',
  'cant_answer_comment',
  'answer_comment_feel',
  'comment_feel_overwhelmedum',
  'feel_overwhelmedum_want',
  'overwhelmedum_want_mention',
  'want_mention_husband',
  'mention_husband_attempt',
  'husband_attempt_contact',
  'attempt_contact_dr',
  'contact_dr_get',
  'dr_get_result',
  'get_result_go',
  'result_go_well',
  'go_well_anoth',
  'well_anoth_argument',
  'anoth_argument_get',
  'argument_get_sinc',
  'get_sinc_mom',
  'sinc_mom_one',
  'mom_one_made',
  'one_made_call'],
 ['yo',
  'son',
  'widow',
  'met',
  'wife',
  'yo',
  'daughter',
  'anoth',
  'relationship',
  'famili',
  'often',
  'pretti',
  'good',
  'term',
  'son',
  'quiet',
  'one',
  'hous',
  'keep',
  'lot',
  'point',
  'concern',
  'wife',
  'stepdaught',
  'complet',
  'opposit',
  'encourag',
  'outgo',
  'share',
  'activ',
  'join',
  'gather',
  'extend',
  'famili',
  'son',
  'complain',
  'forc',
  'comfort',
  'zone',
  'need',
  'space',
  'invalid',
  'spoke',
  'wife',
  'stepdaught',
  'ask',
  'give',
  'space',
  'freedom',
  'spend',
  'time',
  'howev',
  'want',
  'apolog',
  'promis',
  'let',
  'mother',
  'day',
  'approach',
  'want',
  'throw',
  'wife',
  'surpris',
  'mother',
  'day',
  'celebr',
  'longer',
  'surpris',
  'stepdaught',
  'gave',
  'head',
  'could',
  'prepar',
  'yesterday',
  'got',
  'work',
  'earlier',
  'usual',
  'get',
  'final',
  'arrang',
  'done',
  'plan',
  'celebr',
  'restaur',
  'invit',
  'famili',
  'key',
  'enter',
  'hous',
  'front',
  'door',
  'overheard',
  'wife',
  'stepdaught',
  'talk',
  'son',
  'wife',
  'ask',
  'son',
  'could',
  'convinc',
  'let',
  'stay',
  'home',
  'go',
  'restaur',
  'celebr',
  'paus',
  'decid',
  'keep',
  'listen',
  'son',
  'said',
  'told',
  'introvert',
  'social',
  'inept',
  'attitud',
  'make',
  'famili',
  'uncomfort',
  'ruin',
  'mood',
  'promis',
  'hed',
  'well',
  'behav',
  'would',
  'tri',
  'interact',
  'social',
  'everyon',
  'said',
  'buy',
  'kept',
  'reassur',
  'snap',
  'told',
  'technic',
  'mom',
  'get',
  'want',
  'celebr',
  'mother',
  'day',
  'badli',
  'stepdaught',
  'threw',
  'rememb',
  'backhand',
  'comment',
  'shock',
  'see',
  'stand',
  'stare',
  'without',
  'say',
  'anyth',
  'told',
  'son',
  'stepsist',
  'go',
  'room',
  'told',
  'wife',
  'celebr',
  'cancel',
  'tri',
  'argu',
  'ask',
  'repeatedli',
  'told',
  'tri',
  'explain',
  'mean',
  'like',
  'heard',
  'part',
  'convers',
  'told',
  'done',
  'argu',
  'decis',
  'alreadi',
  'made',
  'yell',
  'ask',
  'go',
  'tell',
  'famili',
  'said',
  'make',
  'tremend',
  'mistak',
  'toward',
  'ignor',
  'kept',
  'throw',
  'tantrum',
  'tantrum',
  'earli',
  'morn',
  'took',
  'stepdaught',
  'went',
  'stay',
  'folk',
  'singl',
  'call',
  'text',
  'far',
  'situat',
  'full',
  'tension',
  'im',
  'upset',
  'still',
  'hurt',
  'honest',
  'mean',
  'ye',
  'say',
  'go',
  'havw',
  'celebr',
  'thought',
  'said',
  'son',
  'harsh',
  'ignor',
  'yo_son',
  'son_widow',
  'widow_met',
  'met_wife',
  'wife_yo',
  'yo_daughter',
  'daughter_anoth',
  'anoth_relationship',
  'relationship_famili',
  'famili_often',
  'often_pretti',
  'pretti_good',
  'good_term',
  'term_son',
  'son_quiet',
  'quiet_one',
  'one_hous',
  'hous_keep',
  'keep_lot',
  'lot_point',
  'point_concern',
  'concern_wife',
  'wife_stepdaught',
  'stepdaught_complet',
  'complet_opposit',
  'opposit_encourag',
  'encourag_outgo',
  'outgo_share',
  'share_activ',
  'activ_join',
  'join_gather',
  'gather_extend',
  'extend_famili',
  'famili_son',
  'son_complain',
  'complain_forc',
  'forc_comfort',
  'comfort_zone',
  'zone_need',
  'need_space',
  'space_invalid',
  'invalid_spoke',
  'spoke_wife',
  'wife_stepdaught',
  'stepdaught_ask',
  'ask_give',
  'give_space',
  'space_freedom',
  'freedom_spend',
  'spend_time',
  'time_howev',
  'howev_want',
  'want_apolog',
  'apolog_promis',
  'promis_let',
  'let_mother',
  'mother_day',
  'day_approach',
  'approach_want',
  'want_throw',
  'throw_wife',
  'wife_surpris',
  'surpris_mother',
  'mother_day',
  'day_celebr',
  'celebr_longer',
  'longer_surpris',
  'surpris_stepdaught',
  'stepdaught_gave',
  'gave_head',
  'head_could',
  'could_prepar',
  'prepar_yesterday',
  'yesterday_got',
  'got_work',
  'work_earlier',
  'earlier_usual',
  'usual_get',
  'get_final',
  'final_arrang',
  'arrang_done',
  'done_plan',
  'plan_celebr',
  'celebr_restaur',
  'restaur_invit',
  'invit_famili',
  'famili_key',
  'key_enter',
  'enter_hous',
  'hous_front',
  'front_door',
  'door_overheard',
  'overheard_wife',
  'wife_stepdaught',
  'stepdaught_talk',
  'talk_son',
  'son_wife',
  'wife_ask',
  'ask_son',
  'son_could',
  'could_convinc',
  'convinc_let',
  'let_stay',
  'stay_home',
  'home_go',
  'go_restaur',
  'restaur_celebr',
  'celebr_paus',
  'paus_decid',
  'decid_keep',
  'keep_listen',
  'listen_son',
  'son_said',
  'said_told',
  'told_introvert',
  'introvert_social',
  'social_inept',
  'inept_attitud',
  'attitud_make',
  'make_famili',
  'famili_uncomfort',
  'uncomfort_ruin',
  'ruin_mood',
  'mood_promis',
  'promis_hed',
  'hed_well',
  'well_behav',
  'behav_would',
  'would_tri',
  'tri_interact',
  'interact_social',
  'social_everyon',
  'everyon_said',
  'said_buy',
  'buy_kept',
  'kept_reassur',
  'reassur_snap',
  'snap_told',
  'told_technic',
  'technic_mom',
  'mom_get',
  'get_want',
  'want_celebr',
  'celebr_mother',
  'mother_day',
  'day_badli',
  'badli_stepdaught',
  'stepdaught_threw',
  'threw_rememb',
  'rememb_backhand',
  'backhand_comment',
  'comment_shock',
  'shock_see',
  'see_stand',
  'stand_stare',
  'stare_without',
  'without_say',
  'say_anyth',
  'anyth_told',
  'told_son',
  'son_stepsist',
  'stepsist_go',
  'go_room',
  'room_told',
  'told_wife',
  'wife_celebr',
  'celebr_cancel',
  'cancel_tri',
  'tri_argu',
  'argu_ask',
  'ask_repeatedli',
  'repeatedli_told',
  'told_tri',
  'tri_explain',
  'explain_mean',
  'mean_like',
  'like_heard',
  'heard_part',
  'part_convers',
  'convers_told',
  'told_done',
  'done_argu',
  'argu_decis',
  'decis_alreadi',
  'alreadi_made',
  'made_yell',
  'yell_ask',
  'ask_go',
  'go_tell',
  'tell_famili',
  'famili_said',
  'said_make',
  'make_tremend',
  'tremend_mistak',
  'mistak_toward',
  'toward_ignor',
  'ignor_kept',
  'kept_throw',
  'throw_tantrum',
  'tantrum_tantrum',
  'tantrum_earli',
  'earli_morn',
  'morn_took',
  'took_stepdaught',
  'stepdaught_went',
  'went_stay',
  'stay_folk',
  'folk_singl',
  'singl_call',
  'call_text',
  'text_far',
  'far_situat',
  'situat_full',
  'full_tension',
  'tension_im',
  'im_upset',
  'upset_still',
  'still_hurt',
  'hurt_honest',
  'honest_mean',
  'mean_ye',
  'ye_say',
  'say_go',
  'go_havw',
  'havw_celebr',
  'celebr_thought',
  'thought_said',
  'said_son',
  'son_harsh',
  'harsh_ignor',
  'yo_son_widow',
  'son_widow_met',
  'widow_met_wife',
  'met_wife_yo',
  'wife_yo_daughter',
  'yo_daughter_anoth',
  'daughter_anoth_relationship',
  'anoth_relationship_famili',
  'relationship_famili_often',
  'famili_often_pretti',
  'often_pretti_good',
  'pretti_good_term',
  'good_term_son',
  'term_son_quiet',
  'son_quiet_one',
  'quiet_one_hous',
  'one_hous_keep',
  'hous_keep_lot',
  'keep_lot_point',
  'lot_point_concern',
  'point_concern_wife',
  'concern_wife_stepdaught',
  'wife_stepdaught_complet',
  'stepdaught_complet_opposit',
  'complet_opposit_encourag',
  'opposit_encourag_outgo',
  'encourag_outgo_share',
  'outgo_share_activ',
  'share_activ_join',
  'activ_join_gather',
  'join_gather_extend',
  'gather_extend_famili',
  'extend_famili_son',
  'famili_son_complain',
  'son_complain_forc',
  'complain_forc_comfort',
  'forc_comfort_zone',
  'comfort_zone_need',
  'zone_need_space',
  'need_space_invalid',
  'space_invalid_spoke',
  'invalid_spoke_wife',
  'spoke_wife_stepdaught',
  'wife_stepdaught_ask',
  'stepdaught_ask_give',
  'ask_give_space',
  'give_space_freedom',
  'space_freedom_spend',
  'freedom_spend_time',
  'spend_time_howev',
  'time_howev_want',
  'howev_want_apolog',
  'want_apolog_promis',
  'apolog_promis_let',
  'promis_let_mother',
  'let_mother_day',
  'mother_day_approach',
  'day_approach_want',
  'approach_want_throw',
  'want_throw_wife',
  'throw_wife_surpris',
  'wife_surpris_mother',
  'surpris_mother_day',
  'mother_day_celebr',
  'day_celebr_longer',
  'celebr_longer_surpris',
  'longer_surpris_stepdaught',
  'surpris_stepdaught_gave',
  'stepdaught_gave_head',
  'gave_head_could',
  'head_could_prepar',
  'could_prepar_yesterday',
  'prepar_yesterday_got',
  'yesterday_got_work',
  'got_work_earlier',
  'work_earlier_usual',
  'earlier_usual_get',
  'usual_get_final',
  'get_final_arrang',
  'final_arrang_done',
  'arrang_done_plan',
  'done_plan_celebr',
  'plan_celebr_restaur',
  'celebr_restaur_invit',
  'restaur_invit_famili',
  'invit_famili_key',
  'famili_key_enter',
  'key_enter_hous',
  'enter_hous_front',
  'hous_front_door',
  'front_door_overheard',
  'door_overheard_wife',
  'overheard_wife_stepdaught',
  'wife_stepdaught_talk',
  'stepdaught_talk_son',
  'talk_son_wife',
  'son_wife_ask',
  'wife_ask_son',
  'ask_son_could',
  'son_could_convinc',
  'could_convinc_let',
  'convinc_let_stay',
  'let_stay_home',
  'stay_home_go',
  'home_go_restaur',
  'go_restaur_celebr',
  'restaur_celebr_paus',
  'celebr_paus_decid',
  'paus_decid_keep',
  'decid_keep_listen',
  'keep_listen_son',
  'listen_son_said',
  'son_said_told',
  'said_told_introvert',
  'told_introvert_social',
  'introvert_social_inept',
  'social_inept_attitud',
  'inept_attitud_make',
  'attitud_make_famili',
  'make_famili_uncomfort',
  'famili_uncomfort_ruin',
  'uncomfort_ruin_mood',
  'ruin_mood_promis',
  'mood_promis_hed',
  'promis_hed_well',
  'hed_well_behav',
  'well_behav_would',
  'behav_would_tri',
  'would_tri_interact',
  'tri_interact_social',
  'interact_social_everyon',
  'social_everyon_said',
  'everyon_said_buy',
  'said_buy_kept',
  'buy_kept_reassur',
  'kept_reassur_snap',
  'reassur_snap_told',
  'snap_told_technic',
  'told_technic_mom',
  'technic_mom_get',
  'mom_get_want',
  'get_want_celebr',
  'want_celebr_mother',
  'celebr_mother_day',
  'mother_day_badli',
  'day_badli_stepdaught',
  'badli_stepdaught_threw',
  'stepdaught_threw_rememb',
  'threw_rememb_backhand',
  'rememb_backhand_comment',
  'backhand_comment_shock',
  'comment_shock_see',
  'shock_see_stand',
  'see_stand_stare',
  'stand_stare_without',
  'stare_without_say',
  'without_say_anyth',
  'say_anyth_told',
  'anyth_told_son',
  'told_son_stepsist',
  'son_stepsist_go',
  'stepsist_go_room',
  'go_room_told',
  'room_told_wife',
  'told_wife_celebr',
  'wife_celebr_cancel',
  'celebr_cancel_tri',
  'cancel_tri_argu',
  'tri_argu_ask',
  'argu_ask_repeatedli',
  'ask_repeatedli_told',
  'repeatedli_told_tri',
  'told_tri_explain',
  'tri_explain_mean',
  'explain_mean_like',
  'mean_like_heard',
  'like_heard_part',
  'heard_part_convers',
  'part_convers_told',
  'convers_told_done',
  'told_done_argu',
  'done_argu_decis',
  'argu_decis_alreadi',
  'decis_alreadi_made',
  'alreadi_made_yell',
  'made_yell_ask',
  'yell_ask_go',
  'ask_go_tell',
  'go_tell_famili',
  'tell_famili_said',
  'famili_said_make',
  'said_make_tremend',
  'make_tremend_mistak',
  'tremend_mistak_toward',
  'mistak_toward_ignor',
  'toward_ignor_kept',
  'ignor_kept_throw',
  'kept_throw_tantrum',
  'throw_tantrum_tantrum',
  'tantrum_tantrum_earli',
  'tantrum_earli_morn',
  'earli_morn_took',
  'morn_took_stepdaught',
  'took_stepdaught_went',
  'stepdaught_went_stay',
  'went_stay_folk',
  'stay_folk_singl',
  'folk_singl_call',
  'singl_call_text',
  'call_text_far',
  'text_far_situat',
  'far_situat_full',
  'situat_full_tension',
  'full_tension_im',
  'tension_im_upset',
  'im_upset_still',
  'upset_still_hurt',
  'still_hurt_honest',
  'hurt_honest_mean',
  'honest_mean_ye',
  'mean_ye_say',
  'ye_say_go',
  'say_go_havw',
  'go_havw_celebr',
  'havw_celebr_thought',
  'celebr_thought_said',
  'thought_said_son',
  'said_son_harsh',
  'son_harsh_ignor'],
 ['wed',
  'back',
  'saturday',
  'decemb',
  'st',
  'im',
  'still',
  'get',
  'backlash',
  'want',
  'know',
  'ah',
  'move',
  'countri',
  'live',
  'current',
  'winter',
  'get',
  'fair',
  'amount',
  'snow',
  'wed',
  'winter',
  'theme',
  'wed',
  'color',
  'theme',
  'forest',
  'green',
  'gold',
  'dress',
  'obvious',
  'white',
  'chose',
  'color',
  'bridesmaid',
  'dress',
  'forest',
  'green',
  'well',
  'moh',
  'dress',
  'black',
  'everyon',
  'wear',
  'gold',
  'accessori',
  'friend',
  'well',
  'call',
  'kat',
  'ask',
  'one',
  'bridesmaid',
  'went',
  'dress',
  'shop',
  'told',
  'color',
  'theme',
  'go',
  'kat',
  'immedi',
  'express',
  'thought',
  'forest',
  'green',
  'bad',
  'choic',
  'said',
  'think',
  'flatter',
  'color',
  'thought',
  'choos',
  'someth',
  'differ',
  'girli',
  'said',
  'wed',
  'winter',
  'theme',
  'thought',
  'color',
  'would',
  'go',
  'perfect',
  'theme',
  'suggest',
  'pink',
  'blue',
  'even',
  'red',
  'said',
  'thank',
  'opinion',
  'found',
  'moh',
  'dress',
  'black',
  'ask',
  'could',
  'wear',
  'black',
  'said',
  'moh',
  'wear',
  'black',
  'paid',
  'dress',
  'fast',
  'forward',
  'wed',
  'day',
  'everyon',
  'get',
  'hair',
  'makeup',
  'done',
  'kat',
  'show',
  'minut',
  'late',
  'hold',
  'bag',
  'look',
  'like',
  'dress',
  'insid',
  'ask',
  'told',
  'later',
  'recept',
  'got',
  'uncomfort',
  'want',
  'chang',
  'pictur',
  'like',
  'ok',
  'cool',
  'fast',
  'forward',
  'dress',
  'walk',
  'stair',
  'ceremoni',
  'begin',
  'min',
  'go',
  'take',
  'pictur',
  'kat',
  'last',
  'person',
  'come',
  'wear',
  'black',
  'dress',
  'time',
  'preoccupi',
  'take',
  'pictur',
  'parent',
  'moh',
  'came',
  'made',
  'awar',
  'situat',
  'confront',
  'kat',
  'ask',
  'go',
  'said',
  'hate',
  'bridesmaid',
  'dress',
  'color',
  'ugli',
  'make',
  'look',
  'gross',
  'wear',
  'black',
  'told',
  'pleas',
  'go',
  'back',
  'chang',
  'refus',
  'start',
  'walk',
  'away',
  'said',
  'im',
  'go',
  'ask',
  'one',
  'time',
  'oblig',
  'im',
  'call',
  'secur',
  'kick',
  'began',
  'yell',
  'fuck',
  'call',
  'secur',
  'ask',
  'pleas',
  'escort',
  'start',
  'make',
  'big',
  'scene',
  'yell',
  'im',
  'bitch',
  'cant',
  'forc',
  'wear',
  'anyth',
  'im',
  'horribl',
  'inconsider',
  'friend',
  'wed',
  'went',
  'truli',
  'amaz',
  'ever',
  'sinc',
  'wed',
  'kat',
  'blow',
  'phone',
  'text',
  'say',
  'realli',
  'nasti',
  'thing',
  'ask',
  'money',
  'back',
  'spent',
  'black',
  'dress',
  'sinc',
  'wast',
  'get',
  'wear',
  'block',
  'number',
  'bridesmaid',
  'give',
  'shit',
  'say',
  'littl',
  'harsh',
  'kick',
  'embarrass',
  'like',
  'mayb',
  'give',
  'money',
  'back',
  'aita',
  'kick',
  'wed_back',
  'back_saturday',
  'saturday_decemb',
  'decemb_st',
  'st_im',
  'im_still',
  'still_get',
  'get_backlash',
  'backlash_want',
  'want_know',
  'know_ah',
  'ah_move',
  'move_countri',
  'countri_live',
  'live_current',
  'current_winter',
  'winter_get',
  'get_fair',
  'fair_amount',
  'amount_snow',
  'snow_wed',
  'wed_winter',
  'winter_theme',
  'theme_wed',
  'wed_color',
  'color_theme',
  'theme_forest',
  'forest_green',
  'green_gold',
  'gold_dress',
  'dress_obvious',
  'obvious_white',
  'white_chose',
  'chose_color',
  'color_bridesmaid',
  'bridesmaid_dress',
  'dress_forest',
  'forest_green',
  'green_well',
  'well_moh',
  'moh_dress',
  'dress_black',
  'black_everyon',
  'everyon_wear',
  'wear_gold',
  'gold_accessori',
  'accessori_friend',
  'friend_well',
  'well_call',
  'call_kat',
  'kat_ask',
  'ask_one',
  'one_bridesmaid',
  'bridesmaid_went',
  'went_dress',
  'dress_shop',
  'shop_told',
  'told_color',
  'color_theme',
  'theme_go',
  'go_kat',
  'kat_immedi',
  'immedi_express',
  'express_thought',
  'thought_forest',
  'forest_green',
  'green_bad',
  'bad_choic',
  'choic_said',
  'said_think',
  'think_flatter',
  'flatter_color',
  'color_thought',
  'thought_choos',
  'choos_someth',
  'someth_differ',
  'differ_girli',
  'girli_said',
  'said_wed',
  'wed_winter',
  'winter_theme',
  'theme_thought',
  'thought_color',
  'color_would',
  'would_go',
  'go_perfect',
  'perfect_theme',
  'theme_suggest',
  'suggest_pink',
  'pink_blue',
  'blue_even',
  'even_red',
  'red_said',
  'said_thank',
  'thank_opinion',
  'opinion_found',
  'found_moh',
  'moh_dress',
  'dress_black',
  'black_ask',
  'ask_could',
  'could_wear',
  'wear_black',
  'black_said',
  'said_moh',
  'moh_wear',
  'wear_black',
  'black_paid',
  'paid_dress',
  'dress_fast',
  'fast_forward',
  'forward_wed',
  'wed_day',
  'day_everyon',
  'everyon_get',
  'get_hair',
  'hair_makeup',
  'makeup_done',
  'done_kat',
  'kat_show',
  'show_minut',
  'minut_late',
  'late_hold',
  'hold_bag',
  'bag_look',
  'look_like',
  'like_dress',
  'dress_insid',
  'insid_ask',
  'ask_told',
  'told_later',
  'later_recept',
  'recept_got',
  'got_uncomfort',
  'uncomfort_want',
  'want_chang',
  'chang_pictur',
  'pictur_like',
  'like_ok',
  'ok_cool',
  'cool_fast',
  'fast_forward',
  'forward_dress',
  'dress_walk',
  'walk_stair',
  'stair_ceremoni',
  'ceremoni_begin',
  'begin_min',
  'min_go',
  'go_take',
  'take_pictur',
  'pictur_kat',
  'kat_last',
  'last_person',
  'person_come',
  'come_wear',
  'wear_black',
  'black_dress',
  'dress_time',
  'time_preoccupi',
  'preoccupi_take',
  'take_pictur',
  'pictur_parent',
  'parent_moh',
  'moh_came',
  'came_made',
  'made_awar',
  'awar_situat',
  'situat_confront',
  'confront_kat',
  'kat_ask',
  'ask_go',
  'go_said',
  'said_hate',
  'hate_bridesmaid',
  'bridesmaid_dress',
  'dress_color',
  'color_ugli',
  'ugli_make',
  'make_look',
  'look_gross',
  'gross_wear',
  'wear_black',
  'black_told',
  'told_pleas',
  'pleas_go',
  'go_back',
  'back_chang',
  'chang_refus',
  'refus_start',
  'start_walk',
  'walk_away',
  'away_said',
  'said_im',
  'im_go',
  'go_ask',
  'ask_one',
  'one_time',
  'time_oblig',
  'oblig_im',
  'im_call',
  'call_secur',
  'secur_kick',
  'kick_began',
  'began_yell',
  'yell_fuck',
  'fuck_call',
  'call_secur',
  'secur_ask',
  'ask_pleas',
  'pleas_escort',
  'escort_start',
  'start_make',
  'make_big',
  'big_scene',
  'scene_yell',
  'yell_im',
  'im_bitch',
  'bitch_cant',
  'cant_forc',
  'forc_wear',
  'wear_anyth',
  'anyth_im',
  'im_horribl',
  'horribl_inconsider',
  'inconsider_friend',
  'friend_wed',
  'wed_went',
  'went_truli',
  'truli_amaz',
  'amaz_ever',
  'ever_sinc',
  'sinc_wed',
  'wed_kat',
  'kat_blow',
  'blow_phone',
  'phone_text',
  'text_say',
  'say_realli',
  'realli_nasti',
  'nasti_thing',
  'thing_ask',
  'ask_money',
  'money_back',
  'back_spent',
  'spent_black',
  'black_dress',
  'dress_sinc',
  'sinc_wast',
  'wast_get',
  'get_wear',
  'wear_block',
  'block_number',
  'number_bridesmaid',
  'bridesmaid_give',
  'give_shit',
  'shit_say',
  'say_littl',
  'littl_harsh',
  'harsh_kick',
  'kick_embarrass',
  'embarrass_like',
  'like_mayb',
  'mayb_give',
  'give_money',
  'money_back',
  'back_aita',
  'aita_kick',
  'wed_back_saturday',
  'back_saturday_decemb',
  'saturday_decemb_st',
  'decemb_st_im',
  'st_im_still',
  'im_still_get',
  'still_get_backlash',
  'get_backlash_want',
  'backlash_want_know',
  'want_know_ah',
  'know_ah_move',
  'ah_move_countri',
  'move_countri_live',
  'countri_live_current',
  'live_current_winter',
  'current_winter_get',
  'winter_get_fair',
  'get_fair_amount',
  'fair_amount_snow',
  'amount_snow_wed',
  'snow_wed_winter',
  'wed_winter_theme',
  'winter_theme_wed',
  'theme_wed_color',
  'wed_color_theme',
  'color_theme_forest',
  'theme_forest_green',
  'forest_green_gold',
  'green_gold_dress',
  'gold_dress_obvious',
  'dress_obvious_white',
  'obvious_white_chose',
  'white_chose_color',
  'chose_color_bridesmaid',
  'color_bridesmaid_dress',
  'bridesmaid_dress_forest',
  'dress_forest_green',
  'forest_green_well',
  'green_well_moh',
  'well_moh_dress',
  'moh_dress_black',
  'dress_black_everyon',
  'black_everyon_wear',
  'everyon_wear_gold',
  'wear_gold_accessori',
  'gold_accessori_friend',
  'accessori_friend_well',
  'friend_well_call',
  'well_call_kat',
  'call_kat_ask',
  'kat_ask_one',
  'ask_one_bridesmaid',
  'one_bridesmaid_went',
  'bridesmaid_went_dress',
  'went_dress_shop',
  'dress_shop_told',
  'shop_told_color',
  'told_color_theme',
  'color_theme_go',
  'theme_go_kat',
  'go_kat_immedi',
  'kat_immedi_express',
  'immedi_express_thought',
  'express_thought_forest',
  'thought_forest_green',
  'forest_green_bad',
  'green_bad_choic',
  'bad_choic_said',
  'choic_said_think',
  'said_think_flatter',
  'think_flatter_color',
  'flatter_color_thought',
  'color_thought_choos',
  'thought_choos_someth',
  'choos_someth_differ',
  'someth_differ_girli',
  'differ_girli_said',
  'girli_said_wed',
  'said_wed_winter',
  'wed_winter_theme',
  'winter_theme_thought',
  'theme_thought_color',
  'thought_color_would',
  'color_would_go',
  'would_go_perfect',
  'go_perfect_theme',
  'perfect_theme_suggest',
  'theme_suggest_pink',
  'suggest_pink_blue',
  'pink_blue_even',
  'blue_even_red',
  'even_red_said',
  'red_said_thank',
  'said_thank_opinion',
  'thank_opinion_found',
  'opinion_found_moh',
  'found_moh_dress',
  'moh_dress_black',
  'dress_black_ask',
  'black_ask_could',
  'ask_could_wear',
  'could_wear_black',
  'wear_black_said',
  'black_said_moh',
  'said_moh_wear',
  'moh_wear_black',
  'wear_black_paid',
  'black_paid_dress',
  'paid_dress_fast',
  'dress_fast_forward',
  'fast_forward_wed',
  'forward_wed_day',
  'wed_day_everyon',
  'day_everyon_get',
  'everyon_get_hair',
  'get_hair_makeup',
  'hair_makeup_done',
  'makeup_done_kat',
  'done_kat_show',
  'kat_show_minut',
  'show_minut_late',
  'minut_late_hold',
  'late_hold_bag',
  'hold_bag_look',
  'bag_look_like',
  'look_like_dress',
  'like_dress_insid',
  'dress_insid_ask',
  'insid_ask_told',
  'ask_told_later',
  'told_later_recept',
  'later_recept_got',
  'recept_got_uncomfort',
  'got_uncomfort_want',
  'uncomfort_want_chang',
  'want_chang_pictur',
  'chang_pictur_like',
  'pictur_like_ok',
  'like_ok_cool',
  'ok_cool_fast',
  'cool_fast_forward',
  'fast_forward_dress',
  'forward_dress_walk',
  'dress_walk_stair',
  'walk_stair_ceremoni',
  'stair_ceremoni_begin',
  'ceremoni_begin_min',
  'begin_min_go',
  'min_go_take',
  'go_take_pictur',
  'take_pictur_kat',
  'pictur_kat_last',
  'kat_last_person',
  'last_person_come',
  'person_come_wear',
  'come_wear_black',
  'wear_black_dress',
  'black_dress_time',
  'dress_time_preoccupi',
  'time_preoccupi_take',
  'preoccupi_take_pictur',
  'take_pictur_parent',
  'pictur_parent_moh',
  'parent_moh_came',
  'moh_came_made',
  'came_made_awar',
  'made_awar_situat',
  'awar_situat_confront',
  'situat_confront_kat',
  'confront_kat_ask',
  'kat_ask_go',
  'ask_go_said',
  'go_said_hate',
  'said_hate_bridesmaid',
  'hate_bridesmaid_dress',
  'bridesmaid_dress_color',
  'dress_color_ugli',
  'color_ugli_make',
  'ugli_make_look',
  'make_look_gross',
  'look_gross_wear',
  'gross_wear_black',
  'wear_black_told',
  'black_told_pleas',
  'told_pleas_go',
  'pleas_go_back',
  'go_back_chang',
  'back_chang_refus',
  'chang_refus_start',
  'refus_start_walk',
  'start_walk_away',
  'walk_away_said',
  'away_said_im',
  'said_im_go',
  'im_go_ask',
  'go_ask_one',
  'ask_one_time',
  'one_time_oblig',
  'time_oblig_im',
  'oblig_im_call',
  'im_call_secur',
  'call_secur_kick',
  'secur_kick_began',
  'kick_began_yell',
  'began_yell_fuck',
  'yell_fuck_call',
  'fuck_call_secur',
  'call_secur_ask',
  'secur_ask_pleas',
  'ask_pleas_escort',
  'pleas_escort_start',
  'escort_start_make',
  'start_make_big',
  'make_big_scene',
  'big_scene_yell',
  'scene_yell_im',
  'yell_im_bitch',
  'im_bitch_cant',
  'bitch_cant_forc',
  'cant_forc_wear',
  'forc_wear_anyth',
  'wear_anyth_im',
  'anyth_im_horribl',
  'im_horribl_inconsider',
  'horribl_inconsider_friend',
  'inconsider_friend_wed',
  'friend_wed_went',
  'wed_went_truli',
  'went_truli_amaz',
  'truli_amaz_ever',
  'amaz_ever_sinc',
  'ever_sinc_wed',
  'sinc_wed_kat',
  'wed_kat_blow',
  'kat_blow_phone',
  'blow_phone_text',
  'phone_text_say',
  'text_say_realli',
  'say_realli_nasti',
  'realli_nasti_thing',
  'nasti_thing_ask',
  'thing_ask_money',
  'ask_money_back',
  'money_back_spent',
  'back_spent_black',
  'spent_black_dress',
  'black_dress_sinc',
  'dress_sinc_wast',
  'sinc_wast_get',
  'wast_get_wear',
  'get_wear_block',
  'wear_block_number',
  'block_number_bridesmaid',
  'number_bridesmaid_give',
  'bridesmaid_give_shit',
  'give_shit_say',
  'shit_say_littl',
  'say_littl_harsh',
  'littl_harsh_kick',
  'harsh_kick_embarrass',
  'kick_embarrass_like',
  'embarrass_like_mayb',
  'like_mayb_give',
  'mayb_give_money',
  'give_money_back',
  'money_back_aita',
  'back_aita_kick'],
 ['wife',
  'bought',
  'four',
  'bedroom',
  'hous',
  'pa',
  'son',
  'live',
  'son',
  'went',
  'colleg',
  'pa',
  'want',
  'stay',
  'area',
  'bought',
  'hous',
  'second',
  'home',
  'live',
  'nj',
  'commut',
  'manhattan',
  'work',
  'figur',
  'would',
  'place',
  'live',
  'could',
  'visit',
  'everi',
  'often',
  'spend',
  'qualiti',
  'time',
  'togeth',
  'pay',
  'tax',
  'servic',
  'mainten',
  'hous',
  'son',
  'pay',
  'groceri',
  'hous',
  'util',
  'go',
  'well',
  'year',
  'son',
  'meet',
  'girl',
  'get',
  'seriou',
  'met',
  'seem',
  'nice',
  'enough',
  'announc',
  'engag',
  'move',
  'hous',
  'son',
  'problem',
  'wed',
  'hold',
  'littl',
  'get',
  'know',
  'bbq',
  'pa',
  'hous',
  'son',
  'daughter',
  'son',
  'fiancé',
  'parent',
  'sister',
  'seem',
  'get',
  'along',
  'well',
  'wife',
  'daughter',
  'fiancé',
  'go',
  'hous',
  'along',
  'mother',
  'sister',
  'son',
  'minut',
  'later',
  'wife',
  'daughter',
  'come',
  'realli',
  'upset',
  'come',
  'tell',
  'leav',
  'drive',
  'back',
  'nj',
  'tri',
  'find',
  'happen',
  'get',
  'back',
  'nj',
  'calm',
  'tell',
  'son',
  'fiancé',
  'along',
  'famili',
  'want',
  'us',
  'wed',
  'accord',
  'told',
  'kind',
  'peopl',
  'livid',
  'call',
  'son',
  'ask',
  'wth',
  'tell',
  'famili',
  'feel',
  'good',
  'enough',
  'embarrass',
  'famili',
  'wed',
  'uninvit',
  'wed',
  'let',
  'week',
  'go',
  'calm',
  'drive',
  'back',
  'pa',
  'hous',
  'new',
  'futur',
  'in-law',
  'hous',
  'along',
  'fiancé',
  'appear',
  'move',
  'hous',
  'ask',
  'im',
  'tell',
  'sinc',
  'invit',
  'wed',
  'come',
  'talk',
  'son',
  'tell',
  'leav',
  'hous',
  'lost',
  'told',
  'day',
  'get',
  'tell',
  'son',
  'im',
  'sell',
  'hous',
  'could',
  'find',
  'somewher',
  'els',
  'live',
  'go',
  'realtor',
  'town',
  'list',
  'hous',
  'sale',
  'call',
  'son',
  'work',
  'tell',
  'said',
  'appar',
  'thought',
  'hous',
  'call',
  'ask',
  'im',
  'sell',
  'hous',
  'tell',
  'paid',
  'along',
  'tax',
  'mine',
  'live',
  'rent',
  'free',
  'sinc',
  'want',
  'us',
  'new',
  'life',
  'get',
  'tell',
  'told',
  'futur',
  'in-law',
  'day',
  'get',
  'ill',
  'get',
  'lawyer',
  'get',
  'evict',
  'ah',
  'take',
  'hard',
  'stanc',
  'son',
  'thein-law',
  'seem',
  'take',
  'longer',
  'count',
  'wife_bought',
  'bought_four',
  'four_bedroom',
  'bedroom_hous',
  'hous_pa',
  'pa_son',
  'son_live',
  'live_son',
  'son_went',
  'went_colleg',
  'colleg_pa',
  'pa_want',
  'want_stay',
  'stay_area',
  'area_bought',
  'bought_hous',
  'hous_second',
  'second_home',
  'home_live',
  'live_nj',
  'nj_commut',
  'commut_manhattan',
  'manhattan_work',
  'work_figur',
  'figur_would',
  'would_place',
  'place_live',
  'live_could',
  'could_visit',
  'visit_everi',
  'everi_often',
  'often_spend',
  'spend_qualiti',
  'qualiti_time',
  'time_togeth',
  'togeth_pay',
  'pay_tax',
  'tax_servic',
  'servic_mainten',
  'mainten_hous',
  'hous_son',
  'son_pay',
  'pay_groceri',
  'groceri_hous',
  'hous_util',
  'util_go',
  'go_well',
  'well_year',
  'year_son',
  'son_meet',
  'meet_girl',
  'girl_get',
  'get_seriou',
  'seriou_met',
  'met_seem',
  'seem_nice',
  'nice_enough',
  'enough_announc',
  'announc_engag',
  'engag_move',
  'move_hous',
  'hous_son',
  'son_problem',
  'problem_wed',
  'wed_hold',
  'hold_littl',
  'littl_get',
  'get_know',
  'know_bbq',
  'bbq_pa',
  'pa_hous',
  'hous_son',
  'son_daughter',
  'daughter_son',
  'son_fiancé',
  'fiancé_parent',
  'parent_sister',
  'sister_seem',
  'seem_get',
  'get_along',
  'along_well',
  'well_wife',
  'wife_daughter',
  'daughter_fiancé',
  'fiancé_go',
  'go_hous',
  'hous_along',
  'along_mother',
  'mother_sister',
  'sister_son',
  'son_minut',
  'minut_later',
  'later_wife',
  'wife_daughter',
  'daughter_come',
  'come_realli',
  'realli_upset',
  'upset_come',
  'come_tell',
  'tell_leav',
  'leav_drive',
  'drive_back',
  'back_nj',
  'nj_tri',
  'tri_find',
  'find_happen',
  'happen_get',
  'get_back',
  'back_nj',
  'nj_calm',
  'calm_tell',
  'tell_son',
  'son_fiancé',
  'fiancé_along',
  'along_famili',
  'famili_want',
  'want_us',
  'us_wed',
  'wed_accord',
  'accord_told',
  'told_kind',
  'kind_peopl',
  'peopl_livid',
  'livid_call',
  'call_son',
  'son_ask',
  'ask_wth',
  'wth_tell',
  'tell_famili',
  'famili_feel',
  'feel_good',
  'good_enough',
  'enough_embarrass',
  'embarrass_famili',
  'famili_wed',
  'wed_uninvit',
  'uninvit_wed',
  'wed_let',
  'let_week',
  'week_go',
  'go_calm',
  'calm_drive',
  'drive_back',
  'back_pa',
  'pa_hous',
  'hous_new',
  'new_futur',
  'futur_in-law',
  'in-law_hous',
  'hous_along',
  'along_fiancé',
  'fiancé_appear',
  'appear_move',
  'move_hous',
  'hous_ask',
  'ask_im',
  'im_tell',
  'tell_sinc',
  'sinc_invit',
  'invit_wed',
  'wed_come',
  'come_talk',
  'talk_son',
  'son_tell',
  'tell_leav',
  'leav_hous',
  'hous_lost',
  'lost_told',
  'told_day',
  'day_get',
  'get_tell',
  'tell_son',
  'son_im',
  'im_sell',
  'sell_hous',
  'hous_could',
  'could_find',
  'find_somewher',
  'somewher_els',
  'els_live',
  'live_go',
  'go_realtor',
  'realtor_town',
  'town_list',
  'list_hous',
  'hous_sale',
  'sale_call',
  'call_son',
  'son_work',
  'work_tell',
  'tell_said',
  'said_appar',
  'appar_thought',
  'thought_hous',
  'hous_call',
  'call_ask',
  'ask_im',
  'im_sell',
  'sell_hous',
  'hous_tell',
  'tell_paid',
  'paid_along',
  'along_tax',
  'tax_mine',
  'mine_live',
  'live_rent',
  'rent_free',
  'free_sinc',
  'sinc_want',
  'want_us',
  'us_new',
  'new_life',
  'life_get',
  'get_tell',
  'tell_told',
  'told_futur',
  'futur_in-law',
  'in-law_day',
  'day_get',
  'get_ill',
  'ill_get',
  'get_lawyer',
  'lawyer_get',
  'get_evict',
  'evict_ah',
  'ah_take',
  'take_hard',
  'hard_stanc',
  'stanc_son',
  'son_thein-law',
  'thein-law_seem',
  'seem_take',
  'take_longer',
  'longer_count',
  'wife_bought_four',
  'bought_four_bedroom',
  'four_bedroom_hous',
  'bedroom_hous_pa',
  'hous_pa_son',
  'pa_son_live',
  'son_live_son',
  'live_son_went',
  'son_went_colleg',
  'went_colleg_pa',
  'colleg_pa_want',
  'pa_want_stay',
  'want_stay_area',
  'stay_area_bought',
  'area_bought_hous',
  'bought_hous_second',
  'hous_second_home',
  'second_home_live',
  'home_live_nj',
  'live_nj_commut',
  'nj_commut_manhattan',
  'commut_manhattan_work',
  'manhattan_work_figur',
  'work_figur_would',
  'figur_would_place',
  'would_place_live',
  'place_live_could',
  'live_could_visit',
  'could_visit_everi',
  'visit_everi_often',
  'everi_often_spend',
  'often_spend_qualiti',
  'spend_qualiti_time',
  'qualiti_time_togeth',
  'time_togeth_pay',
  'togeth_pay_tax',
  'pay_tax_servic',
  'tax_servic_mainten',
  'servic_mainten_hous',
  'mainten_hous_son',
  'hous_son_pay',
  'son_pay_groceri',
  'pay_groceri_hous',
  'groceri_hous_util',
  'hous_util_go',
  'util_go_well',
  'go_well_year',
  'well_year_son',
  'year_son_meet',
  'son_meet_girl',
  'meet_girl_get',
  'girl_get_seriou',
  'get_seriou_met',
  'seriou_met_seem',
  'met_seem_nice',
  'seem_nice_enough',
  'nice_enough_announc',
  'enough_announc_engag',
  'announc_engag_move',
  'engag_move_hous',
  'move_hous_son',
  'hous_son_problem',
  'son_problem_wed',
  'problem_wed_hold',
  'wed_hold_littl',
  'hold_littl_get',
  'littl_get_know',
  'get_know_bbq',
  'know_bbq_pa',
  'bbq_pa_hous',
  'pa_hous_son',
  'hous_son_daughter',
  'son_daughter_son',
  'daughter_son_fiancé',
  'son_fiancé_parent',
  'fiancé_parent_sister',
  'parent_sister_seem',
  'sister_seem_get',
  'seem_get_along',
  'get_along_well',
  'along_well_wife',
  'well_wife_daughter',
  'wife_daughter_fiancé',
  'daughter_fiancé_go',
  'fiancé_go_hous',
  'go_hous_along',
  'hous_along_mother',
  'along_mother_sister',
  'mother_sister_son',
  'sister_son_minut',
  'son_minut_later',
  'minut_later_wife',
  'later_wife_daughter',
  'wife_daughter_come',
  'daughter_come_realli',
  'come_realli_upset',
  'realli_upset_come',
  'upset_come_tell',
  'come_tell_leav',
  'tell_leav_drive',
  'leav_drive_back',
  'drive_back_nj',
  'back_nj_tri',
  'nj_tri_find',
  'tri_find_happen',
  'find_happen_get',
  'happen_get_back',
  'get_back_nj',
  'back_nj_calm',
  'nj_calm_tell',
  'calm_tell_son',
  'tell_son_fiancé',
  'son_fiancé_along',
  'fiancé_along_famili',
  'along_famili_want',
  'famili_want_us',
  'want_us_wed',
  'us_wed_accord',
  'wed_accord_told',
  'accord_told_kind',
  'told_kind_peopl',
  'kind_peopl_livid',
  'peopl_livid_call',
  'livid_call_son',
  'call_son_ask',
  'son_ask_wth',
  'ask_wth_tell',
  'wth_tell_famili',
  'tell_famili_feel',
  'famili_feel_good',
  'feel_good_enough',
  'good_enough_embarrass',
  'enough_embarrass_famili',
  'embarrass_famili_wed',
  'famili_wed_uninvit',
  'wed_uninvit_wed',
  'uninvit_wed_let',
  'wed_let_week',
  'let_week_go',
  'week_go_calm',
  'go_calm_drive',
  'calm_drive_back',
  'drive_back_pa',
  'back_pa_hous',
  'pa_hous_new',
  'hous_new_futur',
  'new_futur_in-law',
  'futur_in-law_hous',
  'in-law_hous_along',
  'hous_along_fiancé',
  'along_fiancé_appear',
  'fiancé_appear_move',
  'appear_move_hous',
  'move_hous_ask',
  'hous_ask_im',
  'ask_im_tell',
  'im_tell_sinc',
  'tell_sinc_invit',
  'sinc_invit_wed',
  'invit_wed_come',
  'wed_come_talk',
  'come_talk_son',
  'talk_son_tell',
  'son_tell_leav',
  'tell_leav_hous',
  'leav_hous_lost',
  'hous_lost_told',
  'lost_told_day',
  'told_day_get',
  'day_get_tell',
  'get_tell_son',
  'tell_son_im',
  'son_im_sell',
  'im_sell_hous',
  'sell_hous_could',
  'hous_could_find',
  'could_find_somewher',
  'find_somewher_els',
  'somewher_els_live',
  'els_live_go',
  'live_go_realtor',
  'go_realtor_town',
  'realtor_town_list',
  'town_list_hous',
  'list_hous_sale',
  'hous_sale_call',
  'sale_call_son',
  'call_son_work',
  'son_work_tell',
  'work_tell_said',
  'tell_said_appar',
  'said_appar_thought',
  'appar_thought_hous',
  'thought_hous_call',
  'hous_call_ask',
  'call_ask_im',
  'ask_im_sell',
  'im_sell_hous',
  'sell_hous_tell',
  'hous_tell_paid',
  'tell_paid_along',
  'paid_along_tax',
  'along_tax_mine',
  'tax_mine_live',
  'mine_live_rent',
  'live_rent_free',
  'rent_free_sinc',
  'free_sinc_want',
  'sinc_want_us',
  'want_us_new',
  'us_new_life',
  'new_life_get',
  'life_get_tell',
  'get_tell_told',
  'tell_told_futur',
  'told_futur_in-law',
  'futur_in-law_day',
  'in-law_day_get',
  'day_get_ill',
  'get_ill_get',
  'ill_get_lawyer',
  'get_lawyer_get',
  'lawyer_get_evict',
  'get_evict_ah',
  'evict_ah_take',
  'ah_take_hard',
  'take_hard_stanc',
  'hard_stanc_son',
  'stanc_son_thein-law',
  'son_thein-law_seem',
  'thein-law_seem_take',
  'seem_take_longer',
  'take_longer_count'],
 ['dad',
  'pass',
  'away',
  'week',
  'ago',
  'wife',
  'candac',
  'daughter',
  'shiloh',
  'stepsist',
  '&',
  'flew',
  'hometown',
  'attend',
  'funer',
  'got',
  'hotel',
  'room',
  'one',
  'candac',
  'one',
  'girl',
  'room',
  'got',
  'call',
  'shiloh',
  'pm',
  'cri',
  'sound',
  'like',
  'argu',
  'stepsist',
  'ask',
  'matter',
  'told',
  'stepsist',
  'insist',
  'sleep',
  'floor',
  'one',
  'larg',
  'bed',
  'room',
  'enough',
  'space',
  'girl',
  'sleep',
  'ask',
  'said',
  'know',
  'went',
  'see',
  'issu',
  'talk',
  'stepdaught',
  'kept',
  'talk',
  'realli',
  'explain',
  'told',
  'sleep',
  'floor',
  'shrug',
  'said',
  'better',
  'waywer',
  'comfort',
  'way',
  'told',
  'shiloh',
  'grab',
  'thing',
  'one',
  'stepdaught',
  'ask',
  'go',
  'told',
  'book',
  'hotel',
  'room',
  'look',
  'upset',
  'say',
  'anyth',
  'mustv',
  'call',
  'mom',
  'awak',
  'got',
  'back',
  'start',
  'argu',
  'give',
  'shiloh',
  'entir',
  'hotel',
  'room',
  'explain',
  'said',
  'wast',
  'money',
  'shiloh',
  'couldv',
  'suck',
  'one',
  'night',
  'floor',
  'call',
  'unreason',
  'say',
  'told',
  'show',
  'girl',
  'im',
  'play',
  'favorit',
  'made',
  'stepdaught',
  'share',
  'room',
  'gave',
  'daughter',
  'entir',
  'room',
  'went',
  'home',
  'candac',
  'still',
  'bring',
  'say',
  'mishandl',
  'even',
  'point',
  'stepdaught',
  'upset',
  'sinc',
  'theyr',
  'speak',
  'eta',
  'candac',
  'got',
  'room',
  'girl',
  'stir',
  'drama',
  'save',
  'money',
  'charg',
  'hotel',
  'reserv',
  'sinc',
  'emotionali',
  'distress',
  'also',
  'candac',
  'expect',
  'shiloh',
  'sleep',
  'floor',
  'want',
  'girl',
  'share',
  'bed',
  'eta',
  'call',
  'ah',
  'give',
  'daughter',
  'name',
  'mom',
  'deceas',
  'pleas',
  'let',
  'focu',
  'also',
  'ive',
  'known',
  'stepdaught',
  'sinc',
  'littl',
  'pretti',
  'much',
  'famili',
  'candac',
  'sahm',
  'give',
  'full',
  'access',
  'money',
  'sinc',
  'stuff',
  'alreadi',
  'discuss',
  'hand',
  'pretti',
  'much',
  'everyth',
  'dad_pass',
  'pass_away',
  'away_week',
  'week_ago',
  'ago_wife',
  'wife_candac',
  'candac_daughter',
  'daughter_shiloh',
  'shiloh_stepsist',
  'stepsist_&',
  '&_flew',
  'flew_hometown',
  'hometown_attend',
  'attend_funer',
  'funer_got',
  'got_hotel',
  'hotel_room',
  'room_one',
  'one_candac',
  'candac_one',
  'one_girl',
  'girl_room',
  'room_got',
  'got_call',
  'call_shiloh',
  'shiloh_pm',
  'pm_cri',
  'cri_sound',
  'sound_like',
  'like_argu',
  'argu_stepsist',
  'stepsist_ask',
  'ask_matter',
  'matter_told',
  'told_stepsist',
  'stepsist_insist',
  'insist_sleep',
  'sleep_floor',
  'floor_one',
  'one_larg',
  'larg_bed',
  'bed_room',
  'room_enough',
  'enough_space',
  'space_girl',
  'girl_sleep',
  'sleep_ask',
  'ask_said',
  'said_know',
  'know_went',
  'went_see',
  'see_issu',
  'issu_talk',
  'talk_stepdaught',
  'stepdaught_kept',
  'kept_talk',
  'talk_realli',
  'realli_explain',
  'explain_told',
  'told_sleep',
  'sleep_floor',
  'floor_shrug',
  'shrug_said',
  'said_better',
  'better_waywer',
  'waywer_comfort',
  'comfort_way',
  'way_told',
  'told_shiloh',
  'shiloh_grab',
  'grab_thing',
  'thing_one',
  'one_stepdaught',
  'stepdaught_ask',
  'ask_go',
  'go_told',
  'told_book',
  'book_hotel',
  'hotel_room',
  'room_look',
  'look_upset',
  'upset_say',
  'say_anyth',
  'anyth_mustv',
  'mustv_call',
  'call_mom',
  'mom_awak',
  'awak_got',
  'got_back',
  'back_start',
  'start_argu',
  'argu_give',
  'give_shiloh',
  'shiloh_entir',
  'entir_hotel',
  'hotel_room',
  'room_explain',
  'explain_said',
  'said_wast',
  'wast_money',
  'money_shiloh',
  'shiloh_couldv',
  'couldv_suck',
  'suck_one',
  'one_night',
  'night_floor',
  'floor_call',
  'call_unreason',
  'unreason_say',
  'say_told',
  'told_show',
  'show_girl',
  'girl_im',
  'im_play',
  'play_favorit',
  'favorit_made',
  'made_stepdaught',
  'stepdaught_share',
  'share_room',
  'room_gave',
  'gave_daughter',
  'daughter_entir',
  'entir_room',
  'room_went',
  'went_home',
  'home_candac',
  'candac_still',
  'still_bring',
  'bring_say',
  'say_mishandl',
  'mishandl_even',
  'even_point',
  'point_stepdaught',
  'stepdaught_upset',
  'upset_sinc',
  'sinc_theyr',
  'theyr_speak',
  'speak_eta',
  'eta_candac',
  'candac_got',
  'got_room',
  'room_girl',
  'girl_stir',
  'stir_drama',
  'drama_save',
  'save_money',
  'money_charg',
  'charg_hotel',
  'hotel_reserv',
  'reserv_sinc',
  'sinc_emotionali',
  'emotionali_distress',
  'distress_also',
  'also_candac',
  'candac_expect',
  'expect_shiloh',
  'shiloh_sleep',
  'sleep_floor',
  'floor_want',
  'want_girl',
  'girl_share',
  'share_bed',
  'bed_eta',
  'eta_call',
  'call_ah',
  'ah_give',
  'give_daughter',
  'daughter_name',
  'name_mom',
  'mom_deceas',
  'deceas_pleas',
  'pleas_let',
  'let_focu',
  'focu_also',
  'also_ive',
  'ive_known',
  'known_stepdaught',
  'stepdaught_sinc',
  'sinc_littl',
  'littl_pretti',
  'pretti_much',
  'much_famili',
  'famili_candac',
  'candac_sahm',
  'sahm_give',
  'give_full',
  'full_access',
  'access_money',
  'money_sinc',
  'sinc_stuff',
  'stuff_alreadi',
  'alreadi_discuss',
  'discuss_hand',
  'hand_pretti',
  'pretti_much',
  'much_everyth',
  'dad_pass_away',
  'pass_away_week',
  'away_week_ago',
  'week_ago_wife',
  'ago_wife_candac',
  'wife_candac_daughter',
  'candac_daughter_shiloh',
  'daughter_shiloh_stepsist',
  'shiloh_stepsist_&',
  'stepsist_&_flew',
  '&_flew_hometown',
  'flew_hometown_attend',
  'hometown_attend_funer',
  'attend_funer_got',
  'funer_got_hotel',
  'got_hotel_room',
  'hotel_room_one',
  'room_one_candac',
  'one_candac_one',
  'candac_one_girl',
  'one_girl_room',
  'girl_room_got',
  'room_got_call',
  'got_call_shiloh',
  'call_shiloh_pm',
  'shiloh_pm_cri',
  'pm_cri_sound',
  'cri_sound_like',
  'sound_like_argu',
  'like_argu_stepsist',
  'argu_stepsist_ask',
  'stepsist_ask_matter',
  'ask_matter_told',
  'matter_told_stepsist',
  'told_stepsist_insist',
  'stepsist_insist_sleep',
  'insist_sleep_floor',
  'sleep_floor_one',
  'floor_one_larg',
  'one_larg_bed',
  'larg_bed_room',
  'bed_room_enough',
  'room_enough_space',
  'enough_space_girl',
  'space_girl_sleep',
  'girl_sleep_ask',
  'sleep_ask_said',
  'ask_said_know',
  'said_know_went',
  'know_went_see',
  'went_see_issu',
  'see_issu_talk',
  'issu_talk_stepdaught',
  'talk_stepdaught_kept',
  'stepdaught_kept_talk',
  'kept_talk_realli',
  'talk_realli_explain',
  'realli_explain_told',
  'explain_told_sleep',
  'told_sleep_floor',
  'sleep_floor_shrug',
  'floor_shrug_said',
  'shrug_said_better',
  'said_better_waywer',
  'better_waywer_comfort',
  'waywer_comfort_way',
  'comfort_way_told',
  'way_told_shiloh',
  'told_shiloh_grab',
  'shiloh_grab_thing',
  'grab_thing_one',
  'thing_one_stepdaught',
  'one_stepdaught_ask',
  'stepdaught_ask_go',
  'ask_go_told',
  'go_told_book',
  'told_book_hotel',
  'book_hotel_room',
  'hotel_room_look',
  'room_look_upset',
  'look_upset_say',
  'upset_say_anyth',
  'say_anyth_mustv',
  'anyth_mustv_call',
  'mustv_call_mom',
  'call_mom_awak',
  'mom_awak_got',
  'awak_got_back',
  'got_back_start',
  'back_start_argu',
  'start_argu_give',
  'argu_give_shiloh',
  'give_shiloh_entir',
  'shiloh_entir_hotel',
  'entir_hotel_room',
  'hotel_room_explain',
  'room_explain_said',
  'explain_said_wast',
  'said_wast_money',
  'wast_money_shiloh',
  'money_shiloh_couldv',
  'shiloh_couldv_suck',
  'couldv_suck_one',
  'suck_one_night',
  'one_night_floor',
  'night_floor_call',
  'floor_call_unreason',
  'call_unreason_say',
  'unreason_say_told',
  'say_told_show',
  'told_show_girl',
  'show_girl_im',
  'girl_im_play',
  'im_play_favorit',
  'play_favorit_made',
  'favorit_made_stepdaught',
  'made_stepdaught_share',
  'stepdaught_share_room',
  'share_room_gave',
  'room_gave_daughter',
  'gave_daughter_entir',
  'daughter_entir_room',
  'entir_room_went',
  'room_went_home',
  'went_home_candac',
  'home_candac_still',
  'candac_still_bring',
  'still_bring_say',
  'bring_say_mishandl',
  'say_mishandl_even',
  'mishandl_even_point',
  'even_point_stepdaught',
  'point_stepdaught_upset',
  'stepdaught_upset_sinc',
  'upset_sinc_theyr',
  'sinc_theyr_speak',
  'theyr_speak_eta',
  'speak_eta_candac',
  'eta_candac_got',
  'candac_got_room',
  'got_room_girl',
  'room_girl_stir',
  'girl_stir_drama',
  'stir_drama_save',
  'drama_save_money',
  'save_money_charg',
  'money_charg_hotel',
  'charg_hotel_reserv',
  'hotel_reserv_sinc',
  'reserv_sinc_emotionali',
  'sinc_emotionali_distress',
  'emotionali_distress_also',
  'distress_also_candac',
  'also_candac_expect',
  'candac_expect_shiloh',
  'expect_shiloh_sleep',
  'shiloh_sleep_floor',
  'sleep_floor_want',
  'floor_want_girl',
  'want_girl_share',
  'girl_share_bed',
  'share_bed_eta',
  'bed_eta_call',
  'eta_call_ah',
  'call_ah_give',
  'ah_give_daughter',
  'give_daughter_name',
  'daughter_name_mom',
  'name_mom_deceas',
  'mom_deceas_pleas',
  'deceas_pleas_let',
  'pleas_let_focu',
  'let_focu_also',
  'focu_also_ive',
  'also_ive_known',
  'ive_known_stepdaught',
  'known_stepdaught_sinc',
  'stepdaught_sinc_littl',
  'sinc_littl_pretti',
  'littl_pretti_much',
  'pretti_much_famili',
  'much_famili_candac',
  'famili_candac_sahm',
  'candac_sahm_give',
  'sahm_give_full',
  'give_full_access',
  'full_access_money',
  'access_money_sinc',
  'money_sinc_stuff',
  'sinc_stuff_alreadi',
  'stuff_alreadi_discuss',
  'alreadi_discuss_hand',
  'discuss_hand_pretti',
  'hand_pretti_much',
  'pretti_much_everyth'],
 ['short',
  'one',
  'name',
  'chang',
  'privaci',
  'went',
  'tattoo',
  'shop',
  'area',
  'photo',
  'tattoo',
  'want',
  'one',
  'dad',
  'gotten',
  'honor',
  'pass',
  'grandfath',
  'father',
  'also',
  'point',
  '-',
  'import',
  'tattoo',
  'look',
  'exactli',
  'photo',
  'get',
  'shop',
  'explain',
  'everyth',
  'pay',
  'get',
  'tattoo',
  'done',
  'think',
  'look',
  'awesom',
  'everyth',
  'great',
  'week',
  'later',
  'show',
  'great',
  'grandmoth',
  'tattoo',
  'static',
  'grab',
  'arm',
  'look',
  'compliment',
  'ask',
  'aj',
  'ask',
  'mean',
  'point',
  'tattoo',
  'initi',
  'mayb',
  'hidden',
  'tattoo',
  'im',
  'instantli',
  'piss',
  'artist',
  'name',
  'alic',
  'trever',
  'tri',
  'assur',
  'big',
  'deal',
  'notic',
  'til',
  'still',
  'reach',
  'artist',
  'sort',
  'irrit',
  'told',
  'style',
  'art',
  'got',
  'call',
  'tradit',
  'pretti',
  'trad',
  'artist',
  'style',
  'demand',
  'partial',
  'refund',
  'refus',
  'complain',
  'owner',
  'made',
  'artist',
  'give',
  'full',
  'refund',
  'artist',
  'run',
  'full',
  'smear',
  'campaign',
  'talk',
  'move',
  'shop',
  'kind',
  'crap',
  'sister',
  'say',
  'im',
  'asshol',
  'push',
  'issu',
  'feel',
  'like',
  'end',
  'day',
  'told',
  'exactli',
  'want',
  'aita',
  'short_one',
  'one_name',
  'name_chang',
  'chang_privaci',
  'privaci_went',
  'went_tattoo',
  'tattoo_shop',
  'shop_area',
  'area_photo',
  'photo_tattoo',
  'tattoo_want',
  'want_one',
  'one_dad',
  'dad_gotten',
  'gotten_honor',
  'honor_pass',
  'pass_grandfath',
  'grandfath_father',
  'father_also',
  'also_point',
  'point_-',
  '-_import',
  'import_tattoo',
  'tattoo_look',
  'look_exactli',
  'exactli_photo',
  'photo_get',
  'get_shop',
  'shop_explain',
  'explain_everyth',
  'everyth_pay',
  'pay_get',
  'get_tattoo',
  'tattoo_done',
  'done_think',
  'think_look',
  'look_awesom',
  'awesom_everyth',
  'everyth_great',
  'great_week',
  'week_later',
  'later_show',
  'show_great',
  'great_grandmoth',
  'grandmoth_tattoo',
  'tattoo_static',
  'static_grab',
  'grab_arm',
  'arm_look',
  'look_compliment',
  'compliment_ask',
  'ask_aj',
  'aj_ask',
  'ask_mean',
  'mean_point',
  'point_tattoo',
  'tattoo_initi',
  'initi_mayb',
  'mayb_hidden',
  'hidden_tattoo',
  'tattoo_im',
  'im_instantli',
  'instantli_piss',
  'piss_artist',
  'artist_name',
  'name_alic',
  'alic_trever',
  'trever_tri',
  'tri_assur',
  'assur_big',
  'big_deal',
  'deal_notic',
  'notic_til',
  'til_still',
  'still_reach',
  'reach_artist',
  'artist_sort',
  'sort_irrit',
  'irrit_told',
  'told_style',
  'style_art',
  'art_got',
  'got_call',
  'call_tradit',
  'tradit_pretti',
  'pretti_trad',
  'trad_artist',
  'artist_style',
  'style_demand',
  'demand_partial',
  'partial_refund',
  'refund_refus',
  'refus_complain',
  'complain_owner',
  'owner_made',
  'made_artist',
  'artist_give',
  'give_full',
  'full_refund',
  'refund_artist',
  'artist_run',
  'run_full',
  'full_smear',
  'smear_campaign',
  'campaign_talk',
  'talk_move',
  'move_shop',
  'shop_kind',
  'kind_crap',
  'crap_sister',
  'sister_say',
  'say_im',
  'im_asshol',
  'asshol_push',
  'push_issu',
  'issu_feel',
  'feel_like',
  'like_end',
  'end_day',
  'day_told',
  'told_exactli',
  'exactli_want',
  'want_aita',
  'short_one_name',
  'one_name_chang',
  'name_chang_privaci',
  'chang_privaci_went',
  'privaci_went_tattoo',
  'went_tattoo_shop',
  'tattoo_shop_area',
  'shop_area_photo',
  'area_photo_tattoo',
  'photo_tattoo_want',
  'tattoo_want_one',
  'want_one_dad',
  'one_dad_gotten',
  'dad_gotten_honor',
  'gotten_honor_pass',
  'honor_pass_grandfath',
  'pass_grandfath_father',
  'grandfath_father_also',
  'father_also_point',
  'also_point_-',
  'point_-_import',
  '-_import_tattoo',
  'import_tattoo_look',
  'tattoo_look_exactli',
  'look_exactli_photo',
  'exactli_photo_get',
  'photo_get_shop',
  'get_shop_explain',
  'shop_explain_everyth',
  'explain_everyth_pay',
  'everyth_pay_get',
  'pay_get_tattoo',
  'get_tattoo_done',
  'tattoo_done_think',
  'done_think_look',
  'think_look_awesom',
  'look_awesom_everyth',
  'awesom_everyth_great',
  'everyth_great_week',
  'great_week_later',
  'week_later_show',
  'later_show_great',
  'show_great_grandmoth',
  'great_grandmoth_tattoo',
  'grandmoth_tattoo_static',
  'tattoo_static_grab',
  'static_grab_arm',
  'grab_arm_look',
  'arm_look_compliment',
  'look_compliment_ask',
  'compliment_ask_aj',
  'ask_aj_ask',
  'aj_ask_mean',
  'ask_mean_point',
  'mean_point_tattoo',
  'point_tattoo_initi',
  'tattoo_initi_mayb',
  'initi_mayb_hidden',
  'mayb_hidden_tattoo',
  'hidden_tattoo_im',
  'tattoo_im_instantli',
  'im_instantli_piss',
  'instantli_piss_artist',
  'piss_artist_name',
  'artist_name_alic',
  'name_alic_trever',
  'alic_trever_tri',
  'trever_tri_assur',
  'tri_assur_big',
  'assur_big_deal',
  'big_deal_notic',
  'deal_notic_til',
  'notic_til_still',
  'til_still_reach',
  'still_reach_artist',
  'reach_artist_sort',
  'artist_sort_irrit',
  'sort_irrit_told',
  'irrit_told_style',
  'told_style_art',
  'style_art_got',
  'art_got_call',
  'got_call_tradit',
  'call_tradit_pretti',
  'tradit_pretti_trad',
  'pretti_trad_artist',
  'trad_artist_style',
  'artist_style_demand',
  'style_demand_partial',
  'demand_partial_refund',
  'partial_refund_refus',
  'refund_refus_complain',
  'refus_complain_owner',
  'complain_owner_made',
  'owner_made_artist',
  'made_artist_give',
  'artist_give_full',
  'give_full_refund',
  'full_refund_artist',
  'refund_artist_run',
  'artist_run_full',
  'run_full_smear',
  'full_smear_campaign',
  'smear_campaign_talk',
  'campaign_talk_move',
  'talk_move_shop',
  'move_shop_kind',
  'shop_kind_crap',
  'kind_crap_sister',
  'crap_sister_say',
  'sister_say_im',
  'say_im_asshol',
  'im_asshol_push',
  'asshol_push_issu',
  'push_issu_feel',
  'issu_feel_like',
  'feel_like_end',
  'like_end_day',
  'end_day_told',
  'day_told_exactli',
  'told_exactli_want',
  'exactli_want_aita'],
 ['*',
  '*',
  'eta',
  '*',
  '*',
  'may',
  'confus',
  'gf',
  'reaction',
  'asham',
  'famili',
  'dug',
  'deep',
  'respons',
  'want',
  'die',
  'next',
  'hour',
  'agre',
  'right',
  'thing',
  'funni',
  'backstori',
  'due',
  'dad',
  'job',
  'live',
  'itali',
  'year',
  'younger',
  'speak',
  'italian',
  'almost',
  'fluentli',
  'awhil',
  'ive',
  'lost',
  '&',
  'xb',
  'recent',
  'start',
  'date',
  'girl',
  'great',
  'love',
  'much',
  'met',
  'famili',
  'night',
  'ago',
  'dinner',
  'warn',
  'male',
  'side',
  'famili',
  'big',
  'macho',
  'test',
  'boy',
  'women',
  'date',
  'big',
  'take',
  'pride',
  'italian',
  'ancestri',
  'think',
  'besid',
  'grandfath',
  'howev',
  'almost',
  'born',
  'bergen',
  'counti',
  'nj',
  'whatev',
  'nice',
  'take',
  'pride',
  'one',
  'heritag',
  '&',
  'xb',
  'long',
  'stori',
  'short',
  'dinner',
  'kept',
  'make',
  'joke',
  'expens',
  'honestli',
  'would',
  'call',
  'bulli',
  'thing',
  'height',
  'beard',
  'shave',
  'head',
  'tri',
  'make',
  'fun',
  'job',
  'stop',
  'told',
  'incom',
  'overal',
  'bad',
  'experi',
  'pleasant',
  'one',
  'anyway',
  'older',
  'brother',
  'kept',
  'push',
  'thing',
  'give',
  'except',
  'amount',
  'shit',
  'play',
  'lacross',
  'hs',
  'appar',
  'sport',
  'prissi',
  'rich',
  'kid',
  'manli',
  'like',
  'footbal',
  'basebal',
  'end',
  'rant',
  'say',
  'hey',
  'big',
  'italian',
  'famili',
  'loud',
  'tell',
  'see',
  'hahaha',
  'famili',
  'except',
  'girlfriend',
  'laugh',
  'next',
  'minut',
  'respond',
  'everyth',
  'said',
  'italian',
  'girlfriend',
  'buri',
  'head',
  'shame',
  'grandfath',
  'laugh',
  'everyon',
  'els',
  'kept',
  'look',
  'confus',
  'tell',
  'speak',
  'italian',
  'repli',
  'use',
  'italian',
  'heritag',
  'excus',
  'behav',
  'poorli',
  'cant',
  'even',
  'speak',
  'languag',
  'got',
  'mad',
  'grandfath',
  'told',
  'right',
  'quiet',
  '&',
  'xb',
  'girlfriend',
  'mad',
  'asham',
  'think',
  'grandfath',
  'like',
  'word',
  'gf',
  'sister',
  'men',
  'furiou',
  'think',
  'im',
  'smart',
  'ass',
  'disrespect',
  'masculin',
  'unforgiv',
  'way',
  'aita',
  '*_*',
  '*_eta',
  'eta_*',
  '*_*',
  '*_may',
  'may_confus',
  'confus_gf',
  'gf_reaction',
  'reaction_asham',
  'asham_famili',
  'famili_dug',
  'dug_deep',
  'deep_respons',
  'respons_want',
  'want_die',
  'die_next',
  'next_hour',
  'hour_agre',
  'agre_right',
  'right_thing',
  'thing_funni',
  'funni_backstori',
  'backstori_due',
  'due_dad',
  'dad_job',
  'job_live',
  'live_itali',
  'itali_year',
  'year_younger',
  'younger_speak',
  'speak_italian',
  'italian_almost',
  'almost_fluentli',
  'fluentli_awhil',
  'awhil_ive',
  'ive_lost',
  'lost_&',
  '&_xb',
  'xb_recent',
  'recent_start',
  'start_date',
  'date_girl',
  'girl_great',
  'great_love',
  'love_much',
  'much_met',
  'met_famili',
  'famili_night',
  'night_ago',
  'ago_dinner',
  'dinner_warn',
  'warn_male',
  'male_side',
  'side_famili',
  'famili_big',
  'big_macho',
  'macho_test',
  'test_boy',
  'boy_women',
  'women_date',
  'date_big',
  'big_take',
  'take_pride',
  'pride_italian',
  'italian_ancestri',
  'ancestri_think',
  'think_besid',
  'besid_grandfath',
  'grandfath_howev',
  'howev_almost',
  'almost_born',
  'born_bergen',
  'bergen_counti',
  'counti_nj',
  'nj_whatev',
  'whatev_nice',
  'nice_take',
  'take_pride',
  'pride_one',
  'one_heritag',
  'heritag_&',
  '&_xb',
  'xb_long',
  'long_stori',
  'stori_short',
  'short_dinner',
  'dinner_kept',
  'kept_make',
  'make_joke',
  'joke_expens',
  'expens_honestli',
  'honestli_would',
  'would_call',
  'call_bulli',
  'bulli_thing',
  'thing_height',
  'height_beard',
  'beard_shave',
  'shave_head',
  'head_tri',
  'tri_make',
  'make_fun',
  'fun_job',
  'job_stop',
  'stop_told',
  'told_incom',
  'incom_overal',
  'overal_bad',
  'bad_experi',
  'experi_pleasant',
  'pleasant_one',
  'one_anyway',
  'anyway_older',
  'older_brother',
  'brother_kept',
  'kept_push',
  'push_thing',
  'thing_give',
  'give_except',
  'except_amount',
  'amount_shit',
  'shit_play',
  'play_lacross',
  'lacross_hs',
  'hs_appar',
  'appar_sport',
  'sport_prissi',
  'prissi_rich',
  'rich_kid',
  'kid_manli',
  'manli_like',
  'like_footbal',
  'footbal_basebal',
  'basebal_end',
  'end_rant',
  'rant_say',
  'say_hey',
  'hey_big',
  'big_italian',
  'italian_famili',
  'famili_loud',
  'loud_tell',
  'tell_see',
  'see_hahaha',
  'hahaha_famili',
  'famili_except',
  'except_girlfriend',
  'girlfriend_laugh',
  'laugh_next',
  'next_minut',
  'minut_respond',
  'respond_everyth',
  'everyth_said',
  'said_italian',
  'italian_girlfriend',
  'girlfriend_buri',
  'buri_head',
  'head_shame',
  'shame_grandfath',
  'grandfath_laugh',
  'laugh_everyon',
  'everyon_els',
  'els_kept',
  'kept_look',
  'look_confus',
  'confus_tell',
  'tell_speak',
  'speak_italian',
  'italian_repli',
  'repli_use',
  'use_italian',
  'italian_heritag',
  'heritag_excus',
  'excus_behav',
  'behav_poorli',
  'poorli_cant',
  'cant_even',
  'even_speak',
  'speak_languag',
  'languag_got',
  'got_mad',
  'mad_grandfath',
  'grandfath_told',
  'told_right',
  'right_quiet',
  'quiet_&',
  '&_xb',
  'xb_girlfriend',
  'girlfriend_mad',
  'mad_asham',
  'asham_think',
  'think_grandfath',
  'grandfath_like',
  'like_word',
  'word_gf',
  'gf_sister',
  'sister_men',
  'men_furiou',
  'furiou_think',
  'think_im',
  'im_smart',
  'smart_ass',
  'ass_disrespect',
  'disrespect_masculin',
  'masculin_unforgiv',
  'unforgiv_way',
  'way_aita',
  '*_*_eta',
  '*_eta_*',
  'eta_*_*',
  '*_*_may',
  '*_may_confus',
  'may_confus_gf',
  'confus_gf_reaction',
  'gf_reaction_asham',
  'reaction_asham_famili',
  'asham_famili_dug',
  'famili_dug_deep',
  'dug_deep_respons',
  'deep_respons_want',
  'respons_want_die',
  'want_die_next',
  'die_next_hour',
  'next_hour_agre',
  'hour_agre_right',
  'agre_right_thing',
  'right_thing_funni',
  'thing_funni_backstori',
  'funni_backstori_due',
  'backstori_due_dad',
  'due_dad_job',
  'dad_job_live',
  'job_live_itali',
  'live_itali_year',
  'itali_year_younger',
  'year_younger_speak',
  'younger_speak_italian',
  'speak_italian_almost',
  'italian_almost_fluentli',
  'almost_fluentli_awhil',
  'fluentli_awhil_ive',
  'awhil_ive_lost',
  'ive_lost_&',
  'lost_&_xb',
  '&_xb_recent',
  'xb_recent_start',
  'recent_start_date',
  'start_date_girl',
  'date_girl_great',
  'girl_great_love',
  'great_love_much',
  'love_much_met',
  'much_met_famili',
  'met_famili_night',
  'famili_night_ago',
  'night_ago_dinner',
  'ago_dinner_warn',
  'dinner_warn_male',
  'warn_male_side',
  'male_side_famili',
  'side_famili_big',
  'famili_big_macho',
  'big_macho_test',
  'macho_test_boy',
  'test_boy_women',
  'boy_women_date',
  'women_date_big',
  'date_big_take',
  'big_take_pride',
  'take_pride_italian',
  'pride_italian_ancestri',
  'italian_ancestri_think',
  'ancestri_think_besid',
  'think_besid_grandfath',
  'besid_grandfath_howev',
  'grandfath_howev_almost',
  'howev_almost_born',
  'almost_born_bergen',
  'born_bergen_counti',
  'bergen_counti_nj',
  'counti_nj_whatev',
  'nj_whatev_nice',
  'whatev_nice_take',
  'nice_take_pride',
  'take_pride_one',
  'pride_one_heritag',
  'one_heritag_&',
  'heritag_&_xb',
  '&_xb_long',
  'xb_long_stori',
  'long_stori_short',
  'stori_short_dinner',
  'short_dinner_kept',
  'dinner_kept_make',
  'kept_make_joke',
  'make_joke_expens',
  'joke_expens_honestli',
  'expens_honestli_would',
  'honestli_would_call',
  'would_call_bulli',
  'call_bulli_thing',
  'bulli_thing_height',
  'thing_height_beard',
  'height_beard_shave',
  'beard_shave_head',
  'shave_head_tri',
  'head_tri_make',
  'tri_make_fun',
  'make_fun_job',
  'fun_job_stop',
  'job_stop_told',
  'stop_told_incom',
  'told_incom_overal',
  'incom_overal_bad',
  'overal_bad_experi',
  'bad_experi_pleasant',
  'experi_pleasant_one',
  'pleasant_one_anyway',
  'one_anyway_older',
  'anyway_older_brother',
  'older_brother_kept',
  'brother_kept_push',
  'kept_push_thing',
  'push_thing_give',
  'thing_give_except',
  'give_except_amount',
  'except_amount_shit',
  'amount_shit_play',
  'shit_play_lacross',
  'play_lacross_hs',
  'lacross_hs_appar',
  'hs_appar_sport',
  'appar_sport_prissi',
  'sport_prissi_rich',
  'prissi_rich_kid',
  'rich_kid_manli',
  'kid_manli_like',
  'manli_like_footbal',
  'like_footbal_basebal',
  'footbal_basebal_end',
  'basebal_end_rant',
  'end_rant_say',
  'rant_say_hey',
  'say_hey_big',
  'hey_big_italian',
  'big_italian_famili',
  'italian_famili_loud',
  'famili_loud_tell',
  'loud_tell_see',
  'tell_see_hahaha',
  'see_hahaha_famili',
  'hahaha_famili_except',
  'famili_except_girlfriend',
  'except_girlfriend_laugh',
  'girlfriend_laugh_next',
  'laugh_next_minut',
  'next_minut_respond',
  'minut_respond_everyth',
  'respond_everyth_said',
  'everyth_said_italian',
  'said_italian_girlfriend',
  'italian_girlfriend_buri',
  'girlfriend_buri_head',
  'buri_head_shame',
  'head_shame_grandfath',
  'shame_grandfath_laugh',
  'grandfath_laugh_everyon',
  'laugh_everyon_els',
  'everyon_els_kept',
  'els_kept_look',
  'kept_look_confus',
  'look_confus_tell',
  'confus_tell_speak',
  'tell_speak_italian',
  'speak_italian_repli',
  'italian_repli_use',
  'repli_use_italian',
  'use_italian_heritag',
  'italian_heritag_excus',
  'heritag_excus_behav',
  'excus_behav_poorli',
  'behav_poorli_cant',
  'poorli_cant_even',
  'cant_even_speak',
  'even_speak_languag',
  'speak_languag_got',
  'languag_got_mad',
  'got_mad_grandfath',
  'mad_grandfath_told',
  'grandfath_told_right',
  'told_right_quiet',
  'right_quiet_&',
  'quiet_&_xb',
  '&_xb_girlfriend',
  'xb_girlfriend_mad',
  'girlfriend_mad_asham',
  'mad_asham_think',
  'asham_think_grandfath',
  'think_grandfath_like',
  'grandfath_like_word',
  'like_word_gf',
  'word_gf_sister',
  'gf_sister_men',
  'sister_men_furiou',
  'men_furiou_think',
  'furiou_think_im',
  'think_im_smart',
  'im_smart_ass',
  'smart_ass_disrespect',
  'ass_disrespect_masculin',
  'disrespect_masculin_unforgiv',
  'masculin_unforgiv_way',
  'unforgiv_way_aita'],
 ['[',
  'link',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i',
  'first',
  'want',
  'thank',
  'everyon',
  'overwhelm',
  'support',
  'repli',
  'first',
  'post',
  'im',
  'look',
  'forward',
  'go',
  'everyon',
  'hous',
  'dinner',
  'ill',
  'sure',
  'bring',
  'thing',
  'said',
  'like',
  '-',
  'mani',
  'flower',
  'lover',
  'im',
  'also',
  'appar',
  'dil',
  'lot',
  'hope',
  'parent',
  'repli',
  'well',
  'hope',
  'deliv',
  'expect',
  '\\',
  '--',
  '-',
  'last',
  'updat',
  'told',
  'bf',
  'sick',
  'tire',
  'danc',
  'around',
  'issu',
  'parent',
  'go',
  'go',
  'hous',
  'whether',
  'like',
  'point',
  'think',
  'realiz',
  'whatev',
  'backfir',
  'sat',
  'angri',
  'told',
  'hed',
  'explain',
  'sat',
  'told',
  'hed',
  'done',
  'someth',
  'spur',
  'moment',
  'hed',
  'text',
  'dad',
  'phone',
  'block',
  'number',
  'beg',
  'listen',
  'need',
  'get',
  'parent',
  'leav',
  'appar',
  'parent',
  'start',
  'hint',
  'marriag',
  'sinc',
  'bf',
  'talk',
  'lot',
  'fulli',
  'expect',
  'marri',
  'said',
  'anoth',
  'comment',
  'honestli',
  'expect',
  'propos',
  'late',
  'spring',
  'sinc',
  'met',
  'four',
  'year',
  'date',
  'bother',
  'get',
  'excit',
  'settl',
  'howev',
  'bf',
  'appar',
  'realiz',
  'absolut',
  'want',
  'commit',
  'anyth',
  'want',
  'experi',
  'fun',
  'sinc',
  'fun',
  'anymor',
  'honestli',
  'made',
  'cri',
  'sinc',
  'first',
  'everyth',
  'usual',
  'good',
  'commun',
  'need',
  'grand',
  'plan',
  'get',
  'mad',
  'would',
  'beg',
  'forgiv',
  'hed',
  'accept',
  'open',
  'relationship',
  'answer',
  'absolut',
  'brilliant',
  'plan',
  'know',
  'hed',
  'made',
  'parent',
  'get',
  'mad',
  'expect',
  'blow',
  'dinner',
  'complet',
  'like',
  'hit',
  'jackpot',
  'word',
  'mine',
  'went',
  'dinner',
  'hid',
  'flower',
  'said',
  'wed',
  'gotten',
  'huge',
  'fight',
  'go',
  'fix',
  'need',
  'space',
  'confess',
  'said',
  'sorri',
  'realli',
  'want',
  'miss',
  'new',
  'experi',
  'still',
  'young',
  'would',
  'consid',
  'open',
  'relationship',
  'pretend',
  'strain',
  'parent',
  'get',
  'suspici',
  'andi',
  'laugh',
  'laugh',
  'ass',
  'right',
  'door',
  'told',
  'absolut',
  'leav',
  'alon',
  'pack',
  'want',
  'new',
  'experi',
  'never',
  'stop',
  'beg',
  'stay',
  'left',
  'sleep',
  'friend',
  'calm',
  'day',
  'cement',
  'breakup',
  'final',
  'actual',
  'went',
  'parent',
  'ex-bf',
  'dad',
  'never',
  'even',
  'notic',
  'phone',
  'miss',
  'still',
  'apolog',
  'mom',
  'mess',
  'still',
  'love',
  'eat',
  'dinner',
  'without',
  '*',
  '*',
  'often',
  'lie',
  'im',
  'sad',
  'four',
  'year',
  'drain',
  'life',
  'ex',
  'best',
  'possibl',
  'plan',
  'dodg',
  'bullet',
  'mile',
  '[_link',
  'link_origin',
  'origin_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i',
  'httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i_first',
  'first_want',
  'want_thank',
  'thank_everyon',
  'everyon_overwhelm',
  'overwhelm_support',
  'support_repli',
  'repli_first',
  'first_post',
  'post_im',
  'im_look',
  'look_forward',
  'forward_go',
  'go_everyon',
  'everyon_hous',
  'hous_dinner',
  'dinner_ill',
  'ill_sure',
  'sure_bring',
  'bring_thing',
  'thing_said',
  'said_like',
  'like_-',
  '-_mani',
  'mani_flower',
  'flower_lover',
  'lover_im',
  'im_also',
  'also_appar',
  'appar_dil',
  'dil_lot',
  'lot_hope',
  'hope_parent',
  'parent_repli',
  'repli_well',
  'well_hope',
  'hope_deliv',
  'deliv_expect',
  'expect_\\',
  '\\_--',
  '--_-',
  '-_last',
  'last_updat',
  'updat_told',
  'told_bf',
  'bf_sick',
  'sick_tire',
  'tire_danc',
  'danc_around',
  'around_issu',
  'issu_parent',
  'parent_go',
  'go_go',
  'go_hous',
  'hous_whether',
  'whether_like',
  'like_point',
  'point_think',
  'think_realiz',
  'realiz_whatev',
  'whatev_backfir',
  'backfir_sat',
  'sat_angri',
  'angri_told',
  'told_hed',
  'hed_explain',
  'explain_sat',
  'sat_told',
  'told_hed',
  'hed_done',
  'done_someth',
  'someth_spur',
  'spur_moment',
  'moment_hed',
  'hed_text',
  'text_dad',
  'dad_phone',
  'phone_block',
  'block_number',
  'number_beg',
  'beg_listen',
  'listen_need',
  'need_get',
  'get_parent',
  'parent_leav',
  'leav_appar',
  'appar_parent',
  'parent_start',
  'start_hint',
  'hint_marriag',
  'marriag_sinc',
  'sinc_bf',
  'bf_talk',
  'talk_lot',
  'lot_fulli',
  'fulli_expect',
  'expect_marri',
  'marri_said',
  'said_anoth',
  'anoth_comment',
  'comment_honestli',
  'honestli_expect',
  'expect_propos',
  'propos_late',
  'late_spring',
  'spring_sinc',
  'sinc_met',
  'met_four',
  'four_year',
  'year_date',
  'date_bother',
  'bother_get',
  'get_excit',
  'excit_settl',
  'settl_howev',
  'howev_bf',
  'bf_appar',
  'appar_realiz',
  'realiz_absolut',
  'absolut_want',
  'want_commit',
  'commit_anyth',
  'anyth_want',
  'want_experi',
  'experi_fun',
  'fun_sinc',
  'sinc_fun',
  'fun_anymor',
  'anymor_honestli',
  'honestli_made',
  'made_cri',
  'cri_sinc',
  'sinc_first',
  'first_everyth',
  'everyth_usual',
  'usual_good',
  'good_commun',
  'commun_need',
  'need_grand',
  'grand_plan',
  'plan_get',
  'get_mad',
  'mad_would',
  'would_beg',
  'beg_forgiv',
  'forgiv_hed',
  'hed_accept',
  'accept_open',
  'open_relationship',
  'relationship_answer',
  'answer_absolut',
  'absolut_brilliant',
  'brilliant_plan',
  'plan_know',
  'know_hed',
  'hed_made',
  'made_parent',
  'parent_get',
  'get_mad',
  'mad_expect',
  'expect_blow',
  'blow_dinner',
  'dinner_complet',
  'complet_like',
  'like_hit',
  'hit_jackpot',
  'jackpot_word',
  'word_mine',
  'mine_went',
  'went_dinner',
  'dinner_hid',
  'hid_flower',
  'flower_said',
  'said_wed',
  'wed_gotten',
  'gotten_huge',
  'huge_fight',
  'fight_go',
  'go_fix',
  'fix_need',
  'need_space',
  'space_confess',
  'confess_said',
  'said_sorri',
  'sorri_realli',
  'realli_want',
  'want_miss',
  'miss_new',
  'new_experi',
  'experi_still',
  'still_young',
  'young_would',
  'would_consid',
  'consid_open',
  'open_relationship',
  'relationship_pretend',
  'pretend_strain',
  'strain_parent',
  'parent_get',
  'get_suspici',
  'suspici_andi',
  'andi_laugh',
  'laugh_laugh',
  'laugh_ass',
  'ass_right',
  'right_door',
  'door_told',
  'told_absolut',
  'absolut_leav',
  'leav_alon',
  'alon_pack',
  'pack_want',
  'want_new',
  'new_experi',
  'experi_never',
  'never_stop',
  'stop_beg',
  'beg_stay',
  'stay_left',
  'left_sleep',
  'sleep_friend',
  'friend_calm',
  'calm_day',
  'day_cement',
  'cement_breakup',
  'breakup_final',
  'final_actual',
  'actual_went',
  'went_parent',
  'parent_ex-bf',
  'ex-bf_dad',
  'dad_never',
  'never_even',
  'even_notic',
  'notic_phone',
  'phone_miss',
  'miss_still',
  'still_apolog',
  'apolog_mom',
  'mom_mess',
  'mess_still',
  'still_love',
  'love_eat',
  'eat_dinner',
  'dinner_without',
  'without_*',
  '*_*',
  '*_often',
  'often_lie',
  'lie_im',
  'im_sad',
  'sad_four',
  'four_year',
  'year_drain',
  'drain_life',
  'life_ex',
  'ex_best',
  'best_possibl',
  'possibl_plan',
  'plan_dodg',
  'dodg_bullet',
  'bullet_mile',
  '[_link_origin',
  'link_origin_post',
  'origin_post_]',
  'post_]_httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i',
  ']_httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i_first',
  'httpswwwredditcomramitheassholecommentsttmaita_for_imposing_my_culture_even_though_i_first_want',
  'first_want_thank',
  'want_thank_everyon',
  'thank_everyon_overwhelm',
  'everyon_overwhelm_support',
  'overwhelm_support_repli',
  'support_repli_first',
  'repli_first_post',
  'first_post_im',
  'post_im_look',
  'im_look_forward',
  'look_forward_go',
  'forward_go_everyon',
  'go_everyon_hous',
  'everyon_hous_dinner',
  'hous_dinner_ill',
  'dinner_ill_sure',
  'ill_sure_bring',
  'sure_bring_thing',
  'bring_thing_said',
  'thing_said_like',
  'said_like_-',
  'like_-_mani',
  '-_mani_flower',
  'mani_flower_lover',
  'flower_lover_im',
  'lover_im_also',
  'im_also_appar',
  'also_appar_dil',
  'appar_dil_lot',
  'dil_lot_hope',
  'lot_hope_parent',
  'hope_parent_repli',
  'parent_repli_well',
  'repli_well_hope',
  'well_hope_deliv',
  'hope_deliv_expect',
  'deliv_expect_\\',
  'expect_\\_--',
  '\\_--_-',
  '--_-_last',
  '-_last_updat',
  'last_updat_told',
  'updat_told_bf',
  'told_bf_sick',
  'bf_sick_tire',
  'sick_tire_danc',
  'tire_danc_around',
  'danc_around_issu',
  'around_issu_parent',
  'issu_parent_go',
  'parent_go_go',
  'go_go_hous',
  'go_hous_whether',
  'hous_whether_like',
  'whether_like_point',
  'like_point_think',
  'point_think_realiz',
  'think_realiz_whatev',
  'realiz_whatev_backfir',
  'whatev_backfir_sat',
  'backfir_sat_angri',
  'sat_angri_told',
  'angri_told_hed',
  'told_hed_explain',
  'hed_explain_sat',
  'explain_sat_told',
  'sat_told_hed',
  'told_hed_done',
  'hed_done_someth',
  'done_someth_spur',
  'someth_spur_moment',
  'spur_moment_hed',
  'moment_hed_text',
  'hed_text_dad',
  'text_dad_phone',
  'dad_phone_block',
  'phone_block_number',
  'block_number_beg',
  'number_beg_listen',
  'beg_listen_need',
  'listen_need_get',
  'need_get_parent',
  'get_parent_leav',
  'parent_leav_appar',
  'leav_appar_parent',
  'appar_parent_start',
  'parent_start_hint',
  'start_hint_marriag',
  'hint_marriag_sinc',
  'marriag_sinc_bf',
  'sinc_bf_talk',
  'bf_talk_lot',
  'talk_lot_fulli',
  'lot_fulli_expect',
  'fulli_expect_marri',
  'expect_marri_said',
  'marri_said_anoth',
  'said_anoth_comment',
  'anoth_comment_honestli',
  'comment_honestli_expect',
  'honestli_expect_propos',
  'expect_propos_late',
  'propos_late_spring',
  'late_spring_sinc',
  'spring_sinc_met',
  'sinc_met_four',
  'met_four_year',
  'four_year_date',
  'year_date_bother',
  'date_bother_get',
  'bother_get_excit',
  'get_excit_settl',
  'excit_settl_howev',
  'settl_howev_bf',
  'howev_bf_appar',
  'bf_appar_realiz',
  'appar_realiz_absolut',
  'realiz_absolut_want',
  'absolut_want_commit',
  'want_commit_anyth',
  'commit_anyth_want',
  'anyth_want_experi',
  'want_experi_fun',
  'experi_fun_sinc',
  'fun_sinc_fun',
  'sinc_fun_anymor',
  'fun_anymor_honestli',
  'anymor_honestli_made',
  'honestli_made_cri',
  'made_cri_sinc',
  'cri_sinc_first',
  'sinc_first_everyth',
  'first_everyth_usual',
  'everyth_usual_good',
  'usual_good_commun',
  'good_commun_need',
  'commun_need_grand',
  'need_grand_plan',
  'grand_plan_get',
  'plan_get_mad',
  'get_mad_would',
  'mad_would_beg',
  'would_beg_forgiv',
  'beg_forgiv_hed',
  'forgiv_hed_accept',
  'hed_accept_open',
  'accept_open_relationship',
  'open_relationship_answer',
  'relationship_answer_absolut',
  'answer_absolut_brilliant',
  'absolut_brilliant_plan',
  'brilliant_plan_know',
  'plan_know_hed',
  'know_hed_made',
  'hed_made_parent',
  'made_parent_get',
  'parent_get_mad',
  'get_mad_expect',
  'mad_expect_blow',
  'expect_blow_dinner',
  'blow_dinner_complet',
  'dinner_complet_like',
  'complet_like_hit',
  'like_hit_jackpot',
  'hit_jackpot_word',
  'jackpot_word_mine',
  'word_mine_went',
  'mine_went_dinner',
  'went_dinner_hid',
  'dinner_hid_flower',
  'hid_flower_said',
  'flower_said_wed',
  'said_wed_gotten',
  'wed_gotten_huge',
  'gotten_huge_fight',
  'huge_fight_go',
  'fight_go_fix',
  'go_fix_need',
  'fix_need_space',
  'need_space_confess',
  'space_confess_said',
  'confess_said_sorri',
  'said_sorri_realli',
  'sorri_realli_want',
  'realli_want_miss',
  'want_miss_new',
  'miss_new_experi',
  'new_experi_still',
  'experi_still_young',
  'still_young_would',
  'young_would_consid',
  'would_consid_open',
  'consid_open_relationship',
  'open_relationship_pretend',
  'relationship_pretend_strain',
  'pretend_strain_parent',
  'strain_parent_get',
  'parent_get_suspici',
  'get_suspici_andi',
  'suspici_andi_laugh',
  'andi_laugh_laugh',
  'laugh_laugh_ass',
  'laugh_ass_right',
  'ass_right_door',
  'right_door_told',
  'door_told_absolut',
  'told_absolut_leav',
  'absolut_leav_alon',
  'leav_alon_pack',
  'alon_pack_want',
  'pack_want_new',
  'want_new_experi',
  'new_experi_never',
  'experi_never_stop',
  'never_stop_beg',
  'stop_beg_stay',
  'beg_stay_left',
  'stay_left_sleep',
  'left_sleep_friend',
  'sleep_friend_calm',
  'friend_calm_day',
  'calm_day_cement',
  'day_cement_breakup',
  'cement_breakup_final',
  'breakup_final_actual',
  'final_actual_went',
  'actual_went_parent',
  'went_parent_ex-bf',
  'parent_ex-bf_dad',
  'ex-bf_dad_never',
  'dad_never_even',
  'never_even_notic',
  'even_notic_phone',
  'notic_phone_miss',
  'phone_miss_still',
  'miss_still_apolog',
  'still_apolog_mom',
  'apolog_mom_mess',
  'mom_mess_still',
  'mess_still_love',
  'still_love_eat',
  'love_eat_dinner',
  'eat_dinner_without',
  'dinner_without_*',
  'without_*_*',
  '*_*_often',
  '*_often_lie',
  'often_lie_im',
  'lie_im_sad',
  'im_sad_four',
  'sad_four_year',
  'four_year_drain',
  'year_drain_life',
  'drain_life_ex',
  'life_ex_best',
  'ex_best_possibl',
  'best_possibl_plan',
  'possibl_plan_dodg',
  'plan_dodg_bullet',
  'dodg_bullet_mile'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'quick',
  'updat',
  'sinc',
  'situat',
  'resolv',
  'husband',
  'got',
  'home',
  'told',
  'happen',
  'show',
  'video',
  'ask',
  'spoke',
  'bil',
  'said',
  'convers',
  'sister',
  'said',
  'take',
  'care',
  'disclaim',
  'understand',
  'noth',
  'come',
  'insur',
  'claim',
  'husband',
  'told',
  'mei',
  'understood',
  'happen',
  'husband',
  'talk',
  'bil',
  'told',
  'exactli',
  'happen',
  'show',
  '*',
  'prank',
  '*',
  'video',
  'told',
  'coat',
  'insur',
  'file',
  'claim',
  'submit',
  'video',
  'might',
  'file',
  'charg',
  'claim',
  'assur',
  'would',
  'drop',
  'charg',
  'want',
  'send',
  'niec',
  'jail',
  'told',
  'one',
  'two',
  'thing',
  'might',
  'happen',
  'insur',
  'pay',
  'us',
  'come',
  'insur',
  'pay',
  'premium',
  'skyrocket',
  'might',
  'sue',
  'might',
  'get',
  'lien',
  'hous',
  'bil',
  'ask',
  'way',
  'could',
  'pay',
  'us',
  'without',
  'involv',
  'insur',
  'husband',
  'told',
  'want',
  'first',
  'sister',
  'insist',
  'pay',
  'us',
  'back',
  'appar',
  'bil',
  'know',
  'piss',
  'niec',
  'sister',
  'respons',
  'came',
  'solut',
  'niec',
  'car',
  'sold',
  'fetch',
  'whole',
  'compens',
  'money',
  'get',
  'job',
  'pay',
  'whole',
  'check',
  'paid',
  'also',
  'ground',
  'rest',
  'school',
  'year',
  'thank',
  'peopl',
  'encourag',
  'talk',
  'husband',
  '[_origin',
  'origin_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar',
  'httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar_&',
  '&_utm_medium=android_app',
  'utm_medium=android_app_&',
  '&_utm_name=androidcss',
  'utm_name=androidcss_&',
  '&_utm_term=',
  'utm_term=_&',
  '&_utm_content=share_button',
  'utm_content=share_button_quick',
  'quick_updat',
  'updat_sinc',
  'sinc_situat',
  'situat_resolv',
  'resolv_husband',
  'husband_got',
  'got_home',
  'home_told',
  'told_happen',
  'happen_show',
  'show_video',
  'video_ask',
  'ask_spoke',
  'spoke_bil',
  'bil_said',
  'said_convers',
  'convers_sister',
  'sister_said',
  'said_take',
  'take_care',
  'care_disclaim',
  'disclaim_understand',
  'understand_noth',
  'noth_come',
  'come_insur',
  'insur_claim',
  'claim_husband',
  'husband_told',
  'told_mei',
  'mei_understood',
  'understood_happen',
  'happen_husband',
  'husband_talk',
  'talk_bil',
  'bil_told',
  'told_exactli',
  'exactli_happen',
  'happen_show',
  'show_*',
  '*_prank',
  'prank_*',
  '*_video',
  'video_told',
  'told_coat',
  'coat_insur',
  'insur_file',
  'file_claim',
  'claim_submit',
  'submit_video',
  'video_might',
  'might_file',
  'file_charg',
  'charg_claim',
  'claim_assur',
  'assur_would',
  'would_drop',
  'drop_charg',
  'charg_want',
  'want_send',
  'send_niec',
  'niec_jail',
  'jail_told',
  'told_one',
  'one_two',
  'two_thing',
  'thing_might',
  'might_happen',
  'happen_insur',
  'insur_pay',
  'pay_us',
  'us_come',
  'come_insur',
  'insur_pay',
  'pay_premium',
  'premium_skyrocket',
  'skyrocket_might',
  'might_sue',
  'sue_might',
  'might_get',
  'get_lien',
  'lien_hous',
  'hous_bil',
  'bil_ask',
  'ask_way',
  'way_could',
  'could_pay',
  'pay_us',
  'us_without',
  'without_involv',
  'involv_insur',
  'insur_husband',
  'husband_told',
  'told_want',
  'want_first',
  'first_sister',
  'sister_insist',
  'insist_pay',
  'pay_us',
  'us_back',
  'back_appar',
  'appar_bil',
  'bil_know',
  'know_piss',
  'piss_niec',
  'niec_sister',
  'sister_respons',
  'respons_came',
  'came_solut',
  'solut_niec',
  'niec_car',
  'car_sold',
  'sold_fetch',
  'fetch_whole',
  'whole_compens',
  'compens_money',
  'money_get',
  'get_job',
  'job_pay',
  'pay_whole',
  'whole_check',
  'check_paid',
  'paid_also',
  'also_ground',
  'ground_rest',
  'rest_school',
  'school_year',
  'year_thank',
  'thank_peopl',
  'peopl_encourag',
  'encourag_talk',
  'talk_husband',
  '[_origin_post',
  'origin_post_]',
  'post_]_httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar',
  ']_httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentszabiaitaa_for_taking_my_niece_to_court_over_a_coatutm_source=shar_&_utm_medium=android_app',
  '&_utm_medium=android_app_&',
  'utm_medium=android_app_&_utm_name=androidcss',
  '&_utm_name=androidcss_&',
  'utm_name=androidcss_&_utm_term=',
  '&_utm_term=_&',
  'utm_term=_&_utm_content=share_button',
  '&_utm_content=share_button_quick',
  'utm_content=share_button_quick_updat',
  'quick_updat_sinc',
  'updat_sinc_situat',
  'sinc_situat_resolv',
  'situat_resolv_husband',
  'resolv_husband_got',
  'husband_got_home',
  'got_home_told',
  'home_told_happen',
  'told_happen_show',
  'happen_show_video',
  'show_video_ask',
  'video_ask_spoke',
  'ask_spoke_bil',
  'spoke_bil_said',
  'bil_said_convers',
  'said_convers_sister',
  'convers_sister_said',
  'sister_said_take',
  'said_take_care',
  'take_care_disclaim',
  'care_disclaim_understand',
  'disclaim_understand_noth',
  'understand_noth_come',
  'noth_come_insur',
  'come_insur_claim',
  'insur_claim_husband',
  'claim_husband_told',
  'husband_told_mei',
  'told_mei_understood',
  'mei_understood_happen',
  'understood_happen_husband',
  'happen_husband_talk',
  'husband_talk_bil',
  'talk_bil_told',
  'bil_told_exactli',
  'told_exactli_happen',
  'exactli_happen_show',
  'happen_show_*',
  'show_*_prank',
  '*_prank_*',
  'prank_*_video',
  '*_video_told',
  'video_told_coat',
  'told_coat_insur',
  'coat_insur_file',
  'insur_file_claim',
  'file_claim_submit',
  'claim_submit_video',
  'submit_video_might',
  'video_might_file',
  'might_file_charg',
  'file_charg_claim',
  'charg_claim_assur',
  'claim_assur_would',
  'assur_would_drop',
  'would_drop_charg',
  'drop_charg_want',
  'charg_want_send',
  'want_send_niec',
  'send_niec_jail',
  'niec_jail_told',
  'jail_told_one',
  'told_one_two',
  'one_two_thing',
  'two_thing_might',
  'thing_might_happen',
  'might_happen_insur',
  'happen_insur_pay',
  'insur_pay_us',
  'pay_us_come',
  'us_come_insur',
  'come_insur_pay',
  'insur_pay_premium',
  'pay_premium_skyrocket',
  'premium_skyrocket_might',
  'skyrocket_might_sue',
  'might_sue_might',
  'sue_might_get',
  'might_get_lien',
  'get_lien_hous',
  'lien_hous_bil',
  'hous_bil_ask',
  'bil_ask_way',
  'ask_way_could',
  'way_could_pay',
  'could_pay_us',
  'pay_us_without',
  'us_without_involv',
  'without_involv_insur',
  'involv_insur_husband',
  'insur_husband_told',
  'husband_told_want',
  'told_want_first',
  'want_first_sister',
  'first_sister_insist',
  'sister_insist_pay',
  'insist_pay_us',
  'pay_us_back',
  'us_back_appar',
  'back_appar_bil',
  'appar_bil_know',
  'bil_know_piss',
  'know_piss_niec',
  'piss_niec_sister',
  'niec_sister_respons',
  'sister_respons_came',
  'respons_came_solut',
  'came_solut_niec',
  'solut_niec_car',
  'niec_car_sold',
  'car_sold_fetch',
  'sold_fetch_whole',
  'fetch_whole_compens',
  'whole_compens_money',
  'compens_money_get',
  'money_get_job',
  'get_job_pay',
  'job_pay_whole',
  'pay_whole_check',
  'whole_check_paid',
  'check_paid_also',
  'paid_also_ground',
  'also_ground_rest',
  'ground_rest_school',
  'rest_school_year',
  'school_year_thank',
  'year_thank_peopl',
  'thank_peopl_encourag',
  'peopl_encourag_talk',
  'encourag_talk_husband'],
 ['throwaway',
  'account',
  'husband',
  'ill',
  'call',
  'jake',
  'stori',
  'togeth',
  'year',
  'marri',
  'recent',
  'start',
  'tri',
  'babi',
  'felt',
  'like',
  'next',
  'step',
  'life',
  'togeth',
  'week',
  'ago',
  'got',
  'posit',
  'test',
  'back',
  'realli',
  'realli',
  'happi',
  'told',
  'famili',
  'mom',
  'mil',
  'want',
  'throw',
  'big',
  'babi',
  'shower',
  'us',
  'super',
  'good',
  'news',
  'around',
  'well',
  'night',
  'ago',
  'jake',
  'get',
  'readi',
  'bed',
  'remind',
  'go',
  'hous',
  'make',
  'sure',
  'light',
  'littl',
  'lazi',
  'time',
  'becom',
  'nightli',
  'routin',
  'make',
  'sure',
  'light',
  'leav',
  'go',
  'bed',
  'feel',
  'well',
  'ask',
  'could',
  'sinc',
  'anyth',
  'liter',
  'stand',
  'door',
  'tell',
  'expect',
  'everi',
  'night',
  'littl',
  'hurt',
  'want',
  'fight',
  'came',
  'back',
  'jake',
  'goe',
  'long',
  'unprovok',
  'rant',
  'say',
  'thing',
  'like',
  'pregnant',
  'mean',
  'anyth',
  'chang',
  'still',
  'expect',
  'cook',
  'clean',
  'chore',
  'everi',
  'day',
  'expect',
  'mother',
  'cant',
  'handl',
  'littl',
  'work',
  'yell',
  'anyth',
  'talk',
  'quietli',
  'like',
  'inch',
  'tall',
  'shock',
  'never',
  'heard',
  'say',
  'anyth',
  'like',
  'rant',
  'went',
  'minut',
  'interject',
  'ask',
  'well',
  'plan',
  'help',
  'got',
  'extrem',
  'defens',
  'say',
  'work',
  'ass',
  'job',
  'provid',
  'go',
  'futur',
  'children',
  'context',
  'work',
  'atm',
  'job',
  'pay',
  'enough',
  'justifi',
  'go',
  'full',
  'time',
  'colleg',
  'student',
  'end',
  'say',
  'matter',
  'feel',
  'physic',
  'mental',
  'mother',
  'job',
  'push',
  'help',
  'babi',
  'good',
  'mother',
  'got',
  'extrem',
  'upset',
  'start',
  'yell',
  'said',
  'wish',
  'wouldv',
  'known',
  'felt',
  'got',
  'pregnant',
  'babi',
  'moment',
  'silenc',
  'start',
  'cri',
  'left',
  'night',
  'stay',
  'mother',
  'hous',
  'back',
  'yet',
  'mil',
  'sil',
  'call',
  'berat',
  'say',
  'broke',
  'jake',
  'heart',
  'said',
  'need',
  'apolog',
  'immedi',
  'come',
  'home',
  'know',
  'feel',
  'aita',
  'yell',
  'husband',
  'said',
  'help',
  'anyth',
  'pregnanc',
  'mother',
  'job',
  'deal',
  'edit',
  'first',
  'want',
  'thank',
  'respons',
  'im',
  'sorri',
  'realli',
  'respond',
  'anyon',
  'specif',
  'realli',
  'appreci',
  'guy',
  'ask',
  'told',
  'mil',
  'sil',
  'said',
  'basic',
  'said',
  'sensit',
  'meant',
  'pregnanc',
  'excus',
  'lazi',
  'meant',
  'harm',
  'ok',
  'get',
  'thing',
  'togeth',
  'go',
  'head',
  'mom',
  'dad',
  'hous',
  'mom',
  'furiou',
  'want',
  'apolog',
  'talk',
  'without',
  'situat',
  'either',
  'record',
  'wit',
  'regardless',
  'ok',
  'ok',
  'appreci',
  'though',
  'open',
  'eye',
  'mani',
  'thing',
  'may',
  'ignor',
  'look',
  'past',
  'year',
  'throwaway_account',
  'account_husband',
  'husband_ill',
  'ill_call',
  'call_jake',
  'jake_stori',
  'stori_togeth',
  'togeth_year',
  'year_marri',
  'marri_recent',
  'recent_start',
  'start_tri',
  'tri_babi',
  'babi_felt',
  'felt_like',
  'like_next',
  'next_step',
  'step_life',
  'life_togeth',
  'togeth_week',
  'week_ago',
  'ago_got',
  'got_posit',
  'posit_test',
  'test_back',
  'back_realli',
  'realli_realli',
  'realli_happi',
  'happi_told',
  'told_famili',
  'famili_mom',
  'mom_mil',
  'mil_want',
  'want_throw',
  'throw_big',
  'big_babi',
  'babi_shower',
  'shower_us',
  'us_super',
  'super_good',
  'good_news',
  'news_around',
  'around_well',
  'well_night',
  'night_ago',
  'ago_jake',
  'jake_get',
  'get_readi',
  'readi_bed',
  'bed_remind',
  'remind_go',
  'go_hous',
  'hous_make',
  'make_sure',
  'sure_light',
  'light_littl',
  'littl_lazi',
  'lazi_time',
  'time_becom',
  'becom_nightli',
  'nightli_routin',
  'routin_make',
  'make_sure',
  'sure_light',
  'light_leav',
  'leav_go',
  'go_bed',
  'bed_feel',
  'feel_well',
  'well_ask',
  'ask_could',
  'could_sinc',
  'sinc_anyth',
  'anyth_liter',
  'liter_stand',
  'stand_door',
  'door_tell',
  'tell_expect',
  'expect_everi',
  'everi_night',
  'night_littl',
  'littl_hurt',
  'hurt_want',
  'want_fight',
  'fight_came',
  'came_back',
  'back_jake',
  'jake_goe',
  'goe_long',
  'long_unprovok',
  'unprovok_rant',
  'rant_say',
  'say_thing',
  'thing_like',
  'like_pregnant',
  'pregnant_mean',
  'mean_anyth',
  'anyth_chang',
  'chang_still',
  'still_expect',
  'expect_cook',
  'cook_clean',
  'clean_chore',
  'chore_everi',
  'everi_day',
  'day_expect',
  'expect_mother',
  'mother_cant',
  'cant_handl',
  'handl_littl',
  'littl_work',
  'work_yell',
  'yell_anyth',
  'anyth_talk',
  'talk_quietli',
  'quietli_like',
  'like_inch',
  'inch_tall',
  'tall_shock',
  'shock_never',
  'never_heard',
  'heard_say',
  'say_anyth',
  'anyth_like',
  'like_rant',
  'rant_went',
  'went_minut',
  'minut_interject',
  'interject_ask',
  'ask_well',
  'well_plan',
  'plan_help',
  'help_got',
  'got_extrem',
  'extrem_defens',
  'defens_say',
  'say_work',
  'work_ass',
  'ass_job',
  'job_provid',
  'provid_go',
  'go_futur',
  'futur_children',
  'children_context',
  'context_work',
  'work_atm',
  'atm_job',
  'job_pay',
  'pay_enough',
  'enough_justifi',
  'justifi_go',
  'go_full',
  'full_time',
  'time_colleg',
  'colleg_student',
  'student_end',
  'end_say',
  'say_matter',
  'matter_feel',
  'feel_physic',
  'physic_mental',
  'mental_mother',
  'mother_job',
  'job_push',
  'push_help',
  'help_babi',
  'babi_good',
  'good_mother',
  'mother_got',
  'got_extrem',
  'extrem_upset',
  'upset_start',
  'start_yell',
  'yell_said',
  'said_wish',
  'wish_wouldv',
  'wouldv_known',
  'known_felt',
  'felt_got',
  'got_pregnant',
  'pregnant_babi',
  'babi_moment',
  'moment_silenc',
  'silenc_start',
  'start_cri',
  'cri_left',
  'left_night',
  'night_stay',
  'stay_mother',
  'mother_hous',
  'hous_back',
  'back_yet',
  'yet_mil',
  'mil_sil',
  'sil_call',
  'call_berat',
  'berat_say',
  'say_broke',
  'broke_jake',
  'jake_heart',
  'heart_said',
  'said_need',
  'need_apolog',
  'apolog_immedi',
  'immedi_come',
  'come_home',
  'home_know',
  'know_feel',
  'feel_aita',
  'aita_yell',
  'yell_husband',
  'husband_said',
  'said_help',
  'help_anyth',
  'anyth_pregnanc',
  'pregnanc_mother',
  'mother_job',
  'job_deal',
  'deal_edit',
  'edit_first',
  'first_want',
  'want_thank',
  'thank_respons',
  'respons_im',
  'im_sorri',
  'sorri_realli',
  'realli_respond',
  'respond_anyon',
  'anyon_specif',
  'specif_realli',
  'realli_appreci',
  'appreci_guy',
  'guy_ask',
  'ask_told',
  'told_mil',
  'mil_sil',
  'sil_said',
  'said_basic',
  'basic_said',
  'said_sensit',
  'sensit_meant',
  'meant_pregnanc',
  'pregnanc_excus',
  'excus_lazi',
  'lazi_meant',
  'meant_harm',
  'harm_ok',
  'ok_get',
  'get_thing',
  'thing_togeth',
  'togeth_go',
  'go_head',
  'head_mom',
  'mom_dad',
  'dad_hous',
  'hous_mom',
  'mom_furiou',
  'furiou_want',
  'want_apolog',
  'apolog_talk',
  'talk_without',
  'without_situat',
  'situat_either',
  'either_record',
  'record_wit',
  'wit_regardless',
  'regardless_ok',
  'ok_ok',
  'ok_appreci',
  'appreci_though',
  'though_open',
  'open_eye',
  'eye_mani',
  'mani_thing',
  'thing_may',
  'may_ignor',
  'ignor_look',
  'look_past',
  'past_year',
  'throwaway_account_husband',
  'account_husband_ill',
  'husband_ill_call',
  'ill_call_jake',
  'call_jake_stori',
  'jake_stori_togeth',
  'stori_togeth_year',
  'togeth_year_marri',
  'year_marri_recent',
  'marri_recent_start',
  'recent_start_tri',
  'start_tri_babi',
  'tri_babi_felt',
  'babi_felt_like',
  'felt_like_next',
  'like_next_step',
  'next_step_life',
  'step_life_togeth',
  'life_togeth_week',
  'togeth_week_ago',
  'week_ago_got',
  'ago_got_posit',
  'got_posit_test',
  'posit_test_back',
  'test_back_realli',
  'back_realli_realli',
  'realli_realli_happi',
  'realli_happi_told',
  'happi_told_famili',
  'told_famili_mom',
  'famili_mom_mil',
  'mom_mil_want',
  'mil_want_throw',
  'want_throw_big',
  'throw_big_babi',
  'big_babi_shower',
  'babi_shower_us',
  'shower_us_super',
  'us_super_good',
  'super_good_news',
  'good_news_around',
  'news_around_well',
  'around_well_night',
  'well_night_ago',
  'night_ago_jake',
  'ago_jake_get',
  'jake_get_readi',
  'get_readi_bed',
  'readi_bed_remind',
  'bed_remind_go',
  'remind_go_hous',
  'go_hous_make',
  'hous_make_sure',
  'make_sure_light',
  'sure_light_littl',
  'light_littl_lazi',
  'littl_lazi_time',
  'lazi_time_becom',
  'time_becom_nightli',
  'becom_nightli_routin',
  'nightli_routin_make',
  'routin_make_sure',
  'make_sure_light',
  'sure_light_leav',
  'light_leav_go',
  'leav_go_bed',
  'go_bed_feel',
  'bed_feel_well',
  'feel_well_ask',
  'well_ask_could',
  'ask_could_sinc',
  'could_sinc_anyth',
  'sinc_anyth_liter',
  'anyth_liter_stand',
  'liter_stand_door',
  'stand_door_tell',
  'door_tell_expect',
  'tell_expect_everi',
  'expect_everi_night',
  'everi_night_littl',
  'night_littl_hurt',
  'littl_hurt_want',
  'hurt_want_fight',
  'want_fight_came',
  'fight_came_back',
  'came_back_jake',
  'back_jake_goe',
  'jake_goe_long',
  'goe_long_unprovok',
  'long_unprovok_rant',
  'unprovok_rant_say',
  'rant_say_thing',
  'say_thing_like',
  'thing_like_pregnant',
  'like_pregnant_mean',
  'pregnant_mean_anyth',
  'mean_anyth_chang',
  'anyth_chang_still',
  'chang_still_expect',
  'still_expect_cook',
  'expect_cook_clean',
  'cook_clean_chore',
  'clean_chore_everi',
  'chore_everi_day',
  'everi_day_expect',
  'day_expect_mother',
  'expect_mother_cant',
  'mother_cant_handl',
  'cant_handl_littl',
  'handl_littl_work',
  'littl_work_yell',
  'work_yell_anyth',
  'yell_anyth_talk',
  'anyth_talk_quietli',
  'talk_quietli_like',
  'quietli_like_inch',
  'like_inch_tall',
  'inch_tall_shock',
  'tall_shock_never',
  'shock_never_heard',
  'never_heard_say',
  'heard_say_anyth',
  'say_anyth_like',
  'anyth_like_rant',
  'like_rant_went',
  'rant_went_minut',
  'went_minut_interject',
  'minut_interject_ask',
  'interject_ask_well',
  'ask_well_plan',
  'well_plan_help',
  'plan_help_got',
  'help_got_extrem',
  'got_extrem_defens',
  'extrem_defens_say',
  'defens_say_work',
  'say_work_ass',
  'work_ass_job',
  'ass_job_provid',
  'job_provid_go',
  'provid_go_futur',
  'go_futur_children',
  'futur_children_context',
  'children_context_work',
  'context_work_atm',
  'work_atm_job',
  'atm_job_pay',
  'job_pay_enough',
  'pay_enough_justifi',
  'enough_justifi_go',
  'justifi_go_full',
  'go_full_time',
  'full_time_colleg',
  'time_colleg_student',
  'colleg_student_end',
  'student_end_say',
  'end_say_matter',
  'say_matter_feel',
  'matter_feel_physic',
  'feel_physic_mental',
  'physic_mental_mother',
  'mental_mother_job',
  'mother_job_push',
  'job_push_help',
  'push_help_babi',
  'help_babi_good',
  'babi_good_mother',
  'good_mother_got',
  'mother_got_extrem',
  'got_extrem_upset',
  'extrem_upset_start',
  'upset_start_yell',
  'start_yell_said',
  'yell_said_wish',
  'said_wish_wouldv',
  'wish_wouldv_known',
  'wouldv_known_felt',
  'known_felt_got',
  'felt_got_pregnant',
  'got_pregnant_babi',
  'pregnant_babi_moment',
  'babi_moment_silenc',
  'moment_silenc_start',
  'silenc_start_cri',
  'start_cri_left',
  'cri_left_night',
  'left_night_stay',
  'night_stay_mother',
  'stay_mother_hous',
  'mother_hous_back',
  'hous_back_yet',
  'back_yet_mil',
  'yet_mil_sil',
  'mil_sil_call',
  'sil_call_berat',
  'call_berat_say',
  'berat_say_broke',
  'say_broke_jake',
  'broke_jake_heart',
  'jake_heart_said',
  'heart_said_need',
  'said_need_apolog',
  'need_apolog_immedi',
  'apolog_immedi_come',
  'immedi_come_home',
  'come_home_know',
  'home_know_feel',
  'know_feel_aita',
  'feel_aita_yell',
  'aita_yell_husband',
  'yell_husband_said',
  'husband_said_help',
  'said_help_anyth',
  'help_anyth_pregnanc',
  'anyth_pregnanc_mother',
  'pregnanc_mother_job',
  'mother_job_deal',
  'job_deal_edit',
  'deal_edit_first',
  'edit_first_want',
  'first_want_thank',
  'want_thank_respons',
  'thank_respons_im',
  'respons_im_sorri',
  'im_sorri_realli',
  'sorri_realli_respond',
  'realli_respond_anyon',
  'respond_anyon_specif',
  'anyon_specif_realli',
  'specif_realli_appreci',
  'realli_appreci_guy',
  'appreci_guy_ask',
  'guy_ask_told',
  'ask_told_mil',
  'told_mil_sil',
  'mil_sil_said',
  'sil_said_basic',
  'said_basic_said',
  'basic_said_sensit',
  'said_sensit_meant',
  'sensit_meant_pregnanc',
  'meant_pregnanc_excus',
  'pregnanc_excus_lazi',
  'excus_lazi_meant',
  'lazi_meant_harm',
  'meant_harm_ok',
  'harm_ok_get',
  'ok_get_thing',
  'get_thing_togeth',
  'thing_togeth_go',
  'togeth_go_head',
  'go_head_mom',
  'head_mom_dad',
  'mom_dad_hous',
  'dad_hous_mom',
  'hous_mom_furiou',
  'mom_furiou_want',
  'furiou_want_apolog',
  'want_apolog_talk',
  'apolog_talk_without',
  'talk_without_situat',
  'without_situat_either',
  'situat_either_record',
  'either_record_wit',
  'record_wit_regardless',
  'wit_regardless_ok',
  'regardless_ok_ok',
  'ok_ok_appreci',
  'ok_appreci_though',
  'appreci_though_open',
  'though_open_eye',
  'open_eye_mani',
  'eye_mani_thing',
  'mani_thing_may',
  'thing_may_ignor',
  'may_ignor_look',
  'ignor_look_past',
  'look_past_year'],
 ['im',
  'relationship',
  'guy',
  'also',
  'work',
  'tech',
  'make',
  'make',
  'mechan',
  'engin',
  'robot',
  'startup',
  'work',
  'stabl',
  'job',
  'program',
  'larg',
  'compani',
  'brought',
  'meet',
  'friend',
  'parti',
  'ask',
  'friend',
  'mostli',
  'work',
  'tech',
  'talk',
  'term',
  'job',
  'told',
  'im',
  'hiker',
  'archeri',
  'love',
  'road',
  'trip',
  'camp',
  'ride',
  'dirtbik',
  'etc',
  'basic',
  'talk',
  'hobbi',
  'work',
  'way',
  'get',
  'paid',
  'shit',
  'love',
  'defin',
  'come',
  'mind',
  'someon',
  'want',
  'tell',
  'one',
  'friend',
  'ask',
  'work',
  'said',
  'oh',
  'gosh',
  'wan',
  'na',
  'talk',
  'work',
  'parti',
  'spent',
  'whole',
  'day',
  'sweat',
  'ass',
  'degre',
  'heat',
  'tri',
  'replac',
  'bust',
  'ass',
  'motor',
  'find',
  'replac',
  'part',
  'also',
  'fuck',
  'lie',
  'tri',
  'downplay',
  'good',
  'job',
  'realli',
  'spent',
  'day',
  'mood',
  'talk',
  'shop',
  'parti',
  'convers',
  'came',
  'casual',
  'probabl',
  'also',
  'made',
  'seem',
  'poorer',
  'like',
  'say',
  'car',
  'dealership',
  'repair',
  'ripoff',
  'tell',
  'boyfriend',
  'childhood',
  'neighbor',
  'trailer',
  'caught',
  'fire',
  'gon',
  'na',
  'visit',
  'help',
  'purpos',
  'liter',
  'talk',
  'life',
  'guess',
  'gave',
  'impress',
  'poorer',
  'got',
  'later',
  'night',
  'everyon',
  'get',
  'drunker',
  'friend',
  'close',
  'one',
  'tho',
  'make',
  'joke',
  'grow',
  'trailer',
  'gold',
  'digger',
  'readi',
  'jump',
  'richer',
  'guy',
  'realli',
  'misogynist',
  'shit',
  'honestli',
  'sinc',
  'even',
  'know',
  'seem',
  'assum',
  'girl',
  'good',
  'digger',
  'say',
  'anyth',
  'later',
  'said',
  'hed',
  'smoke',
  'weed',
  'get',
  'quiet',
  'troubl',
  'carri',
  'quick',
  'convers',
  'high',
  'regardless',
  'felt',
  'hurt',
  'say',
  'anyth',
  'got',
  'irrit',
  'friend',
  'ask',
  'hell',
  'would',
  'say',
  'make',
  'twice',
  'friend',
  'went',
  'quiet',
  'second',
  'continu',
  'say',
  'aint',
  'gold',
  'dig',
  'anyon',
  'parti',
  'yall',
  'think',
  'im',
  'cheap',
  'yall',
  'think',
  'im',
  'stupid',
  'boyfriend',
  'want',
  'leav',
  'parti',
  'shortli',
  'pretti',
  'upset',
  'tell',
  'everyon',
  'make',
  'twice',
  'said',
  'would',
  'held',
  'tongu',
  'hed',
  'check',
  'friend',
  'say',
  'anyth',
  'let',
  'talk',
  'like',
  'said',
  'humili',
  'everyon',
  'think',
  'im',
  'bitch',
  'flippantli',
  'said',
  'least',
  'know',
  'im',
  'rich',
  'bitch',
  'angri',
  'embarrass',
  'spoke',
  'angri',
  'say',
  'anyth',
  'friend',
  'talk',
  'shit',
  'check',
  'stuff',
  'still',
  'tens',
  'aita',
  'explain',
  'im',
  'gold',
  'digger',
  'im_relationship',
  'relationship_guy',
  'guy_also',
  'also_work',
  'work_tech',
  'tech_make',
  'make_make',
  'make_mechan',
  'mechan_engin',
  'engin_robot',
  'robot_startup',
  'startup_work',
  'work_stabl',
  'stabl_job',
  'job_program',
  'program_larg',
  'larg_compani',
  'compani_brought',
  'brought_meet',
  'meet_friend',
  'friend_parti',
  'parti_ask',
  'ask_friend',
  'friend_mostli',
  'mostli_work',
  'work_tech',
  'tech_talk',
  'talk_term',
  'term_job',
  'job_told',
  'told_im',
  'im_hiker',
  'hiker_archeri',
  'archeri_love',
  'love_road',
  'road_trip',
  'trip_camp',
  'camp_ride',
  'ride_dirtbik',
  'dirtbik_etc',
  'etc_basic',
  'basic_talk',
  'talk_hobbi',
  'hobbi_work',
  'work_way',
  'way_get',
  'get_paid',
  'paid_shit',
  'shit_love',
  'love_defin',
  'defin_come',
  'come_mind',
  'mind_someon',
  'someon_want',
  'want_tell',
  'tell_one',
  'one_friend',
  'friend_ask',
  'ask_work',
  'work_said',
  'said_oh',
  'oh_gosh',
  'gosh_wan',
  'wan_na',
  'na_talk',
  'talk_work',
  'work_parti',
  'parti_spent',
  'spent_whole',
  'whole_day',
  'day_sweat',
  'sweat_ass',
  'ass_degre',
  'degre_heat',
  'heat_tri',
  'tri_replac',
  'replac_bust',
  'bust_ass',
  'ass_motor',
  'motor_find',
  'find_replac',
  'replac_part',
  'part_also',
  'also_fuck',
  'fuck_lie',
  'lie_tri',
  'tri_downplay',
  'downplay_good',
  'good_job',
  'job_realli',
  'realli_spent',
  'spent_day',
  'day_mood',
  'mood_talk',
  'talk_shop',
  'shop_parti',
  'parti_convers',
  'convers_came',
  'came_casual',
  'casual_probabl',
  'probabl_also',
  'also_made',
  'made_seem',
  'seem_poorer',
  'poorer_like',
  'like_say',
  'say_car',
  'car_dealership',
  'dealership_repair',
  'repair_ripoff',
  'ripoff_tell',
  'tell_boyfriend',
  'boyfriend_childhood',
  'childhood_neighbor',
  'neighbor_trailer',
  'trailer_caught',
  'caught_fire',
  'fire_gon',
  'gon_na',
  'na_visit',
  'visit_help',
  'help_purpos',
  'purpos_liter',
  'liter_talk',
  'talk_life',
  'life_guess',
  'guess_gave',
  'gave_impress',
  'impress_poorer',
  'poorer_got',
  'got_later',
  'later_night',
  'night_everyon',
  'everyon_get',
  'get_drunker',
  'drunker_friend',
  'friend_close',
  'close_one',
  'one_tho',
  'tho_make',
  'make_joke',
  'joke_grow',
  'grow_trailer',
  'trailer_gold',
  'gold_digger',
  'digger_readi',
  'readi_jump',
  'jump_richer',
  'richer_guy',
  'guy_realli',
  'realli_misogynist',
  'misogynist_shit',
  'shit_honestli',
  'honestli_sinc',
  'sinc_even',
  'even_know',
  'know_seem',
  'seem_assum',
  'assum_girl',
  'girl_good',
  'good_digger',
  'digger_say',
  'say_anyth',
  'anyth_later',
  'later_said',
  'said_hed',
  'hed_smoke',
  'smoke_weed',
  'weed_get',
  'get_quiet',
  'quiet_troubl',
  'troubl_carri',
  'carri_quick',
  'quick_convers',
  'convers_high',
  'high_regardless',
  'regardless_felt',
  'felt_hurt',
  'hurt_say',
  'say_anyth',
  'anyth_got',
  'got_irrit',
  'irrit_friend',
  'friend_ask',
  'ask_hell',
  'hell_would',
  'would_say',
  'say_make',
  'make_twice',
  'twice_friend',
  'friend_went',
  'went_quiet',
  'quiet_second',
  'second_continu',
  'continu_say',
  'say_aint',
  'aint_gold',
  'gold_dig',
  'dig_anyon',
  'anyon_parti',
  'parti_yall',
  'yall_think',
  'think_im',
  'im_cheap',
  'cheap_yall',
  'yall_think',
  'think_im',
  'im_stupid',
  'stupid_boyfriend',
  'boyfriend_want',
  'want_leav',
  'leav_parti',
  'parti_shortli',
  'shortli_pretti',
  'pretti_upset',
  'upset_tell',
  'tell_everyon',
  'everyon_make',
  'make_twice',
  'twice_said',
  'said_would',
  'would_held',
  'held_tongu',
  'tongu_hed',
  'hed_check',
  'check_friend',
  'friend_say',
  'say_anyth',
  'anyth_let',
  'let_talk',
  'talk_like',
  'like_said',
  'said_humili',
  'humili_everyon',
  'everyon_think',
  'think_im',
  'im_bitch',
  'bitch_flippantli',
  'flippantli_said',
  'said_least',
  'least_know',
  'know_im',
  'im_rich',
  'rich_bitch',
  'bitch_angri',
  'angri_embarrass',
  'embarrass_spoke',
  'spoke_angri',
  'angri_say',
  'say_anyth',
  'anyth_friend',
  'friend_talk',
  'talk_shit',
  'shit_check',
  'check_stuff',
  'stuff_still',
  'still_tens',
  'tens_aita',
  'aita_explain',
  'explain_im',
  'im_gold',
  'gold_digger',
  'im_relationship_guy',
  'relationship_guy_also',
  'guy_also_work',
  'also_work_tech',
  'work_tech_make',
  'tech_make_make',
  'make_make_mechan',
  'make_mechan_engin',
  'mechan_engin_robot',
  'engin_robot_startup',
  'robot_startup_work',
  'startup_work_stabl',
  'work_stabl_job',
  'stabl_job_program',
  'job_program_larg',
  'program_larg_compani',
  'larg_compani_brought',
  'compani_brought_meet',
  'brought_meet_friend',
  'meet_friend_parti',
  'friend_parti_ask',
  'parti_ask_friend',
  'ask_friend_mostli',
  'friend_mostli_work',
  'mostli_work_tech',
  'work_tech_talk',
  'tech_talk_term',
  'talk_term_job',
  'term_job_told',
  'job_told_im',
  'told_im_hiker',
  'im_hiker_archeri',
  'hiker_archeri_love',
  'archeri_love_road',
  'love_road_trip',
  'road_trip_camp',
  'trip_camp_ride',
  'camp_ride_dirtbik',
  'ride_dirtbik_etc',
  'dirtbik_etc_basic',
  'etc_basic_talk',
  'basic_talk_hobbi',
  'talk_hobbi_work',
  'hobbi_work_way',
  'work_way_get',
  'way_get_paid',
  'get_paid_shit',
  'paid_shit_love',
  'shit_love_defin',
  'love_defin_come',
  'defin_come_mind',
  'come_mind_someon',
  'mind_someon_want',
  'someon_want_tell',
  'want_tell_one',
  'tell_one_friend',
  'one_friend_ask',
  'friend_ask_work',
  'ask_work_said',
  'work_said_oh',
  'said_oh_gosh',
  'oh_gosh_wan',
  'gosh_wan_na',
  'wan_na_talk',
  'na_talk_work',
  'talk_work_parti',
  'work_parti_spent',
  'parti_spent_whole',
  'spent_whole_day',
  'whole_day_sweat',
  'day_sweat_ass',
  'sweat_ass_degre',
  'ass_degre_heat',
  'degre_heat_tri',
  'heat_tri_replac',
  'tri_replac_bust',
  'replac_bust_ass',
  'bust_ass_motor',
  'ass_motor_find',
  'motor_find_replac',
  'find_replac_part',
  'replac_part_also',
  'part_also_fuck',
  'also_fuck_lie',
  'fuck_lie_tri',
  'lie_tri_downplay',
  'tri_downplay_good',
  'downplay_good_job',
  'good_job_realli',
  'job_realli_spent',
  'realli_spent_day',
  'spent_day_mood',
  'day_mood_talk',
  'mood_talk_shop',
  'talk_shop_parti',
  'shop_parti_convers',
  'parti_convers_came',
  'convers_came_casual',
  'came_casual_probabl',
  'casual_probabl_also',
  'probabl_also_made',
  'also_made_seem',
  'made_seem_poorer',
  'seem_poorer_like',
  'poorer_like_say',
  'like_say_car',
  'say_car_dealership',
  'car_dealership_repair',
  'dealership_repair_ripoff',
  'repair_ripoff_tell',
  'ripoff_tell_boyfriend',
  'tell_boyfriend_childhood',
  'boyfriend_childhood_neighbor',
  'childhood_neighbor_trailer',
  'neighbor_trailer_caught',
  'trailer_caught_fire',
  'caught_fire_gon',
  'fire_gon_na',
  'gon_na_visit',
  'na_visit_help',
  'visit_help_purpos',
  'help_purpos_liter',
  'purpos_liter_talk',
  'liter_talk_life',
  'talk_life_guess',
  'life_guess_gave',
  'guess_gave_impress',
  'gave_impress_poorer',
  'impress_poorer_got',
  'poorer_got_later',
  'got_later_night',
  'later_night_everyon',
  'night_everyon_get',
  'everyon_get_drunker',
  'get_drunker_friend',
  'drunker_friend_close',
  'friend_close_one',
  'close_one_tho',
  'one_tho_make',
  'tho_make_joke',
  'make_joke_grow',
  'joke_grow_trailer',
  'grow_trailer_gold',
  'trailer_gold_digger',
  'gold_digger_readi',
  'digger_readi_jump',
  'readi_jump_richer',
  'jump_richer_guy',
  'richer_guy_realli',
  'guy_realli_misogynist',
  'realli_misogynist_shit',
  'misogynist_shit_honestli',
  'shit_honestli_sinc',
  'honestli_sinc_even',
  'sinc_even_know',
  'even_know_seem',
  'know_seem_assum',
  'seem_assum_girl',
  'assum_girl_good',
  'girl_good_digger',
  'good_digger_say',
  'digger_say_anyth',
  'say_anyth_later',
  'anyth_later_said',
  'later_said_hed',
  'said_hed_smoke',
  'hed_smoke_weed',
  'smoke_weed_get',
  'weed_get_quiet',
  'get_quiet_troubl',
  'quiet_troubl_carri',
  'troubl_carri_quick',
  'carri_quick_convers',
  'quick_convers_high',
  'convers_high_regardless',
  'high_regardless_felt',
  'regardless_felt_hurt',
  'felt_hurt_say',
  'hurt_say_anyth',
  'say_anyth_got',
  'anyth_got_irrit',
  'got_irrit_friend',
  'irrit_friend_ask',
  'friend_ask_hell',
  'ask_hell_would',
  'hell_would_say',
  'would_say_make',
  'say_make_twice',
  'make_twice_friend',
  'twice_friend_went',
  'friend_went_quiet',
  'went_quiet_second',
  'quiet_second_continu',
  'second_continu_say',
  'continu_say_aint',
  'say_aint_gold',
  'aint_gold_dig',
  'gold_dig_anyon',
  'dig_anyon_parti',
  'anyon_parti_yall',
  'parti_yall_think',
  'yall_think_im',
  'think_im_cheap',
  'im_cheap_yall',
  'cheap_yall_think',
  'yall_think_im',
  'think_im_stupid',
  'im_stupid_boyfriend',
  'stupid_boyfriend_want',
  'boyfriend_want_leav',
  'want_leav_parti',
  'leav_parti_shortli',
  'parti_shortli_pretti',
  'shortli_pretti_upset',
  'pretti_upset_tell',
  'upset_tell_everyon',
  'tell_everyon_make',
  'everyon_make_twice',
  'make_twice_said',
  'twice_said_would',
  'said_would_held',
  'would_held_tongu',
  'held_tongu_hed',
  'tongu_hed_check',
  'hed_check_friend',
  'check_friend_say',
  'friend_say_anyth',
  'say_anyth_let',
  'anyth_let_talk',
  'let_talk_like',
  'talk_like_said',
  'like_said_humili',
  'said_humili_everyon',
  'humili_everyon_think',
  'everyon_think_im',
  'think_im_bitch',
  'im_bitch_flippantli',
  'bitch_flippantli_said',
  'flippantli_said_least',
  'said_least_know',
  'least_know_im',
  'know_im_rich',
  'im_rich_bitch',
  'rich_bitch_angri',
  'bitch_angri_embarrass',
  'angri_embarrass_spoke',
  'embarrass_spoke_angri',
  'spoke_angri_say',
  'angri_say_anyth',
  'say_anyth_friend',
  'anyth_friend_talk',
  'friend_talk_shit',
  'talk_shit_check',
  'shit_check_stuff',
  'check_stuff_still',
  'stuff_still_tens',
  'still_tens_aita',
  'tens_aita_explain',
  'aita_explain_im',
  'explain_im_gold',
  'im_gold_digger'],
 ['father',
  'breadwinn',
  'mom',
  'sahm',
  'handl',
  'everyth',
  'around',
  'hous',
  'like',
  'cook',
  'mop',
  'wash',
  'laundri',
  'etc',
  'im',
  'oldest',
  'tri',
  'help',
  'realli',
  'much',
  'dad',
  'get',
  'home',
  'end',
  'day',
  'liter',
  'complain',
  'everyth',
  'like',
  'carpet',
  'clean',
  'food',
  'cold',
  'result',
  'id',
  'listen',
  'huge',
  'argument',
  'daili',
  'mom',
  'exhaust',
  'honestlyi',
  'think',
  'dad',
  'wrong',
  'tri',
  'talk',
  'get',
  'see',
  'behavior',
  'avail',
  'pick',
  'day',
  'pretend',
  'act',
  'like',
  'put',
  'togeth',
  'outfit',
  'look',
  'like',
  'suit',
  'put',
  'black',
  'tape',
  'lip',
  'look',
  'like',
  'mustach',
  'pm',
  'went',
  'insid',
  'hous',
  'shout',
  'im',
  'home',
  'sat',
  'next',
  'live',
  'room',
  'start',
  'kick',
  'shoe',
  'complain',
  'state',
  'hous',
  'top',
  'lung',
  'glanc',
  'confus',
  'ask',
  'ignor',
  'start',
  'yell',
  'carpet',
  'dirti',
  'shower',
  'readi',
  'kid',
  'need',
  'quiet',
  'kept',
  'stare',
  'mom',
  'sibl',
  'laugh',
  'youngest',
  'brother',
  'kept',
  'point',
  'toward',
  'say',
  'daddi',
  'proceed',
  'yell',
  'dinner',
  'berat',
  'mom',
  'prepar',
  'ut',
  'time',
  'dad',
  'stop',
  'seriou',
  'tone',
  'ask',
  'turn',
  'said',
  'cant',
  'man',
  'ef',
  'rest',
  'work',
  'long',
  'hour',
  'macho',
  'voic',
  'could',
  'muster',
  'dad',
  'got',
  'hint',
  'common',
  'phrase',
  'use',
  'daili',
  'went',
  'quiet',
  'avoid',
  'look',
  'stop',
  'act',
  'told',
  'tri',
  'show',
  'like',
  'everyday',
  'come',
  'home',
  'work',
  'said',
  'noth',
  'went',
  'outsid',
  'refus',
  'speak',
  'later',
  'went',
  'mock',
  'invalid',
  'work',
  'hard',
  'disrespect',
  'invalid',
  'mom',
  'said',
  'funni',
  'also',
  'thought',
  'hurt',
  'dad',
  'feel',
  'couldv',
  'gotten',
  'messag',
  'across',
  'way',
  'instead',
  'aita',
  'father_breadwinn',
  'breadwinn_mom',
  'mom_sahm',
  'sahm_handl',
  'handl_everyth',
  'everyth_around',
  'around_hous',
  'hous_like',
  'like_cook',
  'cook_mop',
  'mop_wash',
  'wash_laundri',
  'laundri_etc',
  'etc_im',
  'im_oldest',
  'oldest_tri',
  'tri_help',
  'help_realli',
  'realli_much',
  'much_dad',
  'dad_get',
  'get_home',
  'home_end',
  'end_day',
  'day_liter',
  'liter_complain',
  'complain_everyth',
  'everyth_like',
  'like_carpet',
  'carpet_clean',
  'clean_food',
  'food_cold',
  'cold_result',
  'result_id',
  'id_listen',
  'listen_huge',
  'huge_argument',
  'argument_daili',
  'daili_mom',
  'mom_exhaust',
  'exhaust_honestlyi',
  'honestlyi_think',
  'think_dad',
  'dad_wrong',
  'wrong_tri',
  'tri_talk',
  'talk_get',
  'get_see',
  'see_behavior',
  'behavior_avail',
  'avail_pick',
  'pick_day',
  'day_pretend',
  'pretend_act',
  'act_like',
  'like_put',
  'put_togeth',
  'togeth_outfit',
  'outfit_look',
  'look_like',
  'like_suit',
  'suit_put',
  'put_black',
  'black_tape',
  'tape_lip',
  'lip_look',
  'look_like',
  'like_mustach',
  'mustach_pm',
  'pm_went',
  'went_insid',
  'insid_hous',
  'hous_shout',
  'shout_im',
  'im_home',
  'home_sat',
  'sat_next',
  'next_live',
  'live_room',
  'room_start',
  'start_kick',
  'kick_shoe',
  'shoe_complain',
  'complain_state',
  'state_hous',
  'hous_top',
  'top_lung',
  'lung_glanc',
  'glanc_confus',
  'confus_ask',
  'ask_ignor',
  'ignor_start',
  'start_yell',
  'yell_carpet',
  'carpet_dirti',
  'dirti_shower',
  'shower_readi',
  'readi_kid',
  'kid_need',
  'need_quiet',
  'quiet_kept',
  'kept_stare',
  'stare_mom',
  'mom_sibl',
  'sibl_laugh',
  'laugh_youngest',
  'youngest_brother',
  'brother_kept',
  'kept_point',
  'point_toward',
  'toward_say',
  'say_daddi',
  'daddi_proceed',
  'proceed_yell',
  'yell_dinner',
  'dinner_berat',
  'berat_mom',
  'mom_prepar',
  'prepar_ut',
  'ut_time',
  'time_dad',
  'dad_stop',
  'stop_seriou',
  'seriou_tone',
  'tone_ask',
  'ask_turn',
  'turn_said',
  'said_cant',
  'cant_man',
  'man_ef',
  'ef_rest',
  'rest_work',
  'work_long',
  'long_hour',
  'hour_macho',
  'macho_voic',
  'voic_could',
  'could_muster',
  'muster_dad',
  'dad_got',
  'got_hint',
  'hint_common',
  'common_phrase',
  'phrase_use',
  'use_daili',
  'daili_went',
  'went_quiet',
  'quiet_avoid',
  'avoid_look',
  'look_stop',
  'stop_act',
  'act_told',
  'told_tri',
  'tri_show',
  'show_like',
  'like_everyday',
  'everyday_come',
  'come_home',
  'home_work',
  'work_said',
  'said_noth',
  'noth_went',
  'went_outsid',
  'outsid_refus',
  'refus_speak',
  'speak_later',
  'later_went',
  'went_mock',
  'mock_invalid',
  'invalid_work',
  'work_hard',
  'hard_disrespect',
  'disrespect_invalid',
  'invalid_mom',
  'mom_said',
  'said_funni',
  'funni_also',
  'also_thought',
  'thought_hurt',
  'hurt_dad',
  'dad_feel',
  'feel_couldv',
  'couldv_gotten',
  'gotten_messag',
  'messag_across',
  'across_way',
  'way_instead',
  'instead_aita',
  'father_breadwinn_mom',
  'breadwinn_mom_sahm',
  'mom_sahm_handl',
  'sahm_handl_everyth',
  'handl_everyth_around',
  'everyth_around_hous',
  'around_hous_like',
  'hous_like_cook',
  'like_cook_mop',
  'cook_mop_wash',
  'mop_wash_laundri',
  'wash_laundri_etc',
  'laundri_etc_im',
  'etc_im_oldest',
  'im_oldest_tri',
  'oldest_tri_help',
  'tri_help_realli',
  'help_realli_much',
  'realli_much_dad',
  'much_dad_get',
  'dad_get_home',
  'get_home_end',
  'home_end_day',
  'end_day_liter',
  'day_liter_complain',
  'liter_complain_everyth',
  'complain_everyth_like',
  'everyth_like_carpet',
  'like_carpet_clean',
  'carpet_clean_food',
  'clean_food_cold',
  'food_cold_result',
  'cold_result_id',
  'result_id_listen',
  'id_listen_huge',
  'listen_huge_argument',
  'huge_argument_daili',
  'argument_daili_mom',
  'daili_mom_exhaust',
  'mom_exhaust_honestlyi',
  'exhaust_honestlyi_think',
  'honestlyi_think_dad',
  'think_dad_wrong',
  'dad_wrong_tri',
  'wrong_tri_talk',
  'tri_talk_get',
  'talk_get_see',
  'get_see_behavior',
  'see_behavior_avail',
  'behavior_avail_pick',
  'avail_pick_day',
  'pick_day_pretend',
  'day_pretend_act',
  'pretend_act_like',
  'act_like_put',
  'like_put_togeth',
  'put_togeth_outfit',
  'togeth_outfit_look',
  'outfit_look_like',
  'look_like_suit',
  'like_suit_put',
  'suit_put_black',
  'put_black_tape',
  'black_tape_lip',
  'tape_lip_look',
  'lip_look_like',
  'look_like_mustach',
  'like_mustach_pm',
  'mustach_pm_went',
  'pm_went_insid',
  'went_insid_hous',
  'insid_hous_shout',
  'hous_shout_im',
  'shout_im_home',
  'im_home_sat',
  'home_sat_next',
  'sat_next_live',
  'next_live_room',
  'live_room_start',
  'room_start_kick',
  'start_kick_shoe',
  'kick_shoe_complain',
  'shoe_complain_state',
  'complain_state_hous',
  'state_hous_top',
  'hous_top_lung',
  'top_lung_glanc',
  'lung_glanc_confus',
  'glanc_confus_ask',
  'confus_ask_ignor',
  'ask_ignor_start',
  'ignor_start_yell',
  'start_yell_carpet',
  'yell_carpet_dirti',
  'carpet_dirti_shower',
  'dirti_shower_readi',
  'shower_readi_kid',
  'readi_kid_need',
  'kid_need_quiet',
  'need_quiet_kept',
  'quiet_kept_stare',
  'kept_stare_mom',
  'stare_mom_sibl',
  'mom_sibl_laugh',
  'sibl_laugh_youngest',
  'laugh_youngest_brother',
  'youngest_brother_kept',
  'brother_kept_point',
  'kept_point_toward',
  'point_toward_say',
  'toward_say_daddi',
  'say_daddi_proceed',
  'daddi_proceed_yell',
  'proceed_yell_dinner',
  'yell_dinner_berat',
  'dinner_berat_mom',
  'berat_mom_prepar',
  'mom_prepar_ut',
  'prepar_ut_time',
  'ut_time_dad',
  'time_dad_stop',
  'dad_stop_seriou',
  'stop_seriou_tone',
  'seriou_tone_ask',
  'tone_ask_turn',
  'ask_turn_said',
  'turn_said_cant',
  'said_cant_man',
  'cant_man_ef',
  'man_ef_rest',
  'ef_rest_work',
  'rest_work_long',
  'work_long_hour',
  'long_hour_macho',
  'hour_macho_voic',
  'macho_voic_could',
  'voic_could_muster',
  'could_muster_dad',
  'muster_dad_got',
  'dad_got_hint',
  'got_hint_common',
  'hint_common_phrase',
  'common_phrase_use',
  'phrase_use_daili',
  'use_daili_went',
  'daili_went_quiet',
  'went_quiet_avoid',
  'quiet_avoid_look',
  'avoid_look_stop',
  'look_stop_act',
  'stop_act_told',
  'act_told_tri',
  'told_tri_show',
  'tri_show_like',
  'show_like_everyday',
  'like_everyday_come',
  'everyday_come_home',
  'come_home_work',
  'home_work_said',
  'work_said_noth',
  'said_noth_went',
  'noth_went_outsid',
  'went_outsid_refus',
  'outsid_refus_speak',
  'refus_speak_later',
  'speak_later_went',
  'later_went_mock',
  'went_mock_invalid',
  'mock_invalid_work',
  'invalid_work_hard',
  'work_hard_disrespect',
  'hard_disrespect_invalid',
  'disrespect_invalid_mom',
  'invalid_mom_said',
  'mom_said_funni',
  'said_funni_also',
  'funni_also_thought',
  'also_thought_hurt',
  'thought_hurt_dad',
  'hurt_dad_feel',
  'dad_feel_couldv',
  'feel_couldv_gotten',
  'couldv_gotten_messag',
  'gotten_messag_across',
  'messag_across_way',
  'across_way_instead',
  'way_instead_aita'],
 ['edit',
  'titl',
  'aita',
  'tell',
  'guy',
  'work',
  'let',
  'pay',
  'drink',
  'whole',
  'even',
  '--',
  '--',
  'friend',
  'grace',
  'invit',
  'board',
  'game',
  'bar',
  'play',
  'drink',
  'boyfriend',
  'one',
  'friend',
  'nick',
  'went',
  'get',
  'drink',
  'pair',
  'grace',
  'go',
  'boyfriend',
  'meanwhil',
  'nick',
  'stay',
  'tabl',
  'vice',
  'versa',
  'nick',
  'plenti',
  'time',
  'talk',
  'two',
  'us',
  'nick',
  'start',
  'night',
  'tell',
  'recent',
  'career',
  'chang',
  'decid',
  'quit',
  'previou',
  'job',
  'go',
  'code',
  'bootcamp',
  'got',
  'job',
  'develop',
  'one',
  'two',
  'month',
  'ago',
  'proud',
  'new',
  'salari',
  'told',
  'multipl',
  'time',
  'never',
  'ask',
  'work',
  'talk',
  'new',
  'job',
  'quit',
  'lot',
  'occasion',
  'say',
  'sorri',
  'understand',
  'haha',
  'entir',
  'even',
  'never',
  'told',
  'work',
  'softwar',
  'engin',
  'past',
  'year',
  'never',
  'ask',
  'honestli',
  'found',
  'bit',
  'entertain',
  'came',
  'drink',
  'invit',
  'everi',
  'singl',
  'one',
  'worri',
  'problem',
  'devop',
  'salari',
  'told',
  'multipl',
  'time',
  'pay',
  'insist',
  'end',
  'night',
  'say',
  'goodby',
  'took',
  'phone',
  'send',
  'friend',
  'request',
  'facebook',
  'job',
  'list',
  'profil',
  'realiz',
  'im',
  'softwar',
  'engin',
  'ask',
  'true',
  'im',
  'softwar',
  'engin',
  'answer',
  'ye',
  'ask',
  'told',
  'let',
  'believ',
  'cashier',
  'like',
  'grace',
  'use',
  'never',
  'impli',
  'let',
  'pay',
  'everyth',
  'probabl',
  'earn',
  'told',
  'never',
  'ask',
  'fault',
  'assum',
  'could',
  'simpli',
  'ask',
  'job',
  'want',
  'brag',
  'want',
  'pay',
  'back',
  'drink',
  'angri',
  'said',
  'made',
  'fool',
  'think',
  'grace',
  'boyfriend',
  'side',
  'say',
  'wouldv',
  'cost',
  'noth',
  'tell',
  'earli',
  'even',
  'kept',
  'entertain',
  'well',
  'find',
  'entertain',
  'realli',
  'feel',
  'like',
  'anyth',
  'wrong',
  'aita',
  'edit_titl',
  'titl_aita',
  'aita_tell',
  'tell_guy',
  'guy_work',
  'work_let',
  'let_pay',
  'pay_drink',
  'drink_whole',
  'whole_even',
  'even_--',
  '--_--',
  '--_friend',
  'friend_grace',
  'grace_invit',
  'invit_board',
  'board_game',
  'game_bar',
  'bar_play',
  'play_drink',
  'drink_boyfriend',
  'boyfriend_one',
  'one_friend',
  'friend_nick',
  'nick_went',
  'went_get',
  'get_drink',
  'drink_pair',
  'pair_grace',
  'grace_go',
  'go_boyfriend',
  'boyfriend_meanwhil',
  'meanwhil_nick',
  'nick_stay',
  'stay_tabl',
  'tabl_vice',
  'vice_versa',
  'versa_nick',
  'nick_plenti',
  'plenti_time',
  'time_talk',
  'talk_two',
  'two_us',
  'us_nick',
  'nick_start',
  'start_night',
  'night_tell',
  'tell_recent',
  'recent_career',
  'career_chang',
  'chang_decid',
  'decid_quit',
  'quit_previou',
  'previou_job',
  'job_go',
  'go_code',
  'code_bootcamp',
  'bootcamp_got',
  'got_job',
  'job_develop',
  'develop_one',
  'one_two',
  'two_month',
  'month_ago',
  'ago_proud',
  'proud_new',
  'new_salari',
  'salari_told',
  'told_multipl',
  'multipl_time',
  'time_never',
  'never_ask',
  'ask_work',
  'work_talk',
  'talk_new',
  'new_job',
  'job_quit',
  'quit_lot',
  'lot_occasion',
  'occasion_say',
  'say_sorri',
  'sorri_understand',
  'understand_haha',
  'haha_entir',
  'entir_even',
  'even_never',
  'never_told',
  'told_work',
  'work_softwar',
  'softwar_engin',
  'engin_past',
  'past_year',
  'year_never',
  'never_ask',
  'ask_honestli',
  'honestli_found',
  'found_bit',
  'bit_entertain',
  'entertain_came',
  'came_drink',
  'drink_invit',
  'invit_everi',
  'everi_singl',
  'singl_one',
  'one_worri',
  'worri_problem',
  'problem_devop',
  'devop_salari',
  'salari_told',
  'told_multipl',
  'multipl_time',
  'time_pay',
  'pay_insist',
  'insist_end',
  'end_night',
  'night_say',
  'say_goodby',
  'goodby_took',
  'took_phone',
  'phone_send',
  'send_friend',
  'friend_request',
  'request_facebook',
  'facebook_job',
  'job_list',
  'list_profil',
  'profil_realiz',
  'realiz_im',
  'im_softwar',
  'softwar_engin',
  'engin_ask',
  'ask_true',
  'true_im',
  'im_softwar',
  'softwar_engin',
  'engin_answer',
  'answer_ye',
  'ye_ask',
  'ask_told',
  'told_let',
  'let_believ',
  'believ_cashier',
  'cashier_like',
  'like_grace',
  'grace_use',
  'use_never',
  'never_impli',
  'impli_let',
  'let_pay',
  'pay_everyth',
  'everyth_probabl',
  'probabl_earn',
  'earn_told',
  'told_never',
  'never_ask',
  'ask_fault',
  'fault_assum',
  'assum_could',
  'could_simpli',
  'simpli_ask',
  'ask_job',
  'job_want',
  'want_brag',
  'brag_want',
  'want_pay',
  'pay_back',
  'back_drink',
  'drink_angri',
  'angri_said',
  'said_made',
  'made_fool',
  'fool_think',
  'think_grace',
  'grace_boyfriend',
  'boyfriend_side',
  'side_say',
  'say_wouldv',
  'wouldv_cost',
  'cost_noth',
  'noth_tell',
  'tell_earli',
  'earli_even',
  'even_kept',
  'kept_entertain',
  'entertain_well',
  'well_find',
  'find_entertain',
  'entertain_realli',
  'realli_feel',
  'feel_like',
  'like_anyth',
  'anyth_wrong',
  'wrong_aita',
  'edit_titl_aita',
  'titl_aita_tell',
  'aita_tell_guy',
  'tell_guy_work',
  'guy_work_let',
  'work_let_pay',
  'let_pay_drink',
  'pay_drink_whole',
  'drink_whole_even',
  'whole_even_--',
  'even_--_--',
  '--_--_friend',
  '--_friend_grace',
  'friend_grace_invit',
  'grace_invit_board',
  'invit_board_game',
  'board_game_bar',
  'game_bar_play',
  'bar_play_drink',
  'play_drink_boyfriend',
  'drink_boyfriend_one',
  'boyfriend_one_friend',
  'one_friend_nick',
  'friend_nick_went',
  'nick_went_get',
  'went_get_drink',
  'get_drink_pair',
  'drink_pair_grace',
  'pair_grace_go',
  'grace_go_boyfriend',
  'go_boyfriend_meanwhil',
  'boyfriend_meanwhil_nick',
  'meanwhil_nick_stay',
  'nick_stay_tabl',
  'stay_tabl_vice',
  'tabl_vice_versa',
  'vice_versa_nick',
  'versa_nick_plenti',
  'nick_plenti_time',
  'plenti_time_talk',
  'time_talk_two',
  'talk_two_us',
  'two_us_nick',
  'us_nick_start',
  'nick_start_night',
  'start_night_tell',
  'night_tell_recent',
  'tell_recent_career',
  'recent_career_chang',
  'career_chang_decid',
  'chang_decid_quit',
  'decid_quit_previou',
  'quit_previou_job',
  'previou_job_go',
  'job_go_code',
  'go_code_bootcamp',
  'code_bootcamp_got',
  'bootcamp_got_job',
  'got_job_develop',
  'job_develop_one',
  'develop_one_two',
  'one_two_month',
  'two_month_ago',
  'month_ago_proud',
  'ago_proud_new',
  'proud_new_salari',
  'new_salari_told',
  'salari_told_multipl',
  'told_multipl_time',
  'multipl_time_never',
  'time_never_ask',
  'never_ask_work',
  'ask_work_talk',
  'work_talk_new',
  'talk_new_job',
  'new_job_quit',
  'job_quit_lot',
  'quit_lot_occasion',
  'lot_occasion_say',
  'occasion_say_sorri',
  'say_sorri_understand',
  'sorri_understand_haha',
  'understand_haha_entir',
  'haha_entir_even',
  'entir_even_never',
  'even_never_told',
  'never_told_work',
  'told_work_softwar',
  'work_softwar_engin',
  'softwar_engin_past',
  'engin_past_year',
  'past_year_never',
  'year_never_ask',
  'never_ask_honestli',
  'ask_honestli_found',
  'honestli_found_bit',
  'found_bit_entertain',
  'bit_entertain_came',
  'entertain_came_drink',
  'came_drink_invit',
  'drink_invit_everi',
  'invit_everi_singl',
  'everi_singl_one',
  'singl_one_worri',
  'one_worri_problem',
  'worri_problem_devop',
  'problem_devop_salari',
  'devop_salari_told',
  'salari_told_multipl',
  'told_multipl_time',
  'multipl_time_pay',
  'time_pay_insist',
  'pay_insist_end',
  'insist_end_night',
  'end_night_say',
  'night_say_goodby',
  'say_goodby_took',
  'goodby_took_phone',
  'took_phone_send',
  'phone_send_friend',
  'send_friend_request',
  'friend_request_facebook',
  'request_facebook_job',
  'facebook_job_list',
  'job_list_profil',
  'list_profil_realiz',
  'profil_realiz_im',
  'realiz_im_softwar',
  'im_softwar_engin',
  'softwar_engin_ask',
  'engin_ask_true',
  'ask_true_im',
  'true_im_softwar',
  'im_softwar_engin',
  'softwar_engin_answer',
  'engin_answer_ye',
  'answer_ye_ask',
  'ye_ask_told',
  'ask_told_let',
  'told_let_believ',
  'let_believ_cashier',
  'believ_cashier_like',
  'cashier_like_grace',
  'like_grace_use',
  'grace_use_never',
  'use_never_impli',
  'never_impli_let',
  'impli_let_pay',
  'let_pay_everyth',
  'pay_everyth_probabl',
  'everyth_probabl_earn',
  'probabl_earn_told',
  'earn_told_never',
  'told_never_ask',
  'never_ask_fault',
  'ask_fault_assum',
  'fault_assum_could',
  'assum_could_simpli',
  'could_simpli_ask',
  'simpli_ask_job',
  'ask_job_want',
  'job_want_brag',
  'want_brag_want',
  'brag_want_pay',
  'want_pay_back',
  'pay_back_drink',
  'back_drink_angri',
  'drink_angri_said',
  'angri_said_made',
  'said_made_fool',
  'made_fool_think',
  'fool_think_grace',
  'think_grace_boyfriend',
  'grace_boyfriend_side',
  'boyfriend_side_say',
  'side_say_wouldv',
  'say_wouldv_cost',
  'wouldv_cost_noth',
  'cost_noth_tell',
  'noth_tell_earli',
  'tell_earli_even',
  'earli_even_kept',
  'even_kept_entertain',
  'kept_entertain_well',
  'entertain_well_find',
  'well_find_entertain',
  'find_entertain_realli',
  'entertain_realli_feel',
  'realli_feel_like',
  'feel_like_anyth',
  'like_anyth_wrong',
  'anyth_wrong_aita'],
 ['son',
  'aiden',
  'move',
  'back',
  'us',
  'upon',
  'graduat',
  'colleg',
  'husband',
  'want',
  'husband',
  'origin',
  'plan',
  'aiden',
  'live',
  'us',
  'free',
  'stay',
  'home',
  'help',
  'disabl',
  'younger',
  'brother',
  'aident',
  'start',
  'complain',
  'need',
  'money',
  'want',
  'find',
  'job',
  'husband',
  'even',
  'offer',
  'doubl',
  'allow',
  'aiden',
  'grow',
  'tire',
  'stay',
  'home',
  'began',
  'look',
  'job',
  'year',
  'non',
  'job',
  'applic',
  'came',
  'hed',
  'appli',
  'never',
  'get',
  'back',
  'confus',
  'til',
  'recent',
  'found',
  'husband',
  'behind',
  'job',
  'applic',
  'cancel',
  'hed',
  'wait',
  'tol',
  'aiden',
  'appli',
  'proce',
  'cancel',
  'applic',
  'imperson',
  'use',
  'email',
  'blew',
  'justif',
  'tri',
  'make',
  'sure',
  'younger',
  'son',
  'care',
  'aiden',
  'said',
  'aiden',
  'big',
  'help',
  'get',
  'job',
  'affect',
  'care',
  'brother',
  'went',
  'ahead',
  'rent',
  'apart',
  'aiden',
  'told',
  'stay',
  'til',
  'find',
  'job',
  'start',
  'pay',
  'aiden',
  'hurt',
  'upon',
  'know',
  'dad',
  'husband',
  'livid',
  'found',
  'call',
  'unhing',
  'said',
  'separ',
  'boy',
  'teach',
  'aiden',
  'becom',
  'selfish',
  'care',
  'job',
  'famili',
  'also',
  'said',
  'huge',
  'decis',
  'rent',
  'apart',
  'without',
  'even',
  'run',
  'give',
  'hell',
  'call',
  'terribl',
  'mother',
  'encourag',
  'aiden',
  'selfish',
  'selfcent',
  'said',
  'need',
  'see',
  'understand',
  '[',
  'edit',
  ']',
  'thing',
  'mention',
  'husband',
  'say',
  'sinc',
  'health',
  'issu',
  'could',
  'use',
  'aiden',
  'help',
  'suggest',
  'outsid',
  'help',
  'husband',
  'refus',
  'say',
  'ask',
  'anyth',
  'anybodi',
  'son',
  'problem',
  'bodi',
  'els',
  'use',
  'money',
  'joint',
  'account',
  'pay',
  'rental',
  'apart',
  'husband',
  'said',
  'wrong',
  'major',
  'wast',
  'money',
  'sinc',
  'deal',
  'medic',
  'bill',
  'consistenli',
  'son_aiden',
  'aiden_move',
  'move_back',
  'back_us',
  'us_upon',
  'upon_graduat',
  'graduat_colleg',
  'colleg_husband',
  'husband_want',
  'want_husband',
  'husband_origin',
  'origin_plan',
  'plan_aiden',
  'aiden_live',
  'live_us',
  'us_free',
  'free_stay',
  'stay_home',
  'home_help',
  'help_disabl',
  'disabl_younger',
  'younger_brother',
  'brother_aident',
  'aident_start',
  'start_complain',
  'complain_need',
  'need_money',
  'money_want',
  'want_find',
  'find_job',
  'job_husband',
  'husband_even',
  'even_offer',
  'offer_doubl',
  'doubl_allow',
  'allow_aiden',
  'aiden_grow',
  'grow_tire',
  'tire_stay',
  'stay_home',
  'home_began',
  'began_look',
  'look_job',
  'job_year',
  'year_non',
  'non_job',
  'job_applic',
  'applic_came',
  'came_hed',
  'hed_appli',
  'appli_never',
  'never_get',
  'get_back',
  'back_confus',
  'confus_til',
  'til_recent',
  'recent_found',
  'found_husband',
  'husband_behind',
  'behind_job',
  'job_applic',
  'applic_cancel',
  'cancel_hed',
  'hed_wait',
  'wait_tol',
  'tol_aiden',
  'aiden_appli',
  'appli_proce',
  'proce_cancel',
  'cancel_applic',
  'applic_imperson',
  'imperson_use',
  'use_email',
  'email_blew',
  'blew_justif',
  'justif_tri',
  'tri_make',
  'make_sure',
  'sure_younger',
  'younger_son',
  'son_care',
  'care_aiden',
  'aiden_said',
  'said_aiden',
  'aiden_big',
  'big_help',
  'help_get',
  'get_job',
  'job_affect',
  'affect_care',
  'care_brother',
  'brother_went',
  'went_ahead',
  'ahead_rent',
  'rent_apart',
  'apart_aiden',
  'aiden_told',
  'told_stay',
  'stay_til',
  'til_find',
  'find_job',
  'job_start',
  'start_pay',
  'pay_aiden',
  'aiden_hurt',
  'hurt_upon',
  'upon_know',
  'know_dad',
  'dad_husband',
  'husband_livid',
  'livid_found',
  'found_call',
  'call_unhing',
  'unhing_said',
  'said_separ',
  'separ_boy',
  'boy_teach',
  'teach_aiden',
  'aiden_becom',
  'becom_selfish',
  'selfish_care',
  'care_job',
  'job_famili',
  'famili_also',
  'also_said',
  'said_huge',
  'huge_decis',
  'decis_rent',
  'rent_apart',
  'apart_without',
  'without_even',
  'even_run',
  'run_give',
  'give_hell',
  'hell_call',
  'call_terribl',
  'terribl_mother',
  'mother_encourag',
  'encourag_aiden',
  'aiden_selfish',
  'selfish_selfcent',
  'selfcent_said',
  'said_need',
  'need_see',
  'see_understand',
  'understand_[',
  '[_edit',
  'edit_]',
  ']_thing',
  'thing_mention',
  'mention_husband',
  'husband_say',
  'say_sinc',
  'sinc_health',
  'health_issu',
  'issu_could',
  'could_use',
  'use_aiden',
  'aiden_help',
  'help_suggest',
  'suggest_outsid',
  'outsid_help',
  'help_husband',
  'husband_refus',
  'refus_say',
  'say_ask',
  'ask_anyth',
  'anyth_anybodi',
  'anybodi_son',
  'son_problem',
  'problem_bodi',
  'bodi_els',
  'els_use',
  'use_money',
  'money_joint',
  'joint_account',
  'account_pay',
  'pay_rental',
  'rental_apart',
  'apart_husband',
  'husband_said',
  'said_wrong',
  'wrong_major',
  'major_wast',
  'wast_money',
  'money_sinc',
  'sinc_deal',
  'deal_medic',
  'medic_bill',
  'bill_consistenli',
  'son_aiden_move',
  'aiden_move_back',
  'move_back_us',
  'back_us_upon',
  'us_upon_graduat',
  'upon_graduat_colleg',
  'graduat_colleg_husband',
  'colleg_husband_want',
  'husband_want_husband',
  'want_husband_origin',
  'husband_origin_plan',
  'origin_plan_aiden',
  'plan_aiden_live',
  'aiden_live_us',
  'live_us_free',
  'us_free_stay',
  'free_stay_home',
  'stay_home_help',
  'home_help_disabl',
  'help_disabl_younger',
  'disabl_younger_brother',
  'younger_brother_aident',
  'brother_aident_start',
  'aident_start_complain',
  'start_complain_need',
  'complain_need_money',
  'need_money_want',
  'money_want_find',
  'want_find_job',
  'find_job_husband',
  'job_husband_even',
  'husband_even_offer',
  'even_offer_doubl',
  'offer_doubl_allow',
  'doubl_allow_aiden',
  'allow_aiden_grow',
  'aiden_grow_tire',
  'grow_tire_stay',
  'tire_stay_home',
  'stay_home_began',
  'home_began_look',
  'began_look_job',
  'look_job_year',
  'job_year_non',
  'year_non_job',
  'non_job_applic',
  'job_applic_came',
  'applic_came_hed',
  'came_hed_appli',
  'hed_appli_never',
  'appli_never_get',
  'never_get_back',
  'get_back_confus',
  'back_confus_til',
  'confus_til_recent',
  'til_recent_found',
  'recent_found_husband',
  'found_husband_behind',
  'husband_behind_job',
  'behind_job_applic',
  'job_applic_cancel',
  'applic_cancel_hed',
  'cancel_hed_wait',
  'hed_wait_tol',
  'wait_tol_aiden',
  'tol_aiden_appli',
  'aiden_appli_proce',
  'appli_proce_cancel',
  'proce_cancel_applic',
  'cancel_applic_imperson',
  'applic_imperson_use',
  'imperson_use_email',
  'use_email_blew',
  'email_blew_justif',
  'blew_justif_tri',
  'justif_tri_make',
  'tri_make_sure',
  'make_sure_younger',
  'sure_younger_son',
  'younger_son_care',
  'son_care_aiden',
  'care_aiden_said',
  'aiden_said_aiden',
  'said_aiden_big',
  'aiden_big_help',
  'big_help_get',
  'help_get_job',
  'get_job_affect',
  'job_affect_care',
  'affect_care_brother',
  'care_brother_went',
  'brother_went_ahead',
  'went_ahead_rent',
  'ahead_rent_apart',
  'rent_apart_aiden',
  'apart_aiden_told',
  'aiden_told_stay',
  'told_stay_til',
  'stay_til_find',
  'til_find_job',
  'find_job_start',
  'job_start_pay',
  'start_pay_aiden',
  'pay_aiden_hurt',
  'aiden_hurt_upon',
  'hurt_upon_know',
  'upon_know_dad',
  'know_dad_husband',
  'dad_husband_livid',
  'husband_livid_found',
  'livid_found_call',
  'found_call_unhing',
  'call_unhing_said',
  'unhing_said_separ',
  'said_separ_boy',
  'separ_boy_teach',
  'boy_teach_aiden',
  'teach_aiden_becom',
  'aiden_becom_selfish',
  'becom_selfish_care',
  'selfish_care_job',
  'care_job_famili',
  'job_famili_also',
  'famili_also_said',
  'also_said_huge',
  'said_huge_decis',
  'huge_decis_rent',
  'decis_rent_apart',
  'rent_apart_without',
  'apart_without_even',
  'without_even_run',
  'even_run_give',
  'run_give_hell',
  'give_hell_call',
  'hell_call_terribl',
  'call_terribl_mother',
  'terribl_mother_encourag',
  'mother_encourag_aiden',
  'encourag_aiden_selfish',
  'aiden_selfish_selfcent',
  'selfish_selfcent_said',
  'selfcent_said_need',
  'said_need_see',
  'need_see_understand',
  'see_understand_[',
  'understand_[_edit',
  '[_edit_]',
  'edit_]_thing',
  ']_thing_mention',
  'thing_mention_husband',
  'mention_husband_say',
  'husband_say_sinc',
  'say_sinc_health',
  'sinc_health_issu',
  'health_issu_could',
  'issu_could_use',
  'could_use_aiden',
  'use_aiden_help',
  'aiden_help_suggest',
  'help_suggest_outsid',
  'suggest_outsid_help',
  'outsid_help_husband',
  'help_husband_refus',
  'husband_refus_say',
  'refus_say_ask',
  'say_ask_anyth',
  'ask_anyth_anybodi',
  'anyth_anybodi_son',
  'anybodi_son_problem',
  'son_problem_bodi',
  'problem_bodi_els',
  'bodi_els_use',
  'els_use_money',
  'use_money_joint',
  'money_joint_account',
  'joint_account_pay',
  'account_pay_rental',
  'pay_rental_apart',
  'rental_apart_husband',
  'apart_husband_said',
  'husband_said_wrong',
  'said_wrong_major',
  'wrong_major_wast',
  'major_wast_money',
  'wast_money_sinc',
  'money_sinc_deal',
  'sinc_deal_medic',
  'deal_medic_bill',
  'medic_bill_consistenli'],
 ['start',
  'back',
  'march',
  'son',
  'best',
  'friend',
  'turn',
  'thirteen',
  'famili',
  'thirteenth',
  'birthday',
  'huge',
  'deal',
  'addit',
  'massiv',
  'parti',
  'four',
  'us',
  'invit',
  'parent',
  'also',
  'took',
  'disney',
  'world',
  'invit',
  'son',
  'attend',
  'well',
  'wife',
  'hesit',
  'consent',
  'said',
  'unfair',
  'allow',
  'son',
  'go',
  'nine',
  'year',
  'old',
  'daughter',
  'cant',
  'especi',
  'sinc',
  'love',
  'disney',
  'princess',
  'said',
  'kid',
  'alway',
  'exact',
  'opportun',
  'set',
  'preced',
  'well',
  'stick',
  'daughter',
  'get',
  'similar',
  'opportun',
  'wed',
  'punish',
  'children',
  'needlessli',
  'wife',
  'reluctantli',
  'agre',
  'allow',
  'son',
  'go',
  'gave',
  'son',
  'money',
  'buy',
  'sister',
  'souvenir',
  'friend',
  'parent',
  'even',
  'bought',
  'extra',
  'stuff',
  'give',
  'still',
  'saw',
  'come',
  'back',
  'wear',
  'star',
  'war',
  'shirt',
  'mickey',
  'hat',
  'trade',
  'pin',
  'lanyard',
  'burst',
  'tear',
  'wife',
  'later',
  'said',
  'made',
  'huge',
  'mistak',
  'never',
  'let',
  'go',
  'mistakenli',
  'thought',
  'behind',
  'us',
  'well',
  'financi',
  'bil',
  'invit',
  'us',
  'visit',
  'beach',
  'hous',
  'rent',
  'summer',
  'send-off',
  'wife',
  'told',
  'want',
  'son',
  'stay',
  'dad',
  'take',
  'daughter',
  'even',
  'score',
  'told',
  'wife',
  'happen',
  'parent',
  'cant',
  'favor',
  'one',
  'child',
  'invit',
  'birthday',
  'trip',
  'kid',
  'bare',
  'know',
  'way',
  'compar',
  'left',
  '*',
  'famili',
  'vacat',
  '*',
  'im',
  'shock',
  'would',
  'even',
  'suggest',
  'thing',
  'refus',
  'allow',
  'wife',
  'angri',
  'care',
  'im',
  'punish',
  'son',
  'lucki',
  'aita',
  'start_back',
  'back_march',
  'march_son',
  'son_best',
  'best_friend',
  'friend_turn',
  'turn_thirteen',
  'thirteen_famili',
  'famili_thirteenth',
  'thirteenth_birthday',
  'birthday_huge',
  'huge_deal',
  'deal_addit',
  'addit_massiv',
  'massiv_parti',
  'parti_four',
  'four_us',
  'us_invit',
  'invit_parent',
  'parent_also',
  'also_took',
  'took_disney',
  'disney_world',
  'world_invit',
  'invit_son',
  'son_attend',
  'attend_well',
  'well_wife',
  'wife_hesit',
  'hesit_consent',
  'consent_said',
  'said_unfair',
  'unfair_allow',
  'allow_son',
  'son_go',
  'go_nine',
  'nine_year',
  'year_old',
  'old_daughter',
  'daughter_cant',
  'cant_especi',
  'especi_sinc',
  'sinc_love',
  'love_disney',
  'disney_princess',
  'princess_said',
  'said_kid',
  'kid_alway',
  'alway_exact',
  'exact_opportun',
  'opportun_set',
  'set_preced',
  'preced_well',
  'well_stick',
  'stick_daughter',
  'daughter_get',
  'get_similar',
  'similar_opportun',
  'opportun_wed',
  'wed_punish',
  'punish_children',
  'children_needlessli',
  'needlessli_wife',
  'wife_reluctantli',
  'reluctantli_agre',
  'agre_allow',
  'allow_son',
  'son_go',
  'go_gave',
  'gave_son',
  'son_money',
  'money_buy',
  'buy_sister',
  'sister_souvenir',
  'souvenir_friend',
  'friend_parent',
  'parent_even',
  'even_bought',
  'bought_extra',
  'extra_stuff',
  'stuff_give',
  'give_still',
  'still_saw',
  'saw_come',
  'come_back',
  'back_wear',
  'wear_star',
  'star_war',
  'war_shirt',
  'shirt_mickey',
  'mickey_hat',
  'hat_trade',
  'trade_pin',
  'pin_lanyard',
  'lanyard_burst',
  'burst_tear',
  'tear_wife',
  'wife_later',
  'later_said',
  'said_made',
  'made_huge',
  'huge_mistak',
  'mistak_never',
  'never_let',
  'let_go',
  'go_mistakenli',
  'mistakenli_thought',
  'thought_behind',
  'behind_us',
  'us_well',
  'well_financi',
  'financi_bil',
  'bil_invit',
  'invit_us',
  'us_visit',
  'visit_beach',
  'beach_hous',
  'hous_rent',
  'rent_summer',
  'summer_send-off',
  'send-off_wife',
  'wife_told',
  'told_want',
  'want_son',
  'son_stay',
  'stay_dad',
  'dad_take',
  'take_daughter',
  'daughter_even',
  'even_score',
  'score_told',
  'told_wife',
  'wife_happen',
  'happen_parent',
  'parent_cant',
  'cant_favor',
  'favor_one',
  'one_child',
  'child_invit',
  'invit_birthday',
  'birthday_trip',
  'trip_kid',
  'kid_bare',
  'bare_know',
  'know_way',
  'way_compar',
  'compar_left',
  'left_*',
  '*_famili',
  'famili_vacat',
  'vacat_*',
  '*_im',
  'im_shock',
  'shock_would',
  'would_even',
  'even_suggest',
  'suggest_thing',
  'thing_refus',
  'refus_allow',
  'allow_wife',
  'wife_angri',
  'angri_care',
  'care_im',
  'im_punish',
  'punish_son',
  'son_lucki',
  'lucki_aita',
  'start_back_march',
  'back_march_son',
  'march_son_best',
  'son_best_friend',
  'best_friend_turn',
  'friend_turn_thirteen',
  'turn_thirteen_famili',
  'thirteen_famili_thirteenth',
  'famili_thirteenth_birthday',
  'thirteenth_birthday_huge',
  'birthday_huge_deal',
  'huge_deal_addit',
  'deal_addit_massiv',
  'addit_massiv_parti',
  'massiv_parti_four',
  'parti_four_us',
  'four_us_invit',
  'us_invit_parent',
  'invit_parent_also',
  'parent_also_took',
  'also_took_disney',
  'took_disney_world',
  'disney_world_invit',
  'world_invit_son',
  'invit_son_attend',
  'son_attend_well',
  'attend_well_wife',
  'well_wife_hesit',
  'wife_hesit_consent',
  'hesit_consent_said',
  'consent_said_unfair',
  'said_unfair_allow',
  'unfair_allow_son',
  'allow_son_go',
  'son_go_nine',
  'go_nine_year',
  'nine_year_old',
  'year_old_daughter',
  'old_daughter_cant',
  'daughter_cant_especi',
  'cant_especi_sinc',
  'especi_sinc_love',
  'sinc_love_disney',
  'love_disney_princess',
  'disney_princess_said',
  'princess_said_kid',
  'said_kid_alway',
  'kid_alway_exact',
  'alway_exact_opportun',
  'exact_opportun_set',
  'opportun_set_preced',
  'set_preced_well',
  'preced_well_stick',
  'well_stick_daughter',
  'stick_daughter_get',
  'daughter_get_similar',
  'get_similar_opportun',
  'similar_opportun_wed',
  'opportun_wed_punish',
  'wed_punish_children',
  'punish_children_needlessli',
  'children_needlessli_wife',
  'needlessli_wife_reluctantli',
  'wife_reluctantli_agre',
  'reluctantli_agre_allow',
  'agre_allow_son',
  'allow_son_go',
  'son_go_gave',
  'go_gave_son',
  'gave_son_money',
  'son_money_buy',
  'money_buy_sister',
  'buy_sister_souvenir',
  'sister_souvenir_friend',
  'souvenir_friend_parent',
  'friend_parent_even',
  'parent_even_bought',
  'even_bought_extra',
  'bought_extra_stuff',
  'extra_stuff_give',
  'stuff_give_still',
  'give_still_saw',
  'still_saw_come',
  'saw_come_back',
  'come_back_wear',
  'back_wear_star',
  'wear_star_war',
  'star_war_shirt',
  'war_shirt_mickey',
  'shirt_mickey_hat',
  'mickey_hat_trade',
  'hat_trade_pin',
  'trade_pin_lanyard',
  'pin_lanyard_burst',
  'lanyard_burst_tear',
  'burst_tear_wife',
  'tear_wife_later',
  'wife_later_said',
  'later_said_made',
  'said_made_huge',
  'made_huge_mistak',
  'huge_mistak_never',
  'mistak_never_let',
  'never_let_go',
  'let_go_mistakenli',
  'go_mistakenli_thought',
  'mistakenli_thought_behind',
  'thought_behind_us',
  'behind_us_well',
  'us_well_financi',
  'well_financi_bil',
  'financi_bil_invit',
  'bil_invit_us',
  'invit_us_visit',
  'us_visit_beach',
  'visit_beach_hous',
  'beach_hous_rent',
  'hous_rent_summer',
  'rent_summer_send-off',
  'summer_send-off_wife',
  'send-off_wife_told',
  'wife_told_want',
  'told_want_son',
  'want_son_stay',
  'son_stay_dad',
  'stay_dad_take',
  'dad_take_daughter',
  'take_daughter_even',
  'daughter_even_score',
  'even_score_told',
  'score_told_wife',
  'told_wife_happen',
  'wife_happen_parent',
  'happen_parent_cant',
  'parent_cant_favor',
  'cant_favor_one',
  'favor_one_child',
  'one_child_invit',
  'child_invit_birthday',
  'invit_birthday_trip',
  'birthday_trip_kid',
  'trip_kid_bare',
  'kid_bare_know',
  'bare_know_way',
  'know_way_compar',
  'way_compar_left',
  'compar_left_*',
  'left_*_famili',
  '*_famili_vacat',
  'famili_vacat_*',
  'vacat_*_im',
  '*_im_shock',
  'im_shock_would',
  'shock_would_even',
  'would_even_suggest',
  'even_suggest_thing',
  'suggest_thing_refus',
  'thing_refus_allow',
  'refus_allow_wife',
  'allow_wife_angri',
  'wife_angri_care',
  'angri_care_im',
  'care_im_punish',
  'im_punish_son',
  'punish_son_lucki',
  'son_lucki_aita'],
 ['boyfriend',
  'parent',
  'paid',
  'boyfriend',
  'sibl',
  'go',
  'flight',
  'cabo',
  'spring',
  'break',
  'becki',
  'mom',
  'seem',
  'like',
  'reason',
  'alway',
  'make',
  'snide',
  'remark',
  'parent',
  'blue',
  'collar',
  'job',
  'field',
  'nurs',
  'get',
  'airport',
  'becki',
  'got',
  'peopl',
  'first',
  'class',
  'ticket',
  'coach',
  'ticket',
  'told',
  'use',
  'free',
  'coach',
  'ticket',
  'grate',
  'go',
  'express',
  'check',
  'left',
  'long',
  'line',
  'think',
  'heck',
  'go',
  'keep',
  'cri',
  'whole',
  'time',
  'line',
  'got',
  'counter',
  'baggag',
  'fee',
  'boyfriend',
  'time',
  'never',
  'help',
  'coach',
  'line',
  'said',
  'anyth',
  'mom',
  'look',
  'mom',
  'smug',
  'face',
  'pay',
  'check',
  'baggag',
  'fee',
  'let',
  'frustrat',
  'attend',
  'start',
  'cri',
  'basic',
  'said',
  'go',
  'famili',
  'sweeti',
  'appreci',
  'continu',
  'cri',
  'took',
  'luggag',
  'got',
  'got',
  'line',
  'super',
  'sweet',
  'check',
  'woman',
  'upset',
  'treat',
  'start',
  'cri',
  'boyfriend',
  'airport',
  'mother',
  'treat',
  'broke',
  'airport',
  'mother',
  'embarrass',
  'told',
  'bitch',
  'boyfriend',
  'blow',
  'phone',
  'say',
  'could',
  'mother',
  'back',
  'vacat',
  'last',
  'minut',
  'wast',
  'everyon',
  'time',
  'money',
  'boyfriend_parent',
  'parent_paid',
  'paid_boyfriend',
  'boyfriend_sibl',
  'sibl_go',
  'go_flight',
  'flight_cabo',
  'cabo_spring',
  'spring_break',
  'break_becki',
  'becki_mom',
  'mom_seem',
  'seem_like',
  'like_reason',
  'reason_alway',
  'alway_make',
  'make_snide',
  'snide_remark',
  'remark_parent',
  'parent_blue',
  'blue_collar',
  'collar_job',
  'job_field',
  'field_nurs',
  'nurs_get',
  'get_airport',
  'airport_becki',
  'becki_got',
  'got_peopl',
  'peopl_first',
  'first_class',
  'class_ticket',
  'ticket_coach',
  'coach_ticket',
  'ticket_told',
  'told_use',
  'use_free',
  'free_coach',
  'coach_ticket',
  'ticket_grate',
  'grate_go',
  'go_express',
  'express_check',
  'check_left',
  'left_long',
  'long_line',
  'line_think',
  'think_heck',
  'heck_go',
  'go_keep',
  'keep_cri',
  'cri_whole',
  'whole_time',
  'time_line',
  'line_got',
  'got_counter',
  'counter_baggag',
  'baggag_fee',
  'fee_boyfriend',
  'boyfriend_time',
  'time_never',
  'never_help',
  'help_coach',
  'coach_line',
  'line_said',
  'said_anyth',
  'anyth_mom',
  'mom_look',
  'look_mom',
  'mom_smug',
  'smug_face',
  'face_pay',
  'pay_check',
  'check_baggag',
  'baggag_fee',
  'fee_let',
  'let_frustrat',
  'frustrat_attend',
  'attend_start',
  'start_cri',
  'cri_basic',
  'basic_said',
  'said_go',
  'go_famili',
  'famili_sweeti',
  'sweeti_appreci',
  'appreci_continu',
  'continu_cri',
  'cri_took',
  'took_luggag',
  'luggag_got',
  'got_got',
  'got_line',
  'line_super',
  'super_sweet',
  'sweet_check',
  'check_woman',
  'woman_upset',
  'upset_treat',
  'treat_start',
  'start_cri',
  'cri_boyfriend',
  'boyfriend_airport',
  'airport_mother',
  'mother_treat',
  'treat_broke',
  'broke_airport',
  'airport_mother',
  'mother_embarrass',
  'embarrass_told',
  'told_bitch',
  'bitch_boyfriend',
  'boyfriend_blow',
  'blow_phone',
  'phone_say',
  'say_could',
  'could_mother',
  'mother_back',
  'back_vacat',
  'vacat_last',
  'last_minut',
  'minut_wast',
  'wast_everyon',
  'everyon_time',
  'time_money',
  'boyfriend_parent_paid',
  'parent_paid_boyfriend',
  'paid_boyfriend_sibl',
  'boyfriend_sibl_go',
  'sibl_go_flight',
  'go_flight_cabo',
  'flight_cabo_spring',
  'cabo_spring_break',
  'spring_break_becki',
  'break_becki_mom',
  'becki_mom_seem',
  'mom_seem_like',
  'seem_like_reason',
  'like_reason_alway',
  'reason_alway_make',
  'alway_make_snide',
  'make_snide_remark',
  'snide_remark_parent',
  'remark_parent_blue',
  'parent_blue_collar',
  'blue_collar_job',
  'collar_job_field',
  'job_field_nurs',
  'field_nurs_get',
  'nurs_get_airport',
  'get_airport_becki',
  'airport_becki_got',
  'becki_got_peopl',
  'got_peopl_first',
  'peopl_first_class',
  'first_class_ticket',
  'class_ticket_coach',
  'ticket_coach_ticket',
  'coach_ticket_told',
  'ticket_told_use',
  'told_use_free',
  'use_free_coach',
  'free_coach_ticket',
  'coach_ticket_grate',
  'ticket_grate_go',
  'grate_go_express',
  'go_express_check',
  'express_check_left',
  'check_left_long',
  'left_long_line',
  'long_line_think',
  'line_think_heck',
  'think_heck_go',
  'heck_go_keep',
  'go_keep_cri',
  'keep_cri_whole',
  'cri_whole_time',
  'whole_time_line',
  'time_line_got',
  'line_got_counter',
  'got_counter_baggag',
  'counter_baggag_fee',
  'baggag_fee_boyfriend',
  'fee_boyfriend_time',
  'boyfriend_time_never',
  'time_never_help',
  'never_help_coach',
  'help_coach_line',
  'coach_line_said',
  'line_said_anyth',
  'said_anyth_mom',
  'anyth_mom_look',
  'mom_look_mom',
  'look_mom_smug',
  'mom_smug_face',
  'smug_face_pay',
  'face_pay_check',
  'pay_check_baggag',
  'check_baggag_fee',
  'baggag_fee_let',
  'fee_let_frustrat',
  'let_frustrat_attend',
  'frustrat_attend_start',
  'attend_start_cri',
  'start_cri_basic',
  'cri_basic_said',
  'basic_said_go',
  'said_go_famili',
  'go_famili_sweeti',
  'famili_sweeti_appreci',
  'sweeti_appreci_continu',
  'appreci_continu_cri',
  'continu_cri_took',
  'cri_took_luggag',
  'took_luggag_got',
  'luggag_got_got',
  'got_got_line',
  'got_line_super',
  'line_super_sweet',
  'super_sweet_check',
  'sweet_check_woman',
  'check_woman_upset',
  'woman_upset_treat',
  'upset_treat_start',
  'treat_start_cri',
  'start_cri_boyfriend',
  'cri_boyfriend_airport',
  'boyfriend_airport_mother',
  'airport_mother_treat',
  'mother_treat_broke',
  'treat_broke_airport',
  'broke_airport_mother',
  'airport_mother_embarrass',
  'mother_embarrass_told',
  'embarrass_told_bitch',
  'told_bitch_boyfriend',
  'bitch_boyfriend_blow',
  'boyfriend_blow_phone',
  'blow_phone_say',
  'phone_say_could',
  'say_could_mother',
  'could_mother_back',
  'mother_back_vacat',
  'back_vacat_last',
  'vacat_last_minut',
  'last_minut_wast',
  'minut_wast_everyon',
  'wast_everyon_time',
  'everyon_time_money'],
 ['mil',
  'im',
  'gal',
  'btw',
  'lol',
  'came',
  'stay',
  'us',
  'week',
  'til',
  'home',
  'renov',
  'christma',
  'problem',
  'randomli',
  'walk',
  'im',
  'bathroom',
  'thank',
  'seen',
  'nake',
  'start',
  'pick',
  'behavior',
  'second',
  'time',
  'week',
  'shed',
  'barg',
  'turn',
  'say',
  'oh',
  'sorri',
  'close',
  'door',
  'tri',
  'talk',
  'husband',
  'kept',
  'ignor',
  'flatout',
  'said',
  'accid',
  'seen',
  'nake',
  'faaaammmillli',
  'serious',
  'said',
  'lock',
  'couldv',
  'use',
  'past',
  'trauma',
  'idea',
  'lockingb',
  'lock',
  'room',
  'brother',
  'lock',
  'bathroom',
  'came',
  'idea',
  'id',
  'go',
  'insid',
  'bathroom',
  'pretend',
  'use',
  'wait',
  'come',
  'caus',
  'honestli',
  'deliber',
  'point',
  'accid',
  'barg',
  'shed',
  'see',
  'weirdawkward',
  'posit',
  'exampl',
  'ballet',
  'stand',
  'stand',
  'toilet',
  'stand',
  'face',
  'wall',
  'hand',
  'fulli',
  'cloth',
  'cours',
  'could',
  'see',
  'awkward',
  'weird',
  'would',
  'shed',
  'stand',
  'second',
  'tri',
  'figur',
  'haliri',
  'first',
  'see',
  'initi',
  'confus',
  'told',
  'husband',
  'claim',
  'caught',
  'practic',
  'ritual',
  'bathroom',
  'clear',
  'thing',
  'reveal',
  'reason',
  'husband',
  'livid',
  'call',
  'childish',
  'said',
  'made',
  'mom',
  'feel',
  'terrifiedweird',
  'behavior',
  'said',
  'act',
  'matur',
  'lock',
  'damn',
  'door',
  'instead',
  'play',
  'mind',
  'game',
  'edit',
  'lol',
  'um',
  'came',
  'back',
  'saw',
  'liter',
  'peopl',
  'omg',
  'feel',
  'embarrass',
  'glad',
  'went',
  'anonym',
  'lol',
  'seriouslyim',
  'look',
  'screen',
  'like',
  'im',
  'famou',
  'serious',
  'thoughmi',
  'husband',
  'mom',
  'extrem',
  'upset',
  'still',
  'think',
  'ridicul',
  'demand',
  'apolog',
  'goe',
  'back',
  'home',
  'im',
  'sure',
  'apolog',
  'ye',
  'problem',
  'use',
  'lock',
  'still',
  'feel',
  'wrong',
  'mayb',
  'im',
  'wrong',
  'least',
  'got',
  'appar',
  'lol',
  'bit',
  'chuckl',
  '😅🤣',
  'also',
  'im',
  'sure',
  'thanksgiv',
  'dinner',
  'hella',
  'awkward',
  'tomorrow',
  'especi',
  'happen',
  'lol',
  'mil_im',
  'im_gal',
  'gal_btw',
  'btw_lol',
  'lol_came',
  'came_stay',
  'stay_us',
  'us_week',
  'week_til',
  'til_home',
  'home_renov',
  'renov_christma',
  'christma_problem',
  'problem_randomli',
  'randomli_walk',
  'walk_im',
  'im_bathroom',
  'bathroom_thank',
  'thank_seen',
  'seen_nake',
  'nake_start',
  'start_pick',
  'pick_behavior',
  'behavior_second',
  'second_time',
  'time_week',
  'week_shed',
  'shed_barg',
  'barg_turn',
  'turn_say',
  'say_oh',
  'oh_sorri',
  'sorri_close',
  'close_door',
  'door_tri',
  'tri_talk',
  'talk_husband',
  'husband_kept',
  'kept_ignor',
  'ignor_flatout',
  'flatout_said',
  'said_accid',
  'accid_seen',
  'seen_nake',
  'nake_faaaammmillli',
  'faaaammmillli_serious',
  'serious_said',
  'said_lock',
  'lock_couldv',
  'couldv_use',
  'use_past',
  'past_trauma',
  'trauma_idea',
  'idea_lockingb',
  'lockingb_lock',
  'lock_room',
  'room_brother',
  'brother_lock',
  'lock_bathroom',
  'bathroom_came',
  'came_idea',
  'idea_id',
  'id_go',
  'go_insid',
  'insid_bathroom',
  'bathroom_pretend',
  'pretend_use',
  'use_wait',
  'wait_come',
  'come_caus',
  'caus_honestli',
  'honestli_deliber',
  'deliber_point',
  'point_accid',
  'accid_barg',
  'barg_shed',
  'shed_see',
  'see_weirdawkward',
  'weirdawkward_posit',
  'posit_exampl',
  'exampl_ballet',
  'ballet_stand',
  'stand_stand',
  'stand_toilet',
  'toilet_stand',
  'stand_face',
  'face_wall',
  'wall_hand',
  'hand_fulli',
  'fulli_cloth',
  'cloth_cours',
  'cours_could',
  'could_see',
  'see_awkward',
  'awkward_weird',
  'weird_would',
  'would_shed',
  'shed_stand',
  'stand_second',
  'second_tri',
  'tri_figur',
  'figur_haliri',
  'haliri_first',
  'first_see',
  'see_initi',
  'initi_confus',
  'confus_told',
  'told_husband',
  'husband_claim',
  'claim_caught',
  'caught_practic',
  'practic_ritual',
  'ritual_bathroom',
  'bathroom_clear',
  'clear_thing',
  'thing_reveal',
  'reveal_reason',
  'reason_husband',
  'husband_livid',
  'livid_call',
  'call_childish',
  'childish_said',
  'said_made',
  'made_mom',
  'mom_feel',
  'feel_terrifiedweird',
  'terrifiedweird_behavior',
  'behavior_said',
  'said_act',
  'act_matur',
  'matur_lock',
  'lock_damn',
  'damn_door',
  'door_instead',
  'instead_play',
  'play_mind',
  'mind_game',
  'game_edit',
  'edit_lol',
  'lol_um',
  'um_came',
  'came_back',
  'back_saw',
  'saw_liter',
  'liter_peopl',
  'peopl_omg',
  'omg_feel',
  'feel_embarrass',
  'embarrass_glad',
  'glad_went',
  'went_anonym',
  'anonym_lol',
  'lol_seriouslyim',
  'seriouslyim_look',
  'look_screen',
  'screen_like',
  'like_im',
  'im_famou',
  'famou_serious',
  'serious_thoughmi',
  'thoughmi_husband',
  'husband_mom',
  'mom_extrem',
  'extrem_upset',
  'upset_still',
  'still_think',
  'think_ridicul',
  'ridicul_demand',
  'demand_apolog',
  'apolog_goe',
  'goe_back',
  'back_home',
  'home_im',
  'im_sure',
  'sure_apolog',
  'apolog_ye',
  'ye_problem',
  'problem_use',
  'use_lock',
  'lock_still',
  'still_feel',
  'feel_wrong',
  'wrong_mayb',
  'mayb_im',
  'im_wrong',
  'wrong_least',
  'least_got',
  'got_appar',
  'appar_lol',
  'lol_bit',
  'bit_chuckl',
  'chuckl_😅🤣',
  '😅🤣_also',
  'also_im',
  'im_sure',
  'sure_thanksgiv',
  'thanksgiv_dinner',
  'dinner_hella',
  'hella_awkward',
  'awkward_tomorrow',
  'tomorrow_especi',
  'especi_happen',
  'happen_lol',
  'mil_im_gal',
  'im_gal_btw',
  'gal_btw_lol',
  'btw_lol_came',
  'lol_came_stay',
  'came_stay_us',
  'stay_us_week',
  'us_week_til',
  'week_til_home',
  'til_home_renov',
  'home_renov_christma',
  'renov_christma_problem',
  'christma_problem_randomli',
  'problem_randomli_walk',
  'randomli_walk_im',
  'walk_im_bathroom',
  'im_bathroom_thank',
  'bathroom_thank_seen',
  'thank_seen_nake',
  'seen_nake_start',
  'nake_start_pick',
  'start_pick_behavior',
  'pick_behavior_second',
  'behavior_second_time',
  'second_time_week',
  'time_week_shed',
  'week_shed_barg',
  'shed_barg_turn',
  'barg_turn_say',
  'turn_say_oh',
  'say_oh_sorri',
  'oh_sorri_close',
  'sorri_close_door',
  'close_door_tri',
  'door_tri_talk',
  'tri_talk_husband',
  'talk_husband_kept',
  'husband_kept_ignor',
  'kept_ignor_flatout',
  'ignor_flatout_said',
  'flatout_said_accid',
  'said_accid_seen',
  'accid_seen_nake',
  'seen_nake_faaaammmillli',
  'nake_faaaammmillli_serious',
  'faaaammmillli_serious_said',
  'serious_said_lock',
  'said_lock_couldv',
  'lock_couldv_use',
  'couldv_use_past',
  'use_past_trauma',
  'past_trauma_idea',
  'trauma_idea_lockingb',
  'idea_lockingb_lock',
  'lockingb_lock_room',
  'lock_room_brother',
  'room_brother_lock',
  'brother_lock_bathroom',
  'lock_bathroom_came',
  'bathroom_came_idea',
  'came_idea_id',
  'idea_id_go',
  'id_go_insid',
  'go_insid_bathroom',
  'insid_bathroom_pretend',
  'bathroom_pretend_use',
  'pretend_use_wait',
  'use_wait_come',
  'wait_come_caus',
  'come_caus_honestli',
  'caus_honestli_deliber',
  'honestli_deliber_point',
  'deliber_point_accid',
  'point_accid_barg',
  'accid_barg_shed',
  'barg_shed_see',
  'shed_see_weirdawkward',
  'see_weirdawkward_posit',
  'weirdawkward_posit_exampl',
  'posit_exampl_ballet',
  'exampl_ballet_stand',
  'ballet_stand_stand',
  'stand_stand_toilet',
  'stand_toilet_stand',
  'toilet_stand_face',
  'stand_face_wall',
  'face_wall_hand',
  'wall_hand_fulli',
  'hand_fulli_cloth',
  'fulli_cloth_cours',
  'cloth_cours_could',
  'cours_could_see',
  'could_see_awkward',
  'see_awkward_weird',
  'awkward_weird_would',
  'weird_would_shed',
  'would_shed_stand',
  'shed_stand_second',
  'stand_second_tri',
  'second_tri_figur',
  'tri_figur_haliri',
  'figur_haliri_first',
  'haliri_first_see',
  'first_see_initi',
  'see_initi_confus',
  'initi_confus_told',
  'confus_told_husband',
  'told_husband_claim',
  'husband_claim_caught',
  'claim_caught_practic',
  'caught_practic_ritual',
  'practic_ritual_bathroom',
  'ritual_bathroom_clear',
  'bathroom_clear_thing',
  'clear_thing_reveal',
  'thing_reveal_reason',
  'reveal_reason_husband',
  'reason_husband_livid',
  'husband_livid_call',
  'livid_call_childish',
  'call_childish_said',
  'childish_said_made',
  'said_made_mom',
  'made_mom_feel',
  'mom_feel_terrifiedweird',
  'feel_terrifiedweird_behavior',
  'terrifiedweird_behavior_said',
  'behavior_said_act',
  'said_act_matur',
  'act_matur_lock',
  'matur_lock_damn',
  'lock_damn_door',
  'damn_door_instead',
  'door_instead_play',
  'instead_play_mind',
  'play_mind_game',
  'mind_game_edit',
  'game_edit_lol',
  'edit_lol_um',
  'lol_um_came',
  'um_came_back',
  'came_back_saw',
  'back_saw_liter',
  'saw_liter_peopl',
  'liter_peopl_omg',
  'peopl_omg_feel',
  'omg_feel_embarrass',
  'feel_embarrass_glad',
  'embarrass_glad_went',
  'glad_went_anonym',
  'went_anonym_lol',
  'anonym_lol_seriouslyim',
  'lol_seriouslyim_look',
  'seriouslyim_look_screen',
  'look_screen_like',
  'screen_like_im',
  'like_im_famou',
  'im_famou_serious',
  'famou_serious_thoughmi',
  'serious_thoughmi_husband',
  'thoughmi_husband_mom',
  'husband_mom_extrem',
  'mom_extrem_upset',
  'extrem_upset_still',
  'upset_still_think',
  'still_think_ridicul',
  'think_ridicul_demand',
  'ridicul_demand_apolog',
  'demand_apolog_goe',
  'apolog_goe_back',
  'goe_back_home',
  'back_home_im',
  'home_im_sure',
  'im_sure_apolog',
  'sure_apolog_ye',
  'apolog_ye_problem',
  'ye_problem_use',
  'problem_use_lock',
  'use_lock_still',
  'lock_still_feel',
  'still_feel_wrong',
  'feel_wrong_mayb',
  'wrong_mayb_im',
  'mayb_im_wrong',
  'im_wrong_least',
  'wrong_least_got',
  'least_got_appar',
  'got_appar_lol',
  'appar_lol_bit',
  'lol_bit_chuckl',
  'bit_chuckl_😅🤣',
  'chuckl_😅🤣_also',
  '😅🤣_also_im',
  'also_im_sure',
  'im_sure_thanksgiv',
  'sure_thanksgiv_dinner',
  'thanksgiv_dinner_hella',
  'dinner_hella_awkward',
  'hella_awkward_tomorrow',
  'awkward_tomorrow_especi',
  'tomorrow_especi_happen',
  'especi_happen_lol'],
 ['use',
  '*',
  'escort',
  '*',
  '\\',
  '*',
  'oker',
  'im',
  'proud',
  'also',
  'give',
  'fuck',
  'keep',
  'studi',
  'roof',
  'head',
  'met',
  'fiancé',
  'tho',
  'never',
  'client',
  'began',
  'date',
  'three',
  'four',
  'month',
  'bil',
  'expos',
  'idea',
  'found',
  '*',
  'way',
  'fiancé',
  'knew',
  '*',
  'thu',
  'come',
  'clean',
  'front',
  'whole',
  'famili',
  'ye',
  'ye',
  'know',
  'ye',
  'care',
  'year',
  'ago',
  'time',
  'got',
  'span',
  '-',
  'month',
  'mil',
  'fiancé',
  'aunt',
  'cousin',
  'polic',
  'husband',
  'around',
  'realli',
  'weird',
  'tbh',
  'dude',
  'like',
  '-yo',
  'desper',
  'fiancé',
  'shut',
  'bullshit',
  'hard',
  'even',
  'famili',
  'still',
  'give',
  'side',
  'eye',
  'time',
  'time',
  'thought',
  'behind',
  'us',
  'propos',
  'last',
  'year',
  'five',
  'month',
  'ago',
  'found',
  'pregnant',
  'realli',
  'happi',
  'told',
  'famili',
  'soon',
  'knew',
  'sister',
  'young',
  'brother',
  'happi',
  'us',
  'mom',
  'took',
  'asid',
  '*',
  'beg',
  '*',
  'honest',
  'ask',
  'realli',
  'fiancé',
  'child',
  'taken',
  'aback',
  'roll',
  'eye',
  'said',
  'ye',
  'gave',
  'shitti',
  'speech',
  'want',
  'make',
  'sure',
  'happi',
  'grandmoth',
  'well',
  'last',
  'weekend',
  'parent',
  'famili',
  'friendsand',
  'talk',
  'name',
  'might',
  'look',
  'small',
  'talk',
  'love',
  'regardless',
  'alway',
  '*',
  'oh',
  'hope',
  'get',
  'nose',
  '*',
  '*',
  'mmh',
  'like',
  'eye',
  'hope',
  'get',
  '*',
  'comment',
  'fil',
  'said',
  'children',
  'birthmark',
  'inner',
  'tight',
  'even',
  'grandchildren',
  'one',
  'sil',
  'kid',
  'got',
  'babi',
  'might',
  'said',
  'know',
  'got',
  'may',
  'well',
  'boy',
  'brother',
  'brother',
  'began',
  'laugh',
  'fiancé',
  'got',
  'mad',
  'could',
  'say',
  'anyth',
  'said',
  'get',
  'fil',
  'yeah',
  'run',
  'famili',
  'said',
  'get',
  'would',
  'get',
  'began',
  'get',
  'nervou',
  'said',
  'know',
  'joke',
  'op',
  'said',
  'get',
  'laugh',
  'explain',
  'got',
  'point',
  'friend',
  'said',
  'hey',
  'funni',
  'excus',
  'left',
  'later',
  'fiancé',
  'bil',
  'came',
  'said',
  'wrong',
  'embarrass',
  'like',
  'hous',
  'knew',
  'joke',
  '*',
  'past',
  '*',
  'surpris',
  'theyr',
  'demand',
  'apolog',
  'fil',
  'use_*',
  '*_escort',
  'escort_*',
  '*_\\',
  '\\_*',
  '*_oker',
  'oker_im',
  'im_proud',
  'proud_also',
  'also_give',
  'give_fuck',
  'fuck_keep',
  'keep_studi',
  'studi_roof',
  'roof_head',
  'head_met',
  'met_fiancé',
  'fiancé_tho',
  'tho_never',
  'never_client',
  'client_began',
  'began_date',
  'date_three',
  'three_four',
  'four_month',
  'month_bil',
  'bil_expos',
  'expos_idea',
  'idea_found',
  'found_*',
  '*_way',
  'way_fiancé',
  'fiancé_knew',
  'knew_*',
  '*_thu',
  'thu_come',
  'come_clean',
  'clean_front',
  'front_whole',
  'whole_famili',
  'famili_ye',
  'ye_ye',
  'ye_know',
  'know_ye',
  'ye_care',
  'care_year',
  'year_ago',
  'ago_time',
  'time_got',
  'got_span',
  'span_-',
  '-_month',
  'month_mil',
  'mil_fiancé',
  'fiancé_aunt',
  'aunt_cousin',
  'cousin_polic',
  'polic_husband',
  'husband_around',
  'around_realli',
  'realli_weird',
  'weird_tbh',
  'tbh_dude',
  'dude_like',
  'like_-yo',
  '-yo_desper',
  'desper_fiancé',
  'fiancé_shut',
  'shut_bullshit',
  'bullshit_hard',
  'hard_even',
  'even_famili',
  'famili_still',
  'still_give',
  'give_side',
  'side_eye',
  'eye_time',
  'time_time',
  'time_thought',
  'thought_behind',
  'behind_us',
  'us_propos',
  'propos_last',
  'last_year',
  'year_five',
  'five_month',
  'month_ago',
  'ago_found',
  'found_pregnant',
  'pregnant_realli',
  'realli_happi',
  'happi_told',
  'told_famili',
  'famili_soon',
  'soon_knew',
  'knew_sister',
  'sister_young',
  'young_brother',
  'brother_happi',
  'happi_us',
  'us_mom',
  'mom_took',
  'took_asid',
  'asid_*',
  '*_beg',
  'beg_*',
  '*_honest',
  'honest_ask',
  'ask_realli',
  'realli_fiancé',
  'fiancé_child',
  'child_taken',
  'taken_aback',
  'aback_roll',
  'roll_eye',
  'eye_said',
  'said_ye',
  'ye_gave',
  'gave_shitti',
  'shitti_speech',
  'speech_want',
  'want_make',
  'make_sure',
  'sure_happi',
  'happi_grandmoth',
  'grandmoth_well',
  'well_last',
  'last_weekend',
  'weekend_parent',
  'parent_famili',
  'famili_friendsand',
  'friendsand_talk',
  'talk_name',
  'name_might',
  'might_look',
  'look_small',
  'small_talk',
  'talk_love',
  'love_regardless',
  'regardless_alway',
  'alway_*',
  '*_oh',
  'oh_hope',
  'hope_get',
  'get_nose',
  'nose_*',
  '*_*',
  '*_mmh',
  'mmh_like',
  'like_eye',
  'eye_hope',
  'hope_get',
  'get_*',
  '*_comment',
  'comment_fil',
  'fil_said',
  'said_children',
  'children_birthmark',
  'birthmark_inner',
  'inner_tight',
  'tight_even',
  'even_grandchildren',
  'grandchildren_one',
  'one_sil',
  'sil_kid',
  'kid_got',
  'got_babi',
  'babi_might',
  'might_said',
  'said_know',
  'know_got',
  'got_may',
  'may_well',
  'well_boy',
  'boy_brother',
  'brother_brother',
  'brother_began',
  'began_laugh',
  'laugh_fiancé',
  'fiancé_got',
  'got_mad',
  'mad_could',
  'could_say',
  'say_anyth',
  'anyth_said',
  'said_get',
  'get_fil',
  'fil_yeah',
  'yeah_run',
  'run_famili',
  'famili_said',
  'said_get',
  'get_would',
  'would_get',
  'get_began',
  'began_get',
  'get_nervou',
  'nervou_said',
  'said_know',
  'know_joke',
  'joke_op',
  'op_said',
  'said_get',
  'get_laugh',
  'laugh_explain',
  'explain_got',
  'got_point',
  'point_friend',
  'friend_said',
  'said_hey',
  'hey_funni',
  'funni_excus',
  'excus_left',
  'left_later',
  'later_fiancé',
  'fiancé_bil',
  'bil_came',
  'came_said',
  'said_wrong',
  'wrong_embarrass',
  'embarrass_like',
  'like_hous',
  'hous_knew',
  'knew_joke',
  'joke_*',
  '*_past',
  'past_*',
  '*_surpris',
  'surpris_theyr',
  'theyr_demand',
  'demand_apolog',
  'apolog_fil',
  'use_*_escort',
  '*_escort_*',
  'escort_*_\\',
  '*_\\_*',
  '\\_*_oker',
  '*_oker_im',
  'oker_im_proud',
  'im_proud_also',
  'proud_also_give',
  'also_give_fuck',
  'give_fuck_keep',
  'fuck_keep_studi',
  'keep_studi_roof',
  'studi_roof_head',
  'roof_head_met',
  'head_met_fiancé',
  'met_fiancé_tho',
  'fiancé_tho_never',
  'tho_never_client',
  'never_client_began',
  'client_began_date',
  'began_date_three',
  'date_three_four',
  'three_four_month',
  'four_month_bil',
  'month_bil_expos',
  'bil_expos_idea',
  'expos_idea_found',
  'idea_found_*',
  'found_*_way',
  '*_way_fiancé',
  'way_fiancé_knew',
  'fiancé_knew_*',
  'knew_*_thu',
  '*_thu_come',
  'thu_come_clean',
  'come_clean_front',
  'clean_front_whole',
  'front_whole_famili',
  'whole_famili_ye',
  'famili_ye_ye',
  'ye_ye_know',
  'ye_know_ye',
  'know_ye_care',
  'ye_care_year',
  'care_year_ago',
  'year_ago_time',
  'ago_time_got',
  'time_got_span',
  'got_span_-',
  'span_-_month',
  '-_month_mil',
  'month_mil_fiancé',
  'mil_fiancé_aunt',
  'fiancé_aunt_cousin',
  'aunt_cousin_polic',
  'cousin_polic_husband',
  'polic_husband_around',
  'husband_around_realli',
  'around_realli_weird',
  'realli_weird_tbh',
  'weird_tbh_dude',
  'tbh_dude_like',
  'dude_like_-yo',
  'like_-yo_desper',
  '-yo_desper_fiancé',
  'desper_fiancé_shut',
  'fiancé_shut_bullshit',
  'shut_bullshit_hard',
  'bullshit_hard_even',
  'hard_even_famili',
  'even_famili_still',
  'famili_still_give',
  'still_give_side',
  'give_side_eye',
  'side_eye_time',
  'eye_time_time',
  'time_time_thought',
  'time_thought_behind',
  'thought_behind_us',
  'behind_us_propos',
  'us_propos_last',
  'propos_last_year',
  'last_year_five',
  'year_five_month',
  'five_month_ago',
  'month_ago_found',
  'ago_found_pregnant',
  'found_pregnant_realli',
  'pregnant_realli_happi',
  'realli_happi_told',
  'happi_told_famili',
  'told_famili_soon',
  'famili_soon_knew',
  'soon_knew_sister',
  'knew_sister_young',
  'sister_young_brother',
  'young_brother_happi',
  'brother_happi_us',
  'happi_us_mom',
  'us_mom_took',
  'mom_took_asid',
  'took_asid_*',
  'asid_*_beg',
  '*_beg_*',
  'beg_*_honest',
  '*_honest_ask',
  'honest_ask_realli',
  'ask_realli_fiancé',
  'realli_fiancé_child',
  'fiancé_child_taken',
  'child_taken_aback',
  'taken_aback_roll',
  'aback_roll_eye',
  'roll_eye_said',
  'eye_said_ye',
  'said_ye_gave',
  'ye_gave_shitti',
  'gave_shitti_speech',
  'shitti_speech_want',
  'speech_want_make',
  'want_make_sure',
  'make_sure_happi',
  'sure_happi_grandmoth',
  'happi_grandmoth_well',
  'grandmoth_well_last',
  'well_last_weekend',
  'last_weekend_parent',
  'weekend_parent_famili',
  'parent_famili_friendsand',
  'famili_friendsand_talk',
  'friendsand_talk_name',
  'talk_name_might',
  'name_might_look',
  'might_look_small',
  'look_small_talk',
  'small_talk_love',
  'talk_love_regardless',
  'love_regardless_alway',
  'regardless_alway_*',
  'alway_*_oh',
  '*_oh_hope',
  'oh_hope_get',
  'hope_get_nose',
  'get_nose_*',
  'nose_*_*',
  '*_*_mmh',
  '*_mmh_like',
  'mmh_like_eye',
  'like_eye_hope',
  'eye_hope_get',
  'hope_get_*',
  'get_*_comment',
  '*_comment_fil',
  'comment_fil_said',
  'fil_said_children',
  'said_children_birthmark',
  'children_birthmark_inner',
  'birthmark_inner_tight',
  'inner_tight_even',
  'tight_even_grandchildren',
  'even_grandchildren_one',
  'grandchildren_one_sil',
  'one_sil_kid',
  'sil_kid_got',
  'kid_got_babi',
  'got_babi_might',
  'babi_might_said',
  'might_said_know',
  'said_know_got',
  'know_got_may',
  'got_may_well',
  'may_well_boy',
  'well_boy_brother',
  'boy_brother_brother',
  'brother_brother_began',
  'brother_began_laugh',
  'began_laugh_fiancé',
  'laugh_fiancé_got',
  'fiancé_got_mad',
  'got_mad_could',
  'mad_could_say',
  'could_say_anyth',
  'say_anyth_said',
  'anyth_said_get',
  'said_get_fil',
  'get_fil_yeah',
  'fil_yeah_run',
  'yeah_run_famili',
  'run_famili_said',
  'famili_said_get',
  'said_get_would',
  'get_would_get',
  'would_get_began',
  'get_began_get',
  'began_get_nervou',
  'get_nervou_said',
  'nervou_said_know',
  'said_know_joke',
  'know_joke_op',
  'joke_op_said',
  'op_said_get',
  'said_get_laugh',
  'get_laugh_explain',
  'laugh_explain_got',
  'explain_got_point',
  'got_point_friend',
  'point_friend_said',
  'friend_said_hey',
  'said_hey_funni',
  'hey_funni_excus',
  'funni_excus_left',
  'excus_left_later',
  'left_later_fiancé',
  'later_fiancé_bil',
  'fiancé_bil_came',
  'bil_came_said',
  'came_said_wrong',
  'said_wrong_embarrass',
  'wrong_embarrass_like',
  'embarrass_like_hous',
  'like_hous_knew',
  'hous_knew_joke',
  'knew_joke_*',
  'joke_*_past',
  '*_past_*',
  'past_*_surpris',
  '*_surpris_theyr',
  'surpris_theyr_demand',
  'theyr_demand_apolog',
  'demand_apolog_fil'],
 ['obes',
  'like',
  'comfort',
  'two',
  'seat',
  'plane',
  'type',
  'obes',
  'well',
  'awar',
  'realli',
  'like',
  'bother',
  'peopl',
  'weight',
  'week',
  'ago',
  'go',
  'confer',
  'plane',
  'go',
  'alon',
  'usual',
  'fli',
  'boyfriend',
  'buy',
  'two',
  'sinc',
  'sit',
  'next',
  'bought',
  'two',
  'seat',
  'fit',
  'one',
  'side',
  'usual',
  'touch',
  'person',
  'next',
  'feel',
  'uncomfort',
  'happen',
  'gave',
  'nasti',
  'look',
  'felt',
  'extrem',
  'uncomfort',
  'whole',
  'flight',
  'sat',
  'plane',
  'put',
  'armrest',
  'would',
  'realli',
  'comfort',
  'coupl',
  'came',
  'sat',
  'next',
  'got',
  'separ',
  'seat',
  'notic',
  'seat',
  'next',
  'empti',
  'exactli',
  'afraid',
  'happen',
  'side',
  'kept',
  'touch',
  'guy',
  'next',
  'even',
  'push',
  'bit',
  'move',
  'seat',
  'feel',
  'extrem',
  'uncomfort',
  'ask',
  'could',
  'go',
  'seat',
  'bought',
  'one',
  'comfort',
  'told',
  'sinc',
  'seat',
  'empti',
  'want',
  'girlfriend',
  'well',
  'told',
  'understand',
  'feel',
  'uncomfort',
  'paid',
  'second',
  'seat',
  'exactli',
  'happen',
  'refus',
  'start',
  'chat',
  'gf',
  'call',
  'flight',
  'attend',
  'quietli',
  'told',
  'happen',
  'ask',
  'guy',
  'leav',
  'second',
  'seat',
  'gf',
  'gave',
  'nasti',
  'look',
  'gf',
  'mumbl',
  'someth',
  'like',
  'fuck',
  'fat',
  'bitch',
  'breath',
  'noth',
  'directli',
  'asshol',
  'insist',
  'leav',
  'obes_like',
  'like_comfort',
  'comfort_two',
  'two_seat',
  'seat_plane',
  'plane_type',
  'type_obes',
  'obes_well',
  'well_awar',
  'awar_realli',
  'realli_like',
  'like_bother',
  'bother_peopl',
  'peopl_weight',
  'weight_week',
  'week_ago',
  'ago_go',
  'go_confer',
  'confer_plane',
  'plane_go',
  'go_alon',
  'alon_usual',
  'usual_fli',
  'fli_boyfriend',
  'boyfriend_buy',
  'buy_two',
  'two_sinc',
  'sinc_sit',
  'sit_next',
  'next_bought',
  'bought_two',
  'two_seat',
  'seat_fit',
  'fit_one',
  'one_side',
  'side_usual',
  'usual_touch',
  'touch_person',
  'person_next',
  'next_feel',
  'feel_uncomfort',
  'uncomfort_happen',
  'happen_gave',
  'gave_nasti',
  'nasti_look',
  'look_felt',
  'felt_extrem',
  'extrem_uncomfort',
  'uncomfort_whole',
  'whole_flight',
  'flight_sat',
  'sat_plane',
  'plane_put',
  'put_armrest',
  'armrest_would',
  'would_realli',
  'realli_comfort',
  'comfort_coupl',
  'coupl_came',
  'came_sat',
  'sat_next',
  'next_got',
  'got_separ',
  'separ_seat',
  'seat_notic',
  'notic_seat',
  'seat_next',
  'next_empti',
  'empti_exactli',
  'exactli_afraid',
  'afraid_happen',
  'happen_side',
  'side_kept',
  'kept_touch',
  'touch_guy',
  'guy_next',
  'next_even',
  'even_push',
  'push_bit',
  'bit_move',
  'move_seat',
  'seat_feel',
  'feel_extrem',
  'extrem_uncomfort',
  'uncomfort_ask',
  'ask_could',
  'could_go',
  'go_seat',
  'seat_bought',
  'bought_one',
  'one_comfort',
  'comfort_told',
  'told_sinc',
  'sinc_seat',
  'seat_empti',
  'empti_want',
  'want_girlfriend',
  'girlfriend_well',
  'well_told',
  'told_understand',
  'understand_feel',
  'feel_uncomfort',
  'uncomfort_paid',
  'paid_second',
  'second_seat',
  'seat_exactli',
  'exactli_happen',
  'happen_refus',
  'refus_start',
  'start_chat',
  'chat_gf',
  'gf_call',
  'call_flight',
  'flight_attend',
  'attend_quietli',
  'quietli_told',
  'told_happen',
  'happen_ask',
  'ask_guy',
  'guy_leav',
  'leav_second',
  'second_seat',
  'seat_gf',
  'gf_gave',
  'gave_nasti',
  'nasti_look',
  'look_gf',
  'gf_mumbl',
  'mumbl_someth',
  'someth_like',
  'like_fuck',
  'fuck_fat',
  'fat_bitch',
  'bitch_breath',
  'breath_noth',
  'noth_directli',
  'directli_asshol',
  'asshol_insist',
  'insist_leav',
  'obes_like_comfort',
  'like_comfort_two',
  'comfort_two_seat',
  'two_seat_plane',
  'seat_plane_type',
  'plane_type_obes',
  'type_obes_well',
  'obes_well_awar',
  'well_awar_realli',
  'awar_realli_like',
  'realli_like_bother',
  'like_bother_peopl',
  'bother_peopl_weight',
  'peopl_weight_week',
  'weight_week_ago',
  'week_ago_go',
  'ago_go_confer',
  'go_confer_plane',
  'confer_plane_go',
  'plane_go_alon',
  'go_alon_usual',
  'alon_usual_fli',
  'usual_fli_boyfriend',
  'fli_boyfriend_buy',
  'boyfriend_buy_two',
  'buy_two_sinc',
  'two_sinc_sit',
  'sinc_sit_next',
  'sit_next_bought',
  'next_bought_two',
  'bought_two_seat',
  'two_seat_fit',
  'seat_fit_one',
  'fit_one_side',
  'one_side_usual',
  'side_usual_touch',
  'usual_touch_person',
  'touch_person_next',
  'person_next_feel',
  'next_feel_uncomfort',
  'feel_uncomfort_happen',
  'uncomfort_happen_gave',
  'happen_gave_nasti',
  'gave_nasti_look',
  'nasti_look_felt',
  'look_felt_extrem',
  'felt_extrem_uncomfort',
  'extrem_uncomfort_whole',
  'uncomfort_whole_flight',
  'whole_flight_sat',
  'flight_sat_plane',
  'sat_plane_put',
  'plane_put_armrest',
  'put_armrest_would',
  'armrest_would_realli',
  'would_realli_comfort',
  'realli_comfort_coupl',
  'comfort_coupl_came',
  'coupl_came_sat',
  'came_sat_next',
  'sat_next_got',
  'next_got_separ',
  'got_separ_seat',
  'separ_seat_notic',
  'seat_notic_seat',
  'notic_seat_next',
  'seat_next_empti',
  'next_empti_exactli',
  'empti_exactli_afraid',
  'exactli_afraid_happen',
  'afraid_happen_side',
  'happen_side_kept',
  'side_kept_touch',
  'kept_touch_guy',
  'touch_guy_next',
  'guy_next_even',
  'next_even_push',
  'even_push_bit',
  'push_bit_move',
  'bit_move_seat',
  'move_seat_feel',
  'seat_feel_extrem',
  'feel_extrem_uncomfort',
  'extrem_uncomfort_ask',
  'uncomfort_ask_could',
  'ask_could_go',
  'could_go_seat',
  'go_seat_bought',
  'seat_bought_one',
  'bought_one_comfort',
  'one_comfort_told',
  'comfort_told_sinc',
  'told_sinc_seat',
  'sinc_seat_empti',
  'seat_empti_want',
  'empti_want_girlfriend',
  'want_girlfriend_well',
  'girlfriend_well_told',
  'well_told_understand',
  'told_understand_feel',
  'understand_feel_uncomfort',
  'feel_uncomfort_paid',
  'uncomfort_paid_second',
  'paid_second_seat',
  'second_seat_exactli',
  'seat_exactli_happen',
  'exactli_happen_refus',
  'happen_refus_start',
  'refus_start_chat',
  'start_chat_gf',
  'chat_gf_call',
  'gf_call_flight',
  'call_flight_attend',
  'flight_attend_quietli',
  'attend_quietli_told',
  'quietli_told_happen',
  'told_happen_ask',
  'happen_ask_guy',
  'ask_guy_leav',
  'guy_leav_second',
  'leav_second_seat',
  'second_seat_gf',
  'seat_gf_gave',
  'gf_gave_nasti',
  'gave_nasti_look',
  'nasti_look_gf',
  'look_gf_mumbl',
  'gf_mumbl_someth',
  'mumbl_someth_like',
  'someth_like_fuck',
  'like_fuck_fat',
  'fuck_fat_bitch',
  'fat_bitch_breath',
  'bitch_breath_noth',
  'breath_noth_directli',
  'noth_directli_asshol',
  'directli_asshol_insist',
  'asshol_insist_leav'],
 ['live',
  'dad',
  'girlfriend',
  'year',
  'daughter',
  'coupl',
  'month',
  'mom',
  'visit',
  'sick',
  'grandfath',
  'sweden',
  'ive',
  'ever',
  'stay',
  'dad',
  'weekend',
  'hard',
  'get',
  'use',
  'live',
  'gf',
  'kid',
  'full',
  'time',
  'kid',
  'super',
  'whinni',
  'pretti',
  'spoil',
  'gf',
  'dote',
  'usual',
  'stay',
  'room',
  'today',
  'gf',
  'take',
  'daughter',
  'special',
  'outing',
  'pass',
  'math',
  'test',
  'dad',
  'suggest',
  'go',
  'girl',
  'day',
  'want',
  'say',
  'knew',
  'want',
  'get',
  'know',
  'gf',
  'gf',
  'daughter',
  'better',
  'agre',
  'gave',
  'gf',
  '$',
  'spend',
  'outing',
  'spent',
  'day',
  'go',
  'store',
  'gf',
  'daughter',
  'like',
  'mall',
  'complex',
  'gf',
  'end',
  'buy',
  'shit',
  'ton',
  'cloth',
  'makeup',
  'stuff',
  'rememb',
  'way',
  'back',
  'home',
  'gf',
  'stop',
  'starbuck',
  'caus',
  'daughter',
  'want',
  'drink',
  'cakepop',
  'order',
  'drink',
  'daughter',
  'cake',
  'pop',
  'ask',
  'could',
  'get',
  'someth',
  'said',
  'ran',
  'money',
  'shed',
  'get',
  'someth',
  'next',
  'time',
  'got',
  'order',
  'ask',
  'could',
  'one',
  'cakepop',
  'gf',
  'said',
  'daughter',
  'treat',
  'hard',
  'work',
  'would',
  'wrong',
  'take',
  'one',
  'sinc',
  'anyth',
  'deserv',
  'reward',
  'im',
  'gon',
  'na',
  'lie',
  'pretti',
  'upset',
  'got',
  'back',
  'home',
  'dad',
  'saw',
  'drink',
  'ask',
  'mine',
  'told',
  'allow',
  'get',
  'one',
  'caus',
  'deserv',
  'gf',
  'got',
  'upset',
  'said',
  'twist',
  'word',
  'daughter',
  'said',
  'greedi',
  'jealou',
  'know',
  'im',
  'entitl',
  'drink',
  'cakepop',
  'also',
  'think',
  'wrong',
  'littl',
  'annoy',
  'aita',
  'live_dad',
  'dad_girlfriend',
  'girlfriend_year',
  'year_daughter',
  'daughter_coupl',
  'coupl_month',
  'month_mom',
  'mom_visit',
  'visit_sick',
  'sick_grandfath',
  'grandfath_sweden',
  'sweden_ive',
  'ive_ever',
  'ever_stay',
  'stay_dad',
  'dad_weekend',
  'weekend_hard',
  'hard_get',
  'get_use',
  'use_live',
  'live_gf',
  'gf_kid',
  'kid_full',
  'full_time',
  'time_kid',
  'kid_super',
  'super_whinni',
  'whinni_pretti',
  'pretti_spoil',
  'spoil_gf',
  'gf_dote',
  'dote_usual',
  'usual_stay',
  'stay_room',
  'room_today',
  'today_gf',
  'gf_take',
  'take_daughter',
  'daughter_special',
  'special_outing',
  'outing_pass',
  'pass_math',
  'math_test',
  'test_dad',
  'dad_suggest',
  'suggest_go',
  'go_girl',
  'girl_day',
  'day_want',
  'want_say',
  'say_knew',
  'knew_want',
  'want_get',
  'get_know',
  'know_gf',
  'gf_gf',
  'gf_daughter',
  'daughter_better',
  'better_agre',
  'agre_gave',
  'gave_gf',
  'gf_$',
  '$_spend',
  'spend_outing',
  'outing_spent',
  'spent_day',
  'day_go',
  'go_store',
  'store_gf',
  'gf_daughter',
  'daughter_like',
  'like_mall',
  'mall_complex',
  'complex_gf',
  'gf_end',
  'end_buy',
  'buy_shit',
  'shit_ton',
  'ton_cloth',
  'cloth_makeup',
  'makeup_stuff',
  'stuff_rememb',
  'rememb_way',
  'way_back',
  'back_home',
  'home_gf',
  'gf_stop',
  'stop_starbuck',
  'starbuck_caus',
  'caus_daughter',
  'daughter_want',
  'want_drink',
  'drink_cakepop',
  'cakepop_order',
  'order_drink',
  'drink_daughter',
  'daughter_cake',
  'cake_pop',
  'pop_ask',
  'ask_could',
  'could_get',
  'get_someth',
  'someth_said',
  'said_ran',
  'ran_money',
  'money_shed',
  'shed_get',
  'get_someth',
  'someth_next',
  'next_time',
  'time_got',
  'got_order',
  'order_ask',
  'ask_could',
  'could_one',
  'one_cakepop',
  'cakepop_gf',
  'gf_said',
  'said_daughter',
  'daughter_treat',
  'treat_hard',
  'hard_work',
  'work_would',
  'would_wrong',
  'wrong_take',
  'take_one',
  'one_sinc',
  'sinc_anyth',
  'anyth_deserv',
  'deserv_reward',
  'reward_im',
  'im_gon',
  'gon_na',
  'na_lie',
  'lie_pretti',
  'pretti_upset',
  'upset_got',
  'got_back',
  'back_home',
  'home_dad',
  'dad_saw',
  'saw_drink',
  'drink_ask',
  'ask_mine',
  'mine_told',
  'told_allow',
  'allow_get',
  'get_one',
  'one_caus',
  'caus_deserv',
  'deserv_gf',
  'gf_got',
  'got_upset',
  'upset_said',
  'said_twist',
  'twist_word',
  'word_daughter',
  'daughter_said',
  'said_greedi',
  'greedi_jealou',
  'jealou_know',
  'know_im',
  'im_entitl',
  'entitl_drink',
  'drink_cakepop',
  'cakepop_also',
  'also_think',
  'think_wrong',
  'wrong_littl',
  'littl_annoy',
  'annoy_aita',
  'live_dad_girlfriend',
  'dad_girlfriend_year',
  'girlfriend_year_daughter',
  'year_daughter_coupl',
  'daughter_coupl_month',
  'coupl_month_mom',
  'month_mom_visit',
  'mom_visit_sick',
  'visit_sick_grandfath',
  'sick_grandfath_sweden',
  'grandfath_sweden_ive',
  'sweden_ive_ever',
  'ive_ever_stay',
  'ever_stay_dad',
  'stay_dad_weekend',
  'dad_weekend_hard',
  'weekend_hard_get',
  'hard_get_use',
  'get_use_live',
  'use_live_gf',
  'live_gf_kid',
  'gf_kid_full',
  'kid_full_time',
  'full_time_kid',
  'time_kid_super',
  'kid_super_whinni',
  'super_whinni_pretti',
  'whinni_pretti_spoil',
  'pretti_spoil_gf',
  'spoil_gf_dote',
  'gf_dote_usual',
  'dote_usual_stay',
  'usual_stay_room',
  'stay_room_today',
  'room_today_gf',
  'today_gf_take',
  'gf_take_daughter',
  'take_daughter_special',
  'daughter_special_outing',
  'special_outing_pass',
  'outing_pass_math',
  'pass_math_test',
  'math_test_dad',
  'test_dad_suggest',
  'dad_suggest_go',
  'suggest_go_girl',
  'go_girl_day',
  'girl_day_want',
  'day_want_say',
  'want_say_knew',
  'say_knew_want',
  'knew_want_get',
  'want_get_know',
  'get_know_gf',
  'know_gf_gf',
  'gf_gf_daughter',
  'gf_daughter_better',
  'daughter_better_agre',
  'better_agre_gave',
  'agre_gave_gf',
  'gave_gf_$',
  'gf_$_spend',
  '$_spend_outing',
  'spend_outing_spent',
  'outing_spent_day',
  'spent_day_go',
  'day_go_store',
  'go_store_gf',
  'store_gf_daughter',
  'gf_daughter_like',
  'daughter_like_mall',
  'like_mall_complex',
  'mall_complex_gf',
  'complex_gf_end',
  'gf_end_buy',
  'end_buy_shit',
  'buy_shit_ton',
  'shit_ton_cloth',
  'ton_cloth_makeup',
  'cloth_makeup_stuff',
  'makeup_stuff_rememb',
  'stuff_rememb_way',
  'rememb_way_back',
  'way_back_home',
  'back_home_gf',
  'home_gf_stop',
  'gf_stop_starbuck',
  'stop_starbuck_caus',
  'starbuck_caus_daughter',
  'caus_daughter_want',
  'daughter_want_drink',
  'want_drink_cakepop',
  'drink_cakepop_order',
  'cakepop_order_drink',
  'order_drink_daughter',
  'drink_daughter_cake',
  'daughter_cake_pop',
  'cake_pop_ask',
  'pop_ask_could',
  'ask_could_get',
  'could_get_someth',
  'get_someth_said',
  'someth_said_ran',
  'said_ran_money',
  'ran_money_shed',
  'money_shed_get',
  'shed_get_someth',
  'get_someth_next',
  'someth_next_time',
  'next_time_got',
  'time_got_order',
  'got_order_ask',
  'order_ask_could',
  'ask_could_one',
  'could_one_cakepop',
  'one_cakepop_gf',
  'cakepop_gf_said',
  'gf_said_daughter',
  'said_daughter_treat',
  'daughter_treat_hard',
  'treat_hard_work',
  'hard_work_would',
  'work_would_wrong',
  'would_wrong_take',
  'wrong_take_one',
  'take_one_sinc',
  'one_sinc_anyth',
  'sinc_anyth_deserv',
  'anyth_deserv_reward',
  'deserv_reward_im',
  'reward_im_gon',
  'im_gon_na',
  'gon_na_lie',
  'na_lie_pretti',
  'lie_pretti_upset',
  'pretti_upset_got',
  'upset_got_back',
  'got_back_home',
  'back_home_dad',
  'home_dad_saw',
  'dad_saw_drink',
  'saw_drink_ask',
  'drink_ask_mine',
  'ask_mine_told',
  'mine_told_allow',
  'told_allow_get',
  'allow_get_one',
  'get_one_caus',
  'one_caus_deserv',
  'caus_deserv_gf',
  'deserv_gf_got',
  'gf_got_upset',
  'got_upset_said',
  'upset_said_twist',
  'said_twist_word',
  'twist_word_daughter',
  'word_daughter_said',
  'daughter_said_greedi',
  'said_greedi_jealou',
  'greedi_jealou_know',
  'jealou_know_im',
  'know_im_entitl',
  'im_entitl_drink',
  'entitl_drink_cakepop',
  'drink_cakepop_also',
  'cakepop_also_think',
  'also_think_wrong',
  'think_wrong_littl',
  'wrong_littl_annoy',
  'littl_annoy_aita'],
 ['ive',
  'marri',
  'nd',
  'husband',
  'mike',
  'year',
  'jokest',
  'love',
  'crack',
  'joke',
  'time',
  'especi',
  'like',
  'joke',
  'brother',
  'ethan',
  'wife',
  'ethan',
  'use',
  'okay',
  'til',
  'start',
  'complain',
  'mike',
  'take',
  'far',
  'joke',
  'context',
  'ethan',
  'wife',
  'kid',
  'adopt',
  'boy',
  'joey',
  'year',
  'ago',
  'mike',
  'make',
  'silli',
  'lightheart',
  'joke',
  'involv',
  'joey',
  'bio',
  'parent',
  'way',
  'mess',
  'ethan',
  'wife',
  'alreadi',
  'talk',
  'mike',
  'tell',
  '%',
  'mean',
  'harm',
  'tri',
  'get',
  'react',
  'fast',
  'forward',
  'nye',
  'parent',
  'host',
  'big',
  'celebratori',
  'dinner',
  'ethan',
  'wife',
  'came',
  'eat',
  'dinner',
  'mike',
  'decid',
  'tell',
  'knock-knock',
  'joke',
  'ethan',
  'said',
  'knock',
  'knock',
  'ethan',
  'laugh',
  'said',
  'mike',
  'repli',
  'joey',
  'bio',
  'parent',
  'burst',
  'laugh',
  'silenc',
  'took',
  'ethan',
  'facial',
  'experss',
  'chang',
  'wife',
  'call',
  'mike',
  'idiot',
  'mike',
  'repli',
  'heyrelax',
  'joke',
  'argument',
  'ensu',
  'dinner',
  'paus',
  'parent',
  'suddenli',
  'told',
  'mik',
  'leav',
  'thought',
  'harsh',
  'tri',
  'speak',
  'get',
  'calm',
  'mom',
  'insist',
  'mike',
  'leav',
  'left',
  'mike',
  'complain',
  'whole',
  'time',
  'overreact',
  'call',
  'mom',
  'later',
  'told',
  'mike',
  'line',
  'hurt',
  'joke',
  'touchi',
  'topic',
  'told',
  'wrong',
  'defend',
  'say',
  'joke',
  'said',
  'ruin',
  'ny',
  'famili',
  'told',
  'dad',
  'ruin',
  'ny',
  'celebr',
  'escal',
  'situat',
  'kick',
  'told',
  'could',
  'talk',
  'one',
  'ruin',
  'ny',
  'celebr',
  'call',
  'delusion',
  'statement',
  'hung',
  'talk',
  'day',
  'tri',
  'contact',
  'ethan',
  'respons',
  'ive_marri',
  'marri_nd',
  'nd_husband',
  'husband_mike',
  'mike_year',
  'year_jokest',
  'jokest_love',
  'love_crack',
  'crack_joke',
  'joke_time',
  'time_especi',
  'especi_like',
  'like_joke',
  'joke_brother',
  'brother_ethan',
  'ethan_wife',
  'wife_ethan',
  'ethan_use',
  'use_okay',
  'okay_til',
  'til_start',
  'start_complain',
  'complain_mike',
  'mike_take',
  'take_far',
  'far_joke',
  'joke_context',
  'context_ethan',
  'ethan_wife',
  'wife_kid',
  'kid_adopt',
  'adopt_boy',
  'boy_joey',
  'joey_year',
  'year_ago',
  'ago_mike',
  'mike_make',
  'make_silli',
  'silli_lightheart',
  'lightheart_joke',
  'joke_involv',
  'involv_joey',
  'joey_bio',
  'bio_parent',
  'parent_way',
  'way_mess',
  'mess_ethan',
  'ethan_wife',
  'wife_alreadi',
  'alreadi_talk',
  'talk_mike',
  'mike_tell',
  'tell_%',
  '%_mean',
  'mean_harm',
  'harm_tri',
  'tri_get',
  'get_react',
  'react_fast',
  'fast_forward',
  'forward_nye',
  'nye_parent',
  'parent_host',
  'host_big',
  'big_celebratori',
  'celebratori_dinner',
  'dinner_ethan',
  'ethan_wife',
  'wife_came',
  'came_eat',
  'eat_dinner',
  'dinner_mike',
  'mike_decid',
  'decid_tell',
  'tell_knock-knock',
  'knock-knock_joke',
  'joke_ethan',
  'ethan_said',
  'said_knock',
  'knock_knock',
  'knock_ethan',
  'ethan_laugh',
  'laugh_said',
  'said_mike',
  'mike_repli',
  'repli_joey',
  'joey_bio',
  'bio_parent',
  'parent_burst',
  'burst_laugh',
  'laugh_silenc',
  'silenc_took',
  'took_ethan',
  'ethan_facial',
  'facial_experss',
  'experss_chang',
  'chang_wife',
  'wife_call',
  'call_mike',
  'mike_idiot',
  'idiot_mike',
  'mike_repli',
  'repli_heyrelax',
  'heyrelax_joke',
  'joke_argument',
  'argument_ensu',
  'ensu_dinner',
  'dinner_paus',
  'paus_parent',
  'parent_suddenli',
  'suddenli_told',
  'told_mik',
  'mik_leav',
  'leav_thought',
  'thought_harsh',
  'harsh_tri',
  'tri_speak',
  'speak_get',
  'get_calm',
  'calm_mom',
  'mom_insist',
  'insist_mike',
  'mike_leav',
  'leav_left',
  'left_mike',
  'mike_complain',
  'complain_whole',
  'whole_time',
  'time_overreact',
  'overreact_call',
  'call_mom',
  'mom_later',
  'later_told',
  'told_mike',
  'mike_line',
  'line_hurt',
  'hurt_joke',
  'joke_touchi',
  'touchi_topic',
  'topic_told',
  'told_wrong',
  'wrong_defend',
  'defend_say',
  'say_joke',
  'joke_said',
  'said_ruin',
  'ruin_ny',
  'ny_famili',
  'famili_told',
  'told_dad',
  'dad_ruin',
  'ruin_ny',
  'ny_celebr',
  'celebr_escal',
  'escal_situat',
  'situat_kick',
  'kick_told',
  'told_could',
  'could_talk',
  'talk_one',
  'one_ruin',
  'ruin_ny',
  'ny_celebr',
  'celebr_call',
  'call_delusion',
  'delusion_statement',
  'statement_hung',
  'hung_talk',
  'talk_day',
  'day_tri',
  'tri_contact',
  'contact_ethan',
  'ethan_respons',
  'ive_marri_nd',
  'marri_nd_husband',
  'nd_husband_mike',
  'husband_mike_year',
  'mike_year_jokest',
  'year_jokest_love',
  'jokest_love_crack',
  'love_crack_joke',
  'crack_joke_time',
  'joke_time_especi',
  'time_especi_like',
  'especi_like_joke',
  'like_joke_brother',
  'joke_brother_ethan',
  'brother_ethan_wife',
  'ethan_wife_ethan',
  'wife_ethan_use',
  'ethan_use_okay',
  'use_okay_til',
  'okay_til_start',
  'til_start_complain',
  'start_complain_mike',
  'complain_mike_take',
  'mike_take_far',
  'take_far_joke',
  'far_joke_context',
  'joke_context_ethan',
  'context_ethan_wife',
  'ethan_wife_kid',
  'wife_kid_adopt',
  'kid_adopt_boy',
  'adopt_boy_joey',
  'boy_joey_year',
  'joey_year_ago',
  'year_ago_mike',
  'ago_mike_make',
  'mike_make_silli',
  'make_silli_lightheart',
  'silli_lightheart_joke',
  'lightheart_joke_involv',
  'joke_involv_joey',
  'involv_joey_bio',
  'joey_bio_parent',
  'bio_parent_way',
  'parent_way_mess',
  'way_mess_ethan',
  'mess_ethan_wife',
  'ethan_wife_alreadi',
  'wife_alreadi_talk',
  'alreadi_talk_mike',
  'talk_mike_tell',
  'mike_tell_%',
  'tell_%_mean',
  '%_mean_harm',
  'mean_harm_tri',
  'harm_tri_get',
  'tri_get_react',
  'get_react_fast',
  'react_fast_forward',
  'fast_forward_nye',
  'forward_nye_parent',
  'nye_parent_host',
  'parent_host_big',
  'host_big_celebratori',
  'big_celebratori_dinner',
  'celebratori_dinner_ethan',
  'dinner_ethan_wife',
  'ethan_wife_came',
  'wife_came_eat',
  'came_eat_dinner',
  'eat_dinner_mike',
  'dinner_mike_decid',
  'mike_decid_tell',
  'decid_tell_knock-knock',
  'tell_knock-knock_joke',
  'knock-knock_joke_ethan',
  'joke_ethan_said',
  'ethan_said_knock',
  'said_knock_knock',
  'knock_knock_ethan',
  'knock_ethan_laugh',
  'ethan_laugh_said',
  'laugh_said_mike',
  'said_mike_repli',
  'mike_repli_joey',
  'repli_joey_bio',
  'joey_bio_parent',
  'bio_parent_burst',
  'parent_burst_laugh',
  'burst_laugh_silenc',
  'laugh_silenc_took',
  'silenc_took_ethan',
  'took_ethan_facial',
  'ethan_facial_experss',
  'facial_experss_chang',
  'experss_chang_wife',
  'chang_wife_call',
  'wife_call_mike',
  'call_mike_idiot',
  'mike_idiot_mike',
  'idiot_mike_repli',
  'mike_repli_heyrelax',
  'repli_heyrelax_joke',
  'heyrelax_joke_argument',
  'joke_argument_ensu',
  'argument_ensu_dinner',
  'ensu_dinner_paus',
  'dinner_paus_parent',
  'paus_parent_suddenli',
  'parent_suddenli_told',
  'suddenli_told_mik',
  'told_mik_leav',
  'mik_leav_thought',
  'leav_thought_harsh',
  'thought_harsh_tri',
  'harsh_tri_speak',
  'tri_speak_get',
  'speak_get_calm',
  'get_calm_mom',
  'calm_mom_insist',
  'mom_insist_mike',
  'insist_mike_leav',
  'mike_leav_left',
  'leav_left_mike',
  'left_mike_complain',
  'mike_complain_whole',
  'complain_whole_time',
  'whole_time_overreact',
  'time_overreact_call',
  'overreact_call_mom',
  'call_mom_later',
  'mom_later_told',
  'later_told_mike',
  'told_mike_line',
  'mike_line_hurt',
  'line_hurt_joke',
  'hurt_joke_touchi',
  'joke_touchi_topic',
  'touchi_topic_told',
  'topic_told_wrong',
  'told_wrong_defend',
  'wrong_defend_say',
  'defend_say_joke',
  'say_joke_said',
  'joke_said_ruin',
  'said_ruin_ny',
  'ruin_ny_famili',
  'ny_famili_told',
  'famili_told_dad',
  'told_dad_ruin',
  'dad_ruin_ny',
  'ruin_ny_celebr',
  'ny_celebr_escal',
  'celebr_escal_situat',
  'escal_situat_kick',
  'situat_kick_told',
  'kick_told_could',
  'told_could_talk',
  'could_talk_one',
  'talk_one_ruin',
  'one_ruin_ny',
  'ruin_ny_celebr',
  'ny_celebr_call',
  'celebr_call_delusion',
  'call_delusion_statement',
  'delusion_statement_hung',
  'statement_hung_talk',
  'hung_talk_day',
  'talk_day_tri',
  'day_tri_contact',
  'tri_contact_ethan',
  'contact_ethan_respons'],
 ['fianc',
  'male',
  'femal',
  'get',
  'marri',
  'soon',
  'much',
  'disagre',
  'wed',
  'plan',
  'except',
  'food',
  'famili',
  'vegan',
  'mani',
  'reason',
  'chose',
  'lifestyl',
  'one',
  'histori',
  'health',
  'issu',
  'fianc',
  'famili',
  'complet',
  'opposit',
  'theyr',
  'hardcor',
  'meat',
  'eater',
  'fine',
  'obvious',
  'howev',
  'decid',
  'wed',
  'food',
  'menu',
  'want',
  'add',
  '-',
  'vegan',
  'option',
  'fianc',
  'mom',
  'object',
  'say',
  'wast',
  'money',
  'food',
  'real',
  'food',
  'also',
  'argu',
  'would',
  'offens',
  'guest',
  'suggest',
  'vegan',
  'option',
  'good',
  'ol',
  'salad',
  '&',
  'appet',
  'mom',
  'want',
  'cupcak',
  'lol',
  'said',
  'one',
  'famili',
  'pay',
  'two',
  'want',
  'make',
  'guest',
  'feel',
  'welcom',
  'treat',
  'second',
  'class',
  'citizen',
  'serv',
  'salad',
  'fianc',
  'made',
  'face',
  'said',
  'vegan',
  'eat',
  'refus',
  'argu',
  'said',
  'final',
  'day',
  'found',
  'cancel',
  'vegan',
  'option',
  'took',
  'menu',
  'complet',
  'behind',
  'back',
  'seeth',
  'call',
  'work',
  'kept',
  'hang',
  'went',
  'straight',
  'workplac',
  'confront',
  'flip',
  'stun',
  'see',
  'first',
  'said',
  'mom',
  'idea',
  'told',
  'go',
  'home',
  'make',
  'scene',
  'offic',
  'fight',
  'continu',
  'home',
  'defend',
  'say',
  'sort',
  'made',
  'resort',
  'kept',
  'brush',
  'though',
  'input',
  'refus',
  'accommad',
  'famili',
  'plenti',
  'meat',
  'option',
  'cant',
  'get',
  '-',
  'vegan',
  'option',
  'im',
  'pay',
  'yell',
  'wed',
  'famili',
  'famili',
  'said',
  'fine',
  'theyll',
  'figur',
  'told',
  'let',
  'go',
  'refus',
  'aita',
  'put',
  'foot',
  'updat',
  'mom',
  'messag',
  'earlier',
  'tri',
  'get',
  'listen',
  'say',
  'kept',
  'ignor',
  'phonecal',
  'spent',
  'long',
  'wall',
  'text',
  'address',
  'son',
  'workplac',
  'call',
  'kind',
  'stuff',
  'immatur',
  'unhing',
  'went',
  'explain',
  'notic',
  'famili',
  'kept',
  'act',
  'dismiss',
  'son',
  'input',
  'contribut',
  'wed',
  'said',
  'notic',
  'behavior',
  'toward',
  'entir',
  'famili',
  'want',
  'speak',
  'earlier',
  'tri',
  'keep',
  'peac',
  'went',
  'address',
  'food',
  'menu',
  'issu',
  'deni',
  'involv',
  'cancel',
  'vegan',
  'option',
  'mean',
  'support',
  'son',
  'decis',
  'moreov',
  'thought',
  'soooo',
  'respons',
  'make',
  'move',
  'continu',
  'refus',
  'see',
  'stuff',
  'wast',
  'money',
  'also',
  'point',
  'kept',
  'say',
  'paid',
  'said',
  'technic',
  'money',
  'mine',
  '*',
  '*',
  'get',
  'marri',
  'suggest',
  'wisen',
  'get',
  'rid',
  'money',
  'paid',
  'mental',
  'final',
  'mention',
  'bad',
  'whole',
  'situat',
  'make',
  'look',
  'said',
  'son',
  'alreadi',
  'offer',
  'number',
  'compromis',
  'chose',
  'brush',
  'decid',
  'make',
  'weird',
  'hill',
  'die',
  'said',
  'son',
  'upset',
  'famili',
  'well',
  'hear',
  'suggest',
  'agrr',
  'compromis',
  'done',
  'piss',
  'beyond',
  'belief',
  'respond',
  'let',
  'know',
  'im',
  'still',
  'stand',
  'ground',
  'even',
  'ill',
  'call',
  'whole',
  'wed',
  'honestli',
  'ridicul',
  'mom',
  'dadthey',
  'even',
  'know',
  'say',
  'anymor',
  'appar',
  'fianc',
  'saw',
  'respons',
  'tri',
  'call',
  'right',
  'im',
  'wait',
  'get',
  'home',
  'see',
  'still',
  'insist',
  'stanc',
  'took',
  'ill',
  'updat',
  'anyth',
  'worth',
  'ad',
  'talk',
  'fianc_male',
  'male_femal',
  'femal_get',
  'get_marri',
  'marri_soon',
  'soon_much',
  'much_disagre',
  'disagre_wed',
  'wed_plan',
  'plan_except',
  'except_food',
  'food_famili',
  'famili_vegan',
  'vegan_mani',
  'mani_reason',
  'reason_chose',
  'chose_lifestyl',
  'lifestyl_one',
  'one_histori',
  'histori_health',
  'health_issu',
  'issu_fianc',
  'fianc_famili',
  'famili_complet',
  'complet_opposit',
  'opposit_theyr',
  'theyr_hardcor',
  'hardcor_meat',
  'meat_eater',
  'eater_fine',
  'fine_obvious',
  'obvious_howev',
  'howev_decid',
  'decid_wed',
  'wed_food',
  'food_menu',
  'menu_want',
  'want_add',
  'add_-',
  '-_vegan',
  'vegan_option',
  'option_fianc',
  'fianc_mom',
  'mom_object',
  'object_say',
  'say_wast',
  'wast_money',
  'money_food',
  'food_real',
  'real_food',
  'food_also',
  'also_argu',
  'argu_would',
  'would_offens',
  'offens_guest',
  'guest_suggest',
  'suggest_vegan',
  'vegan_option',
  'option_good',
  'good_ol',
  'ol_salad',
  'salad_&',
  '&_appet',
  'appet_mom',
  'mom_want',
  'want_cupcak',
  'cupcak_lol',
  'lol_said',
  'said_one',
  'one_famili',
  'famili_pay',
  'pay_two',
  'two_want',
  'want_make',
  'make_guest',
  'guest_feel',
  'feel_welcom',
  'welcom_treat',
  'treat_second',
  'second_class',
  'class_citizen',
  'citizen_serv',
  'serv_salad',
  'salad_fianc',
  'fianc_made',
  'made_face',
  'face_said',
  'said_vegan',
  'vegan_eat',
  'eat_refus',
  'refus_argu',
  'argu_said',
  'said_final',
  'final_day',
  'day_found',
  'found_cancel',
  'cancel_vegan',
  'vegan_option',
  'option_took',
  'took_menu',
  'menu_complet',
  'complet_behind',
  'behind_back',
  'back_seeth',
  'seeth_call',
  'call_work',
  'work_kept',
  'kept_hang',
  'hang_went',
  'went_straight',
  'straight_workplac',
  'workplac_confront',
  'confront_flip',
  'flip_stun',
  'stun_see',
  'see_first',
  'first_said',
  'said_mom',
  'mom_idea',
  'idea_told',
  'told_go',
  'go_home',
  'home_make',
  'make_scene',
  'scene_offic',
  'offic_fight',
  'fight_continu',
  'continu_home',
  'home_defend',
  'defend_say',
  'say_sort',
  'sort_made',
  'made_resort',
  'resort_kept',
  'kept_brush',
  'brush_though',
  'though_input',
  'input_refus',
  'refus_accommad',
  'accommad_famili',
  'famili_plenti',
  'plenti_meat',
  'meat_option',
  'option_cant',
  'cant_get',
  'get_-',
  '-_vegan',
  'vegan_option',
  'option_im',
  'im_pay',
  'pay_yell',
  'yell_wed',
  'wed_famili',
  'famili_famili',
  'famili_said',
  'said_fine',
  'fine_theyll',
  'theyll_figur',
  'figur_told',
  'told_let',
  'let_go',
  'go_refus',
  'refus_aita',
  'aita_put',
  'put_foot',
  'foot_updat',
  'updat_mom',
  'mom_messag',
  'messag_earlier',
  'earlier_tri',
  'tri_get',
  'get_listen',
  'listen_say',
  'say_kept',
  'kept_ignor',
  'ignor_phonecal',
  'phonecal_spent',
  'spent_long',
  'long_wall',
  'wall_text',
  'text_address',
  'address_son',
  'son_workplac',
  'workplac_call',
  'call_kind',
  'kind_stuff',
  'stuff_immatur',
  'immatur_unhing',
  'unhing_went',
  'went_explain',
  'explain_notic',
  'notic_famili',
  'famili_kept',
  'kept_act',
  'act_dismiss',
  'dismiss_son',
  'son_input',
  'input_contribut',
  'contribut_wed',
  'wed_said',
  'said_notic',
  'notic_behavior',
  'behavior_toward',
  'toward_entir',
  'entir_famili',
  'famili_want',
  'want_speak',
  'speak_earlier',
  'earlier_tri',
  'tri_keep',
  'keep_peac',
  'peac_went',
  'went_address',
  'address_food',
  'food_menu',
  'menu_issu',
  'issu_deni',
  'deni_involv',
  'involv_cancel',
  'cancel_vegan',
  'vegan_option',
  'option_mean',
  'mean_support',
  'support_son',
  'son_decis',
  'decis_moreov',
  'moreov_thought',
  'thought_soooo',
  'soooo_respons',
  'respons_make',
  'make_move',
  'move_continu',
  'continu_refus',
  'refus_see',
  'see_stuff',
  'stuff_wast',
  'wast_money',
  'money_also',
  'also_point',
  'point_kept',
  'kept_say',
  'say_paid',
  'paid_said',
  'said_technic',
  'technic_money',
  'money_mine',
  'mine_*',
  '*_*',
  '*_get',
  'get_marri',
  'marri_suggest',
  'suggest_wisen',
  'wisen_get',
  'get_rid',
  'rid_money',
  'money_paid',
  'paid_mental',
  'mental_final',
  'final_mention',
  'mention_bad',
  'bad_whole',
  'whole_situat',
  'situat_make',
  'make_look',
  'look_said',
  'said_son',
  'son_alreadi',
  'alreadi_offer',
  'offer_number',
  'number_compromis',
  'compromis_chose',
  'chose_brush',
  'brush_decid',
  'decid_make',
  'make_weird',
  'weird_hill',
  'hill_die',
  'die_said',
  'said_son',
  'son_upset',
  'upset_famili',
  'famili_well',
  'well_hear',
  'hear_suggest',
  'suggest_agrr',
  'agrr_compromis',
  'compromis_done',
  'done_piss',
  'piss_beyond',
  'beyond_belief',
  'belief_respond',
  'respond_let',
  'let_know',
  'know_im',
  'im_still',
  'still_stand',
  'stand_ground',
  'ground_even',
  'even_ill',
  'ill_call',
  'call_whole',
  'whole_wed',
  'wed_honestli',
  'honestli_ridicul',
  'ridicul_mom',
  'mom_dadthey',
  'dadthey_even',
  'even_know',
  'know_say',
  'say_anymor',
  'anymor_appar',
  'appar_fianc',
  'fianc_saw',
  'saw_respons',
  'respons_tri',
  'tri_call',
  'call_right',
  'right_im',
  'im_wait',
  'wait_get',
  'get_home',
  'home_see',
  'see_still',
  'still_insist',
  'insist_stanc',
  'stanc_took',
  'took_ill',
  'ill_updat',
  'updat_anyth',
  'anyth_worth',
  'worth_ad',
  'ad_talk',
  'fianc_male_femal',
  'male_femal_get',
  'femal_get_marri',
  'get_marri_soon',
  'marri_soon_much',
  'soon_much_disagre',
  'much_disagre_wed',
  'disagre_wed_plan',
  'wed_plan_except',
  'plan_except_food',
  'except_food_famili',
  'food_famili_vegan',
  'famili_vegan_mani',
  'vegan_mani_reason',
  'mani_reason_chose',
  'reason_chose_lifestyl',
  'chose_lifestyl_one',
  'lifestyl_one_histori',
  'one_histori_health',
  'histori_health_issu',
  'health_issu_fianc',
  'issu_fianc_famili',
  'fianc_famili_complet',
  'famili_complet_opposit',
  'complet_opposit_theyr',
  'opposit_theyr_hardcor',
  'theyr_hardcor_meat',
  'hardcor_meat_eater',
  'meat_eater_fine',
  'eater_fine_obvious',
  'fine_obvious_howev',
  'obvious_howev_decid',
  'howev_decid_wed',
  'decid_wed_food',
  'wed_food_menu',
  'food_menu_want',
  'menu_want_add',
  'want_add_-',
  'add_-_vegan',
  '-_vegan_option',
  'vegan_option_fianc',
  'option_fianc_mom',
  'fianc_mom_object',
  'mom_object_say',
  'object_say_wast',
  'say_wast_money',
  'wast_money_food',
  'money_food_real',
  'food_real_food',
  'real_food_also',
  'food_also_argu',
  'also_argu_would',
  'argu_would_offens',
  'would_offens_guest',
  'offens_guest_suggest',
  'guest_suggest_vegan',
  'suggest_vegan_option',
  'vegan_option_good',
  'option_good_ol',
  'good_ol_salad',
  'ol_salad_&',
  'salad_&_appet',
  '&_appet_mom',
  'appet_mom_want',
  'mom_want_cupcak',
  'want_cupcak_lol',
  'cupcak_lol_said',
  'lol_said_one',
  'said_one_famili',
  'one_famili_pay',
  'famili_pay_two',
  'pay_two_want',
  'two_want_make',
  'want_make_guest',
  'make_guest_feel',
  'guest_feel_welcom',
  'feel_welcom_treat',
  'welcom_treat_second',
  'treat_second_class',
  'second_class_citizen',
  'class_citizen_serv',
  'citizen_serv_salad',
  'serv_salad_fianc',
  'salad_fianc_made',
  'fianc_made_face',
  'made_face_said',
  'face_said_vegan',
  'said_vegan_eat',
  'vegan_eat_refus',
  'eat_refus_argu',
  'refus_argu_said',
  'argu_said_final',
  'said_final_day',
  'final_day_found',
  'day_found_cancel',
  'found_cancel_vegan',
  'cancel_vegan_option',
  'vegan_option_took',
  'option_took_menu',
  'took_menu_complet',
  'menu_complet_behind',
  'complet_behind_back',
  'behind_back_seeth',
  'back_seeth_call',
  'seeth_call_work',
  'call_work_kept',
  'work_kept_hang',
  'kept_hang_went',
  'hang_went_straight',
  'went_straight_workplac',
  'straight_workplac_confront',
  'workplac_confront_flip',
  'confront_flip_stun',
  'flip_stun_see',
  'stun_see_first',
  'see_first_said',
  'first_said_mom',
  'said_mom_idea',
  'mom_idea_told',
  'idea_told_go',
  'told_go_home',
  'go_home_make',
  'home_make_scene',
  'make_scene_offic',
  'scene_offic_fight',
  'offic_fight_continu',
  'fight_continu_home',
  'continu_home_defend',
  'home_defend_say',
  'defend_say_sort',
  'say_sort_made',
  'sort_made_resort',
  'made_resort_kept',
  'resort_kept_brush',
  'kept_brush_though',
  'brush_though_input',
  'though_input_refus',
  'input_refus_accommad',
  'refus_accommad_famili',
  'accommad_famili_plenti',
  'famili_plenti_meat',
  'plenti_meat_option',
  'meat_option_cant',
  'option_cant_get',
  'cant_get_-',
  'get_-_vegan',
  '-_vegan_option',
  'vegan_option_im',
  'option_im_pay',
  'im_pay_yell',
  'pay_yell_wed',
  'yell_wed_famili',
  'wed_famili_famili',
  'famili_famili_said',
  'famili_said_fine',
  'said_fine_theyll',
  'fine_theyll_figur',
  'theyll_figur_told',
  'figur_told_let',
  'told_let_go',
  'let_go_refus',
  'go_refus_aita',
  'refus_aita_put',
  'aita_put_foot',
  'put_foot_updat',
  'foot_updat_mom',
  'updat_mom_messag',
  'mom_messag_earlier',
  'messag_earlier_tri',
  'earlier_tri_get',
  'tri_get_listen',
  'get_listen_say',
  'listen_say_kept',
  'say_kept_ignor',
  'kept_ignor_phonecal',
  'ignor_phonecal_spent',
  'phonecal_spent_long',
  'spent_long_wall',
  'long_wall_text',
  'wall_text_address',
  'text_address_son',
  'address_son_workplac',
  'son_workplac_call',
  'workplac_call_kind',
  'call_kind_stuff',
  'kind_stuff_immatur',
  'stuff_immatur_unhing',
  'immatur_unhing_went',
  'unhing_went_explain',
  'went_explain_notic',
  'explain_notic_famili',
  'notic_famili_kept',
  'famili_kept_act',
  'kept_act_dismiss',
  'act_dismiss_son',
  'dismiss_son_input',
  'son_input_contribut',
  'input_contribut_wed',
  'contribut_wed_said',
  'wed_said_notic',
  'said_notic_behavior',
  'notic_behavior_toward',
  'behavior_toward_entir',
  'toward_entir_famili',
  'entir_famili_want',
  'famili_want_speak',
  'want_speak_earlier',
  'speak_earlier_tri',
  'earlier_tri_keep',
  'tri_keep_peac',
  'keep_peac_went',
  'peac_went_address',
  'went_address_food',
  'address_food_menu',
  'food_menu_issu',
  'menu_issu_deni',
  'issu_deni_involv',
  'deni_involv_cancel',
  'involv_cancel_vegan',
  'cancel_vegan_option',
  'vegan_option_mean',
  'option_mean_support',
  'mean_support_son',
  'support_son_decis',
  'son_decis_moreov',
  'decis_moreov_thought',
  'moreov_thought_soooo',
  'thought_soooo_respons',
  'soooo_respons_make',
  'respons_make_move',
  'make_move_continu',
  'move_continu_refus',
  'continu_refus_see',
  'refus_see_stuff',
  'see_stuff_wast',
  'stuff_wast_money',
  'wast_money_also',
  'money_also_point',
  'also_point_kept',
  'point_kept_say',
  'kept_say_paid',
  'say_paid_said',
  'paid_said_technic',
  'said_technic_money',
  'technic_money_mine',
  'money_mine_*',
  'mine_*_*',
  '*_*_get',
  '*_get_marri',
  'get_marri_suggest',
  'marri_suggest_wisen',
  'suggest_wisen_get',
  'wisen_get_rid',
  'get_rid_money',
  'rid_money_paid',
  'money_paid_mental',
  'paid_mental_final',
  'mental_final_mention',
  'final_mention_bad',
  'mention_bad_whole',
  'bad_whole_situat',
  'whole_situat_make',
  'situat_make_look',
  'make_look_said',
  'look_said_son',
  'said_son_alreadi',
  'son_alreadi_offer',
  'alreadi_offer_number',
  'offer_number_compromis',
  'number_compromis_chose',
  'compromis_chose_brush',
  'chose_brush_decid',
  'brush_decid_make',
  'decid_make_weird',
  'make_weird_hill',
  'weird_hill_die',
  'hill_die_said',
  'die_said_son',
  'said_son_upset',
  'son_upset_famili',
  'upset_famili_well',
  'famili_well_hear',
  'well_hear_suggest',
  'hear_suggest_agrr',
  'suggest_agrr_compromis',
  'agrr_compromis_done',
  'compromis_done_piss',
  'done_piss_beyond',
  'piss_beyond_belief',
  'beyond_belief_respond',
  'belief_respond_let',
  'respond_let_know',
  'let_know_im',
  'know_im_still',
  'im_still_stand',
  'still_stand_ground',
  'stand_ground_even',
  'ground_even_ill',
  'even_ill_call',
  'ill_call_whole',
  'call_whole_wed',
  'whole_wed_honestli',
  'wed_honestli_ridicul',
  'honestli_ridicul_mom',
  'ridicul_mom_dadthey',
  'mom_dadthey_even',
  'dadthey_even_know',
  'even_know_say',
  'know_say_anymor',
  'say_anymor_appar',
  'anymor_appar_fianc',
  'appar_fianc_saw',
  'fianc_saw_respons',
  'saw_respons_tri',
  'respons_tri_call',
  'tri_call_right',
  'call_right_im',
  'right_im_wait',
  'im_wait_get',
  'wait_get_home',
  'get_home_see',
  'home_see_still',
  'see_still_insist',
  'still_insist_stanc',
  'insist_stanc_took',
  'stanc_took_ill',
  'took_ill_updat',
  'ill_updat_anyth',
  'updat_anyth_worth',
  'anyth_worth_ad',
  'worth_ad_talk'],
 ['gave',
  'birth',
  'son',
  'week',
  'ago',
  'husband',
  'mom',
  'camp',
  'live',
  'room',
  'ever',
  'sinc',
  'invit',
  'peopl',
  'make',
  'mess',
  'hous',
  'etc',
  'said',
  'noth',
  'open',
  'mouth',
  'husband',
  'would',
  'start',
  'scold',
  'say',
  'mom',
  'help',
  'grate',
  'ignor',
  'focu',
  'son',
  'handl',
  'feed',
  'diaper',
  'chang',
  'clean',
  'wipe',
  'get',
  'hour',
  'sleep',
  'husband',
  'mom',
  'realli',
  'help',
  'babi',
  'thought',
  'well',
  'least',
  'cook',
  'us',
  'last',
  'night',
  'bedroom',
  'breastfeed',
  'son',
  'knew',
  'late',
  'dinner',
  'thought',
  'husband',
  'mom',
  'save',
  'plate',
  'got',
  'done',
  'son',
  'walk',
  'room',
  'saw',
  'husband',
  'mom',
  'sit',
  'watch',
  'tv',
  'ask',
  'dinner',
  'husband',
  'said',
  'probabl',
  'stove',
  'walk',
  'toward',
  'kitchen',
  'mom',
  'loudli',
  'said',
  'save',
  'food',
  'absolut',
  'shock',
  'ask',
  'simpli',
  'said',
  'well',
  'see',
  'dinner',
  'tabl',
  'thought',
  'hungri',
  'lost',
  'yell',
  'feed',
  'son',
  'cours',
  'hungri',
  'actual',
  'starv',
  'shrug',
  'shoulder',
  'said',
  'fault',
  'show',
  'dinner',
  'knew',
  'damn',
  'well',
  'son',
  'eaten',
  'thing',
  'hour',
  'husband',
  'ask',
  'rais',
  'voic',
  'mom',
  'told',
  'saw',
  'happen',
  'think',
  'hungri',
  'need',
  'food',
  'lash',
  'ask',
  'fuck',
  'want',
  'said',
  'know',
  'mayb',
  'save',
  'food',
  'defend',
  'say',
  'selfish',
  'basic',
  'berat',
  'eat',
  'dinner',
  'work',
  'long',
  'hour',
  'depart',
  'argument',
  'ensu',
  'went',
  'insid',
  'bedroom',
  'pack',
  'small',
  'bag',
  'son',
  'call',
  'brother',
  'come',
  'take',
  'mom',
  'hous',
  'husband',
  'blew',
  'make',
  'way',
  'argu',
  'door',
  'told',
  'uncal',
  'childish',
  'told',
  'take',
  'mom',
  'anymor',
  'said',
  'asham',
  'talk',
  'like',
  'liter',
  'put',
  'life',
  'paus',
  'could',
  'help',
  'brother',
  'came',
  'got',
  'car',
  'left',
  'pick',
  'food',
  'way',
  'ate',
  'like',
  'hungri',
  'bear',
  'husband',
  'never',
  'stop',
  'call',
  'though',
  'last',
  'text',
  'call',
  'nut',
  'demand',
  'return',
  'today',
  'said',
  'miss',
  'mom',
  'like',
  'clean',
  'home',
  'healthi',
  'food',
  'would',
  'like',
  'stay',
  'lost',
  'got',
  'famili',
  'involv',
  'accus',
  'keep',
  'son',
  'away',
  'punish',
  'food',
  '*',
  '*',
  'editok',
  'say',
  'im',
  'keep',
  'husband',
  'away',
  'son',
  'promis',
  'full',
  'access',
  'choos',
  'come',
  'simpli',
  'hat',
  'mom',
  'refus',
  'room',
  'long',
  'go',
  'stay',
  'tell',
  'least',
  'im',
  'pamper',
  'treat',
  'like',
  'princess',
  'mom',
  'dad',
  'brother',
  '-',
  'heck',
  'get',
  'treatment',
  'home',
  'husband',
  'come',
  'mom',
  'hous',
  'want',
  'see',
  'son',
  'badli',
  'doubt',
  'hell',
  'sinc',
  'pride',
  'person',
  'might',
  'hurt',
  'ego',
  '*',
  '*',
  '*',
  '*',
  'one',
  'question',
  'answer',
  'caus',
  'lot',
  'peopl',
  'ask',
  'clarifi',
  'ye',
  'depart',
  '=',
  'polic',
  'depart',
  'polic',
  'offic',
  'im',
  'sorri',
  'got',
  'confus',
  'thought',
  'clear',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'ok',
  'felt',
  'sorri',
  'decid',
  'send',
  'coupl',
  'pictur',
  'took',
  'son',
  'sleep',
  'respon',
  'long',
  'wall',
  'text',
  'berat',
  'left',
  'right',
  'claim',
  'rub',
  'face',
  'cant',
  'come',
  'see',
  'son',
  'know',
  'call',
  'word',
  'never',
  'til',
  'im',
  'shaken',
  'mad',
  'right',
  'realli',
  'thought',
  'someth',
  'nice',
  'consider',
  'sympathi',
  'ive',
  'decid',
  'get',
  'rest',
  'stuff',
  'tomorrow',
  'need',
  'time',
  'space',
  'abl',
  'think',
  'done',
  'said',
  'feel',
  'terribl',
  'right',
  'least',
  'got',
  'dinner',
  'tonight',
  'unlik',
  'home',
  'mom',
  'first',
  'came',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'oh',
  'god',
  'cant',
  'even',
  'find',
  'place',
  'start',
  'sent',
  'pictur',
  'mom',
  'cook',
  'dinner',
  'kitchen',
  'nearli',
  'pm',
  'say',
  'repay',
  'pictur',
  'sent',
  'earlier',
  'make',
  'dinner',
  'includ',
  'real',
  'time',
  'justoh',
  'god',
  'im',
  'liter',
  'laugh',
  'like',
  'serious',
  'im',
  'truli',
  'speechless',
  'respond',
  'yet',
  'think',
  'im',
  'angri',
  'right',
  'may',
  'regret',
  'word',
  'say',
  'im',
  'gon',
  'na',
  'put',
  'phone',
  'silent',
  'someth',
  'want',
  'ruin',
  'yet',
  'anoth',
  'night',
  'tomorrow',
  'im',
  'go',
  'collect',
  'mine',
  'son',
  'stuff',
  'could',
  'stay',
  'longer',
  'mom',
  'hous',
  'thank',
  'god',
  'went',
  'anonym',
  'might',
  'updat',
  'later',
  'anyth',
  'new',
  'happen',
  'goodnight',
  '*',
  '*',
  '*',
  '*',
  'edit',
  'god',
  'cant',
  'believ',
  'im',
  'back',
  'sent',
  'text',
  'say',
  'come',
  'could',
  'get',
  'mom',
  'hous',
  'tomorrow',
  'like',
  'liter',
  'leav',
  'hous',
  'said',
  'hour',
  'could',
  'see',
  'son',
  'also',
  'talk',
  'even',
  'know',
  'im',
  'come',
  'tomorrow',
  'pick',
  'stuff',
  'babi',
  'im',
  'freak',
  'like',
  'absolut',
  'happen',
  'dream',
  'tell',
  'mom',
  'leav',
  'hous',
  'crazi',
  'line',
  'request',
  'im',
  'sure',
  'wether',
  'respond',
  'say',
  'ill',
  'tri',
  'get',
  'sleep',
  'see',
  'goe',
  'morn',
  'im',
  'tire',
  'anyth',
  'want',
  'put',
  'read',
  'thread',
  'ill',
  'let',
  'know',
  'happen',
  'tomorrow',
  'aright',
  '*',
  '*',
  'gave_birth',
  'birth_son',
  'son_week',
  'week_ago',
  'ago_husband',
  'husband_mom',
  'mom_camp',
  'camp_live',
  'live_room',
  'room_ever',
  'ever_sinc',
  'sinc_invit',
  'invit_peopl',
  'peopl_make',
  'make_mess',
  'mess_hous',
  'hous_etc',
  'etc_said',
  'said_noth',
  'noth_open',
  'open_mouth',
  'mouth_husband',
  'husband_would',
  'would_start',
  'start_scold',
  'scold_say',
  'say_mom',
  'mom_help',
  'help_grate',
  'grate_ignor',
  'ignor_focu',
  'focu_son',
  'son_handl',
  'handl_feed',
  'feed_diaper',
  'diaper_chang',
  'chang_clean',
  'clean_wipe',
  'wipe_get',
  'get_hour',
  'hour_sleep',
  'sleep_husband',
  'husband_mom',
  'mom_realli',
  'realli_help',
  'help_babi',
  'babi_thought',
  'thought_well',
  'well_least',
  'least_cook',
  'cook_us',
  'us_last',
  'last_night',
  'night_bedroom',
  'bedroom_breastfeed',
  'breastfeed_son',
  'son_knew',
  'knew_late',
  'late_dinner',
  'dinner_thought',
  'thought_husband',
  'husband_mom',
  'mom_save',
  'save_plate',
  'plate_got',
  'got_done',
  'done_son',
  'son_walk',
  'walk_room',
  'room_saw',
  'saw_husband',
  'husband_mom',
  'mom_sit',
  'sit_watch',
  'watch_tv',
  'tv_ask',
  'ask_dinner',
  'dinner_husband',
  'husband_said',
  'said_probabl',
  'probabl_stove',
  'stove_walk',
  'walk_toward',
  'toward_kitchen',
  'kitchen_mom',
  'mom_loudli',
  'loudli_said',
  'said_save',
  'save_food',
  'food_absolut',
  'absolut_shock',
  'shock_ask',
  'ask_simpli',
  'simpli_said',
  'said_well',
  'well_see',
  'see_dinner',
  'dinner_tabl',
  'tabl_thought',
  'thought_hungri',
  'hungri_lost',
  'lost_yell',
  'yell_feed',
  'feed_son',
  'son_cours',
  'cours_hungri',
  'hungri_actual',
  'actual_starv',
  'starv_shrug',
  'shrug_shoulder',
  'shoulder_said',
  'said_fault',
  'fault_show',
  'show_dinner',
  'dinner_knew',
  'knew_damn',
  'damn_well',
  'well_son',
  'son_eaten',
  'eaten_thing',
  'thing_hour',
  'hour_husband',
  'husband_ask',
  'ask_rais',
  'rais_voic',
  'voic_mom',
  'mom_told',
  'told_saw',
  'saw_happen',
  'happen_think',
  'think_hungri',
  'hungri_need',
  'need_food',
  'food_lash',
  'lash_ask',
  'ask_fuck',
  'fuck_want',
  'want_said',
  'said_know',
  'know_mayb',
  'mayb_save',
  'save_food',
  'food_defend',
  'defend_say',
  'say_selfish',
  'selfish_basic',
  'basic_berat',
  'berat_eat',
  'eat_dinner',
  'dinner_work',
  'work_long',
  'long_hour',
  'hour_depart',
  'depart_argument',
  'argument_ensu',
  'ensu_went',
  'went_insid',
  'insid_bedroom',
  'bedroom_pack',
  'pack_small',
  'small_bag',
  'bag_son',
  'son_call',
  'call_brother',
  'brother_come',
  'come_take',
  'take_mom',
  'mom_hous',
  'hous_husband',
  'husband_blew',
  'blew_make',
  'make_way',
  'way_argu',
  'argu_door',
  'door_told',
  'told_uncal',
  'uncal_childish',
  'childish_told',
  'told_take',
  'take_mom',
  'mom_anymor',
  'anymor_said',
  'said_asham',
  'asham_talk',
  'talk_like',
  'like_liter',
  'liter_put',
  'put_life',
  'life_paus',
  'paus_could',
  'could_help',
  'help_brother',
  'brother_came',
  'came_got',
  'got_car',
  'car_left',
  'left_pick',
  'pick_food',
  'food_way',
  'way_ate',
  'ate_like',
  'like_hungri',
  'hungri_bear',
  'bear_husband',
  'husband_never',
  'never_stop',
  'stop_call',
  'call_though',
  'though_last',
  'last_text',
  'text_call',
  'call_nut',
  'nut_demand',
  'demand_return',
  'return_today',
  'today_said',
  'said_miss',
  'miss_mom',
  'mom_like',
  'like_clean',
  'clean_home',
  'home_healthi',
  'healthi_food',
  'food_would',
  'would_like',
  'like_stay',
  'stay_lost',
  'lost_got',
  'got_famili',
  'famili_involv',
  'involv_accus',
  'accus_keep',
  'keep_son',
  'son_away',
  'away_punish',
  'punish_food',
  'food_*',
  '*_*',
  '*_editok',
  'editok_say',
  'say_im',
  'im_keep',
  'keep_husband',
  'husband_away',
  'away_son',
  'son_promis',
  'promis_full',
  'full_access',
  'access_choos',
  'choos_come',
  'come_simpli',
  'simpli_hat',
  'hat_mom',
  'mom_refus',
  'refus_room',
  'room_long',
  'long_go',
  'go_stay',
  'stay_tell',
  'tell_least',
  'least_im',
  'im_pamper',
  'pamper_treat',
  'treat_like',
  'like_princess',
  'princess_mom',
  'mom_dad',
  'dad_brother',
  'brother_-',
  '-_heck',
  'heck_get',
  'get_treatment',
  'treatment_home',
  'home_husband',
  'husband_come',
  'come_mom',
  'mom_hous',
  'hous_want',
  'want_see',
  'see_son',
  'son_badli',
  'badli_doubt',
  'doubt_hell',
  'hell_sinc',
  'sinc_pride',
  'pride_person',
  'person_might',
  'might_hurt',
  'hurt_ego',
  'ego_*',
  '*_*',
  '*_*',
  '*_*',
  '*_one',
  'one_question',
  'question_answer',
  'answer_caus',
  'caus_lot',
  'lot_peopl',
  'peopl_ask',
  'ask_clarifi',
  'clarifi_ye',
  'ye_depart',
  'depart_=',
  '=_polic',
  'polic_depart',
  'depart_polic',
  'polic_offic',
  'offic_im',
  'im_sorri',
  'sorri_got',
  'got_confus',
  'confus_thought',
  'thought_clear',
  'clear_*',
  '*_*',
  '*_*',
  '*_*',
  '*_edit',
  'edit_ok',
  'ok_felt',
  'felt_sorri',
  'sorri_decid',
  'decid_send',
  'send_coupl',
  'coupl_pictur',
  'pictur_took',
  'took_son',
  'son_sleep',
  'sleep_respon',
  'respon_long',
  'long_wall',
  'wall_text',
  'text_berat',
  'berat_left',
  'left_right',
  'right_claim',
  'claim_rub',
  'rub_face',
  'face_cant',
  'cant_come',
  'come_see',
  'see_son',
  'son_know',
  'know_call',
  'call_word',
  'word_never',
  'never_til',
  'til_im',
  'im_shaken',
  'shaken_mad',
  'mad_right',
  'right_realli',
  'realli_thought',
  'thought_someth',
  'someth_nice',
  'nice_consider',
  'consider_sympathi',
  'sympathi_ive',
  'ive_decid',
  'decid_get',
  'get_rest',
  'rest_stuff',
  'stuff_tomorrow',
  'tomorrow_need',
  'need_time',
  'time_space',
  'space_abl',
  'abl_think',
  'think_done',
  'done_said',
  'said_feel',
  'feel_terribl',
  'terribl_right',
  'right_least',
  'least_got',
  'got_dinner',
  'dinner_tonight',
  'tonight_unlik',
  'unlik_home',
  'home_mom',
  'mom_first',
  'first_came',
  'came_*',
  '*_*',
  '*_*',
  '*_*',
  '*_edit',
  'edit_oh',
  'oh_god',
  'god_cant',
  'cant_even',
  'even_find',
  'find_place',
  'place_start',
  'start_sent',
  'sent_pictur',
  'pictur_mom',
  'mom_cook',
  'cook_dinner',
  'dinner_kitchen',
  'kitchen_nearli',
  'nearli_pm',
  'pm_say',
  'say_repay',
  'repay_pictur',
  'pictur_sent',
  'sent_earlier',
  'earlier_make',
  'make_dinner',
  'dinner_includ',
  'includ_real',
  'real_time',
  'time_justoh',
  'justoh_god',
  'god_im',
  'im_liter',
  'liter_laugh',
  'laugh_like',
  'like_serious',
  'serious_im',
  'im_truli',
  'truli_speechless',
  'speechless_respond',
  'respond_yet',
  'yet_think',
  'think_im',
  'im_angri',
  'angri_right',
  'right_may',
  'may_regret',
  'regret_word',
  'word_say',
  'say_im',
  'im_gon',
  'gon_na',
  'na_put',
  'put_phone',
  'phone_silent',
  'silent_someth',
  'someth_want',
  'want_ruin',
  'ruin_yet',
  'yet_anoth',
  'anoth_night',
  'night_tomorrow',
  'tomorrow_im',
  'im_go',
  'go_collect',
  'collect_mine',
  'mine_son',
  'son_stuff',
  'stuff_could',
  ...],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m',
  'year',
  'sinc',
  'made',
  'post',
  'whenev',
  'read',
  'post',
  'like',
  'mine',
  'im',
  'alway',
  'wonder',
  'op',
  'leav',
  'asshol',
  'care',
  'left',
  'asshol',
  'lot',
  'nose',
  'way',
  'control',
  'ex',
  'believ',
  'smartest',
  'person',
  'room',
  'someth',
  'differ',
  'would',
  'wrong',
  'must',
  'correct',
  'im',
  'say',
  'everyon',
  'respons',
  'post',
  'gave',
  'revel',
  'immedi',
  'knew',
  'nail',
  'coffin',
  'im',
  'live',
  'within',
  'hour',
  'parent',
  'opposit',
  'side',
  'countri',
  'job',
  'caregiv',
  'plan',
  'go',
  'grad',
  'school',
  'social',
  'worker',
  'boyfriend',
  'tri',
  'control',
  'everi',
  'aspect',
  'life',
  'go',
  'groceri',
  'shop',
  'im',
  'stress',
  'accident',
  'buy',
  'wrong',
  'brand',
  'pasta',
  'right',
  'brand',
  'pasta',
  'live',
  'differ',
  'state',
  'still',
  'get',
  'juic',
  'concentr',
  'ive',
  'switch',
  'pre-ground',
  'coffe',
  'fuck',
  'want',
  'none',
  'wouldv',
  'happen',
  'id',
  'stay',
  'yeah',
  'thank',
  'everyon',
  'play',
  'tini',
  'role',
  'help',
  'see',
  'unhealthi',
  'relationship',
  '[_origin',
  'origin_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m',
  'httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m_year',
  'year_sinc',
  'sinc_made',
  'made_post',
  'post_whenev',
  'whenev_read',
  'read_post',
  'post_like',
  'like_mine',
  'mine_im',
  'im_alway',
  'alway_wonder',
  'wonder_op',
  'op_leav',
  'leav_asshol',
  'asshol_care',
  'care_left',
  'left_asshol',
  'asshol_lot',
  'lot_nose',
  'nose_way',
  'way_control',
  'control_ex',
  'ex_believ',
  'believ_smartest',
  'smartest_person',
  'person_room',
  'room_someth',
  'someth_differ',
  'differ_would',
  'would_wrong',
  'wrong_must',
  'must_correct',
  'correct_im',
  'im_say',
  'say_everyon',
  'everyon_respons',
  'respons_post',
  'post_gave',
  'gave_revel',
  'revel_immedi',
  'immedi_knew',
  'knew_nail',
  'nail_coffin',
  'coffin_im',
  'im_live',
  'live_within',
  'within_hour',
  'hour_parent',
  'parent_opposit',
  'opposit_side',
  'side_countri',
  'countri_job',
  'job_caregiv',
  'caregiv_plan',
  'plan_go',
  'go_grad',
  'grad_school',
  'school_social',
  'social_worker',
  'worker_boyfriend',
  'boyfriend_tri',
  'tri_control',
  'control_everi',
  'everi_aspect',
  'aspect_life',
  'life_go',
  'go_groceri',
  'groceri_shop',
  'shop_im',
  'im_stress',
  'stress_accident',
  'accident_buy',
  'buy_wrong',
  'wrong_brand',
  'brand_pasta',
  'pasta_right',
  'right_brand',
  'brand_pasta',
  'pasta_live',
  'live_differ',
  'differ_state',
  'state_still',
  'still_get',
  'get_juic',
  'juic_concentr',
  'concentr_ive',
  'ive_switch',
  'switch_pre-ground',
  'pre-ground_coffe',
  'coffe_fuck',
  'fuck_want',
  'want_none',
  'none_wouldv',
  'wouldv_happen',
  'happen_id',
  'id_stay',
  'stay_yeah',
  'yeah_thank',
  'thank_everyon',
  'everyon_play',
  'play_tini',
  'tini_role',
  'role_help',
  'help_see',
  'see_unhealthi',
  'unhealthi_relationship',
  '[_origin_post',
  'origin_post_]',
  'post_]_httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m',
  ']_httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m_year',
  'httpswwwredditcomramitheassholecommentsnhzubaita_for_not_making_coffee_how_my_fiance_wants_m_year_sinc',
  'year_sinc_made',
  'sinc_made_post',
  'made_post_whenev',
  'post_whenev_read',
  'whenev_read_post',
  'read_post_like',
  'post_like_mine',
  'like_mine_im',
  'mine_im_alway',
  'im_alway_wonder',
  'alway_wonder_op',
  'wonder_op_leav',
  'op_leav_asshol',
  'leav_asshol_care',
  'asshol_care_left',
  'care_left_asshol',
  'left_asshol_lot',
  'asshol_lot_nose',
  'lot_nose_way',
  'nose_way_control',
  'way_control_ex',
  'control_ex_believ',
  'ex_believ_smartest',
  'believ_smartest_person',
  'smartest_person_room',
  'person_room_someth',
  'room_someth_differ',
  'someth_differ_would',
  'differ_would_wrong',
  'would_wrong_must',
  'wrong_must_correct',
  'must_correct_im',
  'correct_im_say',
  'im_say_everyon',
  'say_everyon_respons',
  'everyon_respons_post',
  'respons_post_gave',
  'post_gave_revel',
  'gave_revel_immedi',
  'revel_immedi_knew',
  'immedi_knew_nail',
  'knew_nail_coffin',
  'nail_coffin_im',
  'coffin_im_live',
  'im_live_within',
  'live_within_hour',
  'within_hour_parent',
  'hour_parent_opposit',
  'parent_opposit_side',
  'opposit_side_countri',
  'side_countri_job',
  'countri_job_caregiv',
  'job_caregiv_plan',
  'caregiv_plan_go',
  'plan_go_grad',
  'go_grad_school',
  'grad_school_social',
  'school_social_worker',
  'social_worker_boyfriend',
  'worker_boyfriend_tri',
  'boyfriend_tri_control',
  'tri_control_everi',
  'control_everi_aspect',
  'everi_aspect_life',
  'aspect_life_go',
  'life_go_groceri',
  'go_groceri_shop',
  'groceri_shop_im',
  'shop_im_stress',
  'im_stress_accident',
  'stress_accident_buy',
  'accident_buy_wrong',
  'buy_wrong_brand',
  'wrong_brand_pasta',
  'brand_pasta_right',
  'pasta_right_brand',
  'right_brand_pasta',
  'brand_pasta_live',
  'pasta_live_differ',
  'live_differ_state',
  'differ_state_still',
  'state_still_get',
  'still_get_juic',
  'get_juic_concentr',
  'juic_concentr_ive',
  'concentr_ive_switch',
  'ive_switch_pre-ground',
  'switch_pre-ground_coffe',
  'pre-ground_coffe_fuck',
  'coffe_fuck_want',
  'fuck_want_none',
  'want_none_wouldv',
  'none_wouldv_happen',
  'wouldv_happen_id',
  'happen_id_stay',
  'id_stay_yeah',
  'stay_yeah_thank',
  'yeah_thank_everyon',
  'thank_everyon_play',
  'everyon_play_tini',
  'play_tini_role',
  'tini_role_help',
  'role_help_see',
  'help_see_unhealthi',
  'see_unhealthi_relationship'],
 ['mother',
  'triplet',
  'month',
  'old',
  'never',
  'expect',
  'ever',
  'life',
  'id',
  'mother',
  'triplet',
  'first',
  'becam',
  'pregnant',
  'definit',
  'last',
  'thing',
  'mind',
  'im',
  'home',
  'babi',
  'day',
  'long',
  'even',
  'transfer',
  'educ',
  'onlin',
  'sometim',
  'need',
  'fresh',
  'air',
  'especi',
  'cant',
  'get',
  'stop',
  'cri',
  'find',
  'get',
  'super',
  'frustrat',
  'point',
  'tear',
  'honestli',
  'soo',
  'hard',
  'dad',
  'help',
  'ether',
  'work',
  'school',
  'fianc',
  'parent',
  'rent',
  'us',
  'main',
  'floor',
  'apart',
  'step',
  'outsid',
  'im',
  'liter',
  'sit',
  'chair',
  'right',
  'besid',
  'door',
  'plu',
  'babi',
  'monitor',
  'step',
  'room',
  'camera',
  'liter',
  'see',
  'hear',
  'anyth',
  'happen',
  'id',
  'abl',
  'quickli',
  'get',
  'abl',
  'step',
  'outsid',
  'minut',
  'take',
  'breather',
  'realli',
  'import',
  'start',
  'mini',
  'panic',
  'attack',
  'cant',
  'get',
  'stop',
  'cri',
  'get',
  'realli',
  'frustrat',
  'feel',
  'super',
  'overwhelm',
  'abl',
  'go',
  'outsid',
  'give',
  'chanc',
  'clam',
  'fianc',
  'came',
  'home',
  'sit',
  'outsid',
  'babi',
  'cri',
  'freak',
  'call',
  'horribl',
  'mom',
  'bunch',
  'name',
  'im',
  'gon',
  'na',
  'list',
  'think',
  'super',
  'neglect',
  'put',
  'babi',
  'harm',
  'way',
  'even',
  'told',
  'parent',
  'everyon',
  'seem',
  'realli',
  'grow',
  'system',
  'fianc',
  'famili',
  'famili',
  'ever',
  'known',
  'break',
  'hurt',
  'upset',
  'realli',
  'think',
  'anyth',
  'wrong',
  'put',
  'babi',
  'harm',
  'way',
  'seem',
  'think',
  'otherwis',
  'wonder',
  'apolog',
  'action',
  '-hole',
  'situat',
  '~~~~~~~~~',
  'updat',
  '~~~~~~~~~',
  'decid',
  'show',
  'fianc',
  'thread',
  'first',
  'realli',
  'upset',
  'share',
  'person',
  'problem',
  'stranger',
  'internet',
  'even',
  'though',
  'anonym',
  'end',
  'chanc',
  'clam',
  'hear',
  'guy',
  'actual',
  'apolog',
  'promis',
  'hed',
  'involv',
  'parent',
  'even',
  'take',
  'parent',
  'class',
  'ill',
  'hold',
  'wan',
  'na',
  'thank',
  'everyon',
  'support',
  'give',
  'brought',
  'tear',
  'eye',
  'happi',
  'tear',
  'see',
  'support',
  'stranger',
  'internet',
  'think',
  'ever',
  'receiv',
  'much',
  'support',
  'cant',
  'believ',
  'much',
  'attent',
  'post',
  'even',
  'got',
  'plu',
  'award',
  'thank',
  'much',
  'mother_triplet',
  'triplet_month',
  'month_old',
  'old_never',
  'never_expect',
  'expect_ever',
  'ever_life',
  'life_id',
  'id_mother',
  'mother_triplet',
  'triplet_first',
  'first_becam',
  'becam_pregnant',
  'pregnant_definit',
  'definit_last',
  'last_thing',
  'thing_mind',
  'mind_im',
  'im_home',
  'home_babi',
  'babi_day',
  'day_long',
  'long_even',
  'even_transfer',
  'transfer_educ',
  'educ_onlin',
  'onlin_sometim',
  'sometim_need',
  'need_fresh',
  'fresh_air',
  'air_especi',
  'especi_cant',
  'cant_get',
  'get_stop',
  'stop_cri',
  'cri_find',
  'find_get',
  'get_super',
  'super_frustrat',
  'frustrat_point',
  'point_tear',
  'tear_honestli',
  'honestli_soo',
  'soo_hard',
  'hard_dad',
  'dad_help',
  'help_ether',
  'ether_work',
  'work_school',
  'school_fianc',
  'fianc_parent',
  'parent_rent',
  'rent_us',
  'us_main',
  'main_floor',
  'floor_apart',
  'apart_step',
  'step_outsid',
  'outsid_im',
  'im_liter',
  'liter_sit',
  'sit_chair',
  'chair_right',
  'right_besid',
  'besid_door',
  'door_plu',
  'plu_babi',
  'babi_monitor',
  'monitor_step',
  'step_room',
  'room_camera',
  'camera_liter',
  'liter_see',
  'see_hear',
  'hear_anyth',
  'anyth_happen',
  'happen_id',
  'id_abl',
  'abl_quickli',
  'quickli_get',
  'get_abl',
  'abl_step',
  'step_outsid',
  'outsid_minut',
  'minut_take',
  'take_breather',
  'breather_realli',
  'realli_import',
  'import_start',
  'start_mini',
  'mini_panic',
  'panic_attack',
  'attack_cant',
  'cant_get',
  'get_stop',
  'stop_cri',
  'cri_get',
  'get_realli',
  'realli_frustrat',
  'frustrat_feel',
  'feel_super',
  'super_overwhelm',
  'overwhelm_abl',
  'abl_go',
  'go_outsid',
  'outsid_give',
  'give_chanc',
  'chanc_clam',
  'clam_fianc',
  'fianc_came',
  'came_home',
  'home_sit',
  'sit_outsid',
  'outsid_babi',
  'babi_cri',
  'cri_freak',
  'freak_call',
  'call_horribl',
  'horribl_mom',
  'mom_bunch',
  'bunch_name',
  'name_im',
  'im_gon',
  'gon_na',
  'na_list',
  'list_think',
  'think_super',
  'super_neglect',
  'neglect_put',
  'put_babi',
  'babi_harm',
  'harm_way',
  'way_even',
  'even_told',
  'told_parent',
  'parent_everyon',
  'everyon_seem',
  'seem_realli',
  'realli_grow',
  'grow_system',
  'system_fianc',
  'fianc_famili',
  'famili_famili',
  'famili_ever',
  'ever_known',
  'known_break',
  'break_hurt',
  'hurt_upset',
  'upset_realli',
  'realli_think',
  'think_anyth',
  'anyth_wrong',
  'wrong_put',
  'put_babi',
  'babi_harm',
  'harm_way',
  'way_seem',
  'seem_think',
  'think_otherwis',
  'otherwis_wonder',
  'wonder_apolog',
  'apolog_action',
  'action_-hole',
  '-hole_situat',
  'situat_~~~~~~~~~',
  '~~~~~~~~~_updat',
  'updat_~~~~~~~~~',
  '~~~~~~~~~_decid',
  'decid_show',
  'show_fianc',
  'fianc_thread',
  'thread_first',
  'first_realli',
  'realli_upset',
  'upset_share',
  'share_person',
  'person_problem',
  'problem_stranger',
  'stranger_internet',
  'internet_even',
  'even_though',
  'though_anonym',
  'anonym_end',
  'end_chanc',
  'chanc_clam',
  'clam_hear',
  'hear_guy',
  'guy_actual',
  'actual_apolog',
  'apolog_promis',
  'promis_hed',
  'hed_involv',
  'involv_parent',
  'parent_even',
  'even_take',
  'take_parent',
  'parent_class',
  'class_ill',
  'ill_hold',
  'hold_wan',
  'wan_na',
  'na_thank',
  'thank_everyon',
  'everyon_support',
  'support_give',
  'give_brought',
  'brought_tear',
  'tear_eye',
  'eye_happi',
  'happi_tear',
  'tear_see',
  'see_support',
  'support_stranger',
  'stranger_internet',
  'internet_think',
  'think_ever',
  'ever_receiv',
  'receiv_much',
  'much_support',
  'support_cant',
  'cant_believ',
  'believ_much',
  'much_attent',
  'attent_post',
  'post_even',
  'even_got',
  'got_plu',
  'plu_award',
  'award_thank',
  'thank_much',
  'mother_triplet_month',
  'triplet_month_old',
  'month_old_never',
  'old_never_expect',
  'never_expect_ever',
  'expect_ever_life',
  'ever_life_id',
  'life_id_mother',
  'id_mother_triplet',
  'mother_triplet_first',
  'triplet_first_becam',
  'first_becam_pregnant',
  'becam_pregnant_definit',
  'pregnant_definit_last',
  'definit_last_thing',
  'last_thing_mind',
  'thing_mind_im',
  'mind_im_home',
  'im_home_babi',
  'home_babi_day',
  'babi_day_long',
  'day_long_even',
  'long_even_transfer',
  'even_transfer_educ',
  'transfer_educ_onlin',
  'educ_onlin_sometim',
  'onlin_sometim_need',
  'sometim_need_fresh',
  'need_fresh_air',
  'fresh_air_especi',
  'air_especi_cant',
  'especi_cant_get',
  'cant_get_stop',
  'get_stop_cri',
  'stop_cri_find',
  'cri_find_get',
  'find_get_super',
  'get_super_frustrat',
  'super_frustrat_point',
  'frustrat_point_tear',
  'point_tear_honestli',
  'tear_honestli_soo',
  'honestli_soo_hard',
  'soo_hard_dad',
  'hard_dad_help',
  'dad_help_ether',
  'help_ether_work',
  'ether_work_school',
  'work_school_fianc',
  'school_fianc_parent',
  'fianc_parent_rent',
  'parent_rent_us',
  'rent_us_main',
  'us_main_floor',
  'main_floor_apart',
  'floor_apart_step',
  'apart_step_outsid',
  'step_outsid_im',
  'outsid_im_liter',
  'im_liter_sit',
  'liter_sit_chair',
  'sit_chair_right',
  'chair_right_besid',
  'right_besid_door',
  'besid_door_plu',
  'door_plu_babi',
  'plu_babi_monitor',
  'babi_monitor_step',
  'monitor_step_room',
  'step_room_camera',
  'room_camera_liter',
  'camera_liter_see',
  'liter_see_hear',
  'see_hear_anyth',
  'hear_anyth_happen',
  'anyth_happen_id',
  'happen_id_abl',
  'id_abl_quickli',
  'abl_quickli_get',
  'quickli_get_abl',
  'get_abl_step',
  'abl_step_outsid',
  'step_outsid_minut',
  'outsid_minut_take',
  'minut_take_breather',
  'take_breather_realli',
  'breather_realli_import',
  'realli_import_start',
  'import_start_mini',
  'start_mini_panic',
  'mini_panic_attack',
  'panic_attack_cant',
  'attack_cant_get',
  'cant_get_stop',
  'get_stop_cri',
  'stop_cri_get',
  'cri_get_realli',
  'get_realli_frustrat',
  'realli_frustrat_feel',
  'frustrat_feel_super',
  'feel_super_overwhelm',
  'super_overwhelm_abl',
  'overwhelm_abl_go',
  'abl_go_outsid',
  'go_outsid_give',
  'outsid_give_chanc',
  'give_chanc_clam',
  'chanc_clam_fianc',
  'clam_fianc_came',
  'fianc_came_home',
  'came_home_sit',
  'home_sit_outsid',
  'sit_outsid_babi',
  'outsid_babi_cri',
  'babi_cri_freak',
  'cri_freak_call',
  'freak_call_horribl',
  'call_horribl_mom',
  'horribl_mom_bunch',
  'mom_bunch_name',
  'bunch_name_im',
  'name_im_gon',
  'im_gon_na',
  'gon_na_list',
  'na_list_think',
  'list_think_super',
  'think_super_neglect',
  'super_neglect_put',
  'neglect_put_babi',
  'put_babi_harm',
  'babi_harm_way',
  'harm_way_even',
  'way_even_told',
  'even_told_parent',
  'told_parent_everyon',
  'parent_everyon_seem',
  'everyon_seem_realli',
  'seem_realli_grow',
  'realli_grow_system',
  'grow_system_fianc',
  'system_fianc_famili',
  'fianc_famili_famili',
  'famili_famili_ever',
  'famili_ever_known',
  'ever_known_break',
  'known_break_hurt',
  'break_hurt_upset',
  'hurt_upset_realli',
  'upset_realli_think',
  'realli_think_anyth',
  'think_anyth_wrong',
  'anyth_wrong_put',
  'wrong_put_babi',
  'put_babi_harm',
  'babi_harm_way',
  'harm_way_seem',
  'way_seem_think',
  'seem_think_otherwis',
  'think_otherwis_wonder',
  'otherwis_wonder_apolog',
  'wonder_apolog_action',
  'apolog_action_-hole',
  'action_-hole_situat',
  '-hole_situat_~~~~~~~~~',
  'situat_~~~~~~~~~_updat',
  '~~~~~~~~~_updat_~~~~~~~~~',
  'updat_~~~~~~~~~_decid',
  '~~~~~~~~~_decid_show',
  'decid_show_fianc',
  'show_fianc_thread',
  'fianc_thread_first',
  'thread_first_realli',
  'first_realli_upset',
  'realli_upset_share',
  'upset_share_person',
  'share_person_problem',
  'person_problem_stranger',
  'problem_stranger_internet',
  'stranger_internet_even',
  'internet_even_though',
  'even_though_anonym',
  'though_anonym_end',
  'anonym_end_chanc',
  'end_chanc_clam',
  'chanc_clam_hear',
  'clam_hear_guy',
  'hear_guy_actual',
  'guy_actual_apolog',
  'actual_apolog_promis',
  'apolog_promis_hed',
  'promis_hed_involv',
  'hed_involv_parent',
  'involv_parent_even',
  'parent_even_take',
  'even_take_parent',
  'take_parent_class',
  'parent_class_ill',
  'class_ill_hold',
  'ill_hold_wan',
  'hold_wan_na',
  'wan_na_thank',
  'na_thank_everyon',
  'thank_everyon_support',
  'everyon_support_give',
  'support_give_brought',
  'give_brought_tear',
  'brought_tear_eye',
  'tear_eye_happi',
  'eye_happi_tear',
  'happi_tear_see',
  'tear_see_support',
  'see_support_stranger',
  'support_stranger_internet',
  'stranger_internet_think',
  'internet_think_ever',
  'think_ever_receiv',
  'ever_receiv_much',
  'receiv_much_support',
  'much_support_cant',
  'support_cant_believ',
  'cant_believ_much',
  'believ_much_attent',
  'much_attent_post',
  'attent_post_even',
  'post_even_got',
  'even_got_plu',
  'got_plu_award',
  'plu_award_thank',
  'award_thank_much'],
 ['boyfriend',
  'almost',
  'two',
  'year',
  'get',
  'marri',
  'eventu',
  'prioriti',
  'mom',
  'let',
  'us',
  'share',
  'bed',
  'come',
  'see',
  'reason',
  'came',
  'last',
  'summer',
  'boyfriend',
  'suggest',
  'rent',
  'hotel',
  'could',
  'privaci',
  'comfort',
  'bed',
  'drove',
  'mom',
  'nut',
  'bypass',
  'ittl',
  'rule',
  'drop',
  'entir',
  'time',
  'made',
  'promis',
  'boyfriend',
  'mom',
  'dad',
  'retir',
  'mexico',
  'realli',
  'chill',
  'made',
  'plan',
  'come',
  'visit',
  'christma',
  'christian',
  'realli',
  'care',
  'see',
  'son',
  'regard',
  'religi',
  'holiday',
  'tell',
  'parent',
  'come',
  'mom',
  'ask',
  'thanksgiv',
  'go',
  'hold',
  'promis',
  'stay',
  'hotel',
  'christma',
  'answer',
  'truth',
  'would',
  'stay',
  'hotel',
  'sit',
  'balconi',
  'futur',
  'in-law',
  'condo',
  'look',
  'carribean',
  'wait',
  'sunris',
  'enjoy',
  'peac',
  'quiet',
  'made',
  'mistak',
  'go',
  'onlin',
  'yesterday',
  'saw',
  'bunch',
  'post',
  'mom',
  'sister',
  'jerk',
  'lie',
  'plan',
  'may',
  'littl',
  'tipsi',
  'last',
  'night',
  'decid',
  'respond',
  'said',
  'ridicul',
  'tri',
  'tell',
  'share',
  'room',
  'boyfriend',
  'keep',
  'promis',
  'stay',
  'hotel',
  'plan',
  'put',
  'everyth',
  'facebook',
  'would',
  'avoid',
  'visit',
  'forese',
  'futur',
  'took',
  'post',
  'peopl',
  'start',
  'crap',
  'tri',
  'control',
  'peopl',
  'agre',
  'text',
  'call',
  'say',
  'asshol',
  'make',
  'look',
  'bad',
  'ask',
  'tri',
  'make',
  'look',
  'good',
  'post',
  'stop',
  'text',
  'voic',
  'mail',
  'morn',
  'im',
  'kind',
  'like',
  'idea',
  'skip',
  'drama',
  'miss',
  'dad',
  'blameless',
  'aita',
  'edit',
  'im',
  'troubl',
  'wrap',
  'head',
  'around',
  'coupl',
  'thing',
  'keep',
  'repeat',
  'stay',
  'hotel',
  'break',
  'rule',
  'adult',
  'choic',
  'mani',
  'guy',
  'fli',
  'across',
  'countri',
  'drive',
  'hour',
  'stay',
  'one',
  'night',
  'boyfriend_almost',
  'almost_two',
  'two_year',
  'year_get',
  'get_marri',
  'marri_eventu',
  'eventu_prioriti',
  'prioriti_mom',
  'mom_let',
  'let_us',
  'us_share',
  'share_bed',
  'bed_come',
  'come_see',
  'see_reason',
  'reason_came',
  'came_last',
  'last_summer',
  'summer_boyfriend',
  'boyfriend_suggest',
  'suggest_rent',
  'rent_hotel',
  'hotel_could',
  'could_privaci',
  'privaci_comfort',
  'comfort_bed',
  'bed_drove',
  'drove_mom',
  'mom_nut',
  'nut_bypass',
  'bypass_ittl',
  'ittl_rule',
  'rule_drop',
  'drop_entir',
  'entir_time',
  'time_made',
  'made_promis',
  'promis_boyfriend',
  'boyfriend_mom',
  'mom_dad',
  'dad_retir',
  'retir_mexico',
  'mexico_realli',
  'realli_chill',
  'chill_made',
  'made_plan',
  'plan_come',
  'come_visit',
  'visit_christma',
  'christma_christian',
  'christian_realli',
  'realli_care',
  'care_see',
  'see_son',
  'son_regard',
  'regard_religi',
  'religi_holiday',
  'holiday_tell',
  'tell_parent',
  'parent_come',
  'come_mom',
  'mom_ask',
  'ask_thanksgiv',
  'thanksgiv_go',
  'go_hold',
  'hold_promis',
  'promis_stay',
  'stay_hotel',
  'hotel_christma',
  'christma_answer',
  'answer_truth',
  'truth_would',
  'would_stay',
  'stay_hotel',
  'hotel_sit',
  'sit_balconi',
  'balconi_futur',
  'futur_in-law',
  'in-law_condo',
  'condo_look',
  'look_carribean',
  'carribean_wait',
  'wait_sunris',
  'sunris_enjoy',
  'enjoy_peac',
  'peac_quiet',
  'quiet_made',
  'made_mistak',
  'mistak_go',
  'go_onlin',
  'onlin_yesterday',
  'yesterday_saw',
  'saw_bunch',
  'bunch_post',
  'post_mom',
  'mom_sister',
  'sister_jerk',
  'jerk_lie',
  'lie_plan',
  'plan_may',
  'may_littl',
  'littl_tipsi',
  'tipsi_last',
  'last_night',
  'night_decid',
  'decid_respond',
  'respond_said',
  'said_ridicul',
  'ridicul_tri',
  'tri_tell',
  'tell_share',
  'share_room',
  'room_boyfriend',
  'boyfriend_keep',
  'keep_promis',
  'promis_stay',
  'stay_hotel',
  'hotel_plan',
  'plan_put',
  'put_everyth',
  'everyth_facebook',
  'facebook_would',
  'would_avoid',
  'avoid_visit',
  'visit_forese',
  'forese_futur',
  'futur_took',
  'took_post',
  'post_peopl',
  'peopl_start',
  'start_crap',
  'crap_tri',
  'tri_control',
  'control_peopl',
  'peopl_agre',
  'agre_text',
  'text_call',
  'call_say',
  'say_asshol',
  'asshol_make',
  'make_look',
  'look_bad',
  'bad_ask',
  'ask_tri',
  'tri_make',
  'make_look',
  'look_good',
  'good_post',
  'post_stop',
  'stop_text',
  'text_voic',
  'voic_mail',
  'mail_morn',
  'morn_im',
  'im_kind',
  'kind_like',
  'like_idea',
  'idea_skip',
  'skip_drama',
  'drama_miss',
  'miss_dad',
  'dad_blameless',
  'blameless_aita',
  'aita_edit',
  'edit_im',
  'im_troubl',
  'troubl_wrap',
  'wrap_head',
  'head_around',
  'around_coupl',
  'coupl_thing',
  'thing_keep',
  'keep_repeat',
  'repeat_stay',
  'stay_hotel',
  'hotel_break',
  'break_rule',
  'rule_adult',
  'adult_choic',
  'choic_mani',
  'mani_guy',
  'guy_fli',
  'fli_across',
  'across_countri',
  'countri_drive',
  'drive_hour',
  'hour_stay',
  'stay_one',
  'one_night',
  'boyfriend_almost_two',
  'almost_two_year',
  'two_year_get',
  'year_get_marri',
  'get_marri_eventu',
  'marri_eventu_prioriti',
  'eventu_prioriti_mom',
  'prioriti_mom_let',
  'mom_let_us',
  'let_us_share',
  'us_share_bed',
  'share_bed_come',
  'bed_come_see',
  'come_see_reason',
  'see_reason_came',
  'reason_came_last',
  'came_last_summer',
  'last_summer_boyfriend',
  'summer_boyfriend_suggest',
  'boyfriend_suggest_rent',
  'suggest_rent_hotel',
  'rent_hotel_could',
  'hotel_could_privaci',
  'could_privaci_comfort',
  'privaci_comfort_bed',
  'comfort_bed_drove',
  'bed_drove_mom',
  'drove_mom_nut',
  'mom_nut_bypass',
  'nut_bypass_ittl',
  'bypass_ittl_rule',
  'ittl_rule_drop',
  'rule_drop_entir',
  'drop_entir_time',
  'entir_time_made',
  'time_made_promis',
  'made_promis_boyfriend',
  'promis_boyfriend_mom',
  'boyfriend_mom_dad',
  'mom_dad_retir',
  'dad_retir_mexico',
  'retir_mexico_realli',
  'mexico_realli_chill',
  'realli_chill_made',
  'chill_made_plan',
  'made_plan_come',
  'plan_come_visit',
  'come_visit_christma',
  'visit_christma_christian',
  'christma_christian_realli',
  'christian_realli_care',
  'realli_care_see',
  'care_see_son',
  'see_son_regard',
  'son_regard_religi',
  'regard_religi_holiday',
  'religi_holiday_tell',
  'holiday_tell_parent',
  'tell_parent_come',
  'parent_come_mom',
  'come_mom_ask',
  'mom_ask_thanksgiv',
  'ask_thanksgiv_go',
  'thanksgiv_go_hold',
  'go_hold_promis',
  'hold_promis_stay',
  'promis_stay_hotel',
  'stay_hotel_christma',
  'hotel_christma_answer',
  'christma_answer_truth',
  'answer_truth_would',
  'truth_would_stay',
  'would_stay_hotel',
  'stay_hotel_sit',
  'hotel_sit_balconi',
  'sit_balconi_futur',
  'balconi_futur_in-law',
  'futur_in-law_condo',
  'in-law_condo_look',
  'condo_look_carribean',
  'look_carribean_wait',
  'carribean_wait_sunris',
  'wait_sunris_enjoy',
  'sunris_enjoy_peac',
  'enjoy_peac_quiet',
  'peac_quiet_made',
  'quiet_made_mistak',
  'made_mistak_go',
  'mistak_go_onlin',
  'go_onlin_yesterday',
  'onlin_yesterday_saw',
  'yesterday_saw_bunch',
  'saw_bunch_post',
  'bunch_post_mom',
  'post_mom_sister',
  'mom_sister_jerk',
  'sister_jerk_lie',
  'jerk_lie_plan',
  'lie_plan_may',
  'plan_may_littl',
  'may_littl_tipsi',
  'littl_tipsi_last',
  'tipsi_last_night',
  'last_night_decid',
  'night_decid_respond',
  'decid_respond_said',
  'respond_said_ridicul',
  'said_ridicul_tri',
  'ridicul_tri_tell',
  'tri_tell_share',
  'tell_share_room',
  'share_room_boyfriend',
  'room_boyfriend_keep',
  'boyfriend_keep_promis',
  'keep_promis_stay',
  'promis_stay_hotel',
  'stay_hotel_plan',
  'hotel_plan_put',
  'plan_put_everyth',
  'put_everyth_facebook',
  'everyth_facebook_would',
  'facebook_would_avoid',
  'would_avoid_visit',
  'avoid_visit_forese',
  'visit_forese_futur',
  'forese_futur_took',
  'futur_took_post',
  'took_post_peopl',
  'post_peopl_start',
  'peopl_start_crap',
  'start_crap_tri',
  'crap_tri_control',
  'tri_control_peopl',
  'control_peopl_agre',
  'peopl_agre_text',
  'agre_text_call',
  'text_call_say',
  'call_say_asshol',
  'say_asshol_make',
  'asshol_make_look',
  'make_look_bad',
  'look_bad_ask',
  'bad_ask_tri',
  'ask_tri_make',
  'tri_make_look',
  'make_look_good',
  'look_good_post',
  'good_post_stop',
  'post_stop_text',
  'stop_text_voic',
  'text_voic_mail',
  'voic_mail_morn',
  'mail_morn_im',
  'morn_im_kind',
  'im_kind_like',
  'kind_like_idea',
  'like_idea_skip',
  'idea_skip_drama',
  'skip_drama_miss',
  'drama_miss_dad',
  'miss_dad_blameless',
  'dad_blameless_aita',
  'blameless_aita_edit',
  'aita_edit_im',
  'edit_im_troubl',
  'im_troubl_wrap',
  'troubl_wrap_head',
  'wrap_head_around',
  'head_around_coupl',
  'around_coupl_thing',
  'coupl_thing_keep',
  'thing_keep_repeat',
  'keep_repeat_stay',
  'repeat_stay_hotel',
  'stay_hotel_break',
  'hotel_break_rule',
  'break_rule_adult',
  'rule_adult_choic',
  'adult_choic_mani',
  'choic_mani_guy',
  'mani_guy_fli',
  'guy_fli_across',
  'fli_across_countri',
  'across_countri_drive',
  'countri_drive_hour',
  'drive_hour_stay',
  'hour_stay_one',
  'stay_one_night'],
 ['fianc',
  'get',
  'marri',
  'decemb',
  'mom',
  'intrus',
  'type',
  'nice',
  'overal',
  'wesomewhat',
  'get',
  'along',
  'hate',
  'admit',
  'wed',
  'plan',
  'absolut',
  'nightmar',
  'mom',
  'agre',
  'thing',
  'fianc',
  'said',
  'sinc',
  'son',
  'respect',
  'appreci',
  'vision',
  'wed',
  'insist',
  'come',
  'along',
  'wed',
  'dress',
  'shop',
  'took',
  'mom',
  'friend',
  'lucki',
  'found',
  'look',
  'pick',
  'dress',
  'like',
  'much',
  'said',
  'alway',
  'pictur',
  'son',
  'bride',
  'mom',
  'friend',
  'thought',
  'line',
  'creepi',
  'thought',
  'dress',
  'somewhat',
  'creepi',
  'toooootal',
  'type',
  'apolog',
  'thank',
  'vision',
  'told',
  'id',
  'alreadi',
  'decid',
  'dress',
  'envis',
  'wear',
  'wed',
  'got',
  'pissi',
  'appar',
  'mustv',
  'told',
  'fianc',
  'came',
  'home',
  'even',
  'rant',
  'made',
  'mom',
  'upset',
  'turn',
  'help',
  'choos',
  'wed',
  'dress',
  'exclud',
  'process',
  'ask',
  'process',
  'duh',
  'wed',
  'dressmi',
  'wed',
  'dress',
  'realli',
  'get',
  'get',
  'say',
  'got',
  'upset',
  'said',
  'attitud',
  'mine',
  'work',
  'mom',
  'said',
  'consid',
  'dress',
  'mom',
  'want',
  'buy',
  'especi',
  'know',
  'dress',
  'much',
  'differ',
  'anyway',
  'like',
  'said',
  'told',
  'ye',
  'differentlik',
  'much',
  'differ',
  'anyway',
  'argu',
  'drop',
  'yesterday',
  'came',
  'home',
  'found',
  'return',
  'wed',
  'dress',
  'replac',
  'one',
  'mom',
  'want',
  'call',
  'straightforward',
  'lost',
  'start',
  'scream',
  'ask',
  'calmn',
  'realli',
  'give',
  'dress',
  'chanc',
  'refus',
  'even',
  'listen',
  'scream',
  'without',
  'give',
  'chanc',
  'speak',
  'got',
  'home',
  'argument',
  'went',
  'stay',
  'one',
  'friend',
  'kept',
  'call',
  'call',
  'text',
  'say',
  'overreact',
  'wed',
  'cool',
  'scream',
  'insist',
  'give',
  'dress',
  'chanc',
  'went',
  'mom',
  'vision',
  'good',
  'intent',
  'want',
  'best',
  'futur',
  'daughter',
  'inlaw',
  'mom',
  'livid',
  'want',
  'go',
  'scream',
  'mom',
  'dad',
  'said',
  'worth',
  'ruin',
  'relationship',
  'inlaw',
  'suggest',
  'wisen',
  'go',
  'flow',
  'much',
  'abl',
  'pick',
  'wed',
  'dress',
  'without',
  'guilt',
  'keep',
  'peac',
  'aita',
  'reaction',
  'etd',
  '&',
  'im',
  'edit',
  'answer',
  'frequent',
  'question',
  'get',
  'dress',
  'pick',
  'crazi',
  'type',
  'issu',
  'start',
  'wed',
  'plan',
  'thingslik',
  'way',
  'mani',
  'thing',
  'agre',
  'vision',
  'forquit',
  'pay',
  'dress',
  'obvious',
  'fianc',
  'dad',
  'deceas',
  'also',
  'mom',
  'suffer',
  'multipl',
  'health',
  'condit',
  'daughter',
  'one',
  'son',
  'still',
  'presist',
  'fianc_get',
  'get_marri',
  'marri_decemb',
  'decemb_mom',
  'mom_intrus',
  'intrus_type',
  'type_nice',
  'nice_overal',
  'overal_wesomewhat',
  'wesomewhat_get',
  'get_along',
  'along_hate',
  'hate_admit',
  'admit_wed',
  'wed_plan',
  'plan_absolut',
  'absolut_nightmar',
  'nightmar_mom',
  'mom_agre',
  'agre_thing',
  'thing_fianc',
  'fianc_said',
  'said_sinc',
  'sinc_son',
  'son_respect',
  'respect_appreci',
  'appreci_vision',
  'vision_wed',
  'wed_insist',
  'insist_come',
  'come_along',
  'along_wed',
  'wed_dress',
  'dress_shop',
  'shop_took',
  'took_mom',
  'mom_friend',
  'friend_lucki',
  'lucki_found',
  'found_look',
  'look_pick',
  'pick_dress',
  'dress_like',
  'like_much',
  'much_said',
  'said_alway',
  'alway_pictur',
  'pictur_son',
  'son_bride',
  'bride_mom',
  'mom_friend',
  'friend_thought',
  'thought_line',
  'line_creepi',
  'creepi_thought',
  'thought_dress',
  'dress_somewhat',
  'somewhat_creepi',
  'creepi_toooootal',
  'toooootal_type',
  'type_apolog',
  'apolog_thank',
  'thank_vision',
  'vision_told',
  'told_id',
  'id_alreadi',
  'alreadi_decid',
  'decid_dress',
  'dress_envis',
  'envis_wear',
  'wear_wed',
  'wed_got',
  'got_pissi',
  'pissi_appar',
  'appar_mustv',
  'mustv_told',
  'told_fianc',
  'fianc_came',
  'came_home',
  'home_even',
  'even_rant',
  'rant_made',
  'made_mom',
  'mom_upset',
  'upset_turn',
  'turn_help',
  'help_choos',
  'choos_wed',
  'wed_dress',
  'dress_exclud',
  'exclud_process',
  'process_ask',
  'ask_process',
  'process_duh',
  'duh_wed',
  'wed_dressmi',
  'dressmi_wed',
  'wed_dress',
  'dress_realli',
  'realli_get',
  'get_get',
  'get_say',
  'say_got',
  'got_upset',
  'upset_said',
  'said_attitud',
  'attitud_mine',
  'mine_work',
  'work_mom',
  'mom_said',
  'said_consid',
  'consid_dress',
  'dress_mom',
  'mom_want',
  'want_buy',
  'buy_especi',
  'especi_know',
  'know_dress',
  'dress_much',
  'much_differ',
  'differ_anyway',
  'anyway_like',
  'like_said',
  'said_told',
  'told_ye',
  'ye_differentlik',
  'differentlik_much',
  'much_differ',
  'differ_anyway',
  'anyway_argu',
  'argu_drop',
  'drop_yesterday',
  'yesterday_came',
  'came_home',
  'home_found',
  'found_return',
  'return_wed',
  'wed_dress',
  'dress_replac',
  'replac_one',
  'one_mom',
  'mom_want',
  'want_call',
  'call_straightforward',
  'straightforward_lost',
  'lost_start',
  'start_scream',
  'scream_ask',
  'ask_calmn',
  'calmn_realli',
  'realli_give',
  'give_dress',
  'dress_chanc',
  'chanc_refus',
  'refus_even',
  'even_listen',
  'listen_scream',
  'scream_without',
  'without_give',
  'give_chanc',
  'chanc_speak',
  'speak_got',
  'got_home',
  'home_argument',
  'argument_went',
  'went_stay',
  'stay_one',
  'one_friend',
  'friend_kept',
  'kept_call',
  'call_call',
  'call_text',
  'text_say',
  'say_overreact',
  'overreact_wed',
  'wed_cool',
  'cool_scream',
  'scream_insist',
  'insist_give',
  'give_dress',
  'dress_chanc',
  'chanc_went',
  'went_mom',
  'mom_vision',
  'vision_good',
  'good_intent',
  'intent_want',
  'want_best',
  'best_futur',
  'futur_daughter',
  'daughter_inlaw',
  'inlaw_mom',
  'mom_livid',
  'livid_want',
  'want_go',
  'go_scream',
  'scream_mom',
  'mom_dad',
  'dad_said',
  'said_worth',
  'worth_ruin',
  'ruin_relationship',
  'relationship_inlaw',
  'inlaw_suggest',
  'suggest_wisen',
  'wisen_go',
  'go_flow',
  'flow_much',
  'much_abl',
  'abl_pick',
  'pick_wed',
  'wed_dress',
  'dress_without',
  'without_guilt',
  'guilt_keep',
  'keep_peac',
  'peac_aita',
  'aita_reaction',
  'reaction_etd',
  'etd_&',
  '&_im',
  'im_edit',
  'edit_answer',
  'answer_frequent',
  'frequent_question',
  'question_get',
  'get_dress',
  'dress_pick',
  'pick_crazi',
  'crazi_type',
  'type_issu',
  'issu_start',
  'start_wed',
  'wed_plan',
  'plan_thingslik',
  'thingslik_way',
  'way_mani',
  'mani_thing',
  'thing_agre',
  'agre_vision',
  'vision_forquit',
  'forquit_pay',
  'pay_dress',
  'dress_obvious',
  'obvious_fianc',
  'fianc_dad',
  'dad_deceas',
  'deceas_also',
  'also_mom',
  'mom_suffer',
  'suffer_multipl',
  'multipl_health',
  'health_condit',
  'condit_daughter',
  'daughter_one',
  'one_son',
  'son_still',
  'still_presist',
  'fianc_get_marri',
  'get_marri_decemb',
  'marri_decemb_mom',
  'decemb_mom_intrus',
  'mom_intrus_type',
  'intrus_type_nice',
  'type_nice_overal',
  'nice_overal_wesomewhat',
  'overal_wesomewhat_get',
  'wesomewhat_get_along',
  'get_along_hate',
  'along_hate_admit',
  'hate_admit_wed',
  'admit_wed_plan',
  'wed_plan_absolut',
  'plan_absolut_nightmar',
  'absolut_nightmar_mom',
  'nightmar_mom_agre',
  'mom_agre_thing',
  'agre_thing_fianc',
  'thing_fianc_said',
  'fianc_said_sinc',
  'said_sinc_son',
  'sinc_son_respect',
  'son_respect_appreci',
  'respect_appreci_vision',
  'appreci_vision_wed',
  'vision_wed_insist',
  'wed_insist_come',
  'insist_come_along',
  'come_along_wed',
  'along_wed_dress',
  'wed_dress_shop',
  'dress_shop_took',
  'shop_took_mom',
  'took_mom_friend',
  'mom_friend_lucki',
  'friend_lucki_found',
  'lucki_found_look',
  'found_look_pick',
  'look_pick_dress',
  'pick_dress_like',
  'dress_like_much',
  'like_much_said',
  'much_said_alway',
  'said_alway_pictur',
  'alway_pictur_son',
  'pictur_son_bride',
  'son_bride_mom',
  'bride_mom_friend',
  'mom_friend_thought',
  'friend_thought_line',
  'thought_line_creepi',
  'line_creepi_thought',
  'creepi_thought_dress',
  'thought_dress_somewhat',
  'dress_somewhat_creepi',
  'somewhat_creepi_toooootal',
  'creepi_toooootal_type',
  'toooootal_type_apolog',
  'type_apolog_thank',
  'apolog_thank_vision',
  'thank_vision_told',
  'vision_told_id',
  'told_id_alreadi',
  'id_alreadi_decid',
  'alreadi_decid_dress',
  'decid_dress_envis',
  'dress_envis_wear',
  'envis_wear_wed',
  'wear_wed_got',
  'wed_got_pissi',
  'got_pissi_appar',
  'pissi_appar_mustv',
  'appar_mustv_told',
  'mustv_told_fianc',
  'told_fianc_came',
  'fianc_came_home',
  'came_home_even',
  'home_even_rant',
  'even_rant_made',
  'rant_made_mom',
  'made_mom_upset',
  'mom_upset_turn',
  'upset_turn_help',
  'turn_help_choos',
  'help_choos_wed',
  'choos_wed_dress',
  'wed_dress_exclud',
  'dress_exclud_process',
  'exclud_process_ask',
  'process_ask_process',
  'ask_process_duh',
  'process_duh_wed',
  'duh_wed_dressmi',
  'wed_dressmi_wed',
  'dressmi_wed_dress',
  'wed_dress_realli',
  'dress_realli_get',
  'realli_get_get',
  'get_get_say',
  'get_say_got',
  'say_got_upset',
  'got_upset_said',
  'upset_said_attitud',
  'said_attitud_mine',
  'attitud_mine_work',
  'mine_work_mom',
  'work_mom_said',
  'mom_said_consid',
  'said_consid_dress',
  'consid_dress_mom',
  'dress_mom_want',
  'mom_want_buy',
  'want_buy_especi',
  'buy_especi_know',
  'especi_know_dress',
  'know_dress_much',
  'dress_much_differ',
  'much_differ_anyway',
  'differ_anyway_like',
  'anyway_like_said',
  'like_said_told',
  'said_told_ye',
  'told_ye_differentlik',
  'ye_differentlik_much',
  'differentlik_much_differ',
  'much_differ_anyway',
  'differ_anyway_argu',
  'anyway_argu_drop',
  'argu_drop_yesterday',
  'drop_yesterday_came',
  'yesterday_came_home',
  'came_home_found',
  'home_found_return',
  'found_return_wed',
  'return_wed_dress',
  'wed_dress_replac',
  'dress_replac_one',
  'replac_one_mom',
  'one_mom_want',
  'mom_want_call',
  'want_call_straightforward',
  'call_straightforward_lost',
  'straightforward_lost_start',
  'lost_start_scream',
  'start_scream_ask',
  'scream_ask_calmn',
  'ask_calmn_realli',
  'calmn_realli_give',
  'realli_give_dress',
  'give_dress_chanc',
  'dress_chanc_refus',
  'chanc_refus_even',
  'refus_even_listen',
  'even_listen_scream',
  'listen_scream_without',
  'scream_without_give',
  'without_give_chanc',
  'give_chanc_speak',
  'chanc_speak_got',
  'speak_got_home',
  'got_home_argument',
  'home_argument_went',
  'argument_went_stay',
  'went_stay_one',
  'stay_one_friend',
  'one_friend_kept',
  'friend_kept_call',
  'kept_call_call',
  'call_call_text',
  'call_text_say',
  'text_say_overreact',
  'say_overreact_wed',
  'overreact_wed_cool',
  'wed_cool_scream',
  'cool_scream_insist',
  'scream_insist_give',
  'insist_give_dress',
  'give_dress_chanc',
  'dress_chanc_went',
  'chanc_went_mom',
  'went_mom_vision',
  'mom_vision_good',
  'vision_good_intent',
  'good_intent_want',
  'intent_want_best',
  'want_best_futur',
  'best_futur_daughter',
  'futur_daughter_inlaw',
  'daughter_inlaw_mom',
  'inlaw_mom_livid',
  'mom_livid_want',
  'livid_want_go',
  'want_go_scream',
  'go_scream_mom',
  'scream_mom_dad',
  'mom_dad_said',
  'dad_said_worth',
  'said_worth_ruin',
  'worth_ruin_relationship',
  'ruin_relationship_inlaw',
  'relationship_inlaw_suggest',
  'inlaw_suggest_wisen',
  'suggest_wisen_go',
  'wisen_go_flow',
  'go_flow_much',
  'flow_much_abl',
  'much_abl_pick',
  'abl_pick_wed',
  'pick_wed_dress',
  'wed_dress_without',
  'dress_without_guilt',
  'without_guilt_keep',
  'guilt_keep_peac',
  'keep_peac_aita',
  'peac_aita_reaction',
  'aita_reaction_etd',
  'reaction_etd_&',
  'etd_&_im',
  '&_im_edit',
  'im_edit_answer',
  'edit_answer_frequent',
  'answer_frequent_question',
  'frequent_question_get',
  'question_get_dress',
  'get_dress_pick',
  'dress_pick_crazi',
  'pick_crazi_type',
  'crazi_type_issu',
  'type_issu_start',
  'issu_start_wed',
  'start_wed_plan',
  'wed_plan_thingslik',
  'plan_thingslik_way',
  'thingslik_way_mani',
  'way_mani_thing',
  'mani_thing_agre',
  'thing_agre_vision',
  'agre_vision_forquit',
  'vision_forquit_pay',
  'forquit_pay_dress',
  'pay_dress_obvious',
  'dress_obvious_fianc',
  'obvious_fianc_dad',
  'fianc_dad_deceas',
  'dad_deceas_also',
  'deceas_also_mom',
  'also_mom_suffer',
  'mom_suffer_multipl',
  'suffer_multipl_health',
  'multipl_health_condit',
  'health_condit_daughter',
  'condit_daughter_one',
  'daughter_one_son',
  'one_son_still',
  'son_still_presist'],
 ['background',
  'brother',
  'dave',
  'marri',
  'sarah',
  'children',
  'yet',
  'son',
  'turn',
  'four',
  'three-month-old',
  'daughter',
  'husband',
  'husband',
  'live',
  'belgium',
  'time',
  'travel',
  'back',
  'visit',
  'famili',
  'month',
  'england',
  'home',
  'speak',
  'english',
  'french',
  'children',
  'husband',
  'belgian',
  'right',
  'son',
  'sweet',
  'phase',
  'hell',
  'sometim',
  'mix',
  'two',
  'languag',
  'say',
  'coupl',
  'word',
  'english',
  'french',
  'sentenc',
  'vice-versa',
  'never',
  'pose',
  'problem',
  'us',
  'even',
  'staff',
  'nurseri',
  'reassur',
  'us',
  'common',
  'tend',
  'grow',
  'start',
  'school',
  'sister-in-law',
  'decid',
  'problem',
  'visit',
  'parent',
  'notic',
  'son',
  'shell',
  'correct',
  'realli',
  'rude',
  'wherea',
  'husband',
  'gentli',
  'correct',
  'anyway',
  'visit',
  'moment',
  'decid',
  'instead',
  'correct',
  'go',
  'start',
  'ignor',
  'sort',
  'notic',
  'arriv',
  'thought',
  'odd',
  'assum',
  'mayb',
  'stress',
  'job',
  'quit',
  'intens',
  'realli',
  'becam',
  'issu',
  'yesterday',
  'husband',
  'talk',
  'dad',
  'outsid',
  'feed',
  'daughter',
  'room',
  'id',
  'left',
  'loui',
  'sarah',
  'dave',
  'came',
  'back',
  'downstair',
  'loui',
  'cri',
  'manag',
  'understand',
  'hed',
  'tri',
  'ask',
  'sarah',
  'drink',
  'special',
  'cup',
  'use',
  'hold',
  'obviou',
  'meant',
  'shed',
  'ignor',
  'ask',
  'explain',
  'go',
  'repli',
  'unless',
  'said',
  'sentenc',
  'correctli',
  'ignor',
  'son',
  'obviou',
  'speech',
  'issu',
  'context',
  'know',
  'want',
  'told',
  'understood',
  'exactli',
  'ask',
  'deliber',
  'refus',
  'ask',
  'correctli',
  'realli',
  'piss',
  'luckili',
  'husband',
  'came',
  'insid',
  'moment',
  'pull',
  'away',
  'could',
  'calm',
  'settl',
  'loui',
  'night',
  'dinner',
  'tabl',
  'sarah',
  'ask',
  'pass',
  'someth',
  'said',
  'bad',
  'english',
  'english',
  'mean',
  'ask',
  'slang',
  'think',
  'pass',
  '*',
  'us',
  '*',
  'pea',
  'bit',
  'epiphani',
  'decid',
  'total',
  'ignor',
  'ask',
  'thing',
  'brother',
  'ask',
  'ignor',
  'wife',
  'said',
  'im',
  'abl',
  'repli',
  'cant',
  'speak',
  'english',
  'correctli',
  'wrong',
  'ignor',
  'obviou',
  'issu',
  'grammar',
  'everyon',
  'pretti',
  'piss',
  'admit',
  'incred',
  'childish',
  'needlessli',
  'dickhead',
  'babi',
  'apologis',
  '*',
  '*',
  'edit',
  'wow',
  'realli',
  'blew',
  'thank',
  'comment',
  'support',
  'thank',
  'eshyta',
  'messag',
  'im',
  'go',
  'apologis',
  'quit',
  'frank',
  'think',
  'deserv',
  'convers',
  'brother',
  'leav',
  'tri',
  'explain',
  'one',
  'thing',
  'complet',
  'normal',
  'importantli',
  'keep',
  'correct',
  'ignor',
  'son',
  'ill',
  'sever',
  'limit',
  'contact',
  'although',
  'doubt',
  'ill',
  'ever',
  'leav',
  'alon',
  'room',
  'anyway',
  '*',
  '*',
  '*',
  '*',
  'answer',
  'common',
  'question',
  'said',
  'everyon',
  'mad',
  'meant',
  'brother',
  'wife',
  'parent',
  'although',
  'parent',
  'agre',
  'sarah',
  'either',
  'theyr',
  'tri',
  'keep',
  'peac',
  'husband',
  'entir',
  'side',
  'realis',
  'sarah',
  'done',
  'loui',
  'saw',
  'aftermath',
  'want',
  'cut',
  'short',
  'trip',
  '*',
  '*',
  '*',
  '*',
  'sarah',
  'rest',
  'famili',
  'speak',
  'english',
  'suppos',
  'goe',
  'way',
  'toward',
  'explain',
  'understand',
  'think',
  'monolingu',
  'reaction',
  'weve',
  'never',
  'experienc',
  'anyth',
  'similar',
  'belgium',
  '*',
  '*',
  '*',
  '*',
  'one',
  'final',
  'thing',
  '-',
  'lot',
  'question',
  'uk',
  'often',
  'husband',
  'london',
  'job',
  'month',
  'everi',
  'six',
  'week',
  'tag',
  'along',
  'freelanc',
  'client',
  'uk',
  'base',
  'good',
  'opportun',
  'fit',
  'meet',
  'also',
  'give',
  'us',
  'chanc',
  'bring',
  'loui',
  'misha',
  'see',
  'parent',
  'loui',
  'start',
  'school',
  'cut',
  'visit',
  '*',
  '*',
  'background_brother',
  'brother_dave',
  'dave_marri',
  'marri_sarah',
  'sarah_children',
  'children_yet',
  'yet_son',
  'son_turn',
  'turn_four',
  'four_three-month-old',
  'three-month-old_daughter',
  'daughter_husband',
  'husband_husband',
  'husband_live',
  'live_belgium',
  'belgium_time',
  'time_travel',
  'travel_back',
  'back_visit',
  'visit_famili',
  'famili_month',
  'month_england',
  'england_home',
  'home_speak',
  'speak_english',
  'english_french',
  'french_children',
  'children_husband',
  'husband_belgian',
  'belgian_right',
  'right_son',
  'son_sweet',
  'sweet_phase',
  'phase_hell',
  'hell_sometim',
  'sometim_mix',
  'mix_two',
  'two_languag',
  'languag_say',
  'say_coupl',
  'coupl_word',
  'word_english',
  'english_french',
  'french_sentenc',
  'sentenc_vice-versa',
  'vice-versa_never',
  'never_pose',
  'pose_problem',
  'problem_us',
  'us_even',
  'even_staff',
  'staff_nurseri',
  'nurseri_reassur',
  'reassur_us',
  'us_common',
  'common_tend',
  'tend_grow',
  'grow_start',
  'start_school',
  'school_sister-in-law',
  'sister-in-law_decid',
  'decid_problem',
  'problem_visit',
  'visit_parent',
  'parent_notic',
  'notic_son',
  'son_shell',
  'shell_correct',
  'correct_realli',
  'realli_rude',
  'rude_wherea',
  'wherea_husband',
  'husband_gentli',
  'gentli_correct',
  'correct_anyway',
  'anyway_visit',
  'visit_moment',
  'moment_decid',
  'decid_instead',
  'instead_correct',
  'correct_go',
  'go_start',
  'start_ignor',
  'ignor_sort',
  'sort_notic',
  'notic_arriv',
  'arriv_thought',
  'thought_odd',
  'odd_assum',
  'assum_mayb',
  'mayb_stress',
  'stress_job',
  'job_quit',
  'quit_intens',
  'intens_realli',
  'realli_becam',
  'becam_issu',
  'issu_yesterday',
  'yesterday_husband',
  'husband_talk',
  'talk_dad',
  'dad_outsid',
  'outsid_feed',
  'feed_daughter',
  'daughter_room',
  'room_id',
  'id_left',
  'left_loui',
  'loui_sarah',
  'sarah_dave',
  'dave_came',
  'came_back',
  'back_downstair',
  'downstair_loui',
  'loui_cri',
  'cri_manag',
  'manag_understand',
  'understand_hed',
  'hed_tri',
  'tri_ask',
  'ask_sarah',
  'sarah_drink',
  'drink_special',
  'special_cup',
  'cup_use',
  'use_hold',
  'hold_obviou',
  'obviou_meant',
  'meant_shed',
  'shed_ignor',
  'ignor_ask',
  'ask_explain',
  'explain_go',
  'go_repli',
  'repli_unless',
  'unless_said',
  'said_sentenc',
  'sentenc_correctli',
  'correctli_ignor',
  'ignor_son',
  'son_obviou',
  'obviou_speech',
  'speech_issu',
  'issu_context',
  'context_know',
  'know_want',
  'want_told',
  'told_understood',
  'understood_exactli',
  'exactli_ask',
  'ask_deliber',
  'deliber_refus',
  'refus_ask',
  'ask_correctli',
  'correctli_realli',
  'realli_piss',
  'piss_luckili',
  'luckili_husband',
  'husband_came',
  'came_insid',
  'insid_moment',
  'moment_pull',
  'pull_away',
  'away_could',
  'could_calm',
  'calm_settl',
  'settl_loui',
  'loui_night',
  'night_dinner',
  'dinner_tabl',
  'tabl_sarah',
  'sarah_ask',
  'ask_pass',
  'pass_someth',
  'someth_said',
  'said_bad',
  'bad_english',
  'english_english',
  'english_mean',
  'mean_ask',
  'ask_slang',
  'slang_think',
  'think_pass',
  'pass_*',
  '*_us',
  'us_*',
  '*_pea',
  'pea_bit',
  'bit_epiphani',
  'epiphani_decid',
  'decid_total',
  'total_ignor',
  'ignor_ask',
  'ask_thing',
  'thing_brother',
  'brother_ask',
  'ask_ignor',
  'ignor_wife',
  'wife_said',
  'said_im',
  'im_abl',
  'abl_repli',
  'repli_cant',
  'cant_speak',
  'speak_english',
  'english_correctli',
  'correctli_wrong',
  'wrong_ignor',
  'ignor_obviou',
  'obviou_issu',
  'issu_grammar',
  'grammar_everyon',
  'everyon_pretti',
  'pretti_piss',
  'piss_admit',
  'admit_incred',
  'incred_childish',
  'childish_needlessli',
  'needlessli_dickhead',
  'dickhead_babi',
  'babi_apologis',
  'apologis_*',
  '*_*',
  '*_edit',
  'edit_wow',
  'wow_realli',
  'realli_blew',
  'blew_thank',
  'thank_comment',
  'comment_support',
  'support_thank',
  'thank_eshyta',
  'eshyta_messag',
  'messag_im',
  'im_go',
  'go_apologis',
  'apologis_quit',
  'quit_frank',
  'frank_think',
  'think_deserv',
  'deserv_convers',
  'convers_brother',
  'brother_leav',
  'leav_tri',
  'tri_explain',
  'explain_one',
  'one_thing',
  'thing_complet',
  'complet_normal',
  'normal_importantli',
  'importantli_keep',
  'keep_correct',
  'correct_ignor',
  'ignor_son',
  'son_ill',
  'ill_sever',
  'sever_limit',
  'limit_contact',
  'contact_although',
  'although_doubt',
  'doubt_ill',
  'ill_ever',
  'ever_leav',
  'leav_alon',
  'alon_room',
  'room_anyway',
  'anyway_*',
  '*_*',
  '*_*',
  '*_*',
  '*_answer',
  'answer_common',
  'common_question',
  'question_said',
  'said_everyon',
  'everyon_mad',
  'mad_meant',
  'meant_brother',
  'brother_wife',
  'wife_parent',
  'parent_although',
  'although_parent',
  'parent_agre',
  'agre_sarah',
  'sarah_either',
  'either_theyr',
  'theyr_tri',
  'tri_keep',
  'keep_peac',
  'peac_husband',
  'husband_entir',
  'entir_side',
  'side_realis',
  'realis_sarah',
  'sarah_done',
  'done_loui',
  'loui_saw',
  'saw_aftermath',
  'aftermath_want',
  'want_cut',
  'cut_short',
  'short_trip',
  'trip_*',
  '*_*',
  '*_*',
  '*_*',
  '*_sarah',
  'sarah_rest',
  'rest_famili',
  'famili_speak',
  'speak_english',
  'english_suppos',
  'suppos_goe',
  'goe_way',
  'way_toward',
  'toward_explain',
  'explain_understand',
  'understand_think',
  'think_monolingu',
  'monolingu_reaction',
  'reaction_weve',
  'weve_never',
  'never_experienc',
  'experienc_anyth',
  'anyth_similar',
  'similar_belgium',
  'belgium_*',
  '*_*',
  '*_*',
  '*_*',
  '*_one',
  'one_final',
  'final_thing',
  'thing_-',
  '-_lot',
  'lot_question',
  'question_uk',
  'uk_often',
  'often_husband',
  'husband_london',
  'london_job',
  'job_month',
  'month_everi',
  'everi_six',
  'six_week',
  'week_tag',
  'tag_along',
  'along_freelanc',
  'freelanc_client',
  'client_uk',
  'uk_base',
  'base_good',
  'good_opportun',
  'opportun_fit',
  'fit_meet',
  'meet_also',
  'also_give',
  'give_us',
  'us_chanc',
  'chanc_bring',
  'bring_loui',
  'loui_misha',
  'misha_see',
  'see_parent',
  'parent_loui',
  'loui_start',
  'start_school',
  'school_cut',
  'cut_visit',
  'visit_*',
  '*_*',
  'background_brother_dave',
  'brother_dave_marri',
  'dave_marri_sarah',
  'marri_sarah_children',
  'sarah_children_yet',
  'children_yet_son',
  'yet_son_turn',
  'son_turn_four',
  'turn_four_three-month-old',
  'four_three-month-old_daughter',
  'three-month-old_daughter_husband',
  'daughter_husband_husband',
  'husband_husband_live',
  'husband_live_belgium',
  'live_belgium_time',
  'belgium_time_travel',
  'time_travel_back',
  'travel_back_visit',
  'back_visit_famili',
  'visit_famili_month',
  'famili_month_england',
  'month_england_home',
  'england_home_speak',
  'home_speak_english',
  'speak_english_french',
  'english_french_children',
  'french_children_husband',
  'children_husband_belgian',
  'husband_belgian_right',
  'belgian_right_son',
  'right_son_sweet',
  'son_sweet_phase',
  'sweet_phase_hell',
  'phase_hell_sometim',
  'hell_sometim_mix',
  'sometim_mix_two',
  'mix_two_languag',
  'two_languag_say',
  'languag_say_coupl',
  'say_coupl_word',
  'coupl_word_english',
  'word_english_french',
  'english_french_sentenc',
  'french_sentenc_vice-versa',
  'sentenc_vice-versa_never',
  'vice-versa_never_pose',
  'never_pose_problem',
  'pose_problem_us',
  'problem_us_even',
  'us_even_staff',
  'even_staff_nurseri',
  'staff_nurseri_reassur',
  'nurseri_reassur_us',
  'reassur_us_common',
  'us_common_tend',
  'common_tend_grow',
  'tend_grow_start',
  'grow_start_school',
  'start_school_sister-in-law',
  'school_sister-in-law_decid',
  'sister-in-law_decid_problem',
  'decid_problem_visit',
  'problem_visit_parent',
  'visit_parent_notic',
  'parent_notic_son',
  'notic_son_shell',
  'son_shell_correct',
  'shell_correct_realli',
  'correct_realli_rude',
  'realli_rude_wherea',
  'rude_wherea_husband',
  'wherea_husband_gentli',
  'husband_gentli_correct',
  'gentli_correct_anyway',
  'correct_anyway_visit',
  'anyway_visit_moment',
  'visit_moment_decid',
  'moment_decid_instead',
  'decid_instead_correct',
  'instead_correct_go',
  'correct_go_start',
  'go_start_ignor',
  'start_ignor_sort',
  'ignor_sort_notic',
  'sort_notic_arriv',
  'notic_arriv_thought',
  'arriv_thought_odd',
  'thought_odd_assum',
  'odd_assum_mayb',
  'assum_mayb_stress',
  'mayb_stress_job',
  'stress_job_quit',
  'job_quit_intens',
  'quit_intens_realli',
  'intens_realli_becam',
  'realli_becam_issu',
  'becam_issu_yesterday',
  'issu_yesterday_husband',
  'yesterday_husband_talk',
  'husband_talk_dad',
  'talk_dad_outsid',
  'dad_outsid_feed',
  'outsid_feed_daughter',
  'feed_daughter_room',
  'daughter_room_id',
  'room_id_left',
  'id_left_loui',
  'left_loui_sarah',
  'loui_sarah_dave',
  'sarah_dave_came',
  'dave_came_back',
  'came_back_downstair',
  'back_downstair_loui',
  'downstair_loui_cri',
  'loui_cri_manag',
  'cri_manag_understand',
  'manag_understand_hed',
  'understand_hed_tri',
  'hed_tri_ask',
  'tri_ask_sarah',
  'ask_sarah_drink',
  'sarah_drink_special',
  'drink_special_cup',
  'special_cup_use',
  'cup_use_hold',
  'use_hold_obviou',
  'hold_obviou_meant',
  'obviou_meant_shed',
  'meant_shed_ignor',
  'shed_ignor_ask',
  'ignor_ask_explain',
  'ask_explain_go',
  'explain_go_repli',
  'go_repli_unless',
  'repli_unless_said',
  'unless_said_sentenc',
  'said_sentenc_correctli',
  'sentenc_correctli_ignor',
  'correctli_ignor_son',
  'ignor_son_obviou',
  'son_obviou_speech',
  'obviou_speech_issu',
  'speech_issu_context',
  'issu_context_know',
  'context_know_want',
  'know_want_told',
  'want_told_understood',
  'told_understood_exactli',
  'understood_exactli_ask',
  'exactli_ask_deliber',
  'ask_deliber_refus',
  'deliber_refus_ask',
  'refus_ask_correctli',
  'ask_correctli_realli',
  'correctli_realli_piss',
  'realli_piss_luckili',
  'piss_luckili_husband',
  'luckili_husband_came',
  'husband_came_insid',
  'came_insid_moment',
  'insid_moment_pull',
  'moment_pull_away',
  'pull_away_could',
  'away_could_calm',
  'could_calm_settl',
  'calm_settl_loui',
  'settl_loui_night',
  'loui_night_dinner',
  'night_dinner_tabl',
  'dinner_tabl_sarah',
  'tabl_sarah_ask',
  'sarah_ask_pass',
  'ask_pass_someth',
  'pass_someth_said',
  'someth_said_bad',
  'said_bad_english',
  'bad_english_english',
  'english_english_mean',
  'english_mean_ask',
  'mean_ask_slang',
  'ask_slang_think',
  'slang_think_pass',
  'think_pass_*',
  'pass_*_us',
  '*_us_*',
  'us_*_pea',
  '*_pea_bit',
  'pea_bit_epiphani',
  'bit_epiphani_decid',
  'epiphani_decid_total',
  'decid_total_ignor',
  'total_ignor_ask',
  'ignor_ask_thing',
  'ask_thing_brother',
  'thing_brother_ask',
  'brother_ask_ignor',
  'ask_ignor_wife',
  'ignor_wife_said',
  'wife_said_im',
  'said_im_abl',
  'im_abl_repli',
  'abl_repli_cant',
  'repli_cant_speak',
  'cant_speak_english',
  'speak_english_correctli',
  'english_correctli_wrong',
  'correctli_wrong_ignor',
  'wrong_ignor_obviou',
  'ignor_obviou_issu',
  'obviou_issu_grammar',
  'issu_grammar_everyon',
  'grammar_everyon_pretti',
  'everyon_pretti_piss',
  'pretti_piss_admit',
  'piss_admit_incred',
  'admit_incred_childish',
  'incred_childish_needlessli',
  'childish_needlessli_dickhead',
  'needlessli_dickhead_babi',
  'dickhead_babi_apologis',
  'babi_apologis_*',
  'apologis_*_*',
  '*_*_edit',
  '*_edit_wow',
  'edit_wow_realli',
  'wow_realli_blew',
  'realli_blew_thank',
  'blew_thank_comment',
  'thank_comment_support',
  'comment_support_thank',
  'support_thank_eshyta',
  'thank_eshyta_messag',
  'eshyta_messag_im',
  'messag_im_go',
  'im_go_apologis',
  'go_apologis_quit',
  'apologis_quit_frank',
  'quit_frank_think',
  'frank_think_deserv',
  'think_deserv_convers',
  'deserv_convers_brother',
  'convers_brother_leav',
  'brother_leav_tri',
  'leav_tri_explain',
  'tri_explain_one',
  'explain_one_thing',
  'one_thing_complet',
  'thing_complet_normal',
  'complet_normal_importantli',
  'normal_importantli_keep',
  'importantli_keep_correct',
  'keep_correct_ignor',
  'correct_ignor_son',
  'ignor_son_ill',
  'son_ill_sever',
  'ill_sever_limit',
  'sever_limit_contact',
  ...],
 ['son',
  'bryce',
  'date',
  'neighbor',
  'lana',
  'year',
  'broke',
  'mid',
  'jan',
  'reason',
  'know',
  'sugarcoat',
  'never',
  'like',
  'lana',
  'alway',
  'seem',
  'littl',
  'unhing',
  'control',
  'aggress',
  'alway',
  'demand',
  'bryce',
  'attent',
  'quit',
  'time',
  'show',
  'hous',
  'nowher',
  'whether',
  'pm',
  'bryce',
  'answer',
  'phone',
  'scream',
  'call',
  'cheater',
  'like',
  'thought',
  'son',
  'get',
  'abus',
  'gf',
  'made',
  'us',
  'worri',
  'much',
  'wife',
  'tri',
  'talk',
  'relationship',
  'said',
  'normal',
  'healthi',
  'want',
  'forc',
  'break',
  'fear',
  'lana',
  'would',
  'lash',
  'tri',
  'sneaki',
  'way',
  'know',
  'work',
  'end',
  'break',
  'said',
  'broke',
  'lana',
  'contact',
  'weird',
  'expect',
  'go',
  'nut',
  'told',
  'fate',
  'gave',
  'shit',
  'better',
  'teas',
  'problem',
  'bought',
  'son',
  'car',
  'christma',
  'noth',
  'fanci',
  'enough',
  'get',
  'school',
  'job',
  'eventu',
  'colleg',
  'park',
  'driveway',
  'outsid',
  'home',
  'ever',
  'sinc',
  'month',
  'began',
  'found',
  'scratch',
  'car',
  'know',
  'lana',
  'sinc',
  'minim',
  'son',
  'decid',
  'anyth',
  'even',
  'could',
  'prove',
  'weve',
  'cctv',
  'still',
  'someth',
  'smell',
  'bad',
  'decid',
  'switch',
  'one',
  'camera',
  'face',
  'car',
  'directli',
  'case',
  'well',
  'two',
  'week',
  'ago',
  'got',
  'found',
  'son',
  'car',
  'cover',
  'lot',
  'shit',
  'paint',
  'glue',
  'feather',
  'confetti',
  'door',
  'handl',
  'wreck',
  'flat',
  'tire',
  'paint',
  'window',
  'get',
  'pictur',
  'bryce',
  'wife',
  'distraught',
  'call',
  'polic',
  'handl',
  'cctv',
  'show',
  'lana',
  'brother',
  'destroy',
  'son',
  'car',
  'press',
  'charg',
  'needl',
  'say',
  'lana',
  'brother',
  'went',
  'straight',
  'jail',
  'sinc',
  'still',
  'minor',
  'parent',
  'want',
  'make',
  'deal',
  'refus',
  'think',
  'get',
  'way',
  'polic',
  'laugh',
  'ass',
  'tri',
  'play',
  'cool',
  'thought',
  'funni',
  'old',
  'enough',
  'face',
  'consequ',
  'wife',
  'want',
  'stand',
  'ground',
  'said',
  'theyll',
  'buy',
  'son',
  'better',
  'car',
  'put',
  'lana',
  'therapi',
  'enough',
  'aita',
  'son_bryce',
  'bryce_date',
  'date_neighbor',
  'neighbor_lana',
  'lana_year',
  'year_broke',
  'broke_mid',
  'mid_jan',
  'jan_reason',
  'reason_know',
  'know_sugarcoat',
  'sugarcoat_never',
  'never_like',
  'like_lana',
  'lana_alway',
  'alway_seem',
  'seem_littl',
  'littl_unhing',
  'unhing_control',
  'control_aggress',
  'aggress_alway',
  'alway_demand',
  'demand_bryce',
  'bryce_attent',
  'attent_quit',
  'quit_time',
  'time_show',
  'show_hous',
  'hous_nowher',
  'nowher_whether',
  'whether_pm',
  'pm_bryce',
  'bryce_answer',
  'answer_phone',
  'phone_scream',
  'scream_call',
  'call_cheater',
  'cheater_like',
  'like_thought',
  'thought_son',
  'son_get',
  'get_abus',
  'abus_gf',
  'gf_made',
  'made_us',
  'us_worri',
  'worri_much',
  'much_wife',
  'wife_tri',
  'tri_talk',
  'talk_relationship',
  'relationship_said',
  'said_normal',
  'normal_healthi',
  'healthi_want',
  'want_forc',
  'forc_break',
  'break_fear',
  'fear_lana',
  'lana_would',
  'would_lash',
  'lash_tri',
  'tri_sneaki',
  'sneaki_way',
  'way_know',
  'know_work',
  'work_end',
  'end_break',
  'break_said',
  'said_broke',
  'broke_lana',
  'lana_contact',
  'contact_weird',
  'weird_expect',
  'expect_go',
  'go_nut',
  'nut_told',
  'told_fate',
  'fate_gave',
  'gave_shit',
  'shit_better',
  'better_teas',
  'teas_problem',
  'problem_bought',
  'bought_son',
  'son_car',
  'car_christma',
  'christma_noth',
  'noth_fanci',
  'fanci_enough',
  'enough_get',
  'get_school',
  'school_job',
  'job_eventu',
  'eventu_colleg',
  'colleg_park',
  'park_driveway',
  'driveway_outsid',
  'outsid_home',
  'home_ever',
  'ever_sinc',
  'sinc_month',
  'month_began',
  'began_found',
  'found_scratch',
  'scratch_car',
  'car_know',
  'know_lana',
  'lana_sinc',
  'sinc_minim',
  'minim_son',
  'son_decid',
  'decid_anyth',
  'anyth_even',
  'even_could',
  'could_prove',
  'prove_weve',
  'weve_cctv',
  'cctv_still',
  'still_someth',
  'someth_smell',
  'smell_bad',
  'bad_decid',
  'decid_switch',
  'switch_one',
  'one_camera',
  'camera_face',
  'face_car',
  'car_directli',
  'directli_case',
  'case_well',
  'well_two',
  'two_week',
  'week_ago',
  'ago_got',
  'got_found',
  'found_son',
  'son_car',
  'car_cover',
  'cover_lot',
  'lot_shit',
  'shit_paint',
  'paint_glue',
  'glue_feather',
  'feather_confetti',
  'confetti_door',
  'door_handl',
  'handl_wreck',
  'wreck_flat',
  'flat_tire',
  'tire_paint',
  'paint_window',
  'window_get',
  'get_pictur',
  'pictur_bryce',
  'bryce_wife',
  'wife_distraught',
  'distraught_call',
  'call_polic',
  'polic_handl',
  'handl_cctv',
  'cctv_show',
  'show_lana',
  'lana_brother',
  'brother_destroy',
  'destroy_son',
  'son_car',
  'car_press',
  'press_charg',
  'charg_needl',
  'needl_say',
  'say_lana',
  'lana_brother',
  'brother_went',
  'went_straight',
  'straight_jail',
  'jail_sinc',
  'sinc_still',
  'still_minor',
  'minor_parent',
  'parent_want',
  'want_make',
  'make_deal',
  'deal_refus',
  'refus_think',
  'think_get',
  'get_way',
  'way_polic',
  'polic_laugh',
  'laugh_ass',
  'ass_tri',
  'tri_play',
  'play_cool',
  'cool_thought',
  'thought_funni',
  'funni_old',
  'old_enough',
  'enough_face',
  'face_consequ',
  'consequ_wife',
  'wife_want',
  'want_stand',
  'stand_ground',
  'ground_said',
  'said_theyll',
  'theyll_buy',
  'buy_son',
  'son_better',
  'better_car',
  'car_put',
  'put_lana',
  'lana_therapi',
  'therapi_enough',
  'enough_aita',
  'son_bryce_date',
  'bryce_date_neighbor',
  'date_neighbor_lana',
  'neighbor_lana_year',
  'lana_year_broke',
  'year_broke_mid',
  'broke_mid_jan',
  'mid_jan_reason',
  'jan_reason_know',
  'reason_know_sugarcoat',
  'know_sugarcoat_never',
  'sugarcoat_never_like',
  'never_like_lana',
  'like_lana_alway',
  'lana_alway_seem',
  'alway_seem_littl',
  'seem_littl_unhing',
  'littl_unhing_control',
  'unhing_control_aggress',
  'control_aggress_alway',
  'aggress_alway_demand',
  'alway_demand_bryce',
  'demand_bryce_attent',
  'bryce_attent_quit',
  'attent_quit_time',
  'quit_time_show',
  'time_show_hous',
  'show_hous_nowher',
  'hous_nowher_whether',
  'nowher_whether_pm',
  'whether_pm_bryce',
  'pm_bryce_answer',
  'bryce_answer_phone',
  'answer_phone_scream',
  'phone_scream_call',
  'scream_call_cheater',
  'call_cheater_like',
  'cheater_like_thought',
  'like_thought_son',
  'thought_son_get',
  'son_get_abus',
  'get_abus_gf',
  'abus_gf_made',
  'gf_made_us',
  'made_us_worri',
  'us_worri_much',
  'worri_much_wife',
  'much_wife_tri',
  'wife_tri_talk',
  'tri_talk_relationship',
  'talk_relationship_said',
  'relationship_said_normal',
  'said_normal_healthi',
  'normal_healthi_want',
  'healthi_want_forc',
  'want_forc_break',
  'forc_break_fear',
  'break_fear_lana',
  'fear_lana_would',
  'lana_would_lash',
  'would_lash_tri',
  'lash_tri_sneaki',
  'tri_sneaki_way',
  'sneaki_way_know',
  'way_know_work',
  'know_work_end',
  'work_end_break',
  'end_break_said',
  'break_said_broke',
  'said_broke_lana',
  'broke_lana_contact',
  'lana_contact_weird',
  'contact_weird_expect',
  'weird_expect_go',
  'expect_go_nut',
  'go_nut_told',
  'nut_told_fate',
  'told_fate_gave',
  'fate_gave_shit',
  'gave_shit_better',
  'shit_better_teas',
  'better_teas_problem',
  'teas_problem_bought',
  'problem_bought_son',
  'bought_son_car',
  'son_car_christma',
  'car_christma_noth',
  'christma_noth_fanci',
  'noth_fanci_enough',
  'fanci_enough_get',
  'enough_get_school',
  'get_school_job',
  'school_job_eventu',
  'job_eventu_colleg',
  'eventu_colleg_park',
  'colleg_park_driveway',
  'park_driveway_outsid',
  'driveway_outsid_home',
  'outsid_home_ever',
  'home_ever_sinc',
  'ever_sinc_month',
  'sinc_month_began',
  'month_began_found',
  'began_found_scratch',
  'found_scratch_car',
  'scratch_car_know',
  'car_know_lana',
  'know_lana_sinc',
  'lana_sinc_minim',
  'sinc_minim_son',
  'minim_son_decid',
  'son_decid_anyth',
  'decid_anyth_even',
  'anyth_even_could',
  'even_could_prove',
  'could_prove_weve',
  'prove_weve_cctv',
  'weve_cctv_still',
  'cctv_still_someth',
  'still_someth_smell',
  'someth_smell_bad',
  'smell_bad_decid',
  'bad_decid_switch',
  'decid_switch_one',
  'switch_one_camera',
  'one_camera_face',
  'camera_face_car',
  'face_car_directli',
  'car_directli_case',
  'directli_case_well',
  'case_well_two',
  'well_two_week',
  'two_week_ago',
  'week_ago_got',
  'ago_got_found',
  'got_found_son',
  'found_son_car',
  'son_car_cover',
  'car_cover_lot',
  'cover_lot_shit',
  'lot_shit_paint',
  'shit_paint_glue',
  'paint_glue_feather',
  'glue_feather_confetti',
  'feather_confetti_door',
  'confetti_door_handl',
  'door_handl_wreck',
  'handl_wreck_flat',
  'wreck_flat_tire',
  'flat_tire_paint',
  'tire_paint_window',
  'paint_window_get',
  'window_get_pictur',
  'get_pictur_bryce',
  'pictur_bryce_wife',
  'bryce_wife_distraught',
  'wife_distraught_call',
  'distraught_call_polic',
  'call_polic_handl',
  'polic_handl_cctv',
  'handl_cctv_show',
  'cctv_show_lana',
  'show_lana_brother',
  'lana_brother_destroy',
  'brother_destroy_son',
  'destroy_son_car',
  'son_car_press',
  'car_press_charg',
  'press_charg_needl',
  'charg_needl_say',
  'needl_say_lana',
  'say_lana_brother',
  'lana_brother_went',
  'brother_went_straight',
  'went_straight_jail',
  'straight_jail_sinc',
  'jail_sinc_still',
  'sinc_still_minor',
  'still_minor_parent',
  'minor_parent_want',
  'parent_want_make',
  'want_make_deal',
  'make_deal_refus',
  'deal_refus_think',
  'refus_think_get',
  'think_get_way',
  'get_way_polic',
  'way_polic_laugh',
  'polic_laugh_ass',
  'laugh_ass_tri',
  'ass_tri_play',
  'tri_play_cool',
  'play_cool_thought',
  'cool_thought_funni',
  'thought_funni_old',
  'funni_old_enough',
  'old_enough_face',
  'enough_face_consequ',
  'face_consequ_wife',
  'consequ_wife_want',
  'wife_want_stand',
  'want_stand_ground',
  'stand_ground_said',
  'ground_said_theyll',
  'said_theyll_buy',
  'theyll_buy_son',
  'buy_son_better',
  'son_better_car',
  'better_car_put',
  'car_put_lana',
  'put_lana_therapi',
  'lana_therapi_enough',
  'therapi_enough_aita'],
 ['husband',
  'togeth',
  'year',
  'kid',
  'previou',
  'relationship',
  'one',
  'oldest',
  'dedic',
  'man',
  'put',
  'god',
  'first',
  'love',
  'everyon',
  'husband',
  'alway',
  'complain',
  'daughter',
  'spend',
  'time',
  'stepsibl',
  'reason',
  'school',
  'health',
  'issu',
  'work',
  'best',
  'spend',
  'much',
  'time',
  'hand',
  'complain',
  'stepdad',
  'tell',
  'basic',
  'take',
  'role',
  'babysitt',
  'whenev',
  'stepsibl',
  'husband',
  'deni',
  'said',
  'daughter',
  'make',
  'excus',
  'spend',
  'time',
  'kid',
  'issu',
  'figur',
  'famili',
  'trip',
  'famili',
  'need',
  'get',
  'togeth',
  'spend',
  'time',
  'around',
  'husband',
  'like',
  'idea',
  'said',
  'kid',
  'uncomfort',
  'around',
  'daughter',
  'attitud',
  'suggest',
  'let',
  'stay',
  'home',
  'hous',
  'sinc',
  'alway',
  'want',
  'told',
  'best',
  'go',
  'kept',
  'compla',
  'til',
  'snap',
  'told',
  'stop',
  'book',
  'paid',
  'whole',
  'famili',
  'howev',
  'daughter',
  'told',
  'find',
  'passport',
  'turn',
  'hous',
  'upsid',
  'look',
  'find',
  'husband',
  'said',
  'mayb',
  'sign',
  'god',
  'let',
  'stay',
  'home',
  'trip',
  'turn',
  'disast',
  'ignor',
  'comment',
  'later',
  'clean',
  'offic',
  'found',
  'passport',
  'tuck',
  'away',
  'rd',
  'drawer',
  'ton',
  'paper',
  'floor',
  'confront',
  'swore',
  'idea',
  'passport',
  'got',
  'check',
  'upstair',
  'camera',
  'saw',
  'enter',
  'daughter',
  'room',
  'scream',
  'head',
  'cancel',
  'whole',
  'trip',
  'complet',
  'start',
  'argu',
  'say',
  'overreact',
  'want',
  'kid',
  'miser',
  'trip',
  'apolog',
  'daughter',
  '*',
  '*',
  'reconsid',
  'decis',
  'regard',
  'cancel',
  'trip',
  'stepkid',
  'devast',
  'said',
  'final',
  'done',
  'becom',
  'cold',
  'distant',
  'said',
  'want',
  'take',
  'time',
  'fast',
  'get',
  'guidanc',
  'god',
  'deal',
  'disrespect',
  'control',
  'display',
  'late',
  'aita',
  'cancel',
  'altogeth',
  'husband_togeth',
  'togeth_year',
  'year_kid',
  'kid_previou',
  'previou_relationship',
  'relationship_one',
  'one_oldest',
  'oldest_dedic',
  'dedic_man',
  'man_put',
  'put_god',
  'god_first',
  'first_love',
  'love_everyon',
  'everyon_husband',
  'husband_alway',
  'alway_complain',
  'complain_daughter',
  'daughter_spend',
  'spend_time',
  'time_stepsibl',
  'stepsibl_reason',
  'reason_school',
  'school_health',
  'health_issu',
  'issu_work',
  'work_best',
  'best_spend',
  'spend_much',
  'much_time',
  'time_hand',
  'hand_complain',
  'complain_stepdad',
  'stepdad_tell',
  'tell_basic',
  'basic_take',
  'take_role',
  'role_babysitt',
  'babysitt_whenev',
  'whenev_stepsibl',
  'stepsibl_husband',
  'husband_deni',
  'deni_said',
  'said_daughter',
  'daughter_make',
  'make_excus',
  'excus_spend',
  'spend_time',
  'time_kid',
  'kid_issu',
  'issu_figur',
  'figur_famili',
  'famili_trip',
  'trip_famili',
  'famili_need',
  'need_get',
  'get_togeth',
  'togeth_spend',
  'spend_time',
  'time_around',
  'around_husband',
  'husband_like',
  'like_idea',
  'idea_said',
  'said_kid',
  'kid_uncomfort',
  'uncomfort_around',
  'around_daughter',
  'daughter_attitud',
  'attitud_suggest',
  'suggest_let',
  'let_stay',
  'stay_home',
  'home_hous',
  'hous_sinc',
  'sinc_alway',
  'alway_want',
  'want_told',
  'told_best',
  'best_go',
  'go_kept',
  'kept_compla',
  'compla_til',
  'til_snap',
  'snap_told',
  'told_stop',
  'stop_book',
  'book_paid',
  'paid_whole',
  'whole_famili',
  'famili_howev',
  'howev_daughter',
  'daughter_told',
  'told_find',
  'find_passport',
  'passport_turn',
  'turn_hous',
  'hous_upsid',
  'upsid_look',
  'look_find',
  'find_husband',
  'husband_said',
  'said_mayb',
  'mayb_sign',
  'sign_god',
  'god_let',
  'let_stay',
  'stay_home',
  'home_trip',
  'trip_turn',
  'turn_disast',
  'disast_ignor',
  'ignor_comment',
  'comment_later',
  'later_clean',
  'clean_offic',
  'offic_found',
  'found_passport',
  'passport_tuck',
  'tuck_away',
  'away_rd',
  'rd_drawer',
  'drawer_ton',
  'ton_paper',
  'paper_floor',
  'floor_confront',
  'confront_swore',
  'swore_idea',
  'idea_passport',
  'passport_got',
  'got_check',
  'check_upstair',
  'upstair_camera',
  'camera_saw',
  'saw_enter',
  'enter_daughter',
  'daughter_room',
  'room_scream',
  'scream_head',
  'head_cancel',
  'cancel_whole',
  'whole_trip',
  'trip_complet',
  'complet_start',
  'start_argu',
  'argu_say',
  'say_overreact',
  'overreact_want',
  'want_kid',
  'kid_miser',
  'miser_trip',
  'trip_apolog',
  'apolog_daughter',
  'daughter_*',
  '*_*',
  '*_reconsid',
  'reconsid_decis',
  'decis_regard',
  'regard_cancel',
  'cancel_trip',
  'trip_stepkid',
  'stepkid_devast',
  'devast_said',
  'said_final',
  'final_done',
  'done_becom',
  'becom_cold',
  'cold_distant',
  'distant_said',
  'said_want',
  'want_take',
  'take_time',
  'time_fast',
  'fast_get',
  'get_guidanc',
  'guidanc_god',
  'god_deal',
  'deal_disrespect',
  'disrespect_control',
  'control_display',
  'display_late',
  'late_aita',
  'aita_cancel',
  'cancel_altogeth',
  'husband_togeth_year',
  'togeth_year_kid',
  'year_kid_previou',
  'kid_previou_relationship',
  'previou_relationship_one',
  'relationship_one_oldest',
  'one_oldest_dedic',
  'oldest_dedic_man',
  'dedic_man_put',
  'man_put_god',
  'put_god_first',
  'god_first_love',
  'first_love_everyon',
  'love_everyon_husband',
  'everyon_husband_alway',
  'husband_alway_complain',
  'alway_complain_daughter',
  'complain_daughter_spend',
  'daughter_spend_time',
  'spend_time_stepsibl',
  'time_stepsibl_reason',
  'stepsibl_reason_school',
  'reason_school_health',
  'school_health_issu',
  'health_issu_work',
  'issu_work_best',
  'work_best_spend',
  'best_spend_much',
  'spend_much_time',
  'much_time_hand',
  'time_hand_complain',
  'hand_complain_stepdad',
  'complain_stepdad_tell',
  'stepdad_tell_basic',
  'tell_basic_take',
  'basic_take_role',
  'take_role_babysitt',
  'role_babysitt_whenev',
  'babysitt_whenev_stepsibl',
  'whenev_stepsibl_husband',
  'stepsibl_husband_deni',
  'husband_deni_said',
  'deni_said_daughter',
  'said_daughter_make',
  'daughter_make_excus',
  'make_excus_spend',
  'excus_spend_time',
  'spend_time_kid',
  'time_kid_issu',
  'kid_issu_figur',
  'issu_figur_famili',
  'figur_famili_trip',
  'famili_trip_famili',
  'trip_famili_need',
  'famili_need_get',
  'need_get_togeth',
  'get_togeth_spend',
  'togeth_spend_time',
  'spend_time_around',
  'time_around_husband',
  'around_husband_like',
  'husband_like_idea',
  'like_idea_said',
  'idea_said_kid',
  'said_kid_uncomfort',
  'kid_uncomfort_around',
  'uncomfort_around_daughter',
  'around_daughter_attitud',
  'daughter_attitud_suggest',
  'attitud_suggest_let',
  'suggest_let_stay',
  'let_stay_home',
  'stay_home_hous',
  'home_hous_sinc',
  'hous_sinc_alway',
  'sinc_alway_want',
  'alway_want_told',
  'want_told_best',
  'told_best_go',
  'best_go_kept',
  'go_kept_compla',
  'kept_compla_til',
  'compla_til_snap',
  'til_snap_told',
  'snap_told_stop',
  'told_stop_book',
  'stop_book_paid',
  'book_paid_whole',
  'paid_whole_famili',
  'whole_famili_howev',
  'famili_howev_daughter',
  'howev_daughter_told',
  'daughter_told_find',
  'told_find_passport',
  'find_passport_turn',
  'passport_turn_hous',
  'turn_hous_upsid',
  'hous_upsid_look',
  'upsid_look_find',
  'look_find_husband',
  'find_husband_said',
  'husband_said_mayb',
  'said_mayb_sign',
  'mayb_sign_god',
  'sign_god_let',
  'god_let_stay',
  'let_stay_home',
  'stay_home_trip',
  'home_trip_turn',
  'trip_turn_disast',
  'turn_disast_ignor',
  'disast_ignor_comment',
  'ignor_comment_later',
  'comment_later_clean',
  'later_clean_offic',
  'clean_offic_found',
  'offic_found_passport',
  'found_passport_tuck',
  'passport_tuck_away',
  'tuck_away_rd',
  'away_rd_drawer',
  'rd_drawer_ton',
  'drawer_ton_paper',
  'ton_paper_floor',
  'paper_floor_confront',
  'floor_confront_swore',
  'confront_swore_idea',
  'swore_idea_passport',
  'idea_passport_got',
  'passport_got_check',
  'got_check_upstair',
  'check_upstair_camera',
  'upstair_camera_saw',
  'camera_saw_enter',
  'saw_enter_daughter',
  'enter_daughter_room',
  'daughter_room_scream',
  'room_scream_head',
  'scream_head_cancel',
  'head_cancel_whole',
  'cancel_whole_trip',
  'whole_trip_complet',
  'trip_complet_start',
  'complet_start_argu',
  'start_argu_say',
  'argu_say_overreact',
  'say_overreact_want',
  'overreact_want_kid',
  'want_kid_miser',
  'kid_miser_trip',
  'miser_trip_apolog',
  'trip_apolog_daughter',
  'apolog_daughter_*',
  'daughter_*_*',
  '*_*_reconsid',
  '*_reconsid_decis',
  'reconsid_decis_regard',
  'decis_regard_cancel',
  'regard_cancel_trip',
  'cancel_trip_stepkid',
  'trip_stepkid_devast',
  'stepkid_devast_said',
  'devast_said_final',
  'said_final_done',
  'final_done_becom',
  'done_becom_cold',
  'becom_cold_distant',
  'cold_distant_said',
  'distant_said_want',
  'said_want_take',
  'want_take_time',
  'take_time_fast',
  'time_fast_get',
  'fast_get_guidanc',
  'get_guidanc_god',
  'guidanc_god_deal',
  'god_deal_disrespect',
  'deal_disrespect_control',
  'disrespect_control_display',
  'control_display_late',
  'display_late_aita',
  'late_aita_cancel',
  'aita_cancel_altogeth'],
 ['graduat',
  'ceremoni',
  'held',
  'next',
  'week',
  'dad',
  'given',
  'money',
  'advanc',
  'pay',
  'parti',
  'live',
  'mostli',
  'mom',
  'suppos',
  'host',
  'event',
  'togeth',
  'dad',
  'rocki',
  'relationship',
  'parent',
  'divorc',
  'split',
  'custodi',
  'abl',
  'stay',
  'good',
  'dad',
  'met',
  'jane',
  'jane',
  'three',
  'kid',
  'twin',
  'singl',
  'kid',
  'got',
  'marri',
  'would',
  'say',
  'even',
  'felt',
  'like',
  'priorit',
  'kid',
  'lot',
  'would',
  'cancel',
  'plan',
  'want',
  'someth',
  'would',
  'either',
  'thing',
  'forc',
  'go',
  'say',
  'even',
  'better',
  'plan',
  'think',
  'go',
  'hike',
  'vs',
  'take',
  'indoor',
  'play',
  'area',
  'see',
  'movi',
  'vs',
  'kiddi',
  'park',
  'one',
  'exampl',
  'given',
  'ticket',
  'concert',
  'dad',
  'love',
  'suppos',
  'buy',
  'ticket',
  'come',
  'fatherson',
  'time',
  'actual',
  'spent',
  'youngest',
  'stepkid',
  'want',
  'room',
  'paint',
  'told',
  'last',
  'minut',
  'hurt',
  'time',
  'stuff',
  'like',
  'happen',
  'show',
  'hospit',
  'broke',
  'arm',
  'one',
  'stepkid',
  'get',
  'tonsil',
  'want',
  'wife',
  'told',
  'mom',
  'phone',
  'tell',
  'proud',
  'brave',
  'understand',
  'even',
  'though',
  'never',
  'said',
  'shit',
  'would',
  'bring',
  'stuff',
  'hed',
  'tell',
  'natur',
  'feel',
  'jealou',
  'share',
  'attent',
  'would',
  'say',
  'told',
  'mom',
  'would',
  'split',
  'cost',
  'trip',
  'want',
  'go',
  'one',
  'club',
  'money',
  'mom',
  'half',
  'save',
  'told',
  'dad',
  'need',
  'pay',
  'said',
  'bill',
  'tight',
  'twin',
  'birthday',
  'money',
  'need',
  'go',
  'someth',
  'told',
  'could',
  'someth',
  'famili',
  'trip',
  'happen',
  'instead',
  'told',
  'forget',
  'make',
  'clear',
  'import',
  'go',
  'stay',
  'mom',
  'actual',
  'matter',
  'mom',
  'borrow',
  'money',
  'cover',
  'half',
  'trip',
  'dad',
  'told',
  'regret',
  'make',
  'feel',
  'less',
  'import',
  'work',
  'thing',
  'graduat',
  'money',
  'given',
  'month',
  'ago',
  'week',
  'ago',
  'call',
  'told',
  'one',
  'stepkid',
  'bulli',
  'bad',
  'time',
  'theyr',
  'money',
  'could',
  'help',
  'cheer',
  'birthday',
  'piss',
  'hung',
  'two',
  'day',
  'later',
  'show',
  'doorstep',
  'gave',
  'money',
  'told',
  'want',
  'see',
  'new',
  'famili',
  'graduat',
  'chosen',
  'import',
  'better',
  'stay',
  'life',
  'stepkid',
  'two',
  'younger',
  'bio',
  'kid',
  'stick',
  'around',
  'call',
  'told',
  'need',
  'talk',
  'like',
  'adult',
  'hurt',
  'kid',
  'feel',
  'wife',
  'freak',
  'block',
  'aita',
  'graduat_ceremoni',
  'ceremoni_held',
  'held_next',
  'next_week',
  'week_dad',
  'dad_given',
  'given_money',
  'money_advanc',
  'advanc_pay',
  'pay_parti',
  'parti_live',
  'live_mostli',
  'mostli_mom',
  'mom_suppos',
  'suppos_host',
  'host_event',
  'event_togeth',
  'togeth_dad',
  'dad_rocki',
  'rocki_relationship',
  'relationship_parent',
  'parent_divorc',
  'divorc_split',
  'split_custodi',
  'custodi_abl',
  'abl_stay',
  'stay_good',
  'good_dad',
  'dad_met',
  'met_jane',
  'jane_jane',
  'jane_three',
  'three_kid',
  'kid_twin',
  'twin_singl',
  'singl_kid',
  'kid_got',
  'got_marri',
  'marri_would',
  'would_say',
  'say_even',
  'even_felt',
  'felt_like',
  'like_priorit',
  'priorit_kid',
  'kid_lot',
  'lot_would',
  'would_cancel',
  'cancel_plan',
  'plan_want',
  'want_someth',
  'someth_would',
  'would_either',
  'either_thing',
  'thing_forc',
  'forc_go',
  'go_say',
  'say_even',
  'even_better',
  'better_plan',
  'plan_think',
  'think_go',
  'go_hike',
  'hike_vs',
  'vs_take',
  'take_indoor',
  'indoor_play',
  'play_area',
  'area_see',
  'see_movi',
  'movi_vs',
  'vs_kiddi',
  'kiddi_park',
  'park_one',
  'one_exampl',
  'exampl_given',
  'given_ticket',
  'ticket_concert',
  'concert_dad',
  'dad_love',
  'love_suppos',
  'suppos_buy',
  'buy_ticket',
  'ticket_come',
  'come_fatherson',
  'fatherson_time',
  'time_actual',
  'actual_spent',
  'spent_youngest',
  'youngest_stepkid',
  'stepkid_want',
  'want_room',
  'room_paint',
  'paint_told',
  'told_last',
  'last_minut',
  'minut_hurt',
  'hurt_time',
  'time_stuff',
  'stuff_like',
  'like_happen',
  'happen_show',
  'show_hospit',
  'hospit_broke',
  'broke_arm',
  'arm_one',
  'one_stepkid',
  'stepkid_get',
  'get_tonsil',
  'tonsil_want',
  'want_wife',
  'wife_told',
  'told_mom',
  'mom_phone',
  'phone_tell',
  'tell_proud',
  'proud_brave',
  'brave_understand',
  'understand_even',
  'even_though',
  'though_never',
  'never_said',
  'said_shit',
  'shit_would',
  'would_bring',
  'bring_stuff',
  'stuff_hed',
  'hed_tell',
  'tell_natur',
  'natur_feel',
  'feel_jealou',
  'jealou_share',
  'share_attent',
  'attent_would',
  'would_say',
  'say_told',
  'told_mom',
  'mom_would',
  'would_split',
  'split_cost',
  'cost_trip',
  'trip_want',
  'want_go',
  'go_one',
  'one_club',
  'club_money',
  'money_mom',
  'mom_half',
  'half_save',
  'save_told',
  'told_dad',
  'dad_need',
  'need_pay',
  'pay_said',
  'said_bill',
  'bill_tight',
  'tight_twin',
  'twin_birthday',
  'birthday_money',
  'money_need',
  'need_go',
  'go_someth',
  'someth_told',
  'told_could',
  'could_someth',
  'someth_famili',
  'famili_trip',
  'trip_happen',
  'happen_instead',
  'instead_told',
  'told_forget',
  'forget_make',
  'make_clear',
  'clear_import',
  'import_go',
  'go_stay',
  'stay_mom',
  'mom_actual',
  'actual_matter',
  'matter_mom',
  'mom_borrow',
  'borrow_money',
  'money_cover',
  'cover_half',
  'half_trip',
  'trip_dad',
  'dad_told',
  'told_regret',
  'regret_make',
  'make_feel',
  'feel_less',
  'less_import',
  'import_work',
  'work_thing',
  'thing_graduat',
  'graduat_money',
  'money_given',
  'given_month',
  'month_ago',
  'ago_week',
  'week_ago',
  'ago_call',
  'call_told',
  'told_one',
  'one_stepkid',
  'stepkid_bulli',
  'bulli_bad',
  'bad_time',
  'time_theyr',
  'theyr_money',
  'money_could',
  'could_help',
  'help_cheer',
  'cheer_birthday',
  'birthday_piss',
  'piss_hung',
  'hung_two',
  'two_day',
  'day_later',
  'later_show',
  'show_doorstep',
  'doorstep_gave',
  'gave_money',
  'money_told',
  'told_want',
  'want_see',
  'see_new',
  'new_famili',
  'famili_graduat',
  'graduat_chosen',
  'chosen_import',
  'import_better',
  'better_stay',
  'stay_life',
  'life_stepkid',
  'stepkid_two',
  'two_younger',
  'younger_bio',
  'bio_kid',
  'kid_stick',
  'stick_around',
  'around_call',
  'call_told',
  'told_need',
  'need_talk',
  'talk_like',
  'like_adult',
  'adult_hurt',
  'hurt_kid',
  'kid_feel',
  'feel_wife',
  'wife_freak',
  'freak_block',
  'block_aita',
  'graduat_ceremoni_held',
  'ceremoni_held_next',
  'held_next_week',
  'next_week_dad',
  'week_dad_given',
  'dad_given_money',
  'given_money_advanc',
  'money_advanc_pay',
  'advanc_pay_parti',
  'pay_parti_live',
  'parti_live_mostli',
  'live_mostli_mom',
  'mostli_mom_suppos',
  'mom_suppos_host',
  'suppos_host_event',
  'host_event_togeth',
  'event_togeth_dad',
  'togeth_dad_rocki',
  'dad_rocki_relationship',
  'rocki_relationship_parent',
  'relationship_parent_divorc',
  'parent_divorc_split',
  'divorc_split_custodi',
  'split_custodi_abl',
  'custodi_abl_stay',
  'abl_stay_good',
  'stay_good_dad',
  'good_dad_met',
  'dad_met_jane',
  'met_jane_jane',
  'jane_jane_three',
  'jane_three_kid',
  'three_kid_twin',
  'kid_twin_singl',
  'twin_singl_kid',
  'singl_kid_got',
  'kid_got_marri',
  'got_marri_would',
  'marri_would_say',
  'would_say_even',
  'say_even_felt',
  'even_felt_like',
  'felt_like_priorit',
  'like_priorit_kid',
  'priorit_kid_lot',
  'kid_lot_would',
  'lot_would_cancel',
  'would_cancel_plan',
  'cancel_plan_want',
  'plan_want_someth',
  'want_someth_would',
  'someth_would_either',
  'would_either_thing',
  'either_thing_forc',
  'thing_forc_go',
  'forc_go_say',
  'go_say_even',
  'say_even_better',
  'even_better_plan',
  'better_plan_think',
  'plan_think_go',
  'think_go_hike',
  'go_hike_vs',
  'hike_vs_take',
  'vs_take_indoor',
  'take_indoor_play',
  'indoor_play_area',
  'play_area_see',
  'area_see_movi',
  'see_movi_vs',
  'movi_vs_kiddi',
  'vs_kiddi_park',
  'kiddi_park_one',
  'park_one_exampl',
  'one_exampl_given',
  'exampl_given_ticket',
  'given_ticket_concert',
  'ticket_concert_dad',
  'concert_dad_love',
  'dad_love_suppos',
  'love_suppos_buy',
  'suppos_buy_ticket',
  'buy_ticket_come',
  'ticket_come_fatherson',
  'come_fatherson_time',
  'fatherson_time_actual',
  'time_actual_spent',
  'actual_spent_youngest',
  'spent_youngest_stepkid',
  'youngest_stepkid_want',
  'stepkid_want_room',
  'want_room_paint',
  'room_paint_told',
  'paint_told_last',
  'told_last_minut',
  'last_minut_hurt',
  'minut_hurt_time',
  'hurt_time_stuff',
  'time_stuff_like',
  'stuff_like_happen',
  'like_happen_show',
  'happen_show_hospit',
  'show_hospit_broke',
  'hospit_broke_arm',
  'broke_arm_one',
  'arm_one_stepkid',
  'one_stepkid_get',
  'stepkid_get_tonsil',
  'get_tonsil_want',
  'tonsil_want_wife',
  'want_wife_told',
  'wife_told_mom',
  'told_mom_phone',
  'mom_phone_tell',
  'phone_tell_proud',
  'tell_proud_brave',
  'proud_brave_understand',
  'brave_understand_even',
  'understand_even_though',
  'even_though_never',
  'though_never_said',
  'never_said_shit',
  'said_shit_would',
  'shit_would_bring',
  'would_bring_stuff',
  'bring_stuff_hed',
  'stuff_hed_tell',
  'hed_tell_natur',
  'tell_natur_feel',
  'natur_feel_jealou',
  'feel_jealou_share',
  'jealou_share_attent',
  'share_attent_would',
  'attent_would_say',
  'would_say_told',
  'say_told_mom',
  'told_mom_would',
  'mom_would_split',
  'would_split_cost',
  'split_cost_trip',
  'cost_trip_want',
  'trip_want_go',
  'want_go_one',
  'go_one_club',
  'one_club_money',
  'club_money_mom',
  'money_mom_half',
  'mom_half_save',
  'half_save_told',
  'save_told_dad',
  'told_dad_need',
  'dad_need_pay',
  'need_pay_said',
  'pay_said_bill',
  'said_bill_tight',
  'bill_tight_twin',
  'tight_twin_birthday',
  'twin_birthday_money',
  'birthday_money_need',
  'money_need_go',
  'need_go_someth',
  'go_someth_told',
  'someth_told_could',
  'told_could_someth',
  'could_someth_famili',
  'someth_famili_trip',
  'famili_trip_happen',
  'trip_happen_instead',
  'happen_instead_told',
  'instead_told_forget',
  'told_forget_make',
  'forget_make_clear',
  'make_clear_import',
  'clear_import_go',
  'import_go_stay',
  'go_stay_mom',
  'stay_mom_actual',
  'mom_actual_matter',
  'actual_matter_mom',
  'matter_mom_borrow',
  'mom_borrow_money',
  'borrow_money_cover',
  'money_cover_half',
  'cover_half_trip',
  'half_trip_dad',
  'trip_dad_told',
  'dad_told_regret',
  'told_regret_make',
  'regret_make_feel',
  'make_feel_less',
  'feel_less_import',
  'less_import_work',
  'import_work_thing',
  'work_thing_graduat',
  'thing_graduat_money',
  'graduat_money_given',
  'money_given_month',
  'given_month_ago',
  'month_ago_week',
  'ago_week_ago',
  'week_ago_call',
  'ago_call_told',
  'call_told_one',
  'told_one_stepkid',
  'one_stepkid_bulli',
  'stepkid_bulli_bad',
  'bulli_bad_time',
  'bad_time_theyr',
  'time_theyr_money',
  'theyr_money_could',
  'money_could_help',
  'could_help_cheer',
  'help_cheer_birthday',
  'cheer_birthday_piss',
  'birthday_piss_hung',
  'piss_hung_two',
  'hung_two_day',
  'two_day_later',
  'day_later_show',
  'later_show_doorstep',
  'show_doorstep_gave',
  'doorstep_gave_money',
  'gave_money_told',
  'money_told_want',
  'told_want_see',
  'want_see_new',
  'see_new_famili',
  'new_famili_graduat',
  'famili_graduat_chosen',
  'graduat_chosen_import',
  'chosen_import_better',
  'import_better_stay',
  'better_stay_life',
  'stay_life_stepkid',
  'life_stepkid_two',
  'stepkid_two_younger',
  'two_younger_bio',
  'younger_bio_kid',
  'bio_kid_stick',
  'kid_stick_around',
  'stick_around_call',
  'around_call_told',
  'call_told_need',
  'told_need_talk',
  'need_talk_like',
  'talk_like_adult',
  'like_adult_hurt',
  'adult_hurt_kid',
  'hurt_kid_feel',
  'kid_feel_wife',
  'feel_wife_freak',
  'wife_freak_block',
  'freak_block_aita'],
 ['daughter',
  'megan',
  'finish',
  'cancer',
  'treatment',
  'lost',
  'hair',
  'process',
  'incred',
  'insecur',
  'longer',
  'meet',
  'friend',
  'welcom',
  'home',
  'even',
  'meet',
  'famili',
  'person',
  'bad',
  'say',
  'least',
  'stepbroth',
  'ben',
  'make',
  'wors',
  'nag',
  'comment',
  'joke',
  'look',
  'tri',
  'take',
  'post',
  'pic',
  'secretli',
  'share',
  'shut',
  'even',
  'though',
  'husband',
  'thought',
  'harmless',
  'teas',
  'husband',
  'sister',
  'wed',
  'last',
  'week',
  'famili',
  'want',
  'megan',
  'yo',
  'go',
  'want',
  'spent',
  'much',
  'time',
  'tri',
  'help',
  'convinc',
  'start',
  'social',
  'see',
  'famili',
  'agre',
  'condit',
  'let',
  'wear',
  'wig',
  'agre',
  'took',
  'shop',
  'pick',
  'wig',
  'look',
  'beauti',
  'stun',
  'pixi',
  'hairstyl',
  'wig',
  'husband',
  'ben',
  'laugh',
  'saw',
  'know',
  'went',
  'wed',
  'everyth',
  'go',
  'well',
  'til',
  'happen',
  'sit',
  'start',
  'talk',
  'meghan',
  'look',
  'suddenli',
  'ben',
  'reach',
  'pull',
  'wig',
  'expos',
  'head',
  'shock',
  'froze',
  'megan',
  'yell',
  'took',
  'wig',
  'ran',
  'ben',
  'cousin',
  'guest',
  'start',
  'laugh',
  'upset',
  'especi',
  'look',
  'shoulder',
  'saw',
  'husband',
  'sit',
  'next',
  'mom',
  'laugh',
  'lost',
  'ben',
  'berat',
  'infront',
  'everyon',
  'took',
  'stuff',
  'got',
  'megan',
  'got',
  'car',
  'went',
  'home',
  'ben',
  'husband',
  'ride',
  'home',
  'husband',
  'kept',
  'call',
  'respond',
  'came',
  'home',
  'ask',
  'leav',
  'mid',
  'wed',
  'upset',
  'sister',
  'leav',
  'ben',
  'rude',
  'home',
  'argu',
  'ben',
  'embarrass',
  'megan',
  'humili',
  'publicli',
  'mustv',
  'ruin',
  'left',
  'self',
  'esteem',
  'said',
  'kid',
  'teas',
  'overreact',
  'ben',
  'malici',
  'intent',
  'mess',
  'said',
  'sick',
  'said',
  'way',
  'bond',
  'stepsibl',
  'get',
  'inth',
  'way',
  'overprotect',
  'unreason',
  'talk',
  'ben',
  'refus',
  'apolog',
  'dad',
  'back',
  'daughter_megan',
  'megan_finish',
  'finish_cancer',
  'cancer_treatment',
  'treatment_lost',
  'lost_hair',
  'hair_process',
  'process_incred',
  'incred_insecur',
  'insecur_longer',
  'longer_meet',
  'meet_friend',
  'friend_welcom',
  'welcom_home',
  'home_even',
  'even_meet',
  'meet_famili',
  'famili_person',
  'person_bad',
  'bad_say',
  'say_least',
  'least_stepbroth',
  'stepbroth_ben',
  'ben_make',
  'make_wors',
  'wors_nag',
  'nag_comment',
  'comment_joke',
  'joke_look',
  'look_tri',
  'tri_take',
  'take_post',
  'post_pic',
  'pic_secretli',
  'secretli_share',
  'share_shut',
  'shut_even',
  'even_though',
  'though_husband',
  'husband_thought',
  'thought_harmless',
  'harmless_teas',
  'teas_husband',
  'husband_sister',
  'sister_wed',
  'wed_last',
  'last_week',
  'week_famili',
  'famili_want',
  'want_megan',
  'megan_yo',
  'yo_go',
  'go_want',
  'want_spent',
  'spent_much',
  'much_time',
  'time_tri',
  'tri_help',
  'help_convinc',
  'convinc_start',
  'start_social',
  'social_see',
  'see_famili',
  'famili_agre',
  'agre_condit',
  'condit_let',
  'let_wear',
  'wear_wig',
  'wig_agre',
  'agre_took',
  'took_shop',
  'shop_pick',
  'pick_wig',
  'wig_look',
  'look_beauti',
  'beauti_stun',
  'stun_pixi',
  'pixi_hairstyl',
  'hairstyl_wig',
  'wig_husband',
  'husband_ben',
  'ben_laugh',
  'laugh_saw',
  'saw_know',
  'know_went',
  'went_wed',
  'wed_everyth',
  'everyth_go',
  'go_well',
  'well_til',
  'til_happen',
  'happen_sit',
  'sit_start',
  'start_talk',
  'talk_meghan',
  'meghan_look',
  'look_suddenli',
  'suddenli_ben',
  'ben_reach',
  'reach_pull',
  'pull_wig',
  'wig_expos',
  'expos_head',
  'head_shock',
  'shock_froze',
  'froze_megan',
  'megan_yell',
  'yell_took',
  'took_wig',
  'wig_ran',
  'ran_ben',
  'ben_cousin',
  'cousin_guest',
  'guest_start',
  'start_laugh',
  'laugh_upset',
  'upset_especi',
  'especi_look',
  'look_shoulder',
  'shoulder_saw',
  'saw_husband',
  'husband_sit',
  'sit_next',
  'next_mom',
  'mom_laugh',
  'laugh_lost',
  'lost_ben',
  'ben_berat',
  'berat_infront',
  'infront_everyon',
  'everyon_took',
  'took_stuff',
  'stuff_got',
  'got_megan',
  'megan_got',
  'got_car',
  'car_went',
  'went_home',
  'home_ben',
  'ben_husband',
  'husband_ride',
  'ride_home',
  'home_husband',
  'husband_kept',
  'kept_call',
  'call_respond',
  'respond_came',
  'came_home',
  'home_ask',
  'ask_leav',
  'leav_mid',
  'mid_wed',
  'wed_upset',
  'upset_sister',
  'sister_leav',
  'leav_ben',
  'ben_rude',
  'rude_home',
  'home_argu',
  'argu_ben',
  'ben_embarrass',
  'embarrass_megan',
  'megan_humili',
  'humili_publicli',
  'publicli_mustv',
  'mustv_ruin',
  'ruin_left',
  'left_self',
  'self_esteem',
  'esteem_said',
  'said_kid',
  'kid_teas',
  'teas_overreact',
  'overreact_ben',
  'ben_malici',
  'malici_intent',
  'intent_mess',
  'mess_said',
  'said_sick',
  'sick_said',
  'said_way',
  'way_bond',
  'bond_stepsibl',
  'stepsibl_get',
  'get_inth',
  'inth_way',
  'way_overprotect',
  'overprotect_unreason',
  'unreason_talk',
  'talk_ben',
  'ben_refus',
  'refus_apolog',
  'apolog_dad',
  'dad_back',
  'daughter_megan_finish',
  'megan_finish_cancer',
  'finish_cancer_treatment',
  'cancer_treatment_lost',
  'treatment_lost_hair',
  'lost_hair_process',
  'hair_process_incred',
  'process_incred_insecur',
  'incred_insecur_longer',
  'insecur_longer_meet',
  'longer_meet_friend',
  'meet_friend_welcom',
  'friend_welcom_home',
  'welcom_home_even',
  'home_even_meet',
  'even_meet_famili',
  'meet_famili_person',
  'famili_person_bad',
  'person_bad_say',
  'bad_say_least',
  'say_least_stepbroth',
  'least_stepbroth_ben',
  'stepbroth_ben_make',
  'ben_make_wors',
  'make_wors_nag',
  'wors_nag_comment',
  'nag_comment_joke',
  'comment_joke_look',
  'joke_look_tri',
  'look_tri_take',
  'tri_take_post',
  'take_post_pic',
  'post_pic_secretli',
  'pic_secretli_share',
  'secretli_share_shut',
  'share_shut_even',
  'shut_even_though',
  'even_though_husband',
  'though_husband_thought',
  'husband_thought_harmless',
  'thought_harmless_teas',
  'harmless_teas_husband',
  'teas_husband_sister',
  'husband_sister_wed',
  'sister_wed_last',
  'wed_last_week',
  'last_week_famili',
  'week_famili_want',
  'famili_want_megan',
  'want_megan_yo',
  'megan_yo_go',
  'yo_go_want',
  'go_want_spent',
  'want_spent_much',
  'spent_much_time',
  'much_time_tri',
  'time_tri_help',
  'tri_help_convinc',
  'help_convinc_start',
  'convinc_start_social',
  'start_social_see',
  'social_see_famili',
  'see_famili_agre',
  'famili_agre_condit',
  'agre_condit_let',
  'condit_let_wear',
  'let_wear_wig',
  'wear_wig_agre',
  'wig_agre_took',
  'agre_took_shop',
  'took_shop_pick',
  'shop_pick_wig',
  'pick_wig_look',
  'wig_look_beauti',
  'look_beauti_stun',
  'beauti_stun_pixi',
  'stun_pixi_hairstyl',
  'pixi_hairstyl_wig',
  'hairstyl_wig_husband',
  'wig_husband_ben',
  'husband_ben_laugh',
  'ben_laugh_saw',
  'laugh_saw_know',
  'saw_know_went',
  'know_went_wed',
  'went_wed_everyth',
  'wed_everyth_go',
  'everyth_go_well',
  'go_well_til',
  'well_til_happen',
  'til_happen_sit',
  'happen_sit_start',
  'sit_start_talk',
  'start_talk_meghan',
  'talk_meghan_look',
  'meghan_look_suddenli',
  'look_suddenli_ben',
  'suddenli_ben_reach',
  'ben_reach_pull',
  'reach_pull_wig',
  'pull_wig_expos',
  'wig_expos_head',
  'expos_head_shock',
  'head_shock_froze',
  'shock_froze_megan',
  'froze_megan_yell',
  'megan_yell_took',
  'yell_took_wig',
  'took_wig_ran',
  'wig_ran_ben',
  'ran_ben_cousin',
  'ben_cousin_guest',
  'cousin_guest_start',
  'guest_start_laugh',
  'start_laugh_upset',
  'laugh_upset_especi',
  'upset_especi_look',
  'especi_look_shoulder',
  'look_shoulder_saw',
  'shoulder_saw_husband',
  'saw_husband_sit',
  'husband_sit_next',
  'sit_next_mom',
  'next_mom_laugh',
  'mom_laugh_lost',
  'laugh_lost_ben',
  'lost_ben_berat',
  'ben_berat_infront',
  'berat_infront_everyon',
  'infront_everyon_took',
  'everyon_took_stuff',
  'took_stuff_got',
  'stuff_got_megan',
  'got_megan_got',
  'megan_got_car',
  'got_car_went',
  'car_went_home',
  'went_home_ben',
  'home_ben_husband',
  'ben_husband_ride',
  'husband_ride_home',
  'ride_home_husband',
  'home_husband_kept',
  'husband_kept_call',
  'kept_call_respond',
  'call_respond_came',
  'respond_came_home',
  'came_home_ask',
  'home_ask_leav',
  'ask_leav_mid',
  'leav_mid_wed',
  'mid_wed_upset',
  'wed_upset_sister',
  'upset_sister_leav',
  'sister_leav_ben',
  'leav_ben_rude',
  'ben_rude_home',
  'rude_home_argu',
  'home_argu_ben',
  'argu_ben_embarrass',
  'ben_embarrass_megan',
  'embarrass_megan_humili',
  'megan_humili_publicli',
  'humili_publicli_mustv',
  'publicli_mustv_ruin',
  'mustv_ruin_left',
  'ruin_left_self',
  'left_self_esteem',
  'self_esteem_said',
  'esteem_said_kid',
  'said_kid_teas',
  'kid_teas_overreact',
  'teas_overreact_ben',
  'overreact_ben_malici',
  'ben_malici_intent',
  'malici_intent_mess',
  'intent_mess_said',
  'mess_said_sick',
  'said_sick_said',
  'sick_said_way',
  'said_way_bond',
  'way_bond_stepsibl',
  'bond_stepsibl_get',
  'stepsibl_get_inth',
  'get_inth_way',
  'inth_way_overprotect',
  'way_overprotect_unreason',
  'overprotect_unreason_talk',
  'unreason_talk_ben',
  'talk_ben_refus',
  'ben_refus_apolog',
  'refus_apolog_dad',
  'apolog_dad_back'],
 ['dad',
  'practic',
  'gave',
  'sister',
  'moment',
  'born',
  'mom',
  'die',
  'give',
  'birth',
  'aunt',
  'told',
  'never',
  'recov',
  'blame',
  'die',
  'hurt',
  'lot',
  'kid',
  'famili',
  'event',
  'would',
  'ignor',
  'exist',
  'littl',
  'older',
  'got',
  'vocal',
  'kill',
  'cant',
  'stand',
  'look',
  'face',
  'imagin',
  'amount',
  'therapi',
  'put',
  'use',
  'go',
  'church',
  'cri',
  'scare',
  'go',
  'hell',
  'mom',
  'much',
  'word',
  'fuck',
  'shitti',
  'part',
  'never',
  'stop',
  'tri',
  'accept',
  'highschool',
  'graduat',
  'told',
  'never',
  'bother',
  'sinc',
  'legal',
  'oblig',
  'anymor',
  'sinc',
  'send',
  'aunt',
  'money',
  'take',
  'care',
  'around',
  'time',
  'final',
  'start',
  'accept',
  'realiti',
  'move',
  'live',
  'aunt',
  'talk',
  'sometim',
  'grandpar',
  'found',
  'got',
  'marri',
  'mad',
  'invit',
  'wed',
  'matter',
  'close',
  'wife',
  'want',
  'meet',
  'first',
  'time',
  'ever',
  'want',
  'make',
  'contact',
  'pretti',
  'much',
  'say',
  'want',
  'life',
  'know',
  'real',
  'reason',
  'estrang',
  'ask',
  'pleas',
  'say',
  'anyth',
  'mayb',
  'could',
  'way',
  'reconcil',
  'much',
  'clear',
  'talk',
  'never',
  'said',
  'would',
  'still',
  'insist',
  'us',
  'meet',
  'place',
  'realli',
  'want',
  'meet',
  'think',
  'estrang',
  'get',
  'along',
  'teenag',
  'year',
  'go',
  'colleg',
  'lose',
  'touch',
  'life',
  'stuff',
  'piss',
  'play',
  'us',
  'talk',
  'petti',
  'reason',
  'meanwhil',
  'actual',
  'reason',
  'damag',
  'year',
  'told',
  'truth',
  'everyth',
  'said',
  'never',
  'parent',
  'aunt',
  'definit',
  'shock',
  'outcom',
  'disast',
  'everyon',
  'heard',
  'grandma',
  'particular',
  'told',
  'understand',
  'anger',
  'chanc',
  'find',
  'someon',
  'sinc',
  'lose',
  'mom',
  'put',
  'jeopardi',
  'dad',
  'devast',
  'think',
  'go',
  'far',
  'ruin',
  'marriag',
  'way',
  'includ',
  'live',
  'could',
  'start',
  'relationship',
  'say',
  'ruin',
  'also',
  'possibl',
  'wreck',
  'marriag',
  'agre',
  'couldv',
  'avoid',
  'say',
  'anyth',
  'hard',
  'tell',
  'truth',
  'lie',
  'made',
  'seem',
  'like',
  'noth',
  'seriou',
  'ignor',
  'happen',
  'idk',
  'right',
  'call',
  'sinc',
  'put',
  'whole',
  'marriag',
  'risk',
  'dad_practic',
  'practic_gave',
  'gave_sister',
  'sister_moment',
  'moment_born',
  'born_mom',
  'mom_die',
  'die_give',
  'give_birth',
  'birth_aunt',
  'aunt_told',
  'told_never',
  'never_recov',
  'recov_blame',
  'blame_die',
  'die_hurt',
  'hurt_lot',
  'lot_kid',
  'kid_famili',
  'famili_event',
  'event_would',
  'would_ignor',
  'ignor_exist',
  'exist_littl',
  'littl_older',
  'older_got',
  'got_vocal',
  'vocal_kill',
  'kill_cant',
  'cant_stand',
  'stand_look',
  'look_face',
  'face_imagin',
  'imagin_amount',
  'amount_therapi',
  'therapi_put',
  'put_use',
  'use_go',
  'go_church',
  'church_cri',
  'cri_scare',
  'scare_go',
  'go_hell',
  'hell_mom',
  'mom_much',
  'much_word',
  'word_fuck',
  'fuck_shitti',
  'shitti_part',
  'part_never',
  'never_stop',
  'stop_tri',
  'tri_accept',
  'accept_highschool',
  'highschool_graduat',
  'graduat_told',
  'told_never',
  'never_bother',
  'bother_sinc',
  'sinc_legal',
  'legal_oblig',
  'oblig_anymor',
  'anymor_sinc',
  'sinc_send',
  'send_aunt',
  'aunt_money',
  'money_take',
  'take_care',
  'care_around',
  'around_time',
  'time_final',
  'final_start',
  'start_accept',
  'accept_realiti',
  'realiti_move',
  'move_live',
  'live_aunt',
  'aunt_talk',
  'talk_sometim',
  'sometim_grandpar',
  'grandpar_found',
  'found_got',
  'got_marri',
  'marri_mad',
  'mad_invit',
  'invit_wed',
  'wed_matter',
  'matter_close',
  'close_wife',
  'wife_want',
  'want_meet',
  'meet_first',
  'first_time',
  'time_ever',
  'ever_want',
  'want_make',
  'make_contact',
  'contact_pretti',
  'pretti_much',
  'much_say',
  'say_want',
  'want_life',
  'life_know',
  'know_real',
  'real_reason',
  'reason_estrang',
  'estrang_ask',
  'ask_pleas',
  'pleas_say',
  'say_anyth',
  'anyth_mayb',
  'mayb_could',
  'could_way',
  'way_reconcil',
  'reconcil_much',
  'much_clear',
  'clear_talk',
  'talk_never',
  'never_said',
  'said_would',
  'would_still',
  'still_insist',
  'insist_us',
  'us_meet',
  'meet_place',
  'place_realli',
  'realli_want',
  'want_meet',
  'meet_think',
  'think_estrang',
  'estrang_get',
  'get_along',
  'along_teenag',
  'teenag_year',
  'year_go',
  'go_colleg',
  'colleg_lose',
  'lose_touch',
  'touch_life',
  'life_stuff',
  'stuff_piss',
  'piss_play',
  'play_us',
  'us_talk',
  'talk_petti',
  'petti_reason',
  'reason_meanwhil',
  'meanwhil_actual',
  'actual_reason',
  'reason_damag',
  'damag_year',
  'year_told',
  'told_truth',
  'truth_everyth',
  'everyth_said',
  'said_never',
  'never_parent',
  'parent_aunt',
  'aunt_definit',
  'definit_shock',
  'shock_outcom',
  'outcom_disast',
  'disast_everyon',
  'everyon_heard',
  'heard_grandma',
  'grandma_particular',
  'particular_told',
  'told_understand',
  'understand_anger',
  'anger_chanc',
  'chanc_find',
  'find_someon',
  'someon_sinc',
  'sinc_lose',
  'lose_mom',
  'mom_put',
  'put_jeopardi',
  'jeopardi_dad',
  'dad_devast',
  'devast_think',
  'think_go',
  'go_far',
  'far_ruin',
  'ruin_marriag',
  'marriag_way',
  'way_includ',
  'includ_live',
  'live_could',
  'could_start',
  'start_relationship',
  'relationship_say',
  'say_ruin',
  'ruin_also',
  'also_possibl',
  'possibl_wreck',
  'wreck_marriag',
  'marriag_agre',
  'agre_couldv',
  'couldv_avoid',
  'avoid_say',
  'say_anyth',
  'anyth_hard',
  'hard_tell',
  'tell_truth',
  'truth_lie',
  'lie_made',
  'made_seem',
  'seem_like',
  'like_noth',
  'noth_seriou',
  'seriou_ignor',
  'ignor_happen',
  'happen_idk',
  'idk_right',
  'right_call',
  'call_sinc',
  'sinc_put',
  'put_whole',
  'whole_marriag',
  'marriag_risk',
  'dad_practic_gave',
  'practic_gave_sister',
  'gave_sister_moment',
  'sister_moment_born',
  'moment_born_mom',
  'born_mom_die',
  'mom_die_give',
  'die_give_birth',
  'give_birth_aunt',
  'birth_aunt_told',
  'aunt_told_never',
  'told_never_recov',
  'never_recov_blame',
  'recov_blame_die',
  'blame_die_hurt',
  'die_hurt_lot',
  'hurt_lot_kid',
  'lot_kid_famili',
  'kid_famili_event',
  'famili_event_would',
  'event_would_ignor',
  'would_ignor_exist',
  'ignor_exist_littl',
  'exist_littl_older',
  'littl_older_got',
  'older_got_vocal',
  'got_vocal_kill',
  'vocal_kill_cant',
  'kill_cant_stand',
  'cant_stand_look',
  'stand_look_face',
  'look_face_imagin',
  'face_imagin_amount',
  'imagin_amount_therapi',
  'amount_therapi_put',
  'therapi_put_use',
  'put_use_go',
  'use_go_church',
  'go_church_cri',
  'church_cri_scare',
  'cri_scare_go',
  'scare_go_hell',
  'go_hell_mom',
  'hell_mom_much',
  'mom_much_word',
  'much_word_fuck',
  'word_fuck_shitti',
  'fuck_shitti_part',
  'shitti_part_never',
  'part_never_stop',
  'never_stop_tri',
  'stop_tri_accept',
  'tri_accept_highschool',
  'accept_highschool_graduat',
  'highschool_graduat_told',
  'graduat_told_never',
  'told_never_bother',
  'never_bother_sinc',
  'bother_sinc_legal',
  'sinc_legal_oblig',
  'legal_oblig_anymor',
  'oblig_anymor_sinc',
  'anymor_sinc_send',
  'sinc_send_aunt',
  'send_aunt_money',
  'aunt_money_take',
  'money_take_care',
  'take_care_around',
  'care_around_time',
  'around_time_final',
  'time_final_start',
  'final_start_accept',
  'start_accept_realiti',
  'accept_realiti_move',
  'realiti_move_live',
  'move_live_aunt',
  'live_aunt_talk',
  'aunt_talk_sometim',
  'talk_sometim_grandpar',
  'sometim_grandpar_found',
  'grandpar_found_got',
  'found_got_marri',
  'got_marri_mad',
  'marri_mad_invit',
  'mad_invit_wed',
  'invit_wed_matter',
  'wed_matter_close',
  'matter_close_wife',
  'close_wife_want',
  'wife_want_meet',
  'want_meet_first',
  'meet_first_time',
  'first_time_ever',
  'time_ever_want',
  'ever_want_make',
  'want_make_contact',
  'make_contact_pretti',
  'contact_pretti_much',
  'pretti_much_say',
  'much_say_want',
  'say_want_life',
  'want_life_know',
  'life_know_real',
  'know_real_reason',
  'real_reason_estrang',
  'reason_estrang_ask',
  'estrang_ask_pleas',
  'ask_pleas_say',
  'pleas_say_anyth',
  'say_anyth_mayb',
  'anyth_mayb_could',
  'mayb_could_way',
  'could_way_reconcil',
  'way_reconcil_much',
  'reconcil_much_clear',
  'much_clear_talk',
  'clear_talk_never',
  'talk_never_said',
  'never_said_would',
  'said_would_still',
  'would_still_insist',
  'still_insist_us',
  'insist_us_meet',
  'us_meet_place',
  'meet_place_realli',
  'place_realli_want',
  'realli_want_meet',
  'want_meet_think',
  'meet_think_estrang',
  'think_estrang_get',
  'estrang_get_along',
  'get_along_teenag',
  'along_teenag_year',
  'teenag_year_go',
  'year_go_colleg',
  'go_colleg_lose',
  'colleg_lose_touch',
  'lose_touch_life',
  'touch_life_stuff',
  'life_stuff_piss',
  'stuff_piss_play',
  'piss_play_us',
  'play_us_talk',
  'us_talk_petti',
  'talk_petti_reason',
  'petti_reason_meanwhil',
  'reason_meanwhil_actual',
  'meanwhil_actual_reason',
  'actual_reason_damag',
  'reason_damag_year',
  'damag_year_told',
  'year_told_truth',
  'told_truth_everyth',
  'truth_everyth_said',
  'everyth_said_never',
  'said_never_parent',
  'never_parent_aunt',
  'parent_aunt_definit',
  'aunt_definit_shock',
  'definit_shock_outcom',
  'shock_outcom_disast',
  'outcom_disast_everyon',
  'disast_everyon_heard',
  'everyon_heard_grandma',
  'heard_grandma_particular',
  'grandma_particular_told',
  'particular_told_understand',
  'told_understand_anger',
  'understand_anger_chanc',
  'anger_chanc_find',
  'chanc_find_someon',
  'find_someon_sinc',
  'someon_sinc_lose',
  'sinc_lose_mom',
  'lose_mom_put',
  'mom_put_jeopardi',
  'put_jeopardi_dad',
  'jeopardi_dad_devast',
  'dad_devast_think',
  'devast_think_go',
  'think_go_far',
  'go_far_ruin',
  'far_ruin_marriag',
  'ruin_marriag_way',
  'marriag_way_includ',
  'way_includ_live',
  'includ_live_could',
  'live_could_start',
  'could_start_relationship',
  'start_relationship_say',
  'relationship_say_ruin',
  'say_ruin_also',
  'ruin_also_possibl',
  'also_possibl_wreck',
  'possibl_wreck_marriag',
  'wreck_marriag_agre',
  'marriag_agre_couldv',
  'agre_couldv_avoid',
  'couldv_avoid_say',
  'avoid_say_anyth',
  'say_anyth_hard',
  'anyth_hard_tell',
  'hard_tell_truth',
  'tell_truth_lie',
  'truth_lie_made',
  'lie_made_seem',
  'made_seem_like',
  'seem_like_noth',
  'like_noth_seriou',
  'noth_seriou_ignor',
  'seriou_ignor_happen',
  'ignor_happen_idk',
  'happen_idk_right',
  'idk_right_call',
  'right_call_sinc',
  'call_sinc_put',
  'sinc_put_whole',
  'put_whole_marriag',
  'whole_marriag_risk'],
 ['updat',
  'throwaway',
  'account',
  'use',
  'reddit',
  'girlfriend',
  'nat',
  'particular',
  'sens',
  'style',
  'pictur',
  'harley',
  'finkl',
  'wizard',
  'waverli',
  'place',
  'get',
  'idea',
  'get',
  'wrong',
  'never',
  'problem',
  'fact',
  'love',
  'way',
  'dress',
  'love',
  'happi',
  'happi',
  'thing',
  'sometim',
  'like',
  'incorpor',
  'meme',
  'cloth',
  'problem',
  'cute',
  'want',
  'wear',
  'dress',
  'inspir',
  'meme',
  'gay',
  'rat',
  'wed',
  'friend',
  'wed',
  'fiancé',
  'gay',
  'told',
  'mayb',
  'realli',
  'appropri',
  'dress',
  'question',
  'would',
  'full',
  'littl',
  'stuf',
  'rat',
  'pride',
  'flag',
  'big',
  'support',
  'gay',
  'rat',
  'front',
  'friend',
  'big',
  'fan',
  'way',
  'gf',
  'dress',
  'think',
  'dress',
  'may',
  'caus',
  'certain',
  'uproar',
  'wed',
  'nat',
  'upset',
  'claim',
  'throw',
  'water',
  'flame',
  'creativ',
  'wed',
  'next',
  'month',
  'plenti',
  'time',
  'think',
  'anoth',
  'thing',
  'wear',
  'let',
  'go',
  'dress',
  'asshol',
  'situat',
  'updat',
  'well',
  'guy',
  'mani',
  'point',
  'comment',
  'get',
  'throwaway',
  'account',
  'help',
  'found',
  'post',
  'guess',
  'specif',
  'updat',
  'soon',
  'final',
  'updat',
  'hello',
  'everyon',
  'would',
  'like',
  'thank',
  'judgment',
  'advic',
  'opinion',
  'post',
  'greatli',
  'appreci',
  'so…',
  'convers',
  'go',
  'well',
  'livid',
  'expos',
  'way',
  'although',
  'show',
  'comment',
  'import',
  'one',
  'lgbtqia',
  'commun',
  'refus',
  'admit',
  'dress',
  'poor',
  'choic',
  'fact',
  'way',
  'appreci',
  'gay',
  'sit',
  'well',
  'love',
  'move',
  'mountain',
  'maintain',
  'relationship',
  'homophob',
  'go',
  'wed',
  'singl',
  'rat-free-dress',
  'man',
  'reach',
  'friend',
  'send',
  'post',
  'thought',
  'situat',
  'hilari',
  'show',
  'dress',
  'would',
  'def',
  'kick',
  'us',
  'curb',
  'guess',
  'ps',
  'deepli',
  'sorri',
  'misspel',
  'harpey',
  'name',
  'happen',
  'lol',
  'updat_throwaway',
  'throwaway_account',
  'account_use',
  'use_reddit',
  'reddit_girlfriend',
  'girlfriend_nat',
  'nat_particular',
  'particular_sens',
  'sens_style',
  'style_pictur',
  'pictur_harley',
  'harley_finkl',
  'finkl_wizard',
  'wizard_waverli',
  'waverli_place',
  'place_get',
  'get_idea',
  'idea_get',
  'get_wrong',
  'wrong_never',
  'never_problem',
  'problem_fact',
  'fact_love',
  'love_way',
  'way_dress',
  'dress_love',
  'love_happi',
  'happi_happi',
  'happi_thing',
  'thing_sometim',
  'sometim_like',
  'like_incorpor',
  'incorpor_meme',
  'meme_cloth',
  'cloth_problem',
  'problem_cute',
  'cute_want',
  'want_wear',
  'wear_dress',
  'dress_inspir',
  'inspir_meme',
  'meme_gay',
  'gay_rat',
  'rat_wed',
  'wed_friend',
  'friend_wed',
  'wed_fiancé',
  'fiancé_gay',
  'gay_told',
  'told_mayb',
  'mayb_realli',
  'realli_appropri',
  'appropri_dress',
  'dress_question',
  'question_would',
  'would_full',
  'full_littl',
  'littl_stuf',
  'stuf_rat',
  'rat_pride',
  'pride_flag',
  'flag_big',
  'big_support',
  'support_gay',
  'gay_rat',
  'rat_front',
  'front_friend',
  'friend_big',
  'big_fan',
  'fan_way',
  'way_gf',
  'gf_dress',
  'dress_think',
  'think_dress',
  'dress_may',
  'may_caus',
  'caus_certain',
  'certain_uproar',
  'uproar_wed',
  'wed_nat',
  'nat_upset',
  'upset_claim',
  'claim_throw',
  'throw_water',
  'water_flame',
  'flame_creativ',
  'creativ_wed',
  'wed_next',
  'next_month',
  'month_plenti',
  'plenti_time',
  'time_think',
  'think_anoth',
  'anoth_thing',
  'thing_wear',
  'wear_let',
  'let_go',
  'go_dress',
  'dress_asshol',
  'asshol_situat',
  'situat_updat',
  'updat_well',
  'well_guy',
  'guy_mani',
  'mani_point',
  'point_comment',
  'comment_get',
  'get_throwaway',
  'throwaway_account',
  'account_help',
  'help_found',
  'found_post',
  'post_guess',
  'guess_specif',
  'specif_updat',
  'updat_soon',
  'soon_final',
  'final_updat',
  'updat_hello',
  'hello_everyon',
  'everyon_would',
  'would_like',
  'like_thank',
  'thank_judgment',
  'judgment_advic',
  'advic_opinion',
  'opinion_post',
  'post_greatli',
  'greatli_appreci',
  'appreci_so…',
  'so…_convers',
  'convers_go',
  'go_well',
  'well_livid',
  'livid_expos',
  'expos_way',
  'way_although',
  'although_show',
  'show_comment',
  'comment_import',
  'import_one',
  'one_lgbtqia',
  'lgbtqia_commun',
  'commun_refus',
  'refus_admit',
  'admit_dress',
  'dress_poor',
  'poor_choic',
  'choic_fact',
  'fact_way',
  'way_appreci',
  'appreci_gay',
  'gay_sit',
  'sit_well',
  'well_love',
  'love_move',
  'move_mountain',
  'mountain_maintain',
  'maintain_relationship',
  'relationship_homophob',
  'homophob_go',
  'go_wed',
  'wed_singl',
  'singl_rat-free-dress',
  'rat-free-dress_man',
  'man_reach',
  'reach_friend',
  'friend_send',
  'send_post',
  'post_thought',
  'thought_situat',
  'situat_hilari',
  'hilari_show',
  'show_dress',
  'dress_would',
  'would_def',
  'def_kick',
  'kick_us',
  'us_curb',
  'curb_guess',
  'guess_ps',
  'ps_deepli',
  'deepli_sorri',
  'sorri_misspel',
  'misspel_harpey',
  'harpey_name',
  'name_happen',
  'happen_lol',
  'updat_throwaway_account',
  'throwaway_account_use',
  'account_use_reddit',
  'use_reddit_girlfriend',
  'reddit_girlfriend_nat',
  'girlfriend_nat_particular',
  'nat_particular_sens',
  'particular_sens_style',
  'sens_style_pictur',
  'style_pictur_harley',
  'pictur_harley_finkl',
  'harley_finkl_wizard',
  'finkl_wizard_waverli',
  'wizard_waverli_place',
  'waverli_place_get',
  'place_get_idea',
  'get_idea_get',
  'idea_get_wrong',
  'get_wrong_never',
  'wrong_never_problem',
  'never_problem_fact',
  'problem_fact_love',
  'fact_love_way',
  'love_way_dress',
  'way_dress_love',
  'dress_love_happi',
  'love_happi_happi',
  'happi_happi_thing',
  'happi_thing_sometim',
  'thing_sometim_like',
  'sometim_like_incorpor',
  'like_incorpor_meme',
  'incorpor_meme_cloth',
  'meme_cloth_problem',
  'cloth_problem_cute',
  'problem_cute_want',
  'cute_want_wear',
  'want_wear_dress',
  'wear_dress_inspir',
  'dress_inspir_meme',
  'inspir_meme_gay',
  'meme_gay_rat',
  'gay_rat_wed',
  'rat_wed_friend',
  'wed_friend_wed',
  'friend_wed_fiancé',
  'wed_fiancé_gay',
  'fiancé_gay_told',
  'gay_told_mayb',
  'told_mayb_realli',
  'mayb_realli_appropri',
  'realli_appropri_dress',
  'appropri_dress_question',
  'dress_question_would',
  'question_would_full',
  'would_full_littl',
  'full_littl_stuf',
  'littl_stuf_rat',
  'stuf_rat_pride',
  'rat_pride_flag',
  'pride_flag_big',
  'flag_big_support',
  'big_support_gay',
  'support_gay_rat',
  'gay_rat_front',
  'rat_front_friend',
  'front_friend_big',
  'friend_big_fan',
  'big_fan_way',
  'fan_way_gf',
  'way_gf_dress',
  'gf_dress_think',
  'dress_think_dress',
  'think_dress_may',
  'dress_may_caus',
  'may_caus_certain',
  'caus_certain_uproar',
  'certain_uproar_wed',
  'uproar_wed_nat',
  'wed_nat_upset',
  'nat_upset_claim',
  'upset_claim_throw',
  'claim_throw_water',
  'throw_water_flame',
  'water_flame_creativ',
  'flame_creativ_wed',
  'creativ_wed_next',
  'wed_next_month',
  'next_month_plenti',
  'month_plenti_time',
  'plenti_time_think',
  'time_think_anoth',
  'think_anoth_thing',
  'anoth_thing_wear',
  'thing_wear_let',
  'wear_let_go',
  'let_go_dress',
  'go_dress_asshol',
  'dress_asshol_situat',
  'asshol_situat_updat',
  'situat_updat_well',
  'updat_well_guy',
  'well_guy_mani',
  'guy_mani_point',
  'mani_point_comment',
  'point_comment_get',
  'comment_get_throwaway',
  'get_throwaway_account',
  'throwaway_account_help',
  'account_help_found',
  'help_found_post',
  'found_post_guess',
  'post_guess_specif',
  'guess_specif_updat',
  'specif_updat_soon',
  'updat_soon_final',
  'soon_final_updat',
  'final_updat_hello',
  'updat_hello_everyon',
  'hello_everyon_would',
  'everyon_would_like',
  'would_like_thank',
  'like_thank_judgment',
  'thank_judgment_advic',
  'judgment_advic_opinion',
  'advic_opinion_post',
  'opinion_post_greatli',
  'post_greatli_appreci',
  'greatli_appreci_so…',
  'appreci_so…_convers',
  'so…_convers_go',
  'convers_go_well',
  'go_well_livid',
  'well_livid_expos',
  'livid_expos_way',
  'expos_way_although',
  'way_although_show',
  'although_show_comment',
  'show_comment_import',
  'comment_import_one',
  'import_one_lgbtqia',
  'one_lgbtqia_commun',
  'lgbtqia_commun_refus',
  'commun_refus_admit',
  'refus_admit_dress',
  'admit_dress_poor',
  'dress_poor_choic',
  'poor_choic_fact',
  'choic_fact_way',
  'fact_way_appreci',
  'way_appreci_gay',
  'appreci_gay_sit',
  'gay_sit_well',
  'sit_well_love',
  'well_love_move',
  'love_move_mountain',
  'move_mountain_maintain',
  'mountain_maintain_relationship',
  'maintain_relationship_homophob',
  'relationship_homophob_go',
  'homophob_go_wed',
  'go_wed_singl',
  'wed_singl_rat-free-dress',
  'singl_rat-free-dress_man',
  'rat-free-dress_man_reach',
  'man_reach_friend',
  'reach_friend_send',
  'friend_send_post',
  'send_post_thought',
  'post_thought_situat',
  'thought_situat_hilari',
  'situat_hilari_show',
  'hilari_show_dress',
  'show_dress_would',
  'dress_would_def',
  'would_def_kick',
  'def_kick_us',
  'kick_us_curb',
  'us_curb_guess',
  'curb_guess_ps',
  'guess_ps_deepli',
  'ps_deepli_sorri',
  'deepli_sorri_misspel',
  'sorri_misspel_harpey',
  'misspel_harpey_name',
  'harpey_name_happen',
  'name_happen_lol'],
 ['get',
  'marri',
  'fianc´',
  'next',
  'year',
  'got',
  'engag',
  'suggest',
  'might',
  'nice',
  'ask',
  'fiancé',
  'niec',
  'want',
  'bridesmaid',
  'ive',
  'met',
  'coupl',
  'time',
  'close',
  'seem',
  'like',
  'cool',
  'kid',
  'thought',
  'might',
  'nice',
  'way',
  'us',
  'bond',
  'get',
  'know',
  'involv',
  'wed',
  'side',
  'note',
  '-',
  'niec',
  'nephew',
  'either',
  'side',
  'famili',
  'anyway',
  'cut',
  'week',
  'ago',
  'fiancé',
  'hometown',
  'visit',
  'famili',
  'discuss',
  'wedding-rel',
  'stuff',
  'brother',
  'sister-in-law',
  'daughter',
  'came',
  'notic',
  'time',
  'dress',
  'lot',
  'androgyn',
  'rememb',
  'topic',
  'move',
  'wed',
  'dress',
  'bridesmaid',
  'dress',
  'could',
  'see',
  'immedi',
  'uncomfort',
  'parent',
  'mum',
  'realli',
  'grandma',
  'make',
  'comment',
  'shed',
  'need',
  'feminin',
  'brush',
  'hair',
  'etc',
  'nice',
  'would',
  'see',
  'like',
  'ill',
  'honest',
  'say',
  'hit',
  'nerv',
  'much',
  'tomboy',
  'teenag',
  'even',
  'though',
  'im',
  'anymor',
  'absolut',
  'broke',
  'whenev',
  'rel',
  'would',
  'say',
  'thing',
  'like',
  'eventu',
  'mother',
  'made',
  'comment',
  'along',
  'line',
  'itll',
  'nice',
  'see',
  'dress',
  'like',
  'girl',
  'look',
  'realli',
  'sad',
  'embarrass',
  'upset',
  'respons',
  '*',
  'realli',
  '*',
  'hit',
  'nerv',
  'immedi',
  'told',
  'maid',
  'honour',
  'would',
  'wear',
  'trouser',
  'suit',
  'wed',
  'dress',
  'id',
  'given',
  'bridesmaid',
  'option',
  'wear',
  'anyth',
  'want',
  'long',
  'wed',
  'colour',
  'make',
  'thing',
  'easier',
  'pull',
  'phone',
  'start',
  'show',
  'photo',
  'idea',
  'friend',
  'sent',
  'jumpsuit',
  'culott',
  'trouser',
  'suit',
  'tailor',
  'tux',
  'etc',
  'let',
  'know',
  'could',
  'pick',
  'anyth',
  'want',
  '-',
  'could',
  'even',
  'wear',
  'jean',
  'trainer',
  'made',
  'comfort',
  '–',
  'wed',
  'fashion',
  'show',
  'niec',
  'perk',
  'bit',
  'said',
  'mum',
  'look',
  'realli',
  'piss',
  'sinc',
  'ask',
  'fiancé',
  'pressur',
  'get',
  'bridesmaid',
  'dress',
  'daughter',
  'wear',
  'one',
  'lol',
  'husband',
  'give',
  'shit',
  'wear',
  'obvious',
  'also',
  'want',
  'famili',
  'argu',
  'wed',
  'day',
  'want',
  'back',
  'know',
  'feel',
  'like',
  'pressur',
  'wear',
  'someth',
  'make',
  'uncomfort',
  'hand',
  'know',
  'day',
  'itd',
  'make',
  'famili',
  'happi',
  'aita',
  'tri',
  'overrul',
  'parent',
  'get_marri',
  'marri_fianc´',
  'fianc´_next',
  'next_year',
  'year_got',
  'got_engag',
  'engag_suggest',
  'suggest_might',
  'might_nice',
  'nice_ask',
  'ask_fiancé',
  'fiancé_niec',
  'niec_want',
  'want_bridesmaid',
  'bridesmaid_ive',
  'ive_met',
  'met_coupl',
  'coupl_time',
  'time_close',
  'close_seem',
  'seem_like',
  'like_cool',
  'cool_kid',
  'kid_thought',
  'thought_might',
  'might_nice',
  'nice_way',
  'way_us',
  'us_bond',
  'bond_get',
  'get_know',
  'know_involv',
  'involv_wed',
  'wed_side',
  'side_note',
  'note_-',
  '-_niec',
  'niec_nephew',
  'nephew_either',
  'either_side',
  'side_famili',
  'famili_anyway',
  'anyway_cut',
  'cut_week',
  'week_ago',
  'ago_fiancé',
  'fiancé_hometown',
  'hometown_visit',
  'visit_famili',
  'famili_discuss',
  'discuss_wedding-rel',
  'wedding-rel_stuff',
  'stuff_brother',
  'brother_sister-in-law',
  'sister-in-law_daughter',
  'daughter_came',
  'came_notic',
  'notic_time',
  'time_dress',
  'dress_lot',
  'lot_androgyn',
  'androgyn_rememb',
  'rememb_topic',
  'topic_move',
  'move_wed',
  'wed_dress',
  'dress_bridesmaid',
  'bridesmaid_dress',
  'dress_could',
  'could_see',
  'see_immedi',
  'immedi_uncomfort',
  'uncomfort_parent',
  'parent_mum',
  'mum_realli',
  'realli_grandma',
  'grandma_make',
  'make_comment',
  'comment_shed',
  'shed_need',
  'need_feminin',
  'feminin_brush',
  'brush_hair',
  'hair_etc',
  'etc_nice',
  'nice_would',
  'would_see',
  'see_like',
  'like_ill',
  'ill_honest',
  'honest_say',
  'say_hit',
  'hit_nerv',
  'nerv_much',
  'much_tomboy',
  'tomboy_teenag',
  'teenag_even',
  'even_though',
  'though_im',
  'im_anymor',
  'anymor_absolut',
  'absolut_broke',
  'broke_whenev',
  'whenev_rel',
  'rel_would',
  'would_say',
  'say_thing',
  'thing_like',
  'like_eventu',
  'eventu_mother',
  'mother_made',
  'made_comment',
  'comment_along',
  'along_line',
  'line_itll',
  'itll_nice',
  'nice_see',
  'see_dress',
  'dress_like',
  'like_girl',
  'girl_look',
  'look_realli',
  'realli_sad',
  'sad_embarrass',
  'embarrass_upset',
  'upset_respons',
  'respons_*',
  '*_realli',
  'realli_*',
  '*_hit',
  'hit_nerv',
  'nerv_immedi',
  'immedi_told',
  'told_maid',
  'maid_honour',
  'honour_would',
  'would_wear',
  'wear_trouser',
  'trouser_suit',
  'suit_wed',
  'wed_dress',
  'dress_id',
  'id_given',
  'given_bridesmaid',
  'bridesmaid_option',
  'option_wear',
  'wear_anyth',
  'anyth_want',
  'want_long',
  'long_wed',
  'wed_colour',
  'colour_make',
  'make_thing',
  'thing_easier',
  'easier_pull',
  'pull_phone',
  'phone_start',
  'start_show',
  'show_photo',
  'photo_idea',
  'idea_friend',
  'friend_sent',
  'sent_jumpsuit',
  'jumpsuit_culott',
  'culott_trouser',
  'trouser_suit',
  'suit_tailor',
  'tailor_tux',
  'tux_etc',
  'etc_let',
  'let_know',
  'know_could',
  'could_pick',
  'pick_anyth',
  'anyth_want',
  'want_-',
  '-_could',
  'could_even',
  'even_wear',
  'wear_jean',
  'jean_trainer',
  'trainer_made',
  'made_comfort',
  'comfort_–',
  '–_wed',
  'wed_fashion',
  'fashion_show',
  'show_niec',
  'niec_perk',
  'perk_bit',
  'bit_said',
  'said_mum',
  'mum_look',
  'look_realli',
  'realli_piss',
  'piss_sinc',
  'sinc_ask',
  'ask_fiancé',
  'fiancé_pressur',
  'pressur_get',
  'get_bridesmaid',
  'bridesmaid_dress',
  'dress_daughter',
  'daughter_wear',
  'wear_one',
  'one_lol',
  'lol_husband',
  'husband_give',
  'give_shit',
  'shit_wear',
  'wear_obvious',
  'obvious_also',
  'also_want',
  'want_famili',
  'famili_argu',
  'argu_wed',
  'wed_day',
  'day_want',
  'want_back',
  'back_know',
  'know_feel',
  'feel_like',
  'like_pressur',
  'pressur_wear',
  'wear_someth',
  'someth_make',
  'make_uncomfort',
  'uncomfort_hand',
  'hand_know',
  'know_day',
  'day_itd',
  'itd_make',
  'make_famili',
  'famili_happi',
  'happi_aita',
  'aita_tri',
  'tri_overrul',
  'overrul_parent',
  'get_marri_fianc´',
  'marri_fianc´_next',
  'fianc´_next_year',
  'next_year_got',
  'year_got_engag',
  'got_engag_suggest',
  'engag_suggest_might',
  'suggest_might_nice',
  'might_nice_ask',
  'nice_ask_fiancé',
  'ask_fiancé_niec',
  'fiancé_niec_want',
  'niec_want_bridesmaid',
  'want_bridesmaid_ive',
  'bridesmaid_ive_met',
  'ive_met_coupl',
  'met_coupl_time',
  'coupl_time_close',
  'time_close_seem',
  'close_seem_like',
  'seem_like_cool',
  'like_cool_kid',
  'cool_kid_thought',
  'kid_thought_might',
  'thought_might_nice',
  'might_nice_way',
  'nice_way_us',
  'way_us_bond',
  'us_bond_get',
  'bond_get_know',
  'get_know_involv',
  'know_involv_wed',
  'involv_wed_side',
  'wed_side_note',
  'side_note_-',
  'note_-_niec',
  '-_niec_nephew',
  'niec_nephew_either',
  'nephew_either_side',
  'either_side_famili',
  'side_famili_anyway',
  'famili_anyway_cut',
  'anyway_cut_week',
  'cut_week_ago',
  'week_ago_fiancé',
  'ago_fiancé_hometown',
  'fiancé_hometown_visit',
  'hometown_visit_famili',
  'visit_famili_discuss',
  'famili_discuss_wedding-rel',
  'discuss_wedding-rel_stuff',
  'wedding-rel_stuff_brother',
  'stuff_brother_sister-in-law',
  'brother_sister-in-law_daughter',
  'sister-in-law_daughter_came',
  'daughter_came_notic',
  'came_notic_time',
  'notic_time_dress',
  'time_dress_lot',
  'dress_lot_androgyn',
  'lot_androgyn_rememb',
  'androgyn_rememb_topic',
  'rememb_topic_move',
  'topic_move_wed',
  'move_wed_dress',
  'wed_dress_bridesmaid',
  'dress_bridesmaid_dress',
  'bridesmaid_dress_could',
  'dress_could_see',
  'could_see_immedi',
  'see_immedi_uncomfort',
  'immedi_uncomfort_parent',
  'uncomfort_parent_mum',
  'parent_mum_realli',
  'mum_realli_grandma',
  'realli_grandma_make',
  'grandma_make_comment',
  'make_comment_shed',
  'comment_shed_need',
  'shed_need_feminin',
  'need_feminin_brush',
  'feminin_brush_hair',
  'brush_hair_etc',
  'hair_etc_nice',
  'etc_nice_would',
  'nice_would_see',
  'would_see_like',
  'see_like_ill',
  'like_ill_honest',
  'ill_honest_say',
  'honest_say_hit',
  'say_hit_nerv',
  'hit_nerv_much',
  'nerv_much_tomboy',
  'much_tomboy_teenag',
  'tomboy_teenag_even',
  'teenag_even_though',
  'even_though_im',
  'though_im_anymor',
  'im_anymor_absolut',
  'anymor_absolut_broke',
  'absolut_broke_whenev',
  'broke_whenev_rel',
  'whenev_rel_would',
  'rel_would_say',
  'would_say_thing',
  'say_thing_like',
  'thing_like_eventu',
  'like_eventu_mother',
  'eventu_mother_made',
  'mother_made_comment',
  'made_comment_along',
  'comment_along_line',
  'along_line_itll',
  'line_itll_nice',
  'itll_nice_see',
  'nice_see_dress',
  'see_dress_like',
  'dress_like_girl',
  'like_girl_look',
  'girl_look_realli',
  'look_realli_sad',
  'realli_sad_embarrass',
  'sad_embarrass_upset',
  'embarrass_upset_respons',
  'upset_respons_*',
  'respons_*_realli',
  '*_realli_*',
  'realli_*_hit',
  '*_hit_nerv',
  'hit_nerv_immedi',
  'nerv_immedi_told',
  'immedi_told_maid',
  'told_maid_honour',
  'maid_honour_would',
  'honour_would_wear',
  'would_wear_trouser',
  'wear_trouser_suit',
  'trouser_suit_wed',
  'suit_wed_dress',
  'wed_dress_id',
  'dress_id_given',
  'id_given_bridesmaid',
  'given_bridesmaid_option',
  'bridesmaid_option_wear',
  'option_wear_anyth',
  'wear_anyth_want',
  'anyth_want_long',
  'want_long_wed',
  'long_wed_colour',
  'wed_colour_make',
  'colour_make_thing',
  'make_thing_easier',
  'thing_easier_pull',
  'easier_pull_phone',
  'pull_phone_start',
  'phone_start_show',
  'start_show_photo',
  'show_photo_idea',
  'photo_idea_friend',
  'idea_friend_sent',
  'friend_sent_jumpsuit',
  'sent_jumpsuit_culott',
  'jumpsuit_culott_trouser',
  'culott_trouser_suit',
  'trouser_suit_tailor',
  'suit_tailor_tux',
  'tailor_tux_etc',
  'tux_etc_let',
  'etc_let_know',
  'let_know_could',
  'know_could_pick',
  'could_pick_anyth',
  'pick_anyth_want',
  'anyth_want_-',
  'want_-_could',
  '-_could_even',
  'could_even_wear',
  'even_wear_jean',
  'wear_jean_trainer',
  'jean_trainer_made',
  'trainer_made_comfort',
  'made_comfort_–',
  'comfort_–_wed',
  '–_wed_fashion',
  'wed_fashion_show',
  'fashion_show_niec',
  'show_niec_perk',
  'niec_perk_bit',
  'perk_bit_said',
  'bit_said_mum',
  'said_mum_look',
  'mum_look_realli',
  'look_realli_piss',
  'realli_piss_sinc',
  'piss_sinc_ask',
  'sinc_ask_fiancé',
  'ask_fiancé_pressur',
  'fiancé_pressur_get',
  'pressur_get_bridesmaid',
  'get_bridesmaid_dress',
  'bridesmaid_dress_daughter',
  'dress_daughter_wear',
  'daughter_wear_one',
  'wear_one_lol',
  'one_lol_husband',
  'lol_husband_give',
  'husband_give_shit',
  'give_shit_wear',
  'shit_wear_obvious',
  'wear_obvious_also',
  'obvious_also_want',
  'also_want_famili',
  'want_famili_argu',
  'famili_argu_wed',
  'argu_wed_day',
  'wed_day_want',
  'day_want_back',
  'want_back_know',
  'back_know_feel',
  'know_feel_like',
  'feel_like_pressur',
  'like_pressur_wear',
  'pressur_wear_someth',
  'wear_someth_make',
  'someth_make_uncomfort',
  'make_uncomfort_hand',
  'uncomfort_hand_know',
  'hand_know_day',
  'know_day_itd',
  'day_itd_make',
  'itd_make_famili',
  'make_famili_happi',
  'famili_happi_aita',
  'happi_aita_tri',
  'aita_tri_overrul',
  'tri_overrul_parent'],
 ['daughter',
  'im',
  'tri',
  'teach',
  'way',
  'creat',
  'respect',
  'boundari',
  'age',
  'appropri',
  'teach',
  'ok',
  'say',
  'thing',
  'feel',
  'uncomfort',
  'boy',
  'class',
  'keep',
  'bother',
  'femal',
  'friend',
  'recess',
  'ive',
  'encourag',
  'go',
  'teacher',
  'happen',
  'daughter',
  'told',
  'day',
  'ago',
  'class',
  'teacher',
  'ask',
  'kid',
  'form',
  'group',
  'four',
  'five',
  'form',
  'group',
  'five',
  'girl',
  'boy',
  'give',
  'troubl',
  'recess',
  'came',
  'said',
  'join',
  'group',
  'anoth',
  'girl',
  'said',
  'alreadi',
  'five',
  'work',
  'group',
  'two',
  'three',
  'peopl',
  'said',
  'teacher',
  'said',
  'four',
  'five',
  'daughter',
  'said',
  'want',
  'work',
  'find',
  'anoth',
  'group',
  'girl',
  'agre',
  'said',
  'cant',
  'exclud',
  'like',
  'class',
  'rule',
  'said',
  'care',
  'heard',
  'daughter',
  'first',
  'way',
  'talk',
  'firm',
  'unkind',
  'got',
  'email',
  'teacher',
  'say',
  'want',
  'call',
  'said',
  'incid',
  'school',
  'daughter',
  'exclud',
  'anoth',
  'child',
  'allow',
  'class',
  'want',
  'talk',
  'tell',
  'event',
  'daughter',
  'felt',
  'proud',
  'daughter',
  'honesti',
  'sent',
  'email',
  'say',
  'dear',
  'mr',
  'teacher',
  'im',
  'sorri',
  'lesson',
  'feel',
  'comfort',
  'teach',
  'daughter',
  'age',
  'alreadi',
  'deal',
  'unwant',
  'attent',
  'im',
  'make',
  'point',
  'teach',
  'around',
  'anyon',
  'make',
  'uncomfort',
  'young',
  'ladi',
  'abl',
  'choos',
  'spend',
  'time',
  'peopl',
  'make',
  'feel',
  'respect',
  'understand',
  'alreadi',
  'awar',
  'boy',
  'behav',
  'way',
  'feel',
  'uncomfort',
  'recess',
  'prior',
  'convers',
  'think',
  'danger',
  'lesson',
  'teach',
  'girl',
  'includ',
  'kind',
  'everyon',
  'instead',
  'teach',
  'awar',
  'someon',
  'respect',
  'step',
  'situat',
  'hope',
  'explain',
  'much',
  'detail',
  'find',
  'import',
  'put',
  'briefli',
  'brought',
  'includ',
  'everyon',
  'mindset',
  'except',
  'taught',
  'ignor',
  'comfort',
  'level',
  'becam',
  'young',
  'adult',
  'becam',
  'victim',
  'men',
  'use',
  'inabl',
  'say',
  'advantag',
  'danger',
  'lesson',
  'longer',
  'appropri',
  'age',
  'thank',
  'op',
  'email',
  'back',
  'ask',
  'meet',
  'person',
  'princip',
  'im',
  'prepar',
  'wonder',
  'email',
  'harsh',
  'aita',
  'respons',
  'daughter',
  'teacher',
  'edit',
  'updat',
  'reach',
  'parent',
  'four',
  'girl',
  'class',
  'involv',
  'coordin',
  'go',
  'speak',
  'school',
  'administr',
  'togeth',
  'similar',
  'view',
  'think',
  'inappropri',
  'school',
  'expect',
  'girl',
  'work',
  'someon',
  'theyr',
  'comfort',
  'frustrat',
  'teacher',
  'deal',
  'issu',
  'recess',
  'made',
  'girl',
  'uncomfort',
  'start',
  'end',
  'ask',
  'school',
  'could',
  'reschedul',
  'meet',
  'time',
  'involv',
  'famili',
  'could',
  'make',
  'end',
  'meet',
  'afternoon',
  'along',
  'husband',
  'anoth',
  'coupl',
  'two',
  'mother',
  'father',
  'along',
  'teacher',
  'princip',
  'present',
  'unit',
  'front',
  'ask',
  'follow',
  'school',
  'train',
  'teacher',
  'trauma-inform',
  'teach',
  'method',
  'danger',
  'expect',
  'young',
  'women',
  'go',
  'best',
  'judgement',
  'boundari',
  'nice',
  'instead',
  'includ',
  'everyon',
  'kid',
  'allow',
  'respect',
  'set',
  'boundari',
  'taught',
  'respect',
  'boundari',
  'school',
  'address',
  'harass',
  'class',
  'recess',
  'enabl',
  'continu',
  'went',
  'talk',
  'think',
  'went',
  'lot',
  'better',
  'parent',
  'join',
  'instead',
  'id',
  'gone',
  'alon',
  'teacher',
  'princip',
  'apolog',
  'princip',
  'agre',
  'look',
  'resourc',
  'better',
  'navig',
  'balanc',
  'inclus',
  'forc',
  'kid',
  'includ',
  'someon',
  'cross',
  'line',
  'thank',
  'lot',
  'amaz',
  'advic',
  'comment',
  'believ',
  'much',
  'blew',
  'im',
  'grate',
  'everyon',
  'repli',
  'advic',
  'support',
  'honestli',
  'get',
  'pretti',
  'emot',
  'hear',
  'lesson',
  'im',
  'tri',
  'teach',
  'littl',
  'one',
  'reson',
  'women',
  'whether',
  'theyr',
  'mom',
  'struggl',
  'daughter_im',
  'im_tri',
  'tri_teach',
  'teach_way',
  'way_creat',
  'creat_respect',
  'respect_boundari',
  'boundari_age',
  'age_appropri',
  'appropri_teach',
  'teach_ok',
  'ok_say',
  'say_thing',
  'thing_feel',
  'feel_uncomfort',
  'uncomfort_boy',
  'boy_class',
  'class_keep',
  'keep_bother',
  'bother_femal',
  'femal_friend',
  'friend_recess',
  'recess_ive',
  'ive_encourag',
  'encourag_go',
  'go_teacher',
  'teacher_happen',
  'happen_daughter',
  'daughter_told',
  'told_day',
  'day_ago',
  'ago_class',
  'class_teacher',
  'teacher_ask',
  'ask_kid',
  'kid_form',
  'form_group',
  'group_four',
  'four_five',
  'five_form',
  'form_group',
  'group_five',
  'five_girl',
  'girl_boy',
  'boy_give',
  'give_troubl',
  'troubl_recess',
  'recess_came',
  'came_said',
  'said_join',
  'join_group',
  'group_anoth',
  'anoth_girl',
  'girl_said',
  'said_alreadi',
  'alreadi_five',
  'five_work',
  'work_group',
  'group_two',
  'two_three',
  'three_peopl',
  'peopl_said',
  'said_teacher',
  'teacher_said',
  'said_four',
  'four_five',
  'five_daughter',
  'daughter_said',
  'said_want',
  'want_work',
  'work_find',
  'find_anoth',
  'anoth_group',
  'group_girl',
  'girl_agre',
  'agre_said',
  'said_cant',
  'cant_exclud',
  'exclud_like',
  'like_class',
  'class_rule',
  'rule_said',
  'said_care',
  'care_heard',
  'heard_daughter',
  'daughter_first',
  'first_way',
  'way_talk',
  'talk_firm',
  'firm_unkind',
  'unkind_got',
  'got_email',
  'email_teacher',
  'teacher_say',
  'say_want',
  'want_call',
  'call_said',
  'said_incid',
  'incid_school',
  'school_daughter',
  'daughter_exclud',
  'exclud_anoth',
  'anoth_child',
  'child_allow',
  'allow_class',
  'class_want',
  'want_talk',
  'talk_tell',
  'tell_event',
  'event_daughter',
  'daughter_felt',
  'felt_proud',
  'proud_daughter',
  'daughter_honesti',
  'honesti_sent',
  'sent_email',
  'email_say',
  'say_dear',
  'dear_mr',
  'mr_teacher',
  'teacher_im',
  'im_sorri',
  'sorri_lesson',
  'lesson_feel',
  'feel_comfort',
  'comfort_teach',
  'teach_daughter',
  'daughter_age',
  'age_alreadi',
  'alreadi_deal',
  'deal_unwant',
  'unwant_attent',
  'attent_im',
  'im_make',
  'make_point',
  'point_teach',
  'teach_around',
  'around_anyon',
  'anyon_make',
  'make_uncomfort',
  'uncomfort_young',
  'young_ladi',
  'ladi_abl',
  'abl_choos',
  'choos_spend',
  'spend_time',
  'time_peopl',
  'peopl_make',
  'make_feel',
  'feel_respect',
  'respect_understand',
  'understand_alreadi',
  'alreadi_awar',
  'awar_boy',
  'boy_behav',
  'behav_way',
  'way_feel',
  'feel_uncomfort',
  'uncomfort_recess',
  'recess_prior',
  'prior_convers',
  'convers_think',
  'think_danger',
  'danger_lesson',
  'lesson_teach',
  'teach_girl',
  'girl_includ',
  'includ_kind',
  'kind_everyon',
  'everyon_instead',
  'instead_teach',
  'teach_awar',
  'awar_someon',
  'someon_respect',
  'respect_step',
  'step_situat',
  'situat_hope',
  'hope_explain',
  'explain_much',
  'much_detail',
  'detail_find',
  'find_import',
  'import_put',
  'put_briefli',
  'briefli_brought',
  'brought_includ',
  'includ_everyon',
  'everyon_mindset',
  'mindset_except',
  'except_taught',
  'taught_ignor',
  'ignor_comfort',
  'comfort_level',
  'level_becam',
  'becam_young',
  'young_adult',
  'adult_becam',
  'becam_victim',
  'victim_men',
  'men_use',
  'use_inabl',
  'inabl_say',
  'say_advantag',
  'advantag_danger',
  'danger_lesson',
  'lesson_longer',
  'longer_appropri',
  'appropri_age',
  'age_thank',
  'thank_op',
  'op_email',
  'email_back',
  'back_ask',
  'ask_meet',
  'meet_person',
  'person_princip',
  'princip_im',
  'im_prepar',
  'prepar_wonder',
  'wonder_email',
  'email_harsh',
  'harsh_aita',
  'aita_respons',
  'respons_daughter',
  'daughter_teacher',
  'teacher_edit',
  'edit_updat',
  'updat_reach',
  'reach_parent',
  'parent_four',
  'four_girl',
  'girl_class',
  'class_involv',
  'involv_coordin',
  'coordin_go',
  'go_speak',
  'speak_school',
  'school_administr',
  'administr_togeth',
  'togeth_similar',
  'similar_view',
  'view_think',
  'think_inappropri',
  'inappropri_school',
  'school_expect',
  'expect_girl',
  'girl_work',
  'work_someon',
  'someon_theyr',
  'theyr_comfort',
  'comfort_frustrat',
  'frustrat_teacher',
  'teacher_deal',
  'deal_issu',
  'issu_recess',
  'recess_made',
  'made_girl',
  'girl_uncomfort',
  'uncomfort_start',
  'start_end',
  'end_ask',
  'ask_school',
  'school_could',
  'could_reschedul',
  'reschedul_meet',
  'meet_time',
  'time_involv',
  'involv_famili',
  'famili_could',
  'could_make',
  'make_end',
  'end_meet',
  'meet_afternoon',
  'afternoon_along',
  'along_husband',
  'husband_anoth',
  'anoth_coupl',
  'coupl_two',
  'two_mother',
  'mother_father',
  'father_along',
  'along_teacher',
  'teacher_princip',
  'princip_present',
  'present_unit',
  'unit_front',
  'front_ask',
  'ask_follow',
  'follow_school',
  'school_train',
  'train_teacher',
  'teacher_trauma-inform',
  'trauma-inform_teach',
  'teach_method',
  'method_danger',
  'danger_expect',
  'expect_young',
  'young_women',
  'women_go',
  'go_best',
  'best_judgement',
  'judgement_boundari',
  'boundari_nice',
  'nice_instead',
  'instead_includ',
  'includ_everyon',
  'everyon_kid',
  'kid_allow',
  'allow_respect',
  'respect_set',
  'set_boundari',
  'boundari_taught',
  'taught_respect',
  'respect_boundari',
  'boundari_school',
  'school_address',
  'address_harass',
  'harass_class',
  'class_recess',
  'recess_enabl',
  'enabl_continu',
  'continu_went',
  'went_talk',
  'talk_think',
  'think_went',
  'went_lot',
  'lot_better',
  'better_parent',
  'parent_join',
  'join_instead',
  'instead_id',
  'id_gone',
  'gone_alon',
  'alon_teacher',
  'teacher_princip',
  'princip_apolog',
  'apolog_princip',
  'princip_agre',
  'agre_look',
  'look_resourc',
  'resourc_better',
  'better_navig',
  'navig_balanc',
  'balanc_inclus',
  'inclus_forc',
  'forc_kid',
  'kid_includ',
  'includ_someon',
  'someon_cross',
  'cross_line',
  'line_thank',
  'thank_lot',
  'lot_amaz',
  'amaz_advic',
  'advic_comment',
  'comment_believ',
  'believ_much',
  'much_blew',
  'blew_im',
  'im_grate',
  'grate_everyon',
  'everyon_repli',
  'repli_advic',
  'advic_support',
  'support_honestli',
  'honestli_get',
  'get_pretti',
  'pretti_emot',
  'emot_hear',
  'hear_lesson',
  'lesson_im',
  'im_tri',
  'tri_teach',
  'teach_littl',
  'littl_one',
  'one_reson',
  'reson_women',
  'women_whether',
  'whether_theyr',
  'theyr_mom',
  'mom_struggl',
  'daughter_im_tri',
  'im_tri_teach',
  'tri_teach_way',
  'teach_way_creat',
  'way_creat_respect',
  'creat_respect_boundari',
  'respect_boundari_age',
  'boundari_age_appropri',
  'age_appropri_teach',
  'appropri_teach_ok',
  'teach_ok_say',
  'ok_say_thing',
  'say_thing_feel',
  'thing_feel_uncomfort',
  'feel_uncomfort_boy',
  'uncomfort_boy_class',
  'boy_class_keep',
  'class_keep_bother',
  'keep_bother_femal',
  'bother_femal_friend',
  'femal_friend_recess',
  'friend_recess_ive',
  'recess_ive_encourag',
  'ive_encourag_go',
  'encourag_go_teacher',
  'go_teacher_happen',
  'teacher_happen_daughter',
  'happen_daughter_told',
  'daughter_told_day',
  'told_day_ago',
  'day_ago_class',
  'ago_class_teacher',
  'class_teacher_ask',
  'teacher_ask_kid',
  'ask_kid_form',
  'kid_form_group',
  'form_group_four',
  'group_four_five',
  'four_five_form',
  'five_form_group',
  'form_group_five',
  'group_five_girl',
  'five_girl_boy',
  'girl_boy_give',
  'boy_give_troubl',
  'give_troubl_recess',
  'troubl_recess_came',
  'recess_came_said',
  'came_said_join',
  'said_join_group',
  'join_group_anoth',
  'group_anoth_girl',
  'anoth_girl_said',
  'girl_said_alreadi',
  'said_alreadi_five',
  'alreadi_five_work',
  'five_work_group',
  'work_group_two',
  'group_two_three',
  'two_three_peopl',
  'three_peopl_said',
  'peopl_said_teacher',
  'said_teacher_said',
  'teacher_said_four',
  'said_four_five',
  'four_five_daughter',
  'five_daughter_said',
  'daughter_said_want',
  'said_want_work',
  'want_work_find',
  'work_find_anoth',
  'find_anoth_group',
  'anoth_group_girl',
  'group_girl_agre',
  'girl_agre_said',
  'agre_said_cant',
  'said_cant_exclud',
  'cant_exclud_like',
  'exclud_like_class',
  'like_class_rule',
  'class_rule_said',
  'rule_said_care',
  'said_care_heard',
  'care_heard_daughter',
  'heard_daughter_first',
  'daughter_first_way',
  'first_way_talk',
  'way_talk_firm',
  'talk_firm_unkind',
  'firm_unkind_got',
  'unkind_got_email',
  'got_email_teacher',
  'email_teacher_say',
  'teacher_say_want',
  'say_want_call',
  'want_call_said',
  'call_said_incid',
  'said_incid_school',
  'incid_school_daughter',
  'school_daughter_exclud',
  'daughter_exclud_anoth',
  'exclud_anoth_child',
  'anoth_child_allow',
  'child_allow_class',
  'allow_class_want',
  'class_want_talk',
  'want_talk_tell',
  'talk_tell_event',
  'tell_event_daughter',
  'event_daughter_felt',
  'daughter_felt_proud',
  'felt_proud_daughter',
  'proud_daughter_honesti',
  'daughter_honesti_sent',
  'honesti_sent_email',
  'sent_email_say',
  'email_say_dear',
  'say_dear_mr',
  'dear_mr_teacher',
  'mr_teacher_im',
  'teacher_im_sorri',
  'im_sorri_lesson',
  'sorri_lesson_feel',
  'lesson_feel_comfort',
  'feel_comfort_teach',
  'comfort_teach_daughter',
  'teach_daughter_age',
  'daughter_age_alreadi',
  'age_alreadi_deal',
  'alreadi_deal_unwant',
  'deal_unwant_attent',
  'unwant_attent_im',
  'attent_im_make',
  'im_make_point',
  'make_point_teach',
  'point_teach_around',
  'teach_around_anyon',
  'around_anyon_make',
  'anyon_make_uncomfort',
  'make_uncomfort_young',
  'uncomfort_young_ladi',
  'young_ladi_abl',
  'ladi_abl_choos',
  'abl_choos_spend',
  'choos_spend_time',
  'spend_time_peopl',
  'time_peopl_make',
  'peopl_make_feel',
  'make_feel_respect',
  'feel_respect_understand',
  'respect_understand_alreadi',
  'understand_alreadi_awar',
  'alreadi_awar_boy',
  'awar_boy_behav',
  'boy_behav_way',
  'behav_way_feel',
  'way_feel_uncomfort',
  'feel_uncomfort_recess',
  'uncomfort_recess_prior',
  'recess_prior_convers',
  'prior_convers_think',
  'convers_think_danger',
  'think_danger_lesson',
  'danger_lesson_teach',
  'lesson_teach_girl',
  'teach_girl_includ',
  'girl_includ_kind',
  'includ_kind_everyon',
  'kind_everyon_instead',
  'everyon_instead_teach',
  'instead_teach_awar',
  'teach_awar_someon',
  'awar_someon_respect',
  'someon_respect_step',
  'respect_step_situat',
  'step_situat_hope',
  'situat_hope_explain',
  'hope_explain_much',
  'explain_much_detail',
  'much_detail_find',
  'detail_find_import',
  'find_import_put',
  'import_put_briefli',
  'put_briefli_brought',
  'briefli_brought_includ',
  'brought_includ_everyon',
  'includ_everyon_mindset',
  'everyon_mindset_except',
  'mindset_except_taught',
  'except_taught_ignor',
  'taught_ignor_comfort',
  'ignor_comfort_level',
  'comfort_level_becam',
  'level_becam_young',
  'becam_young_adult',
  'young_adult_becam',
  'adult_becam_victim',
  'becam_victim_men',
  'victim_men_use',
  'men_use_inabl',
  'use_inabl_say',
  'inabl_say_advantag',
  'say_advantag_danger',
  'advantag_danger_lesson',
  'danger_lesson_longer',
  'lesson_longer_appropri',
  'longer_appropri_age',
  'appropri_age_thank',
  'age_thank_op',
  'thank_op_email',
  'op_email_back',
  'email_back_ask',
  'back_ask_meet',
  'ask_meet_person',
  'meet_person_princip',
  'person_princip_im',
  'princip_im_prepar',
  'im_prepar_wonder',
  'prepar_wonder_email',
  'wonder_email_harsh',
  'email_harsh_aita',
  'harsh_aita_respons',
  'aita_respons_daughter',
  'respons_daughter_teacher',
  'daughter_teacher_edit',
  'teacher_edit_updat',
  'edit_updat_reach',
  'updat_reach_parent',
  'reach_parent_four',
  'parent_four_girl',
  'four_girl_class',
  'girl_class_involv',
  'class_involv_coordin',
  'involv_coordin_go',
  'coordin_go_speak',
  'go_speak_school',
  'speak_school_administr',
  ...],
 ['marri',
  'man',
  'love',
  'life',
  'ever',
  'date',
  'women',
  'met',
  'realiz',
  'bi',
  'fell',
  'love',
  'got',
  'marri',
  'fall',
  'almost',
  'year',
  'live',
  'vermont',
  'whole',
  'famili',
  'small',
  'town',
  'texa',
  'super',
  'conserv',
  'cathol',
  'area',
  'rais',
  'dad',
  'got',
  'job',
  'nyc',
  'cultur',
  'shock',
  'difficult',
  'went',
  'live',
  'rural',
  'texa',
  'live',
  'apart',
  'manhattan',
  'parent',
  'sell',
  'hous',
  'tx',
  'allow',
  'aunt',
  '&',
  'uncl',
  'rd',
  'child',
  'move',
  'charg',
  'small',
  'rent',
  'colleg',
  'came',
  'bi',
  'brother',
  'dad',
  'support',
  'mom',
  'need',
  'time',
  'accept',
  'rest',
  'famili',
  'react',
  'poorli',
  'first',
  'came',
  'around',
  'visit',
  'stay',
  'aunt',
  'uncl',
  'old',
  'hous',
  'marri',
  'allow',
  'share',
  'bed',
  'argu',
  'would',
  'rather',
  'make',
  'peac',
  'visit',
  'sinc',
  'instead',
  'stay',
  'aunt',
  '&',
  'uncl',
  'would',
  'rent',
  'motel',
  'room',
  'covid',
  'visit',
  'summer',
  'parent',
  'bro',
  'decid',
  'go',
  'visit',
  'hometown',
  'week',
  '&',
  'invit',
  'husband',
  'want',
  'motel',
  'aunt',
  '&',
  'uncl',
  'insist',
  'brother',
  'husband',
  'stay',
  'st',
  'night',
  'sleep',
  'situat',
  'discuss',
  'cousin',
  'went',
  'bed',
  'aunt',
  '&',
  'uncl',
  'want',
  'bro',
  'take',
  'spare',
  'bedroom',
  'husband',
  'couch',
  'us',
  'took',
  'issu',
  'snap',
  'realli',
  'marri',
  'gay',
  '&',
  'children',
  'hous',
  'said',
  'would',
  'bad',
  'influenc',
  'kid',
  'hurt',
  'husband',
  'feel',
  'start',
  'cri',
  '&',
  'ran',
  'room',
  'husband',
  'ran',
  'uncl',
  'audac',
  'start',
  'laugh',
  'saw',
  'red',
  'start',
  'cuss',
  'loudli',
  'young',
  'cousin',
  'came',
  'investig',
  'told',
  'go',
  'apolog',
  'husband',
  'immedi',
  'go',
  'tell',
  'dad',
  'happen',
  'go',
  'make',
  'sure',
  'kick',
  'hous',
  'still',
  'parent',
  'name',
  'bro',
  'second',
  'everyth',
  'say',
  'start',
  'backtrack',
  'say',
  'still',
  'welcom',
  'hous',
  'follow',
  'rule',
  'respond',
  'realli',
  'hous',
  'told',
  'go',
  'homeless',
  'way',
  'kid',
  'start',
  'cri',
  'caus',
  'heard',
  'say',
  'go',
  'homeless',
  'left',
  'husband',
  'porch',
  'cri',
  'promis',
  'would',
  'never',
  'subject',
  'told',
  'dad',
  'happen',
  'say',
  'dad',
  'angri',
  'would',
  'understat',
  'serv',
  'notic',
  'evict',
  'day',
  'get',
  'call',
  'text',
  'facebook',
  'messag',
  'famili',
  'call',
  'ah',
  'want',
  'know',
  'aita',
  'allow',
  'young',
  'cousin',
  'end',
  'homeless',
  'fair',
  'pay',
  'aunt',
  'uncl',
  'said',
  'husband',
  'marri_man',
  'man_love',
  'love_life',
  'life_ever',
  'ever_date',
  'date_women',
  'women_met',
  'met_realiz',
  'realiz_bi',
  'bi_fell',
  'fell_love',
  'love_got',
  'got_marri',
  'marri_fall',
  'fall_almost',
  'almost_year',
  'year_live',
  'live_vermont',
  'vermont_whole',
  'whole_famili',
  'famili_small',
  'small_town',
  'town_texa',
  'texa_super',
  'super_conserv',
  'conserv_cathol',
  'cathol_area',
  'area_rais',
  'rais_dad',
  'dad_got',
  'got_job',
  'job_nyc',
  'nyc_cultur',
  'cultur_shock',
  'shock_difficult',
  'difficult_went',
  'went_live',
  'live_rural',
  'rural_texa',
  'texa_live',
  'live_apart',
  'apart_manhattan',
  'manhattan_parent',
  'parent_sell',
  'sell_hous',
  'hous_tx',
  'tx_allow',
  'allow_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_rd',
  'rd_child',
  'child_move',
  'move_charg',
  'charg_small',
  'small_rent',
  'rent_colleg',
  'colleg_came',
  'came_bi',
  'bi_brother',
  'brother_dad',
  'dad_support',
  'support_mom',
  'mom_need',
  'need_time',
  'time_accept',
  'accept_rest',
  'rest_famili',
  'famili_react',
  'react_poorli',
  'poorli_first',
  'first_came',
  'came_around',
  'around_visit',
  'visit_stay',
  'stay_aunt',
  'aunt_uncl',
  'uncl_old',
  'old_hous',
  'hous_marri',
  'marri_allow',
  'allow_share',
  'share_bed',
  'bed_argu',
  'argu_would',
  'would_rather',
  'rather_make',
  'make_peac',
  'peac_visit',
  'visit_sinc',
  'sinc_instead',
  'instead_stay',
  'stay_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_would',
  'would_rent',
  'rent_motel',
  'motel_room',
  'room_covid',
  'covid_visit',
  'visit_summer',
  'summer_parent',
  'parent_bro',
  'bro_decid',
  'decid_go',
  'go_visit',
  'visit_hometown',
  'hometown_week',
  'week_&',
  '&_invit',
  'invit_husband',
  'husband_want',
  'want_motel',
  'motel_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_insist',
  'insist_brother',
  'brother_husband',
  'husband_stay',
  'stay_st',
  'st_night',
  'night_sleep',
  'sleep_situat',
  'situat_discuss',
  'discuss_cousin',
  'cousin_went',
  'went_bed',
  'bed_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_want',
  'want_bro',
  'bro_take',
  'take_spare',
  'spare_bedroom',
  'bedroom_husband',
  'husband_couch',
  'couch_us',
  'us_took',
  'took_issu',
  'issu_snap',
  'snap_realli',
  'realli_marri',
  'marri_gay',
  'gay_&',
  '&_children',
  'children_hous',
  'hous_said',
  'said_would',
  'would_bad',
  'bad_influenc',
  'influenc_kid',
  'kid_hurt',
  'hurt_husband',
  'husband_feel',
  'feel_start',
  'start_cri',
  'cri_&',
  '&_ran',
  'ran_room',
  'room_husband',
  'husband_ran',
  'ran_uncl',
  'uncl_audac',
  'audac_start',
  'start_laugh',
  'laugh_saw',
  'saw_red',
  'red_start',
  'start_cuss',
  'cuss_loudli',
  'loudli_young',
  'young_cousin',
  'cousin_came',
  'came_investig',
  'investig_told',
  'told_go',
  'go_apolog',
  'apolog_husband',
  'husband_immedi',
  'immedi_go',
  'go_tell',
  'tell_dad',
  'dad_happen',
  'happen_go',
  'go_make',
  'make_sure',
  'sure_kick',
  'kick_hous',
  'hous_still',
  'still_parent',
  'parent_name',
  'name_bro',
  'bro_second',
  'second_everyth',
  'everyth_say',
  'say_start',
  'start_backtrack',
  'backtrack_say',
  'say_still',
  'still_welcom',
  'welcom_hous',
  'hous_follow',
  'follow_rule',
  'rule_respond',
  'respond_realli',
  'realli_hous',
  'hous_told',
  'told_go',
  'go_homeless',
  'homeless_way',
  'way_kid',
  'kid_start',
  'start_cri',
  'cri_caus',
  'caus_heard',
  'heard_say',
  'say_go',
  'go_homeless',
  'homeless_left',
  'left_husband',
  'husband_porch',
  'porch_cri',
  'cri_promis',
  'promis_would',
  'would_never',
  'never_subject',
  'subject_told',
  'told_dad',
  'dad_happen',
  'happen_say',
  'say_dad',
  'dad_angri',
  'angri_would',
  'would_understat',
  'understat_serv',
  'serv_notic',
  'notic_evict',
  'evict_day',
  'day_get',
  'get_call',
  'call_text',
  'text_facebook',
  'facebook_messag',
  'messag_famili',
  'famili_call',
  'call_ah',
  'ah_want',
  'want_know',
  'know_aita',
  'aita_allow',
  'allow_young',
  'young_cousin',
  'cousin_end',
  'end_homeless',
  'homeless_fair',
  'fair_pay',
  'pay_aunt',
  'aunt_uncl',
  'uncl_said',
  'said_husband',
  'marri_man_love',
  'man_love_life',
  'love_life_ever',
  'life_ever_date',
  'ever_date_women',
  'date_women_met',
  'women_met_realiz',
  'met_realiz_bi',
  'realiz_bi_fell',
  'bi_fell_love',
  'fell_love_got',
  'love_got_marri',
  'got_marri_fall',
  'marri_fall_almost',
  'fall_almost_year',
  'almost_year_live',
  'year_live_vermont',
  'live_vermont_whole',
  'vermont_whole_famili',
  'whole_famili_small',
  'famili_small_town',
  'small_town_texa',
  'town_texa_super',
  'texa_super_conserv',
  'super_conserv_cathol',
  'conserv_cathol_area',
  'cathol_area_rais',
  'area_rais_dad',
  'rais_dad_got',
  'dad_got_job',
  'got_job_nyc',
  'job_nyc_cultur',
  'nyc_cultur_shock',
  'cultur_shock_difficult',
  'shock_difficult_went',
  'difficult_went_live',
  'went_live_rural',
  'live_rural_texa',
  'rural_texa_live',
  'texa_live_apart',
  'live_apart_manhattan',
  'apart_manhattan_parent',
  'manhattan_parent_sell',
  'parent_sell_hous',
  'sell_hous_tx',
  'hous_tx_allow',
  'tx_allow_aunt',
  'allow_aunt_&',
  'aunt_&_uncl',
  '&_uncl_rd',
  'uncl_rd_child',
  'rd_child_move',
  'child_move_charg',
  'move_charg_small',
  'charg_small_rent',
  'small_rent_colleg',
  'rent_colleg_came',
  'colleg_came_bi',
  'came_bi_brother',
  'bi_brother_dad',
  'brother_dad_support',
  'dad_support_mom',
  'support_mom_need',
  'mom_need_time',
  'need_time_accept',
  'time_accept_rest',
  'accept_rest_famili',
  'rest_famili_react',
  'famili_react_poorli',
  'react_poorli_first',
  'poorli_first_came',
  'first_came_around',
  'came_around_visit',
  'around_visit_stay',
  'visit_stay_aunt',
  'stay_aunt_uncl',
  'aunt_uncl_old',
  'uncl_old_hous',
  'old_hous_marri',
  'hous_marri_allow',
  'marri_allow_share',
  'allow_share_bed',
  'share_bed_argu',
  'bed_argu_would',
  'argu_would_rather',
  'would_rather_make',
  'rather_make_peac',
  'make_peac_visit',
  'peac_visit_sinc',
  'visit_sinc_instead',
  'sinc_instead_stay',
  'instead_stay_aunt',
  'stay_aunt_&',
  'aunt_&_uncl',
  '&_uncl_would',
  'uncl_would_rent',
  'would_rent_motel',
  'rent_motel_room',
  'motel_room_covid',
  'room_covid_visit',
  'covid_visit_summer',
  'visit_summer_parent',
  'summer_parent_bro',
  'parent_bro_decid',
  'bro_decid_go',
  'decid_go_visit',
  'go_visit_hometown',
  'visit_hometown_week',
  'hometown_week_&',
  'week_&_invit',
  '&_invit_husband',
  'invit_husband_want',
  'husband_want_motel',
  'want_motel_aunt',
  'motel_aunt_&',
  'aunt_&_uncl',
  '&_uncl_insist',
  'uncl_insist_brother',
  'insist_brother_husband',
  'brother_husband_stay',
  'husband_stay_st',
  'stay_st_night',
  'st_night_sleep',
  'night_sleep_situat',
  'sleep_situat_discuss',
  'situat_discuss_cousin',
  'discuss_cousin_went',
  'cousin_went_bed',
  'went_bed_aunt',
  'bed_aunt_&',
  'aunt_&_uncl',
  '&_uncl_want',
  'uncl_want_bro',
  'want_bro_take',
  'bro_take_spare',
  'take_spare_bedroom',
  'spare_bedroom_husband',
  'bedroom_husband_couch',
  'husband_couch_us',
  'couch_us_took',
  'us_took_issu',
  'took_issu_snap',
  'issu_snap_realli',
  'snap_realli_marri',
  'realli_marri_gay',
  'marri_gay_&',
  'gay_&_children',
  '&_children_hous',
  'children_hous_said',
  'hous_said_would',
  'said_would_bad',
  'would_bad_influenc',
  'bad_influenc_kid',
  'influenc_kid_hurt',
  'kid_hurt_husband',
  'hurt_husband_feel',
  'husband_feel_start',
  'feel_start_cri',
  'start_cri_&',
  'cri_&_ran',
  '&_ran_room',
  'ran_room_husband',
  'room_husband_ran',
  'husband_ran_uncl',
  'ran_uncl_audac',
  'uncl_audac_start',
  'audac_start_laugh',
  'start_laugh_saw',
  'laugh_saw_red',
  'saw_red_start',
  'red_start_cuss',
  'start_cuss_loudli',
  'cuss_loudli_young',
  'loudli_young_cousin',
  'young_cousin_came',
  'cousin_came_investig',
  'came_investig_told',
  'investig_told_go',
  'told_go_apolog',
  'go_apolog_husband',
  'apolog_husband_immedi',
  'husband_immedi_go',
  'immedi_go_tell',
  'go_tell_dad',
  'tell_dad_happen',
  'dad_happen_go',
  'happen_go_make',
  'go_make_sure',
  'make_sure_kick',
  'sure_kick_hous',
  'kick_hous_still',
  'hous_still_parent',
  'still_parent_name',
  'parent_name_bro',
  'name_bro_second',
  'bro_second_everyth',
  'second_everyth_say',
  'everyth_say_start',
  'say_start_backtrack',
  'start_backtrack_say',
  'backtrack_say_still',
  'say_still_welcom',
  'still_welcom_hous',
  'welcom_hous_follow',
  'hous_follow_rule',
  'follow_rule_respond',
  'rule_respond_realli',
  'respond_realli_hous',
  'realli_hous_told',
  'hous_told_go',
  'told_go_homeless',
  'go_homeless_way',
  'homeless_way_kid',
  'way_kid_start',
  'kid_start_cri',
  'start_cri_caus',
  'cri_caus_heard',
  'caus_heard_say',
  'heard_say_go',
  'say_go_homeless',
  'go_homeless_left',
  'homeless_left_husband',
  'left_husband_porch',
  'husband_porch_cri',
  'porch_cri_promis',
  'cri_promis_would',
  'promis_would_never',
  'would_never_subject',
  'never_subject_told',
  'subject_told_dad',
  'told_dad_happen',
  'dad_happen_say',
  'happen_say_dad',
  'say_dad_angri',
  'dad_angri_would',
  'angri_would_understat',
  'would_understat_serv',
  'understat_serv_notic',
  'serv_notic_evict',
  'notic_evict_day',
  'evict_day_get',
  'day_get_call',
  'get_call_text',
  'call_text_facebook',
  'text_facebook_messag',
  'facebook_messag_famili',
  'messag_famili_call',
  'famili_call_ah',
  'call_ah_want',
  'ah_want_know',
  'want_know_aita',
  'know_aita_allow',
  'aita_allow_young',
  'allow_young_cousin',
  'young_cousin_end',
  'cousin_end_homeless',
  'end_homeless_fair',
  'homeless_fair_pay',
  'fair_pay_aunt',
  'pay_aunt_uncl',
  'aunt_uncl_said',
  'uncl_said_husband'],
 ['husband',
  'asian',
  'american',
  'welcom',
  'first',
  'born',
  'week',
  'ago',
  'babi',
  'health',
  'thank',
  'god',
  'im',
  'exhaust',
  'fix',
  'hair',
  'bare',
  'abl',
  'shower',
  'sleep',
  'husband',
  'famili',
  'pressur',
  'us',
  'visit',
  'meet',
  'babi',
  'tri',
  'hold',
  'much',
  'could',
  'yesterday',
  'surpris',
  'find',
  'stand',
  'porch',
  'turn',
  'hubbi',
  'invit',
  'dinner',
  'embarrass',
  'felt',
  'like',
  'readi',
  'visitor',
  'judgement',
  'one',
  '😉',
  'caus',
  'hous',
  'mess',
  'yall',
  'anyway',
  'husband',
  'sat',
  'fed',
  'son',
  'later',
  'ask',
  'husband',
  'order',
  'take',
  'dinner',
  'said',
  'parent',
  'would',
  'find',
  'rude',
  'unwelcom',
  'suggest',
  'go',
  'insid',
  'kitchen',
  'prepar',
  'someth',
  'anyth',
  'long',
  'homemad',
  'said',
  'fine',
  'went',
  'made',
  'mac',
  'chees',
  'reason',
  'prepar',
  'meal',
  'easi',
  'serv',
  'famili',
  'husband',
  'mom',
  'look',
  'appal',
  'notic',
  'someth',
  'wrong',
  'ask',
  'realli',
  'found',
  'appropri',
  'serv',
  'famili',
  'mac',
  'chees',
  'ask',
  'went',
  'rant',
  'disrespect',
  'clearli',
  'experi',
  'right',
  'wrong',
  'come',
  'host',
  'said',
  'excus',
  'said',
  'sign',
  'host',
  'expect',
  'visit',
  'took',
  'want',
  'husband',
  'said',
  'final',
  'see',
  'babi',
  'kept',
  'see',
  'entir',
  'month',
  'whole',
  'month',
  'life',
  'miss',
  'argument',
  'decid',
  'go',
  'home',
  'husband',
  'said',
  'decid',
  'serv',
  'famili',
  'mac',
  'chees',
  'offens',
  'serv',
  'noth',
  'told',
  'exhaust',
  'cook',
  'tradit',
  'feast',
  'forc',
  'learn',
  'mom',
  'took',
  'offens',
  'said',
  'mean',
  'disrespect',
  'toward',
  'famili',
  'cultur',
  'went',
  'insid',
  'bedroom',
  'stay',
  'son',
  'husband',
  'stay',
  'phone',
  'famili',
  'hour',
  'kept',
  'give',
  'cold',
  'shoulder',
  'refus',
  'eat',
  'cook',
  'support',
  'famili',
  'understand',
  'guest',
  'might',
  'find',
  'offens',
  'especi',
  'famili',
  'tri',
  'make',
  'quick',
  'homemad',
  'meal',
  'like',
  'husband',
  'want',
  'wrong',
  'mac',
  'chees',
  'edit',
  '*',
  'ok',
  'im',
  'see',
  'comment',
  'offer',
  'come',
  'mac',
  'chees',
  'amaz',
  'hear',
  'peopl',
  'would',
  'aporeci',
  'kind',
  'meal',
  'kinda',
  'make',
  'feel',
  'reliev',
  'reassur',
  'mess',
  'entir',
  'come',
  'yall',
  'ill',
  'happi',
  'serv',
  'mac',
  'chees',
  'yall',
  'even',
  'offer',
  'bring',
  'mash',
  'potato',
  'pizza',
  'lol',
  'would',
  'love',
  'yall',
  'time',
  'husband_asian',
  'asian_american',
  'american_welcom',
  'welcom_first',
  'first_born',
  'born_week',
  'week_ago',
  'ago_babi',
  'babi_health',
  'health_thank',
  'thank_god',
  'god_im',
  'im_exhaust',
  'exhaust_fix',
  'fix_hair',
  'hair_bare',
  'bare_abl',
  'abl_shower',
  'shower_sleep',
  'sleep_husband',
  'husband_famili',
  'famili_pressur',
  'pressur_us',
  'us_visit',
  'visit_meet',
  'meet_babi',
  'babi_tri',
  'tri_hold',
  'hold_much',
  'much_could',
  'could_yesterday',
  'yesterday_surpris',
  'surpris_find',
  'find_stand',
  'stand_porch',
  'porch_turn',
  'turn_hubbi',
  'hubbi_invit',
  'invit_dinner',
  'dinner_embarrass',
  'embarrass_felt',
  'felt_like',
  'like_readi',
  'readi_visitor',
  'visitor_judgement',
  'judgement_one',
  'one_😉',
  '😉_caus',
  'caus_hous',
  'hous_mess',
  'mess_yall',
  'yall_anyway',
  'anyway_husband',
  'husband_sat',
  'sat_fed',
  'fed_son',
  'son_later',
  'later_ask',
  'ask_husband',
  'husband_order',
  'order_take',
  'take_dinner',
  'dinner_said',
  'said_parent',
  'parent_would',
  'would_find',
  'find_rude',
  'rude_unwelcom',
  'unwelcom_suggest',
  'suggest_go',
  'go_insid',
  'insid_kitchen',
  'kitchen_prepar',
  'prepar_someth',
  'someth_anyth',
  'anyth_long',
  'long_homemad',
  'homemad_said',
  'said_fine',
  'fine_went',
  'went_made',
  'made_mac',
  'mac_chees',
  'chees_reason',
  'reason_prepar',
  'prepar_meal',
  'meal_easi',
  'easi_serv',
  'serv_famili',
  'famili_husband',
  'husband_mom',
  'mom_look',
  'look_appal',
  'appal_notic',
  'notic_someth',
  'someth_wrong',
  'wrong_ask',
  'ask_realli',
  'realli_found',
  'found_appropri',
  'appropri_serv',
  'serv_famili',
  'famili_mac',
  'mac_chees',
  'chees_ask',
  'ask_went',
  'went_rant',
  'rant_disrespect',
  'disrespect_clearli',
  'clearli_experi',
  'experi_right',
  'right_wrong',
  'wrong_come',
  'come_host',
  'host_said',
  'said_excus',
  'excus_said',
  'said_sign',
  'sign_host',
  'host_expect',
  'expect_visit',
  'visit_took',
  'took_want',
  'want_husband',
  'husband_said',
  'said_final',
  'final_see',
  'see_babi',
  'babi_kept',
  'kept_see',
  'see_entir',
  'entir_month',
  'month_whole',
  'whole_month',
  'month_life',
  'life_miss',
  'miss_argument',
  'argument_decid',
  'decid_go',
  'go_home',
  'home_husband',
  'husband_said',
  'said_decid',
  'decid_serv',
  'serv_famili',
  'famili_mac',
  'mac_chees',
  'chees_offens',
  'offens_serv',
  'serv_noth',
  'noth_told',
  'told_exhaust',
  'exhaust_cook',
  'cook_tradit',
  'tradit_feast',
  'feast_forc',
  'forc_learn',
  'learn_mom',
  'mom_took',
  'took_offens',
  'offens_said',
  'said_mean',
  'mean_disrespect',
  'disrespect_toward',
  'toward_famili',
  'famili_cultur',
  'cultur_went',
  'went_insid',
  'insid_bedroom',
  'bedroom_stay',
  'stay_son',
  'son_husband',
  'husband_stay',
  'stay_phone',
  'phone_famili',
  'famili_hour',
  'hour_kept',
  'kept_give',
  'give_cold',
  'cold_shoulder',
  'shoulder_refus',
  'refus_eat',
  'eat_cook',
  'cook_support',
  'support_famili',
  'famili_understand',
  'understand_guest',
  'guest_might',
  'might_find',
  'find_offens',
  'offens_especi',
  'especi_famili',
  'famili_tri',
  'tri_make',
  'make_quick',
  'quick_homemad',
  'homemad_meal',
  'meal_like',
  'like_husband',
  'husband_want',
  'want_wrong',
  'wrong_mac',
  'mac_chees',
  'chees_edit',
  'edit_*',
  '*_ok',
  'ok_im',
  'im_see',
  'see_comment',
  'comment_offer',
  'offer_come',
  'come_mac',
  'mac_chees',
  'chees_amaz',
  'amaz_hear',
  'hear_peopl',
  'peopl_would',
  'would_aporeci',
  'aporeci_kind',
  'kind_meal',
  'meal_kinda',
  'kinda_make',
  'make_feel',
  'feel_reliev',
  'reliev_reassur',
  'reassur_mess',
  'mess_entir',
  'entir_come',
  'come_yall',
  'yall_ill',
  'ill_happi',
  'happi_serv',
  'serv_mac',
  'mac_chees',
  'chees_yall',
  'yall_even',
  'even_offer',
  'offer_bring',
  'bring_mash',
  'mash_potato',
  'potato_pizza',
  'pizza_lol',
  'lol_would',
  'would_love',
  'love_yall',
  'yall_time',
  'husband_asian_american',
  'asian_american_welcom',
  'american_welcom_first',
  'welcom_first_born',
  'first_born_week',
  'born_week_ago',
  'week_ago_babi',
  'ago_babi_health',
  'babi_health_thank',
  'health_thank_god',
  'thank_god_im',
  'god_im_exhaust',
  'im_exhaust_fix',
  'exhaust_fix_hair',
  'fix_hair_bare',
  'hair_bare_abl',
  'bare_abl_shower',
  'abl_shower_sleep',
  'shower_sleep_husband',
  'sleep_husband_famili',
  'husband_famili_pressur',
  'famili_pressur_us',
  'pressur_us_visit',
  'us_visit_meet',
  'visit_meet_babi',
  'meet_babi_tri',
  'babi_tri_hold',
  'tri_hold_much',
  'hold_much_could',
  'much_could_yesterday',
  'could_yesterday_surpris',
  'yesterday_surpris_find',
  'surpris_find_stand',
  'find_stand_porch',
  'stand_porch_turn',
  'porch_turn_hubbi',
  'turn_hubbi_invit',
  'hubbi_invit_dinner',
  'invit_dinner_embarrass',
  'dinner_embarrass_felt',
  'embarrass_felt_like',
  'felt_like_readi',
  'like_readi_visitor',
  'readi_visitor_judgement',
  'visitor_judgement_one',
  'judgement_one_😉',
  'one_😉_caus',
  '😉_caus_hous',
  'caus_hous_mess',
  'hous_mess_yall',
  'mess_yall_anyway',
  'yall_anyway_husband',
  'anyway_husband_sat',
  'husband_sat_fed',
  'sat_fed_son',
  'fed_son_later',
  'son_later_ask',
  'later_ask_husband',
  'ask_husband_order',
  'husband_order_take',
  'order_take_dinner',
  'take_dinner_said',
  'dinner_said_parent',
  'said_parent_would',
  'parent_would_find',
  'would_find_rude',
  'find_rude_unwelcom',
  'rude_unwelcom_suggest',
  'unwelcom_suggest_go',
  'suggest_go_insid',
  'go_insid_kitchen',
  'insid_kitchen_prepar',
  'kitchen_prepar_someth',
  'prepar_someth_anyth',
  'someth_anyth_long',
  'anyth_long_homemad',
  'long_homemad_said',
  'homemad_said_fine',
  'said_fine_went',
  'fine_went_made',
  'went_made_mac',
  'made_mac_chees',
  'mac_chees_reason',
  'chees_reason_prepar',
  'reason_prepar_meal',
  'prepar_meal_easi',
  'meal_easi_serv',
  'easi_serv_famili',
  'serv_famili_husband',
  'famili_husband_mom',
  'husband_mom_look',
  'mom_look_appal',
  'look_appal_notic',
  'appal_notic_someth',
  'notic_someth_wrong',
  'someth_wrong_ask',
  'wrong_ask_realli',
  'ask_realli_found',
  'realli_found_appropri',
  'found_appropri_serv',
  'appropri_serv_famili',
  'serv_famili_mac',
  'famili_mac_chees',
  'mac_chees_ask',
  'chees_ask_went',
  'ask_went_rant',
  'went_rant_disrespect',
  'rant_disrespect_clearli',
  'disrespect_clearli_experi',
  'clearli_experi_right',
  'experi_right_wrong',
  'right_wrong_come',
  'wrong_come_host',
  'come_host_said',
  'host_said_excus',
  'said_excus_said',
  'excus_said_sign',
  'said_sign_host',
  'sign_host_expect',
  'host_expect_visit',
  'expect_visit_took',
  'visit_took_want',
  'took_want_husband',
  'want_husband_said',
  'husband_said_final',
  'said_final_see',
  'final_see_babi',
  'see_babi_kept',
  'babi_kept_see',
  'kept_see_entir',
  'see_entir_month',
  'entir_month_whole',
  'month_whole_month',
  'whole_month_life',
  'month_life_miss',
  'life_miss_argument',
  'miss_argument_decid',
  'argument_decid_go',
  'decid_go_home',
  'go_home_husband',
  'home_husband_said',
  'husband_said_decid',
  'said_decid_serv',
  'decid_serv_famili',
  'serv_famili_mac',
  'famili_mac_chees',
  'mac_chees_offens',
  'chees_offens_serv',
  'offens_serv_noth',
  'serv_noth_told',
  'noth_told_exhaust',
  'told_exhaust_cook',
  'exhaust_cook_tradit',
  'cook_tradit_feast',
  'tradit_feast_forc',
  'feast_forc_learn',
  'forc_learn_mom',
  'learn_mom_took',
  'mom_took_offens',
  'took_offens_said',
  'offens_said_mean',
  'said_mean_disrespect',
  'mean_disrespect_toward',
  'disrespect_toward_famili',
  'toward_famili_cultur',
  'famili_cultur_went',
  'cultur_went_insid',
  'went_insid_bedroom',
  'insid_bedroom_stay',
  'bedroom_stay_son',
  'stay_son_husband',
  'son_husband_stay',
  'husband_stay_phone',
  'stay_phone_famili',
  'phone_famili_hour',
  'famili_hour_kept',
  'hour_kept_give',
  'kept_give_cold',
  'give_cold_shoulder',
  'cold_shoulder_refus',
  'shoulder_refus_eat',
  'refus_eat_cook',
  'eat_cook_support',
  'cook_support_famili',
  'support_famili_understand',
  'famili_understand_guest',
  'understand_guest_might',
  'guest_might_find',
  'might_find_offens',
  'find_offens_especi',
  'offens_especi_famili',
  'especi_famili_tri',
  'famili_tri_make',
  'tri_make_quick',
  'make_quick_homemad',
  'quick_homemad_meal',
  'homemad_meal_like',
  'meal_like_husband',
  'like_husband_want',
  'husband_want_wrong',
  'want_wrong_mac',
  'wrong_mac_chees',
  'mac_chees_edit',
  'chees_edit_*',
  'edit_*_ok',
  '*_ok_im',
  'ok_im_see',
  'im_see_comment',
  'see_comment_offer',
  'comment_offer_come',
  'offer_come_mac',
  'come_mac_chees',
  'mac_chees_amaz',
  'chees_amaz_hear',
  'amaz_hear_peopl',
  'hear_peopl_would',
  'peopl_would_aporeci',
  'would_aporeci_kind',
  'aporeci_kind_meal',
  'kind_meal_kinda',
  'meal_kinda_make',
  'kinda_make_feel',
  'make_feel_reliev',
  'feel_reliev_reassur',
  'reliev_reassur_mess',
  'reassur_mess_entir',
  'mess_entir_come',
  'entir_come_yall',
  'come_yall_ill',
  'yall_ill_happi',
  'ill_happi_serv',
  'happi_serv_mac',
  'serv_mac_chees',
  'mac_chees_yall',
  'chees_yall_even',
  'yall_even_offer',
  'even_offer_bring',
  'offer_bring_mash',
  'bring_mash_potato',
  'mash_potato_pizza',
  'potato_pizza_lol',
  'pizza_lol_would',
  'lol_would_love',
  'would_love_yall',
  'love_yall_time'],
 ['year',
  'went',
  'fiancé',
  'hous',
  'christma',
  'first',
  'time',
  'go',
  'would',
  'typic',
  'go',
  'famili',
  'hous',
  'instead',
  'got',
  'rather',
  'pricey',
  'gift',
  'fiancé',
  'dan',
  'relat',
  'hobbi',
  'got',
  'nice',
  'gift',
  'dan',
  'parent',
  'base',
  'thing',
  'id',
  'talk',
  'got',
  'small',
  'pack',
  'chocol',
  'dan',
  'rel',
  'know',
  'well',
  'expect',
  'mani',
  'gift',
  'dan',
  'rel',
  'know',
  'mani',
  'well',
  'certainli',
  'expect',
  'got',
  'first',
  'excit',
  'saw',
  'big',
  'pile',
  'gift',
  'howev',
  'open',
  'first',
  'one',
  'piec',
  'coal',
  'everyon',
  'laugh',
  'kind',
  'laugh',
  'along',
  'think',
  'gag',
  'gift',
  'gift',
  'would',
  'differ',
  'everi',
  'singl',
  'one',
  'turn',
  'coal',
  'start',
  'get',
  'upset',
  'cri',
  'lash',
  'dan',
  'calmli',
  'explain',
  'appar',
  'longstand',
  'tradit',
  'famili',
  'gift',
  'coal',
  'newcom',
  'celebr',
  'christma',
  'first',
  'time',
  'explain',
  'easier',
  'way',
  'sinc',
  'rel',
  'might',
  'know',
  'newcom',
  'well',
  'stress',
  'find',
  'gift',
  'fun',
  'experi',
  'newcom',
  'well',
  'told',
  'dan',
  'believ',
  'skip',
  'famili',
  'celebr',
  'left',
  'dan',
  'famili',
  'blow',
  'phone',
  'say',
  'embarrass',
  'front',
  'rel',
  'made',
  'awkward',
  'everyon',
  'aita',
  'year_went',
  'went_fiancé',
  'fiancé_hous',
  'hous_christma',
  'christma_first',
  'first_time',
  'time_go',
  'go_would',
  'would_typic',
  'typic_go',
  'go_famili',
  'famili_hous',
  'hous_instead',
  'instead_got',
  'got_rather',
  'rather_pricey',
  'pricey_gift',
  'gift_fiancé',
  'fiancé_dan',
  'dan_relat',
  'relat_hobbi',
  'hobbi_got',
  'got_nice',
  'nice_gift',
  'gift_dan',
  'dan_parent',
  'parent_base',
  'base_thing',
  'thing_id',
  'id_talk',
  'talk_got',
  'got_small',
  'small_pack',
  'pack_chocol',
  'chocol_dan',
  'dan_rel',
  'rel_know',
  'know_well',
  'well_expect',
  'expect_mani',
  'mani_gift',
  'gift_dan',
  'dan_rel',
  'rel_know',
  'know_mani',
  'mani_well',
  'well_certainli',
  'certainli_expect',
  'expect_got',
  'got_first',
  'first_excit',
  'excit_saw',
  'saw_big',
  'big_pile',
  'pile_gift',
  'gift_howev',
  'howev_open',
  'open_first',
  'first_one',
  'one_piec',
  'piec_coal',
  'coal_everyon',
  'everyon_laugh',
  'laugh_kind',
  'kind_laugh',
  'laugh_along',
  'along_think',
  'think_gag',
  'gag_gift',
  'gift_gift',
  'gift_would',
  'would_differ',
  'differ_everi',
  'everi_singl',
  'singl_one',
  'one_turn',
  'turn_coal',
  'coal_start',
  'start_get',
  'get_upset',
  'upset_cri',
  'cri_lash',
  'lash_dan',
  'dan_calmli',
  'calmli_explain',
  'explain_appar',
  'appar_longstand',
  'longstand_tradit',
  'tradit_famili',
  'famili_gift',
  'gift_coal',
  'coal_newcom',
  'newcom_celebr',
  'celebr_christma',
  'christma_first',
  'first_time',
  'time_explain',
  'explain_easier',
  'easier_way',
  'way_sinc',
  'sinc_rel',
  'rel_might',
  'might_know',
  'know_newcom',
  'newcom_well',
  'well_stress',
  'stress_find',
  'find_gift',
  'gift_fun',
  'fun_experi',
  'experi_newcom',
  'newcom_well',
  'well_told',
  'told_dan',
  'dan_believ',
  'believ_skip',
  'skip_famili',
  'famili_celebr',
  'celebr_left',
  'left_dan',
  'dan_famili',
  'famili_blow',
  'blow_phone',
  'phone_say',
  'say_embarrass',
  'embarrass_front',
  'front_rel',
  'rel_made',
  'made_awkward',
  'awkward_everyon',
  'everyon_aita',
  'year_went_fiancé',
  'went_fiancé_hous',
  'fiancé_hous_christma',
  'hous_christma_first',
  'christma_first_time',
  'first_time_go',
  'time_go_would',
  'go_would_typic',
  'would_typic_go',
  'typic_go_famili',
  'go_famili_hous',
  'famili_hous_instead',
  'hous_instead_got',
  'instead_got_rather',
  'got_rather_pricey',
  'rather_pricey_gift',
  'pricey_gift_fiancé',
  'gift_fiancé_dan',
  'fiancé_dan_relat',
  'dan_relat_hobbi',
  'relat_hobbi_got',
  'hobbi_got_nice',
  'got_nice_gift',
  'nice_gift_dan',
  'gift_dan_parent',
  'dan_parent_base',
  'parent_base_thing',
  'base_thing_id',
  'thing_id_talk',
  'id_talk_got',
  'talk_got_small',
  'got_small_pack',
  'small_pack_chocol',
  'pack_chocol_dan',
  'chocol_dan_rel',
  'dan_rel_know',
  'rel_know_well',
  'know_well_expect',
  'well_expect_mani',
  'expect_mani_gift',
  'mani_gift_dan',
  'gift_dan_rel',
  'dan_rel_know',
  'rel_know_mani',
  'know_mani_well',
  'mani_well_certainli',
  'well_certainli_expect',
  'certainli_expect_got',
  'expect_got_first',
  'got_first_excit',
  'first_excit_saw',
  'excit_saw_big',
  'saw_big_pile',
  'big_pile_gift',
  'pile_gift_howev',
  'gift_howev_open',
  'howev_open_first',
  'open_first_one',
  'first_one_piec',
  'one_piec_coal',
  'piec_coal_everyon',
  'coal_everyon_laugh',
  'everyon_laugh_kind',
  'laugh_kind_laugh',
  'kind_laugh_along',
  'laugh_along_think',
  'along_think_gag',
  'think_gag_gift',
  'gag_gift_gift',
  'gift_gift_would',
  'gift_would_differ',
  'would_differ_everi',
  'differ_everi_singl',
  'everi_singl_one',
  'singl_one_turn',
  'one_turn_coal',
  'turn_coal_start',
  'coal_start_get',
  'start_get_upset',
  'get_upset_cri',
  'upset_cri_lash',
  'cri_lash_dan',
  'lash_dan_calmli',
  'dan_calmli_explain',
  'calmli_explain_appar',
  'explain_appar_longstand',
  'appar_longstand_tradit',
  'longstand_tradit_famili',
  'tradit_famili_gift',
  'famili_gift_coal',
  'gift_coal_newcom',
  'coal_newcom_celebr',
  'newcom_celebr_christma',
  'celebr_christma_first',
  'christma_first_time',
  'first_time_explain',
  'time_explain_easier',
  'explain_easier_way',
  'easier_way_sinc',
  'way_sinc_rel',
  'sinc_rel_might',
  'rel_might_know',
  'might_know_newcom',
  'know_newcom_well',
  'newcom_well_stress',
  'well_stress_find',
  'stress_find_gift',
  'find_gift_fun',
  'gift_fun_experi',
  'fun_experi_newcom',
  'experi_newcom_well',
  'newcom_well_told',
  'well_told_dan',
  'told_dan_believ',
  'dan_believ_skip',
  'believ_skip_famili',
  'skip_famili_celebr',
  'famili_celebr_left',
  'celebr_left_dan',
  'left_dan_famili',
  'dan_famili_blow',
  'famili_blow_phone',
  'blow_phone_say',
  'phone_say_embarrass',
  'say_embarrass_front',
  'embarrass_front_rel',
  'front_rel_made',
  'rel_made_awkward',
  'made_awkward_everyon',
  'awkward_everyon_aita'],
 ['[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'mod',
  'let',
  'post',
  'post',
  'old',
  'enough',
  'throwaway',
  'whole',
  'situat',
  'bizarr',
  'still',
  'cant',
  'realli',
  'process',
  'still',
  'feel',
  'real',
  'feel',
  'scare',
  'guilti',
  'surgeri',
  'coupl',
  'day',
  'ago',
  'get',
  'wisdom',
  'teeth',
  'realli',
  'bad',
  'fear',
  'dentist',
  'drug',
  'pretti',
  'hard',
  'remov',
  'like',
  'laugh',
  'ga',
  'wear',
  'realli',
  'fast',
  'actual',
  'iv',
  'medicin',
  'pretti',
  'much',
  'unconsci',
  'whole',
  'thing',
  'told',
  'respons',
  'adult',
  'drive',
  'appoint',
  'back',
  'med',
  'gave',
  'would',
  'make',
  'danger',
  'drive',
  'mom',
  'work',
  'trip',
  'take',
  'ask',
  'sister',
  'law',
  'bri',
  'real',
  'name',
  'could',
  'whole',
  'thing',
  'would',
  'take',
  'hour',
  'two',
  'even',
  'offer',
  'ga',
  'money',
  'dental',
  'offic',
  'minut',
  'away',
  'would',
  'ask',
  'brother',
  'work',
  'day',
  'bri',
  'stay',
  'home',
  'mom',
  'yo',
  'daughter',
  'think',
  'bri',
  'mom',
  'hous',
  'day',
  'bri',
  'agre',
  'take',
  'appoint',
  'surgeri',
  'went',
  'fine',
  'bri',
  'wait',
  'lobbi',
  'done',
  'came',
  'anesthesia',
  'disori',
  'nauseou',
  'guess',
  'normal',
  'gauz',
  'shove',
  'mouth',
  'stop',
  'bleed',
  'bri',
  'took',
  'car',
  'let',
  'go',
  'realli',
  'rememb',
  'much',
  'drive',
  'felt',
  'like',
  'enough',
  'time',
  'pass',
  'bri',
  'got',
  'car',
  'told',
  'come',
  'realli',
  'follow',
  'altern',
  'stay',
  'hot',
  'car',
  'long',
  'stori',
  'short',
  'pool',
  'realli',
  'confus',
  'gate',
  'bri',
  'basic',
  'park',
  'one',
  'littl',
  'table-bench',
  'said',
  'shed',
  'back',
  'still',
  'tri',
  'puke',
  'realli',
  'dizzi',
  'heat',
  '+',
  'degre',
  'drug',
  'ask',
  'take',
  'home',
  'guess',
  'sinc',
  'day',
  'niec',
  'meet',
  'friend',
  'pool',
  'start',
  'feel',
  'realli',
  'sick',
  'verg',
  'pass',
  'panic',
  'attack',
  'call',
  'brother',
  'think',
  'could',
  'understand',
  'med',
  'stuff',
  'mouth',
  'hung',
  'guess',
  'call',
  'bri',
  'came',
  'stomp',
  'back',
  'cuss',
  'yell',
  'took',
  'back',
  'car',
  'pass',
  'drive',
  'home',
  'arriv',
  'brother',
  'left',
  'work',
  'met',
  'us',
  'driveway',
  'scream',
  'bri',
  'cri',
  'still',
  'pretti',
  'disori',
  'brother',
  'took',
  'back',
  'home',
  'stay',
  'med',
  'wore',
  'told',
  'divorc',
  'bri',
  'plu',
  'thing',
  'go',
  'detail',
  'day',
  'sinc',
  'bri',
  'blow',
  'phone',
  'tell',
  'bitch',
  'tattl',
  'destroy',
  'famili',
  'part',
  'feel',
  'bad',
  'niec',
  'wonder',
  'jjst',
  'dealt',
  'wait',
  'done',
  'pool',
  'instead',
  'call',
  'bro',
  'caus',
  'problem',
  'aita',
  '[_updat',
  'updat_]',
  ']_httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar',
  'httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_mod',
  'mod_let',
  'let_post',
  'post_post',
  'post_old',
  'old_enough',
  'enough_throwaway',
  'throwaway_whole',
  'whole_situat',
  'situat_bizarr',
  'bizarr_still',
  'still_cant',
  'cant_realli',
  'realli_process',
  'process_still',
  'still_feel',
  'feel_real',
  'real_feel',
  'feel_scare',
  'scare_guilti',
  'guilti_surgeri',
  'surgeri_coupl',
  'coupl_day',
  'day_ago',
  'ago_get',
  'get_wisdom',
  'wisdom_teeth',
  'teeth_realli',
  'realli_bad',
  'bad_fear',
  'fear_dentist',
  'dentist_drug',
  'drug_pretti',
  'pretti_hard',
  'hard_remov',
  'remov_like',
  'like_laugh',
  'laugh_ga',
  'ga_wear',
  'wear_realli',
  'realli_fast',
  'fast_actual',
  'actual_iv',
  'iv_medicin',
  'medicin_pretti',
  'pretti_much',
  'much_unconsci',
  'unconsci_whole',
  'whole_thing',
  'thing_told',
  'told_respons',
  'respons_adult',
  'adult_drive',
  'drive_appoint',
  'appoint_back',
  'back_med',
  'med_gave',
  'gave_would',
  'would_make',
  'make_danger',
  'danger_drive',
  'drive_mom',
  'mom_work',
  'work_trip',
  'trip_take',
  'take_ask',
  'ask_sister',
  'sister_law',
  'law_bri',
  'bri_real',
  'real_name',
  'name_could',
  'could_whole',
  'whole_thing',
  'thing_would',
  'would_take',
  'take_hour',
  'hour_two',
  'two_even',
  'even_offer',
  'offer_ga',
  'ga_money',
  'money_dental',
  'dental_offic',
  'offic_minut',
  'minut_away',
  'away_would',
  'would_ask',
  'ask_brother',
  'brother_work',
  'work_day',
  'day_bri',
  'bri_stay',
  'stay_home',
  'home_mom',
  'mom_yo',
  'yo_daughter',
  'daughter_think',
  'think_bri',
  'bri_mom',
  'mom_hous',
  'hous_day',
  'day_bri',
  'bri_agre',
  'agre_take',
  'take_appoint',
  'appoint_surgeri',
  'surgeri_went',
  'went_fine',
  'fine_bri',
  'bri_wait',
  'wait_lobbi',
  'lobbi_done',
  'done_came',
  'came_anesthesia',
  'anesthesia_disori',
  'disori_nauseou',
  'nauseou_guess',
  'guess_normal',
  'normal_gauz',
  'gauz_shove',
  'shove_mouth',
  'mouth_stop',
  'stop_bleed',
  'bleed_bri',
  'bri_took',
  'took_car',
  'car_let',
  'let_go',
  'go_realli',
  'realli_rememb',
  'rememb_much',
  'much_drive',
  'drive_felt',
  'felt_like',
  'like_enough',
  'enough_time',
  'time_pass',
  'pass_bri',
  'bri_got',
  'got_car',
  'car_told',
  'told_come',
  'come_realli',
  'realli_follow',
  'follow_altern',
  'altern_stay',
  'stay_hot',
  'hot_car',
  'car_long',
  'long_stori',
  'stori_short',
  'short_pool',
  'pool_realli',
  'realli_confus',
  'confus_gate',
  'gate_bri',
  'bri_basic',
  'basic_park',
  'park_one',
  'one_littl',
  'littl_table-bench',
  'table-bench_said',
  'said_shed',
  'shed_back',
  'back_still',
  'still_tri',
  'tri_puke',
  'puke_realli',
  'realli_dizzi',
  'dizzi_heat',
  'heat_+',
  '+_degre',
  'degre_drug',
  'drug_ask',
  'ask_take',
  'take_home',
  'home_guess',
  'guess_sinc',
  'sinc_day',
  'day_niec',
  'niec_meet',
  'meet_friend',
  'friend_pool',
  'pool_start',
  'start_feel',
  'feel_realli',
  'realli_sick',
  'sick_verg',
  'verg_pass',
  'pass_panic',
  'panic_attack',
  'attack_call',
  'call_brother',
  'brother_think',
  'think_could',
  'could_understand',
  'understand_med',
  'med_stuff',
  'stuff_mouth',
  'mouth_hung',
  'hung_guess',
  'guess_call',
  'call_bri',
  'bri_came',
  'came_stomp',
  'stomp_back',
  'back_cuss',
  'cuss_yell',
  'yell_took',
  'took_back',
  'back_car',
  'car_pass',
  'pass_drive',
  'drive_home',
  'home_arriv',
  'arriv_brother',
  'brother_left',
  'left_work',
  'work_met',
  'met_us',
  'us_driveway',
  'driveway_scream',
  'scream_bri',
  'bri_cri',
  'cri_still',
  'still_pretti',
  'pretti_disori',
  'disori_brother',
  'brother_took',
  'took_back',
  'back_home',
  'home_stay',
  'stay_med',
  'med_wore',
  'wore_told',
  'told_divorc',
  'divorc_bri',
  'bri_plu',
  'plu_thing',
  'thing_go',
  'go_detail',
  'detail_day',
  'day_sinc',
  'sinc_bri',
  'bri_blow',
  'blow_phone',
  'phone_tell',
  'tell_bitch',
  'bitch_tattl',
  'tattl_destroy',
  'destroy_famili',
  'famili_part',
  'part_feel',
  'feel_bad',
  'bad_niec',
  'niec_wonder',
  'wonder_jjst',
  'jjst_dealt',
  'dealt_wait',
  'wait_done',
  'done_pool',
  'pool_instead',
  'instead_call',
  'call_bro',
  'bro_caus',
  'caus_problem',
  'problem_aita',
  '[_updat_]',
  'updat_]_httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar',
  ']_httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar_&',
  'httpswwwredditcomuserthrowawaypoolproblemcommentsvznzdeupdate_aita_for_ruining_my_brothers_marriageutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_mod',
  'utm_name=iossmf_mod_let',
  'mod_let_post',
  'let_post_post',
  'post_post_old',
  'post_old_enough',
  'old_enough_throwaway',
  'enough_throwaway_whole',
  'throwaway_whole_situat',
  'whole_situat_bizarr',
  'situat_bizarr_still',
  'bizarr_still_cant',
  'still_cant_realli',
  'cant_realli_process',
  'realli_process_still',
  'process_still_feel',
  'still_feel_real',
  'feel_real_feel',
  'real_feel_scare',
  'feel_scare_guilti',
  'scare_guilti_surgeri',
  'guilti_surgeri_coupl',
  'surgeri_coupl_day',
  'coupl_day_ago',
  'day_ago_get',
  'ago_get_wisdom',
  'get_wisdom_teeth',
  'wisdom_teeth_realli',
  'teeth_realli_bad',
  'realli_bad_fear',
  'bad_fear_dentist',
  'fear_dentist_drug',
  'dentist_drug_pretti',
  'drug_pretti_hard',
  'pretti_hard_remov',
  'hard_remov_like',
  'remov_like_laugh',
  'like_laugh_ga',
  'laugh_ga_wear',
  'ga_wear_realli',
  'wear_realli_fast',
  'realli_fast_actual',
  'fast_actual_iv',
  'actual_iv_medicin',
  'iv_medicin_pretti',
  'medicin_pretti_much',
  'pretti_much_unconsci',
  'much_unconsci_whole',
  'unconsci_whole_thing',
  'whole_thing_told',
  'thing_told_respons',
  'told_respons_adult',
  'respons_adult_drive',
  'adult_drive_appoint',
  'drive_appoint_back',
  'appoint_back_med',
  'back_med_gave',
  'med_gave_would',
  'gave_would_make',
  'would_make_danger',
  'make_danger_drive',
  'danger_drive_mom',
  'drive_mom_work',
  'mom_work_trip',
  'work_trip_take',
  'trip_take_ask',
  'take_ask_sister',
  'ask_sister_law',
  'sister_law_bri',
  'law_bri_real',
  'bri_real_name',
  'real_name_could',
  'name_could_whole',
  'could_whole_thing',
  'whole_thing_would',
  'thing_would_take',
  'would_take_hour',
  'take_hour_two',
  'hour_two_even',
  'two_even_offer',
  'even_offer_ga',
  'offer_ga_money',
  'ga_money_dental',
  'money_dental_offic',
  'dental_offic_minut',
  'offic_minut_away',
  'minut_away_would',
  'away_would_ask',
  'would_ask_brother',
  'ask_brother_work',
  'brother_work_day',
  'work_day_bri',
  'day_bri_stay',
  'bri_stay_home',
  'stay_home_mom',
  'home_mom_yo',
  'mom_yo_daughter',
  'yo_daughter_think',
  'daughter_think_bri',
  'think_bri_mom',
  'bri_mom_hous',
  'mom_hous_day',
  'hous_day_bri',
  'day_bri_agre',
  'bri_agre_take',
  'agre_take_appoint',
  'take_appoint_surgeri',
  'appoint_surgeri_went',
  'surgeri_went_fine',
  'went_fine_bri',
  'fine_bri_wait',
  'bri_wait_lobbi',
  'wait_lobbi_done',
  'lobbi_done_came',
  'done_came_anesthesia',
  'came_anesthesia_disori',
  'anesthesia_disori_nauseou',
  'disori_nauseou_guess',
  'nauseou_guess_normal',
  'guess_normal_gauz',
  'normal_gauz_shove',
  'gauz_shove_mouth',
  'shove_mouth_stop',
  'mouth_stop_bleed',
  'stop_bleed_bri',
  'bleed_bri_took',
  'bri_took_car',
  'took_car_let',
  'car_let_go',
  'let_go_realli',
  'go_realli_rememb',
  'realli_rememb_much',
  'rememb_much_drive',
  'much_drive_felt',
  'drive_felt_like',
  'felt_like_enough',
  'like_enough_time',
  'enough_time_pass',
  'time_pass_bri',
  'pass_bri_got',
  'bri_got_car',
  'got_car_told',
  'car_told_come',
  'told_come_realli',
  'come_realli_follow',
  'realli_follow_altern',
  'follow_altern_stay',
  'altern_stay_hot',
  'stay_hot_car',
  'hot_car_long',
  'car_long_stori',
  'long_stori_short',
  'stori_short_pool',
  'short_pool_realli',
  'pool_realli_confus',
  'realli_confus_gate',
  'confus_gate_bri',
  'gate_bri_basic',
  'bri_basic_park',
  'basic_park_one',
  'park_one_littl',
  'one_littl_table-bench',
  'littl_table-bench_said',
  'table-bench_said_shed',
  'said_shed_back',
  'shed_back_still',
  'back_still_tri',
  'still_tri_puke',
  'tri_puke_realli',
  'puke_realli_dizzi',
  'realli_dizzi_heat',
  'dizzi_heat_+',
  'heat_+_degre',
  '+_degre_drug',
  'degre_drug_ask',
  'drug_ask_take',
  'ask_take_home',
  'take_home_guess',
  'home_guess_sinc',
  'guess_sinc_day',
  'sinc_day_niec',
  'day_niec_meet',
  'niec_meet_friend',
  'meet_friend_pool',
  'friend_pool_start',
  'pool_start_feel',
  'start_feel_realli',
  'feel_realli_sick',
  'realli_sick_verg',
  'sick_verg_pass',
  'verg_pass_panic',
  'pass_panic_attack',
  'panic_attack_call',
  'attack_call_brother',
  'call_brother_think',
  'brother_think_could',
  'think_could_understand',
  'could_understand_med',
  'understand_med_stuff',
  'med_stuff_mouth',
  'stuff_mouth_hung',
  'mouth_hung_guess',
  'hung_guess_call',
  'guess_call_bri',
  'call_bri_came',
  'bri_came_stomp',
  'came_stomp_back',
  'stomp_back_cuss',
  'back_cuss_yell',
  'cuss_yell_took',
  'yell_took_back',
  'took_back_car',
  'back_car_pass',
  'car_pass_drive',
  'pass_drive_home',
  'drive_home_arriv',
  'home_arriv_brother',
  'arriv_brother_left',
  'brother_left_work',
  'left_work_met',
  'work_met_us',
  'met_us_driveway',
  'us_driveway_scream',
  'driveway_scream_bri',
  'scream_bri_cri',
  'bri_cri_still',
  'cri_still_pretti',
  'still_pretti_disori',
  'pretti_disori_brother',
  'disori_brother_took',
  'brother_took_back',
  'took_back_home',
  'back_home_stay',
  'home_stay_med',
  'stay_med_wore',
  'med_wore_told',
  'wore_told_divorc',
  'told_divorc_bri',
  'divorc_bri_plu',
  'bri_plu_thing',
  'plu_thing_go',
  'thing_go_detail',
  'go_detail_day',
  'detail_day_sinc',
  'day_sinc_bri',
  'sinc_bri_blow',
  'bri_blow_phone',
  'blow_phone_tell',
  'phone_tell_bitch',
  'tell_bitch_tattl',
  'bitch_tattl_destroy',
  'tattl_destroy_famili',
  'destroy_famili_part',
  'famili_part_feel',
  'part_feel_bad',
  'feel_bad_niec',
  'bad_niec_wonder',
  'niec_wonder_jjst',
  'wonder_jjst_dealt',
  'jjst_dealt_wait',
  'dealt_wait_done',
  'wait_done_pool',
  'done_pool_instead',
  'pool_instead_call',
  'instead_call_bro',
  'call_bro_caus',
  'bro_caus_problem',
  'caus_problem_aita'],
 ['im',
  'loss',
  'guy',
  'realist',
  'know',
  'im',
  'clear',
  'legal',
  'im',
  'clear',
  'im',
  'vilifi',
  'cowork',
  'im',
  'genuin',
  'consid',
  'quit',
  'job',
  'mess',
  'work',
  'pretti',
  'standard',
  'day',
  'job',
  'night',
  'help',
  'friend',
  'restaur',
  'serv',
  'assort',
  'thai',
  'cuisin',
  'tbh',
  'im',
  'insan',
  'picki',
  'fell',
  'love',
  'peanut',
  'sauc',
  'main',
  'chef',
  'make',
  'show',
  'make',
  'week',
  'take',
  'either',
  'noodl',
  'stir',
  'fri',
  'day',
  'job',
  'lunch',
  'peopl',
  'know',
  'hand',
  'tri',
  'smell',
  'nutti',
  'tast',
  'nutti',
  'white',
  'girl',
  'pad',
  'thai',
  'basic',
  'late',
  'lunch',
  'disappear',
  'ill',
  'open',
  'lunchbox',
  'find',
  'half',
  'food',
  'miss',
  'ive',
  'tri',
  'address',
  'noth',
  'chang',
  'pretti',
  'sure',
  'one',
  'new',
  'hire',
  'proof',
  'thursday',
  'took',
  'noodl',
  'entir',
  'tupperwar',
  'miss',
  'happen',
  'im',
  'piss',
  'cowork',
  'share',
  'pizza',
  'today',
  'boss',
  'confront',
  'accus',
  'poison',
  'noodl',
  'daughter',
  'one',
  'new',
  'girl',
  'borrow',
  'lunch',
  'hospit',
  'turn',
  'sever',
  'allerg',
  'nut',
  'ate',
  'boom',
  'anaphylaxi',
  'use',
  'epi',
  'pen',
  'hospit',
  'dad',
  'tri',
  'hold',
  'account',
  'bill',
  'condit',
  'see',
  'pay',
  'mark',
  'food',
  'allergen',
  'im',
  'allerg',
  'dumb',
  'enough',
  'steal',
  'eat',
  'someth',
  'cant',
  'hate',
  'older',
  'cowork',
  'ice',
  'warn',
  'id',
  'report',
  'harass',
  'hr',
  'tri',
  'anyth',
  'funni',
  'brown',
  'noser',
  'guess',
  'friend',
  'awar',
  'offer',
  'full',
  'time',
  'job',
  'cant',
  'help',
  'feel',
  'unfair',
  'time',
  'could',
  'kill',
  'daughter',
  'tho',
  'aita',
  'edit',
  'holi',
  'shitbal',
  'blew',
  '*',
  '*',
  'email',
  'hr',
  'rep',
  'let',
  'know',
  'situat',
  'vacat',
  'get',
  'back',
  'tomorrow',
  'know',
  'awar',
  'go',
  'sinc',
  'last',
  'week',
  'note',
  'work',
  'weekend',
  'week',
  'quit',
  '-',
  '-',
  'job',
  'yeah',
  'cowork',
  'mostli',
  'chill',
  'end',
  'shift',
  'thank',
  'explain',
  'nosiest',
  'friendlier',
  'person',
  'alway',
  'bring',
  'peanut',
  'sauc',
  'dish',
  'guess',
  'gener',
  'assumpt',
  'somehow',
  'found',
  'steal',
  'lunch',
  'decid',
  'poison',
  'answer',
  'common',
  'question',
  'first',
  'time',
  'pad',
  'thai',
  'stolen',
  'im',
  'victim',
  'lunch',
  'thief',
  'usual',
  'take',
  'late',
  'lunch',
  'im',
  'one',
  'im',
  'guess',
  'ladi',
  'steal',
  'food',
  'decid',
  'left',
  'free',
  'boss',
  'said',
  'hr',
  'issu',
  'id',
  'tri',
  'talk',
  'lunch',
  'disappear',
  'hr',
  'alway',
  'said',
  'theyd',
  'look',
  'noth',
  'ever',
  'happen',
  '%',
  'allow',
  'eat',
  'desk',
  'unless',
  'medic',
  'reason',
  'option',
  'either',
  'im',
  'assum',
  'fine',
  'know',
  'sever',
  'allergi',
  'much',
  'ate',
  'reaction',
  'im',
  'privi',
  'medic',
  'inform',
  'sorri',
  'guy',
  'su',
  'sound',
  'like',
  'great',
  'reveng',
  'probabl',
  'worth',
  'cost',
  'lawyer',
  'friend',
  'let',
  'take',
  'tonight',
  'bitch',
  'everyth',
  'im',
  'probabl',
  'go',
  'take',
  'job',
  'offer',
  'one',
  'comment',
  'right',
  'even',
  'everyth',
  'settl',
  'want',
  'deal',
  'potenti',
  'hostil',
  'reactiv',
  'workplac',
  'like',
  'anymor',
  'career',
  'much',
  'room',
  'upward',
  'mobil',
  'feel',
  'welcom',
  'group',
  'meet',
  'today',
  'peopl',
  'call',
  'fake',
  'okay',
  'even',
  'get',
  'mad',
  'karma',
  'give',
  'anyth',
  'monetarili',
  'statu',
  'cant',
  'exactli',
  'give',
  'bunch',
  'detail',
  'unless',
  'want',
  'dox',
  'post',
  'seem',
  'rush',
  'wrote',
  'frustrat',
  'lunch',
  'short',
  'time+word',
  'limit=',
  'rush',
  'sorri',
  'meet',
  'write',
  'standard',
  'anyway',
  'ill',
  'keep',
  'read',
  'comment',
  'respond',
  'occasion',
  'unless',
  'get',
  'someth',
  'worth',
  'updat',
  'thank',
  'everyon',
  'opinion',
  'inform',
  'caesar',
  'dress',
  'worcestershir',
  '[',
  'thank',
  'googl',
  ']',
  'anchovi',
  'crazi',
  'edit',
  'recip',
  'tbsp',
  'red',
  'curri',
  'past',
  'cup',
  'smooth',
  'natur',
  'peanut',
  'butter',
  'cup',
  'sugar',
  'tsp',
  'dark',
  'soy',
  'sauc',
  'tbsp',
  'cider',
  'vinegar',
  'cup',
  'water',
  'oz',
  'coconut',
  'milk',
  'cook',
  'med-low',
  'heat',
  'add',
  'water',
  'seem',
  'thick',
  'use',
  'regular',
  'coconut',
  'milk',
  'low',
  'fat',
  'good',
  'imo',
  'find',
  'one',
  'home',
  'seem',
  'similar',
  'restaur',
  'sinc',
  'im',
  'make',
  'enough',
  'armi',
  'like',
  'one',
  'im',
  'also',
  'lazi',
  'want',
  'done',
  'minut',
  'hope',
  'everyon',
  'like',
  'well',
  'tri',
  'someth',
  'new',
  'natur',
  'pb',
  'import',
  'nuttier',
  'stronger',
  'far',
  'less',
  'sugar',
  'im_loss',
  'loss_guy',
  'guy_realist',
  'realist_know',
  'know_im',
  'im_clear',
  'clear_legal',
  'legal_im',
  'im_clear',
  'clear_im',
  'im_vilifi',
  'vilifi_cowork',
  'cowork_im',
  'im_genuin',
  'genuin_consid',
  'consid_quit',
  'quit_job',
  'job_mess',
  'mess_work',
  'work_pretti',
  'pretti_standard',
  'standard_day',
  'day_job',
  'job_night',
  'night_help',
  'help_friend',
  'friend_restaur',
  'restaur_serv',
  'serv_assort',
  'assort_thai',
  'thai_cuisin',
  'cuisin_tbh',
  'tbh_im',
  'im_insan',
  'insan_picki',
  'picki_fell',
  'fell_love',
  'love_peanut',
  'peanut_sauc',
  'sauc_main',
  'main_chef',
  'chef_make',
  'make_show',
  'show_make',
  'make_week',
  'week_take',
  'take_either',
  'either_noodl',
  'noodl_stir',
  'stir_fri',
  'fri_day',
  'day_job',
  'job_lunch',
  'lunch_peopl',
  'peopl_know',
  'know_hand',
  'hand_tri',
  'tri_smell',
  'smell_nutti',
  'nutti_tast',
  'tast_nutti',
  'nutti_white',
  'white_girl',
  'girl_pad',
  'pad_thai',
  'thai_basic',
  'basic_late',
  'late_lunch',
  'lunch_disappear',
  'disappear_ill',
  'ill_open',
  'open_lunchbox',
  'lunchbox_find',
  'find_half',
  'half_food',
  'food_miss',
  'miss_ive',
  'ive_tri',
  'tri_address',
  'address_noth',
  'noth_chang',
  'chang_pretti',
  'pretti_sure',
  'sure_one',
  'one_new',
  'new_hire',
  'hire_proof',
  'proof_thursday',
  'thursday_took',
  'took_noodl',
  'noodl_entir',
  'entir_tupperwar',
  'tupperwar_miss',
  'miss_happen',
  'happen_im',
  'im_piss',
  'piss_cowork',
  'cowork_share',
  'share_pizza',
  'pizza_today',
  'today_boss',
  'boss_confront',
  'confront_accus',
  'accus_poison',
  'poison_noodl',
  'noodl_daughter',
  'daughter_one',
  'one_new',
  'new_girl',
  'girl_borrow',
  'borrow_lunch',
  'lunch_hospit',
  'hospit_turn',
  'turn_sever',
  'sever_allerg',
  'allerg_nut',
  'nut_ate',
  'ate_boom',
  'boom_anaphylaxi',
  'anaphylaxi_use',
  'use_epi',
  'epi_pen',
  'pen_hospit',
  'hospit_dad',
  'dad_tri',
  'tri_hold',
  'hold_account',
  'account_bill',
  'bill_condit',
  'condit_see',
  'see_pay',
  'pay_mark',
  'mark_food',
  'food_allergen',
  'allergen_im',
  'im_allerg',
  'allerg_dumb',
  'dumb_enough',
  'enough_steal',
  'steal_eat',
  'eat_someth',
  'someth_cant',
  'cant_hate',
  'hate_older',
  'older_cowork',
  'cowork_ice',
  'ice_warn',
  'warn_id',
  'id_report',
  'report_harass',
  'harass_hr',
  'hr_tri',
  'tri_anyth',
  'anyth_funni',
  'funni_brown',
  'brown_noser',
  'noser_guess',
  'guess_friend',
  'friend_awar',
  'awar_offer',
  'offer_full',
  'full_time',
  'time_job',
  'job_cant',
  'cant_help',
  'help_feel',
  'feel_unfair',
  'unfair_time',
  'time_could',
  'could_kill',
  'kill_daughter',
  'daughter_tho',
  'tho_aita',
  'aita_edit',
  'edit_holi',
  'holi_shitbal',
  'shitbal_blew',
  'blew_*',
  '*_*',
  '*_email',
  'email_hr',
  'hr_rep',
  'rep_let',
  'let_know',
  'know_situat',
  'situat_vacat',
  'vacat_get',
  'get_back',
  'back_tomorrow',
  'tomorrow_know',
  'know_awar',
  'awar_go',
  'go_sinc',
  'sinc_last',
  'last_week',
  'week_note',
  'note_work',
  'work_weekend',
  'weekend_week',
  'week_quit',
  'quit_-',
  '-_-',
  '-_job',
  'job_yeah',
  'yeah_cowork',
  'cowork_mostli',
  'mostli_chill',
  'chill_end',
  'end_shift',
  'shift_thank',
  'thank_explain',
  'explain_nosiest',
  'nosiest_friendlier',
  'friendlier_person',
  'person_alway',
  'alway_bring',
  'bring_peanut',
  'peanut_sauc',
  'sauc_dish',
  'dish_guess',
  'guess_gener',
  'gener_assumpt',
  'assumpt_somehow',
  'somehow_found',
  'found_steal',
  'steal_lunch',
  'lunch_decid',
  'decid_poison',
  'poison_answer',
  'answer_common',
  'common_question',
  'question_first',
  'first_time',
  'time_pad',
  'pad_thai',
  'thai_stolen',
  'stolen_im',
  'im_victim',
  'victim_lunch',
  'lunch_thief',
  'thief_usual',
  'usual_take',
  'take_late',
  'late_lunch',
  'lunch_im',
  'im_one',
  'one_im',
  'im_guess',
  'guess_ladi',
  'ladi_steal',
  'steal_food',
  'food_decid',
  'decid_left',
  'left_free',
  'free_boss',
  'boss_said',
  'said_hr',
  'hr_issu',
  'issu_id',
  'id_tri',
  'tri_talk',
  'talk_lunch',
  'lunch_disappear',
  'disappear_hr',
  'hr_alway',
  'alway_said',
  'said_theyd',
  'theyd_look',
  'look_noth',
  'noth_ever',
  'ever_happen',
  'happen_%',
  '%_allow',
  'allow_eat',
  'eat_desk',
  'desk_unless',
  'unless_medic',
  'medic_reason',
  'reason_option',
  'option_either',
  'either_im',
  'im_assum',
  'assum_fine',
  'fine_know',
  'know_sever',
  'sever_allergi',
  'allergi_much',
  'much_ate',
  'ate_reaction',
  'reaction_im',
  'im_privi',
  'privi_medic',
  'medic_inform',
  'inform_sorri',
  'sorri_guy',
  'guy_su',
  'su_sound',
  'sound_like',
  'like_great',
  'great_reveng',
  'reveng_probabl',
  'probabl_worth',
  'worth_cost',
  'cost_lawyer',
  'lawyer_friend',
  'friend_let',
  'let_take',
  'take_tonight',
  'tonight_bitch',
  'bitch_everyth',
  'everyth_im',
  'im_probabl',
  'probabl_go',
  'go_take',
  'take_job',
  'job_offer',
  'offer_one',
  'one_comment',
  'comment_right',
  'right_even',
  'even_everyth',
  'everyth_settl',
  'settl_want',
  'want_deal',
  'deal_potenti',
  'potenti_hostil',
  'hostil_reactiv',
  'reactiv_workplac',
  'workplac_like',
  'like_anymor',
  'anymor_career',
  'career_much',
  'much_room',
  'room_upward',
  'upward_mobil',
  'mobil_feel',
  'feel_welcom',
  'welcom_group',
  'group_meet',
  'meet_today',
  'today_peopl',
  'peopl_call',
  'call_fake',
  'fake_okay',
  'okay_even',
  'even_get',
  'get_mad',
  'mad_karma',
  'karma_give',
  'give_anyth',
  'anyth_monetarili',
  'monetarili_statu',
  'statu_cant',
  'cant_exactli',
  'exactli_give',
  'give_bunch',
  'bunch_detail',
  'detail_unless',
  'unless_want',
  'want_dox',
  'dox_post',
  'post_seem',
  'seem_rush',
  'rush_wrote',
  'wrote_frustrat',
  'frustrat_lunch',
  'lunch_short',
  'short_time+word',
  'time+word_limit=',
  'limit=_rush',
  'rush_sorri',
  'sorri_meet',
  'meet_write',
  'write_standard',
  'standard_anyway',
  'anyway_ill',
  'ill_keep',
  'keep_read',
  'read_comment',
  'comment_respond',
  'respond_occasion',
  'occasion_unless',
  'unless_get',
  'get_someth',
  'someth_worth',
  'worth_updat',
  'updat_thank',
  'thank_everyon',
  'everyon_opinion',
  'opinion_inform',
  'inform_caesar',
  'caesar_dress',
  'dress_worcestershir',
  'worcestershir_[',
  '[_thank',
  'thank_googl',
  'googl_]',
  ']_anchovi',
  'anchovi_crazi',
  'crazi_edit',
  'edit_recip',
  'recip_tbsp',
  'tbsp_red',
  'red_curri',
  'curri_past',
  'past_cup',
  'cup_smooth',
  'smooth_natur',
  'natur_peanut',
  'peanut_butter',
  'butter_cup',
  'cup_sugar',
  'sugar_tsp',
  'tsp_dark',
  'dark_soy',
  'soy_sauc',
  'sauc_tbsp',
  'tbsp_cider',
  'cider_vinegar',
  'vinegar_cup',
  'cup_water',
  'water_oz',
  'oz_coconut',
  'coconut_milk',
  'milk_cook',
  'cook_med-low',
  'med-low_heat',
  'heat_add',
  'add_water',
  'water_seem',
  'seem_thick',
  'thick_use',
  'use_regular',
  'regular_coconut',
  'coconut_milk',
  'milk_low',
  'low_fat',
  'fat_good',
  'good_imo',
  'imo_find',
  'find_one',
  'one_home',
  'home_seem',
  'seem_similar',
  'similar_restaur',
  'restaur_sinc',
  'sinc_im',
  'im_make',
  'make_enough',
  'enough_armi',
  'armi_like',
  'like_one',
  'one_im',
  'im_also',
  'also_lazi',
  'lazi_want',
  'want_done',
  'done_minut',
  'minut_hope',
  'hope_everyon',
  'everyon_like',
  'like_well',
  'well_tri',
  'tri_someth',
  'someth_new',
  'new_natur',
  'natur_pb',
  'pb_import',
  'import_nuttier',
  'nuttier_stronger',
  'stronger_far',
  'far_less',
  'less_sugar',
  'im_loss_guy',
  'loss_guy_realist',
  'guy_realist_know',
  'realist_know_im',
  'know_im_clear',
  'im_clear_legal',
  'clear_legal_im',
  'legal_im_clear',
  'im_clear_im',
  'clear_im_vilifi',
  'im_vilifi_cowork',
  'vilifi_cowork_im',
  'cowork_im_genuin',
  'im_genuin_consid',
  'genuin_consid_quit',
  'consid_quit_job',
  'quit_job_mess',
  'job_mess_work',
  'mess_work_pretti',
  'work_pretti_standard',
  'pretti_standard_day',
  'standard_day_job',
  'day_job_night',
  'job_night_help',
  'night_help_friend',
  'help_friend_restaur',
  'friend_restaur_serv',
  'restaur_serv_assort',
  'serv_assort_thai',
  'assort_thai_cuisin',
  'thai_cuisin_tbh',
  'cuisin_tbh_im',
  'tbh_im_insan',
  'im_insan_picki',
  'insan_picki_fell',
  'picki_fell_love',
  'fell_love_peanut',
  'love_peanut_sauc',
  'peanut_sauc_main',
  'sauc_main_chef',
  'main_chef_make',
  'chef_make_show',
  'make_show_make',
  'show_make_week',
  'make_week_take',
  'week_take_either',
  'take_either_noodl',
  'either_noodl_stir',
  'noodl_stir_fri',
  'stir_fri_day',
  'fri_day_job',
  'day_job_lunch',
  'job_lunch_peopl',
  ...],
 ['husband',
  'trip',
  'coutri',
  'year',
  'goe',
  'everi',
  'year',
  'best',
  'friend',
  'reason',
  'go',
  'go',
  'attend',
  'sport',
  'event',
  'year',
  'husband',
  'told',
  'could',
  'go',
  'friend',
  'sinc',
  'visit',
  'new',
  'destin',
  'paid',
  'ticket',
  'everyth',
  'els',
  'sinc',
  'im',
  'sahm',
  'job',
  'kid',
  'left',
  'mom',
  'howev',
  'found',
  'book',
  'st',
  'class',
  'friend',
  'got',
  'economi',
  'hold',
  'tongu',
  'confront',
  'first',
  'refus',
  'discuss',
  'argument',
  'got',
  'heat',
  'yell',
  'paid',
  'ticket',
  'ff',
  'enough',
  'kept',
  'stop',
  'act',
  'like',
  'royalti',
  'come',
  'think',
  'even',
  'economi',
  'fine',
  'sinc',
  'technic',
  'work',
  'anyway',
  'cri',
  'said',
  'decid',
  'go',
  'altogeth',
  'chang',
  'tone',
  'start',
  'beg',
  'go',
  'plan',
  'declin',
  'went',
  'pick',
  'kid',
  'mom',
  'hous',
  'came',
  'back',
  'hr',
  'later',
  'huf',
  'buf',
  'happen',
  'friend',
  'sent',
  'text',
  'call',
  'entitl',
  'said',
  'reason',
  'want',
  'husband',
  'take',
  'prove',
  'point',
  'respond',
  'block',
  'sinc',
  'gotten',
  'increasingli',
  'rude',
  'past',
  'month',
  'husband',
  'said',
  'keep',
  'cri',
  'exclud',
  'happen',
  'final',
  'decid',
  'includ',
  'amitheasshol',
  'settl',
  'economi',
  'way',
  'perfectli',
  'capabl',
  'financ',
  'trip',
  'husband_trip',
  'trip_coutri',
  'coutri_year',
  'year_goe',
  'goe_everi',
  'everi_year',
  'year_best',
  'best_friend',
  'friend_reason',
  'reason_go',
  'go_go',
  'go_attend',
  'attend_sport',
  'sport_event',
  'event_year',
  'year_husband',
  'husband_told',
  'told_could',
  'could_go',
  'go_friend',
  'friend_sinc',
  'sinc_visit',
  'visit_new',
  'new_destin',
  'destin_paid',
  'paid_ticket',
  'ticket_everyth',
  'everyth_els',
  'els_sinc',
  'sinc_im',
  'im_sahm',
  'sahm_job',
  'job_kid',
  'kid_left',
  'left_mom',
  'mom_howev',
  'howev_found',
  'found_book',
  'book_st',
  'st_class',
  'class_friend',
  'friend_got',
  'got_economi',
  'economi_hold',
  'hold_tongu',
  'tongu_confront',
  'confront_first',
  'first_refus',
  'refus_discuss',
  'discuss_argument',
  'argument_got',
  'got_heat',
  'heat_yell',
  'yell_paid',
  'paid_ticket',
  'ticket_ff',
  'ff_enough',
  'enough_kept',
  'kept_stop',
  'stop_act',
  'act_like',
  'like_royalti',
  'royalti_come',
  'come_think',
  'think_even',
  'even_economi',
  'economi_fine',
  'fine_sinc',
  'sinc_technic',
  'technic_work',
  'work_anyway',
  'anyway_cri',
  'cri_said',
  'said_decid',
  'decid_go',
  'go_altogeth',
  'altogeth_chang',
  'chang_tone',
  'tone_start',
  'start_beg',
  'beg_go',
  'go_plan',
  'plan_declin',
  'declin_went',
  'went_pick',
  'pick_kid',
  'kid_mom',
  'mom_hous',
  'hous_came',
  'came_back',
  'back_hr',
  'hr_later',
  'later_huf',
  'huf_buf',
  'buf_happen',
  'happen_friend',
  'friend_sent',
  'sent_text',
  'text_call',
  'call_entitl',
  'entitl_said',
  'said_reason',
  'reason_want',
  'want_husband',
  'husband_take',
  'take_prove',
  'prove_point',
  'point_respond',
  'respond_block',
  'block_sinc',
  'sinc_gotten',
  'gotten_increasingli',
  'increasingli_rude',
  'rude_past',
  'past_month',
  'month_husband',
  'husband_said',
  'said_keep',
  'keep_cri',
  'cri_exclud',
  'exclud_happen',
  'happen_final',
  'final_decid',
  'decid_includ',
  'includ_amitheasshol',
  'amitheasshol_settl',
  'settl_economi',
  'economi_way',
  'way_perfectli',
  'perfectli_capabl',
  'capabl_financ',
  'financ_trip',
  'husband_trip_coutri',
  'trip_coutri_year',
  'coutri_year_goe',
  'year_goe_everi',
  'goe_everi_year',
  'everi_year_best',
  'year_best_friend',
  'best_friend_reason',
  'friend_reason_go',
  'reason_go_go',
  'go_go_attend',
  'go_attend_sport',
  'attend_sport_event',
  'sport_event_year',
  'event_year_husband',
  'year_husband_told',
  'husband_told_could',
  'told_could_go',
  'could_go_friend',
  'go_friend_sinc',
  'friend_sinc_visit',
  'sinc_visit_new',
  'visit_new_destin',
  'new_destin_paid',
  'destin_paid_ticket',
  'paid_ticket_everyth',
  'ticket_everyth_els',
  'everyth_els_sinc',
  'els_sinc_im',
  'sinc_im_sahm',
  'im_sahm_job',
  'sahm_job_kid',
  'job_kid_left',
  'kid_left_mom',
  'left_mom_howev',
  'mom_howev_found',
  'howev_found_book',
  'found_book_st',
  'book_st_class',
  'st_class_friend',
  'class_friend_got',
  'friend_got_economi',
  'got_economi_hold',
  'economi_hold_tongu',
  'hold_tongu_confront',
  'tongu_confront_first',
  'confront_first_refus',
  'first_refus_discuss',
  'refus_discuss_argument',
  'discuss_argument_got',
  'argument_got_heat',
  'got_heat_yell',
  'heat_yell_paid',
  'yell_paid_ticket',
  'paid_ticket_ff',
  'ticket_ff_enough',
  'ff_enough_kept',
  'enough_kept_stop',
  'kept_stop_act',
  'stop_act_like',
  'act_like_royalti',
  'like_royalti_come',
  'royalti_come_think',
  'come_think_even',
  'think_even_economi',
  'even_economi_fine',
  'economi_fine_sinc',
  'fine_sinc_technic',
  'sinc_technic_work',
  'technic_work_anyway',
  'work_anyway_cri',
  'anyway_cri_said',
  'cri_said_decid',
  'said_decid_go',
  'decid_go_altogeth',
  'go_altogeth_chang',
  'altogeth_chang_tone',
  'chang_tone_start',
  'tone_start_beg',
  'start_beg_go',
  'beg_go_plan',
  'go_plan_declin',
  'plan_declin_went',
  'declin_went_pick',
  'went_pick_kid',
  'pick_kid_mom',
  'kid_mom_hous',
  'mom_hous_came',
  'hous_came_back',
  'came_back_hr',
  'back_hr_later',
  'hr_later_huf',
  'later_huf_buf',
  'huf_buf_happen',
  'buf_happen_friend',
  'happen_friend_sent',
  'friend_sent_text',
  'sent_text_call',
  'text_call_entitl',
  'call_entitl_said',
  'entitl_said_reason',
  'said_reason_want',
  'reason_want_husband',
  'want_husband_take',
  'husband_take_prove',
  'take_prove_point',
  'prove_point_respond',
  'point_respond_block',
  'respond_block_sinc',
  'block_sinc_gotten',
  'sinc_gotten_increasingli',
  'gotten_increasingli_rude',
  'increasingli_rude_past',
  'rude_past_month',
  'past_month_husband',
  'month_husband_said',
  'husband_said_keep',
  'said_keep_cri',
  'keep_cri_exclud',
  'cri_exclud_happen',
  'exclud_happen_final',
  'happen_final_decid',
  'final_decid_includ',
  'decid_includ_amitheasshol',
  'includ_amitheasshol_settl',
  'amitheasshol_settl_economi',
  'settl_economi_way',
  'economi_way_perfectli',
  'way_perfectli_capabl',
  'perfectli_capabl_financ',
  'capabl_financ_trip'],
 ['hello',
  'marri',
  'husband',
  'year',
  'im',
  'last',
  'year',
  'univers',
  'busi',
  'last',
  'two',
  'week',
  'mani',
  'project',
  'final',
  'loom',
  'husband',
  'complain',
  'see',
  'studi',
  'activ',
  'togeth',
  'hang',
  'friend',
  'anymor',
  'ive',
  'told',
  'gon',
  'na',
  'last',
  'forev',
  'need',
  'focu',
  'last',
  'year',
  'hardest',
  'day',
  'exam',
  'want',
  'go',
  'friend',
  'birthday',
  'parti',
  'refus',
  'busi',
  'prepar',
  'exam',
  'plead',
  'say',
  'one',
  'hour',
  'talk',
  'friend',
  'upset',
  'im',
  'said',
  'shut',
  'discuss',
  'got',
  'upset',
  'call',
  'selfish',
  'inconsider',
  'drop',
  'went',
  'bed',
  'set',
  'alarm',
  'clock',
  'like',
  'alway',
  'sinc',
  'im',
  'heavi',
  'sleeper+',
  'stay',
  'late',
  'studi',
  'next',
  'morn',
  'woke',
  'liter',
  'freak',
  'check',
  'alarm',
  'found',
  'set',
  'go',
  'idea',
  'happen',
  'til',
  'husband',
  'told',
  'repay',
  'refus',
  'take',
  'one',
  'one',
  'hour',
  'attend',
  'parti',
  'took',
  'hour',
  'time',
  'believ',
  'absolut',
  'blew',
  'yell',
  'scream',
  'left',
  'right',
  'stood',
  'shock',
  'reaction',
  'rage',
  'got',
  'dress',
  'quickli',
  'rush',
  'univers',
  'let',
  'exam',
  'hall',
  'got',
  'lot',
  'hassl',
  'get',
  're-schedul',
  'exam',
  'especi',
  'sinc',
  'legit',
  'reason',
  'late',
  'aw',
  'say',
  'went',
  'home',
  'husband',
  'stop',
  'speak',
  'kept',
  'act',
  'hurt',
  'feel',
  'traumat',
  'yell',
  'deserv',
  'sinc',
  'frustrat',
  'continu',
  'refus',
  'attend',
  'event',
  'past',
  'week',
  'might',
  'wrong',
  'consid',
  'think',
  'exam',
  'prioriti',
  'way',
  'teach',
  'lesson',
  'right',
  'hello_marri',
  'marri_husband',
  'husband_year',
  'year_im',
  'im_last',
  'last_year',
  'year_univers',
  'univers_busi',
  'busi_last',
  'last_two',
  'two_week',
  'week_mani',
  'mani_project',
  'project_final',
  'final_loom',
  'loom_husband',
  'husband_complain',
  'complain_see',
  'see_studi',
  'studi_activ',
  'activ_togeth',
  'togeth_hang',
  'hang_friend',
  'friend_anymor',
  'anymor_ive',
  'ive_told',
  'told_gon',
  'gon_na',
  'na_last',
  'last_forev',
  'forev_need',
  'need_focu',
  'focu_last',
  'last_year',
  'year_hardest',
  'hardest_day',
  'day_exam',
  'exam_want',
  'want_go',
  'go_friend',
  'friend_birthday',
  'birthday_parti',
  'parti_refus',
  'refus_busi',
  'busi_prepar',
  'prepar_exam',
  'exam_plead',
  'plead_say',
  'say_one',
  'one_hour',
  'hour_talk',
  'talk_friend',
  'friend_upset',
  'upset_im',
  'im_said',
  'said_shut',
  'shut_discuss',
  'discuss_got',
  'got_upset',
  'upset_call',
  'call_selfish',
  'selfish_inconsider',
  'inconsider_drop',
  'drop_went',
  'went_bed',
  'bed_set',
  'set_alarm',
  'alarm_clock',
  'clock_like',
  'like_alway',
  'alway_sinc',
  'sinc_im',
  'im_heavi',
  'heavi_sleeper+',
  'sleeper+_stay',
  'stay_late',
  'late_studi',
  'studi_next',
  'next_morn',
  'morn_woke',
  'woke_liter',
  'liter_freak',
  'freak_check',
  'check_alarm',
  'alarm_found',
  'found_set',
  'set_go',
  'go_idea',
  'idea_happen',
  'happen_til',
  'til_husband',
  'husband_told',
  'told_repay',
  'repay_refus',
  'refus_take',
  'take_one',
  'one_one',
  'one_hour',
  'hour_attend',
  'attend_parti',
  'parti_took',
  'took_hour',
  'hour_time',
  'time_believ',
  'believ_absolut',
  'absolut_blew',
  'blew_yell',
  'yell_scream',
  'scream_left',
  'left_right',
  'right_stood',
  'stood_shock',
  'shock_reaction',
  'reaction_rage',
  'rage_got',
  'got_dress',
  'dress_quickli',
  'quickli_rush',
  'rush_univers',
  'univers_let',
  'let_exam',
  'exam_hall',
  'hall_got',
  'got_lot',
  'lot_hassl',
  'hassl_get',
  'get_re-schedul',
  're-schedul_exam',
  'exam_especi',
  'especi_sinc',
  'sinc_legit',
  'legit_reason',
  'reason_late',
  'late_aw',
  'aw_say',
  'say_went',
  'went_home',
  'home_husband',
  'husband_stop',
  'stop_speak',
  'speak_kept',
  'kept_act',
  'act_hurt',
  'hurt_feel',
  'feel_traumat',
  'traumat_yell',
  'yell_deserv',
  'deserv_sinc',
  'sinc_frustrat',
  'frustrat_continu',
  'continu_refus',
  'refus_attend',
  'attend_event',
  'event_past',
  'past_week',
  'week_might',
  'might_wrong',
  'wrong_consid',
  'consid_think',
  'think_exam',
  'exam_prioriti',
  'prioriti_way',
  'way_teach',
  'teach_lesson',
  'lesson_right',
  'hello_marri_husband',
  'marri_husband_year',
  'husband_year_im',
  'year_im_last',
  'im_last_year',
  'last_year_univers',
  'year_univers_busi',
  'univers_busi_last',
  'busi_last_two',
  'last_two_week',
  'two_week_mani',
  'week_mani_project',
  'mani_project_final',
  'project_final_loom',
  'final_loom_husband',
  'loom_husband_complain',
  'husband_complain_see',
  'complain_see_studi',
  'see_studi_activ',
  'studi_activ_togeth',
  'activ_togeth_hang',
  'togeth_hang_friend',
  'hang_friend_anymor',
  'friend_anymor_ive',
  'anymor_ive_told',
  'ive_told_gon',
  'told_gon_na',
  'gon_na_last',
  'na_last_forev',
  'last_forev_need',
  'forev_need_focu',
  'need_focu_last',
  'focu_last_year',
  'last_year_hardest',
  'year_hardest_day',
  'hardest_day_exam',
  'day_exam_want',
  'exam_want_go',
  'want_go_friend',
  'go_friend_birthday',
  'friend_birthday_parti',
  'birthday_parti_refus',
  'parti_refus_busi',
  'refus_busi_prepar',
  'busi_prepar_exam',
  'prepar_exam_plead',
  'exam_plead_say',
  'plead_say_one',
  'say_one_hour',
  'one_hour_talk',
  'hour_talk_friend',
  'talk_friend_upset',
  'friend_upset_im',
  'upset_im_said',
  'im_said_shut',
  'said_shut_discuss',
  'shut_discuss_got',
  'discuss_got_upset',
  'got_upset_call',
  'upset_call_selfish',
  'call_selfish_inconsider',
  'selfish_inconsider_drop',
  'inconsider_drop_went',
  'drop_went_bed',
  'went_bed_set',
  'bed_set_alarm',
  'set_alarm_clock',
  'alarm_clock_like',
  'clock_like_alway',
  'like_alway_sinc',
  'alway_sinc_im',
  'sinc_im_heavi',
  'im_heavi_sleeper+',
  'heavi_sleeper+_stay',
  'sleeper+_stay_late',
  'stay_late_studi',
  'late_studi_next',
  'studi_next_morn',
  'next_morn_woke',
  'morn_woke_liter',
  'woke_liter_freak',
  'liter_freak_check',
  'freak_check_alarm',
  'check_alarm_found',
  'alarm_found_set',
  'found_set_go',
  'set_go_idea',
  'go_idea_happen',
  'idea_happen_til',
  'happen_til_husband',
  'til_husband_told',
  'husband_told_repay',
  'told_repay_refus',
  'repay_refus_take',
  'refus_take_one',
  'take_one_one',
  'one_one_hour',
  'one_hour_attend',
  'hour_attend_parti',
  'attend_parti_took',
  'parti_took_hour',
  'took_hour_time',
  'hour_time_believ',
  'time_believ_absolut',
  'believ_absolut_blew',
  'absolut_blew_yell',
  'blew_yell_scream',
  'yell_scream_left',
  'scream_left_right',
  'left_right_stood',
  'right_stood_shock',
  'stood_shock_reaction',
  'shock_reaction_rage',
  'reaction_rage_got',
  'rage_got_dress',
  'got_dress_quickli',
  'dress_quickli_rush',
  'quickli_rush_univers',
  'rush_univers_let',
  'univers_let_exam',
  'let_exam_hall',
  'exam_hall_got',
  'hall_got_lot',
  'got_lot_hassl',
  'lot_hassl_get',
  'hassl_get_re-schedul',
  'get_re-schedul_exam',
  're-schedul_exam_especi',
  'exam_especi_sinc',
  'especi_sinc_legit',
  'sinc_legit_reason',
  'legit_reason_late',
  'reason_late_aw',
  'late_aw_say',
  'aw_say_went',
  'say_went_home',
  'went_home_husband',
  'home_husband_stop',
  'husband_stop_speak',
  'stop_speak_kept',
  'speak_kept_act',
  'kept_act_hurt',
  'act_hurt_feel',
  'hurt_feel_traumat',
  'feel_traumat_yell',
  'traumat_yell_deserv',
  'yell_deserv_sinc',
  'deserv_sinc_frustrat',
  'sinc_frustrat_continu',
  'frustrat_continu_refus',
  'continu_refus_attend',
  'refus_attend_event',
  'attend_event_past',
  'event_past_week',
  'past_week_might',
  'week_might_wrong',
  'might_wrong_consid',
  'wrong_consid_think',
  'consid_think_exam',
  'think_exam_prioriti',
  'exam_prioriti_way',
  'prioriti_way_teach',
  'way_teach_lesson',
  'teach_lesson_right'],
 ['situat',
  'kind',
  'mess',
  'expect',
  'first',
  'babi',
  'husband',
  'first',
  'grandchild',
  'famili',
  'inlaw',
  'said',
  'babi',
  'boy',
  'well',
  'give',
  'father',
  'inlaw',
  'name',
  'dead',
  'due',
  'cancer',
  'problem',
  'happen',
  'found',
  'gender',
  'babi',
  '-',
  'husband',
  'famili',
  'thing',
  'like',
  'attend',
  'prayer',
  'ritual',
  'reveal',
  'dr',
  'like',
  'went',
  'keep',
  'peac',
  'dr',
  'appoit',
  'came',
  'turn',
  'girl',
  'husband',
  'cri',
  'car',
  'turn',
  'phone',
  'hide',
  'famili',
  'final',
  'told',
  'mom',
  'made',
  'frustrat',
  '&',
  'disapppint',
  'clear',
  'bother',
  'caus',
  'daughter',
  'deserv',
  'celebr',
  'ghost',
  'day',
  'start',
  'come',
  '&',
  'visit',
  'constantli',
  'refer',
  'daughter',
  'son',
  'claim',
  'result',
  'fals',
  'basic',
  'pretend',
  'boy',
  'severa',
  'fight',
  'refus',
  'stop',
  'husband',
  'side',
  'despit',
  'see',
  'wrong',
  'unreason',
  'speak',
  'sister',
  'inlaw',
  'call',
  'apolog',
  'inform',
  'arrang',
  'babyshow',
  'excit',
  'happi',
  'arriv',
  'saw',
  'blue',
  'balloon',
  'blue',
  'cake',
  'father',
  'inlaw',
  'namedecor',
  'around',
  'confus',
  'sit',
  'sister',
  'inlaw',
  'explain',
  'still',
  'hope',
  'gender',
  'result',
  'fals',
  'boy',
  'look',
  'husband',
  'agre',
  'lost',
  'temper',
  'yell',
  'call',
  'delusion',
  'tell',
  'stop',
  'treat',
  'daughter',
  'like',
  'unwant',
  'act',
  'like',
  'exist',
  'throw',
  'parti',
  'imaginari',
  'grandson',
  'mother',
  'inlaw',
  'break',
  'cri',
  'took',
  'bag',
  'walk',
  'immedi',
  'start',
  'yell',
  'husband',
  'follow',
  'outsid',
  'start',
  'argu',
  'insult',
  'famili',
  'dad',
  'memori',
  'act',
  'like',
  'told',
  'wake',
  'see',
  'insan',
  'famili',
  'behavior',
  'said',
  'need',
  'time',
  'process',
  'fact',
  'girl',
  'boy',
  'expect',
  'insist',
  'play',
  'along',
  'theyll',
  'soon',
  'get',
  'said',
  'absolut',
  'demand',
  'take',
  'home',
  'said',
  'call',
  'uber',
  'left',
  'fume',
  'call',
  'time',
  'text',
  'come',
  'home',
  'til',
  'get',
  'ass',
  'apolog',
  'ruin',
  'everyth',
  'theyv',
  'done',
  'accus',
  'mental',
  'unstabl',
  'respond',
  'yet',
  'constantli',
  'pressur',
  'get',
  'right',
  'famili',
  'even',
  'talk',
  'anyth',
  'els',
  'situat_kind',
  'kind_mess',
  'mess_expect',
  'expect_first',
  'first_babi',
  'babi_husband',
  'husband_first',
  'first_grandchild',
  'grandchild_famili',
  'famili_inlaw',
  'inlaw_said',
  'said_babi',
  'babi_boy',
  'boy_well',
  'well_give',
  'give_father',
  'father_inlaw',
  'inlaw_name',
  'name_dead',
  'dead_due',
  'due_cancer',
  'cancer_problem',
  'problem_happen',
  'happen_found',
  'found_gender',
  'gender_babi',
  'babi_-',
  '-_husband',
  'husband_famili',
  'famili_thing',
  'thing_like',
  'like_attend',
  'attend_prayer',
  'prayer_ritual',
  'ritual_reveal',
  'reveal_dr',
  'dr_like',
  'like_went',
  'went_keep',
  'keep_peac',
  'peac_dr',
  'dr_appoit',
  'appoit_came',
  'came_turn',
  'turn_girl',
  'girl_husband',
  'husband_cri',
  'cri_car',
  'car_turn',
  'turn_phone',
  'phone_hide',
  'hide_famili',
  'famili_final',
  'final_told',
  'told_mom',
  'mom_made',
  'made_frustrat',
  'frustrat_&',
  '&_disapppint',
  'disapppint_clear',
  'clear_bother',
  'bother_caus',
  'caus_daughter',
  'daughter_deserv',
  'deserv_celebr',
  'celebr_ghost',
  'ghost_day',
  'day_start',
  'start_come',
  'come_&',
  '&_visit',
  'visit_constantli',
  'constantli_refer',
  'refer_daughter',
  'daughter_son',
  'son_claim',
  'claim_result',
  'result_fals',
  'fals_basic',
  'basic_pretend',
  'pretend_boy',
  'boy_severa',
  'severa_fight',
  'fight_refus',
  'refus_stop',
  'stop_husband',
  'husband_side',
  'side_despit',
  'despit_see',
  'see_wrong',
  'wrong_unreason',
  'unreason_speak',
  'speak_sister',
  'sister_inlaw',
  'inlaw_call',
  'call_apolog',
  'apolog_inform',
  'inform_arrang',
  'arrang_babyshow',
  'babyshow_excit',
  'excit_happi',
  'happi_arriv',
  'arriv_saw',
  'saw_blue',
  'blue_balloon',
  'balloon_blue',
  'blue_cake',
  'cake_father',
  'father_inlaw',
  'inlaw_namedecor',
  'namedecor_around',
  'around_confus',
  'confus_sit',
  'sit_sister',
  'sister_inlaw',
  'inlaw_explain',
  'explain_still',
  'still_hope',
  'hope_gender',
  'gender_result',
  'result_fals',
  'fals_boy',
  'boy_look',
  'look_husband',
  'husband_agre',
  'agre_lost',
  'lost_temper',
  'temper_yell',
  'yell_call',
  'call_delusion',
  'delusion_tell',
  'tell_stop',
  'stop_treat',
  'treat_daughter',
  'daughter_like',
  'like_unwant',
  'unwant_act',
  'act_like',
  'like_exist',
  'exist_throw',
  'throw_parti',
  'parti_imaginari',
  'imaginari_grandson',
  'grandson_mother',
  'mother_inlaw',
  'inlaw_break',
  'break_cri',
  'cri_took',
  'took_bag',
  'bag_walk',
  'walk_immedi',
  'immedi_start',
  'start_yell',
  'yell_husband',
  'husband_follow',
  'follow_outsid',
  'outsid_start',
  'start_argu',
  'argu_insult',
  'insult_famili',
  'famili_dad',
  'dad_memori',
  'memori_act',
  'act_like',
  'like_told',
  'told_wake',
  'wake_see',
  'see_insan',
  'insan_famili',
  'famili_behavior',
  'behavior_said',
  'said_need',
  'need_time',
  'time_process',
  'process_fact',
  'fact_girl',
  'girl_boy',
  'boy_expect',
  'expect_insist',
  'insist_play',
  'play_along',
  'along_theyll',
  'theyll_soon',
  'soon_get',
  'get_said',
  'said_absolut',
  'absolut_demand',
  'demand_take',
  'take_home',
  'home_said',
  'said_call',
  'call_uber',
  'uber_left',
  'left_fume',
  'fume_call',
  'call_time',
  'time_text',
  'text_come',
  'come_home',
  'home_til',
  'til_get',
  'get_ass',
  'ass_apolog',
  'apolog_ruin',
  'ruin_everyth',
  'everyth_theyv',
  'theyv_done',
  'done_accus',
  'accus_mental',
  'mental_unstabl',
  'unstabl_respond',
  'respond_yet',
  'yet_constantli',
  'constantli_pressur',
  'pressur_get',
  'get_right',
  'right_famili',
  'famili_even',
  'even_talk',
  'talk_anyth',
  'anyth_els',
  'situat_kind_mess',
  'kind_mess_expect',
  'mess_expect_first',
  'expect_first_babi',
  'first_babi_husband',
  'babi_husband_first',
  'husband_first_grandchild',
  'first_grandchild_famili',
  'grandchild_famili_inlaw',
  'famili_inlaw_said',
  'inlaw_said_babi',
  'said_babi_boy',
  'babi_boy_well',
  'boy_well_give',
  'well_give_father',
  'give_father_inlaw',
  'father_inlaw_name',
  'inlaw_name_dead',
  'name_dead_due',
  'dead_due_cancer',
  'due_cancer_problem',
  'cancer_problem_happen',
  'problem_happen_found',
  'happen_found_gender',
  'found_gender_babi',
  'gender_babi_-',
  'babi_-_husband',
  '-_husband_famili',
  'husband_famili_thing',
  'famili_thing_like',
  'thing_like_attend',
  'like_attend_prayer',
  'attend_prayer_ritual',
  'prayer_ritual_reveal',
  'ritual_reveal_dr',
  'reveal_dr_like',
  'dr_like_went',
  'like_went_keep',
  'went_keep_peac',
  'keep_peac_dr',
  'peac_dr_appoit',
  'dr_appoit_came',
  'appoit_came_turn',
  'came_turn_girl',
  'turn_girl_husband',
  'girl_husband_cri',
  'husband_cri_car',
  'cri_car_turn',
  'car_turn_phone',
  'turn_phone_hide',
  'phone_hide_famili',
  'hide_famili_final',
  'famili_final_told',
  'final_told_mom',
  'told_mom_made',
  'mom_made_frustrat',
  'made_frustrat_&',
  'frustrat_&_disapppint',
  '&_disapppint_clear',
  'disapppint_clear_bother',
  'clear_bother_caus',
  'bother_caus_daughter',
  'caus_daughter_deserv',
  'daughter_deserv_celebr',
  'deserv_celebr_ghost',
  'celebr_ghost_day',
  'ghost_day_start',
  'day_start_come',
  'start_come_&',
  'come_&_visit',
  '&_visit_constantli',
  'visit_constantli_refer',
  'constantli_refer_daughter',
  'refer_daughter_son',
  'daughter_son_claim',
  'son_claim_result',
  'claim_result_fals',
  'result_fals_basic',
  'fals_basic_pretend',
  'basic_pretend_boy',
  'pretend_boy_severa',
  'boy_severa_fight',
  'severa_fight_refus',
  'fight_refus_stop',
  'refus_stop_husband',
  'stop_husband_side',
  'husband_side_despit',
  'side_despit_see',
  'despit_see_wrong',
  'see_wrong_unreason',
  'wrong_unreason_speak',
  'unreason_speak_sister',
  'speak_sister_inlaw',
  'sister_inlaw_call',
  'inlaw_call_apolog',
  'call_apolog_inform',
  'apolog_inform_arrang',
  'inform_arrang_babyshow',
  'arrang_babyshow_excit',
  'babyshow_excit_happi',
  'excit_happi_arriv',
  'happi_arriv_saw',
  'arriv_saw_blue',
  'saw_blue_balloon',
  'blue_balloon_blue',
  'balloon_blue_cake',
  'blue_cake_father',
  'cake_father_inlaw',
  'father_inlaw_namedecor',
  'inlaw_namedecor_around',
  'namedecor_around_confus',
  'around_confus_sit',
  'confus_sit_sister',
  'sit_sister_inlaw',
  'sister_inlaw_explain',
  'inlaw_explain_still',
  'explain_still_hope',
  'still_hope_gender',
  'hope_gender_result',
  'gender_result_fals',
  'result_fals_boy',
  'fals_boy_look',
  'boy_look_husband',
  'look_husband_agre',
  'husband_agre_lost',
  'agre_lost_temper',
  'lost_temper_yell',
  'temper_yell_call',
  'yell_call_delusion',
  'call_delusion_tell',
  'delusion_tell_stop',
  'tell_stop_treat',
  'stop_treat_daughter',
  'treat_daughter_like',
  'daughter_like_unwant',
  'like_unwant_act',
  'unwant_act_like',
  'act_like_exist',
  'like_exist_throw',
  'exist_throw_parti',
  'throw_parti_imaginari',
  'parti_imaginari_grandson',
  'imaginari_grandson_mother',
  'grandson_mother_inlaw',
  'mother_inlaw_break',
  'inlaw_break_cri',
  'break_cri_took',
  'cri_took_bag',
  'took_bag_walk',
  'bag_walk_immedi',
  'walk_immedi_start',
  'immedi_start_yell',
  'start_yell_husband',
  'yell_husband_follow',
  'husband_follow_outsid',
  'follow_outsid_start',
  'outsid_start_argu',
  'start_argu_insult',
  'argu_insult_famili',
  'insult_famili_dad',
  'famili_dad_memori',
  'dad_memori_act',
  'memori_act_like',
  'act_like_told',
  'like_told_wake',
  'told_wake_see',
  'wake_see_insan',
  'see_insan_famili',
  'insan_famili_behavior',
  'famili_behavior_said',
  'behavior_said_need',
  'said_need_time',
  'need_time_process',
  'time_process_fact',
  'process_fact_girl',
  'fact_girl_boy',
  'girl_boy_expect',
  'boy_expect_insist',
  'expect_insist_play',
  'insist_play_along',
  'play_along_theyll',
  'along_theyll_soon',
  'theyll_soon_get',
  'soon_get_said',
  'get_said_absolut',
  'said_absolut_demand',
  'absolut_demand_take',
  'demand_take_home',
  'take_home_said',
  'home_said_call',
  'said_call_uber',
  'call_uber_left',
  'uber_left_fume',
  'left_fume_call',
  'fume_call_time',
  'call_time_text',
  'time_text_come',
  'text_come_home',
  'come_home_til',
  'home_til_get',
  'til_get_ass',
  'get_ass_apolog',
  'ass_apolog_ruin',
  'apolog_ruin_everyth',
  'ruin_everyth_theyv',
  'everyth_theyv_done',
  'theyv_done_accus',
  'done_accus_mental',
  'accus_mental_unstabl',
  'mental_unstabl_respond',
  'unstabl_respond_yet',
  'respond_yet_constantli',
  'yet_constantli_pressur',
  'constantli_pressur_get',
  'pressur_get_right',
  'get_right_famili',
  'right_famili_even',
  'famili_even_talk',
  'even_talk_anyth',
  'talk_anyth_els'],
 ['[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'wife',
  'ava',
  'year',
  'weve',
  'marri',
  'singl',
  'mom',
  'three',
  'kid',
  'start',
  'date',
  'two',
  'daughter',
  '&',
  'son',
  'ive',
  'watch',
  'kid',
  'grow',
  'ive',
  'read',
  'bedtim',
  'stori',
  'done',
  'bath',
  'time',
  'first',
  'day',
  'school',
  'pta',
  'meet',
  'much',
  'consid',
  'kid',
  'theyv',
  'call',
  'mom',
  'almost',
  'year',
  'brother',
  'ivan',
  'babi',
  'girl',
  'fiancé',
  'sara',
  'love',
  'niec',
  'kid',
  'ador',
  'cousin',
  'kid',
  'grandchildren',
  'side',
  'famili',
  'sinc',
  'ava',
  'got',
  'togeth',
  'never',
  'moment',
  'kid',
  'wife',
  'treat',
  'like',
  'belong',
  'brother',
  'uncl',
  'mom',
  'dad',
  'nana',
  'pop',
  'kid',
  'see',
  'famili',
  'famili',
  'alway',
  'thought',
  'famili',
  'felt',
  'way',
  'kid',
  'brother',
  'hous',
  'hang',
  'parent',
  'end',
  'drop',
  'gift',
  'niec',
  'ivan',
  'laugh',
  'saw',
  'toy',
  'told',
  'mom',
  'dad',
  'go',
  'end',
  'spoil',
  'rotten',
  'mom',
  'said',
  'sinc',
  'niec',
  'first',
  'grandchild',
  'cours',
  'spoil',
  'kid',
  'sit',
  'live',
  'room',
  'us',
  'youngest',
  'daughter',
  'look',
  'hurt',
  'realiz',
  'mother',
  'said',
  'son',
  'yo',
  'fulli',
  'react',
  'could',
  'tell',
  'bother',
  'sara',
  'spoke',
  'said',
  'oh',
  'mean',
  'first',
  'grandbabi',
  'first',
  'grandchild',
  'dad',
  'shook',
  'head',
  'repli',
  'niec',
  'first',
  'grandchild',
  'want',
  'kid',
  'keep',
  'sit',
  'listen',
  'hand',
  'son',
  'key',
  'told',
  'wait',
  'car',
  'sister',
  'gone',
  'ask',
  'parent',
  'hell',
  'theyd',
  'say',
  'kid',
  'grandchildren',
  'mom',
  'said',
  'grandchildren',
  'realli',
  'children',
  'wife',
  'go',
  'host',
  'thanksgiv',
  'hous',
  'year',
  'told',
  'parent',
  'view',
  'kid',
  'famili',
  'could',
  'host',
  'meal',
  'hous',
  'real',
  'famili',
  'spent',
  'holiday',
  'mine',
  'left',
  'could',
  'say',
  'anyth',
  'els',
  'wife',
  'reiter',
  'children',
  'alway',
  'kid',
  'alway',
  'mom',
  'regardless',
  'dna',
  'brother',
  'piss',
  'think',
  'react',
  'harshli',
  'tri',
  'see',
  'parent',
  'come',
  'mom',
  'text',
  'say',
  'dad',
  'love',
  'kid',
  'still',
  'grandchildren',
  'hope',
  'come',
  'understand',
  'want',
  'ruin',
  'niec',
  'first',
  'thanksgiv',
  'repli',
  'back',
  'meant',
  'said',
  'im',
  'worri',
  'mayb',
  'im',
  'react',
  'harshli',
  'eta',
  'info',
  'adopt',
  'three',
  'kid',
  'year',
  'ago',
  'parent',
  'step',
  'grandchildren',
  'even',
  'legal',
  'adopt',
  'theyd',
  'still',
  'kid',
  'eye',
  'edit',
  '-',
  'wife',
  'parent',
  'relationship',
  'kid',
  'wife',
  'came',
  'pretti',
  'much',
  'stop',
  'speak',
  'entir',
  '-',
  'bio',
  'dad',
  'involv',
  'neither',
  'famili',
  'lost',
  'right',
  'children',
  'ava',
  'start',
  'date',
  'yo',
  'never',
  'met',
  'yo',
  'rememb',
  'yo',
  'want',
  'noth',
  '-',
  'parent',
  'want',
  'kid',
  'call',
  'nana',
  'pop',
  'make',
  'kid',
  'start',
  'call',
  '[_updat',
  'updat_]',
  ']_httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar',
  'httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar_&',
  '&_utm_medium=android_app',
  'utm_medium=android_app_&',
  '&_utm_name=androidcss',
  'utm_name=androidcss_&',
  '&_utm_term=',
  'utm_term=_&',
  '&_utm_content=share_button',
  'utm_content=share_button_wife',
  'wife_ava',
  'ava_year',
  'year_weve',
  'weve_marri',
  'marri_singl',
  'singl_mom',
  'mom_three',
  'three_kid',
  'kid_start',
  'start_date',
  'date_two',
  'two_daughter',
  'daughter_&',
  '&_son',
  'son_ive',
  'ive_watch',
  'watch_kid',
  'kid_grow',
  'grow_ive',
  'ive_read',
  'read_bedtim',
  'bedtim_stori',
  'stori_done',
  'done_bath',
  'bath_time',
  'time_first',
  'first_day',
  'day_school',
  'school_pta',
  'pta_meet',
  'meet_much',
  'much_consid',
  'consid_kid',
  'kid_theyv',
  'theyv_call',
  'call_mom',
  'mom_almost',
  'almost_year',
  'year_brother',
  'brother_ivan',
  'ivan_babi',
  'babi_girl',
  'girl_fiancé',
  'fiancé_sara',
  'sara_love',
  'love_niec',
  'niec_kid',
  'kid_ador',
  'ador_cousin',
  'cousin_kid',
  'kid_grandchildren',
  'grandchildren_side',
  'side_famili',
  'famili_sinc',
  'sinc_ava',
  'ava_got',
  'got_togeth',
  'togeth_never',
  'never_moment',
  'moment_kid',
  'kid_wife',
  'wife_treat',
  'treat_like',
  'like_belong',
  'belong_brother',
  'brother_uncl',
  'uncl_mom',
  'mom_dad',
  'dad_nana',
  'nana_pop',
  'pop_kid',
  'kid_see',
  'see_famili',
  'famili_famili',
  'famili_alway',
  'alway_thought',
  'thought_famili',
  'famili_felt',
  'felt_way',
  'way_kid',
  'kid_brother',
  'brother_hous',
  'hous_hang',
  'hang_parent',
  'parent_end',
  'end_drop',
  'drop_gift',
  'gift_niec',
  'niec_ivan',
  'ivan_laugh',
  'laugh_saw',
  'saw_toy',
  'toy_told',
  'told_mom',
  'mom_dad',
  'dad_go',
  'go_end',
  'end_spoil',
  'spoil_rotten',
  'rotten_mom',
  'mom_said',
  'said_sinc',
  'sinc_niec',
  'niec_first',
  'first_grandchild',
  'grandchild_cours',
  'cours_spoil',
  'spoil_kid',
  'kid_sit',
  'sit_live',
  'live_room',
  'room_us',
  'us_youngest',
  'youngest_daughter',
  'daughter_look',
  'look_hurt',
  'hurt_realiz',
  'realiz_mother',
  'mother_said',
  'said_son',
  'son_yo',
  'yo_fulli',
  'fulli_react',
  'react_could',
  'could_tell',
  'tell_bother',
  'bother_sara',
  'sara_spoke',
  'spoke_said',
  'said_oh',
  'oh_mean',
  'mean_first',
  'first_grandbabi',
  'grandbabi_first',
  'first_grandchild',
  'grandchild_dad',
  'dad_shook',
  'shook_head',
  'head_repli',
  'repli_niec',
  'niec_first',
  'first_grandchild',
  'grandchild_want',
  'want_kid',
  'kid_keep',
  'keep_sit',
  'sit_listen',
  'listen_hand',
  'hand_son',
  'son_key',
  'key_told',
  'told_wait',
  'wait_car',
  'car_sister',
  'sister_gone',
  'gone_ask',
  'ask_parent',
  'parent_hell',
  'hell_theyd',
  'theyd_say',
  'say_kid',
  'kid_grandchildren',
  'grandchildren_mom',
  'mom_said',
  'said_grandchildren',
  'grandchildren_realli',
  'realli_children',
  'children_wife',
  'wife_go',
  'go_host',
  'host_thanksgiv',
  'thanksgiv_hous',
  'hous_year',
  'year_told',
  'told_parent',
  'parent_view',
  'view_kid',
  'kid_famili',
  'famili_could',
  'could_host',
  'host_meal',
  'meal_hous',
  'hous_real',
  'real_famili',
  'famili_spent',
  'spent_holiday',
  'holiday_mine',
  'mine_left',
  'left_could',
  'could_say',
  'say_anyth',
  'anyth_els',
  'els_wife',
  'wife_reiter',
  'reiter_children',
  'children_alway',
  'alway_kid',
  'kid_alway',
  'alway_mom',
  'mom_regardless',
  'regardless_dna',
  'dna_brother',
  'brother_piss',
  'piss_think',
  'think_react',
  'react_harshli',
  'harshli_tri',
  'tri_see',
  'see_parent',
  'parent_come',
  'come_mom',
  'mom_text',
  'text_say',
  'say_dad',
  'dad_love',
  'love_kid',
  'kid_still',
  'still_grandchildren',
  'grandchildren_hope',
  'hope_come',
  'come_understand',
  'understand_want',
  'want_ruin',
  'ruin_niec',
  'niec_first',
  'first_thanksgiv',
  'thanksgiv_repli',
  'repli_back',
  'back_meant',
  'meant_said',
  'said_im',
  'im_worri',
  'worri_mayb',
  'mayb_im',
  'im_react',
  'react_harshli',
  'harshli_eta',
  'eta_info',
  'info_adopt',
  'adopt_three',
  'three_kid',
  'kid_year',
  'year_ago',
  'ago_parent',
  'parent_step',
  'step_grandchildren',
  'grandchildren_even',
  'even_legal',
  'legal_adopt',
  'adopt_theyd',
  'theyd_still',
  'still_kid',
  'kid_eye',
  'eye_edit',
  'edit_-',
  '-_wife',
  'wife_parent',
  'parent_relationship',
  'relationship_kid',
  'kid_wife',
  'wife_came',
  'came_pretti',
  'pretti_much',
  'much_stop',
  'stop_speak',
  'speak_entir',
  'entir_-',
  '-_bio',
  'bio_dad',
  'dad_involv',
  'involv_neither',
  'neither_famili',
  'famili_lost',
  'lost_right',
  'right_children',
  'children_ava',
  'ava_start',
  'start_date',
  'date_yo',
  'yo_never',
  'never_met',
  'met_yo',
  'yo_rememb',
  'rememb_yo',
  'yo_want',
  'want_noth',
  'noth_-',
  '-_parent',
  'parent_want',
  'want_kid',
  'kid_call',
  'call_nana',
  'nana_pop',
  'pop_make',
  'make_kid',
  'kid_start',
  'start_call',
  '[_updat_]',
  'updat_]_httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar',
  ']_httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar_&',
  'httpswwwredditcomuserthrowawayz_commentsyyaeupdate_on_canceling_the_plans_for_thanksgivingutm_source=shar_&_utm_medium=android_app',
  '&_utm_medium=android_app_&',
  'utm_medium=android_app_&_utm_name=androidcss',
  '&_utm_name=androidcss_&',
  'utm_name=androidcss_&_utm_term=',
  '&_utm_term=_&',
  'utm_term=_&_utm_content=share_button',
  '&_utm_content=share_button_wife',
  'utm_content=share_button_wife_ava',
  'wife_ava_year',
  'ava_year_weve',
  'year_weve_marri',
  'weve_marri_singl',
  'marri_singl_mom',
  'singl_mom_three',
  'mom_three_kid',
  'three_kid_start',
  'kid_start_date',
  'start_date_two',
  'date_two_daughter',
  'two_daughter_&',
  'daughter_&_son',
  '&_son_ive',
  'son_ive_watch',
  'ive_watch_kid',
  'watch_kid_grow',
  'kid_grow_ive',
  'grow_ive_read',
  'ive_read_bedtim',
  'read_bedtim_stori',
  'bedtim_stori_done',
  'stori_done_bath',
  'done_bath_time',
  'bath_time_first',
  'time_first_day',
  'first_day_school',
  'day_school_pta',
  'school_pta_meet',
  'pta_meet_much',
  'meet_much_consid',
  'much_consid_kid',
  'consid_kid_theyv',
  'kid_theyv_call',
  'theyv_call_mom',
  'call_mom_almost',
  'mom_almost_year',
  'almost_year_brother',
  'year_brother_ivan',
  'brother_ivan_babi',
  'ivan_babi_girl',
  'babi_girl_fiancé',
  'girl_fiancé_sara',
  'fiancé_sara_love',
  'sara_love_niec',
  'love_niec_kid',
  'niec_kid_ador',
  'kid_ador_cousin',
  'ador_cousin_kid',
  'cousin_kid_grandchildren',
  'kid_grandchildren_side',
  'grandchildren_side_famili',
  'side_famili_sinc',
  'famili_sinc_ava',
  'sinc_ava_got',
  'ava_got_togeth',
  'got_togeth_never',
  'togeth_never_moment',
  'never_moment_kid',
  'moment_kid_wife',
  'kid_wife_treat',
  'wife_treat_like',
  'treat_like_belong',
  'like_belong_brother',
  'belong_brother_uncl',
  'brother_uncl_mom',
  'uncl_mom_dad',
  'mom_dad_nana',
  'dad_nana_pop',
  'nana_pop_kid',
  'pop_kid_see',
  'kid_see_famili',
  'see_famili_famili',
  'famili_famili_alway',
  'famili_alway_thought',
  'alway_thought_famili',
  'thought_famili_felt',
  'famili_felt_way',
  'felt_way_kid',
  'way_kid_brother',
  'kid_brother_hous',
  'brother_hous_hang',
  'hous_hang_parent',
  'hang_parent_end',
  'parent_end_drop',
  'end_drop_gift',
  'drop_gift_niec',
  'gift_niec_ivan',
  'niec_ivan_laugh',
  'ivan_laugh_saw',
  'laugh_saw_toy',
  'saw_toy_told',
  'toy_told_mom',
  'told_mom_dad',
  'mom_dad_go',
  'dad_go_end',
  'go_end_spoil',
  'end_spoil_rotten',
  'spoil_rotten_mom',
  'rotten_mom_said',
  'mom_said_sinc',
  'said_sinc_niec',
  'sinc_niec_first',
  'niec_first_grandchild',
  'first_grandchild_cours',
  'grandchild_cours_spoil',
  'cours_spoil_kid',
  'spoil_kid_sit',
  'kid_sit_live',
  'sit_live_room',
  'live_room_us',
  'room_us_youngest',
  'us_youngest_daughter',
  'youngest_daughter_look',
  'daughter_look_hurt',
  'look_hurt_realiz',
  'hurt_realiz_mother',
  'realiz_mother_said',
  'mother_said_son',
  'said_son_yo',
  'son_yo_fulli',
  'yo_fulli_react',
  'fulli_react_could',
  'react_could_tell',
  'could_tell_bother',
  'tell_bother_sara',
  'bother_sara_spoke',
  'sara_spoke_said',
  'spoke_said_oh',
  'said_oh_mean',
  'oh_mean_first',
  'mean_first_grandbabi',
  'first_grandbabi_first',
  'grandbabi_first_grandchild',
  'first_grandchild_dad',
  'grandchild_dad_shook',
  'dad_shook_head',
  'shook_head_repli',
  'head_repli_niec',
  'repli_niec_first',
  'niec_first_grandchild',
  'first_grandchild_want',
  'grandchild_want_kid',
  'want_kid_keep',
  'kid_keep_sit',
  'keep_sit_listen',
  'sit_listen_hand',
  'listen_hand_son',
  'hand_son_key',
  'son_key_told',
  'key_told_wait',
  'told_wait_car',
  'wait_car_sister',
  'car_sister_gone',
  'sister_gone_ask',
  'gone_ask_parent',
  'ask_parent_hell',
  'parent_hell_theyd',
  'hell_theyd_say',
  'theyd_say_kid',
  'say_kid_grandchildren',
  'kid_grandchildren_mom',
  'grandchildren_mom_said',
  'mom_said_grandchildren',
  'said_grandchildren_realli',
  'grandchildren_realli_children',
  'realli_children_wife',
  'children_wife_go',
  'wife_go_host',
  'go_host_thanksgiv',
  'host_thanksgiv_hous',
  'thanksgiv_hous_year',
  'hous_year_told',
  'year_told_parent',
  'told_parent_view',
  'parent_view_kid',
  'view_kid_famili',
  'kid_famili_could',
  'famili_could_host',
  'could_host_meal',
  'host_meal_hous',
  'meal_hous_real',
  'hous_real_famili',
  'real_famili_spent',
  'famili_spent_holiday',
  'spent_holiday_mine',
  'holiday_mine_left',
  'mine_left_could',
  'left_could_say',
  'could_say_anyth',
  'say_anyth_els',
  'anyth_els_wife',
  'els_wife_reiter',
  'wife_reiter_children',
  'reiter_children_alway',
  'children_alway_kid',
  'alway_kid_alway',
  'kid_alway_mom',
  'alway_mom_regardless',
  'mom_regardless_dna',
  'regardless_dna_brother',
  'dna_brother_piss',
  'brother_piss_think',
  'piss_think_react',
  'think_react_harshli',
  'react_harshli_tri',
  'harshli_tri_see',
  'tri_see_parent',
  'see_parent_come',
  'parent_come_mom',
  'come_mom_text',
  'mom_text_say',
  'text_say_dad',
  'say_dad_love',
  'dad_love_kid',
  'love_kid_still',
  'kid_still_grandchildren',
  'still_grandchildren_hope',
  'grandchildren_hope_come',
  'hope_come_understand',
  'come_understand_want',
  'understand_want_ruin',
  'want_ruin_niec',
  'ruin_niec_first',
  'niec_first_thanksgiv',
  'first_thanksgiv_repli',
  'thanksgiv_repli_back',
  'repli_back_meant',
  'back_meant_said',
  'meant_said_im',
  'said_im_worri',
  'im_worri_mayb',
  'worri_mayb_im',
  'mayb_im_react',
  'im_react_harshli',
  'react_harshli_eta',
  'harshli_eta_info',
  'eta_info_adopt',
  'info_adopt_three',
  'adopt_three_kid',
  'three_kid_year',
  'kid_year_ago',
  'year_ago_parent',
  'ago_parent_step',
  'parent_step_grandchildren',
  'step_grandchildren_even',
  'grandchildren_even_legal',
  'even_legal_adopt',
  'legal_adopt_theyd',
  'adopt_theyd_still',
  'theyd_still_kid',
  'still_kid_eye',
  'kid_eye_edit',
  'eye_edit_-',
  'edit_-_wife',
  '-_wife_parent',
  'wife_parent_relationship',
  'parent_relationship_kid',
  'relationship_kid_wife',
  'kid_wife_came',
  'wife_came_pretti',
  'came_pretti_much',
  'pretti_much_stop',
  'much_stop_speak',
  'stop_speak_entir',
  'speak_entir_-',
  'entir_-_bio',
  '-_bio_dad',
  'bio_dad_involv',
  'dad_involv_neither',
  'involv_neither_famili',
  'neither_famili_lost',
  'famili_lost_right',
  'lost_right_children',
  'right_children_ava',
  'children_ava_start',
  'ava_start_date',
  'start_date_yo',
  'date_yo_never',
  'yo_never_met',
  'never_met_yo',
  'met_yo_rememb',
  'yo_rememb_yo',
  'rememb_yo_want',
  'yo_want_noth',
  'want_noth_-',
  'noth_-_parent',
  '-_parent_want',
  'parent_want_kid',
  'want_kid_call',
  'kid_call_nana',
  'call_nana_pop',
  'nana_pop_make',
  'pop_make_kid',
  'make_kid_start',
  'kid_start_call'],
 ['%',
  'petti',
  'curiou',
  'actual',
  'wrong',
  'husband',
  'famili',
  'think',
  'childish',
  'need',
  'let',
  'past',
  'go',
  'sil',
  'cant',
  'afford',
  'behavior',
  'toward',
  'us',
  'past',
  'make',
  'feel',
  'warrant',
  'year',
  'ago',
  'hous',
  'burnt',
  'ground',
  'struck',
  'lighten',
  'thank',
  'day',
  'kid',
  'school',
  'husband',
  'work',
  'lost',
  'everyth',
  'safe',
  'took',
  'almost',
  'month',
  'insur',
  'pay',
  'insur',
  'cover',
  'month',
  'worth',
  'hotel',
  'stay',
  'made',
  'fend',
  'option',
  'move',
  'sil',
  'tell',
  'us',
  'spare',
  'room',
  'offic',
  'space',
  'sinc',
  'use',
  'neither',
  'room',
  'stipul',
  'need',
  'purchas',
  'food',
  'pay',
  '$',
  'week',
  'week',
  'chang',
  'decid',
  'need',
  'pay',
  '$',
  'week',
  'use',
  'one',
  'room',
  'us',
  'cram',
  'smallest',
  'room',
  'size',
  'glorifi',
  'closet',
  'space',
  'even',
  'fit',
  'twin',
  'bed',
  'small',
  'dresser',
  'live',
  'trash',
  'bag',
  'slept',
  'floor',
  'close',
  '$',
  'month',
  'month',
  'still',
  'purchas',
  'food',
  'despit',
  'claim',
  'children',
  'foodstamp',
  'also',
  'bill',
  'outsid',
  'land',
  'tax',
  '$',
  'year',
  'electr',
  'heat',
  'oil',
  'hardli',
  'ever',
  'fill',
  'essenti',
  'pay',
  'could',
  'leisur',
  'activ',
  'worst',
  'month',
  'life',
  'month',
  'ago',
  'grandmoth',
  'decid',
  'want',
  'go',
  'assist',
  'live',
  'fall',
  'transfer',
  'deed',
  'hous',
  'basic',
  'said',
  'mine',
  'bedroom',
  'farmhous',
  'boy',
  'insist',
  'share',
  'room',
  'extra',
  'bedroom',
  'well',
  'sil',
  'lost',
  'hous',
  'last',
  'month',
  'due',
  'pay',
  'land',
  'tax',
  'sever',
  'year',
  'ask',
  'step',
  'daughter',
  'could',
  'stay',
  'us',
  'get',
  'enough',
  'money',
  'move',
  'south',
  'said',
  'sure',
  'bedroom',
  '$',
  'month',
  'buy',
  'cook',
  'food',
  'separ',
  'daughter',
  'vegan',
  'look',
  'like',
  'head',
  'said',
  'step',
  'daughter',
  'made',
  'share',
  'room',
  'extra',
  'room',
  'state',
  'afford',
  'rent',
  '$',
  'purchas',
  'food',
  'top',
  'said',
  'neither',
  'could',
  'manag',
  'cram',
  'peopl',
  'glorifi',
  'closet',
  'space',
  'get',
  '$',
  'foodstamp',
  'take',
  'leav',
  'decid',
  'leav',
  'told',
  'childish',
  'aita',
  '%_petti',
  'petti_curiou',
  'curiou_actual',
  'actual_wrong',
  'wrong_husband',
  'husband_famili',
  'famili_think',
  'think_childish',
  'childish_need',
  'need_let',
  'let_past',
  'past_go',
  'go_sil',
  'sil_cant',
  'cant_afford',
  'afford_behavior',
  'behavior_toward',
  'toward_us',
  'us_past',
  'past_make',
  'make_feel',
  'feel_warrant',
  'warrant_year',
  'year_ago',
  'ago_hous',
  'hous_burnt',
  'burnt_ground',
  'ground_struck',
  'struck_lighten',
  'lighten_thank',
  'thank_day',
  'day_kid',
  'kid_school',
  'school_husband',
  'husband_work',
  'work_lost',
  'lost_everyth',
  'everyth_safe',
  'safe_took',
  'took_almost',
  'almost_month',
  'month_insur',
  'insur_pay',
  'pay_insur',
  'insur_cover',
  'cover_month',
  'month_worth',
  'worth_hotel',
  'hotel_stay',
  'stay_made',
  'made_fend',
  'fend_option',
  'option_move',
  'move_sil',
  'sil_tell',
  'tell_us',
  'us_spare',
  'spare_room',
  'room_offic',
  'offic_space',
  'space_sinc',
  'sinc_use',
  'use_neither',
  'neither_room',
  'room_stipul',
  'stipul_need',
  'need_purchas',
  'purchas_food',
  'food_pay',
  'pay_$',
  '$_week',
  'week_week',
  'week_chang',
  'chang_decid',
  'decid_need',
  'need_pay',
  'pay_$',
  '$_week',
  'week_use',
  'use_one',
  'one_room',
  'room_us',
  'us_cram',
  'cram_smallest',
  'smallest_room',
  'room_size',
  'size_glorifi',
  'glorifi_closet',
  'closet_space',
  'space_even',
  'even_fit',
  'fit_twin',
  'twin_bed',
  'bed_small',
  'small_dresser',
  'dresser_live',
  'live_trash',
  'trash_bag',
  'bag_slept',
  'slept_floor',
  'floor_close',
  'close_$',
  '$_month',
  'month_month',
  'month_still',
  'still_purchas',
  'purchas_food',
  'food_despit',
  'despit_claim',
  'claim_children',
  'children_foodstamp',
  'foodstamp_also',
  'also_bill',
  'bill_outsid',
  'outsid_land',
  'land_tax',
  'tax_$',
  '$_year',
  'year_electr',
  'electr_heat',
  'heat_oil',
  'oil_hardli',
  'hardli_ever',
  'ever_fill',
  'fill_essenti',
  'essenti_pay',
  'pay_could',
  'could_leisur',
  'leisur_activ',
  'activ_worst',
  'worst_month',
  'month_life',
  'life_month',
  'month_ago',
  'ago_grandmoth',
  'grandmoth_decid',
  'decid_want',
  'want_go',
  'go_assist',
  'assist_live',
  'live_fall',
  'fall_transfer',
  'transfer_deed',
  'deed_hous',
  'hous_basic',
  'basic_said',
  'said_mine',
  'mine_bedroom',
  'bedroom_farmhous',
  'farmhous_boy',
  'boy_insist',
  'insist_share',
  'share_room',
  'room_extra',
  'extra_bedroom',
  'bedroom_well',
  'well_sil',
  'sil_lost',
  'lost_hous',
  'hous_last',
  'last_month',
  'month_due',
  'due_pay',
  'pay_land',
  'land_tax',
  'tax_sever',
  'sever_year',
  'year_ask',
  'ask_step',
  'step_daughter',
  'daughter_could',
  'could_stay',
  'stay_us',
  'us_get',
  'get_enough',
  'enough_money',
  'money_move',
  'move_south',
  'south_said',
  'said_sure',
  'sure_bedroom',
  'bedroom_$',
  '$_month',
  'month_buy',
  'buy_cook',
  'cook_food',
  'food_separ',
  'separ_daughter',
  'daughter_vegan',
  'vegan_look',
  'look_like',
  'like_head',
  'head_said',
  'said_step',
  'step_daughter',
  'daughter_made',
  'made_share',
  'share_room',
  'room_extra',
  'extra_room',
  'room_state',
  'state_afford',
  'afford_rent',
  'rent_$',
  '$_purchas',
  'purchas_food',
  'food_top',
  'top_said',
  'said_neither',
  'neither_could',
  'could_manag',
  'manag_cram',
  'cram_peopl',
  'peopl_glorifi',
  'glorifi_closet',
  'closet_space',
  'space_get',
  'get_$',
  '$_foodstamp',
  'foodstamp_take',
  'take_leav',
  'leav_decid',
  'decid_leav',
  'leav_told',
  'told_childish',
  'childish_aita',
  '%_petti_curiou',
  'petti_curiou_actual',
  'curiou_actual_wrong',
  'actual_wrong_husband',
  'wrong_husband_famili',
  'husband_famili_think',
  'famili_think_childish',
  'think_childish_need',
  'childish_need_let',
  'need_let_past',
  'let_past_go',
  'past_go_sil',
  'go_sil_cant',
  'sil_cant_afford',
  'cant_afford_behavior',
  'afford_behavior_toward',
  'behavior_toward_us',
  'toward_us_past',
  'us_past_make',
  'past_make_feel',
  'make_feel_warrant',
  'feel_warrant_year',
  'warrant_year_ago',
  'year_ago_hous',
  'ago_hous_burnt',
  'hous_burnt_ground',
  'burnt_ground_struck',
  'ground_struck_lighten',
  'struck_lighten_thank',
  'lighten_thank_day',
  'thank_day_kid',
  'day_kid_school',
  'kid_school_husband',
  'school_husband_work',
  'husband_work_lost',
  'work_lost_everyth',
  'lost_everyth_safe',
  'everyth_safe_took',
  'safe_took_almost',
  'took_almost_month',
  'almost_month_insur',
  'month_insur_pay',
  'insur_pay_insur',
  'pay_insur_cover',
  'insur_cover_month',
  'cover_month_worth',
  'month_worth_hotel',
  'worth_hotel_stay',
  'hotel_stay_made',
  'stay_made_fend',
  'made_fend_option',
  'fend_option_move',
  'option_move_sil',
  'move_sil_tell',
  'sil_tell_us',
  'tell_us_spare',
  'us_spare_room',
  'spare_room_offic',
  'room_offic_space',
  'offic_space_sinc',
  'space_sinc_use',
  'sinc_use_neither',
  'use_neither_room',
  'neither_room_stipul',
  'room_stipul_need',
  'stipul_need_purchas',
  'need_purchas_food',
  'purchas_food_pay',
  'food_pay_$',
  'pay_$_week',
  '$_week_week',
  'week_week_chang',
  'week_chang_decid',
  'chang_decid_need',
  'decid_need_pay',
  'need_pay_$',
  'pay_$_week',
  '$_week_use',
  'week_use_one',
  'use_one_room',
  'one_room_us',
  'room_us_cram',
  'us_cram_smallest',
  'cram_smallest_room',
  'smallest_room_size',
  'room_size_glorifi',
  'size_glorifi_closet',
  'glorifi_closet_space',
  'closet_space_even',
  'space_even_fit',
  'even_fit_twin',
  'fit_twin_bed',
  'twin_bed_small',
  'bed_small_dresser',
  'small_dresser_live',
  'dresser_live_trash',
  'live_trash_bag',
  'trash_bag_slept',
  'bag_slept_floor',
  'slept_floor_close',
  'floor_close_$',
  'close_$_month',
  '$_month_month',
  'month_month_still',
  'month_still_purchas',
  'still_purchas_food',
  'purchas_food_despit',
  'food_despit_claim',
  'despit_claim_children',
  'claim_children_foodstamp',
  'children_foodstamp_also',
  'foodstamp_also_bill',
  'also_bill_outsid',
  'bill_outsid_land',
  'outsid_land_tax',
  'land_tax_$',
  'tax_$_year',
  '$_year_electr',
  'year_electr_heat',
  'electr_heat_oil',
  'heat_oil_hardli',
  'oil_hardli_ever',
  'hardli_ever_fill',
  'ever_fill_essenti',
  'fill_essenti_pay',
  'essenti_pay_could',
  'pay_could_leisur',
  'could_leisur_activ',
  'leisur_activ_worst',
  'activ_worst_month',
  'worst_month_life',
  'month_life_month',
  'life_month_ago',
  'month_ago_grandmoth',
  'ago_grandmoth_decid',
  'grandmoth_decid_want',
  'decid_want_go',
  'want_go_assist',
  'go_assist_live',
  'assist_live_fall',
  'live_fall_transfer',
  'fall_transfer_deed',
  'transfer_deed_hous',
  'deed_hous_basic',
  'hous_basic_said',
  'basic_said_mine',
  'said_mine_bedroom',
  'mine_bedroom_farmhous',
  'bedroom_farmhous_boy',
  'farmhous_boy_insist',
  'boy_insist_share',
  'insist_share_room',
  'share_room_extra',
  'room_extra_bedroom',
  'extra_bedroom_well',
  'bedroom_well_sil',
  'well_sil_lost',
  'sil_lost_hous',
  'lost_hous_last',
  'hous_last_month',
  'last_month_due',
  'month_due_pay',
  'due_pay_land',
  'pay_land_tax',
  'land_tax_sever',
  'tax_sever_year',
  'sever_year_ask',
  'year_ask_step',
  'ask_step_daughter',
  'step_daughter_could',
  'daughter_could_stay',
  'could_stay_us',
  'stay_us_get',
  'us_get_enough',
  'get_enough_money',
  'enough_money_move',
  'money_move_south',
  'move_south_said',
  'south_said_sure',
  'said_sure_bedroom',
  'sure_bedroom_$',
  'bedroom_$_month',
  '$_month_buy',
  'month_buy_cook',
  'buy_cook_food',
  'cook_food_separ',
  'food_separ_daughter',
  'separ_daughter_vegan',
  'daughter_vegan_look',
  'vegan_look_like',
  'look_like_head',
  'like_head_said',
  'head_said_step',
  'said_step_daughter',
  'step_daughter_made',
  'daughter_made_share',
  'made_share_room',
  'share_room_extra',
  'room_extra_room',
  'extra_room_state',
  'room_state_afford',
  'state_afford_rent',
  'afford_rent_$',
  'rent_$_purchas',
  '$_purchas_food',
  'purchas_food_top',
  'food_top_said',
  'top_said_neither',
  'said_neither_could',
  'neither_could_manag',
  'could_manag_cram',
  'manag_cram_peopl',
  'cram_peopl_glorifi',
  'peopl_glorifi_closet',
  'glorifi_closet_space',
  'closet_space_get',
  'space_get_$',
  'get_$_foodstamp',
  '$_foodstamp_take',
  'foodstamp_take_leav',
  'take_leav_decid',
  'leav_decid_leav',
  'decid_leav_told',
  'leav_told_childish',
  'told_childish_aita'],
 ['got',
  'then-girlfriend',
  'pregnant',
  'twin',
  'boy',
  'parent',
  'want',
  'babi',
  'ruin',
  'futur',
  'said',
  'either',
  'take',
  'give',
  'adopt',
  'rais',
  'want',
  'give',
  'parent',
  'told',
  'first',
  'seven',
  'year',
  'boy',
  'live',
  'act',
  'like',
  'father',
  'like',
  'big',
  'brother',
  'knew',
  'father',
  'though',
  'never',
  'bond',
  'like',
  'father-son',
  'readi',
  'move',
  'want',
  'without',
  'dad',
  'let',
  'know',
  'respons',
  'take',
  'want',
  'first',
  'im',
  'glad',
  'happen',
  'start',
  'bond',
  'father-son',
  'start',
  'love',
  'love',
  'increas',
  'rememb',
  'three',
  'us',
  'would',
  'seat',
  'couch',
  'watch',
  'movi',
  'one',
  'would',
  'sit',
  'left',
  'one',
  'right',
  'wrap',
  'arm',
  'around',
  'theyd',
  'put',
  'head',
  'chest',
  'often',
  'kiss',
  'forehead',
  'weve',
  'sinc',
  'seven',
  'met',
  'current',
  'wife',
  'year',
  'ago',
  'kid',
  'marri',
  'year',
  'ago',
  'welcom',
  'daughter',
  'saw',
  'kid',
  'watch',
  'movi',
  'never',
  'said',
  'anyth',
  'kid',
  'longer',
  'live',
  'us',
  'left',
  'colleg',
  'come',
  'see',
  'everi',
  'boy',
  'still',
  'like',
  'put',
  'head',
  'chest',
  'wrap',
  'arm',
  'around',
  'everi',
  'time',
  'visit',
  'im',
  'watch',
  'tv',
  'son',
  'liam',
  'visit',
  'week',
  'ago',
  'came',
  'gay',
  'introduc',
  'bf',
  'care',
  'kid',
  'live',
  'sexual',
  'love',
  'love',
  'matter',
  'want',
  'happi',
  'feel',
  'differ',
  'make',
  'feel',
  'uncomfort',
  'hug',
  'kiss',
  'forehead',
  'seem',
  'wife',
  'littl',
  'uncomfort',
  'son',
  'visit',
  'last',
  'wednesday',
  'sinc',
  'week',
  'ago',
  'first',
  'time',
  'offici',
  'watch',
  'red',
  'daughter',
  'left',
  'son',
  'liam',
  'arriv',
  'tire',
  'sat',
  'right',
  'put',
  'head',
  'shoulder',
  'wrap',
  'arm',
  'around',
  'kiss',
  'forehead',
  'said',
  'good',
  'back',
  'buddi',
  'went',
  'sleep',
  'next',
  'day',
  'wife',
  'told',
  'made',
  'feel',
  'uncomfort',
  'hug',
  'kiss',
  'son',
  'ask',
  'mind',
  'luca',
  'son',
  'straight',
  'want',
  'liam',
  'told',
  'busi',
  'relationship',
  'son',
  'also',
  'call',
  'homophob',
  'accus',
  'treat',
  'like',
  'equal',
  'parent',
  'son',
  'thu',
  'said',
  'ok',
  'brother',
  'say',
  'understand',
  'big',
  'chang',
  'son',
  'come',
  'serious',
  'think',
  'noth',
  'get',
  'use',
  'neither',
  'problem',
  'son',
  'love',
  'wrong',
  'got_then-girlfriend',
  'then-girlfriend_pregnant',
  'pregnant_twin',
  'twin_boy',
  'boy_parent',
  'parent_want',
  'want_babi',
  'babi_ruin',
  'ruin_futur',
  'futur_said',
  'said_either',
  'either_take',
  'take_give',
  'give_adopt',
  'adopt_rais',
  'rais_want',
  'want_give',
  'give_parent',
  'parent_told',
  'told_first',
  'first_seven',
  'seven_year',
  'year_boy',
  'boy_live',
  'live_act',
  'act_like',
  'like_father',
  'father_like',
  'like_big',
  'big_brother',
  'brother_knew',
  'knew_father',
  'father_though',
  'though_never',
  'never_bond',
  'bond_like',
  'like_father-son',
  'father-son_readi',
  'readi_move',
  'move_want',
  'want_without',
  'without_dad',
  'dad_let',
  'let_know',
  'know_respons',
  'respons_take',
  'take_want',
  'want_first',
  'first_im',
  'im_glad',
  'glad_happen',
  'happen_start',
  'start_bond',
  'bond_father-son',
  'father-son_start',
  'start_love',
  'love_love',
  'love_increas',
  'increas_rememb',
  'rememb_three',
  'three_us',
  'us_would',
  'would_seat',
  'seat_couch',
  'couch_watch',
  'watch_movi',
  'movi_one',
  'one_would',
  'would_sit',
  'sit_left',
  'left_one',
  'one_right',
  'right_wrap',
  'wrap_arm',
  'arm_around',
  'around_theyd',
  'theyd_put',
  'put_head',
  'head_chest',
  'chest_often',
  'often_kiss',
  'kiss_forehead',
  'forehead_weve',
  'weve_sinc',
  'sinc_seven',
  'seven_met',
  'met_current',
  'current_wife',
  'wife_year',
  'year_ago',
  'ago_kid',
  'kid_marri',
  'marri_year',
  'year_ago',
  'ago_welcom',
  'welcom_daughter',
  'daughter_saw',
  'saw_kid',
  'kid_watch',
  'watch_movi',
  'movi_never',
  'never_said',
  'said_anyth',
  'anyth_kid',
  'kid_longer',
  'longer_live',
  'live_us',
  'us_left',
  'left_colleg',
  'colleg_come',
  'come_see',
  'see_everi',
  'everi_boy',
  'boy_still',
  'still_like',
  'like_put',
  'put_head',
  'head_chest',
  'chest_wrap',
  'wrap_arm',
  'arm_around',
  'around_everi',
  'everi_time',
  'time_visit',
  'visit_im',
  'im_watch',
  'watch_tv',
  'tv_son',
  'son_liam',
  'liam_visit',
  'visit_week',
  'week_ago',
  'ago_came',
  'came_gay',
  'gay_introduc',
  'introduc_bf',
  'bf_care',
  'care_kid',
  'kid_live',
  'live_sexual',
  'sexual_love',
  'love_love',
  'love_matter',
  'matter_want',
  'want_happi',
  'happi_feel',
  'feel_differ',
  'differ_make',
  'make_feel',
  'feel_uncomfort',
  'uncomfort_hug',
  'hug_kiss',
  'kiss_forehead',
  'forehead_seem',
  'seem_wife',
  'wife_littl',
  'littl_uncomfort',
  'uncomfort_son',
  'son_visit',
  'visit_last',
  'last_wednesday',
  'wednesday_sinc',
  'sinc_week',
  'week_ago',
  'ago_first',
  'first_time',
  'time_offici',
  'offici_watch',
  'watch_red',
  'red_daughter',
  'daughter_left',
  'left_son',
  'son_liam',
  'liam_arriv',
  'arriv_tire',
  'tire_sat',
  'sat_right',
  'right_put',
  'put_head',
  'head_shoulder',
  'shoulder_wrap',
  'wrap_arm',
  'arm_around',
  'around_kiss',
  'kiss_forehead',
  'forehead_said',
  'said_good',
  'good_back',
  'back_buddi',
  'buddi_went',
  'went_sleep',
  'sleep_next',
  'next_day',
  'day_wife',
  'wife_told',
  'told_made',
  'made_feel',
  'feel_uncomfort',
  'uncomfort_hug',
  'hug_kiss',
  'kiss_son',
  'son_ask',
  'ask_mind',
  'mind_luca',
  'luca_son',
  'son_straight',
  'straight_want',
  'want_liam',
  'liam_told',
  'told_busi',
  'busi_relationship',
  'relationship_son',
  'son_also',
  'also_call',
  'call_homophob',
  'homophob_accus',
  'accus_treat',
  'treat_like',
  'like_equal',
  'equal_parent',
  'parent_son',
  'son_thu',
  'thu_said',
  'said_ok',
  'ok_brother',
  'brother_say',
  'say_understand',
  'understand_big',
  'big_chang',
  'chang_son',
  'son_come',
  'come_serious',
  'serious_think',
  'think_noth',
  'noth_get',
  'get_use',
  'use_neither',
  'neither_problem',
  'problem_son',
  'son_love',
  'love_wrong',
  'got_then-girlfriend_pregnant',
  'then-girlfriend_pregnant_twin',
  'pregnant_twin_boy',
  'twin_boy_parent',
  'boy_parent_want',
  'parent_want_babi',
  'want_babi_ruin',
  'babi_ruin_futur',
  'ruin_futur_said',
  'futur_said_either',
  'said_either_take',
  'either_take_give',
  'take_give_adopt',
  'give_adopt_rais',
  'adopt_rais_want',
  'rais_want_give',
  'want_give_parent',
  'give_parent_told',
  'parent_told_first',
  'told_first_seven',
  'first_seven_year',
  'seven_year_boy',
  'year_boy_live',
  'boy_live_act',
  'live_act_like',
  'act_like_father',
  'like_father_like',
  'father_like_big',
  'like_big_brother',
  'big_brother_knew',
  'brother_knew_father',
  'knew_father_though',
  'father_though_never',
  'though_never_bond',
  'never_bond_like',
  'bond_like_father-son',
  'like_father-son_readi',
  'father-son_readi_move',
  'readi_move_want',
  'move_want_without',
  'want_without_dad',
  'without_dad_let',
  'dad_let_know',
  'let_know_respons',
  'know_respons_take',
  'respons_take_want',
  'take_want_first',
  'want_first_im',
  'first_im_glad',
  'im_glad_happen',
  'glad_happen_start',
  'happen_start_bond',
  'start_bond_father-son',
  'bond_father-son_start',
  'father-son_start_love',
  'start_love_love',
  'love_love_increas',
  'love_increas_rememb',
  'increas_rememb_three',
  'rememb_three_us',
  'three_us_would',
  'us_would_seat',
  'would_seat_couch',
  'seat_couch_watch',
  'couch_watch_movi',
  'watch_movi_one',
  'movi_one_would',
  'one_would_sit',
  'would_sit_left',
  'sit_left_one',
  'left_one_right',
  'one_right_wrap',
  'right_wrap_arm',
  'wrap_arm_around',
  'arm_around_theyd',
  'around_theyd_put',
  'theyd_put_head',
  'put_head_chest',
  'head_chest_often',
  'chest_often_kiss',
  'often_kiss_forehead',
  'kiss_forehead_weve',
  'forehead_weve_sinc',
  'weve_sinc_seven',
  'sinc_seven_met',
  'seven_met_current',
  'met_current_wife',
  'current_wife_year',
  'wife_year_ago',
  'year_ago_kid',
  'ago_kid_marri',
  'kid_marri_year',
  'marri_year_ago',
  'year_ago_welcom',
  'ago_welcom_daughter',
  'welcom_daughter_saw',
  'daughter_saw_kid',
  'saw_kid_watch',
  'kid_watch_movi',
  'watch_movi_never',
  'movi_never_said',
  'never_said_anyth',
  'said_anyth_kid',
  'anyth_kid_longer',
  'kid_longer_live',
  'longer_live_us',
  'live_us_left',
  'us_left_colleg',
  'left_colleg_come',
  'colleg_come_see',
  'come_see_everi',
  'see_everi_boy',
  'everi_boy_still',
  'boy_still_like',
  'still_like_put',
  'like_put_head',
  'put_head_chest',
  'head_chest_wrap',
  'chest_wrap_arm',
  'wrap_arm_around',
  'arm_around_everi',
  'around_everi_time',
  'everi_time_visit',
  'time_visit_im',
  'visit_im_watch',
  'im_watch_tv',
  'watch_tv_son',
  'tv_son_liam',
  'son_liam_visit',
  'liam_visit_week',
  'visit_week_ago',
  'week_ago_came',
  'ago_came_gay',
  'came_gay_introduc',
  'gay_introduc_bf',
  'introduc_bf_care',
  'bf_care_kid',
  'care_kid_live',
  'kid_live_sexual',
  'live_sexual_love',
  'sexual_love_love',
  'love_love_matter',
  'love_matter_want',
  'matter_want_happi',
  'want_happi_feel',
  'happi_feel_differ',
  'feel_differ_make',
  'differ_make_feel',
  'make_feel_uncomfort',
  'feel_uncomfort_hug',
  'uncomfort_hug_kiss',
  'hug_kiss_forehead',
  'kiss_forehead_seem',
  'forehead_seem_wife',
  'seem_wife_littl',
  'wife_littl_uncomfort',
  'littl_uncomfort_son',
  'uncomfort_son_visit',
  'son_visit_last',
  'visit_last_wednesday',
  'last_wednesday_sinc',
  'wednesday_sinc_week',
  'sinc_week_ago',
  'week_ago_first',
  'ago_first_time',
  'first_time_offici',
  'time_offici_watch',
  'offici_watch_red',
  'watch_red_daughter',
  'red_daughter_left',
  'daughter_left_son',
  'left_son_liam',
  'son_liam_arriv',
  'liam_arriv_tire',
  'arriv_tire_sat',
  'tire_sat_right',
  'sat_right_put',
  'right_put_head',
  'put_head_shoulder',
  'head_shoulder_wrap',
  'shoulder_wrap_arm',
  'wrap_arm_around',
  'arm_around_kiss',
  'around_kiss_forehead',
  'kiss_forehead_said',
  'forehead_said_good',
  'said_good_back',
  'good_back_buddi',
  'back_buddi_went',
  'buddi_went_sleep',
  'went_sleep_next',
  'sleep_next_day',
  'next_day_wife',
  'day_wife_told',
  'wife_told_made',
  'told_made_feel',
  'made_feel_uncomfort',
  'feel_uncomfort_hug',
  'uncomfort_hug_kiss',
  'hug_kiss_son',
  'kiss_son_ask',
  'son_ask_mind',
  'ask_mind_luca',
  'mind_luca_son',
  'luca_son_straight',
  'son_straight_want',
  'straight_want_liam',
  'want_liam_told',
  'liam_told_busi',
  'told_busi_relationship',
  'busi_relationship_son',
  'relationship_son_also',
  'son_also_call',
  'also_call_homophob',
  'call_homophob_accus',
  'homophob_accus_treat',
  'accus_treat_like',
  'treat_like_equal',
  'like_equal_parent',
  'equal_parent_son',
  'parent_son_thu',
  'son_thu_said',
  'thu_said_ok',
  'said_ok_brother',
  'ok_brother_say',
  'brother_say_understand',
  'say_understand_big',
  'understand_big_chang',
  'big_chang_son',
  'chang_son_come',
  'son_come_serious',
  'come_serious_think',
  'serious_think_noth',
  'think_noth_get',
  'noth_get_use',
  'get_use_neither',
  'use_neither_problem',
  'neither_problem_son',
  'problem_son_love',
  'son_love_wrong'],
 ['ident',
  'twin',
  'sister',
  'also',
  'obvious',
  'alway',
  'tumultu',
  'competit',
  'relationship',
  'weve',
  'alway',
  'fought',
  'everyth',
  'guy',
  'cloth',
  'friend',
  'etc',
  'relationship',
  'came',
  'halt',
  'week',
  'ago',
  'mutual',
  'guy',
  'friend',
  'sent',
  'link',
  'onlyfan',
  'profil',
  'attach',
  'messag',
  'state',
  'confus',
  'click',
  'link',
  'shock',
  'discov',
  'profil',
  'belong',
  'twin',
  'sister',
  'profil',
  'pictur',
  'clearli',
  'scantili',
  'clad',
  'imag',
  'usernam',
  'nicknam',
  'liter',
  'everyon',
  'life',
  'use',
  'ask',
  'friend',
  'told',
  'discov',
  'profil',
  'twitter',
  'subscrib',
  'profil',
  'includ',
  'dozen',
  'video',
  'doing…',
  'spici',
  'thing',
  'say',
  'least',
  'solo',
  'partner',
  'face',
  'show',
  'floor',
  'fit',
  'rage',
  'show',
  'profil',
  'parent',
  'mean…',
  'liter',
  'anyon',
  'saw',
  'profil',
  'know',
  'us',
  'would',
  'immedi',
  'assum',
  'consid',
  'basic',
  'go',
  'name',
  'parent',
  'forc',
  'delet',
  'profil',
  'spoken',
  'sinc',
  'claim',
  'ruin',
  'main',
  'sourc',
  'incom',
  'also',
  'betray',
  'trust',
  'howev',
  'think',
  'betray',
  'trust',
  'go',
  'nicknam',
  'aita',
  'ident_twin',
  'twin_sister',
  'sister_also',
  'also_obvious',
  'obvious_alway',
  'alway_tumultu',
  'tumultu_competit',
  'competit_relationship',
  'relationship_weve',
  'weve_alway',
  'alway_fought',
  'fought_everyth',
  'everyth_guy',
  'guy_cloth',
  'cloth_friend',
  'friend_etc',
  'etc_relationship',
  'relationship_came',
  'came_halt',
  'halt_week',
  'week_ago',
  'ago_mutual',
  'mutual_guy',
  'guy_friend',
  'friend_sent',
  'sent_link',
  'link_onlyfan',
  'onlyfan_profil',
  'profil_attach',
  'attach_messag',
  'messag_state',
  'state_confus',
  'confus_click',
  'click_link',
  'link_shock',
  'shock_discov',
  'discov_profil',
  'profil_belong',
  'belong_twin',
  'twin_sister',
  'sister_profil',
  'profil_pictur',
  'pictur_clearli',
  'clearli_scantili',
  'scantili_clad',
  'clad_imag',
  'imag_usernam',
  'usernam_nicknam',
  'nicknam_liter',
  'liter_everyon',
  'everyon_life',
  'life_use',
  'use_ask',
  'ask_friend',
  'friend_told',
  'told_discov',
  'discov_profil',
  'profil_twitter',
  'twitter_subscrib',
  'subscrib_profil',
  'profil_includ',
  'includ_dozen',
  'dozen_video',
  'video_doing…',
  'doing…_spici',
  'spici_thing',
  'thing_say',
  'say_least',
  'least_solo',
  'solo_partner',
  'partner_face',
  'face_show',
  'show_floor',
  'floor_fit',
  'fit_rage',
  'rage_show',
  'show_profil',
  'profil_parent',
  'parent_mean…',
  'mean…_liter',
  'liter_anyon',
  'anyon_saw',
  'saw_profil',
  'profil_know',
  'know_us',
  'us_would',
  'would_immedi',
  'immedi_assum',
  'assum_consid',
  'consid_basic',
  'basic_go',
  'go_name',
  'name_parent',
  'parent_forc',
  'forc_delet',
  'delet_profil',
  'profil_spoken',
  'spoken_sinc',
  'sinc_claim',
  'claim_ruin',
  'ruin_main',
  'main_sourc',
  'sourc_incom',
  'incom_also',
  'also_betray',
  'betray_trust',
  'trust_howev',
  'howev_think',
  'think_betray',
  'betray_trust',
  'trust_go',
  'go_nicknam',
  'nicknam_aita',
  'ident_twin_sister',
  'twin_sister_also',
  'sister_also_obvious',
  'also_obvious_alway',
  'obvious_alway_tumultu',
  'alway_tumultu_competit',
  'tumultu_competit_relationship',
  'competit_relationship_weve',
  'relationship_weve_alway',
  'weve_alway_fought',
  'alway_fought_everyth',
  'fought_everyth_guy',
  'everyth_guy_cloth',
  'guy_cloth_friend',
  'cloth_friend_etc',
  'friend_etc_relationship',
  'etc_relationship_came',
  'relationship_came_halt',
  'came_halt_week',
  'halt_week_ago',
  'week_ago_mutual',
  'ago_mutual_guy',
  'mutual_guy_friend',
  'guy_friend_sent',
  'friend_sent_link',
  'sent_link_onlyfan',
  'link_onlyfan_profil',
  'onlyfan_profil_attach',
  'profil_attach_messag',
  'attach_messag_state',
  'messag_state_confus',
  'state_confus_click',
  'confus_click_link',
  'click_link_shock',
  'link_shock_discov',
  'shock_discov_profil',
  'discov_profil_belong',
  'profil_belong_twin',
  'belong_twin_sister',
  'twin_sister_profil',
  'sister_profil_pictur',
  'profil_pictur_clearli',
  'pictur_clearli_scantili',
  'clearli_scantili_clad',
  'scantili_clad_imag',
  'clad_imag_usernam',
  'imag_usernam_nicknam',
  'usernam_nicknam_liter',
  'nicknam_liter_everyon',
  'liter_everyon_life',
  'everyon_life_use',
  'life_use_ask',
  'use_ask_friend',
  'ask_friend_told',
  'friend_told_discov',
  'told_discov_profil',
  'discov_profil_twitter',
  'profil_twitter_subscrib',
  'twitter_subscrib_profil',
  'subscrib_profil_includ',
  'profil_includ_dozen',
  'includ_dozen_video',
  'dozen_video_doing…',
  'video_doing…_spici',
  'doing…_spici_thing',
  'spici_thing_say',
  'thing_say_least',
  'say_least_solo',
  'least_solo_partner',
  'solo_partner_face',
  'partner_face_show',
  'face_show_floor',
  'show_floor_fit',
  'floor_fit_rage',
  'fit_rage_show',
  'rage_show_profil',
  'show_profil_parent',
  'profil_parent_mean…',
  'parent_mean…_liter',
  'mean…_liter_anyon',
  'liter_anyon_saw',
  'anyon_saw_profil',
  'saw_profil_know',
  'profil_know_us',
  'know_us_would',
  'us_would_immedi',
  'would_immedi_assum',
  'immedi_assum_consid',
  'assum_consid_basic',
  'consid_basic_go',
  'basic_go_name',
  'go_name_parent',
  'name_parent_forc',
  'parent_forc_delet',
  'forc_delet_profil',
  'delet_profil_spoken',
  'profil_spoken_sinc',
  'spoken_sinc_claim',
  'sinc_claim_ruin',
  'claim_ruin_main',
  'ruin_main_sourc',
  'main_sourc_incom',
  'sourc_incom_also',
  'incom_also_betray',
  'also_betray_trust',
  'betray_trust_howev',
  'trust_howev_think',
  'howev_think_betray',
  'think_betray_trust',
  'betray_trust_go',
  'trust_go_nicknam',
  'go_nicknam_aita'],
 ['rais',
  'mostli',
  'uncl',
  'aunt',
  'older',
  'sister',
  'develop',
  'seriou',
  'ill',
  'parent',
  'decid',
  'care',
  'us',
  'guess',
  'kind',
  'unceremoni',
  'dump',
  'grandpar',
  'uncl',
  'took',
  'like',
  'even',
  'explain',
  'go',
  'go',
  'go',
  'visit',
  'gran',
  'awhil',
  'never',
  'pick',
  'back',
  'grandpar',
  'uncl',
  'explain',
  'later',
  'pretti',
  'livid',
  'parent',
  'ive',
  'seen',
  'parent',
  'mayb',
  'time',
  'sinc',
  'last',
  'year',
  'decid',
  'stop',
  'contact',
  'sinc',
  'one',
  'reach',
  'commun',
  'broke',
  'turn',
  'ok',
  'love',
  'aunt',
  'uncl',
  'turn',
  'cant',
  'kid',
  'theyv',
  'alway',
  'said',
  'im',
  'miracl',
  'kid',
  'misrout',
  'stork',
  'first',
  'formal',
  'adopt',
  'turn',
  'wish',
  'earlier',
  'red',
  'tape',
  'thing',
  'would',
  'made',
  'realli',
  'expens',
  'difficult',
  'im',
  'sister',
  'pass',
  'away',
  'thanksgiv',
  'christma',
  'made',
  'trip',
  'back',
  'school',
  'funer',
  'stay',
  'back',
  'left',
  'bio',
  'parent',
  'could',
  'talk',
  'call',
  'uncl',
  'tri',
  'talk',
  'said',
  'want',
  'told',
  'avail',
  'moment',
  'final',
  'caught',
  'christma',
  'went',
  'midnight',
  'mass',
  'gran',
  'approach',
  'tri',
  'give',
  'hug',
  'recogn',
  'pretend',
  'back',
  'said',
  'sorri',
  'know',
  'said',
  'parent',
  'said',
  'parent',
  'home',
  'went',
  'sat',
  'gran',
  'sat',
  'behind',
  'us',
  'could',
  'feel',
  'stare',
  'way',
  'like',
  'realli',
  'recogn',
  'us',
  'said',
  'oh',
  'dad',
  'brother',
  'think',
  'rememb',
  'littl',
  'gran',
  'think',
  'deserv',
  'tri',
  'come',
  'back',
  'like',
  'noth',
  'happen',
  'wrote',
  'long',
  'letter',
  'hurt',
  'understand',
  'tri',
  'right',
  'thing',
  'theyll',
  'alway',
  'parent',
  'cant',
  'chang',
  'famili',
  'member',
  'think',
  'harsh',
  'theyr',
  'griev',
  'think',
  'get',
  'pass',
  'rememb',
  'sister',
  'gone',
  'rais_mostli',
  'mostli_uncl',
  'uncl_aunt',
  'aunt_older',
  'older_sister',
  'sister_develop',
  'develop_seriou',
  'seriou_ill',
  'ill_parent',
  'parent_decid',
  'decid_care',
  'care_us',
  'us_guess',
  'guess_kind',
  'kind_unceremoni',
  'unceremoni_dump',
  'dump_grandpar',
  'grandpar_uncl',
  'uncl_took',
  'took_like',
  'like_even',
  'even_explain',
  'explain_go',
  'go_go',
  'go_go',
  'go_visit',
  'visit_gran',
  'gran_awhil',
  'awhil_never',
  'never_pick',
  'pick_back',
  'back_grandpar',
  'grandpar_uncl',
  'uncl_explain',
  'explain_later',
  'later_pretti',
  'pretti_livid',
  'livid_parent',
  'parent_ive',
  'ive_seen',
  'seen_parent',
  'parent_mayb',
  'mayb_time',
  'time_sinc',
  'sinc_last',
  'last_year',
  'year_decid',
  'decid_stop',
  'stop_contact',
  'contact_sinc',
  'sinc_one',
  'one_reach',
  'reach_commun',
  'commun_broke',
  'broke_turn',
  'turn_ok',
  'ok_love',
  'love_aunt',
  'aunt_uncl',
  'uncl_turn',
  'turn_cant',
  'cant_kid',
  'kid_theyv',
  'theyv_alway',
  'alway_said',
  'said_im',
  'im_miracl',
  'miracl_kid',
  'kid_misrout',
  'misrout_stork',
  'stork_first',
  'first_formal',
  'formal_adopt',
  'adopt_turn',
  'turn_wish',
  'wish_earlier',
  'earlier_red',
  'red_tape',
  'tape_thing',
  'thing_would',
  'would_made',
  'made_realli',
  'realli_expens',
  'expens_difficult',
  'difficult_im',
  'im_sister',
  'sister_pass',
  'pass_away',
  'away_thanksgiv',
  'thanksgiv_christma',
  'christma_made',
  'made_trip',
  'trip_back',
  'back_school',
  'school_funer',
  'funer_stay',
  'stay_back',
  'back_left',
  'left_bio',
  'bio_parent',
  'parent_could',
  'could_talk',
  'talk_call',
  'call_uncl',
  'uncl_tri',
  'tri_talk',
  'talk_said',
  'said_want',
  'want_told',
  'told_avail',
  'avail_moment',
  'moment_final',
  'final_caught',
  'caught_christma',
  'christma_went',
  'went_midnight',
  'midnight_mass',
  'mass_gran',
  'gran_approach',
  'approach_tri',
  'tri_give',
  'give_hug',
  'hug_recogn',
  'recogn_pretend',
  'pretend_back',
  'back_said',
  'said_sorri',
  'sorri_know',
  'know_said',
  'said_parent',
  'parent_said',
  'said_parent',
  'parent_home',
  'home_went',
  'went_sat',
  'sat_gran',
  'gran_sat',
  'sat_behind',
  'behind_us',
  'us_could',
  'could_feel',
  'feel_stare',
  'stare_way',
  'way_like',
  'like_realli',
  'realli_recogn',
  'recogn_us',
  'us_said',
  'said_oh',
  'oh_dad',
  'dad_brother',
  'brother_think',
  'think_rememb',
  'rememb_littl',
  'littl_gran',
  'gran_think',
  'think_deserv',
  'deserv_tri',
  'tri_come',
  'come_back',
  'back_like',
  'like_noth',
  'noth_happen',
  'happen_wrote',
  'wrote_long',
  'long_letter',
  'letter_hurt',
  'hurt_understand',
  'understand_tri',
  'tri_right',
  'right_thing',
  'thing_theyll',
  'theyll_alway',
  'alway_parent',
  'parent_cant',
  'cant_chang',
  'chang_famili',
  'famili_member',
  'member_think',
  'think_harsh',
  'harsh_theyr',
  'theyr_griev',
  'griev_think',
  'think_get',
  'get_pass',
  'pass_rememb',
  'rememb_sister',
  'sister_gone',
  'rais_mostli_uncl',
  'mostli_uncl_aunt',
  'uncl_aunt_older',
  'aunt_older_sister',
  'older_sister_develop',
  'sister_develop_seriou',
  'develop_seriou_ill',
  'seriou_ill_parent',
  'ill_parent_decid',
  'parent_decid_care',
  'decid_care_us',
  'care_us_guess',
  'us_guess_kind',
  'guess_kind_unceremoni',
  'kind_unceremoni_dump',
  'unceremoni_dump_grandpar',
  'dump_grandpar_uncl',
  'grandpar_uncl_took',
  'uncl_took_like',
  'took_like_even',
  'like_even_explain',
  'even_explain_go',
  'explain_go_go',
  'go_go_go',
  'go_go_visit',
  'go_visit_gran',
  'visit_gran_awhil',
  'gran_awhil_never',
  'awhil_never_pick',
  'never_pick_back',
  'pick_back_grandpar',
  'back_grandpar_uncl',
  'grandpar_uncl_explain',
  'uncl_explain_later',
  'explain_later_pretti',
  'later_pretti_livid',
  'pretti_livid_parent',
  'livid_parent_ive',
  'parent_ive_seen',
  'ive_seen_parent',
  'seen_parent_mayb',
  'parent_mayb_time',
  'mayb_time_sinc',
  'time_sinc_last',
  'sinc_last_year',
  'last_year_decid',
  'year_decid_stop',
  'decid_stop_contact',
  'stop_contact_sinc',
  'contact_sinc_one',
  'sinc_one_reach',
  'one_reach_commun',
  'reach_commun_broke',
  'commun_broke_turn',
  'broke_turn_ok',
  'turn_ok_love',
  'ok_love_aunt',
  'love_aunt_uncl',
  'aunt_uncl_turn',
  'uncl_turn_cant',
  'turn_cant_kid',
  'cant_kid_theyv',
  'kid_theyv_alway',
  'theyv_alway_said',
  'alway_said_im',
  'said_im_miracl',
  'im_miracl_kid',
  'miracl_kid_misrout',
  'kid_misrout_stork',
  'misrout_stork_first',
  'stork_first_formal',
  'first_formal_adopt',
  'formal_adopt_turn',
  'adopt_turn_wish',
  'turn_wish_earlier',
  'wish_earlier_red',
  'earlier_red_tape',
  'red_tape_thing',
  'tape_thing_would',
  'thing_would_made',
  'would_made_realli',
  'made_realli_expens',
  'realli_expens_difficult',
  'expens_difficult_im',
  'difficult_im_sister',
  'im_sister_pass',
  'sister_pass_away',
  'pass_away_thanksgiv',
  'away_thanksgiv_christma',
  'thanksgiv_christma_made',
  'christma_made_trip',
  'made_trip_back',
  'trip_back_school',
  'back_school_funer',
  'school_funer_stay',
  'funer_stay_back',
  'stay_back_left',
  'back_left_bio',
  'left_bio_parent',
  'bio_parent_could',
  'parent_could_talk',
  'could_talk_call',
  'talk_call_uncl',
  'call_uncl_tri',
  'uncl_tri_talk',
  'tri_talk_said',
  'talk_said_want',
  'said_want_told',
  'want_told_avail',
  'told_avail_moment',
  'avail_moment_final',
  'moment_final_caught',
  'final_caught_christma',
  'caught_christma_went',
  'christma_went_midnight',
  'went_midnight_mass',
  'midnight_mass_gran',
  'mass_gran_approach',
  'gran_approach_tri',
  'approach_tri_give',
  'tri_give_hug',
  'give_hug_recogn',
  'hug_recogn_pretend',
  'recogn_pretend_back',
  'pretend_back_said',
  'back_said_sorri',
  'said_sorri_know',
  'sorri_know_said',
  'know_said_parent',
  'said_parent_said',
  'parent_said_parent',
  'said_parent_home',
  'parent_home_went',
  'home_went_sat',
  'went_sat_gran',
  'sat_gran_sat',
  'gran_sat_behind',
  'sat_behind_us',
  'behind_us_could',
  'us_could_feel',
  'could_feel_stare',
  'feel_stare_way',
  'stare_way_like',
  'way_like_realli',
  'like_realli_recogn',
  'realli_recogn_us',
  'recogn_us_said',
  'us_said_oh',
  'said_oh_dad',
  'oh_dad_brother',
  'dad_brother_think',
  'brother_think_rememb',
  'think_rememb_littl',
  'rememb_littl_gran',
  'littl_gran_think',
  'gran_think_deserv',
  'think_deserv_tri',
  'deserv_tri_come',
  'tri_come_back',
  'come_back_like',
  'back_like_noth',
  'like_noth_happen',
  'noth_happen_wrote',
  'happen_wrote_long',
  'wrote_long_letter',
  'long_letter_hurt',
  'letter_hurt_understand',
  'hurt_understand_tri',
  'understand_tri_right',
  'tri_right_thing',
  'right_thing_theyll',
  'thing_theyll_alway',
  'theyll_alway_parent',
  'alway_parent_cant',
  'parent_cant_chang',
  'cant_chang_famili',
  'chang_famili_member',
  'famili_member_think',
  'member_think_harsh',
  'think_harsh_theyr',
  'harsh_theyr_griev',
  'theyr_griev_think',
  'griev_think_get',
  'think_get_pass',
  'get_pass_rememb',
  'pass_rememb_sister',
  'rememb_sister_gone'],
 ['im',
  'engin',
  'im',
  'work',
  'team',
  'decent',
  'chill',
  'guy',
  'one',
  'guy',
  'anger',
  'issu',
  'like',
  'cant',
  'respect',
  'disagr',
  'hell',
  'rais',
  'voic',
  'yell',
  'get',
  'close',
  'face',
  'hate',
  'start',
  'complain',
  'boss',
  'brush',
  'rug',
  'say',
  'like',
  'thought',
  'bad',
  'seen',
  'year',
  'ago',
  'mellow',
  'make',
  'wonder',
  'like',
  'year',
  'ago',
  'sure',
  'aint',
  'mellow',
  'also',
  'small',
  'enough',
  'compani',
  'hr',
  'corpor',
  'manag',
  'help',
  'took',
  'differ',
  'approach',
  'stop',
  'call',
  'angri',
  'call',
  'argu',
  'yell',
  'swap',
  'word',
  'emot',
  'throw',
  'tantrum',
  'fit',
  'kinda',
  'hope',
  'could',
  'shift',
  'reput',
  'domin',
  'big',
  'man',
  'vibe',
  'emot',
  'tantrum',
  'weak',
  'sad',
  'babi',
  'vibe',
  'start',
  'make',
  'subtl',
  'comment',
  'like',
  'meet',
  'got',
  'temper',
  'id',
  'mention',
  'peopl',
  'wow',
  'crazi',
  'emot',
  'jay',
  'got',
  'dunno',
  'energi',
  'throw',
  'hissi',
  'fit',
  'im',
  'bare',
  'awak',
  'boss',
  'ask',
  'recap',
  'meet',
  'miss',
  'told',
  'dan',
  'jack',
  'jame',
  'realli',
  'great',
  'feedback',
  'report',
  'client',
  'jay',
  'kinda',
  'troubl',
  'manag',
  'emot',
  'temper',
  'tantrum',
  'know',
  'get',
  'cowork',
  'ask',
  'yell',
  'id',
  'say',
  'honestli',
  'even',
  'know',
  'get',
  'emot',
  'speak',
  'ration',
  'tri',
  'drop',
  'subtli',
  'cowork',
  'start',
  'pick',
  'think',
  'conscious',
  'say',
  'stuff',
  'like',
  'oh',
  'anoth',
  'jay',
  'fit',
  'someth',
  'got',
  'gutsi',
  'enough',
  'even',
  'start',
  'say',
  'face',
  'hey',
  'hardli',
  'understand',
  'tri',
  'explain',
  'emot',
  'cowork',
  'start',
  'pick',
  'even',
  'caught',
  'sever',
  'tell',
  'get',
  'hold',
  'start',
  'get',
  'reput',
  'emot',
  'irrat',
  'could',
  'tell',
  'piss',
  'stop',
  'yell',
  'much',
  'anyway',
  'slip',
  'week',
  'said',
  'realli',
  'cant',
  'talk',
  'emot',
  'blew',
  'ask',
  'alway',
  'call',
  'shrug',
  'said',
  'dude',
  'look',
  'like',
  'verg',
  'tear',
  'go',
  'look',
  'mirror',
  'ask',
  'got',
  'realli',
  'angri',
  'suggest',
  'might',
  'start',
  'cri',
  'kinda',
  'flippant',
  'comment',
  'red',
  'face',
  'angri',
  'tear',
  'angri',
  'could',
  'tell',
  'feel',
  'like',
  'bit',
  'dick',
  'petti',
  'tri',
  'gaslight',
  'guy',
  'think',
  'everyon',
  'around',
  'see',
  'like',
  'crybabi',
  'also',
  'mostli',
  'work',
  'proper',
  'channel',
  'aita',
  'call',
  'cowork',
  'emot',
  'got',
  'mad',
  'im_engin',
  'engin_im',
  'im_work',
  'work_team',
  'team_decent',
  'decent_chill',
  'chill_guy',
  'guy_one',
  'one_guy',
  'guy_anger',
  'anger_issu',
  'issu_like',
  'like_cant',
  'cant_respect',
  'respect_disagr',
  'disagr_hell',
  'hell_rais',
  'rais_voic',
  'voic_yell',
  'yell_get',
  'get_close',
  'close_face',
  'face_hate',
  'hate_start',
  'start_complain',
  'complain_boss',
  'boss_brush',
  'brush_rug',
  'rug_say',
  'say_like',
  'like_thought',
  'thought_bad',
  'bad_seen',
  'seen_year',
  'year_ago',
  'ago_mellow',
  'mellow_make',
  'make_wonder',
  'wonder_like',
  'like_year',
  'year_ago',
  'ago_sure',
  'sure_aint',
  'aint_mellow',
  'mellow_also',
  'also_small',
  'small_enough',
  'enough_compani',
  'compani_hr',
  'hr_corpor',
  'corpor_manag',
  'manag_help',
  'help_took',
  'took_differ',
  'differ_approach',
  'approach_stop',
  'stop_call',
  'call_angri',
  'angri_call',
  'call_argu',
  'argu_yell',
  'yell_swap',
  'swap_word',
  'word_emot',
  'emot_throw',
  'throw_tantrum',
  'tantrum_fit',
  'fit_kinda',
  'kinda_hope',
  'hope_could',
  'could_shift',
  'shift_reput',
  'reput_domin',
  'domin_big',
  'big_man',
  'man_vibe',
  'vibe_emot',
  'emot_tantrum',
  'tantrum_weak',
  'weak_sad',
  'sad_babi',
  'babi_vibe',
  'vibe_start',
  'start_make',
  'make_subtl',
  'subtl_comment',
  'comment_like',
  'like_meet',
  'meet_got',
  'got_temper',
  'temper_id',
  'id_mention',
  'mention_peopl',
  'peopl_wow',
  'wow_crazi',
  'crazi_emot',
  'emot_jay',
  'jay_got',
  'got_dunno',
  'dunno_energi',
  'energi_throw',
  'throw_hissi',
  'hissi_fit',
  'fit_im',
  'im_bare',
  'bare_awak',
  'awak_boss',
  'boss_ask',
  'ask_recap',
  'recap_meet',
  'meet_miss',
  'miss_told',
  'told_dan',
  'dan_jack',
  'jack_jame',
  'jame_realli',
  'realli_great',
  'great_feedback',
  'feedback_report',
  'report_client',
  'client_jay',
  'jay_kinda',
  'kinda_troubl',
  'troubl_manag',
  'manag_emot',
  'emot_temper',
  'temper_tantrum',
  'tantrum_know',
  'know_get',
  'get_cowork',
  'cowork_ask',
  'ask_yell',
  'yell_id',
  'id_say',
  'say_honestli',
  'honestli_even',
  'even_know',
  'know_get',
  'get_emot',
  'emot_speak',
  'speak_ration',
  'ration_tri',
  'tri_drop',
  'drop_subtli',
  'subtli_cowork',
  'cowork_start',
  'start_pick',
  'pick_think',
  'think_conscious',
  'conscious_say',
  'say_stuff',
  'stuff_like',
  'like_oh',
  'oh_anoth',
  'anoth_jay',
  'jay_fit',
  'fit_someth',
  'someth_got',
  'got_gutsi',
  'gutsi_enough',
  'enough_even',
  'even_start',
  'start_say',
  'say_face',
  'face_hey',
  'hey_hardli',
  'hardli_understand',
  'understand_tri',
  'tri_explain',
  'explain_emot',
  'emot_cowork',
  'cowork_start',
  'start_pick',
  'pick_even',
  'even_caught',
  'caught_sever',
  'sever_tell',
  'tell_get',
  'get_hold',
  'hold_start',
  'start_get',
  'get_reput',
  'reput_emot',
  'emot_irrat',
  'irrat_could',
  'could_tell',
  'tell_piss',
  'piss_stop',
  'stop_yell',
  'yell_much',
  'much_anyway',
  'anyway_slip',
  'slip_week',
  'week_said',
  'said_realli',
  'realli_cant',
  'cant_talk',
  'talk_emot',
  'emot_blew',
  'blew_ask',
  'ask_alway',
  'alway_call',
  'call_shrug',
  'shrug_said',
  'said_dude',
  'dude_look',
  'look_like',
  'like_verg',
  'verg_tear',
  'tear_go',
  'go_look',
  'look_mirror',
  'mirror_ask',
  'ask_got',
  'got_realli',
  'realli_angri',
  'angri_suggest',
  'suggest_might',
  'might_start',
  'start_cri',
  'cri_kinda',
  'kinda_flippant',
  'flippant_comment',
  'comment_red',
  'red_face',
  'face_angri',
  'angri_tear',
  'tear_angri',
  'angri_could',
  'could_tell',
  'tell_feel',
  'feel_like',
  'like_bit',
  'bit_dick',
  'dick_petti',
  'petti_tri',
  'tri_gaslight',
  'gaslight_guy',
  'guy_think',
  'think_everyon',
  'everyon_around',
  'around_see',
  'see_like',
  'like_crybabi',
  'crybabi_also',
  'also_mostli',
  'mostli_work',
  'work_proper',
  'proper_channel',
  'channel_aita',
  'aita_call',
  'call_cowork',
  'cowork_emot',
  'emot_got',
  'got_mad',
  'im_engin_im',
  'engin_im_work',
  'im_work_team',
  'work_team_decent',
  'team_decent_chill',
  'decent_chill_guy',
  'chill_guy_one',
  'guy_one_guy',
  'one_guy_anger',
  'guy_anger_issu',
  'anger_issu_like',
  'issu_like_cant',
  'like_cant_respect',
  'cant_respect_disagr',
  'respect_disagr_hell',
  'disagr_hell_rais',
  'hell_rais_voic',
  'rais_voic_yell',
  'voic_yell_get',
  'yell_get_close',
  'get_close_face',
  'close_face_hate',
  'face_hate_start',
  'hate_start_complain',
  'start_complain_boss',
  'complain_boss_brush',
  'boss_brush_rug',
  'brush_rug_say',
  'rug_say_like',
  'say_like_thought',
  'like_thought_bad',
  'thought_bad_seen',
  'bad_seen_year',
  'seen_year_ago',
  'year_ago_mellow',
  'ago_mellow_make',
  'mellow_make_wonder',
  'make_wonder_like',
  'wonder_like_year',
  'like_year_ago',
  'year_ago_sure',
  'ago_sure_aint',
  'sure_aint_mellow',
  'aint_mellow_also',
  'mellow_also_small',
  'also_small_enough',
  'small_enough_compani',
  'enough_compani_hr',
  'compani_hr_corpor',
  'hr_corpor_manag',
  'corpor_manag_help',
  'manag_help_took',
  'help_took_differ',
  'took_differ_approach',
  'differ_approach_stop',
  'approach_stop_call',
  'stop_call_angri',
  'call_angri_call',
  'angri_call_argu',
  'call_argu_yell',
  'argu_yell_swap',
  'yell_swap_word',
  'swap_word_emot',
  'word_emot_throw',
  'emot_throw_tantrum',
  'throw_tantrum_fit',
  'tantrum_fit_kinda',
  'fit_kinda_hope',
  'kinda_hope_could',
  'hope_could_shift',
  'could_shift_reput',
  'shift_reput_domin',
  'reput_domin_big',
  'domin_big_man',
  'big_man_vibe',
  'man_vibe_emot',
  'vibe_emot_tantrum',
  'emot_tantrum_weak',
  'tantrum_weak_sad',
  'weak_sad_babi',
  'sad_babi_vibe',
  'babi_vibe_start',
  'vibe_start_make',
  'start_make_subtl',
  'make_subtl_comment',
  'subtl_comment_like',
  'comment_like_meet',
  'like_meet_got',
  'meet_got_temper',
  'got_temper_id',
  'temper_id_mention',
  'id_mention_peopl',
  'mention_peopl_wow',
  'peopl_wow_crazi',
  'wow_crazi_emot',
  'crazi_emot_jay',
  'emot_jay_got',
  'jay_got_dunno',
  'got_dunno_energi',
  'dunno_energi_throw',
  'energi_throw_hissi',
  'throw_hissi_fit',
  'hissi_fit_im',
  'fit_im_bare',
  'im_bare_awak',
  'bare_awak_boss',
  'awak_boss_ask',
  'boss_ask_recap',
  'ask_recap_meet',
  'recap_meet_miss',
  'meet_miss_told',
  'miss_told_dan',
  'told_dan_jack',
  'dan_jack_jame',
  'jack_jame_realli',
  'jame_realli_great',
  'realli_great_feedback',
  'great_feedback_report',
  'feedback_report_client',
  'report_client_jay',
  'client_jay_kinda',
  'jay_kinda_troubl',
  'kinda_troubl_manag',
  'troubl_manag_emot',
  'manag_emot_temper',
  'emot_temper_tantrum',
  'temper_tantrum_know',
  'tantrum_know_get',
  'know_get_cowork',
  'get_cowork_ask',
  'cowork_ask_yell',
  'ask_yell_id',
  'yell_id_say',
  'id_say_honestli',
  'say_honestli_even',
  'honestli_even_know',
  'even_know_get',
  'know_get_emot',
  'get_emot_speak',
  'emot_speak_ration',
  'speak_ration_tri',
  'ration_tri_drop',
  'tri_drop_subtli',
  'drop_subtli_cowork',
  'subtli_cowork_start',
  'cowork_start_pick',
  'start_pick_think',
  'pick_think_conscious',
  'think_conscious_say',
  'conscious_say_stuff',
  'say_stuff_like',
  'stuff_like_oh',
  'like_oh_anoth',
  'oh_anoth_jay',
  'anoth_jay_fit',
  'jay_fit_someth',
  'fit_someth_got',
  'someth_got_gutsi',
  'got_gutsi_enough',
  'gutsi_enough_even',
  'enough_even_start',
  'even_start_say',
  'start_say_face',
  'say_face_hey',
  'face_hey_hardli',
  'hey_hardli_understand',
  'hardli_understand_tri',
  'understand_tri_explain',
  'tri_explain_emot',
  'explain_emot_cowork',
  'emot_cowork_start',
  'cowork_start_pick',
  'start_pick_even',
  'pick_even_caught',
  'even_caught_sever',
  'caught_sever_tell',
  'sever_tell_get',
  'tell_get_hold',
  'get_hold_start',
  'hold_start_get',
  'start_get_reput',
  'get_reput_emot',
  'reput_emot_irrat',
  'emot_irrat_could',
  'irrat_could_tell',
  'could_tell_piss',
  'tell_piss_stop',
  'piss_stop_yell',
  'stop_yell_much',
  'yell_much_anyway',
  'much_anyway_slip',
  'anyway_slip_week',
  'slip_week_said',
  'week_said_realli',
  'said_realli_cant',
  'realli_cant_talk',
  'cant_talk_emot',
  'talk_emot_blew',
  'emot_blew_ask',
  'blew_ask_alway',
  'ask_alway_call',
  'alway_call_shrug',
  'call_shrug_said',
  'shrug_said_dude',
  'said_dude_look',
  'dude_look_like',
  'look_like_verg',
  'like_verg_tear',
  'verg_tear_go',
  'tear_go_look',
  'go_look_mirror',
  'look_mirror_ask',
  'mirror_ask_got',
  'ask_got_realli',
  'got_realli_angri',
  'realli_angri_suggest',
  'angri_suggest_might',
  'suggest_might_start',
  'might_start_cri',
  'start_cri_kinda',
  'cri_kinda_flippant',
  'kinda_flippant_comment',
  'flippant_comment_red',
  'comment_red_face',
  'red_face_angri',
  'face_angri_tear',
  'angri_tear_angri',
  'tear_angri_could',
  'angri_could_tell',
  'could_tell_feel',
  'tell_feel_like',
  'feel_like_bit',
  'like_bit_dick',
  'bit_dick_petti',
  'dick_petti_tri',
  'petti_tri_gaslight',
  'tri_gaslight_guy',
  'gaslight_guy_think',
  'guy_think_everyon',
  'think_everyon_around',
  'everyon_around_see',
  'around_see_like',
  'see_like_crybabi',
  'like_crybabi_also',
  'crybabi_also_mostli',
  'also_mostli_work',
  'mostli_work_proper',
  'work_proper_channel',
  'proper_channel_aita',
  'channel_aita_call',
  'aita_call_cowork',
  'call_cowork_emot',
  'cowork_emot_got',
  'emot_got_mad'],
 ['two',
  'younger',
  'sibl',
  'joe',
  'jill',
  'theyr',
  'twin',
  'graduat',
  'high',
  'school',
  'year',
  'jill',
  'parent',
  'favorit',
  'theyv',
  'alway',
  'want',
  'daughter',
  'joe',
  'scapegoat',
  'guess',
  'bonu',
  'babi',
  'never',
  'actual',
  'ask',
  'im',
  'mostli',
  'better',
  'joe',
  'im',
  'oldest',
  'grandson',
  'side',
  'famili',
  'almost',
  'blantant',
  'parent',
  'favorit',
  'felt',
  'realli',
  'bad',
  'joe',
  'could',
  'make',
  'feel',
  'less',
  'alon',
  'like',
  'jill',
  'got',
  'go',
  'shop',
  'mommi',
  'daddi',
  'took',
  'joe',
  'skate',
  'friend',
  'parent',
  'busi',
  'watch',
  'jill',
  'kiddi',
  'pageant',
  'drag',
  'best',
  'bud',
  'sit',
  'joe',
  'elementari',
  'school',
  'music',
  'small',
  'thing',
  'like',
  'start',
  'piti',
  'move',
  'soon',
  'friend',
  'pretti',
  'much',
  'like',
  'joe',
  'better',
  'jill',
  'princess',
  'syndrom',
  'got',
  'head',
  'spend',
  'time',
  'joe',
  'simpli',
  'like',
  'better',
  'jill',
  'never',
  'said',
  'loud',
  'make',
  'secret',
  'either',
  'prefer',
  'spend',
  'time',
  'entitl',
  'brat',
  'anyway',
  'like',
  'said',
  'theyr',
  'graduat',
  'soon',
  'alreadi',
  'choic',
  'colleg',
  'accomod',
  'etc',
  'jill',
  'go',
  'uni',
  'sf',
  'fulli',
  'fund',
  'parent',
  'unsurprisingli',
  'joe',
  'go',
  'uni',
  'mine',
  'seattl',
  'differ',
  'campu',
  'ish',
  'minut',
  'away',
  'got',
  'full',
  'ride',
  'appar',
  'make',
  'inelig',
  'get',
  'financi',
  'help',
  'parent',
  'also',
  'hardli',
  'surpris',
  'made',
  'call',
  'ask',
  'around',
  'see',
  'anyon',
  'hire',
  'next',
  'fall',
  'facetim',
  'joe',
  'reassur',
  'well',
  'find',
  'job',
  'suck',
  'pay',
  'enough',
  'better',
  'without',
  'dad',
  'money',
  'anyway',
  'know',
  'come',
  'string',
  'attach',
  'way',
  'mom',
  'dad',
  'abl',
  'stick',
  'nose',
  'purchas',
  'got',
  'feel',
  'better',
  'whole',
  'thing',
  'log',
  'guess',
  'jill',
  'overheard',
  'next',
  'day',
  'sent',
  'text',
  'text',
  'demand',
  'help',
  'find',
  'job',
  'well',
  'want',
  'dad',
  'nag',
  'told',
  'polit',
  'btw',
  'know',
  'anyon',
  'sf',
  'shed',
  'get',
  'help',
  'mom',
  'dad',
  'blew',
  'say',
  'thing',
  'favor',
  'joe',
  'yeah',
  'true',
  'love',
  'sibl',
  'particularli',
  'like',
  'jill',
  'like',
  'make',
  'likeabl',
  'though',
  'aita',
  'two_younger',
  'younger_sibl',
  'sibl_joe',
  'joe_jill',
  'jill_theyr',
  'theyr_twin',
  'twin_graduat',
  'graduat_high',
  'high_school',
  'school_year',
  'year_jill',
  'jill_parent',
  'parent_favorit',
  'favorit_theyv',
  'theyv_alway',
  'alway_want',
  'want_daughter',
  'daughter_joe',
  'joe_scapegoat',
  'scapegoat_guess',
  'guess_bonu',
  'bonu_babi',
  'babi_never',
  'never_actual',
  'actual_ask',
  'ask_im',
  'im_mostli',
  'mostli_better',
  'better_joe',
  'joe_im',
  'im_oldest',
  'oldest_grandson',
  'grandson_side',
  'side_famili',
  'famili_almost',
  'almost_blantant',
  'blantant_parent',
  'parent_favorit',
  'favorit_felt',
  'felt_realli',
  'realli_bad',
  'bad_joe',
  'joe_could',
  'could_make',
  'make_feel',
  'feel_less',
  'less_alon',
  'alon_like',
  'like_jill',
  'jill_got',
  'got_go',
  'go_shop',
  'shop_mommi',
  'mommi_daddi',
  'daddi_took',
  'took_joe',
  'joe_skate',
  'skate_friend',
  'friend_parent',
  'parent_busi',
  'busi_watch',
  'watch_jill',
  'jill_kiddi',
  'kiddi_pageant',
  'pageant_drag',
  'drag_best',
  'best_bud',
  'bud_sit',
  'sit_joe',
  'joe_elementari',
  'elementari_school',
  'school_music',
  'music_small',
  'small_thing',
  'thing_like',
  'like_start',
  'start_piti',
  'piti_move',
  'move_soon',
  'soon_friend',
  'friend_pretti',
  'pretti_much',
  'much_like',
  'like_joe',
  'joe_better',
  'better_jill',
  'jill_princess',
  'princess_syndrom',
  'syndrom_got',
  'got_head',
  'head_spend',
  'spend_time',
  'time_joe',
  'joe_simpli',
  'simpli_like',
  'like_better',
  'better_jill',
  'jill_never',
  'never_said',
  'said_loud',
  'loud_make',
  'make_secret',
  'secret_either',
  'either_prefer',
  'prefer_spend',
  'spend_time',
  'time_entitl',
  'entitl_brat',
  'brat_anyway',
  'anyway_like',
  'like_said',
  'said_theyr',
  'theyr_graduat',
  'graduat_soon',
  'soon_alreadi',
  'alreadi_choic',
  'choic_colleg',
  'colleg_accomod',
  'accomod_etc',
  'etc_jill',
  'jill_go',
  'go_uni',
  'uni_sf',
  'sf_fulli',
  'fulli_fund',
  'fund_parent',
  'parent_unsurprisingli',
  'unsurprisingli_joe',
  'joe_go',
  'go_uni',
  'uni_mine',
  'mine_seattl',
  'seattl_differ',
  'differ_campu',
  'campu_ish',
  'ish_minut',
  'minut_away',
  'away_got',
  'got_full',
  'full_ride',
  'ride_appar',
  'appar_make',
  'make_inelig',
  'inelig_get',
  'get_financi',
  'financi_help',
  'help_parent',
  'parent_also',
  'also_hardli',
  'hardli_surpris',
  'surpris_made',
  'made_call',
  'call_ask',
  'ask_around',
  'around_see',
  'see_anyon',
  'anyon_hire',
  'hire_next',
  'next_fall',
  'fall_facetim',
  'facetim_joe',
  'joe_reassur',
  'reassur_well',
  'well_find',
  'find_job',
  'job_suck',
  'suck_pay',
  'pay_enough',
  'enough_better',
  'better_without',
  'without_dad',
  'dad_money',
  'money_anyway',
  'anyway_know',
  'know_come',
  'come_string',
  'string_attach',
  'attach_way',
  'way_mom',
  'mom_dad',
  'dad_abl',
  'abl_stick',
  'stick_nose',
  'nose_purchas',
  'purchas_got',
  'got_feel',
  'feel_better',
  'better_whole',
  'whole_thing',
  'thing_log',
  'log_guess',
  'guess_jill',
  'jill_overheard',
  'overheard_next',
  'next_day',
  'day_sent',
  'sent_text',
  'text_text',
  'text_demand',
  'demand_help',
  'help_find',
  'find_job',
  'job_well',
  'well_want',
  'want_dad',
  'dad_nag',
  'nag_told',
  'told_polit',
  'polit_btw',
  'btw_know',
  'know_anyon',
  'anyon_sf',
  'sf_shed',
  'shed_get',
  'get_help',
  'help_mom',
  'mom_dad',
  'dad_blew',
  'blew_say',
  'say_thing',
  'thing_favor',
  'favor_joe',
  'joe_yeah',
  'yeah_true',
  'true_love',
  'love_sibl',
  'sibl_particularli',
  'particularli_like',
  'like_jill',
  'jill_like',
  'like_make',
  'make_likeabl',
  'likeabl_though',
  'though_aita',
  'two_younger_sibl',
  'younger_sibl_joe',
  'sibl_joe_jill',
  'joe_jill_theyr',
  'jill_theyr_twin',
  'theyr_twin_graduat',
  'twin_graduat_high',
  'graduat_high_school',
  'high_school_year',
  'school_year_jill',
  'year_jill_parent',
  'jill_parent_favorit',
  'parent_favorit_theyv',
  'favorit_theyv_alway',
  'theyv_alway_want',
  'alway_want_daughter',
  'want_daughter_joe',
  'daughter_joe_scapegoat',
  'joe_scapegoat_guess',
  'scapegoat_guess_bonu',
  'guess_bonu_babi',
  'bonu_babi_never',
  'babi_never_actual',
  'never_actual_ask',
  'actual_ask_im',
  'ask_im_mostli',
  'im_mostli_better',
  'mostli_better_joe',
  'better_joe_im',
  'joe_im_oldest',
  'im_oldest_grandson',
  'oldest_grandson_side',
  'grandson_side_famili',
  'side_famili_almost',
  'famili_almost_blantant',
  'almost_blantant_parent',
  'blantant_parent_favorit',
  'parent_favorit_felt',
  'favorit_felt_realli',
  'felt_realli_bad',
  'realli_bad_joe',
  'bad_joe_could',
  'joe_could_make',
  'could_make_feel',
  'make_feel_less',
  'feel_less_alon',
  'less_alon_like',
  'alon_like_jill',
  'like_jill_got',
  'jill_got_go',
  'got_go_shop',
  'go_shop_mommi',
  'shop_mommi_daddi',
  'mommi_daddi_took',
  'daddi_took_joe',
  'took_joe_skate',
  'joe_skate_friend',
  'skate_friend_parent',
  'friend_parent_busi',
  'parent_busi_watch',
  'busi_watch_jill',
  'watch_jill_kiddi',
  'jill_kiddi_pageant',
  'kiddi_pageant_drag',
  'pageant_drag_best',
  'drag_best_bud',
  'best_bud_sit',
  'bud_sit_joe',
  'sit_joe_elementari',
  'joe_elementari_school',
  'elementari_school_music',
  'school_music_small',
  'music_small_thing',
  'small_thing_like',
  'thing_like_start',
  'like_start_piti',
  'start_piti_move',
  'piti_move_soon',
  'move_soon_friend',
  'soon_friend_pretti',
  'friend_pretti_much',
  'pretti_much_like',
  'much_like_joe',
  'like_joe_better',
  'joe_better_jill',
  'better_jill_princess',
  'jill_princess_syndrom',
  'princess_syndrom_got',
  'syndrom_got_head',
  'got_head_spend',
  'head_spend_time',
  'spend_time_joe',
  'time_joe_simpli',
  'joe_simpli_like',
  'simpli_like_better',
  'like_better_jill',
  'better_jill_never',
  'jill_never_said',
  'never_said_loud',
  'said_loud_make',
  'loud_make_secret',
  'make_secret_either',
  'secret_either_prefer',
  'either_prefer_spend',
  'prefer_spend_time',
  'spend_time_entitl',
  'time_entitl_brat',
  'entitl_brat_anyway',
  'brat_anyway_like',
  'anyway_like_said',
  'like_said_theyr',
  'said_theyr_graduat',
  'theyr_graduat_soon',
  'graduat_soon_alreadi',
  'soon_alreadi_choic',
  'alreadi_choic_colleg',
  'choic_colleg_accomod',
  'colleg_accomod_etc',
  'accomod_etc_jill',
  'etc_jill_go',
  'jill_go_uni',
  'go_uni_sf',
  'uni_sf_fulli',
  'sf_fulli_fund',
  'fulli_fund_parent',
  'fund_parent_unsurprisingli',
  'parent_unsurprisingli_joe',
  'unsurprisingli_joe_go',
  'joe_go_uni',
  'go_uni_mine',
  'uni_mine_seattl',
  'mine_seattl_differ',
  'seattl_differ_campu',
  'differ_campu_ish',
  'campu_ish_minut',
  'ish_minut_away',
  'minut_away_got',
  'away_got_full',
  'got_full_ride',
  'full_ride_appar',
  'ride_appar_make',
  'appar_make_inelig',
  'make_inelig_get',
  'inelig_get_financi',
  'get_financi_help',
  'financi_help_parent',
  'help_parent_also',
  'parent_also_hardli',
  'also_hardli_surpris',
  'hardli_surpris_made',
  'surpris_made_call',
  'made_call_ask',
  'call_ask_around',
  'ask_around_see',
  'around_see_anyon',
  'see_anyon_hire',
  'anyon_hire_next',
  'hire_next_fall',
  'next_fall_facetim',
  'fall_facetim_joe',
  'facetim_joe_reassur',
  'joe_reassur_well',
  'reassur_well_find',
  'well_find_job',
  'find_job_suck',
  'job_suck_pay',
  'suck_pay_enough',
  'pay_enough_better',
  'enough_better_without',
  'better_without_dad',
  'without_dad_money',
  'dad_money_anyway',
  'money_anyway_know',
  'anyway_know_come',
  'know_come_string',
  'come_string_attach',
  'string_attach_way',
  'attach_way_mom',
  'way_mom_dad',
  'mom_dad_abl',
  'dad_abl_stick',
  'abl_stick_nose',
  'stick_nose_purchas',
  'nose_purchas_got',
  'purchas_got_feel',
  'got_feel_better',
  'feel_better_whole',
  'better_whole_thing',
  'whole_thing_log',
  'thing_log_guess',
  'log_guess_jill',
  'guess_jill_overheard',
  'jill_overheard_next',
  'overheard_next_day',
  'next_day_sent',
  'day_sent_text',
  'sent_text_text',
  'text_text_demand',
  'text_demand_help',
  'demand_help_find',
  'help_find_job',
  'find_job_well',
  'job_well_want',
  'well_want_dad',
  'want_dad_nag',
  'dad_nag_told',
  'nag_told_polit',
  'told_polit_btw',
  'polit_btw_know',
  'btw_know_anyon',
  'know_anyon_sf',
  'anyon_sf_shed',
  'sf_shed_get',
  'shed_get_help',
  'get_help_mom',
  'help_mom_dad',
  'mom_dad_blew',
  'dad_blew_say',
  'blew_say_thing',
  'say_thing_favor',
  'thing_favor_joe',
  'favor_joe_yeah',
  'joe_yeah_true',
  'yeah_true_love',
  'true_love_sibl',
  'love_sibl_particularli',
  'sibl_particularli_like',
  'particularli_like_jill',
  'like_jill_like',
  'jill_like_make',
  'like_make_likeabl',
  'make_likeabl_though',
  'likeabl_though_aita'],
 ['found',
  'ex',
  'husband',
  'cheat',
  'month',
  'pregnant',
  'son',
  'got',
  'divorc',
  'share',
  'custodi',
  'yro',
  'old',
  'son',
  'ex',
  'husband',
  'girlfriend',
  'tri',
  'get',
  'involv',
  'parent',
  'sever',
  'time',
  'even',
  'comment',
  'son',
  'name',
  'impli',
  'agre',
  'name',
  'want',
  'want',
  'tri',
  'dictat',
  'result',
  'start',
  'throw',
  'stuff',
  'paid',
  'honestli',
  'frustrat',
  'im',
  'bare',
  'get',
  'money',
  'afford',
  'buy',
  'replac',
  'stuff',
  'throw',
  'put',
  'ex',
  'husband',
  'say',
  'hous',
  'get',
  'decid',
  'cant',
  'enter',
  'made',
  'crochet',
  'blanket',
  'son',
  'name',
  'blanket',
  'special',
  'tool',
  'use',
  'abl',
  'make',
  'cost',
  'money',
  'mention',
  'time',
  'effort',
  'took',
  'get',
  'sent',
  'son',
  'stay',
  'dad',
  'day',
  'ago',
  'want',
  'take',
  'blanket',
  'sleep',
  'know',
  'exactli',
  'happen',
  'came',
  'pick',
  'told',
  'dad',
  'girlfriend',
  'took',
  'away',
  'threw',
  'leav',
  'blanket',
  'sleep',
  'night',
  'punish',
  'accept',
  'one',
  'offer',
  'furiou',
  'call',
  'dad',
  'hung',
  'sent',
  'text',
  'explain',
  'situat',
  'text',
  'back',
  'tell',
  'stop',
  'drama',
  'go',
  'look',
  'job',
  'much',
  'free',
  'time',
  'hand',
  'instead',
  'pick',
  'girlfriend',
  'felt',
  'frustrat',
  'visit',
  'famili',
  'good',
  'told',
  'son',
  'girlfriend',
  'worth',
  'mention',
  'work',
  'hard',
  'approv',
  'get',
  'good',
  'side',
  'shock',
  'know',
  'flip',
  'start',
  'call',
  'sil',
  'took',
  'put',
  'social',
  'media',
  'made',
  'famili',
  'member',
  'see',
  'ex',
  'husband',
  'call',
  'yell',
  'pathet',
  'attempt',
  'turn',
  'famili',
  'girlfriend',
  'could',
  'hear',
  'freak',
  'background',
  'lash',
  'say',
  'ruin',
  'everi',
  'chanc',
  'good',
  'relationship',
  'futur',
  'inlaw',
  'hung',
  'felt',
  'absolut',
  'horribl',
  'even',
  'though',
  'vent',
  'famili',
  'happen',
  'felt',
  'frustrat',
  'mayb',
  'told',
  'im',
  'sure',
  'anymor',
  'sinc',
  'whole',
  'famili',
  'speak',
  'si',
  'might',
  'epa',
  'last',
  'impact',
  'relationship',
  'found_ex',
  'ex_husband',
  'husband_cheat',
  'cheat_month',
  'month_pregnant',
  'pregnant_son',
  'son_got',
  'got_divorc',
  'divorc_share',
  'share_custodi',
  'custodi_yro',
  'yro_old',
  'old_son',
  'son_ex',
  'ex_husband',
  'husband_girlfriend',
  'girlfriend_tri',
  'tri_get',
  'get_involv',
  'involv_parent',
  'parent_sever',
  'sever_time',
  'time_even',
  'even_comment',
  'comment_son',
  'son_name',
  'name_impli',
  'impli_agre',
  'agre_name',
  'name_want',
  'want_want',
  'want_tri',
  'tri_dictat',
  'dictat_result',
  'result_start',
  'start_throw',
  'throw_stuff',
  'stuff_paid',
  'paid_honestli',
  'honestli_frustrat',
  'frustrat_im',
  'im_bare',
  'bare_get',
  'get_money',
  'money_afford',
  'afford_buy',
  'buy_replac',
  'replac_stuff',
  'stuff_throw',
  'throw_put',
  'put_ex',
  'ex_husband',
  'husband_say',
  'say_hous',
  'hous_get',
  'get_decid',
  'decid_cant',
  'cant_enter',
  'enter_made',
  'made_crochet',
  'crochet_blanket',
  'blanket_son',
  'son_name',
  'name_blanket',
  'blanket_special',
  'special_tool',
  'tool_use',
  'use_abl',
  'abl_make',
  'make_cost',
  'cost_money',
  'money_mention',
  'mention_time',
  'time_effort',
  'effort_took',
  'took_get',
  'get_sent',
  'sent_son',
  'son_stay',
  'stay_dad',
  'dad_day',
  'day_ago',
  'ago_want',
  'want_take',
  'take_blanket',
  'blanket_sleep',
  'sleep_know',
  'know_exactli',
  'exactli_happen',
  'happen_came',
  'came_pick',
  'pick_told',
  'told_dad',
  'dad_girlfriend',
  'girlfriend_took',
  'took_away',
  'away_threw',
  'threw_leav',
  'leav_blanket',
  'blanket_sleep',
  'sleep_night',
  'night_punish',
  'punish_accept',
  'accept_one',
  'one_offer',
  'offer_furiou',
  'furiou_call',
  'call_dad',
  'dad_hung',
  'hung_sent',
  'sent_text',
  'text_explain',
  'explain_situat',
  'situat_text',
  'text_back',
  'back_tell',
  'tell_stop',
  'stop_drama',
  'drama_go',
  'go_look',
  'look_job',
  'job_much',
  'much_free',
  'free_time',
  'time_hand',
  'hand_instead',
  'instead_pick',
  'pick_girlfriend',
  'girlfriend_felt',
  'felt_frustrat',
  'frustrat_visit',
  'visit_famili',
  'famili_good',
  'good_told',
  'told_son',
  'son_girlfriend',
  'girlfriend_worth',
  'worth_mention',
  'mention_work',
  'work_hard',
  'hard_approv',
  'approv_get',
  'get_good',
  'good_side',
  'side_shock',
  'shock_know',
  'know_flip',
  'flip_start',
  'start_call',
  'call_sil',
  'sil_took',
  'took_put',
  'put_social',
  'social_media',
  'media_made',
  'made_famili',
  'famili_member',
  'member_see',
  'see_ex',
  'ex_husband',
  'husband_call',
  'call_yell',
  'yell_pathet',
  'pathet_attempt',
  'attempt_turn',
  'turn_famili',
  'famili_girlfriend',
  'girlfriend_could',
  'could_hear',
  'hear_freak',
  'freak_background',
  'background_lash',
  'lash_say',
  'say_ruin',
  'ruin_everi',
  'everi_chanc',
  'chanc_good',
  'good_relationship',
  'relationship_futur',
  'futur_inlaw',
  'inlaw_hung',
  'hung_felt',
  'felt_absolut',
  'absolut_horribl',
  'horribl_even',
  'even_though',
  'though_vent',
  'vent_famili',
  'famili_happen',
  'happen_felt',
  'felt_frustrat',
  'frustrat_mayb',
  'mayb_told',
  'told_im',
  'im_sure',
  'sure_anymor',
  'anymor_sinc',
  'sinc_whole',
  'whole_famili',
  'famili_speak',
  'speak_si',
  'si_might',
  'might_epa',
  'epa_last',
  'last_impact',
  'impact_relationship',
  'found_ex_husband',
  'ex_husband_cheat',
  'husband_cheat_month',
  'cheat_month_pregnant',
  'month_pregnant_son',
  'pregnant_son_got',
  'son_got_divorc',
  'got_divorc_share',
  'divorc_share_custodi',
  'share_custodi_yro',
  'custodi_yro_old',
  'yro_old_son',
  'old_son_ex',
  'son_ex_husband',
  'ex_husband_girlfriend',
  'husband_girlfriend_tri',
  'girlfriend_tri_get',
  'tri_get_involv',
  'get_involv_parent',
  'involv_parent_sever',
  'parent_sever_time',
  'sever_time_even',
  'time_even_comment',
  'even_comment_son',
  'comment_son_name',
  'son_name_impli',
  'name_impli_agre',
  'impli_agre_name',
  'agre_name_want',
  'name_want_want',
  'want_want_tri',
  'want_tri_dictat',
  'tri_dictat_result',
  'dictat_result_start',
  'result_start_throw',
  'start_throw_stuff',
  'throw_stuff_paid',
  'stuff_paid_honestli',
  'paid_honestli_frustrat',
  'honestli_frustrat_im',
  'frustrat_im_bare',
  'im_bare_get',
  'bare_get_money',
  'get_money_afford',
  'money_afford_buy',
  'afford_buy_replac',
  'buy_replac_stuff',
  'replac_stuff_throw',
  'stuff_throw_put',
  'throw_put_ex',
  'put_ex_husband',
  'ex_husband_say',
  'husband_say_hous',
  'say_hous_get',
  'hous_get_decid',
  'get_decid_cant',
  'decid_cant_enter',
  'cant_enter_made',
  'enter_made_crochet',
  'made_crochet_blanket',
  'crochet_blanket_son',
  'blanket_son_name',
  'son_name_blanket',
  'name_blanket_special',
  'blanket_special_tool',
  'special_tool_use',
  'tool_use_abl',
  'use_abl_make',
  'abl_make_cost',
  'make_cost_money',
  'cost_money_mention',
  'money_mention_time',
  'mention_time_effort',
  'time_effort_took',
  'effort_took_get',
  'took_get_sent',
  'get_sent_son',
  'sent_son_stay',
  'son_stay_dad',
  'stay_dad_day',
  'dad_day_ago',
  'day_ago_want',
  'ago_want_take',
  'want_take_blanket',
  'take_blanket_sleep',
  'blanket_sleep_know',
  'sleep_know_exactli',
  'know_exactli_happen',
  'exactli_happen_came',
  'happen_came_pick',
  'came_pick_told',
  'pick_told_dad',
  'told_dad_girlfriend',
  'dad_girlfriend_took',
  'girlfriend_took_away',
  'took_away_threw',
  'away_threw_leav',
  'threw_leav_blanket',
  'leav_blanket_sleep',
  'blanket_sleep_night',
  'sleep_night_punish',
  'night_punish_accept',
  'punish_accept_one',
  'accept_one_offer',
  'one_offer_furiou',
  'offer_furiou_call',
  'furiou_call_dad',
  'call_dad_hung',
  'dad_hung_sent',
  'hung_sent_text',
  'sent_text_explain',
  'text_explain_situat',
  'explain_situat_text',
  'situat_text_back',
  'text_back_tell',
  'back_tell_stop',
  'tell_stop_drama',
  'stop_drama_go',
  'drama_go_look',
  'go_look_job',
  'look_job_much',
  'job_much_free',
  'much_free_time',
  'free_time_hand',
  'time_hand_instead',
  'hand_instead_pick',
  'instead_pick_girlfriend',
  'pick_girlfriend_felt',
  'girlfriend_felt_frustrat',
  'felt_frustrat_visit',
  'frustrat_visit_famili',
  'visit_famili_good',
  'famili_good_told',
  'good_told_son',
  'told_son_girlfriend',
  'son_girlfriend_worth',
  'girlfriend_worth_mention',
  'worth_mention_work',
  'mention_work_hard',
  'work_hard_approv',
  'hard_approv_get',
  'approv_get_good',
  'get_good_side',
  'good_side_shock',
  'side_shock_know',
  'shock_know_flip',
  'know_flip_start',
  'flip_start_call',
  'start_call_sil',
  'call_sil_took',
  'sil_took_put',
  'took_put_social',
  'put_social_media',
  'social_media_made',
  'media_made_famili',
  'made_famili_member',
  'famili_member_see',
  'member_see_ex',
  'see_ex_husband',
  'ex_husband_call',
  'husband_call_yell',
  'call_yell_pathet',
  'yell_pathet_attempt',
  'pathet_attempt_turn',
  'attempt_turn_famili',
  'turn_famili_girlfriend',
  'famili_girlfriend_could',
  'girlfriend_could_hear',
  'could_hear_freak',
  'hear_freak_background',
  'freak_background_lash',
  'background_lash_say',
  'lash_say_ruin',
  'say_ruin_everi',
  'ruin_everi_chanc',
  'everi_chanc_good',
  'chanc_good_relationship',
  'good_relationship_futur',
  'relationship_futur_inlaw',
  'futur_inlaw_hung',
  'inlaw_hung_felt',
  'hung_felt_absolut',
  'felt_absolut_horribl',
  'absolut_horribl_even',
  'horribl_even_though',
  'even_though_vent',
  'though_vent_famili',
  'vent_famili_happen',
  'famili_happen_felt',
  'happen_felt_frustrat',
  'felt_frustrat_mayb',
  'frustrat_mayb_told',
  'mayb_told_im',
  'told_im_sure',
  'im_sure_anymor',
  'sure_anymor_sinc',
  'anymor_sinc_whole',
  'sinc_whole_famili',
  'whole_famili_speak',
  'famili_speak_si',
  'speak_si_might',
  'si_might_epa',
  'might_epa_last',
  'epa_last_impact',
  'last_impact_relationship'],
 ['mil',
  'move',
  'us',
  'month',
  'ago',
  'began',
  'notic',
  'stuff',
  'bedroom',
  'touch',
  'furnitur',
  'rearrang',
  'stuff',
  'move',
  'et',
  'cetera',
  'felt',
  'like',
  'go',
  'crazi',
  'husband',
  'one',
  'access',
  'bedroom',
  'usual',
  'touch',
  'come',
  'near',
  'thing',
  'figur',
  'must',
  'mom',
  'walk',
  'snoop',
  'person',
  'thing',
  'told',
  'husband',
  'said',
  'mom',
  'would',
  'neveri',
  'huge',
  'hunch',
  'instal',
  'cam',
  'bedroom',
  'catch',
  'act',
  'got',
  'one',
  'fake',
  'postiv',
  'pregnanc',
  'test',
  'threw',
  'bedroom',
  'trashcan',
  'note',
  'trashcan',
  'place',
  'corner',
  'near',
  'closet',
  'liter',
  'next',
  'day',
  'got',
  'work',
  'got',
  'ton',
  'call',
  'text',
  'inlaw',
  'congratul',
  'pregnanc',
  'husband',
  'came',
  'workplac',
  'work',
  'ask',
  'sinc',
  'pregnant',
  'tell',
  'ask',
  'found',
  'said',
  'mom',
  'found',
  'posit',
  'test',
  'trashcan',
  'bedroom',
  'ask',
  'answer',
  'confirm',
  'snoop',
  'bedroom',
  'along',
  'realiz',
  'moment',
  'demand',
  'stick',
  'bigger',
  'issu',
  'said',
  'bigger',
  'issu',
  'posit',
  'test',
  'fake',
  'whole',
  'thing',
  'done',
  'expos',
  'mil',
  'snoop',
  'convinc',
  'take',
  'actual',
  'test',
  'right',
  'infront',
  'livid',
  'ask',
  'could',
  'lie',
  'thing',
  'break',
  'mom',
  'heart',
  'sinc',
  'knowveri',
  'well',
  'long',
  'kid',
  'got',
  'lot',
  'shit',
  'mom',
  'famili',
  'call',
  'liar',
  'manipul',
  'aita',
  'import',
  'info',
  'noth',
  'get',
  'take',
  'goe',
  'miss',
  'bedroom',
  'clear',
  'mil_move',
  'move_us',
  'us_month',
  'month_ago',
  'ago_began',
  'began_notic',
  'notic_stuff',
  'stuff_bedroom',
  'bedroom_touch',
  'touch_furnitur',
  'furnitur_rearrang',
  'rearrang_stuff',
  'stuff_move',
  'move_et',
  'et_cetera',
  'cetera_felt',
  'felt_like',
  'like_go',
  'go_crazi',
  'crazi_husband',
  'husband_one',
  'one_access',
  'access_bedroom',
  'bedroom_usual',
  'usual_touch',
  'touch_come',
  'come_near',
  'near_thing',
  'thing_figur',
  'figur_must',
  'must_mom',
  'mom_walk',
  'walk_snoop',
  'snoop_person',
  'person_thing',
  'thing_told',
  'told_husband',
  'husband_said',
  'said_mom',
  'mom_would',
  'would_neveri',
  'neveri_huge',
  'huge_hunch',
  'hunch_instal',
  'instal_cam',
  'cam_bedroom',
  'bedroom_catch',
  'catch_act',
  'act_got',
  'got_one',
  'one_fake',
  'fake_postiv',
  'postiv_pregnanc',
  'pregnanc_test',
  'test_threw',
  'threw_bedroom',
  'bedroom_trashcan',
  'trashcan_note',
  'note_trashcan',
  'trashcan_place',
  'place_corner',
  'corner_near',
  'near_closet',
  'closet_liter',
  'liter_next',
  'next_day',
  'day_got',
  'got_work',
  'work_got',
  'got_ton',
  'ton_call',
  'call_text',
  'text_inlaw',
  'inlaw_congratul',
  'congratul_pregnanc',
  'pregnanc_husband',
  'husband_came',
  'came_workplac',
  'workplac_work',
  'work_ask',
  'ask_sinc',
  'sinc_pregnant',
  'pregnant_tell',
  'tell_ask',
  'ask_found',
  'found_said',
  'said_mom',
  'mom_found',
  'found_posit',
  'posit_test',
  'test_trashcan',
  'trashcan_bedroom',
  'bedroom_ask',
  'ask_answer',
  'answer_confirm',
  'confirm_snoop',
  'snoop_bedroom',
  'bedroom_along',
  'along_realiz',
  'realiz_moment',
  'moment_demand',
  'demand_stick',
  'stick_bigger',
  'bigger_issu',
  'issu_said',
  'said_bigger',
  'bigger_issu',
  'issu_posit',
  'posit_test',
  'test_fake',
  'fake_whole',
  'whole_thing',
  'thing_done',
  'done_expos',
  'expos_mil',
  'mil_snoop',
  'snoop_convinc',
  'convinc_take',
  'take_actual',
  'actual_test',
  'test_right',
  'right_infront',
  'infront_livid',
  'livid_ask',
  'ask_could',
  'could_lie',
  'lie_thing',
  'thing_break',
  'break_mom',
  'mom_heart',
  'heart_sinc',
  'sinc_knowveri',
  'knowveri_well',
  'well_long',
  'long_kid',
  'kid_got',
  'got_lot',
  'lot_shit',
  'shit_mom',
  'mom_famili',
  'famili_call',
  'call_liar',
  'liar_manipul',
  'manipul_aita',
  'aita_import',
  'import_info',
  'info_noth',
  'noth_get',
  'get_take',
  'take_goe',
  'goe_miss',
  'miss_bedroom',
  'bedroom_clear',
  'mil_move_us',
  'move_us_month',
  'us_month_ago',
  'month_ago_began',
  'ago_began_notic',
  'began_notic_stuff',
  'notic_stuff_bedroom',
  'stuff_bedroom_touch',
  'bedroom_touch_furnitur',
  'touch_furnitur_rearrang',
  'furnitur_rearrang_stuff',
  'rearrang_stuff_move',
  'stuff_move_et',
  'move_et_cetera',
  'et_cetera_felt',
  'cetera_felt_like',
  'felt_like_go',
  'like_go_crazi',
  'go_crazi_husband',
  'crazi_husband_one',
  'husband_one_access',
  'one_access_bedroom',
  'access_bedroom_usual',
  'bedroom_usual_touch',
  'usual_touch_come',
  'touch_come_near',
  'come_near_thing',
  'near_thing_figur',
  'thing_figur_must',
  'figur_must_mom',
  'must_mom_walk',
  'mom_walk_snoop',
  'walk_snoop_person',
  'snoop_person_thing',
  'person_thing_told',
  'thing_told_husband',
  'told_husband_said',
  'husband_said_mom',
  'said_mom_would',
  'mom_would_neveri',
  'would_neveri_huge',
  'neveri_huge_hunch',
  'huge_hunch_instal',
  'hunch_instal_cam',
  'instal_cam_bedroom',
  'cam_bedroom_catch',
  'bedroom_catch_act',
  'catch_act_got',
  'act_got_one',
  'got_one_fake',
  'one_fake_postiv',
  'fake_postiv_pregnanc',
  'postiv_pregnanc_test',
  'pregnanc_test_threw',
  'test_threw_bedroom',
  'threw_bedroom_trashcan',
  'bedroom_trashcan_note',
  'trashcan_note_trashcan',
  'note_trashcan_place',
  'trashcan_place_corner',
  'place_corner_near',
  'corner_near_closet',
  'near_closet_liter',
  'closet_liter_next',
  'liter_next_day',
  'next_day_got',
  'day_got_work',
  'got_work_got',
  'work_got_ton',
  'got_ton_call',
  'ton_call_text',
  'call_text_inlaw',
  'text_inlaw_congratul',
  'inlaw_congratul_pregnanc',
  'congratul_pregnanc_husband',
  'pregnanc_husband_came',
  'husband_came_workplac',
  'came_workplac_work',
  'workplac_work_ask',
  'work_ask_sinc',
  'ask_sinc_pregnant',
  'sinc_pregnant_tell',
  'pregnant_tell_ask',
  'tell_ask_found',
  'ask_found_said',
  'found_said_mom',
  'said_mom_found',
  'mom_found_posit',
  'found_posit_test',
  'posit_test_trashcan',
  'test_trashcan_bedroom',
  'trashcan_bedroom_ask',
  'bedroom_ask_answer',
  'ask_answer_confirm',
  'answer_confirm_snoop',
  'confirm_snoop_bedroom',
  'snoop_bedroom_along',
  'bedroom_along_realiz',
  'along_realiz_moment',
  'realiz_moment_demand',
  'moment_demand_stick',
  'demand_stick_bigger',
  'stick_bigger_issu',
  'bigger_issu_said',
  'issu_said_bigger',
  'said_bigger_issu',
  'bigger_issu_posit',
  'issu_posit_test',
  'posit_test_fake',
  'test_fake_whole',
  'fake_whole_thing',
  'whole_thing_done',
  'thing_done_expos',
  'done_expos_mil',
  'expos_mil_snoop',
  'mil_snoop_convinc',
  'snoop_convinc_take',
  'convinc_take_actual',
  'take_actual_test',
  'actual_test_right',
  'test_right_infront',
  'right_infront_livid',
  'infront_livid_ask',
  'livid_ask_could',
  'ask_could_lie',
  'could_lie_thing',
  'lie_thing_break',
  'thing_break_mom',
  'break_mom_heart',
  'mom_heart_sinc',
  'heart_sinc_knowveri',
  'sinc_knowveri_well',
  'knowveri_well_long',
  'well_long_kid',
  'long_kid_got',
  'kid_got_lot',
  'got_lot_shit',
  'lot_shit_mom',
  'shit_mom_famili',
  'mom_famili_call',
  'famili_call_liar',
  'call_liar_manipul',
  'liar_manipul_aita',
  'manipul_aita_import',
  'aita_import_info',
  'import_info_noth',
  'info_noth_get',
  'noth_get_take',
  'get_take_goe',
  'take_goe_miss',
  'goe_miss_bedroom',
  'miss_bedroom_clear'],
 ['dad',
  'die',
  'unexpectedli',
  'last',
  'week',
  'sister',
  'jess',
  'lost',
  'mom',
  'last',
  'year',
  'mix',
  'cancer',
  'viru',
  'famili',
  'act',
  'past',
  'scaveng',
  'dead',
  'peopl',
  'thing',
  'jess',
  'decid',
  'send',
  'famili',
  'memo',
  'one',
  'enter',
  'take',
  'anyth',
  'parent',
  'hous',
  'get',
  'jess',
  'work',
  'west',
  'coast',
  'take',
  'time',
  'get',
  'kid',
  'famili',
  'saw',
  'sever',
  'notif',
  'parent',
  'ring',
  'doorbel',
  'im',
  'lawyer',
  'remind',
  'famili',
  'prosecut',
  'jess',
  'page',
  'jess',
  'get',
  'parent',
  'hous',
  'first',
  'notic',
  'stuff',
  'miss',
  'parent',
  'secur',
  'camera',
  'alexa',
  'show',
  'shown',
  'cousin',
  'take',
  'stuff',
  'hous',
  'jess',
  'agre',
  'call',
  'polic',
  'two',
  'cousin',
  'arrest',
  'thousand',
  'dollar',
  'look',
  'feloni',
  'cousin',
  'said',
  'dad',
  'promis',
  'stuff',
  'dad',
  'make',
  'executor',
  'estat',
  'told',
  'wait',
  'file',
  'claim',
  'estat',
  'everyon',
  'warn',
  'would',
  'happen',
  'jess',
  'best',
  'relationship',
  'extend',
  'famili',
  'drop',
  'charg',
  'drama',
  'dad',
  'quietli',
  'cremat',
  'servic',
  'plan',
  'hold',
  'one',
  'scatter',
  'parent',
  'ash',
  'jesss',
  'hous',
  'tree',
  'plant',
  'last',
  'live',
  'grandma',
  'upset',
  'side',
  'cousin',
  'aunt',
  'say',
  'tough',
  'arrest',
  'dad_die',
  'die_unexpectedli',
  'unexpectedli_last',
  'last_week',
  'week_sister',
  'sister_jess',
  'jess_lost',
  'lost_mom',
  'mom_last',
  'last_year',
  'year_mix',
  'mix_cancer',
  'cancer_viru',
  'viru_famili',
  'famili_act',
  'act_past',
  'past_scaveng',
  'scaveng_dead',
  'dead_peopl',
  'peopl_thing',
  'thing_jess',
  'jess_decid',
  'decid_send',
  'send_famili',
  'famili_memo',
  'memo_one',
  'one_enter',
  'enter_take',
  'take_anyth',
  'anyth_parent',
  'parent_hous',
  'hous_get',
  'get_jess',
  'jess_work',
  'work_west',
  'west_coast',
  'coast_take',
  'take_time',
  'time_get',
  'get_kid',
  'kid_famili',
  'famili_saw',
  'saw_sever',
  'sever_notif',
  'notif_parent',
  'parent_ring',
  'ring_doorbel',
  'doorbel_im',
  'im_lawyer',
  'lawyer_remind',
  'remind_famili',
  'famili_prosecut',
  'prosecut_jess',
  'jess_page',
  'page_jess',
  'jess_get',
  'get_parent',
  'parent_hous',
  'hous_first',
  'first_notic',
  'notic_stuff',
  'stuff_miss',
  'miss_parent',
  'parent_secur',
  'secur_camera',
  'camera_alexa',
  'alexa_show',
  'show_shown',
  'shown_cousin',
  'cousin_take',
  'take_stuff',
  'stuff_hous',
  'hous_jess',
  'jess_agre',
  'agre_call',
  'call_polic',
  'polic_two',
  'two_cousin',
  'cousin_arrest',
  'arrest_thousand',
  'thousand_dollar',
  'dollar_look',
  'look_feloni',
  'feloni_cousin',
  'cousin_said',
  'said_dad',
  'dad_promis',
  'promis_stuff',
  'stuff_dad',
  'dad_make',
  'make_executor',
  'executor_estat',
  'estat_told',
  'told_wait',
  'wait_file',
  'file_claim',
  'claim_estat',
  'estat_everyon',
  'everyon_warn',
  'warn_would',
  'would_happen',
  'happen_jess',
  'jess_best',
  'best_relationship',
  'relationship_extend',
  'extend_famili',
  'famili_drop',
  'drop_charg',
  'charg_drama',
  'drama_dad',
  'dad_quietli',
  'quietli_cremat',
  'cremat_servic',
  'servic_plan',
  'plan_hold',
  'hold_one',
  'one_scatter',
  'scatter_parent',
  'parent_ash',
  'ash_jesss',
  'jesss_hous',
  'hous_tree',
  'tree_plant',
  'plant_last',
  'last_live',
  'live_grandma',
  'grandma_upset',
  'upset_side',
  'side_cousin',
  'cousin_aunt',
  'aunt_say',
  'say_tough',
  'tough_arrest',
  'dad_die_unexpectedli',
  'die_unexpectedli_last',
  'unexpectedli_last_week',
  'last_week_sister',
  'week_sister_jess',
  'sister_jess_lost',
  'jess_lost_mom',
  'lost_mom_last',
  'mom_last_year',
  'last_year_mix',
  'year_mix_cancer',
  'mix_cancer_viru',
  'cancer_viru_famili',
  'viru_famili_act',
  'famili_act_past',
  'act_past_scaveng',
  'past_scaveng_dead',
  'scaveng_dead_peopl',
  'dead_peopl_thing',
  'peopl_thing_jess',
  'thing_jess_decid',
  'jess_decid_send',
  'decid_send_famili',
  'send_famili_memo',
  'famili_memo_one',
  'memo_one_enter',
  'one_enter_take',
  'enter_take_anyth',
  'take_anyth_parent',
  'anyth_parent_hous',
  'parent_hous_get',
  'hous_get_jess',
  'get_jess_work',
  'jess_work_west',
  'work_west_coast',
  'west_coast_take',
  'coast_take_time',
  'take_time_get',
  'time_get_kid',
  'get_kid_famili',
  'kid_famili_saw',
  'famili_saw_sever',
  'saw_sever_notif',
  'sever_notif_parent',
  'notif_parent_ring',
  'parent_ring_doorbel',
  'ring_doorbel_im',
  'doorbel_im_lawyer',
  'im_lawyer_remind',
  'lawyer_remind_famili',
  'remind_famili_prosecut',
  'famili_prosecut_jess',
  'prosecut_jess_page',
  'jess_page_jess',
  'page_jess_get',
  'jess_get_parent',
  'get_parent_hous',
  'parent_hous_first',
  'hous_first_notic',
  'first_notic_stuff',
  'notic_stuff_miss',
  'stuff_miss_parent',
  'miss_parent_secur',
  'parent_secur_camera',
  'secur_camera_alexa',
  'camera_alexa_show',
  'alexa_show_shown',
  'show_shown_cousin',
  'shown_cousin_take',
  'cousin_take_stuff',
  'take_stuff_hous',
  'stuff_hous_jess',
  'hous_jess_agre',
  'jess_agre_call',
  'agre_call_polic',
  'call_polic_two',
  'polic_two_cousin',
  'two_cousin_arrest',
  'cousin_arrest_thousand',
  'arrest_thousand_dollar',
  'thousand_dollar_look',
  'dollar_look_feloni',
  'look_feloni_cousin',
  'feloni_cousin_said',
  'cousin_said_dad',
  'said_dad_promis',
  'dad_promis_stuff',
  'promis_stuff_dad',
  'stuff_dad_make',
  'dad_make_executor',
  'make_executor_estat',
  'executor_estat_told',
  'estat_told_wait',
  'told_wait_file',
  'wait_file_claim',
  'file_claim_estat',
  'claim_estat_everyon',
  'estat_everyon_warn',
  'everyon_warn_would',
  'warn_would_happen',
  'would_happen_jess',
  'happen_jess_best',
  'jess_best_relationship',
  'best_relationship_extend',
  'relationship_extend_famili',
  'extend_famili_drop',
  'famili_drop_charg',
  'drop_charg_drama',
  'charg_drama_dad',
  'drama_dad_quietli',
  'dad_quietli_cremat',
  'quietli_cremat_servic',
  'cremat_servic_plan',
  'servic_plan_hold',
  'plan_hold_one',
  'hold_one_scatter',
  'one_scatter_parent',
  'scatter_parent_ash',
  'parent_ash_jesss',
  'ash_jesss_hous',
  'jesss_hous_tree',
  'hous_tree_plant',
  'tree_plant_last',
  'plant_last_live',
  'last_live_grandma',
  'live_grandma_upset',
  'grandma_upset_side',
  'upset_side_cousin',
  'side_cousin_aunt',
  'cousin_aunt_say',
  'aunt_say_tough',
  'say_tough_arrest'],
 ['throwaway',
  'want',
  'famili',
  'track',
  'back',
  'main',
  'sister',
  'got',
  'knock',
  'boyfriend',
  'right',
  'highschool',
  'got',
  'marri',
  'next',
  'year',
  'proceed',
  'pop',
  'anoth',
  'babi',
  'everi',
  'year',
  'two',
  'four',
  'stay',
  'home',
  'mom',
  'even',
  'though',
  'brilliant',
  'could',
  'gotten',
  'free',
  'ride',
  'great',
  'univers',
  'sinc',
  'grandkid',
  'parent',
  'fawn',
  'like',
  'next',
  'come',
  'christ',
  'gush',
  'everi',
  'new',
  'tooth',
  'haircut',
  'like',
  'huge',
  'achiev',
  'problem',
  'husband',
  'busi',
  'great',
  'even',
  'even',
  'covid',
  'bare',
  'limp',
  'along',
  'sister',
  'work',
  'parent',
  'limit',
  'incom',
  'guess',
  'constantli',
  'told',
  'lend',
  'money',
  'shit',
  'like',
  'school',
  'fee',
  'car',
  'seat',
  'car',
  'payment',
  'new',
  'stroller',
  'etc',
  'even',
  'ask',
  'mom',
  'text',
  'sister',
  'need',
  '$',
  'xxx',
  'kid',
  'im',
  'suppos',
  'cough',
  'complain',
  'accus',
  'jealou',
  'husband',
  'famili',
  'even',
  'though',
  'im',
  'older',
  'im',
  'easter',
  'notic',
  'sister',
  'drink',
  'think',
  'oh',
  'god',
  'go',
  'sure',
  'enough',
  'stand',
  'announc',
  'insemin',
  'yet',
  'anoth',
  'preciou',
  'miracl',
  'everyon',
  'gush',
  'tri',
  'stay',
  'quiet',
  'way',
  'later',
  'ask',
  'everyth',
  'alright',
  'tri',
  'play',
  'push',
  'ask',
  'husband',
  'could',
  'realli',
  'afford',
  'anoth',
  'babi',
  'snippili',
  'repli',
  'god',
  'provid',
  'like',
  'far',
  'realli',
  'piss',
  'yell',
  'actual',
  'god',
  'provid',
  'babi',
  '*',
  '*',
  '*',
  '*',
  'go',
  'give',
  'handout',
  'devolv',
  'big',
  'argument',
  'everyon',
  'shout',
  'basic',
  'ive',
  'ban',
  'famili',
  'unless',
  'apolog',
  'apolog',
  'radio',
  'silenc',
  'except',
  'one',
  'text',
  'mom',
  'say',
  'sister',
  'miscarri',
  'fault',
  'stress',
  'ask',
  'sister',
  'show',
  'symptom',
  'one',
  'answer',
  'tell',
  'idk',
  'think',
  'im',
  'ta',
  'want',
  'reason',
  'miscarri',
  'also',
  'think',
  'might',
  'ta',
  'secretli',
  'think',
  'would',
  'better',
  'even',
  'though',
  'say',
  'throwaway_want',
  'want_famili',
  'famili_track',
  'track_back',
  'back_main',
  'main_sister',
  'sister_got',
  'got_knock',
  'knock_boyfriend',
  'boyfriend_right',
  'right_highschool',
  'highschool_got',
  'got_marri',
  'marri_next',
  'next_year',
  'year_proceed',
  'proceed_pop',
  'pop_anoth',
  'anoth_babi',
  'babi_everi',
  'everi_year',
  'year_two',
  'two_four',
  'four_stay',
  'stay_home',
  'home_mom',
  'mom_even',
  'even_though',
  'though_brilliant',
  'brilliant_could',
  'could_gotten',
  'gotten_free',
  'free_ride',
  'ride_great',
  'great_univers',
  'univers_sinc',
  'sinc_grandkid',
  'grandkid_parent',
  'parent_fawn',
  'fawn_like',
  'like_next',
  'next_come',
  'come_christ',
  'christ_gush',
  'gush_everi',
  'everi_new',
  'new_tooth',
  'tooth_haircut',
  'haircut_like',
  'like_huge',
  'huge_achiev',
  'achiev_problem',
  'problem_husband',
  'husband_busi',
  'busi_great',
  'great_even',
  'even_even',
  'even_covid',
  'covid_bare',
  'bare_limp',
  'limp_along',
  'along_sister',
  'sister_work',
  'work_parent',
  'parent_limit',
  'limit_incom',
  'incom_guess',
  'guess_constantli',
  'constantli_told',
  'told_lend',
  'lend_money',
  'money_shit',
  'shit_like',
  'like_school',
  'school_fee',
  'fee_car',
  'car_seat',
  'seat_car',
  'car_payment',
  'payment_new',
  'new_stroller',
  'stroller_etc',
  'etc_even',
  'even_ask',
  'ask_mom',
  'mom_text',
  'text_sister',
  'sister_need',
  'need_$',
  '$_xxx',
  'xxx_kid',
  'kid_im',
  'im_suppos',
  'suppos_cough',
  'cough_complain',
  'complain_accus',
  'accus_jealou',
  'jealou_husband',
  'husband_famili',
  'famili_even',
  'even_though',
  'though_im',
  'im_older',
  'older_im',
  'im_easter',
  'easter_notic',
  'notic_sister',
  'sister_drink',
  'drink_think',
  'think_oh',
  'oh_god',
  'god_go',
  'go_sure',
  'sure_enough',
  'enough_stand',
  'stand_announc',
  'announc_insemin',
  'insemin_yet',
  'yet_anoth',
  'anoth_preciou',
  'preciou_miracl',
  'miracl_everyon',
  'everyon_gush',
  'gush_tri',
  'tri_stay',
  'stay_quiet',
  'quiet_way',
  'way_later',
  'later_ask',
  'ask_everyth',
  'everyth_alright',
  'alright_tri',
  'tri_play',
  'play_push',
  'push_ask',
  'ask_husband',
  'husband_could',
  'could_realli',
  'realli_afford',
  'afford_anoth',
  'anoth_babi',
  'babi_snippili',
  'snippili_repli',
  'repli_god',
  'god_provid',
  'provid_like',
  'like_far',
  'far_realli',
  'realli_piss',
  'piss_yell',
  'yell_actual',
  'actual_god',
  'god_provid',
  'provid_babi',
  'babi_*',
  '*_*',
  '*_*',
  '*_*',
  '*_go',
  'go_give',
  'give_handout',
  'handout_devolv',
  'devolv_big',
  'big_argument',
  'argument_everyon',
  'everyon_shout',
  'shout_basic',
  'basic_ive',
  'ive_ban',
  'ban_famili',
  'famili_unless',
  'unless_apolog',
  'apolog_apolog',
  'apolog_radio',
  'radio_silenc',
  'silenc_except',
  'except_one',
  'one_text',
  'text_mom',
  'mom_say',
  'say_sister',
  'sister_miscarri',
  'miscarri_fault',
  'fault_stress',
  'stress_ask',
  'ask_sister',
  'sister_show',
  'show_symptom',
  'symptom_one',
  'one_answer',
  'answer_tell',
  'tell_idk',
  'idk_think',
  'think_im',
  'im_ta',
  'ta_want',
  'want_reason',
  'reason_miscarri',
  'miscarri_also',
  'also_think',
  'think_might',
  'might_ta',
  'ta_secretli',
  'secretli_think',
  'think_would',
  'would_better',
  'better_even',
  'even_though',
  'though_say',
  'throwaway_want_famili',
  'want_famili_track',
  'famili_track_back',
  'track_back_main',
  'back_main_sister',
  'main_sister_got',
  'sister_got_knock',
  'got_knock_boyfriend',
  'knock_boyfriend_right',
  'boyfriend_right_highschool',
  'right_highschool_got',
  'highschool_got_marri',
  'got_marri_next',
  'marri_next_year',
  'next_year_proceed',
  'year_proceed_pop',
  'proceed_pop_anoth',
  'pop_anoth_babi',
  'anoth_babi_everi',
  'babi_everi_year',
  'everi_year_two',
  'year_two_four',
  'two_four_stay',
  'four_stay_home',
  'stay_home_mom',
  'home_mom_even',
  'mom_even_though',
  'even_though_brilliant',
  'though_brilliant_could',
  'brilliant_could_gotten',
  'could_gotten_free',
  'gotten_free_ride',
  'free_ride_great',
  'ride_great_univers',
  'great_univers_sinc',
  'univers_sinc_grandkid',
  'sinc_grandkid_parent',
  'grandkid_parent_fawn',
  'parent_fawn_like',
  'fawn_like_next',
  'like_next_come',
  'next_come_christ',
  'come_christ_gush',
  'christ_gush_everi',
  'gush_everi_new',
  'everi_new_tooth',
  'new_tooth_haircut',
  'tooth_haircut_like',
  'haircut_like_huge',
  'like_huge_achiev',
  'huge_achiev_problem',
  'achiev_problem_husband',
  'problem_husband_busi',
  'husband_busi_great',
  'busi_great_even',
  'great_even_even',
  'even_even_covid',
  'even_covid_bare',
  'covid_bare_limp',
  'bare_limp_along',
  'limp_along_sister',
  'along_sister_work',
  'sister_work_parent',
  'work_parent_limit',
  'parent_limit_incom',
  'limit_incom_guess',
  'incom_guess_constantli',
  'guess_constantli_told',
  'constantli_told_lend',
  'told_lend_money',
  'lend_money_shit',
  'money_shit_like',
  'shit_like_school',
  'like_school_fee',
  'school_fee_car',
  'fee_car_seat',
  'car_seat_car',
  'seat_car_payment',
  'car_payment_new',
  'payment_new_stroller',
  'new_stroller_etc',
  'stroller_etc_even',
  'etc_even_ask',
  'even_ask_mom',
  'ask_mom_text',
  'mom_text_sister',
  'text_sister_need',
  'sister_need_$',
  'need_$_xxx',
  '$_xxx_kid',
  'xxx_kid_im',
  'kid_im_suppos',
  'im_suppos_cough',
  'suppos_cough_complain',
  'cough_complain_accus',
  'complain_accus_jealou',
  'accus_jealou_husband',
  'jealou_husband_famili',
  'husband_famili_even',
  'famili_even_though',
  'even_though_im',
  'though_im_older',
  'im_older_im',
  'older_im_easter',
  'im_easter_notic',
  'easter_notic_sister',
  'notic_sister_drink',
  'sister_drink_think',
  'drink_think_oh',
  'think_oh_god',
  'oh_god_go',
  'god_go_sure',
  'go_sure_enough',
  'sure_enough_stand',
  'enough_stand_announc',
  'stand_announc_insemin',
  'announc_insemin_yet',
  'insemin_yet_anoth',
  'yet_anoth_preciou',
  'anoth_preciou_miracl',
  'preciou_miracl_everyon',
  'miracl_everyon_gush',
  'everyon_gush_tri',
  'gush_tri_stay',
  'tri_stay_quiet',
  'stay_quiet_way',
  'quiet_way_later',
  'way_later_ask',
  'later_ask_everyth',
  'ask_everyth_alright',
  'everyth_alright_tri',
  'alright_tri_play',
  'tri_play_push',
  'play_push_ask',
  'push_ask_husband',
  'ask_husband_could',
  'husband_could_realli',
  'could_realli_afford',
  'realli_afford_anoth',
  'afford_anoth_babi',
  'anoth_babi_snippili',
  'babi_snippili_repli',
  'snippili_repli_god',
  'repli_god_provid',
  'god_provid_like',
  'provid_like_far',
  'like_far_realli',
  'far_realli_piss',
  'realli_piss_yell',
  'piss_yell_actual',
  'yell_actual_god',
  'actual_god_provid',
  'god_provid_babi',
  'provid_babi_*',
  'babi_*_*',
  '*_*_*',
  '*_*_*',
  '*_*_go',
  '*_go_give',
  'go_give_handout',
  'give_handout_devolv',
  'handout_devolv_big',
  'devolv_big_argument',
  'big_argument_everyon',
  'argument_everyon_shout',
  'everyon_shout_basic',
  'shout_basic_ive',
  'basic_ive_ban',
  'ive_ban_famili',
  'ban_famili_unless',
  'famili_unless_apolog',
  'unless_apolog_apolog',
  'apolog_apolog_radio',
  'apolog_radio_silenc',
  'radio_silenc_except',
  'silenc_except_one',
  'except_one_text',
  'one_text_mom',
  'text_mom_say',
  'mom_say_sister',
  'say_sister_miscarri',
  'sister_miscarri_fault',
  'miscarri_fault_stress',
  'fault_stress_ask',
  'stress_ask_sister',
  'ask_sister_show',
  'sister_show_symptom',
  'show_symptom_one',
  'symptom_one_answer',
  'one_answer_tell',
  'answer_tell_idk',
  'tell_idk_think',
  'idk_think_im',
  'think_im_ta',
  'im_ta_want',
  'ta_want_reason',
  'want_reason_miscarri',
  'reason_miscarri_also',
  'miscarri_also_think',
  'also_think_might',
  'think_might_ta',
  'might_ta_secretli',
  'ta_secretli_think',
  'secretli_think_would',
  'think_would_better',
  'would_better_even',
  'better_even_though',
  'even_though_say'],
 ['uh',
  'basic',
  'titl',
  'guess',
  'sister',
  'habit',
  'say',
  'know',
  'realli',
  'get',
  'goat',
  'probli',
  'say',
  'time',
  'day',
  'like',
  'tumblr',
  'post',
  'taught',
  'niec',
  'say',
  'el',
  'chupacabra',
  'mom',
  'say',
  'sound',
  'like',
  'eh',
  'supacaba',
  'tho',
  'caus',
  'four',
  'ador',
  'told',
  'niec',
  'monster',
  'mexico',
  'eat',
  'goat',
  'seem',
  'scare',
  'anyth',
  'probli',
  'caus',
  'monster',
  'know',
  'cooki',
  'monster',
  'appar',
  'niec',
  'walk',
  'around',
  'hous',
  'say',
  'el',
  'chupacabra',
  'day',
  'sister',
  '&',
  'brother',
  'law',
  'mad',
  'teach',
  'imo',
  'kind',
  'ador',
  'also',
  'harmless',
  'like',
  'sister',
  'kid',
  'idk',
  'uh_basic',
  'basic_titl',
  'titl_guess',
  'guess_sister',
  'sister_habit',
  'habit_say',
  'say_know',
  'know_realli',
  'realli_get',
  'get_goat',
  'goat_probli',
  'probli_say',
  'say_time',
  'time_day',
  'day_like',
  'like_tumblr',
  'tumblr_post',
  'post_taught',
  'taught_niec',
  'niec_say',
  'say_el',
  'el_chupacabra',
  'chupacabra_mom',
  'mom_say',
  'say_sound',
  'sound_like',
  'like_eh',
  'eh_supacaba',
  'supacaba_tho',
  'tho_caus',
  'caus_four',
  'four_ador',
  'ador_told',
  'told_niec',
  'niec_monster',
  'monster_mexico',
  'mexico_eat',
  'eat_goat',
  'goat_seem',
  'seem_scare',
  'scare_anyth',
  'anyth_probli',
  'probli_caus',
  'caus_monster',
  'monster_know',
  'know_cooki',
  'cooki_monster',
  'monster_appar',
  'appar_niec',
  'niec_walk',
  'walk_around',
  'around_hous',
  'hous_say',
  'say_el',
  'el_chupacabra',
  'chupacabra_day',
  'day_sister',
  'sister_&',
  '&_brother',
  'brother_law',
  'law_mad',
  'mad_teach',
  'teach_imo',
  'imo_kind',
  'kind_ador',
  'ador_also',
  'also_harmless',
  'harmless_like',
  'like_sister',
  'sister_kid',
  'kid_idk',
  'uh_basic_titl',
  'basic_titl_guess',
  'titl_guess_sister',
  'guess_sister_habit',
  'sister_habit_say',
  'habit_say_know',
  'say_know_realli',
  'know_realli_get',
  'realli_get_goat',
  'get_goat_probli',
  'goat_probli_say',
  'probli_say_time',
  'say_time_day',
  'time_day_like',
  'day_like_tumblr',
  'like_tumblr_post',
  'tumblr_post_taught',
  'post_taught_niec',
  'taught_niec_say',
  'niec_say_el',
  'say_el_chupacabra',
  'el_chupacabra_mom',
  'chupacabra_mom_say',
  'mom_say_sound',
  'say_sound_like',
  'sound_like_eh',
  'like_eh_supacaba',
  'eh_supacaba_tho',
  'supacaba_tho_caus',
  'tho_caus_four',
  'caus_four_ador',
  'four_ador_told',
  'ador_told_niec',
  'told_niec_monster',
  'niec_monster_mexico',
  'monster_mexico_eat',
  'mexico_eat_goat',
  'eat_goat_seem',
  'goat_seem_scare',
  'seem_scare_anyth',
  'scare_anyth_probli',
  'anyth_probli_caus',
  'probli_caus_monster',
  'caus_monster_know',
  'monster_know_cooki',
  'know_cooki_monster',
  'cooki_monster_appar',
  'monster_appar_niec',
  'appar_niec_walk',
  'niec_walk_around',
  'walk_around_hous',
  'around_hous_say',
  'hous_say_el',
  'say_el_chupacabra',
  'el_chupacabra_day',
  'chupacabra_day_sister',
  'day_sister_&',
  'sister_&_brother',
  '&_brother_law',
  'brother_law_mad',
  'law_mad_teach',
  'mad_teach_imo',
  'teach_imo_kind',
  'imo_kind_ador',
  'kind_ador_also',
  'ador_also_harmless',
  'also_harmless_like',
  'harmless_like_sister',
  'like_sister_kid',
  'sister_kid_idk'],
 ['colleg',
  'roommat',
  'last',
  'year',
  'meg',
  'famili',
  'realli',
  'rich',
  'said',
  'could',
  'bring',
  'friend',
  'vacat',
  'kinda',
  'awkward',
  'third',
  'choic',
  'famili',
  'veto',
  'first',
  'two',
  'want',
  'bring',
  'boy',
  'femal',
  'friend',
  'dislik',
  'parent',
  'bought',
  'plane',
  'ticket',
  'book',
  'resort',
  'grate',
  'save',
  'lot',
  'money',
  'could',
  'make',
  'sure',
  'buy',
  'food',
  'activ',
  'im',
  'treat',
  'famili',
  'dinner',
  'thank',
  'ticket',
  'trip',
  'start',
  'bad',
  'mother',
  'father',
  'two',
  'father',
  'friend',
  'three',
  'brother',
  'go',
  'flight',
  'got',
  'first',
  'class',
  'got',
  'economi',
  'seat',
  'say',
  'anyth',
  'argu',
  'free',
  'ticket',
  'first',
  'night',
  'went',
  'groceri',
  'turn',
  'want',
  'cook',
  'resort',
  'kitchen',
  'whole',
  'trip',
  'want',
  'cook',
  'actual',
  'turn',
  'want',
  'meg',
  'cook',
  'warn',
  'turn',
  'meg',
  'famili',
  'sooo',
  'tradit',
  'see',
  'cook',
  'women',
  'job',
  'mom',
  'hand',
  'surgeri',
  'meg',
  'cook',
  'everi',
  'meal',
  'six',
  'men',
  'mom',
  'cant',
  'cook',
  'well',
  'know',
  'coupl',
  'stapl',
  'meal',
  'feed',
  'sinc',
  'rare',
  'eat',
  'meat',
  'know',
  'cook',
  'im',
  'also',
  'ok',
  'cook',
  'practic',
  'cook',
  'group',
  'screw',
  'undercook',
  'chicken',
  'overcook',
  'steak',
  'dad',
  'angri',
  'got',
  'short',
  'told',
  'knew',
  'better',
  'could',
  'pitch',
  'instead',
  'stand',
  'around',
  'critic',
  'got',
  'furiou',
  'said',
  'vacat',
  'said',
  'tri',
  'vacat',
  'invit',
  'unpaid',
  'domest',
  'servant',
  'meg',
  'parent',
  'dad',
  'friend',
  'got',
  'angri',
  'said',
  'start',
  'yell',
  'argument',
  'escal',
  'sarcast',
  'call',
  'help',
  'dad',
  'snap',
  'told',
  'get',
  'suit',
  'go',
  'home',
  'say',
  'shit',
  'expect',
  'left',
  'call',
  'airlin',
  'ticket',
  'ask',
  'could',
  'anyth',
  'prevent',
  'anyon',
  'els',
  'modifi',
  'cancel',
  'ticket',
  'let',
  'set',
  'passcod',
  'chang',
  'could',
  'made',
  'flight',
  'without',
  'went',
  'resort',
  'desk',
  'ask',
  'room',
  'say',
  'strand',
  'unexpectedli',
  'actual',
  'afford',
  'room',
  'avail',
  'weekday',
  'discount',
  'got',
  'hous',
  'still',
  'money',
  'left',
  'touristi',
  'stuff',
  'went',
  'sightse',
  'relax',
  'beach',
  'three',
  'day',
  'meg',
  'parent',
  'ran',
  'take',
  'sunset',
  'walk',
  'doubl',
  'take',
  'see',
  'beach',
  'said',
  'thought',
  'go',
  'home',
  'said',
  'decid',
  'stay',
  'angri',
  'saw',
  'stay',
  'use',
  'return',
  'flight',
  'deceiv',
  'think',
  'afford',
  'vacat',
  'use',
  'flight',
  'could',
  'actual',
  'afford',
  'thing',
  'aita',
  'stay',
  'vacat',
  'use',
  'flight',
  'home',
  'colleg_roommat',
  'roommat_last',
  'last_year',
  'year_meg',
  'meg_famili',
  'famili_realli',
  'realli_rich',
  'rich_said',
  'said_could',
  'could_bring',
  'bring_friend',
  'friend_vacat',
  'vacat_kinda',
  'kinda_awkward',
  'awkward_third',
  'third_choic',
  'choic_famili',
  'famili_veto',
  'veto_first',
  'first_two',
  'two_want',
  'want_bring',
  'bring_boy',
  'boy_femal',
  'femal_friend',
  'friend_dislik',
  'dislik_parent',
  'parent_bought',
  'bought_plane',
  'plane_ticket',
  'ticket_book',
  'book_resort',
  'resort_grate',
  'grate_save',
  'save_lot',
  'lot_money',
  'money_could',
  'could_make',
  'make_sure',
  'sure_buy',
  'buy_food',
  'food_activ',
  'activ_im',
  'im_treat',
  'treat_famili',
  'famili_dinner',
  'dinner_thank',
  'thank_ticket',
  'ticket_trip',
  'trip_start',
  'start_bad',
  'bad_mother',
  'mother_father',
  'father_two',
  'two_father',
  'father_friend',
  'friend_three',
  'three_brother',
  'brother_go',
  'go_flight',
  'flight_got',
  'got_first',
  'first_class',
  'class_got',
  'got_economi',
  'economi_seat',
  'seat_say',
  'say_anyth',
  'anyth_argu',
  'argu_free',
  'free_ticket',
  'ticket_first',
  'first_night',
  'night_went',
  'went_groceri',
  'groceri_turn',
  'turn_want',
  'want_cook',
  'cook_resort',
  'resort_kitchen',
  'kitchen_whole',
  'whole_trip',
  'trip_want',
  'want_cook',
  'cook_actual',
  'actual_turn',
  'turn_want',
  'want_meg',
  'meg_cook',
  'cook_warn',
  'warn_turn',
  'turn_meg',
  'meg_famili',
  'famili_sooo',
  'sooo_tradit',
  'tradit_see',
  'see_cook',
  'cook_women',
  'women_job',
  'job_mom',
  'mom_hand',
  'hand_surgeri',
  'surgeri_meg',
  'meg_cook',
  'cook_everi',
  'everi_meal',
  'meal_six',
  'six_men',
  'men_mom',
  'mom_cant',
  'cant_cook',
  'cook_well',
  'well_know',
  'know_coupl',
  'coupl_stapl',
  'stapl_meal',
  'meal_feed',
  'feed_sinc',
  'sinc_rare',
  'rare_eat',
  'eat_meat',
  'meat_know',
  'know_cook',
  'cook_im',
  'im_also',
  'also_ok',
  'ok_cook',
  'cook_practic',
  'practic_cook',
  'cook_group',
  'group_screw',
  'screw_undercook',
  'undercook_chicken',
  'chicken_overcook',
  'overcook_steak',
  'steak_dad',
  'dad_angri',
  'angri_got',
  'got_short',
  'short_told',
  'told_knew',
  'knew_better',
  'better_could',
  'could_pitch',
  'pitch_instead',
  'instead_stand',
  'stand_around',
  'around_critic',
  'critic_got',
  'got_furiou',
  'furiou_said',
  'said_vacat',
  'vacat_said',
  'said_tri',
  'tri_vacat',
  'vacat_invit',
  'invit_unpaid',
  'unpaid_domest',
  'domest_servant',
  'servant_meg',
  'meg_parent',
  'parent_dad',
  'dad_friend',
  'friend_got',
  'got_angri',
  'angri_said',
  'said_start',
  'start_yell',
  'yell_argument',
  'argument_escal',
  'escal_sarcast',
  'sarcast_call',
  'call_help',
  'help_dad',
  'dad_snap',
  'snap_told',
  'told_get',
  'get_suit',
  'suit_go',
  'go_home',
  'home_say',
  'say_shit',
  'shit_expect',
  'expect_left',
  'left_call',
  'call_airlin',
  'airlin_ticket',
  'ticket_ask',
  'ask_could',
  'could_anyth',
  'anyth_prevent',
  'prevent_anyon',
  'anyon_els',
  'els_modifi',
  'modifi_cancel',
  'cancel_ticket',
  'ticket_let',
  'let_set',
  'set_passcod',
  'passcod_chang',
  'chang_could',
  'could_made',
  'made_flight',
  'flight_without',
  'without_went',
  'went_resort',
  'resort_desk',
  'desk_ask',
  'ask_room',
  'room_say',
  'say_strand',
  'strand_unexpectedli',
  'unexpectedli_actual',
  'actual_afford',
  'afford_room',
  'room_avail',
  'avail_weekday',
  'weekday_discount',
  'discount_got',
  'got_hous',
  'hous_still',
  'still_money',
  'money_left',
  'left_touristi',
  'touristi_stuff',
  'stuff_went',
  'went_sightse',
  'sightse_relax',
  'relax_beach',
  'beach_three',
  'three_day',
  'day_meg',
  'meg_parent',
  'parent_ran',
  'ran_take',
  'take_sunset',
  'sunset_walk',
  'walk_doubl',
  'doubl_take',
  'take_see',
  'see_beach',
  'beach_said',
  'said_thought',
  'thought_go',
  'go_home',
  'home_said',
  'said_decid',
  'decid_stay',
  'stay_angri',
  'angri_saw',
  'saw_stay',
  'stay_use',
  'use_return',
  'return_flight',
  'flight_deceiv',
  'deceiv_think',
  'think_afford',
  'afford_vacat',
  'vacat_use',
  'use_flight',
  'flight_could',
  'could_actual',
  'actual_afford',
  'afford_thing',
  'thing_aita',
  'aita_stay',
  'stay_vacat',
  'vacat_use',
  'use_flight',
  'flight_home',
  'colleg_roommat_last',
  'roommat_last_year',
  'last_year_meg',
  'year_meg_famili',
  'meg_famili_realli',
  'famili_realli_rich',
  'realli_rich_said',
  'rich_said_could',
  'said_could_bring',
  'could_bring_friend',
  'bring_friend_vacat',
  'friend_vacat_kinda',
  'vacat_kinda_awkward',
  'kinda_awkward_third',
  'awkward_third_choic',
  'third_choic_famili',
  'choic_famili_veto',
  'famili_veto_first',
  'veto_first_two',
  'first_two_want',
  'two_want_bring',
  'want_bring_boy',
  'bring_boy_femal',
  'boy_femal_friend',
  'femal_friend_dislik',
  'friend_dislik_parent',
  'dislik_parent_bought',
  'parent_bought_plane',
  'bought_plane_ticket',
  'plane_ticket_book',
  'ticket_book_resort',
  'book_resort_grate',
  'resort_grate_save',
  'grate_save_lot',
  'save_lot_money',
  'lot_money_could',
  'money_could_make',
  'could_make_sure',
  'make_sure_buy',
  'sure_buy_food',
  'buy_food_activ',
  'food_activ_im',
  'activ_im_treat',
  'im_treat_famili',
  'treat_famili_dinner',
  'famili_dinner_thank',
  'dinner_thank_ticket',
  'thank_ticket_trip',
  'ticket_trip_start',
  'trip_start_bad',
  'start_bad_mother',
  'bad_mother_father',
  'mother_father_two',
  'father_two_father',
  'two_father_friend',
  'father_friend_three',
  'friend_three_brother',
  'three_brother_go',
  'brother_go_flight',
  'go_flight_got',
  'flight_got_first',
  'got_first_class',
  'first_class_got',
  'class_got_economi',
  'got_economi_seat',
  'economi_seat_say',
  'seat_say_anyth',
  'say_anyth_argu',
  'anyth_argu_free',
  'argu_free_ticket',
  'free_ticket_first',
  'ticket_first_night',
  'first_night_went',
  'night_went_groceri',
  'went_groceri_turn',
  'groceri_turn_want',
  'turn_want_cook',
  'want_cook_resort',
  'cook_resort_kitchen',
  'resort_kitchen_whole',
  'kitchen_whole_trip',
  'whole_trip_want',
  'trip_want_cook',
  'want_cook_actual',
  'cook_actual_turn',
  'actual_turn_want',
  'turn_want_meg',
  'want_meg_cook',
  'meg_cook_warn',
  'cook_warn_turn',
  'warn_turn_meg',
  'turn_meg_famili',
  'meg_famili_sooo',
  'famili_sooo_tradit',
  'sooo_tradit_see',
  'tradit_see_cook',
  'see_cook_women',
  'cook_women_job',
  'women_job_mom',
  'job_mom_hand',
  'mom_hand_surgeri',
  'hand_surgeri_meg',
  'surgeri_meg_cook',
  'meg_cook_everi',
  'cook_everi_meal',
  'everi_meal_six',
  'meal_six_men',
  'six_men_mom',
  'men_mom_cant',
  'mom_cant_cook',
  'cant_cook_well',
  'cook_well_know',
  'well_know_coupl',
  'know_coupl_stapl',
  'coupl_stapl_meal',
  'stapl_meal_feed',
  'meal_feed_sinc',
  'feed_sinc_rare',
  'sinc_rare_eat',
  'rare_eat_meat',
  'eat_meat_know',
  'meat_know_cook',
  'know_cook_im',
  'cook_im_also',
  'im_also_ok',
  'also_ok_cook',
  'ok_cook_practic',
  'cook_practic_cook',
  'practic_cook_group',
  'cook_group_screw',
  'group_screw_undercook',
  'screw_undercook_chicken',
  'undercook_chicken_overcook',
  'chicken_overcook_steak',
  'overcook_steak_dad',
  'steak_dad_angri',
  'dad_angri_got',
  'angri_got_short',
  'got_short_told',
  'short_told_knew',
  'told_knew_better',
  'knew_better_could',
  'better_could_pitch',
  'could_pitch_instead',
  'pitch_instead_stand',
  'instead_stand_around',
  'stand_around_critic',
  'around_critic_got',
  'critic_got_furiou',
  'got_furiou_said',
  'furiou_said_vacat',
  'said_vacat_said',
  'vacat_said_tri',
  'said_tri_vacat',
  'tri_vacat_invit',
  'vacat_invit_unpaid',
  'invit_unpaid_domest',
  'unpaid_domest_servant',
  'domest_servant_meg',
  'servant_meg_parent',
  'meg_parent_dad',
  'parent_dad_friend',
  'dad_friend_got',
  'friend_got_angri',
  'got_angri_said',
  'angri_said_start',
  'said_start_yell',
  'start_yell_argument',
  'yell_argument_escal',
  'argument_escal_sarcast',
  'escal_sarcast_call',
  'sarcast_call_help',
  'call_help_dad',
  'help_dad_snap',
  'dad_snap_told',
  'snap_told_get',
  'told_get_suit',
  'get_suit_go',
  'suit_go_home',
  'go_home_say',
  'home_say_shit',
  'say_shit_expect',
  'shit_expect_left',
  'expect_left_call',
  'left_call_airlin',
  'call_airlin_ticket',
  'airlin_ticket_ask',
  'ticket_ask_could',
  'ask_could_anyth',
  'could_anyth_prevent',
  'anyth_prevent_anyon',
  'prevent_anyon_els',
  'anyon_els_modifi',
  'els_modifi_cancel',
  'modifi_cancel_ticket',
  'cancel_ticket_let',
  'ticket_let_set',
  'let_set_passcod',
  'set_passcod_chang',
  'passcod_chang_could',
  'chang_could_made',
  'could_made_flight',
  'made_flight_without',
  'flight_without_went',
  'without_went_resort',
  'went_resort_desk',
  'resort_desk_ask',
  'desk_ask_room',
  'ask_room_say',
  'room_say_strand',
  'say_strand_unexpectedli',
  'strand_unexpectedli_actual',
  'unexpectedli_actual_afford',
  'actual_afford_room',
  'afford_room_avail',
  'room_avail_weekday',
  'avail_weekday_discount',
  'weekday_discount_got',
  'discount_got_hous',
  'got_hous_still',
  'hous_still_money',
  'still_money_left',
  'money_left_touristi',
  'left_touristi_stuff',
  'touristi_stuff_went',
  'stuff_went_sightse',
  'went_sightse_relax',
  'sightse_relax_beach',
  'relax_beach_three',
  'beach_three_day',
  'three_day_meg',
  'day_meg_parent',
  'meg_parent_ran',
  'parent_ran_take',
  'ran_take_sunset',
  'take_sunset_walk',
  'sunset_walk_doubl',
  'walk_doubl_take',
  'doubl_take_see',
  'take_see_beach',
  'see_beach_said',
  'beach_said_thought',
  'said_thought_go',
  'thought_go_home',
  'go_home_said',
  'home_said_decid',
  'said_decid_stay',
  'decid_stay_angri',
  'stay_angri_saw',
  'angri_saw_stay',
  'saw_stay_use',
  'stay_use_return',
  'use_return_flight',
  'return_flight_deceiv',
  'flight_deceiv_think',
  'deceiv_think_afford',
  'think_afford_vacat',
  'afford_vacat_use',
  'vacat_use_flight',
  'use_flight_could',
  'flight_could_actual',
  'could_actual_afford',
  'actual_afford_thing',
  'afford_thing_aita',
  'thing_aita_stay',
  'aita_stay_vacat',
  'stay_vacat_use',
  'vacat_use_flight',
  'use_flight_home'],
 ['im',
  'mom',
  'marri',
  'step',
  'father',
  'older',
  'brother',
  'luke',
  'step',
  'father',
  'ami',
  'ada',
  'come',
  'privileg',
  'background',
  'mum',
  'min',
  'wage',
  'worker',
  'dad',
  'absent',
  'step',
  'father',
  'good',
  'incom',
  'deal',
  'combin',
  'financ',
  'would',
  'contribut',
  'equal',
  'household',
  'take',
  'care',
  'children',
  'spare',
  'money',
  'mum',
  'never',
  'anyth',
  'us',
  'step',
  'father',
  'spend',
  'big',
  'kid',
  'includ',
  'holiday',
  'luke',
  'exclud',
  'step',
  'father',
  'would',
  'pay',
  'mum',
  'us',
  'luke',
  'also',
  'share',
  'room',
  'even',
  'though',
  'ami',
  'ada',
  'room',
  'guest',
  'room',
  'step',
  'father',
  'insist',
  'pay',
  'toward',
  'hous',
  'mum',
  'share',
  'would',
  'get',
  'one',
  'room',
  'kid',
  'luke',
  'constantli',
  'teas',
  'situat',
  'three',
  'grew',
  'mum',
  'alway',
  'said',
  'thank',
  'step',
  'father',
  'would',
  'live',
  'nice',
  'home',
  'good',
  'neighborhood',
  'anyway',
  'luke',
  'becam',
  'determin',
  'abl',
  'take',
  'care',
  'need',
  'take',
  'nonsens',
  'anyon',
  'done',
  'quit',
  'well',
  'career',
  'financ',
  'good',
  'place',
  'sinc',
  'turn',
  'move',
  'relationship',
  'three',
  'limit',
  'call',
  'us',
  'friend',
  'exist',
  'peac',
  'place',
  'visit',
  'mum',
  'recent',
  'step',
  'father',
  'mention',
  'ami',
  'want',
  'buy',
  'hous',
  'pregnant',
  'ask',
  'im',
  'abl',
  'help',
  'littl',
  'deposit',
  'hous',
  '£',
  'need',
  '£',
  'deposit',
  '£',
  'far',
  '£',
  '£',
  'mum',
  '£',
  'step',
  'father',
  'ask',
  'luke',
  'help',
  'cover',
  'extra',
  '£',
  'said',
  'hed',
  'pay',
  'us',
  'back',
  'part',
  'inherit',
  'eventu',
  'said',
  'insist',
  'luke',
  'hous',
  'outright',
  'incom',
  'abl',
  'help',
  'said',
  'whether',
  'irrelev',
  'answer',
  'remind',
  'luke',
  'gave',
  '£',
  'cousin',
  'buy',
  'hous',
  'gift',
  'ami',
  'sister',
  'offer',
  'pay',
  'us',
  'back',
  'said',
  'choic',
  'choic',
  'insist',
  'help',
  'famili',
  'abl',
  'repli',
  'back',
  'like',
  'help',
  'luke',
  'kid',
  'everyon',
  'went',
  'quiet',
  'said',
  'said',
  'went',
  'back',
  'time',
  'hed',
  'done',
  'thing',
  'differ',
  'treat',
  'four',
  'us',
  'equal',
  'said',
  'good',
  'make',
  'entitl',
  'money',
  'said',
  'know',
  'entitl',
  'ask',
  'promis',
  'pay',
  'back',
  'said',
  'answer',
  'still',
  'entitl',
  'loan',
  'either',
  'mum',
  'later',
  'told',
  'could',
  'turn',
  'without',
  'asshol',
  'bring',
  'childhood',
  'alreadi',
  'feel',
  'guilti',
  'aita',
  'im_mom',
  'mom_marri',
  'marri_step',
  'step_father',
  'father_older',
  'older_brother',
  'brother_luke',
  'luke_step',
  'step_father',
  'father_ami',
  'ami_ada',
  'ada_come',
  'come_privileg',
  'privileg_background',
  'background_mum',
  'mum_min',
  'min_wage',
  'wage_worker',
  'worker_dad',
  'dad_absent',
  'absent_step',
  'step_father',
  'father_good',
  'good_incom',
  'incom_deal',
  'deal_combin',
  'combin_financ',
  'financ_would',
  'would_contribut',
  'contribut_equal',
  'equal_household',
  'household_take',
  'take_care',
  'care_children',
  'children_spare',
  'spare_money',
  'money_mum',
  'mum_never',
  'never_anyth',
  'anyth_us',
  'us_step',
  'step_father',
  'father_spend',
  'spend_big',
  'big_kid',
  'kid_includ',
  'includ_holiday',
  'holiday_luke',
  'luke_exclud',
  'exclud_step',
  'step_father',
  'father_would',
  'would_pay',
  'pay_mum',
  'mum_us',
  'us_luke',
  'luke_also',
  'also_share',
  'share_room',
  'room_even',
  'even_though',
  'though_ami',
  'ami_ada',
  'ada_room',
  'room_guest',
  'guest_room',
  'room_step',
  'step_father',
  'father_insist',
  'insist_pay',
  'pay_toward',
  'toward_hous',
  'hous_mum',
  'mum_share',
  'share_would',
  'would_get',
  'get_one',
  'one_room',
  'room_kid',
  'kid_luke',
  'luke_constantli',
  'constantli_teas',
  'teas_situat',
  'situat_three',
  'three_grew',
  'grew_mum',
  'mum_alway',
  'alway_said',
  'said_thank',
  'thank_step',
  'step_father',
  'father_would',
  'would_live',
  'live_nice',
  'nice_home',
  'home_good',
  'good_neighborhood',
  'neighborhood_anyway',
  'anyway_luke',
  'luke_becam',
  'becam_determin',
  'determin_abl',
  'abl_take',
  'take_care',
  'care_need',
  'need_take',
  'take_nonsens',
  'nonsens_anyon',
  'anyon_done',
  'done_quit',
  'quit_well',
  'well_career',
  'career_financ',
  'financ_good',
  'good_place',
  'place_sinc',
  'sinc_turn',
  'turn_move',
  'move_relationship',
  'relationship_three',
  'three_limit',
  'limit_call',
  'call_us',
  'us_friend',
  'friend_exist',
  'exist_peac',
  'peac_place',
  'place_visit',
  'visit_mum',
  'mum_recent',
  'recent_step',
  'step_father',
  'father_mention',
  'mention_ami',
  'ami_want',
  'want_buy',
  'buy_hous',
  'hous_pregnant',
  'pregnant_ask',
  'ask_im',
  'im_abl',
  'abl_help',
  'help_littl',
  'littl_deposit',
  'deposit_hous',
  'hous_£',
  '£_need',
  'need_£',
  '£_deposit',
  'deposit_£',
  '£_far',
  'far_£',
  '£_£',
  '£_mum',
  'mum_£',
  '£_step',
  'step_father',
  'father_ask',
  'ask_luke',
  'luke_help',
  'help_cover',
  'cover_extra',
  'extra_£',
  '£_said',
  'said_hed',
  'hed_pay',
  'pay_us',
  'us_back',
  'back_part',
  'part_inherit',
  'inherit_eventu',
  'eventu_said',
  'said_insist',
  'insist_luke',
  'luke_hous',
  'hous_outright',
  'outright_incom',
  'incom_abl',
  'abl_help',
  'help_said',
  'said_whether',
  'whether_irrelev',
  'irrelev_answer',
  'answer_remind',
  'remind_luke',
  'luke_gave',
  'gave_£',
  '£_cousin',
  'cousin_buy',
  'buy_hous',
  'hous_gift',
  'gift_ami',
  'ami_sister',
  'sister_offer',
  'offer_pay',
  'pay_us',
  'us_back',
  'back_said',
  'said_choic',
  'choic_choic',
  'choic_insist',
  'insist_help',
  'help_famili',
  'famili_abl',
  'abl_repli',
  'repli_back',
  'back_like',
  'like_help',
  'help_luke',
  'luke_kid',
  'kid_everyon',
  'everyon_went',
  'went_quiet',
  'quiet_said',
  'said_said',
  'said_went',
  'went_back',
  'back_time',
  'time_hed',
  'hed_done',
  'done_thing',
  'thing_differ',
  'differ_treat',
  'treat_four',
  'four_us',
  'us_equal',
  'equal_said',
  'said_good',
  'good_make',
  'make_entitl',
  'entitl_money',
  'money_said',
  'said_know',
  'know_entitl',
  'entitl_ask',
  'ask_promis',
  'promis_pay',
  'pay_back',
  'back_said',
  'said_answer',
  'answer_still',
  'still_entitl',
  'entitl_loan',
  'loan_either',
  'either_mum',
  'mum_later',
  'later_told',
  'told_could',
  'could_turn',
  'turn_without',
  'without_asshol',
  'asshol_bring',
  'bring_childhood',
  'childhood_alreadi',
  'alreadi_feel',
  'feel_guilti',
  'guilti_aita',
  'im_mom_marri',
  'mom_marri_step',
  'marri_step_father',
  'step_father_older',
  'father_older_brother',
  'older_brother_luke',
  'brother_luke_step',
  'luke_step_father',
  'step_father_ami',
  'father_ami_ada',
  'ami_ada_come',
  'ada_come_privileg',
  'come_privileg_background',
  'privileg_background_mum',
  'background_mum_min',
  'mum_min_wage',
  'min_wage_worker',
  'wage_worker_dad',
  'worker_dad_absent',
  'dad_absent_step',
  'absent_step_father',
  'step_father_good',
  'father_good_incom',
  'good_incom_deal',
  'incom_deal_combin',
  'deal_combin_financ',
  'combin_financ_would',
  'financ_would_contribut',
  'would_contribut_equal',
  'contribut_equal_household',
  'equal_household_take',
  'household_take_care',
  'take_care_children',
  'care_children_spare',
  'children_spare_money',
  'spare_money_mum',
  'money_mum_never',
  'mum_never_anyth',
  'never_anyth_us',
  'anyth_us_step',
  'us_step_father',
  'step_father_spend',
  'father_spend_big',
  'spend_big_kid',
  'big_kid_includ',
  'kid_includ_holiday',
  'includ_holiday_luke',
  'holiday_luke_exclud',
  'luke_exclud_step',
  'exclud_step_father',
  'step_father_would',
  'father_would_pay',
  'would_pay_mum',
  'pay_mum_us',
  'mum_us_luke',
  'us_luke_also',
  'luke_also_share',
  'also_share_room',
  'share_room_even',
  'room_even_though',
  'even_though_ami',
  'though_ami_ada',
  'ami_ada_room',
  'ada_room_guest',
  'room_guest_room',
  'guest_room_step',
  'room_step_father',
  'step_father_insist',
  'father_insist_pay',
  'insist_pay_toward',
  'pay_toward_hous',
  'toward_hous_mum',
  'hous_mum_share',
  'mum_share_would',
  'share_would_get',
  'would_get_one',
  'get_one_room',
  'one_room_kid',
  'room_kid_luke',
  'kid_luke_constantli',
  'luke_constantli_teas',
  'constantli_teas_situat',
  'teas_situat_three',
  'situat_three_grew',
  'three_grew_mum',
  'grew_mum_alway',
  'mum_alway_said',
  'alway_said_thank',
  'said_thank_step',
  'thank_step_father',
  'step_father_would',
  'father_would_live',
  'would_live_nice',
  'live_nice_home',
  'nice_home_good',
  'home_good_neighborhood',
  'good_neighborhood_anyway',
  'neighborhood_anyway_luke',
  'anyway_luke_becam',
  'luke_becam_determin',
  'becam_determin_abl',
  'determin_abl_take',
  'abl_take_care',
  'take_care_need',
  'care_need_take',
  'need_take_nonsens',
  'take_nonsens_anyon',
  'nonsens_anyon_done',
  'anyon_done_quit',
  'done_quit_well',
  'quit_well_career',
  'well_career_financ',
  'career_financ_good',
  'financ_good_place',
  'good_place_sinc',
  'place_sinc_turn',
  'sinc_turn_move',
  'turn_move_relationship',
  'move_relationship_three',
  'relationship_three_limit',
  'three_limit_call',
  'limit_call_us',
  'call_us_friend',
  'us_friend_exist',
  'friend_exist_peac',
  'exist_peac_place',
  'peac_place_visit',
  'place_visit_mum',
  'visit_mum_recent',
  'mum_recent_step',
  'recent_step_father',
  'step_father_mention',
  'father_mention_ami',
  'mention_ami_want',
  'ami_want_buy',
  'want_buy_hous',
  'buy_hous_pregnant',
  'hous_pregnant_ask',
  'pregnant_ask_im',
  'ask_im_abl',
  'im_abl_help',
  'abl_help_littl',
  'help_littl_deposit',
  'littl_deposit_hous',
  'deposit_hous_£',
  'hous_£_need',
  '£_need_£',
  'need_£_deposit',
  '£_deposit_£',
  'deposit_£_far',
  '£_far_£',
  'far_£_£',
  '£_£_mum',
  '£_mum_£',
  'mum_£_step',
  '£_step_father',
  'step_father_ask',
  'father_ask_luke',
  'ask_luke_help',
  'luke_help_cover',
  'help_cover_extra',
  'cover_extra_£',
  'extra_£_said',
  '£_said_hed',
  'said_hed_pay',
  'hed_pay_us',
  'pay_us_back',
  'us_back_part',
  'back_part_inherit',
  'part_inherit_eventu',
  'inherit_eventu_said',
  'eventu_said_insist',
  'said_insist_luke',
  'insist_luke_hous',
  'luke_hous_outright',
  'hous_outright_incom',
  'outright_incom_abl',
  'incom_abl_help',
  'abl_help_said',
  'help_said_whether',
  'said_whether_irrelev',
  'whether_irrelev_answer',
  'irrelev_answer_remind',
  'answer_remind_luke',
  'remind_luke_gave',
  'luke_gave_£',
  'gave_£_cousin',
  '£_cousin_buy',
  'cousin_buy_hous',
  'buy_hous_gift',
  'hous_gift_ami',
  'gift_ami_sister',
  'ami_sister_offer',
  'sister_offer_pay',
  'offer_pay_us',
  'pay_us_back',
  'us_back_said',
  'back_said_choic',
  'said_choic_choic',
  'choic_choic_insist',
  'choic_insist_help',
  'insist_help_famili',
  'help_famili_abl',
  'famili_abl_repli',
  'abl_repli_back',
  'repli_back_like',
  'back_like_help',
  'like_help_luke',
  'help_luke_kid',
  'luke_kid_everyon',
  'kid_everyon_went',
  'everyon_went_quiet',
  'went_quiet_said',
  'quiet_said_said',
  'said_said_went',
  'said_went_back',
  'went_back_time',
  'back_time_hed',
  'time_hed_done',
  'hed_done_thing',
  'done_thing_differ',
  'thing_differ_treat',
  'differ_treat_four',
  'treat_four_us',
  'four_us_equal',
  'us_equal_said',
  'equal_said_good',
  'said_good_make',
  'good_make_entitl',
  'make_entitl_money',
  'entitl_money_said',
  'money_said_know',
  'said_know_entitl',
  'know_entitl_ask',
  'entitl_ask_promis',
  'ask_promis_pay',
  'promis_pay_back',
  'pay_back_said',
  'back_said_answer',
  'said_answer_still',
  'answer_still_entitl',
  'still_entitl_loan',
  'entitl_loan_either',
  'loan_either_mum',
  'either_mum_later',
  'mum_later_told',
  'later_told_could',
  'told_could_turn',
  'could_turn_without',
  'turn_without_asshol',
  'without_asshol_bring',
  'asshol_bring_childhood',
  'bring_childhood_alreadi',
  'childhood_alreadi_feel',
  'alreadi_feel_guilti',
  'feel_guilti_aita'],
 ['fiance',
  'year',
  'get',
  'marri',
  'soon',
  'ive',
  'met',
  'famili',
  'coupl',
  'time',
  'daughter',
  'judi',
  'never',
  'met',
  'til',
  'recent',
  'host',
  'dinner',
  'celebr',
  'th',
  'juli',
  'met',
  'first',
  'time',
  'judi',
  'visibl',
  'burnscar',
  'forehead',
  'due',
  'accid',
  'use',
  'tk',
  'incred',
  'insecur',
  'point',
  'forc',
  'home',
  'school',
  'hard',
  'tri',
  'deal',
  'navig',
  'rough',
  'time',
  'lot',
  'better',
  'though',
  'comment',
  'realli',
  'caus',
  'becom',
  'stress',
  'anxiou',
  'fiance',
  'know',
  'respect',
  'went',
  'parent',
  'hous',
  'ask',
  'tell',
  'judi',
  'struggl',
  'get',
  'tri',
  'say',
  'anyth',
  'neg',
  'possibl',
  'mention',
  'said',
  'would',
  'guarente',
  'one',
  'say',
  'anyth',
  'got',
  'event',
  'talk',
  'judi',
  'slowli',
  'warm',
  'everyth',
  'go',
  'well',
  'til',
  'dinner',
  'time',
  'fmil',
  'look',
  'judi',
  'eat',
  'point',
  'scar',
  'basic',
  'ask',
  'question',
  'made',
  'judi',
  'lose',
  'appetit',
  'start',
  'get',
  'uncomfort',
  'kept',
  'send',
  'fiance',
  'mom',
  'sign',
  'knock',
  'avail',
  'final',
  'fmil',
  'brought',
  'wed',
  'ask',
  'fiance',
  'itd',
  'possibl',
  'photoshop',
  'scar',
  'wed',
  'photo',
  'judi',
  'case',
  'distract',
  'viewer',
  'dumbfound',
  'fiance',
  'said',
  'noth',
  'stare',
  'casual',
  'nod',
  'look',
  'judi',
  'clear',
  'got',
  'lean',
  'closer',
  'ask',
  'feel',
  'uncomfort',
  'could',
  'leav',
  'answer',
  'ye',
  'took',
  'time',
  'nod',
  'said',
  'ye',
  'im',
  'feel',
  'uncomfort',
  'right',
  'got',
  'told',
  'get',
  'readi',
  'caus',
  'leav',
  'fiance',
  'mom',
  'famili',
  'start',
  'insist',
  'finish',
  'dinner',
  'stay',
  'refus',
  'took',
  'judi',
  'got',
  'car',
  'left',
  'even',
  'talk',
  'fianc',
  'obvious',
  'piss',
  'call',
  'angri',
  'talk',
  'disrespect',
  'parent',
  'take',
  'judi',
  'leav',
  'middl',
  'dinnerand',
  'even',
  'say',
  'goodby',
  'told',
  'judi',
  'feel',
  'uncomfort',
  'fmil',
  'comment',
  'question',
  'said',
  'judi',
  'overreact',
  'need',
  'go',
  'back',
  'therapi',
  'simpli',
  'mention',
  'scar',
  'caus',
  'react',
  'way',
  'got',
  'tire',
  'argu',
  'ask',
  'give',
  'us',
  'time',
  'went',
  'said',
  'respect',
  'famili',
  'irrat',
  'speak',
  'til',
  'clear',
  'thing',
  'famili',
  'ruin',
  'celebratori',
  'dinner',
  'fiance_year',
  'year_get',
  'get_marri',
  'marri_soon',
  'soon_ive',
  'ive_met',
  'met_famili',
  'famili_coupl',
  'coupl_time',
  'time_daughter',
  'daughter_judi',
  'judi_never',
  'never_met',
  'met_til',
  'til_recent',
  'recent_host',
  'host_dinner',
  'dinner_celebr',
  'celebr_th',
  'th_juli',
  'juli_met',
  'met_first',
  'first_time',
  'time_judi',
  'judi_visibl',
  'visibl_burnscar',
  'burnscar_forehead',
  'forehead_due',
  'due_accid',
  'accid_use',
  'use_tk',
  'tk_incred',
  'incred_insecur',
  'insecur_point',
  'point_forc',
  'forc_home',
  'home_school',
  'school_hard',
  'hard_tri',
  'tri_deal',
  'deal_navig',
  'navig_rough',
  'rough_time',
  'time_lot',
  'lot_better',
  'better_though',
  'though_comment',
  'comment_realli',
  'realli_caus',
  'caus_becom',
  'becom_stress',
  'stress_anxiou',
  'anxiou_fiance',
  'fiance_know',
  'know_respect',
  'respect_went',
  'went_parent',
  'parent_hous',
  'hous_ask',
  'ask_tell',
  'tell_judi',
  'judi_struggl',
  'struggl_get',
  'get_tri',
  'tri_say',
  'say_anyth',
  'anyth_neg',
  'neg_possibl',
  'possibl_mention',
  'mention_said',
  'said_would',
  'would_guarente',
  'guarente_one',
  'one_say',
  'say_anyth',
  'anyth_got',
  'got_event',
  'event_talk',
  'talk_judi',
  'judi_slowli',
  'slowli_warm',
  'warm_everyth',
  'everyth_go',
  'go_well',
  'well_til',
  'til_dinner',
  'dinner_time',
  'time_fmil',
  'fmil_look',
  'look_judi',
  'judi_eat',
  'eat_point',
  'point_scar',
  'scar_basic',
  'basic_ask',
  'ask_question',
  'question_made',
  'made_judi',
  'judi_lose',
  'lose_appetit',
  'appetit_start',
  'start_get',
  'get_uncomfort',
  'uncomfort_kept',
  'kept_send',
  'send_fiance',
  'fiance_mom',
  'mom_sign',
  'sign_knock',
  'knock_avail',
  'avail_final',
  'final_fmil',
  'fmil_brought',
  'brought_wed',
  'wed_ask',
  'ask_fiance',
  'fiance_itd',
  'itd_possibl',
  'possibl_photoshop',
  'photoshop_scar',
  'scar_wed',
  'wed_photo',
  'photo_judi',
  'judi_case',
  'case_distract',
  'distract_viewer',
  'viewer_dumbfound',
  'dumbfound_fiance',
  'fiance_said',
  'said_noth',
  'noth_stare',
  'stare_casual',
  'casual_nod',
  'nod_look',
  'look_judi',
  'judi_clear',
  'clear_got',
  'got_lean',
  'lean_closer',
  'closer_ask',
  'ask_feel',
  'feel_uncomfort',
  'uncomfort_could',
  'could_leav',
  'leav_answer',
  'answer_ye',
  'ye_took',
  'took_time',
  'time_nod',
  'nod_said',
  'said_ye',
  'ye_im',
  'im_feel',
  'feel_uncomfort',
  'uncomfort_right',
  'right_got',
  'got_told',
  'told_get',
  'get_readi',
  'readi_caus',
  'caus_leav',
  'leav_fiance',
  'fiance_mom',
  'mom_famili',
  'famili_start',
  'start_insist',
  'insist_finish',
  'finish_dinner',
  'dinner_stay',
  'stay_refus',
  'refus_took',
  'took_judi',
  'judi_got',
  'got_car',
  'car_left',
  'left_even',
  'even_talk',
  'talk_fianc',
  'fianc_obvious',
  'obvious_piss',
  'piss_call',
  'call_angri',
  'angri_talk',
  'talk_disrespect',
  'disrespect_parent',
  'parent_take',
  'take_judi',
  'judi_leav',
  'leav_middl',
  'middl_dinnerand',
  'dinnerand_even',
  'even_say',
  'say_goodby',
  'goodby_told',
  'told_judi',
  'judi_feel',
  'feel_uncomfort',
  'uncomfort_fmil',
  'fmil_comment',
  'comment_question',
  'question_said',
  'said_judi',
  'judi_overreact',
  'overreact_need',
  'need_go',
  'go_back',
  'back_therapi',
  'therapi_simpli',
  'simpli_mention',
  'mention_scar',
  'scar_caus',
  'caus_react',
  'react_way',
  'way_got',
  'got_tire',
  'tire_argu',
  'argu_ask',
  'ask_give',
  'give_us',
  'us_time',
  'time_went',
  'went_said',
  'said_respect',
  'respect_famili',
  'famili_irrat',
  'irrat_speak',
  'speak_til',
  'til_clear',
  'clear_thing',
  'thing_famili',
  'famili_ruin',
  'ruin_celebratori',
  'celebratori_dinner',
  'fiance_year_get',
  'year_get_marri',
  'get_marri_soon',
  'marri_soon_ive',
  'soon_ive_met',
  'ive_met_famili',
  'met_famili_coupl',
  'famili_coupl_time',
  'coupl_time_daughter',
  'time_daughter_judi',
  'daughter_judi_never',
  'judi_never_met',
  'never_met_til',
  'met_til_recent',
  'til_recent_host',
  'recent_host_dinner',
  'host_dinner_celebr',
  'dinner_celebr_th',
  'celebr_th_juli',
  'th_juli_met',
  'juli_met_first',
  'met_first_time',
  'first_time_judi',
  'time_judi_visibl',
  'judi_visibl_burnscar',
  'visibl_burnscar_forehead',
  'burnscar_forehead_due',
  'forehead_due_accid',
  'due_accid_use',
  'accid_use_tk',
  'use_tk_incred',
  'tk_incred_insecur',
  'incred_insecur_point',
  'insecur_point_forc',
  'point_forc_home',
  'forc_home_school',
  'home_school_hard',
  'school_hard_tri',
  'hard_tri_deal',
  'tri_deal_navig',
  'deal_navig_rough',
  'navig_rough_time',
  'rough_time_lot',
  'time_lot_better',
  'lot_better_though',
  'better_though_comment',
  'though_comment_realli',
  'comment_realli_caus',
  'realli_caus_becom',
  'caus_becom_stress',
  'becom_stress_anxiou',
  'stress_anxiou_fiance',
  'anxiou_fiance_know',
  'fiance_know_respect',
  'know_respect_went',
  'respect_went_parent',
  'went_parent_hous',
  'parent_hous_ask',
  'hous_ask_tell',
  'ask_tell_judi',
  'tell_judi_struggl',
  'judi_struggl_get',
  'struggl_get_tri',
  'get_tri_say',
  'tri_say_anyth',
  'say_anyth_neg',
  'anyth_neg_possibl',
  'neg_possibl_mention',
  'possibl_mention_said',
  'mention_said_would',
  'said_would_guarente',
  'would_guarente_one',
  'guarente_one_say',
  'one_say_anyth',
  'say_anyth_got',
  'anyth_got_event',
  'got_event_talk',
  'event_talk_judi',
  'talk_judi_slowli',
  'judi_slowli_warm',
  'slowli_warm_everyth',
  'warm_everyth_go',
  'everyth_go_well',
  'go_well_til',
  'well_til_dinner',
  'til_dinner_time',
  'dinner_time_fmil',
  'time_fmil_look',
  'fmil_look_judi',
  'look_judi_eat',
  'judi_eat_point',
  'eat_point_scar',
  'point_scar_basic',
  'scar_basic_ask',
  'basic_ask_question',
  'ask_question_made',
  'question_made_judi',
  'made_judi_lose',
  'judi_lose_appetit',
  'lose_appetit_start',
  'appetit_start_get',
  'start_get_uncomfort',
  'get_uncomfort_kept',
  'uncomfort_kept_send',
  'kept_send_fiance',
  'send_fiance_mom',
  'fiance_mom_sign',
  'mom_sign_knock',
  'sign_knock_avail',
  'knock_avail_final',
  'avail_final_fmil',
  'final_fmil_brought',
  'fmil_brought_wed',
  'brought_wed_ask',
  'wed_ask_fiance',
  'ask_fiance_itd',
  'fiance_itd_possibl',
  'itd_possibl_photoshop',
  'possibl_photoshop_scar',
  'photoshop_scar_wed',
  'scar_wed_photo',
  'wed_photo_judi',
  'photo_judi_case',
  'judi_case_distract',
  'case_distract_viewer',
  'distract_viewer_dumbfound',
  'viewer_dumbfound_fiance',
  'dumbfound_fiance_said',
  'fiance_said_noth',
  'said_noth_stare',
  'noth_stare_casual',
  'stare_casual_nod',
  'casual_nod_look',
  'nod_look_judi',
  'look_judi_clear',
  'judi_clear_got',
  'clear_got_lean',
  'got_lean_closer',
  'lean_closer_ask',
  'closer_ask_feel',
  'ask_feel_uncomfort',
  'feel_uncomfort_could',
  'uncomfort_could_leav',
  'could_leav_answer',
  'leav_answer_ye',
  'answer_ye_took',
  'ye_took_time',
  'took_time_nod',
  'time_nod_said',
  'nod_said_ye',
  'said_ye_im',
  'ye_im_feel',
  'im_feel_uncomfort',
  'feel_uncomfort_right',
  'uncomfort_right_got',
  'right_got_told',
  'got_told_get',
  'told_get_readi',
  'get_readi_caus',
  'readi_caus_leav',
  'caus_leav_fiance',
  'leav_fiance_mom',
  'fiance_mom_famili',
  'mom_famili_start',
  'famili_start_insist',
  'start_insist_finish',
  'insist_finish_dinner',
  'finish_dinner_stay',
  'dinner_stay_refus',
  'stay_refus_took',
  'refus_took_judi',
  'took_judi_got',
  'judi_got_car',
  'got_car_left',
  'car_left_even',
  'left_even_talk',
  'even_talk_fianc',
  'talk_fianc_obvious',
  'fianc_obvious_piss',
  'obvious_piss_call',
  'piss_call_angri',
  'call_angri_talk',
  'angri_talk_disrespect',
  'talk_disrespect_parent',
  'disrespect_parent_take',
  'parent_take_judi',
  'take_judi_leav',
  'judi_leav_middl',
  'leav_middl_dinnerand',
  'middl_dinnerand_even',
  'dinnerand_even_say',
  'even_say_goodby',
  'say_goodby_told',
  'goodby_told_judi',
  'told_judi_feel',
  'judi_feel_uncomfort',
  'feel_uncomfort_fmil',
  'uncomfort_fmil_comment',
  'fmil_comment_question',
  'comment_question_said',
  'question_said_judi',
  'said_judi_overreact',
  'judi_overreact_need',
  'overreact_need_go',
  'need_go_back',
  'go_back_therapi',
  'back_therapi_simpli',
  'therapi_simpli_mention',
  'simpli_mention_scar',
  'mention_scar_caus',
  'scar_caus_react',
  'caus_react_way',
  'react_way_got',
  'way_got_tire',
  'got_tire_argu',
  'tire_argu_ask',
  'argu_ask_give',
  'ask_give_us',
  'give_us_time',
  'us_time_went',
  'time_went_said',
  'went_said_respect',
  'said_respect_famili',
  'respect_famili_irrat',
  'famili_irrat_speak',
  'irrat_speak_til',
  'speak_til_clear',
  'til_clear_thing',
  'clear_thing_famili',
  'thing_famili_ruin',
  'famili_ruin_celebratori',
  'ruin_celebratori_dinner'],
 ['im',
  'new',
  'mom',
  'son',
  'week',
  'ago',
  'husband',
  'parent',
  'stay',
  'us',
  'thing',
  'super',
  'overwhelm',
  'mil',
  'habit',
  'take',
  'babi',
  'refus',
  'give',
  'back',
  'shed',
  'say',
  'im',
  'deliber',
  'ruin',
  'time',
  'son',
  'need',
  'feed',
  'everi',
  'hr',
  'basic',
  'make',
  'beg',
  'hand',
  'could',
  'feed',
  'last',
  'night',
  'pm',
  'mil',
  'son',
  'arm',
  'sit',
  'couch',
  'husband',
  'dad',
  'exhaust',
  'babi',
  'start',
  'cri',
  'told',
  'mil',
  'hand',
  'could',
  'feed',
  'refus',
  'kept',
  'ask',
  'husband',
  'start',
  'talk',
  'whinni',
  'littl',
  'girl',
  'complain',
  'son',
  'receiv',
  'love',
  'cuddl',
  'im',
  'use',
  'feed',
  'excus',
  'keep',
  'babi',
  'away',
  'mom',
  'ignor',
  'told',
  'mom',
  'hand',
  'babi',
  'refus',
  'said',
  'need',
  'wait',
  'littl',
  'longer',
  'got',
  'angri',
  'point',
  'husband',
  'said',
  'could',
  'take',
  'babi',
  'ask',
  'mom',
  'nice',
  'seeth',
  'meanli',
  'told',
  'mom',
  'stop',
  'annoy',
  'overbear',
  'hand',
  'look',
  'shock',
  'hurt',
  'hand',
  'babi',
  'ran',
  'guest',
  'room',
  'husband',
  'gave',
  'look',
  'follow',
  'stay',
  'insid',
  'comfort',
  'came',
  'room',
  'feed',
  'son',
  'start',
  'yell',
  'disrespect',
  'speak',
  'mom',
  'way',
  'treat',
  'poorli',
  'show',
  'son',
  'love',
  'told',
  'take',
  'babi',
  'hour',
  'prevent',
  'feed',
  'properli',
  'said',
  'son',
  'object',
  'act',
  'like',
  'mom',
  'noth',
  'wrong',
  'ask',
  'nice',
  'instead',
  'bi',
  '$',
  'ch',
  'mom',
  'make',
  'cri',
  'start',
  'cri',
  'yell',
  'id',
  'go',
  'mom',
  'place',
  'parent',
  'stay',
  'longer',
  'yell',
  'back',
  'say',
  'shut',
  'fuck',
  'act',
  'caus',
  'want',
  'parent',
  'around',
  'fuck',
  'wrong',
  'walk',
  'felt',
  'terribl',
  'think',
  'mayb',
  'rude',
  'mom',
  'also',
  'think',
  'id',
  'hit',
  'limit',
  'aita',
  'ask',
  'nice',
  'like',
  'husband',
  'want',
  'edit',
  'mistak',
  'hand',
  'bit',
  'unsteadi',
  'im_new',
  'new_mom',
  'mom_son',
  'son_week',
  'week_ago',
  'ago_husband',
  'husband_parent',
  'parent_stay',
  'stay_us',
  'us_thing',
  'thing_super',
  'super_overwhelm',
  'overwhelm_mil',
  'mil_habit',
  'habit_take',
  'take_babi',
  'babi_refus',
  'refus_give',
  'give_back',
  'back_shed',
  'shed_say',
  'say_im',
  'im_deliber',
  'deliber_ruin',
  'ruin_time',
  'time_son',
  'son_need',
  'need_feed',
  'feed_everi',
  'everi_hr',
  'hr_basic',
  'basic_make',
  'make_beg',
  'beg_hand',
  'hand_could',
  'could_feed',
  'feed_last',
  'last_night',
  'night_pm',
  'pm_mil',
  'mil_son',
  'son_arm',
  'arm_sit',
  'sit_couch',
  'couch_husband',
  'husband_dad',
  'dad_exhaust',
  'exhaust_babi',
  'babi_start',
  'start_cri',
  'cri_told',
  'told_mil',
  'mil_hand',
  'hand_could',
  'could_feed',
  'feed_refus',
  'refus_kept',
  'kept_ask',
  'ask_husband',
  'husband_start',
  'start_talk',
  'talk_whinni',
  'whinni_littl',
  'littl_girl',
  'girl_complain',
  'complain_son',
  'son_receiv',
  'receiv_love',
  'love_cuddl',
  'cuddl_im',
  'im_use',
  'use_feed',
  'feed_excus',
  'excus_keep',
  'keep_babi',
  'babi_away',
  'away_mom',
  'mom_ignor',
  'ignor_told',
  'told_mom',
  'mom_hand',
  'hand_babi',
  'babi_refus',
  'refus_said',
  'said_need',
  'need_wait',
  'wait_littl',
  'littl_longer',
  'longer_got',
  'got_angri',
  'angri_point',
  'point_husband',
  'husband_said',
  'said_could',
  'could_take',
  'take_babi',
  'babi_ask',
  'ask_mom',
  'mom_nice',
  'nice_seeth',
  'seeth_meanli',
  'meanli_told',
  'told_mom',
  'mom_stop',
  'stop_annoy',
  'annoy_overbear',
  'overbear_hand',
  'hand_look',
  'look_shock',
  'shock_hurt',
  'hurt_hand',
  'hand_babi',
  'babi_ran',
  'ran_guest',
  'guest_room',
  'room_husband',
  'husband_gave',
  'gave_look',
  'look_follow',
  'follow_stay',
  'stay_insid',
  'insid_comfort',
  'comfort_came',
  'came_room',
  'room_feed',
  'feed_son',
  'son_start',
  'start_yell',
  'yell_disrespect',
  'disrespect_speak',
  'speak_mom',
  'mom_way',
  'way_treat',
  'treat_poorli',
  'poorli_show',
  'show_son',
  'son_love',
  'love_told',
  'told_take',
  'take_babi',
  'babi_hour',
  'hour_prevent',
  'prevent_feed',
  'feed_properli',
  'properli_said',
  'said_son',
  'son_object',
  'object_act',
  'act_like',
  'like_mom',
  'mom_noth',
  'noth_wrong',
  'wrong_ask',
  'ask_nice',
  'nice_instead',
  'instead_bi',
  'bi_$',
  '$_ch',
  'ch_mom',
  'mom_make',
  'make_cri',
  'cri_start',
  'start_cri',
  'cri_yell',
  'yell_id',
  'id_go',
  'go_mom',
  'mom_place',
  'place_parent',
  'parent_stay',
  'stay_longer',
  'longer_yell',
  'yell_back',
  'back_say',
  'say_shut',
  'shut_fuck',
  'fuck_act',
  'act_caus',
  'caus_want',
  'want_parent',
  'parent_around',
  'around_fuck',
  'fuck_wrong',
  'wrong_walk',
  'walk_felt',
  'felt_terribl',
  'terribl_think',
  'think_mayb',
  'mayb_rude',
  'rude_mom',
  'mom_also',
  'also_think',
  'think_id',
  'id_hit',
  'hit_limit',
  'limit_aita',
  'aita_ask',
  'ask_nice',
  'nice_like',
  'like_husband',
  'husband_want',
  'want_edit',
  'edit_mistak',
  'mistak_hand',
  'hand_bit',
  'bit_unsteadi',
  'im_new_mom',
  'new_mom_son',
  'mom_son_week',
  'son_week_ago',
  'week_ago_husband',
  'ago_husband_parent',
  'husband_parent_stay',
  'parent_stay_us',
  'stay_us_thing',
  'us_thing_super',
  'thing_super_overwhelm',
  'super_overwhelm_mil',
  'overwhelm_mil_habit',
  'mil_habit_take',
  'habit_take_babi',
  'take_babi_refus',
  'babi_refus_give',
  'refus_give_back',
  'give_back_shed',
  'back_shed_say',
  'shed_say_im',
  'say_im_deliber',
  'im_deliber_ruin',
  'deliber_ruin_time',
  'ruin_time_son',
  'time_son_need',
  'son_need_feed',
  'need_feed_everi',
  'feed_everi_hr',
  'everi_hr_basic',
  'hr_basic_make',
  'basic_make_beg',
  'make_beg_hand',
  'beg_hand_could',
  'hand_could_feed',
  'could_feed_last',
  'feed_last_night',
  'last_night_pm',
  'night_pm_mil',
  'pm_mil_son',
  'mil_son_arm',
  'son_arm_sit',
  'arm_sit_couch',
  'sit_couch_husband',
  'couch_husband_dad',
  'husband_dad_exhaust',
  'dad_exhaust_babi',
  'exhaust_babi_start',
  'babi_start_cri',
  'start_cri_told',
  'cri_told_mil',
  'told_mil_hand',
  'mil_hand_could',
  'hand_could_feed',
  'could_feed_refus',
  'feed_refus_kept',
  'refus_kept_ask',
  'kept_ask_husband',
  'ask_husband_start',
  'husband_start_talk',
  'start_talk_whinni',
  'talk_whinni_littl',
  'whinni_littl_girl',
  'littl_girl_complain',
  'girl_complain_son',
  'complain_son_receiv',
  'son_receiv_love',
  'receiv_love_cuddl',
  'love_cuddl_im',
  'cuddl_im_use',
  'im_use_feed',
  'use_feed_excus',
  'feed_excus_keep',
  'excus_keep_babi',
  'keep_babi_away',
  'babi_away_mom',
  'away_mom_ignor',
  'mom_ignor_told',
  'ignor_told_mom',
  'told_mom_hand',
  'mom_hand_babi',
  'hand_babi_refus',
  'babi_refus_said',
  'refus_said_need',
  'said_need_wait',
  'need_wait_littl',
  'wait_littl_longer',
  'littl_longer_got',
  'longer_got_angri',
  'got_angri_point',
  'angri_point_husband',
  'point_husband_said',
  'husband_said_could',
  'said_could_take',
  'could_take_babi',
  'take_babi_ask',
  'babi_ask_mom',
  'ask_mom_nice',
  'mom_nice_seeth',
  'nice_seeth_meanli',
  'seeth_meanli_told',
  'meanli_told_mom',
  'told_mom_stop',
  'mom_stop_annoy',
  'stop_annoy_overbear',
  'annoy_overbear_hand',
  'overbear_hand_look',
  'hand_look_shock',
  'look_shock_hurt',
  'shock_hurt_hand',
  'hurt_hand_babi',
  'hand_babi_ran',
  'babi_ran_guest',
  'ran_guest_room',
  'guest_room_husband',
  'room_husband_gave',
  'husband_gave_look',
  'gave_look_follow',
  'look_follow_stay',
  'follow_stay_insid',
  'stay_insid_comfort',
  'insid_comfort_came',
  'comfort_came_room',
  'came_room_feed',
  'room_feed_son',
  'feed_son_start',
  'son_start_yell',
  'start_yell_disrespect',
  'yell_disrespect_speak',
  'disrespect_speak_mom',
  'speak_mom_way',
  'mom_way_treat',
  'way_treat_poorli',
  'treat_poorli_show',
  'poorli_show_son',
  'show_son_love',
  'son_love_told',
  'love_told_take',
  'told_take_babi',
  'take_babi_hour',
  'babi_hour_prevent',
  'hour_prevent_feed',
  'prevent_feed_properli',
  'feed_properli_said',
  'properli_said_son',
  'said_son_object',
  'son_object_act',
  'object_act_like',
  'act_like_mom',
  'like_mom_noth',
  'mom_noth_wrong',
  'noth_wrong_ask',
  'wrong_ask_nice',
  'ask_nice_instead',
  'nice_instead_bi',
  'instead_bi_$',
  'bi_$_ch',
  '$_ch_mom',
  'ch_mom_make',
  'mom_make_cri',
  'make_cri_start',
  'cri_start_cri',
  'start_cri_yell',
  'cri_yell_id',
  'yell_id_go',
  'id_go_mom',
  'go_mom_place',
  'mom_place_parent',
  'place_parent_stay',
  'parent_stay_longer',
  'stay_longer_yell',
  'longer_yell_back',
  'yell_back_say',
  'back_say_shut',
  'say_shut_fuck',
  'shut_fuck_act',
  'fuck_act_caus',
  'act_caus_want',
  'caus_want_parent',
  'want_parent_around',
  'parent_around_fuck',
  'around_fuck_wrong',
  'fuck_wrong_walk',
  'wrong_walk_felt',
  'walk_felt_terribl',
  'felt_terribl_think',
  'terribl_think_mayb',
  'think_mayb_rude',
  'mayb_rude_mom',
  'rude_mom_also',
  'mom_also_think',
  'also_think_id',
  'think_id_hit',
  'id_hit_limit',
  'hit_limit_aita',
  'limit_aita_ask',
  'aita_ask_nice',
  'ask_nice_like',
  'nice_like_husband',
  'like_husband_want',
  'husband_want_edit',
  'want_edit_mistak',
  'edit_mistak_hand',
  'mistak_hand_bit',
  'hand_bit_unsteadi'],
 ['ex-husband',
  'got',
  'divorc',
  'yr',
  'ago',
  'divorc',
  'old',
  'singl',
  'wide',
  'mobil',
  'home',
  'larg',
  'piec',
  'land',
  'zone',
  'trailer',
  'park',
  'want',
  'new',
  'truck',
  'save',
  'want',
  'old',
  'trailer',
  'land',
  'ex',
  'girl',
  '&',
  'sinc',
  'divorc',
  'slowli',
  'start',
  'buy',
  'old',
  'singl',
  'wide',
  'restor',
  'turn',
  'busi',
  'love',
  'girl',
  'go',
  'dad',
  'ap',
  'apart',
  'everi',
  'weekend',
  'start',
  'notic',
  'cloth',
  'electron',
  'toy',
  'come',
  'home',
  'first',
  'thought',
  'dad',
  'keep',
  'outfit',
  'howev',
  'yr',
  'old',
  'got',
  'upset',
  'pack',
  'ask',
  'wrong',
  'told',
  'dad',
  'take',
  'cloth',
  'sell',
  'line',
  'want',
  'take',
  'favorit',
  'shirt',
  'immedi',
  'call',
  'ex',
  'ask',
  'return',
  'daughter',
  'cloth',
  'want',
  'throw',
  'daughter',
  'bu',
  'blame',
  'enough',
  'school',
  'play',
  'dumb',
  'said',
  'got',
  'rid',
  'cloth',
  'small',
  'point',
  'jean',
  'yr',
  'brand',
  'new',
  'said',
  'fair',
  'got',
  'cash',
  'trailer',
  'land',
  'good',
  'piss',
  'took',
  'daughter',
  'dollar',
  'store',
  'bought',
  'cheap',
  'shirt',
  'thrift',
  'store',
  'bought',
  'cheap',
  'short',
  'girl',
  'tie',
  'dye',
  'night',
  'hot',
  'pink',
  'everi',
  'thing',
  'made',
  'shirt',
  'bottom',
  'let',
  'girl',
  'design',
  'decor',
  'girl',
  'love',
  'follow',
  'week',
  'ex',
  'send',
  'girl',
  'home',
  'could',
  'tell',
  'mad',
  'say',
  'anyth',
  'cloth',
  'return',
  'fear',
  'knew',
  'would',
  'issu',
  'made',
  'extra',
  'girl',
  'went',
  'back',
  'wear',
  'tie',
  'dye',
  'dad',
  'hour',
  'call',
  'demand',
  'differ',
  'cloth',
  'kindli',
  'told',
  'daughter',
  'love',
  'cloth',
  'realli',
  'realli',
  'love',
  'tie',
  'dye',
  'ex',
  'get',
  'even',
  'angrier',
  'said',
  'parent',
  'major',
  'famili',
  'parti',
  'girl',
  'cant',
  'wear',
  'pink',
  'tie',
  'dye',
  'told',
  'go',
  'buy',
  'cloth',
  'want',
  'wear',
  'call',
  'petti',
  'aita',
  'edit',
  'add',
  'thank',
  'much',
  'comment',
  'thing',
  'clarifi',
  'ap',
  'stand',
  'affair',
  'partner',
  'past',
  'tens',
  'ex',
  'land',
  'deed',
  'titl',
  'trailer',
  'sadli',
  'true',
  'stori',
  'sorri',
  'believ',
  'time',
  'heart',
  'goe',
  'share',
  'similar',
  'stori',
  'thank',
  'love',
  'support',
  'ex-husband_got',
  'got_divorc',
  'divorc_yr',
  'yr_ago',
  'ago_divorc',
  'divorc_old',
  'old_singl',
  'singl_wide',
  'wide_mobil',
  'mobil_home',
  'home_larg',
  'larg_piec',
  'piec_land',
  'land_zone',
  'zone_trailer',
  'trailer_park',
  'park_want',
  'want_new',
  'new_truck',
  'truck_save',
  'save_want',
  'want_old',
  'old_trailer',
  'trailer_land',
  'land_ex',
  'ex_girl',
  'girl_&',
  '&_sinc',
  'sinc_divorc',
  'divorc_slowli',
  'slowli_start',
  'start_buy',
  'buy_old',
  'old_singl',
  'singl_wide',
  'wide_restor',
  'restor_turn',
  'turn_busi',
  'busi_love',
  'love_girl',
  'girl_go',
  'go_dad',
  'dad_ap',
  'ap_apart',
  'apart_everi',
  'everi_weekend',
  'weekend_start',
  'start_notic',
  'notic_cloth',
  'cloth_electron',
  'electron_toy',
  'toy_come',
  'come_home',
  'home_first',
  'first_thought',
  'thought_dad',
  'dad_keep',
  'keep_outfit',
  'outfit_howev',
  'howev_yr',
  'yr_old',
  'old_got',
  'got_upset',
  'upset_pack',
  'pack_ask',
  'ask_wrong',
  'wrong_told',
  'told_dad',
  'dad_take',
  'take_cloth',
  'cloth_sell',
  'sell_line',
  'line_want',
  'want_take',
  'take_favorit',
  'favorit_shirt',
  'shirt_immedi',
  'immedi_call',
  'call_ex',
  'ex_ask',
  'ask_return',
  'return_daughter',
  'daughter_cloth',
  'cloth_want',
  'want_throw',
  'throw_daughter',
  'daughter_bu',
  'bu_blame',
  'blame_enough',
  'enough_school',
  'school_play',
  'play_dumb',
  'dumb_said',
  'said_got',
  'got_rid',
  'rid_cloth',
  'cloth_small',
  'small_point',
  'point_jean',
  'jean_yr',
  'yr_brand',
  'brand_new',
  'new_said',
  'said_fair',
  'fair_got',
  'got_cash',
  'cash_trailer',
  'trailer_land',
  'land_good',
  'good_piss',
  'piss_took',
  'took_daughter',
  'daughter_dollar',
  'dollar_store',
  'store_bought',
  'bought_cheap',
  'cheap_shirt',
  'shirt_thrift',
  'thrift_store',
  'store_bought',
  'bought_cheap',
  'cheap_short',
  'short_girl',
  'girl_tie',
  'tie_dye',
  'dye_night',
  'night_hot',
  'hot_pink',
  'pink_everi',
  'everi_thing',
  'thing_made',
  'made_shirt',
  'shirt_bottom',
  'bottom_let',
  'let_girl',
  'girl_design',
  'design_decor',
  'decor_girl',
  'girl_love',
  'love_follow',
  'follow_week',
  'week_ex',
  'ex_send',
  'send_girl',
  'girl_home',
  'home_could',
  'could_tell',
  'tell_mad',
  'mad_say',
  'say_anyth',
  'anyth_cloth',
  'cloth_return',
  'return_fear',
  'fear_knew',
  'knew_would',
  'would_issu',
  'issu_made',
  'made_extra',
  'extra_girl',
  'girl_went',
  'went_back',
  'back_wear',
  'wear_tie',
  'tie_dye',
  'dye_dad',
  'dad_hour',
  'hour_call',
  'call_demand',
  'demand_differ',
  'differ_cloth',
  'cloth_kindli',
  'kindli_told',
  'told_daughter',
  'daughter_love',
  'love_cloth',
  'cloth_realli',
  'realli_realli',
  'realli_love',
  'love_tie',
  'tie_dye',
  'dye_ex',
  'ex_get',
  'get_even',
  'even_angrier',
  'angrier_said',
  'said_parent',
  'parent_major',
  'major_famili',
  'famili_parti',
  'parti_girl',
  'girl_cant',
  'cant_wear',
  'wear_pink',
  'pink_tie',
  'tie_dye',
  'dye_told',
  'told_go',
  'go_buy',
  'buy_cloth',
  'cloth_want',
  'want_wear',
  'wear_call',
  'call_petti',
  'petti_aita',
  'aita_edit',
  'edit_add',
  'add_thank',
  'thank_much',
  'much_comment',
  'comment_thing',
  'thing_clarifi',
  'clarifi_ap',
  'ap_stand',
  'stand_affair',
  'affair_partner',
  'partner_past',
  'past_tens',
  'tens_ex',
  'ex_land',
  'land_deed',
  'deed_titl',
  'titl_trailer',
  'trailer_sadli',
  'sadli_true',
  'true_stori',
  'stori_sorri',
  'sorri_believ',
  'believ_time',
  'time_heart',
  'heart_goe',
  'goe_share',
  'share_similar',
  'similar_stori',
  'stori_thank',
  'thank_love',
  'love_support',
  'ex-husband_got_divorc',
  'got_divorc_yr',
  'divorc_yr_ago',
  'yr_ago_divorc',
  'ago_divorc_old',
  'divorc_old_singl',
  'old_singl_wide',
  'singl_wide_mobil',
  'wide_mobil_home',
  'mobil_home_larg',
  'home_larg_piec',
  'larg_piec_land',
  'piec_land_zone',
  'land_zone_trailer',
  'zone_trailer_park',
  'trailer_park_want',
  'park_want_new',
  'want_new_truck',
  'new_truck_save',
  'truck_save_want',
  'save_want_old',
  'want_old_trailer',
  'old_trailer_land',
  'trailer_land_ex',
  'land_ex_girl',
  'ex_girl_&',
  'girl_&_sinc',
  '&_sinc_divorc',
  'sinc_divorc_slowli',
  'divorc_slowli_start',
  'slowli_start_buy',
  'start_buy_old',
  'buy_old_singl',
  'old_singl_wide',
  'singl_wide_restor',
  'wide_restor_turn',
  'restor_turn_busi',
  'turn_busi_love',
  'busi_love_girl',
  'love_girl_go',
  'girl_go_dad',
  'go_dad_ap',
  'dad_ap_apart',
  'ap_apart_everi',
  'apart_everi_weekend',
  'everi_weekend_start',
  'weekend_start_notic',
  'start_notic_cloth',
  'notic_cloth_electron',
  'cloth_electron_toy',
  'electron_toy_come',
  'toy_come_home',
  'come_home_first',
  'home_first_thought',
  'first_thought_dad',
  'thought_dad_keep',
  'dad_keep_outfit',
  'keep_outfit_howev',
  'outfit_howev_yr',
  'howev_yr_old',
  'yr_old_got',
  'old_got_upset',
  'got_upset_pack',
  'upset_pack_ask',
  'pack_ask_wrong',
  'ask_wrong_told',
  'wrong_told_dad',
  'told_dad_take',
  'dad_take_cloth',
  'take_cloth_sell',
  'cloth_sell_line',
  'sell_line_want',
  'line_want_take',
  'want_take_favorit',
  'take_favorit_shirt',
  'favorit_shirt_immedi',
  'shirt_immedi_call',
  'immedi_call_ex',
  'call_ex_ask',
  'ex_ask_return',
  'ask_return_daughter',
  'return_daughter_cloth',
  'daughter_cloth_want',
  'cloth_want_throw',
  'want_throw_daughter',
  'throw_daughter_bu',
  'daughter_bu_blame',
  'bu_blame_enough',
  'blame_enough_school',
  'enough_school_play',
  'school_play_dumb',
  'play_dumb_said',
  'dumb_said_got',
  'said_got_rid',
  'got_rid_cloth',
  'rid_cloth_small',
  'cloth_small_point',
  'small_point_jean',
  'point_jean_yr',
  'jean_yr_brand',
  'yr_brand_new',
  'brand_new_said',
  'new_said_fair',
  'said_fair_got',
  'fair_got_cash',
  'got_cash_trailer',
  'cash_trailer_land',
  'trailer_land_good',
  'land_good_piss',
  'good_piss_took',
  'piss_took_daughter',
  'took_daughter_dollar',
  'daughter_dollar_store',
  'dollar_store_bought',
  'store_bought_cheap',
  'bought_cheap_shirt',
  'cheap_shirt_thrift',
  'shirt_thrift_store',
  'thrift_store_bought',
  'store_bought_cheap',
  'bought_cheap_short',
  'cheap_short_girl',
  'short_girl_tie',
  'girl_tie_dye',
  'tie_dye_night',
  'dye_night_hot',
  'night_hot_pink',
  'hot_pink_everi',
  'pink_everi_thing',
  'everi_thing_made',
  'thing_made_shirt',
  'made_shirt_bottom',
  'shirt_bottom_let',
  'bottom_let_girl',
  'let_girl_design',
  'girl_design_decor',
  'design_decor_girl',
  'decor_girl_love',
  'girl_love_follow',
  'love_follow_week',
  'follow_week_ex',
  'week_ex_send',
  'ex_send_girl',
  'send_girl_home',
  'girl_home_could',
  'home_could_tell',
  'could_tell_mad',
  'tell_mad_say',
  'mad_say_anyth',
  'say_anyth_cloth',
  'anyth_cloth_return',
  'cloth_return_fear',
  'return_fear_knew',
  'fear_knew_would',
  'knew_would_issu',
  'would_issu_made',
  'issu_made_extra',
  'made_extra_girl',
  'extra_girl_went',
  'girl_went_back',
  'went_back_wear',
  'back_wear_tie',
  'wear_tie_dye',
  'tie_dye_dad',
  'dye_dad_hour',
  'dad_hour_call',
  'hour_call_demand',
  'call_demand_differ',
  'demand_differ_cloth',
  'differ_cloth_kindli',
  'cloth_kindli_told',
  'kindli_told_daughter',
  'told_daughter_love',
  'daughter_love_cloth',
  'love_cloth_realli',
  'cloth_realli_realli',
  'realli_realli_love',
  'realli_love_tie',
  'love_tie_dye',
  'tie_dye_ex',
  'dye_ex_get',
  'ex_get_even',
  'get_even_angrier',
  'even_angrier_said',
  'angrier_said_parent',
  'said_parent_major',
  'parent_major_famili',
  'major_famili_parti',
  'famili_parti_girl',
  'parti_girl_cant',
  'girl_cant_wear',
  'cant_wear_pink',
  'wear_pink_tie',
  'pink_tie_dye',
  'tie_dye_told',
  'dye_told_go',
  'told_go_buy',
  'go_buy_cloth',
  'buy_cloth_want',
  'cloth_want_wear',
  'want_wear_call',
  'wear_call_petti',
  'call_petti_aita',
  'petti_aita_edit',
  'aita_edit_add',
  'edit_add_thank',
  'add_thank_much',
  'thank_much_comment',
  'much_comment_thing',
  'comment_thing_clarifi',
  'thing_clarifi_ap',
  'clarifi_ap_stand',
  'ap_stand_affair',
  'stand_affair_partner',
  'affair_partner_past',
  'partner_past_tens',
  'past_tens_ex',
  'tens_ex_land',
  'ex_land_deed',
  'land_deed_titl',
  'deed_titl_trailer',
  'titl_trailer_sadli',
  'trailer_sadli_true',
  'sadli_true_stori',
  'true_stori_sorri',
  'stori_sorri_believ',
  'sorri_believ_time',
  'believ_time_heart',
  'time_heart_goe',
  'heart_goe_share',
  'goe_share_similar',
  'share_similar_stori',
  'similar_stori_thank',
  'stori_thank_love',
  'thank_love_support'],
 ['older',
  'brother',
  'ob',
  'bit',
  'bum',
  'mean',
  'say',
  'true',
  'never',
  'hang',
  'onto',
  'job',
  'longer',
  'coupl',
  'year',
  'max',
  'inevit',
  'lose',
  'whatev',
  'job',
  'start',
  'mooch',
  'famili',
  'friend',
  'find',
  'anoth',
  'job',
  'month',
  'later',
  'entail',
  'freeload',
  'place',
  'eat',
  'food',
  'use',
  'stuff',
  'etc',
  'lost',
  'friend',
  'long',
  'bum',
  'blame',
  'cut',
  'well',
  'last',
  'time',
  'lost',
  'job',
  'went',
  'parent',
  'room',
  'let',
  'eldest',
  'brother',
  'eb',
  'famili',
  'stay',
  'sil',
  'lost',
  'job',
  'nowher',
  'within',
  'month',
  'eb',
  'entir',
  'crew',
  'laid',
  'zero',
  'warn',
  'sil',
  'work',
  'burn',
  'afford',
  'home',
  'rent',
  'anymor',
  'ob',
  'pretti',
  'much',
  'sol',
  'parent',
  'aunt',
  'uncl',
  'start',
  'call',
  'ask',
  'id',
  'take',
  'long',
  'enough',
  'could',
  'get',
  'feet',
  'stupidli',
  'let',
  'feel',
  'bad',
  'said',
  'okay',
  'month',
  'get',
  'anoth',
  'job',
  'street',
  'said',
  'cours',
  'cours',
  'came',
  'stay',
  'nightmar',
  'slob',
  'never',
  'wash',
  'dish',
  'never',
  'wash',
  'cloth',
  'eat',
  'pretti',
  'much',
  'whatev',
  'want',
  'guess',
  'sinc',
  'im',
  'littl',
  'sister',
  'figur',
  'could',
  'ignor',
  'say',
  'get',
  'shit',
  'togeth',
  'well',
  'month',
  'told',
  'go',
  'gave',
  'coupl',
  'week',
  'find',
  'somewher',
  'els',
  'well',
  'seem',
  'call',
  'parent',
  'cri',
  'kick',
  'told',
  'knew',
  'stay',
  'forev',
  'also',
  'ofc',
  'call',
  'auntsuncl',
  'told',
  'busybodi',
  'aunt',
  'call',
  'scold',
  'cruel',
  'brother',
  'abandon',
  'famili',
  'need',
  'help',
  'let',
  'talk',
  'final',
  'said',
  'right',
  'help',
  'famili',
  'import',
  'im',
  'glad',
  'show',
  'seem',
  'glad',
  'understood',
  'right',
  'thing',
  'hang',
  'follow',
  'advic',
  'pack',
  'bro',
  'drove',
  'hous',
  'take',
  'care',
  'anymor',
  'run',
  'bill',
  'aunt',
  'made',
  'good',
  'point',
  'famili',
  'help',
  'drop',
  'room',
  'sinc',
  'kid',
  'move',
  'left',
  'even',
  'halfway',
  'home',
  'get',
  'multipl',
  'call',
  'parent',
  'aunt',
  'parent',
  'demand',
  'know',
  'aunt',
  'blow',
  'phone',
  'aunt',
  'leav',
  'voicemail',
  'shout',
  'come',
  'back',
  'get',
  'brother',
  'explain',
  'parent',
  'said',
  'good',
  'idea',
  'sinc',
  'aunt',
  'sound',
  'like',
  'want',
  'help',
  'aunt',
  'call',
  'asshol',
  'said',
  'want',
  'brother',
  'told',
  'famili',
  'help',
  'call',
  'cunt',
  'last',
  'check',
  'still',
  'live',
  'aita',
  '\\-',
  'sorri',
  'lack',
  'repli',
  'answer',
  'one',
  'could',
  'left',
  'work',
  'got',
  'back',
  'far',
  'mani',
  'answer',
  'lot',
  'peopl',
  'ask',
  'similar',
  'question',
  'thought',
  'answer',
  'would',
  'help',
  'brother',
  'work',
  'menial',
  'job',
  'hop',
  'one',
  'minimum',
  'wage',
  'job',
  'anoth',
  'work',
  'good',
  'pay',
  'job',
  'like',
  'electron',
  'repair',
  'automot',
  'mainten',
  'etc',
  'skill',
  'lazi',
  'aunt',
  'spoken',
  'sinc',
  'call',
  'cunt',
  'hung',
  'brother',
  '-ish',
  'week',
  'stay',
  '-',
  'month',
  'brother',
  'upset',
  'kick',
  'initi',
  'better',
  'mood',
  'realiz',
  'anoth',
  'place',
  'line',
  'stay',
  'sure',
  'theyr',
  'togeth',
  'sinc',
  'talk',
  'either',
  'sinc',
  'drop',
  'aunt',
  'marri',
  'anymor',
  'uncl',
  'got',
  'divorc',
  'live',
  'new',
  'wife',
  'heard',
  'dad',
  'thought',
  'hilari',
  '\\-',
  'edit',
  '-',
  'everyon',
  'hound',
  'pm',
  'comment',
  'brother',
  'last',
  'time',
  'check',
  'neurodiverg',
  'add',
  'adhd',
  'mom',
  'took',
  'doctor',
  'around',
  '-',
  'behavior',
  'worst',
  'accord',
  'mom',
  'doctor',
  'said',
  'perfectli',
  'healthi',
  'fine',
  'though',
  'doctor',
  'suggest',
  'mental',
  'stimul',
  'enough',
  'aka',
  'bore',
  'mom',
  'want',
  'take',
  'see',
  'doctor',
  'hed',
  'turn',
  'refus',
  'go',
  'forc',
  'also',
  'suggest',
  'mayb',
  'see',
  'doctor',
  'ob',
  'seem',
  'interest',
  'never',
  'highest',
  'respect',
  'doctor',
  'mental',
  'ill',
  'treat',
  'like',
  'fake',
  'babi',
  'sister',
  'diagnos',
  'ed',
  'crack',
  'joke',
  'want',
  'doctor',
  'note',
  'could',
  'eat',
  'older_brother',
  'brother_ob',
  'ob_bit',
  'bit_bum',
  'bum_mean',
  'mean_say',
  'say_true',
  'true_never',
  'never_hang',
  'hang_onto',
  'onto_job',
  'job_longer',
  'longer_coupl',
  'coupl_year',
  'year_max',
  'max_inevit',
  'inevit_lose',
  'lose_whatev',
  'whatev_job',
  'job_start',
  'start_mooch',
  'mooch_famili',
  'famili_friend',
  'friend_find',
  'find_anoth',
  'anoth_job',
  'job_month',
  'month_later',
  'later_entail',
  'entail_freeload',
  'freeload_place',
  'place_eat',
  'eat_food',
  'food_use',
  'use_stuff',
  'stuff_etc',
  'etc_lost',
  'lost_friend',
  'friend_long',
  'long_bum',
  'bum_blame',
  'blame_cut',
  'cut_well',
  'well_last',
  'last_time',
  'time_lost',
  'lost_job',
  'job_went',
  'went_parent',
  'parent_room',
  'room_let',
  'let_eldest',
  'eldest_brother',
  'brother_eb',
  'eb_famili',
  'famili_stay',
  'stay_sil',
  'sil_lost',
  'lost_job',
  'job_nowher',
  'nowher_within',
  'within_month',
  'month_eb',
  'eb_entir',
  'entir_crew',
  'crew_laid',
  'laid_zero',
  'zero_warn',
  'warn_sil',
  'sil_work',
  'work_burn',
  'burn_afford',
  'afford_home',
  'home_rent',
  'rent_anymor',
  'anymor_ob',
  'ob_pretti',
  'pretti_much',
  'much_sol',
  'sol_parent',
  'parent_aunt',
  'aunt_uncl',
  'uncl_start',
  'start_call',
  'call_ask',
  'ask_id',
  'id_take',
  'take_long',
  'long_enough',
  'enough_could',
  'could_get',
  'get_feet',
  'feet_stupidli',
  'stupidli_let',
  'let_feel',
  'feel_bad',
  'bad_said',
  'said_okay',
  'okay_month',
  'month_get',
  'get_anoth',
  'anoth_job',
  'job_street',
  'street_said',
  'said_cours',
  'cours_cours',
  'cours_came',
  'came_stay',
  'stay_nightmar',
  'nightmar_slob',
  'slob_never',
  'never_wash',
  'wash_dish',
  'dish_never',
  'never_wash',
  'wash_cloth',
  'cloth_eat',
  'eat_pretti',
  'pretti_much',
  'much_whatev',
  'whatev_want',
  'want_guess',
  'guess_sinc',
  'sinc_im',
  'im_littl',
  'littl_sister',
  'sister_figur',
  'figur_could',
  'could_ignor',
  'ignor_say',
  'say_get',
  'get_shit',
  'shit_togeth',
  'togeth_well',
  'well_month',
  'month_told',
  'told_go',
  'go_gave',
  'gave_coupl',
  'coupl_week',
  'week_find',
  'find_somewher',
  'somewher_els',
  'els_well',
  'well_seem',
  'seem_call',
  'call_parent',
  'parent_cri',
  'cri_kick',
  'kick_told',
  'told_knew',
  'knew_stay',
  'stay_forev',
  'forev_also',
  'also_ofc',
  'ofc_call',
  'call_auntsuncl',
  'auntsuncl_told',
  'told_busybodi',
  'busybodi_aunt',
  'aunt_call',
  'call_scold',
  'scold_cruel',
  'cruel_brother',
  'brother_abandon',
  'abandon_famili',
  'famili_need',
  'need_help',
  'help_let',
  'let_talk',
  'talk_final',
  'final_said',
  'said_right',
  'right_help',
  'help_famili',
  'famili_import',
  'import_im',
  'im_glad',
  'glad_show',
  'show_seem',
  'seem_glad',
  'glad_understood',
  'understood_right',
  'right_thing',
  'thing_hang',
  'hang_follow',
  'follow_advic',
  'advic_pack',
  'pack_bro',
  'bro_drove',
  'drove_hous',
  'hous_take',
  'take_care',
  'care_anymor',
  'anymor_run',
  'run_bill',
  'bill_aunt',
  'aunt_made',
  'made_good',
  'good_point',
  'point_famili',
  'famili_help',
  'help_drop',
  'drop_room',
  'room_sinc',
  'sinc_kid',
  'kid_move',
  'move_left',
  'left_even',
  'even_halfway',
  'halfway_home',
  'home_get',
  'get_multipl',
  'multipl_call',
  'call_parent',
  'parent_aunt',
  'aunt_parent',
  'parent_demand',
  'demand_know',
  'know_aunt',
  'aunt_blow',
  'blow_phone',
  'phone_aunt',
  'aunt_leav',
  'leav_voicemail',
  'voicemail_shout',
  'shout_come',
  'come_back',
  'back_get',
  'get_brother',
  'brother_explain',
  'explain_parent',
  'parent_said',
  'said_good',
  'good_idea',
  'idea_sinc',
  'sinc_aunt',
  'aunt_sound',
  'sound_like',
  'like_want',
  'want_help',
  'help_aunt',
  'aunt_call',
  'call_asshol',
  'asshol_said',
  'said_want',
  'want_brother',
  'brother_told',
  'told_famili',
  'famili_help',
  'help_call',
  'call_cunt',
  'cunt_last',
  'last_check',
  'check_still',
  'still_live',
  'live_aita',
  'aita_\\-',
  '\\-_sorri',
  'sorri_lack',
  'lack_repli',
  'repli_answer',
  'answer_one',
  'one_could',
  'could_left',
  'left_work',
  'work_got',
  'got_back',
  'back_far',
  'far_mani',
  'mani_answer',
  'answer_lot',
  'lot_peopl',
  'peopl_ask',
  'ask_similar',
  'similar_question',
  'question_thought',
  'thought_answer',
  'answer_would',
  'would_help',
  'help_brother',
  'brother_work',
  'work_menial',
  'menial_job',
  'job_hop',
  'hop_one',
  'one_minimum',
  'minimum_wage',
  'wage_job',
  'job_anoth',
  'anoth_work',
  'work_good',
  'good_pay',
  'pay_job',
  'job_like',
  'like_electron',
  'electron_repair',
  'repair_automot',
  'automot_mainten',
  'mainten_etc',
  'etc_skill',
  'skill_lazi',
  'lazi_aunt',
  'aunt_spoken',
  'spoken_sinc',
  'sinc_call',
  'call_cunt',
  'cunt_hung',
  'hung_brother',
  'brother_-ish',
  '-ish_week',
  'week_stay',
  'stay_-',
  '-_month',
  'month_brother',
  'brother_upset',
  'upset_kick',
  'kick_initi',
  'initi_better',
  'better_mood',
  'mood_realiz',
  'realiz_anoth',
  'anoth_place',
  'place_line',
  'line_stay',
  'stay_sure',
  'sure_theyr',
  'theyr_togeth',
  'togeth_sinc',
  'sinc_talk',
  'talk_either',
  'either_sinc',
  'sinc_drop',
  'drop_aunt',
  'aunt_marri',
  'marri_anymor',
  'anymor_uncl',
  'uncl_got',
  'got_divorc',
  'divorc_live',
  'live_new',
  'new_wife',
  'wife_heard',
  'heard_dad',
  'dad_thought',
  'thought_hilari',
  'hilari_\\-',
  '\\-_edit',
  'edit_-',
  '-_everyon',
  'everyon_hound',
  'hound_pm',
  'pm_comment',
  'comment_brother',
  'brother_last',
  'last_time',
  'time_check',
  'check_neurodiverg',
  'neurodiverg_add',
  'add_adhd',
  'adhd_mom',
  'mom_took',
  'took_doctor',
  'doctor_around',
  'around_-',
  '-_behavior',
  'behavior_worst',
  'worst_accord',
  'accord_mom',
  'mom_doctor',
  'doctor_said',
  'said_perfectli',
  'perfectli_healthi',
  'healthi_fine',
  'fine_though',
  'though_doctor',
  'doctor_suggest',
  'suggest_mental',
  'mental_stimul',
  'stimul_enough',
  'enough_aka',
  'aka_bore',
  'bore_mom',
  'mom_want',
  'want_take',
  'take_see',
  'see_doctor',
  'doctor_hed',
  'hed_turn',
  'turn_refus',
  'refus_go',
  'go_forc',
  'forc_also',
  'also_suggest',
  'suggest_mayb',
  'mayb_see',
  'see_doctor',
  'doctor_ob',
  'ob_seem',
  'seem_interest',
  'interest_never',
  'never_highest',
  'highest_respect',
  'respect_doctor',
  'doctor_mental',
  'mental_ill',
  'ill_treat',
  'treat_like',
  'like_fake',
  'fake_babi',
  'babi_sister',
  'sister_diagnos',
  'diagnos_ed',
  'ed_crack',
  'crack_joke',
  'joke_want',
  'want_doctor',
  'doctor_note',
  'note_could',
  'could_eat',
  'older_brother_ob',
  'brother_ob_bit',
  'ob_bit_bum',
  'bit_bum_mean',
  'bum_mean_say',
  'mean_say_true',
  'say_true_never',
  'true_never_hang',
  'never_hang_onto',
  'hang_onto_job',
  'onto_job_longer',
  'job_longer_coupl',
  'longer_coupl_year',
  'coupl_year_max',
  'year_max_inevit',
  'max_inevit_lose',
  'inevit_lose_whatev',
  'lose_whatev_job',
  'whatev_job_start',
  'job_start_mooch',
  'start_mooch_famili',
  'mooch_famili_friend',
  'famili_friend_find',
  'friend_find_anoth',
  'find_anoth_job',
  'anoth_job_month',
  'job_month_later',
  'month_later_entail',
  'later_entail_freeload',
  'entail_freeload_place',
  'freeload_place_eat',
  'place_eat_food',
  'eat_food_use',
  'food_use_stuff',
  'use_stuff_etc',
  'stuff_etc_lost',
  'etc_lost_friend',
  'lost_friend_long',
  'friend_long_bum',
  'long_bum_blame',
  'bum_blame_cut',
  'blame_cut_well',
  'cut_well_last',
  'well_last_time',
  'last_time_lost',
  'time_lost_job',
  'lost_job_went',
  'job_went_parent',
  'went_parent_room',
  'parent_room_let',
  'room_let_eldest',
  'let_eldest_brother',
  'eldest_brother_eb',
  'brother_eb_famili',
  'eb_famili_stay',
  'famili_stay_sil',
  'stay_sil_lost',
  'sil_lost_job',
  'lost_job_nowher',
  'job_nowher_within',
  'nowher_within_month',
  'within_month_eb',
  'month_eb_entir',
  'eb_entir_crew',
  'entir_crew_laid',
  'crew_laid_zero',
  'laid_zero_warn',
  'zero_warn_sil',
  'warn_sil_work',
  'sil_work_burn',
  'work_burn_afford',
  'burn_afford_home',
  'afford_home_rent',
  'home_rent_anymor',
  'rent_anymor_ob',
  'anymor_ob_pretti',
  'ob_pretti_much',
  'pretti_much_sol',
  'much_sol_parent',
  'sol_parent_aunt',
  'parent_aunt_uncl',
  'aunt_uncl_start',
  'uncl_start_call',
  'start_call_ask',
  'call_ask_id',
  'ask_id_take',
  'id_take_long',
  'take_long_enough',
  'long_enough_could',
  'enough_could_get',
  'could_get_feet',
  'get_feet_stupidli',
  'feet_stupidli_let',
  'stupidli_let_feel',
  'let_feel_bad',
  'feel_bad_said',
  'bad_said_okay',
  'said_okay_month',
  'okay_month_get',
  'month_get_anoth',
  'get_anoth_job',
  'anoth_job_street',
  'job_street_said',
  'street_said_cours',
  'said_cours_cours',
  'cours_cours_came',
  'cours_came_stay',
  'came_stay_nightmar',
  'stay_nightmar_slob',
  'nightmar_slob_never',
  'slob_never_wash',
  'never_wash_dish',
  'wash_dish_never',
  'dish_never_wash',
  'never_wash_cloth',
  'wash_cloth_eat',
  'cloth_eat_pretti',
  'eat_pretti_much',
  'pretti_much_whatev',
  'much_whatev_want',
  'whatev_want_guess',
  'want_guess_sinc',
  'guess_sinc_im',
  'sinc_im_littl',
  'im_littl_sister',
  'littl_sister_figur',
  'sister_figur_could',
  'figur_could_ignor',
  'could_ignor_say',
  'ignor_say_get',
  'say_get_shit',
  'get_shit_togeth',
  'shit_togeth_well',
  'togeth_well_month',
  'well_month_told',
  'month_told_go',
  'told_go_gave',
  'go_gave_coupl',
  'gave_coupl_week',
  'coupl_week_find',
  'week_find_somewher',
  'find_somewher_els',
  'somewher_els_well',
  'els_well_seem',
  'well_seem_call',
  'seem_call_parent',
  'call_parent_cri',
  'parent_cri_kick',
  'cri_kick_told',
  'kick_told_knew',
  'told_knew_stay',
  'knew_stay_forev',
  'stay_forev_also',
  'forev_also_ofc',
  'also_ofc_call',
  'ofc_call_auntsuncl',
  'call_auntsuncl_told',
  'auntsuncl_told_busybodi',
  'told_busybodi_aunt',
  ...],
 ['ill',
  'prefac',
  'say',
  'husband',
  'friend',
  'carl',
  'consid',
  'one',
  'closest',
  'friend',
  'husband',
  'sometim',
  'call',
  'carl',
  'nicotin',
  'much',
  'miss',
  'want',
  'spend',
  'time',
  'everyth',
  'togeth',
  'theyr',
  'even',
  'co',
  'worker',
  'work',
  'job',
  'unfortun',
  'carloss',
  'wife',
  'pass',
  'away',
  'cancer',
  'month',
  'ago',
  'caus',
  'distanc',
  'husband',
  'felt',
  'devast',
  'recent',
  'start',
  'spend',
  'time',
  'brought',
  'meal',
  'new',
  'cloth',
  'plan',
  'day',
  'vacat',
  'anoth',
  'state',
  'made',
  'hotel',
  'reserv',
  'unbeknownst',
  'husband',
  'invit',
  'carl',
  'come',
  'us',
  'made',
  'upset',
  'spoli',
  'entir',
  'vacat',
  'tri',
  'dramat',
  'found',
  'went',
  'pick',
  'suck',
  'husband',
  'explain',
  'carl',
  'recent',
  'widow',
  'wallow',
  'grief',
  'long',
  'need',
  'vacat',
  'problem',
  'money',
  'tight',
  'sinc',
  'carl',
  'work',
  'eversinc',
  'wife',
  'pass',
  'pay',
  'room',
  'budget',
  'husband',
  'said',
  'share',
  'one',
  'room',
  'suck',
  'sinc',
  'said',
  'wed',
  'day',
  'beach',
  'anyway',
  'first',
  'night',
  'bed',
  'husband',
  'carl',
  'got',
  'back',
  'got',
  'woken',
  'husband',
  'tell',
  'get',
  'bed',
  'sleep',
  'thd',
  'mattress',
  'put',
  'floor',
  'carl',
  'would',
  'take',
  'bed',
  'ask',
  'seriou',
  'ask',
  'els',
  'suppos',
  'said',
  'carl',
  'guest',
  'cant',
  'let',
  'sleep',
  'floor',
  'time',
  'cant',
  'share',
  'bed',
  'carl',
  'husband',
  'sleep',
  'floor',
  'told',
  'sign',
  'told',
  'suck',
  'tri',
  'pull',
  'carl',
  'widow',
  'card',
  'told',
  'carl',
  'get',
  'got',
  'got',
  'dress',
  'go',
  'home',
  'husband',
  'start',
  'yell',
  'call',
  'irrat',
  'left',
  'hotel',
  'travel',
  'back',
  'home',
  'carl',
  'say',
  'anyth',
  'saw',
  'leav',
  'except',
  'make',
  'non-issu',
  'issu',
  'got',
  'back',
  'husband',
  'refus',
  'even',
  'talk',
  'still',
  'said',
  'ruin',
  'carl',
  'us',
  'act',
  'abhorr',
  'disgustingli',
  'admit',
  'carl',
  'struggl',
  'mightv',
  'ruin',
  'even',
  'know',
  'come',
  'ill_prefac',
  'prefac_say',
  'say_husband',
  'husband_friend',
  'friend_carl',
  'carl_consid',
  'consid_one',
  'one_closest',
  'closest_friend',
  'friend_husband',
  'husband_sometim',
  'sometim_call',
  'call_carl',
  'carl_nicotin',
  'nicotin_much',
  'much_miss',
  'miss_want',
  'want_spend',
  'spend_time',
  'time_everyth',
  'everyth_togeth',
  'togeth_theyr',
  'theyr_even',
  'even_co',
  'co_worker',
  'worker_work',
  'work_job',
  'job_unfortun',
  'unfortun_carloss',
  'carloss_wife',
  'wife_pass',
  'pass_away',
  'away_cancer',
  'cancer_month',
  'month_ago',
  'ago_caus',
  'caus_distanc',
  'distanc_husband',
  'husband_felt',
  'felt_devast',
  'devast_recent',
  'recent_start',
  'start_spend',
  'spend_time',
  'time_brought',
  'brought_meal',
  'meal_new',
  'new_cloth',
  'cloth_plan',
  'plan_day',
  'day_vacat',
  'vacat_anoth',
  'anoth_state',
  'state_made',
  'made_hotel',
  'hotel_reserv',
  'reserv_unbeknownst',
  'unbeknownst_husband',
  'husband_invit',
  'invit_carl',
  'carl_come',
  'come_us',
  'us_made',
  'made_upset',
  'upset_spoli',
  'spoli_entir',
  'entir_vacat',
  'vacat_tri',
  'tri_dramat',
  'dramat_found',
  'found_went',
  'went_pick',
  'pick_suck',
  'suck_husband',
  'husband_explain',
  'explain_carl',
  'carl_recent',
  'recent_widow',
  'widow_wallow',
  'wallow_grief',
  'grief_long',
  'long_need',
  'need_vacat',
  'vacat_problem',
  'problem_money',
  'money_tight',
  'tight_sinc',
  'sinc_carl',
  'carl_work',
  'work_eversinc',
  'eversinc_wife',
  'wife_pass',
  'pass_pay',
  'pay_room',
  'room_budget',
  'budget_husband',
  'husband_said',
  'said_share',
  'share_one',
  'one_room',
  'room_suck',
  'suck_sinc',
  'sinc_said',
  'said_wed',
  'wed_day',
  'day_beach',
  'beach_anyway',
  'anyway_first',
  'first_night',
  'night_bed',
  'bed_husband',
  'husband_carl',
  'carl_got',
  'got_back',
  'back_got',
  'got_woken',
  'woken_husband',
  'husband_tell',
  'tell_get',
  'get_bed',
  'bed_sleep',
  'sleep_thd',
  'thd_mattress',
  'mattress_put',
  'put_floor',
  'floor_carl',
  'carl_would',
  'would_take',
  'take_bed',
  'bed_ask',
  'ask_seriou',
  'seriou_ask',
  'ask_els',
  'els_suppos',
  'suppos_said',
  'said_carl',
  'carl_guest',
  'guest_cant',
  'cant_let',
  'let_sleep',
  'sleep_floor',
  'floor_time',
  'time_cant',
  'cant_share',
  'share_bed',
  'bed_carl',
  'carl_husband',
  'husband_sleep',
  'sleep_floor',
  'floor_told',
  'told_sign',
  'sign_told',
  'told_suck',
  'suck_tri',
  'tri_pull',
  'pull_carl',
  'carl_widow',
  'widow_card',
  'card_told',
  'told_carl',
  'carl_get',
  'get_got',
  'got_got',
  'got_dress',
  'dress_go',
  'go_home',
  'home_husband',
  'husband_start',
  'start_yell',
  'yell_call',
  'call_irrat',
  'irrat_left',
  'left_hotel',
  'hotel_travel',
  'travel_back',
  'back_home',
  'home_carl',
  'carl_say',
  'say_anyth',
  'anyth_saw',
  'saw_leav',
  'leav_except',
  'except_make',
  'make_non-issu',
  'non-issu_issu',
  'issu_got',
  'got_back',
  'back_husband',
  'husband_refus',
  'refus_even',
  'even_talk',
  'talk_still',
  'still_said',
  'said_ruin',
  'ruin_carl',
  'carl_us',
  'us_act',
  'act_abhorr',
  'abhorr_disgustingli',
  'disgustingli_admit',
  'admit_carl',
  'carl_struggl',
  'struggl_mightv',
  'mightv_ruin',
  'ruin_even',
  'even_know',
  'know_come',
  'ill_prefac_say',
  'prefac_say_husband',
  'say_husband_friend',
  'husband_friend_carl',
  'friend_carl_consid',
  'carl_consid_one',
  'consid_one_closest',
  'one_closest_friend',
  'closest_friend_husband',
  'friend_husband_sometim',
  'husband_sometim_call',
  'sometim_call_carl',
  'call_carl_nicotin',
  'carl_nicotin_much',
  'nicotin_much_miss',
  'much_miss_want',
  'miss_want_spend',
  'want_spend_time',
  'spend_time_everyth',
  'time_everyth_togeth',
  'everyth_togeth_theyr',
  'togeth_theyr_even',
  'theyr_even_co',
  'even_co_worker',
  'co_worker_work',
  'worker_work_job',
  'work_job_unfortun',
  'job_unfortun_carloss',
  'unfortun_carloss_wife',
  'carloss_wife_pass',
  'wife_pass_away',
  'pass_away_cancer',
  'away_cancer_month',
  'cancer_month_ago',
  'month_ago_caus',
  'ago_caus_distanc',
  'caus_distanc_husband',
  'distanc_husband_felt',
  'husband_felt_devast',
  'felt_devast_recent',
  'devast_recent_start',
  'recent_start_spend',
  'start_spend_time',
  'spend_time_brought',
  'time_brought_meal',
  'brought_meal_new',
  'meal_new_cloth',
  'new_cloth_plan',
  'cloth_plan_day',
  'plan_day_vacat',
  'day_vacat_anoth',
  'vacat_anoth_state',
  'anoth_state_made',
  'state_made_hotel',
  'made_hotel_reserv',
  'hotel_reserv_unbeknownst',
  'reserv_unbeknownst_husband',
  'unbeknownst_husband_invit',
  'husband_invit_carl',
  'invit_carl_come',
  'carl_come_us',
  'come_us_made',
  'us_made_upset',
  'made_upset_spoli',
  'upset_spoli_entir',
  'spoli_entir_vacat',
  'entir_vacat_tri',
  'vacat_tri_dramat',
  'tri_dramat_found',
  'dramat_found_went',
  'found_went_pick',
  'went_pick_suck',
  'pick_suck_husband',
  'suck_husband_explain',
  'husband_explain_carl',
  'explain_carl_recent',
  'carl_recent_widow',
  'recent_widow_wallow',
  'widow_wallow_grief',
  'wallow_grief_long',
  'grief_long_need',
  'long_need_vacat',
  'need_vacat_problem',
  'vacat_problem_money',
  'problem_money_tight',
  'money_tight_sinc',
  'tight_sinc_carl',
  'sinc_carl_work',
  'carl_work_eversinc',
  'work_eversinc_wife',
  'eversinc_wife_pass',
  'wife_pass_pay',
  'pass_pay_room',
  'pay_room_budget',
  'room_budget_husband',
  'budget_husband_said',
  'husband_said_share',
  'said_share_one',
  'share_one_room',
  'one_room_suck',
  'room_suck_sinc',
  'suck_sinc_said',
  'sinc_said_wed',
  'said_wed_day',
  'wed_day_beach',
  'day_beach_anyway',
  'beach_anyway_first',
  'anyway_first_night',
  'first_night_bed',
  'night_bed_husband',
  'bed_husband_carl',
  'husband_carl_got',
  'carl_got_back',
  'got_back_got',
  'back_got_woken',
  'got_woken_husband',
  'woken_husband_tell',
  'husband_tell_get',
  'tell_get_bed',
  'get_bed_sleep',
  'bed_sleep_thd',
  'sleep_thd_mattress',
  'thd_mattress_put',
  'mattress_put_floor',
  'put_floor_carl',
  'floor_carl_would',
  'carl_would_take',
  'would_take_bed',
  'take_bed_ask',
  'bed_ask_seriou',
  'ask_seriou_ask',
  'seriou_ask_els',
  'ask_els_suppos',
  'els_suppos_said',
  'suppos_said_carl',
  'said_carl_guest',
  'carl_guest_cant',
  'guest_cant_let',
  'cant_let_sleep',
  'let_sleep_floor',
  'sleep_floor_time',
  'floor_time_cant',
  'time_cant_share',
  'cant_share_bed',
  'share_bed_carl',
  'bed_carl_husband',
  'carl_husband_sleep',
  'husband_sleep_floor',
  'sleep_floor_told',
  'floor_told_sign',
  'told_sign_told',
  'sign_told_suck',
  'told_suck_tri',
  'suck_tri_pull',
  'tri_pull_carl',
  'pull_carl_widow',
  'carl_widow_card',
  'widow_card_told',
  'card_told_carl',
  'told_carl_get',
  'carl_get_got',
  'get_got_got',
  'got_got_dress',
  'got_dress_go',
  'dress_go_home',
  'go_home_husband',
  'home_husband_start',
  'husband_start_yell',
  'start_yell_call',
  'yell_call_irrat',
  'call_irrat_left',
  'irrat_left_hotel',
  'left_hotel_travel',
  'hotel_travel_back',
  'travel_back_home',
  'back_home_carl',
  'home_carl_say',
  'carl_say_anyth',
  'say_anyth_saw',
  'anyth_saw_leav',
  'saw_leav_except',
  'leav_except_make',
  'except_make_non-issu',
  'make_non-issu_issu',
  'non-issu_issu_got',
  'issu_got_back',
  'got_back_husband',
  'back_husband_refus',
  'husband_refus_even',
  'refus_even_talk',
  'even_talk_still',
  'talk_still_said',
  'still_said_ruin',
  'said_ruin_carl',
  'ruin_carl_us',
  'carl_us_act',
  'us_act_abhorr',
  'act_abhorr_disgustingli',
  'abhorr_disgustingli_admit',
  'disgustingli_admit_carl',
  'admit_carl_struggl',
  'carl_struggl_mightv',
  'struggl_mightv_ruin',
  'mightv_ruin_even',
  'ruin_even_know',
  'even_know_come'],
 ['singl',
  'father',
  'boy',
  'mother',
  'die',
  'last',
  'year',
  'due',
  'ovarian',
  'cancer',
  'rough',
  'year',
  'say',
  'least',
  'sister',
  'got',
  'divorc',
  'month',
  'ago',
  'temporarili',
  'move',
  'boy',
  'son',
  'nephew',
  'stay',
  'us',
  'time',
  'nephew',
  'yro',
  'best',
  'friend',
  'far',
  'got',
  'along',
  'fine',
  'apart',
  'teas',
  'side',
  'week',
  'ago',
  'yro',
  'start',
  'tell',
  'cousin',
  'bulli',
  'mean',
  'call',
  'name',
  'push',
  'around',
  'took',
  'video',
  'game',
  'etc',
  'talk',
  'sister',
  'mani',
  'time',
  'told',
  'talk',
  'son',
  'talk',
  'boy',
  'togeth',
  'thing',
  'settl',
  'yesterday',
  'yro',
  'birthday',
  'whole',
  'famili',
  'late',
  'wife',
  'famili',
  'well',
  'extrem',
  'emot',
  'everyon',
  'first',
  'birthday',
  'sinc',
  'wife',
  'gone',
  'boy',
  'yro',
  'yro',
  'start',
  'fight',
  'ask',
  'calm',
  'behav',
  'son',
  'start',
  'cri',
  'told',
  'cousin',
  'teas',
  'mom',
  'choke',
  'ask',
  'nephew',
  'true',
  'said',
  'ye',
  'sorri',
  'figur',
  'id',
  'proper',
  'talk',
  'sister',
  'parti',
  'told',
  'said',
  'realli',
  'aw',
  'say',
  'comfort',
  'son',
  'went',
  'back',
  'parti',
  'cut',
  'cake',
  'sister',
  'came',
  'yell',
  'say',
  'bussineaa',
  'disciplin',
  'child',
  'told',
  'drop',
  'well',
  'talk',
  'later',
  'instead',
  'said',
  'besid',
  'right',
  'kid',
  'need',
  'mom',
  'tear',
  'eye',
  'time',
  'said',
  'see',
  'even',
  'turn',
  'pu',
  '*',
  '*',
  'in-law',
  'cri',
  'tear',
  'kid',
  'upset',
  'aw',
  'told',
  'stop',
  'leav',
  'kid',
  'famili',
  'cut',
  'cake',
  'talk',
  'even',
  'said',
  'listen',
  'lost',
  'spous',
  'least',
  'im',
  'still',
  'normal',
  'person',
  'storm',
  'parti',
  'told',
  'day',
  'pack',
  'shit',
  'leav',
  'beg',
  'throw',
  'kid',
  'homeless',
  'aita',
  'throw',
  'updat',
  'mom',
  'agre',
  'take',
  'sister',
  'temporarili',
  'nephew',
  'still',
  'go',
  'dad',
  'dad',
  'say',
  'way',
  'let',
  'sister',
  'ruin',
  'kid',
  'want',
  'thank',
  'kind',
  'word',
  'love',
  'support',
  'also',
  'everyon',
  'also',
  'share',
  'lose',
  'love',
  'one',
  'sorri',
  'loss',
  'nephew',
  'suppos',
  'leav',
  'tomorrow',
  'morn',
  'mom',
  'pick',
  'sister',
  'right',
  'around',
  'time',
  'inlaw',
  'bring',
  'boy',
  'back',
  'even',
  'well',
  'littl',
  'post-birhday',
  'thing',
  'littl',
  'one',
  'come',
  'boy',
  'inlaw',
  'ice',
  'cream',
  'said',
  'prefer',
  'cake',
  'cartoon',
  'one',
  'day',
  'time',
  'singl_father',
  'father_boy',
  'boy_mother',
  'mother_die',
  'die_last',
  'last_year',
  'year_due',
  'due_ovarian',
  'ovarian_cancer',
  'cancer_rough',
  'rough_year',
  'year_say',
  'say_least',
  'least_sister',
  'sister_got',
  'got_divorc',
  'divorc_month',
  'month_ago',
  'ago_temporarili',
  'temporarili_move',
  'move_boy',
  'boy_son',
  'son_nephew',
  'nephew_stay',
  'stay_us',
  'us_time',
  'time_nephew',
  'nephew_yro',
  'yro_best',
  'best_friend',
  'friend_far',
  'far_got',
  'got_along',
  'along_fine',
  'fine_apart',
  'apart_teas',
  'teas_side',
  'side_week',
  'week_ago',
  'ago_yro',
  'yro_start',
  'start_tell',
  'tell_cousin',
  'cousin_bulli',
  'bulli_mean',
  'mean_call',
  'call_name',
  'name_push',
  'push_around',
  'around_took',
  'took_video',
  'video_game',
  'game_etc',
  'etc_talk',
  'talk_sister',
  'sister_mani',
  'mani_time',
  'time_told',
  'told_talk',
  'talk_son',
  'son_talk',
  'talk_boy',
  'boy_togeth',
  'togeth_thing',
  'thing_settl',
  'settl_yesterday',
  'yesterday_yro',
  'yro_birthday',
  'birthday_whole',
  'whole_famili',
  'famili_late',
  'late_wife',
  'wife_famili',
  'famili_well',
  'well_extrem',
  'extrem_emot',
  'emot_everyon',
  'everyon_first',
  'first_birthday',
  'birthday_sinc',
  'sinc_wife',
  'wife_gone',
  'gone_boy',
  'boy_yro',
  'yro_yro',
  'yro_start',
  'start_fight',
  'fight_ask',
  'ask_calm',
  'calm_behav',
  'behav_son',
  'son_start',
  'start_cri',
  'cri_told',
  'told_cousin',
  'cousin_teas',
  'teas_mom',
  'mom_choke',
  'choke_ask',
  'ask_nephew',
  'nephew_true',
  'true_said',
  'said_ye',
  'ye_sorri',
  'sorri_figur',
  'figur_id',
  'id_proper',
  'proper_talk',
  'talk_sister',
  'sister_parti',
  'parti_told',
  'told_said',
  'said_realli',
  'realli_aw',
  'aw_say',
  'say_comfort',
  'comfort_son',
  'son_went',
  'went_back',
  'back_parti',
  'parti_cut',
  'cut_cake',
  'cake_sister',
  'sister_came',
  'came_yell',
  'yell_say',
  'say_bussineaa',
  'bussineaa_disciplin',
  'disciplin_child',
  'child_told',
  'told_drop',
  'drop_well',
  'well_talk',
  'talk_later',
  'later_instead',
  'instead_said',
  'said_besid',
  'besid_right',
  'right_kid',
  'kid_need',
  'need_mom',
  'mom_tear',
  'tear_eye',
  'eye_time',
  'time_said',
  'said_see',
  'see_even',
  'even_turn',
  'turn_pu',
  'pu_*',
  '*_*',
  '*_in-law',
  'in-law_cri',
  'cri_tear',
  'tear_kid',
  'kid_upset',
  'upset_aw',
  'aw_told',
  'told_stop',
  'stop_leav',
  'leav_kid',
  'kid_famili',
  'famili_cut',
  'cut_cake',
  'cake_talk',
  'talk_even',
  'even_said',
  'said_listen',
  'listen_lost',
  'lost_spous',
  'spous_least',
  'least_im',
  'im_still',
  'still_normal',
  'normal_person',
  'person_storm',
  'storm_parti',
  'parti_told',
  'told_day',
  'day_pack',
  'pack_shit',
  'shit_leav',
  'leav_beg',
  'beg_throw',
  'throw_kid',
  'kid_homeless',
  'homeless_aita',
  'aita_throw',
  'throw_updat',
  'updat_mom',
  'mom_agre',
  'agre_take',
  'take_sister',
  'sister_temporarili',
  'temporarili_nephew',
  'nephew_still',
  'still_go',
  'go_dad',
  'dad_dad',
  'dad_say',
  'say_way',
  'way_let',
  'let_sister',
  'sister_ruin',
  'ruin_kid',
  'kid_want',
  'want_thank',
  'thank_kind',
  'kind_word',
  'word_love',
  'love_support',
  'support_also',
  'also_everyon',
  'everyon_also',
  'also_share',
  'share_lose',
  'lose_love',
  'love_one',
  'one_sorri',
  'sorri_loss',
  'loss_nephew',
  'nephew_suppos',
  'suppos_leav',
  'leav_tomorrow',
  'tomorrow_morn',
  'morn_mom',
  'mom_pick',
  'pick_sister',
  'sister_right',
  'right_around',
  'around_time',
  'time_inlaw',
  'inlaw_bring',
  'bring_boy',
  'boy_back',
  'back_even',
  'even_well',
  'well_littl',
  'littl_post-birhday',
  'post-birhday_thing',
  'thing_littl',
  'littl_one',
  'one_come',
  'come_boy',
  'boy_inlaw',
  'inlaw_ice',
  'ice_cream',
  'cream_said',
  'said_prefer',
  'prefer_cake',
  'cake_cartoon',
  'cartoon_one',
  'one_day',
  'day_time',
  'singl_father_boy',
  'father_boy_mother',
  'boy_mother_die',
  'mother_die_last',
  'die_last_year',
  'last_year_due',
  'year_due_ovarian',
  'due_ovarian_cancer',
  'ovarian_cancer_rough',
  'cancer_rough_year',
  'rough_year_say',
  'year_say_least',
  'say_least_sister',
  'least_sister_got',
  'sister_got_divorc',
  'got_divorc_month',
  'divorc_month_ago',
  'month_ago_temporarili',
  'ago_temporarili_move',
  'temporarili_move_boy',
  'move_boy_son',
  'boy_son_nephew',
  'son_nephew_stay',
  'nephew_stay_us',
  'stay_us_time',
  'us_time_nephew',
  'time_nephew_yro',
  'nephew_yro_best',
  'yro_best_friend',
  'best_friend_far',
  'friend_far_got',
  'far_got_along',
  'got_along_fine',
  'along_fine_apart',
  'fine_apart_teas',
  'apart_teas_side',
  'teas_side_week',
  'side_week_ago',
  'week_ago_yro',
  'ago_yro_start',
  'yro_start_tell',
  'start_tell_cousin',
  'tell_cousin_bulli',
  'cousin_bulli_mean',
  'bulli_mean_call',
  'mean_call_name',
  'call_name_push',
  'name_push_around',
  'push_around_took',
  'around_took_video',
  'took_video_game',
  'video_game_etc',
  'game_etc_talk',
  'etc_talk_sister',
  'talk_sister_mani',
  'sister_mani_time',
  'mani_time_told',
  'time_told_talk',
  'told_talk_son',
  'talk_son_talk',
  'son_talk_boy',
  'talk_boy_togeth',
  'boy_togeth_thing',
  'togeth_thing_settl',
  'thing_settl_yesterday',
  'settl_yesterday_yro',
  'yesterday_yro_birthday',
  'yro_birthday_whole',
  'birthday_whole_famili',
  'whole_famili_late',
  'famili_late_wife',
  'late_wife_famili',
  'wife_famili_well',
  'famili_well_extrem',
  'well_extrem_emot',
  'extrem_emot_everyon',
  'emot_everyon_first',
  'everyon_first_birthday',
  'first_birthday_sinc',
  'birthday_sinc_wife',
  'sinc_wife_gone',
  'wife_gone_boy',
  'gone_boy_yro',
  'boy_yro_yro',
  'yro_yro_start',
  'yro_start_fight',
  'start_fight_ask',
  'fight_ask_calm',
  'ask_calm_behav',
  'calm_behav_son',
  'behav_son_start',
  'son_start_cri',
  'start_cri_told',
  'cri_told_cousin',
  'told_cousin_teas',
  'cousin_teas_mom',
  'teas_mom_choke',
  'mom_choke_ask',
  'choke_ask_nephew',
  'ask_nephew_true',
  'nephew_true_said',
  'true_said_ye',
  'said_ye_sorri',
  'ye_sorri_figur',
  'sorri_figur_id',
  'figur_id_proper',
  'id_proper_talk',
  'proper_talk_sister',
  'talk_sister_parti',
  'sister_parti_told',
  'parti_told_said',
  'told_said_realli',
  'said_realli_aw',
  'realli_aw_say',
  'aw_say_comfort',
  'say_comfort_son',
  'comfort_son_went',
  'son_went_back',
  'went_back_parti',
  'back_parti_cut',
  'parti_cut_cake',
  'cut_cake_sister',
  'cake_sister_came',
  'sister_came_yell',
  'came_yell_say',
  'yell_say_bussineaa',
  'say_bussineaa_disciplin',
  'bussineaa_disciplin_child',
  'disciplin_child_told',
  'child_told_drop',
  'told_drop_well',
  'drop_well_talk',
  'well_talk_later',
  'talk_later_instead',
  'later_instead_said',
  'instead_said_besid',
  'said_besid_right',
  'besid_right_kid',
  'right_kid_need',
  'kid_need_mom',
  'need_mom_tear',
  'mom_tear_eye',
  'tear_eye_time',
  'eye_time_said',
  'time_said_see',
  'said_see_even',
  'see_even_turn',
  'even_turn_pu',
  'turn_pu_*',
  'pu_*_*',
  '*_*_in-law',
  '*_in-law_cri',
  'in-law_cri_tear',
  'cri_tear_kid',
  'tear_kid_upset',
  'kid_upset_aw',
  'upset_aw_told',
  'aw_told_stop',
  'told_stop_leav',
  'stop_leav_kid',
  'leav_kid_famili',
  'kid_famili_cut',
  'famili_cut_cake',
  'cut_cake_talk',
  'cake_talk_even',
  'talk_even_said',
  'even_said_listen',
  'said_listen_lost',
  'listen_lost_spous',
  'lost_spous_least',
  'spous_least_im',
  'least_im_still',
  'im_still_normal',
  'still_normal_person',
  'normal_person_storm',
  'person_storm_parti',
  'storm_parti_told',
  'parti_told_day',
  'told_day_pack',
  'day_pack_shit',
  'pack_shit_leav',
  'shit_leav_beg',
  'leav_beg_throw',
  'beg_throw_kid',
  'throw_kid_homeless',
  'kid_homeless_aita',
  'homeless_aita_throw',
  'aita_throw_updat',
  'throw_updat_mom',
  'updat_mom_agre',
  'mom_agre_take',
  'agre_take_sister',
  'take_sister_temporarili',
  'sister_temporarili_nephew',
  'temporarili_nephew_still',
  'nephew_still_go',
  'still_go_dad',
  'go_dad_dad',
  'dad_dad_say',
  'dad_say_way',
  'say_way_let',
  'way_let_sister',
  'let_sister_ruin',
  'sister_ruin_kid',
  'ruin_kid_want',
  'kid_want_thank',
  'want_thank_kind',
  'thank_kind_word',
  'kind_word_love',
  'word_love_support',
  'love_support_also',
  'support_also_everyon',
  'also_everyon_also',
  'everyon_also_share',
  'also_share_lose',
  'share_lose_love',
  'lose_love_one',
  'love_one_sorri',
  'one_sorri_loss',
  'sorri_loss_nephew',
  'loss_nephew_suppos',
  'nephew_suppos_leav',
  'suppos_leav_tomorrow',
  'leav_tomorrow_morn',
  'tomorrow_morn_mom',
  'morn_mom_pick',
  'mom_pick_sister',
  'pick_sister_right',
  'sister_right_around',
  'right_around_time',
  'around_time_inlaw',
  'time_inlaw_bring',
  'inlaw_bring_boy',
  'bring_boy_back',
  'boy_back_even',
  'back_even_well',
  'even_well_littl',
  'well_littl_post-birhday',
  'littl_post-birhday_thing',
  'post-birhday_thing_littl',
  'thing_littl_one',
  'littl_one_come',
  'one_come_boy',
  'come_boy_inlaw',
  'boy_inlaw_ice',
  'inlaw_ice_cream',
  'ice_cream_said',
  'cream_said_prefer',
  'said_prefer_cake',
  'prefer_cake_cartoon',
  'cake_cartoon_one',
  'cartoon_one_day',
  'one_day_time'],
 ['husband',
  'marri',
  'year',
  'still',
  'kid',
  'want',
  'still',
  'happen',
  'friend',
  'famili',
  'caus',
  'us',
  'constant',
  'stress',
  'babi',
  'soon',
  'obvious',
  'someth',
  'cant',
  'control',
  'wish',
  'theyd',
  'stop',
  'avail',
  'come',
  'idea',
  'stupid',
  'know',
  'empti',
  'jar',
  'call',
  'pregnanc',
  'jar',
  'carri',
  'bag',
  'whenev',
  'im',
  'friend',
  'famili',
  'everytim',
  'someon',
  'ask',
  'husband',
  'gon',
  'na',
  'babi',
  'pull',
  'jar',
  'ask',
  'drop',
  'dollar',
  'ask',
  'id',
  'get',
  'puzzl',
  'look',
  'reach',
  'pocketswalletspurs',
  'pull',
  'dollar',
  'insid',
  'jar',
  'actual',
  'work',
  'thrm',
  'stop',
  'ask',
  'month',
  'last',
  'week',
  'dinner',
  'parent',
  'hous',
  'brother',
  'came',
  'back',
  'busi',
  'trip',
  'last',
  'month',
  'eat',
  'ask',
  'husband',
  'go',
  'kid',
  'husband',
  'paus',
  'got',
  'chair',
  'made',
  'way',
  'brother',
  'sit',
  'jar',
  'hand',
  'ask',
  'drop',
  'dollar',
  'question',
  'ask',
  'stare',
  'laugh',
  'nervous',
  'ask',
  'seriou',
  'everyon',
  'look',
  'us',
  'said',
  'pay',
  'told',
  'ask',
  'either',
  'could',
  'tell',
  'felt',
  'embarrass',
  'immedi',
  'reach',
  'pocket',
  'pull',
  'wallet',
  'put',
  'dollar',
  'jar',
  'made',
  'way',
  'back',
  'seat',
  'sat',
  'resum',
  'eat',
  'like',
  'noth',
  'happen',
  'got',
  'awkward',
  'afterward',
  'mom',
  'pull',
  'kitchen',
  'later',
  'tell',
  'embarrass',
  'brother',
  'infront',
  'wife',
  'famili',
  'said',
  'quit',
  'act',
  'childish',
  'run',
  'around',
  'jar',
  'demand',
  'put',
  'money',
  'told',
  'quit',
  'ask',
  'went',
  'theyr',
  'worri',
  'us',
  'sinc',
  'mid',
  'much',
  'time',
  'left',
  'want',
  'least',
  'one',
  'healthi',
  'babi',
  'got',
  'upset',
  'start',
  'argu',
  'husband',
  'left',
  'seen',
  'day',
  'except',
  'got',
  'call',
  'sister',
  'basic',
  'side',
  'mom',
  'say',
  'im',
  'childish',
  'aita',
  '[',
  'edit',
  '-',
  '&',
  ']',
  'go',
  'year',
  'past',
  'year',
  'gotten',
  'wors',
  'alreadi',
  'told',
  'feel',
  'regard',
  'question',
  'husband',
  'care',
  'much',
  'say',
  'let',
  'go',
  'ye',
  'pay',
  'everytim',
  'dollar',
  'make',
  'richer',
  'poorer',
  'husband',
  'spend',
  'money',
  'snack',
  'eat',
  'everi',
  'night',
  'watch',
  'tv',
  'toy',
  'dog',
  'one',
  'thing',
  'realiz',
  'could',
  'actual',
  'expand',
  'wed',
  'jarcak',
  'jar',
  'weight',
  'losswork',
  'jarhous',
  'jar',
  'depend',
  'type',
  'truggl',
  'thing',
  'struggl',
  'get',
  'frustrat',
  'often',
  'fact',
  'peopl',
  'keep',
  'ask',
  'might',
  'becom',
  'millionair',
  'one',
  'day',
  'lol',
  'also',
  'someon',
  'suggest',
  'price',
  '$',
  'mostli',
  'depend',
  'price',
  'ga',
  'lol',
  'well',
  'see',
  'husband_marri',
  'marri_year',
  'year_still',
  'still_kid',
  'kid_want',
  'want_still',
  'still_happen',
  'happen_friend',
  'friend_famili',
  'famili_caus',
  'caus_us',
  'us_constant',
  'constant_stress',
  'stress_babi',
  'babi_soon',
  'soon_obvious',
  'obvious_someth',
  'someth_cant',
  'cant_control',
  'control_wish',
  'wish_theyd',
  'theyd_stop',
  'stop_avail',
  'avail_come',
  'come_idea',
  'idea_stupid',
  'stupid_know',
  'know_empti',
  'empti_jar',
  'jar_call',
  'call_pregnanc',
  'pregnanc_jar',
  'jar_carri',
  'carri_bag',
  'bag_whenev',
  'whenev_im',
  'im_friend',
  'friend_famili',
  'famili_everytim',
  'everytim_someon',
  'someon_ask',
  'ask_husband',
  'husband_gon',
  'gon_na',
  'na_babi',
  'babi_pull',
  'pull_jar',
  'jar_ask',
  'ask_drop',
  'drop_dollar',
  'dollar_ask',
  'ask_id',
  'id_get',
  'get_puzzl',
  'puzzl_look',
  'look_reach',
  'reach_pocketswalletspurs',
  'pocketswalletspurs_pull',
  'pull_dollar',
  'dollar_insid',
  'insid_jar',
  'jar_actual',
  'actual_work',
  'work_thrm',
  'thrm_stop',
  'stop_ask',
  'ask_month',
  'month_last',
  'last_week',
  'week_dinner',
  'dinner_parent',
  'parent_hous',
  'hous_brother',
  'brother_came',
  'came_back',
  'back_busi',
  'busi_trip',
  'trip_last',
  'last_month',
  'month_eat',
  'eat_ask',
  'ask_husband',
  'husband_go',
  'go_kid',
  'kid_husband',
  'husband_paus',
  'paus_got',
  'got_chair',
  'chair_made',
  'made_way',
  'way_brother',
  'brother_sit',
  'sit_jar',
  'jar_hand',
  'hand_ask',
  'ask_drop',
  'drop_dollar',
  'dollar_question',
  'question_ask',
  'ask_stare',
  'stare_laugh',
  'laugh_nervous',
  'nervous_ask',
  'ask_seriou',
  'seriou_everyon',
  'everyon_look',
  'look_us',
  'us_said',
  'said_pay',
  'pay_told',
  'told_ask',
  'ask_either',
  'either_could',
  'could_tell',
  'tell_felt',
  'felt_embarrass',
  'embarrass_immedi',
  'immedi_reach',
  'reach_pocket',
  'pocket_pull',
  'pull_wallet',
  'wallet_put',
  'put_dollar',
  'dollar_jar',
  'jar_made',
  'made_way',
  'way_back',
  'back_seat',
  'seat_sat',
  'sat_resum',
  'resum_eat',
  'eat_like',
  'like_noth',
  'noth_happen',
  'happen_got',
  'got_awkward',
  'awkward_afterward',
  'afterward_mom',
  'mom_pull',
  'pull_kitchen',
  'kitchen_later',
  'later_tell',
  'tell_embarrass',
  'embarrass_brother',
  'brother_infront',
  'infront_wife',
  'wife_famili',
  'famili_said',
  'said_quit',
  'quit_act',
  'act_childish',
  'childish_run',
  'run_around',
  'around_jar',
  'jar_demand',
  'demand_put',
  'put_money',
  'money_told',
  'told_quit',
  'quit_ask',
  'ask_went',
  'went_theyr',
  'theyr_worri',
  'worri_us',
  'us_sinc',
  'sinc_mid',
  'mid_much',
  'much_time',
  'time_left',
  'left_want',
  'want_least',
  'least_one',
  'one_healthi',
  'healthi_babi',
  'babi_got',
  'got_upset',
  'upset_start',
  'start_argu',
  'argu_husband',
  'husband_left',
  'left_seen',
  'seen_day',
  'day_except',
  'except_got',
  'got_call',
  'call_sister',
  'sister_basic',
  'basic_side',
  'side_mom',
  'mom_say',
  'say_im',
  'im_childish',
  'childish_aita',
  'aita_[',
  '[_edit',
  'edit_-',
  '-_&',
  '&_]',
  ']_go',
  'go_year',
  'year_past',
  'past_year',
  'year_gotten',
  'gotten_wors',
  'wors_alreadi',
  'alreadi_told',
  'told_feel',
  'feel_regard',
  'regard_question',
  'question_husband',
  'husband_care',
  'care_much',
  'much_say',
  'say_let',
  'let_go',
  'go_ye',
  'ye_pay',
  'pay_everytim',
  'everytim_dollar',
  'dollar_make',
  'make_richer',
  'richer_poorer',
  'poorer_husband',
  'husband_spend',
  'spend_money',
  'money_snack',
  'snack_eat',
  'eat_everi',
  'everi_night',
  'night_watch',
  'watch_tv',
  'tv_toy',
  'toy_dog',
  'dog_one',
  'one_thing',
  'thing_realiz',
  'realiz_could',
  'could_actual',
  'actual_expand',
  'expand_wed',
  'wed_jarcak',
  'jarcak_jar',
  'jar_weight',
  'weight_losswork',
  'losswork_jarhous',
  'jarhous_jar',
  'jar_depend',
  'depend_type',
  'type_truggl',
  'truggl_thing',
  'thing_struggl',
  'struggl_get',
  'get_frustrat',
  'frustrat_often',
  'often_fact',
  'fact_peopl',
  'peopl_keep',
  'keep_ask',
  'ask_might',
  'might_becom',
  'becom_millionair',
  'millionair_one',
  'one_day',
  'day_lol',
  'lol_also',
  'also_someon',
  'someon_suggest',
  'suggest_price',
  'price_$',
  '$_mostli',
  'mostli_depend',
  'depend_price',
  'price_ga',
  'ga_lol',
  'lol_well',
  'well_see',
  'husband_marri_year',
  'marri_year_still',
  'year_still_kid',
  'still_kid_want',
  'kid_want_still',
  'want_still_happen',
  'still_happen_friend',
  'happen_friend_famili',
  'friend_famili_caus',
  'famili_caus_us',
  'caus_us_constant',
  'us_constant_stress',
  'constant_stress_babi',
  'stress_babi_soon',
  'babi_soon_obvious',
  'soon_obvious_someth',
  'obvious_someth_cant',
  'someth_cant_control',
  'cant_control_wish',
  'control_wish_theyd',
  'wish_theyd_stop',
  'theyd_stop_avail',
  'stop_avail_come',
  'avail_come_idea',
  'come_idea_stupid',
  'idea_stupid_know',
  'stupid_know_empti',
  'know_empti_jar',
  'empti_jar_call',
  'jar_call_pregnanc',
  'call_pregnanc_jar',
  'pregnanc_jar_carri',
  'jar_carri_bag',
  'carri_bag_whenev',
  'bag_whenev_im',
  'whenev_im_friend',
  'im_friend_famili',
  'friend_famili_everytim',
  'famili_everytim_someon',
  'everytim_someon_ask',
  'someon_ask_husband',
  'ask_husband_gon',
  'husband_gon_na',
  'gon_na_babi',
  'na_babi_pull',
  'babi_pull_jar',
  'pull_jar_ask',
  'jar_ask_drop',
  'ask_drop_dollar',
  'drop_dollar_ask',
  'dollar_ask_id',
  'ask_id_get',
  'id_get_puzzl',
  'get_puzzl_look',
  'puzzl_look_reach',
  'look_reach_pocketswalletspurs',
  'reach_pocketswalletspurs_pull',
  'pocketswalletspurs_pull_dollar',
  'pull_dollar_insid',
  'dollar_insid_jar',
  'insid_jar_actual',
  'jar_actual_work',
  'actual_work_thrm',
  'work_thrm_stop',
  'thrm_stop_ask',
  'stop_ask_month',
  'ask_month_last',
  'month_last_week',
  'last_week_dinner',
  'week_dinner_parent',
  'dinner_parent_hous',
  'parent_hous_brother',
  'hous_brother_came',
  'brother_came_back',
  'came_back_busi',
  'back_busi_trip',
  'busi_trip_last',
  'trip_last_month',
  'last_month_eat',
  'month_eat_ask',
  'eat_ask_husband',
  'ask_husband_go',
  'husband_go_kid',
  'go_kid_husband',
  'kid_husband_paus',
  'husband_paus_got',
  'paus_got_chair',
  'got_chair_made',
  'chair_made_way',
  'made_way_brother',
  'way_brother_sit',
  'brother_sit_jar',
  'sit_jar_hand',
  'jar_hand_ask',
  'hand_ask_drop',
  'ask_drop_dollar',
  'drop_dollar_question',
  'dollar_question_ask',
  'question_ask_stare',
  'ask_stare_laugh',
  'stare_laugh_nervous',
  'laugh_nervous_ask',
  'nervous_ask_seriou',
  'ask_seriou_everyon',
  'seriou_everyon_look',
  'everyon_look_us',
  'look_us_said',
  'us_said_pay',
  'said_pay_told',
  'pay_told_ask',
  'told_ask_either',
  'ask_either_could',
  'either_could_tell',
  'could_tell_felt',
  'tell_felt_embarrass',
  'felt_embarrass_immedi',
  'embarrass_immedi_reach',
  'immedi_reach_pocket',
  'reach_pocket_pull',
  'pocket_pull_wallet',
  'pull_wallet_put',
  'wallet_put_dollar',
  'put_dollar_jar',
  'dollar_jar_made',
  'jar_made_way',
  'made_way_back',
  'way_back_seat',
  'back_seat_sat',
  'seat_sat_resum',
  'sat_resum_eat',
  'resum_eat_like',
  'eat_like_noth',
  'like_noth_happen',
  'noth_happen_got',
  'happen_got_awkward',
  'got_awkward_afterward',
  'awkward_afterward_mom',
  'afterward_mom_pull',
  'mom_pull_kitchen',
  'pull_kitchen_later',
  'kitchen_later_tell',
  'later_tell_embarrass',
  'tell_embarrass_brother',
  'embarrass_brother_infront',
  'brother_infront_wife',
  'infront_wife_famili',
  'wife_famili_said',
  'famili_said_quit',
  'said_quit_act',
  'quit_act_childish',
  'act_childish_run',
  'childish_run_around',
  'run_around_jar',
  'around_jar_demand',
  'jar_demand_put',
  'demand_put_money',
  'put_money_told',
  'money_told_quit',
  'told_quit_ask',
  'quit_ask_went',
  'ask_went_theyr',
  'went_theyr_worri',
  'theyr_worri_us',
  'worri_us_sinc',
  'us_sinc_mid',
  'sinc_mid_much',
  'mid_much_time',
  'much_time_left',
  'time_left_want',
  'left_want_least',
  'want_least_one',
  'least_one_healthi',
  'one_healthi_babi',
  'healthi_babi_got',
  'babi_got_upset',
  'got_upset_start',
  'upset_start_argu',
  'start_argu_husband',
  'argu_husband_left',
  'husband_left_seen',
  'left_seen_day',
  'seen_day_except',
  'day_except_got',
  'except_got_call',
  'got_call_sister',
  'call_sister_basic',
  'sister_basic_side',
  'basic_side_mom',
  'side_mom_say',
  'mom_say_im',
  'say_im_childish',
  'im_childish_aita',
  'childish_aita_[',
  'aita_[_edit',
  '[_edit_-',
  'edit_-_&',
  '-_&_]',
  '&_]_go',
  ']_go_year',
  'go_year_past',
  'year_past_year',
  'past_year_gotten',
  'year_gotten_wors',
  'gotten_wors_alreadi',
  'wors_alreadi_told',
  'alreadi_told_feel',
  'told_feel_regard',
  'feel_regard_question',
  'regard_question_husband',
  'question_husband_care',
  'husband_care_much',
  'care_much_say',
  'much_say_let',
  'say_let_go',
  'let_go_ye',
  'go_ye_pay',
  'ye_pay_everytim',
  'pay_everytim_dollar',
  'everytim_dollar_make',
  'dollar_make_richer',
  'make_richer_poorer',
  'richer_poorer_husband',
  'poorer_husband_spend',
  'husband_spend_money',
  'spend_money_snack',
  'money_snack_eat',
  'snack_eat_everi',
  'eat_everi_night',
  'everi_night_watch',
  'night_watch_tv',
  'watch_tv_toy',
  'tv_toy_dog',
  'toy_dog_one',
  'dog_one_thing',
  'one_thing_realiz',
  'thing_realiz_could',
  'realiz_could_actual',
  'could_actual_expand',
  'actual_expand_wed',
  'expand_wed_jarcak',
  'wed_jarcak_jar',
  'jarcak_jar_weight',
  'jar_weight_losswork',
  'weight_losswork_jarhous',
  'losswork_jarhous_jar',
  'jarhous_jar_depend',
  'jar_depend_type',
  'depend_type_truggl',
  'type_truggl_thing',
  'truggl_thing_struggl',
  'thing_struggl_get',
  'struggl_get_frustrat',
  'get_frustrat_often',
  'frustrat_often_fact',
  'often_fact_peopl',
  'fact_peopl_keep',
  'peopl_keep_ask',
  'keep_ask_might',
  'ask_might_becom',
  'might_becom_millionair',
  'becom_millionair_one',
  'millionair_one_day',
  'one_day_lol',
  'day_lol_also',
  'lol_also_someon',
  'also_someon_suggest',
  'someon_suggest_price',
  'suggest_price_$',
  'price_$_mostli',
  '$_mostli_depend',
  'mostli_depend_price',
  'depend_price_ga',
  'price_ga_lol',
  'ga_lol_well',
  'lol_well_see'],
 ['context',
  'year',
  'first',
  'time',
  'would',
  'tri',
  'elf',
  'shelf',
  'kid',
  'kid',
  'luca',
  'andi',
  'clair',
  'luca',
  'andi',
  'past',
  'relationship',
  'howev',
  'mile',
  'husband',
  'accept',
  'andi',
  'luca',
  'everi',
  'christma',
  'special',
  'andi',
  'bd',
  'dec',
  'dad',
  'start',
  'tradit',
  'santa',
  'wouldv',
  'consider',
  'kid',
  'christma',
  'feel',
  'magic',
  'special',
  'alway',
  'tri',
  'give',
  'last',
  'year',
  'left',
  'santa',
  'clau',
  'footstep',
  'ate',
  'carrot',
  'grass',
  'left',
  'rudolf',
  'stuff',
  'like',
  'husband',
  'think',
  'good',
  'idea',
  'im',
  'show',
  'favorit',
  'shut',
  'ex',
  'decis',
  'creat',
  'tradit',
  'without',
  'consid',
  'kid',
  'feel',
  'disagre',
  'sinc',
  'consid',
  'ask',
  'could',
  'smth',
  'els',
  'like',
  'elf',
  'shelf',
  'problem',
  'know',
  'work',
  'explain',
  'quickli',
  'sinc',
  'one',
  'offer',
  'let',
  'bought',
  'cute',
  'elf',
  'kid',
  'name',
  'bob',
  'later',
  'husband',
  'explain',
  'behav',
  'never',
  'touchhold',
  'bob',
  'want',
  'naughti',
  'first',
  'cute',
  'see',
  'spi',
  'bob',
  'tri',
  'see',
  'fli',
  'night',
  'andi',
  'excit',
  'found',
  'one',
  'night',
  'talk',
  'ask',
  'santa',
  'still',
  'rememb',
  'husband',
  'took',
  'serious',
  'behav',
  'bob',
  'would',
  'naughti',
  'part',
  'luca',
  'first',
  'victim',
  'chore',
  'next',
  'day',
  'face',
  'drawn',
  'sharpi',
  'marker',
  'clair',
  'touch',
  'bob',
  'fave',
  'onesi',
  'destroy',
  'appar',
  'bob',
  'cut',
  'piec',
  'sleep',
  'mile',
  'fun',
  'could',
  'see',
  'kid',
  'talk',
  'lower',
  'prank',
  'agre',
  'want',
  'catch',
  'andi',
  'sinc',
  'break',
  'rule',
  'told',
  'bob',
  'suppos',
  'tell',
  'santa',
  'instead',
  'naughti',
  'argu',
  'final',
  'agre',
  'fast',
  'forward',
  'christma',
  'eve',
  'afternoon',
  'andi',
  'friend',
  'celebr',
  'bd',
  'kid',
  'play',
  'backyard',
  'husband',
  'look',
  'su',
  'decid',
  'look',
  'bob',
  'suppos',
  'kitchen',
  'ask',
  'mile',
  'told',
  'idea',
  'start',
  'get',
  'paranoid',
  'andi',
  'ask',
  'could',
  'cut',
  'cake',
  'alreadi',
  'put',
  'best',
  'face',
  'went',
  'cake',
  'box',
  'andi',
  'open',
  'box',
  'start',
  'cri',
  'take',
  'look',
  'ruin',
  'bob',
  'cover',
  'appear',
  'eat',
  'cake',
  'half',
  'cake',
  'anymor',
  'mile',
  'start',
  'laugh',
  'parent',
  'blood',
  'boil',
  'grab',
  'bob',
  'throw',
  'trash',
  'grab',
  'mile',
  'terribl',
  'argument',
  'call',
  'ah',
  'bob',
  'ive',
  'ruin',
  'suppos',
  'keep',
  'magic',
  'kid',
  'suppos',
  'touch',
  'bob',
  'edit',
  'everyon',
  'respons',
  'realli',
  'overwhelm',
  'im',
  'sorri',
  'took',
  'time',
  'answer',
  'kinda',
  'avoid',
  'post',
  'sinc',
  'conflict',
  'possibl',
  'outcom',
  'im',
  'go',
  'comment',
  'answer',
  'question',
  'id',
  'also',
  'explain',
  'thing',
  'doubt',
  'common',
  '-andi',
  'dad',
  'canada',
  'visit',
  'andi',
  'everi',
  'spring',
  'summer',
  'christma',
  'break',
  'year',
  'stay',
  'job',
  'absent',
  'parent',
  '-after',
  'andi',
  'bd',
  'told',
  'mile',
  'get',
  'hous',
  'spent',
  'christma',
  'law',
  'stay',
  'kid',
  'slept',
  'andi',
  'room',
  'kid',
  'want',
  'leav',
  'brother',
  'alon',
  'next',
  'morn',
  'open',
  'gift',
  'made',
  'sure',
  'andi',
  'could',
  'feel',
  'special',
  'happen',
  'bd',
  'wrote',
  'note',
  'bob',
  'say',
  'sorri',
  'scare',
  'sibl',
  'job',
  'correctli',
  'would',
  'fli',
  'np',
  'santa',
  'ask',
  'santa',
  'still',
  'rememb',
  'kid',
  'xma',
  'santa',
  'realli',
  'happi',
  'see',
  '-mi',
  'kid',
  'ok',
  'sleep',
  'parent',
  'hous',
  'would',
  'celebr',
  'nye',
  '-ye',
  'clair',
  'usign',
  'onesi',
  'sleep',
  'husband',
  'took',
  'idea',
  'tik',
  'tok',
  'andi',
  'noth',
  'even',
  'attack',
  'bob',
  'context_year',
  'year_first',
  'first_time',
  'time_would',
  'would_tri',
  'tri_elf',
  'elf_shelf',
  'shelf_kid',
  'kid_kid',
  'kid_luca',
  'luca_andi',
  'andi_clair',
  'clair_luca',
  'luca_andi',
  'andi_past',
  'past_relationship',
  'relationship_howev',
  'howev_mile',
  'mile_husband',
  'husband_accept',
  'accept_andi',
  'andi_luca',
  'luca_everi',
  'everi_christma',
  'christma_special',
  'special_andi',
  'andi_bd',
  'bd_dec',
  'dec_dad',
  'dad_start',
  'start_tradit',
  'tradit_santa',
  'santa_wouldv',
  'wouldv_consider',
  'consider_kid',
  'kid_christma',
  'christma_feel',
  'feel_magic',
  'magic_special',
  'special_alway',
  'alway_tri',
  'tri_give',
  'give_last',
  'last_year',
  'year_left',
  'left_santa',
  'santa_clau',
  'clau_footstep',
  'footstep_ate',
  'ate_carrot',
  'carrot_grass',
  'grass_left',
  'left_rudolf',
  'rudolf_stuff',
  'stuff_like',
  'like_husband',
  'husband_think',
  'think_good',
  'good_idea',
  'idea_im',
  'im_show',
  'show_favorit',
  'favorit_shut',
  'shut_ex',
  'ex_decis',
  'decis_creat',
  'creat_tradit',
  'tradit_without',
  'without_consid',
  'consid_kid',
  'kid_feel',
  'feel_disagre',
  'disagre_sinc',
  'sinc_consid',
  'consid_ask',
  'ask_could',
  'could_smth',
  'smth_els',
  'els_like',
  'like_elf',
  'elf_shelf',
  'shelf_problem',
  'problem_know',
  'know_work',
  'work_explain',
  'explain_quickli',
  'quickli_sinc',
  'sinc_one',
  'one_offer',
  'offer_let',
  'let_bought',
  'bought_cute',
  'cute_elf',
  'elf_kid',
  'kid_name',
  'name_bob',
  'bob_later',
  'later_husband',
  'husband_explain',
  'explain_behav',
  'behav_never',
  'never_touchhold',
  'touchhold_bob',
  'bob_want',
  'want_naughti',
  'naughti_first',
  'first_cute',
  'cute_see',
  'see_spi',
  'spi_bob',
  'bob_tri',
  'tri_see',
  'see_fli',
  'fli_night',
  'night_andi',
  'andi_excit',
  'excit_found',
  'found_one',
  'one_night',
  'night_talk',
  'talk_ask',
  'ask_santa',
  'santa_still',
  'still_rememb',
  'rememb_husband',
  'husband_took',
  'took_serious',
  'serious_behav',
  'behav_bob',
  'bob_would',
  'would_naughti',
  'naughti_part',
  'part_luca',
  'luca_first',
  'first_victim',
  'victim_chore',
  'chore_next',
  'next_day',
  'day_face',
  'face_drawn',
  'drawn_sharpi',
  'sharpi_marker',
  'marker_clair',
  'clair_touch',
  'touch_bob',
  'bob_fave',
  'fave_onesi',
  'onesi_destroy',
  'destroy_appar',
  'appar_bob',
  'bob_cut',
  'cut_piec',
  'piec_sleep',
  'sleep_mile',
  'mile_fun',
  'fun_could',
  'could_see',
  'see_kid',
  'kid_talk',
  'talk_lower',
  'lower_prank',
  'prank_agre',
  'agre_want',
  'want_catch',
  'catch_andi',
  'andi_sinc',
  'sinc_break',
  'break_rule',
  'rule_told',
  'told_bob',
  'bob_suppos',
  'suppos_tell',
  'tell_santa',
  'santa_instead',
  'instead_naughti',
  'naughti_argu',
  'argu_final',
  'final_agre',
  'agre_fast',
  'fast_forward',
  'forward_christma',
  'christma_eve',
  'eve_afternoon',
  'afternoon_andi',
  'andi_friend',
  'friend_celebr',
  'celebr_bd',
  'bd_kid',
  'kid_play',
  'play_backyard',
  'backyard_husband',
  'husband_look',
  'look_su',
  'su_decid',
  'decid_look',
  'look_bob',
  'bob_suppos',
  'suppos_kitchen',
  'kitchen_ask',
  'ask_mile',
  'mile_told',
  'told_idea',
  'idea_start',
  'start_get',
  'get_paranoid',
  'paranoid_andi',
  'andi_ask',
  'ask_could',
  'could_cut',
  'cut_cake',
  'cake_alreadi',
  'alreadi_put',
  'put_best',
  'best_face',
  'face_went',
  'went_cake',
  'cake_box',
  'box_andi',
  'andi_open',
  'open_box',
  'box_start',
  'start_cri',
  'cri_take',
  'take_look',
  'look_ruin',
  'ruin_bob',
  'bob_cover',
  'cover_appear',
  'appear_eat',
  'eat_cake',
  'cake_half',
  'half_cake',
  'cake_anymor',
  'anymor_mile',
  'mile_start',
  'start_laugh',
  'laugh_parent',
  'parent_blood',
  'blood_boil',
  'boil_grab',
  'grab_bob',
  'bob_throw',
  'throw_trash',
  'trash_grab',
  'grab_mile',
  'mile_terribl',
  'terribl_argument',
  'argument_call',
  'call_ah',
  'ah_bob',
  'bob_ive',
  'ive_ruin',
  'ruin_suppos',
  'suppos_keep',
  'keep_magic',
  'magic_kid',
  'kid_suppos',
  'suppos_touch',
  'touch_bob',
  'bob_edit',
  'edit_everyon',
  'everyon_respons',
  'respons_realli',
  'realli_overwhelm',
  'overwhelm_im',
  'im_sorri',
  'sorri_took',
  'took_time',
  'time_answer',
  'answer_kinda',
  'kinda_avoid',
  'avoid_post',
  'post_sinc',
  'sinc_conflict',
  'conflict_possibl',
  'possibl_outcom',
  'outcom_im',
  'im_go',
  'go_comment',
  'comment_answer',
  'answer_question',
  'question_id',
  'id_also',
  'also_explain',
  'explain_thing',
  'thing_doubt',
  'doubt_common',
  'common_-andi',
  '-andi_dad',
  'dad_canada',
  'canada_visit',
  'visit_andi',
  'andi_everi',
  'everi_spring',
  'spring_summer',
  'summer_christma',
  'christma_break',
  'break_year',
  'year_stay',
  'stay_job',
  'job_absent',
  'absent_parent',
  'parent_-after',
  '-after_andi',
  'andi_bd',
  'bd_told',
  'told_mile',
  'mile_get',
  'get_hous',
  'hous_spent',
  'spent_christma',
  'christma_law',
  'law_stay',
  'stay_kid',
  'kid_slept',
  'slept_andi',
  'andi_room',
  'room_kid',
  'kid_want',
  'want_leav',
  'leav_brother',
  'brother_alon',
  'alon_next',
  'next_morn',
  'morn_open',
  'open_gift',
  'gift_made',
  'made_sure',
  'sure_andi',
  'andi_could',
  'could_feel',
  'feel_special',
  'special_happen',
  'happen_bd',
  'bd_wrote',
  'wrote_note',
  'note_bob',
  'bob_say',
  'say_sorri',
  'sorri_scare',
  'scare_sibl',
  'sibl_job',
  'job_correctli',
  'correctli_would',
  'would_fli',
  'fli_np',
  'np_santa',
  'santa_ask',
  'ask_santa',
  'santa_still',
  'still_rememb',
  'rememb_kid',
  'kid_xma',
  'xma_santa',
  'santa_realli',
  'realli_happi',
  'happi_see',
  'see_-mi',
  '-mi_kid',
  'kid_ok',
  'ok_sleep',
  'sleep_parent',
  'parent_hous',
  'hous_would',
  'would_celebr',
  'celebr_nye',
  'nye_-ye',
  '-ye_clair',
  'clair_usign',
  'usign_onesi',
  'onesi_sleep',
  'sleep_husband',
  'husband_took',
  'took_idea',
  'idea_tik',
  'tik_tok',
  'tok_andi',
  'andi_noth',
  'noth_even',
  'even_attack',
  'attack_bob',
  'context_year_first',
  'year_first_time',
  'first_time_would',
  'time_would_tri',
  'would_tri_elf',
  'tri_elf_shelf',
  'elf_shelf_kid',
  'shelf_kid_kid',
  'kid_kid_luca',
  'kid_luca_andi',
  'luca_andi_clair',
  'andi_clair_luca',
  'clair_luca_andi',
  'luca_andi_past',
  'andi_past_relationship',
  'past_relationship_howev',
  'relationship_howev_mile',
  'howev_mile_husband',
  'mile_husband_accept',
  'husband_accept_andi',
  'accept_andi_luca',
  'andi_luca_everi',
  'luca_everi_christma',
  'everi_christma_special',
  'christma_special_andi',
  'special_andi_bd',
  'andi_bd_dec',
  'bd_dec_dad',
  'dec_dad_start',
  'dad_start_tradit',
  'start_tradit_santa',
  'tradit_santa_wouldv',
  'santa_wouldv_consider',
  'wouldv_consider_kid',
  'consider_kid_christma',
  'kid_christma_feel',
  'christma_feel_magic',
  'feel_magic_special',
  'magic_special_alway',
  'special_alway_tri',
  'alway_tri_give',
  'tri_give_last',
  'give_last_year',
  'last_year_left',
  'year_left_santa',
  'left_santa_clau',
  'santa_clau_footstep',
  'clau_footstep_ate',
  'footstep_ate_carrot',
  'ate_carrot_grass',
  'carrot_grass_left',
  'grass_left_rudolf',
  'left_rudolf_stuff',
  'rudolf_stuff_like',
  'stuff_like_husband',
  'like_husband_think',
  'husband_think_good',
  'think_good_idea',
  'good_idea_im',
  'idea_im_show',
  'im_show_favorit',
  'show_favorit_shut',
  'favorit_shut_ex',
  'shut_ex_decis',
  'ex_decis_creat',
  'decis_creat_tradit',
  'creat_tradit_without',
  'tradit_without_consid',
  'without_consid_kid',
  'consid_kid_feel',
  'kid_feel_disagre',
  'feel_disagre_sinc',
  'disagre_sinc_consid',
  'sinc_consid_ask',
  'consid_ask_could',
  'ask_could_smth',
  'could_smth_els',
  'smth_els_like',
  'els_like_elf',
  'like_elf_shelf',
  'elf_shelf_problem',
  'shelf_problem_know',
  'problem_know_work',
  'know_work_explain',
  'work_explain_quickli',
  'explain_quickli_sinc',
  'quickli_sinc_one',
  'sinc_one_offer',
  'one_offer_let',
  'offer_let_bought',
  'let_bought_cute',
  'bought_cute_elf',
  'cute_elf_kid',
  'elf_kid_name',
  'kid_name_bob',
  'name_bob_later',
  'bob_later_husband',
  'later_husband_explain',
  'husband_explain_behav',
  'explain_behav_never',
  'behav_never_touchhold',
  'never_touchhold_bob',
  'touchhold_bob_want',
  'bob_want_naughti',
  'want_naughti_first',
  'naughti_first_cute',
  'first_cute_see',
  'cute_see_spi',
  'see_spi_bob',
  'spi_bob_tri',
  'bob_tri_see',
  'tri_see_fli',
  'see_fli_night',
  'fli_night_andi',
  'night_andi_excit',
  'andi_excit_found',
  'excit_found_one',
  'found_one_night',
  'one_night_talk',
  'night_talk_ask',
  'talk_ask_santa',
  'ask_santa_still',
  'santa_still_rememb',
  'still_rememb_husband',
  'rememb_husband_took',
  'husband_took_serious',
  'took_serious_behav',
  'serious_behav_bob',
  'behav_bob_would',
  'bob_would_naughti',
  'would_naughti_part',
  'naughti_part_luca',
  'part_luca_first',
  'luca_first_victim',
  'first_victim_chore',
  'victim_chore_next',
  'chore_next_day',
  'next_day_face',
  'day_face_drawn',
  'face_drawn_sharpi',
  'drawn_sharpi_marker',
  'sharpi_marker_clair',
  'marker_clair_touch',
  'clair_touch_bob',
  'touch_bob_fave',
  'bob_fave_onesi',
  'fave_onesi_destroy',
  'onesi_destroy_appar',
  'destroy_appar_bob',
  'appar_bob_cut',
  'bob_cut_piec',
  'cut_piec_sleep',
  'piec_sleep_mile',
  'sleep_mile_fun',
  'mile_fun_could',
  'fun_could_see',
  'could_see_kid',
  'see_kid_talk',
  'kid_talk_lower',
  'talk_lower_prank',
  'lower_prank_agre',
  'prank_agre_want',
  'agre_want_catch',
  'want_catch_andi',
  'catch_andi_sinc',
  'andi_sinc_break',
  'sinc_break_rule',
  'break_rule_told',
  'rule_told_bob',
  'told_bob_suppos',
  'bob_suppos_tell',
  'suppos_tell_santa',
  'tell_santa_instead',
  'santa_instead_naughti',
  'instead_naughti_argu',
  'naughti_argu_final',
  'argu_final_agre',
  'final_agre_fast',
  'agre_fast_forward',
  'fast_forward_christma',
  'forward_christma_eve',
  'christma_eve_afternoon',
  'eve_afternoon_andi',
  'afternoon_andi_friend',
  'andi_friend_celebr',
  'friend_celebr_bd',
  'celebr_bd_kid',
  'bd_kid_play',
  'kid_play_backyard',
  'play_backyard_husband',
  'backyard_husband_look',
  'husband_look_su',
  'look_su_decid',
  'su_decid_look',
  'decid_look_bob',
  'look_bob_suppos',
  'bob_suppos_kitchen',
  'suppos_kitchen_ask',
  'kitchen_ask_mile',
  'ask_mile_told',
  'mile_told_idea',
  'told_idea_start',
  'idea_start_get',
  'start_get_paranoid',
  'get_paranoid_andi',
  'paranoid_andi_ask',
  'andi_ask_could',
  'ask_could_cut',
  'could_cut_cake',
  'cut_cake_alreadi',
  'cake_alreadi_put',
  'alreadi_put_best',
  'put_best_face',
  'best_face_went',
  'face_went_cake',
  'went_cake_box',
  'cake_box_andi',
  'box_andi_open',
  'andi_open_box',
  'open_box_start',
  'box_start_cri',
  'start_cri_take',
  'cri_take_look',
  'take_look_ruin',
  'look_ruin_bob',
  'ruin_bob_cover',
  'bob_cover_appear',
  'cover_appear_eat',
  'appear_eat_cake',
  'eat_cake_half',
  'cake_half_cake',
  'half_cake_anymor',
  'cake_anymor_mile',
  'anymor_mile_start',
  'mile_start_laugh',
  'start_laugh_parent',
  'laugh_parent_blood',
  ...],
 ['pretti',
  'much',
  'titl',
  'think',
  'ive',
  'get',
  'flack',
  'realli',
  'want',
  'clear',
  'start',
  'new',
  'job',
  'recent',
  'work',
  'small',
  'studio',
  'sever',
  'build',
  'think',
  'open',
  'plan',
  'offic',
  'section',
  'assign',
  'studio',
  'person',
  'alterc',
  'work',
  'studio',
  'fyi',
  'eat',
  'lunch',
  'ish',
  'peopl',
  'eat',
  'came',
  'ealri',
  'eat',
  'made',
  'coffe',
  'counter',
  'notic',
  'tuppawar',
  'sink',
  'empti',
  'imagin',
  'surpris',
  'turn',
  'around',
  'saw',
  'man',
  'know',
  'sit',
  'tabl',
  'food',
  'plate',
  'stuck',
  'microwav',
  'act',
  'rashli',
  'sinc',
  'mad',
  'sat',
  'next',
  'said',
  'hey',
  'look',
  'good',
  'mind',
  'tri',
  'wait',
  'answer',
  'yank',
  'plate',
  'away',
  'snatch',
  'fork',
  'hand',
  'blink',
  'shock',
  'peopl',
  'start',
  'eat',
  'quit',
  'loudli',
  'ask',
  'thought',
  'repli',
  'huh',
  'know',
  'actual',
  'much',
  'better',
  'first',
  'cook',
  'probabl',
  'lost',
  'flavor',
  'fridg',
  'caught',
  'quickli',
  'food',
  'went',
  'lil',
  'red',
  'ask',
  'got',
  'gall',
  'steal',
  'someon',
  'els',
  'lunch',
  'ask',
  'took',
  'back',
  'stutter',
  'nonsens',
  'know',
  'mine',
  'repli',
  'well',
  'knew',
  'right',
  'mumbl',
  'someth',
  'like',
  'apolog',
  'said',
  'problem',
  'nice',
  'hed',
  'warm',
  'least',
  'admittedli',
  '*',
  'tchi',
  'tone',
  'got',
  'left',
  'peopl',
  'stare',
  'silenc',
  'silent',
  'watcher',
  'mayb',
  'mate',
  'idk',
  'told',
  'rude',
  'nicer',
  'way',
  'go',
  'told',
  'think',
  'theyd',
  'feel',
  'someon',
  'ate',
  'food',
  'say',
  'focu',
  'lunch',
  'ill',
  'focu',
  'mine',
  'well',
  'littl',
  'awkward',
  'lunch',
  'sinc',
  'impress',
  'peopl',
  'talk',
  'shite',
  'work',
  'mayb',
  'couldv',
  'nicer',
  'sure',
  'still',
  'think',
  'wrong',
  'tell',
  'reddit',
  'aita',
  'tldr',
  'lunchthief',
  'tri',
  'eat',
  'food',
  'front',
  'took',
  'back',
  'embarrass',
  'front',
  'colleagu',
  'edit',
  'okay',
  'blew',
  'want',
  'drop',
  'edit',
  'say',
  'thank',
  'much',
  'comment',
  'support',
  'award',
  'great',
  'know',
  'complet',
  'overreact',
  'mayb',
  'shoudl',
  'chat',
  'tp',
  'peopl',
  'see',
  'food',
  'thief',
  'struck',
  'updat',
  'yall',
  'interest',
  'otherwis',
  'addit',
  'info',
  'saw',
  'comment',
  'say',
  'go',
  'hr',
  'studio',
  'hr',
  'perp',
  'work',
  'place',
  'defacto',
  'offic',
  'manag',
  'want',
  'take',
  'sinc',
  'im',
  'still',
  'new',
  'probationthink',
  'reaction',
  'might',
  'enough',
  'updat',
  'sure',
  'anyon',
  'want',
  'updat',
  'final',
  'found',
  'new',
  'friend',
  'work',
  'ye',
  'lunch',
  'thief',
  'struck',
  'appar',
  'everyon',
  'wrote',
  'name',
  'lunch',
  'combat',
  'thief',
  'target',
  'unmark',
  'lunch',
  'lunch',
  'item',
  'guess',
  'one',
  'told',
  'peopl',
  'appar',
  'start',
  'petti',
  'standoff-ish',
  'thief',
  'sinc',
  'blame',
  'lol',
  'also',
  'accord',
  'new',
  'friend',
  'actual',
  'pleas',
  'thief',
  'final',
  'identifieddealt',
  'assur',
  'besid',
  'thief',
  'question',
  'croni',
  'one',
  'thought',
  '*',
  'tch',
  'howev',
  'know',
  'much',
  'assum',
  'seriou',
  'clique-',
  'person',
  'reaction',
  'mean',
  'fair',
  'dress',
  'profession',
  'offic',
  'dress',
  'quit',
  'casual',
  'probabl',
  'ad',
  'think',
  'high',
  'heel',
  'blous',
  'skirt',
  'vs',
  'short',
  'graphic',
  'tee',
  'slop',
  'ive',
  'start',
  'come',
  'lunch',
  'earlier',
  'chat',
  'peopl',
  'offic',
  'seem',
  'warm',
  'drama',
  'fill',
  'updat',
  'im',
  'happi',
  'thing',
  'turn',
  'well',
  'reput',
  'colleagu',
  'good',
  'start',
  'thank',
  'comment',
  'support',
  'think',
  'final',
  'edit',
  'slash',
  'updat',
  'thank',
  'reddit',
  'pretti_much',
  'much_titl',
  'titl_think',
  'think_ive',
  'ive_get',
  'get_flack',
  'flack_realli',
  'realli_want',
  'want_clear',
  'clear_start',
  'start_new',
  'new_job',
  'job_recent',
  'recent_work',
  'work_small',
  'small_studio',
  'studio_sever',
  'sever_build',
  'build_think',
  'think_open',
  'open_plan',
  'plan_offic',
  'offic_section',
  'section_assign',
  'assign_studio',
  'studio_person',
  'person_alterc',
  'alterc_work',
  'work_studio',
  'studio_fyi',
  'fyi_eat',
  'eat_lunch',
  'lunch_ish',
  'ish_peopl',
  'peopl_eat',
  'eat_came',
  'came_ealri',
  'ealri_eat',
  'eat_made',
  'made_coffe',
  'coffe_counter',
  'counter_notic',
  'notic_tuppawar',
  'tuppawar_sink',
  'sink_empti',
  'empti_imagin',
  'imagin_surpris',
  'surpris_turn',
  'turn_around',
  'around_saw',
  'saw_man',
  'man_know',
  'know_sit',
  'sit_tabl',
  'tabl_food',
  'food_plate',
  'plate_stuck',
  'stuck_microwav',
  'microwav_act',
  'act_rashli',
  'rashli_sinc',
  'sinc_mad',
  'mad_sat',
  'sat_next',
  'next_said',
  'said_hey',
  'hey_look',
  'look_good',
  'good_mind',
  'mind_tri',
  'tri_wait',
  'wait_answer',
  'answer_yank',
  'yank_plate',
  'plate_away',
  'away_snatch',
  'snatch_fork',
  'fork_hand',
  'hand_blink',
  'blink_shock',
  'shock_peopl',
  'peopl_start',
  'start_eat',
  'eat_quit',
  'quit_loudli',
  'loudli_ask',
  'ask_thought',
  'thought_repli',
  'repli_huh',
  'huh_know',
  'know_actual',
  'actual_much',
  'much_better',
  'better_first',
  'first_cook',
  'cook_probabl',
  'probabl_lost',
  'lost_flavor',
  'flavor_fridg',
  'fridg_caught',
  'caught_quickli',
  'quickli_food',
  'food_went',
  'went_lil',
  'lil_red',
  'red_ask',
  'ask_got',
  'got_gall',
  'gall_steal',
  'steal_someon',
  'someon_els',
  'els_lunch',
  'lunch_ask',
  'ask_took',
  'took_back',
  'back_stutter',
  'stutter_nonsens',
  'nonsens_know',
  'know_mine',
  'mine_repli',
  'repli_well',
  'well_knew',
  'knew_right',
  'right_mumbl',
  'mumbl_someth',
  'someth_like',
  'like_apolog',
  'apolog_said',
  'said_problem',
  'problem_nice',
  'nice_hed',
  'hed_warm',
  'warm_least',
  'least_admittedli',
  'admittedli_*',
  '*_tchi',
  'tchi_tone',
  'tone_got',
  'got_left',
  'left_peopl',
  'peopl_stare',
  'stare_silenc',
  'silenc_silent',
  'silent_watcher',
  'watcher_mayb',
  'mayb_mate',
  'mate_idk',
  'idk_told',
  'told_rude',
  'rude_nicer',
  'nicer_way',
  'way_go',
  'go_told',
  'told_think',
  'think_theyd',
  'theyd_feel',
  'feel_someon',
  'someon_ate',
  'ate_food',
  'food_say',
  'say_focu',
  'focu_lunch',
  'lunch_ill',
  'ill_focu',
  'focu_mine',
  'mine_well',
  'well_littl',
  'littl_awkward',
  'awkward_lunch',
  'lunch_sinc',
  'sinc_impress',
  'impress_peopl',
  'peopl_talk',
  'talk_shite',
  'shite_work',
  'work_mayb',
  'mayb_couldv',
  'couldv_nicer',
  'nicer_sure',
  'sure_still',
  'still_think',
  'think_wrong',
  'wrong_tell',
  'tell_reddit',
  'reddit_aita',
  'aita_tldr',
  'tldr_lunchthief',
  'lunchthief_tri',
  'tri_eat',
  'eat_food',
  'food_front',
  'front_took',
  'took_back',
  'back_embarrass',
  'embarrass_front',
  'front_colleagu',
  'colleagu_edit',
  'edit_okay',
  'okay_blew',
  'blew_want',
  'want_drop',
  'drop_edit',
  'edit_say',
  'say_thank',
  'thank_much',
  'much_comment',
  'comment_support',
  'support_award',
  'award_great',
  'great_know',
  'know_complet',
  'complet_overreact',
  'overreact_mayb',
  'mayb_shoudl',
  'shoudl_chat',
  'chat_tp',
  'tp_peopl',
  'peopl_see',
  'see_food',
  'food_thief',
  'thief_struck',
  'struck_updat',
  'updat_yall',
  'yall_interest',
  'interest_otherwis',
  'otherwis_addit',
  'addit_info',
  'info_saw',
  'saw_comment',
  'comment_say',
  'say_go',
  'go_hr',
  'hr_studio',
  'studio_hr',
  'hr_perp',
  'perp_work',
  'work_place',
  'place_defacto',
  'defacto_offic',
  'offic_manag',
  'manag_want',
  'want_take',
  'take_sinc',
  'sinc_im',
  'im_still',
  'still_new',
  'new_probationthink',
  'probationthink_reaction',
  'reaction_might',
  'might_enough',
  'enough_updat',
  'updat_sure',
  'sure_anyon',
  'anyon_want',
  'want_updat',
  'updat_final',
  'final_found',
  'found_new',
  'new_friend',
  'friend_work',
  'work_ye',
  'ye_lunch',
  'lunch_thief',
  'thief_struck',
  'struck_appar',
  'appar_everyon',
  'everyon_wrote',
  'wrote_name',
  'name_lunch',
  'lunch_combat',
  'combat_thief',
  'thief_target',
  'target_unmark',
  'unmark_lunch',
  'lunch_lunch',
  'lunch_item',
  'item_guess',
  'guess_one',
  'one_told',
  'told_peopl',
  'peopl_appar',
  'appar_start',
  'start_petti',
  'petti_standoff-ish',
  'standoff-ish_thief',
  'thief_sinc',
  'sinc_blame',
  'blame_lol',
  'lol_also',
  'also_accord',
  'accord_new',
  'new_friend',
  'friend_actual',
  'actual_pleas',
  'pleas_thief',
  'thief_final',
  'final_identifieddealt',
  'identifieddealt_assur',
  'assur_besid',
  'besid_thief',
  'thief_question',
  'question_croni',
  'croni_one',
  'one_thought',
  'thought_*',
  '*_tch',
  'tch_howev',
  'howev_know',
  'know_much',
  'much_assum',
  'assum_seriou',
  'seriou_clique-',
  'clique-_person',
  'person_reaction',
  'reaction_mean',
  'mean_fair',
  'fair_dress',
  'dress_profession',
  'profession_offic',
  'offic_dress',
  'dress_quit',
  'quit_casual',
  'casual_probabl',
  'probabl_ad',
  'ad_think',
  'think_high',
  'high_heel',
  'heel_blous',
  'blous_skirt',
  'skirt_vs',
  'vs_short',
  'short_graphic',
  'graphic_tee',
  'tee_slop',
  'slop_ive',
  'ive_start',
  'start_come',
  'come_lunch',
  'lunch_earlier',
  'earlier_chat',
  'chat_peopl',
  'peopl_offic',
  'offic_seem',
  'seem_warm',
  'warm_drama',
  'drama_fill',
  'fill_updat',
  'updat_im',
  'im_happi',
  'happi_thing',
  'thing_turn',
  'turn_well',
  'well_reput',
  'reput_colleagu',
  'colleagu_good',
  'good_start',
  'start_thank',
  'thank_comment',
  'comment_support',
  'support_think',
  'think_final',
  'final_edit',
  'edit_slash',
  'slash_updat',
  'updat_thank',
  'thank_reddit',
  'pretti_much_titl',
  'much_titl_think',
  'titl_think_ive',
  'think_ive_get',
  'ive_get_flack',
  'get_flack_realli',
  'flack_realli_want',
  'realli_want_clear',
  'want_clear_start',
  'clear_start_new',
  'start_new_job',
  'new_job_recent',
  'job_recent_work',
  'recent_work_small',
  'work_small_studio',
  'small_studio_sever',
  'studio_sever_build',
  'sever_build_think',
  'build_think_open',
  'think_open_plan',
  'open_plan_offic',
  'plan_offic_section',
  'offic_section_assign',
  'section_assign_studio',
  'assign_studio_person',
  'studio_person_alterc',
  'person_alterc_work',
  'alterc_work_studio',
  'work_studio_fyi',
  'studio_fyi_eat',
  'fyi_eat_lunch',
  'eat_lunch_ish',
  'lunch_ish_peopl',
  'ish_peopl_eat',
  'peopl_eat_came',
  'eat_came_ealri',
  'came_ealri_eat',
  'ealri_eat_made',
  'eat_made_coffe',
  'made_coffe_counter',
  'coffe_counter_notic',
  'counter_notic_tuppawar',
  'notic_tuppawar_sink',
  'tuppawar_sink_empti',
  'sink_empti_imagin',
  'empti_imagin_surpris',
  'imagin_surpris_turn',
  'surpris_turn_around',
  'turn_around_saw',
  'around_saw_man',
  'saw_man_know',
  'man_know_sit',
  'know_sit_tabl',
  'sit_tabl_food',
  'tabl_food_plate',
  'food_plate_stuck',
  'plate_stuck_microwav',
  'stuck_microwav_act',
  'microwav_act_rashli',
  'act_rashli_sinc',
  'rashli_sinc_mad',
  'sinc_mad_sat',
  'mad_sat_next',
  'sat_next_said',
  'next_said_hey',
  'said_hey_look',
  'hey_look_good',
  'look_good_mind',
  'good_mind_tri',
  'mind_tri_wait',
  'tri_wait_answer',
  'wait_answer_yank',
  'answer_yank_plate',
  'yank_plate_away',
  'plate_away_snatch',
  'away_snatch_fork',
  'snatch_fork_hand',
  'fork_hand_blink',
  'hand_blink_shock',
  'blink_shock_peopl',
  'shock_peopl_start',
  'peopl_start_eat',
  'start_eat_quit',
  'eat_quit_loudli',
  'quit_loudli_ask',
  'loudli_ask_thought',
  'ask_thought_repli',
  'thought_repli_huh',
  'repli_huh_know',
  'huh_know_actual',
  'know_actual_much',
  'actual_much_better',
  'much_better_first',
  'better_first_cook',
  'first_cook_probabl',
  'cook_probabl_lost',
  'probabl_lost_flavor',
  'lost_flavor_fridg',
  'flavor_fridg_caught',
  'fridg_caught_quickli',
  'caught_quickli_food',
  'quickli_food_went',
  'food_went_lil',
  'went_lil_red',
  'lil_red_ask',
  'red_ask_got',
  'ask_got_gall',
  'got_gall_steal',
  'gall_steal_someon',
  'steal_someon_els',
  'someon_els_lunch',
  'els_lunch_ask',
  'lunch_ask_took',
  'ask_took_back',
  'took_back_stutter',
  'back_stutter_nonsens',
  'stutter_nonsens_know',
  'nonsens_know_mine',
  'know_mine_repli',
  'mine_repli_well',
  'repli_well_knew',
  'well_knew_right',
  'knew_right_mumbl',
  'right_mumbl_someth',
  'mumbl_someth_like',
  'someth_like_apolog',
  'like_apolog_said',
  'apolog_said_problem',
  'said_problem_nice',
  'problem_nice_hed',
  'nice_hed_warm',
  'hed_warm_least',
  'warm_least_admittedli',
  'least_admittedli_*',
  'admittedli_*_tchi',
  '*_tchi_tone',
  'tchi_tone_got',
  'tone_got_left',
  'got_left_peopl',
  'left_peopl_stare',
  'peopl_stare_silenc',
  'stare_silenc_silent',
  'silenc_silent_watcher',
  'silent_watcher_mayb',
  'watcher_mayb_mate',
  'mayb_mate_idk',
  'mate_idk_told',
  'idk_told_rude',
  'told_rude_nicer',
  'rude_nicer_way',
  'nicer_way_go',
  'way_go_told',
  'go_told_think',
  'told_think_theyd',
  'think_theyd_feel',
  'theyd_feel_someon',
  'feel_someon_ate',
  'someon_ate_food',
  'ate_food_say',
  'food_say_focu',
  'say_focu_lunch',
  'focu_lunch_ill',
  'lunch_ill_focu',
  'ill_focu_mine',
  'focu_mine_well',
  'mine_well_littl',
  'well_littl_awkward',
  'littl_awkward_lunch',
  'awkward_lunch_sinc',
  'lunch_sinc_impress',
  'sinc_impress_peopl',
  'impress_peopl_talk',
  'peopl_talk_shite',
  'talk_shite_work',
  'shite_work_mayb',
  'work_mayb_couldv',
  'mayb_couldv_nicer',
  'couldv_nicer_sure',
  'nicer_sure_still',
  'sure_still_think',
  'still_think_wrong',
  'think_wrong_tell',
  'wrong_tell_reddit',
  'tell_reddit_aita',
  'reddit_aita_tldr',
  'aita_tldr_lunchthief',
  'tldr_lunchthief_tri',
  'lunchthief_tri_eat',
  'tri_eat_food',
  'eat_food_front',
  'food_front_took',
  'front_took_back',
  'took_back_embarrass',
  'back_embarrass_front',
  'embarrass_front_colleagu',
  'front_colleagu_edit',
  'colleagu_edit_okay',
  'edit_okay_blew',
  'okay_blew_want',
  'blew_want_drop',
  'want_drop_edit',
  'drop_edit_say',
  'edit_say_thank',
  'say_thank_much',
  'thank_much_comment',
  'much_comment_support',
  'comment_support_award',
  'support_award_great',
  'award_great_know',
  'great_know_complet',
  'know_complet_overreact',
  'complet_overreact_mayb',
  'overreact_mayb_shoudl',
  'mayb_shoudl_chat',
  'shoudl_chat_tp',
  'chat_tp_peopl',
  'tp_peopl_see',
  'peopl_see_food',
  'see_food_thief',
  'food_thief_struck',
  'thief_struck_updat',
  'struck_updat_yall',
  'updat_yall_interest',
  'yall_interest_otherwis',
  'interest_otherwis_addit',
  'otherwis_addit_info',
  'addit_info_saw',
  'info_saw_comment',
  'saw_comment_say',
  'comment_say_go',
  'say_go_hr',
  'go_hr_studio',
  'hr_studio_hr',
  'studio_hr_perp',
  'hr_perp_work',
  'perp_work_place',
  'work_place_defacto',
  'place_defacto_offic',
  'defacto_offic_manag',
  'offic_manag_want',
  'manag_want_take',
  'want_take_sinc',
  'take_sinc_im',
  'sinc_im_still',
  'im_still_new',
  'still_new_probationthink',
  'new_probationthink_reaction',
  'probationthink_reaction_might',
  'reaction_might_enough',
  'might_enough_updat',
  'enough_updat_sure',
  'updat_sure_anyon',
  'sure_anyon_want',
  'anyon_want_updat',
  'want_updat_final',
  'updat_final_found',
  'final_found_new',
  'found_new_friend',
  'new_friend_work',
  'friend_work_ye',
  'work_ye_lunch',
  'ye_lunch_thief',
  'lunch_thief_struck',
  'thief_struck_appar',
  'struck_appar_everyon',
  'appar_everyon_wrote',
  'everyon_wrote_name',
  ...],
 ['infertil',
  'ex',
  'husband',
  'tri',
  'everyth',
  'kid',
  'never',
  'happen',
  'divorc',
  'went',
  'marri',
  'someon',
  'younger',
  'abl',
  'give',
  'kid',
  'gather',
  'theyr',
  'expect',
  'nd',
  'child',
  'togeth',
  'hurt',
  'like',
  'hell',
  'see',
  'someon',
  'els',
  'get',
  'frustrat',
  'sometim',
  'famili',
  'blame',
  'basic',
  'everyth',
  'turn',
  'friend',
  'support',
  'especi',
  'alessia',
  'infertil',
  'boat',
  'husband',
  'current',
  'tri',
  'ivf',
  'hope',
  'itd',
  'work',
  'alessia',
  'ask',
  'help',
  'pay',
  'upcom',
  'ivf',
  'cycl',
  'agre',
  'write',
  'check',
  '$',
  'realli',
  'want',
  'help',
  'money',
  'came',
  'string',
  'attach',
  'wrote',
  'check',
  'gave',
  'last',
  'week',
  'appreci',
  'next',
  'day',
  'got',
  'sudden',
  'messag',
  'mutual',
  'friend',
  'carol',
  'screenshot',
  'convers',
  'alessia',
  'turn',
  'alessia',
  'talk',
  'next',
  'ivf',
  'cycl',
  'alessia',
  'said',
  'hope',
  'cycl',
  'would',
  'work',
  'wan',
  'na',
  'end',
  'divorc',
  'husband',
  'go',
  'marri',
  'someon',
  'younger',
  'babi',
  'anoth',
  'one',
  'way',
  'alon',
  'without',
  'famili',
  'stun',
  'andhurt',
  'knew',
  'meant',
  'confront',
  'simpli',
  'contact',
  'bank',
  'cancel',
  'check',
  'even',
  'alessia',
  'call',
  'ask',
  'cancel',
  'check',
  'told',
  'went',
  'batshit',
  'say',
  'mean',
  'way',
  'thought',
  'somewhat',
  'insid',
  'joke',
  'desper',
  'infertil',
  'women',
  'came',
  'husband',
  'next',
  'day',
  'beg',
  'write',
  'anoth',
  'check',
  'refus',
  'argument',
  'ensu',
  'husband',
  'thought',
  'support',
  'like',
  'support',
  'throughtout',
  'struggl',
  'left',
  'cri',
  'talk',
  'sinc',
  'husband',
  'keep',
  'remind',
  'repeatedli',
  'call',
  'carol',
  'toxic',
  'snake',
  'date',
  'next',
  'cycl',
  'say',
  'cant',
  'took',
  'money',
  'suppos',
  'pay',
  'back',
  'friend',
  'think',
  'im',
  'oversensit',
  'carol',
  'side',
  'tell',
  'tell',
  'go',
  'hell',
  'feel',
  'bad',
  'ive',
  'done',
  'might',
  'damag',
  'year',
  'friendship',
  'mayb',
  'cancel',
  'felt',
  'offend',
  'said',
  'basic',
  'mock',
  'unfortun',
  'circumst',
  'reddit',
  'aita',
  'hello',
  'wow',
  'thank',
  'much',
  'support',
  'compass',
  'shown',
  'could',
  'feel',
  'screen',
  'lol',
  '😅🤣',
  'decid',
  'im',
  'go',
  'put',
  'distanc',
  'alessia',
  'thing',
  'rough',
  'late',
  'think',
  'distanc',
  'need',
  'right',
  'especi',
  'mental',
  'health',
  'read',
  'comment',
  'feel',
  'less',
  'heavi',
  'reliev',
  'chang',
  'fact',
  'im',
  'still',
  'feel',
  'complet',
  'utterli',
  'shock',
  'alessia',
  'behavior',
  'shame',
  'come',
  'realiz',
  'even',
  'support',
  'could',
  'caus',
  'much',
  'harm',
  'oh',
  'way',
  'sent',
  'carol',
  'link',
  'thread',
  'see',
  'thought',
  'laugh',
  'kind',
  'angri',
  'use',
  'real',
  'name',
  'reliev',
  'use',
  'throwaway',
  'lol',
  'infertil_ex',
  'ex_husband',
  'husband_tri',
  'tri_everyth',
  'everyth_kid',
  'kid_never',
  'never_happen',
  'happen_divorc',
  'divorc_went',
  'went_marri',
  'marri_someon',
  'someon_younger',
  'younger_abl',
  'abl_give',
  'give_kid',
  'kid_gather',
  'gather_theyr',
  'theyr_expect',
  'expect_nd',
  'nd_child',
  'child_togeth',
  'togeth_hurt',
  'hurt_like',
  'like_hell',
  'hell_see',
  'see_someon',
  'someon_els',
  'els_get',
  'get_frustrat',
  'frustrat_sometim',
  'sometim_famili',
  'famili_blame',
  'blame_basic',
  'basic_everyth',
  'everyth_turn',
  'turn_friend',
  'friend_support',
  'support_especi',
  'especi_alessia',
  'alessia_infertil',
  'infertil_boat',
  'boat_husband',
  'husband_current',
  'current_tri',
  'tri_ivf',
  'ivf_hope',
  'hope_itd',
  'itd_work',
  'work_alessia',
  'alessia_ask',
  'ask_help',
  'help_pay',
  'pay_upcom',
  'upcom_ivf',
  'ivf_cycl',
  'cycl_agre',
  'agre_write',
  'write_check',
  'check_$',
  '$_realli',
  'realli_want',
  'want_help',
  'help_money',
  'money_came',
  'came_string',
  'string_attach',
  'attach_wrote',
  'wrote_check',
  'check_gave',
  'gave_last',
  'last_week',
  'week_appreci',
  'appreci_next',
  'next_day',
  'day_got',
  'got_sudden',
  'sudden_messag',
  'messag_mutual',
  'mutual_friend',
  'friend_carol',
  'carol_screenshot',
  'screenshot_convers',
  'convers_alessia',
  'alessia_turn',
  'turn_alessia',
  'alessia_talk',
  'talk_next',
  'next_ivf',
  'ivf_cycl',
  'cycl_alessia',
  'alessia_said',
  'said_hope',
  'hope_cycl',
  'cycl_would',
  'would_work',
  'work_wan',
  'wan_na',
  'na_end',
  'end_divorc',
  'divorc_husband',
  'husband_go',
  'go_marri',
  'marri_someon',
  'someon_younger',
  'younger_babi',
  'babi_anoth',
  'anoth_one',
  'one_way',
  'way_alon',
  'alon_without',
  'without_famili',
  'famili_stun',
  'stun_andhurt',
  'andhurt_knew',
  'knew_meant',
  'meant_confront',
  'confront_simpli',
  'simpli_contact',
  'contact_bank',
  'bank_cancel',
  'cancel_check',
  'check_even',
  'even_alessia',
  'alessia_call',
  'call_ask',
  'ask_cancel',
  'cancel_check',
  'check_told',
  'told_went',
  'went_batshit',
  'batshit_say',
  'say_mean',
  'mean_way',
  'way_thought',
  'thought_somewhat',
  'somewhat_insid',
  'insid_joke',
  'joke_desper',
  'desper_infertil',
  'infertil_women',
  'women_came',
  'came_husband',
  'husband_next',
  'next_day',
  'day_beg',
  'beg_write',
  'write_anoth',
  'anoth_check',
  'check_refus',
  'refus_argument',
  'argument_ensu',
  'ensu_husband',
  'husband_thought',
  'thought_support',
  'support_like',
  'like_support',
  'support_throughtout',
  'throughtout_struggl',
  'struggl_left',
  'left_cri',
  'cri_talk',
  'talk_sinc',
  'sinc_husband',
  'husband_keep',
  'keep_remind',
  'remind_repeatedli',
  'repeatedli_call',
  'call_carol',
  'carol_toxic',
  'toxic_snake',
  'snake_date',
  'date_next',
  'next_cycl',
  'cycl_say',
  'say_cant',
  'cant_took',
  'took_money',
  'money_suppos',
  'suppos_pay',
  'pay_back',
  'back_friend',
  'friend_think',
  'think_im',
  'im_oversensit',
  'oversensit_carol',
  'carol_side',
  'side_tell',
  'tell_tell',
  'tell_go',
  'go_hell',
  'hell_feel',
  'feel_bad',
  'bad_ive',
  'ive_done',
  'done_might',
  'might_damag',
  'damag_year',
  'year_friendship',
  'friendship_mayb',
  'mayb_cancel',
  'cancel_felt',
  'felt_offend',
  'offend_said',
  'said_basic',
  'basic_mock',
  'mock_unfortun',
  'unfortun_circumst',
  'circumst_reddit',
  'reddit_aita',
  'aita_hello',
  'hello_wow',
  'wow_thank',
  'thank_much',
  'much_support',
  'support_compass',
  'compass_shown',
  'shown_could',
  'could_feel',
  'feel_screen',
  'screen_lol',
  'lol_😅🤣',
  '😅🤣_decid',
  'decid_im',
  'im_go',
  'go_put',
  'put_distanc',
  'distanc_alessia',
  'alessia_thing',
  'thing_rough',
  'rough_late',
  'late_think',
  'think_distanc',
  'distanc_need',
  'need_right',
  'right_especi',
  'especi_mental',
  'mental_health',
  'health_read',
  'read_comment',
  'comment_feel',
  'feel_less',
  'less_heavi',
  'heavi_reliev',
  'reliev_chang',
  'chang_fact',
  'fact_im',
  'im_still',
  'still_feel',
  'feel_complet',
  'complet_utterli',
  'utterli_shock',
  'shock_alessia',
  'alessia_behavior',
  'behavior_shame',
  'shame_come',
  'come_realiz',
  'realiz_even',
  'even_support',
  'support_could',
  'could_caus',
  'caus_much',
  'much_harm',
  'harm_oh',
  'oh_way',
  'way_sent',
  'sent_carol',
  'carol_link',
  'link_thread',
  'thread_see',
  'see_thought',
  'thought_laugh',
  'laugh_kind',
  'kind_angri',
  'angri_use',
  'use_real',
  'real_name',
  'name_reliev',
  'reliev_use',
  'use_throwaway',
  'throwaway_lol',
  'infertil_ex_husband',
  'ex_husband_tri',
  'husband_tri_everyth',
  'tri_everyth_kid',
  'everyth_kid_never',
  'kid_never_happen',
  'never_happen_divorc',
  'happen_divorc_went',
  'divorc_went_marri',
  'went_marri_someon',
  'marri_someon_younger',
  'someon_younger_abl',
  'younger_abl_give',
  'abl_give_kid',
  'give_kid_gather',
  'kid_gather_theyr',
  'gather_theyr_expect',
  'theyr_expect_nd',
  'expect_nd_child',
  'nd_child_togeth',
  'child_togeth_hurt',
  'togeth_hurt_like',
  'hurt_like_hell',
  'like_hell_see',
  'hell_see_someon',
  'see_someon_els',
  'someon_els_get',
  'els_get_frustrat',
  'get_frustrat_sometim',
  'frustrat_sometim_famili',
  'sometim_famili_blame',
  'famili_blame_basic',
  'blame_basic_everyth',
  'basic_everyth_turn',
  'everyth_turn_friend',
  'turn_friend_support',
  'friend_support_especi',
  'support_especi_alessia',
  'especi_alessia_infertil',
  'alessia_infertil_boat',
  'infertil_boat_husband',
  'boat_husband_current',
  'husband_current_tri',
  'current_tri_ivf',
  'tri_ivf_hope',
  'ivf_hope_itd',
  'hope_itd_work',
  'itd_work_alessia',
  'work_alessia_ask',
  'alessia_ask_help',
  'ask_help_pay',
  'help_pay_upcom',
  'pay_upcom_ivf',
  'upcom_ivf_cycl',
  'ivf_cycl_agre',
  'cycl_agre_write',
  'agre_write_check',
  'write_check_$',
  'check_$_realli',
  '$_realli_want',
  'realli_want_help',
  'want_help_money',
  'help_money_came',
  'money_came_string',
  'came_string_attach',
  'string_attach_wrote',
  'attach_wrote_check',
  'wrote_check_gave',
  'check_gave_last',
  'gave_last_week',
  'last_week_appreci',
  'week_appreci_next',
  'appreci_next_day',
  'next_day_got',
  'day_got_sudden',
  'got_sudden_messag',
  'sudden_messag_mutual',
  'messag_mutual_friend',
  'mutual_friend_carol',
  'friend_carol_screenshot',
  'carol_screenshot_convers',
  'screenshot_convers_alessia',
  'convers_alessia_turn',
  'alessia_turn_alessia',
  'turn_alessia_talk',
  'alessia_talk_next',
  'talk_next_ivf',
  'next_ivf_cycl',
  'ivf_cycl_alessia',
  'cycl_alessia_said',
  'alessia_said_hope',
  'said_hope_cycl',
  'hope_cycl_would',
  'cycl_would_work',
  'would_work_wan',
  'work_wan_na',
  'wan_na_end',
  'na_end_divorc',
  'end_divorc_husband',
  'divorc_husband_go',
  'husband_go_marri',
  'go_marri_someon',
  'marri_someon_younger',
  'someon_younger_babi',
  'younger_babi_anoth',
  'babi_anoth_one',
  'anoth_one_way',
  'one_way_alon',
  'way_alon_without',
  'alon_without_famili',
  'without_famili_stun',
  'famili_stun_andhurt',
  'stun_andhurt_knew',
  'andhurt_knew_meant',
  'knew_meant_confront',
  'meant_confront_simpli',
  'confront_simpli_contact',
  'simpli_contact_bank',
  'contact_bank_cancel',
  'bank_cancel_check',
  'cancel_check_even',
  'check_even_alessia',
  'even_alessia_call',
  'alessia_call_ask',
  'call_ask_cancel',
  'ask_cancel_check',
  'cancel_check_told',
  'check_told_went',
  'told_went_batshit',
  'went_batshit_say',
  'batshit_say_mean',
  'say_mean_way',
  'mean_way_thought',
  'way_thought_somewhat',
  'thought_somewhat_insid',
  'somewhat_insid_joke',
  'insid_joke_desper',
  'joke_desper_infertil',
  'desper_infertil_women',
  'infertil_women_came',
  'women_came_husband',
  'came_husband_next',
  'husband_next_day',
  'next_day_beg',
  'day_beg_write',
  'beg_write_anoth',
  'write_anoth_check',
  'anoth_check_refus',
  'check_refus_argument',
  'refus_argument_ensu',
  'argument_ensu_husband',
  'ensu_husband_thought',
  'husband_thought_support',
  'thought_support_like',
  'support_like_support',
  'like_support_throughtout',
  'support_throughtout_struggl',
  'throughtout_struggl_left',
  'struggl_left_cri',
  'left_cri_talk',
  'cri_talk_sinc',
  'talk_sinc_husband',
  'sinc_husband_keep',
  'husband_keep_remind',
  'keep_remind_repeatedli',
  'remind_repeatedli_call',
  'repeatedli_call_carol',
  'call_carol_toxic',
  'carol_toxic_snake',
  'toxic_snake_date',
  'snake_date_next',
  'date_next_cycl',
  'next_cycl_say',
  'cycl_say_cant',
  'say_cant_took',
  'cant_took_money',
  'took_money_suppos',
  'money_suppos_pay',
  'suppos_pay_back',
  'pay_back_friend',
  'back_friend_think',
  'friend_think_im',
  'think_im_oversensit',
  'im_oversensit_carol',
  'oversensit_carol_side',
  'carol_side_tell',
  'side_tell_tell',
  'tell_tell_go',
  'tell_go_hell',
  'go_hell_feel',
  'hell_feel_bad',
  'feel_bad_ive',
  'bad_ive_done',
  'ive_done_might',
  'done_might_damag',
  'might_damag_year',
  'damag_year_friendship',
  'year_friendship_mayb',
  'friendship_mayb_cancel',
  'mayb_cancel_felt',
  'cancel_felt_offend',
  'felt_offend_said',
  'offend_said_basic',
  'said_basic_mock',
  'basic_mock_unfortun',
  'mock_unfortun_circumst',
  'unfortun_circumst_reddit',
  'circumst_reddit_aita',
  'reddit_aita_hello',
  'aita_hello_wow',
  'hello_wow_thank',
  'wow_thank_much',
  'thank_much_support',
  'much_support_compass',
  'support_compass_shown',
  'compass_shown_could',
  'shown_could_feel',
  'could_feel_screen',
  'feel_screen_lol',
  'screen_lol_😅🤣',
  'lol_😅🤣_decid',
  '😅🤣_decid_im',
  'decid_im_go',
  'im_go_put',
  'go_put_distanc',
  'put_distanc_alessia',
  'distanc_alessia_thing',
  'alessia_thing_rough',
  'thing_rough_late',
  'rough_late_think',
  'late_think_distanc',
  'think_distanc_need',
  'distanc_need_right',
  'need_right_especi',
  'right_especi_mental',
  'especi_mental_health',
  'mental_health_read',
  'health_read_comment',
  'read_comment_feel',
  'comment_feel_less',
  'feel_less_heavi',
  'less_heavi_reliev',
  'heavi_reliev_chang',
  'reliev_chang_fact',
  'chang_fact_im',
  'fact_im_still',
  'im_still_feel',
  'still_feel_complet',
  'feel_complet_utterli',
  'complet_utterli_shock',
  'utterli_shock_alessia',
  'shock_alessia_behavior',
  'alessia_behavior_shame',
  'behavior_shame_come',
  'shame_come_realiz',
  'come_realiz_even',
  'realiz_even_support',
  'even_support_could',
  'support_could_caus',
  'could_caus_much',
  'caus_much_harm',
  'much_harm_oh',
  'harm_oh_way',
  'oh_way_sent',
  'way_sent_carol',
  'sent_carol_link',
  'carol_link_thread',
  'link_thread_see',
  'thread_see_thought',
  'see_thought_laugh',
  'thought_laugh_kind',
  'laugh_kind_angri',
  'kind_angri_use',
  'angri_use_real',
  'use_real_name',
  'real_name_reliev',
  'name_reliev_use',
  'reliev_use_throwaway',
  'use_throwaway_lol'],
 ['one',
  'cowork',
  'thought',
  'friendli',
  'marri',
  'sent',
  'inappropri',
  'text',
  'like',
  'st',
  'patrick',
  'day',
  'weekend',
  'ask',
  'come',
  'fun',
  'say',
  'knew',
  'felt',
  'im',
  'lesbian',
  'work',
  'also',
  'sent',
  'nake',
  'selfi',
  'luckili',
  'cut',
  'right',
  'dick',
  'dang',
  'close',
  'saw',
  'friend',
  'like',
  'fuck',
  'ok',
  'monday',
  'problem',
  'realli',
  'strict',
  'rule',
  'work',
  'think',
  'work',
  'answer',
  'messag',
  'work',
  'outsid',
  '-',
  '-',
  'also',
  'use',
  'person',
  'phone',
  'work',
  'stuff',
  'someon',
  'work',
  'call',
  'text',
  'one',
  'cowork',
  'see',
  'close',
  'friend',
  'trust',
  'talk',
  'shop',
  'weekend',
  'im',
  'answer',
  'includ',
  'deal',
  'fucker',
  'workday',
  'problem',
  'ignor',
  'messag',
  'sent',
  'sever',
  'later',
  'first',
  'say',
  'sorri',
  'drunk',
  'say',
  'said',
  'want',
  'still',
  'feel',
  'felt',
  'monday',
  'wrote',
  'email',
  'work',
  'email',
  'say',
  'cowork',
  'im',
  'write',
  'follow',
  'messag',
  'prior',
  'sever',
  'day',
  'see',
  'attach',
  'pleas',
  'contact',
  'work',
  'channel',
  'regular',
  'busi',
  'hour',
  'use',
  'person',
  'number',
  'colleagu',
  'addit',
  'found',
  'content',
  'messag',
  'unwelcom',
  'inappropri',
  'pleas',
  'contact',
  'regard',
  'work',
  '-',
  'op',
  'send',
  'email',
  'hr',
  'blind',
  'cc',
  'person',
  'email',
  'id',
  'copi',
  'case',
  'got',
  'realli',
  'mad',
  'text',
  'back',
  'say',
  'cross',
  'line',
  'attach',
  'pictur',
  'work',
  'email',
  'tri',
  'get',
  'fire',
  'screenshot',
  'text',
  'attach',
  'addit',
  'email',
  'say',
  'per',
  'prior',
  'email',
  'pleas',
  'contact',
  'work',
  'matter',
  'busi',
  'email',
  'slack',
  'stop',
  'text',
  'came',
  'desk',
  'speak',
  'said',
  'anyth',
  'ask',
  'work',
  'question',
  'said',
  'knew',
  'said',
  'avail',
  'discuss',
  'moment',
  'need',
  'meet',
  'work',
  'matter',
  'could',
  'pleas',
  'schedul',
  'meet',
  'calendar',
  'includ',
  'readahead',
  'brief',
  'topic',
  'meet',
  'walk',
  'feel',
  'like',
  'bit',
  'bitch',
  'deal',
  'mayb',
  'could',
  'told',
  'cut',
  'text',
  'im',
  'also',
  'fuck',
  'sick',
  'deal',
  'shit',
  'everi',
  'job',
  'feel',
  'like',
  'patienc',
  'use',
  'time',
  'energi',
  'gentli',
  'ask',
  'guy',
  'cool',
  'worn',
  'thin',
  'want',
  'set',
  'precid',
  'engag',
  'outsid',
  'work',
  'hour',
  'work',
  'account',
  'aita',
  'send',
  'email',
  '--',
  '-',
  'edit',
  'look',
  'like',
  'overwhelm',
  'major',
  'yall',
  'think',
  'need',
  'go',
  'hr',
  'get',
  'ahead',
  'consid',
  'hold',
  'see',
  'cool',
  'way',
  'came',
  'desk',
  'told',
  'twice',
  'make',
  'think',
  'probabl',
  'best',
  'idea',
  'im',
  'gon',
  'na',
  'forward',
  'email',
  'hr',
  'write',
  'convers',
  'desk',
  'ask',
  'meet',
  'discuss',
  'edit',
  'sent',
  'email',
  'hr',
  'afternoon',
  'call',
  'meet',
  'day',
  'told',
  'everyth',
  'though',
  'lot',
  'say',
  'alreadi',
  'captur',
  'email',
  'assur',
  'contact',
  'work',
  'go',
  'meet',
  'tomorrow',
  'still',
  'decid',
  'fire',
  'move',
  'differ',
  'posit',
  'reason',
  'speak',
  'feel',
  'might',
  'depend',
  'handl',
  'convers',
  'feel',
  'good',
  'email',
  'hr',
  'feel',
  'like',
  'along',
  'ive',
  'possibl',
  'help',
  'women',
  'start',
  'paper',
  'trail',
  'turn',
  'someth',
  'done',
  'edit',
  'holi',
  'shit',
  'went',
  'happi',
  'hour',
  'femal',
  'friend',
  'field',
  'vent',
  'one',
  'friend',
  'told',
  'shed',
  'met',
  'guy',
  'profession',
  'confer',
  'given',
  'busi',
  'card',
  'phone',
  'number',
  'sent',
  'nasti',
  'pic',
  'repli',
  'say',
  'inappropri',
  'husband',
  'said',
  'someth',
  'husband',
  'know',
  'husband',
  'call',
  'leav',
  'voicemail',
  'tell',
  'fuck',
  'never',
  'heard',
  'ask',
  'shed',
  'okay',
  'send',
  'screenshot',
  'text',
  'exchang',
  'hr',
  'contact',
  'even',
  'wrote',
  'met',
  'profession',
  'confer',
  'repres',
  'compani',
  'gave',
  'busi',
  'card',
  'network',
  'reason',
  'sent',
  'unsolicit',
  'lewd',
  'pictur',
  'need',
  'husband',
  'interven',
  'stop',
  'harass',
  'check',
  'email',
  'im',
  'tri',
  'leav',
  'work',
  'work',
  'dwell',
  'tonight',
  'seem',
  'like',
  'hr',
  'even',
  'go',
  'meet',
  'edit',
  'fire',
  'know',
  'lot',
  'detail',
  'follow',
  'meet',
  'hr',
  'soon',
  'cowork',
  'told',
  'escort',
  'build',
  'morn',
  'one',
  'cowork',
  'sit',
  'near',
  'hr',
  'offic',
  'said',
  'heard',
  'scream',
  'hr',
  'staff',
  'meet',
  'morn',
  'crazi',
  'stuff',
  'escal',
  'honestli',
  'last',
  'week',
  'thought',
  'chill',
  'guy',
  'owe',
  'thank',
  'everyon',
  'told',
  'report',
  'id',
  'fenc',
  'first',
  'feel',
  'like',
  'stuff',
  'gon',
  'na',
  'escal',
  'either',
  'way',
  'feel',
  'lot',
  'safer',
  'see',
  'everyday',
  'work',
  'one_cowork',
  'cowork_thought',
  'thought_friendli',
  'friendli_marri',
  'marri_sent',
  'sent_inappropri',
  'inappropri_text',
  'text_like',
  'like_st',
  'st_patrick',
  'patrick_day',
  'day_weekend',
  'weekend_ask',
  'ask_come',
  'come_fun',
  'fun_say',
  'say_knew',
  'knew_felt',
  'felt_im',
  'im_lesbian',
  'lesbian_work',
  'work_also',
  'also_sent',
  'sent_nake',
  'nake_selfi',
  'selfi_luckili',
  'luckili_cut',
  'cut_right',
  'right_dick',
  'dick_dang',
  'dang_close',
  'close_saw',
  'saw_friend',
  'friend_like',
  'like_fuck',
  'fuck_ok',
  'ok_monday',
  'monday_problem',
  'problem_realli',
  'realli_strict',
  'strict_rule',
  'rule_work',
  'work_think',
  'think_work',
  'work_answer',
  'answer_messag',
  'messag_work',
  'work_outsid',
  'outsid_-',
  '-_-',
  '-_also',
  'also_use',
  'use_person',
  'person_phone',
  'phone_work',
  'work_stuff',
  'stuff_someon',
  'someon_work',
  'work_call',
  'call_text',
  'text_one',
  'one_cowork',
  'cowork_see',
  'see_close',
  'close_friend',
  'friend_trust',
  'trust_talk',
  'talk_shop',
  'shop_weekend',
  'weekend_im',
  'im_answer',
  'answer_includ',
  'includ_deal',
  'deal_fucker',
  'fucker_workday',
  'workday_problem',
  'problem_ignor',
  'ignor_messag',
  'messag_sent',
  'sent_sever',
  'sever_later',
  'later_first',
  'first_say',
  'say_sorri',
  'sorri_drunk',
  'drunk_say',
  'say_said',
  'said_want',
  'want_still',
  'still_feel',
  'feel_felt',
  'felt_monday',
  'monday_wrote',
  'wrote_email',
  'email_work',
  'work_email',
  'email_say',
  'say_cowork',
  'cowork_im',
  'im_write',
  'write_follow',
  'follow_messag',
  'messag_prior',
  'prior_sever',
  'sever_day',
  'day_see',
  'see_attach',
  'attach_pleas',
  'pleas_contact',
  'contact_work',
  'work_channel',
  'channel_regular',
  'regular_busi',
  'busi_hour',
  'hour_use',
  'use_person',
  'person_number',
  'number_colleagu',
  'colleagu_addit',
  'addit_found',
  'found_content',
  'content_messag',
  'messag_unwelcom',
  'unwelcom_inappropri',
  'inappropri_pleas',
  'pleas_contact',
  'contact_regard',
  'regard_work',
  'work_-',
  '-_op',
  'op_send',
  'send_email',
  'email_hr',
  'hr_blind',
  'blind_cc',
  'cc_person',
  'person_email',
  'email_id',
  'id_copi',
  'copi_case',
  'case_got',
  'got_realli',
  'realli_mad',
  'mad_text',
  'text_back',
  'back_say',
  'say_cross',
  'cross_line',
  'line_attach',
  'attach_pictur',
  'pictur_work',
  'work_email',
  'email_tri',
  'tri_get',
  'get_fire',
  'fire_screenshot',
  'screenshot_text',
  'text_attach',
  'attach_addit',
  'addit_email',
  'email_say',
  'say_per',
  'per_prior',
  'prior_email',
  'email_pleas',
  'pleas_contact',
  'contact_work',
  'work_matter',
  'matter_busi',
  'busi_email',
  'email_slack',
  'slack_stop',
  'stop_text',
  'text_came',
  'came_desk',
  'desk_speak',
  'speak_said',
  'said_anyth',
  'anyth_ask',
  'ask_work',
  'work_question',
  'question_said',
  'said_knew',
  'knew_said',
  'said_avail',
  'avail_discuss',
  'discuss_moment',
  'moment_need',
  'need_meet',
  'meet_work',
  'work_matter',
  'matter_could',
  'could_pleas',
  'pleas_schedul',
  'schedul_meet',
  'meet_calendar',
  'calendar_includ',
  'includ_readahead',
  'readahead_brief',
  'brief_topic',
  'topic_meet',
  'meet_walk',
  'walk_feel',
  'feel_like',
  'like_bit',
  'bit_bitch',
  'bitch_deal',
  'deal_mayb',
  'mayb_could',
  'could_told',
  'told_cut',
  'cut_text',
  'text_im',
  'im_also',
  'also_fuck',
  'fuck_sick',
  'sick_deal',
  'deal_shit',
  'shit_everi',
  'everi_job',
  'job_feel',
  'feel_like',
  'like_patienc',
  'patienc_use',
  'use_time',
  'time_energi',
  'energi_gentli',
  'gentli_ask',
  'ask_guy',
  'guy_cool',
  'cool_worn',
  'worn_thin',
  'thin_want',
  'want_set',
  'set_precid',
  'precid_engag',
  'engag_outsid',
  'outsid_work',
  'work_hour',
  'hour_work',
  'work_account',
  'account_aita',
  'aita_send',
  'send_email',
  'email_--',
  '--_-',
  '-_edit',
  'edit_look',
  'look_like',
  'like_overwhelm',
  'overwhelm_major',
  'major_yall',
  'yall_think',
  'think_need',
  'need_go',
  'go_hr',
  'hr_get',
  'get_ahead',
  'ahead_consid',
  'consid_hold',
  'hold_see',
  'see_cool',
  'cool_way',
  'way_came',
  'came_desk',
  'desk_told',
  'told_twice',
  'twice_make',
  'make_think',
  'think_probabl',
  'probabl_best',
  'best_idea',
  'idea_im',
  'im_gon',
  'gon_na',
  'na_forward',
  'forward_email',
  'email_hr',
  'hr_write',
  'write_convers',
  'convers_desk',
  'desk_ask',
  'ask_meet',
  'meet_discuss',
  'discuss_edit',
  'edit_sent',
  'sent_email',
  'email_hr',
  'hr_afternoon',
  'afternoon_call',
  'call_meet',
  'meet_day',
  'day_told',
  'told_everyth',
  'everyth_though',
  'though_lot',
  'lot_say',
  'say_alreadi',
  'alreadi_captur',
  'captur_email',
  'email_assur',
  'assur_contact',
  'contact_work',
  'work_go',
  'go_meet',
  'meet_tomorrow',
  'tomorrow_still',
  'still_decid',
  'decid_fire',
  'fire_move',
  'move_differ',
  'differ_posit',
  'posit_reason',
  'reason_speak',
  'speak_feel',
  'feel_might',
  'might_depend',
  'depend_handl',
  'handl_convers',
  'convers_feel',
  'feel_good',
  'good_email',
  'email_hr',
  'hr_feel',
  'feel_like',
  'like_along',
  'along_ive',
  'ive_possibl',
  'possibl_help',
  'help_women',
  'women_start',
  'start_paper',
  'paper_trail',
  'trail_turn',
  'turn_someth',
  'someth_done',
  'done_edit',
  'edit_holi',
  'holi_shit',
  'shit_went',
  'went_happi',
  'happi_hour',
  'hour_femal',
  'femal_friend',
  'friend_field',
  'field_vent',
  'vent_one',
  'one_friend',
  'friend_told',
  'told_shed',
  'shed_met',
  'met_guy',
  'guy_profession',
  'profession_confer',
  'confer_given',
  'given_busi',
  'busi_card',
  'card_phone',
  'phone_number',
  'number_sent',
  'sent_nasti',
  'nasti_pic',
  'pic_repli',
  'repli_say',
  'say_inappropri',
  'inappropri_husband',
  'husband_said',
  'said_someth',
  'someth_husband',
  'husband_know',
  'know_husband',
  'husband_call',
  'call_leav',
  'leav_voicemail',
  'voicemail_tell',
  'tell_fuck',
  'fuck_never',
  'never_heard',
  'heard_ask',
  'ask_shed',
  'shed_okay',
  'okay_send',
  'send_screenshot',
  'screenshot_text',
  'text_exchang',
  'exchang_hr',
  'hr_contact',
  'contact_even',
  'even_wrote',
  'wrote_met',
  'met_profession',
  'profession_confer',
  'confer_repres',
  'repres_compani',
  'compani_gave',
  'gave_busi',
  'busi_card',
  'card_network',
  'network_reason',
  'reason_sent',
  'sent_unsolicit',
  'unsolicit_lewd',
  'lewd_pictur',
  'pictur_need',
  'need_husband',
  'husband_interven',
  'interven_stop',
  'stop_harass',
  'harass_check',
  'check_email',
  'email_im',
  'im_tri',
  'tri_leav',
  'leav_work',
  'work_work',
  'work_dwell',
  'dwell_tonight',
  'tonight_seem',
  'seem_like',
  'like_hr',
  'hr_even',
  'even_go',
  'go_meet',
  'meet_edit',
  'edit_fire',
  'fire_know',
  'know_lot',
  'lot_detail',
  'detail_follow',
  'follow_meet',
  'meet_hr',
  'hr_soon',
  'soon_cowork',
  'cowork_told',
  'told_escort',
  'escort_build',
  'build_morn',
  'morn_one',
  'one_cowork',
  'cowork_sit',
  'sit_near',
  'near_hr',
  'hr_offic',
  'offic_said',
  'said_heard',
  'heard_scream',
  'scream_hr',
  'hr_staff',
  'staff_meet',
  'meet_morn',
  'morn_crazi',
  'crazi_stuff',
  'stuff_escal',
  'escal_honestli',
  'honestli_last',
  'last_week',
  'week_thought',
  'thought_chill',
  'chill_guy',
  'guy_owe',
  'owe_thank',
  'thank_everyon',
  'everyon_told',
  'told_report',
  'report_id',
  'id_fenc',
  'fenc_first',
  'first_feel',
  'feel_like',
  'like_stuff',
  'stuff_gon',
  'gon_na',
  'na_escal',
  'escal_either',
  'either_way',
  'way_feel',
  'feel_lot',
  'lot_safer',
  'safer_see',
  'see_everyday',
  'everyday_work',
  'one_cowork_thought',
  'cowork_thought_friendli',
  'thought_friendli_marri',
  'friendli_marri_sent',
  'marri_sent_inappropri',
  'sent_inappropri_text',
  'inappropri_text_like',
  'text_like_st',
  'like_st_patrick',
  'st_patrick_day',
  'patrick_day_weekend',
  'day_weekend_ask',
  'weekend_ask_come',
  'ask_come_fun',
  'come_fun_say',
  'fun_say_knew',
  'say_knew_felt',
  'knew_felt_im',
  'felt_im_lesbian',
  'im_lesbian_work',
  'lesbian_work_also',
  'work_also_sent',
  'also_sent_nake',
  'sent_nake_selfi',
  'nake_selfi_luckili',
  'selfi_luckili_cut',
  'luckili_cut_right',
  'cut_right_dick',
  'right_dick_dang',
  'dick_dang_close',
  'dang_close_saw',
  'close_saw_friend',
  'saw_friend_like',
  'friend_like_fuck',
  'like_fuck_ok',
  'fuck_ok_monday',
  'ok_monday_problem',
  ...],
 ['horribl',
  'toothach',
  'id',
  'taken',
  'medic',
  'eas',
  'pain',
  'bad',
  'like',
  'you-ne',
  'go-to',
  'dentist',
  'level',
  'bad',
  'schedul',
  'appoint',
  'told',
  'come',
  'yesterday',
  'husband',
  'best',
  'friend',
  'terri',
  'got',
  'accid',
  'injur',
  'knee',
  'stay',
  'us',
  'sever',
  'week',
  'husband',
  'look',
  'see',
  'live',
  'alon',
  'need',
  'assist',
  'welcom',
  'home',
  'found',
  'clean',
  'bring',
  'medic',
  'also',
  'cook',
  'take',
  'long',
  'time',
  'get',
  'someth',
  'done',
  'hed',
  'call',
  'husband',
  'basic',
  'tell',
  'make',
  'husband',
  'mad',
  'say',
  'temporari',
  'also',
  'sinc',
  'im',
  'home',
  'work',
  'help',
  'care',
  'friend',
  'becam',
  'quit',
  'overwhelm',
  'cant',
  'leav',
  'hous',
  'husband',
  'friend',
  'like',
  'state',
  'previous',
  'dental',
  'appoint',
  'told',
  'husband',
  'night',
  'pitch',
  'hissi',
  'fit',
  'say',
  'cant',
  'leav',
  'terri',
  'home',
  'alon',
  'suggest',
  'take',
  'time',
  'work',
  'stay',
  'said',
  'work',
  'short',
  'notic',
  'suggest',
  'reschedul',
  'said',
  'even',
  'show',
  'bad',
  'swell',
  'yet',
  'told',
  'hold',
  'anoth',
  'day',
  'went',
  'work',
  'earli',
  'decid',
  'still',
  'go',
  'go',
  'terri',
  'livingroom',
  'sleep',
  'larg',
  'mattress',
  'live',
  'room',
  'saw',
  'make',
  'way',
  'mom',
  'wait',
  'door',
  'ask',
  'go',
  'told',
  'dental',
  'appoint',
  'attitud',
  'rais',
  'voic',
  'tell',
  'go',
  'back',
  'upstair',
  'cancel',
  'mom',
  'step',
  'start',
  'argu',
  'ask',
  'think',
  'went',
  'unabl',
  'move',
  'threaten',
  'call',
  'husband',
  'step',
  'foot',
  'door',
  'took',
  'mom',
  'left',
  'end',
  'call',
  'husband',
  'tri',
  'call',
  'hour',
  'til',
  'turn',
  'phone',
  'instead',
  'return',
  'home',
  'went',
  'stay',
  'mom',
  'tremend',
  'pain',
  'husband',
  'start',
  'yell',
  'call',
  'stubborn',
  'still',
  'go',
  'told',
  'reschedul',
  'irrespons',
  'leav',
  'injur',
  'friend',
  'home',
  'alon',
  'mom',
  'told',
  'escal',
  'argument',
  'us',
  'current',
  'stay',
  'home',
  'along',
  'friend',
  'constantli',
  'pressur',
  'stop',
  'hide',
  'behind',
  'mom',
  'come',
  'deal',
  'result',
  'leav',
  'job',
  'hour',
  'blind',
  'side',
  'went',
  'wish',
  'edit',
  'autocorrect',
  'horribl_toothach',
  'toothach_id',
  'id_taken',
  'taken_medic',
  'medic_eas',
  'eas_pain',
  'pain_bad',
  'bad_like',
  'like_you-ne',
  'you-ne_go-to',
  'go-to_dentist',
  'dentist_level',
  'level_bad',
  'bad_schedul',
  'schedul_appoint',
  'appoint_told',
  'told_come',
  'come_yesterday',
  'yesterday_husband',
  'husband_best',
  'best_friend',
  'friend_terri',
  'terri_got',
  'got_accid',
  'accid_injur',
  'injur_knee',
  'knee_stay',
  'stay_us',
  'us_sever',
  'sever_week',
  'week_husband',
  'husband_look',
  'look_see',
  'see_live',
  'live_alon',
  'alon_need',
  'need_assist',
  'assist_welcom',
  'welcom_home',
  'home_found',
  'found_clean',
  'clean_bring',
  'bring_medic',
  'medic_also',
  'also_cook',
  'cook_take',
  'take_long',
  'long_time',
  'time_get',
  'get_someth',
  'someth_done',
  'done_hed',
  'hed_call',
  'call_husband',
  'husband_basic',
  'basic_tell',
  'tell_make',
  'make_husband',
  'husband_mad',
  'mad_say',
  'say_temporari',
  'temporari_also',
  'also_sinc',
  'sinc_im',
  'im_home',
  'home_work',
  'work_help',
  'help_care',
  'care_friend',
  'friend_becam',
  'becam_quit',
  'quit_overwhelm',
  'overwhelm_cant',
  'cant_leav',
  'leav_hous',
  'hous_husband',
  'husband_friend',
  'friend_like',
  'like_state',
  'state_previous',
  'previous_dental',
  'dental_appoint',
  'appoint_told',
  'told_husband',
  'husband_night',
  'night_pitch',
  'pitch_hissi',
  'hissi_fit',
  'fit_say',
  'say_cant',
  'cant_leav',
  'leav_terri',
  'terri_home',
  'home_alon',
  'alon_suggest',
  'suggest_take',
  'take_time',
  'time_work',
  'work_stay',
  'stay_said',
  'said_work',
  'work_short',
  'short_notic',
  'notic_suggest',
  'suggest_reschedul',
  'reschedul_said',
  'said_even',
  'even_show',
  'show_bad',
  'bad_swell',
  'swell_yet',
  'yet_told',
  'told_hold',
  'hold_anoth',
  'anoth_day',
  'day_went',
  'went_work',
  'work_earli',
  'earli_decid',
  'decid_still',
  'still_go',
  'go_go',
  'go_terri',
  'terri_livingroom',
  'livingroom_sleep',
  'sleep_larg',
  'larg_mattress',
  'mattress_live',
  'live_room',
  'room_saw',
  'saw_make',
  'make_way',
  'way_mom',
  'mom_wait',
  'wait_door',
  'door_ask',
  'ask_go',
  'go_told',
  'told_dental',
  'dental_appoint',
  'appoint_attitud',
  'attitud_rais',
  'rais_voic',
  'voic_tell',
  'tell_go',
  'go_back',
  'back_upstair',
  'upstair_cancel',
  'cancel_mom',
  'mom_step',
  'step_start',
  'start_argu',
  'argu_ask',
  'ask_think',
  'think_went',
  'went_unabl',
  'unabl_move',
  'move_threaten',
  'threaten_call',
  'call_husband',
  'husband_step',
  'step_foot',
  'foot_door',
  'door_took',
  'took_mom',
  'mom_left',
  'left_end',
  'end_call',
  'call_husband',
  'husband_tri',
  'tri_call',
  'call_hour',
  'hour_til',
  'til_turn',
  'turn_phone',
  'phone_instead',
  'instead_return',
  'return_home',
  'home_went',
  'went_stay',
  'stay_mom',
  'mom_tremend',
  'tremend_pain',
  'pain_husband',
  'husband_start',
  'start_yell',
  'yell_call',
  'call_stubborn',
  'stubborn_still',
  'still_go',
  'go_told',
  'told_reschedul',
  'reschedul_irrespons',
  'irrespons_leav',
  'leav_injur',
  'injur_friend',
  'friend_home',
  'home_alon',
  'alon_mom',
  'mom_told',
  'told_escal',
  'escal_argument',
  'argument_us',
  'us_current',
  'current_stay',
  'stay_home',
  'home_along',
  'along_friend',
  'friend_constantli',
  'constantli_pressur',
  'pressur_stop',
  'stop_hide',
  'hide_behind',
  'behind_mom',
  'mom_come',
  'come_deal',
  'deal_result',
  'result_leav',
  'leav_job',
  'job_hour',
  'hour_blind',
  'blind_side',
  'side_went',
  'went_wish',
  'wish_edit',
  'edit_autocorrect',
  'horribl_toothach_id',
  'toothach_id_taken',
  'id_taken_medic',
  'taken_medic_eas',
  'medic_eas_pain',
  'eas_pain_bad',
  'pain_bad_like',
  'bad_like_you-ne',
  'like_you-ne_go-to',
  'you-ne_go-to_dentist',
  'go-to_dentist_level',
  'dentist_level_bad',
  'level_bad_schedul',
  'bad_schedul_appoint',
  'schedul_appoint_told',
  'appoint_told_come',
  'told_come_yesterday',
  'come_yesterday_husband',
  'yesterday_husband_best',
  'husband_best_friend',
  'best_friend_terri',
  'friend_terri_got',
  'terri_got_accid',
  'got_accid_injur',
  'accid_injur_knee',
  'injur_knee_stay',
  'knee_stay_us',
  'stay_us_sever',
  'us_sever_week',
  'sever_week_husband',
  'week_husband_look',
  'husband_look_see',
  'look_see_live',
  'see_live_alon',
  'live_alon_need',
  'alon_need_assist',
  'need_assist_welcom',
  'assist_welcom_home',
  'welcom_home_found',
  'home_found_clean',
  'found_clean_bring',
  'clean_bring_medic',
  'bring_medic_also',
  'medic_also_cook',
  'also_cook_take',
  'cook_take_long',
  'take_long_time',
  'long_time_get',
  'time_get_someth',
  'get_someth_done',
  'someth_done_hed',
  'done_hed_call',
  'hed_call_husband',
  'call_husband_basic',
  'husband_basic_tell',
  'basic_tell_make',
  'tell_make_husband',
  'make_husband_mad',
  'husband_mad_say',
  'mad_say_temporari',
  'say_temporari_also',
  'temporari_also_sinc',
  'also_sinc_im',
  'sinc_im_home',
  'im_home_work',
  'home_work_help',
  'work_help_care',
  'help_care_friend',
  'care_friend_becam',
  'friend_becam_quit',
  'becam_quit_overwhelm',
  'quit_overwhelm_cant',
  'overwhelm_cant_leav',
  'cant_leav_hous',
  'leav_hous_husband',
  'hous_husband_friend',
  'husband_friend_like',
  'friend_like_state',
  'like_state_previous',
  'state_previous_dental',
  'previous_dental_appoint',
  'dental_appoint_told',
  'appoint_told_husband',
  'told_husband_night',
  'husband_night_pitch',
  'night_pitch_hissi',
  'pitch_hissi_fit',
  'hissi_fit_say',
  'fit_say_cant',
  'say_cant_leav',
  'cant_leav_terri',
  'leav_terri_home',
  'terri_home_alon',
  'home_alon_suggest',
  'alon_suggest_take',
  'suggest_take_time',
  'take_time_work',
  'time_work_stay',
  'work_stay_said',
  'stay_said_work',
  'said_work_short',
  'work_short_notic',
  'short_notic_suggest',
  'notic_suggest_reschedul',
  'suggest_reschedul_said',
  'reschedul_said_even',
  'said_even_show',
  'even_show_bad',
  'show_bad_swell',
  'bad_swell_yet',
  'swell_yet_told',
  'yet_told_hold',
  'told_hold_anoth',
  'hold_anoth_day',
  'anoth_day_went',
  'day_went_work',
  'went_work_earli',
  'work_earli_decid',
  'earli_decid_still',
  'decid_still_go',
  'still_go_go',
  'go_go_terri',
  'go_terri_livingroom',
  'terri_livingroom_sleep',
  'livingroom_sleep_larg',
  'sleep_larg_mattress',
  'larg_mattress_live',
  'mattress_live_room',
  'live_room_saw',
  'room_saw_make',
  'saw_make_way',
  'make_way_mom',
  'way_mom_wait',
  'mom_wait_door',
  'wait_door_ask',
  'door_ask_go',
  'ask_go_told',
  'go_told_dental',
  'told_dental_appoint',
  'dental_appoint_attitud',
  'appoint_attitud_rais',
  'attitud_rais_voic',
  'rais_voic_tell',
  'voic_tell_go',
  'tell_go_back',
  'go_back_upstair',
  'back_upstair_cancel',
  'upstair_cancel_mom',
  'cancel_mom_step',
  'mom_step_start',
  'step_start_argu',
  'start_argu_ask',
  'argu_ask_think',
  'ask_think_went',
  'think_went_unabl',
  'went_unabl_move',
  'unabl_move_threaten',
  'move_threaten_call',
  'threaten_call_husband',
  'call_husband_step',
  'husband_step_foot',
  'step_foot_door',
  'foot_door_took',
  'door_took_mom',
  'took_mom_left',
  'mom_left_end',
  'left_end_call',
  'end_call_husband',
  'call_husband_tri',
  'husband_tri_call',
  'tri_call_hour',
  'call_hour_til',
  'hour_til_turn',
  'til_turn_phone',
  'turn_phone_instead',
  'phone_instead_return',
  'instead_return_home',
  'return_home_went',
  'home_went_stay',
  'went_stay_mom',
  'stay_mom_tremend',
  'mom_tremend_pain',
  'tremend_pain_husband',
  'pain_husband_start',
  'husband_start_yell',
  'start_yell_call',
  'yell_call_stubborn',
  'call_stubborn_still',
  'stubborn_still_go',
  'still_go_told',
  'go_told_reschedul',
  'told_reschedul_irrespons',
  'reschedul_irrespons_leav',
  'irrespons_leav_injur',
  'leav_injur_friend',
  'injur_friend_home',
  'friend_home_alon',
  'home_alon_mom',
  'alon_mom_told',
  'mom_told_escal',
  'told_escal_argument',
  'escal_argument_us',
  'argument_us_current',
  'us_current_stay',
  'current_stay_home',
  'stay_home_along',
  'home_along_friend',
  'along_friend_constantli',
  'friend_constantli_pressur',
  'constantli_pressur_stop',
  'pressur_stop_hide',
  'stop_hide_behind',
  'hide_behind_mom',
  'behind_mom_come',
  'mom_come_deal',
  'come_deal_result',
  'deal_result_leav',
  'result_leav_job',
  'leav_job_hour',
  'job_hour_blind',
  'hour_blind_side',
  'blind_side_went',
  'side_went_wish',
  'went_wish_edit',
  'wish_edit_autocorrect'],
 ['husband',
  'youtub',
  'channel',
  'follow',
  'live',
  'stream',
  'lot',
  'late',
  'even',
  'though',
  'told',
  'respons',
  'take',
  'care',
  'daughter',
  'month',
  'old',
  'born',
  'hed',
  'stream',
  'randomli',
  'spend',
  'lot',
  'time',
  'follow',
  'answer',
  'question',
  'engag',
  'convers',
  'keep',
  'say',
  'follow',
  'good',
  'mental',
  'health',
  'engag',
  'weekli',
  'make',
  'becom',
  'better',
  'social',
  'commun',
  'complain',
  'want',
  'live',
  'stream',
  'day',
  'told',
  'wed',
  'look',
  'schedul',
  'see',
  'could',
  'get',
  'time',
  'make',
  'happen',
  'appar',
  'good',
  'enough',
  'yesterday',
  'go',
  'groceri',
  'shop',
  'ask',
  'keep',
  'eye',
  'daughter',
  'asleep',
  'said',
  'okay',
  'gone',
  'hr',
  'kept',
  'call',
  'see',
  'everyth',
  'ok',
  'hed',
  'tell',
  'alright',
  'sleep',
  'start',
  'get',
  'weird',
  'feel',
  'someth',
  'wrong',
  'mustv',
  'hungri',
  'need',
  'diaper',
  'chang',
  'argu',
  'everyth',
  'fine',
  'immedi',
  'went',
  'home',
  'enter',
  'hous',
  'find',
  'shout',
  'name',
  'got',
  'noth',
  'went',
  'bedroom',
  'saw',
  'daughter',
  'awak',
  'diaper',
  'changedand',
  'wors',
  'bottl',
  'even',
  'touch',
  'confus',
  'got',
  'notic',
  'offic',
  'door',
  'close',
  'figur',
  'live',
  'stream',
  'nois',
  'heard',
  'beyond',
  'seeth',
  'barg',
  'offic',
  'saw',
  'sit',
  'blew',
  'tri',
  'turn',
  'mic',
  'tell',
  'stop',
  'stop',
  'berat',
  'leav',
  'daughter',
  'unattend',
  'milk',
  'diaper',
  'chang',
  'freak',
  'say',
  'end',
  'entir',
  'channel',
  'destroy',
  'fan',
  'base',
  'interrupt',
  'live',
  'stream',
  'embarrass',
  'scandal',
  'like',
  'told',
  'say',
  'word',
  'kept',
  'yell',
  'call',
  'control',
  'unhing',
  'almost',
  'cri',
  'leav',
  'offic',
  'kept',
  'fight',
  'til',
  'decid',
  'go',
  'stay',
  'mom',
  'start',
  'blame',
  'ignor',
  'need',
  'alreadi',
  'express',
  'forgot',
  'ask',
  'id',
  'cost',
  'much',
  'us',
  'tell',
  'come',
  'back',
  'home',
  'miss',
  'daughter',
  'husband_youtub',
  'youtub_channel',
  'channel_follow',
  'follow_live',
  'live_stream',
  'stream_lot',
  'lot_late',
  'late_even',
  'even_though',
  'though_told',
  'told_respons',
  'respons_take',
  'take_care',
  'care_daughter',
  'daughter_month',
  'month_old',
  'old_born',
  'born_hed',
  'hed_stream',
  'stream_randomli',
  'randomli_spend',
  'spend_lot',
  'lot_time',
  'time_follow',
  'follow_answer',
  'answer_question',
  'question_engag',
  'engag_convers',
  'convers_keep',
  'keep_say',
  'say_follow',
  'follow_good',
  'good_mental',
  'mental_health',
  'health_engag',
  'engag_weekli',
  'weekli_make',
  'make_becom',
  'becom_better',
  'better_social',
  'social_commun',
  'commun_complain',
  'complain_want',
  'want_live',
  'live_stream',
  'stream_day',
  'day_told',
  'told_wed',
  'wed_look',
  'look_schedul',
  'schedul_see',
  'see_could',
  'could_get',
  'get_time',
  'time_make',
  'make_happen',
  'happen_appar',
  'appar_good',
  'good_enough',
  'enough_yesterday',
  'yesterday_go',
  'go_groceri',
  'groceri_shop',
  'shop_ask',
  'ask_keep',
  'keep_eye',
  'eye_daughter',
  'daughter_asleep',
  'asleep_said',
  'said_okay',
  'okay_gone',
  'gone_hr',
  'hr_kept',
  'kept_call',
  'call_see',
  'see_everyth',
  'everyth_ok',
  'ok_hed',
  'hed_tell',
  'tell_alright',
  'alright_sleep',
  'sleep_start',
  'start_get',
  'get_weird',
  'weird_feel',
  'feel_someth',
  'someth_wrong',
  'wrong_mustv',
  'mustv_hungri',
  'hungri_need',
  'need_diaper',
  'diaper_chang',
  'chang_argu',
  'argu_everyth',
  'everyth_fine',
  'fine_immedi',
  'immedi_went',
  'went_home',
  'home_enter',
  'enter_hous',
  'hous_find',
  'find_shout',
  'shout_name',
  'name_got',
  'got_noth',
  'noth_went',
  'went_bedroom',
  'bedroom_saw',
  'saw_daughter',
  'daughter_awak',
  'awak_diaper',
  'diaper_changedand',
  'changedand_wors',
  'wors_bottl',
  'bottl_even',
  'even_touch',
  'touch_confus',
  'confus_got',
  'got_notic',
  'notic_offic',
  'offic_door',
  'door_close',
  'close_figur',
  'figur_live',
  'live_stream',
  'stream_nois',
  'nois_heard',
  'heard_beyond',
  'beyond_seeth',
  'seeth_barg',
  'barg_offic',
  'offic_saw',
  'saw_sit',
  'sit_blew',
  'blew_tri',
  'tri_turn',
  'turn_mic',
  'mic_tell',
  'tell_stop',
  'stop_stop',
  'stop_berat',
  'berat_leav',
  'leav_daughter',
  'daughter_unattend',
  'unattend_milk',
  'milk_diaper',
  'diaper_chang',
  'chang_freak',
  'freak_say',
  'say_end',
  'end_entir',
  'entir_channel',
  'channel_destroy',
  'destroy_fan',
  'fan_base',
  'base_interrupt',
  'interrupt_live',
  'live_stream',
  'stream_embarrass',
  'embarrass_scandal',
  'scandal_like',
  'like_told',
  'told_say',
  'say_word',
  'word_kept',
  'kept_yell',
  'yell_call',
  'call_control',
  'control_unhing',
  'unhing_almost',
  'almost_cri',
  'cri_leav',
  'leav_offic',
  'offic_kept',
  'kept_fight',
  'fight_til',
  'til_decid',
  'decid_go',
  'go_stay',
  'stay_mom',
  'mom_start',
  'start_blame',
  'blame_ignor',
  'ignor_need',
  'need_alreadi',
  'alreadi_express',
  'express_forgot',
  'forgot_ask',
  'ask_id',
  'id_cost',
  'cost_much',
  'much_us',
  'us_tell',
  'tell_come',
  'come_back',
  'back_home',
  'home_miss',
  'miss_daughter',
  'husband_youtub_channel',
  'youtub_channel_follow',
  'channel_follow_live',
  'follow_live_stream',
  'live_stream_lot',
  'stream_lot_late',
  'lot_late_even',
  'late_even_though',
  'even_though_told',
  'though_told_respons',
  'told_respons_take',
  'respons_take_care',
  'take_care_daughter',
  'care_daughter_month',
  'daughter_month_old',
  'month_old_born',
  'old_born_hed',
  'born_hed_stream',
  'hed_stream_randomli',
  'stream_randomli_spend',
  'randomli_spend_lot',
  'spend_lot_time',
  'lot_time_follow',
  'time_follow_answer',
  'follow_answer_question',
  'answer_question_engag',
  'question_engag_convers',
  'engag_convers_keep',
  'convers_keep_say',
  'keep_say_follow',
  'say_follow_good',
  'follow_good_mental',
  'good_mental_health',
  'mental_health_engag',
  'health_engag_weekli',
  'engag_weekli_make',
  'weekli_make_becom',
  'make_becom_better',
  'becom_better_social',
  'better_social_commun',
  'social_commun_complain',
  'commun_complain_want',
  'complain_want_live',
  'want_live_stream',
  'live_stream_day',
  'stream_day_told',
  'day_told_wed',
  'told_wed_look',
  'wed_look_schedul',
  'look_schedul_see',
  'schedul_see_could',
  'see_could_get',
  'could_get_time',
  'get_time_make',
  'time_make_happen',
  'make_happen_appar',
  'happen_appar_good',
  'appar_good_enough',
  'good_enough_yesterday',
  'enough_yesterday_go',
  'yesterday_go_groceri',
  'go_groceri_shop',
  'groceri_shop_ask',
  'shop_ask_keep',
  'ask_keep_eye',
  'keep_eye_daughter',
  'eye_daughter_asleep',
  'daughter_asleep_said',
  'asleep_said_okay',
  'said_okay_gone',
  'okay_gone_hr',
  'gone_hr_kept',
  'hr_kept_call',
  'kept_call_see',
  'call_see_everyth',
  'see_everyth_ok',
  'everyth_ok_hed',
  'ok_hed_tell',
  'hed_tell_alright',
  'tell_alright_sleep',
  'alright_sleep_start',
  'sleep_start_get',
  'start_get_weird',
  'get_weird_feel',
  'weird_feel_someth',
  'feel_someth_wrong',
  'someth_wrong_mustv',
  'wrong_mustv_hungri',
  'mustv_hungri_need',
  'hungri_need_diaper',
  'need_diaper_chang',
  'diaper_chang_argu',
  'chang_argu_everyth',
  'argu_everyth_fine',
  'everyth_fine_immedi',
  'fine_immedi_went',
  'immedi_went_home',
  'went_home_enter',
  'home_enter_hous',
  'enter_hous_find',
  'hous_find_shout',
  'find_shout_name',
  'shout_name_got',
  'name_got_noth',
  'got_noth_went',
  'noth_went_bedroom',
  'went_bedroom_saw',
  'bedroom_saw_daughter',
  'saw_daughter_awak',
  'daughter_awak_diaper',
  'awak_diaper_changedand',
  'diaper_changedand_wors',
  'changedand_wors_bottl',
  'wors_bottl_even',
  'bottl_even_touch',
  'even_touch_confus',
  'touch_confus_got',
  'confus_got_notic',
  'got_notic_offic',
  'notic_offic_door',
  'offic_door_close',
  'door_close_figur',
  'close_figur_live',
  'figur_live_stream',
  'live_stream_nois',
  'stream_nois_heard',
  'nois_heard_beyond',
  'heard_beyond_seeth',
  'beyond_seeth_barg',
  'seeth_barg_offic',
  'barg_offic_saw',
  'offic_saw_sit',
  'saw_sit_blew',
  'sit_blew_tri',
  'blew_tri_turn',
  'tri_turn_mic',
  'turn_mic_tell',
  'mic_tell_stop',
  'tell_stop_stop',
  'stop_stop_berat',
  'stop_berat_leav',
  'berat_leav_daughter',
  'leav_daughter_unattend',
  'daughter_unattend_milk',
  'unattend_milk_diaper',
  'milk_diaper_chang',
  'diaper_chang_freak',
  'chang_freak_say',
  'freak_say_end',
  'say_end_entir',
  'end_entir_channel',
  'entir_channel_destroy',
  'channel_destroy_fan',
  'destroy_fan_base',
  'fan_base_interrupt',
  'base_interrupt_live',
  'interrupt_live_stream',
  'live_stream_embarrass',
  'stream_embarrass_scandal',
  'embarrass_scandal_like',
  'scandal_like_told',
  'like_told_say',
  'told_say_word',
  'say_word_kept',
  'word_kept_yell',
  'kept_yell_call',
  'yell_call_control',
  'call_control_unhing',
  'control_unhing_almost',
  'unhing_almost_cri',
  'almost_cri_leav',
  'cri_leav_offic',
  'leav_offic_kept',
  'offic_kept_fight',
  'kept_fight_til',
  'fight_til_decid',
  'til_decid_go',
  'decid_go_stay',
  'go_stay_mom',
  'stay_mom_start',
  'mom_start_blame',
  'start_blame_ignor',
  'blame_ignor_need',
  'ignor_need_alreadi',
  'need_alreadi_express',
  'alreadi_express_forgot',
  'express_forgot_ask',
  'forgot_ask_id',
  'ask_id_cost',
  'id_cost_much',
  'cost_much_us',
  'much_us_tell',
  'us_tell_come',
  'tell_come_back',
  'come_back_home',
  'back_home_miss',
  'home_miss_daughter'],
 ['updat',
  'bottom',
  'edit',
  'sinc',
  'mani',
  'peopl',
  'send',
  'dm',
  'dad',
  'went',
  'princip',
  'today',
  'post',
  'updat',
  'situat',
  'solv',
  'edit',
  'pleas',
  'remov',
  'allow',
  'mod',
  'im',
  'talk',
  'dad',
  'today',
  'ask',
  'got',
  'princip',
  'comment',
  'made',
  'littl',
  'sacr',
  'wrong',
  'could',
  'go',
  'bad',
  'situat',
  'post',
  'updat',
  'thing',
  'post',
  'onlin',
  'also',
  'im',
  'usa',
  'even',
  'sound',
  'fake',
  'south',
  'america',
  'thing',
  'realli',
  'bad',
  'guy',
  '-',
  'littl',
  'backstori',
  'lost',
  'mom',
  'dad',
  'rais',
  'alon',
  'last',
  'year',
  'second',
  'dad',
  'call',
  'papa',
  'move',
  'home',
  'happi',
  'famili',
  'four',
  'two',
  'dad',
  'dog',
  'im',
  'asham',
  'famili',
  'never',
  'hid',
  'im',
  'realli',
  'popular',
  'school',
  'realli',
  'told',
  'friend',
  'good',
  'two',
  'month',
  'ago',
  'boy',
  'ill',
  'call',
  'duncan',
  'found',
  'duncan',
  'start',
  'simpl',
  'joke',
  'like',
  'wow',
  'one',
  'mom',
  'promptli',
  'told',
  'teacher',
  'mrsmith',
  'like',
  'tri',
  'understand',
  'want',
  'peopl',
  'understand',
  'patient',
  'duncan',
  'start',
  'escal',
  'enjoy',
  'time',
  'itll',
  'get',
  'wors',
  'sinner',
  'famili',
  'goe',
  'hell',
  'went',
  'mrsmith',
  'cant',
  'prejud',
  'religion',
  'wrong',
  'bibl',
  'tri',
  'understand',
  'countri',
  'everi',
  'class',
  'one',
  'respons',
  'teacher',
  'go',
  'anoth',
  'btw',
  'mani',
  'exampl',
  'paint',
  'pictur',
  'two',
  'month',
  'realiz',
  'want',
  'stop',
  'start',
  'homophob',
  'shit',
  'cafeteria',
  'start',
  'rememb',
  'saddest',
  'thing',
  'could',
  'movi',
  'dog',
  'die',
  'sad',
  'romanc',
  'movi',
  'mufasa',
  'death',
  'fox',
  'hound',
  'take',
  'long',
  'waterwork',
  'come',
  'start',
  'bawl',
  'ugli',
  'sob',
  'basic',
  'scream',
  'ask',
  'said',
  'would',
  'go',
  'hell',
  'hate',
  'dad',
  'make',
  'huge',
  'scene',
  'duncan',
  'start',
  'stutter',
  'plead',
  'tri',
  'make',
  'go',
  'class',
  'talk',
  'teacher',
  'wonder',
  'cri',
  'louder',
  'flinch',
  'tri',
  'pull',
  'away',
  'scene',
  'huge',
  'end',
  'princip',
  'offic',
  'msyat',
  'listen',
  'side',
  'piss',
  'mr',
  'smith',
  'let',
  'tell',
  'whole',
  'stori',
  'even',
  'mr',
  'smith',
  'tri',
  'interrupt',
  'defend',
  'duncan',
  'end',
  'duncan',
  'got',
  'day',
  'suspens',
  'princip',
  'told',
  'go',
  'directli',
  'anyth',
  'like',
  'happen',
  'left',
  'offic',
  'mrsmith',
  'stope',
  'told',
  'hope',
  'happi',
  'put',
  'perman',
  'mark',
  'good',
  'boy',
  'record',
  'decid',
  'weapon',
  'feminin',
  'instead',
  'littl',
  'understand',
  'tri',
  'make',
  'apolog',
  'duncan',
  'told',
  'would',
  'go',
  'right',
  'back',
  'princip',
  'offic',
  'drop',
  'later',
  'duncan',
  'friend',
  'start',
  'messag',
  'accus',
  'act',
  'like',
  'amber',
  'heard',
  'ruin',
  'boy',
  'life',
  'tell',
  'parent',
  'yet',
  'alway',
  'afraid',
  'ill',
  'suffer',
  'choos',
  'love',
  'ill',
  'bring',
  'anyth',
  'handl',
  'worri',
  'feel',
  'like',
  'im',
  'wrong',
  'mrsmith',
  'warn',
  'duncan',
  'friend',
  'im',
  'start',
  'doubt',
  'aita',
  'final',
  'edit',
  'updat',
  'mod',
  'told',
  'updat',
  'post',
  'quit',
  'long',
  'sorri',
  'first',
  'id',
  'like',
  'thank',
  'guy',
  'open',
  'eye',
  'bad',
  'situat',
  'could',
  'get',
  'wors',
  'hurt',
  'dad',
  'let',
  'protect',
  'like',
  'want',
  'protect',
  'updat',
  'sunday',
  'sat',
  'dad',
  'told',
  'everyth',
  'cri',
  'bit',
  'end',
  'sinc',
  'tell',
  'realiz',
  'heavi',
  'felt',
  'carri',
  'sunday',
  'first',
  'time',
  'saw',
  'angri',
  'side',
  'adam',
  'use',
  'name',
  'sinc',
  'nicknam',
  'use',
  'languag',
  'clash',
  'english',
  'like',
  'mrsmith',
  'saw',
  'red',
  'first',
  'thing',
  'reassur',
  'troubl',
  'would',
  'never',
  'fight',
  'bulli',
  'dad',
  'talk',
  'much',
  'seem',
  'sad',
  'shock',
  'hold',
  'hand',
  'adam',
  'talk',
  'ever',
  'heard',
  'past',
  'bulli',
  'teacher',
  'student',
  'church',
  'even',
  'famili',
  'told',
  'cruel',
  'world',
  'differ',
  'peopl',
  'tri',
  'silent',
  'minim',
  'anger',
  'suffer',
  'never',
  'back',
  'alway',
  'famili',
  'behind',
  'thank',
  'love',
  'much',
  'fight',
  'told',
  'child',
  'child',
  'never',
  'imagin',
  'could',
  'would',
  'protect',
  'realiz',
  'much',
  'love',
  'knew',
  'like',
  'famili',
  'felt',
  'love',
  'dad',
  'tell',
  'love',
  'nice',
  'warm',
  'feel',
  'adam',
  'dad',
  'went',
  'school',
  'monday',
  'straight',
  'msyat',
  'offic',
  'told',
  'everyth',
  'text',
  'whatsapp',
  'mrsmith',
  'explain',
  'bulli',
  'detail',
  'convers',
  'long',
  'gave',
  'info',
  'could',
  'ask',
  'leav',
  'class',
  'talk',
  'knew',
  'result',
  'came',
  'back',
  'home',
  'dad',
  'gave',
  'msyat',
  'two',
  'choic',
  'remov',
  'mrsmith',
  'teach',
  'seminar',
  'teacher',
  'bulli',
  'lgbt',
  'caus',
  'dad',
  'pay',
  'remov',
  'school',
  'sue',
  'school',
  'go',
  'local',
  'newspap',
  'stori',
  'choos',
  'first',
  'option',
  'ask',
  'month',
  'find',
  'anoth',
  'teacher',
  'meanwhil',
  'monitor',
  'class',
  'close',
  'mrsmith',
  'allow',
  'penal',
  'grade',
  'like',
  'guy',
  'fear',
  'appar',
  'adam',
  'bit',
  'experi',
  'deal',
  'shit',
  'knew',
  'also',
  'explain',
  'privileg',
  'talk',
  'work',
  'well',
  'time',
  'privat',
  'school',
  'worri',
  'money',
  'reput',
  'enough',
  'money',
  'fight',
  'pay',
  'lawyer',
  'sue',
  'told',
  'mani',
  'children',
  'public',
  'school',
  'like',
  'childhood',
  'suffer',
  'silenc',
  'support',
  'got',
  'time',
  'noth',
  'realli',
  'extraordinari',
  'went',
  'like',
  'mani',
  'guy',
  'predict',
  'duncan',
  'keep',
  'classmat',
  'least',
  'mrsmith',
  'bulli',
  'us',
  'real',
  'asshol',
  'situat',
  'also',
  'papa',
  'awesom',
  'badass',
  'updat_bottom',
  'bottom_edit',
  'edit_sinc',
  'sinc_mani',
  'mani_peopl',
  'peopl_send',
  'send_dm',
  'dm_dad',
  'dad_went',
  'went_princip',
  'princip_today',
  'today_post',
  'post_updat',
  'updat_situat',
  'situat_solv',
  'solv_edit',
  'edit_pleas',
  'pleas_remov',
  'remov_allow',
  'allow_mod',
  'mod_im',
  'im_talk',
  'talk_dad',
  'dad_today',
  'today_ask',
  'ask_got',
  'got_princip',
  'princip_comment',
  'comment_made',
  'made_littl',
  'littl_sacr',
  'sacr_wrong',
  'wrong_could',
  'could_go',
  'go_bad',
  'bad_situat',
  'situat_post',
  'post_updat',
  'updat_thing',
  'thing_post',
  'post_onlin',
  'onlin_also',
  'also_im',
  'im_usa',
  'usa_even',
  'even_sound',
  'sound_fake',
  'fake_south',
  'south_america',
  'america_thing',
  'thing_realli',
  'realli_bad',
  'bad_guy',
  'guy_-',
  '-_littl',
  'littl_backstori',
  'backstori_lost',
  'lost_mom',
  'mom_dad',
  'dad_rais',
  'rais_alon',
  'alon_last',
  'last_year',
  'year_second',
  'second_dad',
  'dad_call',
  'call_papa',
  'papa_move',
  'move_home',
  'home_happi',
  'happi_famili',
  'famili_four',
  'four_two',
  'two_dad',
  'dad_dog',
  'dog_im',
  'im_asham',
  'asham_famili',
  'famili_never',
  'never_hid',
  'hid_im',
  'im_realli',
  'realli_popular',
  'popular_school',
  'school_realli',
  'realli_told',
  'told_friend',
  'friend_good',
  'good_two',
  'two_month',
  'month_ago',
  'ago_boy',
  'boy_ill',
  'ill_call',
  'call_duncan',
  'duncan_found',
  'found_duncan',
  'duncan_start',
  'start_simpl',
  'simpl_joke',
  'joke_like',
  'like_wow',
  'wow_one',
  'one_mom',
  'mom_promptli',
  'promptli_told',
  'told_teacher',
  'teacher_mrsmith',
  'mrsmith_like',
  'like_tri',
  'tri_understand',
  'understand_want',
  'want_peopl',
  'peopl_understand',
  'understand_patient',
  'patient_duncan',
  'duncan_start',
  'start_escal',
  'escal_enjoy',
  'enjoy_time',
  'time_itll',
  'itll_get',
  'get_wors',
  'wors_sinner',
  'sinner_famili',
  'famili_goe',
  'goe_hell',
  'hell_went',
  'went_mrsmith',
  'mrsmith_cant',
  'cant_prejud',
  'prejud_religion',
  'religion_wrong',
  'wrong_bibl',
  'bibl_tri',
  'tri_understand',
  'understand_countri',
  'countri_everi',
  'everi_class',
  'class_one',
  'one_respons',
  'respons_teacher',
  'teacher_go',
  'go_anoth',
  'anoth_btw',
  'btw_mani',
  'mani_exampl',
  'exampl_paint',
  'paint_pictur',
  'pictur_two',
  'two_month',
  'month_realiz',
  'realiz_want',
  'want_stop',
  'stop_start',
  'start_homophob',
  'homophob_shit',
  'shit_cafeteria',
  'cafeteria_start',
  'start_rememb',
  'rememb_saddest',
  'saddest_thing',
  'thing_could',
  'could_movi',
  'movi_dog',
  'dog_die',
  'die_sad',
  'sad_romanc',
  'romanc_movi',
  'movi_mufasa',
  'mufasa_death',
  'death_fox',
  'fox_hound',
  'hound_take',
  'take_long',
  'long_waterwork',
  'waterwork_come',
  'come_start',
  'start_bawl',
  'bawl_ugli',
  'ugli_sob',
  'sob_basic',
  'basic_scream',
  'scream_ask',
  'ask_said',
  'said_would',
  'would_go',
  'go_hell',
  'hell_hate',
  'hate_dad',
  'dad_make',
  'make_huge',
  'huge_scene',
  'scene_duncan',
  'duncan_start',
  'start_stutter',
  'stutter_plead',
  'plead_tri',
  'tri_make',
  'make_go',
  'go_class',
  'class_talk',
  'talk_teacher',
  'teacher_wonder',
  'wonder_cri',
  'cri_louder',
  'louder_flinch',
  'flinch_tri',
  'tri_pull',
  'pull_away',
  'away_scene',
  'scene_huge',
  'huge_end',
  'end_princip',
  'princip_offic',
  'offic_msyat',
  'msyat_listen',
  'listen_side',
  'side_piss',
  'piss_mr',
  'mr_smith',
  'smith_let',
  'let_tell',
  'tell_whole',
  'whole_stori',
  'stori_even',
  'even_mr',
  'mr_smith',
  'smith_tri',
  'tri_interrupt',
  'interrupt_defend',
  'defend_duncan',
  'duncan_end',
  'end_duncan',
  'duncan_got',
  'got_day',
  'day_suspens',
  'suspens_princip',
  'princip_told',
  'told_go',
  'go_directli',
  'directli_anyth',
  'anyth_like',
  'like_happen',
  'happen_left',
  'left_offic',
  'offic_mrsmith',
  'mrsmith_stope',
  'stope_told',
  'told_hope',
  'hope_happi',
  'happi_put',
  'put_perman',
  'perman_mark',
  'mark_good',
  'good_boy',
  'boy_record',
  'record_decid',
  'decid_weapon',
  'weapon_feminin',
  'feminin_instead',
  'instead_littl',
  'littl_understand',
  'understand_tri',
  'tri_make',
  'make_apolog',
  'apolog_duncan',
  'duncan_told',
  'told_would',
  'would_go',
  'go_right',
  'right_back',
  'back_princip',
  'princip_offic',
  'offic_drop',
  'drop_later',
  'later_duncan',
  'duncan_friend',
  'friend_start',
  'start_messag',
  'messag_accus',
  'accus_act',
  'act_like',
  'like_amber',
  'amber_heard',
  'heard_ruin',
  'ruin_boy',
  'boy_life',
  'life_tell',
  'tell_parent',
  'parent_yet',
  'yet_alway',
  'alway_afraid',
  'afraid_ill',
  'ill_suffer',
  'suffer_choos',
  'choos_love',
  'love_ill',
  'ill_bring',
  'bring_anyth',
  'anyth_handl',
  'handl_worri',
  'worri_feel',
  'feel_like',
  'like_im',
  'im_wrong',
  'wrong_mrsmith',
  'mrsmith_warn',
  'warn_duncan',
  'duncan_friend',
  'friend_im',
  'im_start',
  'start_doubt',
  'doubt_aita',
  'aita_final',
  'final_edit',
  'edit_updat',
  'updat_mod',
  'mod_told',
  'told_updat',
  'updat_post',
  'post_quit',
  'quit_long',
  'long_sorri',
  'sorri_first',
  'first_id',
  'id_like',
  'like_thank',
  'thank_guy',
  'guy_open',
  'open_eye',
  'eye_bad',
  'bad_situat',
  'situat_could',
  'could_get',
  'get_wors',
  'wors_hurt',
  'hurt_dad',
  'dad_let',
  'let_protect',
  'protect_like',
  'like_want',
  'want_protect',
  'protect_updat',
  'updat_sunday',
  'sunday_sat',
  'sat_dad',
  'dad_told',
  'told_everyth',
  'everyth_cri',
  'cri_bit',
  'bit_end',
  'end_sinc',
  'sinc_tell',
  'tell_realiz',
  'realiz_heavi',
  'heavi_felt',
  'felt_carri',
  'carri_sunday',
  'sunday_first',
  'first_time',
  'time_saw',
  'saw_angri',
  'angri_side',
  'side_adam',
  'adam_use',
  'use_name',
  'name_sinc',
  'sinc_nicknam',
  'nicknam_use',
  'use_languag',
  'languag_clash',
  'clash_english',
  'english_like',
  'like_mrsmith',
  'mrsmith_saw',
  'saw_red',
  'red_first',
  'first_thing',
  'thing_reassur',
  'reassur_troubl',
  'troubl_would',
  'would_never',
  'never_fight',
  'fight_bulli',
  'bulli_dad',
  'dad_talk',
  'talk_much',
  'much_seem',
  'seem_sad',
  'sad_shock',
  'shock_hold',
  'hold_hand',
  'hand_adam',
  'adam_talk',
  'talk_ever',
  'ever_heard',
  'heard_past',
  'past_bulli',
  'bulli_teacher',
  'teacher_student',
  'student_church',
  'church_even',
  'even_famili',
  'famili_told',
  'told_cruel',
  'cruel_world',
  'world_differ',
  'differ_peopl',
  'peopl_tri',
  'tri_silent',
  'silent_minim',
  'minim_anger',
  'anger_suffer',
  'suffer_never',
  'never_back',
  'back_alway',
  'alway_famili',
  'famili_behind',
  'behind_thank',
  'thank_love',
  'love_much',
  'much_fight',
  ...],
 ['ill',
  'start',
  'say',
  'husband',
  'bob',
  'year',
  'marri',
  'one',
  'mom',
  'habit',
  'keep',
  'function',
  'excus',
  'work',
  'much',
  'true',
  'sometim',
  'make',
  'avail',
  'yet',
  'find',
  'exclud',
  'last',
  'week',
  'mom',
  'invit',
  'us',
  'celebratori',
  'dinner',
  'restaur',
  'complet',
  'recoveri',
  'day',
  'ket',
  'everyon',
  'know',
  'id',
  'pm',
  'bob',
  'obvious',
  'knew',
  'come',
  'thing',
  'arriv',
  'restaur',
  'saw',
  'tabl',
  'full',
  'chair',
  'taken',
  'stood',
  'complet',
  'puzzlement',
  'bob',
  'mom',
  'stare',
  'mom',
  'told',
  'place',
  'left',
  'could',
  'either',
  'bob',
  'get',
  'take',
  'seat',
  'go',
  'home',
  'upset',
  'instead',
  'go',
  'home',
  'went',
  'took',
  'entir',
  'tabl',
  'bob',
  'mom',
  'watch',
  'eye',
  'pop',
  'head',
  'like',
  'saw',
  'someth',
  'shock',
  'ngl',
  'get',
  'weird',
  'look',
  'guest',
  'bob',
  'mom',
  'awkward',
  'honesti',
  'dinner',
  'dessert',
  'went',
  'home',
  'saw',
  'bob',
  'mom',
  'stare',
  'grudgingli',
  'make',
  'way',
  'got',
  'home',
  'hour',
  'later',
  'yell',
  'say',
  'embarrass',
  'mom',
  'infront',
  'guest',
  'yell',
  'ask',
  'wtf',
  'suppos',
  'got',
  'deni',
  'seat',
  'told',
  'mom',
  'fault',
  'guest',
  'arriv',
  'took',
  'avail',
  'chair',
  'told',
  'couldv',
  'save',
  'chair',
  'said',
  'couldv',
  'left',
  'instead',
  'remind',
  'guest',
  'expect',
  'level',
  'entitl',
  'accept',
  'went',
  'ruin',
  'entir',
  'dinner',
  'mom',
  'pout',
  'day',
  'get',
  'realli',
  'expect',
  'realli',
  'entitl',
  'mean',
  'wife',
  'save',
  'seat',
  'clearli',
  'im',
  'miss',
  'someth',
  'ill_start',
  'start_say',
  'say_husband',
  'husband_bob',
  'bob_year',
  'year_marri',
  'marri_one',
  'one_mom',
  'mom_habit',
  'habit_keep',
  'keep_function',
  'function_excus',
  'excus_work',
  'work_much',
  'much_true',
  'true_sometim',
  'sometim_make',
  'make_avail',
  'avail_yet',
  'yet_find',
  'find_exclud',
  'exclud_last',
  'last_week',
  'week_mom',
  'mom_invit',
  'invit_us',
  'us_celebratori',
  'celebratori_dinner',
  'dinner_restaur',
  'restaur_complet',
  'complet_recoveri',
  'recoveri_day',
  'day_ket',
  'ket_everyon',
  'everyon_know',
  'know_id',
  'id_pm',
  'pm_bob',
  'bob_obvious',
  'obvious_knew',
  'knew_come',
  'come_thing',
  'thing_arriv',
  'arriv_restaur',
  'restaur_saw',
  'saw_tabl',
  'tabl_full',
  'full_chair',
  'chair_taken',
  'taken_stood',
  'stood_complet',
  'complet_puzzlement',
  'puzzlement_bob',
  'bob_mom',
  'mom_stare',
  'stare_mom',
  'mom_told',
  'told_place',
  'place_left',
  'left_could',
  'could_either',
  'either_bob',
  'bob_get',
  'get_take',
  'take_seat',
  'seat_go',
  'go_home',
  'home_upset',
  'upset_instead',
  'instead_go',
  'go_home',
  'home_went',
  'went_took',
  'took_entir',
  'entir_tabl',
  'tabl_bob',
  'bob_mom',
  'mom_watch',
  'watch_eye',
  'eye_pop',
  'pop_head',
  'head_like',
  'like_saw',
  'saw_someth',
  'someth_shock',
  'shock_ngl',
  'ngl_get',
  'get_weird',
  'weird_look',
  'look_guest',
  'guest_bob',
  'bob_mom',
  'mom_awkward',
  'awkward_honesti',
  'honesti_dinner',
  'dinner_dessert',
  'dessert_went',
  'went_home',
  'home_saw',
  'saw_bob',
  'bob_mom',
  'mom_stare',
  'stare_grudgingli',
  'grudgingli_make',
  'make_way',
  'way_got',
  'got_home',
  'home_hour',
  'hour_later',
  'later_yell',
  'yell_say',
  'say_embarrass',
  'embarrass_mom',
  'mom_infront',
  'infront_guest',
  'guest_yell',
  'yell_ask',
  'ask_wtf',
  'wtf_suppos',
  'suppos_got',
  'got_deni',
  'deni_seat',
  'seat_told',
  'told_mom',
  'mom_fault',
  'fault_guest',
  'guest_arriv',
  'arriv_took',
  'took_avail',
  'avail_chair',
  'chair_told',
  'told_couldv',
  'couldv_save',
  'save_chair',
  'chair_said',
  'said_couldv',
  'couldv_left',
  'left_instead',
  'instead_remind',
  'remind_guest',
  'guest_expect',
  'expect_level',
  'level_entitl',
  'entitl_accept',
  'accept_went',
  'went_ruin',
  'ruin_entir',
  'entir_dinner',
  'dinner_mom',
  'mom_pout',
  'pout_day',
  'day_get',
  'get_realli',
  'realli_expect',
  'expect_realli',
  'realli_entitl',
  'entitl_mean',
  'mean_wife',
  'wife_save',
  'save_seat',
  'seat_clearli',
  'clearli_im',
  'im_miss',
  'miss_someth',
  'ill_start_say',
  'start_say_husband',
  'say_husband_bob',
  'husband_bob_year',
  'bob_year_marri',
  'year_marri_one',
  'marri_one_mom',
  'one_mom_habit',
  'mom_habit_keep',
  'habit_keep_function',
  'keep_function_excus',
  'function_excus_work',
  'excus_work_much',
  'work_much_true',
  'much_true_sometim',
  'true_sometim_make',
  'sometim_make_avail',
  'make_avail_yet',
  'avail_yet_find',
  'yet_find_exclud',
  'find_exclud_last',
  'exclud_last_week',
  'last_week_mom',
  'week_mom_invit',
  'mom_invit_us',
  'invit_us_celebratori',
  'us_celebratori_dinner',
  'celebratori_dinner_restaur',
  'dinner_restaur_complet',
  'restaur_complet_recoveri',
  'complet_recoveri_day',
  'recoveri_day_ket',
  'day_ket_everyon',
  'ket_everyon_know',
  'everyon_know_id',
  'know_id_pm',
  'id_pm_bob',
  'pm_bob_obvious',
  'bob_obvious_knew',
  'obvious_knew_come',
  'knew_come_thing',
  'come_thing_arriv',
  'thing_arriv_restaur',
  'arriv_restaur_saw',
  'restaur_saw_tabl',
  'saw_tabl_full',
  'tabl_full_chair',
  'full_chair_taken',
  'chair_taken_stood',
  'taken_stood_complet',
  'stood_complet_puzzlement',
  'complet_puzzlement_bob',
  'puzzlement_bob_mom',
  'bob_mom_stare',
  'mom_stare_mom',
  'stare_mom_told',
  'mom_told_place',
  'told_place_left',
  'place_left_could',
  'left_could_either',
  'could_either_bob',
  'either_bob_get',
  'bob_get_take',
  'get_take_seat',
  'take_seat_go',
  'seat_go_home',
  'go_home_upset',
  'home_upset_instead',
  'upset_instead_go',
  'instead_go_home',
  'go_home_went',
  'home_went_took',
  'went_took_entir',
  'took_entir_tabl',
  'entir_tabl_bob',
  'tabl_bob_mom',
  'bob_mom_watch',
  'mom_watch_eye',
  'watch_eye_pop',
  'eye_pop_head',
  'pop_head_like',
  'head_like_saw',
  'like_saw_someth',
  'saw_someth_shock',
  'someth_shock_ngl',
  'shock_ngl_get',
  'ngl_get_weird',
  'get_weird_look',
  'weird_look_guest',
  'look_guest_bob',
  'guest_bob_mom',
  'bob_mom_awkward',
  'mom_awkward_honesti',
  'awkward_honesti_dinner',
  'honesti_dinner_dessert',
  'dinner_dessert_went',
  'dessert_went_home',
  'went_home_saw',
  'home_saw_bob',
  'saw_bob_mom',
  'bob_mom_stare',
  'mom_stare_grudgingli',
  'stare_grudgingli_make',
  'grudgingli_make_way',
  'make_way_got',
  'way_got_home',
  'got_home_hour',
  'home_hour_later',
  'hour_later_yell',
  'later_yell_say',
  'yell_say_embarrass',
  'say_embarrass_mom',
  'embarrass_mom_infront',
  'mom_infront_guest',
  'infront_guest_yell',
  'guest_yell_ask',
  'yell_ask_wtf',
  'ask_wtf_suppos',
  'wtf_suppos_got',
  'suppos_got_deni',
  'got_deni_seat',
  'deni_seat_told',
  'seat_told_mom',
  'told_mom_fault',
  'mom_fault_guest',
  'fault_guest_arriv',
  'guest_arriv_took',
  'arriv_took_avail',
  'took_avail_chair',
  'avail_chair_told',
  'chair_told_couldv',
  'told_couldv_save',
  'couldv_save_chair',
  'save_chair_said',
  'chair_said_couldv',
  'said_couldv_left',
  'couldv_left_instead',
  'left_instead_remind',
  'instead_remind_guest',
  'remind_guest_expect',
  'guest_expect_level',
  'expect_level_entitl',
  'level_entitl_accept',
  'entitl_accept_went',
  'accept_went_ruin',
  'went_ruin_entir',
  'ruin_entir_dinner',
  'entir_dinner_mom',
  'dinner_mom_pout',
  'mom_pout_day',
  'pout_day_get',
  'day_get_realli',
  'get_realli_expect',
  'realli_expect_realli',
  'expect_realli_entitl',
  'realli_entitl_mean',
  'entitl_mean_wife',
  'mean_wife_save',
  'wife_save_seat',
  'save_seat_clearli',
  'seat_clearli_im',
  'clearli_im_miss',
  'im_miss_someth'],
 ['husband',
  'goe',
  'annual',
  'vacat',
  'famili',
  'im',
  'okay',
  'term',
  'sinc',
  'weve',
  'marri',
  'short',
  'time',
  'see',
  'famili',
  'much',
  'still',
  'barrier',
  'keep',
  'complet',
  'comfort',
  'around',
  'famili',
  'arrang',
  'vacat',
  'last',
  'week',
  'curios',
  'ask',
  'could',
  'come',
  'husband',
  'felt',
  'hasit',
  'told',
  'itd',
  'great',
  'opportun',
  'get',
  'know',
  'famili',
  'better',
  'agre',
  'take',
  'famili',
  'surpris',
  'see',
  'still',
  'welcom',
  'rd',
  'day',
  'vacat',
  'dad',
  'mom',
  'brother',
  'spous',
  'sit',
  'tabl',
  'outsid',
  'talk',
  'prepar',
  'fruit',
  'salad',
  'make',
  'way',
  'back',
  'overheard',
  'mil',
  'say',
  'realli',
  'nowher',
  'els',
  'spend',
  'weekend',
  'first',
  'idea',
  'talk',
  'kept',
  'walk',
  'stop',
  'overheard',
  'husband',
  'say',
  'know',
  'want',
  'bring',
  'suppos',
  'know',
  'pushi',
  'get',
  'instantli',
  'figur',
  'felt',
  'shaken',
  'point',
  'almost',
  'drop',
  'salad',
  'whole',
  'time',
  'clean',
  'cook',
  'look',
  'kid',
  'think',
  'inconveni',
  'quietli',
  'book',
  'ticket',
  'went',
  'home',
  'first',
  'plane',
  'call',
  'text',
  'respond',
  'anyth',
  'let',
  'know',
  'home',
  'got',
  'back',
  'went',
  'say',
  'disrespect',
  'juvenil',
  'told',
  'overheard',
  'convers',
  'mom',
  'said',
  'wrong',
  'eavesdrop',
  'famili',
  'warm',
  'term',
  'stop',
  'push',
  'around',
  'feel',
  'comfort',
  'basic',
  'say',
  'fault',
  'come',
  'along',
  'first',
  'place',
  'said',
  'go',
  'home',
  'like',
  'made',
  'famili',
  'disappoint',
  'gave',
  'realli',
  'bad',
  'impress',
  'think',
  'might',
  'mess',
  'someehat',
  'ruin',
  'well',
  'husband_goe',
  'goe_annual',
  'annual_vacat',
  'vacat_famili',
  'famili_im',
  'im_okay',
  'okay_term',
  'term_sinc',
  'sinc_weve',
  'weve_marri',
  'marri_short',
  'short_time',
  'time_see',
  'see_famili',
  'famili_much',
  'much_still',
  'still_barrier',
  'barrier_keep',
  'keep_complet',
  'complet_comfort',
  'comfort_around',
  'around_famili',
  'famili_arrang',
  'arrang_vacat',
  'vacat_last',
  'last_week',
  'week_curios',
  'curios_ask',
  'ask_could',
  'could_come',
  'come_husband',
  'husband_felt',
  'felt_hasit',
  'hasit_told',
  'told_itd',
  'itd_great',
  'great_opportun',
  'opportun_get',
  'get_know',
  'know_famili',
  'famili_better',
  'better_agre',
  'agre_take',
  'take_famili',
  'famili_surpris',
  'surpris_see',
  'see_still',
  'still_welcom',
  'welcom_rd',
  'rd_day',
  'day_vacat',
  'vacat_dad',
  'dad_mom',
  'mom_brother',
  'brother_spous',
  'spous_sit',
  'sit_tabl',
  'tabl_outsid',
  'outsid_talk',
  'talk_prepar',
  'prepar_fruit',
  'fruit_salad',
  'salad_make',
  'make_way',
  'way_back',
  'back_overheard',
  'overheard_mil',
  'mil_say',
  'say_realli',
  'realli_nowher',
  'nowher_els',
  'els_spend',
  'spend_weekend',
  'weekend_first',
  'first_idea',
  'idea_talk',
  'talk_kept',
  'kept_walk',
  'walk_stop',
  'stop_overheard',
  'overheard_husband',
  'husband_say',
  'say_know',
  'know_want',
  'want_bring',
  'bring_suppos',
  'suppos_know',
  'know_pushi',
  'pushi_get',
  'get_instantli',
  'instantli_figur',
  'figur_felt',
  'felt_shaken',
  'shaken_point',
  'point_almost',
  'almost_drop',
  'drop_salad',
  'salad_whole',
  'whole_time',
  'time_clean',
  'clean_cook',
  'cook_look',
  'look_kid',
  'kid_think',
  'think_inconveni',
  'inconveni_quietli',
  'quietli_book',
  'book_ticket',
  'ticket_went',
  'went_home',
  'home_first',
  'first_plane',
  'plane_call',
  'call_text',
  'text_respond',
  'respond_anyth',
  'anyth_let',
  'let_know',
  'know_home',
  'home_got',
  'got_back',
  'back_went',
  'went_say',
  'say_disrespect',
  'disrespect_juvenil',
  'juvenil_told',
  'told_overheard',
  'overheard_convers',
  'convers_mom',
  'mom_said',
  'said_wrong',
  'wrong_eavesdrop',
  'eavesdrop_famili',
  'famili_warm',
  'warm_term',
  'term_stop',
  'stop_push',
  'push_around',
  'around_feel',
  'feel_comfort',
  'comfort_basic',
  'basic_say',
  'say_fault',
  'fault_come',
  'come_along',
  'along_first',
  'first_place',
  'place_said',
  'said_go',
  'go_home',
  'home_like',
  'like_made',
  'made_famili',
  'famili_disappoint',
  'disappoint_gave',
  'gave_realli',
  'realli_bad',
  'bad_impress',
  'impress_think',
  'think_might',
  'might_mess',
  'mess_someehat',
  'someehat_ruin',
  'ruin_well',
  'husband_goe_annual',
  'goe_annual_vacat',
  'annual_vacat_famili',
  'vacat_famili_im',
  'famili_im_okay',
  'im_okay_term',
  'okay_term_sinc',
  'term_sinc_weve',
  'sinc_weve_marri',
  'weve_marri_short',
  'marri_short_time',
  'short_time_see',
  'time_see_famili',
  'see_famili_much',
  'famili_much_still',
  'much_still_barrier',
  'still_barrier_keep',
  'barrier_keep_complet',
  'keep_complet_comfort',
  'complet_comfort_around',
  'comfort_around_famili',
  'around_famili_arrang',
  'famili_arrang_vacat',
  'arrang_vacat_last',
  'vacat_last_week',
  'last_week_curios',
  'week_curios_ask',
  'curios_ask_could',
  'ask_could_come',
  'could_come_husband',
  'come_husband_felt',
  'husband_felt_hasit',
  'felt_hasit_told',
  'hasit_told_itd',
  'told_itd_great',
  'itd_great_opportun',
  'great_opportun_get',
  'opportun_get_know',
  'get_know_famili',
  'know_famili_better',
  'famili_better_agre',
  'better_agre_take',
  'agre_take_famili',
  'take_famili_surpris',
  'famili_surpris_see',
  'surpris_see_still',
  'see_still_welcom',
  'still_welcom_rd',
  'welcom_rd_day',
  'rd_day_vacat',
  'day_vacat_dad',
  'vacat_dad_mom',
  'dad_mom_brother',
  'mom_brother_spous',
  'brother_spous_sit',
  'spous_sit_tabl',
  'sit_tabl_outsid',
  'tabl_outsid_talk',
  'outsid_talk_prepar',
  'talk_prepar_fruit',
  'prepar_fruit_salad',
  'fruit_salad_make',
  'salad_make_way',
  'make_way_back',
  'way_back_overheard',
  'back_overheard_mil',
  'overheard_mil_say',
  'mil_say_realli',
  'say_realli_nowher',
  'realli_nowher_els',
  'nowher_els_spend',
  'els_spend_weekend',
  'spend_weekend_first',
  'weekend_first_idea',
  'first_idea_talk',
  'idea_talk_kept',
  'talk_kept_walk',
  'kept_walk_stop',
  'walk_stop_overheard',
  'stop_overheard_husband',
  'overheard_husband_say',
  'husband_say_know',
  'say_know_want',
  'know_want_bring',
  'want_bring_suppos',
  'bring_suppos_know',
  'suppos_know_pushi',
  'know_pushi_get',
  'pushi_get_instantli',
  'get_instantli_figur',
  'instantli_figur_felt',
  'figur_felt_shaken',
  'felt_shaken_point',
  'shaken_point_almost',
  'point_almost_drop',
  'almost_drop_salad',
  'drop_salad_whole',
  'salad_whole_time',
  'whole_time_clean',
  'time_clean_cook',
  'clean_cook_look',
  'cook_look_kid',
  'look_kid_think',
  'kid_think_inconveni',
  'think_inconveni_quietli',
  'inconveni_quietli_book',
  'quietli_book_ticket',
  'book_ticket_went',
  'ticket_went_home',
  'went_home_first',
  'home_first_plane',
  'first_plane_call',
  'plane_call_text',
  'call_text_respond',
  'text_respond_anyth',
  'respond_anyth_let',
  'anyth_let_know',
  'let_know_home',
  'know_home_got',
  'home_got_back',
  'got_back_went',
  'back_went_say',
  'went_say_disrespect',
  'say_disrespect_juvenil',
  'disrespect_juvenil_told',
  'juvenil_told_overheard',
  'told_overheard_convers',
  'overheard_convers_mom',
  'convers_mom_said',
  'mom_said_wrong',
  'said_wrong_eavesdrop',
  'wrong_eavesdrop_famili',
  'eavesdrop_famili_warm',
  'famili_warm_term',
  'warm_term_stop',
  'term_stop_push',
  'stop_push_around',
  'push_around_feel',
  'around_feel_comfort',
  'feel_comfort_basic',
  'comfort_basic_say',
  'basic_say_fault',
  'say_fault_come',
  'fault_come_along',
  'come_along_first',
  'along_first_place',
  'first_place_said',
  'place_said_go',
  'said_go_home',
  'go_home_like',
  'home_like_made',
  'like_made_famili',
  'made_famili_disappoint',
  'famili_disappoint_gave',
  'disappoint_gave_realli',
  'gave_realli_bad',
  'realli_bad_impress',
  'bad_impress_think',
  'impress_think_might',
  'think_might_mess',
  'might_mess_someehat',
  'mess_someehat_ruin',
  'someehat_ruin_well'],
 ['nephew',
  'pass',
  'away',
  'year',
  'ago',
  'cancer',
  'right',
  'birthday',
  'celebr',
  'noth',
  'everyon',
  'devast',
  'sister',
  'denis',
  'still',
  'griev',
  'therapi',
  'make',
  'progress',
  'slow',
  'famili',
  'tri',
  'support',
  'possibl',
  'birthday',
  'famili',
  'import',
  'throw',
  'huge',
  'parti',
  'believ',
  'taught',
  'birthday',
  'import',
  'cherish',
  'yesterday',
  'birthday',
  'obvious',
  'felt',
  'bad',
  'anniversari',
  'nephew',
  'death',
  'also',
  'littl',
  'abl',
  'celebr',
  'like',
  'use',
  'girlfriend',
  'knew',
  'morn',
  'went',
  'denis',
  'hous',
  'stay',
  'side',
  'almost',
  'lunch',
  'time',
  'mother',
  'would',
  'stay',
  'want',
  'leav',
  'alon',
  'one',
  'could',
  'stay',
  'day',
  'went',
  'work',
  'night',
  'girlfriend',
  'made',
  'surpris',
  'home',
  'candlelight',
  'dinner',
  'small',
  'cake',
  'someth',
  'intim',
  'us',
  'sinc',
  'famili',
  'bad',
  'way',
  'post',
  'social',
  'media',
  'girlfriend',
  'post',
  'pictur',
  'us',
  'hold',
  'hand',
  'dinner',
  'made',
  'happi',
  'bday',
  'love',
  'mom',
  'denis',
  'follow',
  'instagram',
  'woke',
  'next',
  'day',
  'hundr',
  'text',
  'mom',
  'denis',
  'ask',
  'celebr',
  'even',
  'though',
  'sad',
  'day',
  'heartless',
  'celebr',
  'know',
  'sister',
  'bad',
  'way',
  'even',
  'though',
  'said',
  'surpris',
  'call',
  'cold',
  'heartless',
  'insensit',
  'pain',
  'say',
  'refus',
  'celebr',
  'glad',
  'celebr',
  'someth',
  'import',
  'even',
  'realiz',
  'girlfriend',
  'post',
  'photo',
  'insta',
  'btw',
  'case',
  'wonder',
  'none',
  'rememb',
  'birthday',
  'aita',
  'nephew_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_cancer',
  'cancer_right',
  'right_birthday',
  'birthday_celebr',
  'celebr_noth',
  'noth_everyon',
  'everyon_devast',
  'devast_sister',
  'sister_denis',
  'denis_still',
  'still_griev',
  'griev_therapi',
  'therapi_make',
  'make_progress',
  'progress_slow',
  'slow_famili',
  'famili_tri',
  'tri_support',
  'support_possibl',
  'possibl_birthday',
  'birthday_famili',
  'famili_import',
  'import_throw',
  'throw_huge',
  'huge_parti',
  'parti_believ',
  'believ_taught',
  'taught_birthday',
  'birthday_import',
  'import_cherish',
  'cherish_yesterday',
  'yesterday_birthday',
  'birthday_obvious',
  'obvious_felt',
  'felt_bad',
  'bad_anniversari',
  'anniversari_nephew',
  'nephew_death',
  'death_also',
  'also_littl',
  'littl_abl',
  'abl_celebr',
  'celebr_like',
  'like_use',
  'use_girlfriend',
  'girlfriend_knew',
  'knew_morn',
  'morn_went',
  'went_denis',
  'denis_hous',
  'hous_stay',
  'stay_side',
  'side_almost',
  'almost_lunch',
  'lunch_time',
  'time_mother',
  'mother_would',
  'would_stay',
  'stay_want',
  'want_leav',
  'leav_alon',
  'alon_one',
  'one_could',
  'could_stay',
  'stay_day',
  'day_went',
  'went_work',
  'work_night',
  'night_girlfriend',
  'girlfriend_made',
  'made_surpris',
  'surpris_home',
  'home_candlelight',
  'candlelight_dinner',
  'dinner_small',
  'small_cake',
  'cake_someth',
  'someth_intim',
  'intim_us',
  'us_sinc',
  'sinc_famili',
  'famili_bad',
  'bad_way',
  'way_post',
  'post_social',
  'social_media',
  'media_girlfriend',
  'girlfriend_post',
  'post_pictur',
  'pictur_us',
  'us_hold',
  'hold_hand',
  'hand_dinner',
  'dinner_made',
  'made_happi',
  'happi_bday',
  'bday_love',
  'love_mom',
  'mom_denis',
  'denis_follow',
  'follow_instagram',
  'instagram_woke',
  'woke_next',
  'next_day',
  'day_hundr',
  'hundr_text',
  'text_mom',
  'mom_denis',
  'denis_ask',
  'ask_celebr',
  'celebr_even',
  'even_though',
  'though_sad',
  'sad_day',
  'day_heartless',
  'heartless_celebr',
  'celebr_know',
  'know_sister',
  'sister_bad',
  'bad_way',
  'way_even',
  'even_though',
  'though_said',
  'said_surpris',
  'surpris_call',
  'call_cold',
  'cold_heartless',
  'heartless_insensit',
  'insensit_pain',
  'pain_say',
  'say_refus',
  'refus_celebr',
  'celebr_glad',
  'glad_celebr',
  'celebr_someth',
  'someth_import',
  'import_even',
  'even_realiz',
  'realiz_girlfriend',
  'girlfriend_post',
  'post_photo',
  'photo_insta',
  'insta_btw',
  'btw_case',
  'case_wonder',
  'wonder_none',
  'none_rememb',
  'rememb_birthday',
  'birthday_aita',
  'nephew_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_cancer',
  'ago_cancer_right',
  'cancer_right_birthday',
  'right_birthday_celebr',
  'birthday_celebr_noth',
  'celebr_noth_everyon',
  'noth_everyon_devast',
  'everyon_devast_sister',
  'devast_sister_denis',
  'sister_denis_still',
  'denis_still_griev',
  'still_griev_therapi',
  'griev_therapi_make',
  'therapi_make_progress',
  'make_progress_slow',
  'progress_slow_famili',
  'slow_famili_tri',
  'famili_tri_support',
  'tri_support_possibl',
  'support_possibl_birthday',
  'possibl_birthday_famili',
  'birthday_famili_import',
  'famili_import_throw',
  'import_throw_huge',
  'throw_huge_parti',
  'huge_parti_believ',
  'parti_believ_taught',
  'believ_taught_birthday',
  'taught_birthday_import',
  'birthday_import_cherish',
  'import_cherish_yesterday',
  'cherish_yesterday_birthday',
  'yesterday_birthday_obvious',
  'birthday_obvious_felt',
  'obvious_felt_bad',
  'felt_bad_anniversari',
  'bad_anniversari_nephew',
  'anniversari_nephew_death',
  'nephew_death_also',
  'death_also_littl',
  'also_littl_abl',
  'littl_abl_celebr',
  'abl_celebr_like',
  'celebr_like_use',
  'like_use_girlfriend',
  'use_girlfriend_knew',
  'girlfriend_knew_morn',
  'knew_morn_went',
  'morn_went_denis',
  'went_denis_hous',
  'denis_hous_stay',
  'hous_stay_side',
  'stay_side_almost',
  'side_almost_lunch',
  'almost_lunch_time',
  'lunch_time_mother',
  'time_mother_would',
  'mother_would_stay',
  'would_stay_want',
  'stay_want_leav',
  'want_leav_alon',
  'leav_alon_one',
  'alon_one_could',
  'one_could_stay',
  'could_stay_day',
  'stay_day_went',
  'day_went_work',
  'went_work_night',
  'work_night_girlfriend',
  'night_girlfriend_made',
  'girlfriend_made_surpris',
  'made_surpris_home',
  'surpris_home_candlelight',
  'home_candlelight_dinner',
  'candlelight_dinner_small',
  'dinner_small_cake',
  'small_cake_someth',
  'cake_someth_intim',
  'someth_intim_us',
  'intim_us_sinc',
  'us_sinc_famili',
  'sinc_famili_bad',
  'famili_bad_way',
  'bad_way_post',
  'way_post_social',
  'post_social_media',
  'social_media_girlfriend',
  'media_girlfriend_post',
  'girlfriend_post_pictur',
  'post_pictur_us',
  'pictur_us_hold',
  'us_hold_hand',
  'hold_hand_dinner',
  'hand_dinner_made',
  'dinner_made_happi',
  'made_happi_bday',
  'happi_bday_love',
  'bday_love_mom',
  'love_mom_denis',
  'mom_denis_follow',
  'denis_follow_instagram',
  'follow_instagram_woke',
  'instagram_woke_next',
  'woke_next_day',
  'next_day_hundr',
  'day_hundr_text',
  'hundr_text_mom',
  'text_mom_denis',
  'mom_denis_ask',
  'denis_ask_celebr',
  'ask_celebr_even',
  'celebr_even_though',
  'even_though_sad',
  'though_sad_day',
  'sad_day_heartless',
  'day_heartless_celebr',
  'heartless_celebr_know',
  'celebr_know_sister',
  'know_sister_bad',
  'sister_bad_way',
  'bad_way_even',
  'way_even_though',
  'even_though_said',
  'though_said_surpris',
  'said_surpris_call',
  'surpris_call_cold',
  'call_cold_heartless',
  'cold_heartless_insensit',
  'heartless_insensit_pain',
  'insensit_pain_say',
  'pain_say_refus',
  'say_refus_celebr',
  'refus_celebr_glad',
  'celebr_glad_celebr',
  'glad_celebr_someth',
  'celebr_someth_import',
  'someth_import_even',
  'import_even_realiz',
  'even_realiz_girlfriend',
  'realiz_girlfriend_post',
  'girlfriend_post_photo',
  'post_photo_insta',
  'photo_insta_btw',
  'insta_btw_case',
  'btw_case_wonder',
  'case_wonder_none',
  'wonder_none_rememb',
  'none_rememb_birthday',
  'rememb_birthday_aita'],
 ['grew',
  'famili',
  'men',
  'prank',
  'teas',
  'eversinc',
  'fianc',
  'tim',
  'got',
  'engag',
  'cousin',
  'brother',
  'dad',
  'uncl',
  'joke',
  'run',
  'test',
  'see',
  'type',
  'man',
  'tim',
  'theyv',
  'done',
  'stuff',
  'like',
  'forc',
  'play',
  'chess',
  'time',
  'raw',
  'secretli',
  'slash',
  'tire',
  'see',
  'hed',
  'fix',
  'like',
  'man',
  'get',
  'help',
  'like',
  'lazi',
  'guy',
  'theyd',
  'ask',
  'question',
  'like',
  'joke',
  'hed',
  'like',
  'tell',
  'futur',
  'mil',
  'opinion',
  'abort',
  'jesu',
  'gender',
  'equal',
  'etc',
  'also',
  'test',
  'fish',
  'hunt',
  'skill',
  'overwhelm',
  'hypothet',
  'scenario',
  'test',
  'decis',
  'make',
  'abilitiesment',
  'strength',
  'kept',
  'call',
  'slow',
  'soft',
  'medic',
  'condit',
  'asthma',
  'think',
  'make',
  'excus',
  'demand',
  'stop',
  'dad',
  'said',
  'typic',
  'stuff',
  'men',
  'challeng',
  'said',
  'ruin',
  'fun',
  'last',
  'week',
  'took',
  'tim',
  'day',
  'trip',
  'hid',
  'inhal',
  'left',
  'return',
  'hr',
  'told',
  'seeth',
  'said',
  'admit',
  'hide',
  'challeng',
  'explod',
  'return',
  'cousin',
  'ask',
  'littl',
  'timmi',
  'ran',
  'tattl',
  'yell',
  'uninvit',
  'wed',
  'brother',
  'freak',
  'say',
  'prank',
  'go',
  'give',
  'back',
  'dad',
  'said',
  'theyll',
  'apolog',
  'insist',
  'tim',
  'lost',
  'littl',
  'respect',
  'theyd',
  'gain',
  'eye',
  'alway',
  'soft',
  'colleg',
  'kid',
  'challeng',
  'call',
  'aw',
  'left',
  'cousin',
  'beg',
  'talk',
  'uncl',
  'quiet',
  'dad',
  'mad',
  'get',
  'mom',
  'involv',
  'get',
  'reconsid',
  'decis',
  'keep',
  'refus',
  'invit',
  'mom',
  'say',
  'im',
  'exagger',
  'let',
  'bygon',
  'bygon',
  'let',
  'ruin',
  'relationship',
  'famili',
  'aita',
  'make',
  'hill',
  'die',
  'exagger',
  'grew_famili',
  'famili_men',
  'men_prank',
  'prank_teas',
  'teas_eversinc',
  'eversinc_fianc',
  'fianc_tim',
  'tim_got',
  'got_engag',
  'engag_cousin',
  'cousin_brother',
  'brother_dad',
  'dad_uncl',
  'uncl_joke',
  'joke_run',
  'run_test',
  'test_see',
  'see_type',
  'type_man',
  'man_tim',
  'tim_theyv',
  'theyv_done',
  'done_stuff',
  'stuff_like',
  'like_forc',
  'forc_play',
  'play_chess',
  'chess_time',
  'time_raw',
  'raw_secretli',
  'secretli_slash',
  'slash_tire',
  'tire_see',
  'see_hed',
  'hed_fix',
  'fix_like',
  'like_man',
  'man_get',
  'get_help',
  'help_like',
  'like_lazi',
  'lazi_guy',
  'guy_theyd',
  'theyd_ask',
  'ask_question',
  'question_like',
  'like_joke',
  'joke_hed',
  'hed_like',
  'like_tell',
  'tell_futur',
  'futur_mil',
  'mil_opinion',
  'opinion_abort',
  'abort_jesu',
  'jesu_gender',
  'gender_equal',
  'equal_etc',
  'etc_also',
  'also_test',
  'test_fish',
  'fish_hunt',
  'hunt_skill',
  'skill_overwhelm',
  'overwhelm_hypothet',
  'hypothet_scenario',
  'scenario_test',
  'test_decis',
  'decis_make',
  'make_abilitiesment',
  'abilitiesment_strength',
  'strength_kept',
  'kept_call',
  'call_slow',
  'slow_soft',
  'soft_medic',
  'medic_condit',
  'condit_asthma',
  'asthma_think',
  'think_make',
  'make_excus',
  'excus_demand',
  'demand_stop',
  'stop_dad',
  'dad_said',
  'said_typic',
  'typic_stuff',
  'stuff_men',
  'men_challeng',
  'challeng_said',
  'said_ruin',
  'ruin_fun',
  'fun_last',
  'last_week',
  'week_took',
  'took_tim',
  'tim_day',
  'day_trip',
  'trip_hid',
  'hid_inhal',
  'inhal_left',
  'left_return',
  'return_hr',
  'hr_told',
  'told_seeth',
  'seeth_said',
  'said_admit',
  'admit_hide',
  'hide_challeng',
  'challeng_explod',
  'explod_return',
  'return_cousin',
  'cousin_ask',
  'ask_littl',
  'littl_timmi',
  'timmi_ran',
  'ran_tattl',
  'tattl_yell',
  'yell_uninvit',
  'uninvit_wed',
  'wed_brother',
  'brother_freak',
  'freak_say',
  'say_prank',
  'prank_go',
  'go_give',
  'give_back',
  'back_dad',
  'dad_said',
  'said_theyll',
  'theyll_apolog',
  'apolog_insist',
  'insist_tim',
  'tim_lost',
  'lost_littl',
  'littl_respect',
  'respect_theyd',
  'theyd_gain',
  'gain_eye',
  'eye_alway',
  'alway_soft',
  'soft_colleg',
  'colleg_kid',
  'kid_challeng',
  'challeng_call',
  'call_aw',
  'aw_left',
  'left_cousin',
  'cousin_beg',
  'beg_talk',
  'talk_uncl',
  'uncl_quiet',
  'quiet_dad',
  'dad_mad',
  'mad_get',
  'get_mom',
  'mom_involv',
  'involv_get',
  'get_reconsid',
  'reconsid_decis',
  'decis_keep',
  'keep_refus',
  'refus_invit',
  'invit_mom',
  'mom_say',
  'say_im',
  'im_exagger',
  'exagger_let',
  'let_bygon',
  'bygon_bygon',
  'bygon_let',
  'let_ruin',
  'ruin_relationship',
  'relationship_famili',
  'famili_aita',
  'aita_make',
  'make_hill',
  'hill_die',
  'die_exagger',
  'grew_famili_men',
  'famili_men_prank',
  'men_prank_teas',
  'prank_teas_eversinc',
  'teas_eversinc_fianc',
  'eversinc_fianc_tim',
  'fianc_tim_got',
  'tim_got_engag',
  'got_engag_cousin',
  'engag_cousin_brother',
  'cousin_brother_dad',
  'brother_dad_uncl',
  'dad_uncl_joke',
  'uncl_joke_run',
  'joke_run_test',
  'run_test_see',
  'test_see_type',
  'see_type_man',
  'type_man_tim',
  'man_tim_theyv',
  'tim_theyv_done',
  'theyv_done_stuff',
  'done_stuff_like',
  'stuff_like_forc',
  'like_forc_play',
  'forc_play_chess',
  'play_chess_time',
  'chess_time_raw',
  'time_raw_secretli',
  'raw_secretli_slash',
  'secretli_slash_tire',
  'slash_tire_see',
  'tire_see_hed',
  'see_hed_fix',
  'hed_fix_like',
  'fix_like_man',
  'like_man_get',
  'man_get_help',
  'get_help_like',
  'help_like_lazi',
  'like_lazi_guy',
  'lazi_guy_theyd',
  'guy_theyd_ask',
  'theyd_ask_question',
  'ask_question_like',
  'question_like_joke',
  'like_joke_hed',
  'joke_hed_like',
  'hed_like_tell',
  'like_tell_futur',
  'tell_futur_mil',
  'futur_mil_opinion',
  'mil_opinion_abort',
  'opinion_abort_jesu',
  'abort_jesu_gender',
  'jesu_gender_equal',
  'gender_equal_etc',
  'equal_etc_also',
  'etc_also_test',
  'also_test_fish',
  'test_fish_hunt',
  'fish_hunt_skill',
  'hunt_skill_overwhelm',
  'skill_overwhelm_hypothet',
  'overwhelm_hypothet_scenario',
  'hypothet_scenario_test',
  'scenario_test_decis',
  'test_decis_make',
  'decis_make_abilitiesment',
  'make_abilitiesment_strength',
  'abilitiesment_strength_kept',
  'strength_kept_call',
  'kept_call_slow',
  'call_slow_soft',
  'slow_soft_medic',
  'soft_medic_condit',
  'medic_condit_asthma',
  'condit_asthma_think',
  'asthma_think_make',
  'think_make_excus',
  'make_excus_demand',
  'excus_demand_stop',
  'demand_stop_dad',
  'stop_dad_said',
  'dad_said_typic',
  'said_typic_stuff',
  'typic_stuff_men',
  'stuff_men_challeng',
  'men_challeng_said',
  'challeng_said_ruin',
  'said_ruin_fun',
  'ruin_fun_last',
  'fun_last_week',
  'last_week_took',
  'week_took_tim',
  'took_tim_day',
  'tim_day_trip',
  'day_trip_hid',
  'trip_hid_inhal',
  'hid_inhal_left',
  'inhal_left_return',
  'left_return_hr',
  'return_hr_told',
  'hr_told_seeth',
  'told_seeth_said',
  'seeth_said_admit',
  'said_admit_hide',
  'admit_hide_challeng',
  'hide_challeng_explod',
  'challeng_explod_return',
  'explod_return_cousin',
  'return_cousin_ask',
  'cousin_ask_littl',
  'ask_littl_timmi',
  'littl_timmi_ran',
  'timmi_ran_tattl',
  'ran_tattl_yell',
  'tattl_yell_uninvit',
  'yell_uninvit_wed',
  'uninvit_wed_brother',
  'wed_brother_freak',
  'brother_freak_say',
  'freak_say_prank',
  'say_prank_go',
  'prank_go_give',
  'go_give_back',
  'give_back_dad',
  'back_dad_said',
  'dad_said_theyll',
  'said_theyll_apolog',
  'theyll_apolog_insist',
  'apolog_insist_tim',
  'insist_tim_lost',
  'tim_lost_littl',
  'lost_littl_respect',
  'littl_respect_theyd',
  'respect_theyd_gain',
  'theyd_gain_eye',
  'gain_eye_alway',
  'eye_alway_soft',
  'alway_soft_colleg',
  'soft_colleg_kid',
  'colleg_kid_challeng',
  'kid_challeng_call',
  'challeng_call_aw',
  'call_aw_left',
  'aw_left_cousin',
  'left_cousin_beg',
  'cousin_beg_talk',
  'beg_talk_uncl',
  'talk_uncl_quiet',
  'uncl_quiet_dad',
  'quiet_dad_mad',
  'dad_mad_get',
  'mad_get_mom',
  'get_mom_involv',
  'mom_involv_get',
  'involv_get_reconsid',
  'get_reconsid_decis',
  'reconsid_decis_keep',
  'decis_keep_refus',
  'keep_refus_invit',
  'refus_invit_mom',
  'invit_mom_say',
  'mom_say_im',
  'say_im_exagger',
  'im_exagger_let',
  'exagger_let_bygon',
  'let_bygon_bygon',
  'bygon_bygon_let',
  'bygon_let_ruin',
  'let_ruin_relationship',
  'ruin_relationship_famili',
  'relationship_famili_aita',
  'famili_aita_make',
  'aita_make_hill',
  'make_hill_die',
  'hill_die_exagger'],
 ['print',
  'compani',
  'run',
  'wife',
  'cousin',
  'came',
  'us',
  'want',
  'us',
  'signag',
  'banner',
  'guest',
  'book',
  'life-s',
  'cutout',
  'etc',
  'wed',
  'time',
  'friend',
  'wed',
  'event',
  'never',
  'charg',
  'happi',
  'help',
  'usual',
  'lot',
  'fun',
  'work',
  'togeth',
  'make',
  'cool',
  'stuff',
  'week',
  'wed',
  'wed',
  'planner',
  'tell',
  'us',
  'need',
  'item',
  'date',
  'set',
  'wed',
  'point',
  'receiv',
  'wed',
  'invit',
  'even',
  'know',
  'actual',
  'wed',
  'wife',
  'text',
  'tri',
  'clarifi',
  'wed',
  'miss',
  'invit',
  'somehow',
  'cousin',
  'repli',
  'say',
  'oh',
  'downsiz',
  'wed',
  'decid',
  'like',
  'close',
  'friend',
  'famili',
  'thing',
  'space',
  'us',
  'small',
  'venu',
  'wife',
  'pretti',
  'hurt',
  'insult',
  'top',
  'weve',
  'spent',
  'close',
  '$',
  'materi',
  'cousin',
  'wed',
  'planner',
  'kept',
  'make',
  'tini',
  'revis',
  'artwork',
  'us',
  'print',
  'sampl',
  'see',
  'would',
  'look',
  'person',
  'resiz',
  'sever',
  'item',
  'time',
  'etc',
  'cost',
  'ton',
  'time',
  'money',
  'function',
  'busi',
  'either',
  'delay',
  'order',
  'stay',
  'late',
  'print',
  'stuff',
  'time',
  'went',
  'ahead',
  'bill',
  'cost',
  'said',
  'need',
  'payment',
  'deliveri',
  'im',
  'go',
  'chase',
  'payment',
  'monthsyear',
  'wed',
  'make',
  'money',
  'charg',
  'cost',
  'materi',
  'far',
  'weve',
  'gotten',
  'threaten',
  'call',
  'cousin',
  'fianc',
  'random',
  'member',
  'wife',
  'famili',
  'know',
  'groomsmen',
  'etc',
  'essenti',
  'call',
  'us',
  'asshol',
  'harass',
  'im',
  'consid',
  'charg',
  'full',
  'price',
  'els',
  'deliv',
  'item',
  'asshol',
  'sorri',
  'im',
  'go',
  'wast',
  'hard',
  'earn',
  'time',
  'money',
  'someon',
  'even',
  'consid',
  'us',
  'close',
  'friend',
  'famili',
  'print_compani',
  'compani_run',
  'run_wife',
  'wife_cousin',
  'cousin_came',
  'came_us',
  'us_want',
  'want_us',
  'us_signag',
  'signag_banner',
  'banner_guest',
  'guest_book',
  'book_life-s',
  'life-s_cutout',
  'cutout_etc',
  'etc_wed',
  'wed_time',
  'time_friend',
  'friend_wed',
  'wed_event',
  'event_never',
  'never_charg',
  'charg_happi',
  'happi_help',
  'help_usual',
  'usual_lot',
  'lot_fun',
  'fun_work',
  'work_togeth',
  'togeth_make',
  'make_cool',
  'cool_stuff',
  'stuff_week',
  'week_wed',
  'wed_wed',
  'wed_planner',
  'planner_tell',
  'tell_us',
  'us_need',
  'need_item',
  'item_date',
  'date_set',
  'set_wed',
  'wed_point',
  'point_receiv',
  'receiv_wed',
  'wed_invit',
  'invit_even',
  'even_know',
  'know_actual',
  'actual_wed',
  'wed_wife',
  'wife_text',
  'text_tri',
  'tri_clarifi',
  'clarifi_wed',
  'wed_miss',
  'miss_invit',
  'invit_somehow',
  'somehow_cousin',
  'cousin_repli',
  'repli_say',
  'say_oh',
  'oh_downsiz',
  'downsiz_wed',
  'wed_decid',
  'decid_like',
  'like_close',
  'close_friend',
  'friend_famili',
  'famili_thing',
  'thing_space',
  'space_us',
  'us_small',
  'small_venu',
  'venu_wife',
  'wife_pretti',
  'pretti_hurt',
  'hurt_insult',
  'insult_top',
  'top_weve',
  'weve_spent',
  'spent_close',
  'close_$',
  '$_materi',
  'materi_cousin',
  'cousin_wed',
  'wed_planner',
  'planner_kept',
  'kept_make',
  'make_tini',
  'tini_revis',
  'revis_artwork',
  'artwork_us',
  'us_print',
  'print_sampl',
  'sampl_see',
  'see_would',
  'would_look',
  'look_person',
  'person_resiz',
  'resiz_sever',
  'sever_item',
  'item_time',
  'time_etc',
  'etc_cost',
  'cost_ton',
  'ton_time',
  'time_money',
  'money_function',
  'function_busi',
  'busi_either',
  'either_delay',
  'delay_order',
  'order_stay',
  'stay_late',
  'late_print',
  'print_stuff',
  'stuff_time',
  'time_went',
  'went_ahead',
  'ahead_bill',
  'bill_cost',
  'cost_said',
  'said_need',
  'need_payment',
  'payment_deliveri',
  'deliveri_im',
  'im_go',
  'go_chase',
  'chase_payment',
  'payment_monthsyear',
  'monthsyear_wed',
  'wed_make',
  'make_money',
  'money_charg',
  'charg_cost',
  'cost_materi',
  'materi_far',
  'far_weve',
  'weve_gotten',
  'gotten_threaten',
  'threaten_call',
  'call_cousin',
  'cousin_fianc',
  'fianc_random',
  'random_member',
  'member_wife',
  'wife_famili',
  'famili_know',
  'know_groomsmen',
  'groomsmen_etc',
  'etc_essenti',
  'essenti_call',
  'call_us',
  'us_asshol',
  'asshol_harass',
  'harass_im',
  'im_consid',
  'consid_charg',
  'charg_full',
  'full_price',
  'price_els',
  'els_deliv',
  'deliv_item',
  'item_asshol',
  'asshol_sorri',
  'sorri_im',
  'im_go',
  'go_wast',
  'wast_hard',
  'hard_earn',
  'earn_time',
  'time_money',
  'money_someon',
  'someon_even',
  'even_consid',
  'consid_us',
  'us_close',
  'close_friend',
  'friend_famili',
  'print_compani_run',
  'compani_run_wife',
  'run_wife_cousin',
  'wife_cousin_came',
  'cousin_came_us',
  'came_us_want',
  'us_want_us',
  'want_us_signag',
  'us_signag_banner',
  'signag_banner_guest',
  'banner_guest_book',
  'guest_book_life-s',
  'book_life-s_cutout',
  'life-s_cutout_etc',
  'cutout_etc_wed',
  'etc_wed_time',
  'wed_time_friend',
  'time_friend_wed',
  'friend_wed_event',
  'wed_event_never',
  'event_never_charg',
  'never_charg_happi',
  'charg_happi_help',
  'happi_help_usual',
  'help_usual_lot',
  'usual_lot_fun',
  'lot_fun_work',
  'fun_work_togeth',
  'work_togeth_make',
  'togeth_make_cool',
  'make_cool_stuff',
  'cool_stuff_week',
  'stuff_week_wed',
  'week_wed_wed',
  'wed_wed_planner',
  'wed_planner_tell',
  'planner_tell_us',
  'tell_us_need',
  'us_need_item',
  'need_item_date',
  'item_date_set',
  'date_set_wed',
  'set_wed_point',
  'wed_point_receiv',
  'point_receiv_wed',
  'receiv_wed_invit',
  'wed_invit_even',
  'invit_even_know',
  'even_know_actual',
  'know_actual_wed',
  'actual_wed_wife',
  'wed_wife_text',
  'wife_text_tri',
  'text_tri_clarifi',
  'tri_clarifi_wed',
  'clarifi_wed_miss',
  'wed_miss_invit',
  'miss_invit_somehow',
  'invit_somehow_cousin',
  'somehow_cousin_repli',
  'cousin_repli_say',
  'repli_say_oh',
  'say_oh_downsiz',
  'oh_downsiz_wed',
  'downsiz_wed_decid',
  'wed_decid_like',
  'decid_like_close',
  'like_close_friend',
  'close_friend_famili',
  'friend_famili_thing',
  'famili_thing_space',
  'thing_space_us',
  'space_us_small',
  'us_small_venu',
  'small_venu_wife',
  'venu_wife_pretti',
  'wife_pretti_hurt',
  'pretti_hurt_insult',
  'hurt_insult_top',
  'insult_top_weve',
  'top_weve_spent',
  'weve_spent_close',
  'spent_close_$',
  'close_$_materi',
  '$_materi_cousin',
  'materi_cousin_wed',
  'cousin_wed_planner',
  'wed_planner_kept',
  'planner_kept_make',
  'kept_make_tini',
  'make_tini_revis',
  'tini_revis_artwork',
  'revis_artwork_us',
  'artwork_us_print',
  'us_print_sampl',
  'print_sampl_see',
  'sampl_see_would',
  'see_would_look',
  'would_look_person',
  'look_person_resiz',
  'person_resiz_sever',
  'resiz_sever_item',
  'sever_item_time',
  'item_time_etc',
  'time_etc_cost',
  'etc_cost_ton',
  'cost_ton_time',
  'ton_time_money',
  'time_money_function',
  'money_function_busi',
  'function_busi_either',
  'busi_either_delay',
  'either_delay_order',
  'delay_order_stay',
  'order_stay_late',
  'stay_late_print',
  'late_print_stuff',
  'print_stuff_time',
  'stuff_time_went',
  'time_went_ahead',
  'went_ahead_bill',
  'ahead_bill_cost',
  'bill_cost_said',
  'cost_said_need',
  'said_need_payment',
  'need_payment_deliveri',
  'payment_deliveri_im',
  'deliveri_im_go',
  'im_go_chase',
  'go_chase_payment',
  'chase_payment_monthsyear',
  'payment_monthsyear_wed',
  'monthsyear_wed_make',
  'wed_make_money',
  'make_money_charg',
  'money_charg_cost',
  'charg_cost_materi',
  'cost_materi_far',
  'materi_far_weve',
  'far_weve_gotten',
  'weve_gotten_threaten',
  'gotten_threaten_call',
  'threaten_call_cousin',
  'call_cousin_fianc',
  'cousin_fianc_random',
  'fianc_random_member',
  'random_member_wife',
  'member_wife_famili',
  'wife_famili_know',
  'famili_know_groomsmen',
  'know_groomsmen_etc',
  'groomsmen_etc_essenti',
  'etc_essenti_call',
  'essenti_call_us',
  'call_us_asshol',
  'us_asshol_harass',
  'asshol_harass_im',
  'harass_im_consid',
  'im_consid_charg',
  'consid_charg_full',
  'charg_full_price',
  'full_price_els',
  'price_els_deliv',
  'els_deliv_item',
  'deliv_item_asshol',
  'item_asshol_sorri',
  'asshol_sorri_im',
  'sorri_im_go',
  'im_go_wast',
  'go_wast_hard',
  'wast_hard_earn',
  'hard_earn_time',
  'earn_time_money',
  'time_money_someon',
  'money_someon_even',
  'someon_even_consid',
  'even_consid_us',
  'consid_us_close',
  'us_close_friend',
  'close_friend_famili'],
 ['throwaway',
  'brother',
  'paul',
  'close',
  'differ',
  'worldview',
  'incompat',
  'person',
  'toler',
  'would',
  'never',
  'consid',
  'friend',
  'marri',
  'lisa',
  'one',
  'two',
  'year',
  'beauti',
  'daughter',
  'togeth',
  'girlfriend',
  'ami',
  'invit',
  'celebr',
  'niec',
  'first',
  'birthday',
  'famili',
  'invit',
  'would',
  'first',
  'time',
  'would',
  'seen',
  'togeth',
  'see',
  'famili',
  'twice',
  'year',
  'except',
  'ami',
  'arriv',
  'littl',
  'earlier',
  'suppos',
  'instead',
  'wait',
  'car',
  'decid',
  'go',
  'first',
  'thing',
  'notic',
  'calm',
  'brother',
  'seem',
  'contrast',
  'lisa',
  'frantic',
  'run',
  'saw',
  'ami',
  'immedi',
  'hand',
  'babi',
  'got',
  'beer',
  'sit',
  'watch',
  'tv',
  'lisa',
  'clearli',
  'struggl',
  'content',
  'beer',
  'netflix',
  'want',
  'rude',
  'mayb',
  'one-tim',
  'thing',
  'bother',
  'uninvolv',
  'hand',
  'ami',
  'babi',
  'full',
  'diaper',
  'vomit',
  'cloth',
  'eventu',
  'ami',
  'lisa',
  'finish',
  'everyth',
  'hous',
  'clean',
  'food',
  'readi',
  'lisa',
  'look',
  'readi',
  'host',
  'big',
  'gather',
  'paid',
  'zero',
  'attent',
  'paul',
  'famili',
  'arriv',
  'thought',
  'everyth',
  'go',
  'well',
  'avoid',
  'paul',
  'enjoy',
  'speak',
  'famili',
  'sat',
  'eat',
  'paul',
  'approach',
  'drunk',
  'thank',
  'help',
  'lisa',
  'want',
  'around',
  'long',
  'move',
  'way',
  'persist',
  'ignor',
  'start',
  'talk',
  'ami',
  'protect',
  'ami',
  'like',
  'real',
  'man',
  'got',
  'great',
  'woman',
  'side',
  'know',
  'whatev',
  'slightli',
  'odd',
  'mildli',
  'uncomfort',
  'abl',
  'brush',
  'away',
  'ami',
  'tri',
  'sober',
  'littl',
  'bit',
  'cake-cut',
  'select',
  'hear',
  'tri',
  'get',
  'stop',
  'talk',
  'drink',
  'water',
  'howev',
  'lot',
  'say',
  'lisa',
  'complain',
  'pregnanc',
  'ruin',
  'lisa',
  'bodi',
  'babi',
  'ruin',
  'life',
  'ami',
  'kept',
  'look',
  'awkwardli',
  'soon',
  'go',
  'leav',
  'leav',
  'convers',
  'soon',
  'enough',
  'complain',
  'sex',
  'life',
  'lack',
  'thereof',
  'comment',
  'desper',
  'want',
  'sex',
  'someon',
  'fit',
  'like',
  'ami',
  'made',
  'us',
  'extrem',
  'uncomfort',
  'ami',
  'left',
  'quickli',
  'apologis',
  'lisa',
  'told',
  'disgust',
  'gross',
  'man',
  'need',
  'fuck',
  'help',
  'left',
  'appar',
  'made',
  'super',
  'upset',
  'start',
  'wail',
  'parti',
  'paul',
  'told',
  'everyon',
  'reason',
  'cri',
  'word',
  'got',
  'quickli',
  'peopl',
  'told',
  'wrong',
  'shame',
  'father',
  'child',
  'birthday',
  'could',
  'probabl',
  'left',
  'without',
  'make',
  'statement',
  'aita',
  'throwaway_brother',
  'brother_paul',
  'paul_close',
  'close_differ',
  'differ_worldview',
  'worldview_incompat',
  'incompat_person',
  'person_toler',
  'toler_would',
  'would_never',
  'never_consid',
  'consid_friend',
  'friend_marri',
  'marri_lisa',
  'lisa_one',
  'one_two',
  'two_year',
  'year_beauti',
  'beauti_daughter',
  'daughter_togeth',
  'togeth_girlfriend',
  'girlfriend_ami',
  'ami_invit',
  'invit_celebr',
  'celebr_niec',
  'niec_first',
  'first_birthday',
  'birthday_famili',
  'famili_invit',
  'invit_would',
  'would_first',
  'first_time',
  'time_would',
  'would_seen',
  'seen_togeth',
  'togeth_see',
  'see_famili',
  'famili_twice',
  'twice_year',
  'year_except',
  'except_ami',
  'ami_arriv',
  'arriv_littl',
  'littl_earlier',
  'earlier_suppos',
  'suppos_instead',
  'instead_wait',
  'wait_car',
  'car_decid',
  'decid_go',
  'go_first',
  'first_thing',
  'thing_notic',
  'notic_calm',
  'calm_brother',
  'brother_seem',
  'seem_contrast',
  'contrast_lisa',
  'lisa_frantic',
  'frantic_run',
  'run_saw',
  'saw_ami',
  'ami_immedi',
  'immedi_hand',
  'hand_babi',
  'babi_got',
  'got_beer',
  'beer_sit',
  'sit_watch',
  'watch_tv',
  'tv_lisa',
  'lisa_clearli',
  'clearli_struggl',
  'struggl_content',
  'content_beer',
  'beer_netflix',
  'netflix_want',
  'want_rude',
  'rude_mayb',
  'mayb_one-tim',
  'one-tim_thing',
  'thing_bother',
  'bother_uninvolv',
  'uninvolv_hand',
  'hand_ami',
  'ami_babi',
  'babi_full',
  'full_diaper',
  'diaper_vomit',
  'vomit_cloth',
  'cloth_eventu',
  'eventu_ami',
  'ami_lisa',
  'lisa_finish',
  'finish_everyth',
  'everyth_hous',
  'hous_clean',
  'clean_food',
  'food_readi',
  'readi_lisa',
  'lisa_look',
  'look_readi',
  'readi_host',
  'host_big',
  'big_gather',
  'gather_paid',
  'paid_zero',
  'zero_attent',
  'attent_paul',
  'paul_famili',
  'famili_arriv',
  'arriv_thought',
  'thought_everyth',
  'everyth_go',
  'go_well',
  'well_avoid',
  'avoid_paul',
  'paul_enjoy',
  'enjoy_speak',
  'speak_famili',
  'famili_sat',
  'sat_eat',
  'eat_paul',
  'paul_approach',
  'approach_drunk',
  'drunk_thank',
  'thank_help',
  'help_lisa',
  'lisa_want',
  'want_around',
  'around_long',
  'long_move',
  'move_way',
  'way_persist',
  'persist_ignor',
  'ignor_start',
  'start_talk',
  'talk_ami',
  'ami_protect',
  'protect_ami',
  'ami_like',
  'like_real',
  'real_man',
  'man_got',
  'got_great',
  'great_woman',
  'woman_side',
  'side_know',
  'know_whatev',
  'whatev_slightli',
  'slightli_odd',
  'odd_mildli',
  'mildli_uncomfort',
  'uncomfort_abl',
  'abl_brush',
  'brush_away',
  'away_ami',
  'ami_tri',
  'tri_sober',
  'sober_littl',
  'littl_bit',
  'bit_cake-cut',
  'cake-cut_select',
  'select_hear',
  'hear_tri',
  'tri_get',
  'get_stop',
  'stop_talk',
  'talk_drink',
  'drink_water',
  'water_howev',
  'howev_lot',
  'lot_say',
  'say_lisa',
  'lisa_complain',
  'complain_pregnanc',
  'pregnanc_ruin',
  'ruin_lisa',
  'lisa_bodi',
  'bodi_babi',
  'babi_ruin',
  'ruin_life',
  'life_ami',
  'ami_kept',
  'kept_look',
  'look_awkwardli',
  'awkwardli_soon',
  'soon_go',
  'go_leav',
  'leav_leav',
  'leav_convers',
  'convers_soon',
  'soon_enough',
  'enough_complain',
  'complain_sex',
  'sex_life',
  'life_lack',
  'lack_thereof',
  'thereof_comment',
  'comment_desper',
  'desper_want',
  'want_sex',
  'sex_someon',
  'someon_fit',
  'fit_like',
  'like_ami',
  'ami_made',
  'made_us',
  'us_extrem',
  'extrem_uncomfort',
  'uncomfort_ami',
  'ami_left',
  'left_quickli',
  'quickli_apologis',
  'apologis_lisa',
  'lisa_told',
  'told_disgust',
  'disgust_gross',
  'gross_man',
  'man_need',
  'need_fuck',
  'fuck_help',
  'help_left',
  'left_appar',
  'appar_made',
  'made_super',
  'super_upset',
  'upset_start',
  'start_wail',
  'wail_parti',
  'parti_paul',
  'paul_told',
  'told_everyon',
  'everyon_reason',
  'reason_cri',
  'cri_word',
  'word_got',
  'got_quickli',
  'quickli_peopl',
  'peopl_told',
  'told_wrong',
  'wrong_shame',
  'shame_father',
  'father_child',
  'child_birthday',
  'birthday_could',
  'could_probabl',
  'probabl_left',
  'left_without',
  'without_make',
  'make_statement',
  'statement_aita',
  'throwaway_brother_paul',
  'brother_paul_close',
  'paul_close_differ',
  'close_differ_worldview',
  'differ_worldview_incompat',
  'worldview_incompat_person',
  'incompat_person_toler',
  'person_toler_would',
  'toler_would_never',
  'would_never_consid',
  'never_consid_friend',
  'consid_friend_marri',
  'friend_marri_lisa',
  'marri_lisa_one',
  'lisa_one_two',
  'one_two_year',
  'two_year_beauti',
  'year_beauti_daughter',
  'beauti_daughter_togeth',
  'daughter_togeth_girlfriend',
  'togeth_girlfriend_ami',
  'girlfriend_ami_invit',
  'ami_invit_celebr',
  'invit_celebr_niec',
  'celebr_niec_first',
  'niec_first_birthday',
  'first_birthday_famili',
  'birthday_famili_invit',
  'famili_invit_would',
  'invit_would_first',
  'would_first_time',
  'first_time_would',
  'time_would_seen',
  'would_seen_togeth',
  'seen_togeth_see',
  'togeth_see_famili',
  'see_famili_twice',
  'famili_twice_year',
  'twice_year_except',
  'year_except_ami',
  'except_ami_arriv',
  'ami_arriv_littl',
  'arriv_littl_earlier',
  'littl_earlier_suppos',
  'earlier_suppos_instead',
  'suppos_instead_wait',
  'instead_wait_car',
  'wait_car_decid',
  'car_decid_go',
  'decid_go_first',
  'go_first_thing',
  'first_thing_notic',
  'thing_notic_calm',
  'notic_calm_brother',
  'calm_brother_seem',
  'brother_seem_contrast',
  'seem_contrast_lisa',
  'contrast_lisa_frantic',
  'lisa_frantic_run',
  'frantic_run_saw',
  'run_saw_ami',
  'saw_ami_immedi',
  'ami_immedi_hand',
  'immedi_hand_babi',
  'hand_babi_got',
  'babi_got_beer',
  'got_beer_sit',
  'beer_sit_watch',
  'sit_watch_tv',
  'watch_tv_lisa',
  'tv_lisa_clearli',
  'lisa_clearli_struggl',
  'clearli_struggl_content',
  'struggl_content_beer',
  'content_beer_netflix',
  'beer_netflix_want',
  'netflix_want_rude',
  'want_rude_mayb',
  'rude_mayb_one-tim',
  'mayb_one-tim_thing',
  'one-tim_thing_bother',
  'thing_bother_uninvolv',
  'bother_uninvolv_hand',
  'uninvolv_hand_ami',
  'hand_ami_babi',
  'ami_babi_full',
  'babi_full_diaper',
  'full_diaper_vomit',
  'diaper_vomit_cloth',
  'vomit_cloth_eventu',
  'cloth_eventu_ami',
  'eventu_ami_lisa',
  'ami_lisa_finish',
  'lisa_finish_everyth',
  'finish_everyth_hous',
  'everyth_hous_clean',
  'hous_clean_food',
  'clean_food_readi',
  'food_readi_lisa',
  'readi_lisa_look',
  'lisa_look_readi',
  'look_readi_host',
  'readi_host_big',
  'host_big_gather',
  'big_gather_paid',
  'gather_paid_zero',
  'paid_zero_attent',
  'zero_attent_paul',
  'attent_paul_famili',
  'paul_famili_arriv',
  'famili_arriv_thought',
  'arriv_thought_everyth',
  'thought_everyth_go',
  'everyth_go_well',
  'go_well_avoid',
  'well_avoid_paul',
  'avoid_paul_enjoy',
  'paul_enjoy_speak',
  'enjoy_speak_famili',
  'speak_famili_sat',
  'famili_sat_eat',
  'sat_eat_paul',
  'eat_paul_approach',
  'paul_approach_drunk',
  'approach_drunk_thank',
  'drunk_thank_help',
  'thank_help_lisa',
  'help_lisa_want',
  'lisa_want_around',
  'want_around_long',
  'around_long_move',
  'long_move_way',
  'move_way_persist',
  'way_persist_ignor',
  'persist_ignor_start',
  'ignor_start_talk',
  'start_talk_ami',
  'talk_ami_protect',
  'ami_protect_ami',
  'protect_ami_like',
  'ami_like_real',
  'like_real_man',
  'real_man_got',
  'man_got_great',
  'got_great_woman',
  'great_woman_side',
  'woman_side_know',
  'side_know_whatev',
  'know_whatev_slightli',
  'whatev_slightli_odd',
  'slightli_odd_mildli',
  'odd_mildli_uncomfort',
  'mildli_uncomfort_abl',
  'uncomfort_abl_brush',
  'abl_brush_away',
  'brush_away_ami',
  'away_ami_tri',
  'ami_tri_sober',
  'tri_sober_littl',
  'sober_littl_bit',
  'littl_bit_cake-cut',
  'bit_cake-cut_select',
  'cake-cut_select_hear',
  'select_hear_tri',
  'hear_tri_get',
  'tri_get_stop',
  'get_stop_talk',
  'stop_talk_drink',
  'talk_drink_water',
  'drink_water_howev',
  'water_howev_lot',
  'howev_lot_say',
  'lot_say_lisa',
  'say_lisa_complain',
  'lisa_complain_pregnanc',
  'complain_pregnanc_ruin',
  'pregnanc_ruin_lisa',
  'ruin_lisa_bodi',
  'lisa_bodi_babi',
  'bodi_babi_ruin',
  'babi_ruin_life',
  'ruin_life_ami',
  'life_ami_kept',
  'ami_kept_look',
  'kept_look_awkwardli',
  'look_awkwardli_soon',
  'awkwardli_soon_go',
  'soon_go_leav',
  'go_leav_leav',
  'leav_leav_convers',
  'leav_convers_soon',
  'convers_soon_enough',
  'soon_enough_complain',
  'enough_complain_sex',
  'complain_sex_life',
  'sex_life_lack',
  'life_lack_thereof',
  'lack_thereof_comment',
  'thereof_comment_desper',
  'comment_desper_want',
  'desper_want_sex',
  'want_sex_someon',
  'sex_someon_fit',
  'someon_fit_like',
  'fit_like_ami',
  'like_ami_made',
  'ami_made_us',
  'made_us_extrem',
  'us_extrem_uncomfort',
  'extrem_uncomfort_ami',
  'uncomfort_ami_left',
  'ami_left_quickli',
  'left_quickli_apologis',
  'quickli_apologis_lisa',
  'apologis_lisa_told',
  'lisa_told_disgust',
  'told_disgust_gross',
  'disgust_gross_man',
  'gross_man_need',
  'man_need_fuck',
  'need_fuck_help',
  'fuck_help_left',
  'help_left_appar',
  'left_appar_made',
  'appar_made_super',
  'made_super_upset',
  'super_upset_start',
  'upset_start_wail',
  'start_wail_parti',
  'wail_parti_paul',
  'parti_paul_told',
  'paul_told_everyon',
  'told_everyon_reason',
  'everyon_reason_cri',
  'reason_cri_word',
  'cri_word_got',
  'word_got_quickli',
  'got_quickli_peopl',
  'quickli_peopl_told',
  'peopl_told_wrong',
  'told_wrong_shame',
  'wrong_shame_father',
  'shame_father_child',
  'father_child_birthday',
  'child_birthday_could',
  'birthday_could_probabl',
  'could_probabl_left',
  'probabl_left_without',
  'left_without_make',
  'without_make_statement',
  'make_statement_aita'],
 ['okay',
  'sil',
  'yet',
  'use',
  'make',
  'titl',
  'simpler',
  'boyfriend',
  'borther',
  'girlfriend',
  'boyfriend',
  'ian',
  'year',
  'weve',
  'decid',
  'host',
  'small',
  'earli',
  'christma',
  'dinner',
  'one',
  'peopl',
  'invit',
  'brother',
  'jake',
  'jake',
  'ask',
  'could',
  'bring',
  'girlfriend',
  'alon',
  'theyv',
  'togeth',
  'month',
  'agre',
  'merrier',
  'girlfriend',
  'naveah',
  'seem',
  'bit',
  'timid',
  'love',
  'naveah',
  'brought',
  'year',
  'old',
  'son',
  'know',
  'come',
  'seem',
  'love',
  'right',
  'went',
  'bathroom',
  'came',
  'shriekingbox',
  'tampon',
  'hand',
  'liter',
  'gasp',
  'air',
  'shriek',
  'could',
  'bare',
  'understand',
  'turn',
  'box',
  'tampon',
  'visibl',
  'duuuh',
  'within',
  'reach',
  'hey',
  'need',
  'monthli',
  'hide',
  'look',
  'go',
  'disgust',
  'could',
  'shameless',
  'front',
  'child',
  'men',
  'look',
  'disbelief',
  'believ',
  'made',
  'scene',
  'box',
  'tampon',
  'never',
  'shop',
  'anyway',
  'told',
  'tampon',
  'stay',
  'press',
  'leav',
  'go',
  'home',
  'tampon',
  'present',
  'turn',
  'red',
  'quit',
  'liter',
  'face',
  'bright',
  'pink',
  'huf',
  'puf',
  'dress',
  'kid',
  'told',
  'jake',
  'drive',
  'home',
  'jake',
  'come',
  'back',
  'call',
  'hous',
  'tell',
  'ian',
  'asshol',
  'surpris',
  'hear',
  'ian',
  'boyfriend',
  'agre',
  'thought',
  'would',
  'side',
  'argu',
  'decid',
  'worth',
  'went',
  'offic',
  'cool',
  'think',
  'asshol',
  'tell',
  'leav',
  'okay_sil',
  'sil_yet',
  'yet_use',
  'use_make',
  'make_titl',
  'titl_simpler',
  'simpler_boyfriend',
  'boyfriend_borther',
  'borther_girlfriend',
  'girlfriend_boyfriend',
  'boyfriend_ian',
  'ian_year',
  'year_weve',
  'weve_decid',
  'decid_host',
  'host_small',
  'small_earli',
  'earli_christma',
  'christma_dinner',
  'dinner_one',
  'one_peopl',
  'peopl_invit',
  'invit_brother',
  'brother_jake',
  'jake_jake',
  'jake_ask',
  'ask_could',
  'could_bring',
  'bring_girlfriend',
  'girlfriend_alon',
  'alon_theyv',
  'theyv_togeth',
  'togeth_month',
  'month_agre',
  'agre_merrier',
  'merrier_girlfriend',
  'girlfriend_naveah',
  'naveah_seem',
  'seem_bit',
  'bit_timid',
  'timid_love',
  'love_naveah',
  'naveah_brought',
  'brought_year',
  'year_old',
  'old_son',
  'son_know',
  'know_come',
  'come_seem',
  'seem_love',
  'love_right',
  'right_went',
  'went_bathroom',
  'bathroom_came',
  'came_shriekingbox',
  'shriekingbox_tampon',
  'tampon_hand',
  'hand_liter',
  'liter_gasp',
  'gasp_air',
  'air_shriek',
  'shriek_could',
  'could_bare',
  'bare_understand',
  'understand_turn',
  'turn_box',
  'box_tampon',
  'tampon_visibl',
  'visibl_duuuh',
  'duuuh_within',
  'within_reach',
  'reach_hey',
  'hey_need',
  'need_monthli',
  'monthli_hide',
  'hide_look',
  'look_go',
  'go_disgust',
  'disgust_could',
  'could_shameless',
  'shameless_front',
  'front_child',
  'child_men',
  'men_look',
  'look_disbelief',
  'disbelief_believ',
  'believ_made',
  'made_scene',
  'scene_box',
  'box_tampon',
  'tampon_never',
  'never_shop',
  'shop_anyway',
  'anyway_told',
  'told_tampon',
  'tampon_stay',
  'stay_press',
  'press_leav',
  'leav_go',
  'go_home',
  'home_tampon',
  'tampon_present',
  'present_turn',
  'turn_red',
  'red_quit',
  'quit_liter',
  'liter_face',
  'face_bright',
  'bright_pink',
  'pink_huf',
  'huf_puf',
  'puf_dress',
  'dress_kid',
  'kid_told',
  'told_jake',
  'jake_drive',
  'drive_home',
  'home_jake',
  'jake_come',
  'come_back',
  'back_call',
  'call_hous',
  'hous_tell',
  'tell_ian',
  'ian_asshol',
  'asshol_surpris',
  'surpris_hear',
  'hear_ian',
  'ian_boyfriend',
  'boyfriend_agre',
  'agre_thought',
  'thought_would',
  'would_side',
  'side_argu',
  'argu_decid',
  'decid_worth',
  'worth_went',
  'went_offic',
  'offic_cool',
  'cool_think',
  'think_asshol',
  'asshol_tell',
  'tell_leav',
  'okay_sil_yet',
  'sil_yet_use',
  'yet_use_make',
  'use_make_titl',
  'make_titl_simpler',
  'titl_simpler_boyfriend',
  'simpler_boyfriend_borther',
  'boyfriend_borther_girlfriend',
  'borther_girlfriend_boyfriend',
  'girlfriend_boyfriend_ian',
  'boyfriend_ian_year',
  'ian_year_weve',
  'year_weve_decid',
  'weve_decid_host',
  'decid_host_small',
  'host_small_earli',
  'small_earli_christma',
  'earli_christma_dinner',
  'christma_dinner_one',
  'dinner_one_peopl',
  'one_peopl_invit',
  'peopl_invit_brother',
  'invit_brother_jake',
  'brother_jake_jake',
  'jake_jake_ask',
  'jake_ask_could',
  'ask_could_bring',
  'could_bring_girlfriend',
  'bring_girlfriend_alon',
  'girlfriend_alon_theyv',
  'alon_theyv_togeth',
  'theyv_togeth_month',
  'togeth_month_agre',
  'month_agre_merrier',
  'agre_merrier_girlfriend',
  'merrier_girlfriend_naveah',
  'girlfriend_naveah_seem',
  'naveah_seem_bit',
  'seem_bit_timid',
  'bit_timid_love',
  'timid_love_naveah',
  'love_naveah_brought',
  'naveah_brought_year',
  'brought_year_old',
  'year_old_son',
  'old_son_know',
  'son_know_come',
  'know_come_seem',
  'come_seem_love',
  'seem_love_right',
  'love_right_went',
  'right_went_bathroom',
  'went_bathroom_came',
  'bathroom_came_shriekingbox',
  'came_shriekingbox_tampon',
  'shriekingbox_tampon_hand',
  'tampon_hand_liter',
  'hand_liter_gasp',
  'liter_gasp_air',
  'gasp_air_shriek',
  'air_shriek_could',
  'shriek_could_bare',
  'could_bare_understand',
  'bare_understand_turn',
  'understand_turn_box',
  'turn_box_tampon',
  'box_tampon_visibl',
  'tampon_visibl_duuuh',
  'visibl_duuuh_within',
  'duuuh_within_reach',
  'within_reach_hey',
  'reach_hey_need',
  'hey_need_monthli',
  'need_monthli_hide',
  'monthli_hide_look',
  'hide_look_go',
  'look_go_disgust',
  'go_disgust_could',
  'disgust_could_shameless',
  'could_shameless_front',
  'shameless_front_child',
  'front_child_men',
  'child_men_look',
  'men_look_disbelief',
  'look_disbelief_believ',
  'disbelief_believ_made',
  'believ_made_scene',
  'made_scene_box',
  'scene_box_tampon',
  'box_tampon_never',
  'tampon_never_shop',
  'never_shop_anyway',
  'shop_anyway_told',
  'anyway_told_tampon',
  'told_tampon_stay',
  'tampon_stay_press',
  'stay_press_leav',
  'press_leav_go',
  'leav_go_home',
  'go_home_tampon',
  'home_tampon_present',
  'tampon_present_turn',
  'present_turn_red',
  'turn_red_quit',
  'red_quit_liter',
  'quit_liter_face',
  'liter_face_bright',
  'face_bright_pink',
  'bright_pink_huf',
  'pink_huf_puf',
  'huf_puf_dress',
  'puf_dress_kid',
  'dress_kid_told',
  'kid_told_jake',
  'told_jake_drive',
  'jake_drive_home',
  'drive_home_jake',
  'home_jake_come',
  'jake_come_back',
  'come_back_call',
  'back_call_hous',
  'call_hous_tell',
  'hous_tell_ian',
  'tell_ian_asshol',
  'ian_asshol_surpris',
  'asshol_surpris_hear',
  'surpris_hear_ian',
  'hear_ian_boyfriend',
  'ian_boyfriend_agre',
  'boyfriend_agre_thought',
  'agre_thought_would',
  'thought_would_side',
  'would_side_argu',
  'side_argu_decid',
  'argu_decid_worth',
  'decid_worth_went',
  'worth_went_offic',
  'went_offic_cool',
  'offic_cool_think',
  'cool_think_asshol',
  'think_asshol_tell',
  'asshol_tell_leav'],
 ['recent',
  'got',
  'togeth',
  'guy',
  'hobbi',
  'ask',
  'first',
  'doubt',
  'wed',
  'work',
  'togeth',
  'coupl',
  'age',
  'differ',
  'im',
  'apart',
  'sinc',
  'old',
  'hous',
  'origin',
  'singl',
  'famili',
  'hous',
  'much',
  'soundproof',
  'floor',
  'creak',
  'peopl',
  'move',
  'ive',
  'gotten',
  'use',
  'sound',
  'guy',
  'upstair',
  'get',
  'sinc',
  'start',
  'work',
  'sound',
  'girl',
  'apart',
  'either',
  'side',
  'mine',
  'watch',
  'telenovela',
  'till',
  'midnight',
  'take',
  'work',
  'call',
  'day',
  'friend',
  'weekend',
  'night',
  'know',
  'play',
  'music',
  'friend',
  'sound',
  'leak',
  'wall',
  'id',
  'never',
  'get',
  'upset',
  'hear',
  'neighbor',
  'goe',
  'way',
  'boyfriend',
  'start',
  'come',
  'often',
  'complaint',
  'neighbor',
  'put',
  'awkward',
  'place',
  'want',
  'go',
  'speak',
  'text',
  'said',
  'exampl',
  'one',
  'earli',
  'time',
  'stay',
  'went',
  'bed',
  'around',
  'want',
  'ask',
  'neighbor',
  'turn',
  'tv',
  'said',
  'loud',
  'turn',
  'midnight',
  'anyway',
  'got',
  'irrit',
  'upstair',
  'neighbor',
  'get',
  'cook',
  'breakfast',
  'said',
  'would',
  'done',
  'shift',
  'start',
  'still',
  'tri',
  'sleep',
  'neighbor',
  'side',
  'work',
  'call',
  'said',
  'sleep',
  'offer',
  'earplug',
  'said',
  'sleep',
  'either',
  'want',
  'ask',
  'quiet',
  'similar',
  'comment',
  'everi',
  'time',
  'heard',
  'someon',
  'els',
  'build',
  'live',
  'life',
  'especi',
  'bed',
  'got',
  'frustrat',
  'boyfriend',
  'told',
  'know',
  'cant',
  'expect',
  'date',
  'hot',
  'young',
  'year',
  'old',
  'wan',
  'na',
  'deal',
  'year',
  'old',
  'live',
  'situat',
  'know',
  'realiz',
  'normal',
  'apart',
  'someon',
  'age',
  'hell',
  'neighbor',
  'pretti',
  'great',
  'nobodi',
  'throw',
  'loud',
  'parti',
  'work',
  'night',
  'nobodi',
  'scream',
  'fight',
  'nobodi',
  'babi',
  'hot',
  'young',
  'part',
  'sarcast',
  'air',
  'quot',
  'word',
  'mine',
  'got',
  'irrit',
  'ask',
  'bring',
  'age',
  'said',
  'cant',
  'want',
  'someon',
  'young',
  'also',
  'want',
  'someon',
  'hous',
  'kinda',
  'money',
  'touch',
  'normal',
  'peopl',
  'live',
  'got',
  'realli',
  'irrit',
  'bring',
  'age',
  'even',
  'annoy',
  'id',
  'respond',
  'neighbor',
  'complaint',
  'futur',
  'ok',
  'boomer',
  'tell',
  'want',
  'rich',
  'person',
  'apart',
  'could',
  'pay',
  'aita',
  'said',
  'boyfriend',
  'apart',
  'edit',
  '-',
  'lot',
  'comment',
  'ask',
  'could',
  'stay',
  'hous',
  'possibl',
  'get',
  'hous',
  'car',
  'buse',
  'go',
  'far',
  'suburb',
  'would',
  'mean',
  'drive',
  'minut',
  'hous',
  'suburb',
  'pick',
  'extra',
  'drive',
  'hous',
  'hour',
  'round',
  'trip',
  'earli',
  'morn',
  'get',
  'home',
  'time',
  'work',
  'lot',
  'easier',
  'visit',
  'citi',
  'edit',
  '-',
  'lot',
  'peopl',
  'comment',
  'say',
  'technic',
  'milenni',
  'boomer',
  'know',
  'use',
  'boomer',
  'joke',
  'figur',
  'speech',
  'say',
  'act',
  'touch',
  'entitl',
  'tell',
  'peopl',
  'common',
  'figur',
  'speech',
  'say',
  'ok',
  'boomer',
  'someon',
  'act',
  'entitl',
  'regardless',
  'actual',
  'age',
  'mindset',
  'thing',
  'edit',
  '-',
  'googl',
  'properti',
  'record',
  'hous',
  'co',
  'woman',
  'share',
  'last',
  'name',
  'holi',
  'shit',
  'know',
  'wife',
  'ex',
  'wife',
  'im',
  'im',
  'honestli',
  'freak',
  'right',
  'got',
  'ta',
  'say',
  'great',
  'big',
  'thank',
  'everyon',
  'notic',
  'red',
  'flag',
  'made',
  'question',
  'ive',
  'block',
  'number',
  'fun',
  'figur',
  'went',
  'recent_got',
  'got_togeth',
  'togeth_guy',
  'guy_hobbi',
  'hobbi_ask',
  'ask_first',
  'first_doubt',
  'doubt_wed',
  'wed_work',
  'work_togeth',
  'togeth_coupl',
  'coupl_age',
  'age_differ',
  'differ_im',
  'im_apart',
  'apart_sinc',
  'sinc_old',
  'old_hous',
  'hous_origin',
  'origin_singl',
  'singl_famili',
  'famili_hous',
  'hous_much',
  'much_soundproof',
  'soundproof_floor',
  'floor_creak',
  'creak_peopl',
  'peopl_move',
  'move_ive',
  'ive_gotten',
  'gotten_use',
  'use_sound',
  'sound_guy',
  'guy_upstair',
  'upstair_get',
  'get_sinc',
  'sinc_start',
  'start_work',
  'work_sound',
  'sound_girl',
  'girl_apart',
  'apart_either',
  'either_side',
  'side_mine',
  'mine_watch',
  'watch_telenovela',
  'telenovela_till',
  'till_midnight',
  'midnight_take',
  'take_work',
  'work_call',
  'call_day',
  'day_friend',
  'friend_weekend',
  'weekend_night',
  'night_know',
  'know_play',
  'play_music',
  'music_friend',
  'friend_sound',
  'sound_leak',
  'leak_wall',
  'wall_id',
  'id_never',
  'never_get',
  'get_upset',
  'upset_hear',
  'hear_neighbor',
  'neighbor_goe',
  'goe_way',
  'way_boyfriend',
  'boyfriend_start',
  'start_come',
  'come_often',
  'often_complaint',
  'complaint_neighbor',
  'neighbor_put',
  'put_awkward',
  'awkward_place',
  'place_want',
  'want_go',
  'go_speak',
  'speak_text',
  'text_said',
  'said_exampl',
  'exampl_one',
  'one_earli',
  'earli_time',
  'time_stay',
  'stay_went',
  'went_bed',
  'bed_around',
  'around_want',
  'want_ask',
  'ask_neighbor',
  'neighbor_turn',
  'turn_tv',
  'tv_said',
  'said_loud',
  'loud_turn',
  'turn_midnight',
  'midnight_anyway',
  'anyway_got',
  'got_irrit',
  'irrit_upstair',
  'upstair_neighbor',
  'neighbor_get',
  'get_cook',
  'cook_breakfast',
  'breakfast_said',
  'said_would',
  'would_done',
  'done_shift',
  'shift_start',
  'start_still',
  'still_tri',
  'tri_sleep',
  'sleep_neighbor',
  'neighbor_side',
  'side_work',
  'work_call',
  'call_said',
  'said_sleep',
  'sleep_offer',
  'offer_earplug',
  'earplug_said',
  'said_sleep',
  'sleep_either',
  'either_want',
  'want_ask',
  'ask_quiet',
  'quiet_similar',
  'similar_comment',
  'comment_everi',
  'everi_time',
  'time_heard',
  'heard_someon',
  'someon_els',
  'els_build',
  'build_live',
  'live_life',
  'life_especi',
  'especi_bed',
  'bed_got',
  'got_frustrat',
  'frustrat_boyfriend',
  'boyfriend_told',
  'told_know',
  'know_cant',
  'cant_expect',
  'expect_date',
  'date_hot',
  'hot_young',
  'young_year',
  'year_old',
  'old_wan',
  'wan_na',
  'na_deal',
  'deal_year',
  'year_old',
  'old_live',
  'live_situat',
  'situat_know',
  'know_realiz',
  'realiz_normal',
  'normal_apart',
  'apart_someon',
  'someon_age',
  'age_hell',
  'hell_neighbor',
  'neighbor_pretti',
  'pretti_great',
  'great_nobodi',
  'nobodi_throw',
  'throw_loud',
  'loud_parti',
  'parti_work',
  'work_night',
  'night_nobodi',
  'nobodi_scream',
  'scream_fight',
  'fight_nobodi',
  'nobodi_babi',
  'babi_hot',
  'hot_young',
  'young_part',
  'part_sarcast',
  'sarcast_air',
  'air_quot',
  'quot_word',
  'word_mine',
  'mine_got',
  'got_irrit',
  'irrit_ask',
  'ask_bring',
  'bring_age',
  'age_said',
  'said_cant',
  'cant_want',
  'want_someon',
  'someon_young',
  'young_also',
  'also_want',
  'want_someon',
  'someon_hous',
  'hous_kinda',
  'kinda_money',
  'money_touch',
  'touch_normal',
  'normal_peopl',
  'peopl_live',
  'live_got',
  'got_realli',
  'realli_irrit',
  'irrit_bring',
  'bring_age',
  'age_even',
  'even_annoy',
  'annoy_id',
  'id_respond',
  'respond_neighbor',
  'neighbor_complaint',
  'complaint_futur',
  'futur_ok',
  'ok_boomer',
  'boomer_tell',
  'tell_want',
  'want_rich',
  'rich_person',
  'person_apart',
  'apart_could',
  'could_pay',
  'pay_aita',
  'aita_said',
  'said_boyfriend',
  'boyfriend_apart',
  'apart_edit',
  'edit_-',
  '-_lot',
  'lot_comment',
  'comment_ask',
  'ask_could',
  'could_stay',
  'stay_hous',
  'hous_possibl',
  'possibl_get',
  'get_hous',
  'hous_car',
  'car_buse',
  'buse_go',
  'go_far',
  'far_suburb',
  'suburb_would',
  'would_mean',
  'mean_drive',
  'drive_minut',
  'minut_hous',
  'hous_suburb',
  'suburb_pick',
  'pick_extra',
  'extra_drive',
  'drive_hous',
  'hous_hour',
  'hour_round',
  'round_trip',
  'trip_earli',
  'earli_morn',
  'morn_get',
  'get_home',
  'home_time',
  'time_work',
  'work_lot',
  'lot_easier',
  'easier_visit',
  'visit_citi',
  'citi_edit',
  'edit_-',
  '-_lot',
  'lot_peopl',
  'peopl_comment',
  'comment_say',
  'say_technic',
  'technic_milenni',
  'milenni_boomer',
  'boomer_know',
  'know_use',
  'use_boomer',
  'boomer_joke',
  'joke_figur',
  'figur_speech',
  'speech_say',
  'say_act',
  'act_touch',
  'touch_entitl',
  'entitl_tell',
  'tell_peopl',
  'peopl_common',
  'common_figur',
  'figur_speech',
  'speech_say',
  'say_ok',
  'ok_boomer',
  'boomer_someon',
  'someon_act',
  'act_entitl',
  'entitl_regardless',
  'regardless_actual',
  'actual_age',
  'age_mindset',
  'mindset_thing',
  'thing_edit',
  'edit_-',
  '-_googl',
  'googl_properti',
  'properti_record',
  'record_hous',
  'hous_co',
  'co_woman',
  'woman_share',
  'share_last',
  'last_name',
  'name_holi',
  'holi_shit',
  'shit_know',
  'know_wife',
  'wife_ex',
  'ex_wife',
  'wife_im',
  'im_im',
  'im_honestli',
  'honestli_freak',
  'freak_right',
  'right_got',
  'got_ta',
  'ta_say',
  'say_great',
  'great_big',
  'big_thank',
  'thank_everyon',
  'everyon_notic',
  'notic_red',
  'red_flag',
  'flag_made',
  'made_question',
  'question_ive',
  'ive_block',
  'block_number',
  'number_fun',
  'fun_figur',
  'figur_went',
  'recent_got_togeth',
  'got_togeth_guy',
  'togeth_guy_hobbi',
  'guy_hobbi_ask',
  'hobbi_ask_first',
  'ask_first_doubt',
  'first_doubt_wed',
  'doubt_wed_work',
  'wed_work_togeth',
  'work_togeth_coupl',
  'togeth_coupl_age',
  'coupl_age_differ',
  'age_differ_im',
  'differ_im_apart',
  'im_apart_sinc',
  'apart_sinc_old',
  'sinc_old_hous',
  'old_hous_origin',
  'hous_origin_singl',
  'origin_singl_famili',
  'singl_famili_hous',
  'famili_hous_much',
  'hous_much_soundproof',
  'much_soundproof_floor',
  'soundproof_floor_creak',
  'floor_creak_peopl',
  'creak_peopl_move',
  'peopl_move_ive',
  'move_ive_gotten',
  'ive_gotten_use',
  'gotten_use_sound',
  'use_sound_guy',
  'sound_guy_upstair',
  'guy_upstair_get',
  'upstair_get_sinc',
  'get_sinc_start',
  'sinc_start_work',
  'start_work_sound',
  'work_sound_girl',
  'sound_girl_apart',
  'girl_apart_either',
  'apart_either_side',
  'either_side_mine',
  'side_mine_watch',
  'mine_watch_telenovela',
  'watch_telenovela_till',
  'telenovela_till_midnight',
  'till_midnight_take',
  'midnight_take_work',
  'take_work_call',
  'work_call_day',
  'call_day_friend',
  'day_friend_weekend',
  'friend_weekend_night',
  'weekend_night_know',
  'night_know_play',
  'know_play_music',
  'play_music_friend',
  'music_friend_sound',
  'friend_sound_leak',
  'sound_leak_wall',
  'leak_wall_id',
  'wall_id_never',
  'id_never_get',
  'never_get_upset',
  'get_upset_hear',
  'upset_hear_neighbor',
  'hear_neighbor_goe',
  'neighbor_goe_way',
  'goe_way_boyfriend',
  'way_boyfriend_start',
  'boyfriend_start_come',
  'start_come_often',
  'come_often_complaint',
  'often_complaint_neighbor',
  'complaint_neighbor_put',
  'neighbor_put_awkward',
  'put_awkward_place',
  'awkward_place_want',
  'place_want_go',
  'want_go_speak',
  'go_speak_text',
  'speak_text_said',
  'text_said_exampl',
  'said_exampl_one',
  'exampl_one_earli',
  'one_earli_time',
  'earli_time_stay',
  'time_stay_went',
  'stay_went_bed',
  'went_bed_around',
  'bed_around_want',
  'around_want_ask',
  'want_ask_neighbor',
  'ask_neighbor_turn',
  'neighbor_turn_tv',
  'turn_tv_said',
  'tv_said_loud',
  'said_loud_turn',
  'loud_turn_midnight',
  'turn_midnight_anyway',
  'midnight_anyway_got',
  'anyway_got_irrit',
  'got_irrit_upstair',
  'irrit_upstair_neighbor',
  'upstair_neighbor_get',
  'neighbor_get_cook',
  'get_cook_breakfast',
  'cook_breakfast_said',
  'breakfast_said_would',
  'said_would_done',
  'would_done_shift',
  'done_shift_start',
  'shift_start_still',
  'start_still_tri',
  'still_tri_sleep',
  'tri_sleep_neighbor',
  'sleep_neighbor_side',
  'neighbor_side_work',
  'side_work_call',
  'work_call_said',
  'call_said_sleep',
  'said_sleep_offer',
  'sleep_offer_earplug',
  'offer_earplug_said',
  'earplug_said_sleep',
  'said_sleep_either',
  'sleep_either_want',
  'either_want_ask',
  'want_ask_quiet',
  'ask_quiet_similar',
  'quiet_similar_comment',
  'similar_comment_everi',
  'comment_everi_time',
  'everi_time_heard',
  'time_heard_someon',
  'heard_someon_els',
  'someon_els_build',
  'els_build_live',
  'build_live_life',
  'live_life_especi',
  'life_especi_bed',
  'especi_bed_got',
  'bed_got_frustrat',
  'got_frustrat_boyfriend',
  'frustrat_boyfriend_told',
  'boyfriend_told_know',
  'told_know_cant',
  'know_cant_expect',
  'cant_expect_date',
  'expect_date_hot',
  'date_hot_young',
  'hot_young_year',
  'young_year_old',
  'year_old_wan',
  'old_wan_na',
  'wan_na_deal',
  'na_deal_year',
  'deal_year_old',
  'year_old_live',
  'old_live_situat',
  'live_situat_know',
  'situat_know_realiz',
  'know_realiz_normal',
  'realiz_normal_apart',
  'normal_apart_someon',
  'apart_someon_age',
  'someon_age_hell',
  'age_hell_neighbor',
  'hell_neighbor_pretti',
  'neighbor_pretti_great',
  'pretti_great_nobodi',
  'great_nobodi_throw',
  'nobodi_throw_loud',
  'throw_loud_parti',
  'loud_parti_work',
  'parti_work_night',
  'work_night_nobodi',
  'night_nobodi_scream',
  'nobodi_scream_fight',
  'scream_fight_nobodi',
  'fight_nobodi_babi',
  'nobodi_babi_hot',
  'babi_hot_young',
  'hot_young_part',
  'young_part_sarcast',
  'part_sarcast_air',
  'sarcast_air_quot',
  'air_quot_word',
  'quot_word_mine',
  'word_mine_got',
  'mine_got_irrit',
  'got_irrit_ask',
  'irrit_ask_bring',
  'ask_bring_age',
  'bring_age_said',
  'age_said_cant',
  'said_cant_want',
  'cant_want_someon',
  'want_someon_young',
  'someon_young_also',
  'young_also_want',
  'also_want_someon',
  'want_someon_hous',
  'someon_hous_kinda',
  'hous_kinda_money',
  'kinda_money_touch',
  'money_touch_normal',
  'touch_normal_peopl',
  'normal_peopl_live',
  'peopl_live_got',
  'live_got_realli',
  'got_realli_irrit',
  'realli_irrit_bring',
  'irrit_bring_age',
  'bring_age_even',
  'age_even_annoy',
  'even_annoy_id',
  'annoy_id_respond',
  'id_respond_neighbor',
  'respond_neighbor_complaint',
  'neighbor_complaint_futur',
  'complaint_futur_ok',
  'futur_ok_boomer',
  'ok_boomer_tell',
  'boomer_tell_want',
  'tell_want_rich',
  'want_rich_person',
  'rich_person_apart',
  'person_apart_could',
  'apart_could_pay',
  'could_pay_aita',
  'pay_aita_said',
  'aita_said_boyfriend',
  'said_boyfriend_apart',
  'boyfriend_apart_edit',
  'apart_edit_-',
  'edit_-_lot',
  '-_lot_comment',
  'lot_comment_ask',
  'comment_ask_could',
  'ask_could_stay',
  'could_stay_hous',
  'stay_hous_possibl',
  'hous_possibl_get',
  'possibl_get_hous',
  'get_hous_car',
  'hous_car_buse',
  'car_buse_go',
  'buse_go_far',
  'go_far_suburb',
  'far_suburb_would',
  'suburb_would_mean',
  'would_mean_drive',
  'mean_drive_minut',
  'drive_minut_hous',
  'minut_hous_suburb',
  'hous_suburb_pick',
  'suburb_pick_extra',
  'pick_extra_drive',
  'extra_drive_hous',
  'drive_hous_hour',
  'hous_hour_round',
  'hour_round_trip',
  'round_trip_earli',
  'trip_earli_morn',
  'earli_morn_get',
  'morn_get_home',
  'get_home_time',
  'home_time_work',
  'time_work_lot',
  'work_lot_easier',
  'lot_easier_visit',
  'easier_visit_citi',
  'visit_citi_edit',
  'citi_edit_-',
  'edit_-_lot',
  '-_lot_peopl',
  'lot_peopl_comment',
  'peopl_comment_say',
  'comment_say_technic',
  'say_technic_milenni',
  'technic_milenni_boomer',
  'milenni_boomer_know',
  'boomer_know_use',
  'know_use_boomer',
  'use_boomer_joke',
  'boomer_joke_figur',
  'joke_figur_speech',
  'figur_speech_say',
  'speech_say_act',
  'say_act_touch',
  'act_touch_entitl',
  'touch_entitl_tell',
  'entitl_tell_peopl',
  'tell_peopl_common',
  'peopl_common_figur',
  'common_figur_speech',
  'figur_speech_say',
  ...],
 ['husband',
  'jare',
  'marri',
  'year',
  'current',
  'work',
  'use',
  'work',
  'high',
  'pay',
  'job',
  'got',
  'kick',
  'compani',
  'fight',
  'co',
  'worker',
  'im',
  'one',
  'pay',
  'rent',
  'util',
  'dedic',
  'time',
  'see',
  'famili',
  'weekli',
  'know',
  'unemploy',
  'thought',
  'theyll',
  'see',
  'failur',
  'especi',
  'mom',
  'told',
  'keep',
  'secret',
  'last',
  'night',
  'sit',
  'eat',
  'dinner',
  'tabl',
  'cousin',
  'talk',
  'fiance',
  'go',
  'brazil',
  'boob',
  'job',
  'jare',
  'ask',
  'seriou',
  'flatter',
  'fsil',
  'boob',
  'say',
  'theyr',
  'perfect',
  'understand',
  'shed',
  'get',
  'boob',
  'job',
  'turn',
  'stare',
  'chest',
  'eat',
  'like',
  'idiot',
  'flat',
  'chest',
  'im',
  'insecur',
  'cant',
  'anyth',
  'obvious',
  'said',
  'hey',
  'get',
  'boob',
  'job',
  'one',
  'need',
  'mom',
  'gasp',
  'like',
  'jare',
  'said',
  'fine',
  'turn',
  'said',
  'ill',
  'get',
  'boob',
  'job',
  'get',
  'actual',
  'job',
  'sinc',
  'unemploy',
  'month',
  '$',
  'stare',
  'disbelief',
  'mom',
  'began',
  'question',
  'unemploy',
  'deni',
  'deni',
  'deni',
  'admit',
  'true',
  'got',
  'awkward',
  'mom',
  'scold',
  'shame',
  'hide',
  'got',
  'overwhelm',
  'went',
  'outsid',
  'stay',
  'insid',
  'car',
  'til',
  'came',
  'start',
  'yele',
  'repeatedli',
  'coudnt',
  'held',
  'ef',
  'tongu',
  'accus',
  'turn',
  'famili',
  'jugg',
  'shun',
  'cant',
  'even',
  'step',
  'foot',
  'hous',
  'shame',
  'guilt',
  'argu',
  'comment',
  'chest',
  'insult',
  'said',
  'give',
  'piec',
  'advic',
  'noth',
  'wrong',
  'want',
  'look',
  'pretti',
  'said',
  'said',
  'support',
  'encouregemnt',
  'complet',
  'opposit',
  'intent',
  'hurt',
  'succeed',
  'drop',
  'home',
  'went',
  'stay',
  'buddi',
  'call',
  'later',
  'think',
  'calm',
  'friend',
  'said',
  'want',
  'speak',
  'shoud',
  'give',
  'space',
  'husband_jare',
  'jare_marri',
  'marri_year',
  'year_current',
  'current_work',
  'work_use',
  'use_work',
  'work_high',
  'high_pay',
  'pay_job',
  'job_got',
  'got_kick',
  'kick_compani',
  'compani_fight',
  'fight_co',
  'co_worker',
  'worker_im',
  'im_one',
  'one_pay',
  'pay_rent',
  'rent_util',
  'util_dedic',
  'dedic_time',
  'time_see',
  'see_famili',
  'famili_weekli',
  'weekli_know',
  'know_unemploy',
  'unemploy_thought',
  'thought_theyll',
  'theyll_see',
  'see_failur',
  'failur_especi',
  'especi_mom',
  'mom_told',
  'told_keep',
  'keep_secret',
  'secret_last',
  'last_night',
  'night_sit',
  'sit_eat',
  'eat_dinner',
  'dinner_tabl',
  'tabl_cousin',
  'cousin_talk',
  'talk_fiance',
  'fiance_go',
  'go_brazil',
  'brazil_boob',
  'boob_job',
  'job_jare',
  'jare_ask',
  'ask_seriou',
  'seriou_flatter',
  'flatter_fsil',
  'fsil_boob',
  'boob_say',
  'say_theyr',
  'theyr_perfect',
  'perfect_understand',
  'understand_shed',
  'shed_get',
  'get_boob',
  'boob_job',
  'job_turn',
  'turn_stare',
  'stare_chest',
  'chest_eat',
  'eat_like',
  'like_idiot',
  'idiot_flat',
  'flat_chest',
  'chest_im',
  'im_insecur',
  'insecur_cant',
  'cant_anyth',
  'anyth_obvious',
  'obvious_said',
  'said_hey',
  'hey_get',
  'get_boob',
  'boob_job',
  'job_one',
  'one_need',
  'need_mom',
  'mom_gasp',
  'gasp_like',
  'like_jare',
  'jare_said',
  'said_fine',
  'fine_turn',
  'turn_said',
  'said_ill',
  'ill_get',
  'get_boob',
  'boob_job',
  'job_get',
  'get_actual',
  'actual_job',
  'job_sinc',
  'sinc_unemploy',
  'unemploy_month',
  'month_$',
  '$_stare',
  'stare_disbelief',
  'disbelief_mom',
  'mom_began',
  'began_question',
  'question_unemploy',
  'unemploy_deni',
  'deni_deni',
  'deni_deni',
  'deni_admit',
  'admit_true',
  'true_got',
  'got_awkward',
  'awkward_mom',
  'mom_scold',
  'scold_shame',
  'shame_hide',
  'hide_got',
  'got_overwhelm',
  'overwhelm_went',
  'went_outsid',
  'outsid_stay',
  'stay_insid',
  'insid_car',
  'car_til',
  'til_came',
  'came_start',
  'start_yele',
  'yele_repeatedli',
  'repeatedli_coudnt',
  'coudnt_held',
  'held_ef',
  'ef_tongu',
  'tongu_accus',
  'accus_turn',
  'turn_famili',
  'famili_jugg',
  'jugg_shun',
  'shun_cant',
  'cant_even',
  'even_step',
  'step_foot',
  'foot_hous',
  'hous_shame',
  'shame_guilt',
  'guilt_argu',
  'argu_comment',
  'comment_chest',
  'chest_insult',
  'insult_said',
  'said_give',
  'give_piec',
  'piec_advic',
  'advic_noth',
  'noth_wrong',
  'wrong_want',
  'want_look',
  'look_pretti',
  'pretti_said',
  'said_said',
  'said_support',
  'support_encouregemnt',
  'encouregemnt_complet',
  'complet_opposit',
  'opposit_intent',
  'intent_hurt',
  'hurt_succeed',
  'succeed_drop',
  'drop_home',
  'home_went',
  'went_stay',
  'stay_buddi',
  'buddi_call',
  'call_later',
  'later_think',
  'think_calm',
  'calm_friend',
  'friend_said',
  'said_want',
  'want_speak',
  'speak_shoud',
  'shoud_give',
  'give_space',
  'husband_jare_marri',
  'jare_marri_year',
  'marri_year_current',
  'year_current_work',
  'current_work_use',
  'work_use_work',
  'use_work_high',
  'work_high_pay',
  'high_pay_job',
  'pay_job_got',
  'job_got_kick',
  'got_kick_compani',
  'kick_compani_fight',
  'compani_fight_co',
  'fight_co_worker',
  'co_worker_im',
  'worker_im_one',
  'im_one_pay',
  'one_pay_rent',
  'pay_rent_util',
  'rent_util_dedic',
  'util_dedic_time',
  'dedic_time_see',
  'time_see_famili',
  'see_famili_weekli',
  'famili_weekli_know',
  'weekli_know_unemploy',
  'know_unemploy_thought',
  'unemploy_thought_theyll',
  'thought_theyll_see',
  'theyll_see_failur',
  'see_failur_especi',
  'failur_especi_mom',
  'especi_mom_told',
  'mom_told_keep',
  'told_keep_secret',
  'keep_secret_last',
  'secret_last_night',
  'last_night_sit',
  'night_sit_eat',
  'sit_eat_dinner',
  'eat_dinner_tabl',
  'dinner_tabl_cousin',
  'tabl_cousin_talk',
  'cousin_talk_fiance',
  'talk_fiance_go',
  'fiance_go_brazil',
  'go_brazil_boob',
  'brazil_boob_job',
  'boob_job_jare',
  'job_jare_ask',
  'jare_ask_seriou',
  'ask_seriou_flatter',
  'seriou_flatter_fsil',
  'flatter_fsil_boob',
  'fsil_boob_say',
  'boob_say_theyr',
  'say_theyr_perfect',
  'theyr_perfect_understand',
  'perfect_understand_shed',
  'understand_shed_get',
  'shed_get_boob',
  'get_boob_job',
  'boob_job_turn',
  'job_turn_stare',
  'turn_stare_chest',
  'stare_chest_eat',
  'chest_eat_like',
  'eat_like_idiot',
  'like_idiot_flat',
  'idiot_flat_chest',
  'flat_chest_im',
  'chest_im_insecur',
  'im_insecur_cant',
  'insecur_cant_anyth',
  'cant_anyth_obvious',
  'anyth_obvious_said',
  'obvious_said_hey',
  'said_hey_get',
  'hey_get_boob',
  'get_boob_job',
  'boob_job_one',
  'job_one_need',
  'one_need_mom',
  'need_mom_gasp',
  'mom_gasp_like',
  'gasp_like_jare',
  'like_jare_said',
  'jare_said_fine',
  'said_fine_turn',
  'fine_turn_said',
  'turn_said_ill',
  'said_ill_get',
  'ill_get_boob',
  'get_boob_job',
  'boob_job_get',
  'job_get_actual',
  'get_actual_job',
  'actual_job_sinc',
  'job_sinc_unemploy',
  'sinc_unemploy_month',
  'unemploy_month_$',
  'month_$_stare',
  '$_stare_disbelief',
  'stare_disbelief_mom',
  'disbelief_mom_began',
  'mom_began_question',
  'began_question_unemploy',
  'question_unemploy_deni',
  'unemploy_deni_deni',
  'deni_deni_deni',
  'deni_deni_admit',
  'deni_admit_true',
  'admit_true_got',
  'true_got_awkward',
  'got_awkward_mom',
  'awkward_mom_scold',
  'mom_scold_shame',
  'scold_shame_hide',
  'shame_hide_got',
  'hide_got_overwhelm',
  'got_overwhelm_went',
  'overwhelm_went_outsid',
  'went_outsid_stay',
  'outsid_stay_insid',
  'stay_insid_car',
  'insid_car_til',
  'car_til_came',
  'til_came_start',
  'came_start_yele',
  'start_yele_repeatedli',
  'yele_repeatedli_coudnt',
  'repeatedli_coudnt_held',
  'coudnt_held_ef',
  'held_ef_tongu',
  'ef_tongu_accus',
  'tongu_accus_turn',
  'accus_turn_famili',
  'turn_famili_jugg',
  'famili_jugg_shun',
  'jugg_shun_cant',
  'shun_cant_even',
  'cant_even_step',
  'even_step_foot',
  'step_foot_hous',
  'foot_hous_shame',
  'hous_shame_guilt',
  'shame_guilt_argu',
  'guilt_argu_comment',
  'argu_comment_chest',
  'comment_chest_insult',
  'chest_insult_said',
  'insult_said_give',
  'said_give_piec',
  'give_piec_advic',
  'piec_advic_noth',
  'advic_noth_wrong',
  'noth_wrong_want',
  'wrong_want_look',
  'want_look_pretti',
  'look_pretti_said',
  'pretti_said_said',
  'said_said_support',
  'said_support_encouregemnt',
  'support_encouregemnt_complet',
  'encouregemnt_complet_opposit',
  'complet_opposit_intent',
  'opposit_intent_hurt',
  'intent_hurt_succeed',
  'hurt_succeed_drop',
  'succeed_drop_home',
  'drop_home_went',
  'home_went_stay',
  'went_stay_buddi',
  'stay_buddi_call',
  'buddi_call_later',
  'call_later_think',
  'later_think_calm',
  'think_calm_friend',
  'calm_friend_said',
  'friend_said_want',
  'said_want_speak',
  'want_speak_shoud',
  'speak_shoud_give',
  'shoud_give_space'],
 ['niec',
  'sister',
  'child',
  'year',
  'ago',
  'marri',
  'wealthi',
  'man',
  'pandem',
  'last',
  'christma',
  'first',
  'in-law',
  'mil',
  'gift',
  'coat',
  'worth',
  '$',
  'saw',
  'wear',
  'ask',
  'bought',
  'said',
  'christma',
  'gift',
  'know',
  'much',
  'knew',
  'expens',
  'thought',
  'mayb',
  '$',
  'visit',
  'sister',
  'last',
  'januari',
  'niec',
  'saw',
  'googl',
  'brand',
  'show',
  'much',
  'realli',
  'lie',
  'wear',
  'afraid',
  'ruin',
  'last',
  'week',
  'wore',
  'visit',
  'sister',
  'put',
  'back',
  'leav',
  'felt',
  'someth',
  'go',
  '*',
  'splat',
  '*',
  'back',
  'niec',
  'start',
  'cackl',
  'smell',
  'paint',
  'hit',
  'piss',
  'apologit',
  'mom',
  'scream',
  'said',
  'ground',
  'said',
  'pay',
  'dri',
  'clean',
  'car',
  'still',
  'shock',
  'btw',
  'got',
  'alert',
  'niec',
  'post',
  'reel',
  '*',
  'prank',
  '*',
  'said',
  'im',
  'go',
  'hit',
  'aunt',
  '$',
  'coat',
  'paint',
  'fill',
  'balloon',
  'see',
  'react',
  'save',
  'phone',
  'sent',
  'mom',
  'told',
  'week',
  'ground',
  'enough',
  'repli',
  'saw',
  'niec',
  'took',
  'got',
  'less',
  'view',
  'next',
  'day',
  'found',
  'coat',
  'save',
  'call',
  'sister',
  'told',
  'daughter',
  'pay',
  'back',
  'well',
  'got',
  'argument',
  'said',
  'pay',
  'want',
  'new',
  'one',
  'get',
  'husband',
  'buy',
  'think',
  'pay',
  'afford',
  'imo',
  'sell',
  'niec',
  'car',
  'pay',
  'back',
  'money',
  'reach',
  'agreement',
  'told',
  'su',
  'remind',
  'video',
  'evid',
  'daughter',
  'purpos',
  'onlin',
  'clout',
  'knew',
  'exactli',
  'expens',
  'peopl',
  'life',
  'object',
  'call',
  'ah',
  'say',
  'ah',
  'buy',
  'new',
  'one',
  'obsess',
  'price',
  'coat',
  'call',
  'ah',
  'simpli',
  'want',
  'new',
  'one',
  'aita',
  'edit',
  'sorri',
  'make',
  'clearer',
  'coat',
  'bought',
  'new',
  'ident',
  'mil',
  'niec_sister',
  'sister_child',
  'child_year',
  'year_ago',
  'ago_marri',
  'marri_wealthi',
  'wealthi_man',
  'man_pandem',
  'pandem_last',
  'last_christma',
  'christma_first',
  'first_in-law',
  'in-law_mil',
  'mil_gift',
  'gift_coat',
  'coat_worth',
  'worth_$',
  '$_saw',
  'saw_wear',
  'wear_ask',
  'ask_bought',
  'bought_said',
  'said_christma',
  'christma_gift',
  'gift_know',
  'know_much',
  'much_knew',
  'knew_expens',
  'expens_thought',
  'thought_mayb',
  'mayb_$',
  '$_visit',
  'visit_sister',
  'sister_last',
  'last_januari',
  'januari_niec',
  'niec_saw',
  'saw_googl',
  'googl_brand',
  'brand_show',
  'show_much',
  'much_realli',
  'realli_lie',
  'lie_wear',
  'wear_afraid',
  'afraid_ruin',
  'ruin_last',
  'last_week',
  'week_wore',
  'wore_visit',
  'visit_sister',
  'sister_put',
  'put_back',
  'back_leav',
  'leav_felt',
  'felt_someth',
  'someth_go',
  'go_*',
  '*_splat',
  'splat_*',
  '*_back',
  'back_niec',
  'niec_start',
  'start_cackl',
  'cackl_smell',
  'smell_paint',
  'paint_hit',
  'hit_piss',
  'piss_apologit',
  'apologit_mom',
  'mom_scream',
  'scream_said',
  'said_ground',
  'ground_said',
  'said_pay',
  'pay_dri',
  'dri_clean',
  'clean_car',
  'car_still',
  'still_shock',
  'shock_btw',
  'btw_got',
  'got_alert',
  'alert_niec',
  'niec_post',
  'post_reel',
  'reel_*',
  '*_prank',
  'prank_*',
  '*_said',
  'said_im',
  'im_go',
  'go_hit',
  'hit_aunt',
  'aunt_$',
  '$_coat',
  'coat_paint',
  'paint_fill',
  'fill_balloon',
  'balloon_see',
  'see_react',
  'react_save',
  'save_phone',
  'phone_sent',
  'sent_mom',
  'mom_told',
  'told_week',
  'week_ground',
  'ground_enough',
  'enough_repli',
  'repli_saw',
  'saw_niec',
  'niec_took',
  'took_got',
  'got_less',
  'less_view',
  'view_next',
  'next_day',
  'day_found',
  'found_coat',
  'coat_save',
  'save_call',
  'call_sister',
  'sister_told',
  'told_daughter',
  'daughter_pay',
  'pay_back',
  'back_well',
  'well_got',
  'got_argument',
  'argument_said',
  'said_pay',
  'pay_want',
  'want_new',
  'new_one',
  'one_get',
  'get_husband',
  'husband_buy',
  'buy_think',
  'think_pay',
  'pay_afford',
  'afford_imo',
  'imo_sell',
  'sell_niec',
  'niec_car',
  'car_pay',
  'pay_back',
  'back_money',
  'money_reach',
  'reach_agreement',
  'agreement_told',
  'told_su',
  'su_remind',
  'remind_video',
  'video_evid',
  'evid_daughter',
  'daughter_purpos',
  'purpos_onlin',
  'onlin_clout',
  'clout_knew',
  'knew_exactli',
  'exactli_expens',
  'expens_peopl',
  'peopl_life',
  'life_object',
  'object_call',
  'call_ah',
  'ah_say',
  'say_ah',
  'ah_buy',
  'buy_new',
  'new_one',
  'one_obsess',
  'obsess_price',
  'price_coat',
  'coat_call',
  'call_ah',
  'ah_simpli',
  'simpli_want',
  'want_new',
  'new_one',
  'one_aita',
  'aita_edit',
  'edit_sorri',
  'sorri_make',
  'make_clearer',
  'clearer_coat',
  'coat_bought',
  'bought_new',
  'new_ident',
  'ident_mil',
  'niec_sister_child',
  'sister_child_year',
  'child_year_ago',
  'year_ago_marri',
  'ago_marri_wealthi',
  'marri_wealthi_man',
  'wealthi_man_pandem',
  'man_pandem_last',
  'pandem_last_christma',
  'last_christma_first',
  'christma_first_in-law',
  'first_in-law_mil',
  'in-law_mil_gift',
  'mil_gift_coat',
  'gift_coat_worth',
  'coat_worth_$',
  'worth_$_saw',
  '$_saw_wear',
  'saw_wear_ask',
  'wear_ask_bought',
  'ask_bought_said',
  'bought_said_christma',
  'said_christma_gift',
  'christma_gift_know',
  'gift_know_much',
  'know_much_knew',
  'much_knew_expens',
  'knew_expens_thought',
  'expens_thought_mayb',
  'thought_mayb_$',
  'mayb_$_visit',
  '$_visit_sister',
  'visit_sister_last',
  'sister_last_januari',
  'last_januari_niec',
  'januari_niec_saw',
  'niec_saw_googl',
  'saw_googl_brand',
  'googl_brand_show',
  'brand_show_much',
  'show_much_realli',
  'much_realli_lie',
  'realli_lie_wear',
  'lie_wear_afraid',
  'wear_afraid_ruin',
  'afraid_ruin_last',
  'ruin_last_week',
  'last_week_wore',
  'week_wore_visit',
  'wore_visit_sister',
  'visit_sister_put',
  'sister_put_back',
  'put_back_leav',
  'back_leav_felt',
  'leav_felt_someth',
  'felt_someth_go',
  'someth_go_*',
  'go_*_splat',
  '*_splat_*',
  'splat_*_back',
  '*_back_niec',
  'back_niec_start',
  'niec_start_cackl',
  'start_cackl_smell',
  'cackl_smell_paint',
  'smell_paint_hit',
  'paint_hit_piss',
  'hit_piss_apologit',
  'piss_apologit_mom',
  'apologit_mom_scream',
  'mom_scream_said',
  'scream_said_ground',
  'said_ground_said',
  'ground_said_pay',
  'said_pay_dri',
  'pay_dri_clean',
  'dri_clean_car',
  'clean_car_still',
  'car_still_shock',
  'still_shock_btw',
  'shock_btw_got',
  'btw_got_alert',
  'got_alert_niec',
  'alert_niec_post',
  'niec_post_reel',
  'post_reel_*',
  'reel_*_prank',
  '*_prank_*',
  'prank_*_said',
  '*_said_im',
  'said_im_go',
  'im_go_hit',
  'go_hit_aunt',
  'hit_aunt_$',
  'aunt_$_coat',
  '$_coat_paint',
  'coat_paint_fill',
  'paint_fill_balloon',
  'fill_balloon_see',
  'balloon_see_react',
  'see_react_save',
  'react_save_phone',
  'save_phone_sent',
  'phone_sent_mom',
  'sent_mom_told',
  'mom_told_week',
  'told_week_ground',
  'week_ground_enough',
  'ground_enough_repli',
  'enough_repli_saw',
  'repli_saw_niec',
  'saw_niec_took',
  'niec_took_got',
  'took_got_less',
  'got_less_view',
  'less_view_next',
  'view_next_day',
  'next_day_found',
  'day_found_coat',
  'found_coat_save',
  'coat_save_call',
  'save_call_sister',
  'call_sister_told',
  'sister_told_daughter',
  'told_daughter_pay',
  'daughter_pay_back',
  'pay_back_well',
  'back_well_got',
  'well_got_argument',
  'got_argument_said',
  'argument_said_pay',
  'said_pay_want',
  'pay_want_new',
  'want_new_one',
  'new_one_get',
  'one_get_husband',
  'get_husband_buy',
  'husband_buy_think',
  'buy_think_pay',
  'think_pay_afford',
  'pay_afford_imo',
  'afford_imo_sell',
  'imo_sell_niec',
  'sell_niec_car',
  'niec_car_pay',
  'car_pay_back',
  'pay_back_money',
  'back_money_reach',
  'money_reach_agreement',
  'reach_agreement_told',
  'agreement_told_su',
  'told_su_remind',
  'su_remind_video',
  'remind_video_evid',
  'video_evid_daughter',
  'evid_daughter_purpos',
  'daughter_purpos_onlin',
  'purpos_onlin_clout',
  'onlin_clout_knew',
  'clout_knew_exactli',
  'knew_exactli_expens',
  'exactli_expens_peopl',
  'expens_peopl_life',
  'peopl_life_object',
  'life_object_call',
  'object_call_ah',
  'call_ah_say',
  'ah_say_ah',
  'say_ah_buy',
  'ah_buy_new',
  'buy_new_one',
  'new_one_obsess',
  'one_obsess_price',
  'obsess_price_coat',
  'price_coat_call',
  'coat_call_ah',
  'call_ah_simpli',
  'ah_simpli_want',
  'simpli_want_new',
  'want_new_one',
  'new_one_aita',
  'one_aita_edit',
  'aita_edit_sorri',
  'edit_sorri_make',
  'sorri_make_clearer',
  'make_clearer_coat',
  'clearer_coat_bought',
  'coat_bought_new',
  'bought_new_ident',
  'new_ident_mil'],
 ['edit',
  '-',
  'updat',
  'page',
  '-',
  'situat',
  'husband',
  '[',
  ']',
  '[',
  ']',
  'kid',
  '[',
  ']',
  'im',
  'sahm',
  'full',
  'time',
  'take',
  'care',
  'kid',
  'husband',
  'work',
  'full',
  'time',
  'sister',
  'wed',
  'last',
  'week',
  'live',
  'hour',
  'away',
  'issu',
  'husband',
  'first',
  'got',
  'invit',
  'told',
  'go',
  'stay',
  'kid',
  'suggest',
  'sinc',
  'wed',
  'allow',
  'kid',
  'husband',
  'want',
  'hire',
  'babysitt',
  'one',
  'rob',
  'us',
  'gone',
  'back',
  'forth',
  'insist',
  'go',
  'sinc',
  'sister',
  'want',
  'attend',
  'might',
  'lifetim',
  'event',
  'chuckl',
  'statemt',
  'stop',
  'talk',
  'wed',
  'appraoch',
  'brought',
  'told',
  'miss',
  'stay',
  'kid',
  'suggest',
  'sinc',
  'babysitt',
  'allow',
  'could',
  'get',
  'friend',
  'stay',
  'kid',
  'refus',
  'ignor',
  'spoke',
  'friend',
  'agre',
  'watch',
  'kid',
  'book',
  'ticket',
  'travel',
  'sister',
  'town',
  'time',
  'husband',
  'found',
  'went',
  'work',
  'logic',
  'solut',
  'stay',
  'home',
  'kid',
  'let',
  'make',
  'live',
  'told',
  'alreadi',
  'took',
  'care',
  'kid',
  'theyll',
  'stay',
  'friend',
  'honestli',
  'grew',
  'inpati',
  'day',
  'flight',
  'drop',
  'kid',
  'friend',
  'place',
  'head',
  'airport',
  'found',
  'cancel',
  'plane',
  'ticket',
  'upset',
  'still',
  'insist',
  'go',
  'went',
  'home',
  'got',
  'car',
  'drove',
  'hr',
  'get',
  'town',
  'pm',
  'husband',
  'call',
  'freak',
  'ask',
  'told',
  'made',
  'sister',
  'town',
  'blew',
  'say',
  'suppos',
  'go',
  'even',
  'said',
  'cancel',
  'ticket',
  'get',
  'stay',
  'demand',
  'return',
  'said',
  'wed',
  'call',
  'horribl',
  'neglect',
  'mom',
  'mom',
  'scold',
  'accus',
  'abandon',
  'kid',
  'huge',
  'argument',
  'ensu',
  'return',
  'home',
  'husband',
  'kept',
  'say',
  'horribl',
  'leav',
  'kid',
  'ignor',
  'like',
  'want',
  'eventu',
  'give',
  'silent',
  'treatment',
  'longer',
  'take',
  'felt',
  'guilti',
  'enjoy',
  'wed',
  'wrong',
  'still',
  'go',
  '[',
  'info',
  ']',
  'husband',
  'dislik',
  'sister',
  'relev',
  'updat',
  'lot',
  'peopl',
  'brought',
  'possibl',
  'husband',
  'lie',
  'robberi',
  'happen',
  'month',
  'ago',
  'accus',
  'babysitt',
  'steal',
  'cant',
  'hire',
  'babysitt',
  'one',
  'discov',
  'robberi',
  'never',
  'saw',
  'talk',
  'kick',
  'upon',
  'read',
  'comment',
  'im',
  'suspect',
  'made',
  'whole',
  'thing',
  'im',
  'go',
  'contact',
  'babysitt',
  'get',
  'whole',
  'stori',
  'fromhop',
  'im',
  'wrong',
  'talk',
  'see',
  'stori',
  'contredict',
  'way',
  'ill',
  'keep',
  'updat',
  'edit_-',
  '-_updat',
  'updat_page',
  'page_-',
  '-_situat',
  'situat_husband',
  'husband_[',
  '[_]',
  ']_[',
  '[_]',
  ']_kid',
  'kid_[',
  '[_]',
  ']_im',
  'im_sahm',
  'sahm_full',
  'full_time',
  'time_take',
  'take_care',
  'care_kid',
  'kid_husband',
  'husband_work',
  'work_full',
  'full_time',
  'time_sister',
  'sister_wed',
  'wed_last',
  'last_week',
  'week_live',
  'live_hour',
  'hour_away',
  'away_issu',
  'issu_husband',
  'husband_first',
  'first_got',
  'got_invit',
  'invit_told',
  'told_go',
  'go_stay',
  'stay_kid',
  'kid_suggest',
  'suggest_sinc',
  'sinc_wed',
  'wed_allow',
  'allow_kid',
  'kid_husband',
  'husband_want',
  'want_hire',
  'hire_babysitt',
  'babysitt_one',
  'one_rob',
  'rob_us',
  'us_gone',
  'gone_back',
  'back_forth',
  'forth_insist',
  'insist_go',
  'go_sinc',
  'sinc_sister',
  'sister_want',
  'want_attend',
  'attend_might',
  'might_lifetim',
  'lifetim_event',
  'event_chuckl',
  'chuckl_statemt',
  'statemt_stop',
  'stop_talk',
  'talk_wed',
  'wed_appraoch',
  'appraoch_brought',
  'brought_told',
  'told_miss',
  'miss_stay',
  'stay_kid',
  'kid_suggest',
  'suggest_sinc',
  'sinc_babysitt',
  'babysitt_allow',
  'allow_could',
  'could_get',
  'get_friend',
  'friend_stay',
  'stay_kid',
  'kid_refus',
  'refus_ignor',
  'ignor_spoke',
  'spoke_friend',
  'friend_agre',
  'agre_watch',
  'watch_kid',
  'kid_book',
  'book_ticket',
  'ticket_travel',
  'travel_sister',
  'sister_town',
  'town_time',
  'time_husband',
  'husband_found',
  'found_went',
  'went_work',
  'work_logic',
  'logic_solut',
  'solut_stay',
  'stay_home',
  'home_kid',
  'kid_let',
  'let_make',
  'make_live',
  'live_told',
  'told_alreadi',
  'alreadi_took',
  'took_care',
  'care_kid',
  'kid_theyll',
  'theyll_stay',
  'stay_friend',
  'friend_honestli',
  'honestli_grew',
  'grew_inpati',
  'inpati_day',
  'day_flight',
  'flight_drop',
  'drop_kid',
  'kid_friend',
  'friend_place',
  'place_head',
  'head_airport',
  'airport_found',
  'found_cancel',
  'cancel_plane',
  'plane_ticket',
  'ticket_upset',
  'upset_still',
  'still_insist',
  'insist_go',
  'go_went',
  'went_home',
  'home_got',
  'got_car',
  'car_drove',
  'drove_hr',
  'hr_get',
  'get_town',
  'town_pm',
  'pm_husband',
  'husband_call',
  'call_freak',
  'freak_ask',
  'ask_told',
  'told_made',
  'made_sister',
  'sister_town',
  'town_blew',
  'blew_say',
  'say_suppos',
  'suppos_go',
  'go_even',
  'even_said',
  'said_cancel',
  'cancel_ticket',
  'ticket_get',
  'get_stay',
  'stay_demand',
  'demand_return',
  'return_said',
  'said_wed',
  'wed_call',
  'call_horribl',
  'horribl_neglect',
  'neglect_mom',
  'mom_mom',
  'mom_scold',
  'scold_accus',
  'accus_abandon',
  'abandon_kid',
  'kid_huge',
  'huge_argument',
  'argument_ensu',
  'ensu_return',
  'return_home',
  'home_husband',
  'husband_kept',
  'kept_say',
  'say_horribl',
  'horribl_leav',
  'leav_kid',
  'kid_ignor',
  'ignor_like',
  'like_want',
  'want_eventu',
  'eventu_give',
  'give_silent',
  'silent_treatment',
  'treatment_longer',
  'longer_take',
  'take_felt',
  'felt_guilti',
  'guilti_enjoy',
  'enjoy_wed',
  'wed_wrong',
  'wrong_still',
  'still_go',
  'go_[',
  '[_info',
  'info_]',
  ']_husband',
  'husband_dislik',
  'dislik_sister',
  'sister_relev',
  'relev_updat',
  'updat_lot',
  'lot_peopl',
  'peopl_brought',
  'brought_possibl',
  'possibl_husband',
  'husband_lie',
  'lie_robberi',
  'robberi_happen',
  'happen_month',
  'month_ago',
  'ago_accus',
  'accus_babysitt',
  'babysitt_steal',
  'steal_cant',
  'cant_hire',
  'hire_babysitt',
  'babysitt_one',
  'one_discov',
  'discov_robberi',
  'robberi_never',
  'never_saw',
  'saw_talk',
  'talk_kick',
  'kick_upon',
  'upon_read',
  'read_comment',
  'comment_im',
  'im_suspect',
  'suspect_made',
  'made_whole',
  'whole_thing',
  'thing_im',
  'im_go',
  'go_contact',
  'contact_babysitt',
  'babysitt_get',
  'get_whole',
  'whole_stori',
  'stori_fromhop',
  'fromhop_im',
  'im_wrong',
  'wrong_talk',
  'talk_see',
  'see_stori',
  'stori_contredict',
  'contredict_way',
  'way_ill',
  'ill_keep',
  'keep_updat',
  'edit_-_updat',
  '-_updat_page',
  'updat_page_-',
  'page_-_situat',
  '-_situat_husband',
  'situat_husband_[',
  'husband_[_]',
  '[_]_[',
  ']_[_]',
  '[_]_kid',
  ']_kid_[',
  'kid_[_]',
  '[_]_im',
  ']_im_sahm',
  'im_sahm_full',
  'sahm_full_time',
  'full_time_take',
  'time_take_care',
  'take_care_kid',
  'care_kid_husband',
  'kid_husband_work',
  'husband_work_full',
  'work_full_time',
  'full_time_sister',
  'time_sister_wed',
  'sister_wed_last',
  'wed_last_week',
  'last_week_live',
  'week_live_hour',
  'live_hour_away',
  'hour_away_issu',
  'away_issu_husband',
  'issu_husband_first',
  'husband_first_got',
  'first_got_invit',
  'got_invit_told',
  'invit_told_go',
  'told_go_stay',
  'go_stay_kid',
  'stay_kid_suggest',
  'kid_suggest_sinc',
  'suggest_sinc_wed',
  'sinc_wed_allow',
  'wed_allow_kid',
  'allow_kid_husband',
  'kid_husband_want',
  'husband_want_hire',
  'want_hire_babysitt',
  'hire_babysitt_one',
  'babysitt_one_rob',
  'one_rob_us',
  'rob_us_gone',
  'us_gone_back',
  'gone_back_forth',
  'back_forth_insist',
  'forth_insist_go',
  'insist_go_sinc',
  'go_sinc_sister',
  'sinc_sister_want',
  'sister_want_attend',
  'want_attend_might',
  'attend_might_lifetim',
  'might_lifetim_event',
  'lifetim_event_chuckl',
  'event_chuckl_statemt',
  'chuckl_statemt_stop',
  'statemt_stop_talk',
  'stop_talk_wed',
  'talk_wed_appraoch',
  'wed_appraoch_brought',
  'appraoch_brought_told',
  'brought_told_miss',
  'told_miss_stay',
  'miss_stay_kid',
  'stay_kid_suggest',
  'kid_suggest_sinc',
  'suggest_sinc_babysitt',
  'sinc_babysitt_allow',
  'babysitt_allow_could',
  'allow_could_get',
  'could_get_friend',
  'get_friend_stay',
  'friend_stay_kid',
  'stay_kid_refus',
  'kid_refus_ignor',
  'refus_ignor_spoke',
  'ignor_spoke_friend',
  'spoke_friend_agre',
  'friend_agre_watch',
  'agre_watch_kid',
  'watch_kid_book',
  'kid_book_ticket',
  'book_ticket_travel',
  'ticket_travel_sister',
  'travel_sister_town',
  'sister_town_time',
  'town_time_husband',
  'time_husband_found',
  'husband_found_went',
  'found_went_work',
  'went_work_logic',
  'work_logic_solut',
  'logic_solut_stay',
  'solut_stay_home',
  'stay_home_kid',
  'home_kid_let',
  'kid_let_make',
  'let_make_live',
  'make_live_told',
  'live_told_alreadi',
  'told_alreadi_took',
  'alreadi_took_care',
  'took_care_kid',
  'care_kid_theyll',
  'kid_theyll_stay',
  'theyll_stay_friend',
  'stay_friend_honestli',
  'friend_honestli_grew',
  'honestli_grew_inpati',
  'grew_inpati_day',
  'inpati_day_flight',
  'day_flight_drop',
  'flight_drop_kid',
  'drop_kid_friend',
  'kid_friend_place',
  'friend_place_head',
  'place_head_airport',
  'head_airport_found',
  'airport_found_cancel',
  'found_cancel_plane',
  'cancel_plane_ticket',
  'plane_ticket_upset',
  'ticket_upset_still',
  'upset_still_insist',
  'still_insist_go',
  'insist_go_went',
  'go_went_home',
  'went_home_got',
  'home_got_car',
  'got_car_drove',
  'car_drove_hr',
  'drove_hr_get',
  'hr_get_town',
  'get_town_pm',
  'town_pm_husband',
  'pm_husband_call',
  'husband_call_freak',
  'call_freak_ask',
  'freak_ask_told',
  'ask_told_made',
  'told_made_sister',
  'made_sister_town',
  'sister_town_blew',
  'town_blew_say',
  'blew_say_suppos',
  'say_suppos_go',
  'suppos_go_even',
  'go_even_said',
  'even_said_cancel',
  'said_cancel_ticket',
  'cancel_ticket_get',
  'ticket_get_stay',
  'get_stay_demand',
  'stay_demand_return',
  'demand_return_said',
  'return_said_wed',
  'said_wed_call',
  'wed_call_horribl',
  'call_horribl_neglect',
  'horribl_neglect_mom',
  'neglect_mom_mom',
  'mom_mom_scold',
  'mom_scold_accus',
  'scold_accus_abandon',
  'accus_abandon_kid',
  'abandon_kid_huge',
  'kid_huge_argument',
  'huge_argument_ensu',
  'argument_ensu_return',
  'ensu_return_home',
  'return_home_husband',
  'home_husband_kept',
  'husband_kept_say',
  'kept_say_horribl',
  'say_horribl_leav',
  'horribl_leav_kid',
  'leav_kid_ignor',
  'kid_ignor_like',
  'ignor_like_want',
  'like_want_eventu',
  'want_eventu_give',
  'eventu_give_silent',
  'give_silent_treatment',
  'silent_treatment_longer',
  'treatment_longer_take',
  'longer_take_felt',
  'take_felt_guilti',
  'felt_guilti_enjoy',
  'guilti_enjoy_wed',
  'enjoy_wed_wrong',
  'wed_wrong_still',
  'wrong_still_go',
  'still_go_[',
  'go_[_info',
  '[_info_]',
  'info_]_husband',
  ']_husband_dislik',
  'husband_dislik_sister',
  'dislik_sister_relev',
  'sister_relev_updat',
  'relev_updat_lot',
  'updat_lot_peopl',
  'lot_peopl_brought',
  'peopl_brought_possibl',
  'brought_possibl_husband',
  'possibl_husband_lie',
  'husband_lie_robberi',
  'lie_robberi_happen',
  'robberi_happen_month',
  'happen_month_ago',
  'month_ago_accus',
  'ago_accus_babysitt',
  'accus_babysitt_steal',
  'babysitt_steal_cant',
  'steal_cant_hire',
  'cant_hire_babysitt',
  'hire_babysitt_one',
  'babysitt_one_discov',
  'one_discov_robberi',
  'discov_robberi_never',
  'robberi_never_saw',
  'never_saw_talk',
  'saw_talk_kick',
  'talk_kick_upon',
  'kick_upon_read',
  'upon_read_comment',
  'read_comment_im',
  'comment_im_suspect',
  'im_suspect_made',
  'suspect_made_whole',
  'made_whole_thing',
  'whole_thing_im',
  'thing_im_go',
  'im_go_contact',
  'go_contact_babysitt',
  'contact_babysitt_get',
  'babysitt_get_whole',
  'get_whole_stori',
  'whole_stori_fromhop',
  'stori_fromhop_im',
  'fromhop_im_wrong',
  'im_wrong_talk',
  'wrong_talk_see',
  'talk_see_stori',
  'see_stori_contredict',
  'stori_contredict_way',
  'contredict_way_ill',
  'way_ill_keep',
  'ill_keep_updat'],
 ['husband',
  'deal',
  'sone',
  'health',
  'issu',
  'past',
  'week',
  'frequent',
  'visit',
  'dr',
  'ask',
  'could',
  'go',
  'refus',
  'say',
  'neccesari',
  'ask',
  'want',
  'said',
  'felt',
  'comfort',
  'privaci',
  'doctor',
  'jokingli',
  'ask',
  'doctor',
  'women',
  'glanc',
  'anticip',
  'next',
  'dr',
  'appoint',
  'decid',
  'go',
  'meet',
  'went',
  'minut',
  'later',
  'enter',
  'offic',
  'identifi',
  'wife',
  'shock',
  'saw',
  'greet',
  'doctor',
  'man',
  'lol',
  'talk',
  'husband',
  'refus',
  'even',
  'look',
  'way',
  'refus',
  'speak',
  'well',
  'left',
  'offic',
  'togeth',
  'went',
  'car',
  'say',
  'follow',
  'came',
  'dr',
  'offic',
  'ask',
  'privaci',
  'said',
  'alright',
  'im',
  'wife',
  'alreadi',
  'even',
  'know',
  'issu',
  'want',
  'show',
  'support',
  'said',
  'overstep',
  'one',
  'boundari',
  'refus',
  'respect',
  'wish',
  'made',
  'stress',
  'alreadi',
  'hard',
  'time',
  'go',
  'thought',
  'overreact',
  'aita',
  'husband_deal',
  'deal_sone',
  'sone_health',
  'health_issu',
  'issu_past',
  'past_week',
  'week_frequent',
  'frequent_visit',
  'visit_dr',
  'dr_ask',
  'ask_could',
  'could_go',
  'go_refus',
  'refus_say',
  'say_neccesari',
  'neccesari_ask',
  'ask_want',
  'want_said',
  'said_felt',
  'felt_comfort',
  'comfort_privaci',
  'privaci_doctor',
  'doctor_jokingli',
  'jokingli_ask',
  'ask_doctor',
  'doctor_women',
  'women_glanc',
  'glanc_anticip',
  'anticip_next',
  'next_dr',
  'dr_appoint',
  'appoint_decid',
  'decid_go',
  'go_meet',
  'meet_went',
  'went_minut',
  'minut_later',
  'later_enter',
  'enter_offic',
  'offic_identifi',
  'identifi_wife',
  'wife_shock',
  'shock_saw',
  'saw_greet',
  'greet_doctor',
  'doctor_man',
  'man_lol',
  'lol_talk',
  'talk_husband',
  'husband_refus',
  'refus_even',
  'even_look',
  'look_way',
  'way_refus',
  'refus_speak',
  'speak_well',
  'well_left',
  'left_offic',
  'offic_togeth',
  'togeth_went',
  'went_car',
  'car_say',
  'say_follow',
  'follow_came',
  'came_dr',
  'dr_offic',
  'offic_ask',
  'ask_privaci',
  'privaci_said',
  'said_alright',
  'alright_im',
  'im_wife',
  'wife_alreadi',
  'alreadi_even',
  'even_know',
  'know_issu',
  'issu_want',
  'want_show',
  'show_support',
  'support_said',
  'said_overstep',
  'overstep_one',
  'one_boundari',
  'boundari_refus',
  'refus_respect',
  'respect_wish',
  'wish_made',
  'made_stress',
  'stress_alreadi',
  'alreadi_hard',
  'hard_time',
  'time_go',
  'go_thought',
  'thought_overreact',
  'overreact_aita',
  'husband_deal_sone',
  'deal_sone_health',
  'sone_health_issu',
  'health_issu_past',
  'issu_past_week',
  'past_week_frequent',
  'week_frequent_visit',
  'frequent_visit_dr',
  'visit_dr_ask',
  'dr_ask_could',
  'ask_could_go',
  'could_go_refus',
  'go_refus_say',
  'refus_say_neccesari',
  'say_neccesari_ask',
  'neccesari_ask_want',
  'ask_want_said',
  'want_said_felt',
  'said_felt_comfort',
  'felt_comfort_privaci',
  'comfort_privaci_doctor',
  'privaci_doctor_jokingli',
  'doctor_jokingli_ask',
  'jokingli_ask_doctor',
  'ask_doctor_women',
  'doctor_women_glanc',
  'women_glanc_anticip',
  'glanc_anticip_next',
  'anticip_next_dr',
  'next_dr_appoint',
  'dr_appoint_decid',
  'appoint_decid_go',
  'decid_go_meet',
  'go_meet_went',
  'meet_went_minut',
  'went_minut_later',
  'minut_later_enter',
  'later_enter_offic',
  'enter_offic_identifi',
  'offic_identifi_wife',
  'identifi_wife_shock',
  'wife_shock_saw',
  'shock_saw_greet',
  'saw_greet_doctor',
  'greet_doctor_man',
  'doctor_man_lol',
  'man_lol_talk',
  'lol_talk_husband',
  'talk_husband_refus',
  'husband_refus_even',
  'refus_even_look',
  'even_look_way',
  'look_way_refus',
  'way_refus_speak',
  'refus_speak_well',
  'speak_well_left',
  'well_left_offic',
  'left_offic_togeth',
  'offic_togeth_went',
  'togeth_went_car',
  'went_car_say',
  'car_say_follow',
  'say_follow_came',
  'follow_came_dr',
  'came_dr_offic',
  'dr_offic_ask',
  'offic_ask_privaci',
  'ask_privaci_said',
  'privaci_said_alright',
  'said_alright_im',
  'alright_im_wife',
  'im_wife_alreadi',
  'wife_alreadi_even',
  'alreadi_even_know',
  'even_know_issu',
  'know_issu_want',
  'issu_want_show',
  'want_show_support',
  'show_support_said',
  'support_said_overstep',
  'said_overstep_one',
  'overstep_one_boundari',
  'one_boundari_refus',
  'boundari_refus_respect',
  'refus_respect_wish',
  'respect_wish_made',
  'wish_made_stress',
  'made_stress_alreadi',
  'stress_alreadi_hard',
  'alreadi_hard_time',
  'hard_time_go',
  'time_go_thought',
  'go_thought_overreact',
  'thought_overreact_aita'],
 ['girlfriend',
  'molli',
  'last',
  'month',
  'start',
  'joke',
  'ive',
  'alreadi',
  'made',
  'clear',
  'like',
  'consist',
  'say',
  'quickli',
  'anyth',
  'ask',
  'know',
  'sound',
  'silli',
  'ask',
  'get',
  'glass',
  'water',
  'say',
  'minut',
  'im',
  'almost',
  'get',
  'say',
  'joke',
  'get',
  'water',
  'ask',
  'wash',
  'dish',
  'say',
  'say',
  'love',
  'say',
  'ask',
  'take',
  'cloth',
  'say',
  'everyth',
  'joke',
  'smin',
  'addict',
  'ive',
  'alreadi',
  'made',
  'clear',
  'sever',
  'time',
  'like',
  'even',
  'love',
  'person',
  'say',
  'special',
  'thing',
  'seriou',
  'need',
  'answer',
  'serious',
  'say',
  'everyth',
  'jokingli',
  'cant',
  'tell',
  'say',
  'real',
  'alreadi',
  'happen',
  'keep',
  'say',
  'bore',
  'like',
  'stop',
  'goe',
  'back',
  'week',
  'brief',
  'discuss',
  'play',
  'prank',
  'front',
  'friend',
  'ask',
  'love',
  'get',
  'medicin',
  'kid',
  'stop',
  'month',
  'yesterday',
  'welcom',
  'parent',
  'in-law',
  'best',
  'friend',
  'hous',
  'everyon',
  'knew',
  'go',
  'propos',
  'call',
  'alway',
  'plan',
  'propos',
  'love',
  'one',
  'attend',
  'particip',
  'special',
  'day',
  'ask',
  'marri',
  'said',
  'quick',
  'grumpypanicupset',
  'everyon',
  'look',
  'shock',
  'laugh',
  'say',
  'joke',
  'final',
  'say',
  'ye',
  'embarrass',
  'and…disappoint',
  'put',
  'ring',
  'box',
  'back',
  'said',
  'id',
  'take',
  'cool',
  'even',
  'let',
  'say',
  'anyth',
  'kept',
  'text',
  'answer',
  'call',
  'say',
  'joke',
  'knew',
  'alway',
  'said',
  'left',
  'difficult',
  'situat',
  'hous',
  'clear',
  'given',
  'propos',
  'front',
  'parent',
  'in-law',
  'stress',
  'make',
  'situat',
  'uncomfort',
  'silli',
  'joke',
  'well',
  'slept',
  'hotel',
  'im',
  'still',
  'parent',
  'support',
  'in-law',
  'call',
  'ah',
  'give',
  'propos',
  'disproportion',
  'humili',
  'daughter',
  'realli',
  'think',
  'time',
  'joke',
  'moment',
  'clearli',
  'knew',
  'like',
  'decid',
  'anyway',
  'aita',
  'girlfriend_molli',
  'molli_last',
  'last_month',
  'month_start',
  'start_joke',
  'joke_ive',
  'ive_alreadi',
  'alreadi_made',
  'made_clear',
  'clear_like',
  'like_consist',
  'consist_say',
  'say_quickli',
  'quickli_anyth',
  'anyth_ask',
  'ask_know',
  'know_sound',
  'sound_silli',
  'silli_ask',
  'ask_get',
  'get_glass',
  'glass_water',
  'water_say',
  'say_minut',
  'minut_im',
  'im_almost',
  'almost_get',
  'get_say',
  'say_joke',
  'joke_get',
  'get_water',
  'water_ask',
  'ask_wash',
  'wash_dish',
  'dish_say',
  'say_say',
  'say_love',
  'love_say',
  'say_ask',
  'ask_take',
  'take_cloth',
  'cloth_say',
  'say_everyth',
  'everyth_joke',
  'joke_smin',
  'smin_addict',
  'addict_ive',
  'ive_alreadi',
  'alreadi_made',
  'made_clear',
  'clear_sever',
  'sever_time',
  'time_like',
  'like_even',
  'even_love',
  'love_person',
  'person_say',
  'say_special',
  'special_thing',
  'thing_seriou',
  'seriou_need',
  'need_answer',
  'answer_serious',
  'serious_say',
  'say_everyth',
  'everyth_jokingli',
  'jokingli_cant',
  'cant_tell',
  'tell_say',
  'say_real',
  'real_alreadi',
  'alreadi_happen',
  'happen_keep',
  'keep_say',
  'say_bore',
  'bore_like',
  'like_stop',
  'stop_goe',
  'goe_back',
  'back_week',
  'week_brief',
  'brief_discuss',
  'discuss_play',
  'play_prank',
  'prank_front',
  'front_friend',
  'friend_ask',
  'ask_love',
  'love_get',
  'get_medicin',
  'medicin_kid',
  'kid_stop',
  'stop_month',
  'month_yesterday',
  'yesterday_welcom',
  'welcom_parent',
  'parent_in-law',
  'in-law_best',
  'best_friend',
  'friend_hous',
  'hous_everyon',
  'everyon_knew',
  'knew_go',
  'go_propos',
  'propos_call',
  'call_alway',
  'alway_plan',
  'plan_propos',
  'propos_love',
  'love_one',
  'one_attend',
  'attend_particip',
  'particip_special',
  'special_day',
  'day_ask',
  'ask_marri',
  'marri_said',
  'said_quick',
  'quick_grumpypanicupset',
  'grumpypanicupset_everyon',
  'everyon_look',
  'look_shock',
  'shock_laugh',
  'laugh_say',
  'say_joke',
  'joke_final',
  'final_say',
  'say_ye',
  'ye_embarrass',
  'embarrass_and…disappoint',
  'and…disappoint_put',
  'put_ring',
  'ring_box',
  'box_back',
  'back_said',
  'said_id',
  'id_take',
  'take_cool',
  'cool_even',
  'even_let',
  'let_say',
  'say_anyth',
  'anyth_kept',
  'kept_text',
  'text_answer',
  'answer_call',
  'call_say',
  'say_joke',
  'joke_knew',
  'knew_alway',
  'alway_said',
  'said_left',
  'left_difficult',
  'difficult_situat',
  'situat_hous',
  'hous_clear',
  'clear_given',
  'given_propos',
  'propos_front',
  'front_parent',
  'parent_in-law',
  'in-law_stress',
  'stress_make',
  'make_situat',
  'situat_uncomfort',
  'uncomfort_silli',
  'silli_joke',
  'joke_well',
  'well_slept',
  'slept_hotel',
  'hotel_im',
  'im_still',
  'still_parent',
  'parent_support',
  'support_in-law',
  'in-law_call',
  'call_ah',
  'ah_give',
  'give_propos',
  'propos_disproportion',
  'disproportion_humili',
  'humili_daughter',
  'daughter_realli',
  'realli_think',
  'think_time',
  'time_joke',
  'joke_moment',
  'moment_clearli',
  'clearli_knew',
  'knew_like',
  'like_decid',
  'decid_anyway',
  'anyway_aita',
  'girlfriend_molli_last',
  'molli_last_month',
  'last_month_start',
  'month_start_joke',
  'start_joke_ive',
  'joke_ive_alreadi',
  'ive_alreadi_made',
  'alreadi_made_clear',
  'made_clear_like',
  'clear_like_consist',
  'like_consist_say',
  'consist_say_quickli',
  'say_quickli_anyth',
  'quickli_anyth_ask',
  'anyth_ask_know',
  'ask_know_sound',
  'know_sound_silli',
  'sound_silli_ask',
  'silli_ask_get',
  'ask_get_glass',
  'get_glass_water',
  'glass_water_say',
  'water_say_minut',
  'say_minut_im',
  'minut_im_almost',
  'im_almost_get',
  'almost_get_say',
  'get_say_joke',
  'say_joke_get',
  'joke_get_water',
  'get_water_ask',
  'water_ask_wash',
  'ask_wash_dish',
  'wash_dish_say',
  'dish_say_say',
  'say_say_love',
  'say_love_say',
  'love_say_ask',
  'say_ask_take',
  'ask_take_cloth',
  'take_cloth_say',
  'cloth_say_everyth',
  'say_everyth_joke',
  'everyth_joke_smin',
  'joke_smin_addict',
  'smin_addict_ive',
  'addict_ive_alreadi',
  'ive_alreadi_made',
  'alreadi_made_clear',
  'made_clear_sever',
  'clear_sever_time',
  'sever_time_like',
  'time_like_even',
  'like_even_love',
  'even_love_person',
  'love_person_say',
  'person_say_special',
  'say_special_thing',
  'special_thing_seriou',
  'thing_seriou_need',
  'seriou_need_answer',
  'need_answer_serious',
  'answer_serious_say',
  'serious_say_everyth',
  'say_everyth_jokingli',
  'everyth_jokingli_cant',
  'jokingli_cant_tell',
  'cant_tell_say',
  'tell_say_real',
  'say_real_alreadi',
  'real_alreadi_happen',
  'alreadi_happen_keep',
  'happen_keep_say',
  'keep_say_bore',
  'say_bore_like',
  'bore_like_stop',
  'like_stop_goe',
  'stop_goe_back',
  'goe_back_week',
  'back_week_brief',
  'week_brief_discuss',
  'brief_discuss_play',
  'discuss_play_prank',
  'play_prank_front',
  'prank_front_friend',
  'front_friend_ask',
  'friend_ask_love',
  'ask_love_get',
  'love_get_medicin',
  'get_medicin_kid',
  'medicin_kid_stop',
  'kid_stop_month',
  'stop_month_yesterday',
  'month_yesterday_welcom',
  'yesterday_welcom_parent',
  'welcom_parent_in-law',
  'parent_in-law_best',
  'in-law_best_friend',
  'best_friend_hous',
  'friend_hous_everyon',
  'hous_everyon_knew',
  'everyon_knew_go',
  'knew_go_propos',
  'go_propos_call',
  'propos_call_alway',
  'call_alway_plan',
  'alway_plan_propos',
  'plan_propos_love',
  'propos_love_one',
  'love_one_attend',
  'one_attend_particip',
  'attend_particip_special',
  'particip_special_day',
  'special_day_ask',
  'day_ask_marri',
  'ask_marri_said',
  'marri_said_quick',
  'said_quick_grumpypanicupset',
  'quick_grumpypanicupset_everyon',
  'grumpypanicupset_everyon_look',
  'everyon_look_shock',
  'look_shock_laugh',
  'shock_laugh_say',
  'laugh_say_joke',
  'say_joke_final',
  'joke_final_say',
  'final_say_ye',
  'say_ye_embarrass',
  'ye_embarrass_and…disappoint',
  'embarrass_and…disappoint_put',
  'and…disappoint_put_ring',
  'put_ring_box',
  'ring_box_back',
  'box_back_said',
  'back_said_id',
  'said_id_take',
  'id_take_cool',
  'take_cool_even',
  'cool_even_let',
  'even_let_say',
  'let_say_anyth',
  'say_anyth_kept',
  'anyth_kept_text',
  'kept_text_answer',
  'text_answer_call',
  'answer_call_say',
  'call_say_joke',
  'say_joke_knew',
  'joke_knew_alway',
  'knew_alway_said',
  'alway_said_left',
  'said_left_difficult',
  'left_difficult_situat',
  'difficult_situat_hous',
  'situat_hous_clear',
  'hous_clear_given',
  'clear_given_propos',
  'given_propos_front',
  'propos_front_parent',
  'front_parent_in-law',
  'parent_in-law_stress',
  'in-law_stress_make',
  'stress_make_situat',
  'make_situat_uncomfort',
  'situat_uncomfort_silli',
  'uncomfort_silli_joke',
  'silli_joke_well',
  'joke_well_slept',
  'well_slept_hotel',
  'slept_hotel_im',
  'hotel_im_still',
  'im_still_parent',
  'still_parent_support',
  'parent_support_in-law',
  'support_in-law_call',
  'in-law_call_ah',
  'call_ah_give',
  'ah_give_propos',
  'give_propos_disproportion',
  'propos_disproportion_humili',
  'disproportion_humili_daughter',
  'humili_daughter_realli',
  'daughter_realli_think',
  'realli_think_time',
  'think_time_joke',
  'time_joke_moment',
  'joke_moment_clearli',
  'moment_clearli_knew',
  'clearli_knew_like',
  'knew_like_decid',
  'like_decid_anyway',
  'decid_anyway_aita'],
 ['mother-in-law',
  'call',
  'everi',
  'night',
  'ask',
  'dinner',
  'brag',
  'cook',
  'make',
  'look',
  'bad',
  'especi',
  'get',
  'takeout',
  'use',
  'care',
  'anymor',
  'husband',
  'would',
  'ask',
  'make',
  'dinner',
  'go',
  'eat',
  'dinner',
  'mom',
  'make',
  'home',
  'minut',
  'away',
  'use',
  'favorit',
  'meal',
  'excus',
  'yesterday',
  'want',
  'surpris',
  'cook',
  'one',
  'favorit',
  'meal',
  'although',
  'busi',
  'took',
  'time',
  'work',
  'cook',
  'even',
  'went',
  'groceri',
  'shop',
  'get',
  'need',
  'later',
  'set',
  'tabl',
  'mom',
  'call',
  'told',
  'answer',
  'like',
  'usualsh',
  'ask',
  'act',
  'surpris',
  'cook',
  'meal',
  'went',
  'tell',
  'cook',
  'meal',
  'told',
  'come',
  'said',
  'ok',
  'shock',
  'said',
  'serious',
  'start',
  'drese',
  'get',
  'readi',
  'leav',
  'told',
  'offens',
  'meal',
  'mom',
  'cook',
  'even',
  'favorit',
  'one',
  'cook',
  'grabe',
  'key',
  'left',
  'felt',
  'aw',
  'took',
  'plate',
  'threw',
  'ate',
  'portion',
  'put',
  'plate',
  'dishwash',
  'got',
  'home',
  'look',
  'angri',
  'say',
  'mom',
  'lie',
  'cook',
  'favorit',
  'meal',
  'use',
  'excus',
  'forc',
  'eat',
  'dinner',
  'shock',
  'sat',
  'tell',
  'go',
  'ahead',
  'reheat',
  'dinner',
  'told',
  'dinner',
  'abandon',
  'threw',
  'said',
  'told',
  'disrespect',
  'time',
  'effort',
  'chose',
  'go',
  'eat',
  'woth',
  'mom',
  'instead',
  'began',
  'yell',
  'ask',
  'realli',
  'call',
  'petti',
  'horribl',
  'went',
  'upstair',
  'say',
  'time',
  'wors',
  'mom',
  'defin',
  'feel',
  'like',
  'let',
  'anger',
  'frustrat',
  'get',
  'best',
  'realli',
  'felt',
  'unbear',
  'live',
  'like',
  'long',
  'way',
  '[',
  'im',
  ']',
  'eta',
  'make',
  'one',
  'thing',
  'clear',
  'fact',
  'husband',
  'come',
  'food',
  'live',
  'mom',
  'attend',
  'commun',
  'colleg',
  'love',
  'still',
  'love',
  'food',
  'use',
  'gave',
  'recip',
  'make',
  'tri',
  'keep',
  'switch',
  'home',
  'eat',
  'feel',
  'like',
  '*',
  '*',
  'updat',
  '*',
  '*',
  '👋',
  'post',
  'situat',
  'almost',
  'hr',
  'ago',
  'realli',
  'read',
  'everi',
  'singl',
  'comment',
  '-',
  'wow',
  'mani',
  'saw',
  'piec',
  'advic',
  'encoureg',
  'im',
  'thank',
  '💝',
  'want',
  'let',
  'guy',
  'know',
  'someth',
  'sinc',
  'throwaway',
  'account',
  'abandon',
  'soon',
  'wan',
  'na',
  'let',
  'know',
  'sit',
  'husband',
  'soon',
  'break',
  'silenc',
  'im',
  'give',
  'space',
  'said',
  'want',
  'im',
  'go',
  'show',
  'post',
  'hope',
  'hed',
  'see',
  'none',
  'fault',
  'also',
  'push',
  'coupl',
  'counsel',
  'although',
  'alway',
  'well',
  'see',
  'thing',
  'goim',
  'gon',
  'na',
  'lie',
  'still',
  'feel',
  'upset',
  'like',
  'effort',
  'appreci',
  'mom',
  'defin',
  'onto',
  'someth',
  'littl',
  'upset',
  'stunt',
  'realiz',
  'import',
  'boundari',
  '-',
  'also',
  'realiz',
  'enforcingbcan',
  'difficult',
  'im',
  'hope',
  'pray',
  'tackl',
  'issu',
  'marriag',
  'suffer',
  'still',
  'somehow',
  'unabl',
  'part',
  'im',
  'longer',
  'go',
  'similar',
  'stuff',
  'take',
  'know',
  'yeah',
  'honestli',
  'realiz',
  'post',
  'go',
  'gain',
  'much',
  'attent',
  'might',
  'add',
  'origin',
  'account',
  'case',
  'yall',
  'want',
  'talk',
  'got',
  'plenti',
  'time',
  'space',
  'internet',
  'besti',
  'inbox',
  'blow',
  'lol',
  'mayb',
  'post',
  'updat',
  'could',
  'thank',
  'much',
  '💝',
  'mother-in-law_call',
  'call_everi',
  'everi_night',
  'night_ask',
  'ask_dinner',
  'dinner_brag',
  'brag_cook',
  'cook_make',
  'make_look',
  'look_bad',
  'bad_especi',
  'especi_get',
  'get_takeout',
  'takeout_use',
  'use_care',
  'care_anymor',
  'anymor_husband',
  'husband_would',
  'would_ask',
  'ask_make',
  'make_dinner',
  'dinner_go',
  'go_eat',
  'eat_dinner',
  'dinner_mom',
  'mom_make',
  'make_home',
  'home_minut',
  'minut_away',
  'away_use',
  'use_favorit',
  'favorit_meal',
  'meal_excus',
  'excus_yesterday',
  'yesterday_want',
  'want_surpris',
  'surpris_cook',
  'cook_one',
  'one_favorit',
  'favorit_meal',
  'meal_although',
  'although_busi',
  'busi_took',
  'took_time',
  'time_work',
  'work_cook',
  'cook_even',
  'even_went',
  'went_groceri',
  'groceri_shop',
  'shop_get',
  'get_need',
  'need_later',
  'later_set',
  'set_tabl',
  'tabl_mom',
  'mom_call',
  'call_told',
  'told_answer',
  'answer_like',
  'like_usualsh',
  'usualsh_ask',
  'ask_act',
  'act_surpris',
  'surpris_cook',
  'cook_meal',
  'meal_went',
  'went_tell',
  'tell_cook',
  'cook_meal',
  'meal_told',
  'told_come',
  'come_said',
  'said_ok',
  'ok_shock',
  'shock_said',
  'said_serious',
  'serious_start',
  'start_drese',
  'drese_get',
  'get_readi',
  'readi_leav',
  'leav_told',
  'told_offens',
  'offens_meal',
  'meal_mom',
  'mom_cook',
  'cook_even',
  'even_favorit',
  'favorit_one',
  'one_cook',
  'cook_grabe',
  'grabe_key',
  'key_left',
  'left_felt',
  'felt_aw',
  'aw_took',
  'took_plate',
  'plate_threw',
  'threw_ate',
  'ate_portion',
  'portion_put',
  'put_plate',
  'plate_dishwash',
  'dishwash_got',
  'got_home',
  'home_look',
  'look_angri',
  'angri_say',
  'say_mom',
  'mom_lie',
  'lie_cook',
  'cook_favorit',
  'favorit_meal',
  'meal_use',
  'use_excus',
  'excus_forc',
  'forc_eat',
  'eat_dinner',
  'dinner_shock',
  'shock_sat',
  'sat_tell',
  'tell_go',
  'go_ahead',
  'ahead_reheat',
  'reheat_dinner',
  'dinner_told',
  'told_dinner',
  'dinner_abandon',
  'abandon_threw',
  'threw_said',
  'said_told',
  'told_disrespect',
  'disrespect_time',
  'time_effort',
  'effort_chose',
  'chose_go',
  'go_eat',
  'eat_woth',
  'woth_mom',
  'mom_instead',
  'instead_began',
  'began_yell',
  'yell_ask',
  'ask_realli',
  'realli_call',
  'call_petti',
  'petti_horribl',
  'horribl_went',
  'went_upstair',
  'upstair_say',
  'say_time',
  'time_wors',
  'wors_mom',
  'mom_defin',
  'defin_feel',
  'feel_like',
  'like_let',
  'let_anger',
  'anger_frustrat',
  'frustrat_get',
  'get_best',
  'best_realli',
  'realli_felt',
  'felt_unbear',
  'unbear_live',
  'live_like',
  'like_long',
  'long_way',
  'way_[',
  '[_im',
  'im_]',
  ']_eta',
  'eta_make',
  'make_one',
  'one_thing',
  'thing_clear',
  'clear_fact',
  'fact_husband',
  'husband_come',
  'come_food',
  'food_live',
  'live_mom',
  'mom_attend',
  'attend_commun',
  'commun_colleg',
  'colleg_love',
  'love_still',
  'still_love',
  'love_food',
  'food_use',
  'use_gave',
  'gave_recip',
  'recip_make',
  'make_tri',
  'tri_keep',
  'keep_switch',
  'switch_home',
  'home_eat',
  'eat_feel',
  'feel_like',
  'like_*',
  '*_*',
  '*_updat',
  'updat_*',
  '*_*',
  '*_👋',
  '👋_post',
  'post_situat',
  'situat_almost',
  'almost_hr',
  'hr_ago',
  'ago_realli',
  'realli_read',
  'read_everi',
  'everi_singl',
  'singl_comment',
  'comment_-',
  '-_wow',
  'wow_mani',
  'mani_saw',
  'saw_piec',
  'piec_advic',
  'advic_encoureg',
  'encoureg_im',
  'im_thank',
  'thank_💝',
  '💝_want',
  'want_let',
  'let_guy',
  'guy_know',
  'know_someth',
  'someth_sinc',
  'sinc_throwaway',
  'throwaway_account',
  'account_abandon',
  'abandon_soon',
  'soon_wan',
  'wan_na',
  'na_let',
  'let_know',
  'know_sit',
  'sit_husband',
  'husband_soon',
  'soon_break',
  'break_silenc',
  'silenc_im',
  'im_give',
  'give_space',
  'space_said',
  'said_want',
  'want_im',
  'im_go',
  'go_show',
  'show_post',
  'post_hope',
  'hope_hed',
  'hed_see',
  'see_none',
  'none_fault',
  'fault_also',
  'also_push',
  'push_coupl',
  'coupl_counsel',
  'counsel_although',
  'although_alway',
  'alway_well',
  'well_see',
  'see_thing',
  'thing_goim',
  'goim_gon',
  'gon_na',
  'na_lie',
  'lie_still',
  'still_feel',
  'feel_upset',
  'upset_like',
  'like_effort',
  'effort_appreci',
  'appreci_mom',
  'mom_defin',
  'defin_onto',
  'onto_someth',
  'someth_littl',
  'littl_upset',
  'upset_stunt',
  'stunt_realiz',
  'realiz_import',
  'import_boundari',
  'boundari_-',
  '-_also',
  'also_realiz',
  'realiz_enforcingbcan',
  'enforcingbcan_difficult',
  'difficult_im',
  'im_hope',
  'hope_pray',
  'pray_tackl',
  'tackl_issu',
  'issu_marriag',
  'marriag_suffer',
  'suffer_still',
  'still_somehow',
  'somehow_unabl',
  'unabl_part',
  'part_im',
  'im_longer',
  'longer_go',
  'go_similar',
  'similar_stuff',
  'stuff_take',
  'take_know',
  'know_yeah',
  'yeah_honestli',
  'honestli_realiz',
  'realiz_post',
  'post_go',
  'go_gain',
  'gain_much',
  'much_attent',
  'attent_might',
  'might_add',
  'add_origin',
  'origin_account',
  'account_case',
  'case_yall',
  'yall_want',
  'want_talk',
  'talk_got',
  'got_plenti',
  'plenti_time',
  'time_space',
  'space_internet',
  'internet_besti',
  'besti_inbox',
  'inbox_blow',
  'blow_lol',
  'lol_mayb',
  'mayb_post',
  'post_updat',
  'updat_could',
  'could_thank',
  'thank_much',
  'much_💝',
  'mother-in-law_call_everi',
  'call_everi_night',
  'everi_night_ask',
  'night_ask_dinner',
  'ask_dinner_brag',
  'dinner_brag_cook',
  'brag_cook_make',
  'cook_make_look',
  'make_look_bad',
  'look_bad_especi',
  'bad_especi_get',
  'especi_get_takeout',
  'get_takeout_use',
  'takeout_use_care',
  'use_care_anymor',
  'care_anymor_husband',
  'anymor_husband_would',
  'husband_would_ask',
  'would_ask_make',
  'ask_make_dinner',
  'make_dinner_go',
  'dinner_go_eat',
  'go_eat_dinner',
  'eat_dinner_mom',
  'dinner_mom_make',
  'mom_make_home',
  'make_home_minut',
  'home_minut_away',
  'minut_away_use',
  'away_use_favorit',
  'use_favorit_meal',
  'favorit_meal_excus',
  'meal_excus_yesterday',
  'excus_yesterday_want',
  'yesterday_want_surpris',
  'want_surpris_cook',
  'surpris_cook_one',
  'cook_one_favorit',
  'one_favorit_meal',
  'favorit_meal_although',
  'meal_although_busi',
  'although_busi_took',
  'busi_took_time',
  'took_time_work',
  'time_work_cook',
  'work_cook_even',
  'cook_even_went',
  'even_went_groceri',
  'went_groceri_shop',
  'groceri_shop_get',
  'shop_get_need',
  'get_need_later',
  'need_later_set',
  'later_set_tabl',
  'set_tabl_mom',
  'tabl_mom_call',
  'mom_call_told',
  'call_told_answer',
  'told_answer_like',
  'answer_like_usualsh',
  'like_usualsh_ask',
  'usualsh_ask_act',
  'ask_act_surpris',
  'act_surpris_cook',
  'surpris_cook_meal',
  'cook_meal_went',
  'meal_went_tell',
  'went_tell_cook',
  'tell_cook_meal',
  'cook_meal_told',
  'meal_told_come',
  'told_come_said',
  'come_said_ok',
  'said_ok_shock',
  'ok_shock_said',
  'shock_said_serious',
  'said_serious_start',
  'serious_start_drese',
  'start_drese_get',
  'drese_get_readi',
  'get_readi_leav',
  'readi_leav_told',
  'leav_told_offens',
  'told_offens_meal',
  'offens_meal_mom',
  'meal_mom_cook',
  'mom_cook_even',
  'cook_even_favorit',
  'even_favorit_one',
  'favorit_one_cook',
  'one_cook_grabe',
  'cook_grabe_key',
  'grabe_key_left',
  'key_left_felt',
  'left_felt_aw',
  'felt_aw_took',
  'aw_took_plate',
  'took_plate_threw',
  'plate_threw_ate',
  'threw_ate_portion',
  'ate_portion_put',
  'portion_put_plate',
  'put_plate_dishwash',
  'plate_dishwash_got',
  'dishwash_got_home',
  'got_home_look',
  'home_look_angri',
  'look_angri_say',
  'angri_say_mom',
  'say_mom_lie',
  'mom_lie_cook',
  'lie_cook_favorit',
  'cook_favorit_meal',
  'favorit_meal_use',
  'meal_use_excus',
  'use_excus_forc',
  'excus_forc_eat',
  'forc_eat_dinner',
  'eat_dinner_shock',
  'dinner_shock_sat',
  'shock_sat_tell',
  'sat_tell_go',
  'tell_go_ahead',
  'go_ahead_reheat',
  'ahead_reheat_dinner',
  'reheat_dinner_told',
  'dinner_told_dinner',
  'told_dinner_abandon',
  'dinner_abandon_threw',
  'abandon_threw_said',
  'threw_said_told',
  'said_told_disrespect',
  'told_disrespect_time',
  'disrespect_time_effort',
  'time_effort_chose',
  'effort_chose_go',
  'chose_go_eat',
  'go_eat_woth',
  'eat_woth_mom',
  'woth_mom_instead',
  'mom_instead_began',
  'instead_began_yell',
  'began_yell_ask',
  'yell_ask_realli',
  'ask_realli_call',
  'realli_call_petti',
  'call_petti_horribl',
  'petti_horribl_went',
  'horribl_went_upstair',
  'went_upstair_say',
  'upstair_say_time',
  'say_time_wors',
  'time_wors_mom',
  'wors_mom_defin',
  'mom_defin_feel',
  'defin_feel_like',
  'feel_like_let',
  'like_let_anger',
  'let_anger_frustrat',
  'anger_frustrat_get',
  'frustrat_get_best',
  'get_best_realli',
  'best_realli_felt',
  'realli_felt_unbear',
  'felt_unbear_live',
  'unbear_live_like',
  'live_like_long',
  'like_long_way',
  'long_way_[',
  'way_[_im',
  '[_im_]',
  'im_]_eta',
  ']_eta_make',
  'eta_make_one',
  'make_one_thing',
  'one_thing_clear',
  'thing_clear_fact',
  'clear_fact_husband',
  'fact_husband_come',
  'husband_come_food',
  'come_food_live',
  'food_live_mom',
  'live_mom_attend',
  'mom_attend_commun',
  'attend_commun_colleg',
  'commun_colleg_love',
  'colleg_love_still',
  'love_still_love',
  'still_love_food',
  'love_food_use',
  'food_use_gave',
  'use_gave_recip',
  'gave_recip_make',
  'recip_make_tri',
  'make_tri_keep',
  'tri_keep_switch',
  'keep_switch_home',
  'switch_home_eat',
  'home_eat_feel',
  'eat_feel_like',
  'feel_like_*',
  'like_*_*',
  '*_*_updat',
  '*_updat_*',
  'updat_*_*',
  '*_*_👋',
  '*_👋_post',
  '👋_post_situat',
  'post_situat_almost',
  'situat_almost_hr',
  'almost_hr_ago',
  'hr_ago_realli',
  'ago_realli_read',
  'realli_read_everi',
  'read_everi_singl',
  'everi_singl_comment',
  'singl_comment_-',
  'comment_-_wow',
  '-_wow_mani',
  'wow_mani_saw',
  'mani_saw_piec',
  'saw_piec_advic',
  'piec_advic_encoureg',
  'advic_encoureg_im',
  'encoureg_im_thank',
  'im_thank_💝',
  'thank_💝_want',
  '💝_want_let',
  'want_let_guy',
  'let_guy_know',
  'guy_know_someth',
  'know_someth_sinc',
  'someth_sinc_throwaway',
  'sinc_throwaway_account',
  'throwaway_account_abandon',
  'account_abandon_soon',
  'abandon_soon_wan',
  'soon_wan_na',
  'wan_na_let',
  'na_let_know',
  'let_know_sit',
  'know_sit_husband',
  'sit_husband_soon',
  'husband_soon_break',
  'soon_break_silenc',
  'break_silenc_im',
  'silenc_im_give',
  'im_give_space',
  'give_space_said',
  'space_said_want',
  'said_want_im',
  'want_im_go',
  'im_go_show',
  'go_show_post',
  'show_post_hope',
  'post_hope_hed',
  'hope_hed_see',
  'hed_see_none',
  'see_none_fault',
  'none_fault_also',
  'fault_also_push',
  'also_push_coupl',
  'push_coupl_counsel',
  'coupl_counsel_although',
  'counsel_although_alway',
  'although_alway_well',
  'alway_well_see',
  'well_see_thing',
  'see_thing_goim',
  'thing_goim_gon',
  'goim_gon_na',
  'gon_na_lie',
  'na_lie_still',
  'lie_still_feel',
  'still_feel_upset',
  'feel_upset_like',
  'upset_like_effort',
  'like_effort_appreci',
  'effort_appreci_mom',
  'appreci_mom_defin',
  'mom_defin_onto',
  'defin_onto_someth',
  'onto_someth_littl',
  'someth_littl_upset',
  'littl_upset_stunt',
  'upset_stunt_realiz',
  'stunt_realiz_import',
  'realiz_import_boundari',
  'import_boundari_-',
  'boundari_-_also',
  '-_also_realiz',
  'also_realiz_enforcingbcan',
  'realiz_enforcingbcan_difficult',
  'enforcingbcan_difficult_im',
  'difficult_im_hope',
  'im_hope_pray',
  'hope_pray_tackl',
  'pray_tackl_issu',
  'tackl_issu_marriag',
  'issu_marriag_suffer',
  'marriag_suffer_still',
  'suffer_still_somehow',
  'still_somehow_unabl',
  'somehow_unabl_part',
  'unabl_part_im',
  'part_im_longer',
  'im_longer_go',
  'longer_go_similar',
  'go_similar_stuff',
  'similar_stuff_take',
  'stuff_take_know',
  ...],
 ['daughter',
  'olivia',
  'former',
  'relationship',
  'current',
  'im',
  'marri',
  'wife',
  'adaught',
  'britney',
  'britney',
  'opposit',
  'olivia',
  'exampl',
  'britney',
  'social',
  'kid',
  'olivia',
  'introvert',
  'list',
  'long',
  'theyr',
  'complet',
  'oposit',
  'olivia',
  'th',
  'birthday',
  'day',
  'ago',
  'love',
  'chocol',
  'decid',
  'flavor',
  'go',
  'go',
  'contact',
  'bakeri',
  'howev',
  'wife',
  'object',
  'sinc',
  'britney',
  'absolut',
  'hate',
  'chocol',
  'suggest',
  'go',
  'vanilla',
  'said',
  'way',
  'one',
  'olivia',
  'hate',
  'vanilla',
  'also',
  'birthday',
  'get',
  'cake',
  'favorit',
  'flavor',
  'wife',
  'got',
  'upset',
  'took',
  'regard',
  'britney',
  'choos',
  'anoth',
  'netur',
  'flavor',
  'instead',
  'shut',
  'said',
  'discuss',
  'id',
  'alreadi',
  'decid',
  'go',
  'olivia',
  'want',
  'day',
  'birthday',
  'suppos',
  'go',
  'get',
  'cake',
  'surpris',
  'see',
  'wife',
  'come',
  'home',
  'pick',
  'cake',
  'bakeri',
  'look',
  'discov',
  'chocol',
  'cake',
  'vanilla',
  'cake',
  'small',
  'piec',
  'chocol',
  'top',
  'got',
  'piss',
  'think',
  'got',
  'order',
  'wrong',
  'contact',
  'wife',
  'said',
  'mistak',
  'call',
  'bakeri',
  'day',
  'made',
  'slight',
  'chang',
  'cake',
  'pleas',
  'girl',
  'stun',
  'lost',
  'ask',
  'hell',
  'got',
  'defens',
  'say',
  'birthday',
  'excus',
  'show',
  'favorit',
  'daughter',
  'watch',
  'observ',
  'im',
  'treat',
  'girl',
  'told',
  'sinc',
  'one',
  'pay',
  'call',
  'bakeri',
  'explain',
  'happen',
  'cake',
  'return',
  'replac',
  'chocol',
  'cake',
  'although',
  'one',
  'smaller',
  'fine',
  'wife',
  'declin',
  'take',
  'part',
  'celebr',
  'later',
  'got',
  'huge',
  'argument',
  'call',
  'control',
  'selfish',
  'retur',
  'cake',
  'instead',
  'use',
  'opportun',
  'teach',
  'olivia',
  'compromis',
  'everyon',
  'happi',
  'im',
  'teach',
  'selfish',
  'said',
  'daughter',
  'get',
  'act',
  'selfish',
  'birthday',
  'wife',
  'teach',
  'daughter',
  'entitl',
  'word',
  'word',
  'led',
  'bigger',
  'argument',
  'talk',
  'aita',
  'return',
  'cake',
  'take',
  'wife',
  'input',
  'consider',
  'daughter_olivia',
  'olivia_former',
  'former_relationship',
  'relationship_current',
  'current_im',
  'im_marri',
  'marri_wife',
  'wife_adaught',
  'adaught_britney',
  'britney_britney',
  'britney_opposit',
  'opposit_olivia',
  'olivia_exampl',
  'exampl_britney',
  'britney_social',
  'social_kid',
  'kid_olivia',
  'olivia_introvert',
  'introvert_list',
  'list_long',
  'long_theyr',
  'theyr_complet',
  'complet_oposit',
  'oposit_olivia',
  'olivia_th',
  'th_birthday',
  'birthday_day',
  'day_ago',
  'ago_love',
  'love_chocol',
  'chocol_decid',
  'decid_flavor',
  'flavor_go',
  'go_go',
  'go_contact',
  'contact_bakeri',
  'bakeri_howev',
  'howev_wife',
  'wife_object',
  'object_sinc',
  'sinc_britney',
  'britney_absolut',
  'absolut_hate',
  'hate_chocol',
  'chocol_suggest',
  'suggest_go',
  'go_vanilla',
  'vanilla_said',
  'said_way',
  'way_one',
  'one_olivia',
  'olivia_hate',
  'hate_vanilla',
  'vanilla_also',
  'also_birthday',
  'birthday_get',
  'get_cake',
  'cake_favorit',
  'favorit_flavor',
  'flavor_wife',
  'wife_got',
  'got_upset',
  'upset_took',
  'took_regard',
  'regard_britney',
  'britney_choos',
  'choos_anoth',
  'anoth_netur',
  'netur_flavor',
  'flavor_instead',
  'instead_shut',
  'shut_said',
  'said_discuss',
  'discuss_id',
  'id_alreadi',
  'alreadi_decid',
  'decid_go',
  'go_olivia',
  'olivia_want',
  'want_day',
  'day_birthday',
  'birthday_suppos',
  'suppos_go',
  'go_get',
  'get_cake',
  'cake_surpris',
  'surpris_see',
  'see_wife',
  'wife_come',
  'come_home',
  'home_pick',
  'pick_cake',
  'cake_bakeri',
  'bakeri_look',
  'look_discov',
  'discov_chocol',
  'chocol_cake',
  'cake_vanilla',
  'vanilla_cake',
  'cake_small',
  'small_piec',
  'piec_chocol',
  'chocol_top',
  'top_got',
  'got_piss',
  'piss_think',
  'think_got',
  'got_order',
  'order_wrong',
  'wrong_contact',
  'contact_wife',
  'wife_said',
  'said_mistak',
  'mistak_call',
  'call_bakeri',
  'bakeri_day',
  'day_made',
  'made_slight',
  'slight_chang',
  'chang_cake',
  'cake_pleas',
  'pleas_girl',
  'girl_stun',
  'stun_lost',
  'lost_ask',
  'ask_hell',
  'hell_got',
  'got_defens',
  'defens_say',
  'say_birthday',
  'birthday_excus',
  'excus_show',
  'show_favorit',
  'favorit_daughter',
  'daughter_watch',
  'watch_observ',
  'observ_im',
  'im_treat',
  'treat_girl',
  'girl_told',
  'told_sinc',
  'sinc_one',
  'one_pay',
  'pay_call',
  'call_bakeri',
  'bakeri_explain',
  'explain_happen',
  'happen_cake',
  'cake_return',
  'return_replac',
  'replac_chocol',
  'chocol_cake',
  'cake_although',
  'although_one',
  'one_smaller',
  'smaller_fine',
  'fine_wife',
  'wife_declin',
  'declin_take',
  'take_part',
  'part_celebr',
  'celebr_later',
  'later_got',
  'got_huge',
  'huge_argument',
  'argument_call',
  'call_control',
  'control_selfish',
  'selfish_retur',
  'retur_cake',
  'cake_instead',
  'instead_use',
  'use_opportun',
  'opportun_teach',
  'teach_olivia',
  'olivia_compromis',
  'compromis_everyon',
  'everyon_happi',
  'happi_im',
  'im_teach',
  'teach_selfish',
  'selfish_said',
  'said_daughter',
  'daughter_get',
  'get_act',
  'act_selfish',
  'selfish_birthday',
  'birthday_wife',
  'wife_teach',
  'teach_daughter',
  'daughter_entitl',
  'entitl_word',
  'word_word',
  'word_led',
  'led_bigger',
  'bigger_argument',
  'argument_talk',
  'talk_aita',
  'aita_return',
  'return_cake',
  'cake_take',
  'take_wife',
  'wife_input',
  'input_consider',
  'daughter_olivia_former',
  'olivia_former_relationship',
  'former_relationship_current',
  'relationship_current_im',
  'current_im_marri',
  'im_marri_wife',
  'marri_wife_adaught',
  'wife_adaught_britney',
  'adaught_britney_britney',
  'britney_britney_opposit',
  'britney_opposit_olivia',
  'opposit_olivia_exampl',
  'olivia_exampl_britney',
  'exampl_britney_social',
  'britney_social_kid',
  'social_kid_olivia',
  'kid_olivia_introvert',
  'olivia_introvert_list',
  'introvert_list_long',
  'list_long_theyr',
  'long_theyr_complet',
  'theyr_complet_oposit',
  'complet_oposit_olivia',
  'oposit_olivia_th',
  'olivia_th_birthday',
  'th_birthday_day',
  'birthday_day_ago',
  'day_ago_love',
  'ago_love_chocol',
  'love_chocol_decid',
  'chocol_decid_flavor',
  'decid_flavor_go',
  'flavor_go_go',
  'go_go_contact',
  'go_contact_bakeri',
  'contact_bakeri_howev',
  'bakeri_howev_wife',
  'howev_wife_object',
  'wife_object_sinc',
  'object_sinc_britney',
  'sinc_britney_absolut',
  'britney_absolut_hate',
  'absolut_hate_chocol',
  'hate_chocol_suggest',
  'chocol_suggest_go',
  'suggest_go_vanilla',
  'go_vanilla_said',
  'vanilla_said_way',
  'said_way_one',
  'way_one_olivia',
  'one_olivia_hate',
  'olivia_hate_vanilla',
  'hate_vanilla_also',
  'vanilla_also_birthday',
  'also_birthday_get',
  'birthday_get_cake',
  'get_cake_favorit',
  'cake_favorit_flavor',
  'favorit_flavor_wife',
  'flavor_wife_got',
  'wife_got_upset',
  'got_upset_took',
  'upset_took_regard',
  'took_regard_britney',
  'regard_britney_choos',
  'britney_choos_anoth',
  'choos_anoth_netur',
  'anoth_netur_flavor',
  'netur_flavor_instead',
  'flavor_instead_shut',
  'instead_shut_said',
  'shut_said_discuss',
  'said_discuss_id',
  'discuss_id_alreadi',
  'id_alreadi_decid',
  'alreadi_decid_go',
  'decid_go_olivia',
  'go_olivia_want',
  'olivia_want_day',
  'want_day_birthday',
  'day_birthday_suppos',
  'birthday_suppos_go',
  'suppos_go_get',
  'go_get_cake',
  'get_cake_surpris',
  'cake_surpris_see',
  'surpris_see_wife',
  'see_wife_come',
  'wife_come_home',
  'come_home_pick',
  'home_pick_cake',
  'pick_cake_bakeri',
  'cake_bakeri_look',
  'bakeri_look_discov',
  'look_discov_chocol',
  'discov_chocol_cake',
  'chocol_cake_vanilla',
  'cake_vanilla_cake',
  'vanilla_cake_small',
  'cake_small_piec',
  'small_piec_chocol',
  'piec_chocol_top',
  'chocol_top_got',
  'top_got_piss',
  'got_piss_think',
  'piss_think_got',
  'think_got_order',
  'got_order_wrong',
  'order_wrong_contact',
  'wrong_contact_wife',
  'contact_wife_said',
  'wife_said_mistak',
  'said_mistak_call',
  'mistak_call_bakeri',
  'call_bakeri_day',
  'bakeri_day_made',
  'day_made_slight',
  'made_slight_chang',
  'slight_chang_cake',
  'chang_cake_pleas',
  'cake_pleas_girl',
  'pleas_girl_stun',
  'girl_stun_lost',
  'stun_lost_ask',
  'lost_ask_hell',
  'ask_hell_got',
  'hell_got_defens',
  'got_defens_say',
  'defens_say_birthday',
  'say_birthday_excus',
  'birthday_excus_show',
  'excus_show_favorit',
  'show_favorit_daughter',
  'favorit_daughter_watch',
  'daughter_watch_observ',
  'watch_observ_im',
  'observ_im_treat',
  'im_treat_girl',
  'treat_girl_told',
  'girl_told_sinc',
  'told_sinc_one',
  'sinc_one_pay',
  'one_pay_call',
  'pay_call_bakeri',
  'call_bakeri_explain',
  'bakeri_explain_happen',
  'explain_happen_cake',
  'happen_cake_return',
  'cake_return_replac',
  'return_replac_chocol',
  'replac_chocol_cake',
  'chocol_cake_although',
  'cake_although_one',
  'although_one_smaller',
  'one_smaller_fine',
  'smaller_fine_wife',
  'fine_wife_declin',
  'wife_declin_take',
  'declin_take_part',
  'take_part_celebr',
  'part_celebr_later',
  'celebr_later_got',
  'later_got_huge',
  'got_huge_argument',
  'huge_argument_call',
  'argument_call_control',
  'call_control_selfish',
  'control_selfish_retur',
  'selfish_retur_cake',
  'retur_cake_instead',
  'cake_instead_use',
  'instead_use_opportun',
  'use_opportun_teach',
  'opportun_teach_olivia',
  'teach_olivia_compromis',
  'olivia_compromis_everyon',
  'compromis_everyon_happi',
  'everyon_happi_im',
  'happi_im_teach',
  'im_teach_selfish',
  'teach_selfish_said',
  'selfish_said_daughter',
  'said_daughter_get',
  'daughter_get_act',
  'get_act_selfish',
  'act_selfish_birthday',
  'selfish_birthday_wife',
  'birthday_wife_teach',
  'wife_teach_daughter',
  'teach_daughter_entitl',
  'daughter_entitl_word',
  'entitl_word_word',
  'word_word_led',
  'word_led_bigger',
  'led_bigger_argument',
  'bigger_argument_talk',
  'argument_talk_aita',
  'talk_aita_return',
  'aita_return_cake',
  'return_cake_take',
  'cake_take_wife',
  'take_wife_input',
  'wife_input_consider'],
 ['necessarili',
  'proudest',
  'moment',
  'tire',
  'outcast',
  'husband',
  'pete',
  'come',
  'famili',
  'women',
  'baker',
  'baker',
  'use',
  'sell',
  'hous',
  'state',
  'cottag',
  'law',
  'stop',
  'like',
  'hobbi',
  'sil',
  'kay',
  'one',
  'known',
  'cupcak',
  'cake',
  'pop',
  'first',
  'met',
  'everyon',
  'year',
  'ago',
  'first',
  'thing',
  'learn',
  'everyon',
  'talk',
  'everyth',
  'made',
  'even',
  'pete',
  'mention',
  'good',
  'stuff',
  'everyon',
  'would',
  'say',
  'kay',
  'sell',
  'theyr',
  'popular',
  'must',
  'better',
  'whenev',
  'bring',
  'treat',
  'often',
  'left',
  'untouch',
  'kay',
  'ye',
  'ive',
  'told',
  'ask',
  'bring',
  'someth',
  'everi',
  'get',
  'togeth',
  'never',
  'touch',
  'clear',
  'kay',
  'mainli',
  'baker',
  'wherea',
  'bake',
  'special',
  'profession',
  'decor',
  'cake',
  'kay',
  'say',
  'overli',
  'decor',
  'cake',
  'compens',
  'bad',
  'tast',
  'pete',
  'famili',
  'agre',
  'bbq',
  'monday',
  'memori',
  'day',
  'everyon',
  'made',
  'treat',
  'kay',
  'decid',
  'bring',
  'cake',
  'pop',
  'post',
  'instagram',
  'night',
  'know',
  'immatur',
  'made',
  'exact',
  'one',
  'flavor',
  'design',
  'got',
  'everyon',
  'ask',
  'treat',
  'said',
  'theyr',
  'car',
  'ill',
  'get',
  'minut',
  'wait',
  'everyon',
  'outsid',
  'brought',
  'mine',
  'put',
  'next',
  'kay',
  'eat',
  'notic',
  'famili',
  'eat',
  'cake',
  'pop',
  'kay',
  'notic',
  'first',
  'ask',
  'feel',
  'cake',
  'pop',
  'said',
  'ate',
  'best',
  'ever',
  'made',
  'ask',
  'differ',
  'mil',
  'even',
  'said',
  'look',
  'much',
  'better',
  'person',
  'pictur',
  'kay',
  'confus',
  'said',
  'still',
  'tabl',
  'said',
  'oh',
  'brought',
  'glad',
  'enjoy',
  'husband',
  'said',
  'one',
  'yet',
  'lie',
  'ate',
  'two',
  'everyon',
  'els',
  'said',
  'yeah',
  'okay',
  'kay',
  'say',
  'anyth',
  'rest',
  'night',
  'pete',
  'thought',
  'funni',
  'know',
  'reveal',
  'brother',
  'kay',
  'husband',
  'said',
  'yesterday',
  'mean',
  'im',
  'mad',
  'kay',
  'better',
  'baker',
  'pete',
  'said',
  'ridicul',
  'famili',
  'includ',
  'kay',
  'put',
  'bake',
  'even',
  'tri',
  'im',
  'kay',
  'aita',
  'eta',
  'two',
  'bring',
  'dessert',
  'one',
  'tend',
  'bake',
  'cake',
  'everyon',
  'els',
  'dessert',
  'get',
  'eaten',
  'degre',
  'except',
  'mine',
  'edit',
  'clear',
  'everyon',
  'includ',
  'kay',
  'often',
  'tri',
  'teach',
  'techniqu',
  'either',
  'alreadi',
  'knew',
  'complet',
  'wrong',
  'like',
  'innoc',
  'got',
  'caught',
  'line',
  'fire',
  'someth',
  'necessarili_proudest',
  'proudest_moment',
  'moment_tire',
  'tire_outcast',
  'outcast_husband',
  'husband_pete',
  'pete_come',
  'come_famili',
  'famili_women',
  'women_baker',
  'baker_baker',
  'baker_use',
  'use_sell',
  'sell_hous',
  'hous_state',
  'state_cottag',
  'cottag_law',
  'law_stop',
  'stop_like',
  'like_hobbi',
  'hobbi_sil',
  'sil_kay',
  'kay_one',
  'one_known',
  'known_cupcak',
  'cupcak_cake',
  'cake_pop',
  'pop_first',
  'first_met',
  'met_everyon',
  'everyon_year',
  'year_ago',
  'ago_first',
  'first_thing',
  'thing_learn',
  'learn_everyon',
  'everyon_talk',
  'talk_everyth',
  'everyth_made',
  'made_even',
  'even_pete',
  'pete_mention',
  'mention_good',
  'good_stuff',
  'stuff_everyon',
  'everyon_would',
  'would_say',
  'say_kay',
  'kay_sell',
  'sell_theyr',
  'theyr_popular',
  'popular_must',
  'must_better',
  'better_whenev',
  'whenev_bring',
  'bring_treat',
  'treat_often',
  'often_left',
  'left_untouch',
  'untouch_kay',
  'kay_ye',
  'ye_ive',
  'ive_told',
  'told_ask',
  'ask_bring',
  'bring_someth',
  'someth_everi',
  'everi_get',
  'get_togeth',
  'togeth_never',
  'never_touch',
  'touch_clear',
  'clear_kay',
  'kay_mainli',
  'mainli_baker',
  'baker_wherea',
  'wherea_bake',
  'bake_special',
  'special_profession',
  'profession_decor',
  'decor_cake',
  'cake_kay',
  'kay_say',
  'say_overli',
  'overli_decor',
  'decor_cake',
  'cake_compens',
  'compens_bad',
  'bad_tast',
  'tast_pete',
  'pete_famili',
  'famili_agre',
  'agre_bbq',
  'bbq_monday',
  'monday_memori',
  'memori_day',
  'day_everyon',
  'everyon_made',
  'made_treat',
  'treat_kay',
  'kay_decid',
  'decid_bring',
  'bring_cake',
  'cake_pop',
  'pop_post',
  'post_instagram',
  'instagram_night',
  'night_know',
  'know_immatur',
  'immatur_made',
  'made_exact',
  'exact_one',
  'one_flavor',
  'flavor_design',
  'design_got',
  'got_everyon',
  'everyon_ask',
  'ask_treat',
  'treat_said',
  'said_theyr',
  'theyr_car',
  'car_ill',
  'ill_get',
  'get_minut',
  'minut_wait',
  'wait_everyon',
  'everyon_outsid',
  'outsid_brought',
  'brought_mine',
  'mine_put',
  'put_next',
  'next_kay',
  'kay_eat',
  'eat_notic',
  'notic_famili',
  'famili_eat',
  'eat_cake',
  'cake_pop',
  'pop_kay',
  'kay_notic',
  'notic_first',
  'first_ask',
  'ask_feel',
  'feel_cake',
  'cake_pop',
  'pop_said',
  'said_ate',
  'ate_best',
  'best_ever',
  'ever_made',
  'made_ask',
  'ask_differ',
  'differ_mil',
  'mil_even',
  'even_said',
  'said_look',
  'look_much',
  'much_better',
  'better_person',
  'person_pictur',
  'pictur_kay',
  'kay_confus',
  'confus_said',
  'said_still',
  'still_tabl',
  'tabl_said',
  'said_oh',
  'oh_brought',
  'brought_glad',
  'glad_enjoy',
  'enjoy_husband',
  'husband_said',
  'said_one',
  'one_yet',
  'yet_lie',
  'lie_ate',
  'ate_two',
  'two_everyon',
  'everyon_els',
  'els_said',
  'said_yeah',
  'yeah_okay',
  'okay_kay',
  'kay_say',
  'say_anyth',
  'anyth_rest',
  'rest_night',
  'night_pete',
  'pete_thought',
  'thought_funni',
  'funni_know',
  'know_reveal',
  'reveal_brother',
  'brother_kay',
  'kay_husband',
  'husband_said',
  'said_yesterday',
  'yesterday_mean',
  'mean_im',
  'im_mad',
  'mad_kay',
  'kay_better',
  'better_baker',
  'baker_pete',
  'pete_said',
  'said_ridicul',
  'ridicul_famili',
  'famili_includ',
  'includ_kay',
  'kay_put',
  'put_bake',
  'bake_even',
  'even_tri',
  'tri_im',
  'im_kay',
  'kay_aita',
  'aita_eta',
  'eta_two',
  'two_bring',
  'bring_dessert',
  'dessert_one',
  'one_tend',
  'tend_bake',
  'bake_cake',
  'cake_everyon',
  'everyon_els',
  'els_dessert',
  'dessert_get',
  'get_eaten',
  'eaten_degre',
  'degre_except',
  'except_mine',
  'mine_edit',
  'edit_clear',
  'clear_everyon',
  'everyon_includ',
  'includ_kay',
  'kay_often',
  'often_tri',
  'tri_teach',
  'teach_techniqu',
  'techniqu_either',
  'either_alreadi',
  'alreadi_knew',
  'knew_complet',
  'complet_wrong',
  'wrong_like',
  'like_innoc',
  'innoc_got',
  'got_caught',
  'caught_line',
  'line_fire',
  'fire_someth',
  'necessarili_proudest_moment',
  'proudest_moment_tire',
  'moment_tire_outcast',
  'tire_outcast_husband',
  'outcast_husband_pete',
  'husband_pete_come',
  'pete_come_famili',
  'come_famili_women',
  'famili_women_baker',
  'women_baker_baker',
  'baker_baker_use',
  'baker_use_sell',
  'use_sell_hous',
  'sell_hous_state',
  'hous_state_cottag',
  'state_cottag_law',
  'cottag_law_stop',
  'law_stop_like',
  'stop_like_hobbi',
  'like_hobbi_sil',
  'hobbi_sil_kay',
  'sil_kay_one',
  'kay_one_known',
  'one_known_cupcak',
  'known_cupcak_cake',
  'cupcak_cake_pop',
  'cake_pop_first',
  'pop_first_met',
  'first_met_everyon',
  'met_everyon_year',
  'everyon_year_ago',
  'year_ago_first',
  'ago_first_thing',
  'first_thing_learn',
  'thing_learn_everyon',
  'learn_everyon_talk',
  'everyon_talk_everyth',
  'talk_everyth_made',
  'everyth_made_even',
  'made_even_pete',
  'even_pete_mention',
  'pete_mention_good',
  'mention_good_stuff',
  'good_stuff_everyon',
  'stuff_everyon_would',
  'everyon_would_say',
  'would_say_kay',
  'say_kay_sell',
  'kay_sell_theyr',
  'sell_theyr_popular',
  'theyr_popular_must',
  'popular_must_better',
  'must_better_whenev',
  'better_whenev_bring',
  'whenev_bring_treat',
  'bring_treat_often',
  'treat_often_left',
  'often_left_untouch',
  'left_untouch_kay',
  'untouch_kay_ye',
  'kay_ye_ive',
  'ye_ive_told',
  'ive_told_ask',
  'told_ask_bring',
  'ask_bring_someth',
  'bring_someth_everi',
  'someth_everi_get',
  'everi_get_togeth',
  'get_togeth_never',
  'togeth_never_touch',
  'never_touch_clear',
  'touch_clear_kay',
  'clear_kay_mainli',
  'kay_mainli_baker',
  'mainli_baker_wherea',
  'baker_wherea_bake',
  'wherea_bake_special',
  'bake_special_profession',
  'special_profession_decor',
  'profession_decor_cake',
  'decor_cake_kay',
  'cake_kay_say',
  'kay_say_overli',
  'say_overli_decor',
  'overli_decor_cake',
  'decor_cake_compens',
  'cake_compens_bad',
  'compens_bad_tast',
  'bad_tast_pete',
  'tast_pete_famili',
  'pete_famili_agre',
  'famili_agre_bbq',
  'agre_bbq_monday',
  'bbq_monday_memori',
  'monday_memori_day',
  'memori_day_everyon',
  'day_everyon_made',
  'everyon_made_treat',
  'made_treat_kay',
  'treat_kay_decid',
  'kay_decid_bring',
  'decid_bring_cake',
  'bring_cake_pop',
  'cake_pop_post',
  'pop_post_instagram',
  'post_instagram_night',
  'instagram_night_know',
  'night_know_immatur',
  'know_immatur_made',
  'immatur_made_exact',
  'made_exact_one',
  'exact_one_flavor',
  'one_flavor_design',
  'flavor_design_got',
  'design_got_everyon',
  'got_everyon_ask',
  'everyon_ask_treat',
  'ask_treat_said',
  'treat_said_theyr',
  'said_theyr_car',
  'theyr_car_ill',
  'car_ill_get',
  'ill_get_minut',
  'get_minut_wait',
  'minut_wait_everyon',
  'wait_everyon_outsid',
  'everyon_outsid_brought',
  'outsid_brought_mine',
  'brought_mine_put',
  'mine_put_next',
  'put_next_kay',
  'next_kay_eat',
  'kay_eat_notic',
  'eat_notic_famili',
  'notic_famili_eat',
  'famili_eat_cake',
  'eat_cake_pop',
  'cake_pop_kay',
  'pop_kay_notic',
  'kay_notic_first',
  'notic_first_ask',
  'first_ask_feel',
  'ask_feel_cake',
  'feel_cake_pop',
  'cake_pop_said',
  'pop_said_ate',
  'said_ate_best',
  'ate_best_ever',
  'best_ever_made',
  'ever_made_ask',
  'made_ask_differ',
  'ask_differ_mil',
  'differ_mil_even',
  'mil_even_said',
  'even_said_look',
  'said_look_much',
  'look_much_better',
  'much_better_person',
  'better_person_pictur',
  'person_pictur_kay',
  'pictur_kay_confus',
  'kay_confus_said',
  'confus_said_still',
  'said_still_tabl',
  'still_tabl_said',
  'tabl_said_oh',
  'said_oh_brought',
  'oh_brought_glad',
  'brought_glad_enjoy',
  'glad_enjoy_husband',
  'enjoy_husband_said',
  'husband_said_one',
  'said_one_yet',
  'one_yet_lie',
  'yet_lie_ate',
  'lie_ate_two',
  'ate_two_everyon',
  'two_everyon_els',
  'everyon_els_said',
  'els_said_yeah',
  'said_yeah_okay',
  'yeah_okay_kay',
  'okay_kay_say',
  'kay_say_anyth',
  'say_anyth_rest',
  'anyth_rest_night',
  'rest_night_pete',
  'night_pete_thought',
  'pete_thought_funni',
  'thought_funni_know',
  'funni_know_reveal',
  'know_reveal_brother',
  'reveal_brother_kay',
  'brother_kay_husband',
  'kay_husband_said',
  'husband_said_yesterday',
  'said_yesterday_mean',
  'yesterday_mean_im',
  'mean_im_mad',
  'im_mad_kay',
  'mad_kay_better',
  'kay_better_baker',
  'better_baker_pete',
  'baker_pete_said',
  'pete_said_ridicul',
  'said_ridicul_famili',
  'ridicul_famili_includ',
  'famili_includ_kay',
  'includ_kay_put',
  'kay_put_bake',
  'put_bake_even',
  'bake_even_tri',
  'even_tri_im',
  'tri_im_kay',
  'im_kay_aita',
  'kay_aita_eta',
  'aita_eta_two',
  'eta_two_bring',
  'two_bring_dessert',
  'bring_dessert_one',
  'dessert_one_tend',
  'one_tend_bake',
  'tend_bake_cake',
  'bake_cake_everyon',
  'cake_everyon_els',
  'everyon_els_dessert',
  'els_dessert_get',
  'dessert_get_eaten',
  'get_eaten_degre',
  'eaten_degre_except',
  'degre_except_mine',
  'except_mine_edit',
  'mine_edit_clear',
  'edit_clear_everyon',
  'clear_everyon_includ',
  'everyon_includ_kay',
  'includ_kay_often',
  'kay_often_tri',
  'often_tri_teach',
  'tri_teach_techniqu',
  'teach_techniqu_either',
  'techniqu_either_alreadi',
  'either_alreadi_knew',
  'alreadi_knew_complet',
  'knew_complet_wrong',
  'complet_wrong_like',
  'wrong_like_innoc',
  'like_innoc_got',
  'innoc_got_caught',
  'got_caught_line',
  'caught_line_fire',
  'line_fire_someth'],
 ['im',
  'current',
  'medic',
  'school',
  'live',
  'across',
  'countri',
  'brotherfamili',
  'surpris',
  'fiancé',
  'ask',
  'bridesmaid',
  'bare',
  'know',
  'want',
  'sibl',
  'wed',
  'made',
  'clear',
  'wed',
  'final',
  'exam',
  'week',
  'abl',
  'get',
  'accommod',
  'take',
  'last',
  'two',
  'exam',
  'earli',
  'still',
  'abl',
  'help',
  'much',
  'plan',
  'present',
  'thing',
  'like',
  'bachelorett',
  'partybrid',
  'shower',
  'said',
  'fine',
  'would',
  'mostli',
  'even',
  'number',
  'bridesmaid',
  'groomsmen',
  'pictur',
  'group',
  'chat',
  'creat',
  'month',
  'ago',
  'would',
  'read',
  'everi',
  'coupl',
  'day',
  'get',
  'updat',
  'thing',
  'need',
  'name',
  'order',
  'bridesmaid',
  'dress',
  'link',
  'sent',
  'three',
  'style',
  'choos',
  'would',
  'updat',
  'color',
  'later',
  'coupl',
  'week',
  'go',
  'ask',
  'color',
  'order',
  'bride',
  'say',
  'still',
  'think',
  'coupl',
  'week',
  'go',
  'still',
  'thinking…',
  'coupl',
  'week',
  'get',
  'idea',
  'point',
  'order',
  'dress',
  'coupl',
  'day',
  'time',
  'ask',
  'saturday',
  'color',
  'respons',
  'group',
  'chat',
  'ask',
  'yesterday',
  'sunday',
  'color',
  'need',
  'order',
  'im',
  'flood',
  'messag',
  'lambast',
  'order',
  'dress',
  'yet',
  'sister',
  'sister',
  'sister',
  'call',
  'told',
  'get',
  'sh\\',
  '*',
  'togeth',
  'order',
  'dress',
  'alreadi',
  'lack',
  'prepared',
  'caus',
  'bride',
  'intens',
  'anxieti',
  'think',
  'dress',
  'time',
  'wed',
  'text',
  'morn',
  'forget',
  'order',
  'dress',
  'love',
  'smile',
  'kiss',
  'emoji',
  'still',
  'one',
  'told',
  'color',
  'ive',
  'scour',
  'group',
  'chat',
  'mention',
  'dress',
  'color',
  'imag',
  'dress',
  'maid',
  'honor',
  'sent',
  'photo',
  'dress',
  'know',
  'special',
  'color',
  'thousand',
  'messag',
  'simpl',
  'find',
  'anyth',
  'everyon',
  'els',
  'meet',
  'person',
  'assum',
  'decis',
  'color',
  'relay',
  'person',
  'cant',
  'tell',
  'im',
  'purpos',
  'exclud',
  'hour',
  'ago',
  'brother',
  'call',
  'plead',
  'work',
  'thing',
  'bride',
  'panick',
  'tri',
  'explain',
  'told',
  'care',
  'petti',
  'ladi',
  'issu',
  'sinc',
  'im',
  'anyth',
  'els',
  'least',
  'bride',
  'think',
  'like',
  'come',
  'anyth',
  'take',
  'side',
  'know',
  'im',
  'medic',
  'school',
  'liter',
  'say',
  'schedul',
  'im',
  'side',
  'countri',
  'hour',
  'plane',
  'im',
  'fed',
  'contempl',
  'tell',
  'instructor',
  'wed',
  'move',
  'take',
  'exam',
  'regular',
  'time',
  'id',
  'time',
  'studi',
  'way',
  'anyway',
  'told',
  'anyon',
  'famili',
  'im',
  'consid',
  'wibta',
  '&',
  'xb',
  '&',
  'xb',
  'updat',
  'call',
  'mother',
  'ask',
  'color',
  'bridesmaid',
  'dress',
  'said',
  'lavend',
  'color',
  'option',
  'websit',
  'would',
  'call',
  'lavend',
  'name',
  'pearli',
  'lilac',
  'periwinkl',
  'orchid',
  'purpl',
  'text',
  'maid',
  'honor',
  'bride',
  'sister',
  'ask',
  'dress',
  'color',
  'got',
  'multi-paragraph',
  'long',
  'lectur',
  'order',
  'dress',
  'yet',
  'basic',
  'tri',
  'hard',
  'accommod',
  'across',
  'countri',
  'includ',
  'group',
  'chat',
  'said',
  'rememb',
  'shade',
  'name',
  'dusti',
  'purpl',
  'sent',
  'blurri',
  'pictur',
  'wrinkl',
  'order',
  'confirm',
  'shade',
  'name',
  'mulberri',
  'dress',
  'websit',
  'darker',
  'winepurpl',
  'color',
  'told',
  'said',
  'order',
  'lighter',
  'dusti',
  'purpl',
  'color',
  'sent',
  'screen',
  'shot',
  'list',
  'shade',
  'name',
  'ask',
  'said',
  'know',
  'everyon',
  'order',
  'dress',
  'long',
  'ago',
  'ask',
  'pictur',
  'dress',
  'differ',
  'shade',
  'websit',
  'sent',
  'screenshot',
  'light',
  'purpl',
  'color',
  'respons',
  'call',
  'phone',
  'upset',
  'past',
  'pm',
  'respons',
  'look',
  'care',
  'problem',
  'sister',
  'want',
  'stay',
  'good',
  'stand',
  'famili',
  'need',
  'get',
  'duck',
  'line',
  'girli',
  'ignor',
  'lecturecom',
  'ask',
  'color',
  'respons',
  'light',
  'purpl',
  'three',
  'sent',
  'one',
  'rememb',
  'ill',
  'ask',
  'one',
  'bridesmaid',
  'receipt',
  'ill',
  'get',
  'back',
  'want',
  'bash',
  'head',
  'wall',
  'call',
  'second',
  'brother',
  'one',
  'get',
  'marri',
  'said',
  'theyr',
  'pull',
  'similar',
  'thing',
  'feel',
  'like',
  'deliber',
  'given',
  'wrong',
  'date',
  'bachelor',
  'parti',
  'best',
  'man',
  'bride',
  'brother',
  'would',
  'miss',
  'inadvert',
  'learn',
  'chang',
  'date',
  'morn',
  'ask',
  'best',
  'man',
  'told',
  'must',
  'slip',
  'mind',
  'tell',
  'joke',
  'miss',
  'much',
  'sinc',
  'probabl',
  'enjoy',
  'festiv',
  'anyway',
  'theyv',
  'make',
  'homophob',
  'joke',
  'comment',
  'ignor',
  'think',
  'theyr',
  'tri',
  'get',
  'back',
  'wed',
  'back',
  'even',
  'number',
  'bridesmaid',
  'groomsmen',
  'specul',
  'part',
  'cours',
  '&',
  'xb',
  '&',
  'xb',
  'quick',
  'updat',
  'serious',
  'consid',
  'pull',
  'collect',
  'rage',
  'fade',
  'motiv',
  'studi',
  'thinking…',
  'point',
  'post',
  'took',
  'surpris',
  'find',
  'point',
  'want',
  'reveal',
  'card',
  'yet',
  'thank',
  'comment',
  'gave',
  'idea',
  'guess',
  'ill',
  'make',
  'updat',
  'mid',
  'june',
  'goe',
  'plan',
  '&',
  'xb',
  '&',
  'xb',
  '&',
  'xb',
  'final',
  'updat',
  'thank',
  'respons',
  'call',
  'bridal',
  'salon',
  'ask',
  'color',
  'order',
  'four',
  'dress',
  'color',
  'flint',
  'one',
  'mulberri',
  'moh',
  'set',
  'believ',
  'mulberri',
  'color',
  'dress',
  'order',
  'one',
  'mulberri',
  'one',
  'flint',
  'let',
  'moh',
  'know',
  'purchas',
  'mulberri',
  'dress',
  'caught',
  'red',
  'eye',
  'rehears',
  'room',
  'get',
  'readi',
  'morn',
  'want',
  'dress',
  'store',
  'show',
  'mulberri',
  'dress',
  'bride',
  'begin',
  'cri',
  'late',
  'fix',
  'ask',
  'would',
  'upset',
  'ask',
  'drop',
  'mulberri',
  'moh',
  'pretend',
  'like',
  'made',
  'big',
  'mistak',
  'said',
  'know',
  'girl',
  'work',
  'salon',
  'let',
  'call',
  'see',
  'anyway',
  'make',
  'right',
  'ill',
  'step',
  'want',
  'perfect',
  'day',
  'show',
  'back',
  'next',
  'morn',
  'start',
  'get',
  'readi',
  'correct',
  'dress',
  'tow',
  'friend',
  'look',
  'back',
  'return',
  'yesterday',
  'odd',
  'exact',
  'style',
  'color',
  'size',
  'sign',
  'silenc',
  'awkward',
  'amaz',
  'ill',
  'honest',
  'thought',
  'reveng',
  'would',
  'younger',
  'brother',
  'wed',
  'photo',
  'plan',
  'next',
  'part',
  'explain',
  'makeup',
  'artist',
  'addit',
  'bridesmaid',
  'mean',
  'plan',
  'begin',
  'wed',
  'ceremoni',
  'went',
  'fine',
  'took',
  'photo',
  'place',
  'set',
  'littl',
  'bro',
  'wed',
  'parti',
  'recept',
  'sinc',
  'bank',
  'one',
  'less',
  'bridesmaid',
  'one',
  'less',
  'groomsman',
  'present',
  'tabl',
  'almost',
  'long',
  'enough',
  'two',
  'chair',
  'thrown',
  'end',
  'get',
  'food',
  'initi',
  'actual',
  'seat',
  'plan',
  'tabl',
  'plate',
  'brought',
  'place',
  'set',
  'tell',
  'brother',
  'groom',
  'seem',
  'tick',
  'staff',
  'seemingli',
  'thing',
  'set',
  'properli',
  'bride',
  'best',
  'man',
  'divert',
  'attent',
  'groom',
  'left',
  'found',
  'said',
  'ask',
  'moh',
  'set',
  'wrong',
  'told',
  'ask',
  'drop',
  'wed',
  'parti',
  'week',
  'ago',
  'show',
  'demand',
  'wed',
  'said',
  'ask',
  'drop',
  'show',
  'phone',
  'gave',
  'thumb',
  'dress',
  'notic',
  'screenshot',
  'dress',
  'current',
  'wear',
  'said',
  'last',
  'minut',
  'switch',
  'confus',
  'color',
  'seem',
  'satisfi',
  'left',
  'honeymoon',
  'brother',
  'return',
  'sever',
  'day',
  'early…',
  'alon',
  'guess',
  'went',
  'im_current',
  'current_medic',
  'medic_school',
  'school_live',
  'live_across',
  'across_countri',
  'countri_brotherfamili',
  'brotherfamili_surpris',
  'surpris_fiancé',
  'fiancé_ask',
  'ask_bridesmaid',
  'bridesmaid_bare',
  'bare_know',
  'know_want',
  'want_sibl',
  'sibl_wed',
  'wed_made',
  'made_clear',
  'clear_wed',
  'wed_final',
  'final_exam',
  'exam_week',
  'week_abl',
  'abl_get',
  'get_accommod',
  'accommod_take',
  'take_last',
  'last_two',
  'two_exam',
  'exam_earli',
  'earli_still',
  'still_abl',
  'abl_help',
  'help_much',
  'much_plan',
  'plan_present',
  'present_thing',
  'thing_like',
  'like_bachelorett',
  'bachelorett_partybrid',
  'partybrid_shower',
  'shower_said',
  'said_fine',
  'fine_would',
  'would_mostli',
  'mostli_even',
  'even_number',
  'number_bridesmaid',
  'bridesmaid_groomsmen',
  'groomsmen_pictur',
  'pictur_group',
  'group_chat',
  'chat_creat',
  'creat_month',
  'month_ago',
  'ago_would',
  'would_read',
  'read_everi',
  'everi_coupl',
  'coupl_day',
  'day_get',
  'get_updat',
  'updat_thing',
  'thing_need',
  'need_name',
  'name_order',
  'order_bridesmaid',
  'bridesmaid_dress',
  'dress_link',
  'link_sent',
  'sent_three',
  'three_style',
  'style_choos',
  'choos_would',
  'would_updat',
  'updat_color',
  'color_later',
  'later_coupl',
  'coupl_week',
  'week_go',
  'go_ask',
  'ask_color',
  'color_order',
  'order_bride',
  'bride_say',
  'say_still',
  'still_think',
  'think_coupl',
  'coupl_week',
  'week_go',
  'go_still',
  'still_thinking…',
  'thinking…_coupl',
  'coupl_week',
  'week_get',
  'get_idea',
  'idea_point',
  'point_order',
  'order_dress',
  'dress_coupl',
  'coupl_day',
  'day_time',
  'time_ask',
  'ask_saturday',
  'saturday_color',
  'color_respons',
  'respons_group',
  'group_chat',
  'chat_ask',
  'ask_yesterday',
  'yesterday_sunday',
  'sunday_color',
  'color_need',
  'need_order',
  'order_im',
  'im_flood',
  'flood_messag',
  'messag_lambast',
  'lambast_order',
  'order_dress',
  'dress_yet',
  'yet_sister',
  'sister_sister',
  'sister_sister',
  'sister_call',
  'call_told',
  'told_get',
  'get_sh\\',
  'sh\\_*',
  '*_togeth',
  'togeth_order',
  'order_dress',
  'dress_alreadi',
  'alreadi_lack',
  'lack_prepared',
  'prepared_caus',
  'caus_bride',
  'bride_intens',
  'intens_anxieti',
  'anxieti_think',
  'think_dress',
  'dress_time',
  'time_wed',
  'wed_text',
  'text_morn',
  'morn_forget',
  'forget_order',
  'order_dress',
  'dress_love',
  'love_smile',
  'smile_kiss',
  'kiss_emoji',
  'emoji_still',
  'still_one',
  'one_told',
  'told_color',
  'color_ive',
  'ive_scour',
  'scour_group',
  'group_chat',
  'chat_mention',
  'mention_dress',
  'dress_color',
  'color_imag',
  'imag_dress',
  'dress_maid',
  'maid_honor',
  'honor_sent',
  'sent_photo',
  'photo_dress',
  'dress_know',
  'know_special',
  'special_color',
  'color_thousand',
  'thousand_messag',
  'messag_simpl',
  'simpl_find',
  'find_anyth',
  'anyth_everyon',
  'everyon_els',
  'els_meet',
  'meet_person',
  'person_assum',
  'assum_decis',
  'decis_color',
  'color_relay',
  'relay_person',
  'person_cant',
  'cant_tell',
  'tell_im',
  'im_purpos',
  'purpos_exclud',
  'exclud_hour',
  'hour_ago',
  'ago_brother',
  'brother_call',
  'call_plead',
  'plead_work',
  'work_thing',
  'thing_bride',
  'bride_panick',
  'panick_tri',
  'tri_explain',
  'explain_told',
  'told_care',
  'care_petti',
  'petti_ladi',
  'ladi_issu',
  'issu_sinc',
  'sinc_im',
  'im_anyth',
  'anyth_els',
  'els_least',
  'least_bride',
  'bride_think',
  'think_like',
  'like_come',
  'come_anyth',
  'anyth_take',
  'take_side',
  'side_know',
  'know_im',
  'im_medic',
  'medic_school',
  'school_liter',
  'liter_say',
  'say_schedul',
  'schedul_im',
  'im_side',
  'side_countri',
  'countri_hour',
  'hour_plane',
  'plane_im',
  'im_fed',
  'fed_contempl',
  'contempl_tell',
  'tell_instructor',
  'instructor_wed',
  'wed_move',
  'move_take',
  'take_exam',
  'exam_regular',
  'regular_time',
  'time_id',
  'id_time',
  'time_studi',
  'studi_way',
  'way_anyway',
  'anyway_told',
  'told_anyon',
  'anyon_famili',
  'famili_im',
  'im_consid',
  'consid_wibta',
  'wibta_&',
  '&_xb',
  'xb_&',
  '&_xb',
  'xb_updat',
  'updat_call',
  'call_mother',
  'mother_ask',
  ...],
 ['im',
  'gon',
  'na',
  'shi',
  'sister',
  'suck',
  'horribl',
  'self',
  'slcenter',
  'person',
  'think',
  'main',
  'charact',
  'horribl',
  'person',
  'step',
  'monster',
  'marri',
  'guy',
  'freak',
  'push',
  'year',
  'ago',
  'two',
  'children',
  'sister',
  'constantli',
  'complain',
  'say',
  'thing',
  'like',
  'year',
  'old',
  'gross',
  'sip',
  'loud',
  'stain',
  'cloth',
  'love',
  'god',
  'child',
  'suppos',
  'mean',
  'year',
  'old',
  'girl',
  'act',
  'straight',
  'jealou',
  'ive',
  'caught',
  'taunt',
  'daddi',
  'love',
  'sister',
  'horribl',
  'straight',
  'call',
  'tri',
  'talk',
  'like',
  'million',
  'time',
  'christma',
  'say',
  'id',
  'nice',
  'kid',
  'said',
  'hate',
  'everyth',
  'almost',
  'brag',
  'friend',
  'husband',
  'spend',
  'daughter',
  'fight',
  'ensu',
  'parent',
  'reprimand',
  'cousin',
  'took',
  'side',
  'call',
  'note',
  'everi',
  'moment',
  'wit',
  'horribl',
  'husband',
  'obvious',
  'took',
  'side',
  'said',
  'wonder',
  'step',
  'mother',
  'kid',
  'love',
  'said',
  'lie',
  'consol',
  'countless',
  'time',
  'taunt',
  'sister',
  'left',
  'talk',
  'sinc',
  'one',
  'day',
  'run',
  'errand',
  'run',
  'step',
  'nephew',
  'mother',
  'never',
  'met',
  'honestli',
  'wonder',
  'decid',
  'coffe',
  'kid',
  'play',
  'ask',
  'children',
  'behav',
  'etc',
  'said',
  'wonder',
  'spill',
  'bean',
  'sister',
  'aw',
  'ive',
  'heard',
  'say',
  'kid',
  'inact',
  'ex',
  'husband',
  'end',
  'horrifi',
  'said',
  'kid',
  'like',
  'alway',
  'chuck',
  'sister',
  'new',
  'woman',
  'father',
  'life',
  'said',
  'kid',
  'never',
  'realli',
  'said',
  'anyth',
  'even',
  'ask',
  'told',
  'iw',
  'concern',
  'children',
  'sister',
  'straight',
  'told',
  'year',
  'old',
  'would',
  'better',
  'disappear',
  'father',
  'life',
  'mother',
  'saw',
  'red',
  'ask',
  'id',
  'testifi',
  'said',
  'unaccept',
  'would',
  'take',
  'father',
  'court',
  'said',
  'would',
  'recount',
  'event',
  'wit',
  'could',
  'ask',
  'cousin',
  'wit',
  'lot',
  'grate',
  'ask',
  'cousin',
  'recount',
  'event',
  'word',
  'got',
  'arround',
  'parent',
  'extent',
  'sister',
  'call',
  'biggest',
  'asshol',
  'planet',
  'would',
  'betray',
  'famili',
  'whim',
  'asshol',
  'im_gon',
  'gon_na',
  'na_shi',
  'shi_sister',
  'sister_suck',
  'suck_horribl',
  'horribl_self',
  'self_slcenter',
  'slcenter_person',
  'person_think',
  'think_main',
  'main_charact',
  'charact_horribl',
  'horribl_person',
  'person_step',
  'step_monster',
  'monster_marri',
  'marri_guy',
  'guy_freak',
  'freak_push',
  'push_year',
  'year_ago',
  'ago_two',
  'two_children',
  'children_sister',
  'sister_constantli',
  'constantli_complain',
  'complain_say',
  'say_thing',
  'thing_like',
  'like_year',
  'year_old',
  'old_gross',
  'gross_sip',
  'sip_loud',
  'loud_stain',
  'stain_cloth',
  'cloth_love',
  'love_god',
  'god_child',
  'child_suppos',
  'suppos_mean',
  'mean_year',
  'year_old',
  'old_girl',
  'girl_act',
  'act_straight',
  'straight_jealou',
  'jealou_ive',
  'ive_caught',
  'caught_taunt',
  'taunt_daddi',
  'daddi_love',
  'love_sister',
  'sister_horribl',
  'horribl_straight',
  'straight_call',
  'call_tri',
  'tri_talk',
  'talk_like',
  'like_million',
  'million_time',
  'time_christma',
  'christma_say',
  'say_id',
  'id_nice',
  'nice_kid',
  'kid_said',
  'said_hate',
  'hate_everyth',
  'everyth_almost',
  'almost_brag',
  'brag_friend',
  'friend_husband',
  'husband_spend',
  'spend_daughter',
  'daughter_fight',
  'fight_ensu',
  'ensu_parent',
  'parent_reprimand',
  'reprimand_cousin',
  'cousin_took',
  'took_side',
  'side_call',
  'call_note',
  'note_everi',
  'everi_moment',
  'moment_wit',
  'wit_horribl',
  'horribl_husband',
  'husband_obvious',
  'obvious_took',
  'took_side',
  'side_said',
  'said_wonder',
  'wonder_step',
  'step_mother',
  'mother_kid',
  'kid_love',
  'love_said',
  'said_lie',
  'lie_consol',
  'consol_countless',
  'countless_time',
  'time_taunt',
  'taunt_sister',
  'sister_left',
  'left_talk',
  'talk_sinc',
  'sinc_one',
  'one_day',
  'day_run',
  'run_errand',
  'errand_run',
  'run_step',
  'step_nephew',
  'nephew_mother',
  'mother_never',
  'never_met',
  'met_honestli',
  'honestli_wonder',
  'wonder_decid',
  'decid_coffe',
  'coffe_kid',
  'kid_play',
  'play_ask',
  'ask_children',
  'children_behav',
  'behav_etc',
  'etc_said',
  'said_wonder',
  'wonder_spill',
  'spill_bean',
  'bean_sister',
  'sister_aw',
  'aw_ive',
  'ive_heard',
  'heard_say',
  'say_kid',
  'kid_inact',
  'inact_ex',
  'ex_husband',
  'husband_end',
  'end_horrifi',
  'horrifi_said',
  'said_kid',
  'kid_like',
  'like_alway',
  'alway_chuck',
  'chuck_sister',
  'sister_new',
  'new_woman',
  'woman_father',
  'father_life',
  'life_said',
  'said_kid',
  'kid_never',
  'never_realli',
  'realli_said',
  'said_anyth',
  'anyth_even',
  'even_ask',
  'ask_told',
  'told_iw',
  'iw_concern',
  'concern_children',
  'children_sister',
  'sister_straight',
  'straight_told',
  'told_year',
  'year_old',
  'old_would',
  'would_better',
  'better_disappear',
  'disappear_father',
  'father_life',
  'life_mother',
  'mother_saw',
  'saw_red',
  'red_ask',
  'ask_id',
  'id_testifi',
  'testifi_said',
  'said_unaccept',
  'unaccept_would',
  'would_take',
  'take_father',
  'father_court',
  'court_said',
  'said_would',
  'would_recount',
  'recount_event',
  'event_wit',
  'wit_could',
  'could_ask',
  'ask_cousin',
  'cousin_wit',
  'wit_lot',
  'lot_grate',
  'grate_ask',
  'ask_cousin',
  'cousin_recount',
  'recount_event',
  'event_word',
  'word_got',
  'got_arround',
  'arround_parent',
  'parent_extent',
  'extent_sister',
  'sister_call',
  'call_biggest',
  'biggest_asshol',
  'asshol_planet',
  'planet_would',
  'would_betray',
  'betray_famili',
  'famili_whim',
  'whim_asshol',
  'im_gon_na',
  'gon_na_shi',
  'na_shi_sister',
  'shi_sister_suck',
  'sister_suck_horribl',
  'suck_horribl_self',
  'horribl_self_slcenter',
  'self_slcenter_person',
  'slcenter_person_think',
  'person_think_main',
  'think_main_charact',
  'main_charact_horribl',
  'charact_horribl_person',
  'horribl_person_step',
  'person_step_monster',
  'step_monster_marri',
  'monster_marri_guy',
  'marri_guy_freak',
  'guy_freak_push',
  'freak_push_year',
  'push_year_ago',
  'year_ago_two',
  'ago_two_children',
  'two_children_sister',
  'children_sister_constantli',
  'sister_constantli_complain',
  'constantli_complain_say',
  'complain_say_thing',
  'say_thing_like',
  'thing_like_year',
  'like_year_old',
  'year_old_gross',
  'old_gross_sip',
  'gross_sip_loud',
  'sip_loud_stain',
  'loud_stain_cloth',
  'stain_cloth_love',
  'cloth_love_god',
  'love_god_child',
  'god_child_suppos',
  'child_suppos_mean',
  'suppos_mean_year',
  'mean_year_old',
  'year_old_girl',
  'old_girl_act',
  'girl_act_straight',
  'act_straight_jealou',
  'straight_jealou_ive',
  'jealou_ive_caught',
  'ive_caught_taunt',
  'caught_taunt_daddi',
  'taunt_daddi_love',
  'daddi_love_sister',
  'love_sister_horribl',
  'sister_horribl_straight',
  'horribl_straight_call',
  'straight_call_tri',
  'call_tri_talk',
  'tri_talk_like',
  'talk_like_million',
  'like_million_time',
  'million_time_christma',
  'time_christma_say',
  'christma_say_id',
  'say_id_nice',
  'id_nice_kid',
  'nice_kid_said',
  'kid_said_hate',
  'said_hate_everyth',
  'hate_everyth_almost',
  'everyth_almost_brag',
  'almost_brag_friend',
  'brag_friend_husband',
  'friend_husband_spend',
  'husband_spend_daughter',
  'spend_daughter_fight',
  'daughter_fight_ensu',
  'fight_ensu_parent',
  'ensu_parent_reprimand',
  'parent_reprimand_cousin',
  'reprimand_cousin_took',
  'cousin_took_side',
  'took_side_call',
  'side_call_note',
  'call_note_everi',
  'note_everi_moment',
  'everi_moment_wit',
  'moment_wit_horribl',
  'wit_horribl_husband',
  'horribl_husband_obvious',
  'husband_obvious_took',
  'obvious_took_side',
  'took_side_said',
  'side_said_wonder',
  'said_wonder_step',
  'wonder_step_mother',
  'step_mother_kid',
  'mother_kid_love',
  'kid_love_said',
  'love_said_lie',
  'said_lie_consol',
  'lie_consol_countless',
  'consol_countless_time',
  'countless_time_taunt',
  'time_taunt_sister',
  'taunt_sister_left',
  'sister_left_talk',
  'left_talk_sinc',
  'talk_sinc_one',
  'sinc_one_day',
  'one_day_run',
  'day_run_errand',
  'run_errand_run',
  'errand_run_step',
  'run_step_nephew',
  'step_nephew_mother',
  'nephew_mother_never',
  'mother_never_met',
  'never_met_honestli',
  'met_honestli_wonder',
  'honestli_wonder_decid',
  'wonder_decid_coffe',
  'decid_coffe_kid',
  'coffe_kid_play',
  'kid_play_ask',
  'play_ask_children',
  'ask_children_behav',
  'children_behav_etc',
  'behav_etc_said',
  'etc_said_wonder',
  'said_wonder_spill',
  'wonder_spill_bean',
  'spill_bean_sister',
  'bean_sister_aw',
  'sister_aw_ive',
  'aw_ive_heard',
  'ive_heard_say',
  'heard_say_kid',
  'say_kid_inact',
  'kid_inact_ex',
  'inact_ex_husband',
  'ex_husband_end',
  'husband_end_horrifi',
  'end_horrifi_said',
  'horrifi_said_kid',
  'said_kid_like',
  'kid_like_alway',
  'like_alway_chuck',
  'alway_chuck_sister',
  'chuck_sister_new',
  'sister_new_woman',
  'new_woman_father',
  'woman_father_life',
  'father_life_said',
  'life_said_kid',
  'said_kid_never',
  'kid_never_realli',
  'never_realli_said',
  'realli_said_anyth',
  'said_anyth_even',
  'anyth_even_ask',
  'even_ask_told',
  'ask_told_iw',
  'told_iw_concern',
  'iw_concern_children',
  'concern_children_sister',
  'children_sister_straight',
  'sister_straight_told',
  'straight_told_year',
  'told_year_old',
  'year_old_would',
  'old_would_better',
  'would_better_disappear',
  'better_disappear_father',
  'disappear_father_life',
  'father_life_mother',
  'life_mother_saw',
  'mother_saw_red',
  'saw_red_ask',
  'red_ask_id',
  'ask_id_testifi',
  'id_testifi_said',
  'testifi_said_unaccept',
  'said_unaccept_would',
  'unaccept_would_take',
  'would_take_father',
  'take_father_court',
  'father_court_said',
  'court_said_would',
  'said_would_recount',
  'would_recount_event',
  'recount_event_wit',
  'event_wit_could',
  'wit_could_ask',
  'could_ask_cousin',
  'ask_cousin_wit',
  'cousin_wit_lot',
  'wit_lot_grate',
  'lot_grate_ask',
  'grate_ask_cousin',
  'ask_cousin_recount',
  'cousin_recount_event',
  'recount_event_word',
  'event_word_got',
  'word_got_arround',
  'got_arround_parent',
  'arround_parent_extent',
  'parent_extent_sister',
  'extent_sister_call',
  'sister_call_biggest',
  'call_biggest_asshol',
  'biggest_asshol_planet',
  'asshol_planet_would',
  'planet_would_betray',
  'would_betray_famili',
  'betray_famili_whim',
  'famili_whim_asshol'],
 ['two',
  'kid',
  'husband',
  '-year-old',
  'daughter',
  'year-old',
  'son',
  'daughter',
  'alway',
  'littl',
  'social',
  'awkward',
  'point',
  'weve',
  'test',
  'sinc',
  'suspect',
  'spectrum',
  'turn',
  'spectrum',
  'natur',
  'introvert',
  'howev',
  'year',
  'school',
  'thrill',
  'daughter',
  'made',
  'new',
  'friend',
  'age',
  'sinc',
  'area',
  'struggl',
  'long',
  'stori',
  'short',
  'recent',
  'invit',
  'new',
  'friend',
  'aprov',
  'dinner',
  'hous',
  'spend',
  'night',
  'daughter',
  'friend',
  'came',
  'husband',
  'usual',
  'cook',
  'famili',
  'night',
  'except',
  'made',
  'us',
  'realli',
  'nice',
  'meal',
  'cours',
  'said',
  'meal',
  'ask',
  'daughter',
  'friend',
  'enjoy',
  'food',
  'respond',
  'ye',
  '\\',
  '[',
  'husband\\',
  ']',
  'great',
  'cook',
  'wonder',
  'end',
  'bigger',
  'woman',
  'room',
  'got',
  'quiet',
  'sever',
  'moment',
  'husband',
  'tri',
  'laugh',
  'chang',
  'subject',
  'girl',
  'level',
  'complet',
  'uncalled-for',
  'insult',
  'daughter',
  'friend',
  'seem',
  'realiz',
  'shed',
  'mess',
  'say',
  'anyth',
  'els',
  'finish',
  'awkward',
  'dinner',
  'mostli',
  'silenc',
  'daughter',
  'friend',
  'stay',
  'night',
  'coupl',
  'month',
  'ago',
  'recent',
  'daughter',
  'ask',
  'could',
  'friend',
  'back',
  'told',
  'sure',
  'go',
  'apolog',
  'daughter',
  'ask',
  'meant',
  'remind',
  'shed',
  'said',
  'daughter',
  'respond',
  'want',
  'bring',
  'went',
  'father',
  'ask',
  'said',
  'sure',
  'told',
  'id',
  'said',
  'came',
  'said',
  '\\',
  '[',
  'daughter',
  'friend\\',
  ']',
  'felt',
  'awkward',
  'tri',
  'make',
  'joke',
  'land',
  'sake',
  'daughter',
  'cant',
  'let',
  'go',
  'ye',
  'could',
  'thing',
  'want',
  'apolog',
  'girl',
  'need',
  'see',
  'understand',
  'rude',
  'get',
  'board',
  'myy',
  'daughter',
  'hang',
  'husband',
  'say',
  'weird',
  'insist',
  'apolog',
  'year-old',
  'especi',
  'sinc',
  'girl',
  'good',
  'friend',
  'daughter',
  'think',
  'weird',
  'im',
  'still',
  'wait',
  'apolog',
  'girl',
  'serious',
  'need',
  'need',
  'know',
  'friend',
  'daughter',
  'screw',
  'two_kid',
  'kid_husband',
  'husband_-year-old',
  '-year-old_daughter',
  'daughter_year-old',
  'year-old_son',
  'son_daughter',
  'daughter_alway',
  'alway_littl',
  'littl_social',
  'social_awkward',
  'awkward_point',
  'point_weve',
  'weve_test',
  'test_sinc',
  'sinc_suspect',
  'suspect_spectrum',
  'spectrum_turn',
  'turn_spectrum',
  'spectrum_natur',
  'natur_introvert',
  'introvert_howev',
  'howev_year',
  'year_school',
  'school_thrill',
  'thrill_daughter',
  'daughter_made',
  'made_new',
  'new_friend',
  'friend_age',
  'age_sinc',
  'sinc_area',
  'area_struggl',
  'struggl_long',
  'long_stori',
  'stori_short',
  'short_recent',
  'recent_invit',
  'invit_new',
  'new_friend',
  'friend_aprov',
  'aprov_dinner',
  'dinner_hous',
  'hous_spend',
  'spend_night',
  'night_daughter',
  'daughter_friend',
  'friend_came',
  'came_husband',
  'husband_usual',
  'usual_cook',
  'cook_famili',
  'famili_night',
  'night_except',
  'except_made',
  'made_us',
  'us_realli',
  'realli_nice',
  'nice_meal',
  'meal_cours',
  'cours_said',
  'said_meal',
  'meal_ask',
  'ask_daughter',
  'daughter_friend',
  'friend_enjoy',
  'enjoy_food',
  'food_respond',
  'respond_ye',
  'ye_\\',
  '\\_[',
  '[_husband\\',
  'husband\\_]',
  ']_great',
  'great_cook',
  'cook_wonder',
  'wonder_end',
  'end_bigger',
  'bigger_woman',
  'woman_room',
  'room_got',
  'got_quiet',
  'quiet_sever',
  'sever_moment',
  'moment_husband',
  'husband_tri',
  'tri_laugh',
  'laugh_chang',
  'chang_subject',
  'subject_girl',
  'girl_level',
  'level_complet',
  'complet_uncalled-for',
  'uncalled-for_insult',
  'insult_daughter',
  'daughter_friend',
  'friend_seem',
  'seem_realiz',
  'realiz_shed',
  'shed_mess',
  'mess_say',
  'say_anyth',
  'anyth_els',
  'els_finish',
  'finish_awkward',
  'awkward_dinner',
  'dinner_mostli',
  'mostli_silenc',
  'silenc_daughter',
  'daughter_friend',
  'friend_stay',
  'stay_night',
  'night_coupl',
  'coupl_month',
  'month_ago',
  'ago_recent',
  'recent_daughter',
  'daughter_ask',
  'ask_could',
  'could_friend',
  'friend_back',
  'back_told',
  'told_sure',
  'sure_go',
  'go_apolog',
  'apolog_daughter',
  'daughter_ask',
  'ask_meant',
  'meant_remind',
  'remind_shed',
  'shed_said',
  'said_daughter',
  'daughter_respond',
  'respond_want',
  'want_bring',
  'bring_went',
  'went_father',
  'father_ask',
  'ask_said',
  'said_sure',
  'sure_told',
  'told_id',
  'id_said',
  'said_came',
  'came_said',
  'said_\\',
  '\\_[',
  '[_daughter',
  'daughter_friend\\',
  'friend\\_]',
  ']_felt',
  'felt_awkward',
  'awkward_tri',
  'tri_make',
  'make_joke',
  'joke_land',
  'land_sake',
  'sake_daughter',
  'daughter_cant',
  'cant_let',
  'let_go',
  'go_ye',
  'ye_could',
  'could_thing',
  'thing_want',
  'want_apolog',
  'apolog_girl',
  'girl_need',
  'need_see',
  'see_understand',
  'understand_rude',
  'rude_get',
  'get_board',
  'board_myy',
  'myy_daughter',
  'daughter_hang',
  'hang_husband',
  'husband_say',
  'say_weird',
  'weird_insist',
  'insist_apolog',
  'apolog_year-old',
  'year-old_especi',
  'especi_sinc',
  'sinc_girl',
  'girl_good',
  'good_friend',
  'friend_daughter',
  'daughter_think',
  'think_weird',
  'weird_im',
  'im_still',
  'still_wait',
  'wait_apolog',
  'apolog_girl',
  'girl_serious',
  'serious_need',
  'need_need',
  'need_know',
  'know_friend',
  'friend_daughter',
  'daughter_screw',
  'two_kid_husband',
  'kid_husband_-year-old',
  'husband_-year-old_daughter',
  '-year-old_daughter_year-old',
  'daughter_year-old_son',
  'year-old_son_daughter',
  'son_daughter_alway',
  'daughter_alway_littl',
  'alway_littl_social',
  'littl_social_awkward',
  'social_awkward_point',
  'awkward_point_weve',
  'point_weve_test',
  'weve_test_sinc',
  'test_sinc_suspect',
  'sinc_suspect_spectrum',
  'suspect_spectrum_turn',
  'spectrum_turn_spectrum',
  'turn_spectrum_natur',
  'spectrum_natur_introvert',
  'natur_introvert_howev',
  'introvert_howev_year',
  'howev_year_school',
  'year_school_thrill',
  'school_thrill_daughter',
  'thrill_daughter_made',
  'daughter_made_new',
  'made_new_friend',
  'new_friend_age',
  'friend_age_sinc',
  'age_sinc_area',
  'sinc_area_struggl',
  'area_struggl_long',
  'struggl_long_stori',
  'long_stori_short',
  'stori_short_recent',
  'short_recent_invit',
  'recent_invit_new',
  'invit_new_friend',
  'new_friend_aprov',
  'friend_aprov_dinner',
  'aprov_dinner_hous',
  'dinner_hous_spend',
  'hous_spend_night',
  'spend_night_daughter',
  'night_daughter_friend',
  'daughter_friend_came',
  'friend_came_husband',
  'came_husband_usual',
  'husband_usual_cook',
  'usual_cook_famili',
  'cook_famili_night',
  'famili_night_except',
  'night_except_made',
  'except_made_us',
  'made_us_realli',
  'us_realli_nice',
  'realli_nice_meal',
  'nice_meal_cours',
  'meal_cours_said',
  'cours_said_meal',
  'said_meal_ask',
  'meal_ask_daughter',
  'ask_daughter_friend',
  'daughter_friend_enjoy',
  'friend_enjoy_food',
  'enjoy_food_respond',
  'food_respond_ye',
  'respond_ye_\\',
  'ye_\\_[',
  '\\_[_husband\\',
  '[_husband\\_]',
  'husband\\_]_great',
  ']_great_cook',
  'great_cook_wonder',
  'cook_wonder_end',
  'wonder_end_bigger',
  'end_bigger_woman',
  'bigger_woman_room',
  'woman_room_got',
  'room_got_quiet',
  'got_quiet_sever',
  'quiet_sever_moment',
  'sever_moment_husband',
  'moment_husband_tri',
  'husband_tri_laugh',
  'tri_laugh_chang',
  'laugh_chang_subject',
  'chang_subject_girl',
  'subject_girl_level',
  'girl_level_complet',
  'level_complet_uncalled-for',
  'complet_uncalled-for_insult',
  'uncalled-for_insult_daughter',
  'insult_daughter_friend',
  'daughter_friend_seem',
  'friend_seem_realiz',
  'seem_realiz_shed',
  'realiz_shed_mess',
  'shed_mess_say',
  'mess_say_anyth',
  'say_anyth_els',
  'anyth_els_finish',
  'els_finish_awkward',
  'finish_awkward_dinner',
  'awkward_dinner_mostli',
  'dinner_mostli_silenc',
  'mostli_silenc_daughter',
  'silenc_daughter_friend',
  'daughter_friend_stay',
  'friend_stay_night',
  'stay_night_coupl',
  'night_coupl_month',
  'coupl_month_ago',
  'month_ago_recent',
  'ago_recent_daughter',
  'recent_daughter_ask',
  'daughter_ask_could',
  'ask_could_friend',
  'could_friend_back',
  'friend_back_told',
  'back_told_sure',
  'told_sure_go',
  'sure_go_apolog',
  'go_apolog_daughter',
  'apolog_daughter_ask',
  'daughter_ask_meant',
  'ask_meant_remind',
  'meant_remind_shed',
  'remind_shed_said',
  'shed_said_daughter',
  'said_daughter_respond',
  'daughter_respond_want',
  'respond_want_bring',
  'want_bring_went',
  'bring_went_father',
  'went_father_ask',
  'father_ask_said',
  'ask_said_sure',
  'said_sure_told',
  'sure_told_id',
  'told_id_said',
  'id_said_came',
  'said_came_said',
  'came_said_\\',
  'said_\\_[',
  '\\_[_daughter',
  '[_daughter_friend\\',
  'daughter_friend\\_]',
  'friend\\_]_felt',
  ']_felt_awkward',
  'felt_awkward_tri',
  'awkward_tri_make',
  'tri_make_joke',
  'make_joke_land',
  'joke_land_sake',
  'land_sake_daughter',
  'sake_daughter_cant',
  'daughter_cant_let',
  'cant_let_go',
  'let_go_ye',
  'go_ye_could',
  'ye_could_thing',
  'could_thing_want',
  'thing_want_apolog',
  'want_apolog_girl',
  'apolog_girl_need',
  'girl_need_see',
  'need_see_understand',
  'see_understand_rude',
  'understand_rude_get',
  'rude_get_board',
  'get_board_myy',
  'board_myy_daughter',
  'myy_daughter_hang',
  'daughter_hang_husband',
  'hang_husband_say',
  'husband_say_weird',
  'say_weird_insist',
  'weird_insist_apolog',
  'insist_apolog_year-old',
  'apolog_year-old_especi',
  'year-old_especi_sinc',
  'especi_sinc_girl',
  'sinc_girl_good',
  'girl_good_friend',
  'good_friend_daughter',
  'friend_daughter_think',
  'daughter_think_weird',
  'think_weird_im',
  'weird_im_still',
  'im_still_wait',
  'still_wait_apolog',
  'wait_apolog_girl',
  'apolog_girl_serious',
  'girl_serious_need',
  'serious_need_need',
  'need_need_know',
  'need_know_friend',
  'know_friend_daughter',
  'friend_daughter_screw'],
 ['last',
  'night',
  'fianc',
  'left',
  'even',
  'give',
  'friend',
  'son',
  'ride',
  'back',
  'home',
  'impli',
  'shed',
  'home',
  'left',
  'around',
  'roll',
  'around',
  'still',
  'home',
  'text',
  'apolog',
  'say',
  'friend',
  'son',
  'actual',
  'next',
  'town',
  'mayb',
  'minut',
  'away',
  'come',
  'home',
  'roll',
  'around',
  'still',
  'come',
  'home',
  'call',
  'answer',
  'text',
  'respons',
  'get',
  'upset',
  'roll',
  'around',
  'still',
  'respons',
  'answer',
  'phone',
  'call',
  'extrem',
  'angri',
  'roll',
  'around',
  'anger',
  'complet',
  'transform',
  'worri',
  'answer',
  'call',
  'text',
  'read',
  'around',
  'call',
  'polic',
  'alway',
  'heard',
  'first',
  'hour',
  'someon',
  'miss',
  'import',
  'want',
  'delay',
  'ask',
  'let',
  'know',
  'traffic',
  'accid',
  'involv',
  'car',
  'oper',
  'told',
  'would',
  'put',
  'word',
  'send',
  'cop',
  'check',
  'along',
  'rout',
  'would',
  'travel',
  'call',
  'hospit',
  'area',
  'check',
  'check',
  'wait',
  'outsid',
  'watch',
  'road',
  'car',
  'three',
  'hour',
  'partial',
  'want',
  'kid',
  'hear',
  'phone',
  'hospit',
  'secondli',
  'sick',
  'worri',
  'came',
  'home',
  'apolog',
  'said',
  'excus',
  'drive',
  'home',
  'felt',
  'tire',
  'like',
  'fall',
  'asleep',
  'wheel',
  'pull',
  'side',
  'road',
  'sleep',
  'found',
  'brand',
  'new',
  'phone',
  'stop',
  'work',
  'say',
  'nap',
  'anyway',
  'respons',
  'thing',
  'came',
  'home',
  'bring',
  'kid',
  'school',
  'get',
  'work',
  'time',
  'immedi',
  'call',
  'polic',
  'told',
  'come',
  'home',
  'safe',
  'gave',
  'case',
  'number',
  'told',
  'stop',
  'search',
  'fjanc',
  'brought',
  'kid',
  'school',
  'left',
  'work',
  'set',
  'start',
  'clean',
  'clean',
  'destress',
  'sometim',
  'got',
  'call',
  'policeman',
  'ask',
  'work',
  'told',
  'ask',
  'inform',
  'polici',
  'check',
  'person',
  'well',
  'miss',
  'person',
  'found',
  'ask',
  'go',
  'work',
  'give',
  'call',
  'instead',
  'said',
  'promis',
  'fianc',
  'rel',
  'new',
  'job',
  'polic',
  'offic',
  'show',
  'ask',
  'speak',
  'enrag',
  'call',
  'polic',
  'send',
  'cop',
  'work',
  'make',
  'look',
  'bad',
  'say',
  'overreact',
  'miss',
  'punish',
  'respons',
  'thing',
  'drive',
  'drowsi',
  'say',
  'never',
  'go',
  'leav',
  'hous',
  'except',
  'work',
  'afraid',
  'im',
  'go',
  'call',
  'cop',
  'overreact',
  'wait',
  'two',
  'day',
  'like',
  'suggest',
  'last_night',
  'night_fianc',
  'fianc_left',
  'left_even',
  'even_give',
  'give_friend',
  'friend_son',
  'son_ride',
  'ride_back',
  'back_home',
  'home_impli',
  'impli_shed',
  'shed_home',
  'home_left',
  'left_around',
  'around_roll',
  'roll_around',
  'around_still',
  'still_home',
  'home_text',
  'text_apolog',
  'apolog_say',
  'say_friend',
  'friend_son',
  'son_actual',
  'actual_next',
  'next_town',
  'town_mayb',
  'mayb_minut',
  'minut_away',
  'away_come',
  'come_home',
  'home_roll',
  'roll_around',
  'around_still',
  'still_come',
  'come_home',
  'home_call',
  'call_answer',
  'answer_text',
  'text_respons',
  'respons_get',
  'get_upset',
  'upset_roll',
  'roll_around',
  'around_still',
  'still_respons',
  'respons_answer',
  'answer_phone',
  'phone_call',
  'call_extrem',
  'extrem_angri',
  'angri_roll',
  'roll_around',
  'around_anger',
  'anger_complet',
  'complet_transform',
  'transform_worri',
  'worri_answer',
  'answer_call',
  'call_text',
  'text_read',
  'read_around',
  'around_call',
  'call_polic',
  'polic_alway',
  'alway_heard',
  'heard_first',
  'first_hour',
  'hour_someon',
  'someon_miss',
  'miss_import',
  'import_want',
  'want_delay',
  'delay_ask',
  'ask_let',
  'let_know',
  'know_traffic',
  'traffic_accid',
  'accid_involv',
  'involv_car',
  'car_oper',
  'oper_told',
  'told_would',
  'would_put',
  'put_word',
  'word_send',
  'send_cop',
  'cop_check',
  'check_along',
  'along_rout',
  'rout_would',
  'would_travel',
  'travel_call',
  'call_hospit',
  'hospit_area',
  'area_check',
  'check_check',
  'check_wait',
  'wait_outsid',
  'outsid_watch',
  'watch_road',
  'road_car',
  'car_three',
  'three_hour',
  'hour_partial',
  'partial_want',
  'want_kid',
  'kid_hear',
  'hear_phone',
  'phone_hospit',
  'hospit_secondli',
  'secondli_sick',
  'sick_worri',
  'worri_came',
  'came_home',
  'home_apolog',
  'apolog_said',
  'said_excus',
  'excus_drive',
  'drive_home',
  'home_felt',
  'felt_tire',
  'tire_like',
  'like_fall',
  'fall_asleep',
  'asleep_wheel',
  'wheel_pull',
  'pull_side',
  'side_road',
  'road_sleep',
  'sleep_found',
  'found_brand',
  'brand_new',
  'new_phone',
  'phone_stop',
  'stop_work',
  'work_say',
  'say_nap',
  'nap_anyway',
  'anyway_respons',
  'respons_thing',
  'thing_came',
  'came_home',
  'home_bring',
  'bring_kid',
  'kid_school',
  'school_get',
  'get_work',
  'work_time',
  'time_immedi',
  'immedi_call',
  'call_polic',
  'polic_told',
  'told_come',
  'come_home',
  'home_safe',
  'safe_gave',
  'gave_case',
  'case_number',
  'number_told',
  'told_stop',
  'stop_search',
  'search_fjanc',
  'fjanc_brought',
  'brought_kid',
  'kid_school',
  'school_left',
  'left_work',
  'work_set',
  'set_start',
  'start_clean',
  'clean_clean',
  'clean_destress',
  'destress_sometim',
  'sometim_got',
  'got_call',
  'call_policeman',
  'policeman_ask',
  'ask_work',
  'work_told',
  'told_ask',
  'ask_inform',
  'inform_polici',
  'polici_check',
  'check_person',
  'person_well',
  'well_miss',
  'miss_person',
  'person_found',
  'found_ask',
  'ask_go',
  'go_work',
  'work_give',
  'give_call',
  'call_instead',
  'instead_said',
  'said_promis',
  'promis_fianc',
  'fianc_rel',
  'rel_new',
  'new_job',
  'job_polic',
  'polic_offic',
  'offic_show',
  'show_ask',
  'ask_speak',
  'speak_enrag',
  'enrag_call',
  'call_polic',
  'polic_send',
  'send_cop',
  'cop_work',
  'work_make',
  'make_look',
  'look_bad',
  'bad_say',
  'say_overreact',
  'overreact_miss',
  'miss_punish',
  'punish_respons',
  'respons_thing',
  'thing_drive',
  'drive_drowsi',
  'drowsi_say',
  'say_never',
  'never_go',
  'go_leav',
  'leav_hous',
  'hous_except',
  'except_work',
  'work_afraid',
  'afraid_im',
  'im_go',
  'go_call',
  'call_cop',
  'cop_overreact',
  'overreact_wait',
  'wait_two',
  'two_day',
  'day_like',
  'like_suggest',
  'last_night_fianc',
  'night_fianc_left',
  'fianc_left_even',
  'left_even_give',
  'even_give_friend',
  'give_friend_son',
  'friend_son_ride',
  'son_ride_back',
  'ride_back_home',
  'back_home_impli',
  'home_impli_shed',
  'impli_shed_home',
  'shed_home_left',
  'home_left_around',
  'left_around_roll',
  'around_roll_around',
  'roll_around_still',
  'around_still_home',
  'still_home_text',
  'home_text_apolog',
  'text_apolog_say',
  'apolog_say_friend',
  'say_friend_son',
  'friend_son_actual',
  'son_actual_next',
  'actual_next_town',
  'next_town_mayb',
  'town_mayb_minut',
  'mayb_minut_away',
  'minut_away_come',
  'away_come_home',
  'come_home_roll',
  'home_roll_around',
  'roll_around_still',
  'around_still_come',
  'still_come_home',
  'come_home_call',
  'home_call_answer',
  'call_answer_text',
  'answer_text_respons',
  'text_respons_get',
  'respons_get_upset',
  'get_upset_roll',
  'upset_roll_around',
  'roll_around_still',
  'around_still_respons',
  'still_respons_answer',
  'respons_answer_phone',
  'answer_phone_call',
  'phone_call_extrem',
  'call_extrem_angri',
  'extrem_angri_roll',
  'angri_roll_around',
  'roll_around_anger',
  'around_anger_complet',
  'anger_complet_transform',
  'complet_transform_worri',
  'transform_worri_answer',
  'worri_answer_call',
  'answer_call_text',
  'call_text_read',
  'text_read_around',
  'read_around_call',
  'around_call_polic',
  'call_polic_alway',
  'polic_alway_heard',
  'alway_heard_first',
  'heard_first_hour',
  'first_hour_someon',
  'hour_someon_miss',
  'someon_miss_import',
  'miss_import_want',
  'import_want_delay',
  'want_delay_ask',
  'delay_ask_let',
  'ask_let_know',
  'let_know_traffic',
  'know_traffic_accid',
  'traffic_accid_involv',
  'accid_involv_car',
  'involv_car_oper',
  'car_oper_told',
  'oper_told_would',
  'told_would_put',
  'would_put_word',
  'put_word_send',
  'word_send_cop',
  'send_cop_check',
  'cop_check_along',
  'check_along_rout',
  'along_rout_would',
  'rout_would_travel',
  'would_travel_call',
  'travel_call_hospit',
  'call_hospit_area',
  'hospit_area_check',
  'area_check_check',
  'check_check_wait',
  'check_wait_outsid',
  'wait_outsid_watch',
  'outsid_watch_road',
  'watch_road_car',
  'road_car_three',
  'car_three_hour',
  'three_hour_partial',
  'hour_partial_want',
  'partial_want_kid',
  'want_kid_hear',
  'kid_hear_phone',
  'hear_phone_hospit',
  'phone_hospit_secondli',
  'hospit_secondli_sick',
  'secondli_sick_worri',
  'sick_worri_came',
  'worri_came_home',
  'came_home_apolog',
  'home_apolog_said',
  'apolog_said_excus',
  'said_excus_drive',
  'excus_drive_home',
  'drive_home_felt',
  'home_felt_tire',
  'felt_tire_like',
  'tire_like_fall',
  'like_fall_asleep',
  'fall_asleep_wheel',
  'asleep_wheel_pull',
  'wheel_pull_side',
  'pull_side_road',
  'side_road_sleep',
  'road_sleep_found',
  'sleep_found_brand',
  'found_brand_new',
  'brand_new_phone',
  'new_phone_stop',
  'phone_stop_work',
  'stop_work_say',
  'work_say_nap',
  'say_nap_anyway',
  'nap_anyway_respons',
  'anyway_respons_thing',
  'respons_thing_came',
  'thing_came_home',
  'came_home_bring',
  'home_bring_kid',
  'bring_kid_school',
  'kid_school_get',
  'school_get_work',
  'get_work_time',
  'work_time_immedi',
  'time_immedi_call',
  'immedi_call_polic',
  'call_polic_told',
  'polic_told_come',
  'told_come_home',
  'come_home_safe',
  'home_safe_gave',
  'safe_gave_case',
  'gave_case_number',
  'case_number_told',
  'number_told_stop',
  'told_stop_search',
  'stop_search_fjanc',
  'search_fjanc_brought',
  'fjanc_brought_kid',
  'brought_kid_school',
  'kid_school_left',
  'school_left_work',
  'left_work_set',
  'work_set_start',
  'set_start_clean',
  'start_clean_clean',
  'clean_clean_destress',
  'clean_destress_sometim',
  'destress_sometim_got',
  'sometim_got_call',
  'got_call_policeman',
  'call_policeman_ask',
  'policeman_ask_work',
  'ask_work_told',
  'work_told_ask',
  'told_ask_inform',
  'ask_inform_polici',
  'inform_polici_check',
  'polici_check_person',
  'check_person_well',
  'person_well_miss',
  'well_miss_person',
  'miss_person_found',
  'person_found_ask',
  'found_ask_go',
  'ask_go_work',
  'go_work_give',
  'work_give_call',
  'give_call_instead',
  'call_instead_said',
  'instead_said_promis',
  'said_promis_fianc',
  'promis_fianc_rel',
  'fianc_rel_new',
  'rel_new_job',
  'new_job_polic',
  'job_polic_offic',
  'polic_offic_show',
  'offic_show_ask',
  'show_ask_speak',
  'ask_speak_enrag',
  'speak_enrag_call',
  'enrag_call_polic',
  'call_polic_send',
  'polic_send_cop',
  'send_cop_work',
  'cop_work_make',
  'work_make_look',
  'make_look_bad',
  'look_bad_say',
  'bad_say_overreact',
  'say_overreact_miss',
  'overreact_miss_punish',
  'miss_punish_respons',
  'punish_respons_thing',
  'respons_thing_drive',
  'thing_drive_drowsi',
  'drive_drowsi_say',
  'drowsi_say_never',
  'say_never_go',
  'never_go_leav',
  'go_leav_hous',
  'leav_hous_except',
  'hous_except_work',
  'except_work_afraid',
  'work_afraid_im',
  'afraid_im_go',
  'im_go_call',
  'go_call_cop',
  'call_cop_overreact',
  'cop_overreact_wait',
  'overreact_wait_two',
  'wait_two_day',
  'two_day_like',
  'day_like_suggest'],
 ['sil',
  'children',
  'oldest',
  'birthday',
  'last',
  'week',
  'son',
  'went',
  'bought',
  'swing',
  'hammock',
  'chair',
  'want',
  'year',
  'cost',
  'quit',
  'bit',
  'save',
  'money',
  'fulli',
  'intend',
  'put',
  'back',
  'bank',
  'account',
  'continu',
  'save',
  'excit',
  'see',
  'open',
  'gift',
  'wait',
  'help',
  'set',
  'told',
  'lot',
  'money',
  'respons',
  'never',
  'get',
  'anyth',
  'nice',
  'want',
  'true',
  'usual',
  'get',
  'anyth',
  'birthday',
  'christmas',
  'outsid',
  'tupperwar',
  'soap',
  'might',
  'sound',
  'stupid',
  'cherish',
  'swing',
  'ever',
  'sinc',
  'got',
  'especi',
  'final',
  'someth',
  'nice',
  'mine',
  'sil',
  'come',
  'week',
  'see',
  'us',
  'immedi',
  'head',
  'straight',
  'swing',
  'son',
  'hook',
  'deck',
  'told',
  'pleas',
  'sit',
  'said',
  'weight',
  'limit',
  'told',
  'ye',
  'lb',
  'even',
  'show',
  'box',
  'confirm',
  'upset',
  'said',
  'bummer',
  'need',
  'make',
  'someth',
  'capabl',
  'hold',
  'us',
  'big',
  'girl',
  'simpli',
  'agre',
  'went',
  'busi',
  'point',
  'husband',
  'show',
  'work',
  'went',
  'insid',
  'grab',
  'us',
  'drink',
  'husband',
  'talk',
  'porch',
  'even',
  'minut',
  'later',
  'hear',
  'loud',
  'crash',
  'husband',
  'say',
  'fuck',
  'alright',
  'go',
  'sure',
  'enough',
  'sat',
  'swing',
  'crochet',
  'net',
  'around',
  'hook',
  'snap',
  'one',
  'side',
  'caus',
  'fall',
  'right',
  'ass',
  'sit',
  'laugh',
  'get',
  'say',
  'guess',
  'need',
  'learn',
  'listen',
  'lost',
  'said',
  'liter',
  'never',
  'get',
  'anyth',
  'nice',
  'never',
  'one',
  'thing',
  'mine',
  'even',
  'take',
  'someon',
  'freak',
  'week',
  'ruin',
  'said',
  'liter',
  'fuck',
  'told',
  'even',
  'minut',
  'ago',
  'would',
  'hold',
  'pleas',
  'fuck',
  'sit',
  'make',
  'comment',
  'usual',
  'weight',
  'limit',
  'lie',
  'thought',
  'would',
  'hold',
  'said',
  'weight',
  'limit',
  'probabl',
  'would',
  'held',
  'lb',
  'heavier',
  'ish',
  'lb',
  'one',
  'girl',
  'eat',
  'food',
  'camera',
  'money',
  'absolut',
  'love',
  'weight',
  'regardless',
  'instead',
  'apolog',
  'offer',
  'compens',
  'destroy',
  'item',
  'resort',
  'say',
  'im',
  'shit',
  'bag',
  'make',
  'feel',
  'like',
  'weight',
  'problem',
  'husband',
  'side',
  'fuck',
  'swing',
  'aita',
  'sil_children',
  'children_oldest',
  'oldest_birthday',
  'birthday_last',
  'last_week',
  'week_son',
  'son_went',
  'went_bought',
  'bought_swing',
  'swing_hammock',
  'hammock_chair',
  'chair_want',
  'want_year',
  'year_cost',
  'cost_quit',
  'quit_bit',
  'bit_save',
  'save_money',
  'money_fulli',
  'fulli_intend',
  'intend_put',
  'put_back',
  'back_bank',
  'bank_account',
  'account_continu',
  'continu_save',
  'save_excit',
  'excit_see',
  'see_open',
  'open_gift',
  'gift_wait',
  'wait_help',
  'help_set',
  'set_told',
  'told_lot',
  'lot_money',
  'money_respons',
  'respons_never',
  'never_get',
  'get_anyth',
  'anyth_nice',
  'nice_want',
  'want_true',
  'true_usual',
  'usual_get',
  'get_anyth',
  'anyth_birthday',
  'birthday_christmas',
  'christmas_outsid',
  'outsid_tupperwar',
  'tupperwar_soap',
  'soap_might',
  'might_sound',
  'sound_stupid',
  'stupid_cherish',
  'cherish_swing',
  'swing_ever',
  'ever_sinc',
  'sinc_got',
  'got_especi',
  'especi_final',
  'final_someth',
  'someth_nice',
  'nice_mine',
  'mine_sil',
  'sil_come',
  'come_week',
  'week_see',
  'see_us',
  'us_immedi',
  'immedi_head',
  'head_straight',
  'straight_swing',
  'swing_son',
  'son_hook',
  'hook_deck',
  'deck_told',
  'told_pleas',
  'pleas_sit',
  'sit_said',
  'said_weight',
  'weight_limit',
  'limit_told',
  'told_ye',
  'ye_lb',
  'lb_even',
  'even_show',
  'show_box',
  'box_confirm',
  'confirm_upset',
  'upset_said',
  'said_bummer',
  'bummer_need',
  'need_make',
  'make_someth',
  'someth_capabl',
  'capabl_hold',
  'hold_us',
  'us_big',
  'big_girl',
  'girl_simpli',
  'simpli_agre',
  'agre_went',
  'went_busi',
  'busi_point',
  'point_husband',
  'husband_show',
  'show_work',
  'work_went',
  'went_insid',
  'insid_grab',
  'grab_us',
  'us_drink',
  'drink_husband',
  'husband_talk',
  'talk_porch',
  'porch_even',
  'even_minut',
  'minut_later',
  'later_hear',
  'hear_loud',
  'loud_crash',
  'crash_husband',
  'husband_say',
  'say_fuck',
  'fuck_alright',
  'alright_go',
  'go_sure',
  'sure_enough',
  'enough_sat',
  'sat_swing',
  'swing_crochet',
  'crochet_net',
  'net_around',
  'around_hook',
  'hook_snap',
  'snap_one',
  'one_side',
  'side_caus',
  'caus_fall',
  'fall_right',
  'right_ass',
  'ass_sit',
  'sit_laugh',
  'laugh_get',
  'get_say',
  'say_guess',
  'guess_need',
  'need_learn',
  'learn_listen',
  'listen_lost',
  'lost_said',
  'said_liter',
  'liter_never',
  'never_get',
  'get_anyth',
  'anyth_nice',
  'nice_never',
  'never_one',
  'one_thing',
  'thing_mine',
  'mine_even',
  'even_take',
  'take_someon',
  'someon_freak',
  'freak_week',
  'week_ruin',
  'ruin_said',
  'said_liter',
  'liter_fuck',
  'fuck_told',
  'told_even',
  'even_minut',
  'minut_ago',
  'ago_would',
  'would_hold',
  'hold_pleas',
  'pleas_fuck',
  'fuck_sit',
  'sit_make',
  'make_comment',
  'comment_usual',
  'usual_weight',
  'weight_limit',
  'limit_lie',
  'lie_thought',
  'thought_would',
  'would_hold',
  'hold_said',
  'said_weight',
  'weight_limit',
  'limit_probabl',
  'probabl_would',
  'would_held',
  'held_lb',
  'lb_heavier',
  'heavier_ish',
  'ish_lb',
  'lb_one',
  'one_girl',
  'girl_eat',
  'eat_food',
  'food_camera',
  'camera_money',
  'money_absolut',
  'absolut_love',
  'love_weight',
  'weight_regardless',
  'regardless_instead',
  'instead_apolog',
  'apolog_offer',
  'offer_compens',
  'compens_destroy',
  'destroy_item',
  'item_resort',
  'resort_say',
  'say_im',
  'im_shit',
  'shit_bag',
  'bag_make',
  'make_feel',
  'feel_like',
  'like_weight',
  'weight_problem',
  'problem_husband',
  'husband_side',
  'side_fuck',
  'fuck_swing',
  'swing_aita',
  'sil_children_oldest',
  'children_oldest_birthday',
  'oldest_birthday_last',
  'birthday_last_week',
  'last_week_son',
  'week_son_went',
  'son_went_bought',
  'went_bought_swing',
  'bought_swing_hammock',
  'swing_hammock_chair',
  'hammock_chair_want',
  'chair_want_year',
  'want_year_cost',
  'year_cost_quit',
  'cost_quit_bit',
  'quit_bit_save',
  'bit_save_money',
  'save_money_fulli',
  'money_fulli_intend',
  'fulli_intend_put',
  'intend_put_back',
  'put_back_bank',
  'back_bank_account',
  'bank_account_continu',
  'account_continu_save',
  'continu_save_excit',
  'save_excit_see',
  'excit_see_open',
  'see_open_gift',
  'open_gift_wait',
  'gift_wait_help',
  'wait_help_set',
  'help_set_told',
  'set_told_lot',
  'told_lot_money',
  'lot_money_respons',
  'money_respons_never',
  'respons_never_get',
  'never_get_anyth',
  'get_anyth_nice',
  'anyth_nice_want',
  'nice_want_true',
  'want_true_usual',
  'true_usual_get',
  'usual_get_anyth',
  'get_anyth_birthday',
  'anyth_birthday_christmas',
  'birthday_christmas_outsid',
  'christmas_outsid_tupperwar',
  'outsid_tupperwar_soap',
  'tupperwar_soap_might',
  'soap_might_sound',
  'might_sound_stupid',
  'sound_stupid_cherish',
  'stupid_cherish_swing',
  'cherish_swing_ever',
  'swing_ever_sinc',
  'ever_sinc_got',
  'sinc_got_especi',
  'got_especi_final',
  'especi_final_someth',
  'final_someth_nice',
  'someth_nice_mine',
  'nice_mine_sil',
  'mine_sil_come',
  'sil_come_week',
  'come_week_see',
  'week_see_us',
  'see_us_immedi',
  'us_immedi_head',
  'immedi_head_straight',
  'head_straight_swing',
  'straight_swing_son',
  'swing_son_hook',
  'son_hook_deck',
  'hook_deck_told',
  'deck_told_pleas',
  'told_pleas_sit',
  'pleas_sit_said',
  'sit_said_weight',
  'said_weight_limit',
  'weight_limit_told',
  'limit_told_ye',
  'told_ye_lb',
  'ye_lb_even',
  'lb_even_show',
  'even_show_box',
  'show_box_confirm',
  'box_confirm_upset',
  'confirm_upset_said',
  'upset_said_bummer',
  'said_bummer_need',
  'bummer_need_make',
  'need_make_someth',
  'make_someth_capabl',
  'someth_capabl_hold',
  'capabl_hold_us',
  'hold_us_big',
  'us_big_girl',
  'big_girl_simpli',
  'girl_simpli_agre',
  'simpli_agre_went',
  'agre_went_busi',
  'went_busi_point',
  'busi_point_husband',
  'point_husband_show',
  'husband_show_work',
  'show_work_went',
  'work_went_insid',
  'went_insid_grab',
  'insid_grab_us',
  'grab_us_drink',
  'us_drink_husband',
  'drink_husband_talk',
  'husband_talk_porch',
  'talk_porch_even',
  'porch_even_minut',
  'even_minut_later',
  'minut_later_hear',
  'later_hear_loud',
  'hear_loud_crash',
  'loud_crash_husband',
  'crash_husband_say',
  'husband_say_fuck',
  'say_fuck_alright',
  'fuck_alright_go',
  'alright_go_sure',
  'go_sure_enough',
  'sure_enough_sat',
  'enough_sat_swing',
  'sat_swing_crochet',
  'swing_crochet_net',
  'crochet_net_around',
  'net_around_hook',
  'around_hook_snap',
  'hook_snap_one',
  'snap_one_side',
  'one_side_caus',
  'side_caus_fall',
  'caus_fall_right',
  'fall_right_ass',
  'right_ass_sit',
  'ass_sit_laugh',
  'sit_laugh_get',
  'laugh_get_say',
  'get_say_guess',
  'say_guess_need',
  'guess_need_learn',
  'need_learn_listen',
  'learn_listen_lost',
  'listen_lost_said',
  'lost_said_liter',
  'said_liter_never',
  'liter_never_get',
  'never_get_anyth',
  'get_anyth_nice',
  'anyth_nice_never',
  'nice_never_one',
  'never_one_thing',
  'one_thing_mine',
  'thing_mine_even',
  'mine_even_take',
  'even_take_someon',
  'take_someon_freak',
  'someon_freak_week',
  'freak_week_ruin',
  'week_ruin_said',
  'ruin_said_liter',
  'said_liter_fuck',
  'liter_fuck_told',
  'fuck_told_even',
  'told_even_minut',
  'even_minut_ago',
  'minut_ago_would',
  'ago_would_hold',
  'would_hold_pleas',
  'hold_pleas_fuck',
  'pleas_fuck_sit',
  'fuck_sit_make',
  'sit_make_comment',
  'make_comment_usual',
  'comment_usual_weight',
  'usual_weight_limit',
  'weight_limit_lie',
  'limit_lie_thought',
  'lie_thought_would',
  'thought_would_hold',
  'would_hold_said',
  'hold_said_weight',
  'said_weight_limit',
  'weight_limit_probabl',
  'limit_probabl_would',
  'probabl_would_held',
  'would_held_lb',
  'held_lb_heavier',
  'lb_heavier_ish',
  'heavier_ish_lb',
  'ish_lb_one',
  'lb_one_girl',
  'one_girl_eat',
  'girl_eat_food',
  'eat_food_camera',
  'food_camera_money',
  'camera_money_absolut',
  'money_absolut_love',
  'absolut_love_weight',
  'love_weight_regardless',
  'weight_regardless_instead',
  'regardless_instead_apolog',
  'instead_apolog_offer',
  'apolog_offer_compens',
  'offer_compens_destroy',
  'compens_destroy_item',
  'destroy_item_resort',
  'item_resort_say',
  'resort_say_im',
  'say_im_shit',
  'im_shit_bag',
  'shit_bag_make',
  'bag_make_feel',
  'make_feel_like',
  'feel_like_weight',
  'like_weight_problem',
  'weight_problem_husband',
  'problem_husband_side',
  'husband_side_fuck',
  'side_fuck_swing',
  'fuck_swing_aita'],
 ['brother',
  'kevin',
  'singl',
  'dad',
  'yo',
  'kevin',
  'live',
  'citi',
  'famili',
  'rel',
  'friend',
  'kevin',
  'habit',
  'dump',
  'kid',
  'random',
  'time',
  'watch',
  'goe',
  'date',
  'women',
  'far',
  'gone',
  'date',
  'expect',
  'watch',
  'nephew',
  'bother',
  'work',
  'commit',
  'im',
  'nurs',
  'schedul',
  'unpredict',
  'caus',
  'issu',
  'work',
  'drop',
  'kid',
  'hous',
  'without',
  'tell',
  'first',
  'last',
  'week',
  'came',
  'pm',
  'enter',
  'hous',
  'nephew',
  'spare',
  'key',
  'shower',
  'left',
  'hous',
  'immedi',
  'got',
  'shower',
  'shock',
  'see',
  'nephew',
  'stand',
  'alon',
  'ask',
  'dad',
  'said',
  'left',
  'knew',
  'want',
  'watch',
  'nephew',
  'call',
  'sever',
  'time',
  'phone',
  'pick',
  'mad',
  'almost',
  'freak',
  'get',
  'late',
  'shift',
  'sent',
  'text',
  'tell',
  'come',
  'pick',
  'son',
  'right',
  'id',
  'call',
  'cop',
  'child',
  'abandon',
  'text',
  'back',
  'beg',
  'suck',
  'time',
  'import',
  'date',
  'leav',
  'middl',
  'told',
  'seriou',
  'id',
  'gave',
  'minut',
  'get',
  'home',
  'got',
  'home',
  'look',
  'piss',
  'start',
  'yell',
  'ruin',
  'date',
  'make',
  'leav',
  'middl',
  'bother',
  'skip',
  'one',
  'damn',
  'shift',
  'watch',
  'nephew',
  'told',
  'never',
  'agre',
  'watch',
  'son',
  'made',
  'said',
  'emerg',
  'made',
  'laugh',
  'call',
  'date',
  'night',
  'emerg',
  'absurd',
  'long',
  'stori',
  'short',
  'left',
  'nephew',
  'stop',
  'blame',
  'spoil',
  'date',
  'probabl',
  'caus',
  'damag',
  'relationship',
  'potenti',
  'girlfriend',
  'week',
  'still',
  'salti',
  'demand',
  'make',
  'call',
  'date',
  'lie',
  'tell',
  'sob',
  'stori',
  'leav',
  'like',
  'said',
  'aita',
  'brother_kevin',
  'kevin_singl',
  'singl_dad',
  'dad_yo',
  'yo_kevin',
  'kevin_live',
  'live_citi',
  'citi_famili',
  'famili_rel',
  'rel_friend',
  'friend_kevin',
  'kevin_habit',
  'habit_dump',
  'dump_kid',
  'kid_random',
  'random_time',
  'time_watch',
  'watch_goe',
  'goe_date',
  'date_women',
  'women_far',
  'far_gone',
  'gone_date',
  'date_expect',
  'expect_watch',
  'watch_nephew',
  'nephew_bother',
  'bother_work',
  'work_commit',
  'commit_im',
  'im_nurs',
  'nurs_schedul',
  'schedul_unpredict',
  'unpredict_caus',
  'caus_issu',
  'issu_work',
  'work_drop',
  'drop_kid',
  'kid_hous',
  'hous_without',
  'without_tell',
  'tell_first',
  'first_last',
  'last_week',
  'week_came',
  'came_pm',
  'pm_enter',
  'enter_hous',
  'hous_nephew',
  'nephew_spare',
  'spare_key',
  'key_shower',
  'shower_left',
  'left_hous',
  'hous_immedi',
  'immedi_got',
  'got_shower',
  'shower_shock',
  'shock_see',
  'see_nephew',
  'nephew_stand',
  'stand_alon',
  'alon_ask',
  'ask_dad',
  'dad_said',
  'said_left',
  'left_knew',
  'knew_want',
  'want_watch',
  'watch_nephew',
  'nephew_call',
  'call_sever',
  'sever_time',
  'time_phone',
  'phone_pick',
  'pick_mad',
  'mad_almost',
  'almost_freak',
  'freak_get',
  'get_late',
  'late_shift',
  'shift_sent',
  'sent_text',
  'text_tell',
  'tell_come',
  'come_pick',
  'pick_son',
  'son_right',
  'right_id',
  'id_call',
  'call_cop',
  'cop_child',
  'child_abandon',
  'abandon_text',
  'text_back',
  'back_beg',
  'beg_suck',
  'suck_time',
  'time_import',
  'import_date',
  'date_leav',
  'leav_middl',
  'middl_told',
  'told_seriou',
  'seriou_id',
  'id_gave',
  'gave_minut',
  'minut_get',
  'get_home',
  'home_got',
  'got_home',
  'home_look',
  'look_piss',
  'piss_start',
  'start_yell',
  'yell_ruin',
  'ruin_date',
  'date_make',
  'make_leav',
  'leav_middl',
  'middl_bother',
  'bother_skip',
  'skip_one',
  'one_damn',
  'damn_shift',
  'shift_watch',
  'watch_nephew',
  'nephew_told',
  'told_never',
  'never_agre',
  'agre_watch',
  'watch_son',
  'son_made',
  'made_said',
  'said_emerg',
  'emerg_made',
  'made_laugh',
  'laugh_call',
  'call_date',
  'date_night',
  'night_emerg',
  'emerg_absurd',
  'absurd_long',
  'long_stori',
  'stori_short',
  'short_left',
  'left_nephew',
  'nephew_stop',
  'stop_blame',
  'blame_spoil',
  'spoil_date',
  'date_probabl',
  'probabl_caus',
  'caus_damag',
  'damag_relationship',
  'relationship_potenti',
  'potenti_girlfriend',
  'girlfriend_week',
  'week_still',
  'still_salti',
  'salti_demand',
  'demand_make',
  'make_call',
  'call_date',
  'date_lie',
  'lie_tell',
  'tell_sob',
  'sob_stori',
  'stori_leav',
  'leav_like',
  'like_said',
  'said_aita',
  'brother_kevin_singl',
  'kevin_singl_dad',
  'singl_dad_yo',
  'dad_yo_kevin',
  'yo_kevin_live',
  'kevin_live_citi',
  'live_citi_famili',
  'citi_famili_rel',
  'famili_rel_friend',
  'rel_friend_kevin',
  'friend_kevin_habit',
  'kevin_habit_dump',
  'habit_dump_kid',
  'dump_kid_random',
  'kid_random_time',
  'random_time_watch',
  'time_watch_goe',
  'watch_goe_date',
  'goe_date_women',
  'date_women_far',
  'women_far_gone',
  'far_gone_date',
  'gone_date_expect',
  'date_expect_watch',
  'expect_watch_nephew',
  'watch_nephew_bother',
  'nephew_bother_work',
  'bother_work_commit',
  'work_commit_im',
  'commit_im_nurs',
  'im_nurs_schedul',
  'nurs_schedul_unpredict',
  'schedul_unpredict_caus',
  'unpredict_caus_issu',
  'caus_issu_work',
  'issu_work_drop',
  'work_drop_kid',
  'drop_kid_hous',
  'kid_hous_without',
  'hous_without_tell',
  'without_tell_first',
  'tell_first_last',
  'first_last_week',
  'last_week_came',
  'week_came_pm',
  'came_pm_enter',
  'pm_enter_hous',
  'enter_hous_nephew',
  'hous_nephew_spare',
  'nephew_spare_key',
  'spare_key_shower',
  'key_shower_left',
  'shower_left_hous',
  'left_hous_immedi',
  'hous_immedi_got',
  'immedi_got_shower',
  'got_shower_shock',
  'shower_shock_see',
  'shock_see_nephew',
  'see_nephew_stand',
  'nephew_stand_alon',
  'stand_alon_ask',
  'alon_ask_dad',
  'ask_dad_said',
  'dad_said_left',
  'said_left_knew',
  'left_knew_want',
  'knew_want_watch',
  'want_watch_nephew',
  'watch_nephew_call',
  'nephew_call_sever',
  'call_sever_time',
  'sever_time_phone',
  'time_phone_pick',
  'phone_pick_mad',
  'pick_mad_almost',
  'mad_almost_freak',
  'almost_freak_get',
  'freak_get_late',
  'get_late_shift',
  'late_shift_sent',
  'shift_sent_text',
  'sent_text_tell',
  'text_tell_come',
  'tell_come_pick',
  'come_pick_son',
  'pick_son_right',
  'son_right_id',
  'right_id_call',
  'id_call_cop',
  'call_cop_child',
  'cop_child_abandon',
  'child_abandon_text',
  'abandon_text_back',
  'text_back_beg',
  'back_beg_suck',
  'beg_suck_time',
  'suck_time_import',
  'time_import_date',
  'import_date_leav',
  'date_leav_middl',
  'leav_middl_told',
  'middl_told_seriou',
  'told_seriou_id',
  'seriou_id_gave',
  'id_gave_minut',
  'gave_minut_get',
  'minut_get_home',
  'get_home_got',
  'home_got_home',
  'got_home_look',
  'home_look_piss',
  'look_piss_start',
  'piss_start_yell',
  'start_yell_ruin',
  'yell_ruin_date',
  'ruin_date_make',
  'date_make_leav',
  'make_leav_middl',
  'leav_middl_bother',
  'middl_bother_skip',
  'bother_skip_one',
  'skip_one_damn',
  'one_damn_shift',
  'damn_shift_watch',
  'shift_watch_nephew',
  'watch_nephew_told',
  'nephew_told_never',
  'told_never_agre',
  'never_agre_watch',
  'agre_watch_son',
  'watch_son_made',
  'son_made_said',
  'made_said_emerg',
  'said_emerg_made',
  'emerg_made_laugh',
  'made_laugh_call',
  'laugh_call_date',
  'call_date_night',
  'date_night_emerg',
  'night_emerg_absurd',
  'emerg_absurd_long',
  'absurd_long_stori',
  'long_stori_short',
  'stori_short_left',
  'short_left_nephew',
  'left_nephew_stop',
  'nephew_stop_blame',
  'stop_blame_spoil',
  'blame_spoil_date',
  'spoil_date_probabl',
  'date_probabl_caus',
  'probabl_caus_damag',
  'caus_damag_relationship',
  'damag_relationship_potenti',
  'relationship_potenti_girlfriend',
  'potenti_girlfriend_week',
  'girlfriend_week_still',
  'week_still_salti',
  'still_salti_demand',
  'salti_demand_make',
  'demand_make_call',
  'make_call_date',
  'call_date_lie',
  'date_lie_tell',
  'lie_tell_sob',
  'tell_sob_stori',
  'sob_stori_leav',
  'stori_leav_like',
  'leav_like_said',
  'like_said_aita'],
 ['recent',
  'took',
  'sister',
  'park',
  'close',
  'hous',
  'pretti',
  'excit',
  'go',
  'dad',
  'bought',
  'bicycl',
  'want',
  'tri',
  'arriv',
  'ladi',
  'son',
  'daughter',
  'made',
  'eye',
  'contact',
  'ladi',
  'smile',
  'wave',
  'nice',
  'minut',
  'sister',
  'play',
  'swing',
  'got',
  'scare',
  'want',
  'ride',
  'bicycl',
  'anymor',
  'look',
  'away',
  'second',
  'say',
  'hello',
  'uncl',
  'sinc',
  'live',
  'close',
  'us',
  'pass',
  'turn',
  'head',
  'around',
  'check',
  'sister',
  'saw',
  'cri',
  'ladi',
  'son',
  'use',
  'sister',
  'bike',
  'approach',
  'kid',
  'polit',
  'ask',
  'pleas',
  'leav',
  'bike',
  'alon',
  'use',
  'kid',
  'brought',
  'bike',
  'ignor',
  'continu',
  'play',
  'bike',
  'decid',
  'go',
  'ladi',
  'ask',
  'could',
  'talk',
  'son',
  'respond',
  'kid',
  'fun',
  'use',
  'bike',
  'see',
  'problem',
  'respond',
  'im',
  'awar',
  'use',
  'bike',
  'kid',
  'bike',
  'see',
  'reason',
  'use',
  'start',
  'go',
  'reason',
  'talk',
  'like',
  'go',
  'around',
  'get',
  'girl',
  'pregnant',
  'insinu',
  'sister',
  'daughter',
  'point',
  'piss',
  'want',
  'deal',
  'ladi',
  'angrili',
  'said',
  'ladi',
  'sister',
  'believ',
  'right',
  'talk',
  'consid',
  'im',
  'littl',
  'bitch',
  'im',
  'go',
  'ask',
  'go',
  'tell',
  'littl',
  'rat',
  'get',
  'sister',
  'bike',
  'got',
  'told',
  'kid',
  'get',
  'car',
  'later',
  'got',
  'home',
  'told',
  'mom',
  'think',
  'would',
  'see',
  'funni',
  'stori',
  'boy',
  'wrong',
  'start',
  'go',
  'rude',
  'ladi',
  'need',
  'learn',
  'respect',
  'elder',
  'asshol',
  'recent_took',
  'took_sister',
  'sister_park',
  'park_close',
  'close_hous',
  'hous_pretti',
  'pretti_excit',
  'excit_go',
  'go_dad',
  'dad_bought',
  'bought_bicycl',
  'bicycl_want',
  'want_tri',
  'tri_arriv',
  'arriv_ladi',
  'ladi_son',
  'son_daughter',
  'daughter_made',
  'made_eye',
  'eye_contact',
  'contact_ladi',
  'ladi_smile',
  'smile_wave',
  'wave_nice',
  'nice_minut',
  'minut_sister',
  'sister_play',
  'play_swing',
  'swing_got',
  'got_scare',
  'scare_want',
  'want_ride',
  'ride_bicycl',
  'bicycl_anymor',
  'anymor_look',
  'look_away',
  'away_second',
  'second_say',
  'say_hello',
  'hello_uncl',
  'uncl_sinc',
  'sinc_live',
  'live_close',
  'close_us',
  'us_pass',
  'pass_turn',
  'turn_head',
  'head_around',
  'around_check',
  'check_sister',
  'sister_saw',
  'saw_cri',
  'cri_ladi',
  'ladi_son',
  'son_use',
  'use_sister',
  'sister_bike',
  'bike_approach',
  'approach_kid',
  'kid_polit',
  'polit_ask',
  'ask_pleas',
  'pleas_leav',
  'leav_bike',
  'bike_alon',
  'alon_use',
  'use_kid',
  'kid_brought',
  'brought_bike',
  'bike_ignor',
  'ignor_continu',
  'continu_play',
  'play_bike',
  'bike_decid',
  'decid_go',
  'go_ladi',
  'ladi_ask',
  'ask_could',
  'could_talk',
  'talk_son',
  'son_respond',
  'respond_kid',
  'kid_fun',
  'fun_use',
  'use_bike',
  'bike_see',
  'see_problem',
  'problem_respond',
  'respond_im',
  'im_awar',
  'awar_use',
  'use_bike',
  'bike_kid',
  'kid_bike',
  'bike_see',
  'see_reason',
  'reason_use',
  'use_start',
  'start_go',
  'go_reason',
  'reason_talk',
  'talk_like',
  'like_go',
  'go_around',
  'around_get',
  'get_girl',
  'girl_pregnant',
  'pregnant_insinu',
  'insinu_sister',
  'sister_daughter',
  'daughter_point',
  'point_piss',
  'piss_want',
  'want_deal',
  'deal_ladi',
  'ladi_angrili',
  'angrili_said',
  'said_ladi',
  'ladi_sister',
  'sister_believ',
  'believ_right',
  'right_talk',
  'talk_consid',
  'consid_im',
  'im_littl',
  'littl_bitch',
  'bitch_im',
  'im_go',
  'go_ask',
  'ask_go',
  'go_tell',
  'tell_littl',
  'littl_rat',
  'rat_get',
  'get_sister',
  'sister_bike',
  'bike_got',
  'got_told',
  'told_kid',
  'kid_get',
  'get_car',
  'car_later',
  'later_got',
  'got_home',
  'home_told',
  'told_mom',
  'mom_think',
  'think_would',
  'would_see',
  'see_funni',
  'funni_stori',
  'stori_boy',
  'boy_wrong',
  'wrong_start',
  'start_go',
  'go_rude',
  'rude_ladi',
  'ladi_need',
  'need_learn',
  'learn_respect',
  'respect_elder',
  'elder_asshol',
  'recent_took_sister',
  'took_sister_park',
  'sister_park_close',
  'park_close_hous',
  'close_hous_pretti',
  'hous_pretti_excit',
  'pretti_excit_go',
  'excit_go_dad',
  'go_dad_bought',
  'dad_bought_bicycl',
  'bought_bicycl_want',
  'bicycl_want_tri',
  'want_tri_arriv',
  'tri_arriv_ladi',
  'arriv_ladi_son',
  'ladi_son_daughter',
  'son_daughter_made',
  'daughter_made_eye',
  'made_eye_contact',
  'eye_contact_ladi',
  'contact_ladi_smile',
  'ladi_smile_wave',
  'smile_wave_nice',
  'wave_nice_minut',
  'nice_minut_sister',
  'minut_sister_play',
  'sister_play_swing',
  'play_swing_got',
  'swing_got_scare',
  'got_scare_want',
  'scare_want_ride',
  'want_ride_bicycl',
  'ride_bicycl_anymor',
  'bicycl_anymor_look',
  'anymor_look_away',
  'look_away_second',
  'away_second_say',
  'second_say_hello',
  'say_hello_uncl',
  'hello_uncl_sinc',
  'uncl_sinc_live',
  'sinc_live_close',
  'live_close_us',
  'close_us_pass',
  'us_pass_turn',
  'pass_turn_head',
  'turn_head_around',
  'head_around_check',
  'around_check_sister',
  'check_sister_saw',
  'sister_saw_cri',
  'saw_cri_ladi',
  'cri_ladi_son',
  'ladi_son_use',
  'son_use_sister',
  'use_sister_bike',
  'sister_bike_approach',
  'bike_approach_kid',
  'approach_kid_polit',
  'kid_polit_ask',
  'polit_ask_pleas',
  'ask_pleas_leav',
  'pleas_leav_bike',
  'leav_bike_alon',
  'bike_alon_use',
  'alon_use_kid',
  'use_kid_brought',
  'kid_brought_bike',
  'brought_bike_ignor',
  'bike_ignor_continu',
  'ignor_continu_play',
  'continu_play_bike',
  'play_bike_decid',
  'bike_decid_go',
  'decid_go_ladi',
  'go_ladi_ask',
  'ladi_ask_could',
  'ask_could_talk',
  'could_talk_son',
  'talk_son_respond',
  'son_respond_kid',
  'respond_kid_fun',
  'kid_fun_use',
  'fun_use_bike',
  'use_bike_see',
  'bike_see_problem',
  'see_problem_respond',
  'problem_respond_im',
  'respond_im_awar',
  'im_awar_use',
  'awar_use_bike',
  'use_bike_kid',
  'bike_kid_bike',
  'kid_bike_see',
  'bike_see_reason',
  'see_reason_use',
  'reason_use_start',
  'use_start_go',
  'start_go_reason',
  'go_reason_talk',
  'reason_talk_like',
  'talk_like_go',
  'like_go_around',
  'go_around_get',
  'around_get_girl',
  'get_girl_pregnant',
  'girl_pregnant_insinu',
  'pregnant_insinu_sister',
  'insinu_sister_daughter',
  'sister_daughter_point',
  'daughter_point_piss',
  'point_piss_want',
  'piss_want_deal',
  'want_deal_ladi',
  'deal_ladi_angrili',
  'ladi_angrili_said',
  'angrili_said_ladi',
  'said_ladi_sister',
  'ladi_sister_believ',
  'sister_believ_right',
  'believ_right_talk',
  'right_talk_consid',
  'talk_consid_im',
  'consid_im_littl',
  'im_littl_bitch',
  'littl_bitch_im',
  'bitch_im_go',
  'im_go_ask',
  'go_ask_go',
  'ask_go_tell',
  'go_tell_littl',
  'tell_littl_rat',
  'littl_rat_get',
  'rat_get_sister',
  'get_sister_bike',
  'sister_bike_got',
  'bike_got_told',
  'got_told_kid',
  'told_kid_get',
  'kid_get_car',
  'get_car_later',
  'car_later_got',
  'later_got_home',
  'got_home_told',
  'home_told_mom',
  'told_mom_think',
  'mom_think_would',
  'think_would_see',
  'would_see_funni',
  'see_funni_stori',
  'funni_stori_boy',
  'stori_boy_wrong',
  'boy_wrong_start',
  'wrong_start_go',
  'start_go_rude',
  'go_rude_ladi',
  'rude_ladi_need',
  'ladi_need_learn',
  'need_learn_respect',
  'learn_respect_elder',
  'respect_elder_asshol'],
 ['\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  'updat',
  '[',
  'httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i',
  ']',
  'httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '\\',
  '*',
  '&',
  'xb',
  '&',
  'xb',
  'even',
  'though',
  'american',
  'parent',
  'immigr',
  'therefor',
  'differ',
  'cultur',
  'upbring',
  'one',
  'thing',
  'hammer',
  'head',
  'young',
  'age',
  'alway',
  '*',
  'alway',
  '*',
  'bring',
  'small',
  'gift',
  'visit',
  'anyon',
  'hous',
  'matter',
  'famili',
  'friend',
  'one',
  'person',
  'kind',
  'know',
  'realli',
  'like',
  'bring',
  'someth',
  'must',
  'bf',
  'date',
  'almost',
  'year',
  'sinc',
  'work',
  'home',
  'suggest',
  'make',
  'dinner',
  'parent',
  'weekli',
  'thing',
  'sinc',
  'abl',
  'see',
  'much',
  'obviou',
  'reason',
  'love',
  'parent',
  'obvious',
  'agre',
  'everi',
  'week',
  'made',
  'sure',
  'bring',
  'someth',
  'small',
  'show',
  'appreci',
  'cook',
  'us',
  'alway',
  'use',
  'money',
  'small',
  'bottl',
  'wine',
  'favorit',
  'dessert',
  'flower',
  'etc',
  'alway',
  'thank',
  'go',
  'month',
  'absolut',
  'notic',
  'anyth',
  'ordinari',
  'yesterday',
  'bf',
  'prepar',
  'head',
  'id',
  'gotten',
  'cute',
  'vase',
  'daffodil',
  'sinc',
  'luckili',
  'id',
  'found',
  'bloom',
  'bf',
  'mom',
  'realli',
  'love',
  'bf',
  'suddenli',
  'got',
  'realli',
  'mad',
  'ask',
  'kept',
  'bring',
  'stuff',
  'everi',
  'week',
  'like',
  'parent',
  'chariti',
  'case',
  'honestli',
  'got',
  'super',
  'confus',
  'ask',
  'problem',
  'ive',
  'alway',
  'done',
  'everyon',
  'includ',
  'friend',
  'sinc',
  'met',
  'cultur',
  'thing',
  'got',
  'even',
  'madder',
  'told',
  'stop',
  'impos',
  'cultur',
  'everyon',
  'weird',
  'sinc',
  'im',
  'white',
  'point',
  'feel',
  'like',
  'go',
  'anywher',
  'gave',
  'flower',
  'went',
  'walk',
  'drove',
  'dinner',
  'came',
  'home',
  'still',
  'flower',
  'gave',
  'told',
  'sorri',
  'parent',
  'realli',
  'super',
  'annoy',
  'constantli',
  'bring',
  'stuff',
  'like',
  'cant',
  'take',
  'care',
  'later',
  'got',
  'text',
  'dad',
  'ask',
  'come',
  'dinner',
  'anymor',
  'bf',
  'give',
  'cold',
  'shoulder',
  'unless',
  'give',
  'parent',
  'huge',
  'apolog',
  'realli',
  'truli',
  'feel',
  'like',
  'im',
  'wrong',
  'tri',
  'nice',
  'aita',
  'quick',
  'edit',
  'realiz',
  'could',
  'edit',
  'post',
  'directli',
  'im',
  'hurri',
  'convinc',
  'let',
  'go',
  'parent',
  'hous',
  'post',
  'brief',
  'updat',
  'faq',
  'recent',
  'comment',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_updat',
  'updat_[',
  '[_httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i',
  'httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i_]',
  ']_httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i',
  'httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_\\',
  '\\_*',
  '*_&',
  '&_xb',
  'xb_&',
  '&_xb',
  'xb_even',
  'even_though',
  'though_american',
  'american_parent',
  'parent_immigr',
  'immigr_therefor',
  'therefor_differ',
  'differ_cultur',
  'cultur_upbring',
  'upbring_one',
  'one_thing',
  'thing_hammer',
  'hammer_head',
  'head_young',
  'young_age',
  'age_alway',
  'alway_*',
  '*_alway',
  'alway_*',
  '*_bring',
  'bring_small',
  'small_gift',
  'gift_visit',
  'visit_anyon',
  'anyon_hous',
  'hous_matter',
  'matter_famili',
  'famili_friend',
  'friend_one',
  'one_person',
  'person_kind',
  'kind_know',
  'know_realli',
  'realli_like',
  'like_bring',
  'bring_someth',
  'someth_must',
  'must_bf',
  'bf_date',
  'date_almost',
  'almost_year',
  'year_sinc',
  'sinc_work',
  'work_home',
  'home_suggest',
  'suggest_make',
  'make_dinner',
  'dinner_parent',
  'parent_weekli',
  'weekli_thing',
  'thing_sinc',
  'sinc_abl',
  'abl_see',
  'see_much',
  'much_obviou',
  'obviou_reason',
  'reason_love',
  'love_parent',
  'parent_obvious',
  'obvious_agre',
  'agre_everi',
  'everi_week',
  'week_made',
  'made_sure',
  'sure_bring',
  'bring_someth',
  'someth_small',
  'small_show',
  'show_appreci',
  'appreci_cook',
  'cook_us',
  'us_alway',
  'alway_use',
  'use_money',
  'money_small',
  'small_bottl',
  'bottl_wine',
  'wine_favorit',
  'favorit_dessert',
  'dessert_flower',
  'flower_etc',
  'etc_alway',
  'alway_thank',
  'thank_go',
  'go_month',
  'month_absolut',
  'absolut_notic',
  'notic_anyth',
  'anyth_ordinari',
  'ordinari_yesterday',
  'yesterday_bf',
  'bf_prepar',
  'prepar_head',
  'head_id',
  'id_gotten',
  'gotten_cute',
  'cute_vase',
  'vase_daffodil',
  'daffodil_sinc',
  'sinc_luckili',
  'luckili_id',
  'id_found',
  'found_bloom',
  'bloom_bf',
  'bf_mom',
  'mom_realli',
  'realli_love',
  'love_bf',
  'bf_suddenli',
  'suddenli_got',
  'got_realli',
  'realli_mad',
  'mad_ask',
  'ask_kept',
  'kept_bring',
  'bring_stuff',
  'stuff_everi',
  'everi_week',
  'week_like',
  'like_parent',
  'parent_chariti',
  'chariti_case',
  'case_honestli',
  'honestli_got',
  'got_super',
  'super_confus',
  'confus_ask',
  'ask_problem',
  'problem_ive',
  'ive_alway',
  'alway_done',
  'done_everyon',
  'everyon_includ',
  'includ_friend',
  'friend_sinc',
  'sinc_met',
  'met_cultur',
  'cultur_thing',
  'thing_got',
  'got_even',
  'even_madder',
  'madder_told',
  'told_stop',
  'stop_impos',
  'impos_cultur',
  'cultur_everyon',
  'everyon_weird',
  'weird_sinc',
  'sinc_im',
  'im_white',
  'white_point',
  'point_feel',
  'feel_like',
  'like_go',
  'go_anywher',
  'anywher_gave',
  'gave_flower',
  'flower_went',
  'went_walk',
  'walk_drove',
  'drove_dinner',
  'dinner_came',
  'came_home',
  'home_still',
  'still_flower',
  'flower_gave',
  'gave_told',
  'told_sorri',
  'sorri_parent',
  'parent_realli',
  'realli_super',
  'super_annoy',
  'annoy_constantli',
  'constantli_bring',
  'bring_stuff',
  'stuff_like',
  'like_cant',
  'cant_take',
  'take_care',
  'care_later',
  'later_got',
  'got_text',
  'text_dad',
  'dad_ask',
  'ask_come',
  'come_dinner',
  'dinner_anymor',
  'anymor_bf',
  'bf_give',
  'give_cold',
  'cold_shoulder',
  'shoulder_unless',
  'unless_give',
  'give_parent',
  'parent_huge',
  'huge_apolog',
  'apolog_realli',
  'realli_truli',
  'truli_feel',
  'feel_like',
  'like_im',
  'im_wrong',
  'wrong_tri',
  'tri_nice',
  'nice_aita',
  'aita_quick',
  'quick_edit',
  'edit_realiz',
  'realiz_could',
  'could_edit',
  'edit_post',
  'post_directli',
  'directli_im',
  'im_hurri',
  'hurri_convinc',
  'convinc_let',
  'let_go',
  'go_parent',
  'parent_hous',
  'hous_post',
  'post_brief',
  'brief_updat',
  'updat_faq',
  'faq_recent',
  'recent_comment',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_updat',
  '*_updat_[',
  'updat_[_httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i',
  '[_httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i_]',
  'httpswwwredditcomramitheassholecommentstcmgupdate\\_aita\\_for\\_imposing\\_my\\_culture\\_even\\_though\\_i_]_httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i',
  ']_httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i_\\',
  'httpswwwredditcomramitheassholecommentstcmgupdate_aita_for_imposing_my_culture_even_though_i_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_\\',
  '*_\\_*',
  '\\_*_&',
  '*_&_xb',
  '&_xb_&',
  'xb_&_xb',
  '&_xb_even',
  'xb_even_though',
  'even_though_american',
  'though_american_parent',
  'american_parent_immigr',
  'parent_immigr_therefor',
  'immigr_therefor_differ',
  'therefor_differ_cultur',
  'differ_cultur_upbring',
  'cultur_upbring_one',
  'upbring_one_thing',
  'one_thing_hammer',
  'thing_hammer_head',
  'hammer_head_young',
  'head_young_age',
  'young_age_alway',
  'age_alway_*',
  'alway_*_alway',
  '*_alway_*',
  'alway_*_bring',
  '*_bring_small',
  'bring_small_gift',
  'small_gift_visit',
  'gift_visit_anyon',
  'visit_anyon_hous',
  'anyon_hous_matter',
  'hous_matter_famili',
  'matter_famili_friend',
  'famili_friend_one',
  'friend_one_person',
  'one_person_kind',
  'person_kind_know',
  'kind_know_realli',
  'know_realli_like',
  'realli_like_bring',
  'like_bring_someth',
  'bring_someth_must',
  'someth_must_bf',
  'must_bf_date',
  'bf_date_almost',
  'date_almost_year',
  'almost_year_sinc',
  'year_sinc_work',
  'sinc_work_home',
  'work_home_suggest',
  'home_suggest_make',
  'suggest_make_dinner',
  'make_dinner_parent',
  'dinner_parent_weekli',
  'parent_weekli_thing',
  'weekli_thing_sinc',
  'thing_sinc_abl',
  'sinc_abl_see',
  'abl_see_much',
  'see_much_obviou',
  'much_obviou_reason',
  'obviou_reason_love',
  'reason_love_parent',
  'love_parent_obvious',
  'parent_obvious_agre',
  'obvious_agre_everi',
  'agre_everi_week',
  'everi_week_made',
  'week_made_sure',
  'made_sure_bring',
  'sure_bring_someth',
  'bring_someth_small',
  'someth_small_show',
  'small_show_appreci',
  'show_appreci_cook',
  'appreci_cook_us',
  'cook_us_alway',
  'us_alway_use',
  'alway_use_money',
  'use_money_small',
  'money_small_bottl',
  'small_bottl_wine',
  'bottl_wine_favorit',
  'wine_favorit_dessert',
  'favorit_dessert_flower',
  'dessert_flower_etc',
  'flower_etc_alway',
  'etc_alway_thank',
  'alway_thank_go',
  'thank_go_month',
  'go_month_absolut',
  'month_absolut_notic',
  'absolut_notic_anyth',
  'notic_anyth_ordinari',
  'anyth_ordinari_yesterday',
  'ordinari_yesterday_bf',
  'yesterday_bf_prepar',
  'bf_prepar_head',
  'prepar_head_id',
  'head_id_gotten',
  'id_gotten_cute',
  'gotten_cute_vase',
  'cute_vase_daffodil',
  'vase_daffodil_sinc',
  'daffodil_sinc_luckili',
  'sinc_luckili_id',
  'luckili_id_found',
  'id_found_bloom',
  'found_bloom_bf',
  'bloom_bf_mom',
  'bf_mom_realli',
  'mom_realli_love',
  'realli_love_bf',
  'love_bf_suddenli',
  'bf_suddenli_got',
  'suddenli_got_realli',
  'got_realli_mad',
  'realli_mad_ask',
  'mad_ask_kept',
  'ask_kept_bring',
  'kept_bring_stuff',
  'bring_stuff_everi',
  'stuff_everi_week',
  'everi_week_like',
  'week_like_parent',
  'like_parent_chariti',
  'parent_chariti_case',
  'chariti_case_honestli',
  'case_honestli_got',
  'honestli_got_super',
  'got_super_confus',
  'super_confus_ask',
  'confus_ask_problem',
  'ask_problem_ive',
  'problem_ive_alway',
  'ive_alway_done',
  'alway_done_everyon',
  'done_everyon_includ',
  'everyon_includ_friend',
  'includ_friend_sinc',
  'friend_sinc_met',
  'sinc_met_cultur',
  'met_cultur_thing',
  'cultur_thing_got',
  'thing_got_even',
  'got_even_madder',
  'even_madder_told',
  'madder_told_stop',
  'told_stop_impos',
  'stop_impos_cultur',
  'impos_cultur_everyon',
  'cultur_everyon_weird',
  'everyon_weird_sinc',
  'weird_sinc_im',
  'sinc_im_white',
  'im_white_point',
  'white_point_feel',
  'point_feel_like',
  'feel_like_go',
  'like_go_anywher',
  'go_anywher_gave',
  'anywher_gave_flower',
  'gave_flower_went',
  'flower_went_walk',
  'went_walk_drove',
  'walk_drove_dinner',
  'drove_dinner_came',
  'dinner_came_home',
  'came_home_still',
  'home_still_flower',
  'still_flower_gave',
  'flower_gave_told',
  'gave_told_sorri',
  'told_sorri_parent',
  'sorri_parent_realli',
  'parent_realli_super',
  'realli_super_annoy',
  'super_annoy_constantli',
  'annoy_constantli_bring',
  'constantli_bring_stuff',
  'bring_stuff_like',
  'stuff_like_cant',
  'like_cant_take',
  'cant_take_care',
  'take_care_later',
  'care_later_got',
  'later_got_text',
  'got_text_dad',
  'text_dad_ask',
  'dad_ask_come',
  'ask_come_dinner',
  'come_dinner_anymor',
  'dinner_anymor_bf',
  'anymor_bf_give',
  'bf_give_cold',
  'give_cold_shoulder',
  'cold_shoulder_unless',
  'shoulder_unless_give',
  'unless_give_parent',
  'give_parent_huge',
  'parent_huge_apolog',
  'huge_apolog_realli',
  'apolog_realli_truli',
  'realli_truli_feel',
  'truli_feel_like',
  'feel_like_im',
  'like_im_wrong',
  'im_wrong_tri',
  'wrong_tri_nice',
  'tri_nice_aita',
  'nice_aita_quick',
  'aita_quick_edit',
  'quick_edit_realiz',
  'edit_realiz_could',
  'realiz_could_edit',
  'could_edit_post',
  'edit_post_directli',
  'post_directli_im',
  'directli_im_hurri',
  'im_hurri_convinc',
  'hurri_convinc_let',
  'convinc_let_go',
  'let_go_parent',
  'go_parent_hous',
  'parent_hous_post',
  'hous_post_brief',
  'post_brief_updat',
  'brief_updat_faq',
  'updat_faq_recent',
  'faq_recent_comment'],
 ['sister',
  'got',
  'terribl',
  'relationship',
  'move',
  'husband',
  'brought',
  'month',
  'old',
  'son',
  'deal',
  'hand',
  'issu',
  'ppd',
  'depress',
  'ask',
  'husband',
  'hed',
  'okay',
  'move',
  'said',
  'absolut',
  'one',
  'pick',
  'herbrought',
  'home',
  'stay',
  'week',
  'help',
  'around',
  'hous',
  'husband',
  'start',
  'complain',
  'babi',
  'cri',
  'newborn',
  'expect',
  'cri',
  'especi',
  'night',
  'said',
  'caus',
  'stress',
  'although',
  'suggest',
  'put',
  'earbud',
  'suddenli',
  'told',
  'forget',
  'last',
  'week',
  'go',
  'town',
  'attend',
  'friend',
  'funer',
  'without',
  'husband',
  'said',
  'want',
  'stay',
  'sister',
  'make',
  'sure',
  'okay',
  'return',
  'home',
  'next',
  'day',
  'find',
  'babi',
  'home',
  'husband',
  'said',
  'contact',
  'friend',
  'anoth',
  'town',
  'want',
  'move',
  'left',
  'morn',
  'hand',
  'letter',
  'claim',
  'felt',
  'oddespeci',
  'read',
  'letter',
  'call',
  'phone',
  'mani',
  'mani',
  'time',
  'turn',
  'husband',
  'found',
  'said',
  'mustv',
  'left',
  'behind',
  'worri',
  'mean',
  'contact',
  'make',
  'sure',
  'okay',
  'contact',
  'rel',
  'knew',
  'noth',
  'yesterday',
  'got',
  'call',
  'unknown',
  'number',
  'talk',
  'told',
  'leav',
  'husband',
  'kick',
  'tell',
  'longer',
  'welcom',
  'need',
  'take',
  'respons',
  'decis',
  'shock',
  'explain',
  'friend',
  'shelter',
  'money',
  'wait',
  'til',
  'got',
  'home',
  'blew',
  'admit',
  'fake',
  'letter',
  'hid',
  'phone',
  'argu',
  'hous',
  'say',
  'lie',
  'sister',
  'caus',
  'homeless',
  'said',
  'unfair',
  'wrong',
  'lash',
  'want',
  'peac',
  'home',
  'went',
  'upstair',
  'refus',
  'argu',
  'anymor',
  'told',
  'im',
  'go',
  'pick',
  'tomorrow',
  'said',
  'hed',
  'chang',
  'lock',
  'im',
  'gone',
  'allow',
  'bring',
  'home',
  'im',
  'think',
  'go',
  'hotel',
  'kept',
  'say',
  'im',
  'let',
  'sister',
  'affect',
  'live',
  'priorit',
  'babi',
  'involv',
  'nephew',
  'cant',
  'leav',
  'homeless',
  'get',
  'hous',
  'see',
  'stay',
  'edit-',
  'return',
  'home',
  'start',
  'argu',
  'take',
  'anymor',
  'im',
  'go',
  'stay',
  'hotel',
  'tonight',
  'im',
  'leav',
  'hour',
  'want',
  'talk',
  'im',
  'incred',
  'overwhelm',
  'stress',
  'need',
  'time',
  'care',
  'go',
  'chang',
  'lock',
  'im',
  'work',
  'meet',
  'sister',
  'soon',
  'possibl',
  'talk',
  'openli',
  'happen',
  'hope',
  'tri',
  'figur',
  'someth',
  'sister_got',
  'got_terribl',
  'terribl_relationship',
  'relationship_move',
  'move_husband',
  'husband_brought',
  'brought_month',
  'month_old',
  'old_son',
  'son_deal',
  'deal_hand',
  'hand_issu',
  'issu_ppd',
  'ppd_depress',
  'depress_ask',
  'ask_husband',
  'husband_hed',
  'hed_okay',
  'okay_move',
  'move_said',
  'said_absolut',
  'absolut_one',
  'one_pick',
  'pick_herbrought',
  'herbrought_home',
  'home_stay',
  'stay_week',
  'week_help',
  'help_around',
  'around_hous',
  'hous_husband',
  'husband_start',
  'start_complain',
  'complain_babi',
  'babi_cri',
  'cri_newborn',
  'newborn_expect',
  'expect_cri',
  'cri_especi',
  'especi_night',
  'night_said',
  'said_caus',
  'caus_stress',
  'stress_although',
  'although_suggest',
  'suggest_put',
  'put_earbud',
  'earbud_suddenli',
  'suddenli_told',
  'told_forget',
  'forget_last',
  'last_week',
  'week_go',
  'go_town',
  'town_attend',
  'attend_friend',
  'friend_funer',
  'funer_without',
  'without_husband',
  'husband_said',
  'said_want',
  'want_stay',
  'stay_sister',
  'sister_make',
  'make_sure',
  'sure_okay',
  'okay_return',
  'return_home',
  'home_next',
  'next_day',
  'day_find',
  'find_babi',
  'babi_home',
  'home_husband',
  'husband_said',
  'said_contact',
  'contact_friend',
  'friend_anoth',
  'anoth_town',
  'town_want',
  'want_move',
  'move_left',
  'left_morn',
  'morn_hand',
  'hand_letter',
  'letter_claim',
  'claim_felt',
  'felt_oddespeci',
  'oddespeci_read',
  'read_letter',
  'letter_call',
  'call_phone',
  'phone_mani',
  'mani_mani',
  'mani_time',
  'time_turn',
  'turn_husband',
  'husband_found',
  'found_said',
  'said_mustv',
  'mustv_left',
  'left_behind',
  'behind_worri',
  'worri_mean',
  'mean_contact',
  'contact_make',
  'make_sure',
  'sure_okay',
  'okay_contact',
  'contact_rel',
  'rel_knew',
  'knew_noth',
  'noth_yesterday',
  'yesterday_got',
  'got_call',
  'call_unknown',
  'unknown_number',
  'number_talk',
  'talk_told',
  'told_leav',
  'leav_husband',
  'husband_kick',
  'kick_tell',
  'tell_longer',
  'longer_welcom',
  'welcom_need',
  'need_take',
  'take_respons',
  'respons_decis',
  'decis_shock',
  'shock_explain',
  'explain_friend',
  'friend_shelter',
  'shelter_money',
  'money_wait',
  'wait_til',
  'til_got',
  'got_home',
  'home_blew',
  'blew_admit',
  'admit_fake',
  'fake_letter',
  'letter_hid',
  'hid_phone',
  'phone_argu',
  'argu_hous',
  'hous_say',
  'say_lie',
  'lie_sister',
  'sister_caus',
  'caus_homeless',
  'homeless_said',
  'said_unfair',
  'unfair_wrong',
  'wrong_lash',
  'lash_want',
  'want_peac',
  'peac_home',
  'home_went',
  'went_upstair',
  'upstair_refus',
  'refus_argu',
  'argu_anymor',
  'anymor_told',
  'told_im',
  'im_go',
  'go_pick',
  'pick_tomorrow',
  'tomorrow_said',
  'said_hed',
  'hed_chang',
  'chang_lock',
  'lock_im',
  'im_gone',
  'gone_allow',
  'allow_bring',
  'bring_home',
  'home_im',
  'im_think',
  'think_go',
  'go_hotel',
  'hotel_kept',
  'kept_say',
  'say_im',
  'im_let',
  'let_sister',
  'sister_affect',
  'affect_live',
  'live_priorit',
  'priorit_babi',
  'babi_involv',
  'involv_nephew',
  'nephew_cant',
  'cant_leav',
  'leav_homeless',
  'homeless_get',
  'get_hous',
  'hous_see',
  'see_stay',
  'stay_edit-',
  'edit-_return',
  'return_home',
  'home_start',
  'start_argu',
  'argu_take',
  'take_anymor',
  'anymor_im',
  'im_go',
  'go_stay',
  'stay_hotel',
  'hotel_tonight',
  'tonight_im',
  'im_leav',
  'leav_hour',
  'hour_want',
  'want_talk',
  'talk_im',
  'im_incred',
  'incred_overwhelm',
  'overwhelm_stress',
  'stress_need',
  'need_time',
  'time_care',
  'care_go',
  'go_chang',
  'chang_lock',
  'lock_im',
  'im_work',
  'work_meet',
  'meet_sister',
  'sister_soon',
  'soon_possibl',
  'possibl_talk',
  'talk_openli',
  'openli_happen',
  'happen_hope',
  'hope_tri',
  'tri_figur',
  'figur_someth',
  'sister_got_terribl',
  'got_terribl_relationship',
  'terribl_relationship_move',
  'relationship_move_husband',
  'move_husband_brought',
  'husband_brought_month',
  'brought_month_old',
  'month_old_son',
  'old_son_deal',
  'son_deal_hand',
  'deal_hand_issu',
  'hand_issu_ppd',
  'issu_ppd_depress',
  'ppd_depress_ask',
  'depress_ask_husband',
  'ask_husband_hed',
  'husband_hed_okay',
  'hed_okay_move',
  'okay_move_said',
  'move_said_absolut',
  'said_absolut_one',
  'absolut_one_pick',
  'one_pick_herbrought',
  'pick_herbrought_home',
  'herbrought_home_stay',
  'home_stay_week',
  'stay_week_help',
  'week_help_around',
  'help_around_hous',
  'around_hous_husband',
  'hous_husband_start',
  'husband_start_complain',
  'start_complain_babi',
  'complain_babi_cri',
  'babi_cri_newborn',
  'cri_newborn_expect',
  'newborn_expect_cri',
  'expect_cri_especi',
  'cri_especi_night',
  'especi_night_said',
  'night_said_caus',
  'said_caus_stress',
  'caus_stress_although',
  'stress_although_suggest',
  'although_suggest_put',
  'suggest_put_earbud',
  'put_earbud_suddenli',
  'earbud_suddenli_told',
  'suddenli_told_forget',
  'told_forget_last',
  'forget_last_week',
  'last_week_go',
  'week_go_town',
  'go_town_attend',
  'town_attend_friend',
  'attend_friend_funer',
  'friend_funer_without',
  'funer_without_husband',
  'without_husband_said',
  'husband_said_want',
  'said_want_stay',
  'want_stay_sister',
  'stay_sister_make',
  'sister_make_sure',
  'make_sure_okay',
  'sure_okay_return',
  'okay_return_home',
  'return_home_next',
  'home_next_day',
  'next_day_find',
  'day_find_babi',
  'find_babi_home',
  'babi_home_husband',
  'home_husband_said',
  'husband_said_contact',
  'said_contact_friend',
  'contact_friend_anoth',
  'friend_anoth_town',
  'anoth_town_want',
  'town_want_move',
  'want_move_left',
  'move_left_morn',
  'left_morn_hand',
  'morn_hand_letter',
  'hand_letter_claim',
  'letter_claim_felt',
  'claim_felt_oddespeci',
  'felt_oddespeci_read',
  'oddespeci_read_letter',
  'read_letter_call',
  'letter_call_phone',
  'call_phone_mani',
  'phone_mani_mani',
  'mani_mani_time',
  'mani_time_turn',
  'time_turn_husband',
  'turn_husband_found',
  'husband_found_said',
  'found_said_mustv',
  'said_mustv_left',
  'mustv_left_behind',
  'left_behind_worri',
  'behind_worri_mean',
  'worri_mean_contact',
  'mean_contact_make',
  'contact_make_sure',
  'make_sure_okay',
  'sure_okay_contact',
  'okay_contact_rel',
  'contact_rel_knew',
  'rel_knew_noth',
  'knew_noth_yesterday',
  'noth_yesterday_got',
  'yesterday_got_call',
  'got_call_unknown',
  'call_unknown_number',
  'unknown_number_talk',
  'number_talk_told',
  'talk_told_leav',
  'told_leav_husband',
  'leav_husband_kick',
  'husband_kick_tell',
  'kick_tell_longer',
  'tell_longer_welcom',
  'longer_welcom_need',
  'welcom_need_take',
  'need_take_respons',
  'take_respons_decis',
  'respons_decis_shock',
  'decis_shock_explain',
  'shock_explain_friend',
  'explain_friend_shelter',
  'friend_shelter_money',
  'shelter_money_wait',
  'money_wait_til',
  'wait_til_got',
  'til_got_home',
  'got_home_blew',
  'home_blew_admit',
  'blew_admit_fake',
  'admit_fake_letter',
  'fake_letter_hid',
  'letter_hid_phone',
  'hid_phone_argu',
  'phone_argu_hous',
  'argu_hous_say',
  'hous_say_lie',
  'say_lie_sister',
  'lie_sister_caus',
  'sister_caus_homeless',
  'caus_homeless_said',
  'homeless_said_unfair',
  'said_unfair_wrong',
  'unfair_wrong_lash',
  'wrong_lash_want',
  'lash_want_peac',
  'want_peac_home',
  'peac_home_went',
  'home_went_upstair',
  'went_upstair_refus',
  'upstair_refus_argu',
  'refus_argu_anymor',
  'argu_anymor_told',
  'anymor_told_im',
  'told_im_go',
  'im_go_pick',
  'go_pick_tomorrow',
  'pick_tomorrow_said',
  'tomorrow_said_hed',
  'said_hed_chang',
  'hed_chang_lock',
  'chang_lock_im',
  'lock_im_gone',
  'im_gone_allow',
  'gone_allow_bring',
  'allow_bring_home',
  'bring_home_im',
  'home_im_think',
  'im_think_go',
  'think_go_hotel',
  'go_hotel_kept',
  'hotel_kept_say',
  'kept_say_im',
  'say_im_let',
  'im_let_sister',
  'let_sister_affect',
  'sister_affect_live',
  'affect_live_priorit',
  'live_priorit_babi',
  'priorit_babi_involv',
  'babi_involv_nephew',
  'involv_nephew_cant',
  'nephew_cant_leav',
  'cant_leav_homeless',
  'leav_homeless_get',
  'homeless_get_hous',
  'get_hous_see',
  'hous_see_stay',
  'see_stay_edit-',
  'stay_edit-_return',
  'edit-_return_home',
  'return_home_start',
  'home_start_argu',
  'start_argu_take',
  'argu_take_anymor',
  'take_anymor_im',
  'anymor_im_go',
  'im_go_stay',
  'go_stay_hotel',
  'stay_hotel_tonight',
  'hotel_tonight_im',
  'tonight_im_leav',
  'im_leav_hour',
  'leav_hour_want',
  'hour_want_talk',
  'want_talk_im',
  'talk_im_incred',
  'im_incred_overwhelm',
  'incred_overwhelm_stress',
  'overwhelm_stress_need',
  'stress_need_time',
  'need_time_care',
  'time_care_go',
  'care_go_chang',
  'go_chang_lock',
  'chang_lock_im',
  'lock_im_work',
  'im_work_meet',
  'work_meet_sister',
  'meet_sister_soon',
  'sister_soon_possibl',
  'soon_possibl_talk',
  'possibl_talk_openli',
  'talk_openli_happen',
  'openli_happen_hope',
  'happen_hope_tri',
  'hope_tri_figur',
  'tri_figur_someth'],
 ['week',
  'sinc',
  '[',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open',
  'thank',
  'guy',
  'judgment',
  'advic',
  'block',
  'parent',
  'everyth',
  'gone',
  'contact',
  'week',
  'alreadi',
  'feel',
  'like',
  'new',
  'person',
  'without',
  'live',
  'boyfriend',
  'rock',
  'mess',
  'tear',
  'anger',
  'first',
  'day',
  'one',
  'got',
  'im',
  'current',
  'stay',
  'rent',
  'look',
  'place',
  'togeth',
  'sinc',
  'leas',
  'current',
  'place',
  'run',
  'soon',
  'went',
  'gp',
  'got',
  'mental',
  'health',
  'plan',
  'done',
  'see',
  'therapist',
  'soon',
  'free',
  'charg',
  'huge',
  'updat',
  'im',
  'lot',
  'better',
  'littl',
  'time',
  'cut',
  'life',
  'im',
  'look',
  'forward',
  'futur',
  'week_sinc',
  'sinc_[',
  '[_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open',
  'httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open_thank',
  'thank_guy',
  'guy_judgment',
  'judgment_advic',
  'advic_block',
  'block_parent',
  'parent_everyth',
  'everyth_gone',
  'gone_contact',
  'contact_week',
  'week_alreadi',
  'alreadi_feel',
  'feel_like',
  'like_new',
  'new_person',
  'person_without',
  'without_live',
  'live_boyfriend',
  'boyfriend_rock',
  'rock_mess',
  'mess_tear',
  'tear_anger',
  'anger_first',
  'first_day',
  'day_one',
  'one_got',
  'got_im',
  'im_current',
  'current_stay',
  'stay_rent',
  'rent_look',
  'look_place',
  'place_togeth',
  'togeth_sinc',
  'sinc_leas',
  'leas_current',
  'current_place',
  'place_run',
  'run_soon',
  'soon_went',
  'went_gp',
  'gp_got',
  'got_mental',
  'mental_health',
  'health_plan',
  'plan_done',
  'done_see',
  'see_therapist',
  'therapist_soon',
  'soon_free',
  'free_charg',
  'charg_huge',
  'huge_updat',
  'updat_im',
  'im_lot',
  'lot_better',
  'better_littl',
  'littl_time',
  'time_cut',
  'cut_life',
  'life_im',
  'im_look',
  'look_forward',
  'forward_futur',
  'week_sinc_[',
  'sinc_[_post',
  '[_post_]',
  'post_]_httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open',
  ']_httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open_thank',
  'httpswwwredditcomramitheassholecommentsxnpygpaita_for_the_way_i_reacted_to_my_parents_open_thank_guy',
  'thank_guy_judgment',
  'guy_judgment_advic',
  'judgment_advic_block',
  'advic_block_parent',
  'block_parent_everyth',
  'parent_everyth_gone',
  'everyth_gone_contact',
  'gone_contact_week',
  'contact_week_alreadi',
  'week_alreadi_feel',
  'alreadi_feel_like',
  'feel_like_new',
  'like_new_person',
  'new_person_without',
  'person_without_live',
  'without_live_boyfriend',
  'live_boyfriend_rock',
  'boyfriend_rock_mess',
  'rock_mess_tear',
  'mess_tear_anger',
  'tear_anger_first',
  'anger_first_day',
  'first_day_one',
  'day_one_got',
  'one_got_im',
  'got_im_current',
  'im_current_stay',
  'current_stay_rent',
  'stay_rent_look',
  'rent_look_place',
  'look_place_togeth',
  'place_togeth_sinc',
  'togeth_sinc_leas',
  'sinc_leas_current',
  'leas_current_place',
  'current_place_run',
  'place_run_soon',
  'run_soon_went',
  'soon_went_gp',
  'went_gp_got',
  'gp_got_mental',
  'got_mental_health',
  'mental_health_plan',
  'health_plan_done',
  'plan_done_see',
  'done_see_therapist',
  'see_therapist_soon',
  'therapist_soon_free',
  'soon_free_charg',
  'free_charg_huge',
  'charg_huge_updat',
  'huge_updat_im',
  'updat_im_lot',
  'im_lot_better',
  'lot_better_littl',
  'better_littl_time',
  'littl_time_cut',
  'time_cut_life',
  'cut_life_im',
  'life_im_look',
  'im_look_forward',
  'look_forward_futur'],
 ['throw',
  'away',
  'account',
  'although',
  'sister',
  'law',
  'probabl',
  'recogn',
  'stori',
  'anyway',
  'know',
  'even',
  'bother',
  'think',
  'ah',
  'move',
  'mayb',
  'time',
  'bit',
  'think',
  'im',
  'ah',
  'full',
  'stop',
  'sister',
  'law',
  'got',
  'marri',
  'last',
  'weekend',
  'long',
  'term',
  'boyfriend',
  'sister',
  'theyr',
  'white',
  'im',
  'middl',
  'eastern',
  'dark',
  'one',
  'raven',
  'black',
  'hair',
  'look',
  'photograph',
  'bankrupt',
  'suggest',
  'friend',
  'mine',
  'new',
  'busi',
  'charg',
  'less',
  'half',
  'thing',
  'cost',
  '€',
  'day',
  'excit',
  'set',
  'group',
  'chat',
  'photograph',
  'friend',
  'talk',
  'littl',
  'later',
  'met',
  'start',
  'messag',
  'directli',
  'wed',
  'amaz',
  'everyth',
  'went',
  'smoothli',
  'one',
  'guest',
  'seem',
  'happi',
  'next',
  'day',
  'went',
  'honeymoon',
  'know',
  'mistak',
  'instead',
  'text',
  'photograph',
  'directli',
  'like',
  'done',
  'past',
  'month',
  'text',
  'old',
  'imessag',
  'chat',
  'thank',
  'favor',
  'ask',
  'wonder',
  'wether',
  'could',
  'retouch',
  'asymmetri',
  'flower',
  'archway',
  'im',
  'sorri',
  'know',
  'right',
  'term',
  'english',
  'also',
  'could',
  'take',
  'photo',
  'im',
  'dark',
  'ruin',
  'color',
  'palett',
  'pictur',
  'one',
  'text',
  'back',
  'kid',
  'answer',
  'took',
  'screenshot',
  'post',
  'insta',
  'stori',
  'tag',
  'call',
  'bf',
  'cri',
  'eye',
  'call',
  'ah',
  'embarrass',
  'ruin',
  'honeymoon',
  'bf',
  'thought',
  'low',
  'blow',
  'blind',
  'rage',
  'even',
  'im',
  'calm',
  'still',
  'feel',
  'ah',
  'peopl',
  'contact',
  'appar',
  'ask',
  'realli',
  'wrote',
  'beauti',
  'success',
  'pleas',
  'blame',
  'jealousi',
  'scare',
  'outshin',
  '*',
  '*',
  'edit',
  'littl',
  'updat',
  '*',
  '*',
  '[',
  'updat',
  ']',
  'httpswwwredditcomuserthrowwaawaycommentswiaupdateutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'sister',
  'law',
  'still',
  'honeymoon',
  'talk',
  'yet',
  'bombard',
  'bf',
  'demand',
  'apolog',
  'make',
  'new',
  'insta',
  'stori',
  'apolog',
  'peopl',
  'got',
  'involv',
  'includ',
  'bf',
  'mother',
  'thought',
  'way',
  'line',
  'ruin',
  'daughter',
  'wed',
  'also',
  'got',
  'contact',
  'sister',
  'law',
  'friend',
  'told',
  'stori',
  'talk',
  'behind',
  'back',
  'yeah',
  'got',
  'deserv',
  'amount',
  'friend',
  'surpris',
  'text',
  'made',
  'clear',
  'wrong',
  'sister',
  'law',
  'self',
  'employ',
  'foreign',
  'custom',
  'take',
  'hard',
  'scare',
  'would',
  'affect',
  'career',
  'feel',
  'like',
  'need',
  'save',
  'career',
  'someth',
  'bad',
  'happen',
  'photograph',
  'friend',
  'told',
  'right',
  'way',
  'imo',
  'profession',
  'confus',
  'work',
  'valu',
  'ask',
  'want',
  'say',
  'someth',
  'said',
  'also',
  'ask',
  'tell',
  'theyr',
  'text',
  'sinc',
  'client',
  'break',
  'confidenti',
  'start',
  'career',
  'meet',
  'wors',
  'bride',
  'least',
  'nice',
  'throughout',
  'interact',
  'bf',
  'said',
  'thought',
  'whole',
  'thing',
  'uncomfort',
  'told',
  'want',
  'need',
  'discuss',
  'uncomfort',
  'topic',
  'open',
  'actual',
  'deeper',
  'happen',
  'uncl',
  'rich',
  'th',
  'birthday',
  'big',
  'parti',
  'thank',
  'receiv',
  'thank',
  'card',
  'pictur',
  'profession',
  'taken',
  'rememb',
  'pictur',
  'uncl',
  'red',
  'carpet',
  'moment',
  'guest',
  'photograph',
  'upon',
  'arriv',
  'later',
  'went',
  'bf',
  'mother',
  'see',
  'rest',
  'photo',
  'thought',
  'funni',
  'liter',
  'evad',
  'caught',
  'camera',
  'never',
  'mention',
  'even',
  'reflect',
  'bf',
  'famili',
  'look',
  'pictur',
  'discuss',
  'even',
  'normal',
  'one',
  'mention',
  'someth',
  'ordinari',
  'today',
  'told',
  'photoshop',
  'pictur',
  'everyon',
  'famili',
  'knew',
  'time',
  'thought',
  'uncl',
  'could',
  'choos',
  'whoever',
  'want',
  'pictur',
  'move',
  '-but',
  'kept',
  '-ye',
  '-so',
  'mustv',
  'thought',
  'hurt',
  '-',
  'ask',
  'famili',
  'tell',
  '-and',
  'continu',
  'go',
  'uncl',
  'celebr',
  'christmas',
  'easter',
  'vacat',
  'silenc',
  '-you',
  'feel',
  'offend',
  'behalf',
  'silenc',
  '-and',
  'think',
  'okay',
  'sister',
  '-',
  'think',
  'way',
  'know',
  'sister',
  'nit',
  'racist',
  '-if',
  'racist',
  'feel',
  'embarrass',
  'silenc',
  '-you',
  'think',
  'alright',
  '-of',
  'cours',
  '-will',
  'stand',
  'watch',
  'happen',
  'children',
  '-of',
  'cours',
  'know',
  'bf',
  'well',
  'kind',
  'never',
  'felt',
  'racist',
  'anyway',
  'know',
  'stupid',
  'awar',
  'thing',
  'make',
  'wors',
  'mean',
  'care',
  'enough',
  'ask',
  'care',
  'enough',
  'said',
  'sorri',
  'know',
  'strong',
  'girl',
  'never',
  'let',
  'petti',
  'thing',
  'affect',
  'right',
  'normal',
  'ignor',
  '%',
  'racism',
  'micro',
  'aggress',
  'face',
  'life',
  'even',
  'laugh',
  'ignor',
  'even',
  'discuss',
  'strong',
  'mean',
  'peopl',
  'entitl',
  'tri',
  'hurt',
  'usual',
  'let',
  'mean',
  'appreci',
  'feel',
  'support',
  'bf',
  'back',
  'strong',
  'women',
  'deserv',
  'support',
  'love',
  'one',
  'feel',
  'safe',
  'love',
  'answer',
  'told',
  'never',
  'want',
  'sister',
  'life',
  'uncl',
  'probabl',
  'mother',
  'either',
  'still',
  'want',
  'apolog',
  'want',
  'surround',
  'peopl',
  'like',
  'especi',
  'children',
  'ask',
  'live',
  'like',
  'ask',
  'answer',
  'think',
  'kinda',
  'felt',
  'like',
  'ultimatum',
  'bad',
  'know',
  'handl',
  'situat',
  'better',
  'never',
  'thought',
  'someon',
  'petti',
  'make',
  'ultimatum',
  'experi',
  'taught',
  'im',
  'both🤷🏽\u200d♀️',
  'thank',
  'nta',
  'judgment',
  '<',
  'throw_away',
  'away_account',
  'account_although',
  'although_sister',
  'sister_law',
  'law_probabl',
  'probabl_recogn',
  'recogn_stori',
  'stori_anyway',
  'anyway_know',
  'know_even',
  'even_bother',
  'bother_think',
  'think_ah',
  'ah_move',
  'move_mayb',
  'mayb_time',
  'time_bit',
  'bit_think',
  'think_im',
  'im_ah',
  'ah_full',
  'full_stop',
  'stop_sister',
  'sister_law',
  'law_got',
  'got_marri',
  'marri_last',
  'last_weekend',
  'weekend_long',
  'long_term',
  'term_boyfriend',
  'boyfriend_sister',
  'sister_theyr',
  'theyr_white',
  'white_im',
  'im_middl',
  'middl_eastern',
  'eastern_dark',
  'dark_one',
  'one_raven',
  'raven_black',
  'black_hair',
  'hair_look',
  'look_photograph',
  'photograph_bankrupt',
  'bankrupt_suggest',
  'suggest_friend',
  'friend_mine',
  'mine_new',
  'new_busi',
  'busi_charg',
  'charg_less',
  'less_half',
  'half_thing',
  'thing_cost',
  'cost_€',
  '€_day',
  'day_excit',
  'excit_set',
  'set_group',
  'group_chat',
  'chat_photograph',
  'photograph_friend',
  'friend_talk',
  'talk_littl',
  'littl_later',
  'later_met',
  'met_start',
  'start_messag',
  'messag_directli',
  'directli_wed',
  'wed_amaz',
  'amaz_everyth',
  'everyth_went',
  'went_smoothli',
  'smoothli_one',
  'one_guest',
  'guest_seem',
  'seem_happi',
  'happi_next',
  'next_day',
  'day_went',
  'went_honeymoon',
  'honeymoon_know',
  'know_mistak',
  'mistak_instead',
  'instead_text',
  'text_photograph',
  'photograph_directli',
  'directli_like',
  'like_done',
  'done_past',
  'past_month',
  'month_text',
  'text_old',
  'old_imessag',
  'imessag_chat',
  'chat_thank',
  'thank_favor',
  'favor_ask',
  'ask_wonder',
  'wonder_wether',
  'wether_could',
  'could_retouch',
  'retouch_asymmetri',
  'asymmetri_flower',
  'flower_archway',
  'archway_im',
  'im_sorri',
  'sorri_know',
  'know_right',
  'right_term',
  'term_english',
  'english_also',
  'also_could',
  'could_take',
  'take_photo',
  'photo_im',
  'im_dark',
  'dark_ruin',
  'ruin_color',
  'color_palett',
  'palett_pictur',
  'pictur_one',
  'one_text',
  'text_back',
  'back_kid',
  'kid_answer',
  'answer_took',
  'took_screenshot',
  'screenshot_post',
  'post_insta',
  'insta_stori',
  'stori_tag',
  'tag_call',
  'call_bf',
  'bf_cri',
  'cri_eye',
  'eye_call',
  'call_ah',
  'ah_embarrass',
  'embarrass_ruin',
  'ruin_honeymoon',
  'honeymoon_bf',
  'bf_thought',
  'thought_low',
  'low_blow',
  'blow_blind',
  'blind_rage',
  'rage_even',
  'even_im',
  'im_calm',
  'calm_still',
  'still_feel',
  'feel_ah',
  'ah_peopl',
  'peopl_contact',
  'contact_appar',
  'appar_ask',
  'ask_realli',
  'realli_wrote',
  'wrote_beauti',
  'beauti_success',
  'success_pleas',
  'pleas_blame',
  'blame_jealousi',
  'jealousi_scare',
  'scare_outshin',
  'outshin_*',
  '*_*',
  '*_edit',
  'edit_littl',
  'littl_updat',
  'updat_*',
  '*_*',
  '*_[',
  '[_updat',
  'updat_]',
  ']_httpswwwredditcomuserthrowwaawaycommentswiaupdateutm_source=shar',
  'httpswwwredditcomuserthrowwaawaycommentswiaupdateutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_sister',
  'sister_law',
  'law_still',
  'still_honeymoon',
  'honeymoon_talk',
  'talk_yet',
  'yet_bombard',
  'bombard_bf',
  'bf_demand',
  'demand_apolog',
  'apolog_make',
  'make_new',
  'new_insta',
  'insta_stori',
  'stori_apolog',
  'apolog_peopl',
  'peopl_got',
  'got_involv',
  'involv_includ',
  'includ_bf',
  'bf_mother',
  'mother_thought',
  'thought_way',
  'way_line',
  'line_ruin',
  'ruin_daughter',
  'daughter_wed',
  'wed_also',
  'also_got',
  'got_contact',
  'contact_sister',
  'sister_law',
  'law_friend',
  'friend_told',
  'told_stori',
  'stori_talk',
  'talk_behind',
  'behind_back',
  'back_yeah',
  'yeah_got',
  'got_deserv',
  'deserv_amount',
  'amount_friend',
  'friend_surpris',
  'surpris_text',
  'text_made',
  'made_clear',
  'clear_wrong',
  'wrong_sister',
  'sister_law',
  'law_self',
  'self_employ',
  'employ_foreign',
  'foreign_custom',
  'custom_take',
  'take_hard',
  'hard_scare',
  'scare_would',
  'would_affect',
  'affect_career',
  'career_feel',
  'feel_like',
  'like_need',
  'need_save',
  'save_career',
  'career_someth',
  'someth_bad',
  'bad_happen',
  'happen_photograph',
  'photograph_friend',
  'friend_told',
  'told_right',
  'right_way',
  'way_imo',
  'imo_profession',
  'profession_confus',
  'confus_work',
  'work_valu',
  'valu_ask',
  'ask_want',
  'want_say',
  'say_someth',
  'someth_said',
  'said_also',
  'also_ask',
  'ask_tell',
  'tell_theyr',
  'theyr_text',
  'text_sinc',
  'sinc_client',
  'client_break',
  'break_confidenti',
  'confidenti_start',
  'start_career',
  'career_meet',
  'meet_wors',
  'wors_bride',
  'bride_least',
  'least_nice',
  'nice_throughout',
  'throughout_interact',
  'interact_bf',
  'bf_said',
  'said_thought',
  'thought_whole',
  'whole_thing',
  'thing_uncomfort',
  'uncomfort_told',
  'told_want',
  'want_need',
  'need_discuss',
  'discuss_uncomfort',
  'uncomfort_topic',
  'topic_open',
  'open_actual',
  'actual_deeper',
  'deeper_happen',
  'happen_uncl',
  'uncl_rich',
  'rich_th',
  'th_birthday',
  'birthday_big',
  'big_parti',
  'parti_thank',
  'thank_receiv',
  'receiv_thank',
  'thank_card',
  'card_pictur',
  'pictur_profession',
  'profession_taken',
  'taken_rememb',
  'rememb_pictur',
  'pictur_uncl',
  'uncl_red',
  'red_carpet',
  'carpet_moment',
  'moment_guest',
  'guest_photograph',
  'photograph_upon',
  'upon_arriv',
  'arriv_later',
  'later_went',
  'went_bf',
  'bf_mother',
  'mother_see',
  'see_rest',
  'rest_photo',
  'photo_thought',
  'thought_funni',
  'funni_liter',
  'liter_evad',
  'evad_caught',
  'caught_camera',
  'camera_never',
  'never_mention',
  'mention_even',
  'even_reflect',
  'reflect_bf',
  'bf_famili',
  'famili_look',
  'look_pictur',
  'pictur_discuss',
  'discuss_even',
  'even_normal',
  'normal_one',
  'one_mention',
  'mention_someth',
  'someth_ordinari',
  'ordinari_today',
  'today_told',
  'told_photoshop',
  'photoshop_pictur',
  'pictur_everyon',
  'everyon_famili',
  'famili_knew',
  'knew_time',
  'time_thought',
  'thought_uncl',
  'uncl_could',
  'could_choos',
  'choos_whoever',
  'whoever_want',
  'want_pictur',
  'pictur_move',
  'move_-but',
  '-but_kept',
  'kept_-ye',
  '-ye_-so',
  '-so_mustv',
  'mustv_thought',
  'thought_hurt',
  'hurt_-',
  '-_ask',
  'ask_famili',
  'famili_tell',
  'tell_-and',
  '-and_continu',
  'continu_go',
  'go_uncl',
  'uncl_celebr',
  'celebr_christmas',
  'christmas_easter',
  'easter_vacat',
  'vacat_silenc',
  'silenc_-you',
  '-you_feel',
  'feel_offend',
  'offend_behalf',
  'behalf_silenc',
  'silenc_-and',
  '-and_think',
  'think_okay',
  'okay_sister',
  'sister_-',
  '-_think',
  'think_way',
  'way_know',
  'know_sister',
  'sister_nit',
  'nit_racist',
  'racist_-if',
  '-if_racist',
  'racist_feel',
  'feel_embarrass',
  'embarrass_silenc',
  'silenc_-you',
  '-you_think',
  'think_alright',
  'alright_-of',
  '-of_cours',
  'cours_-will',
  '-will_stand',
  'stand_watch',
  'watch_happen',
  'happen_children',
  'children_-of',
  '-of_cours',
  'cours_know',
  'know_bf',
  'bf_well',
  'well_kind',
  'kind_never',
  'never_felt',
  'felt_racist',
  'racist_anyway',
  'anyway_know',
  'know_stupid',
  'stupid_awar',
  'awar_thing',
  'thing_make',
  'make_wors',
  'wors_mean',
  'mean_care',
  'care_enough',
  'enough_ask',
  'ask_care',
  'care_enough',
  'enough_said',
  'said_sorri',
  'sorri_know',
  'know_strong',
  'strong_girl',
  'girl_never',
  'never_let',
  'let_petti',
  'petti_thing',
  'thing_affect',
  'affect_right',
  'right_normal',
  'normal_ignor',
  'ignor_%',
  '%_racism',
  'racism_micro',
  'micro_aggress',
  'aggress_face',
  'face_life',
  'life_even',
  'even_laugh',
  'laugh_ignor',
  ...],
 ['move',
  'sister',
  'parent',
  'kick',
  'come',
  'anoth',
  'stori',
  'said',
  'ill',
  'temporarili',
  'til',
  'get',
  'back',
  'normal',
  'think',
  'lol',
  'uhanyway',
  'move',
  'sister',
  'husband',
  'month',
  'ago',
  'fyi',
  'everyth',
  'around',
  'hous',
  'start',
  'help',
  'well',
  'look',
  'year',
  'old',
  'niec',
  'month',
  'pregnant',
  'bil',
  'noth',
  'breadwinn',
  'claim',
  'imo',
  'taken',
  'bit',
  'far',
  'eg',
  'hed',
  'tell',
  'start',
  'laundri',
  'take',
  'cloth',
  'put',
  'dinner',
  'tabl',
  'home',
  'get',
  'shower',
  'readi',
  'fight',
  'lot',
  'caus',
  'sister',
  'exhaust',
  'burnt',
  'usual',
  'put',
  'headphon',
  'mind',
  'busi',
  'night',
  'ago',
  'lot',
  'commot',
  'heart',
  'home',
  'went',
  'see',
  'issu',
  'turn',
  'bil',
  'complain',
  'dinner',
  'sister',
  'exhaust',
  'get',
  'mean',
  'dinner',
  'alreadi',
  'cook',
  'want',
  'put',
  'tabl',
  'told',
  'sister',
  'id',
  'instead',
  'use',
  'kitchen',
  'utensil',
  'use',
  'niec',
  'toy',
  'utensil',
  'like',
  'toy',
  'cup',
  'toy',
  'plate',
  'toy',
  'fork',
  'knife',
  'tini',
  'napkin',
  'put',
  'food',
  'toy',
  'plate',
  'drink',
  'toy',
  'cup',
  'bil',
  'shower',
  'came',
  'kitchen',
  'sat',
  'stare',
  'plate',
  'second',
  'look',
  'ask',
  'hell',
  'whether',
  'joke',
  'told',
  'want',
  'act',
  'like',
  'helpless',
  'child',
  'might',
  'well',
  'get',
  'treat',
  'like',
  'one',
  'began',
  'yell',
  'sister',
  'came',
  'insid',
  'threw',
  'napkin',
  'storm',
  'upon',
  'say',
  'id',
  'disrespect',
  'hell',
  'let',
  'parent',
  'know',
  'sister',
  'saw',
  'id',
  'done',
  'start',
  'laugh',
  'went',
  'insid',
  'room',
  'argument',
  'stop',
  'expect',
  'apolog',
  'meddl',
  'marriag',
  'pull',
  'crappi',
  'stunt',
  'could',
  'ta',
  'mad',
  'sister',
  'also',
  'sick',
  'tire',
  'sick',
  'tire',
  'nightli',
  'fight',
  'dinner',
  'move_sister',
  'sister_parent',
  'parent_kick',
  'kick_come',
  'come_anoth',
  'anoth_stori',
  'stori_said',
  'said_ill',
  'ill_temporarili',
  'temporarili_til',
  'til_get',
  'get_back',
  'back_normal',
  'normal_think',
  'think_lol',
  'lol_uhanyway',
  'uhanyway_move',
  'move_sister',
  'sister_husband',
  'husband_month',
  'month_ago',
  'ago_fyi',
  'fyi_everyth',
  'everyth_around',
  'around_hous',
  'hous_start',
  'start_help',
  'help_well',
  'well_look',
  'look_year',
  'year_old',
  'old_niec',
  'niec_month',
  'month_pregnant',
  'pregnant_bil',
  'bil_noth',
  'noth_breadwinn',
  'breadwinn_claim',
  'claim_imo',
  'imo_taken',
  'taken_bit',
  'bit_far',
  'far_eg',
  'eg_hed',
  'hed_tell',
  'tell_start',
  'start_laundri',
  'laundri_take',
  'take_cloth',
  'cloth_put',
  'put_dinner',
  'dinner_tabl',
  'tabl_home',
  'home_get',
  'get_shower',
  'shower_readi',
  'readi_fight',
  'fight_lot',
  'lot_caus',
  'caus_sister',
  'sister_exhaust',
  'exhaust_burnt',
  'burnt_usual',
  'usual_put',
  'put_headphon',
  'headphon_mind',
  'mind_busi',
  'busi_night',
  'night_ago',
  'ago_lot',
  'lot_commot',
  'commot_heart',
  'heart_home',
  'home_went',
  'went_see',
  'see_issu',
  'issu_turn',
  'turn_bil',
  'bil_complain',
  'complain_dinner',
  'dinner_sister',
  'sister_exhaust',
  'exhaust_get',
  'get_mean',
  'mean_dinner',
  'dinner_alreadi',
  'alreadi_cook',
  'cook_want',
  'want_put',
  'put_tabl',
  'tabl_told',
  'told_sister',
  'sister_id',
  'id_instead',
  'instead_use',
  'use_kitchen',
  'kitchen_utensil',
  'utensil_use',
  'use_niec',
  'niec_toy',
  'toy_utensil',
  'utensil_like',
  'like_toy',
  'toy_cup',
  'cup_toy',
  'toy_plate',
  'plate_toy',
  'toy_fork',
  'fork_knife',
  'knife_tini',
  'tini_napkin',
  'napkin_put',
  'put_food',
  'food_toy',
  'toy_plate',
  'plate_drink',
  'drink_toy',
  'toy_cup',
  'cup_bil',
  'bil_shower',
  'shower_came',
  'came_kitchen',
  'kitchen_sat',
  'sat_stare',
  'stare_plate',
  'plate_second',
  'second_look',
  'look_ask',
  'ask_hell',
  'hell_whether',
  'whether_joke',
  'joke_told',
  'told_want',
  'want_act',
  'act_like',
  'like_helpless',
  'helpless_child',
  'child_might',
  'might_well',
  'well_get',
  'get_treat',
  'treat_like',
  'like_one',
  'one_began',
  'began_yell',
  'yell_sister',
  'sister_came',
  'came_insid',
  'insid_threw',
  'threw_napkin',
  'napkin_storm',
  'storm_upon',
  'upon_say',
  'say_id',
  'id_disrespect',
  'disrespect_hell',
  'hell_let',
  'let_parent',
  'parent_know',
  'know_sister',
  'sister_saw',
  'saw_id',
  'id_done',
  'done_start',
  'start_laugh',
  'laugh_went',
  'went_insid',
  'insid_room',
  'room_argument',
  'argument_stop',
  'stop_expect',
  'expect_apolog',
  'apolog_meddl',
  'meddl_marriag',
  'marriag_pull',
  'pull_crappi',
  'crappi_stunt',
  'stunt_could',
  'could_ta',
  'ta_mad',
  'mad_sister',
  'sister_also',
  'also_sick',
  'sick_tire',
  'tire_sick',
  'sick_tire',
  'tire_nightli',
  'nightli_fight',
  'fight_dinner',
  'move_sister_parent',
  'sister_parent_kick',
  'parent_kick_come',
  'kick_come_anoth',
  'come_anoth_stori',
  'anoth_stori_said',
  'stori_said_ill',
  'said_ill_temporarili',
  'ill_temporarili_til',
  'temporarili_til_get',
  'til_get_back',
  'get_back_normal',
  'back_normal_think',
  'normal_think_lol',
  'think_lol_uhanyway',
  'lol_uhanyway_move',
  'uhanyway_move_sister',
  'move_sister_husband',
  'sister_husband_month',
  'husband_month_ago',
  'month_ago_fyi',
  'ago_fyi_everyth',
  'fyi_everyth_around',
  'everyth_around_hous',
  'around_hous_start',
  'hous_start_help',
  'start_help_well',
  'help_well_look',
  'well_look_year',
  'look_year_old',
  'year_old_niec',
  'old_niec_month',
  'niec_month_pregnant',
  'month_pregnant_bil',
  'pregnant_bil_noth',
  'bil_noth_breadwinn',
  'noth_breadwinn_claim',
  'breadwinn_claim_imo',
  'claim_imo_taken',
  'imo_taken_bit',
  'taken_bit_far',
  'bit_far_eg',
  'far_eg_hed',
  'eg_hed_tell',
  'hed_tell_start',
  'tell_start_laundri',
  'start_laundri_take',
  'laundri_take_cloth',
  'take_cloth_put',
  'cloth_put_dinner',
  'put_dinner_tabl',
  'dinner_tabl_home',
  'tabl_home_get',
  'home_get_shower',
  'get_shower_readi',
  'shower_readi_fight',
  'readi_fight_lot',
  'fight_lot_caus',
  'lot_caus_sister',
  'caus_sister_exhaust',
  'sister_exhaust_burnt',
  'exhaust_burnt_usual',
  'burnt_usual_put',
  'usual_put_headphon',
  'put_headphon_mind',
  'headphon_mind_busi',
  'mind_busi_night',
  'busi_night_ago',
  'night_ago_lot',
  'ago_lot_commot',
  'lot_commot_heart',
  'commot_heart_home',
  'heart_home_went',
  'home_went_see',
  'went_see_issu',
  'see_issu_turn',
  'issu_turn_bil',
  'turn_bil_complain',
  'bil_complain_dinner',
  'complain_dinner_sister',
  'dinner_sister_exhaust',
  'sister_exhaust_get',
  'exhaust_get_mean',
  'get_mean_dinner',
  'mean_dinner_alreadi',
  'dinner_alreadi_cook',
  'alreadi_cook_want',
  'cook_want_put',
  'want_put_tabl',
  'put_tabl_told',
  'tabl_told_sister',
  'told_sister_id',
  'sister_id_instead',
  'id_instead_use',
  'instead_use_kitchen',
  'use_kitchen_utensil',
  'kitchen_utensil_use',
  'utensil_use_niec',
  'use_niec_toy',
  'niec_toy_utensil',
  'toy_utensil_like',
  'utensil_like_toy',
  'like_toy_cup',
  'toy_cup_toy',
  'cup_toy_plate',
  'toy_plate_toy',
  'plate_toy_fork',
  'toy_fork_knife',
  'fork_knife_tini',
  'knife_tini_napkin',
  'tini_napkin_put',
  'napkin_put_food',
  'put_food_toy',
  'food_toy_plate',
  'toy_plate_drink',
  'plate_drink_toy',
  'drink_toy_cup',
  'toy_cup_bil',
  'cup_bil_shower',
  'bil_shower_came',
  'shower_came_kitchen',
  'came_kitchen_sat',
  'kitchen_sat_stare',
  'sat_stare_plate',
  'stare_plate_second',
  'plate_second_look',
  'second_look_ask',
  'look_ask_hell',
  'ask_hell_whether',
  'hell_whether_joke',
  'whether_joke_told',
  'joke_told_want',
  'told_want_act',
  'want_act_like',
  'act_like_helpless',
  'like_helpless_child',
  'helpless_child_might',
  'child_might_well',
  'might_well_get',
  'well_get_treat',
  'get_treat_like',
  'treat_like_one',
  'like_one_began',
  'one_began_yell',
  'began_yell_sister',
  'yell_sister_came',
  'sister_came_insid',
  'came_insid_threw',
  'insid_threw_napkin',
  'threw_napkin_storm',
  'napkin_storm_upon',
  'storm_upon_say',
  'upon_say_id',
  'say_id_disrespect',
  'id_disrespect_hell',
  'disrespect_hell_let',
  'hell_let_parent',
  'let_parent_know',
  'parent_know_sister',
  'know_sister_saw',
  'sister_saw_id',
  'saw_id_done',
  'id_done_start',
  'done_start_laugh',
  'start_laugh_went',
  'laugh_went_insid',
  'went_insid_room',
  'insid_room_argument',
  'room_argument_stop',
  'argument_stop_expect',
  'stop_expect_apolog',
  'expect_apolog_meddl',
  'apolog_meddl_marriag',
  'meddl_marriag_pull',
  'marriag_pull_crappi',
  'pull_crappi_stunt',
  'crappi_stunt_could',
  'stunt_could_ta',
  'could_ta_mad',
  'ta_mad_sister',
  'mad_sister_also',
  'sister_also_sick',
  'also_sick_tire',
  'sick_tire_sick',
  'tire_sick_tire',
  'sick_tire_nightli',
  'tire_nightli_fight',
  'nightli_fight_dinner'],
 ['kid',
  'fuck',
  'hate',
  'everyon',
  'think',
  'mommi',
  'get',
  'person',
  'im',
  'mommi',
  'husband',
  'face',
  'get',
  'gift',
  'everyon',
  'hobbi',
  'get',
  'bunch',
  'mommi',
  'shit',
  'tee',
  'hee',
  'mommi',
  'need',
  'wine',
  'like',
  'match',
  'outfit',
  'mean',
  'like',
  'one',
  'cutesi',
  'match',
  'pajama',
  'set',
  'nurs',
  'hors',
  'girl',
  'wear',
  'stage',
  'christma',
  'insta',
  'pic',
  'mean',
  'like',
  'peopl',
  'actual',
  'think',
  'im',
  'go',
  'go',
  'public',
  'wear',
  'cutesi',
  'match',
  'outfit',
  'toddler',
  'though',
  'think',
  'theyr',
  'mini',
  'version',
  'doll',
  'time',
  'got',
  'in-law',
  'mama',
  'mama',
  'point',
  'sil',
  'said',
  'said',
  'know',
  'name',
  'carmen',
  'right',
  'look',
  'funni',
  'said',
  'cours',
  'silli',
  'said',
  'keep',
  'call',
  'mama',
  'go',
  'around',
  'call',
  'husband',
  'papa',
  'sil',
  'look',
  'like',
  'head',
  'like',
  'um',
  'okay',
  'went',
  'christma',
  'go',
  'mama',
  'want',
  'anoth',
  'slice',
  'mama',
  'point',
  'like',
  'guy',
  'mind',
  'call',
  'name',
  'instead',
  'call',
  'mama',
  'sil',
  'whole',
  'golly-ge',
  'eye',
  'thing',
  'said',
  'good',
  'mama',
  'said',
  'im',
  'mom',
  'gestur',
  'thing',
  'husband',
  'got',
  'christma',
  'said',
  'guy',
  'get',
  'anyth',
  'say',
  'papa',
  'everyth',
  'gave',
  'somehow',
  'relat',
  'mom',
  'get',
  'person',
  'mil',
  'grab',
  'hand',
  'squeez',
  'said',
  'sorri',
  'made',
  'feel',
  'like',
  'excit',
  'grandma',
  'never',
  'realli',
  'thought',
  'thing',
  'like',
  'feel',
  'littl',
  'better',
  'sil',
  'sil',
  'start',
  'go',
  'one',
  'whole',
  'okay',
  'need',
  'talk',
  'someon',
  'sound',
  'angri',
  'healthi',
  'faux',
  'concern',
  'thing',
  'meant',
  'shame',
  'emot',
  'respons',
  'one',
  'angri',
  'say',
  'mom',
  'somehow',
  'beneath',
  'think',
  'better',
  'rest',
  'us',
  'final',
  'left',
  'ask',
  'id',
  'kept',
  'long',
  'said',
  'one',
  'listen',
  'ive',
  'said',
  'thing',
  'plenti',
  'time',
  'ive',
  'alway',
  'ask',
  'call',
  'name',
  'disgust',
  'nicknam',
  'boil',
  'give',
  'birth',
  'nod',
  'said',
  'id',
  'put',
  'big',
  'pallor',
  'weekend',
  'need',
  'apolog',
  'outburst',
  'point',
  'said',
  'sure',
  'soon',
  'sil',
  'apolog',
  'dehuman',
  'year',
  'stalem',
  'aita',
  'kid_fuck',
  'fuck_hate',
  'hate_everyon',
  'everyon_think',
  'think_mommi',
  'mommi_get',
  'get_person',
  'person_im',
  'im_mommi',
  'mommi_husband',
  'husband_face',
  'face_get',
  'get_gift',
  'gift_everyon',
  'everyon_hobbi',
  'hobbi_get',
  'get_bunch',
  'bunch_mommi',
  'mommi_shit',
  'shit_tee',
  'tee_hee',
  'hee_mommi',
  'mommi_need',
  'need_wine',
  'wine_like',
  'like_match',
  'match_outfit',
  'outfit_mean',
  'mean_like',
  'like_one',
  'one_cutesi',
  'cutesi_match',
  'match_pajama',
  'pajama_set',
  'set_nurs',
  'nurs_hors',
  'hors_girl',
  'girl_wear',
  'wear_stage',
  'stage_christma',
  'christma_insta',
  'insta_pic',
  'pic_mean',
  'mean_like',
  'like_peopl',
  'peopl_actual',
  'actual_think',
  'think_im',
  'im_go',
  'go_go',
  'go_public',
  'public_wear',
  'wear_cutesi',
  'cutesi_match',
  'match_outfit',
  'outfit_toddler',
  'toddler_though',
  'though_think',
  'think_theyr',
  'theyr_mini',
  'mini_version',
  'version_doll',
  'doll_time',
  'time_got',
  'got_in-law',
  'in-law_mama',
  'mama_mama',
  'mama_point',
  'point_sil',
  'sil_said',
  'said_said',
  'said_know',
  'know_name',
  'name_carmen',
  'carmen_right',
  'right_look',
  'look_funni',
  'funni_said',
  'said_cours',
  'cours_silli',
  'silli_said',
  'said_keep',
  'keep_call',
  'call_mama',
  'mama_go',
  'go_around',
  'around_call',
  'call_husband',
  'husband_papa',
  'papa_sil',
  'sil_look',
  'look_like',
  'like_head',
  'head_like',
  'like_um',
  'um_okay',
  'okay_went',
  'went_christma',
  'christma_go',
  'go_mama',
  'mama_want',
  'want_anoth',
  'anoth_slice',
  'slice_mama',
  'mama_point',
  'point_like',
  'like_guy',
  'guy_mind',
  'mind_call',
  'call_name',
  'name_instead',
  'instead_call',
  'call_mama',
  'mama_sil',
  'sil_whole',
  'whole_golly-ge',
  'golly-ge_eye',
  'eye_thing',
  'thing_said',
  'said_good',
  'good_mama',
  'mama_said',
  'said_im',
  'im_mom',
  'mom_gestur',
  'gestur_thing',
  'thing_husband',
  'husband_got',
  'got_christma',
  'christma_said',
  'said_guy',
  'guy_get',
  'get_anyth',
  'anyth_say',
  'say_papa',
  'papa_everyth',
  'everyth_gave',
  'gave_somehow',
  'somehow_relat',
  'relat_mom',
  'mom_get',
  'get_person',
  'person_mil',
  'mil_grab',
  'grab_hand',
  'hand_squeez',
  'squeez_said',
  'said_sorri',
  'sorri_made',
  'made_feel',
  'feel_like',
  'like_excit',
  'excit_grandma',
  'grandma_never',
  'never_realli',
  'realli_thought',
  'thought_thing',
  'thing_like',
  'like_feel',
  'feel_littl',
  'littl_better',
  'better_sil',
  'sil_sil',
  'sil_start',
  'start_go',
  'go_one',
  'one_whole',
  'whole_okay',
  'okay_need',
  'need_talk',
  'talk_someon',
  'someon_sound',
  'sound_angri',
  'angri_healthi',
  'healthi_faux',
  'faux_concern',
  'concern_thing',
  'thing_meant',
  'meant_shame',
  'shame_emot',
  'emot_respons',
  'respons_one',
  'one_angri',
  'angri_say',
  'say_mom',
  'mom_somehow',
  'somehow_beneath',
  'beneath_think',
  'think_better',
  'better_rest',
  'rest_us',
  'us_final',
  'final_left',
  'left_ask',
  'ask_id',
  'id_kept',
  'kept_long',
  'long_said',
  'said_one',
  'one_listen',
  'listen_ive',
  'ive_said',
  'said_thing',
  'thing_plenti',
  'plenti_time',
  'time_ive',
  'ive_alway',
  'alway_ask',
  'ask_call',
  'call_name',
  'name_disgust',
  'disgust_nicknam',
  'nicknam_boil',
  'boil_give',
  'give_birth',
  'birth_nod',
  'nod_said',
  'said_id',
  'id_put',
  'put_big',
  'big_pallor',
  'pallor_weekend',
  'weekend_need',
  'need_apolog',
  'apolog_outburst',
  'outburst_point',
  'point_said',
  'said_sure',
  'sure_soon',
  'soon_sil',
  'sil_apolog',
  'apolog_dehuman',
  'dehuman_year',
  'year_stalem',
  'stalem_aita',
  'kid_fuck_hate',
  'fuck_hate_everyon',
  'hate_everyon_think',
  'everyon_think_mommi',
  'think_mommi_get',
  'mommi_get_person',
  'get_person_im',
  'person_im_mommi',
  'im_mommi_husband',
  'mommi_husband_face',
  'husband_face_get',
  'face_get_gift',
  'get_gift_everyon',
  'gift_everyon_hobbi',
  'everyon_hobbi_get',
  'hobbi_get_bunch',
  'get_bunch_mommi',
  'bunch_mommi_shit',
  'mommi_shit_tee',
  'shit_tee_hee',
  'tee_hee_mommi',
  'hee_mommi_need',
  'mommi_need_wine',
  'need_wine_like',
  'wine_like_match',
  'like_match_outfit',
  'match_outfit_mean',
  'outfit_mean_like',
  'mean_like_one',
  'like_one_cutesi',
  'one_cutesi_match',
  'cutesi_match_pajama',
  'match_pajama_set',
  'pajama_set_nurs',
  'set_nurs_hors',
  'nurs_hors_girl',
  'hors_girl_wear',
  'girl_wear_stage',
  'wear_stage_christma',
  'stage_christma_insta',
  'christma_insta_pic',
  'insta_pic_mean',
  'pic_mean_like',
  'mean_like_peopl',
  'like_peopl_actual',
  'peopl_actual_think',
  'actual_think_im',
  'think_im_go',
  'im_go_go',
  'go_go_public',
  'go_public_wear',
  'public_wear_cutesi',
  'wear_cutesi_match',
  'cutesi_match_outfit',
  'match_outfit_toddler',
  'outfit_toddler_though',
  'toddler_though_think',
  'though_think_theyr',
  'think_theyr_mini',
  'theyr_mini_version',
  'mini_version_doll',
  'version_doll_time',
  'doll_time_got',
  'time_got_in-law',
  'got_in-law_mama',
  'in-law_mama_mama',
  'mama_mama_point',
  'mama_point_sil',
  'point_sil_said',
  'sil_said_said',
  'said_said_know',
  'said_know_name',
  'know_name_carmen',
  'name_carmen_right',
  'carmen_right_look',
  'right_look_funni',
  'look_funni_said',
  'funni_said_cours',
  'said_cours_silli',
  'cours_silli_said',
  'silli_said_keep',
  'said_keep_call',
  'keep_call_mama',
  'call_mama_go',
  'mama_go_around',
  'go_around_call',
  'around_call_husband',
  'call_husband_papa',
  'husband_papa_sil',
  'papa_sil_look',
  'sil_look_like',
  'look_like_head',
  'like_head_like',
  'head_like_um',
  'like_um_okay',
  'um_okay_went',
  'okay_went_christma',
  'went_christma_go',
  'christma_go_mama',
  'go_mama_want',
  'mama_want_anoth',
  'want_anoth_slice',
  'anoth_slice_mama',
  'slice_mama_point',
  'mama_point_like',
  'point_like_guy',
  'like_guy_mind',
  'guy_mind_call',
  'mind_call_name',
  'call_name_instead',
  'name_instead_call',
  'instead_call_mama',
  'call_mama_sil',
  'mama_sil_whole',
  'sil_whole_golly-ge',
  'whole_golly-ge_eye',
  'golly-ge_eye_thing',
  'eye_thing_said',
  'thing_said_good',
  'said_good_mama',
  'good_mama_said',
  'mama_said_im',
  'said_im_mom',
  'im_mom_gestur',
  'mom_gestur_thing',
  'gestur_thing_husband',
  'thing_husband_got',
  'husband_got_christma',
  'got_christma_said',
  'christma_said_guy',
  'said_guy_get',
  'guy_get_anyth',
  'get_anyth_say',
  'anyth_say_papa',
  'say_papa_everyth',
  'papa_everyth_gave',
  'everyth_gave_somehow',
  'gave_somehow_relat',
  'somehow_relat_mom',
  'relat_mom_get',
  'mom_get_person',
  'get_person_mil',
  'person_mil_grab',
  'mil_grab_hand',
  'grab_hand_squeez',
  'hand_squeez_said',
  'squeez_said_sorri',
  'said_sorri_made',
  'sorri_made_feel',
  'made_feel_like',
  'feel_like_excit',
  'like_excit_grandma',
  'excit_grandma_never',
  'grandma_never_realli',
  'never_realli_thought',
  'realli_thought_thing',
  'thought_thing_like',
  'thing_like_feel',
  'like_feel_littl',
  'feel_littl_better',
  'littl_better_sil',
  'better_sil_sil',
  'sil_sil_start',
  'sil_start_go',
  'start_go_one',
  'go_one_whole',
  'one_whole_okay',
  'whole_okay_need',
  'okay_need_talk',
  'need_talk_someon',
  'talk_someon_sound',
  'someon_sound_angri',
  'sound_angri_healthi',
  'angri_healthi_faux',
  'healthi_faux_concern',
  'faux_concern_thing',
  'concern_thing_meant',
  'thing_meant_shame',
  'meant_shame_emot',
  'shame_emot_respons',
  'emot_respons_one',
  'respons_one_angri',
  'one_angri_say',
  'angri_say_mom',
  'say_mom_somehow',
  'mom_somehow_beneath',
  'somehow_beneath_think',
  'beneath_think_better',
  'think_better_rest',
  'better_rest_us',
  'rest_us_final',
  'us_final_left',
  'final_left_ask',
  'left_ask_id',
  'ask_id_kept',
  'id_kept_long',
  'kept_long_said',
  'long_said_one',
  'said_one_listen',
  'one_listen_ive',
  'listen_ive_said',
  'ive_said_thing',
  'said_thing_plenti',
  'thing_plenti_time',
  'plenti_time_ive',
  'time_ive_alway',
  'ive_alway_ask',
  'alway_ask_call',
  'ask_call_name',
  'call_name_disgust',
  'name_disgust_nicknam',
  'disgust_nicknam_boil',
  'nicknam_boil_give',
  'boil_give_birth',
  'give_birth_nod',
  'birth_nod_said',
  'nod_said_id',
  'said_id_put',
  'id_put_big',
  'put_big_pallor',
  'big_pallor_weekend',
  'pallor_weekend_need',
  'weekend_need_apolog',
  'need_apolog_outburst',
  'apolog_outburst_point',
  'outburst_point_said',
  'point_said_sure',
  'said_sure_soon',
  'sure_soon_sil',
  'soon_sil_apolog',
  'sil_apolog_dehuman',
  'apolog_dehuman_year',
  'dehuman_year_stalem',
  'year_stalem_aita'],
 ['son',
  'adam',
  'previou',
  'marriag',
  'im',
  'current',
  'husband',
  'yr',
  'handl',
  'everyth',
  'relat',
  'adam',
  'school',
  'friend',
  'dean',
  'start',
  'hang',
  'year',
  'ago',
  'dean',
  'amaz',
  'boy',
  'noth',
  'great',
  'influenc',
  'adam',
  'met',
  'dean',
  'dad',
  'mike',
  'singl',
  'dad',
  'wed',
  'see',
  'daili',
  'school',
  'pickupdrop',
  'husband',
  'kept',
  'ask',
  'mike',
  'point',
  'boundari',
  'stomp',
  'disagre',
  'unfortun',
  'adam',
  'fell',
  'sick',
  'month',
  'ago',
  'undergo',
  'surgeri',
  'recent',
  'hard',
  'dean',
  'kept',
  'visit',
  'sometim',
  'mike',
  'would',
  'come',
  'husband',
  'would',
  'either',
  'ignor',
  'mike',
  'make',
  'passiv',
  'comment',
  'toward',
  'mike',
  'pick',
  'told',
  'husband',
  'knock',
  'caus',
  'hostil',
  'affect',
  'adam',
  'dean',
  'well',
  'day',
  'ago',
  'found',
  'adam',
  'cri',
  'room',
  'week',
  'get',
  'discharg',
  'ask',
  'said',
  'dean',
  'sent',
  'text',
  'tell',
  'longer',
  'friend',
  'block',
  'number',
  'confus',
  'fine',
  'want',
  'go',
  'talk',
  'dean',
  'next',
  'day',
  'found',
  'phone',
  'husband',
  'car',
  'confront',
  'said',
  'borrow',
  'dean',
  'buy',
  'push',
  'confess',
  'stole',
  'dean',
  'phone',
  'hospit',
  'sent',
  'adam',
  'text',
  'tell',
  'contact',
  'ask',
  'said',
  'mike',
  'fault',
  'close',
  'act',
  'inappropri',
  'said',
  'want',
  'directli',
  'tell',
  'adam',
  'longer',
  'speak',
  'dean',
  'chose',
  'stratagi',
  'make',
  'adam',
  'hate',
  'keep',
  'dean',
  'extent',
  'mike',
  'away',
  'hit',
  'nerv',
  'hard',
  'start',
  'scream',
  'said',
  'alreadi',
  'express',
  'uncomfert',
  'felt',
  'mike',
  'around',
  'kept',
  'brush',
  'said',
  'ridicul',
  'argument',
  'mike',
  'noth',
  'respect',
  'help',
  'yell',
  'call',
  'insecur',
  'unreason',
  'also',
  'cruel',
  'caus',
  'adam',
  'heartach',
  'stunt',
  'beg',
  'tell',
  'adam',
  'took',
  'phone',
  'return',
  'dean',
  'exlain',
  'adam',
  'happen',
  'adam',
  'longer',
  'speak',
  'husband',
  'blame',
  'tell',
  'instead',
  'keep',
  'adult',
  'like',
  'im',
  'suppos',
  'son_adam',
  'adam_previou',
  'previou_marriag',
  'marriag_im',
  'im_current',
  'current_husband',
  'husband_yr',
  'yr_handl',
  'handl_everyth',
  'everyth_relat',
  'relat_adam',
  'adam_school',
  'school_friend',
  'friend_dean',
  'dean_start',
  'start_hang',
  'hang_year',
  'year_ago',
  'ago_dean',
  'dean_amaz',
  'amaz_boy',
  'boy_noth',
  'noth_great',
  'great_influenc',
  'influenc_adam',
  'adam_met',
  'met_dean',
  'dean_dad',
  'dad_mike',
  'mike_singl',
  'singl_dad',
  'dad_wed',
  'wed_see',
  'see_daili',
  'daili_school',
  'school_pickupdrop',
  'pickupdrop_husband',
  'husband_kept',
  'kept_ask',
  'ask_mike',
  'mike_point',
  'point_boundari',
  'boundari_stomp',
  'stomp_disagre',
  'disagre_unfortun',
  'unfortun_adam',
  'adam_fell',
  'fell_sick',
  'sick_month',
  'month_ago',
  'ago_undergo',
  'undergo_surgeri',
  'surgeri_recent',
  'recent_hard',
  'hard_dean',
  'dean_kept',
  'kept_visit',
  'visit_sometim',
  'sometim_mike',
  'mike_would',
  'would_come',
  'come_husband',
  'husband_would',
  'would_either',
  'either_ignor',
  'ignor_mike',
  'mike_make',
  'make_passiv',
  'passiv_comment',
  'comment_toward',
  'toward_mike',
  'mike_pick',
  'pick_told',
  'told_husband',
  'husband_knock',
  'knock_caus',
  'caus_hostil',
  'hostil_affect',
  'affect_adam',
  'adam_dean',
  'dean_well',
  'well_day',
  'day_ago',
  'ago_found',
  'found_adam',
  'adam_cri',
  'cri_room',
  'room_week',
  'week_get',
  'get_discharg',
  'discharg_ask',
  'ask_said',
  'said_dean',
  'dean_sent',
  'sent_text',
  'text_tell',
  'tell_longer',
  'longer_friend',
  'friend_block',
  'block_number',
  'number_confus',
  'confus_fine',
  'fine_want',
  'want_go',
  'go_talk',
  'talk_dean',
  'dean_next',
  'next_day',
  'day_found',
  'found_phone',
  'phone_husband',
  'husband_car',
  'car_confront',
  'confront_said',
  'said_borrow',
  'borrow_dean',
  'dean_buy',
  'buy_push',
  'push_confess',
  'confess_stole',
  'stole_dean',
  'dean_phone',
  'phone_hospit',
  'hospit_sent',
  'sent_adam',
  'adam_text',
  'text_tell',
  'tell_contact',
  'contact_ask',
  'ask_said',
  'said_mike',
  'mike_fault',
  'fault_close',
  'close_act',
  'act_inappropri',
  'inappropri_said',
  'said_want',
  'want_directli',
  'directli_tell',
  'tell_adam',
  'adam_longer',
  'longer_speak',
  'speak_dean',
  'dean_chose',
  'chose_stratagi',
  'stratagi_make',
  'make_adam',
  'adam_hate',
  'hate_keep',
  'keep_dean',
  'dean_extent',
  'extent_mike',
  'mike_away',
  'away_hit',
  'hit_nerv',
  'nerv_hard',
  'hard_start',
  'start_scream',
  'scream_said',
  'said_alreadi',
  'alreadi_express',
  'express_uncomfert',
  'uncomfert_felt',
  'felt_mike',
  'mike_around',
  'around_kept',
  'kept_brush',
  'brush_said',
  'said_ridicul',
  'ridicul_argument',
  'argument_mike',
  'mike_noth',
  'noth_respect',
  'respect_help',
  'help_yell',
  'yell_call',
  'call_insecur',
  'insecur_unreason',
  'unreason_also',
  'also_cruel',
  'cruel_caus',
  'caus_adam',
  'adam_heartach',
  'heartach_stunt',
  'stunt_beg',
  'beg_tell',
  'tell_adam',
  'adam_took',
  'took_phone',
  'phone_return',
  'return_dean',
  'dean_exlain',
  'exlain_adam',
  'adam_happen',
  'happen_adam',
  'adam_longer',
  'longer_speak',
  'speak_husband',
  'husband_blame',
  'blame_tell',
  'tell_instead',
  'instead_keep',
  'keep_adult',
  'adult_like',
  'like_im',
  'im_suppos',
  'son_adam_previou',
  'adam_previou_marriag',
  'previou_marriag_im',
  'marriag_im_current',
  'im_current_husband',
  'current_husband_yr',
  'husband_yr_handl',
  'yr_handl_everyth',
  'handl_everyth_relat',
  'everyth_relat_adam',
  'relat_adam_school',
  'adam_school_friend',
  'school_friend_dean',
  'friend_dean_start',
  'dean_start_hang',
  'start_hang_year',
  'hang_year_ago',
  'year_ago_dean',
  'ago_dean_amaz',
  'dean_amaz_boy',
  'amaz_boy_noth',
  'boy_noth_great',
  'noth_great_influenc',
  'great_influenc_adam',
  'influenc_adam_met',
  'adam_met_dean',
  'met_dean_dad',
  'dean_dad_mike',
  'dad_mike_singl',
  'mike_singl_dad',
  'singl_dad_wed',
  'dad_wed_see',
  'wed_see_daili',
  'see_daili_school',
  'daili_school_pickupdrop',
  'school_pickupdrop_husband',
  'pickupdrop_husband_kept',
  'husband_kept_ask',
  'kept_ask_mike',
  'ask_mike_point',
  'mike_point_boundari',
  'point_boundari_stomp',
  'boundari_stomp_disagre',
  'stomp_disagre_unfortun',
  'disagre_unfortun_adam',
  'unfortun_adam_fell',
  'adam_fell_sick',
  'fell_sick_month',
  'sick_month_ago',
  'month_ago_undergo',
  'ago_undergo_surgeri',
  'undergo_surgeri_recent',
  'surgeri_recent_hard',
  'recent_hard_dean',
  'hard_dean_kept',
  'dean_kept_visit',
  'kept_visit_sometim',
  'visit_sometim_mike',
  'sometim_mike_would',
  'mike_would_come',
  'would_come_husband',
  'come_husband_would',
  'husband_would_either',
  'would_either_ignor',
  'either_ignor_mike',
  'ignor_mike_make',
  'mike_make_passiv',
  'make_passiv_comment',
  'passiv_comment_toward',
  'comment_toward_mike',
  'toward_mike_pick',
  'mike_pick_told',
  'pick_told_husband',
  'told_husband_knock',
  'husband_knock_caus',
  'knock_caus_hostil',
  'caus_hostil_affect',
  'hostil_affect_adam',
  'affect_adam_dean',
  'adam_dean_well',
  'dean_well_day',
  'well_day_ago',
  'day_ago_found',
  'ago_found_adam',
  'found_adam_cri',
  'adam_cri_room',
  'cri_room_week',
  'room_week_get',
  'week_get_discharg',
  'get_discharg_ask',
  'discharg_ask_said',
  'ask_said_dean',
  'said_dean_sent',
  'dean_sent_text',
  'sent_text_tell',
  'text_tell_longer',
  'tell_longer_friend',
  'longer_friend_block',
  'friend_block_number',
  'block_number_confus',
  'number_confus_fine',
  'confus_fine_want',
  'fine_want_go',
  'want_go_talk',
  'go_talk_dean',
  'talk_dean_next',
  'dean_next_day',
  'next_day_found',
  'day_found_phone',
  'found_phone_husband',
  'phone_husband_car',
  'husband_car_confront',
  'car_confront_said',
  'confront_said_borrow',
  'said_borrow_dean',
  'borrow_dean_buy',
  'dean_buy_push',
  'buy_push_confess',
  'push_confess_stole',
  'confess_stole_dean',
  'stole_dean_phone',
  'dean_phone_hospit',
  'phone_hospit_sent',
  'hospit_sent_adam',
  'sent_adam_text',
  'adam_text_tell',
  'text_tell_contact',
  'tell_contact_ask',
  'contact_ask_said',
  'ask_said_mike',
  'said_mike_fault',
  'mike_fault_close',
  'fault_close_act',
  'close_act_inappropri',
  'act_inappropri_said',
  'inappropri_said_want',
  'said_want_directli',
  'want_directli_tell',
  'directli_tell_adam',
  'tell_adam_longer',
  'adam_longer_speak',
  'longer_speak_dean',
  'speak_dean_chose',
  'dean_chose_stratagi',
  'chose_stratagi_make',
  'stratagi_make_adam',
  'make_adam_hate',
  'adam_hate_keep',
  'hate_keep_dean',
  'keep_dean_extent',
  'dean_extent_mike',
  'extent_mike_away',
  'mike_away_hit',
  'away_hit_nerv',
  'hit_nerv_hard',
  'nerv_hard_start',
  'hard_start_scream',
  'start_scream_said',
  'scream_said_alreadi',
  'said_alreadi_express',
  'alreadi_express_uncomfert',
  'express_uncomfert_felt',
  'uncomfert_felt_mike',
  'felt_mike_around',
  'mike_around_kept',
  'around_kept_brush',
  'kept_brush_said',
  'brush_said_ridicul',
  'said_ridicul_argument',
  'ridicul_argument_mike',
  'argument_mike_noth',
  'mike_noth_respect',
  'noth_respect_help',
  'respect_help_yell',
  'help_yell_call',
  'yell_call_insecur',
  'call_insecur_unreason',
  'insecur_unreason_also',
  'unreason_also_cruel',
  'also_cruel_caus',
  'cruel_caus_adam',
  'caus_adam_heartach',
  'adam_heartach_stunt',
  'heartach_stunt_beg',
  'stunt_beg_tell',
  'beg_tell_adam',
  'tell_adam_took',
  'adam_took_phone',
  'took_phone_return',
  'phone_return_dean',
  'return_dean_exlain',
  'dean_exlain_adam',
  'exlain_adam_happen',
  'adam_happen_adam',
  'happen_adam_longer',
  'adam_longer_speak',
  'longer_speak_husband',
  'speak_husband_blame',
  'husband_blame_tell',
  'blame_tell_instead',
  'tell_instead_keep',
  'instead_keep_adult',
  'keep_adult_like',
  'adult_like_im',
  'like_im_suppos'],
 ['situat',
  'bit',
  'messi',
  'bear',
  'two',
  'boy',
  'adam',
  '&',
  'leo',
  'mom',
  'pass',
  'away',
  'year',
  'ago',
  'marri',
  'wife',
  'rose',
  'year',
  'ago',
  'rose',
  'ador',
  'boy',
  'complain',
  'leo',
  'overli',
  'uptight',
  'close',
  'true',
  'like',
  'keep',
  'particip',
  'famili',
  'function',
  'wife',
  'taken',
  'person',
  'kept',
  'say',
  'leo',
  'clearli',
  'like',
  'andor',
  'like',
  'spend',
  'time',
  'start',
  'tri',
  'exclud',
  'event',
  'excus',
  'interest',
  'anyway',
  'thought',
  'wrong',
  'pick',
  'start',
  'ask',
  'told',
  'wife',
  'herpart',
  'give',
  'choic',
  'decid',
  'whether',
  'want',
  'particip',
  'outright',
  'exclud',
  'id',
  'arrang',
  'famili',
  'trip',
  'day',
  'ago',
  'book',
  'ticketshotel',
  'reserv',
  'upon',
  'decid',
  'destin',
  'note',
  'pay',
  'entir',
  'thing',
  'day',
  'trip',
  'found',
  'leo',
  'ticket',
  'cancel',
  'dumbfound',
  'discov',
  'wife',
  'cancel',
  'immedi',
  'confront',
  'said',
  'figur',
  'leo',
  'want',
  'come',
  'knew',
  'said',
  'hed',
  'go',
  'tri',
  'argu',
  'due',
  'moodi',
  'person',
  'introvert',
  'natur',
  'hed',
  'chang',
  'mind',
  'last',
  'minut',
  'go',
  'thd',
  'trip',
  'turn',
  'miser',
  'experi',
  'us',
  'got',
  'mad',
  'especi',
  'tri',
  'pressur',
  'leav',
  'aunt',
  'cancel',
  'entir',
  'trip',
  'ticket',
  'reserv',
  'everyth',
  'blew',
  'start',
  'lash',
  'boy',
  'unpack',
  'made',
  'go',
  'crazi',
  'yell',
  'everyon',
  'hous',
  'went',
  'stay',
  'sister',
  'expos',
  'rest',
  'famili',
  'thought',
  'made',
  'big',
  'deal',
  'cancel',
  'trip',
  'promis',
  'famili',
  'edit',
  'format',
  'mistak',
  'im',
  'sorri',
  'edit',
  'plan',
  'anoth',
  'trip',
  'boy',
  'without',
  'wife',
  'right',
  'huge',
  'conflict',
  'famili',
  'even',
  'adam',
  'upset',
  'blame',
  'leo',
  'happen',
  'im',
  'tri',
  'get',
  'everyon',
  'calm',
  'well',
  'see',
  'goe',
  'edit',
  'ive',
  'decid',
  'follow',
  'opinion',
  'speak',
  'adam',
  'see',
  'exactli',
  'blame',
  'leo',
  'happen',
  'got',
  'home',
  'im',
  'get',
  'seper',
  'room',
  'privat',
  'talk',
  'abl',
  'hear',
  'side',
  'find',
  'feel',
  'way',
  'relev',
  'inform',
  'add',
  'edit',
  'spoke',
  'adam',
  'turn',
  'rose',
  'told',
  'cancel',
  'trip',
  'leo',
  'chang',
  'mind',
  'last',
  'minut',
  'decid',
  'cancel',
  'everyon',
  'els',
  'fought',
  'tri',
  'convinc',
  'go',
  'anyway',
  'let',
  'leo',
  'go',
  'stay',
  'aunt',
  'justi',
  'know',
  'say',
  'frankli',
  'honest',
  'adam',
  'even',
  'want',
  'talk',
  'told',
  'need',
  'talk',
  'leo',
  'speak',
  'right',
  'im',
  'struggl',
  'tri',
  'clean',
  'mess',
  'actual',
  'think',
  'call',
  'rose',
  'ive',
  'decid',
  'need',
  'space',
  'boy',
  'sit',
  'togeth',
  'hard',
  'ill',
  'tri',
  'talk',
  'put',
  'focu',
  'major',
  'issu',
  'rose',
  'situat_bit',
  'bit_messi',
  'messi_bear',
  'bear_two',
  'two_boy',
  'boy_adam',
  'adam_&',
  '&_leo',
  'leo_mom',
  'mom_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_marri',
  'marri_wife',
  'wife_rose',
  'rose_year',
  'year_ago',
  'ago_rose',
  'rose_ador',
  'ador_boy',
  'boy_complain',
  'complain_leo',
  'leo_overli',
  'overli_uptight',
  'uptight_close',
  'close_true',
  'true_like',
  'like_keep',
  'keep_particip',
  'particip_famili',
  'famili_function',
  'function_wife',
  'wife_taken',
  'taken_person',
  'person_kept',
  'kept_say',
  'say_leo',
  'leo_clearli',
  'clearli_like',
  'like_andor',
  'andor_like',
  'like_spend',
  'spend_time',
  'time_start',
  'start_tri',
  'tri_exclud',
  'exclud_event',
  'event_excus',
  'excus_interest',
  'interest_anyway',
  'anyway_thought',
  'thought_wrong',
  'wrong_pick',
  'pick_start',
  'start_ask',
  'ask_told',
  'told_wife',
  'wife_herpart',
  'herpart_give',
  'give_choic',
  'choic_decid',
  'decid_whether',
  'whether_want',
  'want_particip',
  'particip_outright',
  'outright_exclud',
  'exclud_id',
  'id_arrang',
  'arrang_famili',
  'famili_trip',
  'trip_day',
  'day_ago',
  'ago_book',
  'book_ticketshotel',
  'ticketshotel_reserv',
  'reserv_upon',
  'upon_decid',
  'decid_destin',
  'destin_note',
  'note_pay',
  'pay_entir',
  'entir_thing',
  'thing_day',
  'day_trip',
  'trip_found',
  'found_leo',
  'leo_ticket',
  'ticket_cancel',
  'cancel_dumbfound',
  'dumbfound_discov',
  'discov_wife',
  'wife_cancel',
  'cancel_immedi',
  'immedi_confront',
  'confront_said',
  'said_figur',
  'figur_leo',
  'leo_want',
  'want_come',
  'come_knew',
  'knew_said',
  'said_hed',
  'hed_go',
  'go_tri',
  'tri_argu',
  'argu_due',
  'due_moodi',
  'moodi_person',
  'person_introvert',
  'introvert_natur',
  'natur_hed',
  'hed_chang',
  'chang_mind',
  'mind_last',
  'last_minut',
  'minut_go',
  'go_thd',
  'thd_trip',
  'trip_turn',
  'turn_miser',
  'miser_experi',
  'experi_us',
  'us_got',
  'got_mad',
  'mad_especi',
  'especi_tri',
  'tri_pressur',
  'pressur_leav',
  'leav_aunt',
  'aunt_cancel',
  'cancel_entir',
  'entir_trip',
  'trip_ticket',
  'ticket_reserv',
  'reserv_everyth',
  'everyth_blew',
  'blew_start',
  'start_lash',
  'lash_boy',
  'boy_unpack',
  'unpack_made',
  'made_go',
  'go_crazi',
  'crazi_yell',
  'yell_everyon',
  'everyon_hous',
  'hous_went',
  'went_stay',
  'stay_sister',
  'sister_expos',
  'expos_rest',
  'rest_famili',
  'famili_thought',
  'thought_made',
  'made_big',
  'big_deal',
  'deal_cancel',
  'cancel_trip',
  'trip_promis',
  'promis_famili',
  'famili_edit',
  'edit_format',
  'format_mistak',
  'mistak_im',
  'im_sorri',
  'sorri_edit',
  'edit_plan',
  'plan_anoth',
  'anoth_trip',
  'trip_boy',
  'boy_without',
  'without_wife',
  'wife_right',
  'right_huge',
  'huge_conflict',
  'conflict_famili',
  'famili_even',
  'even_adam',
  'adam_upset',
  'upset_blame',
  'blame_leo',
  'leo_happen',
  'happen_im',
  'im_tri',
  'tri_get',
  'get_everyon',
  'everyon_calm',
  'calm_well',
  'well_see',
  'see_goe',
  'goe_edit',
  'edit_ive',
  'ive_decid',
  'decid_follow',
  'follow_opinion',
  'opinion_speak',
  'speak_adam',
  'adam_see',
  'see_exactli',
  'exactli_blame',
  'blame_leo',
  'leo_happen',
  'happen_got',
  'got_home',
  'home_im',
  'im_get',
  'get_seper',
  'seper_room',
  'room_privat',
  'privat_talk',
  'talk_abl',
  'abl_hear',
  'hear_side',
  'side_find',
  'find_feel',
  'feel_way',
  'way_relev',
  'relev_inform',
  'inform_add',
  'add_edit',
  'edit_spoke',
  'spoke_adam',
  'adam_turn',
  'turn_rose',
  'rose_told',
  'told_cancel',
  'cancel_trip',
  'trip_leo',
  'leo_chang',
  'chang_mind',
  'mind_last',
  'last_minut',
  'minut_decid',
  'decid_cancel',
  'cancel_everyon',
  'everyon_els',
  'els_fought',
  'fought_tri',
  'tri_convinc',
  'convinc_go',
  'go_anyway',
  'anyway_let',
  'let_leo',
  'leo_go',
  'go_stay',
  'stay_aunt',
  'aunt_justi',
  'justi_know',
  'know_say',
  'say_frankli',
  'frankli_honest',
  'honest_adam',
  'adam_even',
  'even_want',
  'want_talk',
  'talk_told',
  'told_need',
  'need_talk',
  'talk_leo',
  'leo_speak',
  'speak_right',
  'right_im',
  'im_struggl',
  'struggl_tri',
  'tri_clean',
  'clean_mess',
  'mess_actual',
  'actual_think',
  'think_call',
  'call_rose',
  'rose_ive',
  'ive_decid',
  'decid_need',
  'need_space',
  'space_boy',
  'boy_sit',
  'sit_togeth',
  'togeth_hard',
  'hard_ill',
  'ill_tri',
  'tri_talk',
  'talk_put',
  'put_focu',
  'focu_major',
  'major_issu',
  'issu_rose',
  'situat_bit_messi',
  'bit_messi_bear',
  'messi_bear_two',
  'bear_two_boy',
  'two_boy_adam',
  'boy_adam_&',
  'adam_&_leo',
  '&_leo_mom',
  'leo_mom_pass',
  'mom_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_marri',
  'ago_marri_wife',
  'marri_wife_rose',
  'wife_rose_year',
  'rose_year_ago',
  'year_ago_rose',
  'ago_rose_ador',
  'rose_ador_boy',
  'ador_boy_complain',
  'boy_complain_leo',
  'complain_leo_overli',
  'leo_overli_uptight',
  'overli_uptight_close',
  'uptight_close_true',
  'close_true_like',
  'true_like_keep',
  'like_keep_particip',
  'keep_particip_famili',
  'particip_famili_function',
  'famili_function_wife',
  'function_wife_taken',
  'wife_taken_person',
  'taken_person_kept',
  'person_kept_say',
  'kept_say_leo',
  'say_leo_clearli',
  'leo_clearli_like',
  'clearli_like_andor',
  'like_andor_like',
  'andor_like_spend',
  'like_spend_time',
  'spend_time_start',
  'time_start_tri',
  'start_tri_exclud',
  'tri_exclud_event',
  'exclud_event_excus',
  'event_excus_interest',
  'excus_interest_anyway',
  'interest_anyway_thought',
  'anyway_thought_wrong',
  'thought_wrong_pick',
  'wrong_pick_start',
  'pick_start_ask',
  'start_ask_told',
  'ask_told_wife',
  'told_wife_herpart',
  'wife_herpart_give',
  'herpart_give_choic',
  'give_choic_decid',
  'choic_decid_whether',
  'decid_whether_want',
  'whether_want_particip',
  'want_particip_outright',
  'particip_outright_exclud',
  'outright_exclud_id',
  'exclud_id_arrang',
  'id_arrang_famili',
  'arrang_famili_trip',
  'famili_trip_day',
  'trip_day_ago',
  'day_ago_book',
  'ago_book_ticketshotel',
  'book_ticketshotel_reserv',
  'ticketshotel_reserv_upon',
  'reserv_upon_decid',
  'upon_decid_destin',
  'decid_destin_note',
  'destin_note_pay',
  'note_pay_entir',
  'pay_entir_thing',
  'entir_thing_day',
  'thing_day_trip',
  'day_trip_found',
  'trip_found_leo',
  'found_leo_ticket',
  'leo_ticket_cancel',
  'ticket_cancel_dumbfound',
  'cancel_dumbfound_discov',
  'dumbfound_discov_wife',
  'discov_wife_cancel',
  'wife_cancel_immedi',
  'cancel_immedi_confront',
  'immedi_confront_said',
  'confront_said_figur',
  'said_figur_leo',
  'figur_leo_want',
  'leo_want_come',
  'want_come_knew',
  'come_knew_said',
  'knew_said_hed',
  'said_hed_go',
  'hed_go_tri',
  'go_tri_argu',
  'tri_argu_due',
  'argu_due_moodi',
  'due_moodi_person',
  'moodi_person_introvert',
  'person_introvert_natur',
  'introvert_natur_hed',
  'natur_hed_chang',
  'hed_chang_mind',
  'chang_mind_last',
  'mind_last_minut',
  'last_minut_go',
  'minut_go_thd',
  'go_thd_trip',
  'thd_trip_turn',
  'trip_turn_miser',
  'turn_miser_experi',
  'miser_experi_us',
  'experi_us_got',
  'us_got_mad',
  'got_mad_especi',
  'mad_especi_tri',
  'especi_tri_pressur',
  'tri_pressur_leav',
  'pressur_leav_aunt',
  'leav_aunt_cancel',
  'aunt_cancel_entir',
  'cancel_entir_trip',
  'entir_trip_ticket',
  'trip_ticket_reserv',
  'ticket_reserv_everyth',
  'reserv_everyth_blew',
  'everyth_blew_start',
  'blew_start_lash',
  'start_lash_boy',
  'lash_boy_unpack',
  'boy_unpack_made',
  'unpack_made_go',
  'made_go_crazi',
  'go_crazi_yell',
  'crazi_yell_everyon',
  'yell_everyon_hous',
  'everyon_hous_went',
  'hous_went_stay',
  'went_stay_sister',
  'stay_sister_expos',
  'sister_expos_rest',
  'expos_rest_famili',
  'rest_famili_thought',
  'famili_thought_made',
  'thought_made_big',
  'made_big_deal',
  'big_deal_cancel',
  'deal_cancel_trip',
  'cancel_trip_promis',
  'trip_promis_famili',
  'promis_famili_edit',
  'famili_edit_format',
  'edit_format_mistak',
  'format_mistak_im',
  'mistak_im_sorri',
  'im_sorri_edit',
  'sorri_edit_plan',
  'edit_plan_anoth',
  'plan_anoth_trip',
  'anoth_trip_boy',
  'trip_boy_without',
  'boy_without_wife',
  'without_wife_right',
  'wife_right_huge',
  'right_huge_conflict',
  'huge_conflict_famili',
  'conflict_famili_even',
  'famili_even_adam',
  'even_adam_upset',
  'adam_upset_blame',
  'upset_blame_leo',
  'blame_leo_happen',
  'leo_happen_im',
  'happen_im_tri',
  'im_tri_get',
  'tri_get_everyon',
  'get_everyon_calm',
  'everyon_calm_well',
  'calm_well_see',
  'well_see_goe',
  'see_goe_edit',
  'goe_edit_ive',
  'edit_ive_decid',
  'ive_decid_follow',
  'decid_follow_opinion',
  'follow_opinion_speak',
  'opinion_speak_adam',
  'speak_adam_see',
  'adam_see_exactli',
  'see_exactli_blame',
  'exactli_blame_leo',
  'blame_leo_happen',
  'leo_happen_got',
  'happen_got_home',
  'got_home_im',
  'home_im_get',
  'im_get_seper',
  'get_seper_room',
  'seper_room_privat',
  'room_privat_talk',
  'privat_talk_abl',
  'talk_abl_hear',
  'abl_hear_side',
  'hear_side_find',
  'side_find_feel',
  'find_feel_way',
  'feel_way_relev',
  'way_relev_inform',
  'relev_inform_add',
  'inform_add_edit',
  'add_edit_spoke',
  'edit_spoke_adam',
  'spoke_adam_turn',
  'adam_turn_rose',
  'turn_rose_told',
  'rose_told_cancel',
  'told_cancel_trip',
  'cancel_trip_leo',
  'trip_leo_chang',
  'leo_chang_mind',
  'chang_mind_last',
  'mind_last_minut',
  'last_minut_decid',
  'minut_decid_cancel',
  'decid_cancel_everyon',
  'cancel_everyon_els',
  'everyon_els_fought',
  'els_fought_tri',
  'fought_tri_convinc',
  'tri_convinc_go',
  'convinc_go_anyway',
  'go_anyway_let',
  'anyway_let_leo',
  'let_leo_go',
  'leo_go_stay',
  'go_stay_aunt',
  'stay_aunt_justi',
  'aunt_justi_know',
  'justi_know_say',
  'know_say_frankli',
  'say_frankli_honest',
  'frankli_honest_adam',
  'honest_adam_even',
  'adam_even_want',
  'even_want_talk',
  'want_talk_told',
  'talk_told_need',
  'told_need_talk',
  'need_talk_leo',
  'talk_leo_speak',
  'leo_speak_right',
  'speak_right_im',
  'right_im_struggl',
  'im_struggl_tri',
  'struggl_tri_clean',
  'tri_clean_mess',
  'clean_mess_actual',
  'mess_actual_think',
  'actual_think_call',
  'think_call_rose',
  'call_rose_ive',
  'rose_ive_decid',
  'ive_decid_need',
  'decid_need_space',
  'need_space_boy',
  'space_boy_sit',
  'boy_sit_togeth',
  'sit_togeth_hard',
  'togeth_hard_ill',
  'hard_ill_tri',
  'ill_tri_talk',
  'tri_talk_put',
  'talk_put_focu',
  'put_focu_major',
  'focu_major_issu',
  'major_issu_rose'],
 ['firstonli',
  'post',
  'mainli',
  'lurk',
  'thought',
  'stuff',
  'like',
  'happen',
  'movi',
  'happen',
  'would',
  'like',
  'unbias',
  'opinion',
  'light-heart',
  'post',
  'cousin',
  'kat',
  'got',
  'marri',
  'henri',
  'earli',
  'year',
  'close',
  'kid',
  '-',
  'pretti',
  'spoilt',
  'would',
  'alway',
  'brag',
  'much',
  'design',
  'stuff',
  'realli',
  'mean',
  'peopl',
  'guis',
  'tri',
  'help',
  'etc',
  'go',
  'way',
  'interact',
  'one',
  'anoth',
  'see',
  'famili',
  'event',
  'whatnot',
  'make',
  'small',
  'talk',
  'im',
  'engag',
  'chri',
  'softwar',
  'engin',
  'co-head',
  'depart',
  'work',
  'two',
  'peopl',
  '-',
  'long',
  'ago',
  'chri',
  'tell',
  'new',
  'employe',
  'one',
  'sound',
  'realli',
  'familiar',
  'told',
  'name',
  'realiz',
  'kat',
  'husband',
  'also',
  'henri',
  'met',
  'face-to-fac',
  'yet',
  'kat',
  'henri',
  'huge',
  'wed',
  'realli',
  'nice',
  'month',
  'brag',
  'amaz',
  'wed',
  'wed',
  'stuff',
  'die',
  'recent',
  'start',
  'go',
  'wealthi',
  'husband',
  'great',
  'lifestyl',
  'one',
  'aunt',
  'celebr',
  'th',
  'week',
  'ago',
  'went',
  'chri',
  'kat',
  'henri',
  'chat',
  'kat',
  'say',
  'henri',
  'fantast',
  'new',
  'job',
  'pay',
  'even',
  'previou',
  'one',
  'henri',
  'chime',
  'said',
  'alreadi',
  'plan',
  'buy',
  'new',
  'hous',
  'kat',
  'ask',
  'chri',
  'said',
  'engin',
  'like',
  'henri',
  'good',
  'job',
  'ill',
  'admit',
  'left',
  'work',
  'purpos',
  'smile',
  'nod',
  'said',
  'fine',
  'understand',
  'im',
  'embarrass',
  'want',
  'keep',
  'quiet',
  'pretti',
  'much',
  'end',
  'convers',
  '-',
  'leav',
  'pull',
  'asid',
  'told',
  'let',
  'henri',
  'know',
  'need',
  'help',
  'wed',
  'obvious',
  'knew',
  'meant',
  'anoth',
  'dig',
  'said',
  'bye',
  'left',
  'liter',
  'two',
  'day',
  'later',
  'get',
  'dm',
  'kat',
  'furiou',
  'well',
  'much',
  'one',
  'text',
  'tell',
  'chri',
  'one',
  'henri',
  'boss',
  'henri',
  'shock',
  'see',
  'offic',
  'chri',
  'made',
  'comment',
  'tell',
  'kat',
  '-op-',
  'need',
  'help',
  'thank',
  'offer',
  'henri',
  'realli',
  'embarrass',
  'kat',
  'said',
  'made',
  'look',
  'bad',
  'purpos',
  'knew',
  'shed',
  'never',
  'made',
  'comment',
  'duti',
  'tell',
  'henri',
  'chri',
  'realli',
  'good',
  'laugh',
  'sent',
  'text',
  'famili',
  'group',
  'chat',
  'say',
  'blindsid',
  'said',
  'petti',
  'wrong',
  'aita',
  'firstonli_post',
  'post_mainli',
  'mainli_lurk',
  'lurk_thought',
  'thought_stuff',
  'stuff_like',
  'like_happen',
  'happen_movi',
  'movi_happen',
  'happen_would',
  'would_like',
  'like_unbias',
  'unbias_opinion',
  'opinion_light-heart',
  'light-heart_post',
  'post_cousin',
  'cousin_kat',
  'kat_got',
  'got_marri',
  'marri_henri',
  'henri_earli',
  'earli_year',
  'year_close',
  'close_kid',
  'kid_-',
  '-_pretti',
  'pretti_spoilt',
  'spoilt_would',
  'would_alway',
  'alway_brag',
  'brag_much',
  'much_design',
  'design_stuff',
  'stuff_realli',
  'realli_mean',
  'mean_peopl',
  'peopl_guis',
  'guis_tri',
  'tri_help',
  'help_etc',
  'etc_go',
  'go_way',
  'way_interact',
  'interact_one',
  'one_anoth',
  'anoth_see',
  'see_famili',
  'famili_event',
  'event_whatnot',
  'whatnot_make',
  'make_small',
  'small_talk',
  'talk_im',
  'im_engag',
  'engag_chri',
  'chri_softwar',
  'softwar_engin',
  'engin_co-head',
  'co-head_depart',
  'depart_work',
  'work_two',
  'two_peopl',
  'peopl_-',
  '-_long',
  'long_ago',
  'ago_chri',
  'chri_tell',
  'tell_new',
  'new_employe',
  'employe_one',
  'one_sound',
  'sound_realli',
  'realli_familiar',
  'familiar_told',
  'told_name',
  'name_realiz',
  'realiz_kat',
  'kat_husband',
  'husband_also',
  'also_henri',
  'henri_met',
  'met_face-to-fac',
  'face-to-fac_yet',
  'yet_kat',
  'kat_henri',
  'henri_huge',
  'huge_wed',
  'wed_realli',
  'realli_nice',
  'nice_month',
  'month_brag',
  'brag_amaz',
  'amaz_wed',
  'wed_wed',
  'wed_stuff',
  'stuff_die',
  'die_recent',
  'recent_start',
  'start_go',
  'go_wealthi',
  'wealthi_husband',
  'husband_great',
  'great_lifestyl',
  'lifestyl_one',
  'one_aunt',
  'aunt_celebr',
  'celebr_th',
  'th_week',
  'week_ago',
  'ago_went',
  'went_chri',
  'chri_kat',
  'kat_henri',
  'henri_chat',
  'chat_kat',
  'kat_say',
  'say_henri',
  'henri_fantast',
  'fantast_new',
  'new_job',
  'job_pay',
  'pay_even',
  'even_previou',
  'previou_one',
  'one_henri',
  'henri_chime',
  'chime_said',
  'said_alreadi',
  'alreadi_plan',
  'plan_buy',
  'buy_new',
  'new_hous',
  'hous_kat',
  'kat_ask',
  'ask_chri',
  'chri_said',
  'said_engin',
  'engin_like',
  'like_henri',
  'henri_good',
  'good_job',
  'job_ill',
  'ill_admit',
  'admit_left',
  'left_work',
  'work_purpos',
  'purpos_smile',
  'smile_nod',
  'nod_said',
  'said_fine',
  'fine_understand',
  'understand_im',
  'im_embarrass',
  'embarrass_want',
  'want_keep',
  'keep_quiet',
  'quiet_pretti',
  'pretti_much',
  'much_end',
  'end_convers',
  'convers_-',
  '-_leav',
  'leav_pull',
  'pull_asid',
  'asid_told',
  'told_let',
  'let_henri',
  'henri_know',
  'know_need',
  'need_help',
  'help_wed',
  'wed_obvious',
  'obvious_knew',
  'knew_meant',
  'meant_anoth',
  'anoth_dig',
  'dig_said',
  'said_bye',
  'bye_left',
  'left_liter',
  'liter_two',
  'two_day',
  'day_later',
  'later_get',
  'get_dm',
  'dm_kat',
  'kat_furiou',
  'furiou_well',
  'well_much',
  'much_one',
  'one_text',
  'text_tell',
  'tell_chri',
  'chri_one',
  'one_henri',
  'henri_boss',
  'boss_henri',
  'henri_shock',
  'shock_see',
  'see_offic',
  'offic_chri',
  'chri_made',
  'made_comment',
  'comment_tell',
  'tell_kat',
  'kat_-op-',
  '-op-_need',
  'need_help',
  'help_thank',
  'thank_offer',
  'offer_henri',
  'henri_realli',
  'realli_embarrass',
  'embarrass_kat',
  'kat_said',
  'said_made',
  'made_look',
  'look_bad',
  'bad_purpos',
  'purpos_knew',
  'knew_shed',
  'shed_never',
  'never_made',
  'made_comment',
  'comment_duti',
  'duti_tell',
  'tell_henri',
  'henri_chri',
  'chri_realli',
  'realli_good',
  'good_laugh',
  'laugh_sent',
  'sent_text',
  'text_famili',
  'famili_group',
  'group_chat',
  'chat_say',
  'say_blindsid',
  'blindsid_said',
  'said_petti',
  'petti_wrong',
  'wrong_aita',
  'firstonli_post_mainli',
  'post_mainli_lurk',
  'mainli_lurk_thought',
  'lurk_thought_stuff',
  'thought_stuff_like',
  'stuff_like_happen',
  'like_happen_movi',
  'happen_movi_happen',
  'movi_happen_would',
  'happen_would_like',
  'would_like_unbias',
  'like_unbias_opinion',
  'unbias_opinion_light-heart',
  'opinion_light-heart_post',
  'light-heart_post_cousin',
  'post_cousin_kat',
  'cousin_kat_got',
  'kat_got_marri',
  'got_marri_henri',
  'marri_henri_earli',
  'henri_earli_year',
  'earli_year_close',
  'year_close_kid',
  'close_kid_-',
  'kid_-_pretti',
  '-_pretti_spoilt',
  'pretti_spoilt_would',
  'spoilt_would_alway',
  'would_alway_brag',
  'alway_brag_much',
  'brag_much_design',
  'much_design_stuff',
  'design_stuff_realli',
  'stuff_realli_mean',
  'realli_mean_peopl',
  'mean_peopl_guis',
  'peopl_guis_tri',
  'guis_tri_help',
  'tri_help_etc',
  'help_etc_go',
  'etc_go_way',
  'go_way_interact',
  'way_interact_one',
  'interact_one_anoth',
  'one_anoth_see',
  'anoth_see_famili',
  'see_famili_event',
  'famili_event_whatnot',
  'event_whatnot_make',
  'whatnot_make_small',
  'make_small_talk',
  'small_talk_im',
  'talk_im_engag',
  'im_engag_chri',
  'engag_chri_softwar',
  'chri_softwar_engin',
  'softwar_engin_co-head',
  'engin_co-head_depart',
  'co-head_depart_work',
  'depart_work_two',
  'work_two_peopl',
  'two_peopl_-',
  'peopl_-_long',
  '-_long_ago',
  'long_ago_chri',
  'ago_chri_tell',
  'chri_tell_new',
  'tell_new_employe',
  'new_employe_one',
  'employe_one_sound',
  'one_sound_realli',
  'sound_realli_familiar',
  'realli_familiar_told',
  'familiar_told_name',
  'told_name_realiz',
  'name_realiz_kat',
  'realiz_kat_husband',
  'kat_husband_also',
  'husband_also_henri',
  'also_henri_met',
  'henri_met_face-to-fac',
  'met_face-to-fac_yet',
  'face-to-fac_yet_kat',
  'yet_kat_henri',
  'kat_henri_huge',
  'henri_huge_wed',
  'huge_wed_realli',
  'wed_realli_nice',
  'realli_nice_month',
  'nice_month_brag',
  'month_brag_amaz',
  'brag_amaz_wed',
  'amaz_wed_wed',
  'wed_wed_stuff',
  'wed_stuff_die',
  'stuff_die_recent',
  'die_recent_start',
  'recent_start_go',
  'start_go_wealthi',
  'go_wealthi_husband',
  'wealthi_husband_great',
  'husband_great_lifestyl',
  'great_lifestyl_one',
  'lifestyl_one_aunt',
  'one_aunt_celebr',
  'aunt_celebr_th',
  'celebr_th_week',
  'th_week_ago',
  'week_ago_went',
  'ago_went_chri',
  'went_chri_kat',
  'chri_kat_henri',
  'kat_henri_chat',
  'henri_chat_kat',
  'chat_kat_say',
  'kat_say_henri',
  'say_henri_fantast',
  'henri_fantast_new',
  'fantast_new_job',
  'new_job_pay',
  'job_pay_even',
  'pay_even_previou',
  'even_previou_one',
  'previou_one_henri',
  'one_henri_chime',
  'henri_chime_said',
  'chime_said_alreadi',
  'said_alreadi_plan',
  'alreadi_plan_buy',
  'plan_buy_new',
  'buy_new_hous',
  'new_hous_kat',
  'hous_kat_ask',
  'kat_ask_chri',
  'ask_chri_said',
  'chri_said_engin',
  'said_engin_like',
  'engin_like_henri',
  'like_henri_good',
  'henri_good_job',
  'good_job_ill',
  'job_ill_admit',
  'ill_admit_left',
  'admit_left_work',
  'left_work_purpos',
  'work_purpos_smile',
  'purpos_smile_nod',
  'smile_nod_said',
  'nod_said_fine',
  'said_fine_understand',
  'fine_understand_im',
  'understand_im_embarrass',
  'im_embarrass_want',
  'embarrass_want_keep',
  'want_keep_quiet',
  'keep_quiet_pretti',
  'quiet_pretti_much',
  'pretti_much_end',
  'much_end_convers',
  'end_convers_-',
  'convers_-_leav',
  '-_leav_pull',
  'leav_pull_asid',
  'pull_asid_told',
  'asid_told_let',
  'told_let_henri',
  'let_henri_know',
  'henri_know_need',
  'know_need_help',
  'need_help_wed',
  'help_wed_obvious',
  'wed_obvious_knew',
  'obvious_knew_meant',
  'knew_meant_anoth',
  'meant_anoth_dig',
  'anoth_dig_said',
  'dig_said_bye',
  'said_bye_left',
  'bye_left_liter',
  'left_liter_two',
  'liter_two_day',
  'two_day_later',
  'day_later_get',
  'later_get_dm',
  'get_dm_kat',
  'dm_kat_furiou',
  'kat_furiou_well',
  'furiou_well_much',
  'well_much_one',
  'much_one_text',
  'one_text_tell',
  'text_tell_chri',
  'tell_chri_one',
  'chri_one_henri',
  'one_henri_boss',
  'henri_boss_henri',
  'boss_henri_shock',
  'henri_shock_see',
  'shock_see_offic',
  'see_offic_chri',
  'offic_chri_made',
  'chri_made_comment',
  'made_comment_tell',
  'comment_tell_kat',
  'tell_kat_-op-',
  'kat_-op-_need',
  '-op-_need_help',
  'need_help_thank',
  'help_thank_offer',
  'thank_offer_henri',
  'offer_henri_realli',
  'henri_realli_embarrass',
  'realli_embarrass_kat',
  'embarrass_kat_said',
  'kat_said_made',
  'said_made_look',
  'made_look_bad',
  'look_bad_purpos',
  'bad_purpos_knew',
  'purpos_knew_shed',
  'knew_shed_never',
  'shed_never_made',
  'never_made_comment',
  'made_comment_duti',
  'comment_duti_tell',
  'duti_tell_henri',
  'tell_henri_chri',
  'henri_chri_realli',
  'chri_realli_good',
  'realli_good_laugh',
  'good_laugh_sent',
  'laugh_sent_text',
  'sent_text_famili',
  'text_famili_group',
  'famili_group_chat',
  'group_chat_say',
  'chat_say_blindsid',
  'say_blindsid_said',
  'blindsid_said_petti',
  'said_petti_wrong',
  'petti_wrong_aita'],
 ['bf',
  'go',
  'climb',
  'gym',
  'regularli',
  'realli',
  'start',
  'climb',
  'time',
  'week',
  'stupidli',
  'competit',
  'quietli',
  'insult',
  'beginn',
  'good',
  'make',
  'feel',
  'self',
  'consciou',
  'im',
  'beginn',
  'last',
  'night',
  'climb',
  'gym',
  'peopl',
  'take',
  'turn',
  'problem',
  'probabl',
  'newli',
  'instal',
  'rout',
  'fail',
  'girl',
  'came',
  'flash',
  'made',
  'easi',
  'end',
  'hold',
  'final',
  'hold',
  'second',
  'bf',
  'call',
  'done',
  'hold',
  'last',
  'hold',
  'second',
  'suppos',
  'right',
  'way',
  'finish',
  'rout',
  'easili',
  'definit',
  'could',
  'think',
  'salti',
  'laugh',
  'told',
  'even',
  'start',
  'problem',
  'correctli',
  'walk',
  'gave',
  'high',
  'five',
  'walk',
  'toward',
  'amaz',
  'problem',
  'knock',
  'bf',
  'high',
  'hors',
  'surpris',
  'high',
  'five',
  'bf',
  'turn',
  'gave',
  'wtf',
  'look',
  'talk',
  'rest',
  'night',
  'head',
  'home',
  'rant',
  'trust',
  'watch',
  'back',
  'chose',
  'take',
  'stranger',
  'side',
  'shock',
  'took',
  'climb',
  'told',
  'nitpick',
  'clearli',
  'climb',
  'correctli',
  'got',
  'mad',
  'argu',
  'suppos',
  'take',
  'side',
  'peopl',
  'even',
  'know',
  'bf_go',
  'go_climb',
  'climb_gym',
  'gym_regularli',
  'regularli_realli',
  'realli_start',
  'start_climb',
  'climb_time',
  'time_week',
  'week_stupidli',
  'stupidli_competit',
  'competit_quietli',
  'quietli_insult',
  'insult_beginn',
  'beginn_good',
  'good_make',
  'make_feel',
  'feel_self',
  'self_consciou',
  'consciou_im',
  'im_beginn',
  'beginn_last',
  'last_night',
  'night_climb',
  'climb_gym',
  'gym_peopl',
  'peopl_take',
  'take_turn',
  'turn_problem',
  'problem_probabl',
  'probabl_newli',
  'newli_instal',
  'instal_rout',
  'rout_fail',
  'fail_girl',
  'girl_came',
  'came_flash',
  'flash_made',
  'made_easi',
  'easi_end',
  'end_hold',
  'hold_final',
  'final_hold',
  'hold_second',
  'second_bf',
  'bf_call',
  'call_done',
  'done_hold',
  'hold_last',
  'last_hold',
  'hold_second',
  'second_suppos',
  'suppos_right',
  'right_way',
  'way_finish',
  'finish_rout',
  'rout_easili',
  'easili_definit',
  'definit_could',
  'could_think',
  'think_salti',
  'salti_laugh',
  'laugh_told',
  'told_even',
  'even_start',
  'start_problem',
  'problem_correctli',
  'correctli_walk',
  'walk_gave',
  'gave_high',
  'high_five',
  'five_walk',
  'walk_toward',
  'toward_amaz',
  'amaz_problem',
  'problem_knock',
  'knock_bf',
  'bf_high',
  'high_hors',
  'hors_surpris',
  'surpris_high',
  'high_five',
  'five_bf',
  'bf_turn',
  'turn_gave',
  'gave_wtf',
  'wtf_look',
  'look_talk',
  'talk_rest',
  'rest_night',
  'night_head',
  'head_home',
  'home_rant',
  'rant_trust',
  'trust_watch',
  'watch_back',
  'back_chose',
  'chose_take',
  'take_stranger',
  'stranger_side',
  'side_shock',
  'shock_took',
  'took_climb',
  'climb_told',
  'told_nitpick',
  'nitpick_clearli',
  'clearli_climb',
  'climb_correctli',
  'correctli_got',
  'got_mad',
  'mad_argu',
  'argu_suppos',
  'suppos_take',
  'take_side',
  'side_peopl',
  'peopl_even',
  'even_know',
  'bf_go_climb',
  'go_climb_gym',
  'climb_gym_regularli',
  'gym_regularli_realli',
  'regularli_realli_start',
  'realli_start_climb',
  'start_climb_time',
  'climb_time_week',
  'time_week_stupidli',
  'week_stupidli_competit',
  'stupidli_competit_quietli',
  'competit_quietli_insult',
  'quietli_insult_beginn',
  'insult_beginn_good',
  'beginn_good_make',
  'good_make_feel',
  'make_feel_self',
  'feel_self_consciou',
  'self_consciou_im',
  'consciou_im_beginn',
  'im_beginn_last',
  'beginn_last_night',
  'last_night_climb',
  'night_climb_gym',
  'climb_gym_peopl',
  'gym_peopl_take',
  'peopl_take_turn',
  'take_turn_problem',
  'turn_problem_probabl',
  'problem_probabl_newli',
  'probabl_newli_instal',
  'newli_instal_rout',
  'instal_rout_fail',
  'rout_fail_girl',
  'fail_girl_came',
  'girl_came_flash',
  'came_flash_made',
  'flash_made_easi',
  'made_easi_end',
  'easi_end_hold',
  'end_hold_final',
  'hold_final_hold',
  'final_hold_second',
  'hold_second_bf',
  'second_bf_call',
  'bf_call_done',
  'call_done_hold',
  'done_hold_last',
  'hold_last_hold',
  'last_hold_second',
  'hold_second_suppos',
  'second_suppos_right',
  'suppos_right_way',
  'right_way_finish',
  'way_finish_rout',
  'finish_rout_easili',
  'rout_easili_definit',
  'easili_definit_could',
  'definit_could_think',
  'could_think_salti',
  'think_salti_laugh',
  'salti_laugh_told',
  'laugh_told_even',
  'told_even_start',
  'even_start_problem',
  'start_problem_correctli',
  'problem_correctli_walk',
  'correctli_walk_gave',
  'walk_gave_high',
  'gave_high_five',
  'high_five_walk',
  'five_walk_toward',
  'walk_toward_amaz',
  'toward_amaz_problem',
  'amaz_problem_knock',
  'problem_knock_bf',
  'knock_bf_high',
  'bf_high_hors',
  'high_hors_surpris',
  'hors_surpris_high',
  'surpris_high_five',
  'high_five_bf',
  'five_bf_turn',
  'bf_turn_gave',
  'turn_gave_wtf',
  'gave_wtf_look',
  'wtf_look_talk',
  'look_talk_rest',
  'talk_rest_night',
  'rest_night_head',
  'night_head_home',
  'head_home_rant',
  'home_rant_trust',
  'rant_trust_watch',
  'trust_watch_back',
  'watch_back_chose',
  'back_chose_take',
  'chose_take_stranger',
  'take_stranger_side',
  'stranger_side_shock',
  'side_shock_took',
  'shock_took_climb',
  'took_climb_told',
  'climb_told_nitpick',
  'told_nitpick_clearli',
  'nitpick_clearli_climb',
  'clearli_climb_correctli',
  'climb_correctli_got',
  'correctli_got_mad',
  'got_mad_argu',
  'mad_argu_suppos',
  'argu_suppos_take',
  'suppos_take_side',
  'take_side_peopl',
  'side_peopl_even',
  'peopl_even_know'],
 ['past',
  'month',
  'husband',
  'wake',
  'everi',
  'night',
  'walk',
  'walk',
  'would',
  'take',
  'hour',
  'side',
  'note',
  'mention',
  'new',
  'tri',
  'lose',
  'weight',
  'pretti',
  'thin',
  'athlet',
  'natur',
  'sport',
  'interest',
  'hobbi',
  'infact',
  'hate',
  'type',
  'sport',
  'im',
  'happi',
  'sinc',
  'overal',
  'posit',
  'thing',
  'yesterday',
  'came',
  'home',
  'even',
  'work',
  'long',
  'hour',
  'stay',
  'late',
  'play',
  'phone',
  'went',
  'bed',
  'get',
  'done',
  'mess',
  'everyth',
  'woke',
  'yell',
  'ask',
  'wake',
  'walk',
  'said',
  'miss',
  'im',
  'respons',
  'confus',
  'said',
  'first',
  'alway',
  'wake',
  'set',
  'alarm',
  'expect',
  'wake',
  'time',
  'yell',
  'forgot',
  'set',
  'alarm',
  'said',
  'big',
  'deal',
  'likeh',
  'miss',
  'import',
  'mean',
  'someth',
  'got',
  'angri',
  'said',
  'walk',
  'help',
  'imrov',
  'health',
  'restor',
  'energi',
  'help',
  'feel',
  'better',
  'made',
  'comment',
  'miss',
  'one',
  'walk',
  'hurt',
  'unload',
  'yell',
  'tri',
  'prevent',
  'hobbi',
  'unknown',
  'reason',
  'told',
  'sore',
  'mistaken',
  'even',
  'though',
  'admit',
  'daili',
  'walk',
  'around',
  'veteran',
  'park',
  'weird',
  'also',
  'reaction',
  'realli',
  'thought',
  'top',
  'storm',
  'went',
  'shower',
  'say',
  'ruin',
  'entir',
  'day',
  'got',
  'start',
  'avoid',
  'ignor',
  'even',
  'talk',
  'directli',
  'went',
  'work',
  'refus',
  'respond',
  'call',
  'realli',
  'im',
  'loss',
  'like',
  'mayb',
  'someth',
  'said',
  'walk',
  'realli',
  'know',
  'sulk',
  'nonstop',
  'im',
  'liter',
  'lose',
  'mind',
  'aita',
  'past_month',
  'month_husband',
  'husband_wake',
  'wake_everi',
  'everi_night',
  'night_walk',
  'walk_walk',
  'walk_would',
  'would_take',
  'take_hour',
  'hour_side',
  'side_note',
  'note_mention',
  'mention_new',
  'new_tri',
  'tri_lose',
  'lose_weight',
  'weight_pretti',
  'pretti_thin',
  'thin_athlet',
  'athlet_natur',
  'natur_sport',
  'sport_interest',
  'interest_hobbi',
  'hobbi_infact',
  'infact_hate',
  'hate_type',
  'type_sport',
  'sport_im',
  'im_happi',
  'happi_sinc',
  'sinc_overal',
  'overal_posit',
  'posit_thing',
  'thing_yesterday',
  'yesterday_came',
  'came_home',
  'home_even',
  'even_work',
  'work_long',
  'long_hour',
  'hour_stay',
  'stay_late',
  'late_play',
  'play_phone',
  'phone_went',
  'went_bed',
  'bed_get',
  'get_done',
  'done_mess',
  'mess_everyth',
  'everyth_woke',
  'woke_yell',
  'yell_ask',
  'ask_wake',
  'wake_walk',
  'walk_said',
  'said_miss',
  'miss_im',
  'im_respons',
  'respons_confus',
  'confus_said',
  'said_first',
  'first_alway',
  'alway_wake',
  'wake_set',
  'set_alarm',
  'alarm_expect',
  'expect_wake',
  'wake_time',
  'time_yell',
  'yell_forgot',
  'forgot_set',
  'set_alarm',
  'alarm_said',
  'said_big',
  'big_deal',
  'deal_likeh',
  'likeh_miss',
  'miss_import',
  'import_mean',
  'mean_someth',
  'someth_got',
  'got_angri',
  'angri_said',
  'said_walk',
  'walk_help',
  'help_imrov',
  'imrov_health',
  'health_restor',
  'restor_energi',
  'energi_help',
  'help_feel',
  'feel_better',
  'better_made',
  'made_comment',
  'comment_miss',
  'miss_one',
  'one_walk',
  'walk_hurt',
  'hurt_unload',
  'unload_yell',
  'yell_tri',
  'tri_prevent',
  'prevent_hobbi',
  'hobbi_unknown',
  'unknown_reason',
  'reason_told',
  'told_sore',
  'sore_mistaken',
  'mistaken_even',
  'even_though',
  'though_admit',
  'admit_daili',
  'daili_walk',
  'walk_around',
  'around_veteran',
  'veteran_park',
  'park_weird',
  'weird_also',
  'also_reaction',
  'reaction_realli',
  'realli_thought',
  'thought_top',
  'top_storm',
  'storm_went',
  'went_shower',
  'shower_say',
  'say_ruin',
  'ruin_entir',
  'entir_day',
  'day_got',
  'got_start',
  'start_avoid',
  'avoid_ignor',
  'ignor_even',
  'even_talk',
  'talk_directli',
  'directli_went',
  'went_work',
  'work_refus',
  'refus_respond',
  'respond_call',
  'call_realli',
  'realli_im',
  'im_loss',
  'loss_like',
  'like_mayb',
  'mayb_someth',
  'someth_said',
  'said_walk',
  'walk_realli',
  'realli_know',
  'know_sulk',
  'sulk_nonstop',
  'nonstop_im',
  'im_liter',
  'liter_lose',
  'lose_mind',
  'mind_aita',
  'past_month_husband',
  'month_husband_wake',
  'husband_wake_everi',
  'wake_everi_night',
  'everi_night_walk',
  'night_walk_walk',
  'walk_walk_would',
  'walk_would_take',
  'would_take_hour',
  'take_hour_side',
  'hour_side_note',
  'side_note_mention',
  'note_mention_new',
  'mention_new_tri',
  'new_tri_lose',
  'tri_lose_weight',
  'lose_weight_pretti',
  'weight_pretti_thin',
  'pretti_thin_athlet',
  'thin_athlet_natur',
  'athlet_natur_sport',
  'natur_sport_interest',
  'sport_interest_hobbi',
  'interest_hobbi_infact',
  'hobbi_infact_hate',
  'infact_hate_type',
  'hate_type_sport',
  'type_sport_im',
  'sport_im_happi',
  'im_happi_sinc',
  'happi_sinc_overal',
  'sinc_overal_posit',
  'overal_posit_thing',
  'posit_thing_yesterday',
  'thing_yesterday_came',
  'yesterday_came_home',
  'came_home_even',
  'home_even_work',
  'even_work_long',
  'work_long_hour',
  'long_hour_stay',
  'hour_stay_late',
  'stay_late_play',
  'late_play_phone',
  'play_phone_went',
  'phone_went_bed',
  'went_bed_get',
  'bed_get_done',
  'get_done_mess',
  'done_mess_everyth',
  'mess_everyth_woke',
  'everyth_woke_yell',
  'woke_yell_ask',
  'yell_ask_wake',
  'ask_wake_walk',
  'wake_walk_said',
  'walk_said_miss',
  'said_miss_im',
  'miss_im_respons',
  'im_respons_confus',
  'respons_confus_said',
  'confus_said_first',
  'said_first_alway',
  'first_alway_wake',
  'alway_wake_set',
  'wake_set_alarm',
  'set_alarm_expect',
  'alarm_expect_wake',
  'expect_wake_time',
  'wake_time_yell',
  'time_yell_forgot',
  'yell_forgot_set',
  'forgot_set_alarm',
  'set_alarm_said',
  'alarm_said_big',
  'said_big_deal',
  'big_deal_likeh',
  'deal_likeh_miss',
  'likeh_miss_import',
  'miss_import_mean',
  'import_mean_someth',
  'mean_someth_got',
  'someth_got_angri',
  'got_angri_said',
  'angri_said_walk',
  'said_walk_help',
  'walk_help_imrov',
  'help_imrov_health',
  'imrov_health_restor',
  'health_restor_energi',
  'restor_energi_help',
  'energi_help_feel',
  'help_feel_better',
  'feel_better_made',
  'better_made_comment',
  'made_comment_miss',
  'comment_miss_one',
  'miss_one_walk',
  'one_walk_hurt',
  'walk_hurt_unload',
  'hurt_unload_yell',
  'unload_yell_tri',
  'yell_tri_prevent',
  'tri_prevent_hobbi',
  'prevent_hobbi_unknown',
  'hobbi_unknown_reason',
  'unknown_reason_told',
  'reason_told_sore',
  'told_sore_mistaken',
  'sore_mistaken_even',
  'mistaken_even_though',
  'even_though_admit',
  'though_admit_daili',
  'admit_daili_walk',
  'daili_walk_around',
  'walk_around_veteran',
  'around_veteran_park',
  'veteran_park_weird',
  'park_weird_also',
  'weird_also_reaction',
  'also_reaction_realli',
  'reaction_realli_thought',
  'realli_thought_top',
  'thought_top_storm',
  'top_storm_went',
  'storm_went_shower',
  'went_shower_say',
  'shower_say_ruin',
  'say_ruin_entir',
  'ruin_entir_day',
  'entir_day_got',
  'day_got_start',
  'got_start_avoid',
  'start_avoid_ignor',
  'avoid_ignor_even',
  'ignor_even_talk',
  'even_talk_directli',
  'talk_directli_went',
  'directli_went_work',
  'went_work_refus',
  'work_refus_respond',
  'refus_respond_call',
  'respond_call_realli',
  'call_realli_im',
  'realli_im_loss',
  'im_loss_like',
  'loss_like_mayb',
  'like_mayb_someth',
  'mayb_someth_said',
  'someth_said_walk',
  'said_walk_realli',
  'walk_realli_know',
  'realli_know_sulk',
  'know_sulk_nonstop',
  'sulk_nonstop_im',
  'nonstop_im_liter',
  'im_liter_lose',
  'liter_lose_mind',
  'lose_mind_aita'],
 ['parent',
  'late',
  'everyth',
  'like',
  'everyth',
  'sister',
  'disappoint',
  'mani',
  'time',
  'graduat',
  'ceremoni',
  'birthday',
  'parti',
  'even',
  'father',
  'retir',
  'dinner',
  'complet',
  'mother',
  'fault',
  'wonder',
  'mother',
  'love',
  'dearli',
  'understand',
  'concept',
  'punctual',
  'seen',
  'talk',
  'sister',
  'phone',
  'remind',
  'need',
  'babi',
  'sister',
  'danc',
  'recit',
  'wave',
  'arriv',
  'sister',
  'danc',
  'use',
  'dad',
  'done',
  'tri',
  'get',
  'time',
  'anyth',
  'wife',
  'told',
  'uncertain',
  'term',
  'mother',
  'late',
  'wed',
  'would',
  'terribl',
  'thing',
  'half',
  'joke',
  'wit',
  'mom',
  'dad',
  'arriv',
  'halfway',
  'cousin',
  'quinceañera',
  'complet',
  'wife',
  'involv',
  'dick',
  'move',
  'complet',
  'mine',
  'get',
  'sampl',
  'wed',
  'talk',
  'printer',
  'one',
  'special',
  'invit',
  'print',
  'time',
  'state',
  'one',
  'hour',
  'earlier',
  'actual',
  'start',
  'time',
  'ceremoni',
  'mother',
  'besid',
  'appar',
  'left',
  'hous',
  'thought',
  'go',
  'miss',
  'wed',
  'sinc',
  'part',
  'mil',
  'light',
  'candl',
  'would',
  'use',
  'light',
  'uniti',
  'candl',
  'stuff',
  'arriv',
  'notic',
  'peopl',
  'also',
  'arriv',
  'park',
  'reliev',
  'start',
  'late',
  'went',
  'ceremoni',
  'went',
  'beauti',
  'wed',
  'pictur',
  'recept',
  'problem',
  'came',
  'last',
  'sunday',
  'parent',
  'came',
  'big',
  'famili',
  'dinner',
  'bother',
  'start',
  'grill',
  'show',
  'ask',
  'everyon',
  'eat',
  'said',
  'knew',
  'would',
  'wait',
  'sinc',
  'alway',
  'late',
  'said',
  'alway',
  'late',
  'time',
  'wed',
  'arriv',
  'minut',
  'time',
  'invit',
  'idiot',
  'cousin',
  'john',
  'real',
  'name',
  'common',
  'deserv',
  'peopl',
  'know',
  'dolt',
  'snort',
  'statement',
  'peopl',
  'giggl',
  'smile',
  'pick',
  'ask',
  'funni',
  'came',
  'clean',
  'told',
  'special',
  'invit',
  'piss',
  'trust',
  'make',
  'look',
  'foolish',
  'front',
  'everyon',
  'cousin',
  'control',
  'never',
  'would',
  'known',
  'aita',
  'edit',
  'part',
  'reason',
  'mad',
  'invit',
  'frame',
  'honest',
  'alreadi',
  'plan',
  'heist',
  'sister',
  'replac',
  'real',
  'one',
  'case',
  'ever',
  'notic',
  'discrep',
  'one',
  'frame',
  'home',
  'edit',
  'number',
  'two',
  'yeah',
  'latino',
  'way',
  'consid',
  'racist',
  'mani',
  'guess',
  'spain',
  'issu',
  'philippin',
  'basic',
  'anywher',
  'guy',
  'charg',
  'edit',
  'three',
  'stop',
  'defend',
  'john',
  'spent',
  'thirti',
  'year',
  'mess',
  'aita',
  'stori',
  'end',
  'get',
  'offens',
  'tattoo',
  '$',
  'remov',
  'get',
  'bodi',
  'caviti',
  'search',
  'mexican',
  'border',
  'would',
  'post',
  'happen',
  'like',
  'ten',
  'year',
  'ago',
  'parent_late',
  'late_everyth',
  'everyth_like',
  'like_everyth',
  'everyth_sister',
  'sister_disappoint',
  'disappoint_mani',
  'mani_time',
  'time_graduat',
  'graduat_ceremoni',
  'ceremoni_birthday',
  'birthday_parti',
  'parti_even',
  'even_father',
  'father_retir',
  'retir_dinner',
  'dinner_complet',
  'complet_mother',
  'mother_fault',
  'fault_wonder',
  'wonder_mother',
  'mother_love',
  'love_dearli',
  'dearli_understand',
  'understand_concept',
  'concept_punctual',
  'punctual_seen',
  'seen_talk',
  'talk_sister',
  'sister_phone',
  'phone_remind',
  'remind_need',
  'need_babi',
  'babi_sister',
  'sister_danc',
  'danc_recit',
  'recit_wave',
  'wave_arriv',
  'arriv_sister',
  'sister_danc',
  'danc_use',
  'use_dad',
  'dad_done',
  'done_tri',
  'tri_get',
  'get_time',
  'time_anyth',
  'anyth_wife',
  'wife_told',
  'told_uncertain',
  'uncertain_term',
  'term_mother',
  'mother_late',
  'late_wed',
  'wed_would',
  'would_terribl',
  'terribl_thing',
  'thing_half',
  'half_joke',
  'joke_wit',
  'wit_mom',
  'mom_dad',
  'dad_arriv',
  'arriv_halfway',
  'halfway_cousin',
  'cousin_quinceañera',
  'quinceañera_complet',
  'complet_wife',
  'wife_involv',
  'involv_dick',
  'dick_move',
  'move_complet',
  'complet_mine',
  'mine_get',
  'get_sampl',
  'sampl_wed',
  'wed_talk',
  'talk_printer',
  'printer_one',
  'one_special',
  'special_invit',
  'invit_print',
  'print_time',
  'time_state',
  'state_one',
  'one_hour',
  'hour_earlier',
  'earlier_actual',
  'actual_start',
  'start_time',
  'time_ceremoni',
  'ceremoni_mother',
  'mother_besid',
  'besid_appar',
  'appar_left',
  'left_hous',
  'hous_thought',
  'thought_go',
  'go_miss',
  'miss_wed',
  'wed_sinc',
  'sinc_part',
  'part_mil',
  'mil_light',
  'light_candl',
  'candl_would',
  'would_use',
  'use_light',
  'light_uniti',
  'uniti_candl',
  'candl_stuff',
  'stuff_arriv',
  'arriv_notic',
  'notic_peopl',
  'peopl_also',
  'also_arriv',
  'arriv_park',
  'park_reliev',
  'reliev_start',
  'start_late',
  'late_went',
  'went_ceremoni',
  'ceremoni_went',
  'went_beauti',
  'beauti_wed',
  'wed_pictur',
  'pictur_recept',
  'recept_problem',
  'problem_came',
  'came_last',
  'last_sunday',
  'sunday_parent',
  'parent_came',
  'came_big',
  'big_famili',
  'famili_dinner',
  'dinner_bother',
  'bother_start',
  'start_grill',
  'grill_show',
  'show_ask',
  'ask_everyon',
  'everyon_eat',
  'eat_said',
  'said_knew',
  'knew_would',
  'would_wait',
  'wait_sinc',
  'sinc_alway',
  'alway_late',
  'late_said',
  'said_alway',
  'alway_late',
  'late_time',
  'time_wed',
  'wed_arriv',
  'arriv_minut',
  'minut_time',
  'time_invit',
  'invit_idiot',
  'idiot_cousin',
  'cousin_john',
  'john_real',
  'real_name',
  'name_common',
  'common_deserv',
  'deserv_peopl',
  'peopl_know',
  'know_dolt',
  'dolt_snort',
  'snort_statement',
  'statement_peopl',
  'peopl_giggl',
  'giggl_smile',
  'smile_pick',
  'pick_ask',
  'ask_funni',
  'funni_came',
  'came_clean',
  'clean_told',
  'told_special',
  'special_invit',
  'invit_piss',
  'piss_trust',
  'trust_make',
  'make_look',
  'look_foolish',
  'foolish_front',
  'front_everyon',
  'everyon_cousin',
  'cousin_control',
  'control_never',
  'never_would',
  'would_known',
  'known_aita',
  'aita_edit',
  'edit_part',
  'part_reason',
  'reason_mad',
  'mad_invit',
  'invit_frame',
  'frame_honest',
  'honest_alreadi',
  'alreadi_plan',
  'plan_heist',
  'heist_sister',
  'sister_replac',
  'replac_real',
  'real_one',
  'one_case',
  'case_ever',
  'ever_notic',
  'notic_discrep',
  'discrep_one',
  'one_frame',
  'frame_home',
  'home_edit',
  'edit_number',
  'number_two',
  'two_yeah',
  'yeah_latino',
  'latino_way',
  'way_consid',
  'consid_racist',
  'racist_mani',
  'mani_guess',
  'guess_spain',
  'spain_issu',
  'issu_philippin',
  'philippin_basic',
  'basic_anywher',
  'anywher_guy',
  'guy_charg',
  'charg_edit',
  'edit_three',
  'three_stop',
  'stop_defend',
  'defend_john',
  'john_spent',
  'spent_thirti',
  'thirti_year',
  'year_mess',
  'mess_aita',
  'aita_stori',
  'stori_end',
  'end_get',
  'get_offens',
  'offens_tattoo',
  'tattoo_$',
  '$_remov',
  'remov_get',
  'get_bodi',
  'bodi_caviti',
  'caviti_search',
  'search_mexican',
  'mexican_border',
  'border_would',
  'would_post',
  'post_happen',
  'happen_like',
  'like_ten',
  'ten_year',
  'year_ago',
  'parent_late_everyth',
  'late_everyth_like',
  'everyth_like_everyth',
  'like_everyth_sister',
  'everyth_sister_disappoint',
  'sister_disappoint_mani',
  'disappoint_mani_time',
  'mani_time_graduat',
  'time_graduat_ceremoni',
  'graduat_ceremoni_birthday',
  'ceremoni_birthday_parti',
  'birthday_parti_even',
  'parti_even_father',
  'even_father_retir',
  'father_retir_dinner',
  'retir_dinner_complet',
  'dinner_complet_mother',
  'complet_mother_fault',
  'mother_fault_wonder',
  'fault_wonder_mother',
  'wonder_mother_love',
  'mother_love_dearli',
  'love_dearli_understand',
  'dearli_understand_concept',
  'understand_concept_punctual',
  'concept_punctual_seen',
  'punctual_seen_talk',
  'seen_talk_sister',
  'talk_sister_phone',
  'sister_phone_remind',
  'phone_remind_need',
  'remind_need_babi',
  'need_babi_sister',
  'babi_sister_danc',
  'sister_danc_recit',
  'danc_recit_wave',
  'recit_wave_arriv',
  'wave_arriv_sister',
  'arriv_sister_danc',
  'sister_danc_use',
  'danc_use_dad',
  'use_dad_done',
  'dad_done_tri',
  'done_tri_get',
  'tri_get_time',
  'get_time_anyth',
  'time_anyth_wife',
  'anyth_wife_told',
  'wife_told_uncertain',
  'told_uncertain_term',
  'uncertain_term_mother',
  'term_mother_late',
  'mother_late_wed',
  'late_wed_would',
  'wed_would_terribl',
  'would_terribl_thing',
  'terribl_thing_half',
  'thing_half_joke',
  'half_joke_wit',
  'joke_wit_mom',
  'wit_mom_dad',
  'mom_dad_arriv',
  'dad_arriv_halfway',
  'arriv_halfway_cousin',
  'halfway_cousin_quinceañera',
  'cousin_quinceañera_complet',
  'quinceañera_complet_wife',
  'complet_wife_involv',
  'wife_involv_dick',
  'involv_dick_move',
  'dick_move_complet',
  'move_complet_mine',
  'complet_mine_get',
  'mine_get_sampl',
  'get_sampl_wed',
  'sampl_wed_talk',
  'wed_talk_printer',
  'talk_printer_one',
  'printer_one_special',
  'one_special_invit',
  'special_invit_print',
  'invit_print_time',
  'print_time_state',
  'time_state_one',
  'state_one_hour',
  'one_hour_earlier',
  'hour_earlier_actual',
  'earlier_actual_start',
  'actual_start_time',
  'start_time_ceremoni',
  'time_ceremoni_mother',
  'ceremoni_mother_besid',
  'mother_besid_appar',
  'besid_appar_left',
  'appar_left_hous',
  'left_hous_thought',
  'hous_thought_go',
  'thought_go_miss',
  'go_miss_wed',
  'miss_wed_sinc',
  'wed_sinc_part',
  'sinc_part_mil',
  'part_mil_light',
  'mil_light_candl',
  'light_candl_would',
  'candl_would_use',
  'would_use_light',
  'use_light_uniti',
  'light_uniti_candl',
  'uniti_candl_stuff',
  'candl_stuff_arriv',
  'stuff_arriv_notic',
  'arriv_notic_peopl',
  'notic_peopl_also',
  'peopl_also_arriv',
  'also_arriv_park',
  'arriv_park_reliev',
  'park_reliev_start',
  'reliev_start_late',
  'start_late_went',
  'late_went_ceremoni',
  'went_ceremoni_went',
  'ceremoni_went_beauti',
  'went_beauti_wed',
  'beauti_wed_pictur',
  'wed_pictur_recept',
  'pictur_recept_problem',
  'recept_problem_came',
  'problem_came_last',
  'came_last_sunday',
  'last_sunday_parent',
  'sunday_parent_came',
  'parent_came_big',
  'came_big_famili',
  'big_famili_dinner',
  'famili_dinner_bother',
  'dinner_bother_start',
  'bother_start_grill',
  'start_grill_show',
  'grill_show_ask',
  'show_ask_everyon',
  'ask_everyon_eat',
  'everyon_eat_said',
  'eat_said_knew',
  'said_knew_would',
  'knew_would_wait',
  'would_wait_sinc',
  'wait_sinc_alway',
  'sinc_alway_late',
  'alway_late_said',
  'late_said_alway',
  'said_alway_late',
  'alway_late_time',
  'late_time_wed',
  'time_wed_arriv',
  'wed_arriv_minut',
  'arriv_minut_time',
  'minut_time_invit',
  'time_invit_idiot',
  'invit_idiot_cousin',
  'idiot_cousin_john',
  'cousin_john_real',
  'john_real_name',
  'real_name_common',
  'name_common_deserv',
  'common_deserv_peopl',
  'deserv_peopl_know',
  'peopl_know_dolt',
  'know_dolt_snort',
  'dolt_snort_statement',
  'snort_statement_peopl',
  'statement_peopl_giggl',
  'peopl_giggl_smile',
  'giggl_smile_pick',
  'smile_pick_ask',
  'pick_ask_funni',
  'ask_funni_came',
  'funni_came_clean',
  'came_clean_told',
  'clean_told_special',
  'told_special_invit',
  'special_invit_piss',
  'invit_piss_trust',
  'piss_trust_make',
  'trust_make_look',
  'make_look_foolish',
  'look_foolish_front',
  'foolish_front_everyon',
  'front_everyon_cousin',
  'everyon_cousin_control',
  'cousin_control_never',
  'control_never_would',
  'never_would_known',
  'would_known_aita',
  'known_aita_edit',
  'aita_edit_part',
  'edit_part_reason',
  'part_reason_mad',
  'reason_mad_invit',
  'mad_invit_frame',
  'invit_frame_honest',
  'frame_honest_alreadi',
  'honest_alreadi_plan',
  'alreadi_plan_heist',
  'plan_heist_sister',
  'heist_sister_replac',
  'sister_replac_real',
  'replac_real_one',
  'real_one_case',
  'one_case_ever',
  'case_ever_notic',
  'ever_notic_discrep',
  'notic_discrep_one',
  'discrep_one_frame',
  'one_frame_home',
  'frame_home_edit',
  'home_edit_number',
  'edit_number_two',
  'number_two_yeah',
  'two_yeah_latino',
  'yeah_latino_way',
  'latino_way_consid',
  'way_consid_racist',
  'consid_racist_mani',
  'racist_mani_guess',
  'mani_guess_spain',
  'guess_spain_issu',
  'spain_issu_philippin',
  'issu_philippin_basic',
  'philippin_basic_anywher',
  'basic_anywher_guy',
  'anywher_guy_charg',
  'guy_charg_edit',
  'charg_edit_three',
  'edit_three_stop',
  'three_stop_defend',
  'stop_defend_john',
  'defend_john_spent',
  'john_spent_thirti',
  'spent_thirti_year',
  'thirti_year_mess',
  'year_mess_aita',
  'mess_aita_stori',
  'aita_stori_end',
  'stori_end_get',
  'end_get_offens',
  'get_offens_tattoo',
  'offens_tattoo_$',
  'tattoo_$_remov',
  '$_remov_get',
  'remov_get_bodi',
  'get_bodi_caviti',
  'bodi_caviti_search',
  'caviti_search_mexican',
  'search_mexican_border',
  'mexican_border_would',
  'border_would_post',
  'would_post_happen',
  'post_happen_like',
  'happen_like_ten',
  'like_ten_year',
  'ten_year_ago'],
 ['husband',
  'got',
  'marri',
  'last',
  'week',
  'super',
  'chill',
  'throughout',
  'whole',
  'wed',
  'plan',
  'actual',
  'event',
  'know',
  'sh\\',
  '*',
  'happen',
  'anyth',
  'goe',
  'wrong',
  'exactli',
  'want',
  'big',
  'deal',
  'may',
  'even',
  'make',
  'wed',
  'memor',
  'guest',
  'one',
  'thing',
  'told',
  'husband',
  'want',
  'happen',
  'want',
  'smash',
  'cake',
  'face',
  'suspicion',
  'would',
  'find',
  'funni',
  'plan',
  'flat',
  'told',
  'think',
  'funni',
  'want',
  'mess',
  'makeup',
  'took',
  'hour',
  'appli',
  'want',
  'cake',
  'expens',
  'wed',
  'dress',
  'told',
  'would',
  'livid',
  'promis',
  'well',
  'come',
  'cake',
  'cut',
  'time',
  'smash',
  'cake',
  'face',
  'got',
  'dress',
  'mess',
  'makeup',
  'like',
  'knew',
  'would',
  'im',
  'pretti',
  'sure',
  'friend',
  'convinc',
  'make',
  'better',
  'kept',
  'togeth',
  'went',
  'clean',
  'put',
  'smile',
  'rest',
  'recept',
  'afterward',
  'let',
  'loos',
  'yell',
  'one',
  'thing',
  'ask',
  'promis',
  'told',
  'dramat',
  'big',
  'deal',
  'enjoy',
  'time',
  'newlyw',
  'overli',
  'dramat',
  'aita',
  'husband_got',
  'got_marri',
  'marri_last',
  'last_week',
  'week_super',
  'super_chill',
  'chill_throughout',
  'throughout_whole',
  'whole_wed',
  'wed_plan',
  'plan_actual',
  'actual_event',
  'event_know',
  'know_sh\\',
  'sh\\_*',
  '*_happen',
  'happen_anyth',
  'anyth_goe',
  'goe_wrong',
  'wrong_exactli',
  'exactli_want',
  'want_big',
  'big_deal',
  'deal_may',
  'may_even',
  'even_make',
  'make_wed',
  'wed_memor',
  'memor_guest',
  'guest_one',
  'one_thing',
  'thing_told',
  'told_husband',
  'husband_want',
  'want_happen',
  'happen_want',
  'want_smash',
  'smash_cake',
  'cake_face',
  'face_suspicion',
  'suspicion_would',
  'would_find',
  'find_funni',
  'funni_plan',
  'plan_flat',
  'flat_told',
  'told_think',
  'think_funni',
  'funni_want',
  'want_mess',
  'mess_makeup',
  'makeup_took',
  'took_hour',
  'hour_appli',
  'appli_want',
  'want_cake',
  'cake_expens',
  'expens_wed',
  'wed_dress',
  'dress_told',
  'told_would',
  'would_livid',
  'livid_promis',
  'promis_well',
  'well_come',
  'come_cake',
  'cake_cut',
  'cut_time',
  'time_smash',
  'smash_cake',
  'cake_face',
  'face_got',
  'got_dress',
  'dress_mess',
  'mess_makeup',
  'makeup_like',
  'like_knew',
  'knew_would',
  'would_im',
  'im_pretti',
  'pretti_sure',
  'sure_friend',
  'friend_convinc',
  'convinc_make',
  'make_better',
  'better_kept',
  'kept_togeth',
  'togeth_went',
  'went_clean',
  'clean_put',
  'put_smile',
  'smile_rest',
  'rest_recept',
  'recept_afterward',
  'afterward_let',
  'let_loos',
  'loos_yell',
  'yell_one',
  'one_thing',
  'thing_ask',
  'ask_promis',
  'promis_told',
  'told_dramat',
  'dramat_big',
  'big_deal',
  'deal_enjoy',
  'enjoy_time',
  'time_newlyw',
  'newlyw_overli',
  'overli_dramat',
  'dramat_aita',
  'husband_got_marri',
  'got_marri_last',
  'marri_last_week',
  'last_week_super',
  'week_super_chill',
  'super_chill_throughout',
  'chill_throughout_whole',
  'throughout_whole_wed',
  'whole_wed_plan',
  'wed_plan_actual',
  'plan_actual_event',
  'actual_event_know',
  'event_know_sh\\',
  'know_sh\\_*',
  'sh\\_*_happen',
  '*_happen_anyth',
  'happen_anyth_goe',
  'anyth_goe_wrong',
  'goe_wrong_exactli',
  'wrong_exactli_want',
  'exactli_want_big',
  'want_big_deal',
  'big_deal_may',
  'deal_may_even',
  'may_even_make',
  'even_make_wed',
  'make_wed_memor',
  'wed_memor_guest',
  'memor_guest_one',
  'guest_one_thing',
  'one_thing_told',
  'thing_told_husband',
  'told_husband_want',
  'husband_want_happen',
  'want_happen_want',
  'happen_want_smash',
  'want_smash_cake',
  'smash_cake_face',
  'cake_face_suspicion',
  'face_suspicion_would',
  'suspicion_would_find',
  'would_find_funni',
  'find_funni_plan',
  'funni_plan_flat',
  'plan_flat_told',
  'flat_told_think',
  'told_think_funni',
  'think_funni_want',
  'funni_want_mess',
  'want_mess_makeup',
  'mess_makeup_took',
  'makeup_took_hour',
  'took_hour_appli',
  'hour_appli_want',
  'appli_want_cake',
  'want_cake_expens',
  'cake_expens_wed',
  'expens_wed_dress',
  'wed_dress_told',
  'dress_told_would',
  'told_would_livid',
  'would_livid_promis',
  'livid_promis_well',
  'promis_well_come',
  'well_come_cake',
  'come_cake_cut',
  'cake_cut_time',
  'cut_time_smash',
  'time_smash_cake',
  'smash_cake_face',
  'cake_face_got',
  'face_got_dress',
  'got_dress_mess',
  'dress_mess_makeup',
  'mess_makeup_like',
  'makeup_like_knew',
  'like_knew_would',
  'knew_would_im',
  'would_im_pretti',
  'im_pretti_sure',
  'pretti_sure_friend',
  'sure_friend_convinc',
  'friend_convinc_make',
  'convinc_make_better',
  'make_better_kept',
  'better_kept_togeth',
  'kept_togeth_went',
  'togeth_went_clean',
  'went_clean_put',
  'clean_put_smile',
  'put_smile_rest',
  'smile_rest_recept',
  'rest_recept_afterward',
  'recept_afterward_let',
  'afterward_let_loos',
  'let_loos_yell',
  'loos_yell_one',
  'yell_one_thing',
  'one_thing_ask',
  'thing_ask_promis',
  'ask_promis_told',
  'promis_told_dramat',
  'told_dramat_big',
  'dramat_big_deal',
  'big_deal_enjoy',
  'deal_enjoy_time',
  'enjoy_time_newlyw',
  'time_newlyw_overli',
  'newlyw_overli_dramat',
  'overli_dramat_aita'],
 ['im',
  'year',
  'old',
  'girl',
  'colleg',
  'atm',
  'ive',
  'get',
  'bulliedharass',
  'three',
  'guy',
  'class',
  'taken',
  'messag',
  'onlin',
  'rather',
  'grossharass',
  'messag',
  'nsfw',
  'pictur',
  'im',
  'sure',
  'fill',
  'gap',
  'without',
  'go',
  'detail',
  'report',
  'block',
  'enough',
  'screenshot',
  'everi',
  'messag',
  'theyd',
  'sent',
  'found',
  'mother',
  'facebook',
  'page',
  'sent',
  'screenshot',
  'includ',
  'explan',
  'son',
  'bother',
  'mother',
  'horrifi',
  'shock',
  'sent',
  'explain',
  'go',
  'three',
  'side',
  'friend',
  'think',
  'geniu',
  'exactli',
  'deserv',
  'friend',
  'think',
  'took',
  'far',
  'line',
  'put',
  'mother',
  'also',
  'know',
  'home',
  'life',
  'like',
  'asshol',
  'gone',
  'anoth',
  'way',
  'edit',
  'due',
  'questionscom',
  'standard',
  'bulli',
  'report',
  'got',
  'warn',
  'messagespictur',
  'start',
  'prove',
  'anyth',
  'figur',
  'report',
  'work',
  'edit',
  'also',
  'whoever',
  'report',
  'worri',
  'current',
  'mental',
  'healththank',
  'mean',
  'im',
  'honestli',
  'good',
  'thank',
  'im_year',
  'year_old',
  'old_girl',
  'girl_colleg',
  'colleg_atm',
  'atm_ive',
  'ive_get',
  'get_bulliedharass',
  'bulliedharass_three',
  'three_guy',
  'guy_class',
  'class_taken',
  'taken_messag',
  'messag_onlin',
  'onlin_rather',
  'rather_grossharass',
  'grossharass_messag',
  'messag_nsfw',
  'nsfw_pictur',
  'pictur_im',
  'im_sure',
  'sure_fill',
  'fill_gap',
  'gap_without',
  'without_go',
  'go_detail',
  'detail_report',
  'report_block',
  'block_enough',
  'enough_screenshot',
  'screenshot_everi',
  'everi_messag',
  'messag_theyd',
  'theyd_sent',
  'sent_found',
  'found_mother',
  'mother_facebook',
  'facebook_page',
  'page_sent',
  'sent_screenshot',
  'screenshot_includ',
  'includ_explan',
  'explan_son',
  'son_bother',
  'bother_mother',
  'mother_horrifi',
  'horrifi_shock',
  'shock_sent',
  'sent_explain',
  'explain_go',
  'go_three',
  'three_side',
  'side_friend',
  'friend_think',
  'think_geniu',
  'geniu_exactli',
  'exactli_deserv',
  'deserv_friend',
  'friend_think',
  'think_took',
  'took_far',
  'far_line',
  'line_put',
  'put_mother',
  'mother_also',
  'also_know',
  'know_home',
  'home_life',
  'life_like',
  'like_asshol',
  'asshol_gone',
  'gone_anoth',
  'anoth_way',
  'way_edit',
  'edit_due',
  'due_questionscom',
  'questionscom_standard',
  'standard_bulli',
  'bulli_report',
  'report_got',
  'got_warn',
  'warn_messagespictur',
  'messagespictur_start',
  'start_prove',
  'prove_anyth',
  'anyth_figur',
  'figur_report',
  'report_work',
  'work_edit',
  'edit_also',
  'also_whoever',
  'whoever_report',
  'report_worri',
  'worri_current',
  'current_mental',
  'mental_healththank',
  'healththank_mean',
  'mean_im',
  'im_honestli',
  'honestli_good',
  'good_thank',
  'im_year_old',
  'year_old_girl',
  'old_girl_colleg',
  'girl_colleg_atm',
  'colleg_atm_ive',
  'atm_ive_get',
  'ive_get_bulliedharass',
  'get_bulliedharass_three',
  'bulliedharass_three_guy',
  'three_guy_class',
  'guy_class_taken',
  'class_taken_messag',
  'taken_messag_onlin',
  'messag_onlin_rather',
  'onlin_rather_grossharass',
  'rather_grossharass_messag',
  'grossharass_messag_nsfw',
  'messag_nsfw_pictur',
  'nsfw_pictur_im',
  'pictur_im_sure',
  'im_sure_fill',
  'sure_fill_gap',
  'fill_gap_without',
  'gap_without_go',
  'without_go_detail',
  'go_detail_report',
  'detail_report_block',
  'report_block_enough',
  'block_enough_screenshot',
  'enough_screenshot_everi',
  'screenshot_everi_messag',
  'everi_messag_theyd',
  'messag_theyd_sent',
  'theyd_sent_found',
  'sent_found_mother',
  'found_mother_facebook',
  'mother_facebook_page',
  'facebook_page_sent',
  'page_sent_screenshot',
  'sent_screenshot_includ',
  'screenshot_includ_explan',
  'includ_explan_son',
  'explan_son_bother',
  'son_bother_mother',
  'bother_mother_horrifi',
  'mother_horrifi_shock',
  'horrifi_shock_sent',
  'shock_sent_explain',
  'sent_explain_go',
  'explain_go_three',
  'go_three_side',
  'three_side_friend',
  'side_friend_think',
  'friend_think_geniu',
  'think_geniu_exactli',
  'geniu_exactli_deserv',
  'exactli_deserv_friend',
  'deserv_friend_think',
  'friend_think_took',
  'think_took_far',
  'took_far_line',
  'far_line_put',
  'line_put_mother',
  'put_mother_also',
  'mother_also_know',
  'also_know_home',
  'know_home_life',
  'home_life_like',
  'life_like_asshol',
  'like_asshol_gone',
  'asshol_gone_anoth',
  'gone_anoth_way',
  'anoth_way_edit',
  'way_edit_due',
  'edit_due_questionscom',
  'due_questionscom_standard',
  'questionscom_standard_bulli',
  'standard_bulli_report',
  'bulli_report_got',
  'report_got_warn',
  'got_warn_messagespictur',
  'warn_messagespictur_start',
  'messagespictur_start_prove',
  'start_prove_anyth',
  'prove_anyth_figur',
  'anyth_figur_report',
  'figur_report_work',
  'report_work_edit',
  'work_edit_also',
  'edit_also_whoever',
  'also_whoever_report',
  'whoever_report_worri',
  'report_worri_current',
  'worri_current_mental',
  'current_mental_healththank',
  'mental_healththank_mean',
  'healththank_mean_im',
  'mean_im_honestli',
  'im_honestli_good',
  'honestli_good_thank'],
 ['father',
  'dick',
  'got',
  'mother',
  'pregnant',
  'want',
  'quit',
  'job',
  'stay',
  'home',
  'good',
  'littl',
  'wife',
  'mother',
  'well',
  'due',
  'trust',
  'fund',
  'realli',
  'need',
  'work',
  'mother',
  'refus',
  'divorc',
  'prenup',
  'got',
  'littl',
  'move',
  'back',
  'europ',
  'parent',
  'never',
  'knew',
  'mother',
  'good',
  'profess',
  'never',
  'realli',
  'want',
  'anyth',
  'grandmoth',
  'grandfath',
  'mom',
  'dad',
  'awesom',
  'got',
  'spend',
  'summer',
  'explor',
  'wild',
  'western',
  'canada',
  'father',
  'never',
  'paid',
  'child',
  'support',
  'like',
  'said',
  'realli',
  'matter',
  'mom',
  'make',
  'good',
  'money',
  'gave',
  'great',
  'life',
  'child',
  'point',
  'post',
  'im',
  'get',
  'marri',
  'met',
  'love',
  'life',
  'univers',
  'togeth',
  'eight',
  'year',
  'wonder',
  'person',
  'realli',
  'lobster',
  'sorri',
  'friend',
  'refer',
  'famili',
  'citi',
  'father',
  'huge',
  'rambuncti',
  'bunch',
  'lot',
  'intermingl',
  'busi',
  'person',
  'relationship',
  'parent',
  'grandpar',
  'found',
  'impend',
  'wed',
  'suppos',
  'contact',
  'want',
  'come',
  'canada',
  'meet',
  'fiance',
  'guess',
  'grandson',
  'acquaint',
  'small',
  'world',
  'found',
  'father',
  'basic',
  'abandon',
  'fend',
  'world',
  'honestli',
  'see',
  'piss',
  'say',
  'least',
  'funni',
  'decidedli',
  'upper',
  'middl',
  'class',
  'long',
  'stori',
  'short',
  'lawyer',
  'calcul',
  'amount',
  'child',
  'support',
  'father',
  'paid',
  'inyerest',
  'cost',
  'post',
  'secondari',
  'educ',
  'gave',
  'gift',
  'know',
  'came',
  'father',
  'yearli',
  'draw',
  'trust',
  'fund',
  'furiou',
  'obvious',
  'sizeabl',
  'amount',
  'much',
  'affect',
  'financ',
  'least',
  'next',
  'two',
  'year',
  'may',
  'need',
  'gasp',
  'get',
  'job',
  'contact',
  'tell',
  'current',
  'wife',
  'children',
  'neg',
  'affect',
  'give',
  'back',
  'money',
  'realli',
  'need',
  'guess',
  'entitl',
  'get',
  'trust',
  'fund',
  'well',
  'realli',
  'want',
  'pay',
  'debt',
  'mother',
  'may',
  'make',
  'sure',
  'retir',
  'whatev',
  'suit',
  'fanci',
  'im',
  'give',
  'back',
  'aita',
  'edit',
  'answer',
  'common',
  'question',
  'half',
  'sibl',
  'realli',
  'affect',
  'trust',
  'fund',
  'set',
  'alreadi',
  'tuition',
  'fee',
  'stuff',
  'cover',
  'grandpar',
  'famili',
  'set',
  'ba',
  'kid',
  'born',
  'one',
  'reason',
  'father',
  'upset',
  'sinc',
  'bother',
  'tell',
  'parent',
  'set',
  'sinc',
  'taken',
  'good',
  'chunk',
  'trust',
  'fund',
  'use',
  'set',
  'mine',
  'realist',
  'principl',
  'separ',
  'year',
  'ago',
  'would',
  'left',
  'exact',
  'posit',
  'mom',
  'work',
  'get',
  'phd',
  'could',
  'help',
  'kid',
  'certain',
  'condit',
  'want',
  'walk',
  'away',
  'grandpar',
  'sent',
  'pictur',
  'famili',
  'coolest',
  'thing',
  'grandfath',
  'look',
  'like',
  'granddad',
  'parent',
  'trap',
  'mom',
  'never',
  'remarri',
  'special',
  'friend',
  'sinc',
  'five',
  'amaz',
  'taught',
  'swear',
  'colombian',
  'spanish',
  'edit',
  'número',
  'lunch',
  'mom',
  'appar',
  'debt',
  'like',
  'guess',
  'liter',
  'write',
  'book',
  'treatment',
  'kid',
  'work',
  'okay',
  'never',
  'realli',
  'thought',
  'decid',
  'would',
  'best',
  'set',
  'scholarship',
  'peopl',
  'want',
  'go',
  'field',
  'studi',
  'sinc',
  'trustafarian',
  'afford',
  'howev',
  'go',
  'book',
  'friend',
  'trip',
  'wed',
  'go',
  'go',
  'pay',
  'car',
  'edit',
  'tre',
  'half',
  'brother',
  'post',
  'slightli',
  'differ',
  'viewpoint',
  'way',
  'come',
  'mother',
  'comment',
  'keep',
  'mind',
  'young',
  'man',
  'disillus',
  'father',
  'father_dick',
  'dick_got',
  'got_mother',
  'mother_pregnant',
  'pregnant_want',
  'want_quit',
  'quit_job',
  'job_stay',
  'stay_home',
  'home_good',
  'good_littl',
  'littl_wife',
  'wife_mother',
  'mother_well',
  'well_due',
  'due_trust',
  'trust_fund',
  'fund_realli',
  'realli_need',
  'need_work',
  'work_mother',
  'mother_refus',
  'refus_divorc',
  'divorc_prenup',
  'prenup_got',
  'got_littl',
  'littl_move',
  'move_back',
  'back_europ',
  'europ_parent',
  'parent_never',
  'never_knew',
  'knew_mother',
  'mother_good',
  'good_profess',
  'profess_never',
  'never_realli',
  'realli_want',
  'want_anyth',
  'anyth_grandmoth',
  'grandmoth_grandfath',
  'grandfath_mom',
  'mom_dad',
  'dad_awesom',
  'awesom_got',
  'got_spend',
  'spend_summer',
  'summer_explor',
  'explor_wild',
  'wild_western',
  'western_canada',
  'canada_father',
  'father_never',
  'never_paid',
  'paid_child',
  'child_support',
  'support_like',
  'like_said',
  'said_realli',
  'realli_matter',
  'matter_mom',
  'mom_make',
  'make_good',
  'good_money',
  'money_gave',
  'gave_great',
  'great_life',
  'life_child',
  'child_point',
  'point_post',
  'post_im',
  'im_get',
  'get_marri',
  'marri_met',
  'met_love',
  'love_life',
  'life_univers',
  'univers_togeth',
  'togeth_eight',
  'eight_year',
  'year_wonder',
  'wonder_person',
  'person_realli',
  'realli_lobster',
  'lobster_sorri',
  'sorri_friend',
  'friend_refer',
  'refer_famili',
  'famili_citi',
  'citi_father',
  'father_huge',
  'huge_rambuncti',
  'rambuncti_bunch',
  'bunch_lot',
  'lot_intermingl',
  'intermingl_busi',
  'busi_person',
  'person_relationship',
  'relationship_parent',
  'parent_grandpar',
  'grandpar_found',
  'found_impend',
  'impend_wed',
  'wed_suppos',
  'suppos_contact',
  'contact_want',
  'want_come',
  'come_canada',
  'canada_meet',
  'meet_fiance',
  'fiance_guess',
  'guess_grandson',
  'grandson_acquaint',
  'acquaint_small',
  'small_world',
  'world_found',
  'found_father',
  'father_basic',
  'basic_abandon',
  'abandon_fend',
  'fend_world',
  'world_honestli',
  'honestli_see',
  'see_piss',
  'piss_say',
  'say_least',
  'least_funni',
  'funni_decidedli',
  'decidedli_upper',
  'upper_middl',
  'middl_class',
  'class_long',
  'long_stori',
  'stori_short',
  'short_lawyer',
  'lawyer_calcul',
  'calcul_amount',
  'amount_child',
  'child_support',
  'support_father',
  'father_paid',
  'paid_inyerest',
  'inyerest_cost',
  'cost_post',
  'post_secondari',
  'secondari_educ',
  'educ_gave',
  'gave_gift',
  'gift_know',
  'know_came',
  'came_father',
  'father_yearli',
  'yearli_draw',
  'draw_trust',
  'trust_fund',
  'fund_furiou',
  'furiou_obvious',
  'obvious_sizeabl',
  'sizeabl_amount',
  'amount_much',
  'much_affect',
  'affect_financ',
  'financ_least',
  'least_next',
  'next_two',
  'two_year',
  'year_may',
  'may_need',
  'need_gasp',
  'gasp_get',
  'get_job',
  'job_contact',
  'contact_tell',
  'tell_current',
  'current_wife',
  'wife_children',
  'children_neg',
  'neg_affect',
  'affect_give',
  'give_back',
  'back_money',
  'money_realli',
  'realli_need',
  'need_guess',
  'guess_entitl',
  'entitl_get',
  'get_trust',
  'trust_fund',
  'fund_well',
  'well_realli',
  'realli_want',
  'want_pay',
  'pay_debt',
  'debt_mother',
  'mother_may',
  'may_make',
  'make_sure',
  'sure_retir',
  'retir_whatev',
  'whatev_suit',
  'suit_fanci',
  'fanci_im',
  'im_give',
  'give_back',
  'back_aita',
  'aita_edit',
  'edit_answer',
  'answer_common',
  'common_question',
  'question_half',
  'half_sibl',
  'sibl_realli',
  'realli_affect',
  'affect_trust',
  'trust_fund',
  'fund_set',
  'set_alreadi',
  'alreadi_tuition',
  'tuition_fee',
  'fee_stuff',
  'stuff_cover',
  'cover_grandpar',
  'grandpar_famili',
  'famili_set',
  'set_ba',
  'ba_kid',
  'kid_born',
  'born_one',
  'one_reason',
  'reason_father',
  'father_upset',
  'upset_sinc',
  'sinc_bother',
  'bother_tell',
  'tell_parent',
  'parent_set',
  'set_sinc',
  'sinc_taken',
  'taken_good',
  'good_chunk',
  'chunk_trust',
  'trust_fund',
  'fund_use',
  'use_set',
  'set_mine',
  'mine_realist',
  'realist_principl',
  'principl_separ',
  'separ_year',
  'year_ago',
  'ago_would',
  'would_left',
  'left_exact',
  'exact_posit',
  'posit_mom',
  'mom_work',
  'work_get',
  'get_phd',
  'phd_could',
  'could_help',
  'help_kid',
  'kid_certain',
  'certain_condit',
  'condit_want',
  'want_walk',
  'walk_away',
  'away_grandpar',
  'grandpar_sent',
  'sent_pictur',
  'pictur_famili',
  'famili_coolest',
  'coolest_thing',
  'thing_grandfath',
  'grandfath_look',
  'look_like',
  'like_granddad',
  'granddad_parent',
  'parent_trap',
  'trap_mom',
  'mom_never',
  'never_remarri',
  'remarri_special',
  'special_friend',
  'friend_sinc',
  'sinc_five',
  'five_amaz',
  'amaz_taught',
  'taught_swear',
  'swear_colombian',
  'colombian_spanish',
  'spanish_edit',
  'edit_número',
  'número_lunch',
  'lunch_mom',
  'mom_appar',
  'appar_debt',
  'debt_like',
  'like_guess',
  'guess_liter',
  'liter_write',
  'write_book',
  'book_treatment',
  'treatment_kid',
  'kid_work',
  'work_okay',
  'okay_never',
  'never_realli',
  'realli_thought',
  'thought_decid',
  'decid_would',
  'would_best',
  'best_set',
  'set_scholarship',
  'scholarship_peopl',
  'peopl_want',
  'want_go',
  'go_field',
  'field_studi',
  'studi_sinc',
  'sinc_trustafarian',
  'trustafarian_afford',
  'afford_howev',
  'howev_go',
  'go_book',
  'book_friend',
  'friend_trip',
  'trip_wed',
  'wed_go',
  'go_go',
  'go_pay',
  'pay_car',
  'car_edit',
  'edit_tre',
  'tre_half',
  'half_brother',
  'brother_post',
  'post_slightli',
  'slightli_differ',
  'differ_viewpoint',
  'viewpoint_way',
  'way_come',
  'come_mother',
  'mother_comment',
  'comment_keep',
  'keep_mind',
  'mind_young',
  'young_man',
  'man_disillus',
  'disillus_father',
  'father_dick_got',
  'dick_got_mother',
  'got_mother_pregnant',
  'mother_pregnant_want',
  'pregnant_want_quit',
  'want_quit_job',
  'quit_job_stay',
  'job_stay_home',
  'stay_home_good',
  'home_good_littl',
  'good_littl_wife',
  'littl_wife_mother',
  'wife_mother_well',
  'mother_well_due',
  'well_due_trust',
  'due_trust_fund',
  'trust_fund_realli',
  'fund_realli_need',
  'realli_need_work',
  'need_work_mother',
  'work_mother_refus',
  'mother_refus_divorc',
  'refus_divorc_prenup',
  'divorc_prenup_got',
  'prenup_got_littl',
  'got_littl_move',
  'littl_move_back',
  'move_back_europ',
  'back_europ_parent',
  'europ_parent_never',
  'parent_never_knew',
  'never_knew_mother',
  'knew_mother_good',
  'mother_good_profess',
  'good_profess_never',
  'profess_never_realli',
  'never_realli_want',
  'realli_want_anyth',
  'want_anyth_grandmoth',
  'anyth_grandmoth_grandfath',
  'grandmoth_grandfath_mom',
  'grandfath_mom_dad',
  'mom_dad_awesom',
  'dad_awesom_got',
  'awesom_got_spend',
  'got_spend_summer',
  'spend_summer_explor',
  'summer_explor_wild',
  'explor_wild_western',
  'wild_western_canada',
  'western_canada_father',
  'canada_father_never',
  'father_never_paid',
  'never_paid_child',
  'paid_child_support',
  'child_support_like',
  'support_like_said',
  'like_said_realli',
  'said_realli_matter',
  'realli_matter_mom',
  'matter_mom_make',
  'mom_make_good',
  'make_good_money',
  'good_money_gave',
  'money_gave_great',
  'gave_great_life',
  'great_life_child',
  'life_child_point',
  'child_point_post',
  'point_post_im',
  'post_im_get',
  'im_get_marri',
  'get_marri_met',
  'marri_met_love',
  'met_love_life',
  'love_life_univers',
  'life_univers_togeth',
  'univers_togeth_eight',
  'togeth_eight_year',
  'eight_year_wonder',
  'year_wonder_person',
  'wonder_person_realli',
  'person_realli_lobster',
  'realli_lobster_sorri',
  'lobster_sorri_friend',
  'sorri_friend_refer',
  'friend_refer_famili',
  'refer_famili_citi',
  'famili_citi_father',
  'citi_father_huge',
  'father_huge_rambuncti',
  'huge_rambuncti_bunch',
  'rambuncti_bunch_lot',
  'bunch_lot_intermingl',
  'lot_intermingl_busi',
  'intermingl_busi_person',
  'busi_person_relationship',
  'person_relationship_parent',
  'relationship_parent_grandpar',
  'parent_grandpar_found',
  'grandpar_found_impend',
  'found_impend_wed',
  'impend_wed_suppos',
  'wed_suppos_contact',
  'suppos_contact_want',
  'contact_want_come',
  'want_come_canada',
  'come_canada_meet',
  'canada_meet_fiance',
  'meet_fiance_guess',
  'fiance_guess_grandson',
  'guess_grandson_acquaint',
  'grandson_acquaint_small',
  'acquaint_small_world',
  'small_world_found',
  'world_found_father',
  'found_father_basic',
  'father_basic_abandon',
  'basic_abandon_fend',
  'abandon_fend_world',
  'fend_world_honestli',
  'world_honestli_see',
  'honestli_see_piss',
  'see_piss_say',
  'piss_say_least',
  'say_least_funni',
  'least_funni_decidedli',
  'funni_decidedli_upper',
  'decidedli_upper_middl',
  'upper_middl_class',
  'middl_class_long',
  'class_long_stori',
  'long_stori_short',
  'stori_short_lawyer',
  'short_lawyer_calcul',
  'lawyer_calcul_amount',
  'calcul_amount_child',
  'amount_child_support',
  'child_support_father',
  'support_father_paid',
  'father_paid_inyerest',
  'paid_inyerest_cost',
  'inyerest_cost_post',
  'cost_post_secondari',
  'post_secondari_educ',
  'secondari_educ_gave',
  'educ_gave_gift',
  'gave_gift_know',
  'gift_know_came',
  'know_came_father',
  'came_father_yearli',
  'father_yearli_draw',
  'yearli_draw_trust',
  'draw_trust_fund',
  'trust_fund_furiou',
  'fund_furiou_obvious',
  'furiou_obvious_sizeabl',
  'obvious_sizeabl_amount',
  'sizeabl_amount_much',
  'amount_much_affect',
  'much_affect_financ',
  'affect_financ_least',
  'financ_least_next',
  'least_next_two',
  'next_two_year',
  'two_year_may',
  'year_may_need',
  'may_need_gasp',
  'need_gasp_get',
  'gasp_get_job',
  'get_job_contact',
  'job_contact_tell',
  'contact_tell_current',
  'tell_current_wife',
  'current_wife_children',
  'wife_children_neg',
  'children_neg_affect',
  'neg_affect_give',
  'affect_give_back',
  'give_back_money',
  'back_money_realli',
  'money_realli_need',
  'realli_need_guess',
  'need_guess_entitl',
  'guess_entitl_get',
  'entitl_get_trust',
  'get_trust_fund',
  'trust_fund_well',
  'fund_well_realli',
  'well_realli_want',
  'realli_want_pay',
  'want_pay_debt',
  'pay_debt_mother',
  'debt_mother_may',
  'mother_may_make',
  'may_make_sure',
  'make_sure_retir',
  'sure_retir_whatev',
  'retir_whatev_suit',
  'whatev_suit_fanci',
  'suit_fanci_im',
  'fanci_im_give',
  'im_give_back',
  'give_back_aita',
  'back_aita_edit',
  'aita_edit_answer',
  'edit_answer_common',
  'answer_common_question',
  'common_question_half',
  'question_half_sibl',
  'half_sibl_realli',
  'sibl_realli_affect',
  'realli_affect_trust',
  'affect_trust_fund',
  'trust_fund_set',
  'fund_set_alreadi',
  'set_alreadi_tuition',
  'alreadi_tuition_fee',
  'tuition_fee_stuff',
  'fee_stuff_cover',
  'stuff_cover_grandpar',
  'cover_grandpar_famili',
  'grandpar_famili_set',
  'famili_set_ba',
  'set_ba_kid',
  'ba_kid_born',
  'kid_born_one',
  'born_one_reason',
  'one_reason_father',
  'reason_father_upset',
  'father_upset_sinc',
  'upset_sinc_bother',
  'sinc_bother_tell',
  'bother_tell_parent',
  'tell_parent_set',
  'parent_set_sinc',
  'set_sinc_taken',
  'sinc_taken_good',
  'taken_good_chunk',
  'good_chunk_trust',
  'chunk_trust_fund',
  'trust_fund_use',
  'fund_use_set',
  'use_set_mine',
  'set_mine_realist',
  'mine_realist_principl',
  'realist_principl_separ',
  'principl_separ_year',
  'separ_year_ago',
  'year_ago_would',
  'ago_would_left',
  'would_left_exact',
  'left_exact_posit',
  'exact_posit_mom',
  'posit_mom_work',
  'mom_work_get',
  'work_get_phd',
  'get_phd_could',
  'phd_could_help',
  'could_help_kid',
  'help_kid_certain',
  'kid_certain_condit',
  'certain_condit_want',
  'condit_want_walk',
  'want_walk_away',
  'walk_away_grandpar',
  'away_grandpar_sent',
  'grandpar_sent_pictur',
  'sent_pictur_famili',
  'pictur_famili_coolest',
  'famili_coolest_thing',
  'coolest_thing_grandfath',
  'thing_grandfath_look',
  'grandfath_look_like',
  'look_like_granddad',
  'like_granddad_parent',
  'granddad_parent_trap',
  'parent_trap_mom',
  'trap_mom_never',
  'mom_never_remarri',
  'never_remarri_special',
  'remarri_special_friend',
  'special_friend_sinc',
  'friend_sinc_five',
  'sinc_five_amaz',
  'five_amaz_taught',
  'amaz_taught_swear',
  'taught_swear_colombian',
  'swear_colombian_spanish',
  'colombian_spanish_edit',
  'spanish_edit_número',
  'edit_número_lunch',
  'número_lunch_mom',
  'lunch_mom_appar',
  'mom_appar_debt',
  'appar_debt_like',
  'debt_like_guess',
  'like_guess_liter',
  'guess_liter_write',
  'liter_write_book',
  'write_book_treatment',
  ...],
 ['boyfriend',
  'start',
  'ask',
  'join',
  'girl',
  'night',
  'everytim',
  'tri',
  'say',
  'like',
  'join',
  'cancel',
  'made',
  '&',
  'girl',
  'miser',
  'sit',
  'middl',
  'past',
  'friday',
  'insist',
  'join',
  'us',
  'enough',
  'came',
  'idea',
  'get',
  'hate',
  'hang',
  'us',
  'made',
  'plan',
  'told',
  'girl',
  'go',
  'ot',
  'girl',
  'came',
  'boyfriend',
  'immedi',
  'sat',
  'us',
  'start',
  'ruin',
  'convers',
  'steer',
  'toward',
  'himhi',
  'workhi',
  'achiev',
  'start',
  'bring',
  'gross',
  'embarrass',
  'subject',
  'girl',
  'eat',
  'talk',
  'detail',
  'subject',
  'like',
  'sevx',
  'period',
  'sensit',
  'spot',
  'cramp',
  'diarrhea',
  'hairi',
  'leg',
  'fart',
  'get',
  'trap',
  'valva',
  'come',
  'front',
  'squeez',
  'shit',
  'face',
  'cramp',
  'diarrhea',
  'dirti',
  'underwar',
  'againcramp',
  'diarrhea',
  'talk',
  'stuff',
  'bore',
  'detail',
  'likei',
  'could',
  'feel',
  'discomfert',
  'without',
  'even',
  'look',
  'god',
  'turn',
  'see',
  'got',
  'quiet',
  'suddenli',
  'get',
  'red',
  'face',
  'sweat',
  'forehead',
  'bet',
  'found',
  'unabl',
  'relat',
  'thise',
  'subject',
  'thu',
  'take',
  'part',
  'convers',
  'got',
  'couch',
  'readi',
  'head',
  'look',
  'ask',
  'go',
  'like',
  'ahi',
  'rememb',
  'import',
  'meet',
  'guy',
  'minut',
  'andahi',
  'go',
  'rush',
  'tell',
  'us',
  'fun',
  'girl',
  'start',
  'laugh',
  'hyster',
  'came',
  'home',
  'berat',
  'say',
  'made',
  'feel',
  'uncomfortablesick',
  'horribl',
  'subject',
  'kept',
  'bring',
  'said',
  'talk',
  'typic',
  'stuff',
  'girl',
  'talk',
  'time',
  'insist',
  'made',
  'upset',
  'caus',
  'leav',
  'declin',
  'speak',
  'quiet',
  'sinc',
  'aita',
  '*',
  '*',
  'updatw',
  '*',
  '*',
  'yall',
  'wow',
  'got',
  'home',
  'left',
  'post',
  'ish',
  'comment',
  'look',
  'hundr',
  'comment',
  'read',
  'bunch',
  'guysthank',
  'much',
  'feed',
  'back',
  'enlighten',
  'advic',
  'add',
  'context',
  'apart',
  'tell',
  'allow',
  'come',
  'thought',
  'fine',
  'sinc',
  'place',
  'though',
  'help',
  'bill',
  'make',
  'much',
  'head',
  'secur',
  'compani',
  'cant',
  'believ',
  'dens',
  'blind',
  'neg',
  'way',
  'still',
  'give',
  'silent',
  'treatment',
  'ive',
  'decid',
  'lot',
  'take',
  'im',
  'temporarili',
  'move',
  'one',
  'girl',
  'defin',
  'reconsid',
  'thing',
  'want',
  'keep',
  'guy',
  'updat',
  'sinc',
  'mani',
  'got',
  'engag',
  'post',
  'thank',
  'much',
  'dming',
  'concern',
  'appreci',
  'time',
  'concern',
  'mani',
  'hug',
  'go',
  'guy',
  'realli',
  'appreci',
  'yall',
  'boyfriend_start',
  'start_ask',
  'ask_join',
  'join_girl',
  'girl_night',
  'night_everytim',
  'everytim_tri',
  'tri_say',
  'say_like',
  'like_join',
  'join_cancel',
  'cancel_made',
  'made_&',
  '&_girl',
  'girl_miser',
  'miser_sit',
  'sit_middl',
  'middl_past',
  'past_friday',
  'friday_insist',
  'insist_join',
  'join_us',
  'us_enough',
  'enough_came',
  'came_idea',
  'idea_get',
  'get_hate',
  'hate_hang',
  'hang_us',
  'us_made',
  'made_plan',
  'plan_told',
  'told_girl',
  'girl_go',
  'go_ot',
  'ot_girl',
  'girl_came',
  'came_boyfriend',
  'boyfriend_immedi',
  'immedi_sat',
  'sat_us',
  'us_start',
  'start_ruin',
  'ruin_convers',
  'convers_steer',
  'steer_toward',
  'toward_himhi',
  'himhi_workhi',
  'workhi_achiev',
  'achiev_start',
  'start_bring',
  'bring_gross',
  'gross_embarrass',
  'embarrass_subject',
  'subject_girl',
  'girl_eat',
  'eat_talk',
  'talk_detail',
  'detail_subject',
  'subject_like',
  'like_sevx',
  'sevx_period',
  'period_sensit',
  'sensit_spot',
  'spot_cramp',
  'cramp_diarrhea',
  'diarrhea_hairi',
  'hairi_leg',
  'leg_fart',
  'fart_get',
  'get_trap',
  'trap_valva',
  'valva_come',
  'come_front',
  'front_squeez',
  'squeez_shit',
  'shit_face',
  'face_cramp',
  'cramp_diarrhea',
  'diarrhea_dirti',
  'dirti_underwar',
  'underwar_againcramp',
  'againcramp_diarrhea',
  'diarrhea_talk',
  'talk_stuff',
  'stuff_bore',
  'bore_detail',
  'detail_likei',
  'likei_could',
  'could_feel',
  'feel_discomfert',
  'discomfert_without',
  'without_even',
  'even_look',
  'look_god',
  'god_turn',
  'turn_see',
  'see_got',
  'got_quiet',
  'quiet_suddenli',
  'suddenli_get',
  'get_red',
  'red_face',
  'face_sweat',
  'sweat_forehead',
  'forehead_bet',
  'bet_found',
  'found_unabl',
  'unabl_relat',
  'relat_thise',
  'thise_subject',
  'subject_thu',
  'thu_take',
  'take_part',
  'part_convers',
  'convers_got',
  'got_couch',
  'couch_readi',
  'readi_head',
  'head_look',
  'look_ask',
  'ask_go',
  'go_like',
  'like_ahi',
  'ahi_rememb',
  'rememb_import',
  'import_meet',
  'meet_guy',
  'guy_minut',
  'minut_andahi',
  'andahi_go',
  'go_rush',
  'rush_tell',
  'tell_us',
  'us_fun',
  'fun_girl',
  'girl_start',
  'start_laugh',
  'laugh_hyster',
  'hyster_came',
  'came_home',
  'home_berat',
  'berat_say',
  'say_made',
  'made_feel',
  'feel_uncomfortablesick',
  'uncomfortablesick_horribl',
  'horribl_subject',
  'subject_kept',
  'kept_bring',
  'bring_said',
  'said_talk',
  'talk_typic',
  'typic_stuff',
  'stuff_girl',
  'girl_talk',
  'talk_time',
  'time_insist',
  'insist_made',
  'made_upset',
  'upset_caus',
  'caus_leav',
  'leav_declin',
  'declin_speak',
  'speak_quiet',
  'quiet_sinc',
  'sinc_aita',
  'aita_*',
  '*_*',
  '*_updatw',
  'updatw_*',
  '*_*',
  '*_yall',
  'yall_wow',
  'wow_got',
  'got_home',
  'home_left',
  'left_post',
  'post_ish',
  'ish_comment',
  'comment_look',
  'look_hundr',
  'hundr_comment',
  'comment_read',
  'read_bunch',
  'bunch_guysthank',
  'guysthank_much',
  'much_feed',
  'feed_back',
  'back_enlighten',
  'enlighten_advic',
  'advic_add',
  'add_context',
  'context_apart',
  'apart_tell',
  'tell_allow',
  'allow_come',
  'come_thought',
  'thought_fine',
  'fine_sinc',
  'sinc_place',
  'place_though',
  'though_help',
  'help_bill',
  'bill_make',
  'make_much',
  'much_head',
  'head_secur',
  'secur_compani',
  'compani_cant',
  'cant_believ',
  'believ_dens',
  'dens_blind',
  'blind_neg',
  'neg_way',
  'way_still',
  'still_give',
  'give_silent',
  'silent_treatment',
  'treatment_ive',
  'ive_decid',
  'decid_lot',
  'lot_take',
  'take_im',
  'im_temporarili',
  'temporarili_move',
  'move_one',
  'one_girl',
  'girl_defin',
  'defin_reconsid',
  'reconsid_thing',
  'thing_want',
  'want_keep',
  'keep_guy',
  'guy_updat',
  'updat_sinc',
  'sinc_mani',
  'mani_got',
  'got_engag',
  'engag_post',
  'post_thank',
  'thank_much',
  'much_dming',
  'dming_concern',
  'concern_appreci',
  'appreci_time',
  'time_concern',
  'concern_mani',
  'mani_hug',
  'hug_go',
  'go_guy',
  'guy_realli',
  'realli_appreci',
  'appreci_yall',
  'boyfriend_start_ask',
  'start_ask_join',
  'ask_join_girl',
  'join_girl_night',
  'girl_night_everytim',
  'night_everytim_tri',
  'everytim_tri_say',
  'tri_say_like',
  'say_like_join',
  'like_join_cancel',
  'join_cancel_made',
  'cancel_made_&',
  'made_&_girl',
  '&_girl_miser',
  'girl_miser_sit',
  'miser_sit_middl',
  'sit_middl_past',
  'middl_past_friday',
  'past_friday_insist',
  'friday_insist_join',
  'insist_join_us',
  'join_us_enough',
  'us_enough_came',
  'enough_came_idea',
  'came_idea_get',
  'idea_get_hate',
  'get_hate_hang',
  'hate_hang_us',
  'hang_us_made',
  'us_made_plan',
  'made_plan_told',
  'plan_told_girl',
  'told_girl_go',
  'girl_go_ot',
  'go_ot_girl',
  'ot_girl_came',
  'girl_came_boyfriend',
  'came_boyfriend_immedi',
  'boyfriend_immedi_sat',
  'immedi_sat_us',
  'sat_us_start',
  'us_start_ruin',
  'start_ruin_convers',
  'ruin_convers_steer',
  'convers_steer_toward',
  'steer_toward_himhi',
  'toward_himhi_workhi',
  'himhi_workhi_achiev',
  'workhi_achiev_start',
  'achiev_start_bring',
  'start_bring_gross',
  'bring_gross_embarrass',
  'gross_embarrass_subject',
  'embarrass_subject_girl',
  'subject_girl_eat',
  'girl_eat_talk',
  'eat_talk_detail',
  'talk_detail_subject',
  'detail_subject_like',
  'subject_like_sevx',
  'like_sevx_period',
  'sevx_period_sensit',
  'period_sensit_spot',
  'sensit_spot_cramp',
  'spot_cramp_diarrhea',
  'cramp_diarrhea_hairi',
  'diarrhea_hairi_leg',
  'hairi_leg_fart',
  'leg_fart_get',
  'fart_get_trap',
  'get_trap_valva',
  'trap_valva_come',
  'valva_come_front',
  'come_front_squeez',
  'front_squeez_shit',
  'squeez_shit_face',
  'shit_face_cramp',
  'face_cramp_diarrhea',
  'cramp_diarrhea_dirti',
  'diarrhea_dirti_underwar',
  'dirti_underwar_againcramp',
  'underwar_againcramp_diarrhea',
  'againcramp_diarrhea_talk',
  'diarrhea_talk_stuff',
  'talk_stuff_bore',
  'stuff_bore_detail',
  'bore_detail_likei',
  'detail_likei_could',
  'likei_could_feel',
  'could_feel_discomfert',
  'feel_discomfert_without',
  'discomfert_without_even',
  'without_even_look',
  'even_look_god',
  'look_god_turn',
  'god_turn_see',
  'turn_see_got',
  'see_got_quiet',
  'got_quiet_suddenli',
  'quiet_suddenli_get',
  'suddenli_get_red',
  'get_red_face',
  'red_face_sweat',
  'face_sweat_forehead',
  'sweat_forehead_bet',
  'forehead_bet_found',
  'bet_found_unabl',
  'found_unabl_relat',
  'unabl_relat_thise',
  'relat_thise_subject',
  'thise_subject_thu',
  'subject_thu_take',
  'thu_take_part',
  'take_part_convers',
  'part_convers_got',
  'convers_got_couch',
  'got_couch_readi',
  'couch_readi_head',
  'readi_head_look',
  'head_look_ask',
  'look_ask_go',
  'ask_go_like',
  'go_like_ahi',
  'like_ahi_rememb',
  'ahi_rememb_import',
  'rememb_import_meet',
  'import_meet_guy',
  'meet_guy_minut',
  'guy_minut_andahi',
  'minut_andahi_go',
  'andahi_go_rush',
  'go_rush_tell',
  'rush_tell_us',
  'tell_us_fun',
  'us_fun_girl',
  'fun_girl_start',
  'girl_start_laugh',
  'start_laugh_hyster',
  'laugh_hyster_came',
  'hyster_came_home',
  'came_home_berat',
  'home_berat_say',
  'berat_say_made',
  'say_made_feel',
  'made_feel_uncomfortablesick',
  'feel_uncomfortablesick_horribl',
  'uncomfortablesick_horribl_subject',
  'horribl_subject_kept',
  'subject_kept_bring',
  'kept_bring_said',
  'bring_said_talk',
  'said_talk_typic',
  'talk_typic_stuff',
  'typic_stuff_girl',
  'stuff_girl_talk',
  'girl_talk_time',
  'talk_time_insist',
  'time_insist_made',
  'insist_made_upset',
  'made_upset_caus',
  'upset_caus_leav',
  'caus_leav_declin',
  'leav_declin_speak',
  'declin_speak_quiet',
  'speak_quiet_sinc',
  'quiet_sinc_aita',
  'sinc_aita_*',
  'aita_*_*',
  '*_*_updatw',
  '*_updatw_*',
  'updatw_*_*',
  '*_*_yall',
  '*_yall_wow',
  'yall_wow_got',
  'wow_got_home',
  'got_home_left',
  'home_left_post',
  'left_post_ish',
  'post_ish_comment',
  'ish_comment_look',
  'comment_look_hundr',
  'look_hundr_comment',
  'hundr_comment_read',
  'comment_read_bunch',
  'read_bunch_guysthank',
  'bunch_guysthank_much',
  'guysthank_much_feed',
  'much_feed_back',
  'feed_back_enlighten',
  'back_enlighten_advic',
  'enlighten_advic_add',
  'advic_add_context',
  'add_context_apart',
  'context_apart_tell',
  'apart_tell_allow',
  'tell_allow_come',
  'allow_come_thought',
  'come_thought_fine',
  'thought_fine_sinc',
  'fine_sinc_place',
  'sinc_place_though',
  'place_though_help',
  'though_help_bill',
  'help_bill_make',
  'bill_make_much',
  'make_much_head',
  'much_head_secur',
  'head_secur_compani',
  'secur_compani_cant',
  'compani_cant_believ',
  'cant_believ_dens',
  'believ_dens_blind',
  'dens_blind_neg',
  'blind_neg_way',
  'neg_way_still',
  'way_still_give',
  'still_give_silent',
  'give_silent_treatment',
  'silent_treatment_ive',
  'treatment_ive_decid',
  'ive_decid_lot',
  'decid_lot_take',
  'lot_take_im',
  'take_im_temporarili',
  'im_temporarili_move',
  'temporarili_move_one',
  'move_one_girl',
  'one_girl_defin',
  'girl_defin_reconsid',
  'defin_reconsid_thing',
  'reconsid_thing_want',
  'thing_want_keep',
  'want_keep_guy',
  'keep_guy_updat',
  'guy_updat_sinc',
  'updat_sinc_mani',
  'sinc_mani_got',
  'mani_got_engag',
  'got_engag_post',
  'engag_post_thank',
  'post_thank_much',
  'thank_much_dming',
  'much_dming_concern',
  'dming_concern_appreci',
  'concern_appreci_time',
  'appreci_time_concern',
  'time_concern_mani',
  'concern_mani_hug',
  'mani_hug_go',
  'hug_go_guy',
  'go_guy_realli',
  'guy_realli_appreci',
  'realli_appreci_yall'],
 ['first',
  'real',
  'vacat',
  'sinc',
  'first',
  'husband',
  'year',
  'daughter',
  'anni',
  'left',
  'home',
  'alon',
  'reason',
  'recent',
  'anni',
  'right',
  'hubbi',
  'eye',
  'dress',
  'music',
  'chore',
  'deem',
  'irrespons',
  'farthest',
  'truth',
  'summer',
  'job',
  'make',
  'good',
  'grade',
  'in-fact',
  'kinda',
  'hermit',
  'age',
  'unknown',
  'husband',
  'set',
  'hot',
  'water',
  'heater',
  'refil',
  'day',
  'gone',
  'anni',
  'dish',
  'laundri',
  'took',
  'shower',
  'water',
  'cold',
  'upset',
  'thought',
  'broke',
  'call',
  'us',
  'panick',
  'husband',
  'yell',
  'wast',
  'hot',
  'water',
  'tell',
  'irrespons',
  'enough',
  'make',
  'cri',
  'got',
  'madder',
  'ever',
  'marriag',
  'basic',
  'said',
  'parent',
  'would',
  'love',
  'year',
  'old',
  'like',
  'anni',
  'argu',
  'scream',
  'night',
  'next',
  'day',
  'left',
  'resort',
  'littl',
  'hotel',
  'street',
  'husband',
  'tri',
  'call',
  'told',
  'anni',
  'block',
  'father',
  'pay',
  'attent',
  'husband',
  'mad',
  'wast',
  'money',
  'vacat',
  'cant',
  'stand',
  'even',
  'look',
  'argument',
  'someth',
  'stupid',
  'prevent',
  'first_real',
  'real_vacat',
  'vacat_sinc',
  'sinc_first',
  'first_husband',
  'husband_year',
  'year_daughter',
  'daughter_anni',
  'anni_left',
  'left_home',
  'home_alon',
  'alon_reason',
  'reason_recent',
  'recent_anni',
  'anni_right',
  'right_hubbi',
  'hubbi_eye',
  'eye_dress',
  'dress_music',
  'music_chore',
  'chore_deem',
  'deem_irrespons',
  'irrespons_farthest',
  'farthest_truth',
  'truth_summer',
  'summer_job',
  'job_make',
  'make_good',
  'good_grade',
  'grade_in-fact',
  'in-fact_kinda',
  'kinda_hermit',
  'hermit_age',
  'age_unknown',
  'unknown_husband',
  'husband_set',
  'set_hot',
  'hot_water',
  'water_heater',
  'heater_refil',
  'refil_day',
  'day_gone',
  'gone_anni',
  'anni_dish',
  'dish_laundri',
  'laundri_took',
  'took_shower',
  'shower_water',
  'water_cold',
  'cold_upset',
  'upset_thought',
  'thought_broke',
  'broke_call',
  'call_us',
  'us_panick',
  'panick_husband',
  'husband_yell',
  'yell_wast',
  'wast_hot',
  'hot_water',
  'water_tell',
  'tell_irrespons',
  'irrespons_enough',
  'enough_make',
  'make_cri',
  'cri_got',
  'got_madder',
  'madder_ever',
  'ever_marriag',
  'marriag_basic',
  'basic_said',
  'said_parent',
  'parent_would',
  'would_love',
  'love_year',
  'year_old',
  'old_like',
  'like_anni',
  'anni_argu',
  'argu_scream',
  'scream_night',
  'night_next',
  'next_day',
  'day_left',
  'left_resort',
  'resort_littl',
  'littl_hotel',
  'hotel_street',
  'street_husband',
  'husband_tri',
  'tri_call',
  'call_told',
  'told_anni',
  'anni_block',
  'block_father',
  'father_pay',
  'pay_attent',
  'attent_husband',
  'husband_mad',
  'mad_wast',
  'wast_money',
  'money_vacat',
  'vacat_cant',
  'cant_stand',
  'stand_even',
  'even_look',
  'look_argument',
  'argument_someth',
  'someth_stupid',
  'stupid_prevent',
  'first_real_vacat',
  'real_vacat_sinc',
  'vacat_sinc_first',
  'sinc_first_husband',
  'first_husband_year',
  'husband_year_daughter',
  'year_daughter_anni',
  'daughter_anni_left',
  'anni_left_home',
  'left_home_alon',
  'home_alon_reason',
  'alon_reason_recent',
  'reason_recent_anni',
  'recent_anni_right',
  'anni_right_hubbi',
  'right_hubbi_eye',
  'hubbi_eye_dress',
  'eye_dress_music',
  'dress_music_chore',
  'music_chore_deem',
  'chore_deem_irrespons',
  'deem_irrespons_farthest',
  'irrespons_farthest_truth',
  'farthest_truth_summer',
  'truth_summer_job',
  'summer_job_make',
  'job_make_good',
  'make_good_grade',
  'good_grade_in-fact',
  'grade_in-fact_kinda',
  'in-fact_kinda_hermit',
  'kinda_hermit_age',
  'hermit_age_unknown',
  'age_unknown_husband',
  'unknown_husband_set',
  'husband_set_hot',
  'set_hot_water',
  'hot_water_heater',
  'water_heater_refil',
  'heater_refil_day',
  'refil_day_gone',
  'day_gone_anni',
  'gone_anni_dish',
  'anni_dish_laundri',
  'dish_laundri_took',
  'laundri_took_shower',
  'took_shower_water',
  'shower_water_cold',
  'water_cold_upset',
  'cold_upset_thought',
  'upset_thought_broke',
  'thought_broke_call',
  'broke_call_us',
  'call_us_panick',
  'us_panick_husband',
  'panick_husband_yell',
  'husband_yell_wast',
  'yell_wast_hot',
  'wast_hot_water',
  'hot_water_tell',
  'water_tell_irrespons',
  'tell_irrespons_enough',
  'irrespons_enough_make',
  'enough_make_cri',
  'make_cri_got',
  'cri_got_madder',
  'got_madder_ever',
  'madder_ever_marriag',
  'ever_marriag_basic',
  'marriag_basic_said',
  'basic_said_parent',
  'said_parent_would',
  'parent_would_love',
  'would_love_year',
  'love_year_old',
  'year_old_like',
  'old_like_anni',
  'like_anni_argu',
  'anni_argu_scream',
  'argu_scream_night',
  'scream_night_next',
  'night_next_day',
  'next_day_left',
  'day_left_resort',
  'left_resort_littl',
  'resort_littl_hotel',
  'littl_hotel_street',
  'hotel_street_husband',
  'street_husband_tri',
  'husband_tri_call',
  'tri_call_told',
  'call_told_anni',
  'told_anni_block',
  'anni_block_father',
  'block_father_pay',
  'father_pay_attent',
  'pay_attent_husband',
  'attent_husband_mad',
  'husband_mad_wast',
  'mad_wast_money',
  'wast_money_vacat',
  'money_vacat_cant',
  'vacat_cant_stand',
  'cant_stand_even',
  'stand_even_look',
  'even_look_argument',
  'look_argument_someth',
  'argument_someth_stupid',
  'someth_stupid_prevent'],
 ['got',
  'son',
  'motorcycl',
  'th',
  'birthday',
  'past',
  'june',
  'son',
  'obssess',
  'automobil',
  'love',
  'motorcycl',
  'room',
  'plenti',
  'model',
  'poster',
  'motorcylc',
  'type',
  'bio',
  'dad',
  'pass',
  'away',
  'im',
  'marri',
  'current',
  'husband',
  'kid',
  'husband',
  'alway',
  'son',
  'interest',
  'motorcycl',
  'think',
  'im',
  'encourag',
  'reckless',
  'distract',
  'school',
  'extens',
  'futur',
  'spoil',
  'blow',
  'away',
  'money',
  'spend',
  'motorcycl',
  'caus',
  'tension',
  'son',
  'told',
  'stop',
  'complain',
  'around',
  'week',
  'ago',
  'son',
  'motorcycl',
  'went',
  'miss',
  'open',
  'polic',
  'report',
  'noth',
  'came',
  'disappear',
  'husband',
  'smirk',
  'face',
  'entir',
  'time',
  'walk',
  'around',
  'say',
  'told',
  'wast',
  'money',
  'unbbearablr',
  'hear',
  'quit',
  'honest',
  'mother',
  'inlaw',
  'visit',
  'day',
  'ago',
  'talk',
  'hous',
  'husband',
  'mention',
  'see',
  'motorcycl',
  'one',
  'similar',
  'one',
  'lost',
  'husband',
  'carag',
  'clean',
  'goe',
  'clean',
  'hous',
  'weekli',
  'even',
  'though',
  'empti',
  'husband',
  'plan',
  'give',
  'kid',
  'inherit',
  'puzzl',
  'ask',
  'certain',
  'show',
  'photo',
  'took',
  'confirm',
  'inde',
  'son',
  'motorcycl',
  'immedietli',
  'rush',
  'call',
  'husband',
  'confront',
  'admit',
  'took',
  'hid',
  'motorcycl',
  'garag',
  'last',
  'resort',
  'stepson',
  'kept',
  'brush',
  'thought',
  'spent',
  'someth',
  'unnecesari',
  'could',
  'caus',
  'issu',
  'blew',
  'demand',
  'return',
  'refus',
  'told',
  'consid',
  'sell',
  'give',
  'money',
  'back',
  'could',
  'use',
  'wise',
  'time',
  'told',
  'seriou',
  'id',
  'call',
  'polic',
  'liter',
  'said',
  'famili',
  'matter',
  'cop',
  'cant',
  'shit',
  'enough',
  'call',
  'cop',
  'soon',
  'end',
  'call',
  'motorcycl',
  'found',
  'return',
  'husband',
  'taken',
  'sinc',
  'open',
  'file',
  'motorcylc',
  'go',
  'miss',
  'let',
  'go',
  'eventu',
  'livid',
  'came',
  'home',
  'yell',
  'aw',
  'crazi',
  'behavior',
  'refus',
  'engag',
  'argument',
  'told',
  'entir',
  'famili',
  'judg',
  'call',
  'polic',
  'husband',
  'even',
  'though',
  'alreadi',
  'ask',
  'return',
  'said',
  'look',
  'son',
  'one',
  'day',
  'well',
  'realiz',
  'right',
  'late',
  'son',
  'spsake',
  'husband',
  'feel',
  'horribl',
  'whole',
  'situat',
  'start',
  'think',
  'handl',
  'wrong',
  'way',
  'got_son',
  'son_motorcycl',
  'motorcycl_th',
  'th_birthday',
  'birthday_past',
  'past_june',
  'june_son',
  'son_obssess',
  'obssess_automobil',
  'automobil_love',
  'love_motorcycl',
  'motorcycl_room',
  'room_plenti',
  'plenti_model',
  'model_poster',
  'poster_motorcylc',
  'motorcylc_type',
  'type_bio',
  'bio_dad',
  'dad_pass',
  'pass_away',
  'away_im',
  'im_marri',
  'marri_current',
  'current_husband',
  'husband_kid',
  'kid_husband',
  'husband_alway',
  'alway_son',
  'son_interest',
  'interest_motorcycl',
  'motorcycl_think',
  'think_im',
  'im_encourag',
  'encourag_reckless',
  'reckless_distract',
  'distract_school',
  'school_extens',
  'extens_futur',
  'futur_spoil',
  'spoil_blow',
  'blow_away',
  'away_money',
  'money_spend',
  'spend_motorcycl',
  'motorcycl_caus',
  'caus_tension',
  'tension_son',
  'son_told',
  'told_stop',
  'stop_complain',
  'complain_around',
  'around_week',
  'week_ago',
  'ago_son',
  'son_motorcycl',
  'motorcycl_went',
  'went_miss',
  'miss_open',
  'open_polic',
  'polic_report',
  'report_noth',
  'noth_came',
  'came_disappear',
  'disappear_husband',
  'husband_smirk',
  'smirk_face',
  'face_entir',
  'entir_time',
  'time_walk',
  'walk_around',
  'around_say',
  'say_told',
  'told_wast',
  'wast_money',
  'money_unbbearablr',
  'unbbearablr_hear',
  'hear_quit',
  'quit_honest',
  'honest_mother',
  'mother_inlaw',
  'inlaw_visit',
  'visit_day',
  'day_ago',
  'ago_talk',
  'talk_hous',
  'hous_husband',
  'husband_mention',
  'mention_see',
  'see_motorcycl',
  'motorcycl_one',
  'one_similar',
  'similar_one',
  'one_lost',
  'lost_husband',
  'husband_carag',
  'carag_clean',
  'clean_goe',
  'goe_clean',
  'clean_hous',
  'hous_weekli',
  'weekli_even',
  'even_though',
  'though_empti',
  'empti_husband',
  'husband_plan',
  'plan_give',
  'give_kid',
  'kid_inherit',
  'inherit_puzzl',
  'puzzl_ask',
  'ask_certain',
  'certain_show',
  'show_photo',
  'photo_took',
  'took_confirm',
  'confirm_inde',
  'inde_son',
  'son_motorcycl',
  'motorcycl_immedietli',
  'immedietli_rush',
  'rush_call',
  'call_husband',
  'husband_confront',
  'confront_admit',
  'admit_took',
  'took_hid',
  'hid_motorcycl',
  'motorcycl_garag',
  'garag_last',
  'last_resort',
  'resort_stepson',
  'stepson_kept',
  'kept_brush',
  'brush_thought',
  'thought_spent',
  'spent_someth',
  'someth_unnecesari',
  'unnecesari_could',
  'could_caus',
  'caus_issu',
  'issu_blew',
  'blew_demand',
  'demand_return',
  'return_refus',
  'refus_told',
  'told_consid',
  'consid_sell',
  'sell_give',
  'give_money',
  'money_back',
  'back_could',
  'could_use',
  'use_wise',
  'wise_time',
  'time_told',
  'told_seriou',
  'seriou_id',
  'id_call',
  'call_polic',
  'polic_liter',
  'liter_said',
  'said_famili',
  'famili_matter',
  'matter_cop',
  'cop_cant',
  'cant_shit',
  'shit_enough',
  'enough_call',
  'call_cop',
  'cop_soon',
  'soon_end',
  'end_call',
  'call_motorcycl',
  'motorcycl_found',
  'found_return',
  'return_husband',
  'husband_taken',
  'taken_sinc',
  'sinc_open',
  'open_file',
  'file_motorcylc',
  'motorcylc_go',
  'go_miss',
  'miss_let',
  'let_go',
  'go_eventu',
  'eventu_livid',
  'livid_came',
  'came_home',
  'home_yell',
  'yell_aw',
  'aw_crazi',
  'crazi_behavior',
  'behavior_refus',
  'refus_engag',
  'engag_argument',
  'argument_told',
  'told_entir',
  'entir_famili',
  'famili_judg',
  'judg_call',
  'call_polic',
  'polic_husband',
  'husband_even',
  'even_though',
  'though_alreadi',
  'alreadi_ask',
  'ask_return',
  'return_said',
  'said_look',
  'look_son',
  'son_one',
  'one_day',
  'day_well',
  'well_realiz',
  'realiz_right',
  'right_late',
  'late_son',
  'son_spsake',
  'spsake_husband',
  'husband_feel',
  'feel_horribl',
  'horribl_whole',
  'whole_situat',
  'situat_start',
  'start_think',
  'think_handl',
  'handl_wrong',
  'wrong_way',
  'got_son_motorcycl',
  'son_motorcycl_th',
  'motorcycl_th_birthday',
  'th_birthday_past',
  'birthday_past_june',
  'past_june_son',
  'june_son_obssess',
  'son_obssess_automobil',
  'obssess_automobil_love',
  'automobil_love_motorcycl',
  'love_motorcycl_room',
  'motorcycl_room_plenti',
  'room_plenti_model',
  'plenti_model_poster',
  'model_poster_motorcylc',
  'poster_motorcylc_type',
  'motorcylc_type_bio',
  'type_bio_dad',
  'bio_dad_pass',
  'dad_pass_away',
  'pass_away_im',
  'away_im_marri',
  'im_marri_current',
  'marri_current_husband',
  'current_husband_kid',
  'husband_kid_husband',
  'kid_husband_alway',
  'husband_alway_son',
  'alway_son_interest',
  'son_interest_motorcycl',
  'interest_motorcycl_think',
  'motorcycl_think_im',
  'think_im_encourag',
  'im_encourag_reckless',
  'encourag_reckless_distract',
  'reckless_distract_school',
  'distract_school_extens',
  'school_extens_futur',
  'extens_futur_spoil',
  'futur_spoil_blow',
  'spoil_blow_away',
  'blow_away_money',
  'away_money_spend',
  'money_spend_motorcycl',
  'spend_motorcycl_caus',
  'motorcycl_caus_tension',
  'caus_tension_son',
  'tension_son_told',
  'son_told_stop',
  'told_stop_complain',
  'stop_complain_around',
  'complain_around_week',
  'around_week_ago',
  'week_ago_son',
  'ago_son_motorcycl',
  'son_motorcycl_went',
  'motorcycl_went_miss',
  'went_miss_open',
  'miss_open_polic',
  'open_polic_report',
  'polic_report_noth',
  'report_noth_came',
  'noth_came_disappear',
  'came_disappear_husband',
  'disappear_husband_smirk',
  'husband_smirk_face',
  'smirk_face_entir',
  'face_entir_time',
  'entir_time_walk',
  'time_walk_around',
  'walk_around_say',
  'around_say_told',
  'say_told_wast',
  'told_wast_money',
  'wast_money_unbbearablr',
  'money_unbbearablr_hear',
  'unbbearablr_hear_quit',
  'hear_quit_honest',
  'quit_honest_mother',
  'honest_mother_inlaw',
  'mother_inlaw_visit',
  'inlaw_visit_day',
  'visit_day_ago',
  'day_ago_talk',
  'ago_talk_hous',
  'talk_hous_husband',
  'hous_husband_mention',
  'husband_mention_see',
  'mention_see_motorcycl',
  'see_motorcycl_one',
  'motorcycl_one_similar',
  'one_similar_one',
  'similar_one_lost',
  'one_lost_husband',
  'lost_husband_carag',
  'husband_carag_clean',
  'carag_clean_goe',
  'clean_goe_clean',
  'goe_clean_hous',
  'clean_hous_weekli',
  'hous_weekli_even',
  'weekli_even_though',
  'even_though_empti',
  'though_empti_husband',
  'empti_husband_plan',
  'husband_plan_give',
  'plan_give_kid',
  'give_kid_inherit',
  'kid_inherit_puzzl',
  'inherit_puzzl_ask',
  'puzzl_ask_certain',
  'ask_certain_show',
  'certain_show_photo',
  'show_photo_took',
  'photo_took_confirm',
  'took_confirm_inde',
  'confirm_inde_son',
  'inde_son_motorcycl',
  'son_motorcycl_immedietli',
  'motorcycl_immedietli_rush',
  'immedietli_rush_call',
  'rush_call_husband',
  'call_husband_confront',
  'husband_confront_admit',
  'confront_admit_took',
  'admit_took_hid',
  'took_hid_motorcycl',
  'hid_motorcycl_garag',
  'motorcycl_garag_last',
  'garag_last_resort',
  'last_resort_stepson',
  'resort_stepson_kept',
  'stepson_kept_brush',
  'kept_brush_thought',
  'brush_thought_spent',
  'thought_spent_someth',
  'spent_someth_unnecesari',
  'someth_unnecesari_could',
  'unnecesari_could_caus',
  'could_caus_issu',
  'caus_issu_blew',
  'issu_blew_demand',
  'blew_demand_return',
  'demand_return_refus',
  'return_refus_told',
  'refus_told_consid',
  'told_consid_sell',
  'consid_sell_give',
  'sell_give_money',
  'give_money_back',
  'money_back_could',
  'back_could_use',
  'could_use_wise',
  'use_wise_time',
  'wise_time_told',
  'time_told_seriou',
  'told_seriou_id',
  'seriou_id_call',
  'id_call_polic',
  'call_polic_liter',
  'polic_liter_said',
  'liter_said_famili',
  'said_famili_matter',
  'famili_matter_cop',
  'matter_cop_cant',
  'cop_cant_shit',
  'cant_shit_enough',
  'shit_enough_call',
  'enough_call_cop',
  'call_cop_soon',
  'cop_soon_end',
  'soon_end_call',
  'end_call_motorcycl',
  'call_motorcycl_found',
  'motorcycl_found_return',
  'found_return_husband',
  'return_husband_taken',
  'husband_taken_sinc',
  'taken_sinc_open',
  'sinc_open_file',
  'open_file_motorcylc',
  'file_motorcylc_go',
  'motorcylc_go_miss',
  'go_miss_let',
  'miss_let_go',
  'let_go_eventu',
  'go_eventu_livid',
  'eventu_livid_came',
  'livid_came_home',
  'came_home_yell',
  'home_yell_aw',
  'yell_aw_crazi',
  'aw_crazi_behavior',
  'crazi_behavior_refus',
  'behavior_refus_engag',
  'refus_engag_argument',
  'engag_argument_told',
  'argument_told_entir',
  'told_entir_famili',
  'entir_famili_judg',
  'famili_judg_call',
  'judg_call_polic',
  'call_polic_husband',
  'polic_husband_even',
  'husband_even_though',
  'even_though_alreadi',
  'though_alreadi_ask',
  'alreadi_ask_return',
  'ask_return_said',
  'return_said_look',
  'said_look_son',
  'look_son_one',
  'son_one_day',
  'one_day_well',
  'day_well_realiz',
  'well_realiz_right',
  'realiz_right_late',
  'right_late_son',
  'late_son_spsake',
  'son_spsake_husband',
  'spsake_husband_feel',
  'husband_feel_horribl',
  'feel_horribl_whole',
  'horribl_whole_situat',
  'whole_situat_start',
  'situat_start_think',
  'start_think_handl',
  'think_handl_wrong',
  'handl_wrong_way'],
 ['dad',
  'pass',
  'away',
  'recent',
  'left',
  'sister',
  'hous',
  'super',
  'unkempt',
  'ive',
  'lot',
  'yard',
  'work',
  'outsid',
  'morn',
  'im',
  'water',
  'grass',
  'morn',
  'even',
  'everi',
  'singl',
  'time',
  'ive',
  'done',
  'neighbor',
  'right',
  'next',
  'door',
  'like',
  'older',
  'granni',
  'come',
  'porch',
  'straight',
  'watch',
  'without',
  'even',
  'hide',
  'introduc',
  'sister',
  'new',
  'owner',
  'dad',
  'pass',
  'obviou',
  'wan',
  'na',
  'talk',
  'next',
  'thing',
  'start',
  'come',
  'outsid',
  '*',
  'phone',
  '*',
  'point',
  'camera',
  'right',
  'im',
  'like',
  'problem',
  'say',
  'problem',
  'long',
  'im',
  'im',
  'suppos',
  'ask',
  'record',
  'neighbor',
  'ladi',
  'goe',
  'problem',
  'record',
  'anyth',
  'wrong',
  'fuck',
  'weird',
  'even',
  'know',
  'respond',
  'situat',
  'soon',
  'finish',
  'go',
  'back',
  'insid',
  'went',
  'back',
  'hous',
  'happen',
  'everi',
  'singl',
  'day',
  'im',
  'outsid',
  'water',
  'grass',
  'alway',
  'excus',
  'want',
  'make',
  'sure',
  'im',
  'anyth',
  'els',
  'camera',
  'yesterday',
  'got',
  'fed',
  'decid',
  'someth',
  'differ',
  'came',
  'phone',
  'stuck',
  'ass',
  'put',
  'hand',
  'hip',
  'look',
  'right',
  'first',
  'like',
  'wtf',
  'got',
  'realli',
  'mad',
  'start',
  'wet',
  'water',
  'hose',
  'touch',
  'neck',
  'liter',
  'look',
  'directli',
  'stupid',
  'ye',
  'put',
  'phone',
  'away',
  'start',
  'cuss',
  'pervert',
  'sister',
  'told',
  'later',
  'came',
  'hous',
  'work',
  'talk',
  'sexual',
  'harass',
  'make',
  'pose',
  'provoc',
  'way',
  'sister',
  'know',
  'pain',
  'ass',
  'sinc',
  'probabl',
  'noth',
  'better',
  'time',
  'still',
  'stoop',
  'level',
  'make',
  'uncomfort',
  'right',
  'back',
  'feel',
  'like',
  'im',
  'right',
  'one',
  'even',
  'bad',
  'like',
  'grab',
  'ball',
  'anyth',
  'also',
  'dumbass',
  'sometim',
  'idk',
  'guy',
  'tell',
  'asshol',
  'dad_pass',
  'pass_away',
  'away_recent',
  'recent_left',
  'left_sister',
  'sister_hous',
  'hous_super',
  'super_unkempt',
  'unkempt_ive',
  'ive_lot',
  'lot_yard',
  'yard_work',
  'work_outsid',
  'outsid_morn',
  'morn_im',
  'im_water',
  'water_grass',
  'grass_morn',
  'morn_even',
  'even_everi',
  'everi_singl',
  'singl_time',
  'time_ive',
  'ive_done',
  'done_neighbor',
  'neighbor_right',
  'right_next',
  'next_door',
  'door_like',
  'like_older',
  'older_granni',
  'granni_come',
  'come_porch',
  'porch_straight',
  'straight_watch',
  'watch_without',
  'without_even',
  'even_hide',
  'hide_introduc',
  'introduc_sister',
  'sister_new',
  'new_owner',
  'owner_dad',
  'dad_pass',
  'pass_obviou',
  'obviou_wan',
  'wan_na',
  'na_talk',
  'talk_next',
  'next_thing',
  'thing_start',
  'start_come',
  'come_outsid',
  'outsid_*',
  '*_phone',
  'phone_*',
  '*_point',
  'point_camera',
  'camera_right',
  'right_im',
  'im_like',
  'like_problem',
  'problem_say',
  'say_problem',
  'problem_long',
  'long_im',
  'im_im',
  'im_suppos',
  'suppos_ask',
  'ask_record',
  'record_neighbor',
  'neighbor_ladi',
  'ladi_goe',
  'goe_problem',
  'problem_record',
  'record_anyth',
  'anyth_wrong',
  'wrong_fuck',
  'fuck_weird',
  'weird_even',
  'even_know',
  'know_respond',
  'respond_situat',
  'situat_soon',
  'soon_finish',
  'finish_go',
  'go_back',
  'back_insid',
  'insid_went',
  'went_back',
  'back_hous',
  'hous_happen',
  'happen_everi',
  'everi_singl',
  'singl_day',
  'day_im',
  'im_outsid',
  'outsid_water',
  'water_grass',
  'grass_alway',
  'alway_excus',
  'excus_want',
  'want_make',
  'make_sure',
  'sure_im',
  'im_anyth',
  'anyth_els',
  'els_camera',
  'camera_yesterday',
  'yesterday_got',
  'got_fed',
  'fed_decid',
  'decid_someth',
  'someth_differ',
  'differ_came',
  'came_phone',
  'phone_stuck',
  'stuck_ass',
  'ass_put',
  'put_hand',
  'hand_hip',
  'hip_look',
  'look_right',
  'right_first',
  'first_like',
  'like_wtf',
  'wtf_got',
  'got_realli',
  'realli_mad',
  'mad_start',
  'start_wet',
  'wet_water',
  'water_hose',
  'hose_touch',
  'touch_neck',
  'neck_liter',
  'liter_look',
  'look_directli',
  'directli_stupid',
  'stupid_ye',
  'ye_put',
  'put_phone',
  'phone_away',
  'away_start',
  'start_cuss',
  'cuss_pervert',
  'pervert_sister',
  'sister_told',
  'told_later',
  'later_came',
  'came_hous',
  'hous_work',
  'work_talk',
  'talk_sexual',
  'sexual_harass',
  'harass_make',
  'make_pose',
  'pose_provoc',
  'provoc_way',
  'way_sister',
  'sister_know',
  'know_pain',
  'pain_ass',
  'ass_sinc',
  'sinc_probabl',
  'probabl_noth',
  'noth_better',
  'better_time',
  'time_still',
  'still_stoop',
  'stoop_level',
  'level_make',
  'make_uncomfort',
  'uncomfort_right',
  'right_back',
  'back_feel',
  'feel_like',
  'like_im',
  'im_right',
  'right_one',
  'one_even',
  'even_bad',
  'bad_like',
  'like_grab',
  'grab_ball',
  'ball_anyth',
  'anyth_also',
  'also_dumbass',
  'dumbass_sometim',
  'sometim_idk',
  'idk_guy',
  'guy_tell',
  'tell_asshol',
  'dad_pass_away',
  'pass_away_recent',
  'away_recent_left',
  'recent_left_sister',
  'left_sister_hous',
  'sister_hous_super',
  'hous_super_unkempt',
  'super_unkempt_ive',
  'unkempt_ive_lot',
  'ive_lot_yard',
  'lot_yard_work',
  'yard_work_outsid',
  'work_outsid_morn',
  'outsid_morn_im',
  'morn_im_water',
  'im_water_grass',
  'water_grass_morn',
  'grass_morn_even',
  'morn_even_everi',
  'even_everi_singl',
  'everi_singl_time',
  'singl_time_ive',
  'time_ive_done',
  'ive_done_neighbor',
  'done_neighbor_right',
  'neighbor_right_next',
  'right_next_door',
  'next_door_like',
  'door_like_older',
  'like_older_granni',
  'older_granni_come',
  'granni_come_porch',
  'come_porch_straight',
  'porch_straight_watch',
  'straight_watch_without',
  'watch_without_even',
  'without_even_hide',
  'even_hide_introduc',
  'hide_introduc_sister',
  'introduc_sister_new',
  'sister_new_owner',
  'new_owner_dad',
  'owner_dad_pass',
  'dad_pass_obviou',
  'pass_obviou_wan',
  'obviou_wan_na',
  'wan_na_talk',
  'na_talk_next',
  'talk_next_thing',
  'next_thing_start',
  'thing_start_come',
  'start_come_outsid',
  'come_outsid_*',
  'outsid_*_phone',
  '*_phone_*',
  'phone_*_point',
  '*_point_camera',
  'point_camera_right',
  'camera_right_im',
  'right_im_like',
  'im_like_problem',
  'like_problem_say',
  'problem_say_problem',
  'say_problem_long',
  'problem_long_im',
  'long_im_im',
  'im_im_suppos',
  'im_suppos_ask',
  'suppos_ask_record',
  'ask_record_neighbor',
  'record_neighbor_ladi',
  'neighbor_ladi_goe',
  'ladi_goe_problem',
  'goe_problem_record',
  'problem_record_anyth',
  'record_anyth_wrong',
  'anyth_wrong_fuck',
  'wrong_fuck_weird',
  'fuck_weird_even',
  'weird_even_know',
  'even_know_respond',
  'know_respond_situat',
  'respond_situat_soon',
  'situat_soon_finish',
  'soon_finish_go',
  'finish_go_back',
  'go_back_insid',
  'back_insid_went',
  'insid_went_back',
  'went_back_hous',
  'back_hous_happen',
  'hous_happen_everi',
  'happen_everi_singl',
  'everi_singl_day',
  'singl_day_im',
  'day_im_outsid',
  'im_outsid_water',
  'outsid_water_grass',
  'water_grass_alway',
  'grass_alway_excus',
  'alway_excus_want',
  'excus_want_make',
  'want_make_sure',
  'make_sure_im',
  'sure_im_anyth',
  'im_anyth_els',
  'anyth_els_camera',
  'els_camera_yesterday',
  'camera_yesterday_got',
  'yesterday_got_fed',
  'got_fed_decid',
  'fed_decid_someth',
  'decid_someth_differ',
  'someth_differ_came',
  'differ_came_phone',
  'came_phone_stuck',
  'phone_stuck_ass',
  'stuck_ass_put',
  'ass_put_hand',
  'put_hand_hip',
  'hand_hip_look',
  'hip_look_right',
  'look_right_first',
  'right_first_like',
  'first_like_wtf',
  'like_wtf_got',
  'wtf_got_realli',
  'got_realli_mad',
  'realli_mad_start',
  'mad_start_wet',
  'start_wet_water',
  'wet_water_hose',
  'water_hose_touch',
  'hose_touch_neck',
  'touch_neck_liter',
  'neck_liter_look',
  'liter_look_directli',
  'look_directli_stupid',
  'directli_stupid_ye',
  'stupid_ye_put',
  'ye_put_phone',
  'put_phone_away',
  'phone_away_start',
  'away_start_cuss',
  'start_cuss_pervert',
  'cuss_pervert_sister',
  'pervert_sister_told',
  'sister_told_later',
  'told_later_came',
  'later_came_hous',
  'came_hous_work',
  'hous_work_talk',
  'work_talk_sexual',
  'talk_sexual_harass',
  'sexual_harass_make',
  'harass_make_pose',
  'make_pose_provoc',
  'pose_provoc_way',
  'provoc_way_sister',
  'way_sister_know',
  'sister_know_pain',
  'know_pain_ass',
  'pain_ass_sinc',
  'ass_sinc_probabl',
  'sinc_probabl_noth',
  'probabl_noth_better',
  'noth_better_time',
  'better_time_still',
  'time_still_stoop',
  'still_stoop_level',
  'stoop_level_make',
  'level_make_uncomfort',
  'make_uncomfort_right',
  'uncomfort_right_back',
  'right_back_feel',
  'back_feel_like',
  'feel_like_im',
  'like_im_right',
  'im_right_one',
  'right_one_even',
  'one_even_bad',
  'even_bad_like',
  'bad_like_grab',
  'like_grab_ball',
  'grab_ball_anyth',
  'ball_anyth_also',
  'anyth_also_dumbass',
  'also_dumbass_sometim',
  'dumbass_sometim_idk',
  'sometim_idk_guy',
  'idk_guy_tell',
  'guy_tell_asshol'],
 ['husband',
  'brother',
  'bil',
  'move',
  'us',
  'divorc',
  'week',
  'ago',
  'problem',
  'start',
  'barg',
  'bathroom',
  'whenev',
  'im',
  'use',
  'never',
  'knock',
  'anyth',
  'anoth',
  'thing',
  'bathroom',
  'brother',
  'told',
  'husband',
  'id',
  'notic',
  'laugh',
  'call',
  'paranoid',
  'embarrass',
  'brother',
  'would',
  'see',
  'expos',
  'made',
  'uncomfort',
  'husband',
  'said',
  'spoke',
  'apolog',
  'husband',
  'got',
  'marri',
  'promis',
  'lock',
  'lock',
  'room',
  'bathroom',
  'lock',
  'realli',
  'consid',
  'get',
  'lock',
  'let',
  'husband',
  'know',
  'brother',
  'walk',
  'bathroom',
  'one',
  'time',
  'lock',
  'instantli',
  'instal',
  'say',
  'anyth',
  'well',
  'yesterday',
  'bil',
  'walk',
  'shower',
  'knew',
  'would',
  'shower',
  'barg',
  'anyon',
  'clame',
  'need',
  'pee',
  'enough',
  'went',
  'got',
  'lock',
  'instal',
  'husband',
  'got',
  'home',
  'saw',
  'blew',
  'say',
  'voilat',
  'agreement',
  'part',
  'went',
  'wish',
  'uncomfort',
  'lock',
  'hous',
  'demand',
  'remov',
  '*',
  'promis',
  '*',
  '*',
  'guarente',
  '*',
  'brother',
  'walk',
  'refus',
  'piss',
  'sinc',
  'give',
  'silenc',
  'treatement',
  'info',
  'im',
  'close',
  'bil',
  'husband',
  'even',
  'talk',
  'much',
  'bare',
  'even',
  'sat',
  'gather',
  'move',
  'us',
  'upatd',
  'provid',
  'updat',
  'situat',
  'worth',
  'note',
  'bil',
  'use',
  'bedroom',
  'least',
  'im',
  'alway',
  'expos',
  'bedroom',
  'husband',
  'came',
  'home',
  'told',
  'lock',
  'remov',
  'til',
  'brother',
  'leav',
  'reaction',
  'tri',
  'remov',
  'lock',
  'tell',
  'quit',
  'act',
  'childishi',
  'shout',
  'scream',
  'pack',
  'bag',
  'go',
  'mom',
  'hous',
  'next',
  'day',
  'til',
  'get',
  'resolv',
  'somehow',
  'way',
  'saw',
  'bil',
  'driveway',
  'smoke',
  'knew',
  'argument',
  'husband',
  'instead',
  'step',
  'fix',
  'offer',
  'take',
  'mom',
  'hous',
  'say',
  'husband',
  'could',
  'use',
  'space',
  'made',
  'cri',
  'whole',
  'uber',
  'ride',
  'mom',
  'hous',
  'reason',
  'feel',
  'offend',
  'bil',
  'tend',
  'hurt',
  'talk',
  'could',
  'win',
  'approv',
  'think',
  'less',
  'think',
  'im',
  'childish',
  'like',
  'husband',
  'say',
  'husband_brother',
  'brother_bil',
  'bil_move',
  'move_us',
  'us_divorc',
  'divorc_week',
  'week_ago',
  'ago_problem',
  'problem_start',
  'start_barg',
  'barg_bathroom',
  'bathroom_whenev',
  'whenev_im',
  'im_use',
  'use_never',
  'never_knock',
  'knock_anyth',
  'anyth_anoth',
  'anoth_thing',
  'thing_bathroom',
  'bathroom_brother',
  'brother_told',
  'told_husband',
  'husband_id',
  'id_notic',
  'notic_laugh',
  'laugh_call',
  'call_paranoid',
  'paranoid_embarrass',
  'embarrass_brother',
  'brother_would',
  'would_see',
  'see_expos',
  'expos_made',
  'made_uncomfort',
  'uncomfort_husband',
  'husband_said',
  'said_spoke',
  'spoke_apolog',
  'apolog_husband',
  'husband_got',
  'got_marri',
  'marri_promis',
  'promis_lock',
  'lock_lock',
  'lock_room',
  'room_bathroom',
  'bathroom_lock',
  'lock_realli',
  'realli_consid',
  'consid_get',
  'get_lock',
  'lock_let',
  'let_husband',
  'husband_know',
  'know_brother',
  'brother_walk',
  'walk_bathroom',
  'bathroom_one',
  'one_time',
  'time_lock',
  'lock_instantli',
  'instantli_instal',
  'instal_say',
  'say_anyth',
  'anyth_well',
  'well_yesterday',
  'yesterday_bil',
  'bil_walk',
  'walk_shower',
  'shower_knew',
  'knew_would',
  'would_shower',
  'shower_barg',
  'barg_anyon',
  'anyon_clame',
  'clame_need',
  'need_pee',
  'pee_enough',
  'enough_went',
  'went_got',
  'got_lock',
  'lock_instal',
  'instal_husband',
  'husband_got',
  'got_home',
  'home_saw',
  'saw_blew',
  'blew_say',
  'say_voilat',
  'voilat_agreement',
  'agreement_part',
  'part_went',
  'went_wish',
  'wish_uncomfort',
  'uncomfort_lock',
  'lock_hous',
  'hous_demand',
  'demand_remov',
  'remov_*',
  '*_promis',
  'promis_*',
  '*_*',
  '*_guarente',
  'guarente_*',
  '*_brother',
  'brother_walk',
  'walk_refus',
  'refus_piss',
  'piss_sinc',
  'sinc_give',
  'give_silenc',
  'silenc_treatement',
  'treatement_info',
  'info_im',
  'im_close',
  'close_bil',
  'bil_husband',
  'husband_even',
  'even_talk',
  'talk_much',
  'much_bare',
  'bare_even',
  'even_sat',
  'sat_gather',
  'gather_move',
  'move_us',
  'us_upatd',
  'upatd_provid',
  'provid_updat',
  'updat_situat',
  'situat_worth',
  'worth_note',
  'note_bil',
  'bil_use',
  'use_bedroom',
  'bedroom_least',
  'least_im',
  'im_alway',
  'alway_expos',
  'expos_bedroom',
  'bedroom_husband',
  'husband_came',
  'came_home',
  'home_told',
  'told_lock',
  'lock_remov',
  'remov_til',
  'til_brother',
  'brother_leav',
  'leav_reaction',
  'reaction_tri',
  'tri_remov',
  'remov_lock',
  'lock_tell',
  'tell_quit',
  'quit_act',
  'act_childishi',
  'childishi_shout',
  'shout_scream',
  'scream_pack',
  'pack_bag',
  'bag_go',
  'go_mom',
  'mom_hous',
  'hous_next',
  'next_day',
  'day_til',
  'til_get',
  'get_resolv',
  'resolv_somehow',
  'somehow_way',
  'way_saw',
  'saw_bil',
  'bil_driveway',
  'driveway_smoke',
  'smoke_knew',
  'knew_argument',
  'argument_husband',
  'husband_instead',
  'instead_step',
  'step_fix',
  'fix_offer',
  'offer_take',
  'take_mom',
  'mom_hous',
  'hous_say',
  'say_husband',
  'husband_could',
  'could_use',
  'use_space',
  'space_made',
  'made_cri',
  'cri_whole',
  'whole_uber',
  'uber_ride',
  'ride_mom',
  'mom_hous',
  'hous_reason',
  'reason_feel',
  'feel_offend',
  'offend_bil',
  'bil_tend',
  'tend_hurt',
  'hurt_talk',
  'talk_could',
  'could_win',
  'win_approv',
  'approv_think',
  'think_less',
  'less_think',
  'think_im',
  'im_childish',
  'childish_like',
  'like_husband',
  'husband_say',
  'husband_brother_bil',
  'brother_bil_move',
  'bil_move_us',
  'move_us_divorc',
  'us_divorc_week',
  'divorc_week_ago',
  'week_ago_problem',
  'ago_problem_start',
  'problem_start_barg',
  'start_barg_bathroom',
  'barg_bathroom_whenev',
  'bathroom_whenev_im',
  'whenev_im_use',
  'im_use_never',
  'use_never_knock',
  'never_knock_anyth',
  'knock_anyth_anoth',
  'anyth_anoth_thing',
  'anoth_thing_bathroom',
  'thing_bathroom_brother',
  'bathroom_brother_told',
  'brother_told_husband',
  'told_husband_id',
  'husband_id_notic',
  'id_notic_laugh',
  'notic_laugh_call',
  'laugh_call_paranoid',
  'call_paranoid_embarrass',
  'paranoid_embarrass_brother',
  'embarrass_brother_would',
  'brother_would_see',
  'would_see_expos',
  'see_expos_made',
  'expos_made_uncomfort',
  'made_uncomfort_husband',
  'uncomfort_husband_said',
  'husband_said_spoke',
  'said_spoke_apolog',
  'spoke_apolog_husband',
  'apolog_husband_got',
  'husband_got_marri',
  'got_marri_promis',
  'marri_promis_lock',
  'promis_lock_lock',
  'lock_lock_room',
  'lock_room_bathroom',
  'room_bathroom_lock',
  'bathroom_lock_realli',
  'lock_realli_consid',
  'realli_consid_get',
  'consid_get_lock',
  'get_lock_let',
  'lock_let_husband',
  'let_husband_know',
  'husband_know_brother',
  'know_brother_walk',
  'brother_walk_bathroom',
  'walk_bathroom_one',
  'bathroom_one_time',
  'one_time_lock',
  'time_lock_instantli',
  'lock_instantli_instal',
  'instantli_instal_say',
  'instal_say_anyth',
  'say_anyth_well',
  'anyth_well_yesterday',
  'well_yesterday_bil',
  'yesterday_bil_walk',
  'bil_walk_shower',
  'walk_shower_knew',
  'shower_knew_would',
  'knew_would_shower',
  'would_shower_barg',
  'shower_barg_anyon',
  'barg_anyon_clame',
  'anyon_clame_need',
  'clame_need_pee',
  'need_pee_enough',
  'pee_enough_went',
  'enough_went_got',
  'went_got_lock',
  'got_lock_instal',
  'lock_instal_husband',
  'instal_husband_got',
  'husband_got_home',
  'got_home_saw',
  'home_saw_blew',
  'saw_blew_say',
  'blew_say_voilat',
  'say_voilat_agreement',
  'voilat_agreement_part',
  'agreement_part_went',
  'part_went_wish',
  'went_wish_uncomfort',
  'wish_uncomfort_lock',
  'uncomfort_lock_hous',
  'lock_hous_demand',
  'hous_demand_remov',
  'demand_remov_*',
  'remov_*_promis',
  '*_promis_*',
  'promis_*_*',
  '*_*_guarente',
  '*_guarente_*',
  'guarente_*_brother',
  '*_brother_walk',
  'brother_walk_refus',
  'walk_refus_piss',
  'refus_piss_sinc',
  'piss_sinc_give',
  'sinc_give_silenc',
  'give_silenc_treatement',
  'silenc_treatement_info',
  'treatement_info_im',
  'info_im_close',
  'im_close_bil',
  'close_bil_husband',
  'bil_husband_even',
  'husband_even_talk',
  'even_talk_much',
  'talk_much_bare',
  'much_bare_even',
  'bare_even_sat',
  'even_sat_gather',
  'sat_gather_move',
  'gather_move_us',
  'move_us_upatd',
  'us_upatd_provid',
  'upatd_provid_updat',
  'provid_updat_situat',
  'updat_situat_worth',
  'situat_worth_note',
  'worth_note_bil',
  'note_bil_use',
  'bil_use_bedroom',
  'use_bedroom_least',
  'bedroom_least_im',
  'least_im_alway',
  'im_alway_expos',
  'alway_expos_bedroom',
  'expos_bedroom_husband',
  'bedroom_husband_came',
  'husband_came_home',
  'came_home_told',
  'home_told_lock',
  'told_lock_remov',
  'lock_remov_til',
  'remov_til_brother',
  'til_brother_leav',
  'brother_leav_reaction',
  'leav_reaction_tri',
  'reaction_tri_remov',
  'tri_remov_lock',
  'remov_lock_tell',
  'lock_tell_quit',
  'tell_quit_act',
  'quit_act_childishi',
  'act_childishi_shout',
  'childishi_shout_scream',
  'shout_scream_pack',
  'scream_pack_bag',
  'pack_bag_go',
  'bag_go_mom',
  'go_mom_hous',
  'mom_hous_next',
  'hous_next_day',
  'next_day_til',
  'day_til_get',
  'til_get_resolv',
  'get_resolv_somehow',
  'resolv_somehow_way',
  'somehow_way_saw',
  'way_saw_bil',
  'saw_bil_driveway',
  'bil_driveway_smoke',
  'driveway_smoke_knew',
  'smoke_knew_argument',
  'knew_argument_husband',
  'argument_husband_instead',
  'husband_instead_step',
  'instead_step_fix',
  'step_fix_offer',
  'fix_offer_take',
  'offer_take_mom',
  'take_mom_hous',
  'mom_hous_say',
  'hous_say_husband',
  'say_husband_could',
  'husband_could_use',
  'could_use_space',
  'use_space_made',
  'space_made_cri',
  'made_cri_whole',
  'cri_whole_uber',
  'whole_uber_ride',
  'uber_ride_mom',
  'ride_mom_hous',
  'mom_hous_reason',
  'hous_reason_feel',
  'reason_feel_offend',
  'feel_offend_bil',
  'offend_bil_tend',
  'bil_tend_hurt',
  'tend_hurt_talk',
  'hurt_talk_could',
  'talk_could_win',
  'could_win_approv',
  'win_approv_think',
  'approv_think_less',
  'think_less_think',
  'less_think_im',
  'think_im_childish',
  'im_childish_like',
  'childish_like_husband',
  'like_husband_say'],
 ['aita',
  'ignor',
  'autist',
  'guy',
  'flight',
  'im',
  'travel',
  'alon',
  'hour',
  'flight',
  'today',
  'guy',
  'row',
  'exhaust',
  'got',
  'four',
  'hour',
  'sleep',
  'flight',
  'could',
  'sleep',
  'plane',
  'guy',
  'well',
  'call',
  'keep',
  'tri',
  'make',
  'convers',
  'start',
  'tell',
  'autist',
  'ask',
  'like',
  'kpop',
  'keep',
  'non',
  'stop',
  'talk',
  'rare',
  'give',
  'chanc',
  'speak',
  'want',
  'tri',
  'polit',
  'adhd',
  'understand',
  'social',
  'cue',
  'difficult',
  'probabl',
  'cant',
  'tell',
  'im',
  'mood',
  'cours',
  'next',
  'minut',
  'tell',
  'mayb',
  'time',
  'want',
  'sleep',
  'put',
  'headphon',
  'time',
  'begin',
  'speak',
  'mayb',
  'minut',
  'silenc',
  'final',
  'abl',
  'sleep',
  'around',
  'hour',
  'woke',
  'start',
  'im',
  'still',
  'realli',
  'tire',
  'person',
  'issu',
  'day',
  'flight',
  'im',
  'also',
  'social',
  'exhaust',
  'let',
  'talk',
  'bit',
  'start',
  'watch',
  'show',
  'phone',
  'tell',
  'mayb',
  'seper',
  'time',
  'im',
  'tri',
  'watch',
  'show',
  'im',
  'interest',
  'talk',
  'right',
  'mayb',
  'later',
  'still',
  'keep',
  'tri',
  'talk',
  'snap',
  'bit',
  'tell',
  'im',
  'get',
  'bit',
  'annoy',
  'goe',
  'full',
  'self-hat',
  'im',
  'sorri',
  'im',
  'horribl',
  'god',
  'im',
  'gon',
  'na',
  'shut',
  'rant',
  'feel',
  'bad',
  'nicer',
  'understand',
  'emot',
  'strong',
  'spiral',
  'tell',
  'okay',
  'want',
  'time',
  'im',
  'chattiest',
  'person',
  'mayb',
  'later',
  'talk',
  'put',
  'headphon',
  'watch',
  'show',
  'kept',
  'tri',
  'speak',
  'time',
  'ignor',
  'honestli',
  'shitti',
  'move',
  'energi',
  'point',
  'interact',
  'wrong',
  'move',
  'move',
  'get',
  'row',
  'stood',
  'aisl',
  'began',
  'yell',
  'catch',
  'everyth',
  'said',
  'along',
  'line',
  'cant',
  'women',
  'believ',
  'men',
  'bad',
  'men',
  'side',
  'im',
  'nice',
  'guy',
  'ignor',
  'storm',
  'bathroom',
  'take',
  'chanc',
  'ask',
  'flight',
  'attend',
  'chang',
  'seat',
  'realli',
  'freak',
  'want',
  'panic',
  'attack',
  'plane',
  'flight',
  'attend',
  'amaz',
  'got',
  'stuff',
  'move',
  'far',
  'away',
  'feel',
  'like',
  'im',
  'ta',
  'autism',
  'could',
  'patient',
  'mayb',
  'ignor',
  'shit',
  'thing',
  'aita_ignor',
  'ignor_autist',
  'autist_guy',
  'guy_flight',
  'flight_im',
  'im_travel',
  'travel_alon',
  'alon_hour',
  'hour_flight',
  'flight_today',
  'today_guy',
  'guy_row',
  'row_exhaust',
  'exhaust_got',
  'got_four',
  'four_hour',
  'hour_sleep',
  'sleep_flight',
  'flight_could',
  'could_sleep',
  'sleep_plane',
  'plane_guy',
  'guy_well',
  'well_call',
  'call_keep',
  'keep_tri',
  'tri_make',
  'make_convers',
  'convers_start',
  'start_tell',
  'tell_autist',
  'autist_ask',
  'ask_like',
  'like_kpop',
  'kpop_keep',
  'keep_non',
  'non_stop',
  'stop_talk',
  'talk_rare',
  'rare_give',
  'give_chanc',
  'chanc_speak',
  'speak_want',
  'want_tri',
  'tri_polit',
  'polit_adhd',
  'adhd_understand',
  'understand_social',
  'social_cue',
  'cue_difficult',
  'difficult_probabl',
  'probabl_cant',
  'cant_tell',
  'tell_im',
  'im_mood',
  'mood_cours',
  'cours_next',
  'next_minut',
  'minut_tell',
  'tell_mayb',
  'mayb_time',
  'time_want',
  'want_sleep',
  'sleep_put',
  'put_headphon',
  'headphon_time',
  'time_begin',
  'begin_speak',
  'speak_mayb',
  'mayb_minut',
  'minut_silenc',
  'silenc_final',
  'final_abl',
  'abl_sleep',
  'sleep_around',
  'around_hour',
  'hour_woke',
  'woke_start',
  'start_im',
  'im_still',
  'still_realli',
  'realli_tire',
  'tire_person',
  'person_issu',
  'issu_day',
  'day_flight',
  'flight_im',
  'im_also',
  'also_social',
  'social_exhaust',
  'exhaust_let',
  'let_talk',
  'talk_bit',
  'bit_start',
  'start_watch',
  'watch_show',
  'show_phone',
  'phone_tell',
  'tell_mayb',
  'mayb_seper',
  'seper_time',
  'time_im',
  'im_tri',
  'tri_watch',
  'watch_show',
  'show_im',
  'im_interest',
  'interest_talk',
  'talk_right',
  'right_mayb',
  'mayb_later',
  'later_still',
  'still_keep',
  'keep_tri',
  'tri_talk',
  'talk_snap',
  'snap_bit',
  'bit_tell',
  'tell_im',
  'im_get',
  'get_bit',
  'bit_annoy',
  'annoy_goe',
  'goe_full',
  'full_self-hat',
  'self-hat_im',
  'im_sorri',
  'sorri_im',
  'im_horribl',
  'horribl_god',
  'god_im',
  'im_gon',
  'gon_na',
  'na_shut',
  'shut_rant',
  'rant_feel',
  'feel_bad',
  'bad_nicer',
  'nicer_understand',
  'understand_emot',
  'emot_strong',
  'strong_spiral',
  'spiral_tell',
  'tell_okay',
  'okay_want',
  'want_time',
  'time_im',
  'im_chattiest',
  'chattiest_person',
  'person_mayb',
  'mayb_later',
  'later_talk',
  'talk_put',
  'put_headphon',
  'headphon_watch',
  'watch_show',
  'show_kept',
  'kept_tri',
  'tri_speak',
  'speak_time',
  'time_ignor',
  'ignor_honestli',
  'honestli_shitti',
  'shitti_move',
  'move_energi',
  'energi_point',
  'point_interact',
  'interact_wrong',
  'wrong_move',
  'move_move',
  'move_get',
  'get_row',
  'row_stood',
  'stood_aisl',
  'aisl_began',
  'began_yell',
  'yell_catch',
  'catch_everyth',
  'everyth_said',
  'said_along',
  'along_line',
  'line_cant',
  'cant_women',
  'women_believ',
  'believ_men',
  'men_bad',
  'bad_men',
  'men_side',
  'side_im',
  'im_nice',
  'nice_guy',
  'guy_ignor',
  'ignor_storm',
  'storm_bathroom',
  'bathroom_take',
  'take_chanc',
  'chanc_ask',
  'ask_flight',
  'flight_attend',
  'attend_chang',
  'chang_seat',
  'seat_realli',
  'realli_freak',
  'freak_want',
  'want_panic',
  'panic_attack',
  'attack_plane',
  'plane_flight',
  'flight_attend',
  'attend_amaz',
  'amaz_got',
  'got_stuff',
  'stuff_move',
  'move_far',
  'far_away',
  'away_feel',
  'feel_like',
  'like_im',
  'im_ta',
  'ta_autism',
  'autism_could',
  'could_patient',
  'patient_mayb',
  'mayb_ignor',
  'ignor_shit',
  'shit_thing',
  'aita_ignor_autist',
  'ignor_autist_guy',
  'autist_guy_flight',
  'guy_flight_im',
  'flight_im_travel',
  'im_travel_alon',
  'travel_alon_hour',
  'alon_hour_flight',
  'hour_flight_today',
  'flight_today_guy',
  'today_guy_row',
  'guy_row_exhaust',
  'row_exhaust_got',
  'exhaust_got_four',
  'got_four_hour',
  'four_hour_sleep',
  'hour_sleep_flight',
  'sleep_flight_could',
  'flight_could_sleep',
  'could_sleep_plane',
  'sleep_plane_guy',
  'plane_guy_well',
  'guy_well_call',
  'well_call_keep',
  'call_keep_tri',
  'keep_tri_make',
  'tri_make_convers',
  'make_convers_start',
  'convers_start_tell',
  'start_tell_autist',
  'tell_autist_ask',
  'autist_ask_like',
  'ask_like_kpop',
  'like_kpop_keep',
  'kpop_keep_non',
  'keep_non_stop',
  'non_stop_talk',
  'stop_talk_rare',
  'talk_rare_give',
  'rare_give_chanc',
  'give_chanc_speak',
  'chanc_speak_want',
  'speak_want_tri',
  'want_tri_polit',
  'tri_polit_adhd',
  'polit_adhd_understand',
  'adhd_understand_social',
  'understand_social_cue',
  'social_cue_difficult',
  'cue_difficult_probabl',
  'difficult_probabl_cant',
  'probabl_cant_tell',
  'cant_tell_im',
  'tell_im_mood',
  'im_mood_cours',
  'mood_cours_next',
  'cours_next_minut',
  'next_minut_tell',
  'minut_tell_mayb',
  'tell_mayb_time',
  'mayb_time_want',
  'time_want_sleep',
  'want_sleep_put',
  'sleep_put_headphon',
  'put_headphon_time',
  'headphon_time_begin',
  'time_begin_speak',
  'begin_speak_mayb',
  'speak_mayb_minut',
  'mayb_minut_silenc',
  'minut_silenc_final',
  'silenc_final_abl',
  'final_abl_sleep',
  'abl_sleep_around',
  'sleep_around_hour',
  'around_hour_woke',
  'hour_woke_start',
  'woke_start_im',
  'start_im_still',
  'im_still_realli',
  'still_realli_tire',
  'realli_tire_person',
  'tire_person_issu',
  'person_issu_day',
  'issu_day_flight',
  'day_flight_im',
  'flight_im_also',
  'im_also_social',
  'also_social_exhaust',
  'social_exhaust_let',
  'exhaust_let_talk',
  'let_talk_bit',
  'talk_bit_start',
  'bit_start_watch',
  'start_watch_show',
  'watch_show_phone',
  'show_phone_tell',
  'phone_tell_mayb',
  'tell_mayb_seper',
  'mayb_seper_time',
  'seper_time_im',
  'time_im_tri',
  'im_tri_watch',
  'tri_watch_show',
  'watch_show_im',
  'show_im_interest',
  'im_interest_talk',
  'interest_talk_right',
  'talk_right_mayb',
  'right_mayb_later',
  'mayb_later_still',
  'later_still_keep',
  'still_keep_tri',
  'keep_tri_talk',
  'tri_talk_snap',
  'talk_snap_bit',
  'snap_bit_tell',
  'bit_tell_im',
  'tell_im_get',
  'im_get_bit',
  'get_bit_annoy',
  'bit_annoy_goe',
  'annoy_goe_full',
  'goe_full_self-hat',
  'full_self-hat_im',
  'self-hat_im_sorri',
  'im_sorri_im',
  'sorri_im_horribl',
  'im_horribl_god',
  'horribl_god_im',
  'god_im_gon',
  'im_gon_na',
  'gon_na_shut',
  'na_shut_rant',
  'shut_rant_feel',
  'rant_feel_bad',
  'feel_bad_nicer',
  'bad_nicer_understand',
  'nicer_understand_emot',
  'understand_emot_strong',
  'emot_strong_spiral',
  'strong_spiral_tell',
  'spiral_tell_okay',
  'tell_okay_want',
  'okay_want_time',
  'want_time_im',
  'time_im_chattiest',
  'im_chattiest_person',
  'chattiest_person_mayb',
  'person_mayb_later',
  'mayb_later_talk',
  'later_talk_put',
  'talk_put_headphon',
  'put_headphon_watch',
  'headphon_watch_show',
  'watch_show_kept',
  'show_kept_tri',
  'kept_tri_speak',
  'tri_speak_time',
  'speak_time_ignor',
  'time_ignor_honestli',
  'ignor_honestli_shitti',
  'honestli_shitti_move',
  'shitti_move_energi',
  'move_energi_point',
  'energi_point_interact',
  'point_interact_wrong',
  'interact_wrong_move',
  'wrong_move_move',
  'move_move_get',
  'move_get_row',
  'get_row_stood',
  'row_stood_aisl',
  'stood_aisl_began',
  'aisl_began_yell',
  'began_yell_catch',
  'yell_catch_everyth',
  'catch_everyth_said',
  'everyth_said_along',
  'said_along_line',
  'along_line_cant',
  'line_cant_women',
  'cant_women_believ',
  'women_believ_men',
  'believ_men_bad',
  'men_bad_men',
  'bad_men_side',
  'men_side_im',
  'side_im_nice',
  'im_nice_guy',
  'nice_guy_ignor',
  'guy_ignor_storm',
  'ignor_storm_bathroom',
  'storm_bathroom_take',
  'bathroom_take_chanc',
  'take_chanc_ask',
  'chanc_ask_flight',
  'ask_flight_attend',
  'flight_attend_chang',
  'attend_chang_seat',
  'chang_seat_realli',
  'seat_realli_freak',
  'realli_freak_want',
  'freak_want_panic',
  'want_panic_attack',
  'panic_attack_plane',
  'attack_plane_flight',
  'plane_flight_attend',
  'flight_attend_amaz',
  'attend_amaz_got',
  'amaz_got_stuff',
  'got_stuff_move',
  'stuff_move_far',
  'move_far_away',
  'far_away_feel',
  'away_feel_like',
  'feel_like_im',
  'like_im_ta',
  'im_ta_autism',
  'ta_autism_could',
  'autism_could_patient',
  'could_patient_mayb',
  'patient_mayb_ignor',
  'mayb_ignor_shit',
  'ignor_shit_thing'],
 ['late',
  'best',
  'friend',
  'knew',
  'sinc',
  'littl',
  'next-door',
  'neighbor',
  'alway',
  'play',
  'togeth',
  'even',
  'went',
  'kindergarten',
  'primari',
  'school',
  'middlehigh',
  'school',
  'togeth',
  'one',
  'day',
  'sophomor',
  'year',
  'start',
  'talk',
  'classmat',
  'start',
  'date',
  'obvious',
  'okay',
  'decid',
  'get',
  'one',
  'get',
  'marri',
  'joke',
  'made',
  'fake',
  'ring',
  'gave',
  'scrunchi',
  'week',
  'later',
  'drunk',
  'driver',
  'hit',
  'sustain',
  'multipl',
  'injuri',
  'icu',
  'month',
  'doctor',
  'told',
  'famili',
  'surviv',
  'chanc',
  'slim',
  'time',
  'talk',
  'die',
  'made',
  'promis',
  'alway',
  'visit',
  'wed',
  'anniversari',
  'wear',
  'scrunchi',
  'visit',
  'year',
  'ago',
  'start',
  'date',
  'girlfriend',
  'told',
  'ask',
  'okay',
  'comment',
  'sweet',
  'nice',
  'tradit',
  'told',
  'perfectli',
  'fine',
  'today',
  'th',
  'anniversari',
  'took',
  'day',
  'girlfriend',
  'went',
  'work',
  'told',
  'time',
  'put',
  'tradit',
  'rest',
  'move',
  'start',
  'get',
  'pathet',
  'still',
  'wear',
  'dead',
  'girl',
  'scrunchi',
  'celebr',
  'fake',
  'marriag',
  'year',
  'ago',
  'furiou',
  'comment',
  'dead',
  'girl',
  'best',
  'friend',
  'like',
  'sister',
  'grew',
  'everyth',
  'togeth',
  'told',
  'girlfriend',
  'long',
  'time',
  'ago',
  'never',
  'sexual',
  'romant',
  'relationship',
  'wed',
  'joke',
  'like',
  'talk',
  'keep',
  'photo',
  'around',
  'hous',
  'anyth',
  'similar',
  'time',
  'ive',
  'talk',
  'girlfriend',
  'told',
  'okay',
  'tradit',
  'ask',
  'told',
  'ill',
  'keep',
  'honor',
  'best',
  'friend',
  'die',
  'wish',
  'even',
  'made',
  'uncomfort',
  'left',
  'work',
  'angri',
  'came',
  'back',
  'home',
  'yet',
  'late_best',
  'best_friend',
  'friend_knew',
  'knew_sinc',
  'sinc_littl',
  'littl_next-door',
  'next-door_neighbor',
  'neighbor_alway',
  'alway_play',
  'play_togeth',
  'togeth_even',
  'even_went',
  'went_kindergarten',
  'kindergarten_primari',
  'primari_school',
  'school_middlehigh',
  'middlehigh_school',
  'school_togeth',
  'togeth_one',
  'one_day',
  'day_sophomor',
  'sophomor_year',
  'year_start',
  'start_talk',
  'talk_classmat',
  'classmat_start',
  'start_date',
  'date_obvious',
  'obvious_okay',
  'okay_decid',
  'decid_get',
  'get_one',
  'one_get',
  'get_marri',
  'marri_joke',
  'joke_made',
  'made_fake',
  'fake_ring',
  'ring_gave',
  'gave_scrunchi',
  'scrunchi_week',
  'week_later',
  'later_drunk',
  'drunk_driver',
  'driver_hit',
  'hit_sustain',
  'sustain_multipl',
  'multipl_injuri',
  'injuri_icu',
  'icu_month',
  'month_doctor',
  'doctor_told',
  'told_famili',
  'famili_surviv',
  'surviv_chanc',
  'chanc_slim',
  'slim_time',
  'time_talk',
  'talk_die',
  'die_made',
  'made_promis',
  'promis_alway',
  'alway_visit',
  'visit_wed',
  'wed_anniversari',
  'anniversari_wear',
  'wear_scrunchi',
  'scrunchi_visit',
  'visit_year',
  'year_ago',
  'ago_start',
  'start_date',
  'date_girlfriend',
  'girlfriend_told',
  'told_ask',
  'ask_okay',
  'okay_comment',
  'comment_sweet',
  'sweet_nice',
  'nice_tradit',
  'tradit_told',
  'told_perfectli',
  'perfectli_fine',
  'fine_today',
  'today_th',
  'th_anniversari',
  'anniversari_took',
  'took_day',
  'day_girlfriend',
  'girlfriend_went',
  'went_work',
  'work_told',
  'told_time',
  'time_put',
  'put_tradit',
  'tradit_rest',
  'rest_move',
  'move_start',
  'start_get',
  'get_pathet',
  'pathet_still',
  'still_wear',
  'wear_dead',
  'dead_girl',
  'girl_scrunchi',
  'scrunchi_celebr',
  'celebr_fake',
  'fake_marriag',
  'marriag_year',
  'year_ago',
  'ago_furiou',
  'furiou_comment',
  'comment_dead',
  'dead_girl',
  'girl_best',
  'best_friend',
  'friend_like',
  'like_sister',
  'sister_grew',
  'grew_everyth',
  'everyth_togeth',
  'togeth_told',
  'told_girlfriend',
  'girlfriend_long',
  'long_time',
  'time_ago',
  'ago_never',
  'never_sexual',
  'sexual_romant',
  'romant_relationship',
  'relationship_wed',
  'wed_joke',
  'joke_like',
  'like_talk',
  'talk_keep',
  'keep_photo',
  'photo_around',
  'around_hous',
  'hous_anyth',
  'anyth_similar',
  'similar_time',
  'time_ive',
  'ive_talk',
  'talk_girlfriend',
  'girlfriend_told',
  'told_okay',
  'okay_tradit',
  'tradit_ask',
  'ask_told',
  'told_ill',
  'ill_keep',
  'keep_honor',
  'honor_best',
  'best_friend',
  'friend_die',
  'die_wish',
  'wish_even',
  'even_made',
  'made_uncomfort',
  'uncomfort_left',
  'left_work',
  'work_angri',
  'angri_came',
  'came_back',
  'back_home',
  'home_yet',
  'late_best_friend',
  'best_friend_knew',
  'friend_knew_sinc',
  'knew_sinc_littl',
  'sinc_littl_next-door',
  'littl_next-door_neighbor',
  'next-door_neighbor_alway',
  'neighbor_alway_play',
  'alway_play_togeth',
  'play_togeth_even',
  'togeth_even_went',
  'even_went_kindergarten',
  'went_kindergarten_primari',
  'kindergarten_primari_school',
  'primari_school_middlehigh',
  'school_middlehigh_school',
  'middlehigh_school_togeth',
  'school_togeth_one',
  'togeth_one_day',
  'one_day_sophomor',
  'day_sophomor_year',
  'sophomor_year_start',
  'year_start_talk',
  'start_talk_classmat',
  'talk_classmat_start',
  'classmat_start_date',
  'start_date_obvious',
  'date_obvious_okay',
  'obvious_okay_decid',
  'okay_decid_get',
  'decid_get_one',
  'get_one_get',
  'one_get_marri',
  'get_marri_joke',
  'marri_joke_made',
  'joke_made_fake',
  'made_fake_ring',
  'fake_ring_gave',
  'ring_gave_scrunchi',
  'gave_scrunchi_week',
  'scrunchi_week_later',
  'week_later_drunk',
  'later_drunk_driver',
  'drunk_driver_hit',
  'driver_hit_sustain',
  'hit_sustain_multipl',
  'sustain_multipl_injuri',
  'multipl_injuri_icu',
  'injuri_icu_month',
  'icu_month_doctor',
  'month_doctor_told',
  'doctor_told_famili',
  'told_famili_surviv',
  'famili_surviv_chanc',
  'surviv_chanc_slim',
  'chanc_slim_time',
  'slim_time_talk',
  'time_talk_die',
  'talk_die_made',
  'die_made_promis',
  'made_promis_alway',
  'promis_alway_visit',
  'alway_visit_wed',
  'visit_wed_anniversari',
  'wed_anniversari_wear',
  'anniversari_wear_scrunchi',
  'wear_scrunchi_visit',
  'scrunchi_visit_year',
  'visit_year_ago',
  'year_ago_start',
  'ago_start_date',
  'start_date_girlfriend',
  'date_girlfriend_told',
  'girlfriend_told_ask',
  'told_ask_okay',
  'ask_okay_comment',
  'okay_comment_sweet',
  'comment_sweet_nice',
  'sweet_nice_tradit',
  'nice_tradit_told',
  'tradit_told_perfectli',
  'told_perfectli_fine',
  'perfectli_fine_today',
  'fine_today_th',
  'today_th_anniversari',
  'th_anniversari_took',
  'anniversari_took_day',
  'took_day_girlfriend',
  'day_girlfriend_went',
  'girlfriend_went_work',
  'went_work_told',
  'work_told_time',
  'told_time_put',
  'time_put_tradit',
  'put_tradit_rest',
  'tradit_rest_move',
  'rest_move_start',
  'move_start_get',
  'start_get_pathet',
  'get_pathet_still',
  'pathet_still_wear',
  'still_wear_dead',
  'wear_dead_girl',
  'dead_girl_scrunchi',
  'girl_scrunchi_celebr',
  'scrunchi_celebr_fake',
  'celebr_fake_marriag',
  'fake_marriag_year',
  'marriag_year_ago',
  'year_ago_furiou',
  'ago_furiou_comment',
  'furiou_comment_dead',
  'comment_dead_girl',
  'dead_girl_best',
  'girl_best_friend',
  'best_friend_like',
  'friend_like_sister',
  'like_sister_grew',
  'sister_grew_everyth',
  'grew_everyth_togeth',
  'everyth_togeth_told',
  'togeth_told_girlfriend',
  'told_girlfriend_long',
  'girlfriend_long_time',
  'long_time_ago',
  'time_ago_never',
  'ago_never_sexual',
  'never_sexual_romant',
  'sexual_romant_relationship',
  'romant_relationship_wed',
  'relationship_wed_joke',
  'wed_joke_like',
  'joke_like_talk',
  'like_talk_keep',
  'talk_keep_photo',
  'keep_photo_around',
  'photo_around_hous',
  'around_hous_anyth',
  'hous_anyth_similar',
  'anyth_similar_time',
  'similar_time_ive',
  'time_ive_talk',
  'ive_talk_girlfriend',
  'talk_girlfriend_told',
  'girlfriend_told_okay',
  'told_okay_tradit',
  'okay_tradit_ask',
  'tradit_ask_told',
  'ask_told_ill',
  'told_ill_keep',
  'ill_keep_honor',
  'keep_honor_best',
  'honor_best_friend',
  'best_friend_die',
  'friend_die_wish',
  'die_wish_even',
  'wish_even_made',
  'even_made_uncomfort',
  'made_uncomfort_left',
  'uncomfort_left_work',
  'left_work_angri',
  'work_angri_came',
  'angri_came_back',
  'came_back_home',
  'back_home_yet'],
 ['got',
  'engag',
  'fiancé',
  'eric',
  'month',
  'ago',
  'move',
  'daughter',
  'zoey',
  'everyth',
  'go',
  'well',
  'til',
  'start',
  'complain',
  'zoey',
  'cat',
  'strang',
  'cat',
  'sweet',
  'quiet',
  'time',
  'idea',
  'issu',
  'exactli',
  'anyway',
  'went',
  'complain',
  'cat',
  'make',
  'demand',
  'gave',
  'zoey',
  'list',
  'place',
  'cat',
  'cancant',
  'go',
  'thing',
  'allow',
  'touch',
  'ban',
  'place',
  'like',
  'kitchen',
  'sofa',
  'zoey',
  'favorit',
  'place',
  'cuddl',
  'cat',
  'zoey',
  'show',
  'list',
  'argument',
  'tell',
  'need',
  'stop',
  'ridicul',
  'rant',
  'hous',
  'expect',
  'thing',
  'chang',
  'get',
  'marri',
  'day',
  'ago',
  'work',
  'got',
  'call',
  'zoey',
  'cri',
  'say',
  'cat',
  'room',
  'hous',
  'freak',
  'went',
  'home',
  'look',
  'zoey',
  'look',
  'hr',
  'neighbor',
  'brought',
  'told',
  'us',
  'saw',
  'eric',
  'leav',
  'outsid',
  'get',
  'car',
  'leav',
  'surpris',
  'quit',
  'angri',
  'zoey',
  'took',
  'cat',
  'went',
  'back',
  'insid',
  'immedi',
  'drove',
  'futur',
  'inlaw',
  'home',
  'eric',
  'said',
  'hed',
  'second',
  'saw',
  'sit',
  'famili',
  'went',
  'blew',
  'infront',
  'everyon',
  'mom',
  'ask',
  'happen',
  'told',
  'son',
  'got',
  'daughter',
  'indoor',
  'cat',
  'outsid',
  'hous',
  'probabl',
  'hope',
  'get',
  'lost',
  'argu',
  'want',
  'yo',
  'stop',
  'spout',
  'nonesens',
  'go',
  'home',
  'wed',
  'talk',
  'refus',
  'got',
  'wors',
  'end',
  'leav',
  'famili',
  'flip',
  'sent',
  'bunch',
  'text',
  'talk',
  'stunt',
  'pull',
  'infront',
  'famili',
  'said',
  'mean',
  'leav',
  'cat',
  'check',
  'cam',
  'confirm',
  'still',
  'insist',
  'humili',
  'infront',
  'famili',
  'tri',
  'turn',
  'stay',
  'friend',
  'stop',
  'call',
  'text',
  'aita',
  'blow',
  'infront',
  'famili',
  'cat',
  'tax',
  'httpsimgurcomalouovch',
  'got_engag',
  'engag_fiancé',
  'fiancé_eric',
  'eric_month',
  'month_ago',
  'ago_move',
  'move_daughter',
  'daughter_zoey',
  'zoey_everyth',
  'everyth_go',
  'go_well',
  'well_til',
  'til_start',
  'start_complain',
  'complain_zoey',
  'zoey_cat',
  'cat_strang',
  'strang_cat',
  'cat_sweet',
  'sweet_quiet',
  'quiet_time',
  'time_idea',
  'idea_issu',
  'issu_exactli',
  'exactli_anyway',
  'anyway_went',
  'went_complain',
  'complain_cat',
  'cat_make',
  'make_demand',
  'demand_gave',
  'gave_zoey',
  'zoey_list',
  'list_place',
  'place_cat',
  'cat_cancant',
  'cancant_go',
  'go_thing',
  'thing_allow',
  'allow_touch',
  'touch_ban',
  'ban_place',
  'place_like',
  'like_kitchen',
  'kitchen_sofa',
  'sofa_zoey',
  'zoey_favorit',
  'favorit_place',
  'place_cuddl',
  'cuddl_cat',
  'cat_zoey',
  'zoey_show',
  'show_list',
  'list_argument',
  'argument_tell',
  'tell_need',
  'need_stop',
  'stop_ridicul',
  'ridicul_rant',
  'rant_hous',
  'hous_expect',
  'expect_thing',
  'thing_chang',
  'chang_get',
  'get_marri',
  'marri_day',
  'day_ago',
  'ago_work',
  'work_got',
  'got_call',
  'call_zoey',
  'zoey_cri',
  'cri_say',
  'say_cat',
  'cat_room',
  'room_hous',
  'hous_freak',
  'freak_went',
  'went_home',
  'home_look',
  'look_zoey',
  'zoey_look',
  'look_hr',
  'hr_neighbor',
  'neighbor_brought',
  'brought_told',
  'told_us',
  'us_saw',
  'saw_eric',
  'eric_leav',
  'leav_outsid',
  'outsid_get',
  'get_car',
  'car_leav',
  'leav_surpris',
  'surpris_quit',
  'quit_angri',
  'angri_zoey',
  'zoey_took',
  'took_cat',
  'cat_went',
  'went_back',
  'back_insid',
  'insid_immedi',
  'immedi_drove',
  'drove_futur',
  'futur_inlaw',
  'inlaw_home',
  'home_eric',
  'eric_said',
  'said_hed',
  'hed_second',
  'second_saw',
  'saw_sit',
  'sit_famili',
  'famili_went',
  'went_blew',
  'blew_infront',
  'infront_everyon',
  'everyon_mom',
  'mom_ask',
  'ask_happen',
  'happen_told',
  'told_son',
  'son_got',
  'got_daughter',
  'daughter_indoor',
  'indoor_cat',
  'cat_outsid',
  'outsid_hous',
  'hous_probabl',
  'probabl_hope',
  'hope_get',
  'get_lost',
  'lost_argu',
  'argu_want',
  'want_yo',
  'yo_stop',
  'stop_spout',
  'spout_nonesens',
  'nonesens_go',
  'go_home',
  'home_wed',
  'wed_talk',
  'talk_refus',
  'refus_got',
  'got_wors',
  'wors_end',
  'end_leav',
  'leav_famili',
  'famili_flip',
  'flip_sent',
  'sent_bunch',
  'bunch_text',
  'text_talk',
  'talk_stunt',
  'stunt_pull',
  'pull_infront',
  'infront_famili',
  'famili_said',
  'said_mean',
  'mean_leav',
  'leav_cat',
  'cat_check',
  'check_cam',
  'cam_confirm',
  'confirm_still',
  'still_insist',
  'insist_humili',
  'humili_infront',
  'infront_famili',
  'famili_tri',
  'tri_turn',
  'turn_stay',
  'stay_friend',
  'friend_stop',
  'stop_call',
  'call_text',
  'text_aita',
  'aita_blow',
  'blow_infront',
  'infront_famili',
  'famili_cat',
  'cat_tax',
  'tax_httpsimgurcomalouovch',
  'got_engag_fiancé',
  'engag_fiancé_eric',
  'fiancé_eric_month',
  'eric_month_ago',
  'month_ago_move',
  'ago_move_daughter',
  'move_daughter_zoey',
  'daughter_zoey_everyth',
  'zoey_everyth_go',
  'everyth_go_well',
  'go_well_til',
  'well_til_start',
  'til_start_complain',
  'start_complain_zoey',
  'complain_zoey_cat',
  'zoey_cat_strang',
  'cat_strang_cat',
  'strang_cat_sweet',
  'cat_sweet_quiet',
  'sweet_quiet_time',
  'quiet_time_idea',
  'time_idea_issu',
  'idea_issu_exactli',
  'issu_exactli_anyway',
  'exactli_anyway_went',
  'anyway_went_complain',
  'went_complain_cat',
  'complain_cat_make',
  'cat_make_demand',
  'make_demand_gave',
  'demand_gave_zoey',
  'gave_zoey_list',
  'zoey_list_place',
  'list_place_cat',
  'place_cat_cancant',
  'cat_cancant_go',
  'cancant_go_thing',
  'go_thing_allow',
  'thing_allow_touch',
  'allow_touch_ban',
  'touch_ban_place',
  'ban_place_like',
  'place_like_kitchen',
  'like_kitchen_sofa',
  'kitchen_sofa_zoey',
  'sofa_zoey_favorit',
  'zoey_favorit_place',
  'favorit_place_cuddl',
  'place_cuddl_cat',
  'cuddl_cat_zoey',
  'cat_zoey_show',
  'zoey_show_list',
  'show_list_argument',
  'list_argument_tell',
  'argument_tell_need',
  'tell_need_stop',
  'need_stop_ridicul',
  'stop_ridicul_rant',
  'ridicul_rant_hous',
  'rant_hous_expect',
  'hous_expect_thing',
  'expect_thing_chang',
  'thing_chang_get',
  'chang_get_marri',
  'get_marri_day',
  'marri_day_ago',
  'day_ago_work',
  'ago_work_got',
  'work_got_call',
  'got_call_zoey',
  'call_zoey_cri',
  'zoey_cri_say',
  'cri_say_cat',
  'say_cat_room',
  'cat_room_hous',
  'room_hous_freak',
  'hous_freak_went',
  'freak_went_home',
  'went_home_look',
  'home_look_zoey',
  'look_zoey_look',
  'zoey_look_hr',
  'look_hr_neighbor',
  'hr_neighbor_brought',
  'neighbor_brought_told',
  'brought_told_us',
  'told_us_saw',
  'us_saw_eric',
  'saw_eric_leav',
  'eric_leav_outsid',
  'leav_outsid_get',
  'outsid_get_car',
  'get_car_leav',
  'car_leav_surpris',
  'leav_surpris_quit',
  'surpris_quit_angri',
  'quit_angri_zoey',
  'angri_zoey_took',
  'zoey_took_cat',
  'took_cat_went',
  'cat_went_back',
  'went_back_insid',
  'back_insid_immedi',
  'insid_immedi_drove',
  'immedi_drove_futur',
  'drove_futur_inlaw',
  'futur_inlaw_home',
  'inlaw_home_eric',
  'home_eric_said',
  'eric_said_hed',
  'said_hed_second',
  'hed_second_saw',
  'second_saw_sit',
  'saw_sit_famili',
  'sit_famili_went',
  'famili_went_blew',
  'went_blew_infront',
  'blew_infront_everyon',
  'infront_everyon_mom',
  'everyon_mom_ask',
  'mom_ask_happen',
  'ask_happen_told',
  'happen_told_son',
  'told_son_got',
  'son_got_daughter',
  'got_daughter_indoor',
  'daughter_indoor_cat',
  'indoor_cat_outsid',
  'cat_outsid_hous',
  'outsid_hous_probabl',
  'hous_probabl_hope',
  'probabl_hope_get',
  'hope_get_lost',
  'get_lost_argu',
  'lost_argu_want',
  'argu_want_yo',
  'want_yo_stop',
  'yo_stop_spout',
  'stop_spout_nonesens',
  'spout_nonesens_go',
  'nonesens_go_home',
  'go_home_wed',
  'home_wed_talk',
  'wed_talk_refus',
  'talk_refus_got',
  'refus_got_wors',
  'got_wors_end',
  'wors_end_leav',
  'end_leav_famili',
  'leav_famili_flip',
  'famili_flip_sent',
  'flip_sent_bunch',
  'sent_bunch_text',
  'bunch_text_talk',
  'text_talk_stunt',
  'talk_stunt_pull',
  'stunt_pull_infront',
  'pull_infront_famili',
  'infront_famili_said',
  'famili_said_mean',
  'said_mean_leav',
  'mean_leav_cat',
  'leav_cat_check',
  'cat_check_cam',
  'check_cam_confirm',
  'cam_confirm_still',
  'confirm_still_insist',
  'still_insist_humili',
  'insist_humili_infront',
  'humili_infront_famili',
  'infront_famili_tri',
  'famili_tri_turn',
  'tri_turn_stay',
  'turn_stay_friend',
  'stay_friend_stop',
  'friend_stop_call',
  'stop_call_text',
  'call_text_aita',
  'text_aita_blow',
  'aita_blow_infront',
  'blow_infront_famili',
  'infront_famili_cat',
  'famili_cat_tax',
  'cat_tax_httpsimgurcomalouovch'],
 ['speak',
  'mother',
  'like',
  'go',
  'mother',
  'hous',
  'today',
  'pick',
  'import',
  'document',
  'left',
  'behind',
  'move',
  'seven',
  'year',
  'ago',
  'soon',
  'got',
  'hous',
  'mother',
  'suddenli',
  'massiv',
  'emerg',
  'realis',
  'appar',
  'friend',
  'funer',
  'today',
  'complet',
  'forgot',
  'help',
  'intern',
  'roll',
  'eye',
  'alway',
  'drama',
  'henc',
  'gone',
  'noveri',
  'low',
  'contact',
  'ask',
  'would',
  'watch',
  'two',
  'younger',
  'brother',
  'whilst',
  'went',
  'funer',
  'said',
  'absolut',
  'day',
  'plan',
  'relationship',
  'due',
  'mother',
  'stop',
  'see',
  'year',
  'want',
  'get',
  'birth',
  'certif',
  'leav',
  'mother',
  'ask',
  'friend',
  'would',
  'babysit',
  'ask',
  'stay',
  'minut',
  'friend',
  'came',
  'even',
  'get',
  'opportun',
  'say',
  'mother',
  'left',
  'hous',
  'seeth',
  'resolv',
  'wait',
  'minut',
  'mother',
  'friend',
  'turn',
  'start',
  'berat',
  'agre',
  'look',
  'brother',
  'whilst',
  'mother',
  'went',
  'funer',
  'said',
  'anyth',
  'mother',
  'day',
  'work',
  'im',
  'oblig',
  'look',
  'anyon',
  'els',
  'children',
  'mother',
  'friend',
  'told',
  'go',
  'room',
  'laugh',
  'face',
  'start',
  'leav',
  'hous',
  'ask',
  'go',
  'told',
  'room',
  'apart',
  'pay',
  'big',
  'girl',
  'job',
  'im',
  'adult',
  'child',
  'ever',
  'speak',
  'like',
  'left',
  'mother',
  'left',
  'load',
  'messag',
  'miss',
  'call',
  'say',
  'im',
  'ah',
  'way',
  'spoke',
  'friend',
  'admit',
  'look',
  'kinda',
  'young',
  'still',
  'happi',
  'way',
  'mother',
  'friend',
  'spoke',
  'aita',
  'speak_mother',
  'mother_like',
  'like_go',
  'go_mother',
  'mother_hous',
  'hous_today',
  'today_pick',
  'pick_import',
  'import_document',
  'document_left',
  'left_behind',
  'behind_move',
  'move_seven',
  'seven_year',
  'year_ago',
  'ago_soon',
  'soon_got',
  'got_hous',
  'hous_mother',
  'mother_suddenli',
  'suddenli_massiv',
  'massiv_emerg',
  'emerg_realis',
  'realis_appar',
  'appar_friend',
  'friend_funer',
  'funer_today',
  'today_complet',
  'complet_forgot',
  'forgot_help',
  'help_intern',
  'intern_roll',
  'roll_eye',
  'eye_alway',
  'alway_drama',
  'drama_henc',
  'henc_gone',
  'gone_noveri',
  'noveri_low',
  'low_contact',
  'contact_ask',
  'ask_would',
  'would_watch',
  'watch_two',
  'two_younger',
  'younger_brother',
  'brother_whilst',
  'whilst_went',
  'went_funer',
  'funer_said',
  'said_absolut',
  'absolut_day',
  'day_plan',
  'plan_relationship',
  'relationship_due',
  'due_mother',
  'mother_stop',
  'stop_see',
  'see_year',
  'year_want',
  'want_get',
  'get_birth',
  'birth_certif',
  'certif_leav',
  'leav_mother',
  'mother_ask',
  'ask_friend',
  'friend_would',
  'would_babysit',
  'babysit_ask',
  'ask_stay',
  'stay_minut',
  'minut_friend',
  'friend_came',
  'came_even',
  'even_get',
  'get_opportun',
  'opportun_say',
  'say_mother',
  'mother_left',
  'left_hous',
  'hous_seeth',
  'seeth_resolv',
  'resolv_wait',
  'wait_minut',
  'minut_mother',
  'mother_friend',
  'friend_turn',
  'turn_start',
  'start_berat',
  'berat_agre',
  'agre_look',
  'look_brother',
  'brother_whilst',
  'whilst_mother',
  'mother_went',
  'went_funer',
  'funer_said',
  'said_anyth',
  'anyth_mother',
  'mother_day',
  'day_work',
  'work_im',
  'im_oblig',
  'oblig_look',
  'look_anyon',
  'anyon_els',
  'els_children',
  'children_mother',
  'mother_friend',
  'friend_told',
  'told_go',
  'go_room',
  'room_laugh',
  'laugh_face',
  'face_start',
  'start_leav',
  'leav_hous',
  'hous_ask',
  'ask_go',
  'go_told',
  'told_room',
  'room_apart',
  'apart_pay',
  'pay_big',
  'big_girl',
  'girl_job',
  'job_im',
  'im_adult',
  'adult_child',
  'child_ever',
  'ever_speak',
  'speak_like',
  'like_left',
  'left_mother',
  'mother_left',
  'left_load',
  'load_messag',
  'messag_miss',
  'miss_call',
  'call_say',
  'say_im',
  'im_ah',
  'ah_way',
  'way_spoke',
  'spoke_friend',
  'friend_admit',
  'admit_look',
  'look_kinda',
  'kinda_young',
  'young_still',
  'still_happi',
  'happi_way',
  'way_mother',
  'mother_friend',
  'friend_spoke',
  'spoke_aita',
  'speak_mother_like',
  'mother_like_go',
  'like_go_mother',
  'go_mother_hous',
  'mother_hous_today',
  'hous_today_pick',
  'today_pick_import',
  'pick_import_document',
  'import_document_left',
  'document_left_behind',
  'left_behind_move',
  'behind_move_seven',
  'move_seven_year',
  'seven_year_ago',
  'year_ago_soon',
  'ago_soon_got',
  'soon_got_hous',
  'got_hous_mother',
  'hous_mother_suddenli',
  'mother_suddenli_massiv',
  'suddenli_massiv_emerg',
  'massiv_emerg_realis',
  'emerg_realis_appar',
  'realis_appar_friend',
  'appar_friend_funer',
  'friend_funer_today',
  'funer_today_complet',
  'today_complet_forgot',
  'complet_forgot_help',
  'forgot_help_intern',
  'help_intern_roll',
  'intern_roll_eye',
  'roll_eye_alway',
  'eye_alway_drama',
  'alway_drama_henc',
  'drama_henc_gone',
  'henc_gone_noveri',
  'gone_noveri_low',
  'noveri_low_contact',
  'low_contact_ask',
  'contact_ask_would',
  'ask_would_watch',
  'would_watch_two',
  'watch_two_younger',
  'two_younger_brother',
  'younger_brother_whilst',
  'brother_whilst_went',
  'whilst_went_funer',
  'went_funer_said',
  'funer_said_absolut',
  'said_absolut_day',
  'absolut_day_plan',
  'day_plan_relationship',
  'plan_relationship_due',
  'relationship_due_mother',
  'due_mother_stop',
  'mother_stop_see',
  'stop_see_year',
  'see_year_want',
  'year_want_get',
  'want_get_birth',
  'get_birth_certif',
  'birth_certif_leav',
  'certif_leav_mother',
  'leav_mother_ask',
  'mother_ask_friend',
  'ask_friend_would',
  'friend_would_babysit',
  'would_babysit_ask',
  'babysit_ask_stay',
  'ask_stay_minut',
  'stay_minut_friend',
  'minut_friend_came',
  'friend_came_even',
  'came_even_get',
  'even_get_opportun',
  'get_opportun_say',
  'opportun_say_mother',
  'say_mother_left',
  'mother_left_hous',
  'left_hous_seeth',
  'hous_seeth_resolv',
  'seeth_resolv_wait',
  'resolv_wait_minut',
  'wait_minut_mother',
  'minut_mother_friend',
  'mother_friend_turn',
  'friend_turn_start',
  'turn_start_berat',
  'start_berat_agre',
  'berat_agre_look',
  'agre_look_brother',
  'look_brother_whilst',
  'brother_whilst_mother',
  'whilst_mother_went',
  'mother_went_funer',
  'went_funer_said',
  'funer_said_anyth',
  'said_anyth_mother',
  'anyth_mother_day',
  'mother_day_work',
  'day_work_im',
  'work_im_oblig',
  'im_oblig_look',
  'oblig_look_anyon',
  'look_anyon_els',
  'anyon_els_children',
  'els_children_mother',
  'children_mother_friend',
  'mother_friend_told',
  'friend_told_go',
  'told_go_room',
  'go_room_laugh',
  'room_laugh_face',
  'laugh_face_start',
  'face_start_leav',
  'start_leav_hous',
  'leav_hous_ask',
  'hous_ask_go',
  'ask_go_told',
  'go_told_room',
  'told_room_apart',
  'room_apart_pay',
  'apart_pay_big',
  'pay_big_girl',
  'big_girl_job',
  'girl_job_im',
  'job_im_adult',
  'im_adult_child',
  'adult_child_ever',
  'child_ever_speak',
  'ever_speak_like',
  'speak_like_left',
  'like_left_mother',
  'left_mother_left',
  'mother_left_load',
  'left_load_messag',
  'load_messag_miss',
  'messag_miss_call',
  'miss_call_say',
  'call_say_im',
  'say_im_ah',
  'im_ah_way',
  'ah_way_spoke',
  'way_spoke_friend',
  'spoke_friend_admit',
  'friend_admit_look',
  'admit_look_kinda',
  'look_kinda_young',
  'kinda_young_still',
  'young_still_happi',
  'still_happi_way',
  'happi_way_mother',
  'way_mother_friend',
  'mother_friend_spoke',
  'friend_spoke_aita'],
 ['wife',
  'littl',
  'girl',
  'ill',
  'call',
  'anna',
  'anna',
  'thick',
  'blond',
  'curli',
  'hair',
  'wife',
  'ador',
  'ever',
  'sinc',
  'toddler',
  'shed',
  'spend',
  'hour',
  'hair',
  'everi',
  'day',
  'braid',
  'straighten',
  'style',
  'sort',
  'way',
  'bathroom',
  'cabinet',
  'alway',
  'fill',
  'brim',
  'bunch',
  'hair',
  'lotion',
  'oil',
  'cream',
  'fanci',
  'product',
  'even',
  'know',
  'name',
  'think',
  'fair',
  'say',
  'wife',
  'bit',
  'obsess',
  'whole',
  'hair',
  'thing',
  'anna',
  'howev',
  'never',
  'fond',
  'get',
  'hair',
  'done',
  'anyth',
  'involv',
  'sit',
  'still',
  'minut',
  'got',
  'cut',
  'hair',
  'use',
  'reach',
  'past',
  'waist',
  'look',
  'love',
  'hate',
  'get',
  'brush',
  'everi',
  'morn',
  'use',
  'scream',
  'fest',
  'wife',
  'late',
  'shed',
  'beg',
  'shorter',
  'haircut',
  'wife',
  'ignor',
  'whenev',
  'topic',
  'brought',
  'hope',
  'shed',
  'forget',
  'none',
  'end',
  'happen',
  'think',
  'anna',
  'realiz',
  'get',
  'nowher',
  'mom',
  'start',
  'ask',
  'take',
  'instead',
  'reluct',
  'first',
  'know',
  'wife',
  'would',
  'react',
  'agre',
  'saw',
  'excit',
  'kid',
  'someth',
  'simpl',
  'haircut',
  'yesterday',
  'drove',
  'hairdress',
  'got',
  'flip',
  'lot',
  'magazin',
  'pick',
  'pictur',
  'haircut',
  'chose',
  'realli',
  'short',
  'clipper',
  'cut',
  'knew',
  'gon',
  'na',
  'deep',
  'shit',
  'wife',
  'point',
  'though',
  'turn',
  'back',
  'mean',
  'could',
  'realli',
  'done',
  'told',
  'cant',
  'get',
  'haircut',
  'moon',
  'mom',
  'like',
  'went',
  'ahead',
  'haircut',
  'end',
  'anna',
  'stop',
  'smile',
  'went',
  'around',
  'salon',
  'show',
  'everyon',
  'even',
  'ask',
  'take',
  'bunch',
  'pictur',
  'even',
  'though',
  'normal',
  'hate',
  'pictur',
  'taken',
  'get',
  'one',
  'rude',
  'comment',
  'older',
  'woman',
  'salon',
  'someth',
  'along',
  'line',
  'cant',
  'even',
  'tell',
  'boy',
  'girl',
  'anna',
  'way',
  'excit',
  'hair',
  'notic',
  'notic',
  'care',
  'wife',
  'got',
  'home',
  'work',
  'day',
  'though',
  'thing',
  'quickli',
  'took',
  'turn',
  'wors',
  'refus',
  'even',
  'look',
  'anna',
  'lock',
  'room',
  'cri',
  'got',
  'car',
  'drove',
  'day',
  'still',
  'back',
  'honestli',
  'start',
  'worri',
  'knew',
  'react',
  'well',
  'haircut',
  'expect',
  'take',
  'badli',
  'kid',
  'upset',
  'matter',
  'much',
  'reassur',
  'still',
  'think',
  'troubl',
  'get',
  'hair',
  'cut',
  'aita',
  'realiz',
  'attach',
  'wife',
  'anna',
  'hair',
  'end',
  'day',
  'still',
  'think',
  'hair',
  'kid',
  'old',
  'enough',
  'decid',
  'thing',
  'realli',
  'happi',
  'haircut',
  'think',
  'someth',
  'wrong',
  'wife_littl',
  'littl_girl',
  'girl_ill',
  'ill_call',
  'call_anna',
  'anna_anna',
  'anna_thick',
  'thick_blond',
  'blond_curli',
  'curli_hair',
  'hair_wife',
  'wife_ador',
  'ador_ever',
  'ever_sinc',
  'sinc_toddler',
  'toddler_shed',
  'shed_spend',
  'spend_hour',
  'hour_hair',
  'hair_everi',
  'everi_day',
  'day_braid',
  'braid_straighten',
  'straighten_style',
  'style_sort',
  'sort_way',
  'way_bathroom',
  'bathroom_cabinet',
  'cabinet_alway',
  'alway_fill',
  'fill_brim',
  'brim_bunch',
  'bunch_hair',
  'hair_lotion',
  'lotion_oil',
  'oil_cream',
  'cream_fanci',
  'fanci_product',
  'product_even',
  'even_know',
  'know_name',
  'name_think',
  'think_fair',
  'fair_say',
  'say_wife',
  'wife_bit',
  'bit_obsess',
  'obsess_whole',
  'whole_hair',
  'hair_thing',
  'thing_anna',
  'anna_howev',
  'howev_never',
  'never_fond',
  'fond_get',
  'get_hair',
  'hair_done',
  'done_anyth',
  'anyth_involv',
  'involv_sit',
  'sit_still',
  'still_minut',
  'minut_got',
  'got_cut',
  'cut_hair',
  'hair_use',
  'use_reach',
  'reach_past',
  'past_waist',
  'waist_look',
  'look_love',
  'love_hate',
  'hate_get',
  'get_brush',
  'brush_everi',
  'everi_morn',
  'morn_use',
  'use_scream',
  'scream_fest',
  'fest_wife',
  'wife_late',
  'late_shed',
  'shed_beg',
  'beg_shorter',
  'shorter_haircut',
  'haircut_wife',
  'wife_ignor',
  'ignor_whenev',
  'whenev_topic',
  'topic_brought',
  'brought_hope',
  'hope_shed',
  'shed_forget',
  'forget_none',
  'none_end',
  'end_happen',
  'happen_think',
  'think_anna',
  'anna_realiz',
  'realiz_get',
  'get_nowher',
  'nowher_mom',
  'mom_start',
  'start_ask',
  'ask_take',
  'take_instead',
  'instead_reluct',
  'reluct_first',
  'first_know',
  'know_wife',
  'wife_would',
  'would_react',
  'react_agre',
  'agre_saw',
  'saw_excit',
  'excit_kid',
  'kid_someth',
  'someth_simpl',
  'simpl_haircut',
  'haircut_yesterday',
  'yesterday_drove',
  'drove_hairdress',
  'hairdress_got',
  'got_flip',
  'flip_lot',
  'lot_magazin',
  'magazin_pick',
  'pick_pictur',
  'pictur_haircut',
  'haircut_chose',
  'chose_realli',
  'realli_short',
  'short_clipper',
  'clipper_cut',
  'cut_knew',
  'knew_gon',
  'gon_na',
  'na_deep',
  'deep_shit',
  'shit_wife',
  'wife_point',
  'point_though',
  'though_turn',
  'turn_back',
  'back_mean',
  'mean_could',
  'could_realli',
  'realli_done',
  'done_told',
  'told_cant',
  'cant_get',
  'get_haircut',
  'haircut_moon',
  'moon_mom',
  'mom_like',
  'like_went',
  'went_ahead',
  'ahead_haircut',
  'haircut_end',
  'end_anna',
  'anna_stop',
  'stop_smile',
  'smile_went',
  'went_around',
  'around_salon',
  'salon_show',
  'show_everyon',
  'everyon_even',
  'even_ask',
  'ask_take',
  'take_bunch',
  'bunch_pictur',
  'pictur_even',
  'even_though',
  'though_normal',
  'normal_hate',
  'hate_pictur',
  'pictur_taken',
  'taken_get',
  'get_one',
  'one_rude',
  'rude_comment',
  'comment_older',
  'older_woman',
  'woman_salon',
  'salon_someth',
  'someth_along',
  'along_line',
  'line_cant',
  'cant_even',
  'even_tell',
  'tell_boy',
  'boy_girl',
  'girl_anna',
  'anna_way',
  'way_excit',
  'excit_hair',
  'hair_notic',
  'notic_notic',
  'notic_care',
  'care_wife',
  'wife_got',
  'got_home',
  'home_work',
  'work_day',
  'day_though',
  'though_thing',
  'thing_quickli',
  'quickli_took',
  'took_turn',
  'turn_wors',
  'wors_refus',
  'refus_even',
  'even_look',
  'look_anna',
  'anna_lock',
  'lock_room',
  'room_cri',
  'cri_got',
  'got_car',
  'car_drove',
  'drove_day',
  'day_still',
  'still_back',
  'back_honestli',
  'honestli_start',
  'start_worri',
  'worri_knew',
  'knew_react',
  'react_well',
  'well_haircut',
  'haircut_expect',
  'expect_take',
  'take_badli',
  'badli_kid',
  'kid_upset',
  'upset_matter',
  'matter_much',
  'much_reassur',
  'reassur_still',
  'still_think',
  'think_troubl',
  'troubl_get',
  'get_hair',
  'hair_cut',
  'cut_aita',
  'aita_realiz',
  'realiz_attach',
  'attach_wife',
  'wife_anna',
  'anna_hair',
  'hair_end',
  'end_day',
  'day_still',
  'still_think',
  'think_hair',
  'hair_kid',
  'kid_old',
  'old_enough',
  'enough_decid',
  'decid_thing',
  'thing_realli',
  'realli_happi',
  'happi_haircut',
  'haircut_think',
  'think_someth',
  'someth_wrong',
  'wife_littl_girl',
  'littl_girl_ill',
  'girl_ill_call',
  'ill_call_anna',
  'call_anna_anna',
  'anna_anna_thick',
  'anna_thick_blond',
  'thick_blond_curli',
  'blond_curli_hair',
  'curli_hair_wife',
  'hair_wife_ador',
  'wife_ador_ever',
  'ador_ever_sinc',
  'ever_sinc_toddler',
  'sinc_toddler_shed',
  'toddler_shed_spend',
  'shed_spend_hour',
  'spend_hour_hair',
  'hour_hair_everi',
  'hair_everi_day',
  'everi_day_braid',
  'day_braid_straighten',
  'braid_straighten_style',
  'straighten_style_sort',
  'style_sort_way',
  'sort_way_bathroom',
  'way_bathroom_cabinet',
  'bathroom_cabinet_alway',
  'cabinet_alway_fill',
  'alway_fill_brim',
  'fill_brim_bunch',
  'brim_bunch_hair',
  'bunch_hair_lotion',
  'hair_lotion_oil',
  'lotion_oil_cream',
  'oil_cream_fanci',
  'cream_fanci_product',
  'fanci_product_even',
  'product_even_know',
  'even_know_name',
  'know_name_think',
  'name_think_fair',
  'think_fair_say',
  'fair_say_wife',
  'say_wife_bit',
  'wife_bit_obsess',
  'bit_obsess_whole',
  'obsess_whole_hair',
  'whole_hair_thing',
  'hair_thing_anna',
  'thing_anna_howev',
  'anna_howev_never',
  'howev_never_fond',
  'never_fond_get',
  'fond_get_hair',
  'get_hair_done',
  'hair_done_anyth',
  'done_anyth_involv',
  'anyth_involv_sit',
  'involv_sit_still',
  'sit_still_minut',
  'still_minut_got',
  'minut_got_cut',
  'got_cut_hair',
  'cut_hair_use',
  'hair_use_reach',
  'use_reach_past',
  'reach_past_waist',
  'past_waist_look',
  'waist_look_love',
  'look_love_hate',
  'love_hate_get',
  'hate_get_brush',
  'get_brush_everi',
  'brush_everi_morn',
  'everi_morn_use',
  'morn_use_scream',
  'use_scream_fest',
  'scream_fest_wife',
  'fest_wife_late',
  'wife_late_shed',
  'late_shed_beg',
  'shed_beg_shorter',
  'beg_shorter_haircut',
  'shorter_haircut_wife',
  'haircut_wife_ignor',
  'wife_ignor_whenev',
  'ignor_whenev_topic',
  'whenev_topic_brought',
  'topic_brought_hope',
  'brought_hope_shed',
  'hope_shed_forget',
  'shed_forget_none',
  'forget_none_end',
  'none_end_happen',
  'end_happen_think',
  'happen_think_anna',
  'think_anna_realiz',
  'anna_realiz_get',
  'realiz_get_nowher',
  'get_nowher_mom',
  'nowher_mom_start',
  'mom_start_ask',
  'start_ask_take',
  'ask_take_instead',
  'take_instead_reluct',
  'instead_reluct_first',
  'reluct_first_know',
  'first_know_wife',
  'know_wife_would',
  'wife_would_react',
  'would_react_agre',
  'react_agre_saw',
  'agre_saw_excit',
  'saw_excit_kid',
  'excit_kid_someth',
  'kid_someth_simpl',
  'someth_simpl_haircut',
  'simpl_haircut_yesterday',
  'haircut_yesterday_drove',
  'yesterday_drove_hairdress',
  'drove_hairdress_got',
  'hairdress_got_flip',
  'got_flip_lot',
  'flip_lot_magazin',
  'lot_magazin_pick',
  'magazin_pick_pictur',
  'pick_pictur_haircut',
  'pictur_haircut_chose',
  'haircut_chose_realli',
  'chose_realli_short',
  'realli_short_clipper',
  'short_clipper_cut',
  'clipper_cut_knew',
  'cut_knew_gon',
  'knew_gon_na',
  'gon_na_deep',
  'na_deep_shit',
  'deep_shit_wife',
  'shit_wife_point',
  'wife_point_though',
  'point_though_turn',
  'though_turn_back',
  'turn_back_mean',
  'back_mean_could',
  'mean_could_realli',
  'could_realli_done',
  'realli_done_told',
  'done_told_cant',
  'told_cant_get',
  'cant_get_haircut',
  'get_haircut_moon',
  'haircut_moon_mom',
  'moon_mom_like',
  'mom_like_went',
  'like_went_ahead',
  'went_ahead_haircut',
  'ahead_haircut_end',
  'haircut_end_anna',
  'end_anna_stop',
  'anna_stop_smile',
  'stop_smile_went',
  'smile_went_around',
  'went_around_salon',
  'around_salon_show',
  'salon_show_everyon',
  'show_everyon_even',
  'everyon_even_ask',
  'even_ask_take',
  'ask_take_bunch',
  'take_bunch_pictur',
  'bunch_pictur_even',
  'pictur_even_though',
  'even_though_normal',
  'though_normal_hate',
  'normal_hate_pictur',
  'hate_pictur_taken',
  'pictur_taken_get',
  'taken_get_one',
  'get_one_rude',
  'one_rude_comment',
  'rude_comment_older',
  'comment_older_woman',
  'older_woman_salon',
  'woman_salon_someth',
  'salon_someth_along',
  'someth_along_line',
  'along_line_cant',
  'line_cant_even',
  'cant_even_tell',
  'even_tell_boy',
  'tell_boy_girl',
  'boy_girl_anna',
  'girl_anna_way',
  'anna_way_excit',
  'way_excit_hair',
  'excit_hair_notic',
  'hair_notic_notic',
  'notic_notic_care',
  'notic_care_wife',
  'care_wife_got',
  'wife_got_home',
  'got_home_work',
  'home_work_day',
  'work_day_though',
  'day_though_thing',
  'though_thing_quickli',
  'thing_quickli_took',
  'quickli_took_turn',
  'took_turn_wors',
  'turn_wors_refus',
  'wors_refus_even',
  'refus_even_look',
  'even_look_anna',
  'look_anna_lock',
  'anna_lock_room',
  'lock_room_cri',
  'room_cri_got',
  'cri_got_car',
  'got_car_drove',
  'car_drove_day',
  'drove_day_still',
  'day_still_back',
  'still_back_honestli',
  'back_honestli_start',
  'honestli_start_worri',
  'start_worri_knew',
  'worri_knew_react',
  'knew_react_well',
  'react_well_haircut',
  'well_haircut_expect',
  'haircut_expect_take',
  'expect_take_badli',
  'take_badli_kid',
  'badli_kid_upset',
  'kid_upset_matter',
  'upset_matter_much',
  'matter_much_reassur',
  'much_reassur_still',
  'reassur_still_think',
  'still_think_troubl',
  'think_troubl_get',
  'troubl_get_hair',
  'get_hair_cut',
  'hair_cut_aita',
  'cut_aita_realiz',
  'aita_realiz_attach',
  'realiz_attach_wife',
  'attach_wife_anna',
  'wife_anna_hair',
  'anna_hair_end',
  'hair_end_day',
  'end_day_still',
  'day_still_think',
  'still_think_hair',
  'think_hair_kid',
  'hair_kid_old',
  'kid_old_enough',
  'old_enough_decid',
  'enough_decid_thing',
  'decid_thing_realli',
  'thing_realli_happi',
  'realli_happi_haircut',
  'happi_haircut_think',
  'haircut_think_someth',
  'think_someth_wrong'],
 ['im',
  'brother',
  'girlfriend',
  'cheat',
  'brother',
  'heartbroken',
  'piss',
  'told',
  'longer',
  'brother',
  'despit',
  'request',
  'famili',
  'cut',
  'told',
  'never',
  'place',
  'wish',
  'invit',
  'invit',
  'one',
  'give',
  'ultim',
  'daughter',
  'get',
  'marri',
  'spring',
  'next',
  'year',
  'cultur',
  'parent',
  'pay',
  'wed',
  'unexpectedli',
  'daughter',
  'sat',
  'told',
  'invit',
  'brother',
  'familyh',
  'marri',
  'cheat',
  'ex',
  'appar',
  'see',
  'last',
  'year',
  'built',
  'relationship',
  'behind',
  'back',
  'even',
  'want',
  'cousin',
  'kind',
  'flower',
  'girl',
  'piss',
  'told',
  'boundari',
  'brother',
  'invit',
  'pay',
  'part',
  'wed',
  'becam',
  'angri',
  'told',
  'time',
  'let',
  'go',
  'past',
  'told',
  'call',
  'make',
  'argu',
  'told',
  'make',
  'wed',
  'told',
  'probabl',
  'even',
  'attend',
  'left',
  'cri',
  'ex-wif',
  'call',
  'scream',
  'told',
  'im',
  'huge',
  'ah',
  'daughter',
  'crush',
  'parent',
  'call',
  'thing',
  'told',
  'im',
  'ignor',
  'call',
  'gf',
  'told',
  'reconsid',
  'appolog',
  'pay',
  'attend',
  'break',
  'relationship',
  'daughter',
  'know',
  'think',
  'boundari',
  'respect',
  'asshol',
  'im_brother',
  'brother_girlfriend',
  'girlfriend_cheat',
  'cheat_brother',
  'brother_heartbroken',
  'heartbroken_piss',
  'piss_told',
  'told_longer',
  'longer_brother',
  'brother_despit',
  'despit_request',
  'request_famili',
  'famili_cut',
  'cut_told',
  'told_never',
  'never_place',
  'place_wish',
  'wish_invit',
  'invit_invit',
  'invit_one',
  'one_give',
  'give_ultim',
  'ultim_daughter',
  'daughter_get',
  'get_marri',
  'marri_spring',
  'spring_next',
  'next_year',
  'year_cultur',
  'cultur_parent',
  'parent_pay',
  'pay_wed',
  'wed_unexpectedli',
  'unexpectedli_daughter',
  'daughter_sat',
  'sat_told',
  'told_invit',
  'invit_brother',
  'brother_familyh',
  'familyh_marri',
  'marri_cheat',
  'cheat_ex',
  'ex_appar',
  'appar_see',
  'see_last',
  'last_year',
  'year_built',
  'built_relationship',
  'relationship_behind',
  'behind_back',
  'back_even',
  'even_want',
  'want_cousin',
  'cousin_kind',
  'kind_flower',
  'flower_girl',
  'girl_piss',
  'piss_told',
  'told_boundari',
  'boundari_brother',
  'brother_invit',
  'invit_pay',
  'pay_part',
  'part_wed',
  'wed_becam',
  'becam_angri',
  'angri_told',
  'told_time',
  'time_let',
  'let_go',
  'go_past',
  'past_told',
  'told_call',
  'call_make',
  'make_argu',
  'argu_told',
  'told_make',
  'make_wed',
  'wed_told',
  'told_probabl',
  'probabl_even',
  'even_attend',
  'attend_left',
  'left_cri',
  'cri_ex-wif',
  'ex-wif_call',
  'call_scream',
  'scream_told',
  'told_im',
  'im_huge',
  'huge_ah',
  'ah_daughter',
  'daughter_crush',
  'crush_parent',
  'parent_call',
  'call_thing',
  'thing_told',
  'told_im',
  'im_ignor',
  'ignor_call',
  'call_gf',
  'gf_told',
  'told_reconsid',
  'reconsid_appolog',
  'appolog_pay',
  'pay_attend',
  'attend_break',
  'break_relationship',
  'relationship_daughter',
  'daughter_know',
  'know_think',
  'think_boundari',
  'boundari_respect',
  'respect_asshol',
  'im_brother_girlfriend',
  'brother_girlfriend_cheat',
  'girlfriend_cheat_brother',
  'cheat_brother_heartbroken',
  'brother_heartbroken_piss',
  'heartbroken_piss_told',
  'piss_told_longer',
  'told_longer_brother',
  'longer_brother_despit',
  'brother_despit_request',
  'despit_request_famili',
  'request_famili_cut',
  'famili_cut_told',
  'cut_told_never',
  'told_never_place',
  'never_place_wish',
  'place_wish_invit',
  'wish_invit_invit',
  'invit_invit_one',
  'invit_one_give',
  'one_give_ultim',
  'give_ultim_daughter',
  'ultim_daughter_get',
  'daughter_get_marri',
  'get_marri_spring',
  'marri_spring_next',
  'spring_next_year',
  'next_year_cultur',
  'year_cultur_parent',
  'cultur_parent_pay',
  'parent_pay_wed',
  'pay_wed_unexpectedli',
  'wed_unexpectedli_daughter',
  'unexpectedli_daughter_sat',
  'daughter_sat_told',
  'sat_told_invit',
  'told_invit_brother',
  'invit_brother_familyh',
  'brother_familyh_marri',
  'familyh_marri_cheat',
  'marri_cheat_ex',
  'cheat_ex_appar',
  'ex_appar_see',
  'appar_see_last',
  'see_last_year',
  'last_year_built',
  'year_built_relationship',
  'built_relationship_behind',
  'relationship_behind_back',
  'behind_back_even',
  'back_even_want',
  'even_want_cousin',
  'want_cousin_kind',
  'cousin_kind_flower',
  'kind_flower_girl',
  'flower_girl_piss',
  'girl_piss_told',
  'piss_told_boundari',
  'told_boundari_brother',
  'boundari_brother_invit',
  'brother_invit_pay',
  'invit_pay_part',
  'pay_part_wed',
  'part_wed_becam',
  'wed_becam_angri',
  'becam_angri_told',
  'angri_told_time',
  'told_time_let',
  'time_let_go',
  'let_go_past',
  'go_past_told',
  'past_told_call',
  'told_call_make',
  'call_make_argu',
  'make_argu_told',
  'argu_told_make',
  'told_make_wed',
  'make_wed_told',
  'wed_told_probabl',
  'told_probabl_even',
  'probabl_even_attend',
  'even_attend_left',
  'attend_left_cri',
  'left_cri_ex-wif',
  'cri_ex-wif_call',
  'ex-wif_call_scream',
  'call_scream_told',
  'scream_told_im',
  'told_im_huge',
  'im_huge_ah',
  'huge_ah_daughter',
  'ah_daughter_crush',
  'daughter_crush_parent',
  'crush_parent_call',
  'parent_call_thing',
  'call_thing_told',
  'thing_told_im',
  'told_im_ignor',
  'im_ignor_call',
  'ignor_call_gf',
  'call_gf_told',
  'gf_told_reconsid',
  'told_reconsid_appolog',
  'reconsid_appolog_pay',
  'appolog_pay_attend',
  'pay_attend_break',
  'attend_break_relationship',
  'break_relationship_daughter',
  'relationship_daughter_know',
  'daughter_know_think',
  'know_think_boundari',
  'think_boundari_respect',
  'boundari_respect_asshol'],
 ['<',
  '>',
  'beauti',
  'wife',
  'love',
  'serv',
  'bought',
  'home',
  'street',
  'famili',
  'sweet',
  'sister',
  '<',
  '>',
  'like',
  'crash',
  'hous',
  'friend',
  'wife',
  'normal',
  'pretti',
  'easi',
  'go',
  'recent',
  'sister',
  'friend',
  'leav',
  'mess',
  'mostli',
  'towel',
  'floor',
  'use',
  'pool',
  'wife',
  'got',
  'upset',
  'pick',
  'everi',
  'day',
  'ask',
  'sister',
  'make',
  'sure',
  'hous',
  'clean',
  'leav',
  'better',
  'wife',
  'also',
  'complain',
  'perfumescloth',
  'person',
  'item',
  'gone',
  'miss',
  'sister',
  'said',
  'believ',
  'sister',
  'see',
  'told',
  'wife',
  'agre',
  'replac',
  'last',
  'week',
  'wife',
  'made',
  'coupl',
  'pan',
  'cinnamon',
  'roll',
  'scratch',
  'one',
  'pan',
  'us',
  'second',
  'pan',
  'co-work',
  'famili',
  'experienc',
  'tragedi',
  'wife',
  'went',
  'gym',
  'went',
  'work',
  'sister',
  'friend',
  'came',
  'one',
  'pan',
  'enough',
  'friend',
  'want',
  'second',
  'pan',
  'cinnamon',
  'roll',
  'sister',
  'text',
  'wife',
  'ask',
  'could',
  'eat',
  'wife',
  'said',
  'ate',
  'anyway',
  'wife',
  'upset',
  'went',
  'bought',
  'new',
  'lock',
  'came',
  'home',
  'wife',
  'hand',
  'new',
  'key',
  'told',
  'want',
  'anyon',
  'els',
  'key',
  'hous',
  'tri',
  'calm',
  'tell',
  'would',
  'go',
  'replac',
  'eaten',
  'cinnamon',
  'roll',
  'store',
  'bought',
  'one',
  'wife',
  'decid',
  'hill',
  'die',
  'said',
  'sister',
  'lost',
  'privileg',
  'come',
  'home',
  'replac',
  'stolen',
  'item',
  'good',
  'enough',
  'anymor',
  'mom',
  'call',
  'ask',
  'sister',
  'could',
  'use',
  'pool',
  'back',
  'school',
  'parti',
  'impress',
  'mom',
  'would',
  'said',
  'ye',
  'mom',
  'work',
  'schedul',
  'clash',
  'easiest',
  'solut',
  'chang',
  'lock',
  'back',
  'could',
  'come',
  'hous',
  'mom',
  'come',
  'sister',
  'wife',
  'got',
  'home',
  'parti',
  'mess',
  'sent',
  'photo',
  'call',
  'chang',
  'lock',
  'without',
  'talk',
  'keep',
  'mind',
  'told',
  'broke',
  'trust',
  'safe',
  'home',
  'keep',
  'get',
  'rob',
  'refus',
  'put',
  'end',
  'talk',
  'sister',
  'wife',
  'let',
  'know',
  'stay',
  'friend',
  'awhil',
  'feel',
  'like',
  'tri',
  'right',
  'wrong',
  'happen',
  'wife',
  'sister',
  'updat',
  '*',
  'sorri',
  'abl',
  'repli',
  'past',
  'coupl',
  'hour',
  'busi',
  'talk',
  'mom',
  'let',
  'know',
  'sister',
  'allow',
  'without',
  'home',
  'ask',
  'friend',
  'wife',
  'maid',
  'come',
  'deep',
  'clean',
  'home',
  'ifwhen',
  'wife',
  'come',
  'home',
  'clean',
  'last',
  'thing',
  'mom',
  'ask',
  'help',
  'cover',
  'sister',
  'cheer',
  'track',
  'scholarship',
  'told',
  'mom',
  'would',
  'pay',
  'half',
  'wife',
  'thing',
  'return',
  'money',
  'go',
  'replac',
  'stolen',
  'item',
  'also',
  'sister',
  'invit',
  'home',
  'come',
  'want',
  'buy',
  'dress',
  'told',
  'follow',
  'home',
  'rule',
  'money',
  'save',
  'dress',
  'go',
  'pay',
  'maid',
  'replac',
  'lock',
  'also',
  'plan',
  'romant',
  'dinner',
  'make',
  'clean',
  'heard',
  'lot',
  'cinnamon',
  'roll',
  'someon',
  'gave',
  'idea',
  'make',
  'dessert',
  'updat',
  'sister',
  'mom',
  'left',
  'min',
  'ago',
  'sister',
  'bag',
  'wife',
  'thing',
  'thought',
  'gone',
  'item',
  'poor',
  'shape',
  'big',
  'thing',
  'wife',
  'grandmoth',
  'ring',
  'thought',
  'safe',
  'idea',
  'gone',
  'sister',
  'said',
  'found',
  'wife',
  'night',
  'stand',
  'parti',
  'forgot',
  'left',
  'home',
  'ring',
  'valuabl',
  'sentiment',
  'told',
  'mom',
  'ring',
  'belong',
  'mom',
  'lost',
  'sister',
  'ground',
  'last',
  'updat',
  'tonight',
  'wife',
  'come',
  'home',
  'stay',
  'friend',
  'hous',
  'work',
  'alreadi',
  'state',
  'put',
  'lock',
  'back',
  'wife',
  'bought',
  'famili',
  'key',
  'earli',
  'morn',
  'updat',
  'mom',
  'call',
  'wife',
  'last',
  'night',
  'ask',
  'sister',
  'fix',
  'replac',
  'damag',
  'item',
  'wife',
  'said',
  'meet',
  'everi',
  'morn',
  'decid',
  'tag',
  'along',
  'see',
  'wife',
  'plan',
  'tri',
  'support',
  'whatev',
  'punish',
  'decid',
  'know',
  'cinnamon',
  'roll',
  'wife',
  'co-work',
  'yr',
  'old',
  'final',
  'stage',
  'cancer',
  'wife',
  'plan',
  'sister',
  'prepar',
  'breakfast',
  'get',
  'kid',
  'readi',
  'day',
  'start',
  'laundri',
  'basic',
  'clean',
  'co-work',
  'wife',
  'spend',
  'much',
  'time',
  'sick',
  'child',
  'work',
  'sister',
  'silent',
  'whole',
  'time',
  'come',
  'back',
  'home',
  'tell',
  'realli',
  'hit',
  'life',
  'hard',
  'even',
  'ground',
  'last',
  'final',
  'post',
  'wife',
  'given',
  'second',
  'chanc',
  'long',
  'follow',
  'list',
  'rule',
  'awhil',
  'famili',
  'home',
  'famili',
  'borrow',
  'thing',
  'one',
  'allow',
  'key',
  'help',
  'chore',
  'around',
  'hous',
  'includ',
  'cook',
  'meal',
  'last',
  'wife',
  'ok',
  'see',
  'sister',
  'ask',
  'go',
  'counsel',
  'understand',
  'sister',
  'target',
  'wife',
  'said',
  'realli',
  'hard',
  'want',
  'caus',
  'issu',
  'trust',
  'sister',
  'cant',
  'use',
  'thing',
  '<_>',
  '>_beauti',
  'beauti_wife',
  'wife_love',
  'love_serv',
  'serv_bought',
  'bought_home',
  'home_street',
  'street_famili',
  'famili_sweet',
  'sweet_sister',
  'sister_<',
  '<_>',
  '>_like',
  'like_crash',
  'crash_hous',
  'hous_friend',
  'friend_wife',
  'wife_normal',
  'normal_pretti',
  'pretti_easi',
  'easi_go',
  'go_recent',
  'recent_sister',
  'sister_friend',
  'friend_leav',
  'leav_mess',
  'mess_mostli',
  'mostli_towel',
  'towel_floor',
  'floor_use',
  'use_pool',
  'pool_wife',
  'wife_got',
  'got_upset',
  'upset_pick',
  'pick_everi',
  'everi_day',
  'day_ask',
  'ask_sister',
  'sister_make',
  'make_sure',
  'sure_hous',
  'hous_clean',
  'clean_leav',
  'leav_better',
  'better_wife',
  'wife_also',
  'also_complain',
  'complain_perfumescloth',
  'perfumescloth_person',
  'person_item',
  'item_gone',
  'gone_miss',
  'miss_sister',
  'sister_said',
  'said_believ',
  'believ_sister',
  'sister_see',
  'see_told',
  'told_wife',
  'wife_agre',
  'agre_replac',
  'replac_last',
  'last_week',
  'week_wife',
  'wife_made',
  'made_coupl',
  'coupl_pan',
  'pan_cinnamon',
  'cinnamon_roll',
  'roll_scratch',
  'scratch_one',
  'one_pan',
  'pan_us',
  'us_second',
  'second_pan',
  'pan_co-work',
  'co-work_famili',
  'famili_experienc',
  'experienc_tragedi',
  'tragedi_wife',
  'wife_went',
  'went_gym',
  'gym_went',
  'went_work',
  'work_sister',
  'sister_friend',
  'friend_came',
  'came_one',
  'one_pan',
  'pan_enough',
  'enough_friend',
  'friend_want',
  'want_second',
  'second_pan',
  'pan_cinnamon',
  'cinnamon_roll',
  'roll_sister',
  'sister_text',
  'text_wife',
  'wife_ask',
  'ask_could',
  'could_eat',
  'eat_wife',
  'wife_said',
  'said_ate',
  'ate_anyway',
  'anyway_wife',
  'wife_upset',
  'upset_went',
  'went_bought',
  'bought_new',
  'new_lock',
  'lock_came',
  'came_home',
  'home_wife',
  'wife_hand',
  'hand_new',
  'new_key',
  'key_told',
  'told_want',
  'want_anyon',
  'anyon_els',
  'els_key',
  'key_hous',
  'hous_tri',
  'tri_calm',
  'calm_tell',
  'tell_would',
  'would_go',
  'go_replac',
  'replac_eaten',
  'eaten_cinnamon',
  'cinnamon_roll',
  'roll_store',
  'store_bought',
  'bought_one',
  'one_wife',
  'wife_decid',
  'decid_hill',
  'hill_die',
  'die_said',
  'said_sister',
  'sister_lost',
  'lost_privileg',
  'privileg_come',
  'come_home',
  'home_replac',
  'replac_stolen',
  'stolen_item',
  'item_good',
  'good_enough',
  'enough_anymor',
  'anymor_mom',
  'mom_call',
  'call_ask',
  'ask_sister',
  'sister_could',
  'could_use',
  'use_pool',
  'pool_back',
  'back_school',
  'school_parti',
  'parti_impress',
  'impress_mom',
  'mom_would',
  'would_said',
  'said_ye',
  'ye_mom',
  'mom_work',
  'work_schedul',
  'schedul_clash',
  'clash_easiest',
  'easiest_solut',
  'solut_chang',
  'chang_lock',
  'lock_back',
  'back_could',
  'could_come',
  'come_hous',
  'hous_mom',
  'mom_come',
  'come_sister',
  'sister_wife',
  'wife_got',
  'got_home',
  'home_parti',
  'parti_mess',
  'mess_sent',
  'sent_photo',
  'photo_call',
  'call_chang',
  'chang_lock',
  'lock_without',
  'without_talk',
  'talk_keep',
  'keep_mind',
  'mind_told',
  'told_broke',
  'broke_trust',
  'trust_safe',
  'safe_home',
  'home_keep',
  'keep_get',
  'get_rob',
  'rob_refus',
  'refus_put',
  'put_end',
  'end_talk',
  'talk_sister',
  'sister_wife',
  'wife_let',
  'let_know',
  'know_stay',
  'stay_friend',
  'friend_awhil',
  'awhil_feel',
  'feel_like',
  'like_tri',
  'tri_right',
  'right_wrong',
  'wrong_happen',
  'happen_wife',
  'wife_sister',
  'sister_updat',
  'updat_*',
  '*_sorri',
  'sorri_abl',
  'abl_repli',
  'repli_past',
  'past_coupl',
  'coupl_hour',
  'hour_busi',
  'busi_talk',
  'talk_mom',
  'mom_let',
  'let_know',
  'know_sister',
  'sister_allow',
  'allow_without',
  'without_home',
  'home_ask',
  'ask_friend',
  'friend_wife',
  'wife_maid',
  'maid_come',
  'come_deep',
  'deep_clean',
  'clean_home',
  'home_ifwhen',
  'ifwhen_wife',
  'wife_come',
  'come_home',
  'home_clean',
  'clean_last',
  'last_thing',
  'thing_mom',
  'mom_ask',
  'ask_help',
  'help_cover',
  'cover_sister',
  'sister_cheer',
  'cheer_track',
  'track_scholarship',
  'scholarship_told',
  'told_mom',
  'mom_would',
  'would_pay',
  'pay_half',
  'half_wife',
  'wife_thing',
  'thing_return',
  'return_money',
  'money_go',
  'go_replac',
  'replac_stolen',
  'stolen_item',
  'item_also',
  'also_sister',
  'sister_invit',
  'invit_home',
  'home_come',
  'come_want',
  'want_buy',
  'buy_dress',
  'dress_told',
  'told_follow',
  'follow_home',
  'home_rule',
  'rule_money',
  'money_save',
  'save_dress',
  'dress_go',
  'go_pay',
  'pay_maid',
  'maid_replac',
  'replac_lock',
  'lock_also',
  'also_plan',
  'plan_romant',
  'romant_dinner',
  'dinner_make',
  'make_clean',
  'clean_heard',
  'heard_lot',
  'lot_cinnamon',
  'cinnamon_roll',
  'roll_someon',
  'someon_gave',
  'gave_idea',
  'idea_make',
  'make_dessert',
  'dessert_updat',
  'updat_sister',
  'sister_mom',
  'mom_left',
  'left_min',
  'min_ago',
  'ago_sister',
  'sister_bag',
  'bag_wife',
  'wife_thing',
  'thing_thought',
  'thought_gone',
  'gone_item',
  'item_poor',
  'poor_shape',
  'shape_big',
  'big_thing',
  'thing_wife',
  'wife_grandmoth',
  'grandmoth_ring',
  'ring_thought',
  'thought_safe',
  'safe_idea',
  'idea_gone',
  'gone_sister',
  'sister_said',
  'said_found',
  'found_wife',
  'wife_night',
  'night_stand',
  'stand_parti',
  'parti_forgot',
  'forgot_left',
  'left_home',
  'home_ring',
  'ring_valuabl',
  'valuabl_sentiment',
  'sentiment_told',
  'told_mom',
  'mom_ring',
  'ring_belong',
  'belong_mom',
  'mom_lost',
  'lost_sister',
  'sister_ground',
  'ground_last',
  'last_updat',
  'updat_tonight',
  'tonight_wife',
  'wife_come',
  'come_home',
  'home_stay',
  'stay_friend',
  'friend_hous',
  'hous_work',
  'work_alreadi',
  'alreadi_state',
  'state_put',
  'put_lock',
  'lock_back',
  'back_wife',
  'wife_bought',
  'bought_famili',
  'famili_key',
  'key_earli',
  'earli_morn',
  'morn_updat',
  'updat_mom',
  'mom_call',
  'call_wife',
  'wife_last',
  'last_night',
  'night_ask',
  'ask_sister',
  'sister_fix',
  'fix_replac',
  'replac_damag',
  'damag_item',
  'item_wife',
  'wife_said',
  'said_meet',
  'meet_everi',
  'everi_morn',
  'morn_decid',
  'decid_tag',
  'tag_along',
  'along_see',
  'see_wife',
  'wife_plan',
  'plan_tri',
  'tri_support',
  'support_whatev',
  'whatev_punish',
  'punish_decid',
  'decid_know',
  'know_cinnamon',
  'cinnamon_roll',
  'roll_wife',
  'wife_co-work',
  'co-work_yr',
  'yr_old',
  'old_final',
  'final_stage',
  'stage_cancer',
  'cancer_wife',
  'wife_plan',
  'plan_sister',
  'sister_prepar',
  'prepar_breakfast',
  'breakfast_get',
  'get_kid',
  'kid_readi',
  'readi_day',
  'day_start',
  'start_laundri',
  'laundri_basic',
  'basic_clean',
  'clean_co-work',
  'co-work_wife',
  'wife_spend',
  'spend_much',
  'much_time',
  'time_sick',
  'sick_child',
  'child_work',
  'work_sister',
  'sister_silent',
  'silent_whole',
  'whole_time',
  'time_come',
  'come_back',
  'back_home',
  'home_tell',
  'tell_realli',
  'realli_hit',
  'hit_life',
  'life_hard',
  'hard_even',
  'even_ground',
  'ground_last',
  'last_final',
  'final_post',
  'post_wife',
  'wife_given',
  'given_second',
  'second_chanc',
  'chanc_long',
  'long_follow',
  'follow_list',
  'list_rule',
  'rule_awhil',
  'awhil_famili',
  'famili_home',
  'home_famili',
  'famili_borrow',
  'borrow_thing',
  'thing_one',
  'one_allow',
  'allow_key',
  'key_help',
  'help_chore',
  'chore_around',
  'around_hous',
  'hous_includ',
  'includ_cook',
  'cook_meal',
  'meal_last',
  'last_wife',
  'wife_ok',
  'ok_see',
  'see_sister',
  'sister_ask',
  'ask_go',
  'go_counsel',
  'counsel_understand',
  'understand_sister',
  'sister_target',
  'target_wife',
  'wife_said',
  'said_realli',
  'realli_hard',
  'hard_want',
  'want_caus',
  'caus_issu',
  ...],
 ['girl',
  'live',
  'uni',
  'hall',
  'roommat',
  'flatmat',
  'let',
  'name',
  'kaya',
  'met',
  'septemb',
  'start',
  'univers',
  'move',
  'hall',
  'best',
  'friend',
  'friendli',
  'realli',
  'spend',
  'much',
  'time',
  'togeth',
  'time',
  'friend',
  'notic',
  'kaya',
  'tri',
  'copi',
  'everyth',
  'start',
  'slowli',
  'accessori',
  'cloth',
  'noth',
  'major',
  'even',
  'notic',
  'peopl',
  'start',
  'point',
  'rather',
  'distinct',
  'style',
  'start',
  'copi',
  'owe',
  'style',
  'free',
  'wear',
  'like',
  'exact',
  'copi',
  'outfit',
  'odd',
  'start',
  'go',
  'dy',
  'hair',
  'dy',
  'hair',
  'bought',
  'someth',
  'room',
  'bought',
  'thing',
  'start',
  'chat',
  'guy',
  'becam',
  'obsess',
  'guy',
  'point',
  'whenev',
  'male',
  'friend',
  'guy',
  'interest',
  'would',
  'go',
  'way',
  'tri',
  'get',
  'attent',
  'come',
  'kitchen',
  'noth',
  'towel',
  'never',
  'use',
  'etc',
  'would',
  'anyth',
  'attract',
  'attent',
  'get',
  'wrong',
  'care',
  'less',
  'guy',
  'look',
  'even',
  'boyfriend',
  'look',
  'id',
  'beef',
  'blatant',
  'attent',
  'seek',
  'behaviour',
  'odd',
  'join',
  'societi',
  'sport',
  'found',
  'join',
  'one',
  'basic',
  'everyth',
  'copi',
  'eventu',
  'realli',
  'creepi',
  'said',
  'anyth',
  'even',
  'know',
  'say',
  'easter',
  'break',
  'friend',
  'famili',
  'hous',
  'bit',
  'drunk',
  'decid',
  'test',
  'whether',
  'kaya',
  'realli',
  'copi',
  'everyth',
  'made',
  'post',
  'social',
  'media',
  'shave',
  'head',
  'friend',
  'hairdress',
  'help',
  'fake',
  'shave',
  'head',
  'post',
  'photo',
  'shave',
  'head',
  'delet',
  'photo',
  'day',
  'later',
  'forgot',
  'whole',
  'thing',
  'easter',
  'break',
  'uni',
  'exam',
  'focus',
  'imagin',
  'shock',
  'came',
  'back',
  'kaya',
  'shave',
  'head',
  'piss',
  'saw',
  'start',
  'shout',
  'lie',
  'would',
  'went',
  'realli',
  'angri',
  'admittedli',
  'ignor',
  'hid',
  'room',
  'sent',
  'text',
  'tell',
  'expect',
  'pay',
  'wig',
  'fault',
  'shave',
  'head',
  'repli',
  'absolut',
  'fault',
  'decid',
  'kept',
  'attack',
  'everi',
  'time',
  'saw',
  'day',
  'sinc',
  'came',
  'back',
  'easter',
  'break',
  'exam',
  'start',
  'tomorrow',
  'yesterday',
  'receiv',
  '-mail',
  'univers',
  'ask',
  'meet',
  'issu',
  'report',
  'uni',
  'someth',
  'done',
  'genuin',
  'confus',
  'realli',
  'wrong',
  'aita',
  'pretend',
  'shave',
  'head',
  'refus',
  'pay',
  'wig',
  'girl_live',
  'live_uni',
  'uni_hall',
  'hall_roommat',
  'roommat_flatmat',
  'flatmat_let',
  'let_name',
  'name_kaya',
  'kaya_met',
  'met_septemb',
  'septemb_start',
  'start_univers',
  'univers_move',
  'move_hall',
  'hall_best',
  'best_friend',
  'friend_friendli',
  'friendli_realli',
  'realli_spend',
  'spend_much',
  'much_time',
  'time_togeth',
  'togeth_time',
  'time_friend',
  'friend_notic',
  'notic_kaya',
  'kaya_tri',
  'tri_copi',
  'copi_everyth',
  'everyth_start',
  'start_slowli',
  'slowli_accessori',
  'accessori_cloth',
  'cloth_noth',
  'noth_major',
  'major_even',
  'even_notic',
  'notic_peopl',
  'peopl_start',
  'start_point',
  'point_rather',
  'rather_distinct',
  'distinct_style',
  'style_start',
  'start_copi',
  'copi_owe',
  'owe_style',
  'style_free',
  'free_wear',
  'wear_like',
  'like_exact',
  'exact_copi',
  'copi_outfit',
  'outfit_odd',
  'odd_start',
  'start_go',
  'go_dy',
  'dy_hair',
  'hair_dy',
  'dy_hair',
  'hair_bought',
  'bought_someth',
  'someth_room',
  'room_bought',
  'bought_thing',
  'thing_start',
  'start_chat',
  'chat_guy',
  'guy_becam',
  'becam_obsess',
  'obsess_guy',
  'guy_point',
  'point_whenev',
  'whenev_male',
  'male_friend',
  'friend_guy',
  'guy_interest',
  'interest_would',
  'would_go',
  'go_way',
  'way_tri',
  'tri_get',
  'get_attent',
  'attent_come',
  'come_kitchen',
  'kitchen_noth',
  'noth_towel',
  'towel_never',
  'never_use',
  'use_etc',
  'etc_would',
  'would_anyth',
  'anyth_attract',
  'attract_attent',
  'attent_get',
  'get_wrong',
  'wrong_care',
  'care_less',
  'less_guy',
  'guy_look',
  'look_even',
  'even_boyfriend',
  'boyfriend_look',
  'look_id',
  'id_beef',
  'beef_blatant',
  'blatant_attent',
  'attent_seek',
  'seek_behaviour',
  'behaviour_odd',
  'odd_join',
  'join_societi',
  'societi_sport',
  'sport_found',
  'found_join',
  'join_one',
  'one_basic',
  'basic_everyth',
  'everyth_copi',
  'copi_eventu',
  'eventu_realli',
  'realli_creepi',
  'creepi_said',
  'said_anyth',
  'anyth_even',
  'even_know',
  'know_say',
  'say_easter',
  'easter_break',
  'break_friend',
  'friend_famili',
  'famili_hous',
  'hous_bit',
  'bit_drunk',
  'drunk_decid',
  'decid_test',
  'test_whether',
  'whether_kaya',
  'kaya_realli',
  'realli_copi',
  'copi_everyth',
  'everyth_made',
  'made_post',
  'post_social',
  'social_media',
  'media_shave',
  'shave_head',
  'head_friend',
  'friend_hairdress',
  'hairdress_help',
  'help_fake',
  'fake_shave',
  'shave_head',
  'head_post',
  'post_photo',
  'photo_shave',
  'shave_head',
  'head_delet',
  'delet_photo',
  'photo_day',
  'day_later',
  'later_forgot',
  'forgot_whole',
  'whole_thing',
  'thing_easter',
  'easter_break',
  'break_uni',
  'uni_exam',
  'exam_focus',
  'focus_imagin',
  'imagin_shock',
  'shock_came',
  'came_back',
  'back_kaya',
  'kaya_shave',
  'shave_head',
  'head_piss',
  'piss_saw',
  'saw_start',
  'start_shout',
  'shout_lie',
  'lie_would',
  'would_went',
  'went_realli',
  'realli_angri',
  'angri_admittedli',
  'admittedli_ignor',
  'ignor_hid',
  'hid_room',
  'room_sent',
  'sent_text',
  'text_tell',
  'tell_expect',
  'expect_pay',
  'pay_wig',
  'wig_fault',
  'fault_shave',
  'shave_head',
  'head_repli',
  'repli_absolut',
  'absolut_fault',
  'fault_decid',
  'decid_kept',
  'kept_attack',
  'attack_everi',
  'everi_time',
  'time_saw',
  'saw_day',
  'day_sinc',
  'sinc_came',
  'came_back',
  'back_easter',
  'easter_break',
  'break_exam',
  'exam_start',
  'start_tomorrow',
  'tomorrow_yesterday',
  'yesterday_receiv',
  'receiv_-mail',
  '-mail_univers',
  'univers_ask',
  'ask_meet',
  'meet_issu',
  'issu_report',
  'report_uni',
  'uni_someth',
  'someth_done',
  'done_genuin',
  'genuin_confus',
  'confus_realli',
  'realli_wrong',
  'wrong_aita',
  'aita_pretend',
  'pretend_shave',
  'shave_head',
  'head_refus',
  'refus_pay',
  'pay_wig',
  'girl_live_uni',
  'live_uni_hall',
  'uni_hall_roommat',
  'hall_roommat_flatmat',
  'roommat_flatmat_let',
  'flatmat_let_name',
  'let_name_kaya',
  'name_kaya_met',
  'kaya_met_septemb',
  'met_septemb_start',
  'septemb_start_univers',
  'start_univers_move',
  'univers_move_hall',
  'move_hall_best',
  'hall_best_friend',
  'best_friend_friendli',
  'friend_friendli_realli',
  'friendli_realli_spend',
  'realli_spend_much',
  'spend_much_time',
  'much_time_togeth',
  'time_togeth_time',
  'togeth_time_friend',
  'time_friend_notic',
  'friend_notic_kaya',
  'notic_kaya_tri',
  'kaya_tri_copi',
  'tri_copi_everyth',
  'copi_everyth_start',
  'everyth_start_slowli',
  'start_slowli_accessori',
  'slowli_accessori_cloth',
  'accessori_cloth_noth',
  'cloth_noth_major',
  'noth_major_even',
  'major_even_notic',
  'even_notic_peopl',
  'notic_peopl_start',
  'peopl_start_point',
  'start_point_rather',
  'point_rather_distinct',
  'rather_distinct_style',
  'distinct_style_start',
  'style_start_copi',
  'start_copi_owe',
  'copi_owe_style',
  'owe_style_free',
  'style_free_wear',
  'free_wear_like',
  'wear_like_exact',
  'like_exact_copi',
  'exact_copi_outfit',
  'copi_outfit_odd',
  'outfit_odd_start',
  'odd_start_go',
  'start_go_dy',
  'go_dy_hair',
  'dy_hair_dy',
  'hair_dy_hair',
  'dy_hair_bought',
  'hair_bought_someth',
  'bought_someth_room',
  'someth_room_bought',
  'room_bought_thing',
  'bought_thing_start',
  'thing_start_chat',
  'start_chat_guy',
  'chat_guy_becam',
  'guy_becam_obsess',
  'becam_obsess_guy',
  'obsess_guy_point',
  'guy_point_whenev',
  'point_whenev_male',
  'whenev_male_friend',
  'male_friend_guy',
  'friend_guy_interest',
  'guy_interest_would',
  'interest_would_go',
  'would_go_way',
  'go_way_tri',
  'way_tri_get',
  'tri_get_attent',
  'get_attent_come',
  'attent_come_kitchen',
  'come_kitchen_noth',
  'kitchen_noth_towel',
  'noth_towel_never',
  'towel_never_use',
  'never_use_etc',
  'use_etc_would',
  'etc_would_anyth',
  'would_anyth_attract',
  'anyth_attract_attent',
  'attract_attent_get',
  'attent_get_wrong',
  'get_wrong_care',
  'wrong_care_less',
  'care_less_guy',
  'less_guy_look',
  'guy_look_even',
  'look_even_boyfriend',
  'even_boyfriend_look',
  'boyfriend_look_id',
  'look_id_beef',
  'id_beef_blatant',
  'beef_blatant_attent',
  'blatant_attent_seek',
  'attent_seek_behaviour',
  'seek_behaviour_odd',
  'behaviour_odd_join',
  'odd_join_societi',
  'join_societi_sport',
  'societi_sport_found',
  'sport_found_join',
  'found_join_one',
  'join_one_basic',
  'one_basic_everyth',
  'basic_everyth_copi',
  'everyth_copi_eventu',
  'copi_eventu_realli',
  'eventu_realli_creepi',
  'realli_creepi_said',
  'creepi_said_anyth',
  'said_anyth_even',
  'anyth_even_know',
  'even_know_say',
  'know_say_easter',
  'say_easter_break',
  'easter_break_friend',
  'break_friend_famili',
  'friend_famili_hous',
  'famili_hous_bit',
  'hous_bit_drunk',
  'bit_drunk_decid',
  'drunk_decid_test',
  'decid_test_whether',
  'test_whether_kaya',
  'whether_kaya_realli',
  'kaya_realli_copi',
  'realli_copi_everyth',
  'copi_everyth_made',
  'everyth_made_post',
  'made_post_social',
  'post_social_media',
  'social_media_shave',
  'media_shave_head',
  'shave_head_friend',
  'head_friend_hairdress',
  'friend_hairdress_help',
  'hairdress_help_fake',
  'help_fake_shave',
  'fake_shave_head',
  'shave_head_post',
  'head_post_photo',
  'post_photo_shave',
  'photo_shave_head',
  'shave_head_delet',
  'head_delet_photo',
  'delet_photo_day',
  'photo_day_later',
  'day_later_forgot',
  'later_forgot_whole',
  'forgot_whole_thing',
  'whole_thing_easter',
  'thing_easter_break',
  'easter_break_uni',
  'break_uni_exam',
  'uni_exam_focus',
  'exam_focus_imagin',
  'focus_imagin_shock',
  'imagin_shock_came',
  'shock_came_back',
  'came_back_kaya',
  'back_kaya_shave',
  'kaya_shave_head',
  'shave_head_piss',
  'head_piss_saw',
  'piss_saw_start',
  'saw_start_shout',
  'start_shout_lie',
  'shout_lie_would',
  'lie_would_went',
  'would_went_realli',
  'went_realli_angri',
  'realli_angri_admittedli',
  'angri_admittedli_ignor',
  'admittedli_ignor_hid',
  'ignor_hid_room',
  'hid_room_sent',
  'room_sent_text',
  'sent_text_tell',
  'text_tell_expect',
  'tell_expect_pay',
  'expect_pay_wig',
  'pay_wig_fault',
  'wig_fault_shave',
  'fault_shave_head',
  'shave_head_repli',
  'head_repli_absolut',
  'repli_absolut_fault',
  'absolut_fault_decid',
  'fault_decid_kept',
  'decid_kept_attack',
  'kept_attack_everi',
  'attack_everi_time',
  'everi_time_saw',
  'time_saw_day',
  'saw_day_sinc',
  'day_sinc_came',
  'sinc_came_back',
  'came_back_easter',
  'back_easter_break',
  'easter_break_exam',
  'break_exam_start',
  'exam_start_tomorrow',
  'start_tomorrow_yesterday',
  'tomorrow_yesterday_receiv',
  'yesterday_receiv_-mail',
  'receiv_-mail_univers',
  '-mail_univers_ask',
  'univers_ask_meet',
  'ask_meet_issu',
  'meet_issu_report',
  'issu_report_uni',
  'report_uni_someth',
  'uni_someth_done',
  'someth_done_genuin',
  'done_genuin_confus',
  'genuin_confus_realli',
  'confus_realli_wrong',
  'realli_wrong_aita',
  'wrong_aita_pretend',
  'aita_pretend_shave',
  'pretend_shave_head',
  'shave_head_refus',
  'head_refus_pay',
  'refus_pay_wig'],
 ['bad',
  'car',
  'accid',
  'three',
  'year',
  'ago',
  'drunk',
  'drive',
  'ran',
  'stop',
  'light',
  'cut',
  'semi-truck',
  'crash',
  'send',
  'crash',
  'two',
  'differ',
  'car',
  'ultim',
  'embank',
  'car',
  'mangl',
  'leg',
  'crush',
  'complet',
  'destroy',
  'amput',
  'also',
  'lost',
  'coupl',
  'finger',
  'tip',
  'one',
  'anoth',
  'im',
  'also',
  'left',
  'gnarli',
  'scar',
  'use',
  'bother',
  'im',
  'learn',
  'deal',
  'got',
  'coupl',
  'differ',
  'insur',
  'payout',
  'pain',
  'suffer',
  'money',
  'addit',
  'medic',
  'bill',
  'paid',
  'money',
  'purchas',
  'custom-mad',
  'leg',
  'take',
  'place',
  'one',
  'lost',
  'pant',
  'shoe',
  'hardli',
  'tell',
  'unless',
  'realli',
  'look',
  'still',
  'limp',
  'day',
  'pronounc',
  'limp',
  'earlier',
  'today',
  'went',
  'store',
  'boyfriend',
  'sister',
  'girlfriend',
  'mother',
  'drove',
  'learn',
  'drive',
  'left',
  'foot',
  'im',
  'realli',
  'good',
  'also',
  'bought',
  'new',
  'car',
  'money',
  'go',
  'ton',
  'therapi',
  'get',
  'past',
  'ptsd',
  'im',
  'well',
  'well',
  'drove',
  'us',
  'injuri',
  'addit',
  'leg',
  'also',
  'chronic',
  'hip',
  'neck',
  'back',
  'pain',
  'issu',
  'lung',
  'time',
  'spent',
  'intub',
  'medically-induc',
  'coma',
  'led',
  'pneumonia',
  'handicap',
  'placard',
  'car',
  'troubl',
  'walk',
  'without',
  'get',
  'tire',
  'realli',
  'help',
  'park',
  'close',
  'door',
  'today',
  'unknowingli',
  'took',
  'space',
  'someon',
  'circl',
  'back',
  'around',
  'appar',
  'man',
  'look',
  'close',
  'space',
  'miss',
  'one',
  'took',
  'went',
  'around',
  'still',
  'aisl',
  'pull',
  'cut',
  'anyth',
  'way',
  'know',
  'want',
  'spot',
  'park',
  'yellow',
  'stripe',
  'zone',
  'got',
  'immedi',
  'began',
  'confront',
  'steal',
  'space',
  'peopl',
  'actual',
  'need',
  'im',
  'kid',
  'respect',
  'truli',
  'sick',
  'suffer',
  'order',
  'move',
  'group',
  'urg',
  'walk',
  'way',
  'happen',
  'polic',
  'even',
  'call',
  'im',
  'sick',
  'peopl',
  'think',
  'im',
  'young',
  'legit',
  'need',
  'littl',
  'extra',
  'consider',
  'said',
  'okay',
  'went',
  'car',
  'got',
  'like',
  'go',
  'drive',
  'wear',
  'skirt',
  'leg',
  'quit',
  'obviou',
  'first',
  'sat',
  'took',
  'leg',
  'show',
  'man',
  'includ',
  'stump',
  'ask',
  'okay',
  'still',
  'park',
  'walk',
  'away',
  'call',
  'disgust',
  'rude',
  'said',
  'could',
  'told',
  'made',
  'look',
  'stupid',
  'group',
  'embarrass',
  'said',
  'made',
  'thing',
  'awkward',
  'crowd',
  'aita',
  'edit',
  'case',
  'anyon',
  'interest',
  'im',
  'go',
  'post',
  'photo',
  'leg',
  'identif',
  'reason',
  'ill',
  'describ',
  'base',
  'color',
  'ombr',
  'whiteish',
  'green',
  'pale',
  'green',
  'cherri',
  'blossom',
  'paint',
  'though',
  'sometim',
  'wear',
  'silicon',
  'cover',
  'resembl',
  'actual',
  'foot',
  'leg',
  'day',
  'want',
  'peopl',
  'stare',
  'even',
  'temporari',
  'sticki',
  'put',
  'toe',
  'make',
  'look',
  'like',
  'paint',
  'nail',
  'actual',
  'realli',
  'cool',
  'bad_car',
  'car_accid',
  'accid_three',
  'three_year',
  'year_ago',
  'ago_drunk',
  'drunk_drive',
  'drive_ran',
  'ran_stop',
  'stop_light',
  'light_cut',
  'cut_semi-truck',
  'semi-truck_crash',
  'crash_send',
  'send_crash',
  'crash_two',
  'two_differ',
  'differ_car',
  'car_ultim',
  'ultim_embank',
  'embank_car',
  'car_mangl',
  'mangl_leg',
  'leg_crush',
  'crush_complet',
  'complet_destroy',
  'destroy_amput',
  'amput_also',
  'also_lost',
  'lost_coupl',
  'coupl_finger',
  'finger_tip',
  'tip_one',
  'one_anoth',
  'anoth_im',
  'im_also',
  'also_left',
  'left_gnarli',
  'gnarli_scar',
  'scar_use',
  'use_bother',
  'bother_im',
  'im_learn',
  'learn_deal',
  'deal_got',
  'got_coupl',
  'coupl_differ',
  'differ_insur',
  'insur_payout',
  'payout_pain',
  'pain_suffer',
  'suffer_money',
  'money_addit',
  'addit_medic',
  'medic_bill',
  'bill_paid',
  'paid_money',
  'money_purchas',
  'purchas_custom-mad',
  'custom-mad_leg',
  'leg_take',
  'take_place',
  'place_one',
  'one_lost',
  'lost_pant',
  'pant_shoe',
  'shoe_hardli',
  'hardli_tell',
  'tell_unless',
  'unless_realli',
  'realli_look',
  'look_still',
  'still_limp',
  'limp_day',
  'day_pronounc',
  'pronounc_limp',
  'limp_earlier',
  'earlier_today',
  'today_went',
  'went_store',
  'store_boyfriend',
  'boyfriend_sister',
  'sister_girlfriend',
  'girlfriend_mother',
  'mother_drove',
  'drove_learn',
  'learn_drive',
  'drive_left',
  'left_foot',
  'foot_im',
  'im_realli',
  'realli_good',
  'good_also',
  'also_bought',
  'bought_new',
  'new_car',
  'car_money',
  'money_go',
  'go_ton',
  'ton_therapi',
  'therapi_get',
  'get_past',
  'past_ptsd',
  'ptsd_im',
  'im_well',
  'well_well',
  'well_drove',
  'drove_us',
  'us_injuri',
  'injuri_addit',
  'addit_leg',
  'leg_also',
  'also_chronic',
  'chronic_hip',
  'hip_neck',
  'neck_back',
  'back_pain',
  'pain_issu',
  'issu_lung',
  'lung_time',
  'time_spent',
  'spent_intub',
  'intub_medically-induc',
  'medically-induc_coma',
  'coma_led',
  'led_pneumonia',
  'pneumonia_handicap',
  'handicap_placard',
  'placard_car',
  'car_troubl',
  'troubl_walk',
  'walk_without',
  'without_get',
  'get_tire',
  'tire_realli',
  'realli_help',
  'help_park',
  'park_close',
  'close_door',
  'door_today',
  'today_unknowingli',
  'unknowingli_took',
  'took_space',
  'space_someon',
  'someon_circl',
  'circl_back',
  'back_around',
  'around_appar',
  'appar_man',
  'man_look',
  'look_close',
  'close_space',
  'space_miss',
  'miss_one',
  'one_took',
  'took_went',
  'went_around',
  'around_still',
  'still_aisl',
  'aisl_pull',
  'pull_cut',
  'cut_anyth',
  'anyth_way',
  'way_know',
  'know_want',
  'want_spot',
  'spot_park',
  'park_yellow',
  'yellow_stripe',
  'stripe_zone',
  'zone_got',
  'got_immedi',
  'immedi_began',
  'began_confront',
  'confront_steal',
  'steal_space',
  'space_peopl',
  'peopl_actual',
  'actual_need',
  'need_im',
  'im_kid',
  'kid_respect',
  'respect_truli',
  'truli_sick',
  'sick_suffer',
  'suffer_order',
  'order_move',
  'move_group',
  'group_urg',
  'urg_walk',
  'walk_way',
  'way_happen',
  'happen_polic',
  'polic_even',
  'even_call',
  'call_im',
  'im_sick',
  'sick_peopl',
  'peopl_think',
  'think_im',
  'im_young',
  'young_legit',
  'legit_need',
  'need_littl',
  'littl_extra',
  'extra_consider',
  'consider_said',
  'said_okay',
  'okay_went',
  'went_car',
  'car_got',
  'got_like',
  'like_go',
  'go_drive',
  'drive_wear',
  'wear_skirt',
  'skirt_leg',
  'leg_quit',
  'quit_obviou',
  'obviou_first',
  'first_sat',
  'sat_took',
  'took_leg',
  'leg_show',
  'show_man',
  'man_includ',
  'includ_stump',
  'stump_ask',
  'ask_okay',
  'okay_still',
  'still_park',
  'park_walk',
  'walk_away',
  'away_call',
  'call_disgust',
  'disgust_rude',
  'rude_said',
  'said_could',
  'could_told',
  'told_made',
  'made_look',
  'look_stupid',
  'stupid_group',
  'group_embarrass',
  'embarrass_said',
  'said_made',
  'made_thing',
  'thing_awkward',
  'awkward_crowd',
  'crowd_aita',
  'aita_edit',
  'edit_case',
  'case_anyon',
  'anyon_interest',
  'interest_im',
  'im_go',
  'go_post',
  'post_photo',
  'photo_leg',
  'leg_identif',
  'identif_reason',
  'reason_ill',
  'ill_describ',
  'describ_base',
  'base_color',
  'color_ombr',
  'ombr_whiteish',
  'whiteish_green',
  'green_pale',
  'pale_green',
  'green_cherri',
  'cherri_blossom',
  'blossom_paint',
  'paint_though',
  'though_sometim',
  'sometim_wear',
  'wear_silicon',
  'silicon_cover',
  'cover_resembl',
  'resembl_actual',
  'actual_foot',
  'foot_leg',
  'leg_day',
  'day_want',
  'want_peopl',
  'peopl_stare',
  'stare_even',
  'even_temporari',
  'temporari_sticki',
  'sticki_put',
  'put_toe',
  'toe_make',
  'make_look',
  'look_like',
  'like_paint',
  'paint_nail',
  'nail_actual',
  'actual_realli',
  'realli_cool',
  'bad_car_accid',
  'car_accid_three',
  'accid_three_year',
  'three_year_ago',
  'year_ago_drunk',
  'ago_drunk_drive',
  'drunk_drive_ran',
  'drive_ran_stop',
  'ran_stop_light',
  'stop_light_cut',
  'light_cut_semi-truck',
  'cut_semi-truck_crash',
  'semi-truck_crash_send',
  'crash_send_crash',
  'send_crash_two',
  'crash_two_differ',
  'two_differ_car',
  'differ_car_ultim',
  'car_ultim_embank',
  'ultim_embank_car',
  'embank_car_mangl',
  'car_mangl_leg',
  'mangl_leg_crush',
  'leg_crush_complet',
  'crush_complet_destroy',
  'complet_destroy_amput',
  'destroy_amput_also',
  'amput_also_lost',
  'also_lost_coupl',
  'lost_coupl_finger',
  'coupl_finger_tip',
  'finger_tip_one',
  'tip_one_anoth',
  'one_anoth_im',
  'anoth_im_also',
  'im_also_left',
  'also_left_gnarli',
  'left_gnarli_scar',
  'gnarli_scar_use',
  'scar_use_bother',
  'use_bother_im',
  'bother_im_learn',
  'im_learn_deal',
  'learn_deal_got',
  'deal_got_coupl',
  'got_coupl_differ',
  'coupl_differ_insur',
  'differ_insur_payout',
  'insur_payout_pain',
  'payout_pain_suffer',
  'pain_suffer_money',
  'suffer_money_addit',
  'money_addit_medic',
  'addit_medic_bill',
  'medic_bill_paid',
  'bill_paid_money',
  'paid_money_purchas',
  'money_purchas_custom-mad',
  'purchas_custom-mad_leg',
  'custom-mad_leg_take',
  'leg_take_place',
  'take_place_one',
  'place_one_lost',
  'one_lost_pant',
  'lost_pant_shoe',
  'pant_shoe_hardli',
  'shoe_hardli_tell',
  'hardli_tell_unless',
  'tell_unless_realli',
  'unless_realli_look',
  'realli_look_still',
  'look_still_limp',
  'still_limp_day',
  'limp_day_pronounc',
  'day_pronounc_limp',
  'pronounc_limp_earlier',
  'limp_earlier_today',
  'earlier_today_went',
  'today_went_store',
  'went_store_boyfriend',
  'store_boyfriend_sister',
  'boyfriend_sister_girlfriend',
  'sister_girlfriend_mother',
  'girlfriend_mother_drove',
  'mother_drove_learn',
  'drove_learn_drive',
  'learn_drive_left',
  'drive_left_foot',
  'left_foot_im',
  'foot_im_realli',
  'im_realli_good',
  'realli_good_also',
  'good_also_bought',
  'also_bought_new',
  'bought_new_car',
  'new_car_money',
  'car_money_go',
  'money_go_ton',
  'go_ton_therapi',
  'ton_therapi_get',
  'therapi_get_past',
  'get_past_ptsd',
  'past_ptsd_im',
  'ptsd_im_well',
  'im_well_well',
  'well_well_drove',
  'well_drove_us',
  'drove_us_injuri',
  'us_injuri_addit',
  'injuri_addit_leg',
  'addit_leg_also',
  'leg_also_chronic',
  'also_chronic_hip',
  'chronic_hip_neck',
  'hip_neck_back',
  'neck_back_pain',
  'back_pain_issu',
  'pain_issu_lung',
  'issu_lung_time',
  'lung_time_spent',
  'time_spent_intub',
  'spent_intub_medically-induc',
  'intub_medically-induc_coma',
  'medically-induc_coma_led',
  'coma_led_pneumonia',
  'led_pneumonia_handicap',
  'pneumonia_handicap_placard',
  'handicap_placard_car',
  'placard_car_troubl',
  'car_troubl_walk',
  'troubl_walk_without',
  'walk_without_get',
  'without_get_tire',
  'get_tire_realli',
  'tire_realli_help',
  'realli_help_park',
  'help_park_close',
  'park_close_door',
  'close_door_today',
  'door_today_unknowingli',
  'today_unknowingli_took',
  'unknowingli_took_space',
  'took_space_someon',
  'space_someon_circl',
  'someon_circl_back',
  'circl_back_around',
  'back_around_appar',
  'around_appar_man',
  'appar_man_look',
  'man_look_close',
  'look_close_space',
  'close_space_miss',
  'space_miss_one',
  'miss_one_took',
  'one_took_went',
  'took_went_around',
  'went_around_still',
  'around_still_aisl',
  'still_aisl_pull',
  'aisl_pull_cut',
  'pull_cut_anyth',
  'cut_anyth_way',
  'anyth_way_know',
  'way_know_want',
  'know_want_spot',
  'want_spot_park',
  'spot_park_yellow',
  'park_yellow_stripe',
  'yellow_stripe_zone',
  'stripe_zone_got',
  'zone_got_immedi',
  'got_immedi_began',
  'immedi_began_confront',
  'began_confront_steal',
  'confront_steal_space',
  'steal_space_peopl',
  'space_peopl_actual',
  'peopl_actual_need',
  'actual_need_im',
  'need_im_kid',
  'im_kid_respect',
  'kid_respect_truli',
  'respect_truli_sick',
  'truli_sick_suffer',
  'sick_suffer_order',
  'suffer_order_move',
  'order_move_group',
  'move_group_urg',
  'group_urg_walk',
  'urg_walk_way',
  'walk_way_happen',
  'way_happen_polic',
  'happen_polic_even',
  'polic_even_call',
  'even_call_im',
  'call_im_sick',
  'im_sick_peopl',
  'sick_peopl_think',
  'peopl_think_im',
  'think_im_young',
  'im_young_legit',
  'young_legit_need',
  'legit_need_littl',
  'need_littl_extra',
  'littl_extra_consider',
  'extra_consider_said',
  'consider_said_okay',
  'said_okay_went',
  'okay_went_car',
  'went_car_got',
  'car_got_like',
  'got_like_go',
  'like_go_drive',
  'go_drive_wear',
  'drive_wear_skirt',
  'wear_skirt_leg',
  'skirt_leg_quit',
  'leg_quit_obviou',
  'quit_obviou_first',
  'obviou_first_sat',
  'first_sat_took',
  'sat_took_leg',
  'took_leg_show',
  'leg_show_man',
  'show_man_includ',
  'man_includ_stump',
  'includ_stump_ask',
  'stump_ask_okay',
  'ask_okay_still',
  'okay_still_park',
  'still_park_walk',
  'park_walk_away',
  'walk_away_call',
  'away_call_disgust',
  'call_disgust_rude',
  'disgust_rude_said',
  'rude_said_could',
  'said_could_told',
  'could_told_made',
  'told_made_look',
  'made_look_stupid',
  'look_stupid_group',
  'stupid_group_embarrass',
  'group_embarrass_said',
  'embarrass_said_made',
  'said_made_thing',
  'made_thing_awkward',
  'thing_awkward_crowd',
  'awkward_crowd_aita',
  'crowd_aita_edit',
  'aita_edit_case',
  'edit_case_anyon',
  'case_anyon_interest',
  'anyon_interest_im',
  'interest_im_go',
  'im_go_post',
  'go_post_photo',
  'post_photo_leg',
  'photo_leg_identif',
  'leg_identif_reason',
  'identif_reason_ill',
  'reason_ill_describ',
  'ill_describ_base',
  'describ_base_color',
  'base_color_ombr',
  'color_ombr_whiteish',
  'ombr_whiteish_green',
  'whiteish_green_pale',
  'green_pale_green',
  'pale_green_cherri',
  'green_cherri_blossom',
  'cherri_blossom_paint',
  'blossom_paint_though',
  'paint_though_sometim',
  'though_sometim_wear',
  'sometim_wear_silicon',
  'wear_silicon_cover',
  'silicon_cover_resembl',
  'cover_resembl_actual',
  'resembl_actual_foot',
  'actual_foot_leg',
  'foot_leg_day',
  'leg_day_want',
  'day_want_peopl',
  'want_peopl_stare',
  'peopl_stare_even',
  'stare_even_temporari',
  'even_temporari_sticki',
  'temporari_sticki_put',
  'sticki_put_toe',
  'put_toe_make',
  'toe_make_look',
  'make_look_like',
  'look_like_paint',
  'like_paint_nail',
  'paint_nail_actual',
  'nail_actual_realli',
  'actual_realli_cool'],
 ['fiancè',
  'got',
  'engag',
  'month',
  'ago',
  'get',
  'marri',
  'soon',
  'invit',
  'alreadi',
  'sent',
  'right',
  'focus',
  'much',
  'smaller',
  'detail',
  'weve',
  'also',
  'busi',
  'move',
  'new',
  'home',
  'purchas',
  'togeth',
  '%',
  'save',
  '+',
  '%',
  'mine',
  'say',
  'save',
  'hous',
  'took',
  'save',
  'prevent',
  'enjoy',
  'thing',
  'love',
  'spend',
  'money',
  'fiancè',
  'sat',
  'yesterday',
  'talk',
  'groom',
  'speech',
  'talk',
  'point',
  'made',
  'upset',
  'ask',
  'would',
  'okay',
  'mention',
  'hous',
  'bought',
  'say',
  'one',
  'bought',
  'bit',
  'taken',
  'aback',
  'ask',
  'said',
  'confid',
  'boost',
  'speech',
  'said',
  'feel',
  'comfort',
  'idea',
  'think',
  'unfair',
  'acknowledg',
  'fact',
  'id',
  'sacrif',
  'much',
  'abl',
  'buy',
  'hous',
  'remind',
  'much',
  'contribut',
  'said',
  'chang',
  'hous',
  'matter',
  'said',
  'bought',
  'refus',
  'peopl',
  'alway',
  'think',
  'hous',
  'bought',
  'someth',
  'never',
  'chang',
  'matter',
  'hard',
  'tri',
  'prove',
  'contribut',
  '%',
  'got',
  'made',
  'said',
  'realli',
  'overthink',
  'whole',
  'thing',
  'make',
  'big',
  'deal',
  'got',
  'argument',
  'start',
  'yell',
  'say',
  'one',
  'favor',
  'ask',
  'yet',
  'im',
  'make',
  'ridicul',
  'small',
  'request',
  'hill',
  'die',
  'basic',
  'sulk',
  'refus',
  'answer',
  'call',
  'basic',
  'start',
  'silent',
  'treatment',
  'til',
  'cave',
  'aita',
  'make',
  'hill',
  'die',
  '[',
  'edit',
  ']',
  'fianc',
  'come',
  'humbl',
  'background',
  'money',
  'alway',
  'struggl',
  'famili',
  'becom',
  'obviou',
  'insecur',
  'come',
  'money',
  'especi',
  'compar',
  'much',
  'make',
  'vs',
  'make',
  'ive',
  'never',
  'made',
  'feel',
  'less',
  'never',
  'took',
  'advantag',
  'way',
  'recent',
  'request',
  'realli',
  'cut',
  'guard',
  'say',
  'least',
  'fiancè_got',
  'got_engag',
  'engag_month',
  'month_ago',
  'ago_get',
  'get_marri',
  'marri_soon',
  'soon_invit',
  'invit_alreadi',
  'alreadi_sent',
  'sent_right',
  'right_focus',
  'focus_much',
  'much_smaller',
  'smaller_detail',
  'detail_weve',
  'weve_also',
  'also_busi',
  'busi_move',
  'move_new',
  'new_home',
  'home_purchas',
  'purchas_togeth',
  'togeth_%',
  '%_save',
  'save_+',
  '+_%',
  '%_mine',
  'mine_say',
  'say_save',
  'save_hous',
  'hous_took',
  'took_save',
  'save_prevent',
  'prevent_enjoy',
  'enjoy_thing',
  'thing_love',
  'love_spend',
  'spend_money',
  'money_fiancè',
  'fiancè_sat',
  'sat_yesterday',
  'yesterday_talk',
  'talk_groom',
  'groom_speech',
  'speech_talk',
  'talk_point',
  'point_made',
  'made_upset',
  'upset_ask',
  'ask_would',
  'would_okay',
  'okay_mention',
  'mention_hous',
  'hous_bought',
  'bought_say',
  'say_one',
  'one_bought',
  'bought_bit',
  'bit_taken',
  'taken_aback',
  'aback_ask',
  'ask_said',
  'said_confid',
  'confid_boost',
  'boost_speech',
  'speech_said',
  'said_feel',
  'feel_comfort',
  'comfort_idea',
  'idea_think',
  'think_unfair',
  'unfair_acknowledg',
  'acknowledg_fact',
  'fact_id',
  'id_sacrif',
  'sacrif_much',
  'much_abl',
  'abl_buy',
  'buy_hous',
  'hous_remind',
  'remind_much',
  'much_contribut',
  'contribut_said',
  'said_chang',
  'chang_hous',
  'hous_matter',
  'matter_said',
  'said_bought',
  'bought_refus',
  'refus_peopl',
  'peopl_alway',
  'alway_think',
  'think_hous',
  'hous_bought',
  'bought_someth',
  'someth_never',
  'never_chang',
  'chang_matter',
  'matter_hard',
  'hard_tri',
  'tri_prove',
  'prove_contribut',
  'contribut_%',
  '%_got',
  'got_made',
  'made_said',
  'said_realli',
  'realli_overthink',
  'overthink_whole',
  'whole_thing',
  'thing_make',
  'make_big',
  'big_deal',
  'deal_got',
  'got_argument',
  'argument_start',
  'start_yell',
  'yell_say',
  'say_one',
  'one_favor',
  'favor_ask',
  'ask_yet',
  'yet_im',
  'im_make',
  'make_ridicul',
  'ridicul_small',
  'small_request',
  'request_hill',
  'hill_die',
  'die_basic',
  'basic_sulk',
  'sulk_refus',
  'refus_answer',
  'answer_call',
  'call_basic',
  'basic_start',
  'start_silent',
  'silent_treatment',
  'treatment_til',
  'til_cave',
  'cave_aita',
  'aita_make',
  'make_hill',
  'hill_die',
  'die_[',
  '[_edit',
  'edit_]',
  ']_fianc',
  'fianc_come',
  'come_humbl',
  'humbl_background',
  'background_money',
  'money_alway',
  'alway_struggl',
  'struggl_famili',
  'famili_becom',
  'becom_obviou',
  'obviou_insecur',
  'insecur_come',
  'come_money',
  'money_especi',
  'especi_compar',
  'compar_much',
  'much_make',
  'make_vs',
  'vs_make',
  'make_ive',
  'ive_never',
  'never_made',
  'made_feel',
  'feel_less',
  'less_never',
  'never_took',
  'took_advantag',
  'advantag_way',
  'way_recent',
  'recent_request',
  'request_realli',
  'realli_cut',
  'cut_guard',
  'guard_say',
  'say_least',
  'fiancè_got_engag',
  'got_engag_month',
  'engag_month_ago',
  'month_ago_get',
  'ago_get_marri',
  'get_marri_soon',
  'marri_soon_invit',
  'soon_invit_alreadi',
  'invit_alreadi_sent',
  'alreadi_sent_right',
  'sent_right_focus',
  'right_focus_much',
  'focus_much_smaller',
  'much_smaller_detail',
  'smaller_detail_weve',
  'detail_weve_also',
  'weve_also_busi',
  'also_busi_move',
  'busi_move_new',
  'move_new_home',
  'new_home_purchas',
  'home_purchas_togeth',
  'purchas_togeth_%',
  'togeth_%_save',
  '%_save_+',
  'save_+_%',
  '+_%_mine',
  '%_mine_say',
  'mine_say_save',
  'say_save_hous',
  'save_hous_took',
  'hous_took_save',
  'took_save_prevent',
  'save_prevent_enjoy',
  'prevent_enjoy_thing',
  'enjoy_thing_love',
  'thing_love_spend',
  'love_spend_money',
  'spend_money_fiancè',
  'money_fiancè_sat',
  'fiancè_sat_yesterday',
  'sat_yesterday_talk',
  'yesterday_talk_groom',
  'talk_groom_speech',
  'groom_speech_talk',
  'speech_talk_point',
  'talk_point_made',
  'point_made_upset',
  'made_upset_ask',
  'upset_ask_would',
  'ask_would_okay',
  'would_okay_mention',
  'okay_mention_hous',
  'mention_hous_bought',
  'hous_bought_say',
  'bought_say_one',
  'say_one_bought',
  'one_bought_bit',
  'bought_bit_taken',
  'bit_taken_aback',
  'taken_aback_ask',
  'aback_ask_said',
  'ask_said_confid',
  'said_confid_boost',
  'confid_boost_speech',
  'boost_speech_said',
  'speech_said_feel',
  'said_feel_comfort',
  'feel_comfort_idea',
  'comfort_idea_think',
  'idea_think_unfair',
  'think_unfair_acknowledg',
  'unfair_acknowledg_fact',
  'acknowledg_fact_id',
  'fact_id_sacrif',
  'id_sacrif_much',
  'sacrif_much_abl',
  'much_abl_buy',
  'abl_buy_hous',
  'buy_hous_remind',
  'hous_remind_much',
  'remind_much_contribut',
  'much_contribut_said',
  'contribut_said_chang',
  'said_chang_hous',
  'chang_hous_matter',
  'hous_matter_said',
  'matter_said_bought',
  'said_bought_refus',
  'bought_refus_peopl',
  'refus_peopl_alway',
  'peopl_alway_think',
  'alway_think_hous',
  'think_hous_bought',
  'hous_bought_someth',
  'bought_someth_never',
  'someth_never_chang',
  'never_chang_matter',
  'chang_matter_hard',
  'matter_hard_tri',
  'hard_tri_prove',
  'tri_prove_contribut',
  'prove_contribut_%',
  'contribut_%_got',
  '%_got_made',
  'got_made_said',
  'made_said_realli',
  'said_realli_overthink',
  'realli_overthink_whole',
  'overthink_whole_thing',
  'whole_thing_make',
  'thing_make_big',
  'make_big_deal',
  'big_deal_got',
  'deal_got_argument',
  'got_argument_start',
  'argument_start_yell',
  'start_yell_say',
  'yell_say_one',
  'say_one_favor',
  'one_favor_ask',
  'favor_ask_yet',
  'ask_yet_im',
  'yet_im_make',
  'im_make_ridicul',
  'make_ridicul_small',
  'ridicul_small_request',
  'small_request_hill',
  'request_hill_die',
  'hill_die_basic',
  'die_basic_sulk',
  'basic_sulk_refus',
  'sulk_refus_answer',
  'refus_answer_call',
  'answer_call_basic',
  'call_basic_start',
  'basic_start_silent',
  'start_silent_treatment',
  'silent_treatment_til',
  'treatment_til_cave',
  'til_cave_aita',
  'cave_aita_make',
  'aita_make_hill',
  'make_hill_die',
  'hill_die_[',
  'die_[_edit',
  '[_edit_]',
  'edit_]_fianc',
  ']_fianc_come',
  'fianc_come_humbl',
  'come_humbl_background',
  'humbl_background_money',
  'background_money_alway',
  'money_alway_struggl',
  'alway_struggl_famili',
  'struggl_famili_becom',
  'famili_becom_obviou',
  'becom_obviou_insecur',
  'obviou_insecur_come',
  'insecur_come_money',
  'come_money_especi',
  'money_especi_compar',
  'especi_compar_much',
  'compar_much_make',
  'much_make_vs',
  'make_vs_make',
  'vs_make_ive',
  'make_ive_never',
  'ive_never_made',
  'never_made_feel',
  'made_feel_less',
  'feel_less_never',
  'less_never_took',
  'never_took_advantag',
  'took_advantag_way',
  'advantag_way_recent',
  'way_recent_request',
  'recent_request_realli',
  'request_realli_cut',
  'realli_cut_guard',
  'cut_guard_say',
  'guard_say_least'],
 ['boyfriend',
  'jake',
  'month',
  'thing',
  'fine',
  'better',
  'judgment',
  'move',
  'place',
  'coupl',
  'month',
  'ago',
  'sinc',
  'get',
  'kind',
  'possess',
  'protect',
  'immedi',
  'told',
  'cut',
  'shit',
  'off-put',
  'thing',
  'seem',
  'get',
  'better',
  'anyway',
  'friend',
  'mexico',
  'get',
  'marri',
  'ive',
  'excit',
  'fli',
  'wed',
  'sinc',
  'told',
  'engag',
  'year',
  'ago',
  'howev',
  'jake',
  'made',
  'clear',
  'want',
  'go',
  'say',
  'mexico',
  'danger',
  'even',
  'though',
  'ive',
  'mani',
  'time',
  'even',
  'live',
  'year',
  'speak',
  'spanish',
  'friend',
  'know',
  'way',
  'around',
  'matter',
  'say',
  'want',
  'go',
  'coupl',
  'day',
  'ago',
  'passport',
  'went',
  'miss',
  'nightstand',
  'im',
  'suppos',
  'go',
  'tomorrow',
  'time',
  'get',
  'new',
  'one',
  'look',
  'everywher',
  'luck',
  'ask',
  'jake',
  'behav',
  'littl',
  'suspici',
  'dismiss',
  'believ',
  'would',
  'actual',
  'take',
  'passport',
  'keep',
  'go',
  'give',
  'red',
  'flag',
  'decid',
  'thorough',
  'look',
  'around',
  'went',
  'morn',
  'start',
  'go',
  'everyth',
  'search',
  'becam',
  'increasingli',
  'certain',
  'took',
  'passport',
  'start',
  'care',
  'pick',
  'drawer',
  'cabinet',
  'anger',
  'grew',
  'becam',
  'lot',
  'less',
  'care',
  'start',
  'turn',
  'drawer',
  'pri',
  'open',
  'brief',
  'case',
  'made',
  'total',
  'mess',
  'found',
  'behind',
  'book',
  'bookcas',
  'studi',
  'never',
  'go',
  'studi',
  'definit',
  'put',
  'furiou',
  'go',
  'thing',
  'ransack',
  'place',
  'said',
  'would',
  'given',
  'passport',
  'back',
  'need',
  'go',
  'crazyim',
  'angri',
  'took',
  'begin',
  'believ',
  'say',
  'go',
  'give',
  'back',
  'third',
  'seriou',
  'relationship',
  'perspect',
  'kind',
  'thing',
  'aita',
  'overreact',
  'ransack',
  'exboyfriend',
  'place',
  'edit',
  'thank',
  'repli',
  'guess',
  'still',
  'weird',
  'state',
  'disbelief',
  'made',
  'question',
  'everyth',
  'ive',
  'stop',
  'shake',
  'time',
  'think',
  'talk',
  'mom',
  'read',
  'repli',
  'feel',
  'kinda',
  'silli',
  'even',
  'wonder',
  'someth',
  'wrong',
  'suffic',
  'say',
  'good',
  'ive',
  'block',
  'everyth',
  'dad',
  'brother',
  'get',
  'left',
  'stuff',
  'im',
  'go',
  'tri',
  'put',
  'mind',
  'focu',
  'awesom',
  'trip',
  'boyfriend_jake',
  'jake_month',
  'month_thing',
  'thing_fine',
  'fine_better',
  'better_judgment',
  'judgment_move',
  'move_place',
  'place_coupl',
  'coupl_month',
  'month_ago',
  'ago_sinc',
  'sinc_get',
  'get_kind',
  'kind_possess',
  'possess_protect',
  'protect_immedi',
  'immedi_told',
  'told_cut',
  'cut_shit',
  'shit_off-put',
  'off-put_thing',
  'thing_seem',
  'seem_get',
  'get_better',
  'better_anyway',
  'anyway_friend',
  'friend_mexico',
  'mexico_get',
  'get_marri',
  'marri_ive',
  'ive_excit',
  'excit_fli',
  'fli_wed',
  'wed_sinc',
  'sinc_told',
  'told_engag',
  'engag_year',
  'year_ago',
  'ago_howev',
  'howev_jake',
  'jake_made',
  'made_clear',
  'clear_want',
  'want_go',
  'go_say',
  'say_mexico',
  'mexico_danger',
  'danger_even',
  'even_though',
  'though_ive',
  'ive_mani',
  'mani_time',
  'time_even',
  'even_live',
  'live_year',
  'year_speak',
  'speak_spanish',
  'spanish_friend',
  'friend_know',
  'know_way',
  'way_around',
  'around_matter',
  'matter_say',
  'say_want',
  'want_go',
  'go_coupl',
  'coupl_day',
  'day_ago',
  'ago_passport',
  'passport_went',
  'went_miss',
  'miss_nightstand',
  'nightstand_im',
  'im_suppos',
  'suppos_go',
  'go_tomorrow',
  'tomorrow_time',
  'time_get',
  'get_new',
  'new_one',
  'one_look',
  'look_everywher',
  'everywher_luck',
  'luck_ask',
  'ask_jake',
  'jake_behav',
  'behav_littl',
  'littl_suspici',
  'suspici_dismiss',
  'dismiss_believ',
  'believ_would',
  'would_actual',
  'actual_take',
  'take_passport',
  'passport_keep',
  'keep_go',
  'go_give',
  'give_red',
  'red_flag',
  'flag_decid',
  'decid_thorough',
  'thorough_look',
  'look_around',
  'around_went',
  'went_morn',
  'morn_start',
  'start_go',
  'go_everyth',
  'everyth_search',
  'search_becam',
  'becam_increasingli',
  'increasingli_certain',
  'certain_took',
  'took_passport',
  'passport_start',
  'start_care',
  'care_pick',
  'pick_drawer',
  'drawer_cabinet',
  'cabinet_anger',
  'anger_grew',
  'grew_becam',
  'becam_lot',
  'lot_less',
  'less_care',
  'care_start',
  'start_turn',
  'turn_drawer',
  'drawer_pri',
  'pri_open',
  'open_brief',
  'brief_case',
  'case_made',
  'made_total',
  'total_mess',
  'mess_found',
  'found_behind',
  'behind_book',
  'book_bookcas',
  'bookcas_studi',
  'studi_never',
  'never_go',
  'go_studi',
  'studi_definit',
  'definit_put',
  'put_furiou',
  'furiou_go',
  'go_thing',
  'thing_ransack',
  'ransack_place',
  'place_said',
  'said_would',
  'would_given',
  'given_passport',
  'passport_back',
  'back_need',
  'need_go',
  'go_crazyim',
  'crazyim_angri',
  'angri_took',
  'took_begin',
  'begin_believ',
  'believ_say',
  'say_go',
  'go_give',
  'give_back',
  'back_third',
  'third_seriou',
  'seriou_relationship',
  'relationship_perspect',
  'perspect_kind',
  'kind_thing',
  'thing_aita',
  'aita_overreact',
  'overreact_ransack',
  'ransack_exboyfriend',
  'exboyfriend_place',
  'place_edit',
  'edit_thank',
  'thank_repli',
  'repli_guess',
  'guess_still',
  'still_weird',
  'weird_state',
  'state_disbelief',
  'disbelief_made',
  'made_question',
  'question_everyth',
  'everyth_ive',
  'ive_stop',
  'stop_shake',
  'shake_time',
  'time_think',
  'think_talk',
  'talk_mom',
  'mom_read',
  'read_repli',
  'repli_feel',
  'feel_kinda',
  'kinda_silli',
  'silli_even',
  'even_wonder',
  'wonder_someth',
  'someth_wrong',
  'wrong_suffic',
  'suffic_say',
  'say_good',
  'good_ive',
  'ive_block',
  'block_everyth',
  'everyth_dad',
  'dad_brother',
  'brother_get',
  'get_left',
  'left_stuff',
  'stuff_im',
  'im_go',
  'go_tri',
  'tri_put',
  'put_mind',
  'mind_focu',
  'focu_awesom',
  'awesom_trip',
  'boyfriend_jake_month',
  'jake_month_thing',
  'month_thing_fine',
  'thing_fine_better',
  'fine_better_judgment',
  'better_judgment_move',
  'judgment_move_place',
  'move_place_coupl',
  'place_coupl_month',
  'coupl_month_ago',
  'month_ago_sinc',
  'ago_sinc_get',
  'sinc_get_kind',
  'get_kind_possess',
  'kind_possess_protect',
  'possess_protect_immedi',
  'protect_immedi_told',
  'immedi_told_cut',
  'told_cut_shit',
  'cut_shit_off-put',
  'shit_off-put_thing',
  'off-put_thing_seem',
  'thing_seem_get',
  'seem_get_better',
  'get_better_anyway',
  'better_anyway_friend',
  'anyway_friend_mexico',
  'friend_mexico_get',
  'mexico_get_marri',
  'get_marri_ive',
  'marri_ive_excit',
  'ive_excit_fli',
  'excit_fli_wed',
  'fli_wed_sinc',
  'wed_sinc_told',
  'sinc_told_engag',
  'told_engag_year',
  'engag_year_ago',
  'year_ago_howev',
  'ago_howev_jake',
  'howev_jake_made',
  'jake_made_clear',
  'made_clear_want',
  'clear_want_go',
  'want_go_say',
  'go_say_mexico',
  'say_mexico_danger',
  'mexico_danger_even',
  'danger_even_though',
  'even_though_ive',
  'though_ive_mani',
  'ive_mani_time',
  'mani_time_even',
  'time_even_live',
  'even_live_year',
  'live_year_speak',
  'year_speak_spanish',
  'speak_spanish_friend',
  'spanish_friend_know',
  'friend_know_way',
  'know_way_around',
  'way_around_matter',
  'around_matter_say',
  'matter_say_want',
  'say_want_go',
  'want_go_coupl',
  'go_coupl_day',
  'coupl_day_ago',
  'day_ago_passport',
  'ago_passport_went',
  'passport_went_miss',
  'went_miss_nightstand',
  'miss_nightstand_im',
  'nightstand_im_suppos',
  'im_suppos_go',
  'suppos_go_tomorrow',
  'go_tomorrow_time',
  'tomorrow_time_get',
  'time_get_new',
  'get_new_one',
  'new_one_look',
  'one_look_everywher',
  'look_everywher_luck',
  'everywher_luck_ask',
  'luck_ask_jake',
  'ask_jake_behav',
  'jake_behav_littl',
  'behav_littl_suspici',
  'littl_suspici_dismiss',
  'suspici_dismiss_believ',
  'dismiss_believ_would',
  'believ_would_actual',
  'would_actual_take',
  'actual_take_passport',
  'take_passport_keep',
  'passport_keep_go',
  'keep_go_give',
  'go_give_red',
  'give_red_flag',
  'red_flag_decid',
  'flag_decid_thorough',
  'decid_thorough_look',
  'thorough_look_around',
  'look_around_went',
  'around_went_morn',
  'went_morn_start',
  'morn_start_go',
  'start_go_everyth',
  'go_everyth_search',
  'everyth_search_becam',
  'search_becam_increasingli',
  'becam_increasingli_certain',
  'increasingli_certain_took',
  'certain_took_passport',
  'took_passport_start',
  'passport_start_care',
  'start_care_pick',
  'care_pick_drawer',
  'pick_drawer_cabinet',
  'drawer_cabinet_anger',
  'cabinet_anger_grew',
  'anger_grew_becam',
  'grew_becam_lot',
  'becam_lot_less',
  'lot_less_care',
  'less_care_start',
  'care_start_turn',
  'start_turn_drawer',
  'turn_drawer_pri',
  'drawer_pri_open',
  'pri_open_brief',
  'open_brief_case',
  'brief_case_made',
  'case_made_total',
  'made_total_mess',
  'total_mess_found',
  'mess_found_behind',
  'found_behind_book',
  'behind_book_bookcas',
  'book_bookcas_studi',
  'bookcas_studi_never',
  'studi_never_go',
  'never_go_studi',
  'go_studi_definit',
  'studi_definit_put',
  'definit_put_furiou',
  'put_furiou_go',
  'furiou_go_thing',
  'go_thing_ransack',
  'thing_ransack_place',
  'ransack_place_said',
  'place_said_would',
  'said_would_given',
  'would_given_passport',
  'given_passport_back',
  'passport_back_need',
  'back_need_go',
  'need_go_crazyim',
  'go_crazyim_angri',
  'crazyim_angri_took',
  'angri_took_begin',
  'took_begin_believ',
  'begin_believ_say',
  'believ_say_go',
  'say_go_give',
  'go_give_back',
  'give_back_third',
  'back_third_seriou',
  'third_seriou_relationship',
  'seriou_relationship_perspect',
  'relationship_perspect_kind',
  'perspect_kind_thing',
  'kind_thing_aita',
  'thing_aita_overreact',
  'aita_overreact_ransack',
  'overreact_ransack_exboyfriend',
  'ransack_exboyfriend_place',
  'exboyfriend_place_edit',
  'place_edit_thank',
  'edit_thank_repli',
  'thank_repli_guess',
  'repli_guess_still',
  'guess_still_weird',
  'still_weird_state',
  'weird_state_disbelief',
  'state_disbelief_made',
  'disbelief_made_question',
  'made_question_everyth',
  'question_everyth_ive',
  'everyth_ive_stop',
  'ive_stop_shake',
  'stop_shake_time',
  'shake_time_think',
  'time_think_talk',
  'think_talk_mom',
  'talk_mom_read',
  'mom_read_repli',
  'read_repli_feel',
  'repli_feel_kinda',
  'feel_kinda_silli',
  'kinda_silli_even',
  'silli_even_wonder',
  'even_wonder_someth',
  'wonder_someth_wrong',
  'someth_wrong_suffic',
  'wrong_suffic_say',
  'suffic_say_good',
  'say_good_ive',
  'good_ive_block',
  'ive_block_everyth',
  'block_everyth_dad',
  'everyth_dad_brother',
  'dad_brother_get',
  'brother_get_left',
  'get_left_stuff',
  'left_stuff_im',
  'stuff_im_go',
  'im_go_tri',
  'go_tri_put',
  'tri_put_mind',
  'put_mind_focu',
  'mind_focu_awesom',
  'focu_awesom_trip'],
 ['dad',
  'marri',
  'step',
  'mom',
  'year',
  'ago',
  'want',
  'live',
  'want',
  'gone',
  'ive',
  'insist',
  'stay',
  'want',
  'live',
  'mom',
  'husband',
  'piec',
  'work',
  'alway',
  'clash',
  'announc',
  'last',
  'month',
  'allow',
  'eat',
  'anyth',
  'cook',
  'cook',
  'anyth',
  'buy',
  'arang',
  'food',
  'complet',
  'separ',
  'ingredi',
  'level',
  'includ',
  'salt',
  'im',
  'problem',
  'deal',
  'annoy',
  'anyway',
  'handl',
  'want',
  'act',
  'entitl',
  'start',
  'buy',
  'cook',
  'food',
  'weve',
  'go',
  'like',
  'sinc',
  'sister',
  'accid',
  'day',
  'ago',
  'day',
  'accid',
  'step',
  'mother',
  'text',
  'afternoon',
  'say',
  'bring',
  'sister',
  'children',
  'theyll',
  'arriv',
  'around',
  'midnight',
  'ask',
  'buy',
  'groceri',
  'snack',
  'make',
  'late',
  'dinner',
  'never',
  'repli',
  'anyth',
  'say',
  'hour',
  'look',
  'good',
  'sister',
  'go',
  'surgeri',
  'end',
  'success',
  'thank',
  'make',
  'full',
  'recoveri',
  'came',
  'notic',
  'food',
  'inde',
  'hungri',
  'angri',
  'told',
  'problem',
  'deal',
  'said',
  'im',
  'jerk',
  'said',
  'take',
  'one',
  'know',
  'one',
  'end',
  'order',
  'pizza',
  'dad',
  'told',
  'line',
  'done',
  'want',
  'emerg',
  'done',
  'favor',
  'would',
  'gone',
  'long',
  'way',
  'improv',
  'relationshiop',
  'told',
  'relationship',
  'alway',
  'hopeless',
  'hate',
  'reason',
  'noth',
  'make',
  'hate',
  'less',
  'point',
  'ive',
  'accept',
  'care',
  'anymor',
  'said',
  'true',
  'im',
  'ground',
  'dad_marri',
  'marri_step',
  'step_mom',
  'mom_year',
  'year_ago',
  'ago_want',
  'want_live',
  'live_want',
  'want_gone',
  'gone_ive',
  'ive_insist',
  'insist_stay',
  'stay_want',
  'want_live',
  'live_mom',
  'mom_husband',
  'husband_piec',
  'piec_work',
  'work_alway',
  'alway_clash',
  'clash_announc',
  'announc_last',
  'last_month',
  'month_allow',
  'allow_eat',
  'eat_anyth',
  'anyth_cook',
  'cook_cook',
  'cook_anyth',
  'anyth_buy',
  'buy_arang',
  'arang_food',
  'food_complet',
  'complet_separ',
  'separ_ingredi',
  'ingredi_level',
  'level_includ',
  'includ_salt',
  'salt_im',
  'im_problem',
  'problem_deal',
  'deal_annoy',
  'annoy_anyway',
  'anyway_handl',
  'handl_want',
  'want_act',
  'act_entitl',
  'entitl_start',
  'start_buy',
  'buy_cook',
  'cook_food',
  'food_weve',
  'weve_go',
  'go_like',
  'like_sinc',
  'sinc_sister',
  'sister_accid',
  'accid_day',
  'day_ago',
  'ago_day',
  'day_accid',
  'accid_step',
  'step_mother',
  'mother_text',
  'text_afternoon',
  'afternoon_say',
  'say_bring',
  'bring_sister',
  'sister_children',
  'children_theyll',
  'theyll_arriv',
  'arriv_around',
  'around_midnight',
  'midnight_ask',
  'ask_buy',
  'buy_groceri',
  'groceri_snack',
  'snack_make',
  'make_late',
  'late_dinner',
  'dinner_never',
  'never_repli',
  'repli_anyth',
  'anyth_say',
  'say_hour',
  'hour_look',
  'look_good',
  'good_sister',
  'sister_go',
  'go_surgeri',
  'surgeri_end',
  'end_success',
  'success_thank',
  'thank_make',
  'make_full',
  'full_recoveri',
  'recoveri_came',
  'came_notic',
  'notic_food',
  'food_inde',
  'inde_hungri',
  'hungri_angri',
  'angri_told',
  'told_problem',
  'problem_deal',
  'deal_said',
  'said_im',
  'im_jerk',
  'jerk_said',
  'said_take',
  'take_one',
  'one_know',
  'know_one',
  'one_end',
  'end_order',
  'order_pizza',
  'pizza_dad',
  'dad_told',
  'told_line',
  'line_done',
  'done_want',
  'want_emerg',
  'emerg_done',
  'done_favor',
  'favor_would',
  'would_gone',
  'gone_long',
  'long_way',
  'way_improv',
  'improv_relationshiop',
  'relationshiop_told',
  'told_relationship',
  'relationship_alway',
  'alway_hopeless',
  'hopeless_hate',
  'hate_reason',
  'reason_noth',
  'noth_make',
  'make_hate',
  'hate_less',
  'less_point',
  'point_ive',
  'ive_accept',
  'accept_care',
  'care_anymor',
  'anymor_said',
  'said_true',
  'true_im',
  'im_ground',
  'dad_marri_step',
  'marri_step_mom',
  'step_mom_year',
  'mom_year_ago',
  'year_ago_want',
  'ago_want_live',
  'want_live_want',
  'live_want_gone',
  'want_gone_ive',
  'gone_ive_insist',
  'ive_insist_stay',
  'insist_stay_want',
  'stay_want_live',
  'want_live_mom',
  'live_mom_husband',
  'mom_husband_piec',
  'husband_piec_work',
  'piec_work_alway',
  'work_alway_clash',
  'alway_clash_announc',
  'clash_announc_last',
  'announc_last_month',
  'last_month_allow',
  'month_allow_eat',
  'allow_eat_anyth',
  'eat_anyth_cook',
  'anyth_cook_cook',
  'cook_cook_anyth',
  'cook_anyth_buy',
  'anyth_buy_arang',
  'buy_arang_food',
  'arang_food_complet',
  'food_complet_separ',
  'complet_separ_ingredi',
  'separ_ingredi_level',
  'ingredi_level_includ',
  'level_includ_salt',
  'includ_salt_im',
  'salt_im_problem',
  'im_problem_deal',
  'problem_deal_annoy',
  'deal_annoy_anyway',
  'annoy_anyway_handl',
  'anyway_handl_want',
  'handl_want_act',
  'want_act_entitl',
  'act_entitl_start',
  'entitl_start_buy',
  'start_buy_cook',
  'buy_cook_food',
  'cook_food_weve',
  'food_weve_go',
  'weve_go_like',
  'go_like_sinc',
  'like_sinc_sister',
  'sinc_sister_accid',
  'sister_accid_day',
  'accid_day_ago',
  'day_ago_day',
  'ago_day_accid',
  'day_accid_step',
  'accid_step_mother',
  'step_mother_text',
  'mother_text_afternoon',
  'text_afternoon_say',
  'afternoon_say_bring',
  'say_bring_sister',
  'bring_sister_children',
  'sister_children_theyll',
  'children_theyll_arriv',
  'theyll_arriv_around',
  'arriv_around_midnight',
  'around_midnight_ask',
  'midnight_ask_buy',
  'ask_buy_groceri',
  'buy_groceri_snack',
  'groceri_snack_make',
  'snack_make_late',
  'make_late_dinner',
  'late_dinner_never',
  'dinner_never_repli',
  'never_repli_anyth',
  'repli_anyth_say',
  'anyth_say_hour',
  'say_hour_look',
  'hour_look_good',
  'look_good_sister',
  'good_sister_go',
  'sister_go_surgeri',
  'go_surgeri_end',
  'surgeri_end_success',
  'end_success_thank',
  'success_thank_make',
  'thank_make_full',
  'make_full_recoveri',
  'full_recoveri_came',
  'recoveri_came_notic',
  'came_notic_food',
  'notic_food_inde',
  'food_inde_hungri',
  'inde_hungri_angri',
  'hungri_angri_told',
  'angri_told_problem',
  'told_problem_deal',
  'problem_deal_said',
  'deal_said_im',
  'said_im_jerk',
  'im_jerk_said',
  'jerk_said_take',
  'said_take_one',
  'take_one_know',
  'one_know_one',
  'know_one_end',
  'one_end_order',
  'end_order_pizza',
  'order_pizza_dad',
  'pizza_dad_told',
  'dad_told_line',
  'told_line_done',
  'line_done_want',
  'done_want_emerg',
  'want_emerg_done',
  'emerg_done_favor',
  'done_favor_would',
  'favor_would_gone',
  'would_gone_long',
  'gone_long_way',
  'long_way_improv',
  'way_improv_relationshiop',
  'improv_relationshiop_told',
  'relationshiop_told_relationship',
  'told_relationship_alway',
  'relationship_alway_hopeless',
  'alway_hopeless_hate',
  'hopeless_hate_reason',
  'hate_reason_noth',
  'reason_noth_make',
  'noth_make_hate',
  'make_hate_less',
  'hate_less_point',
  'less_point_ive',
  'point_ive_accept',
  'ive_accept_care',
  'accept_care_anymor',
  'care_anymor_said',
  'anymor_said_true',
  'said_true_im',
  'true_im_ground'],
 ['hello',
  'fifty-six-year-old',
  'mother',
  'thirty-three-year-old',
  'kelli',
  'grandmoth',
  'sixteen-year-old',
  'opal',
  'kelli',
  'becam',
  'pregnant',
  'opal',
  'sixteen',
  'husband',
  'eddi',
  'alway',
  'believ',
  'right',
  'choos',
  'howev',
  'kelli',
  'insist',
  'want',
  'keep',
  'babi',
  'give',
  'adopt',
  'help',
  'lot',
  'kelli',
  'seventeen',
  'opal',
  'born',
  'howev',
  'kelli',
  'would',
  'rare',
  'help',
  'parent',
  'even',
  'avail',
  'even',
  'ask',
  'watch',
  'opal',
  'hour',
  'ran',
  'errand',
  'issu',
  'rare',
  'kelli',
  'complain',
  'look',
  'opal',
  'kelli',
  'chose',
  'attend',
  'colleg',
  'graduat',
  'job',
  'flexibl',
  'schedul',
  'yet',
  'rare',
  'made',
  'avail',
  'opal',
  'kelli',
  'home',
  'sleep',
  'get',
  'dress',
  'parti',
  'also',
  'reli',
  'us',
  'purchas',
  'suppli',
  'book',
  'appoint',
  'opal',
  'eddi',
  'would',
  'seriou',
  'talk',
  'kelli',
  'need',
  'step',
  'parent',
  'kelli',
  'would',
  'make',
  'empti',
  'promis',
  'never',
  'follow',
  'kelli',
  'move',
  'opal',
  'six',
  'kelli',
  'come',
  'around',
  'mayb',
  'fortnight',
  'holiday',
  'eddi',
  'one',
  'rais',
  'opal',
  'opal',
  'extrem',
  'well',
  'good',
  'friend',
  'play',
  'tenni',
  'particip',
  'volunt',
  'project',
  'plan',
  'marin',
  'biologist',
  'graduat',
  'school',
  'year',
  'end',
  'opal',
  'last',
  'week',
  'nice',
  'dinner',
  'celebr',
  'good',
  'grade',
  'kelli',
  'came',
  'along',
  'sever',
  'famili',
  'member',
  'chat',
  'enjoy',
  'dinner',
  'togeth',
  'kelli',
  'stood',
  'make',
  'announc',
  'announc',
  'us',
  'pregnant',
  'boyfriend',
  'child',
  'alreadi',
  'upset',
  'suppos',
  'opal',
  'special',
  'moment',
  'kelli',
  'announc',
  'pregnanc',
  'complet',
  'inappropri',
  'eddi',
  'said',
  'noth',
  'kelli',
  'start',
  'say',
  'boyfriend',
  'busi',
  'life',
  'right',
  'eddi',
  'interrupt',
  'kelli',
  'told',
  'would',
  'noth',
  'rais',
  'new',
  'babi',
  'would',
  'provid',
  'anyth',
  'suppli',
  'childcar',
  'etc',
  'kelli',
  'flip',
  'argument',
  'ensu',
  'kelli',
  'call',
  'us',
  'heartless',
  'claim',
  'throw',
  'grandchild',
  'away',
  'eddi',
  'call',
  'selfish',
  'expect',
  'us',
  'rais',
  'anoth',
  'child',
  'old',
  'rais',
  'babi',
  'kelli',
  'thirty-thre',
  'need',
  'grow',
  'give',
  'babi',
  'adopt',
  'parent',
  'rais',
  'kelli',
  'left',
  'tear',
  'famili',
  'broken',
  'side',
  'one',
  'agre',
  'kelli',
  'say',
  'adopt',
  'opal',
  'send',
  'messag',
  'care',
  'newest',
  'grandchild',
  'say',
  'taken',
  'asid',
  'privat',
  'instead',
  'shoot',
  'front',
  'everyon',
  'reaction',
  'cruel',
  'eddi',
  'feel',
  'blunt',
  'kelli',
  'sugarcoat',
  'realiti',
  'opal',
  'like',
  'show',
  'us',
  'stori',
  'sometim',
  'thought',
  'would',
  'good',
  'place',
  'ask',
  'neutral',
  'perspect',
  'aita',
  'edit',
  'opal',
  'alway',
  'abl',
  'express',
  'feel',
  'eddi',
  'opal',
  'also',
  'therapist',
  'avail',
  'speak',
  'whenev',
  'need',
  'opal',
  'visit',
  'therapist',
  'weekli',
  'middl',
  'school',
  'need',
  'see',
  'month',
  'take',
  'opal',
  'mall',
  'trip',
  'make',
  'happen',
  'celebr',
  'dinner',
  'spoke',
  'privat',
  'opal',
  'incid',
  'know',
  'way',
  'view',
  'burden',
  'granddaught',
  'bless',
  'mani',
  'happiest',
  'moment',
  'involv',
  'support',
  'opal',
  'watch',
  'grow',
  'opal',
  'sixteen',
  'need',
  'kind',
  'constant',
  'attent',
  'care',
  'newborn',
  'babi',
  'old',
  'abl',
  'adequ',
  'rais',
  'newborn',
  'babi',
  'even',
  'want',
  'biggest',
  'problem',
  'kelli',
  'adult',
  'need',
  'start',
  'act',
  'like',
  'one',
  'kelli',
  'suppos',
  'outliv',
  'us',
  'realiti',
  'eddi',
  'go',
  'aliv',
  'children',
  'entir',
  'live',
  'kelli',
  'need',
  'accept',
  'expect',
  'us',
  'take',
  'respons',
  'must',
  'independ',
  'edit',
  'sever',
  'peopl',
  'inform',
  'part',
  'kelli',
  'expect',
  'us',
  'rais',
  'new',
  'babi',
  'unclear',
  'apolog',
  'thought',
  'self-explanatori',
  'realiz',
  'none',
  'actual',
  'experienc',
  'happen',
  'kelli',
  'talk',
  'busi',
  'boyfriend',
  'live',
  'began',
  'talk',
  'grate',
  'would',
  'alway',
  'look',
  'grandchildren',
  'sinc',
  'gain',
  'much',
  'joy',
  'rais',
  'opal',
  'would',
  'even',
  'happier',
  'rais',
  'second',
  'babi',
  'eddi',
  'call',
  'kelli',
  'confirm',
  'expect',
  'us',
  'adopt',
  'rais',
  'second',
  'babi',
  'well',
  'kelli',
  'said',
  'boyfriend',
  'time',
  'rais',
  'babi',
  'put',
  'babi',
  'adopt',
  'would',
  'throw',
  'away',
  'assum',
  'almost',
  'sixti',
  'year',
  'old',
  'would',
  'troubl',
  'opposit',
  'rais',
  'newborn',
  'babi',
  'hello_fifty-six-year-old',
  'fifty-six-year-old_mother',
  'mother_thirty-three-year-old',
  'thirty-three-year-old_kelli',
  'kelli_grandmoth',
  'grandmoth_sixteen-year-old',
  'sixteen-year-old_opal',
  'opal_kelli',
  'kelli_becam',
  'becam_pregnant',
  'pregnant_opal',
  'opal_sixteen',
  'sixteen_husband',
  'husband_eddi',
  'eddi_alway',
  'alway_believ',
  'believ_right',
  'right_choos',
  'choos_howev',
  'howev_kelli',
  'kelli_insist',
  'insist_want',
  'want_keep',
  'keep_babi',
  'babi_give',
  'give_adopt',
  'adopt_help',
  'help_lot',
  'lot_kelli',
  'kelli_seventeen',
  'seventeen_opal',
  'opal_born',
  'born_howev',
  'howev_kelli',
  'kelli_would',
  'would_rare',
  'rare_help',
  'help_parent',
  'parent_even',
  'even_avail',
  'avail_even',
  'even_ask',
  'ask_watch',
  'watch_opal',
  'opal_hour',
  'hour_ran',
  'ran_errand',
  'errand_issu',
  'issu_rare',
  'rare_kelli',
  'kelli_complain',
  'complain_look',
  'look_opal',
  'opal_kelli',
  'kelli_chose',
  'chose_attend',
  'attend_colleg',
  'colleg_graduat',
  'graduat_job',
  'job_flexibl',
  'flexibl_schedul',
  'schedul_yet',
  'yet_rare',
  'rare_made',
  'made_avail',
  'avail_opal',
  'opal_kelli',
  'kelli_home',
  'home_sleep',
  'sleep_get',
  'get_dress',
  'dress_parti',
  'parti_also',
  'also_reli',
  'reli_us',
  'us_purchas',
  'purchas_suppli',
  'suppli_book',
  'book_appoint',
  'appoint_opal',
  'opal_eddi',
  'eddi_would',
  'would_seriou',
  'seriou_talk',
  'talk_kelli',
  'kelli_need',
  'need_step',
  'step_parent',
  'parent_kelli',
  'kelli_would',
  'would_make',
  'make_empti',
  'empti_promis',
  'promis_never',
  'never_follow',
  'follow_kelli',
  'kelli_move',
  'move_opal',
  'opal_six',
  'six_kelli',
  'kelli_come',
  'come_around',
  'around_mayb',
  'mayb_fortnight',
  'fortnight_holiday',
  'holiday_eddi',
  'eddi_one',
  'one_rais',
  'rais_opal',
  'opal_opal',
  'opal_extrem',
  'extrem_well',
  'well_good',
  'good_friend',
  'friend_play',
  'play_tenni',
  'tenni_particip',
  'particip_volunt',
  'volunt_project',
  'project_plan',
  'plan_marin',
  'marin_biologist',
  'biologist_graduat',
  'graduat_school',
  'school_year',
  'year_end',
  'end_opal',
  'opal_last',
  'last_week',
  'week_nice',
  'nice_dinner',
  'dinner_celebr',
  'celebr_good',
  'good_grade',
  'grade_kelli',
  'kelli_came',
  'came_along',
  'along_sever',
  'sever_famili',
  'famili_member',
  'member_chat',
  'chat_enjoy',
  'enjoy_dinner',
  'dinner_togeth',
  'togeth_kelli',
  'kelli_stood',
  'stood_make',
  'make_announc',
  'announc_announc',
  'announc_us',
  'us_pregnant',
  'pregnant_boyfriend',
  'boyfriend_child',
  'child_alreadi',
  'alreadi_upset',
  'upset_suppos',
  'suppos_opal',
  'opal_special',
  'special_moment',
  'moment_kelli',
  'kelli_announc',
  'announc_pregnanc',
  'pregnanc_complet',
  'complet_inappropri',
  'inappropri_eddi',
  'eddi_said',
  'said_noth',
  'noth_kelli',
  'kelli_start',
  'start_say',
  'say_boyfriend',
  'boyfriend_busi',
  'busi_life',
  'life_right',
  'right_eddi',
  'eddi_interrupt',
  'interrupt_kelli',
  'kelli_told',
  'told_would',
  'would_noth',
  'noth_rais',
  'rais_new',
  'new_babi',
  'babi_would',
  'would_provid',
  'provid_anyth',
  'anyth_suppli',
  'suppli_childcar',
  'childcar_etc',
  'etc_kelli',
  'kelli_flip',
  'flip_argument',
  'argument_ensu',
  'ensu_kelli',
  'kelli_call',
  'call_us',
  'us_heartless',
  'heartless_claim',
  'claim_throw',
  'throw_grandchild',
  'grandchild_away',
  'away_eddi',
  'eddi_call',
  'call_selfish',
  'selfish_expect',
  'expect_us',
  'us_rais',
  'rais_anoth',
  'anoth_child',
  'child_old',
  'old_rais',
  'rais_babi',
  'babi_kelli',
  'kelli_thirty-thre',
  'thirty-thre_need',
  'need_grow',
  'grow_give',
  'give_babi',
  'babi_adopt',
  'adopt_parent',
  'parent_rais',
  'rais_kelli',
  'kelli_left',
  'left_tear',
  'tear_famili',
  'famili_broken',
  'broken_side',
  'side_one',
  'one_agre',
  'agre_kelli',
  'kelli_say',
  'say_adopt',
  'adopt_opal',
  'opal_send',
  'send_messag',
  'messag_care',
  'care_newest',
  'newest_grandchild',
  'grandchild_say',
  'say_taken',
  'taken_asid',
  'asid_privat',
  'privat_instead',
  'instead_shoot',
  'shoot_front',
  'front_everyon',
  'everyon_reaction',
  'reaction_cruel',
  'cruel_eddi',
  'eddi_feel',
  'feel_blunt',
  'blunt_kelli',
  'kelli_sugarcoat',
  'sugarcoat_realiti',
  'realiti_opal',
  'opal_like',
  'like_show',
  'show_us',
  'us_stori',
  'stori_sometim',
  'sometim_thought',
  'thought_would',
  'would_good',
  'good_place',
  'place_ask',
  'ask_neutral',
  'neutral_perspect',
  'perspect_aita',
  'aita_edit',
  'edit_opal',
  'opal_alway',
  'alway_abl',
  'abl_express',
  'express_feel',
  'feel_eddi',
  'eddi_opal',
  'opal_also',
  'also_therapist',
  'therapist_avail',
  'avail_speak',
  'speak_whenev',
  'whenev_need',
  'need_opal',
  'opal_visit',
  'visit_therapist',
  'therapist_weekli',
  'weekli_middl',
  'middl_school',
  'school_need',
  'need_see',
  'see_month',
  'month_take',
  'take_opal',
  'opal_mall',
  'mall_trip',
  'trip_make',
  'make_happen',
  'happen_celebr',
  'celebr_dinner',
  'dinner_spoke',
  'spoke_privat',
  'privat_opal',
  'opal_incid',
  'incid_know',
  'know_way',
  'way_view',
  'view_burden',
  'burden_granddaught',
  'granddaught_bless',
  'bless_mani',
  'mani_happiest',
  'happiest_moment',
  'moment_involv',
  'involv_support',
  'support_opal',
  'opal_watch',
  'watch_grow',
  'grow_opal',
  'opal_sixteen',
  'sixteen_need',
  'need_kind',
  'kind_constant',
  'constant_attent',
  'attent_care',
  'care_newborn',
  'newborn_babi',
  'babi_old',
  'old_abl',
  'abl_adequ',
  'adequ_rais',
  'rais_newborn',
  'newborn_babi',
  'babi_even',
  'even_want',
  'want_biggest',
  'biggest_problem',
  'problem_kelli',
  'kelli_adult',
  'adult_need',
  'need_start',
  'start_act',
  'act_like',
  'like_one',
  'one_kelli',
  'kelli_suppos',
  'suppos_outliv',
  'outliv_us',
  'us_realiti',
  'realiti_eddi',
  'eddi_go',
  'go_aliv',
  'aliv_children',
  'children_entir',
  'entir_live',
  'live_kelli',
  'kelli_need',
  'need_accept',
  'accept_expect',
  'expect_us',
  'us_take',
  'take_respons',
  'respons_must',
  'must_independ',
  'independ_edit',
  'edit_sever',
  'sever_peopl',
  'peopl_inform',
  'inform_part',
  'part_kelli',
  'kelli_expect',
  'expect_us',
  'us_rais',
  'rais_new',
  'new_babi',
  'babi_unclear',
  'unclear_apolog',
  'apolog_thought',
  'thought_self-explanatori',
  'self-explanatori_realiz',
  'realiz_none',
  'none_actual',
  'actual_experienc',
  'experienc_happen',
  'happen_kelli',
  'kelli_talk',
  'talk_busi',
  'busi_boyfriend',
  'boyfriend_live',
  'live_began',
  'began_talk',
  'talk_grate',
  'grate_would',
  'would_alway',
  'alway_look',
  'look_grandchildren',
  'grandchildren_sinc',
  'sinc_gain',
  'gain_much',
  'much_joy',
  'joy_rais',
  'rais_opal',
  'opal_would',
  'would_even',
  'even_happier',
  'happier_rais',
  'rais_second',
  'second_babi',
  'babi_eddi',
  'eddi_call',
  'call_kelli',
  'kelli_confirm',
  'confirm_expect',
  'expect_us',
  'us_adopt',
  'adopt_rais',
  'rais_second',
  'second_babi',
  'babi_well',
  'well_kelli',
  'kelli_said',
  'said_boyfriend',
  'boyfriend_time',
  'time_rais',
  'rais_babi',
  'babi_put',
  'put_babi',
  'babi_adopt',
  'adopt_would',
  'would_throw',
  'throw_away',
  'away_assum',
  'assum_almost',
  'almost_sixti',
  'sixti_year',
  'year_old',
  'old_would',
  'would_troubl',
  'troubl_opposit',
  'opposit_rais',
  'rais_newborn',
  'newborn_babi',
  'hello_fifty-six-year-old_mother',
  'fifty-six-year-old_mother_thirty-three-year-old',
  'mother_thirty-three-year-old_kelli',
  'thirty-three-year-old_kelli_grandmoth',
  'kelli_grandmoth_sixteen-year-old',
  'grandmoth_sixteen-year-old_opal',
  'sixteen-year-old_opal_kelli',
  'opal_kelli_becam',
  'kelli_becam_pregnant',
  'becam_pregnant_opal',
  'pregnant_opal_sixteen',
  'opal_sixteen_husband',
  'sixteen_husband_eddi',
  'husband_eddi_alway',
  'eddi_alway_believ',
  'alway_believ_right',
  'believ_right_choos',
  'right_choos_howev',
  'choos_howev_kelli',
  'howev_kelli_insist',
  'kelli_insist_want',
  'insist_want_keep',
  'want_keep_babi',
  'keep_babi_give',
  'babi_give_adopt',
  'give_adopt_help',
  'adopt_help_lot',
  'help_lot_kelli',
  'lot_kelli_seventeen',
  'kelli_seventeen_opal',
  'seventeen_opal_born',
  'opal_born_howev',
  'born_howev_kelli',
  'howev_kelli_would',
  'kelli_would_rare',
  'would_rare_help',
  'rare_help_parent',
  'help_parent_even',
  'parent_even_avail',
  'even_avail_even',
  'avail_even_ask',
  'even_ask_watch',
  'ask_watch_opal',
  'watch_opal_hour',
  'opal_hour_ran',
  'hour_ran_errand',
  'ran_errand_issu',
  'errand_issu_rare',
  'issu_rare_kelli',
  'rare_kelli_complain',
  'kelli_complain_look',
  'complain_look_opal',
  'look_opal_kelli',
  'opal_kelli_chose',
  'kelli_chose_attend',
  'chose_attend_colleg',
  'attend_colleg_graduat',
  'colleg_graduat_job',
  'graduat_job_flexibl',
  'job_flexibl_schedul',
  'flexibl_schedul_yet',
  'schedul_yet_rare',
  'yet_rare_made',
  'rare_made_avail',
  'made_avail_opal',
  'avail_opal_kelli',
  'opal_kelli_home',
  'kelli_home_sleep',
  'home_sleep_get',
  'sleep_get_dress',
  'get_dress_parti',
  'dress_parti_also',
  'parti_also_reli',
  'also_reli_us',
  'reli_us_purchas',
  'us_purchas_suppli',
  'purchas_suppli_book',
  'suppli_book_appoint',
  'book_appoint_opal',
  'appoint_opal_eddi',
  'opal_eddi_would',
  'eddi_would_seriou',
  'would_seriou_talk',
  'seriou_talk_kelli',
  'talk_kelli_need',
  'kelli_need_step',
  'need_step_parent',
  'step_parent_kelli',
  'parent_kelli_would',
  'kelli_would_make',
  'would_make_empti',
  'make_empti_promis',
  'empti_promis_never',
  'promis_never_follow',
  'never_follow_kelli',
  'follow_kelli_move',
  'kelli_move_opal',
  'move_opal_six',
  'opal_six_kelli',
  'six_kelli_come',
  'kelli_come_around',
  'come_around_mayb',
  'around_mayb_fortnight',
  'mayb_fortnight_holiday',
  'fortnight_holiday_eddi',
  'holiday_eddi_one',
  'eddi_one_rais',
  'one_rais_opal',
  'rais_opal_opal',
  'opal_opal_extrem',
  'opal_extrem_well',
  'extrem_well_good',
  'well_good_friend',
  'good_friend_play',
  'friend_play_tenni',
  'play_tenni_particip',
  'tenni_particip_volunt',
  ...],
 ['marri',
  'husband',
  'year',
  'ago',
  'divorc',
  'previous',
  'widow',
  'two',
  'daughter',
  'anni',
  'believ',
  'first',
  'marriag',
  'ami',
  'second',
  'husband',
  'told',
  'late',
  'wife',
  'ex',
  'wife',
  'issu',
  'blend',
  'famili',
  'remarri',
  'anni',
  'board',
  'remarri',
  'fact',
  'strain',
  'end',
  'second',
  'marriag',
  'also',
  'honest',
  'anni',
  'never',
  'forgav',
  'remarri',
  'never',
  'want',
  'anyth',
  'ami',
  'turn',
  'tell',
  'major',
  'role',
  'play',
  'found',
  'three',
  'week',
  'ago',
  'dinner',
  'extend',
  'famili',
  'stori',
  'know',
  'ami',
  'around',
  'year',
  'old',
  'took',
  'special',
  'interest',
  'necklac',
  'belong',
  'late',
  'wife',
  'husband',
  'gave',
  'necklac',
  'ami',
  'upset',
  'anni',
  'mother',
  'possess',
  'meant',
  'go',
  'husband',
  'told',
  'anni',
  'one',
  'item',
  'need',
  'get',
  'ami',
  'entitl',
  'someth',
  'anni',
  'brought',
  'piec',
  'mother',
  'wore',
  'husband',
  'told',
  'special',
  'gift',
  'give',
  'sister',
  'selfish',
  'ex',
  'wife',
  'told',
  'mother',
  'would',
  'want',
  'someon',
  'special',
  'sister',
  'piec',
  'well',
  'anni',
  'never',
  'got',
  'tri',
  'take',
  'ami',
  'punish',
  'last',
  'time',
  'saw',
  'told',
  'go',
  'fuck',
  'hell',
  'ami',
  'still',
  'necklac',
  'let',
  'get',
  'bad',
  'way',
  'talk',
  'dad',
  'bought',
  'shock',
  'never',
  'would',
  'expect',
  'husband',
  'way',
  'unapologet',
  'told',
  'anni',
  'would',
  'get',
  'day',
  'told',
  'asham',
  'allow',
  'anni',
  'mother',
  'possess',
  'chose',
  'ami',
  'give',
  'crap',
  'late',
  'wife',
  'signific',
  'item',
  'anni',
  'would',
  'told',
  'incred',
  'lucki',
  'daughter',
  'ever',
  'speak',
  'would',
  'blame',
  'never',
  'furiou',
  'judg',
  'famili',
  'said',
  'take',
  'husband',
  'side',
  'daughter',
  'even',
  'know',
  'except',
  'nephew',
  'niec',
  'told',
  'whole',
  'stori',
  'also',
  'think',
  'husband',
  'fuck',
  'thing',
  'aita',
  'marri_husband',
  'husband_year',
  'year_ago',
  'ago_divorc',
  'divorc_previous',
  'previous_widow',
  'widow_two',
  'two_daughter',
  'daughter_anni',
  'anni_believ',
  'believ_first',
  'first_marriag',
  'marriag_ami',
  'ami_second',
  'second_husband',
  'husband_told',
  'told_late',
  'late_wife',
  'wife_ex',
  'ex_wife',
  'wife_issu',
  'issu_blend',
  'blend_famili',
  'famili_remarri',
  'remarri_anni',
  'anni_board',
  'board_remarri',
  'remarri_fact',
  'fact_strain',
  'strain_end',
  'end_second',
  'second_marriag',
  'marriag_also',
  'also_honest',
  'honest_anni',
  'anni_never',
  'never_forgav',
  'forgav_remarri',
  'remarri_never',
  'never_want',
  'want_anyth',
  'anyth_ami',
  'ami_turn',
  'turn_tell',
  'tell_major',
  'major_role',
  'role_play',
  'play_found',
  'found_three',
  'three_week',
  'week_ago',
  'ago_dinner',
  'dinner_extend',
  'extend_famili',
  'famili_stori',
  'stori_know',
  'know_ami',
  'ami_around',
  'around_year',
  'year_old',
  'old_took',
  'took_special',
  'special_interest',
  'interest_necklac',
  'necklac_belong',
  'belong_late',
  'late_wife',
  'wife_husband',
  'husband_gave',
  'gave_necklac',
  'necklac_ami',
  'ami_upset',
  'upset_anni',
  'anni_mother',
  'mother_possess',
  'possess_meant',
  'meant_go',
  'go_husband',
  'husband_told',
  'told_anni',
  'anni_one',
  'one_item',
  'item_need',
  'need_get',
  'get_ami',
  'ami_entitl',
  'entitl_someth',
  'someth_anni',
  'anni_brought',
  'brought_piec',
  'piec_mother',
  'mother_wore',
  'wore_husband',
  'husband_told',
  'told_special',
  'special_gift',
  'gift_give',
  'give_sister',
  'sister_selfish',
  'selfish_ex',
  'ex_wife',
  'wife_told',
  'told_mother',
  'mother_would',
  'would_want',
  'want_someon',
  'someon_special',
  'special_sister',
  'sister_piec',
  'piec_well',
  'well_anni',
  'anni_never',
  'never_got',
  'got_tri',
  'tri_take',
  'take_ami',
  'ami_punish',
  'punish_last',
  'last_time',
  'time_saw',
  'saw_told',
  'told_go',
  'go_fuck',
  'fuck_hell',
  'hell_ami',
  'ami_still',
  'still_necklac',
  'necklac_let',
  'let_get',
  'get_bad',
  'bad_way',
  'way_talk',
  'talk_dad',
  'dad_bought',
  'bought_shock',
  'shock_never',
  'never_would',
  'would_expect',
  'expect_husband',
  'husband_way',
  'way_unapologet',
  'unapologet_told',
  'told_anni',
  'anni_would',
  'would_get',
  'get_day',
  'day_told',
  'told_asham',
  'asham_allow',
  'allow_anni',
  'anni_mother',
  'mother_possess',
  'possess_chose',
  'chose_ami',
  'ami_give',
  'give_crap',
  'crap_late',
  'late_wife',
  'wife_signific',
  'signific_item',
  'item_anni',
  'anni_would',
  'would_told',
  'told_incred',
  'incred_lucki',
  'lucki_daughter',
  'daughter_ever',
  'ever_speak',
  'speak_would',
  'would_blame',
  'blame_never',
  'never_furiou',
  'furiou_judg',
  'judg_famili',
  'famili_said',
  'said_take',
  'take_husband',
  'husband_side',
  'side_daughter',
  'daughter_even',
  'even_know',
  'know_except',
  'except_nephew',
  'nephew_niec',
  'niec_told',
  'told_whole',
  'whole_stori',
  'stori_also',
  'also_think',
  'think_husband',
  'husband_fuck',
  'fuck_thing',
  'thing_aita',
  'marri_husband_year',
  'husband_year_ago',
  'year_ago_divorc',
  'ago_divorc_previous',
  'divorc_previous_widow',
  'previous_widow_two',
  'widow_two_daughter',
  'two_daughter_anni',
  'daughter_anni_believ',
  'anni_believ_first',
  'believ_first_marriag',
  'first_marriag_ami',
  'marriag_ami_second',
  'ami_second_husband',
  'second_husband_told',
  'husband_told_late',
  'told_late_wife',
  'late_wife_ex',
  'wife_ex_wife',
  'ex_wife_issu',
  'wife_issu_blend',
  'issu_blend_famili',
  'blend_famili_remarri',
  'famili_remarri_anni',
  'remarri_anni_board',
  'anni_board_remarri',
  'board_remarri_fact',
  'remarri_fact_strain',
  'fact_strain_end',
  'strain_end_second',
  'end_second_marriag',
  'second_marriag_also',
  'marriag_also_honest',
  'also_honest_anni',
  'honest_anni_never',
  'anni_never_forgav',
  'never_forgav_remarri',
  'forgav_remarri_never',
  'remarri_never_want',
  'never_want_anyth',
  'want_anyth_ami',
  'anyth_ami_turn',
  'ami_turn_tell',
  'turn_tell_major',
  'tell_major_role',
  'major_role_play',
  'role_play_found',
  'play_found_three',
  'found_three_week',
  'three_week_ago',
  'week_ago_dinner',
  'ago_dinner_extend',
  'dinner_extend_famili',
  'extend_famili_stori',
  'famili_stori_know',
  'stori_know_ami',
  'know_ami_around',
  'ami_around_year',
  'around_year_old',
  'year_old_took',
  'old_took_special',
  'took_special_interest',
  'special_interest_necklac',
  'interest_necklac_belong',
  'necklac_belong_late',
  'belong_late_wife',
  'late_wife_husband',
  'wife_husband_gave',
  'husband_gave_necklac',
  'gave_necklac_ami',
  'necklac_ami_upset',
  'ami_upset_anni',
  'upset_anni_mother',
  'anni_mother_possess',
  'mother_possess_meant',
  'possess_meant_go',
  'meant_go_husband',
  'go_husband_told',
  'husband_told_anni',
  'told_anni_one',
  'anni_one_item',
  'one_item_need',
  'item_need_get',
  'need_get_ami',
  'get_ami_entitl',
  'ami_entitl_someth',
  'entitl_someth_anni',
  'someth_anni_brought',
  'anni_brought_piec',
  'brought_piec_mother',
  'piec_mother_wore',
  'mother_wore_husband',
  'wore_husband_told',
  'husband_told_special',
  'told_special_gift',
  'special_gift_give',
  'gift_give_sister',
  'give_sister_selfish',
  'sister_selfish_ex',
  'selfish_ex_wife',
  'ex_wife_told',
  'wife_told_mother',
  'told_mother_would',
  'mother_would_want',
  'would_want_someon',
  'want_someon_special',
  'someon_special_sister',
  'special_sister_piec',
  'sister_piec_well',
  'piec_well_anni',
  'well_anni_never',
  'anni_never_got',
  'never_got_tri',
  'got_tri_take',
  'tri_take_ami',
  'take_ami_punish',
  'ami_punish_last',
  'punish_last_time',
  'last_time_saw',
  'time_saw_told',
  'saw_told_go',
  'told_go_fuck',
  'go_fuck_hell',
  'fuck_hell_ami',
  'hell_ami_still',
  'ami_still_necklac',
  'still_necklac_let',
  'necklac_let_get',
  'let_get_bad',
  'get_bad_way',
  'bad_way_talk',
  'way_talk_dad',
  'talk_dad_bought',
  'dad_bought_shock',
  'bought_shock_never',
  'shock_never_would',
  'never_would_expect',
  'would_expect_husband',
  'expect_husband_way',
  'husband_way_unapologet',
  'way_unapologet_told',
  'unapologet_told_anni',
  'told_anni_would',
  'anni_would_get',
  'would_get_day',
  'get_day_told',
  'day_told_asham',
  'told_asham_allow',
  'asham_allow_anni',
  'allow_anni_mother',
  'anni_mother_possess',
  'mother_possess_chose',
  'possess_chose_ami',
  'chose_ami_give',
  'ami_give_crap',
  'give_crap_late',
  'crap_late_wife',
  'late_wife_signific',
  'wife_signific_item',
  'signific_item_anni',
  'item_anni_would',
  'anni_would_told',
  'would_told_incred',
  'told_incred_lucki',
  'incred_lucki_daughter',
  'lucki_daughter_ever',
  'daughter_ever_speak',
  'ever_speak_would',
  'speak_would_blame',
  'would_blame_never',
  'blame_never_furiou',
  'never_furiou_judg',
  'furiou_judg_famili',
  'judg_famili_said',
  'famili_said_take',
  'said_take_husband',
  'take_husband_side',
  'husband_side_daughter',
  'side_daughter_even',
  'daughter_even_know',
  'even_know_except',
  'know_except_nephew',
  'except_nephew_niec',
  'nephew_niec_told',
  'niec_told_whole',
  'told_whole_stori',
  'whole_stori_also',
  'stori_also_think',
  'also_think_husband',
  'think_husband_fuck',
  'husband_fuck_thing',
  'fuck_thing_aita'],
 ['context',
  'husband',
  '[',
  ']',
  'use',
  'unemploy',
  'year',
  'recent',
  'start',
  'job',
  'warehous',
  'yesterday',
  'laundri',
  'grab',
  'work',
  'pant',
  'dig',
  'hand',
  'pocket',
  'empti',
  'put',
  'wash',
  'machin',
  'like',
  'alway',
  'husband',
  'happen',
  'walk',
  'saw',
  'search',
  'pant',
  'pocket',
  'rush',
  'yell',
  'put',
  'pant',
  'alreadi',
  'fold',
  'piec',
  'paper',
  'snatch',
  'start',
  'scream',
  'respect',
  'privaci',
  'get',
  'hand',
  'thing',
  'genuinli',
  'dumbfound',
  'told',
  'take',
  'easi',
  'alway',
  'laundri',
  'lash',
  'say',
  'right',
  'come',
  'ask',
  'first',
  'worri',
  'import',
  'document',
  'get',
  'lost',
  'like',
  'one',
  'pull',
  'said',
  'import',
  'document',
  'insid',
  'pocket',
  'ask',
  'see',
  'paper',
  'said',
  'show',
  'ask',
  'said',
  'get',
  'ask',
  'jack',
  'shit',
  'disrespect',
  'privaci',
  'almost',
  'laugh',
  'privaci',
  'pocket',
  'like',
  'stranger',
  'dig',
  'refus',
  'speak',
  'later',
  'brought',
  'new',
  'closet',
  'lock',
  'move',
  'cloth',
  'insid',
  'ask',
  'seriou',
  'said',
  'teach',
  'respect',
  'privaci',
  'deter',
  'snoop',
  'went',
  'back',
  'speak',
  'im',
  'genuin',
  'confus',
  'aita',
  'context_husband',
  'husband_[',
  '[_]',
  ']_use',
  'use_unemploy',
  'unemploy_year',
  'year_recent',
  'recent_start',
  'start_job',
  'job_warehous',
  'warehous_yesterday',
  'yesterday_laundri',
  'laundri_grab',
  'grab_work',
  'work_pant',
  'pant_dig',
  'dig_hand',
  'hand_pocket',
  'pocket_empti',
  'empti_put',
  'put_wash',
  'wash_machin',
  'machin_like',
  'like_alway',
  'alway_husband',
  'husband_happen',
  'happen_walk',
  'walk_saw',
  'saw_search',
  'search_pant',
  'pant_pocket',
  'pocket_rush',
  'rush_yell',
  'yell_put',
  'put_pant',
  'pant_alreadi',
  'alreadi_fold',
  'fold_piec',
  'piec_paper',
  'paper_snatch',
  'snatch_start',
  'start_scream',
  'scream_respect',
  'respect_privaci',
  'privaci_get',
  'get_hand',
  'hand_thing',
  'thing_genuinli',
  'genuinli_dumbfound',
  'dumbfound_told',
  'told_take',
  'take_easi',
  'easi_alway',
  'alway_laundri',
  'laundri_lash',
  'lash_say',
  'say_right',
  'right_come',
  'come_ask',
  'ask_first',
  'first_worri',
  'worri_import',
  'import_document',
  'document_get',
  'get_lost',
  'lost_like',
  'like_one',
  'one_pull',
  'pull_said',
  'said_import',
  'import_document',
  'document_insid',
  'insid_pocket',
  'pocket_ask',
  'ask_see',
  'see_paper',
  'paper_said',
  'said_show',
  'show_ask',
  'ask_said',
  'said_get',
  'get_ask',
  'ask_jack',
  'jack_shit',
  'shit_disrespect',
  'disrespect_privaci',
  'privaci_almost',
  'almost_laugh',
  'laugh_privaci',
  'privaci_pocket',
  'pocket_like',
  'like_stranger',
  'stranger_dig',
  'dig_refus',
  'refus_speak',
  'speak_later',
  'later_brought',
  'brought_new',
  'new_closet',
  'closet_lock',
  'lock_move',
  'move_cloth',
  'cloth_insid',
  'insid_ask',
  'ask_seriou',
  'seriou_said',
  'said_teach',
  'teach_respect',
  'respect_privaci',
  'privaci_deter',
  'deter_snoop',
  'snoop_went',
  'went_back',
  'back_speak',
  'speak_im',
  'im_genuin',
  'genuin_confus',
  'confus_aita',
  'context_husband_[',
  'husband_[_]',
  '[_]_use',
  ']_use_unemploy',
  'use_unemploy_year',
  'unemploy_year_recent',
  'year_recent_start',
  'recent_start_job',
  'start_job_warehous',
  'job_warehous_yesterday',
  'warehous_yesterday_laundri',
  'yesterday_laundri_grab',
  'laundri_grab_work',
  'grab_work_pant',
  'work_pant_dig',
  'pant_dig_hand',
  'dig_hand_pocket',
  'hand_pocket_empti',
  'pocket_empti_put',
  'empti_put_wash',
  'put_wash_machin',
  'wash_machin_like',
  'machin_like_alway',
  'like_alway_husband',
  'alway_husband_happen',
  'husband_happen_walk',
  'happen_walk_saw',
  'walk_saw_search',
  'saw_search_pant',
  'search_pant_pocket',
  'pant_pocket_rush',
  'pocket_rush_yell',
  'rush_yell_put',
  'yell_put_pant',
  'put_pant_alreadi',
  'pant_alreadi_fold',
  'alreadi_fold_piec',
  'fold_piec_paper',
  'piec_paper_snatch',
  'paper_snatch_start',
  'snatch_start_scream',
  'start_scream_respect',
  'scream_respect_privaci',
  'respect_privaci_get',
  'privaci_get_hand',
  'get_hand_thing',
  'hand_thing_genuinli',
  'thing_genuinli_dumbfound',
  'genuinli_dumbfound_told',
  'dumbfound_told_take',
  'told_take_easi',
  'take_easi_alway',
  'easi_alway_laundri',
  'alway_laundri_lash',
  'laundri_lash_say',
  'lash_say_right',
  'say_right_come',
  'right_come_ask',
  'come_ask_first',
  'ask_first_worri',
  'first_worri_import',
  'worri_import_document',
  'import_document_get',
  'document_get_lost',
  'get_lost_like',
  'lost_like_one',
  'like_one_pull',
  'one_pull_said',
  'pull_said_import',
  'said_import_document',
  'import_document_insid',
  'document_insid_pocket',
  'insid_pocket_ask',
  'pocket_ask_see',
  'ask_see_paper',
  'see_paper_said',
  'paper_said_show',
  'said_show_ask',
  'show_ask_said',
  'ask_said_get',
  'said_get_ask',
  'get_ask_jack',
  'ask_jack_shit',
  'jack_shit_disrespect',
  'shit_disrespect_privaci',
  'disrespect_privaci_almost',
  'privaci_almost_laugh',
  'almost_laugh_privaci',
  'laugh_privaci_pocket',
  'privaci_pocket_like',
  'pocket_like_stranger',
  'like_stranger_dig',
  'stranger_dig_refus',
  'dig_refus_speak',
  'refus_speak_later',
  'speak_later_brought',
  'later_brought_new',
  'brought_new_closet',
  'new_closet_lock',
  'closet_lock_move',
  'lock_move_cloth',
  'move_cloth_insid',
  'cloth_insid_ask',
  'insid_ask_seriou',
  'ask_seriou_said',
  'seriou_said_teach',
  'said_teach_respect',
  'teach_respect_privaci',
  'respect_privaci_deter',
  'privaci_deter_snoop',
  'deter_snoop_went',
  'snoop_went_back',
  'went_back_speak',
  'back_speak_im',
  'speak_im_genuin',
  'im_genuin_confus',
  'genuin_confus_aita'],
 ['ms',
  'live',
  'wife',
  'fs',
  'two',
  'kid',
  'wife',
  'parent',
  'stay',
  'us',
  'temporarili',
  'home',
  'seriou',
  'repair',
  'freak',
  'accid',
  'fault',
  'luckili',
  'insur',
  'repair',
  'complet',
  'two',
  'month',
  'realli',
  'get',
  'along',
  'in-law',
  'especi',
  'father-in-law',
  'agre',
  'let',
  'stay',
  'thought',
  'time',
  'would',
  'fli',
  'bad',
  'im',
  'post',
  'guess',
  'wrong',
  'mil',
  'job',
  'fil',
  'work',
  'late',
  'shift',
  'around',
  'pm',
  'get',
  'home',
  'watch',
  'youtub',
  'live',
  'room',
  'play',
  'music',
  'loud',
  'volum',
  'speaker',
  'system',
  'colleg',
  'hous',
  'parti',
  'bass',
  'tear',
  'apart',
  'wall',
  'loud',
  'still',
  'loud',
  'kid',
  'light',
  'sleeper',
  'wake',
  'go',
  'wake',
  'want',
  'make',
  'stop',
  'kid',
  'need',
  'rest',
  'school',
  'need',
  'get',
  'morn',
  'drop',
  'go',
  'work',
  'wife',
  'work',
  'overnight',
  'shift',
  'wit',
  'ive',
  'tri',
  'talk',
  'mil',
  'fil',
  'ask',
  'pleas',
  'keep',
  'nois',
  'kid',
  'bed',
  'time',
  'pm',
  'expect',
  'complet',
  'silenc',
  'realli',
  'think',
  'need',
  'tv',
  'loud',
  'late',
  'night',
  'fil',
  'argu',
  'said',
  'finish',
  'work',
  'til',
  'pm',
  'im',
  'basic',
  'expect',
  'thing',
  'enjoy',
  'work',
  'told',
  'work',
  'day',
  'tough',
  'shit',
  'complain',
  'wife',
  'take',
  'side',
  'say',
  'kid',
  'need',
  'learn',
  'sleep',
  'bit',
  'everyday',
  'nois',
  'told',
  'everyday',
  'nois',
  'mil',
  'excess',
  'noisi',
  'inconsider',
  'see',
  'fil',
  'send',
  'link',
  'buy',
  'earplug',
  'kid',
  'ive',
  'gotten',
  'realli',
  'fed',
  'in-law',
  'hous',
  'theyr',
  'stay',
  'us',
  'guest',
  'think',
  'theyr',
  'realli',
  'selfish',
  'decid',
  'put',
  'parent',
  'control',
  'tv',
  'in-law',
  'cant',
  'use',
  'pm',
  'next',
  'day',
  'time',
  'tv',
  'cant',
  'use',
  'without',
  'put',
  'password',
  'know',
  'affect',
  'wife',
  'get',
  'work',
  'normal',
  'home',
  'ish',
  'fil',
  'incred',
  'piss',
  'said',
  'im',
  'act',
  'like',
  'child',
  'keep',
  'pester',
  'demand',
  'password',
  'wife',
  'also',
  'mad',
  'upset',
  'dad',
  'im',
  'annoy',
  'whole',
  'situat',
  'im',
  'sick',
  'hear',
  'want',
  'know',
  'im',
  'moral',
  'clear',
  'edit',
  'thank',
  'award',
  'ms_live',
  'live_wife',
  'wife_fs',
  'fs_two',
  'two_kid',
  'kid_wife',
  'wife_parent',
  'parent_stay',
  'stay_us',
  'us_temporarili',
  'temporarili_home',
  'home_seriou',
  'seriou_repair',
  'repair_freak',
  'freak_accid',
  'accid_fault',
  'fault_luckili',
  'luckili_insur',
  'insur_repair',
  'repair_complet',
  'complet_two',
  'two_month',
  'month_realli',
  'realli_get',
  'get_along',
  'along_in-law',
  'in-law_especi',
  'especi_father-in-law',
  'father-in-law_agre',
  'agre_let',
  'let_stay',
  'stay_thought',
  'thought_time',
  'time_would',
  'would_fli',
  'fli_bad',
  'bad_im',
  'im_post',
  'post_guess',
  'guess_wrong',
  'wrong_mil',
  'mil_job',
  'job_fil',
  'fil_work',
  'work_late',
  'late_shift',
  'shift_around',
  'around_pm',
  'pm_get',
  'get_home',
  'home_watch',
  'watch_youtub',
  'youtub_live',
  'live_room',
  'room_play',
  'play_music',
  'music_loud',
  'loud_volum',
  'volum_speaker',
  'speaker_system',
  'system_colleg',
  'colleg_hous',
  'hous_parti',
  'parti_bass',
  'bass_tear',
  'tear_apart',
  'apart_wall',
  'wall_loud',
  'loud_still',
  'still_loud',
  'loud_kid',
  'kid_light',
  'light_sleeper',
  'sleeper_wake',
  'wake_go',
  'go_wake',
  'wake_want',
  'want_make',
  'make_stop',
  'stop_kid',
  'kid_need',
  'need_rest',
  'rest_school',
  'school_need',
  'need_get',
  'get_morn',
  'morn_drop',
  'drop_go',
  'go_work',
  'work_wife',
  'wife_work',
  'work_overnight',
  'overnight_shift',
  'shift_wit',
  'wit_ive',
  'ive_tri',
  'tri_talk',
  'talk_mil',
  'mil_fil',
  'fil_ask',
  'ask_pleas',
  'pleas_keep',
  'keep_nois',
  'nois_kid',
  'kid_bed',
  'bed_time',
  'time_pm',
  'pm_expect',
  'expect_complet',
  'complet_silenc',
  'silenc_realli',
  'realli_think',
  'think_need',
  'need_tv',
  'tv_loud',
  'loud_late',
  'late_night',
  'night_fil',
  'fil_argu',
  'argu_said',
  'said_finish',
  'finish_work',
  'work_til',
  'til_pm',
  'pm_im',
  'im_basic',
  'basic_expect',
  'expect_thing',
  'thing_enjoy',
  'enjoy_work',
  'work_told',
  'told_work',
  'work_day',
  'day_tough',
  'tough_shit',
  'shit_complain',
  'complain_wife',
  'wife_take',
  'take_side',
  'side_say',
  'say_kid',
  'kid_need',
  'need_learn',
  'learn_sleep',
  'sleep_bit',
  'bit_everyday',
  'everyday_nois',
  'nois_told',
  'told_everyday',
  'everyday_nois',
  'nois_mil',
  'mil_excess',
  'excess_noisi',
  'noisi_inconsider',
  'inconsider_see',
  'see_fil',
  'fil_send',
  'send_link',
  'link_buy',
  'buy_earplug',
  'earplug_kid',
  'kid_ive',
  'ive_gotten',
  'gotten_realli',
  'realli_fed',
  'fed_in-law',
  'in-law_hous',
  'hous_theyr',
  'theyr_stay',
  'stay_us',
  'us_guest',
  'guest_think',
  'think_theyr',
  'theyr_realli',
  'realli_selfish',
  'selfish_decid',
  'decid_put',
  'put_parent',
  'parent_control',
  'control_tv',
  'tv_in-law',
  'in-law_cant',
  'cant_use',
  'use_pm',
  'pm_next',
  'next_day',
  'day_time',
  'time_tv',
  'tv_cant',
  'cant_use',
  'use_without',
  'without_put',
  'put_password',
  'password_know',
  'know_affect',
  'affect_wife',
  'wife_get',
  'get_work',
  'work_normal',
  'normal_home',
  'home_ish',
  'ish_fil',
  'fil_incred',
  'incred_piss',
  'piss_said',
  'said_im',
  'im_act',
  'act_like',
  'like_child',
  'child_keep',
  'keep_pester',
  'pester_demand',
  'demand_password',
  'password_wife',
  'wife_also',
  'also_mad',
  'mad_upset',
  'upset_dad',
  'dad_im',
  'im_annoy',
  'annoy_whole',
  'whole_situat',
  'situat_im',
  'im_sick',
  'sick_hear',
  'hear_want',
  'want_know',
  'know_im',
  'im_moral',
  'moral_clear',
  'clear_edit',
  'edit_thank',
  'thank_award',
  'ms_live_wife',
  'live_wife_fs',
  'wife_fs_two',
  'fs_two_kid',
  'two_kid_wife',
  'kid_wife_parent',
  'wife_parent_stay',
  'parent_stay_us',
  'stay_us_temporarili',
  'us_temporarili_home',
  'temporarili_home_seriou',
  'home_seriou_repair',
  'seriou_repair_freak',
  'repair_freak_accid',
  'freak_accid_fault',
  'accid_fault_luckili',
  'fault_luckili_insur',
  'luckili_insur_repair',
  'insur_repair_complet',
  'repair_complet_two',
  'complet_two_month',
  'two_month_realli',
  'month_realli_get',
  'realli_get_along',
  'get_along_in-law',
  'along_in-law_especi',
  'in-law_especi_father-in-law',
  'especi_father-in-law_agre',
  'father-in-law_agre_let',
  'agre_let_stay',
  'let_stay_thought',
  'stay_thought_time',
  'thought_time_would',
  'time_would_fli',
  'would_fli_bad',
  'fli_bad_im',
  'bad_im_post',
  'im_post_guess',
  'post_guess_wrong',
  'guess_wrong_mil',
  'wrong_mil_job',
  'mil_job_fil',
  'job_fil_work',
  'fil_work_late',
  'work_late_shift',
  'late_shift_around',
  'shift_around_pm',
  'around_pm_get',
  'pm_get_home',
  'get_home_watch',
  'home_watch_youtub',
  'watch_youtub_live',
  'youtub_live_room',
  'live_room_play',
  'room_play_music',
  'play_music_loud',
  'music_loud_volum',
  'loud_volum_speaker',
  'volum_speaker_system',
  'speaker_system_colleg',
  'system_colleg_hous',
  'colleg_hous_parti',
  'hous_parti_bass',
  'parti_bass_tear',
  'bass_tear_apart',
  'tear_apart_wall',
  'apart_wall_loud',
  'wall_loud_still',
  'loud_still_loud',
  'still_loud_kid',
  'loud_kid_light',
  'kid_light_sleeper',
  'light_sleeper_wake',
  'sleeper_wake_go',
  'wake_go_wake',
  'go_wake_want',
  'wake_want_make',
  'want_make_stop',
  'make_stop_kid',
  'stop_kid_need',
  'kid_need_rest',
  'need_rest_school',
  'rest_school_need',
  'school_need_get',
  'need_get_morn',
  'get_morn_drop',
  'morn_drop_go',
  'drop_go_work',
  'go_work_wife',
  'work_wife_work',
  'wife_work_overnight',
  'work_overnight_shift',
  'overnight_shift_wit',
  'shift_wit_ive',
  'wit_ive_tri',
  'ive_tri_talk',
  'tri_talk_mil',
  'talk_mil_fil',
  'mil_fil_ask',
  'fil_ask_pleas',
  'ask_pleas_keep',
  'pleas_keep_nois',
  'keep_nois_kid',
  'nois_kid_bed',
  'kid_bed_time',
  'bed_time_pm',
  'time_pm_expect',
  'pm_expect_complet',
  'expect_complet_silenc',
  'complet_silenc_realli',
  'silenc_realli_think',
  'realli_think_need',
  'think_need_tv',
  'need_tv_loud',
  'tv_loud_late',
  'loud_late_night',
  'late_night_fil',
  'night_fil_argu',
  'fil_argu_said',
  'argu_said_finish',
  'said_finish_work',
  'finish_work_til',
  'work_til_pm',
  'til_pm_im',
  'pm_im_basic',
  'im_basic_expect',
  'basic_expect_thing',
  'expect_thing_enjoy',
  'thing_enjoy_work',
  'enjoy_work_told',
  'work_told_work',
  'told_work_day',
  'work_day_tough',
  'day_tough_shit',
  'tough_shit_complain',
  'shit_complain_wife',
  'complain_wife_take',
  'wife_take_side',
  'take_side_say',
  'side_say_kid',
  'say_kid_need',
  'kid_need_learn',
  'need_learn_sleep',
  'learn_sleep_bit',
  'sleep_bit_everyday',
  'bit_everyday_nois',
  'everyday_nois_told',
  'nois_told_everyday',
  'told_everyday_nois',
  'everyday_nois_mil',
  'nois_mil_excess',
  'mil_excess_noisi',
  'excess_noisi_inconsider',
  'noisi_inconsider_see',
  'inconsider_see_fil',
  'see_fil_send',
  'fil_send_link',
  'send_link_buy',
  'link_buy_earplug',
  'buy_earplug_kid',
  'earplug_kid_ive',
  'kid_ive_gotten',
  'ive_gotten_realli',
  'gotten_realli_fed',
  'realli_fed_in-law',
  'fed_in-law_hous',
  'in-law_hous_theyr',
  'hous_theyr_stay',
  'theyr_stay_us',
  'stay_us_guest',
  'us_guest_think',
  'guest_think_theyr',
  'think_theyr_realli',
  'theyr_realli_selfish',
  'realli_selfish_decid',
  'selfish_decid_put',
  'decid_put_parent',
  'put_parent_control',
  'parent_control_tv',
  'control_tv_in-law',
  'tv_in-law_cant',
  'in-law_cant_use',
  'cant_use_pm',
  'use_pm_next',
  'pm_next_day',
  'next_day_time',
  'day_time_tv',
  'time_tv_cant',
  'tv_cant_use',
  'cant_use_without',
  'use_without_put',
  'without_put_password',
  'put_password_know',
  'password_know_affect',
  'know_affect_wife',
  'affect_wife_get',
  'wife_get_work',
  'get_work_normal',
  'work_normal_home',
  'normal_home_ish',
  'home_ish_fil',
  'ish_fil_incred',
  'fil_incred_piss',
  'incred_piss_said',
  'piss_said_im',
  'said_im_act',
  'im_act_like',
  'act_like_child',
  'like_child_keep',
  'child_keep_pester',
  'keep_pester_demand',
  'pester_demand_password',
  'demand_password_wife',
  'password_wife_also',
  'wife_also_mad',
  'also_mad_upset',
  'mad_upset_dad',
  'upset_dad_im',
  'dad_im_annoy',
  'im_annoy_whole',
  'annoy_whole_situat',
  'whole_situat_im',
  'situat_im_sick',
  'im_sick_hear',
  'sick_hear_want',
  'hear_want_know',
  'want_know_im',
  'know_im_moral',
  'im_moral_clear',
  'moral_clear_edit',
  'clear_edit_thank',
  'edit_thank_award'],
 ['three',
  'sibl',
  'age',
  'im',
  'oldest',
  'fourth',
  'everi',
  'year',
  'everi',
  'singl',
  'one',
  'birthday',
  'expect',
  'celebr',
  'mom',
  'well',
  'weve',
  'done',
  'sinc',
  'littl',
  'taught',
  'give',
  'thank',
  'carri',
  '+',
  'give',
  'birth',
  'us',
  'im',
  'grate',
  'without',
  'issu',
  'though',
  'becom',
  'less',
  'birthday',
  'more-so',
  'anniversari',
  'day',
  'mom',
  'gave',
  'birth',
  'everi',
  'year',
  'birthday',
  'mom',
  'get',
  'gift',
  'got',
  'older',
  'expect',
  'get',
  'monetari',
  'gift',
  'card',
  'homemad',
  'stuff',
  'recent',
  'birthday',
  'gift',
  'much',
  'need',
  'cloth',
  'dishwar',
  'new',
  'apart',
  'dad',
  'howev',
  'got',
  'mom',
  'new',
  'macbook',
  'sibl',
  'got',
  'gift',
  'youngest',
  'brother',
  'expect',
  'give',
  'much',
  'year',
  'old',
  'sister',
  'year',
  'old',
  'nd',
  'brother',
  'work',
  'theyr',
  'expect',
  'give',
  'gift',
  'sister',
  'pull',
  'asid',
  'birthday',
  'said',
  'sorri',
  'get',
  'much',
  'got',
  'sweater',
  'love',
  'want',
  'get',
  'mom',
  'pressur',
  'get',
  'certain',
  'necklac',
  'mom',
  'appar',
  'mom',
  'drop',
  'hint',
  'month',
  'sister',
  'worri',
  'mom',
  'would',
  'upset',
  'feel',
  'underappreci',
  'get',
  'ask',
  'much',
  'sister',
  'said',
  '$',
  'honestli',
  'lost',
  'mom',
  'chew',
  'later',
  'afternoon',
  'mom',
  'open',
  'gift',
  'think',
  'ridicul',
  'even',
  'want',
  'sister',
  'spend',
  'much',
  'gift',
  'mom',
  'start',
  'cri',
  'dad',
  'kick',
  'mom',
  'answer',
  'call',
  'aunt',
  'mom',
  'sister',
  'call',
  'said',
  'po',
  'respect',
  'mother',
  'im',
  'selfish',
  'narcissist',
  'child',
  'jealou',
  'gift',
  'mom',
  'got',
  'thought',
  'right',
  'know',
  'two',
  'week',
  'mom',
  'answer',
  'call',
  'post',
  'facebook',
  'inspir',
  'quot',
  'let',
  'go',
  'toxic',
  'life',
  'blood',
  'equal',
  'famili',
  'hard',
  'mother',
  'sever',
  'famili',
  'member',
  'aunt',
  'grandma',
  'uncl',
  'two',
  'cousin',
  'repli',
  'post',
  'obvious',
  'direct',
  'vagu',
  'comment',
  'horribl',
  'daughter',
  'idk',
  'think',
  'mani',
  'peopl',
  'side',
  'edit',
  'thank',
  'feedback',
  'think',
  'realli',
  'eye',
  'open',
  'im',
  'go',
  'tri',
  'find',
  'therapist',
  'unload',
  'fuckeri',
  'also',
  'thank',
  'award',
  'feel',
  'inclin',
  'think',
  'would',
  'pretti',
  'cool',
  'donat',
  'instead',
  'cool',
  'chariti',
  'choic',
  'instead',
  'three_sibl',
  'sibl_age',
  'age_im',
  'im_oldest',
  'oldest_fourth',
  'fourth_everi',
  'everi_year',
  'year_everi',
  'everi_singl',
  'singl_one',
  'one_birthday',
  'birthday_expect',
  'expect_celebr',
  'celebr_mom',
  'mom_well',
  'well_weve',
  'weve_done',
  'done_sinc',
  'sinc_littl',
  'littl_taught',
  'taught_give',
  'give_thank',
  'thank_carri',
  'carri_+',
  '+_give',
  'give_birth',
  'birth_us',
  'us_im',
  'im_grate',
  'grate_without',
  'without_issu',
  'issu_though',
  'though_becom',
  'becom_less',
  'less_birthday',
  'birthday_more-so',
  'more-so_anniversari',
  'anniversari_day',
  'day_mom',
  'mom_gave',
  'gave_birth',
  'birth_everi',
  'everi_year',
  'year_birthday',
  'birthday_mom',
  'mom_get',
  'get_gift',
  'gift_got',
  'got_older',
  'older_expect',
  'expect_get',
  'get_monetari',
  'monetari_gift',
  'gift_card',
  'card_homemad',
  'homemad_stuff',
  'stuff_recent',
  'recent_birthday',
  'birthday_gift',
  'gift_much',
  'much_need',
  'need_cloth',
  'cloth_dishwar',
  'dishwar_new',
  'new_apart',
  'apart_dad',
  'dad_howev',
  'howev_got',
  'got_mom',
  'mom_new',
  'new_macbook',
  'macbook_sibl',
  'sibl_got',
  'got_gift',
  'gift_youngest',
  'youngest_brother',
  'brother_expect',
  'expect_give',
  'give_much',
  'much_year',
  'year_old',
  'old_sister',
  'sister_year',
  'year_old',
  'old_nd',
  'nd_brother',
  'brother_work',
  'work_theyr',
  'theyr_expect',
  'expect_give',
  'give_gift',
  'gift_sister',
  'sister_pull',
  'pull_asid',
  'asid_birthday',
  'birthday_said',
  'said_sorri',
  'sorri_get',
  'get_much',
  'much_got',
  'got_sweater',
  'sweater_love',
  'love_want',
  'want_get',
  'get_mom',
  'mom_pressur',
  'pressur_get',
  'get_certain',
  'certain_necklac',
  'necklac_mom',
  'mom_appar',
  'appar_mom',
  'mom_drop',
  'drop_hint',
  'hint_month',
  'month_sister',
  'sister_worri',
  'worri_mom',
  'mom_would',
  'would_upset',
  'upset_feel',
  'feel_underappreci',
  'underappreci_get',
  'get_ask',
  'ask_much',
  'much_sister',
  'sister_said',
  'said_$',
  '$_honestli',
  'honestli_lost',
  'lost_mom',
  'mom_chew',
  'chew_later',
  'later_afternoon',
  'afternoon_mom',
  'mom_open',
  'open_gift',
  'gift_think',
  'think_ridicul',
  'ridicul_even',
  'even_want',
  'want_sister',
  'sister_spend',
  'spend_much',
  'much_gift',
  'gift_mom',
  'mom_start',
  'start_cri',
  'cri_dad',
  'dad_kick',
  'kick_mom',
  'mom_answer',
  'answer_call',
  'call_aunt',
  'aunt_mom',
  'mom_sister',
  'sister_call',
  'call_said',
  'said_po',
  'po_respect',
  'respect_mother',
  'mother_im',
  'im_selfish',
  'selfish_narcissist',
  'narcissist_child',
  'child_jealou',
  'jealou_gift',
  'gift_mom',
  'mom_got',
  'got_thought',
  'thought_right',
  'right_know',
  'know_two',
  'two_week',
  'week_mom',
  'mom_answer',
  'answer_call',
  'call_post',
  'post_facebook',
  'facebook_inspir',
  'inspir_quot',
  'quot_let',
  'let_go',
  'go_toxic',
  'toxic_life',
  'life_blood',
  'blood_equal',
  'equal_famili',
  'famili_hard',
  'hard_mother',
  'mother_sever',
  'sever_famili',
  'famili_member',
  'member_aunt',
  'aunt_grandma',
  'grandma_uncl',
  'uncl_two',
  'two_cousin',
  'cousin_repli',
  'repli_post',
  'post_obvious',
  'obvious_direct',
  'direct_vagu',
  'vagu_comment',
  'comment_horribl',
  'horribl_daughter',
  'daughter_idk',
  'idk_think',
  'think_mani',
  'mani_peopl',
  'peopl_side',
  'side_edit',
  'edit_thank',
  'thank_feedback',
  'feedback_think',
  'think_realli',
  'realli_eye',
  'eye_open',
  'open_im',
  'im_go',
  'go_tri',
  'tri_find',
  'find_therapist',
  'therapist_unload',
  'unload_fuckeri',
  'fuckeri_also',
  'also_thank',
  'thank_award',
  'award_feel',
  'feel_inclin',
  'inclin_think',
  'think_would',
  'would_pretti',
  'pretti_cool',
  'cool_donat',
  'donat_instead',
  'instead_cool',
  'cool_chariti',
  'chariti_choic',
  'choic_instead',
  'three_sibl_age',
  'sibl_age_im',
  'age_im_oldest',
  'im_oldest_fourth',
  'oldest_fourth_everi',
  'fourth_everi_year',
  'everi_year_everi',
  'year_everi_singl',
  'everi_singl_one',
  'singl_one_birthday',
  'one_birthday_expect',
  'birthday_expect_celebr',
  'expect_celebr_mom',
  'celebr_mom_well',
  'mom_well_weve',
  'well_weve_done',
  'weve_done_sinc',
  'done_sinc_littl',
  'sinc_littl_taught',
  'littl_taught_give',
  'taught_give_thank',
  'give_thank_carri',
  'thank_carri_+',
  'carri_+_give',
  '+_give_birth',
  'give_birth_us',
  'birth_us_im',
  'us_im_grate',
  'im_grate_without',
  'grate_without_issu',
  'without_issu_though',
  'issu_though_becom',
  'though_becom_less',
  'becom_less_birthday',
  'less_birthday_more-so',
  'birthday_more-so_anniversari',
  'more-so_anniversari_day',
  'anniversari_day_mom',
  'day_mom_gave',
  'mom_gave_birth',
  'gave_birth_everi',
  'birth_everi_year',
  'everi_year_birthday',
  'year_birthday_mom',
  'birthday_mom_get',
  'mom_get_gift',
  'get_gift_got',
  'gift_got_older',
  'got_older_expect',
  'older_expect_get',
  'expect_get_monetari',
  'get_monetari_gift',
  'monetari_gift_card',
  'gift_card_homemad',
  'card_homemad_stuff',
  'homemad_stuff_recent',
  'stuff_recent_birthday',
  'recent_birthday_gift',
  'birthday_gift_much',
  'gift_much_need',
  'much_need_cloth',
  'need_cloth_dishwar',
  'cloth_dishwar_new',
  'dishwar_new_apart',
  'new_apart_dad',
  'apart_dad_howev',
  'dad_howev_got',
  'howev_got_mom',
  'got_mom_new',
  'mom_new_macbook',
  'new_macbook_sibl',
  'macbook_sibl_got',
  'sibl_got_gift',
  'got_gift_youngest',
  'gift_youngest_brother',
  'youngest_brother_expect',
  'brother_expect_give',
  'expect_give_much',
  'give_much_year',
  'much_year_old',
  'year_old_sister',
  'old_sister_year',
  'sister_year_old',
  'year_old_nd',
  'old_nd_brother',
  'nd_brother_work',
  'brother_work_theyr',
  'work_theyr_expect',
  'theyr_expect_give',
  'expect_give_gift',
  'give_gift_sister',
  'gift_sister_pull',
  'sister_pull_asid',
  'pull_asid_birthday',
  'asid_birthday_said',
  'birthday_said_sorri',
  'said_sorri_get',
  'sorri_get_much',
  'get_much_got',
  'much_got_sweater',
  'got_sweater_love',
  'sweater_love_want',
  'love_want_get',
  'want_get_mom',
  'get_mom_pressur',
  'mom_pressur_get',
  'pressur_get_certain',
  'get_certain_necklac',
  'certain_necklac_mom',
  'necklac_mom_appar',
  'mom_appar_mom',
  'appar_mom_drop',
  'mom_drop_hint',
  'drop_hint_month',
  'hint_month_sister',
  'month_sister_worri',
  'sister_worri_mom',
  'worri_mom_would',
  'mom_would_upset',
  'would_upset_feel',
  'upset_feel_underappreci',
  'feel_underappreci_get',
  'underappreci_get_ask',
  'get_ask_much',
  'ask_much_sister',
  'much_sister_said',
  'sister_said_$',
  'said_$_honestli',
  '$_honestli_lost',
  'honestli_lost_mom',
  'lost_mom_chew',
  'mom_chew_later',
  'chew_later_afternoon',
  'later_afternoon_mom',
  'afternoon_mom_open',
  'mom_open_gift',
  'open_gift_think',
  'gift_think_ridicul',
  'think_ridicul_even',
  'ridicul_even_want',
  'even_want_sister',
  'want_sister_spend',
  'sister_spend_much',
  'spend_much_gift',
  'much_gift_mom',
  'gift_mom_start',
  'mom_start_cri',
  'start_cri_dad',
  'cri_dad_kick',
  'dad_kick_mom',
  'kick_mom_answer',
  'mom_answer_call',
  'answer_call_aunt',
  'call_aunt_mom',
  'aunt_mom_sister',
  'mom_sister_call',
  'sister_call_said',
  'call_said_po',
  'said_po_respect',
  'po_respect_mother',
  'respect_mother_im',
  'mother_im_selfish',
  'im_selfish_narcissist',
  'selfish_narcissist_child',
  'narcissist_child_jealou',
  'child_jealou_gift',
  'jealou_gift_mom',
  'gift_mom_got',
  'mom_got_thought',
  'got_thought_right',
  'thought_right_know',
  'right_know_two',
  'know_two_week',
  'two_week_mom',
  'week_mom_answer',
  'mom_answer_call',
  'answer_call_post',
  'call_post_facebook',
  'post_facebook_inspir',
  'facebook_inspir_quot',
  'inspir_quot_let',
  'quot_let_go',
  'let_go_toxic',
  'go_toxic_life',
  'toxic_life_blood',
  'life_blood_equal',
  'blood_equal_famili',
  'equal_famili_hard',
  'famili_hard_mother',
  'hard_mother_sever',
  'mother_sever_famili',
  'sever_famili_member',
  'famili_member_aunt',
  'member_aunt_grandma',
  'aunt_grandma_uncl',
  'grandma_uncl_two',
  'uncl_two_cousin',
  'two_cousin_repli',
  'cousin_repli_post',
  'repli_post_obvious',
  'post_obvious_direct',
  'obvious_direct_vagu',
  'direct_vagu_comment',
  'vagu_comment_horribl',
  'comment_horribl_daughter',
  'horribl_daughter_idk',
  'daughter_idk_think',
  'idk_think_mani',
  'think_mani_peopl',
  'mani_peopl_side',
  'peopl_side_edit',
  'side_edit_thank',
  'edit_thank_feedback',
  'thank_feedback_think',
  'feedback_think_realli',
  'think_realli_eye',
  'realli_eye_open',
  'eye_open_im',
  'open_im_go',
  'im_go_tri',
  'go_tri_find',
  'tri_find_therapist',
  'find_therapist_unload',
  'therapist_unload_fuckeri',
  'unload_fuckeri_also',
  'fuckeri_also_thank',
  'also_thank_award',
  'thank_award_feel',
  'award_feel_inclin',
  'feel_inclin_think',
  'inclin_think_would',
  'think_would_pretti',
  'would_pretti_cool',
  'pretti_cool_donat',
  'cool_donat_instead',
  'donat_instead_cool',
  'instead_cool_chariti',
  'cool_chariti_choic',
  'chariti_choic_instead'],
 ['context',
  'everi',
  'holiday',
  'mother',
  'would',
  'ask',
  'women',
  'famili',
  'sister',
  'sister',
  'in-law',
  'wife',
  'femal',
  'cousin',
  'send',
  'sampl',
  'dessert',
  'plan',
  'bring',
  'celebr',
  'test',
  'see',
  'dessert',
  'could',
  'make',
  'food',
  'menu',
  'wife',
  'complain',
  'mother',
  'deliber',
  'reject',
  'everi',
  'dessert',
  'sampl',
  'sent',
  'mani',
  'time',
  'mother',
  'told',
  'honest',
  'keep',
  'guest',
  'best',
  'interest',
  'heart',
  'yet',
  'wife',
  'still',
  'thought',
  'mother',
  'deliber',
  'exclud',
  'sinc',
  'dessert',
  'sampl',
  'reject',
  'year',
  'christma',
  'mother',
  'thing',
  'time',
  'told',
  'everi',
  'woman',
  'particip',
  'make',
  'cooki',
  'sampl',
  'send',
  'test',
  'wife',
  'took',
  'challeng',
  'honest',
  'work',
  'realli',
  'hard',
  'make',
  'good',
  'sampl',
  'sent',
  'mother',
  'day',
  'ago',
  'result',
  'came',
  'yesterday',
  'came',
  'home',
  'work',
  'found',
  'wife',
  'upset',
  'ask',
  'wrong',
  'told',
  'mother',
  'reject',
  'sampl',
  'sent',
  'decid',
  'exclud',
  'bake',
  'food',
  'listmenu',
  'christma',
  'year',
  'know',
  'say',
  'told',
  'back',
  'invit',
  'attend',
  'christma',
  'famili',
  'stun',
  'heard',
  'make',
  'statement',
  'tri',
  'talk',
  'said',
  'done',
  'call',
  'unreason',
  'decid',
  'bail',
  'whole',
  'famili',
  'cooki',
  'samplethat',
  'freak',
  'crazi',
  'quit',
  'unreason',
  'full',
  'argument',
  'state',
  'mother',
  'caus',
  'told',
  'mother',
  'pretti',
  'seriou',
  'care',
  'food',
  'offer',
  'guest',
  'sinc',
  'go',
  'rel',
  'come',
  'side',
  'countri',
  'told',
  'stop',
  'mentio',
  'later',
  'heard',
  'cri',
  'despit',
  'tell',
  'bake',
  'amaz',
  'peopl',
  'prefer',
  'aita',
  'insist',
  'decis',
  'unreason',
  'info',
  'ask',
  'whose',
  'cooki',
  'sampl',
  'made',
  'menu',
  'answer',
  'sister',
  'cousin',
  'info',
  'thing',
  'put',
  'wife',
  'one',
  'whose',
  'sampl',
  'reject',
  'sil',
  'brother',
  'wife',
  'younger',
  'sister',
  'mother',
  'forc',
  'anyon',
  'particip',
  'whoever',
  'want',
  'take',
  'part',
  'dessert',
  'sinc',
  'mother',
  'tend',
  'care',
  'categori',
  'type',
  'food',
  'dishesappetizerssaladsstuff',
  'like',
  'welcom',
  'state',
  'updat',
  'great',
  'got',
  'phone',
  'brother',
  'told',
  'wife',
  'thing',
  'wife',
  'decid',
  'back',
  'invit',
  'spend',
  'christma',
  'famili',
  'well',
  'turn',
  'wife',
  'mustv',
  'told',
  'decis',
  'decid',
  'follow',
  'lead',
  'brother',
  'piss',
  'say',
  'wife',
  'encourag',
  'wife',
  'see',
  'problem',
  'gotten',
  'bigger',
  'know',
  'younger',
  'sister',
  'might',
  'join',
  'decid',
  'go',
  'well',
  'know',
  'got',
  'control',
  'quickli',
  'guess',
  'well',
  'tri',
  'discuss',
  'mother',
  'soon',
  'see',
  'goe',
  'context_everi',
  'everi_holiday',
  'holiday_mother',
  'mother_would',
  'would_ask',
  'ask_women',
  'women_famili',
  'famili_sister',
  'sister_sister',
  'sister_in-law',
  'in-law_wife',
  'wife_femal',
  'femal_cousin',
  'cousin_send',
  'send_sampl',
  'sampl_dessert',
  'dessert_plan',
  'plan_bring',
  'bring_celebr',
  'celebr_test',
  'test_see',
  'see_dessert',
  'dessert_could',
  'could_make',
  'make_food',
  'food_menu',
  'menu_wife',
  'wife_complain',
  'complain_mother',
  'mother_deliber',
  'deliber_reject',
  'reject_everi',
  'everi_dessert',
  'dessert_sampl',
  'sampl_sent',
  'sent_mani',
  'mani_time',
  'time_mother',
  'mother_told',
  'told_honest',
  'honest_keep',
  'keep_guest',
  'guest_best',
  'best_interest',
  'interest_heart',
  'heart_yet',
  'yet_wife',
  'wife_still',
  'still_thought',
  'thought_mother',
  'mother_deliber',
  'deliber_exclud',
  'exclud_sinc',
  'sinc_dessert',
  'dessert_sampl',
  'sampl_reject',
  'reject_year',
  'year_christma',
  'christma_mother',
  'mother_thing',
  'thing_time',
  'time_told',
  'told_everi',
  'everi_woman',
  'woman_particip',
  'particip_make',
  'make_cooki',
  'cooki_sampl',
  'sampl_send',
  'send_test',
  'test_wife',
  'wife_took',
  'took_challeng',
  'challeng_honest',
  'honest_work',
  'work_realli',
  'realli_hard',
  'hard_make',
  'make_good',
  'good_sampl',
  'sampl_sent',
  'sent_mother',
  'mother_day',
  'day_ago',
  'ago_result',
  'result_came',
  'came_yesterday',
  'yesterday_came',
  'came_home',
  'home_work',
  'work_found',
  'found_wife',
  'wife_upset',
  'upset_ask',
  'ask_wrong',
  'wrong_told',
  'told_mother',
  'mother_reject',
  'reject_sampl',
  'sampl_sent',
  'sent_decid',
  'decid_exclud',
  'exclud_bake',
  'bake_food',
  'food_listmenu',
  'listmenu_christma',
  'christma_year',
  'year_know',
  'know_say',
  'say_told',
  'told_back',
  'back_invit',
  'invit_attend',
  'attend_christma',
  'christma_famili',
  'famili_stun',
  'stun_heard',
  'heard_make',
  'make_statement',
  'statement_tri',
  'tri_talk',
  'talk_said',
  'said_done',
  'done_call',
  'call_unreason',
  'unreason_decid',
  'decid_bail',
  'bail_whole',
  'whole_famili',
  'famili_cooki',
  'cooki_samplethat',
  'samplethat_freak',
  'freak_crazi',
  'crazi_quit',
  'quit_unreason',
  'unreason_full',
  'full_argument',
  'argument_state',
  'state_mother',
  'mother_caus',
  'caus_told',
  'told_mother',
  'mother_pretti',
  'pretti_seriou',
  'seriou_care',
  'care_food',
  'food_offer',
  'offer_guest',
  'guest_sinc',
  'sinc_go',
  'go_rel',
  'rel_come',
  'come_side',
  'side_countri',
  'countri_told',
  'told_stop',
  'stop_mentio',
  'mentio_later',
  'later_heard',
  'heard_cri',
  'cri_despit',
  'despit_tell',
  'tell_bake',
  'bake_amaz',
  'amaz_peopl',
  'peopl_prefer',
  'prefer_aita',
  'aita_insist',
  'insist_decis',
  'decis_unreason',
  'unreason_info',
  'info_ask',
  'ask_whose',
  'whose_cooki',
  'cooki_sampl',
  'sampl_made',
  'made_menu',
  'menu_answer',
  'answer_sister',
  'sister_cousin',
  'cousin_info',
  'info_thing',
  'thing_put',
  'put_wife',
  'wife_one',
  'one_whose',
  'whose_sampl',
  'sampl_reject',
  'reject_sil',
  'sil_brother',
  'brother_wife',
  'wife_younger',
  'younger_sister',
  'sister_mother',
  'mother_forc',
  'forc_anyon',
  'anyon_particip',
  'particip_whoever',
  'whoever_want',
  'want_take',
  'take_part',
  'part_dessert',
  'dessert_sinc',
  'sinc_mother',
  'mother_tend',
  'tend_care',
  'care_categori',
  'categori_type',
  'type_food',
  'food_dishesappetizerssaladsstuff',
  'dishesappetizerssaladsstuff_like',
  'like_welcom',
  'welcom_state',
  'state_updat',
  'updat_great',
  'great_got',
  'got_phone',
  'phone_brother',
  'brother_told',
  'told_wife',
  'wife_thing',
  'thing_wife',
  'wife_decid',
  'decid_back',
  'back_invit',
  'invit_spend',
  'spend_christma',
  'christma_famili',
  'famili_well',
  'well_turn',
  'turn_wife',
  'wife_mustv',
  'mustv_told',
  'told_decis',
  'decis_decid',
  'decid_follow',
  'follow_lead',
  'lead_brother',
  'brother_piss',
  'piss_say',
  'say_wife',
  'wife_encourag',
  'encourag_wife',
  'wife_see',
  'see_problem',
  'problem_gotten',
  'gotten_bigger',
  'bigger_know',
  'know_younger',
  'younger_sister',
  'sister_might',
  'might_join',
  'join_decid',
  'decid_go',
  'go_well',
  'well_know',
  'know_got',
  'got_control',
  'control_quickli',
  'quickli_guess',
  'guess_well',
  'well_tri',
  'tri_discuss',
  'discuss_mother',
  'mother_soon',
  'soon_see',
  'see_goe',
  'context_everi_holiday',
  'everi_holiday_mother',
  'holiday_mother_would',
  'mother_would_ask',
  'would_ask_women',
  'ask_women_famili',
  'women_famili_sister',
  'famili_sister_sister',
  'sister_sister_in-law',
  'sister_in-law_wife',
  'in-law_wife_femal',
  'wife_femal_cousin',
  'femal_cousin_send',
  'cousin_send_sampl',
  'send_sampl_dessert',
  'sampl_dessert_plan',
  'dessert_plan_bring',
  'plan_bring_celebr',
  'bring_celebr_test',
  'celebr_test_see',
  'test_see_dessert',
  'see_dessert_could',
  'dessert_could_make',
  'could_make_food',
  'make_food_menu',
  'food_menu_wife',
  'menu_wife_complain',
  'wife_complain_mother',
  'complain_mother_deliber',
  'mother_deliber_reject',
  'deliber_reject_everi',
  'reject_everi_dessert',
  'everi_dessert_sampl',
  'dessert_sampl_sent',
  'sampl_sent_mani',
  'sent_mani_time',
  'mani_time_mother',
  'time_mother_told',
  'mother_told_honest',
  'told_honest_keep',
  'honest_keep_guest',
  'keep_guest_best',
  'guest_best_interest',
  'best_interest_heart',
  'interest_heart_yet',
  'heart_yet_wife',
  'yet_wife_still',
  'wife_still_thought',
  'still_thought_mother',
  'thought_mother_deliber',
  'mother_deliber_exclud',
  'deliber_exclud_sinc',
  'exclud_sinc_dessert',
  'sinc_dessert_sampl',
  'dessert_sampl_reject',
  'sampl_reject_year',
  'reject_year_christma',
  'year_christma_mother',
  'christma_mother_thing',
  'mother_thing_time',
  'thing_time_told',
  'time_told_everi',
  'told_everi_woman',
  'everi_woman_particip',
  'woman_particip_make',
  'particip_make_cooki',
  'make_cooki_sampl',
  'cooki_sampl_send',
  'sampl_send_test',
  'send_test_wife',
  'test_wife_took',
  'wife_took_challeng',
  'took_challeng_honest',
  'challeng_honest_work',
  'honest_work_realli',
  'work_realli_hard',
  'realli_hard_make',
  'hard_make_good',
  'make_good_sampl',
  'good_sampl_sent',
  'sampl_sent_mother',
  'sent_mother_day',
  'mother_day_ago',
  'day_ago_result',
  'ago_result_came',
  'result_came_yesterday',
  'came_yesterday_came',
  'yesterday_came_home',
  'came_home_work',
  'home_work_found',
  'work_found_wife',
  'found_wife_upset',
  'wife_upset_ask',
  'upset_ask_wrong',
  'ask_wrong_told',
  'wrong_told_mother',
  'told_mother_reject',
  'mother_reject_sampl',
  'reject_sampl_sent',
  'sampl_sent_decid',
  'sent_decid_exclud',
  'decid_exclud_bake',
  'exclud_bake_food',
  'bake_food_listmenu',
  'food_listmenu_christma',
  'listmenu_christma_year',
  'christma_year_know',
  'year_know_say',
  'know_say_told',
  'say_told_back',
  'told_back_invit',
  'back_invit_attend',
  'invit_attend_christma',
  'attend_christma_famili',
  'christma_famili_stun',
  'famili_stun_heard',
  'stun_heard_make',
  'heard_make_statement',
  'make_statement_tri',
  'statement_tri_talk',
  'tri_talk_said',
  'talk_said_done',
  'said_done_call',
  'done_call_unreason',
  'call_unreason_decid',
  'unreason_decid_bail',
  'decid_bail_whole',
  'bail_whole_famili',
  'whole_famili_cooki',
  'famili_cooki_samplethat',
  'cooki_samplethat_freak',
  'samplethat_freak_crazi',
  'freak_crazi_quit',
  'crazi_quit_unreason',
  'quit_unreason_full',
  'unreason_full_argument',
  'full_argument_state',
  'argument_state_mother',
  'state_mother_caus',
  'mother_caus_told',
  'caus_told_mother',
  'told_mother_pretti',
  'mother_pretti_seriou',
  'pretti_seriou_care',
  'seriou_care_food',
  'care_food_offer',
  'food_offer_guest',
  'offer_guest_sinc',
  'guest_sinc_go',
  'sinc_go_rel',
  'go_rel_come',
  'rel_come_side',
  'come_side_countri',
  'side_countri_told',
  'countri_told_stop',
  'told_stop_mentio',
  'stop_mentio_later',
  'mentio_later_heard',
  'later_heard_cri',
  'heard_cri_despit',
  'cri_despit_tell',
  'despit_tell_bake',
  'tell_bake_amaz',
  'bake_amaz_peopl',
  'amaz_peopl_prefer',
  'peopl_prefer_aita',
  'prefer_aita_insist',
  'aita_insist_decis',
  'insist_decis_unreason',
  'decis_unreason_info',
  'unreason_info_ask',
  'info_ask_whose',
  'ask_whose_cooki',
  'whose_cooki_sampl',
  'cooki_sampl_made',
  'sampl_made_menu',
  'made_menu_answer',
  'menu_answer_sister',
  'answer_sister_cousin',
  'sister_cousin_info',
  'cousin_info_thing',
  'info_thing_put',
  'thing_put_wife',
  'put_wife_one',
  'wife_one_whose',
  'one_whose_sampl',
  'whose_sampl_reject',
  'sampl_reject_sil',
  'reject_sil_brother',
  'sil_brother_wife',
  'brother_wife_younger',
  'wife_younger_sister',
  'younger_sister_mother',
  'sister_mother_forc',
  'mother_forc_anyon',
  'forc_anyon_particip',
  'anyon_particip_whoever',
  'particip_whoever_want',
  'whoever_want_take',
  'want_take_part',
  'take_part_dessert',
  'part_dessert_sinc',
  'dessert_sinc_mother',
  'sinc_mother_tend',
  'mother_tend_care',
  'tend_care_categori',
  'care_categori_type',
  'categori_type_food',
  'type_food_dishesappetizerssaladsstuff',
  'food_dishesappetizerssaladsstuff_like',
  'dishesappetizerssaladsstuff_like_welcom',
  'like_welcom_state',
  'welcom_state_updat',
  'state_updat_great',
  'updat_great_got',
  'great_got_phone',
  'got_phone_brother',
  'phone_brother_told',
  'brother_told_wife',
  'told_wife_thing',
  'wife_thing_wife',
  'thing_wife_decid',
  'wife_decid_back',
  'decid_back_invit',
  'back_invit_spend',
  'invit_spend_christma',
  'spend_christma_famili',
  'christma_famili_well',
  'famili_well_turn',
  'well_turn_wife',
  'turn_wife_mustv',
  'wife_mustv_told',
  'mustv_told_decis',
  'told_decis_decid',
  'decis_decid_follow',
  'decid_follow_lead',
  'follow_lead_brother',
  'lead_brother_piss',
  'brother_piss_say',
  'piss_say_wife',
  'say_wife_encourag',
  'wife_encourag_wife',
  'encourag_wife_see',
  'wife_see_problem',
  'see_problem_gotten',
  'problem_gotten_bigger',
  'gotten_bigger_know',
  'bigger_know_younger',
  'know_younger_sister',
  'younger_sister_might',
  'sister_might_join',
  'might_join_decid',
  'join_decid_go',
  'decid_go_well',
  'go_well_know',
  'well_know_got',
  'know_got_control',
  'got_control_quickli',
  'control_quickli_guess',
  'quickli_guess_well',
  'guess_well_tri',
  'well_tri_discuss',
  'tri_discuss_mother',
  'discuss_mother_soon',
  'mother_soon_see',
  'soon_see_goe'],
 ['husband',
  'know',
  'cook',
  'also',
  'fan',
  'food',
  'cook',
  'countri',
  'origin',
  'see',
  'live',
  'fast',
  'food',
  'motiv',
  'learn',
  'cook',
  'famili',
  'common',
  'meal',
  'took',
  'get',
  'done',
  'properli',
  'cook',
  'entir',
  'list',
  'favorit',
  'meal',
  'prais',
  'cook',
  'encourag',
  'learn',
  'eat',
  'dinner',
  'parent',
  'hous',
  'excus',
  'go',
  'wash',
  'hand',
  'done',
  'left',
  'tabl',
  'husband',
  'still',
  'eat',
  'make',
  'way',
  'back',
  'heard',
  'dad',
  'tell',
  'take',
  'easi',
  'eat',
  'lot',
  'ask',
  'husband',
  'cook',
  'eat',
  'well',
  'home',
  'husband',
  'said',
  'cook',
  'food',
  'make',
  'fed',
  'pig',
  'human',
  'hurt',
  'offend',
  'show',
  'infront',
  'told',
  'longer',
  'cook',
  'comment',
  'turn',
  'seat',
  'walk',
  'right',
  'past',
  'took',
  'purs',
  'said',
  'head',
  'home',
  'got',
  'back',
  'later',
  'say',
  'like',
  'even',
  'happi',
  'still',
  'eat',
  'food',
  'still',
  'perfect',
  'yet',
  'said',
  'tri',
  'protect',
  'feel',
  'hurt',
  'said',
  'cook',
  'anymor',
  'edit',
  '~',
  'im',
  'sorri',
  'post',
  'went',
  'read',
  'comment',
  'felt',
  'hasit',
  'respond',
  'im',
  'overwhelm',
  'want',
  'let',
  'interest',
  'detail',
  'husband',
  'stay',
  'dad',
  'right',
  'cook',
  'said',
  'thought',
  'overreact',
  'actual',
  'go',
  'basic',
  'starv',
  'go',
  'threat',
  'told',
  'could',
  'stay',
  'said',
  'back',
  'til',
  'go',
  'back',
  'cook',
  'see',
  'happen',
  'anytim',
  'soon',
  'stay',
  'pressur',
  'husband_know',
  'know_cook',
  'cook_also',
  'also_fan',
  'fan_food',
  'food_cook',
  'cook_countri',
  'countri_origin',
  'origin_see',
  'see_live',
  'live_fast',
  'fast_food',
  'food_motiv',
  'motiv_learn',
  'learn_cook',
  'cook_famili',
  'famili_common',
  'common_meal',
  'meal_took',
  'took_get',
  'get_done',
  'done_properli',
  'properli_cook',
  'cook_entir',
  'entir_list',
  'list_favorit',
  'favorit_meal',
  'meal_prais',
  'prais_cook',
  'cook_encourag',
  'encourag_learn',
  'learn_eat',
  'eat_dinner',
  'dinner_parent',
  'parent_hous',
  'hous_excus',
  'excus_go',
  'go_wash',
  'wash_hand',
  'hand_done',
  'done_left',
  'left_tabl',
  'tabl_husband',
  'husband_still',
  'still_eat',
  'eat_make',
  'make_way',
  'way_back',
  'back_heard',
  'heard_dad',
  'dad_tell',
  'tell_take',
  'take_easi',
  'easi_eat',
  'eat_lot',
  'lot_ask',
  'ask_husband',
  'husband_cook',
  'cook_eat',
  'eat_well',
  'well_home',
  'home_husband',
  'husband_said',
  'said_cook',
  'cook_food',
  'food_make',
  'make_fed',
  'fed_pig',
  'pig_human',
  'human_hurt',
  'hurt_offend',
  'offend_show',
  'show_infront',
  'infront_told',
  'told_longer',
  'longer_cook',
  'cook_comment',
  'comment_turn',
  'turn_seat',
  'seat_walk',
  'walk_right',
  'right_past',
  'past_took',
  'took_purs',
  'purs_said',
  'said_head',
  'head_home',
  'home_got',
  'got_back',
  'back_later',
  'later_say',
  'say_like',
  'like_even',
  'even_happi',
  'happi_still',
  'still_eat',
  'eat_food',
  'food_still',
  'still_perfect',
  'perfect_yet',
  'yet_said',
  'said_tri',
  'tri_protect',
  'protect_feel',
  'feel_hurt',
  'hurt_said',
  'said_cook',
  'cook_anymor',
  'anymor_edit',
  'edit_~',
  '~_im',
  'im_sorri',
  'sorri_post',
  'post_went',
  'went_read',
  'read_comment',
  'comment_felt',
  'felt_hasit',
  'hasit_respond',
  'respond_im',
  'im_overwhelm',
  'overwhelm_want',
  'want_let',
  'let_interest',
  'interest_detail',
  'detail_husband',
  'husband_stay',
  'stay_dad',
  'dad_right',
  'right_cook',
  'cook_said',
  'said_thought',
  'thought_overreact',
  'overreact_actual',
  'actual_go',
  'go_basic',
  'basic_starv',
  'starv_go',
  'go_threat',
  'threat_told',
  'told_could',
  'could_stay',
  'stay_said',
  'said_back',
  'back_til',
  'til_go',
  'go_back',
  'back_cook',
  'cook_see',
  'see_happen',
  'happen_anytim',
  'anytim_soon',
  'soon_stay',
  'stay_pressur',
  'husband_know_cook',
  'know_cook_also',
  'cook_also_fan',
  'also_fan_food',
  'fan_food_cook',
  'food_cook_countri',
  'cook_countri_origin',
  'countri_origin_see',
  'origin_see_live',
  'see_live_fast',
  'live_fast_food',
  'fast_food_motiv',
  'food_motiv_learn',
  'motiv_learn_cook',
  'learn_cook_famili',
  'cook_famili_common',
  'famili_common_meal',
  'common_meal_took',
  'meal_took_get',
  'took_get_done',
  'get_done_properli',
  'done_properli_cook',
  'properli_cook_entir',
  'cook_entir_list',
  'entir_list_favorit',
  'list_favorit_meal',
  'favorit_meal_prais',
  'meal_prais_cook',
  'prais_cook_encourag',
  'cook_encourag_learn',
  'encourag_learn_eat',
  'learn_eat_dinner',
  'eat_dinner_parent',
  'dinner_parent_hous',
  'parent_hous_excus',
  'hous_excus_go',
  'excus_go_wash',
  'go_wash_hand',
  'wash_hand_done',
  'hand_done_left',
  'done_left_tabl',
  'left_tabl_husband',
  'tabl_husband_still',
  'husband_still_eat',
  'still_eat_make',
  'eat_make_way',
  'make_way_back',
  'way_back_heard',
  'back_heard_dad',
  'heard_dad_tell',
  'dad_tell_take',
  'tell_take_easi',
  'take_easi_eat',
  'easi_eat_lot',
  'eat_lot_ask',
  'lot_ask_husband',
  'ask_husband_cook',
  'husband_cook_eat',
  'cook_eat_well',
  'eat_well_home',
  'well_home_husband',
  'home_husband_said',
  'husband_said_cook',
  'said_cook_food',
  'cook_food_make',
  'food_make_fed',
  'make_fed_pig',
  'fed_pig_human',
  'pig_human_hurt',
  'human_hurt_offend',
  'hurt_offend_show',
  'offend_show_infront',
  'show_infront_told',
  'infront_told_longer',
  'told_longer_cook',
  'longer_cook_comment',
  'cook_comment_turn',
  'comment_turn_seat',
  'turn_seat_walk',
  'seat_walk_right',
  'walk_right_past',
  'right_past_took',
  'past_took_purs',
  'took_purs_said',
  'purs_said_head',
  'said_head_home',
  'head_home_got',
  'home_got_back',
  'got_back_later',
  'back_later_say',
  'later_say_like',
  'say_like_even',
  'like_even_happi',
  'even_happi_still',
  'happi_still_eat',
  'still_eat_food',
  'eat_food_still',
  'food_still_perfect',
  'still_perfect_yet',
  'perfect_yet_said',
  'yet_said_tri',
  'said_tri_protect',
  'tri_protect_feel',
  'protect_feel_hurt',
  'feel_hurt_said',
  'hurt_said_cook',
  'said_cook_anymor',
  'cook_anymor_edit',
  'anymor_edit_~',
  'edit_~_im',
  '~_im_sorri',
  'im_sorri_post',
  'sorri_post_went',
  'post_went_read',
  'went_read_comment',
  'read_comment_felt',
  'comment_felt_hasit',
  'felt_hasit_respond',
  'hasit_respond_im',
  'respond_im_overwhelm',
  'im_overwhelm_want',
  'overwhelm_want_let',
  'want_let_interest',
  'let_interest_detail',
  'interest_detail_husband',
  'detail_husband_stay',
  'husband_stay_dad',
  'stay_dad_right',
  'dad_right_cook',
  'right_cook_said',
  'cook_said_thought',
  'said_thought_overreact',
  'thought_overreact_actual',
  'overreact_actual_go',
  'actual_go_basic',
  'go_basic_starv',
  'basic_starv_go',
  'starv_go_threat',
  'go_threat_told',
  'threat_told_could',
  'told_could_stay',
  'could_stay_said',
  'stay_said_back',
  'said_back_til',
  'back_til_go',
  'til_go_back',
  'go_back_cook',
  'back_cook_see',
  'cook_see_happen',
  'see_happen_anytim',
  'happen_anytim_soon',
  'anytim_soon_stay',
  'soon_stay_pressur'],
 ['titl',
  'sound',
  'bad',
  'hear',
  'stepson',
  'rowan',
  'got',
  'engag',
  'fiance',
  'come',
  'highli',
  'conserv',
  'famili',
  'live',
  'togeth',
  'til',
  'marriag',
  'theyr',
  'great',
  'term',
  'say',
  'parent',
  'bit',
  'much',
  'engag',
  'parti',
  'held',
  'restaur',
  'drove',
  'wife',
  'rowan',
  'snd',
  'best',
  'friend',
  'jack',
  'rowan',
  'car',
  'need',
  'work',
  'thing',
  'went',
  'quit',
  'well',
  'parti',
  'end',
  'everyon',
  'went',
  'home',
  'way',
  'back',
  'stop',
  'store',
  'could',
  'grab',
  'someth',
  'year',
  'old',
  'son',
  'rowan',
  'jack',
  'wait',
  'car',
  'rowan',
  'jack',
  'kept',
  'laugh',
  'young',
  'ladi',
  'walk',
  'toward',
  'us',
  'caus',
  'car',
  'park',
  'next',
  'mine',
  'park',
  'lot',
  'rowan',
  'kept',
  'tri',
  'speak',
  'tri',
  'load',
  'stuff',
  'car',
  'jack',
  'kept',
  'throw',
  'word',
  'serm',
  'annoy',
  'jack',
  'said',
  'hey',
  'want',
  'look',
  '*',
  '*',
  'rowan',
  'said',
  'let',
  'see',
  'jiggl',
  'babi',
  'appal',
  'told',
  'knock',
  'rowan',
  'satcast',
  'repli',
  'relax',
  'give',
  'compliment',
  'bet',
  'get',
  'mani',
  'often',
  'ladi',
  'got',
  'car',
  'start',
  'argu',
  'behavior',
  'shame',
  'act',
  'like',
  'engag',
  'night',
  'argu',
  'back',
  'say',
  'someth',
  'car',
  'lost',
  'told',
  'get',
  'immedi',
  'jack',
  'got',
  'involv',
  'kick',
  'wife',
  'got',
  'back',
  'start',
  'engag',
  'argument',
  'sayingi',
  'cant',
  'let',
  'son',
  'walk',
  'home',
  'emgag',
  'parti',
  'repli',
  'son',
  'cant',
  'harrass',
  'women',
  'way',
  'back',
  'engag',
  'parti',
  'kept',
  'defend',
  'told',
  'either',
  'stay',
  'get',
  'car',
  'drove',
  'rowan',
  'come',
  'home',
  'wife',
  'gave',
  'hell',
  'later',
  'found',
  'stay',
  'one',
  'guy',
  'friend',
  'place',
  'understand',
  'piss',
  'refus',
  'see',
  'wife',
  'said',
  'fault',
  'escal',
  'situat',
  'ober',
  'stupid',
  'shit',
  'boy',
  'age',
  'time',
  'told',
  'cant',
  'car',
  'took',
  'hold',
  'head',
  'said',
  'never',
  'made',
  'walk',
  'night',
  'engag',
  'demand',
  'apolog',
  'aita',
  'kick',
  'friend',
  'car',
  'engag',
  'night',
  'titl_sound',
  'sound_bad',
  'bad_hear',
  'hear_stepson',
  'stepson_rowan',
  'rowan_got',
  'got_engag',
  'engag_fiance',
  'fiance_come',
  'come_highli',
  'highli_conserv',
  'conserv_famili',
  'famili_live',
  'live_togeth',
  'togeth_til',
  'til_marriag',
  'marriag_theyr',
  'theyr_great',
  'great_term',
  'term_say',
  'say_parent',
  'parent_bit',
  'bit_much',
  'much_engag',
  'engag_parti',
  'parti_held',
  'held_restaur',
  'restaur_drove',
  'drove_wife',
  'wife_rowan',
  'rowan_snd',
  'snd_best',
  'best_friend',
  'friend_jack',
  'jack_rowan',
  'rowan_car',
  'car_need',
  'need_work',
  'work_thing',
  'thing_went',
  'went_quit',
  'quit_well',
  'well_parti',
  'parti_end',
  'end_everyon',
  'everyon_went',
  'went_home',
  'home_way',
  'way_back',
  'back_stop',
  'stop_store',
  'store_could',
  'could_grab',
  'grab_someth',
  'someth_year',
  'year_old',
  'old_son',
  'son_rowan',
  'rowan_jack',
  'jack_wait',
  'wait_car',
  'car_rowan',
  'rowan_jack',
  'jack_kept',
  'kept_laugh',
  'laugh_young',
  'young_ladi',
  'ladi_walk',
  'walk_toward',
  'toward_us',
  'us_caus',
  'caus_car',
  'car_park',
  'park_next',
  'next_mine',
  'mine_park',
  'park_lot',
  'lot_rowan',
  'rowan_kept',
  'kept_tri',
  'tri_speak',
  'speak_tri',
  'tri_load',
  'load_stuff',
  'stuff_car',
  'car_jack',
  'jack_kept',
  'kept_throw',
  'throw_word',
  'word_serm',
  'serm_annoy',
  'annoy_jack',
  'jack_said',
  'said_hey',
  'hey_want',
  'want_look',
  'look_*',
  '*_*',
  '*_rowan',
  'rowan_said',
  'said_let',
  'let_see',
  'see_jiggl',
  'jiggl_babi',
  'babi_appal',
  'appal_told',
  'told_knock',
  'knock_rowan',
  'rowan_satcast',
  'satcast_repli',
  'repli_relax',
  'relax_give',
  'give_compliment',
  'compliment_bet',
  'bet_get',
  'get_mani',
  'mani_often',
  'often_ladi',
  'ladi_got',
  'got_car',
  'car_start',
  'start_argu',
  'argu_behavior',
  'behavior_shame',
  'shame_act',
  'act_like',
  'like_engag',
  'engag_night',
  'night_argu',
  'argu_back',
  'back_say',
  'say_someth',
  'someth_car',
  'car_lost',
  'lost_told',
  'told_get',
  'get_immedi',
  'immedi_jack',
  'jack_got',
  'got_involv',
  'involv_kick',
  'kick_wife',
  'wife_got',
  'got_back',
  'back_start',
  'start_engag',
  'engag_argument',
  'argument_sayingi',
  'sayingi_cant',
  'cant_let',
  'let_son',
  'son_walk',
  'walk_home',
  'home_emgag',
  'emgag_parti',
  'parti_repli',
  'repli_son',
  'son_cant',
  'cant_harrass',
  'harrass_women',
  'women_way',
  'way_back',
  'back_engag',
  'engag_parti',
  'parti_kept',
  'kept_defend',
  'defend_told',
  'told_either',
  'either_stay',
  'stay_get',
  'get_car',
  'car_drove',
  'drove_rowan',
  'rowan_come',
  'come_home',
  'home_wife',
  'wife_gave',
  'gave_hell',
  'hell_later',
  'later_found',
  'found_stay',
  'stay_one',
  'one_guy',
  'guy_friend',
  'friend_place',
  'place_understand',
  'understand_piss',
  'piss_refus',
  'refus_see',
  'see_wife',
  'wife_said',
  'said_fault',
  'fault_escal',
  'escal_situat',
  'situat_ober',
  'ober_stupid',
  'stupid_shit',
  'shit_boy',
  'boy_age',
  'age_time',
  'time_told',
  'told_cant',
  'cant_car',
  'car_took',
  'took_hold',
  'hold_head',
  'head_said',
  'said_never',
  'never_made',
  'made_walk',
  'walk_night',
  'night_engag',
  'engag_demand',
  'demand_apolog',
  'apolog_aita',
  'aita_kick',
  'kick_friend',
  'friend_car',
  'car_engag',
  'engag_night',
  'titl_sound_bad',
  'sound_bad_hear',
  'bad_hear_stepson',
  'hear_stepson_rowan',
  'stepson_rowan_got',
  'rowan_got_engag',
  'got_engag_fiance',
  'engag_fiance_come',
  'fiance_come_highli',
  'come_highli_conserv',
  'highli_conserv_famili',
  'conserv_famili_live',
  'famili_live_togeth',
  'live_togeth_til',
  'togeth_til_marriag',
  'til_marriag_theyr',
  'marriag_theyr_great',
  'theyr_great_term',
  'great_term_say',
  'term_say_parent',
  'say_parent_bit',
  'parent_bit_much',
  'bit_much_engag',
  'much_engag_parti',
  'engag_parti_held',
  'parti_held_restaur',
  'held_restaur_drove',
  'restaur_drove_wife',
  'drove_wife_rowan',
  'wife_rowan_snd',
  'rowan_snd_best',
  'snd_best_friend',
  'best_friend_jack',
  'friend_jack_rowan',
  'jack_rowan_car',
  'rowan_car_need',
  'car_need_work',
  'need_work_thing',
  'work_thing_went',
  'thing_went_quit',
  'went_quit_well',
  'quit_well_parti',
  'well_parti_end',
  'parti_end_everyon',
  'end_everyon_went',
  'everyon_went_home',
  'went_home_way',
  'home_way_back',
  'way_back_stop',
  'back_stop_store',
  'stop_store_could',
  'store_could_grab',
  'could_grab_someth',
  'grab_someth_year',
  'someth_year_old',
  'year_old_son',
  'old_son_rowan',
  'son_rowan_jack',
  'rowan_jack_wait',
  'jack_wait_car',
  'wait_car_rowan',
  'car_rowan_jack',
  'rowan_jack_kept',
  'jack_kept_laugh',
  'kept_laugh_young',
  'laugh_young_ladi',
  'young_ladi_walk',
  'ladi_walk_toward',
  'walk_toward_us',
  'toward_us_caus',
  'us_caus_car',
  'caus_car_park',
  'car_park_next',
  'park_next_mine',
  'next_mine_park',
  'mine_park_lot',
  'park_lot_rowan',
  'lot_rowan_kept',
  'rowan_kept_tri',
  'kept_tri_speak',
  'tri_speak_tri',
  'speak_tri_load',
  'tri_load_stuff',
  'load_stuff_car',
  'stuff_car_jack',
  'car_jack_kept',
  'jack_kept_throw',
  'kept_throw_word',
  'throw_word_serm',
  'word_serm_annoy',
  'serm_annoy_jack',
  'annoy_jack_said',
  'jack_said_hey',
  'said_hey_want',
  'hey_want_look',
  'want_look_*',
  'look_*_*',
  '*_*_rowan',
  '*_rowan_said',
  'rowan_said_let',
  'said_let_see',
  'let_see_jiggl',
  'see_jiggl_babi',
  'jiggl_babi_appal',
  'babi_appal_told',
  'appal_told_knock',
  'told_knock_rowan',
  'knock_rowan_satcast',
  'rowan_satcast_repli',
  'satcast_repli_relax',
  'repli_relax_give',
  'relax_give_compliment',
  'give_compliment_bet',
  'compliment_bet_get',
  'bet_get_mani',
  'get_mani_often',
  'mani_often_ladi',
  'often_ladi_got',
  'ladi_got_car',
  'got_car_start',
  'car_start_argu',
  'start_argu_behavior',
  'argu_behavior_shame',
  'behavior_shame_act',
  'shame_act_like',
  'act_like_engag',
  'like_engag_night',
  'engag_night_argu',
  'night_argu_back',
  'argu_back_say',
  'back_say_someth',
  'say_someth_car',
  'someth_car_lost',
  'car_lost_told',
  'lost_told_get',
  'told_get_immedi',
  'get_immedi_jack',
  'immedi_jack_got',
  'jack_got_involv',
  'got_involv_kick',
  'involv_kick_wife',
  'kick_wife_got',
  'wife_got_back',
  'got_back_start',
  'back_start_engag',
  'start_engag_argument',
  'engag_argument_sayingi',
  'argument_sayingi_cant',
  'sayingi_cant_let',
  'cant_let_son',
  'let_son_walk',
  'son_walk_home',
  'walk_home_emgag',
  'home_emgag_parti',
  'emgag_parti_repli',
  'parti_repli_son',
  'repli_son_cant',
  'son_cant_harrass',
  'cant_harrass_women',
  'harrass_women_way',
  'women_way_back',
  'way_back_engag',
  'back_engag_parti',
  'engag_parti_kept',
  'parti_kept_defend',
  'kept_defend_told',
  'defend_told_either',
  'told_either_stay',
  'either_stay_get',
  'stay_get_car',
  'get_car_drove',
  'car_drove_rowan',
  'drove_rowan_come',
  'rowan_come_home',
  'come_home_wife',
  'home_wife_gave',
  'wife_gave_hell',
  'gave_hell_later',
  'hell_later_found',
  'later_found_stay',
  'found_stay_one',
  'stay_one_guy',
  'one_guy_friend',
  'guy_friend_place',
  'friend_place_understand',
  'place_understand_piss',
  'understand_piss_refus',
  'piss_refus_see',
  'refus_see_wife',
  'see_wife_said',
  'wife_said_fault',
  'said_fault_escal',
  'fault_escal_situat',
  'escal_situat_ober',
  'situat_ober_stupid',
  'ober_stupid_shit',
  'stupid_shit_boy',
  'shit_boy_age',
  'boy_age_time',
  'age_time_told',
  'time_told_cant',
  'told_cant_car',
  'cant_car_took',
  'car_took_hold',
  'took_hold_head',
  'hold_head_said',
  'head_said_never',
  'said_never_made',
  'never_made_walk',
  'made_walk_night',
  'walk_night_engag',
  'night_engag_demand',
  'engag_demand_apolog',
  'demand_apolog_aita',
  'apolog_aita_kick',
  'aita_kick_friend',
  'kick_friend_car',
  'friend_car_engag',
  'car_engag_night'],
 ['mef',
  'boyfriend',
  'date',
  'around',
  '~',
  'month',
  'ive',
  'ride',
  'hors',
  'sinc',
  'around',
  'four',
  'year',
  'old',
  'start',
  'take',
  'lesson',
  'ten',
  'start',
  'help',
  'girl',
  'stabl',
  'hors',
  'ladi',
  'told',
  'sell',
  'due',
  'timeinterest',
  'ask',
  'parent',
  'want',
  'buy',
  'ladi',
  'luckili',
  'parent',
  'abl',
  'buy',
  'mine',
  'ever',
  'sinc',
  'bestest',
  'friend',
  'love',
  'lot',
  'start',
  'date',
  'bf',
  'honest',
  'fact',
  'hors',
  'take',
  'lot',
  'time',
  'fine',
  'singl',
  'could',
  'spend',
  'like',
  'three',
  'four',
  'hour',
  'day',
  'stabl',
  'start',
  'date',
  'cut',
  'three',
  'hour',
  'everi',
  'day',
  'roughli',
  'long',
  'take',
  'cleaningprepar',
  'foodrid',
  'also',
  'friend',
  'stabl',
  'obvious',
  'mean',
  'also',
  'social',
  'day',
  'would',
  'ride',
  'tri',
  'spend',
  'less',
  'time',
  'talk',
  'would',
  'make',
  'hour',
  'six',
  'month',
  'told',
  'spent',
  'much',
  'time',
  'stabl',
  'prioritis',
  'relationship',
  'somehow',
  'famili',
  'got',
  'involv',
  'say',
  'strang',
  'priorit',
  'way',
  'comfort',
  'bit',
  'pushov',
  'agre',
  'first',
  'meant',
  'cut',
  'time',
  'stabl',
  'evolv',
  'cut',
  'ride',
  'day',
  'ride',
  'two',
  'day',
  'week',
  'rest',
  'im',
  'simpli',
  'basic',
  'quickli',
  'otherwis',
  'know',
  'hell',
  'annoy',
  'piss',
  'day',
  'give',
  'silent',
  'treatment',
  'know',
  'hors',
  'realli',
  'suffer',
  'ridden',
  'often',
  'still',
  'feel',
  'guilti',
  'im',
  'alway',
  'rush',
  'around',
  'last',
  'night',
  'told',
  'time',
  'sell',
  'ladi',
  'laugh',
  'ask',
  'seriou',
  'told',
  'said',
  'need',
  'start',
  'priorit',
  'relationship',
  'said',
  'ive',
  'done',
  'noth',
  'priorit',
  'relationship',
  'argu',
  'appar',
  'think',
  'put',
  'old',
  'anyway',
  'furiou',
  'told',
  'absolut',
  'happen',
  'would',
  'never',
  'sell',
  'said',
  'reason',
  'person',
  'would',
  'sell',
  'put',
  'hors',
  'favor',
  'boyfriend',
  'reason',
  'hang',
  'insan',
  'hors',
  'peopl',
  'come',
  'reason',
  'peopl',
  'reddit',
  'aita',
  'edit',
  'never',
  'expect',
  'get',
  'much',
  'attent',
  'im',
  'overwhelm',
  'thank',
  'kind',
  'comment',
  'messag',
  'current',
  'sit',
  'ladi',
  'stabl',
  'cri',
  'eye',
  'wake-up',
  'call',
  'boyfriend',
  'left',
  'visit',
  'famili',
  'friend',
  'old',
  'town',
  'earlier',
  'today',
  'post',
  'everyon',
  'worri',
  'well',
  'handl',
  'asap',
  'first',
  'need',
  'go',
  'home',
  'sleep',
  'thank',
  'wonder',
  '❤️',
  '[',
  'updat',
  ']',
  'httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'mef_boyfriend',
  'boyfriend_date',
  'date_around',
  'around_~',
  '~_month',
  'month_ive',
  'ive_ride',
  'ride_hors',
  'hors_sinc',
  'sinc_around',
  'around_four',
  'four_year',
  'year_old',
  'old_start',
  'start_take',
  'take_lesson',
  'lesson_ten',
  'ten_start',
  'start_help',
  'help_girl',
  'girl_stabl',
  'stabl_hors',
  'hors_ladi',
  'ladi_told',
  'told_sell',
  'sell_due',
  'due_timeinterest',
  'timeinterest_ask',
  'ask_parent',
  'parent_want',
  'want_buy',
  'buy_ladi',
  'ladi_luckili',
  'luckili_parent',
  'parent_abl',
  'abl_buy',
  'buy_mine',
  'mine_ever',
  'ever_sinc',
  'sinc_bestest',
  'bestest_friend',
  'friend_love',
  'love_lot',
  'lot_start',
  'start_date',
  'date_bf',
  'bf_honest',
  'honest_fact',
  'fact_hors',
  'hors_take',
  'take_lot',
  'lot_time',
  'time_fine',
  'fine_singl',
  'singl_could',
  'could_spend',
  'spend_like',
  'like_three',
  'three_four',
  'four_hour',
  'hour_day',
  'day_stabl',
  'stabl_start',
  'start_date',
  'date_cut',
  'cut_three',
  'three_hour',
  'hour_everi',
  'everi_day',
  'day_roughli',
  'roughli_long',
  'long_take',
  'take_cleaningprepar',
  'cleaningprepar_foodrid',
  'foodrid_also',
  'also_friend',
  'friend_stabl',
  'stabl_obvious',
  'obvious_mean',
  'mean_also',
  'also_social',
  'social_day',
  'day_would',
  'would_ride',
  'ride_tri',
  'tri_spend',
  'spend_less',
  'less_time',
  'time_talk',
  'talk_would',
  'would_make',
  'make_hour',
  'hour_six',
  'six_month',
  'month_told',
  'told_spent',
  'spent_much',
  'much_time',
  'time_stabl',
  'stabl_prioritis',
  'prioritis_relationship',
  'relationship_somehow',
  'somehow_famili',
  'famili_got',
  'got_involv',
  'involv_say',
  'say_strang',
  'strang_priorit',
  'priorit_way',
  'way_comfort',
  'comfort_bit',
  'bit_pushov',
  'pushov_agre',
  'agre_first',
  'first_meant',
  'meant_cut',
  'cut_time',
  'time_stabl',
  'stabl_evolv',
  'evolv_cut',
  'cut_ride',
  'ride_day',
  'day_ride',
  'ride_two',
  'two_day',
  'day_week',
  'week_rest',
  'rest_im',
  'im_simpli',
  'simpli_basic',
  'basic_quickli',
  'quickli_otherwis',
  'otherwis_know',
  'know_hell',
  'hell_annoy',
  'annoy_piss',
  'piss_day',
  'day_give',
  'give_silent',
  'silent_treatment',
  'treatment_know',
  'know_hors',
  'hors_realli',
  'realli_suffer',
  'suffer_ridden',
  'ridden_often',
  'often_still',
  'still_feel',
  'feel_guilti',
  'guilti_im',
  'im_alway',
  'alway_rush',
  'rush_around',
  'around_last',
  'last_night',
  'night_told',
  'told_time',
  'time_sell',
  'sell_ladi',
  'ladi_laugh',
  'laugh_ask',
  'ask_seriou',
  'seriou_told',
  'told_said',
  'said_need',
  'need_start',
  'start_priorit',
  'priorit_relationship',
  'relationship_said',
  'said_ive',
  'ive_done',
  'done_noth',
  'noth_priorit',
  'priorit_relationship',
  'relationship_argu',
  'argu_appar',
  'appar_think',
  'think_put',
  'put_old',
  'old_anyway',
  'anyway_furiou',
  'furiou_told',
  'told_absolut',
  'absolut_happen',
  'happen_would',
  'would_never',
  'never_sell',
  'sell_said',
  'said_reason',
  'reason_person',
  'person_would',
  'would_sell',
  'sell_put',
  'put_hors',
  'hors_favor',
  'favor_boyfriend',
  'boyfriend_reason',
  'reason_hang',
  'hang_insan',
  'insan_hors',
  'hors_peopl',
  'peopl_come',
  'come_reason',
  'reason_peopl',
  'peopl_reddit',
  'reddit_aita',
  'aita_edit',
  'edit_never',
  'never_expect',
  'expect_get',
  'get_much',
  'much_attent',
  'attent_im',
  'im_overwhelm',
  'overwhelm_thank',
  'thank_kind',
  'kind_comment',
  'comment_messag',
  'messag_current',
  'current_sit',
  'sit_ladi',
  'ladi_stabl',
  'stabl_cri',
  'cri_eye',
  'eye_wake-up',
  'wake-up_call',
  'call_boyfriend',
  'boyfriend_left',
  'left_visit',
  'visit_famili',
  'famili_friend',
  'friend_old',
  'old_town',
  'town_earlier',
  'earlier_today',
  'today_post',
  'post_everyon',
  'everyon_worri',
  'worri_well',
  'well_handl',
  'handl_asap',
  'asap_first',
  'first_need',
  'need_go',
  'go_home',
  'home_sleep',
  'sleep_thank',
  'thank_wonder',
  'wonder_❤️',
  '❤️_[',
  '[_updat',
  'updat_]',
  ']_httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar',
  'httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'mef_boyfriend_date',
  'boyfriend_date_around',
  'date_around_~',
  'around_~_month',
  '~_month_ive',
  'month_ive_ride',
  'ive_ride_hors',
  'ride_hors_sinc',
  'hors_sinc_around',
  'sinc_around_four',
  'around_four_year',
  'four_year_old',
  'year_old_start',
  'old_start_take',
  'start_take_lesson',
  'take_lesson_ten',
  'lesson_ten_start',
  'ten_start_help',
  'start_help_girl',
  'help_girl_stabl',
  'girl_stabl_hors',
  'stabl_hors_ladi',
  'hors_ladi_told',
  'ladi_told_sell',
  'told_sell_due',
  'sell_due_timeinterest',
  'due_timeinterest_ask',
  'timeinterest_ask_parent',
  'ask_parent_want',
  'parent_want_buy',
  'want_buy_ladi',
  'buy_ladi_luckili',
  'ladi_luckili_parent',
  'luckili_parent_abl',
  'parent_abl_buy',
  'abl_buy_mine',
  'buy_mine_ever',
  'mine_ever_sinc',
  'ever_sinc_bestest',
  'sinc_bestest_friend',
  'bestest_friend_love',
  'friend_love_lot',
  'love_lot_start',
  'lot_start_date',
  'start_date_bf',
  'date_bf_honest',
  'bf_honest_fact',
  'honest_fact_hors',
  'fact_hors_take',
  'hors_take_lot',
  'take_lot_time',
  'lot_time_fine',
  'time_fine_singl',
  'fine_singl_could',
  'singl_could_spend',
  'could_spend_like',
  'spend_like_three',
  'like_three_four',
  'three_four_hour',
  'four_hour_day',
  'hour_day_stabl',
  'day_stabl_start',
  'stabl_start_date',
  'start_date_cut',
  'date_cut_three',
  'cut_three_hour',
  'three_hour_everi',
  'hour_everi_day',
  'everi_day_roughli',
  'day_roughli_long',
  'roughli_long_take',
  'long_take_cleaningprepar',
  'take_cleaningprepar_foodrid',
  'cleaningprepar_foodrid_also',
  'foodrid_also_friend',
  'also_friend_stabl',
  'friend_stabl_obvious',
  'stabl_obvious_mean',
  'obvious_mean_also',
  'mean_also_social',
  'also_social_day',
  'social_day_would',
  'day_would_ride',
  'would_ride_tri',
  'ride_tri_spend',
  'tri_spend_less',
  'spend_less_time',
  'less_time_talk',
  'time_talk_would',
  'talk_would_make',
  'would_make_hour',
  'make_hour_six',
  'hour_six_month',
  'six_month_told',
  'month_told_spent',
  'told_spent_much',
  'spent_much_time',
  'much_time_stabl',
  'time_stabl_prioritis',
  'stabl_prioritis_relationship',
  'prioritis_relationship_somehow',
  'relationship_somehow_famili',
  'somehow_famili_got',
  'famili_got_involv',
  'got_involv_say',
  'involv_say_strang',
  'say_strang_priorit',
  'strang_priorit_way',
  'priorit_way_comfort',
  'way_comfort_bit',
  'comfort_bit_pushov',
  'bit_pushov_agre',
  'pushov_agre_first',
  'agre_first_meant',
  'first_meant_cut',
  'meant_cut_time',
  'cut_time_stabl',
  'time_stabl_evolv',
  'stabl_evolv_cut',
  'evolv_cut_ride',
  'cut_ride_day',
  'ride_day_ride',
  'day_ride_two',
  'ride_two_day',
  'two_day_week',
  'day_week_rest',
  'week_rest_im',
  'rest_im_simpli',
  'im_simpli_basic',
  'simpli_basic_quickli',
  'basic_quickli_otherwis',
  'quickli_otherwis_know',
  'otherwis_know_hell',
  'know_hell_annoy',
  'hell_annoy_piss',
  'annoy_piss_day',
  'piss_day_give',
  'day_give_silent',
  'give_silent_treatment',
  'silent_treatment_know',
  'treatment_know_hors',
  'know_hors_realli',
  'hors_realli_suffer',
  'realli_suffer_ridden',
  'suffer_ridden_often',
  'ridden_often_still',
  'often_still_feel',
  'still_feel_guilti',
  'feel_guilti_im',
  'guilti_im_alway',
  'im_alway_rush',
  'alway_rush_around',
  'rush_around_last',
  'around_last_night',
  'last_night_told',
  'night_told_time',
  'told_time_sell',
  'time_sell_ladi',
  'sell_ladi_laugh',
  'ladi_laugh_ask',
  'laugh_ask_seriou',
  'ask_seriou_told',
  'seriou_told_said',
  'told_said_need',
  'said_need_start',
  'need_start_priorit',
  'start_priorit_relationship',
  'priorit_relationship_said',
  'relationship_said_ive',
  'said_ive_done',
  'ive_done_noth',
  'done_noth_priorit',
  'noth_priorit_relationship',
  'priorit_relationship_argu',
  'relationship_argu_appar',
  'argu_appar_think',
  'appar_think_put',
  'think_put_old',
  'put_old_anyway',
  'old_anyway_furiou',
  'anyway_furiou_told',
  'furiou_told_absolut',
  'told_absolut_happen',
  'absolut_happen_would',
  'happen_would_never',
  'would_never_sell',
  'never_sell_said',
  'sell_said_reason',
  'said_reason_person',
  'reason_person_would',
  'person_would_sell',
  'would_sell_put',
  'sell_put_hors',
  'put_hors_favor',
  'hors_favor_boyfriend',
  'favor_boyfriend_reason',
  'boyfriend_reason_hang',
  'reason_hang_insan',
  'hang_insan_hors',
  'insan_hors_peopl',
  'hors_peopl_come',
  'peopl_come_reason',
  'come_reason_peopl',
  'reason_peopl_reddit',
  'peopl_reddit_aita',
  'reddit_aita_edit',
  'aita_edit_never',
  'edit_never_expect',
  'never_expect_get',
  'expect_get_much',
  'get_much_attent',
  'much_attent_im',
  'attent_im_overwhelm',
  'im_overwhelm_thank',
  'overwhelm_thank_kind',
  'thank_kind_comment',
  'kind_comment_messag',
  'comment_messag_current',
  'messag_current_sit',
  'current_sit_ladi',
  'sit_ladi_stabl',
  'ladi_stabl_cri',
  'stabl_cri_eye',
  'cri_eye_wake-up',
  'eye_wake-up_call',
  'wake-up_call_boyfriend',
  'call_boyfriend_left',
  'boyfriend_left_visit',
  'left_visit_famili',
  'visit_famili_friend',
  'famili_friend_old',
  'friend_old_town',
  'old_town_earlier',
  'town_earlier_today',
  'earlier_today_post',
  'today_post_everyon',
  'post_everyon_worri',
  'everyon_worri_well',
  'worri_well_handl',
  'well_handl_asap',
  'handl_asap_first',
  'asap_first_need',
  'first_need_go',
  'need_go_home',
  'go_home_sleep',
  'home_sleep_thank',
  'sleep_thank_wonder',
  'thank_wonder_❤️',
  'wonder_❤️_[',
  '❤️_[_updat',
  '[_updat_]',
  'updat_]_httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar',
  ']_httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar_&',
  'httpswwwredditcomusernohorsethrowcommentssnfhxmupdate_aita_for_refusing_to_sell_my_horseutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf'],
 ['*',
  '*',
  'edit',
  '*',
  '*',
  'pleas',
  'stop',
  'send',
  'chat',
  'messag',
  'keep',
  'stuff',
  'im',
  'see',
  '*',
  '*',
  'ye',
  'even',
  'say',
  'know',
  'said',
  'messag',
  '*',
  '*',
  'year',
  'ago',
  'got',
  'realli',
  'housepl',
  'start',
  'collect',
  'year',
  'ive',
  'whittl',
  'collect',
  'one',
  'realli',
  'love',
  'niec',
  'jenni',
  'develop',
  'interest',
  'plant',
  'come',
  'talk',
  'help',
  'propag',
  'repot',
  'go',
  'town',
  'two',
  'week',
  'take',
  'care',
  'work',
  'stuff',
  'ask',
  'sil',
  'jenni',
  'could',
  'plant',
  'sit',
  'told',
  'jenni',
  'would',
  'pay',
  'also',
  'give',
  'cut',
  'trade',
  'agre',
  'came',
  'gave',
  'tour',
  'explain',
  'care',
  'need',
  'also',
  'show',
  'prize',
  'plant',
  'sil',
  'ask',
  'much',
  'ran',
  'share',
  'seem',
  'weird',
  'bc',
  'famili',
  'know',
  'ive',
  'gotten',
  'plant',
  'gift',
  'well',
  'return',
  'trip',
  'horrifi',
  'water',
  'gave',
  'right',
  'amount',
  'light',
  'also',
  'decid',
  'give',
  'lot',
  'plant',
  'haircut',
  'big',
  'one',
  'prize',
  'cebu',
  'blue',
  'potho',
  'mother',
  'plant',
  'destroy',
  'climb',
  'one',
  'manjula',
  'potho',
  'done',
  'golden',
  'train',
  'stairwel',
  'string',
  'pearl',
  'heart',
  'rubi',
  'necklac',
  'destroy',
  'silver',
  'stripe',
  'philodendron',
  'worst',
  'pink',
  'princess',
  'philo',
  'reduc',
  'two',
  'leav',
  'albo',
  'monstera',
  'three',
  'even',
  'think',
  'got',
  'node',
  'necessarili',
  'plant',
  'expens',
  'prize',
  'basic',
  'broke',
  'came',
  'meet',
  'give',
  'back',
  'key',
  'scream',
  'scream',
  'jenni',
  'start',
  'cri',
  'say',
  'said',
  'would',
  'give',
  'cut',
  'thought',
  'okay',
  'scream',
  'go',
  'home',
  'get',
  'stole',
  'bring',
  'back',
  'knew',
  'mean',
  'could',
  'destroy',
  'fuck',
  'plant',
  'sil',
  'got',
  'us',
  'said',
  'done',
  'done',
  '*',
  '*',
  'im',
  'sorri',
  'know',
  'one',
  'edit',
  'gone',
  'ahhh',
  'half',
  'origin',
  'post',
  'pleas',
  'read',
  'comment',
  '*',
  '*',
  'said',
  'way',
  'return',
  'everyth',
  'jenni',
  'said',
  'mom',
  'alreadi',
  'sold',
  'marketplac',
  'lost',
  'scream',
  'scream',
  'jenni',
  'cri',
  'mom',
  'got',
  'face',
  'told',
  'tantrum',
  'plant',
  'told',
  'get',
  'fuck',
  'hous',
  'ever',
  'come',
  'anywher',
  'near',
  'home',
  'call',
  'brother',
  'sil',
  'husband',
  'shock',
  'said',
  'told',
  'said',
  'okay',
  'brought',
  'stuff',
  'sold',
  'yet',
  'apolog',
  'told',
  'never',
  'ever',
  'want',
  'either',
  'room',
  'theyr',
  'horribl',
  'aw',
  'irredeem',
  'peopl',
  'hope',
  'burn',
  'hell',
  'belong',
  'told',
  'get',
  'im',
  'upset',
  'im',
  'take',
  'far',
  'famili',
  'mean',
  'hold',
  'grudg',
  'told',
  'leav',
  'cri',
  'rest',
  'day',
  'post',
  'need',
  'know',
  'edict',
  'top',
  'im',
  'overreact',
  'aita',
  'tell',
  'longer',
  'welcom',
  'home',
  'even',
  'want',
  'room',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_pleas',
  'pleas_stop',
  'stop_send',
  'send_chat',
  'chat_messag',
  'messag_keep',
  'keep_stuff',
  'stuff_im',
  'im_see',
  'see_*',
  '*_*',
  '*_ye',
  'ye_even',
  'even_say',
  'say_know',
  'know_said',
  'said_messag',
  'messag_*',
  '*_*',
  '*_year',
  'year_ago',
  'ago_got',
  'got_realli',
  'realli_housepl',
  'housepl_start',
  'start_collect',
  'collect_year',
  'year_ive',
  'ive_whittl',
  'whittl_collect',
  'collect_one',
  'one_realli',
  'realli_love',
  'love_niec',
  'niec_jenni',
  'jenni_develop',
  'develop_interest',
  'interest_plant',
  'plant_come',
  'come_talk',
  'talk_help',
  'help_propag',
  'propag_repot',
  'repot_go',
  'go_town',
  'town_two',
  'two_week',
  'week_take',
  'take_care',
  'care_work',
  'work_stuff',
  'stuff_ask',
  'ask_sil',
  'sil_jenni',
  'jenni_could',
  'could_plant',
  'plant_sit',
  'sit_told',
  'told_jenni',
  'jenni_would',
  'would_pay',
  'pay_also',
  'also_give',
  'give_cut',
  'cut_trade',
  'trade_agre',
  'agre_came',
  'came_gave',
  'gave_tour',
  'tour_explain',
  'explain_care',
  'care_need',
  'need_also',
  'also_show',
  'show_prize',
  'prize_plant',
  'plant_sil',
  'sil_ask',
  'ask_much',
  'much_ran',
  'ran_share',
  'share_seem',
  'seem_weird',
  'weird_bc',
  'bc_famili',
  'famili_know',
  'know_ive',
  'ive_gotten',
  'gotten_plant',
  'plant_gift',
  'gift_well',
  'well_return',
  'return_trip',
  'trip_horrifi',
  'horrifi_water',
  'water_gave',
  'gave_right',
  'right_amount',
  'amount_light',
  'light_also',
  'also_decid',
  'decid_give',
  'give_lot',
  'lot_plant',
  'plant_haircut',
  'haircut_big',
  'big_one',
  'one_prize',
  'prize_cebu',
  'cebu_blue',
  'blue_potho',
  'potho_mother',
  'mother_plant',
  'plant_destroy',
  'destroy_climb',
  'climb_one',
  'one_manjula',
  'manjula_potho',
  'potho_done',
  'done_golden',
  'golden_train',
  'train_stairwel',
  'stairwel_string',
  'string_pearl',
  'pearl_heart',
  'heart_rubi',
  'rubi_necklac',
  'necklac_destroy',
  'destroy_silver',
  'silver_stripe',
  'stripe_philodendron',
  'philodendron_worst',
  'worst_pink',
  'pink_princess',
  'princess_philo',
  'philo_reduc',
  'reduc_two',
  'two_leav',
  'leav_albo',
  'albo_monstera',
  'monstera_three',
  'three_even',
  'even_think',
  'think_got',
  'got_node',
  'node_necessarili',
  'necessarili_plant',
  'plant_expens',
  'expens_prize',
  'prize_basic',
  'basic_broke',
  'broke_came',
  'came_meet',
  'meet_give',
  'give_back',
  'back_key',
  'key_scream',
  'scream_scream',
  'scream_jenni',
  'jenni_start',
  'start_cri',
  'cri_say',
  'say_said',
  'said_would',
  'would_give',
  'give_cut',
  'cut_thought',
  'thought_okay',
  'okay_scream',
  'scream_go',
  'go_home',
  'home_get',
  'get_stole',
  'stole_bring',
  'bring_back',
  'back_knew',
  'knew_mean',
  'mean_could',
  'could_destroy',
  'destroy_fuck',
  'fuck_plant',
  'plant_sil',
  'sil_got',
  'got_us',
  'us_said',
  'said_done',
  'done_done',
  'done_*',
  '*_*',
  '*_im',
  'im_sorri',
  'sorri_know',
  'know_one',
  'one_edit',
  'edit_gone',
  'gone_ahhh',
  'ahhh_half',
  'half_origin',
  'origin_post',
  'post_pleas',
  'pleas_read',
  'read_comment',
  'comment_*',
  '*_*',
  '*_said',
  'said_way',
  'way_return',
  'return_everyth',
  'everyth_jenni',
  'jenni_said',
  'said_mom',
  'mom_alreadi',
  'alreadi_sold',
  'sold_marketplac',
  'marketplac_lost',
  'lost_scream',
  'scream_scream',
  'scream_jenni',
  'jenni_cri',
  'cri_mom',
  'mom_got',
  'got_face',
  'face_told',
  'told_tantrum',
  'tantrum_plant',
  'plant_told',
  'told_get',
  'get_fuck',
  'fuck_hous',
  'hous_ever',
  'ever_come',
  'come_anywher',
  'anywher_near',
  'near_home',
  'home_call',
  'call_brother',
  'brother_sil',
  'sil_husband',
  'husband_shock',
  'shock_said',
  'said_told',
  'told_said',
  'said_okay',
  'okay_brought',
  'brought_stuff',
  'stuff_sold',
  'sold_yet',
  'yet_apolog',
  'apolog_told',
  'told_never',
  'never_ever',
  'ever_want',
  'want_either',
  'either_room',
  'room_theyr',
  'theyr_horribl',
  'horribl_aw',
  'aw_irredeem',
  'irredeem_peopl',
  'peopl_hope',
  'hope_burn',
  'burn_hell',
  'hell_belong',
  'belong_told',
  'told_get',
  'get_im',
  'im_upset',
  'upset_im',
  'im_take',
  'take_far',
  'far_famili',
  'famili_mean',
  'mean_hold',
  'hold_grudg',
  'grudg_told',
  'told_leav',
  'leav_cri',
  'cri_rest',
  'rest_day',
  'day_post',
  'post_need',
  'need_know',
  'know_edict',
  'edict_top',
  'top_im',
  'im_overreact',
  'overreact_aita',
  'aita_tell',
  'tell_longer',
  'longer_welcom',
  'welcom_home',
  'home_even',
  'even_want',
  'want_room',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_pleas',
  '*_pleas_stop',
  'pleas_stop_send',
  'stop_send_chat',
  'send_chat_messag',
  'chat_messag_keep',
  'messag_keep_stuff',
  'keep_stuff_im',
  'stuff_im_see',
  'im_see_*',
  'see_*_*',
  '*_*_ye',
  '*_ye_even',
  'ye_even_say',
  'even_say_know',
  'say_know_said',
  'know_said_messag',
  'said_messag_*',
  'messag_*_*',
  '*_*_year',
  '*_year_ago',
  'year_ago_got',
  'ago_got_realli',
  'got_realli_housepl',
  'realli_housepl_start',
  'housepl_start_collect',
  'start_collect_year',
  'collect_year_ive',
  'year_ive_whittl',
  'ive_whittl_collect',
  'whittl_collect_one',
  'collect_one_realli',
  'one_realli_love',
  'realli_love_niec',
  'love_niec_jenni',
  'niec_jenni_develop',
  'jenni_develop_interest',
  'develop_interest_plant',
  'interest_plant_come',
  'plant_come_talk',
  'come_talk_help',
  'talk_help_propag',
  'help_propag_repot',
  'propag_repot_go',
  'repot_go_town',
  'go_town_two',
  'town_two_week',
  'two_week_take',
  'week_take_care',
  'take_care_work',
  'care_work_stuff',
  'work_stuff_ask',
  'stuff_ask_sil',
  'ask_sil_jenni',
  'sil_jenni_could',
  'jenni_could_plant',
  'could_plant_sit',
  'plant_sit_told',
  'sit_told_jenni',
  'told_jenni_would',
  'jenni_would_pay',
  'would_pay_also',
  'pay_also_give',
  'also_give_cut',
  'give_cut_trade',
  'cut_trade_agre',
  'trade_agre_came',
  'agre_came_gave',
  'came_gave_tour',
  'gave_tour_explain',
  'tour_explain_care',
  'explain_care_need',
  'care_need_also',
  'need_also_show',
  'also_show_prize',
  'show_prize_plant',
  'prize_plant_sil',
  'plant_sil_ask',
  'sil_ask_much',
  'ask_much_ran',
  'much_ran_share',
  'ran_share_seem',
  'share_seem_weird',
  'seem_weird_bc',
  'weird_bc_famili',
  'bc_famili_know',
  'famili_know_ive',
  'know_ive_gotten',
  'ive_gotten_plant',
  'gotten_plant_gift',
  'plant_gift_well',
  'gift_well_return',
  'well_return_trip',
  'return_trip_horrifi',
  'trip_horrifi_water',
  'horrifi_water_gave',
  'water_gave_right',
  'gave_right_amount',
  'right_amount_light',
  'amount_light_also',
  'light_also_decid',
  'also_decid_give',
  'decid_give_lot',
  'give_lot_plant',
  'lot_plant_haircut',
  'plant_haircut_big',
  'haircut_big_one',
  'big_one_prize',
  'one_prize_cebu',
  'prize_cebu_blue',
  'cebu_blue_potho',
  'blue_potho_mother',
  'potho_mother_plant',
  'mother_plant_destroy',
  'plant_destroy_climb',
  'destroy_climb_one',
  'climb_one_manjula',
  'one_manjula_potho',
  'manjula_potho_done',
  'potho_done_golden',
  'done_golden_train',
  'golden_train_stairwel',
  'train_stairwel_string',
  'stairwel_string_pearl',
  'string_pearl_heart',
  'pearl_heart_rubi',
  'heart_rubi_necklac',
  'rubi_necklac_destroy',
  'necklac_destroy_silver',
  'destroy_silver_stripe',
  'silver_stripe_philodendron',
  'stripe_philodendron_worst',
  'philodendron_worst_pink',
  'worst_pink_princess',
  'pink_princess_philo',
  'princess_philo_reduc',
  'philo_reduc_two',
  'reduc_two_leav',
  'two_leav_albo',
  'leav_albo_monstera',
  'albo_monstera_three',
  'monstera_three_even',
  'three_even_think',
  'even_think_got',
  'think_got_node',
  'got_node_necessarili',
  'node_necessarili_plant',
  'necessarili_plant_expens',
  'plant_expens_prize',
  'expens_prize_basic',
  'prize_basic_broke',
  'basic_broke_came',
  'broke_came_meet',
  'came_meet_give',
  'meet_give_back',
  'give_back_key',
  'back_key_scream',
  'key_scream_scream',
  'scream_scream_jenni',
  'scream_jenni_start',
  'jenni_start_cri',
  'start_cri_say',
  'cri_say_said',
  'say_said_would',
  'said_would_give',
  'would_give_cut',
  'give_cut_thought',
  'cut_thought_okay',
  'thought_okay_scream',
  'okay_scream_go',
  'scream_go_home',
  'go_home_get',
  'home_get_stole',
  'get_stole_bring',
  'stole_bring_back',
  'bring_back_knew',
  'back_knew_mean',
  'knew_mean_could',
  'mean_could_destroy',
  'could_destroy_fuck',
  'destroy_fuck_plant',
  'fuck_plant_sil',
  'plant_sil_got',
  'sil_got_us',
  'got_us_said',
  'us_said_done',
  'said_done_done',
  'done_done_*',
  'done_*_*',
  '*_*_im',
  '*_im_sorri',
  'im_sorri_know',
  'sorri_know_one',
  'know_one_edit',
  'one_edit_gone',
  'edit_gone_ahhh',
  'gone_ahhh_half',
  'ahhh_half_origin',
  'half_origin_post',
  'origin_post_pleas',
  'post_pleas_read',
  'pleas_read_comment',
  'read_comment_*',
  'comment_*_*',
  '*_*_said',
  '*_said_way',
  'said_way_return',
  'way_return_everyth',
  'return_everyth_jenni',
  'everyth_jenni_said',
  'jenni_said_mom',
  'said_mom_alreadi',
  'mom_alreadi_sold',
  'alreadi_sold_marketplac',
  'sold_marketplac_lost',
  'marketplac_lost_scream',
  'lost_scream_scream',
  'scream_scream_jenni',
  'scream_jenni_cri',
  'jenni_cri_mom',
  'cri_mom_got',
  'mom_got_face',
  'got_face_told',
  'face_told_tantrum',
  'told_tantrum_plant',
  'tantrum_plant_told',
  'plant_told_get',
  'told_get_fuck',
  'get_fuck_hous',
  'fuck_hous_ever',
  'hous_ever_come',
  'ever_come_anywher',
  'come_anywher_near',
  'anywher_near_home',
  'near_home_call',
  'home_call_brother',
  'call_brother_sil',
  'brother_sil_husband',
  'sil_husband_shock',
  'husband_shock_said',
  'shock_said_told',
  'said_told_said',
  'told_said_okay',
  'said_okay_brought',
  'okay_brought_stuff',
  'brought_stuff_sold',
  'stuff_sold_yet',
  'sold_yet_apolog',
  'yet_apolog_told',
  'apolog_told_never',
  'told_never_ever',
  'never_ever_want',
  'ever_want_either',
  'want_either_room',
  'either_room_theyr',
  'room_theyr_horribl',
  'theyr_horribl_aw',
  'horribl_aw_irredeem',
  'aw_irredeem_peopl',
  'irredeem_peopl_hope',
  'peopl_hope_burn',
  'hope_burn_hell',
  'burn_hell_belong',
  'hell_belong_told',
  'belong_told_get',
  'told_get_im',
  'get_im_upset',
  'im_upset_im',
  'upset_im_take',
  'im_take_far',
  'take_far_famili',
  'far_famili_mean',
  'famili_mean_hold',
  'mean_hold_grudg',
  'hold_grudg_told',
  'grudg_told_leav',
  'told_leav_cri',
  'leav_cri_rest',
  'cri_rest_day',
  'rest_day_post',
  'day_post_need',
  'post_need_know',
  'need_know_edict',
  'know_edict_top',
  'edict_top_im',
  'top_im_overreact',
  'im_overreact_aita',
  'overreact_aita_tell',
  'aita_tell_longer',
  'tell_longer_welcom',
  'longer_welcom_home',
  'welcom_home_even',
  'home_even_want',
  'even_want_room'],
 ['hear',
  'read',
  'whole',
  'text',
  'wife',
  'marri',
  'year',
  'admit',
  'hothead',
  'bit',
  'much',
  'especi',
  'mad',
  'take',
  'respons',
  'mistak',
  'make',
  'like',
  'clean',
  'bathroom',
  'shower',
  'fill',
  'car',
  'ga',
  'use',
  'even',
  'stand',
  'let',
  'unload',
  'anger',
  'frustrat',
  'home',
  'public',
  'tend',
  'start',
  'argu',
  'public',
  'instead',
  'wait',
  'til',
  'get',
  'home',
  'recent',
  'come',
  'workplac',
  'berat',
  'someth',
  'night',
  'like',
  'get',
  'stuff',
  'said',
  'would',
  'get',
  'stuff',
  'said',
  'would',
  'embarrass',
  'humiliatingi',
  'affect',
  'job',
  'point',
  'start',
  'get',
  'warn',
  'warn',
  'superior',
  'believ',
  'patient',
  'understand',
  'especi',
  'wife',
  'make',
  'fuss',
  'offic',
  'last',
  'week',
  'middl',
  'hr',
  'meet',
  'next',
  'thing',
  'knew',
  'see',
  'wife',
  'barg',
  'yell',
  'ask',
  'keep',
  'phone',
  'turn',
  'turn',
  'get',
  'warn',
  'sinc',
  'forbid',
  'turn',
  'stun',
  'superior',
  'co',
  'worker',
  'potenti',
  'client',
  'even',
  'move',
  'superior',
  'dealt',
  'call',
  'secur',
  'get',
  'wide',
  'start',
  'argu',
  'tell',
  'came',
  'start',
  'urg',
  'get',
  'seat',
  'tell',
  'back',
  'watch',
  'secur',
  'escort',
  'horribl',
  'fear',
  'job',
  'lost',
  'yell',
  'repeatedli',
  'get',
  'stop',
  'got',
  'kick',
  'eventu',
  'got',
  'told',
  'longer',
  'allow',
  'go',
  'final',
  'last',
  'warn',
  'apolog',
  'went',
  'home',
  'wait',
  'yell',
  'watch',
  'noth',
  'whole',
  'get',
  'mistreat',
  'kick',
  'final',
  'snap',
  'said',
  'line',
  'made',
  'scene',
  'risk',
  'job',
  'miss',
  'call',
  'start',
  'cri',
  'say',
  'still',
  'defend',
  'get',
  'humili',
  'infront',
  'co',
  'worker',
  'told',
  'worri',
  'longer',
  'allow',
  'got',
  'furiou',
  'went',
  'mom',
  'stay',
  'hear_read',
  'read_whole',
  'whole_text',
  'text_wife',
  'wife_marri',
  'marri_year',
  'year_admit',
  'admit_hothead',
  'hothead_bit',
  'bit_much',
  'much_especi',
  'especi_mad',
  'mad_take',
  'take_respons',
  'respons_mistak',
  'mistak_make',
  'make_like',
  'like_clean',
  'clean_bathroom',
  'bathroom_shower',
  'shower_fill',
  'fill_car',
  'car_ga',
  'ga_use',
  'use_even',
  'even_stand',
  'stand_let',
  'let_unload',
  'unload_anger',
  'anger_frustrat',
  'frustrat_home',
  'home_public',
  'public_tend',
  'tend_start',
  'start_argu',
  'argu_public',
  'public_instead',
  'instead_wait',
  'wait_til',
  'til_get',
  'get_home',
  'home_recent',
  'recent_come',
  'come_workplac',
  'workplac_berat',
  'berat_someth',
  'someth_night',
  'night_like',
  'like_get',
  'get_stuff',
  'stuff_said',
  'said_would',
  'would_get',
  'get_stuff',
  'stuff_said',
  'said_would',
  'would_embarrass',
  'embarrass_humiliatingi',
  'humiliatingi_affect',
  'affect_job',
  'job_point',
  'point_start',
  'start_get',
  'get_warn',
  'warn_warn',
  'warn_superior',
  'superior_believ',
  'believ_patient',
  'patient_understand',
  'understand_especi',
  'especi_wife',
  'wife_make',
  'make_fuss',
  'fuss_offic',
  'offic_last',
  'last_week',
  'week_middl',
  'middl_hr',
  'hr_meet',
  'meet_next',
  'next_thing',
  'thing_knew',
  'knew_see',
  'see_wife',
  'wife_barg',
  'barg_yell',
  'yell_ask',
  'ask_keep',
  'keep_phone',
  'phone_turn',
  'turn_turn',
  'turn_get',
  'get_warn',
  'warn_sinc',
  'sinc_forbid',
  'forbid_turn',
  'turn_stun',
  'stun_superior',
  'superior_co',
  'co_worker',
  'worker_potenti',
  'potenti_client',
  'client_even',
  'even_move',
  'move_superior',
  'superior_dealt',
  'dealt_call',
  'call_secur',
  'secur_get',
  'get_wide',
  'wide_start',
  'start_argu',
  'argu_tell',
  'tell_came',
  'came_start',
  'start_urg',
  'urg_get',
  'get_seat',
  'seat_tell',
  'tell_back',
  'back_watch',
  'watch_secur',
  'secur_escort',
  'escort_horribl',
  'horribl_fear',
  'fear_job',
  'job_lost',
  'lost_yell',
  'yell_repeatedli',
  'repeatedli_get',
  'get_stop',
  'stop_got',
  'got_kick',
  'kick_eventu',
  'eventu_got',
  'got_told',
  'told_longer',
  'longer_allow',
  'allow_go',
  'go_final',
  'final_last',
  'last_warn',
  'warn_apolog',
  'apolog_went',
  'went_home',
  'home_wait',
  'wait_yell',
  'yell_watch',
  'watch_noth',
  'noth_whole',
  'whole_get',
  'get_mistreat',
  'mistreat_kick',
  'kick_final',
  'final_snap',
  'snap_said',
  'said_line',
  'line_made',
  'made_scene',
  'scene_risk',
  'risk_job',
  'job_miss',
  'miss_call',
  'call_start',
  'start_cri',
  'cri_say',
  'say_still',
  'still_defend',
  'defend_get',
  'get_humili',
  'humili_infront',
  'infront_co',
  'co_worker',
  'worker_told',
  'told_worri',
  'worri_longer',
  'longer_allow',
  'allow_got',
  'got_furiou',
  'furiou_went',
  'went_mom',
  'mom_stay',
  'hear_read_whole',
  'read_whole_text',
  'whole_text_wife',
  'text_wife_marri',
  'wife_marri_year',
  'marri_year_admit',
  'year_admit_hothead',
  'admit_hothead_bit',
  'hothead_bit_much',
  'bit_much_especi',
  'much_especi_mad',
  'especi_mad_take',
  'mad_take_respons',
  'take_respons_mistak',
  'respons_mistak_make',
  'mistak_make_like',
  'make_like_clean',
  'like_clean_bathroom',
  'clean_bathroom_shower',
  'bathroom_shower_fill',
  'shower_fill_car',
  'fill_car_ga',
  'car_ga_use',
  'ga_use_even',
  'use_even_stand',
  'even_stand_let',
  'stand_let_unload',
  'let_unload_anger',
  'unload_anger_frustrat',
  'anger_frustrat_home',
  'frustrat_home_public',
  'home_public_tend',
  'public_tend_start',
  'tend_start_argu',
  'start_argu_public',
  'argu_public_instead',
  'public_instead_wait',
  'instead_wait_til',
  'wait_til_get',
  'til_get_home',
  'get_home_recent',
  'home_recent_come',
  'recent_come_workplac',
  'come_workplac_berat',
  'workplac_berat_someth',
  'berat_someth_night',
  'someth_night_like',
  'night_like_get',
  'like_get_stuff',
  'get_stuff_said',
  'stuff_said_would',
  'said_would_get',
  'would_get_stuff',
  'get_stuff_said',
  'stuff_said_would',
  'said_would_embarrass',
  'would_embarrass_humiliatingi',
  'embarrass_humiliatingi_affect',
  'humiliatingi_affect_job',
  'affect_job_point',
  'job_point_start',
  'point_start_get',
  'start_get_warn',
  'get_warn_warn',
  'warn_warn_superior',
  'warn_superior_believ',
  'superior_believ_patient',
  'believ_patient_understand',
  'patient_understand_especi',
  'understand_especi_wife',
  'especi_wife_make',
  'wife_make_fuss',
  'make_fuss_offic',
  'fuss_offic_last',
  'offic_last_week',
  'last_week_middl',
  'week_middl_hr',
  'middl_hr_meet',
  'hr_meet_next',
  'meet_next_thing',
  'next_thing_knew',
  'thing_knew_see',
  'knew_see_wife',
  'see_wife_barg',
  'wife_barg_yell',
  'barg_yell_ask',
  'yell_ask_keep',
  'ask_keep_phone',
  'keep_phone_turn',
  'phone_turn_turn',
  'turn_turn_get',
  'turn_get_warn',
  'get_warn_sinc',
  'warn_sinc_forbid',
  'sinc_forbid_turn',
  'forbid_turn_stun',
  'turn_stun_superior',
  'stun_superior_co',
  'superior_co_worker',
  'co_worker_potenti',
  'worker_potenti_client',
  'potenti_client_even',
  'client_even_move',
  'even_move_superior',
  'move_superior_dealt',
  'superior_dealt_call',
  'dealt_call_secur',
  'call_secur_get',
  'secur_get_wide',
  'get_wide_start',
  'wide_start_argu',
  'start_argu_tell',
  'argu_tell_came',
  'tell_came_start',
  'came_start_urg',
  'start_urg_get',
  'urg_get_seat',
  'get_seat_tell',
  'seat_tell_back',
  'tell_back_watch',
  'back_watch_secur',
  'watch_secur_escort',
  'secur_escort_horribl',
  'escort_horribl_fear',
  'horribl_fear_job',
  'fear_job_lost',
  'job_lost_yell',
  'lost_yell_repeatedli',
  'yell_repeatedli_get',
  'repeatedli_get_stop',
  'get_stop_got',
  'stop_got_kick',
  'got_kick_eventu',
  'kick_eventu_got',
  'eventu_got_told',
  'got_told_longer',
  'told_longer_allow',
  'longer_allow_go',
  'allow_go_final',
  'go_final_last',
  'final_last_warn',
  'last_warn_apolog',
  'warn_apolog_went',
  'apolog_went_home',
  'went_home_wait',
  'home_wait_yell',
  'wait_yell_watch',
  'yell_watch_noth',
  'watch_noth_whole',
  'noth_whole_get',
  'whole_get_mistreat',
  'get_mistreat_kick',
  'mistreat_kick_final',
  'kick_final_snap',
  'final_snap_said',
  'snap_said_line',
  'said_line_made',
  'line_made_scene',
  'made_scene_risk',
  'scene_risk_job',
  'risk_job_miss',
  'job_miss_call',
  'miss_call_start',
  'call_start_cri',
  'start_cri_say',
  'cri_say_still',
  'say_still_defend',
  'still_defend_get',
  'defend_get_humili',
  'get_humili_infront',
  'humili_infront_co',
  'infront_co_worker',
  'co_worker_told',
  'worker_told_worri',
  'told_worri_longer',
  'worri_longer_allow',
  'longer_allow_got',
  'allow_got_furiou',
  'got_furiou_went',
  'furiou_went_mom',
  'went_mom_stay'],
 ['sister',
  'got',
  'marri',
  'last',
  'weekend',
  'flew',
  'town',
  'parent',
  'insist',
  'stay',
  'instead',
  'hotel',
  'like',
  'want',
  'parent',
  'consist',
  'late',
  'everyth',
  'think',
  'latin',
  'thing',
  'hate',
  'late',
  'think',
  'disrespect',
  'wed',
  'folk',
  'live',
  'half',
  'hour',
  'church',
  'noon',
  'roll',
  'folk',
  'even',
  'get',
  'readi',
  'yet',
  'adult',
  'deal',
  'get',
  'readi',
  'send',
  'uber',
  'church',
  'check',
  'sister',
  'ask',
  'problem',
  'get',
  'parent',
  'church',
  'told',
  'came',
  'shebw',
  'white',
  'said',
  'respons',
  'get',
  'time',
  'well',
  'nobodi',
  'ask',
  'even',
  'want',
  'stay',
  'everyon',
  'start',
  'call',
  'parent',
  'get',
  'readi',
  'minut',
  'late',
  'servic',
  'shorten',
  'anoth',
  'wed',
  'later',
  'day',
  'everyon',
  'still',
  'mad',
  'get',
  'parent',
  'time',
  'aunt',
  'said',
  'im',
  'asshol',
  'mess',
  'time',
  'wed',
  'mom',
  'say',
  'fault',
  'remind',
  'get',
  'readi',
  'one',
  'think',
  'adult',
  'abl',
  'time',
  'kid',
  'wed',
  'without',
  'help',
  'sister_got',
  'got_marri',
  'marri_last',
  'last_weekend',
  'weekend_flew',
  'flew_town',
  'town_parent',
  'parent_insist',
  'insist_stay',
  'stay_instead',
  'instead_hotel',
  'hotel_like',
  'like_want',
  'want_parent',
  'parent_consist',
  'consist_late',
  'late_everyth',
  'everyth_think',
  'think_latin',
  'latin_thing',
  'thing_hate',
  'hate_late',
  'late_think',
  'think_disrespect',
  'disrespect_wed',
  'wed_folk',
  'folk_live',
  'live_half',
  'half_hour',
  'hour_church',
  'church_noon',
  'noon_roll',
  'roll_folk',
  'folk_even',
  'even_get',
  'get_readi',
  'readi_yet',
  'yet_adult',
  'adult_deal',
  'deal_get',
  'get_readi',
  'readi_send',
  'send_uber',
  'uber_church',
  'church_check',
  'check_sister',
  'sister_ask',
  'ask_problem',
  'problem_get',
  'get_parent',
  'parent_church',
  'church_told',
  'told_came',
  'came_shebw',
  'shebw_white',
  'white_said',
  'said_respons',
  'respons_get',
  'get_time',
  'time_well',
  'well_nobodi',
  'nobodi_ask',
  'ask_even',
  'even_want',
  'want_stay',
  'stay_everyon',
  'everyon_start',
  'start_call',
  'call_parent',
  'parent_get',
  'get_readi',
  'readi_minut',
  'minut_late',
  'late_servic',
  'servic_shorten',
  'shorten_anoth',
  'anoth_wed',
  'wed_later',
  'later_day',
  'day_everyon',
  'everyon_still',
  'still_mad',
  'mad_get',
  'get_parent',
  'parent_time',
  'time_aunt',
  'aunt_said',
  'said_im',
  'im_asshol',
  'asshol_mess',
  'mess_time',
  'time_wed',
  'wed_mom',
  'mom_say',
  'say_fault',
  'fault_remind',
  'remind_get',
  'get_readi',
  'readi_one',
  'one_think',
  'think_adult',
  'adult_abl',
  'abl_time',
  'time_kid',
  'kid_wed',
  'wed_without',
  'without_help',
  'sister_got_marri',
  'got_marri_last',
  'marri_last_weekend',
  'last_weekend_flew',
  'weekend_flew_town',
  'flew_town_parent',
  'town_parent_insist',
  'parent_insist_stay',
  'insist_stay_instead',
  'stay_instead_hotel',
  'instead_hotel_like',
  'hotel_like_want',
  'like_want_parent',
  'want_parent_consist',
  'parent_consist_late',
  'consist_late_everyth',
  'late_everyth_think',
  'everyth_think_latin',
  'think_latin_thing',
  'latin_thing_hate',
  'thing_hate_late',
  'hate_late_think',
  'late_think_disrespect',
  'think_disrespect_wed',
  'disrespect_wed_folk',
  'wed_folk_live',
  'folk_live_half',
  'live_half_hour',
  'half_hour_church',
  'hour_church_noon',
  'church_noon_roll',
  'noon_roll_folk',
  'roll_folk_even',
  'folk_even_get',
  'even_get_readi',
  'get_readi_yet',
  'readi_yet_adult',
  'yet_adult_deal',
  'adult_deal_get',
  'deal_get_readi',
  'get_readi_send',
  'readi_send_uber',
  'send_uber_church',
  'uber_church_check',
  'church_check_sister',
  'check_sister_ask',
  'sister_ask_problem',
  'ask_problem_get',
  'problem_get_parent',
  'get_parent_church',
  'parent_church_told',
  'church_told_came',
  'told_came_shebw',
  'came_shebw_white',
  'shebw_white_said',
  'white_said_respons',
  'said_respons_get',
  'respons_get_time',
  'get_time_well',
  'time_well_nobodi',
  'well_nobodi_ask',
  'nobodi_ask_even',
  'ask_even_want',
  'even_want_stay',
  'want_stay_everyon',
  'stay_everyon_start',
  'everyon_start_call',
  'start_call_parent',
  'call_parent_get',
  'parent_get_readi',
  'get_readi_minut',
  'readi_minut_late',
  'minut_late_servic',
  'late_servic_shorten',
  'servic_shorten_anoth',
  'shorten_anoth_wed',
  'anoth_wed_later',
  'wed_later_day',
  'later_day_everyon',
  'day_everyon_still',
  'everyon_still_mad',
  'still_mad_get',
  'mad_get_parent',
  'get_parent_time',
  'parent_time_aunt',
  'time_aunt_said',
  'aunt_said_im',
  'said_im_asshol',
  'im_asshol_mess',
  'asshol_mess_time',
  'mess_time_wed',
  'time_wed_mom',
  'wed_mom_say',
  'mom_say_fault',
  'say_fault_remind',
  'fault_remind_get',
  'remind_get_readi',
  'get_readi_one',
  'readi_one_think',
  'one_think_adult',
  'think_adult_abl',
  'adult_abl_time',
  'abl_time_kid',
  'time_kid_wed',
  'kid_wed_without',
  'wed_without_help'],
 ['fiancé',
  'start',
  'live',
  'togeth',
  'month',
  'ago',
  'hous',
  'move',
  'run',
  'onlin',
  'busi',
  'home',
  'allow',
  'live',
  'rather',
  'comfort',
  'month',
  'move',
  'quit',
  'job',
  'say',
  'much',
  'hate',
  'go',
  'tri',
  'twitch',
  'stream',
  'live',
  'im',
  'follow',
  'passion',
  'support',
  'although',
  'surpris',
  'turn',
  'event',
  'financi',
  'posit',
  'support',
  'us',
  'felt',
  'anyway',
  'noth',
  'happen',
  'twitch',
  'channel',
  'sure',
  'game',
  'day',
  'bother',
  'even',
  'tri',
  'creat',
  'account',
  'game',
  'pleasur',
  'month',
  'ive',
  'convers',
  'suggest',
  'find',
  'work',
  'keep',
  'tell',
  'im',
  'unsupport',
  'need',
  'time',
  'want',
  'us',
  'buy',
  'bigger',
  'hous',
  'togeth',
  'said',
  'im',
  'fine',
  'current',
  'one',
  'sinc',
  'job',
  'want',
  'get',
  'mortgag',
  'left',
  'pay',
  'everyth',
  'told',
  'found',
  'real',
  'job',
  'mayb',
  'financi',
  'problem',
  'massiv',
  'argument',
  'night',
  'hint',
  'need',
  'new',
  'game',
  'laptop',
  'cost',
  'grand',
  'ive',
  'ignor',
  'ask',
  'outright',
  'buy',
  'birthday',
  'told',
  'fake',
  'job',
  'cover',
  'new',
  'laptop',
  'got',
  'realli',
  'piss',
  'tell',
  'im',
  'selfish',
  'ruin',
  'career',
  'grant',
  'afford',
  'buy',
  'realli',
  'hurt',
  'say',
  'busi',
  'real',
  'job',
  'despit',
  'work',
  'ass',
  'aita',
  'buy',
  'new',
  'laptop',
  'fiancé_start',
  'start_live',
  'live_togeth',
  'togeth_month',
  'month_ago',
  'ago_hous',
  'hous_move',
  'move_run',
  'run_onlin',
  'onlin_busi',
  'busi_home',
  'home_allow',
  'allow_live',
  'live_rather',
  'rather_comfort',
  'comfort_month',
  'month_move',
  'move_quit',
  'quit_job',
  'job_say',
  'say_much',
  'much_hate',
  'hate_go',
  'go_tri',
  'tri_twitch',
  'twitch_stream',
  'stream_live',
  'live_im',
  'im_follow',
  'follow_passion',
  'passion_support',
  'support_although',
  'although_surpris',
  'surpris_turn',
  'turn_event',
  'event_financi',
  'financi_posit',
  'posit_support',
  'support_us',
  'us_felt',
  'felt_anyway',
  'anyway_noth',
  'noth_happen',
  'happen_twitch',
  'twitch_channel',
  'channel_sure',
  'sure_game',
  'game_day',
  'day_bother',
  'bother_even',
  'even_tri',
  'tri_creat',
  'creat_account',
  'account_game',
  'game_pleasur',
  'pleasur_month',
  'month_ive',
  'ive_convers',
  'convers_suggest',
  'suggest_find',
  'find_work',
  'work_keep',
  'keep_tell',
  'tell_im',
  'im_unsupport',
  'unsupport_need',
  'need_time',
  'time_want',
  'want_us',
  'us_buy',
  'buy_bigger',
  'bigger_hous',
  'hous_togeth',
  'togeth_said',
  'said_im',
  'im_fine',
  'fine_current',
  'current_one',
  'one_sinc',
  'sinc_job',
  'job_want',
  'want_get',
  'get_mortgag',
  'mortgag_left',
  'left_pay',
  'pay_everyth',
  'everyth_told',
  'told_found',
  'found_real',
  'real_job',
  'job_mayb',
  'mayb_financi',
  'financi_problem',
  'problem_massiv',
  'massiv_argument',
  'argument_night',
  'night_hint',
  'hint_need',
  'need_new',
  'new_game',
  'game_laptop',
  'laptop_cost',
  'cost_grand',
  'grand_ive',
  'ive_ignor',
  'ignor_ask',
  'ask_outright',
  'outright_buy',
  'buy_birthday',
  'birthday_told',
  'told_fake',
  'fake_job',
  'job_cover',
  'cover_new',
  'new_laptop',
  'laptop_got',
  'got_realli',
  'realli_piss',
  'piss_tell',
  'tell_im',
  'im_selfish',
  'selfish_ruin',
  'ruin_career',
  'career_grant',
  'grant_afford',
  'afford_buy',
  'buy_realli',
  'realli_hurt',
  'hurt_say',
  'say_busi',
  'busi_real',
  'real_job',
  'job_despit',
  'despit_work',
  'work_ass',
  'ass_aita',
  'aita_buy',
  'buy_new',
  'new_laptop',
  'fiancé_start_live',
  'start_live_togeth',
  'live_togeth_month',
  'togeth_month_ago',
  'month_ago_hous',
  'ago_hous_move',
  'hous_move_run',
  'move_run_onlin',
  'run_onlin_busi',
  'onlin_busi_home',
  'busi_home_allow',
  'home_allow_live',
  'allow_live_rather',
  'live_rather_comfort',
  'rather_comfort_month',
  'comfort_month_move',
  'month_move_quit',
  'move_quit_job',
  'quit_job_say',
  'job_say_much',
  'say_much_hate',
  'much_hate_go',
  'hate_go_tri',
  'go_tri_twitch',
  'tri_twitch_stream',
  'twitch_stream_live',
  'stream_live_im',
  'live_im_follow',
  'im_follow_passion',
  'follow_passion_support',
  'passion_support_although',
  'support_although_surpris',
  'although_surpris_turn',
  'surpris_turn_event',
  'turn_event_financi',
  'event_financi_posit',
  'financi_posit_support',
  'posit_support_us',
  'support_us_felt',
  'us_felt_anyway',
  'felt_anyway_noth',
  'anyway_noth_happen',
  'noth_happen_twitch',
  'happen_twitch_channel',
  'twitch_channel_sure',
  'channel_sure_game',
  'sure_game_day',
  'game_day_bother',
  'day_bother_even',
  'bother_even_tri',
  'even_tri_creat',
  'tri_creat_account',
  'creat_account_game',
  'account_game_pleasur',
  'game_pleasur_month',
  'pleasur_month_ive',
  'month_ive_convers',
  'ive_convers_suggest',
  'convers_suggest_find',
  'suggest_find_work',
  'find_work_keep',
  'work_keep_tell',
  'keep_tell_im',
  'tell_im_unsupport',
  'im_unsupport_need',
  'unsupport_need_time',
  'need_time_want',
  'time_want_us',
  'want_us_buy',
  'us_buy_bigger',
  'buy_bigger_hous',
  'bigger_hous_togeth',
  'hous_togeth_said',
  'togeth_said_im',
  'said_im_fine',
  'im_fine_current',
  'fine_current_one',
  'current_one_sinc',
  'one_sinc_job',
  'sinc_job_want',
  'job_want_get',
  'want_get_mortgag',
  'get_mortgag_left',
  'mortgag_left_pay',
  'left_pay_everyth',
  'pay_everyth_told',
  'everyth_told_found',
  'told_found_real',
  'found_real_job',
  'real_job_mayb',
  'job_mayb_financi',
  'mayb_financi_problem',
  'financi_problem_massiv',
  'problem_massiv_argument',
  'massiv_argument_night',
  'argument_night_hint',
  'night_hint_need',
  'hint_need_new',
  'need_new_game',
  'new_game_laptop',
  'game_laptop_cost',
  'laptop_cost_grand',
  'cost_grand_ive',
  'grand_ive_ignor',
  'ive_ignor_ask',
  'ignor_ask_outright',
  'ask_outright_buy',
  'outright_buy_birthday',
  'buy_birthday_told',
  'birthday_told_fake',
  'told_fake_job',
  'fake_job_cover',
  'job_cover_new',
  'cover_new_laptop',
  'new_laptop_got',
  'laptop_got_realli',
  'got_realli_piss',
  'realli_piss_tell',
  'piss_tell_im',
  'tell_im_selfish',
  'im_selfish_ruin',
  'selfish_ruin_career',
  'ruin_career_grant',
  'career_grant_afford',
  'grant_afford_buy',
  'afford_buy_realli',
  'buy_realli_hurt',
  'realli_hurt_say',
  'hurt_say_busi',
  'say_busi_real',
  'busi_real_job',
  'real_job_despit',
  'job_despit_work',
  'despit_work_ass',
  'work_ass_aita',
  'ass_aita_buy',
  'aita_buy_new',
  'buy_new_laptop'],
 ['eversinc',
  'got',
  'hospit',
  'chronic',
  'problem',
  'husband',
  'introduc',
  'game',
  'everi',
  'even',
  'one',
  'game',
  'use',
  'thing',
  'eye',
  'blindfold',
  'involv',
  'puzzl',
  'rubi',
  'cube',
  'shape',
  'object',
  'et',
  'cetra',
  'wed',
  'take',
  'turn',
  'entertain',
  'coupl',
  'day',
  'ago',
  'tri',
  'get',
  'sign',
  'paper',
  'wear',
  'blind',
  'fold',
  'refus',
  'never',
  'let',
  'take',
  'look',
  'im',
  'sign',
  'neither',
  'say',
  'tri',
  'see',
  'could',
  'leav',
  'signatur',
  'everytim',
  'sign',
  'help',
  'feel',
  'uncomfort',
  'told',
  'want',
  'play',
  'game',
  'unless',
  'show',
  'paper',
  'first',
  'said',
  'nevermind',
  'stop',
  'bring',
  'last',
  'night',
  'tri',
  'convinc',
  'give',
  'tri',
  'even',
  'volunt',
  'go',
  'first',
  'ask',
  'go',
  'show',
  'go',
  'sign',
  'made',
  'face',
  'said',
  'rule',
  'respect',
  'refus',
  'kept',
  'keep',
  'act',
  'worri',
  'suspici',
  'reason',
  'said',
  'clearli',
  'trust',
  'hurt',
  'find',
  'everyth',
  'argument',
  'told',
  'drop',
  'bring',
  'period',
  'mad',
  'despit',
  'say',
  'big',
  'deal',
  'obvious',
  'upset',
  'kept',
  'talk',
  'trust',
  'line',
  'assum',
  'suspect',
  'anyth',
  'like',
  'might',
  'paranoid',
  'help',
  'think',
  'ta',
  'stood',
  'side',
  'famili',
  'even',
  'visit',
  'eversinc_got',
  'got_hospit',
  'hospit_chronic',
  'chronic_problem',
  'problem_husband',
  'husband_introduc',
  'introduc_game',
  'game_everi',
  'everi_even',
  'even_one',
  'one_game',
  'game_use',
  'use_thing',
  'thing_eye',
  'eye_blindfold',
  'blindfold_involv',
  'involv_puzzl',
  'puzzl_rubi',
  'rubi_cube',
  'cube_shape',
  'shape_object',
  'object_et',
  'et_cetra',
  'cetra_wed',
  'wed_take',
  'take_turn',
  'turn_entertain',
  'entertain_coupl',
  'coupl_day',
  'day_ago',
  'ago_tri',
  'tri_get',
  'get_sign',
  'sign_paper',
  'paper_wear',
  'wear_blind',
  'blind_fold',
  'fold_refus',
  'refus_never',
  'never_let',
  'let_take',
  'take_look',
  'look_im',
  'im_sign',
  'sign_neither',
  'neither_say',
  'say_tri',
  'tri_see',
  'see_could',
  'could_leav',
  'leav_signatur',
  'signatur_everytim',
  'everytim_sign',
  'sign_help',
  'help_feel',
  'feel_uncomfort',
  'uncomfort_told',
  'told_want',
  'want_play',
  'play_game',
  'game_unless',
  'unless_show',
  'show_paper',
  'paper_first',
  'first_said',
  'said_nevermind',
  'nevermind_stop',
  'stop_bring',
  'bring_last',
  'last_night',
  'night_tri',
  'tri_convinc',
  'convinc_give',
  'give_tri',
  'tri_even',
  'even_volunt',
  'volunt_go',
  'go_first',
  'first_ask',
  'ask_go',
  'go_show',
  'show_go',
  'go_sign',
  'sign_made',
  'made_face',
  'face_said',
  'said_rule',
  'rule_respect',
  'respect_refus',
  'refus_kept',
  'kept_keep',
  'keep_act',
  'act_worri',
  'worri_suspici',
  'suspici_reason',
  'reason_said',
  'said_clearli',
  'clearli_trust',
  'trust_hurt',
  'hurt_find',
  'find_everyth',
  'everyth_argument',
  'argument_told',
  'told_drop',
  'drop_bring',
  'bring_period',
  'period_mad',
  'mad_despit',
  'despit_say',
  'say_big',
  'big_deal',
  'deal_obvious',
  'obvious_upset',
  'upset_kept',
  'kept_talk',
  'talk_trust',
  'trust_line',
  'line_assum',
  'assum_suspect',
  'suspect_anyth',
  'anyth_like',
  'like_might',
  'might_paranoid',
  'paranoid_help',
  'help_think',
  'think_ta',
  'ta_stood',
  'stood_side',
  'side_famili',
  'famili_even',
  'even_visit',
  'eversinc_got_hospit',
  'got_hospit_chronic',
  'hospit_chronic_problem',
  'chronic_problem_husband',
  'problem_husband_introduc',
  'husband_introduc_game',
  'introduc_game_everi',
  'game_everi_even',
  'everi_even_one',
  'even_one_game',
  'one_game_use',
  'game_use_thing',
  'use_thing_eye',
  'thing_eye_blindfold',
  'eye_blindfold_involv',
  'blindfold_involv_puzzl',
  'involv_puzzl_rubi',
  'puzzl_rubi_cube',
  'rubi_cube_shape',
  'cube_shape_object',
  'shape_object_et',
  'object_et_cetra',
  'et_cetra_wed',
  'cetra_wed_take',
  'wed_take_turn',
  'take_turn_entertain',
  'turn_entertain_coupl',
  'entertain_coupl_day',
  'coupl_day_ago',
  'day_ago_tri',
  'ago_tri_get',
  'tri_get_sign',
  'get_sign_paper',
  'sign_paper_wear',
  'paper_wear_blind',
  'wear_blind_fold',
  'blind_fold_refus',
  'fold_refus_never',
  'refus_never_let',
  'never_let_take',
  'let_take_look',
  'take_look_im',
  'look_im_sign',
  'im_sign_neither',
  'sign_neither_say',
  'neither_say_tri',
  'say_tri_see',
  'tri_see_could',
  'see_could_leav',
  'could_leav_signatur',
  'leav_signatur_everytim',
  'signatur_everytim_sign',
  'everytim_sign_help',
  'sign_help_feel',
  'help_feel_uncomfort',
  'feel_uncomfort_told',
  'uncomfort_told_want',
  'told_want_play',
  'want_play_game',
  'play_game_unless',
  'game_unless_show',
  'unless_show_paper',
  'show_paper_first',
  'paper_first_said',
  'first_said_nevermind',
  'said_nevermind_stop',
  'nevermind_stop_bring',
  'stop_bring_last',
  'bring_last_night',
  'last_night_tri',
  'night_tri_convinc',
  'tri_convinc_give',
  'convinc_give_tri',
  'give_tri_even',
  'tri_even_volunt',
  'even_volunt_go',
  'volunt_go_first',
  'go_first_ask',
  'first_ask_go',
  'ask_go_show',
  'go_show_go',
  'show_go_sign',
  'go_sign_made',
  'sign_made_face',
  'made_face_said',
  'face_said_rule',
  'said_rule_respect',
  'rule_respect_refus',
  'respect_refus_kept',
  'refus_kept_keep',
  'kept_keep_act',
  'keep_act_worri',
  'act_worri_suspici',
  'worri_suspici_reason',
  'suspici_reason_said',
  'reason_said_clearli',
  'said_clearli_trust',
  'clearli_trust_hurt',
  'trust_hurt_find',
  'hurt_find_everyth',
  'find_everyth_argument',
  'everyth_argument_told',
  'argument_told_drop',
  'told_drop_bring',
  'drop_bring_period',
  'bring_period_mad',
  'period_mad_despit',
  'mad_despit_say',
  'despit_say_big',
  'say_big_deal',
  'big_deal_obvious',
  'deal_obvious_upset',
  'obvious_upset_kept',
  'upset_kept_talk',
  'kept_talk_trust',
  'talk_trust_line',
  'trust_line_assum',
  'line_assum_suspect',
  'assum_suspect_anyth',
  'suspect_anyth_like',
  'anyth_like_might',
  'like_might_paranoid',
  'might_paranoid_help',
  'paranoid_help_think',
  'help_think_ta',
  'think_ta_stood',
  'ta_stood_side',
  'stood_side_famili',
  'side_famili_even',
  'famili_even_visit'],
 ['edit',
  'leav',
  'comment',
  'updat',
  'want',
  'know',
  'ill',
  'get',
  'straight',
  'im',
  'colleg',
  'student',
  'last',
  'semest',
  'medic',
  'school',
  'ive',
  'never',
  'abl',
  'get',
  'loan',
  'ive',
  'work',
  'year',
  'get',
  'degre',
  'pay',
  'pocket',
  'take',
  'way',
  'longer',
  'ive',
  'work',
  'two',
  'sometim',
  'three',
  'job',
  'time',
  'bare',
  'social',
  'life',
  'upcom',
  'semest',
  'reach',
  'goal',
  'tuition',
  'quit',
  'one',
  'job',
  'could',
  'relax',
  'bit',
  'serverbartend',
  'two',
  'bar',
  'offic',
  'job',
  'alway',
  'cash',
  'hidden',
  'apart',
  'closet',
  'box',
  'semest',
  'start',
  'week',
  'two',
  'deposit',
  'pay',
  'tuition',
  'boyfriend',
  'sometim',
  'stay',
  'im',
  'im',
  'sinc',
  'ive',
  'save',
  'semest',
  'one',
  'ive',
  'never',
  'told',
  'box',
  'know',
  'pay',
  'school',
  'well',
  'yesterday',
  'night',
  'get',
  'home',
  'put',
  'money',
  'box',
  'gon',
  'na',
  'deposit',
  'today',
  'gone',
  'freak',
  'tore',
  'apart',
  'think',
  'put',
  'somewher',
  'els',
  'know',
  'call',
  'boyfriend',
  'like',
  'crazi',
  'answer',
  'sleep',
  'last',
  'night',
  'panick',
  'morn',
  'final',
  'call',
  'back',
  'im',
  'yell',
  'money',
  'act',
  'confus',
  'like',
  'im',
  'crazi',
  'come',
  'im',
  'still',
  'piss',
  'final',
  'admit',
  'took',
  'borrow',
  'hell',
  'pay',
  'back',
  'tf',
  'gon',
  'na',
  'get',
  '$',
  'two',
  'week',
  'went',
  'rage',
  'call',
  'polic',
  'report',
  'theft',
  'well',
  'hour',
  'guess',
  'got',
  'phone',
  'call',
  'famili',
  'blow',
  'phone',
  'mother',
  'said',
  'realli',
  'hurt',
  'racist',
  'thing',
  'theyv',
  'harass',
  'past',
  'hour',
  'stress',
  'even',
  'hate',
  'im',
  'feel',
  'bad',
  'stole',
  'money',
  'ive',
  'save',
  'month',
  'brother',
  'call',
  'respect',
  'said',
  'theyll',
  'help',
  'pay',
  'back',
  'go',
  'polic',
  'station',
  'tell',
  'want',
  'drop',
  'charg',
  'realli',
  'believ',
  'could',
  'never',
  'get',
  'money',
  'back',
  'still',
  'know',
  'hate',
  'im',
  'contempl',
  'im',
  'realli',
  'piss',
  'cri',
  'fuck',
  'day',
  'edit_leav',
  'leav_comment',
  'comment_updat',
  'updat_want',
  'want_know',
  'know_ill',
  'ill_get',
  'get_straight',
  'straight_im',
  'im_colleg',
  'colleg_student',
  'student_last',
  'last_semest',
  'semest_medic',
  'medic_school',
  'school_ive',
  'ive_never',
  'never_abl',
  'abl_get',
  'get_loan',
  'loan_ive',
  'ive_work',
  'work_year',
  'year_get',
  'get_degre',
  'degre_pay',
  'pay_pocket',
  'pocket_take',
  'take_way',
  'way_longer',
  'longer_ive',
  'ive_work',
  'work_two',
  'two_sometim',
  'sometim_three',
  'three_job',
  'job_time',
  'time_bare',
  'bare_social',
  'social_life',
  'life_upcom',
  'upcom_semest',
  'semest_reach',
  'reach_goal',
  'goal_tuition',
  'tuition_quit',
  'quit_one',
  'one_job',
  'job_could',
  'could_relax',
  'relax_bit',
  'bit_serverbartend',
  'serverbartend_two',
  'two_bar',
  'bar_offic',
  'offic_job',
  'job_alway',
  'alway_cash',
  'cash_hidden',
  'hidden_apart',
  'apart_closet',
  'closet_box',
  'box_semest',
  'semest_start',
  'start_week',
  'week_two',
  'two_deposit',
  'deposit_pay',
  'pay_tuition',
  'tuition_boyfriend',
  'boyfriend_sometim',
  'sometim_stay',
  'stay_im',
  'im_im',
  'im_sinc',
  'sinc_ive',
  'ive_save',
  'save_semest',
  'semest_one',
  'one_ive',
  'ive_never',
  'never_told',
  'told_box',
  'box_know',
  'know_pay',
  'pay_school',
  'school_well',
  'well_yesterday',
  'yesterday_night',
  'night_get',
  'get_home',
  'home_put',
  'put_money',
  'money_box',
  'box_gon',
  'gon_na',
  'na_deposit',
  'deposit_today',
  'today_gone',
  'gone_freak',
  'freak_tore',
  'tore_apart',
  'apart_think',
  'think_put',
  'put_somewher',
  'somewher_els',
  'els_know',
  'know_call',
  'call_boyfriend',
  'boyfriend_like',
  'like_crazi',
  'crazi_answer',
  'answer_sleep',
  'sleep_last',
  'last_night',
  'night_panick',
  'panick_morn',
  'morn_final',
  'final_call',
  'call_back',
  'back_im',
  'im_yell',
  'yell_money',
  'money_act',
  'act_confus',
  'confus_like',
  'like_im',
  'im_crazi',
  'crazi_come',
  'come_im',
  'im_still',
  'still_piss',
  'piss_final',
  'final_admit',
  'admit_took',
  'took_borrow',
  'borrow_hell',
  'hell_pay',
  'pay_back',
  'back_tf',
  'tf_gon',
  'gon_na',
  'na_get',
  'get_$',
  '$_two',
  'two_week',
  'week_went',
  'went_rage',
  'rage_call',
  'call_polic',
  'polic_report',
  'report_theft',
  'theft_well',
  'well_hour',
  'hour_guess',
  'guess_got',
  'got_phone',
  'phone_call',
  'call_famili',
  'famili_blow',
  'blow_phone',
  'phone_mother',
  'mother_said',
  'said_realli',
  'realli_hurt',
  'hurt_racist',
  'racist_thing',
  'thing_theyv',
  'theyv_harass',
  'harass_past',
  'past_hour',
  'hour_stress',
  'stress_even',
  'even_hate',
  'hate_im',
  'im_feel',
  'feel_bad',
  'bad_stole',
  'stole_money',
  'money_ive',
  'ive_save',
  'save_month',
  'month_brother',
  'brother_call',
  'call_respect',
  'respect_said',
  'said_theyll',
  'theyll_help',
  'help_pay',
  'pay_back',
  'back_go',
  'go_polic',
  'polic_station',
  'station_tell',
  'tell_want',
  'want_drop',
  'drop_charg',
  'charg_realli',
  'realli_believ',
  'believ_could',
  'could_never',
  'never_get',
  'get_money',
  'money_back',
  'back_still',
  'still_know',
  'know_hate',
  'hate_im',
  'im_contempl',
  'contempl_im',
  'im_realli',
  'realli_piss',
  'piss_cri',
  'cri_fuck',
  'fuck_day',
  'edit_leav_comment',
  'leav_comment_updat',
  'comment_updat_want',
  'updat_want_know',
  'want_know_ill',
  'know_ill_get',
  'ill_get_straight',
  'get_straight_im',
  'straight_im_colleg',
  'im_colleg_student',
  'colleg_student_last',
  'student_last_semest',
  'last_semest_medic',
  'semest_medic_school',
  'medic_school_ive',
  'school_ive_never',
  'ive_never_abl',
  'never_abl_get',
  'abl_get_loan',
  'get_loan_ive',
  'loan_ive_work',
  'ive_work_year',
  'work_year_get',
  'year_get_degre',
  'get_degre_pay',
  'degre_pay_pocket',
  'pay_pocket_take',
  'pocket_take_way',
  'take_way_longer',
  'way_longer_ive',
  'longer_ive_work',
  'ive_work_two',
  'work_two_sometim',
  'two_sometim_three',
  'sometim_three_job',
  'three_job_time',
  'job_time_bare',
  'time_bare_social',
  'bare_social_life',
  'social_life_upcom',
  'life_upcom_semest',
  'upcom_semest_reach',
  'semest_reach_goal',
  'reach_goal_tuition',
  'goal_tuition_quit',
  'tuition_quit_one',
  'quit_one_job',
  'one_job_could',
  'job_could_relax',
  'could_relax_bit',
  'relax_bit_serverbartend',
  'bit_serverbartend_two',
  'serverbartend_two_bar',
  'two_bar_offic',
  'bar_offic_job',
  'offic_job_alway',
  'job_alway_cash',
  'alway_cash_hidden',
  'cash_hidden_apart',
  'hidden_apart_closet',
  'apart_closet_box',
  'closet_box_semest',
  'box_semest_start',
  'semest_start_week',
  'start_week_two',
  'week_two_deposit',
  'two_deposit_pay',
  'deposit_pay_tuition',
  'pay_tuition_boyfriend',
  'tuition_boyfriend_sometim',
  'boyfriend_sometim_stay',
  'sometim_stay_im',
  'stay_im_im',
  'im_im_sinc',
  'im_sinc_ive',
  'sinc_ive_save',
  'ive_save_semest',
  'save_semest_one',
  'semest_one_ive',
  'one_ive_never',
  'ive_never_told',
  'never_told_box',
  'told_box_know',
  'box_know_pay',
  'know_pay_school',
  'pay_school_well',
  'school_well_yesterday',
  'well_yesterday_night',
  'yesterday_night_get',
  'night_get_home',
  'get_home_put',
  'home_put_money',
  'put_money_box',
  'money_box_gon',
  'box_gon_na',
  'gon_na_deposit',
  'na_deposit_today',
  'deposit_today_gone',
  'today_gone_freak',
  'gone_freak_tore',
  'freak_tore_apart',
  'tore_apart_think',
  'apart_think_put',
  'think_put_somewher',
  'put_somewher_els',
  'somewher_els_know',
  'els_know_call',
  'know_call_boyfriend',
  'call_boyfriend_like',
  'boyfriend_like_crazi',
  'like_crazi_answer',
  'crazi_answer_sleep',
  'answer_sleep_last',
  'sleep_last_night',
  'last_night_panick',
  'night_panick_morn',
  'panick_morn_final',
  'morn_final_call',
  'final_call_back',
  'call_back_im',
  'back_im_yell',
  'im_yell_money',
  'yell_money_act',
  'money_act_confus',
  'act_confus_like',
  'confus_like_im',
  'like_im_crazi',
  'im_crazi_come',
  'crazi_come_im',
  'come_im_still',
  'im_still_piss',
  'still_piss_final',
  'piss_final_admit',
  'final_admit_took',
  'admit_took_borrow',
  'took_borrow_hell',
  'borrow_hell_pay',
  'hell_pay_back',
  'pay_back_tf',
  'back_tf_gon',
  'tf_gon_na',
  'gon_na_get',
  'na_get_$',
  'get_$_two',
  '$_two_week',
  'two_week_went',
  'week_went_rage',
  'went_rage_call',
  'rage_call_polic',
  'call_polic_report',
  'polic_report_theft',
  'report_theft_well',
  'theft_well_hour',
  'well_hour_guess',
  'hour_guess_got',
  'guess_got_phone',
  'got_phone_call',
  'phone_call_famili',
  'call_famili_blow',
  'famili_blow_phone',
  'blow_phone_mother',
  'phone_mother_said',
  'mother_said_realli',
  'said_realli_hurt',
  'realli_hurt_racist',
  'hurt_racist_thing',
  'racist_thing_theyv',
  'thing_theyv_harass',
  'theyv_harass_past',
  'harass_past_hour',
  'past_hour_stress',
  'hour_stress_even',
  'stress_even_hate',
  'even_hate_im',
  'hate_im_feel',
  'im_feel_bad',
  'feel_bad_stole',
  'bad_stole_money',
  'stole_money_ive',
  'money_ive_save',
  'ive_save_month',
  'save_month_brother',
  'month_brother_call',
  'brother_call_respect',
  'call_respect_said',
  'respect_said_theyll',
  'said_theyll_help',
  'theyll_help_pay',
  'help_pay_back',
  'pay_back_go',
  'back_go_polic',
  'go_polic_station',
  'polic_station_tell',
  'station_tell_want',
  'tell_want_drop',
  'want_drop_charg',
  'drop_charg_realli',
  'charg_realli_believ',
  'realli_believ_could',
  'believ_could_never',
  'could_never_get',
  'never_get_money',
  'get_money_back',
  'money_back_still',
  'back_still_know',
  'still_know_hate',
  'know_hate_im',
  'hate_im_contempl',
  'im_contempl_im',
  'contempl_im_realli',
  'im_realli_piss',
  'realli_piss_cri',
  'piss_cri_fuck',
  'cri_fuck_day'],
 ['futur',
  'sil',
  'liz',
  'turn',
  'bridezilla',
  'go',
  'war',
  'everyon',
  'everi',
  'stupid',
  'thing',
  'natur',
  'color',
  'red',
  'love',
  'hair',
  'liz',
  'blond',
  'love',
  'red',
  'hair',
  'fact',
  'ever',
  'sinc',
  'meet',
  'die',
  'hair',
  'almost',
  'exactli',
  'color',
  'mind',
  'think',
  'weird',
  'monopoli',
  'particular',
  'shade',
  'red',
  'free',
  'hair',
  'whatev',
  'want',
  'well',
  'ask',
  'week',
  'dye',
  'hair',
  'differ',
  'color',
  'want',
  'hair',
  'uniqu',
  'wed',
  'offer',
  'cover',
  'cost',
  'well',
  'said',
  'hair',
  'want',
  'chang',
  'told',
  'brother',
  'told',
  'whatev',
  'want',
  'hair',
  'said',
  'hell',
  'talk',
  'liz',
  'get',
  'back',
  'well',
  'work',
  'liz',
  'come',
  'parent',
  'theyv',
  'taken',
  'side',
  'say',
  'special',
  'day',
  'need',
  'accomod',
  'import',
  'futur',
  'relationship',
  'get',
  'along',
  'believ',
  'accomod',
  'whatev',
  'want',
  'hair',
  'hair',
  'busi',
  'anyway',
  'parent',
  'tell',
  'bigger',
  'person',
  'know',
  'year',
  'old',
  'bigger',
  'person',
  'compar',
  'year',
  'old',
  'liz',
  'told',
  'im',
  'make',
  'minor',
  'issu',
  'big',
  'problem',
  'want',
  'wed',
  'aita',
  'give',
  'futur_sil',
  'sil_liz',
  'liz_turn',
  'turn_bridezilla',
  'bridezilla_go',
  'go_war',
  'war_everyon',
  'everyon_everi',
  'everi_stupid',
  'stupid_thing',
  'thing_natur',
  'natur_color',
  'color_red',
  'red_love',
  'love_hair',
  'hair_liz',
  'liz_blond',
  'blond_love',
  'love_red',
  'red_hair',
  'hair_fact',
  'fact_ever',
  'ever_sinc',
  'sinc_meet',
  'meet_die',
  'die_hair',
  'hair_almost',
  'almost_exactli',
  'exactli_color',
  'color_mind',
  'mind_think',
  'think_weird',
  'weird_monopoli',
  'monopoli_particular',
  'particular_shade',
  'shade_red',
  'red_free',
  'free_hair',
  'hair_whatev',
  'whatev_want',
  'want_well',
  'well_ask',
  'ask_week',
  'week_dye',
  'dye_hair',
  'hair_differ',
  'differ_color',
  'color_want',
  'want_hair',
  'hair_uniqu',
  'uniqu_wed',
  'wed_offer',
  'offer_cover',
  'cover_cost',
  'cost_well',
  'well_said',
  'said_hair',
  'hair_want',
  'want_chang',
  'chang_told',
  'told_brother',
  'brother_told',
  'told_whatev',
  'whatev_want',
  'want_hair',
  'hair_said',
  'said_hell',
  'hell_talk',
  'talk_liz',
  'liz_get',
  'get_back',
  'back_well',
  'well_work',
  'work_liz',
  'liz_come',
  'come_parent',
  'parent_theyv',
  'theyv_taken',
  'taken_side',
  'side_say',
  'say_special',
  'special_day',
  'day_need',
  'need_accomod',
  'accomod_import',
  'import_futur',
  'futur_relationship',
  'relationship_get',
  'get_along',
  'along_believ',
  'believ_accomod',
  'accomod_whatev',
  'whatev_want',
  'want_hair',
  'hair_hair',
  'hair_busi',
  'busi_anyway',
  'anyway_parent',
  'parent_tell',
  'tell_bigger',
  'bigger_person',
  'person_know',
  'know_year',
  'year_old',
  'old_bigger',
  'bigger_person',
  'person_compar',
  'compar_year',
  'year_old',
  'old_liz',
  'liz_told',
  'told_im',
  'im_make',
  'make_minor',
  'minor_issu',
  'issu_big',
  'big_problem',
  'problem_want',
  'want_wed',
  'wed_aita',
  'aita_give',
  'futur_sil_liz',
  'sil_liz_turn',
  'liz_turn_bridezilla',
  'turn_bridezilla_go',
  'bridezilla_go_war',
  'go_war_everyon',
  'war_everyon_everi',
  'everyon_everi_stupid',
  'everi_stupid_thing',
  'stupid_thing_natur',
  'thing_natur_color',
  'natur_color_red',
  'color_red_love',
  'red_love_hair',
  'love_hair_liz',
  'hair_liz_blond',
  'liz_blond_love',
  'blond_love_red',
  'love_red_hair',
  'red_hair_fact',
  'hair_fact_ever',
  'fact_ever_sinc',
  'ever_sinc_meet',
  'sinc_meet_die',
  'meet_die_hair',
  'die_hair_almost',
  'hair_almost_exactli',
  'almost_exactli_color',
  'exactli_color_mind',
  'color_mind_think',
  'mind_think_weird',
  'think_weird_monopoli',
  'weird_monopoli_particular',
  'monopoli_particular_shade',
  'particular_shade_red',
  'shade_red_free',
  'red_free_hair',
  'free_hair_whatev',
  'hair_whatev_want',
  'whatev_want_well',
  'want_well_ask',
  'well_ask_week',
  'ask_week_dye',
  'week_dye_hair',
  'dye_hair_differ',
  'hair_differ_color',
  'differ_color_want',
  'color_want_hair',
  'want_hair_uniqu',
  'hair_uniqu_wed',
  'uniqu_wed_offer',
  'wed_offer_cover',
  'offer_cover_cost',
  'cover_cost_well',
  'cost_well_said',
  'well_said_hair',
  'said_hair_want',
  'hair_want_chang',
  'want_chang_told',
  'chang_told_brother',
  'told_brother_told',
  'brother_told_whatev',
  'told_whatev_want',
  'whatev_want_hair',
  'want_hair_said',
  'hair_said_hell',
  'said_hell_talk',
  'hell_talk_liz',
  'talk_liz_get',
  'liz_get_back',
  'get_back_well',
  'back_well_work',
  'well_work_liz',
  'work_liz_come',
  'liz_come_parent',
  'come_parent_theyv',
  'parent_theyv_taken',
  'theyv_taken_side',
  'taken_side_say',
  'side_say_special',
  'say_special_day',
  'special_day_need',
  'day_need_accomod',
  'need_accomod_import',
  'accomod_import_futur',
  'import_futur_relationship',
  'futur_relationship_get',
  'relationship_get_along',
  'get_along_believ',
  'along_believ_accomod',
  'believ_accomod_whatev',
  'accomod_whatev_want',
  'whatev_want_hair',
  'want_hair_hair',
  'hair_hair_busi',
  'hair_busi_anyway',
  'busi_anyway_parent',
  'anyway_parent_tell',
  'parent_tell_bigger',
  'tell_bigger_person',
  'bigger_person_know',
  'person_know_year',
  'know_year_old',
  'year_old_bigger',
  'old_bigger_person',
  'bigger_person_compar',
  'person_compar_year',
  'compar_year_old',
  'year_old_liz',
  'old_liz_told',
  'liz_told_im',
  'told_im_make',
  'im_make_minor',
  'make_minor_issu',
  'minor_issu_big',
  'issu_big_problem',
  'big_problem_want',
  'problem_want_wed',
  'want_wed_aita',
  'wed_aita_give'],
 ['happen',
  'weekend',
  'earli',
  'thirti',
  'gf',
  'late',
  'twenti',
  'invit',
  'wed',
  'ceremoni',
  'colleagu',
  'could',
  'bring',
  'someon',
  'ask',
  'gf',
  'ive',
  'date',
  'year',
  'would',
  'like',
  'join',
  'realli',
  'happi',
  'appar',
  'love',
  'wed',
  'sinc',
  'live',
  'togeth',
  'drove',
  'pick',
  'wed',
  'time',
  'spare',
  'ceremoni',
  'come',
  'look',
  'realli',
  'beauti',
  'obvious',
  'put',
  'time',
  'fix',
  'hair',
  'make-up',
  'also',
  'wear',
  'off-whit',
  'dress',
  'rather',
  'ornat',
  'got',
  'told',
  'look',
  'stun',
  'ask',
  'could',
  'chang',
  'differ',
  'color',
  'dress',
  'ceremoni',
  'im',
  'one',
  'etiquett',
  'far',
  'one',
  'thing',
  'heard',
  'everywher',
  'wear',
  'white',
  'dress',
  'wed',
  'unless',
  'bride',
  'becam',
  'pretti',
  'upset',
  'want',
  'know',
  'wrong',
  'dress',
  'said',
  'would',
  'inappropri',
  'wear',
  'white',
  'off-whit',
  'dress',
  'unless',
  'bride',
  '-',
  'like',
  'wedding-law',
  'someth',
  'tri',
  'lightheart',
  'roll',
  'eye',
  'said',
  'outdat',
  'tradit',
  'women',
  'virgin',
  'friend',
  'got',
  'marri',
  'everyon',
  'wore',
  'white',
  'big',
  'thing',
  'anymor',
  'told',
  'know',
  'dress',
  'code',
  'ceremoni',
  'sinc',
  'say',
  'white',
  'cloth',
  'still',
  'thought',
  'chang',
  'anoth',
  'color',
  'white',
  'almost-whit',
  '-',
  'colleagu',
  'get',
  'marri',
  'idea',
  'felt',
  'gf',
  'becam',
  'realli',
  'upset',
  'told',
  'tri',
  'control',
  'wear',
  'abus',
  'honestli',
  'made',
  'realli',
  'upset',
  'hurt',
  'said',
  'someth',
  'along',
  'line',
  'fuck',
  'well',
  'go',
  'wed',
  'abus',
  'told',
  'fuck',
  'car',
  'began',
  'cri',
  'want',
  'apolog',
  'give',
  'hug',
  'told',
  'get',
  'edit',
  'clarifi',
  'never',
  'left',
  'driveway',
  'home',
  'drop',
  'middl',
  'nowher',
  'anyth',
  'like',
  'drove',
  'call',
  'text',
  'bunch',
  'answer',
  'want',
  'talk',
  'right',
  'turn',
  'phone',
  'attend',
  'ceremoni',
  'bride',
  'one',
  'wear',
  'white',
  'feel',
  'gut',
  'feel',
  'right',
  'one',
  'got',
  'home',
  'phone',
  'blown',
  'text',
  'best',
  'friend',
  'say',
  'inconsider',
  'control',
  'apolog',
  'behavior',
  'ive',
  'vent',
  'friend',
  '-',
  'agre',
  'said',
  'asshol',
  'thing',
  'tell',
  'could',
  'wear',
  'dress',
  '-',
  'noth',
  'feel',
  'right',
  'sinc',
  'colleagu',
  'wed',
  'better',
  'safe',
  'sorri',
  'im',
  'also',
  'sure',
  'asshol',
  'situat',
  'reddit',
  'aita',
  'updat',
  'never',
  'expect',
  'thread',
  'get',
  'mani',
  'repli',
  'incred',
  'thank',
  'reach',
  'comment',
  'realli',
  'realli',
  'appreci',
  'taken',
  'time',
  'tell',
  'gf',
  'found',
  'thread',
  'know',
  'knew',
  'handl',
  'found',
  'talk',
  'phone',
  'apolog',
  'apolog',
  'pretti',
  'good',
  'talk',
  'ask',
  'could',
  'come',
  'said',
  'would',
  'best',
  'us',
  'go',
  'separ',
  'way',
  'got',
  'upset',
  'ask',
  'even',
  'tri',
  'work',
  'basic',
  'said',
  'good',
  'bye',
  'said',
  'dick',
  'small',
  'actual',
  'made',
  'laugh',
  'pretti',
  'matur',
  'convers',
  'hung',
  'im',
  'pretti',
  'sad',
  'realli',
  'made',
  'feel',
  'happi',
  'mani',
  'comment',
  '-',
  'first',
  'disagr',
  'call',
  'abus',
  'would',
  'futur',
  'disagr',
  'look',
  'hurt',
  'think',
  'abus',
  'would',
  'right',
  'thing',
  'think',
  'abus',
  'said',
  'anyway',
  'would',
  'want',
  'anyway',
  'think',
  'thing',
  'work',
  'best',
  'us',
  'thank',
  'keep',
  'tri',
  'respond',
  'lot',
  'messag',
  'read',
  'happen_weekend',
  'weekend_earli',
  'earli_thirti',
  'thirti_gf',
  'gf_late',
  'late_twenti',
  'twenti_invit',
  'invit_wed',
  'wed_ceremoni',
  'ceremoni_colleagu',
  'colleagu_could',
  'could_bring',
  'bring_someon',
  'someon_ask',
  'ask_gf',
  'gf_ive',
  'ive_date',
  'date_year',
  'year_would',
  'would_like',
  'like_join',
  'join_realli',
  'realli_happi',
  'happi_appar',
  'appar_love',
  'love_wed',
  'wed_sinc',
  'sinc_live',
  'live_togeth',
  'togeth_drove',
  'drove_pick',
  'pick_wed',
  'wed_time',
  'time_spare',
  'spare_ceremoni',
  'ceremoni_come',
  'come_look',
  'look_realli',
  'realli_beauti',
  'beauti_obvious',
  'obvious_put',
  'put_time',
  'time_fix',
  'fix_hair',
  'hair_make-up',
  'make-up_also',
  'also_wear',
  'wear_off-whit',
  'off-whit_dress',
  'dress_rather',
  'rather_ornat',
  'ornat_got',
  'got_told',
  'told_look',
  'look_stun',
  'stun_ask',
  'ask_could',
  'could_chang',
  'chang_differ',
  'differ_color',
  'color_dress',
  'dress_ceremoni',
  'ceremoni_im',
  'im_one',
  'one_etiquett',
  'etiquett_far',
  'far_one',
  'one_thing',
  'thing_heard',
  'heard_everywher',
  'everywher_wear',
  'wear_white',
  'white_dress',
  'dress_wed',
  'wed_unless',
  'unless_bride',
  'bride_becam',
  'becam_pretti',
  'pretti_upset',
  'upset_want',
  'want_know',
  'know_wrong',
  'wrong_dress',
  'dress_said',
  'said_would',
  'would_inappropri',
  'inappropri_wear',
  'wear_white',
  'white_off-whit',
  'off-whit_dress',
  'dress_unless',
  'unless_bride',
  'bride_-',
  '-_like',
  'like_wedding-law',
  'wedding-law_someth',
  'someth_tri',
  'tri_lightheart',
  'lightheart_roll',
  'roll_eye',
  'eye_said',
  'said_outdat',
  'outdat_tradit',
  'tradit_women',
  'women_virgin',
  'virgin_friend',
  'friend_got',
  'got_marri',
  'marri_everyon',
  'everyon_wore',
  'wore_white',
  'white_big',
  'big_thing',
  'thing_anymor',
  'anymor_told',
  'told_know',
  'know_dress',
  'dress_code',
  'code_ceremoni',
  'ceremoni_sinc',
  'sinc_say',
  'say_white',
  'white_cloth',
  'cloth_still',
  'still_thought',
  'thought_chang',
  'chang_anoth',
  'anoth_color',
  'color_white',
  'white_almost-whit',
  'almost-whit_-',
  '-_colleagu',
  'colleagu_get',
  'get_marri',
  'marri_idea',
  'idea_felt',
  'felt_gf',
  'gf_becam',
  'becam_realli',
  'realli_upset',
  'upset_told',
  'told_tri',
  'tri_control',
  'control_wear',
  'wear_abus',
  'abus_honestli',
  'honestli_made',
  'made_realli',
  'realli_upset',
  'upset_hurt',
  'hurt_said',
  'said_someth',
  'someth_along',
  'along_line',
  'line_fuck',
  'fuck_well',
  'well_go',
  'go_wed',
  'wed_abus',
  'abus_told',
  'told_fuck',
  'fuck_car',
  'car_began',
  'began_cri',
  'cri_want',
  'want_apolog',
  'apolog_give',
  'give_hug',
  'hug_told',
  'told_get',
  'get_edit',
  'edit_clarifi',
  'clarifi_never',
  'never_left',
  'left_driveway',
  'driveway_home',
  'home_drop',
  'drop_middl',
  'middl_nowher',
  'nowher_anyth',
  'anyth_like',
  'like_drove',
  'drove_call',
  'call_text',
  'text_bunch',
  'bunch_answer',
  'answer_want',
  'want_talk',
  'talk_right',
  'right_turn',
  'turn_phone',
  'phone_attend',
  'attend_ceremoni',
  'ceremoni_bride',
  'bride_one',
  'one_wear',
  'wear_white',
  'white_feel',
  'feel_gut',
  'gut_feel',
  'feel_right',
  'right_one',
  'one_got',
  'got_home',
  'home_phone',
  'phone_blown',
  'blown_text',
  'text_best',
  'best_friend',
  'friend_say',
  'say_inconsider',
  'inconsider_control',
  'control_apolog',
  'apolog_behavior',
  'behavior_ive',
  'ive_vent',
  'vent_friend',
  'friend_-',
  '-_agre',
  'agre_said',
  'said_asshol',
  'asshol_thing',
  'thing_tell',
  'tell_could',
  'could_wear',
  'wear_dress',
  'dress_-',
  '-_noth',
  'noth_feel',
  'feel_right',
  'right_sinc',
  'sinc_colleagu',
  'colleagu_wed',
  'wed_better',
  'better_safe',
  'safe_sorri',
  'sorri_im',
  'im_also',
  'also_sure',
  'sure_asshol',
  'asshol_situat',
  'situat_reddit',
  'reddit_aita',
  'aita_updat',
  'updat_never',
  'never_expect',
  'expect_thread',
  'thread_get',
  'get_mani',
  'mani_repli',
  'repli_incred',
  'incred_thank',
  'thank_reach',
  'reach_comment',
  'comment_realli',
  'realli_realli',
  'realli_appreci',
  'appreci_taken',
  'taken_time',
  'time_tell',
  'tell_gf',
  'gf_found',
  'found_thread',
  'thread_know',
  'know_knew',
  'knew_handl',
  'handl_found',
  'found_talk',
  'talk_phone',
  'phone_apolog',
  'apolog_apolog',
  'apolog_pretti',
  'pretti_good',
  'good_talk',
  'talk_ask',
  'ask_could',
  'could_come',
  'come_said',
  'said_would',
  'would_best',
  'best_us',
  'us_go',
  'go_separ',
  'separ_way',
  'way_got',
  'got_upset',
  'upset_ask',
  'ask_even',
  'even_tri',
  'tri_work',
  'work_basic',
  'basic_said',
  'said_good',
  'good_bye',
  'bye_said',
  'said_dick',
  'dick_small',
  'small_actual',
  'actual_made',
  'made_laugh',
  'laugh_pretti',
  'pretti_matur',
  'matur_convers',
  'convers_hung',
  'hung_im',
  'im_pretti',
  'pretti_sad',
  'sad_realli',
  'realli_made',
  'made_feel',
  'feel_happi',
  'happi_mani',
  'mani_comment',
  'comment_-',
  '-_first',
  'first_disagr',
  'disagr_call',
  'call_abus',
  'abus_would',
  'would_futur',
  'futur_disagr',
  'disagr_look',
  'look_hurt',
  'hurt_think',
  'think_abus',
  'abus_would',
  'would_right',
  'right_thing',
  'thing_think',
  'think_abus',
  'abus_said',
  'said_anyway',
  'anyway_would',
  'would_want',
  'want_anyway',
  'anyway_think',
  'think_thing',
  'thing_work',
  'work_best',
  'best_us',
  'us_thank',
  'thank_keep',
  'keep_tri',
  'tri_respond',
  'respond_lot',
  'lot_messag',
  'messag_read',
  'happen_weekend_earli',
  'weekend_earli_thirti',
  'earli_thirti_gf',
  'thirti_gf_late',
  'gf_late_twenti',
  'late_twenti_invit',
  'twenti_invit_wed',
  'invit_wed_ceremoni',
  'wed_ceremoni_colleagu',
  'ceremoni_colleagu_could',
  'colleagu_could_bring',
  'could_bring_someon',
  'bring_someon_ask',
  'someon_ask_gf',
  'ask_gf_ive',
  'gf_ive_date',
  'ive_date_year',
  'date_year_would',
  'year_would_like',
  'would_like_join',
  'like_join_realli',
  'join_realli_happi',
  'realli_happi_appar',
  'happi_appar_love',
  'appar_love_wed',
  'love_wed_sinc',
  'wed_sinc_live',
  'sinc_live_togeth',
  'live_togeth_drove',
  'togeth_drove_pick',
  'drove_pick_wed',
  'pick_wed_time',
  'wed_time_spare',
  'time_spare_ceremoni',
  'spare_ceremoni_come',
  'ceremoni_come_look',
  'come_look_realli',
  'look_realli_beauti',
  'realli_beauti_obvious',
  'beauti_obvious_put',
  'obvious_put_time',
  'put_time_fix',
  'time_fix_hair',
  'fix_hair_make-up',
  'hair_make-up_also',
  'make-up_also_wear',
  'also_wear_off-whit',
  'wear_off-whit_dress',
  'off-whit_dress_rather',
  'dress_rather_ornat',
  'rather_ornat_got',
  'ornat_got_told',
  'got_told_look',
  'told_look_stun',
  'look_stun_ask',
  'stun_ask_could',
  'ask_could_chang',
  'could_chang_differ',
  'chang_differ_color',
  'differ_color_dress',
  'color_dress_ceremoni',
  'dress_ceremoni_im',
  'ceremoni_im_one',
  'im_one_etiquett',
  'one_etiquett_far',
  'etiquett_far_one',
  'far_one_thing',
  'one_thing_heard',
  'thing_heard_everywher',
  'heard_everywher_wear',
  'everywher_wear_white',
  'wear_white_dress',
  'white_dress_wed',
  'dress_wed_unless',
  'wed_unless_bride',
  'unless_bride_becam',
  'bride_becam_pretti',
  'becam_pretti_upset',
  'pretti_upset_want',
  'upset_want_know',
  'want_know_wrong',
  'know_wrong_dress',
  'wrong_dress_said',
  'dress_said_would',
  'said_would_inappropri',
  'would_inappropri_wear',
  'inappropri_wear_white',
  'wear_white_off-whit',
  'white_off-whit_dress',
  'off-whit_dress_unless',
  'dress_unless_bride',
  'unless_bride_-',
  'bride_-_like',
  '-_like_wedding-law',
  'like_wedding-law_someth',
  'wedding-law_someth_tri',
  'someth_tri_lightheart',
  'tri_lightheart_roll',
  'lightheart_roll_eye',
  'roll_eye_said',
  'eye_said_outdat',
  'said_outdat_tradit',
  'outdat_tradit_women',
  'tradit_women_virgin',
  'women_virgin_friend',
  'virgin_friend_got',
  'friend_got_marri',
  'got_marri_everyon',
  'marri_everyon_wore',
  'everyon_wore_white',
  'wore_white_big',
  'white_big_thing',
  'big_thing_anymor',
  'thing_anymor_told',
  'anymor_told_know',
  'told_know_dress',
  'know_dress_code',
  'dress_code_ceremoni',
  'code_ceremoni_sinc',
  'ceremoni_sinc_say',
  'sinc_say_white',
  'say_white_cloth',
  'white_cloth_still',
  'cloth_still_thought',
  'still_thought_chang',
  'thought_chang_anoth',
  'chang_anoth_color',
  'anoth_color_white',
  'color_white_almost-whit',
  'white_almost-whit_-',
  'almost-whit_-_colleagu',
  '-_colleagu_get',
  'colleagu_get_marri',
  'get_marri_idea',
  'marri_idea_felt',
  'idea_felt_gf',
  'felt_gf_becam',
  'gf_becam_realli',
  'becam_realli_upset',
  'realli_upset_told',
  'upset_told_tri',
  'told_tri_control',
  'tri_control_wear',
  'control_wear_abus',
  'wear_abus_honestli',
  'abus_honestli_made',
  'honestli_made_realli',
  'made_realli_upset',
  'realli_upset_hurt',
  'upset_hurt_said',
  'hurt_said_someth',
  'said_someth_along',
  'someth_along_line',
  'along_line_fuck',
  'line_fuck_well',
  'fuck_well_go',
  'well_go_wed',
  'go_wed_abus',
  'wed_abus_told',
  'abus_told_fuck',
  'told_fuck_car',
  'fuck_car_began',
  'car_began_cri',
  'began_cri_want',
  'cri_want_apolog',
  'want_apolog_give',
  'apolog_give_hug',
  'give_hug_told',
  'hug_told_get',
  'told_get_edit',
  'get_edit_clarifi',
  'edit_clarifi_never',
  'clarifi_never_left',
  'never_left_driveway',
  'left_driveway_home',
  'driveway_home_drop',
  'home_drop_middl',
  'drop_middl_nowher',
  'middl_nowher_anyth',
  'nowher_anyth_like',
  'anyth_like_drove',
  'like_drove_call',
  'drove_call_text',
  'call_text_bunch',
  'text_bunch_answer',
  'bunch_answer_want',
  'answer_want_talk',
  'want_talk_right',
  'talk_right_turn',
  'right_turn_phone',
  'turn_phone_attend',
  'phone_attend_ceremoni',
  'attend_ceremoni_bride',
  'ceremoni_bride_one',
  'bride_one_wear',
  'one_wear_white',
  'wear_white_feel',
  'white_feel_gut',
  'feel_gut_feel',
  'gut_feel_right',
  'feel_right_one',
  'right_one_got',
  'one_got_home',
  'got_home_phone',
  'home_phone_blown',
  'phone_blown_text',
  'blown_text_best',
  'text_best_friend',
  'best_friend_say',
  'friend_say_inconsider',
  'say_inconsider_control',
  'inconsider_control_apolog',
  'control_apolog_behavior',
  'apolog_behavior_ive',
  'behavior_ive_vent',
  'ive_vent_friend',
  'vent_friend_-',
  'friend_-_agre',
  '-_agre_said',
  'agre_said_asshol',
  'said_asshol_thing',
  'asshol_thing_tell',
  'thing_tell_could',
  'tell_could_wear',
  'could_wear_dress',
  'wear_dress_-',
  'dress_-_noth',
  '-_noth_feel',
  'noth_feel_right',
  'feel_right_sinc',
  'right_sinc_colleagu',
  'sinc_colleagu_wed',
  'colleagu_wed_better',
  'wed_better_safe',
  'better_safe_sorri',
  'safe_sorri_im',
  'sorri_im_also',
  'im_also_sure',
  'also_sure_asshol',
  'sure_asshol_situat',
  'asshol_situat_reddit',
  'situat_reddit_aita',
  'reddit_aita_updat',
  'aita_updat_never',
  'updat_never_expect',
  'never_expect_thread',
  'expect_thread_get',
  'thread_get_mani',
  'get_mani_repli',
  'mani_repli_incred',
  'repli_incred_thank',
  'incred_thank_reach',
  'thank_reach_comment',
  'reach_comment_realli',
  'comment_realli_realli',
  'realli_realli_appreci',
  'realli_appreci_taken',
  'appreci_taken_time',
  'taken_time_tell',
  'time_tell_gf',
  'tell_gf_found',
  'gf_found_thread',
  'found_thread_know',
  'thread_know_knew',
  'know_knew_handl',
  'knew_handl_found',
  'handl_found_talk',
  'found_talk_phone',
  'talk_phone_apolog',
  'phone_apolog_apolog',
  'apolog_apolog_pretti',
  'apolog_pretti_good',
  'pretti_good_talk',
  'good_talk_ask',
  'talk_ask_could',
  'ask_could_come',
  'could_come_said',
  'come_said_would',
  'said_would_best',
  'would_best_us',
  'best_us_go',
  'us_go_separ',
  'go_separ_way',
  'separ_way_got',
  'way_got_upset',
  'got_upset_ask',
  'upset_ask_even',
  'ask_even_tri',
  'even_tri_work',
  'tri_work_basic',
  'work_basic_said',
  'basic_said_good',
  'said_good_bye',
  'good_bye_said',
  'bye_said_dick',
  'said_dick_small',
  'dick_small_actual',
  'small_actual_made',
  'actual_made_laugh',
  'made_laugh_pretti',
  'laugh_pretti_matur',
  'pretti_matur_convers',
  'matur_convers_hung',
  'convers_hung_im',
  'hung_im_pretti',
  ...],
 ['togeth',
  'marri',
  'month',
  'thing',
  'use',
  'use',
  'pad',
  'period',
  'recent',
  'abl',
  'start',
  'use',
  'tampon',
  'medic',
  'problem',
  'comparison',
  'tampon',
  'work',
  'better',
  'especi',
  'im',
  'outsidesay',
  'like',
  'work',
  'travel',
  'husband',
  'ryan',
  'hate',
  'never',
  'trueli',
  'gave',
  'reason',
  'sayh',
  'feel',
  'comfort',
  '*',
  '*',
  'use',
  '*',
  '*',
  'think',
  'big',
  'deal',
  'first',
  'sinc',
  'said',
  'hate',
  'lot',
  'stuff',
  'put',
  'anyway',
  'except',
  'ask',
  'go',
  'back',
  'use',
  'pad',
  'made',
  'clear',
  'sinc',
  'bodi',
  'get',
  'decid',
  'threw',
  'away',
  'tampon',
  'access',
  'get',
  'upset',
  '*',
  '*',
  'keep',
  'peac',
  'bought',
  'box',
  'hid',
  'away',
  'somehow',
  'found',
  'threw',
  'away',
  'find',
  'til',
  'period',
  'yesterday',
  'realiz',
  'tampon',
  'use',
  'tire',
  'stress',
  'yell',
  'admit',
  'throw',
  'away',
  'whole',
  'box',
  'argu',
  'alreadi',
  'knew',
  'felt',
  '*',
  'stuff',
  '*',
  'yet',
  'decid',
  'still',
  '*',
  'keep',
  'around',
  '*',
  'lost',
  'told',
  'right',
  'told',
  'get',
  'alreadi',
  'stare',
  'almost',
  'tear',
  'someth',
  'walk',
  'later',
  'went',
  'coupl',
  'take',
  'discomfert',
  'consuder',
  'said',
  'alreadi',
  'tri',
  'speak',
  'tampon',
  'yet',
  'brush',
  'insult',
  'verbal',
  'abus',
  'also',
  'said',
  'still',
  'insist',
  'use',
  'im',
  'outsid',
  'hous',
  'said',
  'happen',
  'feel',
  'bad',
  'play',
  'wet',
  'end',
  'much',
  'pain',
  'lash',
  'go',
  'far',
  'valid',
  'point',
  'togeth_marri',
  'marri_month',
  'month_thing',
  'thing_use',
  'use_use',
  'use_pad',
  'pad_period',
  'period_recent',
  'recent_abl',
  'abl_start',
  'start_use',
  'use_tampon',
  'tampon_medic',
  'medic_problem',
  'problem_comparison',
  'comparison_tampon',
  'tampon_work',
  'work_better',
  'better_especi',
  'especi_im',
  'im_outsidesay',
  'outsidesay_like',
  'like_work',
  'work_travel',
  'travel_husband',
  'husband_ryan',
  'ryan_hate',
  'hate_never',
  'never_trueli',
  'trueli_gave',
  'gave_reason',
  'reason_sayh',
  'sayh_feel',
  'feel_comfort',
  'comfort_*',
  '*_*',
  '*_use',
  'use_*',
  '*_*',
  '*_think',
  'think_big',
  'big_deal',
  'deal_first',
  'first_sinc',
  'sinc_said',
  'said_hate',
  'hate_lot',
  'lot_stuff',
  'stuff_put',
  'put_anyway',
  'anyway_except',
  'except_ask',
  'ask_go',
  'go_back',
  'back_use',
  'use_pad',
  'pad_made',
  'made_clear',
  'clear_sinc',
  'sinc_bodi',
  'bodi_get',
  'get_decid',
  'decid_threw',
  'threw_away',
  'away_tampon',
  'tampon_access',
  'access_get',
  'get_upset',
  'upset_*',
  '*_*',
  '*_keep',
  'keep_peac',
  'peac_bought',
  'bought_box',
  'box_hid',
  'hid_away',
  'away_somehow',
  'somehow_found',
  'found_threw',
  'threw_away',
  'away_find',
  'find_til',
  'til_period',
  'period_yesterday',
  'yesterday_realiz',
  'realiz_tampon',
  'tampon_use',
  'use_tire',
  'tire_stress',
  'stress_yell',
  'yell_admit',
  'admit_throw',
  'throw_away',
  'away_whole',
  'whole_box',
  'box_argu',
  'argu_alreadi',
  'alreadi_knew',
  'knew_felt',
  'felt_*',
  '*_stuff',
  'stuff_*',
  '*_yet',
  'yet_decid',
  'decid_still',
  'still_*',
  '*_keep',
  'keep_around',
  'around_*',
  '*_lost',
  'lost_told',
  'told_right',
  'right_told',
  'told_get',
  'get_alreadi',
  'alreadi_stare',
  'stare_almost',
  'almost_tear',
  'tear_someth',
  'someth_walk',
  'walk_later',
  'later_went',
  'went_coupl',
  'coupl_take',
  'take_discomfert',
  'discomfert_consuder',
  'consuder_said',
  'said_alreadi',
  'alreadi_tri',
  'tri_speak',
  'speak_tampon',
  'tampon_yet',
  'yet_brush',
  'brush_insult',
  'insult_verbal',
  'verbal_abus',
  'abus_also',
  'also_said',
  'said_still',
  'still_insist',
  'insist_use',
  'use_im',
  'im_outsid',
  'outsid_hous',
  'hous_said',
  'said_happen',
  'happen_feel',
  'feel_bad',
  'bad_play',
  'play_wet',
  'wet_end',
  'end_much',
  'much_pain',
  'pain_lash',
  'lash_go',
  'go_far',
  'far_valid',
  'valid_point',
  'togeth_marri_month',
  'marri_month_thing',
  'month_thing_use',
  'thing_use_use',
  'use_use_pad',
  'use_pad_period',
  'pad_period_recent',
  'period_recent_abl',
  'recent_abl_start',
  'abl_start_use',
  'start_use_tampon',
  'use_tampon_medic',
  'tampon_medic_problem',
  'medic_problem_comparison',
  'problem_comparison_tampon',
  'comparison_tampon_work',
  'tampon_work_better',
  'work_better_especi',
  'better_especi_im',
  'especi_im_outsidesay',
  'im_outsidesay_like',
  'outsidesay_like_work',
  'like_work_travel',
  'work_travel_husband',
  'travel_husband_ryan',
  'husband_ryan_hate',
  'ryan_hate_never',
  'hate_never_trueli',
  'never_trueli_gave',
  'trueli_gave_reason',
  'gave_reason_sayh',
  'reason_sayh_feel',
  'sayh_feel_comfort',
  'feel_comfort_*',
  'comfort_*_*',
  '*_*_use',
  '*_use_*',
  'use_*_*',
  '*_*_think',
  '*_think_big',
  'think_big_deal',
  'big_deal_first',
  'deal_first_sinc',
  'first_sinc_said',
  'sinc_said_hate',
  'said_hate_lot',
  'hate_lot_stuff',
  'lot_stuff_put',
  'stuff_put_anyway',
  'put_anyway_except',
  'anyway_except_ask',
  'except_ask_go',
  'ask_go_back',
  'go_back_use',
  'back_use_pad',
  'use_pad_made',
  'pad_made_clear',
  'made_clear_sinc',
  'clear_sinc_bodi',
  'sinc_bodi_get',
  'bodi_get_decid',
  'get_decid_threw',
  'decid_threw_away',
  'threw_away_tampon',
  'away_tampon_access',
  'tampon_access_get',
  'access_get_upset',
  'get_upset_*',
  'upset_*_*',
  '*_*_keep',
  '*_keep_peac',
  'keep_peac_bought',
  'peac_bought_box',
  'bought_box_hid',
  'box_hid_away',
  'hid_away_somehow',
  'away_somehow_found',
  'somehow_found_threw',
  'found_threw_away',
  'threw_away_find',
  'away_find_til',
  'find_til_period',
  'til_period_yesterday',
  'period_yesterday_realiz',
  'yesterday_realiz_tampon',
  'realiz_tampon_use',
  'tampon_use_tire',
  'use_tire_stress',
  'tire_stress_yell',
  'stress_yell_admit',
  'yell_admit_throw',
  'admit_throw_away',
  'throw_away_whole',
  'away_whole_box',
  'whole_box_argu',
  'box_argu_alreadi',
  'argu_alreadi_knew',
  'alreadi_knew_felt',
  'knew_felt_*',
  'felt_*_stuff',
  '*_stuff_*',
  'stuff_*_yet',
  '*_yet_decid',
  'yet_decid_still',
  'decid_still_*',
  'still_*_keep',
  '*_keep_around',
  'keep_around_*',
  'around_*_lost',
  '*_lost_told',
  'lost_told_right',
  'told_right_told',
  'right_told_get',
  'told_get_alreadi',
  'get_alreadi_stare',
  'alreadi_stare_almost',
  'stare_almost_tear',
  'almost_tear_someth',
  'tear_someth_walk',
  'someth_walk_later',
  'walk_later_went',
  'later_went_coupl',
  'went_coupl_take',
  'coupl_take_discomfert',
  'take_discomfert_consuder',
  'discomfert_consuder_said',
  'consuder_said_alreadi',
  'said_alreadi_tri',
  'alreadi_tri_speak',
  'tri_speak_tampon',
  'speak_tampon_yet',
  'tampon_yet_brush',
  'yet_brush_insult',
  'brush_insult_verbal',
  'insult_verbal_abus',
  'verbal_abus_also',
  'abus_also_said',
  'also_said_still',
  'said_still_insist',
  'still_insist_use',
  'insist_use_im',
  'use_im_outsid',
  'im_outsid_hous',
  'outsid_hous_said',
  'hous_said_happen',
  'said_happen_feel',
  'happen_feel_bad',
  'feel_bad_play',
  'bad_play_wet',
  'play_wet_end',
  'wet_end_much',
  'end_much_pain',
  'much_pain_lash',
  'pain_lash_go',
  'lash_go_far',
  'go_far_valid',
  'far_valid_point'],
 ['husband',
  'work',
  'realli',
  'hard',
  'last',
  'two',
  'year',
  'advanc',
  'compani',
  'final',
  'got',
  'promot',
  'im',
  'realli',
  'realli',
  'proud',
  'parent',
  'want',
  'take',
  'us',
  'dinner',
  'celebr',
  'husband',
  'absolut',
  'love',
  'prime',
  'rib',
  'one',
  'place',
  'area',
  'serv',
  'pick',
  'restaur',
  'thing',
  'is-',
  'im',
  'fond',
  'steak',
  'ill',
  'eat',
  'rare',
  'prefer',
  'chicken',
  'fish',
  'look',
  'menu',
  'leav',
  'right',
  'limit',
  'menu',
  'place',
  'one',
  'fish',
  'entre',
  'two',
  'chicken',
  'entre',
  'none',
  'sound',
  'good',
  'variou',
  'reason',
  'suggest',
  'pick',
  'someplac',
  'els',
  'everyon',
  'eat',
  'refus',
  'cite',
  'rare',
  'get',
  'go',
  'place',
  'go',
  'place',
  'area',
  'regularli',
  'true',
  'place',
  'lot',
  'varieti',
  'everyon',
  'eat',
  'suggest',
  'ask',
  'could',
  'prepar',
  'fish',
  'chicken',
  'without',
  'marinad',
  'sauc',
  'want',
  'difficult',
  'kitchen',
  'staff',
  'next',
  'suggest',
  'order',
  'dessert',
  'everyon',
  'els',
  'ate',
  'entre',
  'done',
  'would',
  'take',
  'want',
  'could',
  'eat',
  'dinner',
  'kid',
  'ate',
  'dessert',
  'opt',
  'go',
  'want',
  'sit',
  'eat',
  'good',
  'time',
  'everyon',
  'els',
  'husband',
  'ask',
  'go',
  'could',
  'celebr',
  'peopl',
  'import',
  'told',
  'need',
  'get',
  'go',
  'late',
  'go',
  'came',
  'back',
  'littl',
  'hour',
  'later',
  'kid',
  'go',
  'box',
  'said',
  'think',
  'tell',
  'kid',
  'go',
  'kept',
  'ask',
  'without',
  'lie',
  'make',
  'sound',
  'bad',
  'got',
  'order',
  'go',
  'let',
  'kid',
  'spend',
  'time',
  'grandpar',
  'talk',
  'park',
  'lot',
  'told',
  'stay',
  'said',
  'put',
  'bad',
  'spot',
  'kid',
  'knew',
  'want',
  'everyon',
  'gotten',
  'picki',
  'eat',
  'one',
  'night',
  'maintain',
  'realli',
  'want',
  'us',
  'eat',
  'dinner',
  'famili',
  'pick',
  'restaur',
  'accomod',
  'menu',
  'aita',
  'updat',
  'comment',
  'pretti',
  'harsh',
  'kick',
  'pant',
  'ive',
  'apolog',
  'profus',
  'husband',
  'go',
  'take',
  'restaur',
  'weekend',
  'buy',
  'camp',
  'gear',
  'eye',
  'start',
  'make',
  'chang',
  'cours',
  'husband_work',
  'work_realli',
  'realli_hard',
  'hard_last',
  'last_two',
  'two_year',
  'year_advanc',
  'advanc_compani',
  'compani_final',
  'final_got',
  'got_promot',
  'promot_im',
  'im_realli',
  'realli_realli',
  'realli_proud',
  'proud_parent',
  'parent_want',
  'want_take',
  'take_us',
  'us_dinner',
  'dinner_celebr',
  'celebr_husband',
  'husband_absolut',
  'absolut_love',
  'love_prime',
  'prime_rib',
  'rib_one',
  'one_place',
  'place_area',
  'area_serv',
  'serv_pick',
  'pick_restaur',
  'restaur_thing',
  'thing_is-',
  'is-_im',
  'im_fond',
  'fond_steak',
  'steak_ill',
  'ill_eat',
  'eat_rare',
  'rare_prefer',
  'prefer_chicken',
  'chicken_fish',
  'fish_look',
  'look_menu',
  'menu_leav',
  'leav_right',
  'right_limit',
  'limit_menu',
  'menu_place',
  'place_one',
  'one_fish',
  'fish_entre',
  'entre_two',
  'two_chicken',
  'chicken_entre',
  'entre_none',
  'none_sound',
  'sound_good',
  'good_variou',
  'variou_reason',
  'reason_suggest',
  'suggest_pick',
  'pick_someplac',
  'someplac_els',
  'els_everyon',
  'everyon_eat',
  'eat_refus',
  'refus_cite',
  'cite_rare',
  'rare_get',
  'get_go',
  'go_place',
  'place_go',
  'go_place',
  'place_area',
  'area_regularli',
  'regularli_true',
  'true_place',
  'place_lot',
  'lot_varieti',
  'varieti_everyon',
  'everyon_eat',
  'eat_suggest',
  'suggest_ask',
  'ask_could',
  'could_prepar',
  'prepar_fish',
  'fish_chicken',
  'chicken_without',
  'without_marinad',
  'marinad_sauc',
  'sauc_want',
  'want_difficult',
  'difficult_kitchen',
  'kitchen_staff',
  'staff_next',
  'next_suggest',
  'suggest_order',
  'order_dessert',
  'dessert_everyon',
  'everyon_els',
  'els_ate',
  'ate_entre',
  'entre_done',
  'done_would',
  'would_take',
  'take_want',
  'want_could',
  'could_eat',
  'eat_dinner',
  'dinner_kid',
  'kid_ate',
  'ate_dessert',
  'dessert_opt',
  'opt_go',
  'go_want',
  'want_sit',
  'sit_eat',
  'eat_good',
  'good_time',
  'time_everyon',
  'everyon_els',
  'els_husband',
  'husband_ask',
  'ask_go',
  'go_could',
  'could_celebr',
  'celebr_peopl',
  'peopl_import',
  'import_told',
  'told_need',
  'need_get',
  'get_go',
  'go_late',
  'late_go',
  'go_came',
  'came_back',
  'back_littl',
  'littl_hour',
  'hour_later',
  'later_kid',
  'kid_go',
  'go_box',
  'box_said',
  'said_think',
  'think_tell',
  'tell_kid',
  'kid_go',
  'go_kept',
  'kept_ask',
  'ask_without',
  'without_lie',
  'lie_make',
  'make_sound',
  'sound_bad',
  'bad_got',
  'got_order',
  'order_go',
  'go_let',
  'let_kid',
  'kid_spend',
  'spend_time',
  'time_grandpar',
  'grandpar_talk',
  'talk_park',
  'park_lot',
  'lot_told',
  'told_stay',
  'stay_said',
  'said_put',
  'put_bad',
  'bad_spot',
  'spot_kid',
  'kid_knew',
  'knew_want',
  'want_everyon',
  'everyon_gotten',
  'gotten_picki',
  'picki_eat',
  'eat_one',
  'one_night',
  'night_maintain',
  'maintain_realli',
  'realli_want',
  'want_us',
  'us_eat',
  'eat_dinner',
  'dinner_famili',
  'famili_pick',
  'pick_restaur',
  'restaur_accomod',
  'accomod_menu',
  'menu_aita',
  'aita_updat',
  'updat_comment',
  'comment_pretti',
  'pretti_harsh',
  'harsh_kick',
  'kick_pant',
  'pant_ive',
  'ive_apolog',
  'apolog_profus',
  'profus_husband',
  'husband_go',
  'go_take',
  'take_restaur',
  'restaur_weekend',
  'weekend_buy',
  'buy_camp',
  'camp_gear',
  'gear_eye',
  'eye_start',
  'start_make',
  'make_chang',
  'chang_cours',
  'husband_work_realli',
  'work_realli_hard',
  'realli_hard_last',
  'hard_last_two',
  'last_two_year',
  'two_year_advanc',
  'year_advanc_compani',
  'advanc_compani_final',
  'compani_final_got',
  'final_got_promot',
  'got_promot_im',
  'promot_im_realli',
  'im_realli_realli',
  'realli_realli_proud',
  'realli_proud_parent',
  'proud_parent_want',
  'parent_want_take',
  'want_take_us',
  'take_us_dinner',
  'us_dinner_celebr',
  'dinner_celebr_husband',
  'celebr_husband_absolut',
  'husband_absolut_love',
  'absolut_love_prime',
  'love_prime_rib',
  'prime_rib_one',
  'rib_one_place',
  'one_place_area',
  'place_area_serv',
  'area_serv_pick',
  'serv_pick_restaur',
  'pick_restaur_thing',
  'restaur_thing_is-',
  'thing_is-_im',
  'is-_im_fond',
  'im_fond_steak',
  'fond_steak_ill',
  'steak_ill_eat',
  'ill_eat_rare',
  'eat_rare_prefer',
  'rare_prefer_chicken',
  'prefer_chicken_fish',
  'chicken_fish_look',
  'fish_look_menu',
  'look_menu_leav',
  'menu_leav_right',
  'leav_right_limit',
  'right_limit_menu',
  'limit_menu_place',
  'menu_place_one',
  'place_one_fish',
  'one_fish_entre',
  'fish_entre_two',
  'entre_two_chicken',
  'two_chicken_entre',
  'chicken_entre_none',
  'entre_none_sound',
  'none_sound_good',
  'sound_good_variou',
  'good_variou_reason',
  'variou_reason_suggest',
  'reason_suggest_pick',
  'suggest_pick_someplac',
  'pick_someplac_els',
  'someplac_els_everyon',
  'els_everyon_eat',
  'everyon_eat_refus',
  'eat_refus_cite',
  'refus_cite_rare',
  'cite_rare_get',
  'rare_get_go',
  'get_go_place',
  'go_place_go',
  'place_go_place',
  'go_place_area',
  'place_area_regularli',
  'area_regularli_true',
  'regularli_true_place',
  'true_place_lot',
  'place_lot_varieti',
  'lot_varieti_everyon',
  'varieti_everyon_eat',
  'everyon_eat_suggest',
  'eat_suggest_ask',
  'suggest_ask_could',
  'ask_could_prepar',
  'could_prepar_fish',
  'prepar_fish_chicken',
  'fish_chicken_without',
  'chicken_without_marinad',
  'without_marinad_sauc',
  'marinad_sauc_want',
  'sauc_want_difficult',
  'want_difficult_kitchen',
  'difficult_kitchen_staff',
  'kitchen_staff_next',
  'staff_next_suggest',
  'next_suggest_order',
  'suggest_order_dessert',
  'order_dessert_everyon',
  'dessert_everyon_els',
  'everyon_els_ate',
  'els_ate_entre',
  'ate_entre_done',
  'entre_done_would',
  'done_would_take',
  'would_take_want',
  'take_want_could',
  'want_could_eat',
  'could_eat_dinner',
  'eat_dinner_kid',
  'dinner_kid_ate',
  'kid_ate_dessert',
  'ate_dessert_opt',
  'dessert_opt_go',
  'opt_go_want',
  'go_want_sit',
  'want_sit_eat',
  'sit_eat_good',
  'eat_good_time',
  'good_time_everyon',
  'time_everyon_els',
  'everyon_els_husband',
  'els_husband_ask',
  'husband_ask_go',
  'ask_go_could',
  'go_could_celebr',
  'could_celebr_peopl',
  'celebr_peopl_import',
  'peopl_import_told',
  'import_told_need',
  'told_need_get',
  'need_get_go',
  'get_go_late',
  'go_late_go',
  'late_go_came',
  'go_came_back',
  'came_back_littl',
  'back_littl_hour',
  'littl_hour_later',
  'hour_later_kid',
  'later_kid_go',
  'kid_go_box',
  'go_box_said',
  'box_said_think',
  'said_think_tell',
  'think_tell_kid',
  'tell_kid_go',
  'kid_go_kept',
  'go_kept_ask',
  'kept_ask_without',
  'ask_without_lie',
  'without_lie_make',
  'lie_make_sound',
  'make_sound_bad',
  'sound_bad_got',
  'bad_got_order',
  'got_order_go',
  'order_go_let',
  'go_let_kid',
  'let_kid_spend',
  'kid_spend_time',
  'spend_time_grandpar',
  'time_grandpar_talk',
  'grandpar_talk_park',
  'talk_park_lot',
  'park_lot_told',
  'lot_told_stay',
  'told_stay_said',
  'stay_said_put',
  'said_put_bad',
  'put_bad_spot',
  'bad_spot_kid',
  'spot_kid_knew',
  'kid_knew_want',
  'knew_want_everyon',
  'want_everyon_gotten',
  'everyon_gotten_picki',
  'gotten_picki_eat',
  'picki_eat_one',
  'eat_one_night',
  'one_night_maintain',
  'night_maintain_realli',
  'maintain_realli_want',
  'realli_want_us',
  'want_us_eat',
  'us_eat_dinner',
  'eat_dinner_famili',
  'dinner_famili_pick',
  'famili_pick_restaur',
  'pick_restaur_accomod',
  'restaur_accomod_menu',
  'accomod_menu_aita',
  'menu_aita_updat',
  'aita_updat_comment',
  'updat_comment_pretti',
  'comment_pretti_harsh',
  'pretti_harsh_kick',
  'harsh_kick_pant',
  'kick_pant_ive',
  'pant_ive_apolog',
  'ive_apolog_profus',
  'apolog_profus_husband',
  'profus_husband_go',
  'husband_go_take',
  'go_take_restaur',
  'take_restaur_weekend',
  'restaur_weekend_buy',
  'weekend_buy_camp',
  'buy_camp_gear',
  'camp_gear_eye',
  'gear_eye_start',
  'eye_start_make',
  'start_make_chang',
  'make_chang_cours'],
 ['friend',
  '[',
  ']',
  'constantli',
  'late',
  'everyth',
  'work-rel',
  'fun',
  'activ',
  'alway',
  'least',
  '-',
  'minut',
  'late',
  'car',
  'oftentim',
  '[',
  ']',
  'pick',
  'hous',
  'work',
  'univers',
  'phd',
  'student',
  'place',
  'along',
  'way',
  'last',
  'time',
  'offer',
  'ride',
  'work',
  'end',
  'minut',
  'late',
  'ive',
  'alreadi',
  'arriv',
  'place',
  'end',
  'late',
  'work',
  'alway',
  'apologet',
  'late',
  'never',
  'chang',
  'week',
  'suppos',
  'give',
  'seminar',
  'univers',
  'crucial',
  'part',
  'phd',
  'program',
  'ask',
  'could',
  'give',
  'ride',
  'work',
  'day',
  'told',
  'sure',
  'pick',
  'must',
  'exactli',
  'minut',
  'later',
  'chuckl',
  'told',
  'joke',
  'promis',
  'morn',
  'seminar',
  'drove',
  'place',
  'got',
  'text',
  'told',
  'would',
  'minut',
  'indic',
  'would',
  'come',
  'text',
  'anyth',
  'drove',
  'around',
  'call',
  'ask',
  'told',
  'work',
  'joke',
  'told',
  'readi',
  'right',
  'minut',
  'start',
  'scream',
  'cri',
  'phone',
  'told',
  'hard',
  'time',
  'morn',
  'readi',
  'right',
  'beg',
  'come',
  'back',
  'pick',
  'seminar',
  'need',
  'school',
  'couldv',
  'done',
  'quick',
  'enough',
  'pick',
  'drop',
  'without',
  'affect',
  'work',
  'decid',
  'want',
  'told',
  'cri',
  'hyperventil',
  'point',
  'said',
  'shed',
  'promis',
  'never',
  'late',
  'anyth',
  'els',
  'reemphas',
  'seminar',
  'crucial',
  'phd',
  'absolut',
  'miss',
  'without',
  'sever',
  'consequ',
  'respond',
  'oh',
  'well',
  'hung',
  'went',
  'day',
  'work',
  'normal',
  'feel',
  'like',
  'couldv',
  'went',
  'back',
  'pick',
  'scenario',
  'sinc',
  'detriment',
  'time',
  'someth',
  'import',
  'hand',
  'feel',
  'like',
  'wake-up',
  'call',
  'chronic',
  'late',
  'edit',
  'thank',
  'everyon',
  'kind',
  'word',
  'answer',
  'common',
  'question',
  'ye',
  'miss',
  'seminar',
  'appar',
  'got',
  'big',
  'troubl',
  'school',
  'think',
  'go',
  'ruin',
  'phd',
  'definit',
  'consequ',
  'regard',
  'friendship',
  'alreadi',
  'way',
  'happen',
  'talk',
  'friend_[',
  '[_]',
  ']_constantli',
  'constantli_late',
  'late_everyth',
  'everyth_work-rel',
  'work-rel_fun',
  'fun_activ',
  'activ_alway',
  'alway_least',
  'least_-',
  '-_minut',
  'minut_late',
  'late_car',
  'car_oftentim',
  'oftentim_[',
  '[_]',
  ']_pick',
  'pick_hous',
  'hous_work',
  'work_univers',
  'univers_phd',
  'phd_student',
  'student_place',
  'place_along',
  'along_way',
  'way_last',
  'last_time',
  'time_offer',
  'offer_ride',
  'ride_work',
  'work_end',
  'end_minut',
  'minut_late',
  'late_ive',
  'ive_alreadi',
  'alreadi_arriv',
  'arriv_place',
  'place_end',
  'end_late',
  'late_work',
  'work_alway',
  'alway_apologet',
  'apologet_late',
  'late_never',
  'never_chang',
  'chang_week',
  'week_suppos',
  'suppos_give',
  'give_seminar',
  'seminar_univers',
  'univers_crucial',
  'crucial_part',
  'part_phd',
  'phd_program',
  'program_ask',
  'ask_could',
  'could_give',
  'give_ride',
  'ride_work',
  'work_day',
  'day_told',
  'told_sure',
  'sure_pick',
  'pick_must',
  'must_exactli',
  'exactli_minut',
  'minut_later',
  'later_chuckl',
  'chuckl_told',
  'told_joke',
  'joke_promis',
  'promis_morn',
  'morn_seminar',
  'seminar_drove',
  'drove_place',
  'place_got',
  'got_text',
  'text_told',
  'told_would',
  'would_minut',
  'minut_indic',
  'indic_would',
  'would_come',
  'come_text',
  'text_anyth',
  'anyth_drove',
  'drove_around',
  'around_call',
  'call_ask',
  'ask_told',
  'told_work',
  'work_joke',
  'joke_told',
  'told_readi',
  'readi_right',
  'right_minut',
  'minut_start',
  'start_scream',
  'scream_cri',
  'cri_phone',
  'phone_told',
  'told_hard',
  'hard_time',
  'time_morn',
  'morn_readi',
  'readi_right',
  'right_beg',
  'beg_come',
  'come_back',
  'back_pick',
  'pick_seminar',
  'seminar_need',
  'need_school',
  'school_couldv',
  'couldv_done',
  'done_quick',
  'quick_enough',
  'enough_pick',
  'pick_drop',
  'drop_without',
  'without_affect',
  'affect_work',
  'work_decid',
  'decid_want',
  'want_told',
  'told_cri',
  'cri_hyperventil',
  'hyperventil_point',
  'point_said',
  'said_shed',
  'shed_promis',
  'promis_never',
  'never_late',
  'late_anyth',
  'anyth_els',
  'els_reemphas',
  'reemphas_seminar',
  'seminar_crucial',
  'crucial_phd',
  'phd_absolut',
  'absolut_miss',
  'miss_without',
  'without_sever',
  'sever_consequ',
  'consequ_respond',
  'respond_oh',
  'oh_well',
  'well_hung',
  'hung_went',
  'went_day',
  'day_work',
  'work_normal',
  'normal_feel',
  'feel_like',
  'like_couldv',
  'couldv_went',
  'went_back',
  'back_pick',
  'pick_scenario',
  'scenario_sinc',
  'sinc_detriment',
  'detriment_time',
  'time_someth',
  'someth_import',
  'import_hand',
  'hand_feel',
  'feel_like',
  'like_wake-up',
  'wake-up_call',
  'call_chronic',
  'chronic_late',
  'late_edit',
  'edit_thank',
  'thank_everyon',
  'everyon_kind',
  'kind_word',
  'word_answer',
  'answer_common',
  'common_question',
  'question_ye',
  'ye_miss',
  'miss_seminar',
  'seminar_appar',
  'appar_got',
  'got_big',
  'big_troubl',
  'troubl_school',
  'school_think',
  'think_go',
  'go_ruin',
  'ruin_phd',
  'phd_definit',
  'definit_consequ',
  'consequ_regard',
  'regard_friendship',
  'friendship_alreadi',
  'alreadi_way',
  'way_happen',
  'happen_talk',
  'friend_[_]',
  '[_]_constantli',
  ']_constantli_late',
  'constantli_late_everyth',
  'late_everyth_work-rel',
  'everyth_work-rel_fun',
  'work-rel_fun_activ',
  'fun_activ_alway',
  'activ_alway_least',
  'alway_least_-',
  'least_-_minut',
  '-_minut_late',
  'minut_late_car',
  'late_car_oftentim',
  'car_oftentim_[',
  'oftentim_[_]',
  '[_]_pick',
  ']_pick_hous',
  'pick_hous_work',
  'hous_work_univers',
  'work_univers_phd',
  'univers_phd_student',
  'phd_student_place',
  'student_place_along',
  'place_along_way',
  'along_way_last',
  'way_last_time',
  'last_time_offer',
  'time_offer_ride',
  'offer_ride_work',
  'ride_work_end',
  'work_end_minut',
  'end_minut_late',
  'minut_late_ive',
  'late_ive_alreadi',
  'ive_alreadi_arriv',
  'alreadi_arriv_place',
  'arriv_place_end',
  'place_end_late',
  'end_late_work',
  'late_work_alway',
  'work_alway_apologet',
  'alway_apologet_late',
  'apologet_late_never',
  'late_never_chang',
  'never_chang_week',
  'chang_week_suppos',
  'week_suppos_give',
  'suppos_give_seminar',
  'give_seminar_univers',
  'seminar_univers_crucial',
  'univers_crucial_part',
  'crucial_part_phd',
  'part_phd_program',
  'phd_program_ask',
  'program_ask_could',
  'ask_could_give',
  'could_give_ride',
  'give_ride_work',
  'ride_work_day',
  'work_day_told',
  'day_told_sure',
  'told_sure_pick',
  'sure_pick_must',
  'pick_must_exactli',
  'must_exactli_minut',
  'exactli_minut_later',
  'minut_later_chuckl',
  'later_chuckl_told',
  'chuckl_told_joke',
  'told_joke_promis',
  'joke_promis_morn',
  'promis_morn_seminar',
  'morn_seminar_drove',
  'seminar_drove_place',
  'drove_place_got',
  'place_got_text',
  'got_text_told',
  'text_told_would',
  'told_would_minut',
  'would_minut_indic',
  'minut_indic_would',
  'indic_would_come',
  'would_come_text',
  'come_text_anyth',
  'text_anyth_drove',
  'anyth_drove_around',
  'drove_around_call',
  'around_call_ask',
  'call_ask_told',
  'ask_told_work',
  'told_work_joke',
  'work_joke_told',
  'joke_told_readi',
  'told_readi_right',
  'readi_right_minut',
  'right_minut_start',
  'minut_start_scream',
  'start_scream_cri',
  'scream_cri_phone',
  'cri_phone_told',
  'phone_told_hard',
  'told_hard_time',
  'hard_time_morn',
  'time_morn_readi',
  'morn_readi_right',
  'readi_right_beg',
  'right_beg_come',
  'beg_come_back',
  'come_back_pick',
  'back_pick_seminar',
  'pick_seminar_need',
  'seminar_need_school',
  'need_school_couldv',
  'school_couldv_done',
  'couldv_done_quick',
  'done_quick_enough',
  'quick_enough_pick',
  'enough_pick_drop',
  'pick_drop_without',
  'drop_without_affect',
  'without_affect_work',
  'affect_work_decid',
  'work_decid_want',
  'decid_want_told',
  'want_told_cri',
  'told_cri_hyperventil',
  'cri_hyperventil_point',
  'hyperventil_point_said',
  'point_said_shed',
  'said_shed_promis',
  'shed_promis_never',
  'promis_never_late',
  'never_late_anyth',
  'late_anyth_els',
  'anyth_els_reemphas',
  'els_reemphas_seminar',
  'reemphas_seminar_crucial',
  'seminar_crucial_phd',
  'crucial_phd_absolut',
  'phd_absolut_miss',
  'absolut_miss_without',
  'miss_without_sever',
  'without_sever_consequ',
  'sever_consequ_respond',
  'consequ_respond_oh',
  'respond_oh_well',
  'oh_well_hung',
  'well_hung_went',
  'hung_went_day',
  'went_day_work',
  'day_work_normal',
  'work_normal_feel',
  'normal_feel_like',
  'feel_like_couldv',
  'like_couldv_went',
  'couldv_went_back',
  'went_back_pick',
  'back_pick_scenario',
  'pick_scenario_sinc',
  'scenario_sinc_detriment',
  'sinc_detriment_time',
  'detriment_time_someth',
  'time_someth_import',
  'someth_import_hand',
  'import_hand_feel',
  'hand_feel_like',
  'feel_like_wake-up',
  'like_wake-up_call',
  'wake-up_call_chronic',
  'call_chronic_late',
  'chronic_late_edit',
  'late_edit_thank',
  'edit_thank_everyon',
  'thank_everyon_kind',
  'everyon_kind_word',
  'kind_word_answer',
  'word_answer_common',
  'answer_common_question',
  'common_question_ye',
  'question_ye_miss',
  'ye_miss_seminar',
  'miss_seminar_appar',
  'seminar_appar_got',
  'appar_got_big',
  'got_big_troubl',
  'big_troubl_school',
  'troubl_school_think',
  'school_think_go',
  'think_go_ruin',
  'go_ruin_phd',
  'ruin_phd_definit',
  'phd_definit_consequ',
  'definit_consequ_regard',
  'consequ_regard_friendship',
  'regard_friendship_alreadi',
  'friendship_alreadi_way',
  'alreadi_way_happen',
  'way_happen_talk'],
 ['husband',
  'got',
  'car',
  'accid',
  'almost',
  'month',
  'ago',
  'bedridden',
  'due',
  'back',
  'injuri',
  'ive',
  'primari',
  'caregiv',
  'pressur',
  'much',
  'mil',
  'keep',
  'tell',
  'take',
  'care',
  'constantli',
  'beg',
  'take',
  'time',
  'work',
  'ask',
  'send',
  'hourli',
  'updat',
  'condit',
  'first',
  'week',
  'shed',
  'get',
  'mad',
  'caus',
  'issu',
  'visit',
  'everyday',
  'anyth',
  'help',
  'altern',
  'shed',
  'list',
  'thing',
  'famili',
  'keep',
  'tell',
  'worri',
  'sick',
  'son',
  'tri',
  'stay',
  'calm',
  'day',
  'ago',
  'call',
  'berat',
  'replac',
  'sheet',
  'quickli',
  'idea',
  'found',
  'sinc',
  'husband',
  'call',
  'sister',
  'inlaw',
  'call',
  'tell',
  'mom',
  'instal',
  'camera',
  'bedroom',
  'see',
  'take',
  'proper',
  'care',
  'son',
  'stun',
  'search',
  'room',
  'found',
  'camera',
  'call',
  'mil',
  'huge',
  'fight',
  'admit',
  'said',
  'feel',
  'concern',
  'want',
  'make',
  'sure',
  'son',
  'care',
  'despit',
  'call',
  'everyday',
  'yell',
  'tell',
  'longer',
  'allow',
  'home',
  'lost',
  'went',
  'rant',
  'im',
  'stop',
  'see',
  'son',
  'see',
  'liter',
  'make',
  'sick',
  'famili',
  'call',
  'later',
  'get',
  'back',
  'decis',
  'told',
  'breach',
  'privaci',
  'took',
  'advantag',
  'situat',
  'said',
  'im',
  'take',
  'person',
  'cant',
  'blame',
  'concern',
  'mother',
  'want',
  'make',
  'sure',
  'son',
  'fine',
  'especi',
  'sinc',
  'list',
  'thing',
  'thought',
  'wrong',
  'end',
  'convers',
  'husband',
  'upset',
  'tell',
  'im',
  'vindict',
  'mom',
  'cant',
  'come',
  'hell',
  'move',
  'argu',
  'went',
  'outsid',
  'silent',
  'eversinc',
  'aita',
  'husband_got',
  'got_car',
  'car_accid',
  'accid_almost',
  'almost_month',
  'month_ago',
  'ago_bedridden',
  'bedridden_due',
  'due_back',
  'back_injuri',
  'injuri_ive',
  'ive_primari',
  'primari_caregiv',
  'caregiv_pressur',
  'pressur_much',
  'much_mil',
  'mil_keep',
  'keep_tell',
  'tell_take',
  'take_care',
  'care_constantli',
  'constantli_beg',
  'beg_take',
  'take_time',
  'time_work',
  'work_ask',
  'ask_send',
  'send_hourli',
  'hourli_updat',
  'updat_condit',
  'condit_first',
  'first_week',
  'week_shed',
  'shed_get',
  'get_mad',
  'mad_caus',
  'caus_issu',
  'issu_visit',
  'visit_everyday',
  'everyday_anyth',
  'anyth_help',
  'help_altern',
  'altern_shed',
  'shed_list',
  'list_thing',
  'thing_famili',
  'famili_keep',
  'keep_tell',
  'tell_worri',
  'worri_sick',
  'sick_son',
  'son_tri',
  'tri_stay',
  'stay_calm',
  'calm_day',
  'day_ago',
  'ago_call',
  'call_berat',
  'berat_replac',
  'replac_sheet',
  'sheet_quickli',
  'quickli_idea',
  'idea_found',
  'found_sinc',
  'sinc_husband',
  'husband_call',
  'call_sister',
  'sister_inlaw',
  'inlaw_call',
  'call_tell',
  'tell_mom',
  'mom_instal',
  'instal_camera',
  'camera_bedroom',
  'bedroom_see',
  'see_take',
  'take_proper',
  'proper_care',
  'care_son',
  'son_stun',
  'stun_search',
  'search_room',
  'room_found',
  'found_camera',
  'camera_call',
  'call_mil',
  'mil_huge',
  'huge_fight',
  'fight_admit',
  'admit_said',
  'said_feel',
  'feel_concern',
  'concern_want',
  'want_make',
  'make_sure',
  'sure_son',
  'son_care',
  'care_despit',
  'despit_call',
  'call_everyday',
  'everyday_yell',
  'yell_tell',
  'tell_longer',
  'longer_allow',
  'allow_home',
  'home_lost',
  'lost_went',
  'went_rant',
  'rant_im',
  'im_stop',
  'stop_see',
  'see_son',
  'son_see',
  'see_liter',
  'liter_make',
  'make_sick',
  'sick_famili',
  'famili_call',
  'call_later',
  'later_get',
  'get_back',
  'back_decis',
  'decis_told',
  'told_breach',
  'breach_privaci',
  'privaci_took',
  'took_advantag',
  'advantag_situat',
  'situat_said',
  'said_im',
  'im_take',
  'take_person',
  'person_cant',
  'cant_blame',
  'blame_concern',
  'concern_mother',
  'mother_want',
  'want_make',
  'make_sure',
  'sure_son',
  'son_fine',
  'fine_especi',
  'especi_sinc',
  'sinc_list',
  'list_thing',
  'thing_thought',
  'thought_wrong',
  'wrong_end',
  'end_convers',
  'convers_husband',
  'husband_upset',
  'upset_tell',
  'tell_im',
  'im_vindict',
  'vindict_mom',
  'mom_cant',
  'cant_come',
  'come_hell',
  'hell_move',
  'move_argu',
  'argu_went',
  'went_outsid',
  'outsid_silent',
  'silent_eversinc',
  'eversinc_aita',
  'husband_got_car',
  'got_car_accid',
  'car_accid_almost',
  'accid_almost_month',
  'almost_month_ago',
  'month_ago_bedridden',
  'ago_bedridden_due',
  'bedridden_due_back',
  'due_back_injuri',
  'back_injuri_ive',
  'injuri_ive_primari',
  'ive_primari_caregiv',
  'primari_caregiv_pressur',
  'caregiv_pressur_much',
  'pressur_much_mil',
  'much_mil_keep',
  'mil_keep_tell',
  'keep_tell_take',
  'tell_take_care',
  'take_care_constantli',
  'care_constantli_beg',
  'constantli_beg_take',
  'beg_take_time',
  'take_time_work',
  'time_work_ask',
  'work_ask_send',
  'ask_send_hourli',
  'send_hourli_updat',
  'hourli_updat_condit',
  'updat_condit_first',
  'condit_first_week',
  'first_week_shed',
  'week_shed_get',
  'shed_get_mad',
  'get_mad_caus',
  'mad_caus_issu',
  'caus_issu_visit',
  'issu_visit_everyday',
  'visit_everyday_anyth',
  'everyday_anyth_help',
  'anyth_help_altern',
  'help_altern_shed',
  'altern_shed_list',
  'shed_list_thing',
  'list_thing_famili',
  'thing_famili_keep',
  'famili_keep_tell',
  'keep_tell_worri',
  'tell_worri_sick',
  'worri_sick_son',
  'sick_son_tri',
  'son_tri_stay',
  'tri_stay_calm',
  'stay_calm_day',
  'calm_day_ago',
  'day_ago_call',
  'ago_call_berat',
  'call_berat_replac',
  'berat_replac_sheet',
  'replac_sheet_quickli',
  'sheet_quickli_idea',
  'quickli_idea_found',
  'idea_found_sinc',
  'found_sinc_husband',
  'sinc_husband_call',
  'husband_call_sister',
  'call_sister_inlaw',
  'sister_inlaw_call',
  'inlaw_call_tell',
  'call_tell_mom',
  'tell_mom_instal',
  'mom_instal_camera',
  'instal_camera_bedroom',
  'camera_bedroom_see',
  'bedroom_see_take',
  'see_take_proper',
  'take_proper_care',
  'proper_care_son',
  'care_son_stun',
  'son_stun_search',
  'stun_search_room',
  'search_room_found',
  'room_found_camera',
  'found_camera_call',
  'camera_call_mil',
  'call_mil_huge',
  'mil_huge_fight',
  'huge_fight_admit',
  'fight_admit_said',
  'admit_said_feel',
  'said_feel_concern',
  'feel_concern_want',
  'concern_want_make',
  'want_make_sure',
  'make_sure_son',
  'sure_son_care',
  'son_care_despit',
  'care_despit_call',
  'despit_call_everyday',
  'call_everyday_yell',
  'everyday_yell_tell',
  'yell_tell_longer',
  'tell_longer_allow',
  'longer_allow_home',
  'allow_home_lost',
  'home_lost_went',
  'lost_went_rant',
  'went_rant_im',
  'rant_im_stop',
  'im_stop_see',
  'stop_see_son',
  'see_son_see',
  'son_see_liter',
  'see_liter_make',
  'liter_make_sick',
  'make_sick_famili',
  'sick_famili_call',
  'famili_call_later',
  'call_later_get',
  'later_get_back',
  'get_back_decis',
  'back_decis_told',
  'decis_told_breach',
  'told_breach_privaci',
  'breach_privaci_took',
  'privaci_took_advantag',
  'took_advantag_situat',
  'advantag_situat_said',
  'situat_said_im',
  'said_im_take',
  'im_take_person',
  'take_person_cant',
  'person_cant_blame',
  'cant_blame_concern',
  'blame_concern_mother',
  'concern_mother_want',
  'mother_want_make',
  'want_make_sure',
  'make_sure_son',
  'sure_son_fine',
  'son_fine_especi',
  'fine_especi_sinc',
  'especi_sinc_list',
  'sinc_list_thing',
  'list_thing_thought',
  'thing_thought_wrong',
  'thought_wrong_end',
  'wrong_end_convers',
  'end_convers_husband',
  'convers_husband_upset',
  'husband_upset_tell',
  'upset_tell_im',
  'tell_im_vindict',
  'im_vindict_mom',
  'vindict_mom_cant',
  'mom_cant_come',
  'cant_come_hell',
  'come_hell_move',
  'hell_move_argu',
  'move_argu_went',
  'argu_went_outsid',
  'went_outsid_silent',
  'outsid_silent_eversinc',
  'silent_eversinc_aita'],
 ['ugh',
  'hear',
  'bil',
  'husband',
  'brother',
  'marri',
  'women',
  'greec',
  'name',
  '*',
  'nana',
  '*',
  'reason',
  'divorc',
  'much',
  'conserv',
  'bil',
  'tri',
  'control',
  'cloth',
  'place',
  'went',
  'want',
  'divorc',
  'hop',
  'nana',
  'would',
  'accept',
  'life',
  'offer',
  'stay',
  'happen',
  'year',
  'ago',
  'move',
  'back',
  'inlaw',
  'wed',
  'see',
  'often',
  'tri',
  'comment',
  'dress',
  'multipl',
  'ocass',
  'unbear',
  'sinc',
  'inlaw',
  'said',
  'struggl',
  'depress',
  'let',
  'go',
  'friday',
  'inlaw',
  'celebr',
  'husband',
  'th',
  'birthday',
  'home',
  'wore',
  'heart-shap',
  'blue',
  'dress',
  'hair',
  'eat',
  'bil',
  'point',
  'said',
  'cleavag',
  'show',
  'wore',
  'dress',
  'look',
  'inappropri',
  'famili',
  'gather',
  'utterli',
  'shock',
  'everyon',
  'stare',
  'felt',
  'embarrass',
  'spot',
  'look',
  'wait',
  'blow',
  'probabl',
  'laugh',
  'told',
  'knock',
  'knock',
  'said',
  'said',
  'nana',
  'paus',
  'seem',
  'confus',
  'mention',
  'name',
  'fake',
  'laugh',
  'said',
  'nana',
  'said',
  'nana',
  'goddamn',
  'busi',
  'im',
  'wear',
  'ok',
  'got',
  'upset',
  'quickli',
  'left',
  'tabl',
  'sil',
  'laugh',
  'husband',
  'parent',
  'upset',
  'later',
  'said',
  'way',
  'line',
  'bring',
  'nana',
  'bil',
  'know',
  'heartbroken',
  'depress',
  'mom',
  'said',
  'petti',
  'need',
  'dig',
  'prove',
  'point',
  'husband',
  'think',
  'im',
  'wrong',
  'well',
  'deliber',
  'hurt',
  'bring',
  'nana',
  'ugh_hear',
  'hear_bil',
  'bil_husband',
  'husband_brother',
  'brother_marri',
  'marri_women',
  'women_greec',
  'greec_name',
  'name_*',
  '*_nana',
  'nana_*',
  '*_reason',
  'reason_divorc',
  'divorc_much',
  'much_conserv',
  'conserv_bil',
  'bil_tri',
  'tri_control',
  'control_cloth',
  'cloth_place',
  'place_went',
  'went_want',
  'want_divorc',
  'divorc_hop',
  'hop_nana',
  'nana_would',
  'would_accept',
  'accept_life',
  'life_offer',
  'offer_stay',
  'stay_happen',
  'happen_year',
  'year_ago',
  'ago_move',
  'move_back',
  'back_inlaw',
  'inlaw_wed',
  'wed_see',
  'see_often',
  'often_tri',
  'tri_comment',
  'comment_dress',
  'dress_multipl',
  'multipl_ocass',
  'ocass_unbear',
  'unbear_sinc',
  'sinc_inlaw',
  'inlaw_said',
  'said_struggl',
  'struggl_depress',
  'depress_let',
  'let_go',
  'go_friday',
  'friday_inlaw',
  'inlaw_celebr',
  'celebr_husband',
  'husband_th',
  'th_birthday',
  'birthday_home',
  'home_wore',
  'wore_heart-shap',
  'heart-shap_blue',
  'blue_dress',
  'dress_hair',
  'hair_eat',
  'eat_bil',
  'bil_point',
  'point_said',
  'said_cleavag',
  'cleavag_show',
  'show_wore',
  'wore_dress',
  'dress_look',
  'look_inappropri',
  'inappropri_famili',
  'famili_gather',
  'gather_utterli',
  'utterli_shock',
  'shock_everyon',
  'everyon_stare',
  'stare_felt',
  'felt_embarrass',
  'embarrass_spot',
  'spot_look',
  'look_wait',
  'wait_blow',
  'blow_probabl',
  'probabl_laugh',
  'laugh_told',
  'told_knock',
  'knock_knock',
  'knock_said',
  'said_said',
  'said_nana',
  'nana_paus',
  'paus_seem',
  'seem_confus',
  'confus_mention',
  'mention_name',
  'name_fake',
  'fake_laugh',
  'laugh_said',
  'said_nana',
  'nana_said',
  'said_nana',
  'nana_goddamn',
  'goddamn_busi',
  'busi_im',
  'im_wear',
  'wear_ok',
  'ok_got',
  'got_upset',
  'upset_quickli',
  'quickli_left',
  'left_tabl',
  'tabl_sil',
  'sil_laugh',
  'laugh_husband',
  'husband_parent',
  'parent_upset',
  'upset_later',
  'later_said',
  'said_way',
  'way_line',
  'line_bring',
  'bring_nana',
  'nana_bil',
  'bil_know',
  'know_heartbroken',
  'heartbroken_depress',
  'depress_mom',
  'mom_said',
  'said_petti',
  'petti_need',
  'need_dig',
  'dig_prove',
  'prove_point',
  'point_husband',
  'husband_think',
  'think_im',
  'im_wrong',
  'wrong_well',
  'well_deliber',
  'deliber_hurt',
  'hurt_bring',
  'bring_nana',
  'ugh_hear_bil',
  'hear_bil_husband',
  'bil_husband_brother',
  'husband_brother_marri',
  'brother_marri_women',
  'marri_women_greec',
  'women_greec_name',
  'greec_name_*',
  'name_*_nana',
  '*_nana_*',
  'nana_*_reason',
  '*_reason_divorc',
  'reason_divorc_much',
  'divorc_much_conserv',
  'much_conserv_bil',
  'conserv_bil_tri',
  'bil_tri_control',
  'tri_control_cloth',
  'control_cloth_place',
  'cloth_place_went',
  'place_went_want',
  'went_want_divorc',
  'want_divorc_hop',
  'divorc_hop_nana',
  'hop_nana_would',
  'nana_would_accept',
  'would_accept_life',
  'accept_life_offer',
  'life_offer_stay',
  'offer_stay_happen',
  'stay_happen_year',
  'happen_year_ago',
  'year_ago_move',
  'ago_move_back',
  'move_back_inlaw',
  'back_inlaw_wed',
  'inlaw_wed_see',
  'wed_see_often',
  'see_often_tri',
  'often_tri_comment',
  'tri_comment_dress',
  'comment_dress_multipl',
  'dress_multipl_ocass',
  'multipl_ocass_unbear',
  'ocass_unbear_sinc',
  'unbear_sinc_inlaw',
  'sinc_inlaw_said',
  'inlaw_said_struggl',
  'said_struggl_depress',
  'struggl_depress_let',
  'depress_let_go',
  'let_go_friday',
  'go_friday_inlaw',
  'friday_inlaw_celebr',
  'inlaw_celebr_husband',
  'celebr_husband_th',
  'husband_th_birthday',
  'th_birthday_home',
  'birthday_home_wore',
  'home_wore_heart-shap',
  'wore_heart-shap_blue',
  'heart-shap_blue_dress',
  'blue_dress_hair',
  'dress_hair_eat',
  'hair_eat_bil',
  'eat_bil_point',
  'bil_point_said',
  'point_said_cleavag',
  'said_cleavag_show',
  'cleavag_show_wore',
  'show_wore_dress',
  'wore_dress_look',
  'dress_look_inappropri',
  'look_inappropri_famili',
  'inappropri_famili_gather',
  'famili_gather_utterli',
  'gather_utterli_shock',
  'utterli_shock_everyon',
  'shock_everyon_stare',
  'everyon_stare_felt',
  'stare_felt_embarrass',
  'felt_embarrass_spot',
  'embarrass_spot_look',
  'spot_look_wait',
  'look_wait_blow',
  'wait_blow_probabl',
  'blow_probabl_laugh',
  'probabl_laugh_told',
  'laugh_told_knock',
  'told_knock_knock',
  'knock_knock_said',
  'knock_said_said',
  'said_said_nana',
  'said_nana_paus',
  'nana_paus_seem',
  'paus_seem_confus',
  'seem_confus_mention',
  'confus_mention_name',
  'mention_name_fake',
  'name_fake_laugh',
  'fake_laugh_said',
  'laugh_said_nana',
  'said_nana_said',
  'nana_said_nana',
  'said_nana_goddamn',
  'nana_goddamn_busi',
  'goddamn_busi_im',
  'busi_im_wear',
  'im_wear_ok',
  'wear_ok_got',
  'ok_got_upset',
  'got_upset_quickli',
  'upset_quickli_left',
  'quickli_left_tabl',
  'left_tabl_sil',
  'tabl_sil_laugh',
  'sil_laugh_husband',
  'laugh_husband_parent',
  'husband_parent_upset',
  'parent_upset_later',
  'upset_later_said',
  'later_said_way',
  'said_way_line',
  'way_line_bring',
  'line_bring_nana',
  'bring_nana_bil',
  'nana_bil_know',
  'bil_know_heartbroken',
  'know_heartbroken_depress',
  'heartbroken_depress_mom',
  'depress_mom_said',
  'mom_said_petti',
  'said_petti_need',
  'petti_need_dig',
  'need_dig_prove',
  'dig_prove_point',
  'prove_point_husband',
  'point_husband_think',
  'husband_think_im',
  'think_im_wrong',
  'im_wrong_well',
  'wrong_well_deliber',
  'well_deliber_hurt',
  'deliber_hurt_bring',
  'hurt_bring_nana'],
 ['[',
  ']',
  'husband',
  '[',
  ']',
  'breadwinn',
  'famili',
  'stay',
  'home',
  'kid',
  'preschool',
  'age',
  'pay',
  'mortgag',
  'bill',
  'household',
  'need',
  'food',
  'kid',
  'needsetc',
  'set',
  'monthli',
  'budget',
  'categori',
  'handl',
  'get',
  'everyth',
  'done',
  'recent',
  'becom',
  'overwhelm',
  'told',
  'handl',
  'groceri',
  'shop',
  'let',
  'ask',
  'write',
  'list',
  'stuff',
  'need',
  'could',
  'calcul',
  'total',
  'also',
  'hed',
  'idea',
  'much',
  'ill',
  'spend',
  'take',
  'credit',
  'card',
  'issu',
  'way',
  'wed',
  'watch',
  'spend',
  'habit',
  'howev',
  'said',
  'im',
  'never',
  'allow',
  'get',
  'someth',
  'list',
  'unless',
  'im',
  'pay',
  'way',
  'friday',
  'groceri',
  'shop',
  'usual',
  'saw',
  'store',
  'nice',
  'shoe',
  'sale',
  'price',
  'insanli',
  'low',
  'brand',
  'decid',
  'grab',
  'pair',
  'husband',
  'think',
  'hed',
  'happi',
  'sinc',
  'need',
  'new',
  'sneaker',
  'anyway',
  'bought',
  'show',
  'flip',
  'say',
  'made',
  'huge',
  'mistak',
  'buy',
  'someth',
  'list',
  'agre',
  'thought',
  'sinc',
  'shoe',
  'itd',
  'differ',
  'said',
  'screw',
  'bought',
  'sneaker',
  'without',
  'even',
  'tell',
  'defens',
  'said',
  'price',
  'low',
  'like',
  'spent',
  '$',
  'shoe',
  'also',
  'saw',
  'great',
  'deal',
  'want',
  'nice',
  'sneaker',
  'plainli',
  'said',
  'consid',
  'steal',
  'sinc',
  'never',
  'consent',
  'sneaker',
  'purchas',
  'said',
  'im',
  'irrespons',
  'money',
  'longer',
  'incom',
  'spend',
  'habit',
  'need',
  'grib',
  'felt',
  'hurt',
  'said',
  'argu',
  'hour',
  'avoid',
  'speak',
  'rest',
  'day',
  'next',
  'day',
  'went',
  'return',
  'sneaker',
  'took',
  'money',
  'back',
  'got',
  'home',
  'even',
  'lost',
  'found',
  'return',
  'said',
  'believ',
  'petti',
  'childish',
  'actual',
  'explain',
  'correct',
  'mistak',
  'tri',
  'contact',
  'store',
  'told',
  'sneaker',
  'alreadi',
  'sold',
  'got',
  'even',
  'angrier',
  'told',
  'accus',
  'steal',
  'tri',
  'nice',
  'gestur',
  'yell',
  'lot',
  'nerv',
  'call',
  'nice',
  'gestur',
  'use',
  'money',
  'told',
  'right',
  'yell',
  'correct',
  'mistak',
  'gave',
  'back',
  'money',
  'accus',
  'steal',
  'threw',
  'fit',
  'went',
  'friend',
  'came',
  'home',
  'late',
  'night',
  'still',
  'talk',
  'mess',
  'mayb',
  'purchas',
  'know',
  'list',
  'want',
  'sneaker',
  'thought',
  'nice',
  'gestur',
  '[_]',
  ']_husband',
  'husband_[',
  '[_]',
  ']_breadwinn',
  'breadwinn_famili',
  'famili_stay',
  'stay_home',
  'home_kid',
  'kid_preschool',
  'preschool_age',
  'age_pay',
  'pay_mortgag',
  'mortgag_bill',
  'bill_household',
  'household_need',
  'need_food',
  'food_kid',
  'kid_needsetc',
  'needsetc_set',
  'set_monthli',
  'monthli_budget',
  'budget_categori',
  'categori_handl',
  'handl_get',
  'get_everyth',
  'everyth_done',
  'done_recent',
  'recent_becom',
  'becom_overwhelm',
  'overwhelm_told',
  'told_handl',
  'handl_groceri',
  'groceri_shop',
  'shop_let',
  'let_ask',
  'ask_write',
  'write_list',
  'list_stuff',
  'stuff_need',
  'need_could',
  'could_calcul',
  'calcul_total',
  'total_also',
  'also_hed',
  'hed_idea',
  'idea_much',
  'much_ill',
  'ill_spend',
  'spend_take',
  'take_credit',
  'credit_card',
  'card_issu',
  'issu_way',
  'way_wed',
  'wed_watch',
  'watch_spend',
  'spend_habit',
  'habit_howev',
  'howev_said',
  'said_im',
  'im_never',
  'never_allow',
  'allow_get',
  'get_someth',
  'someth_list',
  'list_unless',
  'unless_im',
  'im_pay',
  'pay_way',
  'way_friday',
  'friday_groceri',
  'groceri_shop',
  'shop_usual',
  'usual_saw',
  'saw_store',
  'store_nice',
  'nice_shoe',
  'shoe_sale',
  'sale_price',
  'price_insanli',
  'insanli_low',
  'low_brand',
  'brand_decid',
  'decid_grab',
  'grab_pair',
  'pair_husband',
  'husband_think',
  'think_hed',
  'hed_happi',
  'happi_sinc',
  'sinc_need',
  'need_new',
  'new_sneaker',
  'sneaker_anyway',
  'anyway_bought',
  'bought_show',
  'show_flip',
  'flip_say',
  'say_made',
  'made_huge',
  'huge_mistak',
  'mistak_buy',
  'buy_someth',
  'someth_list',
  'list_agre',
  'agre_thought',
  'thought_sinc',
  'sinc_shoe',
  'shoe_itd',
  'itd_differ',
  'differ_said',
  'said_screw',
  'screw_bought',
  'bought_sneaker',
  'sneaker_without',
  'without_even',
  'even_tell',
  'tell_defens',
  'defens_said',
  'said_price',
  'price_low',
  'low_like',
  'like_spent',
  'spent_$',
  '$_shoe',
  'shoe_also',
  'also_saw',
  'saw_great',
  'great_deal',
  'deal_want',
  'want_nice',
  'nice_sneaker',
  'sneaker_plainli',
  'plainli_said',
  'said_consid',
  'consid_steal',
  'steal_sinc',
  'sinc_never',
  'never_consent',
  'consent_sneaker',
  'sneaker_purchas',
  'purchas_said',
  'said_im',
  'im_irrespons',
  'irrespons_money',
  'money_longer',
  'longer_incom',
  'incom_spend',
  'spend_habit',
  'habit_need',
  'need_grib',
  'grib_felt',
  'felt_hurt',
  'hurt_said',
  'said_argu',
  'argu_hour',
  'hour_avoid',
  'avoid_speak',
  'speak_rest',
  'rest_day',
  'day_next',
  'next_day',
  'day_went',
  'went_return',
  'return_sneaker',
  'sneaker_took',
  'took_money',
  'money_back',
  'back_got',
  'got_home',
  'home_even',
  'even_lost',
  'lost_found',
  'found_return',
  'return_said',
  'said_believ',
  'believ_petti',
  'petti_childish',
  'childish_actual',
  'actual_explain',
  'explain_correct',
  'correct_mistak',
  'mistak_tri',
  'tri_contact',
  'contact_store',
  'store_told',
  'told_sneaker',
  'sneaker_alreadi',
  'alreadi_sold',
  'sold_got',
  'got_even',
  'even_angrier',
  'angrier_told',
  'told_accus',
  'accus_steal',
  'steal_tri',
  'tri_nice',
  'nice_gestur',
  'gestur_yell',
  'yell_lot',
  'lot_nerv',
  'nerv_call',
  'call_nice',
  'nice_gestur',
  'gestur_use',
  'use_money',
  'money_told',
  'told_right',
  'right_yell',
  'yell_correct',
  'correct_mistak',
  'mistak_gave',
  'gave_back',
  'back_money',
  'money_accus',
  'accus_steal',
  'steal_threw',
  'threw_fit',
  'fit_went',
  'went_friend',
  'friend_came',
  'came_home',
  'home_late',
  'late_night',
  'night_still',
  'still_talk',
  'talk_mess',
  'mess_mayb',
  'mayb_purchas',
  'purchas_know',
  'know_list',
  'list_want',
  'want_sneaker',
  'sneaker_thought',
  'thought_nice',
  'nice_gestur',
  '[_]_husband',
  ']_husband_[',
  'husband_[_]',
  '[_]_breadwinn',
  ']_breadwinn_famili',
  'breadwinn_famili_stay',
  'famili_stay_home',
  'stay_home_kid',
  'home_kid_preschool',
  'kid_preschool_age',
  'preschool_age_pay',
  'age_pay_mortgag',
  'pay_mortgag_bill',
  'mortgag_bill_household',
  'bill_household_need',
  'household_need_food',
  'need_food_kid',
  'food_kid_needsetc',
  'kid_needsetc_set',
  'needsetc_set_monthli',
  'set_monthli_budget',
  'monthli_budget_categori',
  'budget_categori_handl',
  'categori_handl_get',
  'handl_get_everyth',
  'get_everyth_done',
  'everyth_done_recent',
  'done_recent_becom',
  'recent_becom_overwhelm',
  'becom_overwhelm_told',
  'overwhelm_told_handl',
  'told_handl_groceri',
  'handl_groceri_shop',
  'groceri_shop_let',
  'shop_let_ask',
  'let_ask_write',
  'ask_write_list',
  'write_list_stuff',
  'list_stuff_need',
  'stuff_need_could',
  'need_could_calcul',
  'could_calcul_total',
  'calcul_total_also',
  'total_also_hed',
  'also_hed_idea',
  'hed_idea_much',
  'idea_much_ill',
  'much_ill_spend',
  'ill_spend_take',
  'spend_take_credit',
  'take_credit_card',
  'credit_card_issu',
  'card_issu_way',
  'issu_way_wed',
  'way_wed_watch',
  'wed_watch_spend',
  'watch_spend_habit',
  'spend_habit_howev',
  'habit_howev_said',
  'howev_said_im',
  'said_im_never',
  'im_never_allow',
  'never_allow_get',
  'allow_get_someth',
  'get_someth_list',
  'someth_list_unless',
  'list_unless_im',
  'unless_im_pay',
  'im_pay_way',
  'pay_way_friday',
  'way_friday_groceri',
  'friday_groceri_shop',
  'groceri_shop_usual',
  'shop_usual_saw',
  'usual_saw_store',
  'saw_store_nice',
  'store_nice_shoe',
  'nice_shoe_sale',
  'shoe_sale_price',
  'sale_price_insanli',
  'price_insanli_low',
  'insanli_low_brand',
  'low_brand_decid',
  'brand_decid_grab',
  'decid_grab_pair',
  'grab_pair_husband',
  'pair_husband_think',
  'husband_think_hed',
  'think_hed_happi',
  'hed_happi_sinc',
  'happi_sinc_need',
  'sinc_need_new',
  'need_new_sneaker',
  'new_sneaker_anyway',
  'sneaker_anyway_bought',
  'anyway_bought_show',
  'bought_show_flip',
  'show_flip_say',
  'flip_say_made',
  'say_made_huge',
  'made_huge_mistak',
  'huge_mistak_buy',
  'mistak_buy_someth',
  'buy_someth_list',
  'someth_list_agre',
  'list_agre_thought',
  'agre_thought_sinc',
  'thought_sinc_shoe',
  'sinc_shoe_itd',
  'shoe_itd_differ',
  'itd_differ_said',
  'differ_said_screw',
  'said_screw_bought',
  'screw_bought_sneaker',
  'bought_sneaker_without',
  'sneaker_without_even',
  'without_even_tell',
  'even_tell_defens',
  'tell_defens_said',
  'defens_said_price',
  'said_price_low',
  'price_low_like',
  'low_like_spent',
  'like_spent_$',
  'spent_$_shoe',
  '$_shoe_also',
  'shoe_also_saw',
  'also_saw_great',
  'saw_great_deal',
  'great_deal_want',
  'deal_want_nice',
  'want_nice_sneaker',
  'nice_sneaker_plainli',
  'sneaker_plainli_said',
  'plainli_said_consid',
  'said_consid_steal',
  'consid_steal_sinc',
  'steal_sinc_never',
  'sinc_never_consent',
  'never_consent_sneaker',
  'consent_sneaker_purchas',
  'sneaker_purchas_said',
  'purchas_said_im',
  'said_im_irrespons',
  'im_irrespons_money',
  'irrespons_money_longer',
  'money_longer_incom',
  'longer_incom_spend',
  'incom_spend_habit',
  'spend_habit_need',
  'habit_need_grib',
  'need_grib_felt',
  'grib_felt_hurt',
  'felt_hurt_said',
  'hurt_said_argu',
  'said_argu_hour',
  'argu_hour_avoid',
  'hour_avoid_speak',
  'avoid_speak_rest',
  'speak_rest_day',
  'rest_day_next',
  'day_next_day',
  'next_day_went',
  'day_went_return',
  'went_return_sneaker',
  'return_sneaker_took',
  'sneaker_took_money',
  'took_money_back',
  'money_back_got',
  'back_got_home',
  'got_home_even',
  'home_even_lost',
  'even_lost_found',
  'lost_found_return',
  'found_return_said',
  'return_said_believ',
  'said_believ_petti',
  'believ_petti_childish',
  'petti_childish_actual',
  'childish_actual_explain',
  'actual_explain_correct',
  'explain_correct_mistak',
  'correct_mistak_tri',
  'mistak_tri_contact',
  'tri_contact_store',
  'contact_store_told',
  'store_told_sneaker',
  'told_sneaker_alreadi',
  'sneaker_alreadi_sold',
  'alreadi_sold_got',
  'sold_got_even',
  'got_even_angrier',
  'even_angrier_told',
  'angrier_told_accus',
  'told_accus_steal',
  'accus_steal_tri',
  'steal_tri_nice',
  'tri_nice_gestur',
  'nice_gestur_yell',
  'gestur_yell_lot',
  'yell_lot_nerv',
  'lot_nerv_call',
  'nerv_call_nice',
  'call_nice_gestur',
  'nice_gestur_use',
  'gestur_use_money',
  'use_money_told',
  'money_told_right',
  'told_right_yell',
  'right_yell_correct',
  'yell_correct_mistak',
  'correct_mistak_gave',
  'mistak_gave_back',
  'gave_back_money',
  'back_money_accus',
  'money_accus_steal',
  'accus_steal_threw',
  'steal_threw_fit',
  'threw_fit_went',
  'fit_went_friend',
  'went_friend_came',
  'friend_came_home',
  'came_home_late',
  'home_late_night',
  'late_night_still',
  'night_still_talk',
  'still_talk_mess',
  'talk_mess_mayb',
  'mess_mayb_purchas',
  'mayb_purchas_know',
  'purchas_know_list',
  'know_list_want',
  'list_want_sneaker',
  'want_sneaker_thought',
  'sneaker_thought_nice',
  'thought_nice_gestur'],
 ['sister',
  'brother',
  'involv',
  'rais',
  'togeth',
  'believ',
  'nuclear',
  'biolog',
  'famili',
  'found',
  'dad',
  'bio',
  'dad',
  'even',
  'know',
  'turn',
  'older',
  'sibl',
  'share',
  'bio',
  'dad',
  'differ',
  'one',
  'also',
  'first',
  'cousin',
  'bio',
  'bio',
  'brother',
  'dad',
  'left',
  'mom',
  'hurt',
  'betray',
  'overal',
  'disgust',
  'lie',
  'two',
  'decad',
  'equal',
  'mad',
  'lie',
  'hurt',
  'dad',
  'sibl',
  'less',
  'cut',
  'relationship',
  'strain',
  'majorli',
  'dad',
  'move',
  'boyfriend',
  'fianc',
  'covid',
  'hit',
  'point',
  'three',
  'us',
  'agre',
  'dad',
  'matter',
  'noth',
  'could',
  'chang',
  'meant',
  'found',
  'bio',
  'father',
  'mine',
  'extens',
  'decid',
  'real',
  'dad',
  'dad',
  'stepdad',
  'brother',
  'even',
  'correct',
  'two',
  'littl',
  'girl',
  'call',
  'dad',
  'grandpa',
  'say',
  'stepgrandpa',
  'call',
  'bio',
  'get',
  'call',
  'grandpa',
  'broke',
  'dad',
  'heart',
  'decid',
  'much',
  'accept',
  'talk',
  'essenti',
  'told',
  'know',
  'place',
  'stay',
  'lane',
  'demot',
  'clear',
  'messag',
  'noth',
  'would',
  'chang',
  'piss',
  'tri',
  'push',
  'meet',
  'real',
  'dad',
  'told',
  'okay',
  'go',
  'back',
  'said',
  'initi',
  'invit',
  'wed',
  'whole',
  'mess',
  'told',
  'longer',
  'welcom',
  'want',
  'show',
  'told',
  'relationship',
  'real',
  'dad',
  'chang',
  'thing',
  'us',
  'told',
  'dad',
  'real',
  'dad',
  'everyth',
  'done',
  'us',
  'real',
  'sibl',
  'technic',
  'half',
  'sibl',
  'cousin',
  'dad',
  'till',
  'dad',
  '%',
  'biolog',
  'meaningless',
  'best',
  'come',
  'longer',
  'want',
  'said',
  'hurt',
  'sil',
  'marri',
  'brother',
  'told',
  'asshol',
  'throw',
  'half',
  'face',
  'cut',
  'wed',
  'like',
  'sibl',
  'whole',
  'live',
  'think',
  'almost',
  'annoy',
  'dad',
  'shit',
  'discard',
  'like',
  'noth',
  'aita',
  'sister_brother',
  'brother_involv',
  'involv_rais',
  'rais_togeth',
  'togeth_believ',
  'believ_nuclear',
  'nuclear_biolog',
  'biolog_famili',
  'famili_found',
  'found_dad',
  'dad_bio',
  'bio_dad',
  'dad_even',
  'even_know',
  'know_turn',
  'turn_older',
  'older_sibl',
  'sibl_share',
  'share_bio',
  'bio_dad',
  'dad_differ',
  'differ_one',
  'one_also',
  'also_first',
  'first_cousin',
  'cousin_bio',
  'bio_bio',
  'bio_brother',
  'brother_dad',
  'dad_left',
  'left_mom',
  'mom_hurt',
  'hurt_betray',
  'betray_overal',
  'overal_disgust',
  'disgust_lie',
  'lie_two',
  'two_decad',
  'decad_equal',
  'equal_mad',
  'mad_lie',
  'lie_hurt',
  'hurt_dad',
  'dad_sibl',
  'sibl_less',
  'less_cut',
  'cut_relationship',
  'relationship_strain',
  'strain_majorli',
  'majorli_dad',
  'dad_move',
  'move_boyfriend',
  'boyfriend_fianc',
  'fianc_covid',
  'covid_hit',
  'hit_point',
  'point_three',
  'three_us',
  'us_agre',
  'agre_dad',
  'dad_matter',
  'matter_noth',
  'noth_could',
  'could_chang',
  'chang_meant',
  'meant_found',
  'found_bio',
  'bio_father',
  'father_mine',
  'mine_extens',
  'extens_decid',
  'decid_real',
  'real_dad',
  'dad_dad',
  'dad_stepdad',
  'stepdad_brother',
  'brother_even',
  'even_correct',
  'correct_two',
  'two_littl',
  'littl_girl',
  'girl_call',
  'call_dad',
  'dad_grandpa',
  'grandpa_say',
  'say_stepgrandpa',
  'stepgrandpa_call',
  'call_bio',
  'bio_get',
  'get_call',
  'call_grandpa',
  'grandpa_broke',
  'broke_dad',
  'dad_heart',
  'heart_decid',
  'decid_much',
  'much_accept',
  'accept_talk',
  'talk_essenti',
  'essenti_told',
  'told_know',
  'know_place',
  'place_stay',
  'stay_lane',
  'lane_demot',
  'demot_clear',
  'clear_messag',
  'messag_noth',
  'noth_would',
  'would_chang',
  'chang_piss',
  'piss_tri',
  'tri_push',
  'push_meet',
  'meet_real',
  'real_dad',
  'dad_told',
  'told_okay',
  'okay_go',
  'go_back',
  'back_said',
  'said_initi',
  'initi_invit',
  'invit_wed',
  'wed_whole',
  'whole_mess',
  'mess_told',
  'told_longer',
  'longer_welcom',
  'welcom_want',
  'want_show',
  'show_told',
  'told_relationship',
  'relationship_real',
  'real_dad',
  'dad_chang',
  'chang_thing',
  'thing_us',
  'us_told',
  'told_dad',
  'dad_real',
  'real_dad',
  'dad_everyth',
  'everyth_done',
  'done_us',
  'us_real',
  'real_sibl',
  'sibl_technic',
  'technic_half',
  'half_sibl',
  'sibl_cousin',
  'cousin_dad',
  'dad_till',
  'till_dad',
  'dad_%',
  '%_biolog',
  'biolog_meaningless',
  'meaningless_best',
  'best_come',
  'come_longer',
  'longer_want',
  'want_said',
  'said_hurt',
  'hurt_sil',
  'sil_marri',
  'marri_brother',
  'brother_told',
  'told_asshol',
  'asshol_throw',
  'throw_half',
  'half_face',
  'face_cut',
  'cut_wed',
  'wed_like',
  'like_sibl',
  'sibl_whole',
  'whole_live',
  'live_think',
  'think_almost',
  'almost_annoy',
  'annoy_dad',
  'dad_shit',
  'shit_discard',
  'discard_like',
  'like_noth',
  'noth_aita',
  'sister_brother_involv',
  'brother_involv_rais',
  'involv_rais_togeth',
  'rais_togeth_believ',
  'togeth_believ_nuclear',
  'believ_nuclear_biolog',
  'nuclear_biolog_famili',
  'biolog_famili_found',
  'famili_found_dad',
  'found_dad_bio',
  'dad_bio_dad',
  'bio_dad_even',
  'dad_even_know',
  'even_know_turn',
  'know_turn_older',
  'turn_older_sibl',
  'older_sibl_share',
  'sibl_share_bio',
  'share_bio_dad',
  'bio_dad_differ',
  'dad_differ_one',
  'differ_one_also',
  'one_also_first',
  'also_first_cousin',
  'first_cousin_bio',
  'cousin_bio_bio',
  'bio_bio_brother',
  'bio_brother_dad',
  'brother_dad_left',
  'dad_left_mom',
  'left_mom_hurt',
  'mom_hurt_betray',
  'hurt_betray_overal',
  'betray_overal_disgust',
  'overal_disgust_lie',
  'disgust_lie_two',
  'lie_two_decad',
  'two_decad_equal',
  'decad_equal_mad',
  'equal_mad_lie',
  'mad_lie_hurt',
  'lie_hurt_dad',
  'hurt_dad_sibl',
  'dad_sibl_less',
  'sibl_less_cut',
  'less_cut_relationship',
  'cut_relationship_strain',
  'relationship_strain_majorli',
  'strain_majorli_dad',
  'majorli_dad_move',
  'dad_move_boyfriend',
  'move_boyfriend_fianc',
  'boyfriend_fianc_covid',
  'fianc_covid_hit',
  'covid_hit_point',
  'hit_point_three',
  'point_three_us',
  'three_us_agre',
  'us_agre_dad',
  'agre_dad_matter',
  'dad_matter_noth',
  'matter_noth_could',
  'noth_could_chang',
  'could_chang_meant',
  'chang_meant_found',
  'meant_found_bio',
  'found_bio_father',
  'bio_father_mine',
  'father_mine_extens',
  'mine_extens_decid',
  'extens_decid_real',
  'decid_real_dad',
  'real_dad_dad',
  'dad_dad_stepdad',
  'dad_stepdad_brother',
  'stepdad_brother_even',
  'brother_even_correct',
  'even_correct_two',
  'correct_two_littl',
  'two_littl_girl',
  'littl_girl_call',
  'girl_call_dad',
  'call_dad_grandpa',
  'dad_grandpa_say',
  'grandpa_say_stepgrandpa',
  'say_stepgrandpa_call',
  'stepgrandpa_call_bio',
  'call_bio_get',
  'bio_get_call',
  'get_call_grandpa',
  'call_grandpa_broke',
  'grandpa_broke_dad',
  'broke_dad_heart',
  'dad_heart_decid',
  'heart_decid_much',
  'decid_much_accept',
  'much_accept_talk',
  'accept_talk_essenti',
  'talk_essenti_told',
  'essenti_told_know',
  'told_know_place',
  'know_place_stay',
  'place_stay_lane',
  'stay_lane_demot',
  'lane_demot_clear',
  'demot_clear_messag',
  'clear_messag_noth',
  'messag_noth_would',
  'noth_would_chang',
  'would_chang_piss',
  'chang_piss_tri',
  'piss_tri_push',
  'tri_push_meet',
  'push_meet_real',
  'meet_real_dad',
  'real_dad_told',
  'dad_told_okay',
  'told_okay_go',
  'okay_go_back',
  'go_back_said',
  'back_said_initi',
  'said_initi_invit',
  'initi_invit_wed',
  'invit_wed_whole',
  'wed_whole_mess',
  'whole_mess_told',
  'mess_told_longer',
  'told_longer_welcom',
  'longer_welcom_want',
  'welcom_want_show',
  'want_show_told',
  'show_told_relationship',
  'told_relationship_real',
  'relationship_real_dad',
  'real_dad_chang',
  'dad_chang_thing',
  'chang_thing_us',
  'thing_us_told',
  'us_told_dad',
  'told_dad_real',
  'dad_real_dad',
  'real_dad_everyth',
  'dad_everyth_done',
  'everyth_done_us',
  'done_us_real',
  'us_real_sibl',
  'real_sibl_technic',
  'sibl_technic_half',
  'technic_half_sibl',
  'half_sibl_cousin',
  'sibl_cousin_dad',
  'cousin_dad_till',
  'dad_till_dad',
  'till_dad_%',
  'dad_%_biolog',
  '%_biolog_meaningless',
  'biolog_meaningless_best',
  'meaningless_best_come',
  'best_come_longer',
  'come_longer_want',
  'longer_want_said',
  'want_said_hurt',
  'said_hurt_sil',
  'hurt_sil_marri',
  'sil_marri_brother',
  'marri_brother_told',
  'brother_told_asshol',
  'told_asshol_throw',
  'asshol_throw_half',
  'throw_half_face',
  'half_face_cut',
  'face_cut_wed',
  'cut_wed_like',
  'wed_like_sibl',
  'like_sibl_whole',
  'sibl_whole_live',
  'whole_live_think',
  'live_think_almost',
  'think_almost_annoy',
  'almost_annoy_dad',
  'annoy_dad_shit',
  'dad_shit_discard',
  'shit_discard_like',
  'discard_like_noth',
  'like_noth_aita'],
 ['background',
  'husband',
  'stay',
  'late',
  'night',
  'wake',
  'earli',
  'go',
  'work',
  'get',
  'home',
  'get',
  'hr',
  'nap',
  'could',
  'make',
  'lack',
  'sleep',
  'also',
  'readi',
  'stay',
  'late',
  'play',
  'consol',
  'valu',
  'sleep',
  'one',
  'rule',
  'hous',
  'enforc',
  'strictli',
  'interrupt',
  'sleep',
  'liter',
  'put',
  'sign',
  'bedroom',
  'door',
  'say',
  'donotwakemeup',
  'circumst',
  'unless',
  'someon',
  'hurt',
  'dead',
  'though',
  'case',
  'said',
  'still',
  'much',
  'help',
  'anyway',
  'kid',
  'would',
  'sometim',
  'wake',
  'seriou',
  'reason',
  'got',
  'mad',
  'start',
  'lock',
  'door',
  'get',
  'access',
  'room',
  'hour',
  'main',
  'problem',
  'past',
  'tuesday',
  'yo',
  'son',
  'hot',
  'oil',
  'spill',
  'hand',
  'yo',
  'sister',
  'cook',
  'heard',
  'scream',
  'saw',
  'oil',
  'cover',
  'hand',
  'half',
  'arm',
  'brought',
  'first',
  'aid',
  'kit',
  'much',
  'pain',
  'skin',
  'look',
  'realli',
  'bad',
  'rush',
  'wake',
  'husband',
  'kept',
  'knock',
  'got',
  'respons',
  'tri',
  'open',
  'lock',
  'spent',
  'knock',
  'door',
  'phone',
  'turn',
  'get',
  'dress',
  'daughter',
  'ask',
  'neighbor',
  'drive',
  'us',
  'hospit',
  'wast',
  'time',
  'caus',
  'son',
  'cri',
  'neighbor',
  'took',
  'us',
  'hospit',
  'help',
  'feel',
  'livid',
  'whole',
  'time',
  'got',
  'home',
  'husband',
  'pace',
  'around',
  'ask',
  'wherev',
  'answer',
  'text',
  'blew',
  'show',
  'son',
  'injuri',
  'told',
  'pound',
  'door',
  'wake',
  'said',
  'earbud',
  'hear',
  'thing',
  'call',
  'reckless',
  'neglect',
  'ignor',
  'famili',
  'emerg',
  'said',
  'could',
  'say',
  'thing',
  'leav',
  'son',
  'unsupervis',
  'caus',
  'get',
  'burn',
  'stop',
  'argu',
  'went',
  'remov',
  'bedroom',
  'door',
  'lock',
  'start',
  'yell',
  'say',
  'right',
  'refusedto',
  'respond',
  'walk',
  'calm',
  'stop',
  'complain',
  'call',
  'bossi',
  'say',
  'remov',
  'lock',
  'ive',
  'destroy',
  'peac',
  'quiet',
  'caus',
  'sleep',
  'depriv',
  'insist',
  'put',
  'back',
  'refus',
  'could',
  'wrong',
  'ive',
  'done',
  'frustrat',
  'mad',
  'aita',
  'background_husband',
  'husband_stay',
  'stay_late',
  'late_night',
  'night_wake',
  'wake_earli',
  'earli_go',
  'go_work',
  'work_get',
  'get_home',
  'home_get',
  'get_hr',
  'hr_nap',
  'nap_could',
  'could_make',
  'make_lack',
  'lack_sleep',
  'sleep_also',
  'also_readi',
  'readi_stay',
  'stay_late',
  'late_play',
  'play_consol',
  'consol_valu',
  'valu_sleep',
  'sleep_one',
  'one_rule',
  'rule_hous',
  'hous_enforc',
  'enforc_strictli',
  'strictli_interrupt',
  'interrupt_sleep',
  'sleep_liter',
  'liter_put',
  'put_sign',
  'sign_bedroom',
  'bedroom_door',
  'door_say',
  'say_donotwakemeup',
  'donotwakemeup_circumst',
  'circumst_unless',
  'unless_someon',
  'someon_hurt',
  'hurt_dead',
  'dead_though',
  'though_case',
  'case_said',
  'said_still',
  'still_much',
  'much_help',
  'help_anyway',
  'anyway_kid',
  'kid_would',
  'would_sometim',
  'sometim_wake',
  'wake_seriou',
  'seriou_reason',
  'reason_got',
  'got_mad',
  'mad_start',
  'start_lock',
  'lock_door',
  'door_get',
  'get_access',
  'access_room',
  'room_hour',
  'hour_main',
  'main_problem',
  'problem_past',
  'past_tuesday',
  'tuesday_yo',
  'yo_son',
  'son_hot',
  'hot_oil',
  'oil_spill',
  'spill_hand',
  'hand_yo',
  'yo_sister',
  'sister_cook',
  'cook_heard',
  'heard_scream',
  'scream_saw',
  'saw_oil',
  'oil_cover',
  'cover_hand',
  'hand_half',
  'half_arm',
  'arm_brought',
  'brought_first',
  'first_aid',
  'aid_kit',
  'kit_much',
  'much_pain',
  'pain_skin',
  'skin_look',
  'look_realli',
  'realli_bad',
  'bad_rush',
  'rush_wake',
  'wake_husband',
  'husband_kept',
  'kept_knock',
  'knock_got',
  'got_respons',
  'respons_tri',
  'tri_open',
  'open_lock',
  'lock_spent',
  'spent_knock',
  'knock_door',
  'door_phone',
  'phone_turn',
  'turn_get',
  'get_dress',
  'dress_daughter',
  'daughter_ask',
  'ask_neighbor',
  'neighbor_drive',
  'drive_us',
  'us_hospit',
  'hospit_wast',
  'wast_time',
  'time_caus',
  'caus_son',
  'son_cri',
  'cri_neighbor',
  'neighbor_took',
  'took_us',
  'us_hospit',
  'hospit_help',
  'help_feel',
  'feel_livid',
  'livid_whole',
  'whole_time',
  'time_got',
  'got_home',
  'home_husband',
  'husband_pace',
  'pace_around',
  'around_ask',
  'ask_wherev',
  'wherev_answer',
  'answer_text',
  'text_blew',
  'blew_show',
  'show_son',
  'son_injuri',
  'injuri_told',
  'told_pound',
  'pound_door',
  'door_wake',
  'wake_said',
  'said_earbud',
  'earbud_hear',
  'hear_thing',
  'thing_call',
  'call_reckless',
  'reckless_neglect',
  'neglect_ignor',
  'ignor_famili',
  'famili_emerg',
  'emerg_said',
  'said_could',
  'could_say',
  'say_thing',
  'thing_leav',
  'leav_son',
  'son_unsupervis',
  'unsupervis_caus',
  'caus_get',
  'get_burn',
  'burn_stop',
  'stop_argu',
  'argu_went',
  'went_remov',
  'remov_bedroom',
  'bedroom_door',
  'door_lock',
  'lock_start',
  'start_yell',
  'yell_say',
  'say_right',
  'right_refusedto',
  'refusedto_respond',
  'respond_walk',
  'walk_calm',
  'calm_stop',
  'stop_complain',
  'complain_call',
  'call_bossi',
  'bossi_say',
  'say_remov',
  'remov_lock',
  'lock_ive',
  'ive_destroy',
  'destroy_peac',
  'peac_quiet',
  'quiet_caus',
  'caus_sleep',
  'sleep_depriv',
  'depriv_insist',
  'insist_put',
  'put_back',
  'back_refus',
  'refus_could',
  'could_wrong',
  'wrong_ive',
  'ive_done',
  'done_frustrat',
  'frustrat_mad',
  'mad_aita',
  'background_husband_stay',
  'husband_stay_late',
  'stay_late_night',
  'late_night_wake',
  'night_wake_earli',
  'wake_earli_go',
  'earli_go_work',
  'go_work_get',
  'work_get_home',
  'get_home_get',
  'home_get_hr',
  'get_hr_nap',
  'hr_nap_could',
  'nap_could_make',
  'could_make_lack',
  'make_lack_sleep',
  'lack_sleep_also',
  'sleep_also_readi',
  'also_readi_stay',
  'readi_stay_late',
  'stay_late_play',
  'late_play_consol',
  'play_consol_valu',
  'consol_valu_sleep',
  'valu_sleep_one',
  'sleep_one_rule',
  'one_rule_hous',
  'rule_hous_enforc',
  'hous_enforc_strictli',
  'enforc_strictli_interrupt',
  'strictli_interrupt_sleep',
  'interrupt_sleep_liter',
  'sleep_liter_put',
  'liter_put_sign',
  'put_sign_bedroom',
  'sign_bedroom_door',
  'bedroom_door_say',
  'door_say_donotwakemeup',
  'say_donotwakemeup_circumst',
  'donotwakemeup_circumst_unless',
  'circumst_unless_someon',
  'unless_someon_hurt',
  'someon_hurt_dead',
  'hurt_dead_though',
  'dead_though_case',
  'though_case_said',
  'case_said_still',
  'said_still_much',
  'still_much_help',
  'much_help_anyway',
  'help_anyway_kid',
  'anyway_kid_would',
  'kid_would_sometim',
  'would_sometim_wake',
  'sometim_wake_seriou',
  'wake_seriou_reason',
  'seriou_reason_got',
  'reason_got_mad',
  'got_mad_start',
  'mad_start_lock',
  'start_lock_door',
  'lock_door_get',
  'door_get_access',
  'get_access_room',
  'access_room_hour',
  'room_hour_main',
  'hour_main_problem',
  'main_problem_past',
  'problem_past_tuesday',
  'past_tuesday_yo',
  'tuesday_yo_son',
  'yo_son_hot',
  'son_hot_oil',
  'hot_oil_spill',
  'oil_spill_hand',
  'spill_hand_yo',
  'hand_yo_sister',
  'yo_sister_cook',
  'sister_cook_heard',
  'cook_heard_scream',
  'heard_scream_saw',
  'scream_saw_oil',
  'saw_oil_cover',
  'oil_cover_hand',
  'cover_hand_half',
  'hand_half_arm',
  'half_arm_brought',
  'arm_brought_first',
  'brought_first_aid',
  'first_aid_kit',
  'aid_kit_much',
  'kit_much_pain',
  'much_pain_skin',
  'pain_skin_look',
  'skin_look_realli',
  'look_realli_bad',
  'realli_bad_rush',
  'bad_rush_wake',
  'rush_wake_husband',
  'wake_husband_kept',
  'husband_kept_knock',
  'kept_knock_got',
  'knock_got_respons',
  'got_respons_tri',
  'respons_tri_open',
  'tri_open_lock',
  'open_lock_spent',
  'lock_spent_knock',
  'spent_knock_door',
  'knock_door_phone',
  'door_phone_turn',
  'phone_turn_get',
  'turn_get_dress',
  'get_dress_daughter',
  'dress_daughter_ask',
  'daughter_ask_neighbor',
  'ask_neighbor_drive',
  'neighbor_drive_us',
  'drive_us_hospit',
  'us_hospit_wast',
  'hospit_wast_time',
  'wast_time_caus',
  'time_caus_son',
  'caus_son_cri',
  'son_cri_neighbor',
  'cri_neighbor_took',
  'neighbor_took_us',
  'took_us_hospit',
  'us_hospit_help',
  'hospit_help_feel',
  'help_feel_livid',
  'feel_livid_whole',
  'livid_whole_time',
  'whole_time_got',
  'time_got_home',
  'got_home_husband',
  'home_husband_pace',
  'husband_pace_around',
  'pace_around_ask',
  'around_ask_wherev',
  'ask_wherev_answer',
  'wherev_answer_text',
  'answer_text_blew',
  'text_blew_show',
  'blew_show_son',
  'show_son_injuri',
  'son_injuri_told',
  'injuri_told_pound',
  'told_pound_door',
  'pound_door_wake',
  'door_wake_said',
  'wake_said_earbud',
  'said_earbud_hear',
  'earbud_hear_thing',
  'hear_thing_call',
  'thing_call_reckless',
  'call_reckless_neglect',
  'reckless_neglect_ignor',
  'neglect_ignor_famili',
  'ignor_famili_emerg',
  'famili_emerg_said',
  'emerg_said_could',
  'said_could_say',
  'could_say_thing',
  'say_thing_leav',
  'thing_leav_son',
  'leav_son_unsupervis',
  'son_unsupervis_caus',
  'unsupervis_caus_get',
  'caus_get_burn',
  'get_burn_stop',
  'burn_stop_argu',
  'stop_argu_went',
  'argu_went_remov',
  'went_remov_bedroom',
  'remov_bedroom_door',
  'bedroom_door_lock',
  'door_lock_start',
  'lock_start_yell',
  'start_yell_say',
  'yell_say_right',
  'say_right_refusedto',
  'right_refusedto_respond',
  'refusedto_respond_walk',
  'respond_walk_calm',
  'walk_calm_stop',
  'calm_stop_complain',
  'stop_complain_call',
  'complain_call_bossi',
  'call_bossi_say',
  'bossi_say_remov',
  'say_remov_lock',
  'remov_lock_ive',
  'lock_ive_destroy',
  'ive_destroy_peac',
  'destroy_peac_quiet',
  'peac_quiet_caus',
  'quiet_caus_sleep',
  'caus_sleep_depriv',
  'sleep_depriv_insist',
  'depriv_insist_put',
  'insist_put_back',
  'put_back_refus',
  'back_refus_could',
  'refus_could_wrong',
  'could_wrong_ive',
  'wrong_ive_done',
  'ive_done_frustrat',
  'done_frustrat_mad',
  'frustrat_mad_aita'],
 ['live',
  'apart',
  'year',
  'time',
  'ive',
  'roommat',
  'one',
  'first',
  'two',
  'year',
  'live',
  'second',
  'rest',
  'time',
  'current',
  'roommat',
  'great',
  'long',
  'term',
  'relationship',
  'christma',
  'got',
  'propos',
  'want',
  'live',
  'togeth',
  'approach',
  'ask',
  'let',
  'fiancé',
  'take',
  'leas',
  'find',
  'new',
  'place',
  'soon',
  'possibl',
  'problem',
  'feel',
  'like',
  'find',
  'new',
  'place',
  'togeth',
  'ive',
  'live',
  'longer',
  'also',
  'told',
  'month',
  'ago',
  'spoke',
  'landlord',
  'leas',
  'togeth',
  'ill',
  'live',
  'alon',
  'sinc',
  'afford',
  'time',
  'agre',
  'said',
  'boyfriend',
  'would',
  'look',
  'place',
  'togeth',
  'told',
  'said',
  'start',
  'look',
  'new',
  'place',
  'everyth',
  'els',
  'expens',
  'made',
  'sens',
  'move',
  'refus',
  'told',
  'alway',
  'ask',
  'landlord',
  'unit',
  'avail',
  'build',
  'start',
  'cuss',
  'fiancé',
  'friend',
  'harass',
  'month',
  'left',
  'leas',
  'im',
  'go',
  'ignor',
  'spoke',
  'mom',
  'think',
  'let',
  'apart',
  'sinc',
  'need',
  'start',
  'save',
  'wed',
  'live_apart',
  'apart_year',
  'year_time',
  'time_ive',
  'ive_roommat',
  'roommat_one',
  'one_first',
  'first_two',
  'two_year',
  'year_live',
  'live_second',
  'second_rest',
  'rest_time',
  'time_current',
  'current_roommat',
  'roommat_great',
  'great_long',
  'long_term',
  'term_relationship',
  'relationship_christma',
  'christma_got',
  'got_propos',
  'propos_want',
  'want_live',
  'live_togeth',
  'togeth_approach',
  'approach_ask',
  'ask_let',
  'let_fiancé',
  'fiancé_take',
  'take_leas',
  'leas_find',
  'find_new',
  'new_place',
  'place_soon',
  'soon_possibl',
  'possibl_problem',
  'problem_feel',
  'feel_like',
  'like_find',
  'find_new',
  'new_place',
  'place_togeth',
  'togeth_ive',
  'ive_live',
  'live_longer',
  'longer_also',
  'also_told',
  'told_month',
  'month_ago',
  'ago_spoke',
  'spoke_landlord',
  'landlord_leas',
  'leas_togeth',
  'togeth_ill',
  'ill_live',
  'live_alon',
  'alon_sinc',
  'sinc_afford',
  'afford_time',
  'time_agre',
  'agre_said',
  'said_boyfriend',
  'boyfriend_would',
  'would_look',
  'look_place',
  'place_togeth',
  'togeth_told',
  'told_said',
  'said_start',
  'start_look',
  'look_new',
  'new_place',
  'place_everyth',
  'everyth_els',
  'els_expens',
  'expens_made',
  'made_sens',
  'sens_move',
  'move_refus',
  'refus_told',
  'told_alway',
  'alway_ask',
  'ask_landlord',
  'landlord_unit',
  'unit_avail',
  'avail_build',
  'build_start',
  'start_cuss',
  'cuss_fiancé',
  'fiancé_friend',
  'friend_harass',
  'harass_month',
  'month_left',
  'left_leas',
  'leas_im',
  'im_go',
  'go_ignor',
  'ignor_spoke',
  'spoke_mom',
  'mom_think',
  'think_let',
  'let_apart',
  'apart_sinc',
  'sinc_need',
  'need_start',
  'start_save',
  'save_wed',
  'live_apart_year',
  'apart_year_time',
  'year_time_ive',
  'time_ive_roommat',
  'ive_roommat_one',
  'roommat_one_first',
  'one_first_two',
  'first_two_year',
  'two_year_live',
  'year_live_second',
  'live_second_rest',
  'second_rest_time',
  'rest_time_current',
  'time_current_roommat',
  'current_roommat_great',
  'roommat_great_long',
  'great_long_term',
  'long_term_relationship',
  'term_relationship_christma',
  'relationship_christma_got',
  'christma_got_propos',
  'got_propos_want',
  'propos_want_live',
  'want_live_togeth',
  'live_togeth_approach',
  'togeth_approach_ask',
  'approach_ask_let',
  'ask_let_fiancé',
  'let_fiancé_take',
  'fiancé_take_leas',
  'take_leas_find',
  'leas_find_new',
  'find_new_place',
  'new_place_soon',
  'place_soon_possibl',
  'soon_possibl_problem',
  'possibl_problem_feel',
  'problem_feel_like',
  'feel_like_find',
  'like_find_new',
  'find_new_place',
  'new_place_togeth',
  'place_togeth_ive',
  'togeth_ive_live',
  'ive_live_longer',
  'live_longer_also',
  'longer_also_told',
  'also_told_month',
  'told_month_ago',
  'month_ago_spoke',
  'ago_spoke_landlord',
  'spoke_landlord_leas',
  'landlord_leas_togeth',
  'leas_togeth_ill',
  'togeth_ill_live',
  'ill_live_alon',
  'live_alon_sinc',
  'alon_sinc_afford',
  'sinc_afford_time',
  'afford_time_agre',
  'time_agre_said',
  'agre_said_boyfriend',
  'said_boyfriend_would',
  'boyfriend_would_look',
  'would_look_place',
  'look_place_togeth',
  'place_togeth_told',
  'togeth_told_said',
  'told_said_start',
  'said_start_look',
  'start_look_new',
  'look_new_place',
  'new_place_everyth',
  'place_everyth_els',
  'everyth_els_expens',
  'els_expens_made',
  'expens_made_sens',
  'made_sens_move',
  'sens_move_refus',
  'move_refus_told',
  'refus_told_alway',
  'told_alway_ask',
  'alway_ask_landlord',
  'ask_landlord_unit',
  'landlord_unit_avail',
  'unit_avail_build',
  'avail_build_start',
  'build_start_cuss',
  'start_cuss_fiancé',
  'cuss_fiancé_friend',
  'fiancé_friend_harass',
  'friend_harass_month',
  'harass_month_left',
  'month_left_leas',
  'left_leas_im',
  'leas_im_go',
  'im_go_ignor',
  'go_ignor_spoke',
  'ignor_spoke_mom',
  'spoke_mom_think',
  'mom_think_let',
  'think_let_apart',
  'let_apart_sinc',
  'apart_sinc_need',
  'sinc_need_start',
  'need_start_save',
  'start_save_wed'],
 ['hello',
  'father',
  'year',
  'old',
  'girl',
  'month',
  'ago',
  'found',
  'via',
  'visit',
  'hospit',
  'daughter',
  'late',
  'stage',
  'form',
  'brain',
  'cancer',
  'told',
  'surviv',
  'like',
  'tri',
  'anyway',
  'despit',
  'best',
  'effort',
  'found',
  'improv',
  'cancer',
  'daughter',
  'awar',
  'well',
  'recent',
  'wife',
  'look',
  'hair',
  'straighten',
  'daughter',
  'borrow',
  'found',
  'gram',
  'marijuana',
  'elf-bar',
  'vape',
  'well',
  'partial',
  'empti',
  'handl',
  'tito',
  'vodka',
  'bedroom',
  'confront',
  'daughter',
  'confess',
  'use',
  'substanc',
  'month',
  'point',
  'said',
  'sinc',
  'knew',
  'like',
  'go',
  'surviv',
  'past',
  'want',
  'tri',
  'thing',
  'social',
  'assur',
  'us',
  'respons',
  'user',
  'substanc',
  'live',
  'legal',
  'state',
  'vape',
  'though',
  'smoke',
  'cigarett',
  'drink',
  'occasion',
  'roll',
  'joint',
  'normal',
  'would',
  'want',
  'children',
  'use',
  'thought',
  'could',
  'make',
  'except',
  'due',
  'circumst',
  'wife',
  'howev',
  'disagre',
  'drink',
  'glass',
  'wine',
  'everi',
  'dislik',
  'nicotin',
  'marijuana',
  'convers',
  'came',
  'conclus',
  'would',
  'allow',
  'thing',
  'supervis',
  'long',
  'retail',
  'store',
  'dispensari',
  'street',
  'dealer',
  'though',
  'wife',
  'remain',
  'adam',
  'aita',
  'hello_father',
  'father_year',
  'year_old',
  'old_girl',
  'girl_month',
  'month_ago',
  'ago_found',
  'found_via',
  'via_visit',
  'visit_hospit',
  'hospit_daughter',
  'daughter_late',
  'late_stage',
  'stage_form',
  'form_brain',
  'brain_cancer',
  'cancer_told',
  'told_surviv',
  'surviv_like',
  'like_tri',
  'tri_anyway',
  'anyway_despit',
  'despit_best',
  'best_effort',
  'effort_found',
  'found_improv',
  'improv_cancer',
  'cancer_daughter',
  'daughter_awar',
  'awar_well',
  'well_recent',
  'recent_wife',
  'wife_look',
  'look_hair',
  'hair_straighten',
  'straighten_daughter',
  'daughter_borrow',
  'borrow_found',
  'found_gram',
  'gram_marijuana',
  'marijuana_elf-bar',
  'elf-bar_vape',
  'vape_well',
  'well_partial',
  'partial_empti',
  'empti_handl',
  'handl_tito',
  'tito_vodka',
  'vodka_bedroom',
  'bedroom_confront',
  'confront_daughter',
  'daughter_confess',
  'confess_use',
  'use_substanc',
  'substanc_month',
  'month_point',
  'point_said',
  'said_sinc',
  'sinc_knew',
  'knew_like',
  'like_go',
  'go_surviv',
  'surviv_past',
  'past_want',
  'want_tri',
  'tri_thing',
  'thing_social',
  'social_assur',
  'assur_us',
  'us_respons',
  'respons_user',
  'user_substanc',
  'substanc_live',
  'live_legal',
  'legal_state',
  'state_vape',
  'vape_though',
  'though_smoke',
  'smoke_cigarett',
  'cigarett_drink',
  'drink_occasion',
  'occasion_roll',
  'roll_joint',
  'joint_normal',
  'normal_would',
  'would_want',
  'want_children',
  'children_use',
  'use_thought',
  'thought_could',
  'could_make',
  'make_except',
  'except_due',
  'due_circumst',
  'circumst_wife',
  'wife_howev',
  'howev_disagre',
  'disagre_drink',
  'drink_glass',
  'glass_wine',
  'wine_everi',
  'everi_dislik',
  'dislik_nicotin',
  'nicotin_marijuana',
  'marijuana_convers',
  'convers_came',
  'came_conclus',
  'conclus_would',
  'would_allow',
  'allow_thing',
  'thing_supervis',
  'supervis_long',
  'long_retail',
  'retail_store',
  'store_dispensari',
  'dispensari_street',
  'street_dealer',
  'dealer_though',
  'though_wife',
  'wife_remain',
  'remain_adam',
  'adam_aita',
  'hello_father_year',
  'father_year_old',
  'year_old_girl',
  'old_girl_month',
  'girl_month_ago',
  'month_ago_found',
  'ago_found_via',
  'found_via_visit',
  'via_visit_hospit',
  'visit_hospit_daughter',
  'hospit_daughter_late',
  'daughter_late_stage',
  'late_stage_form',
  'stage_form_brain',
  'form_brain_cancer',
  'brain_cancer_told',
  'cancer_told_surviv',
  'told_surviv_like',
  'surviv_like_tri',
  'like_tri_anyway',
  'tri_anyway_despit',
  'anyway_despit_best',
  'despit_best_effort',
  'best_effort_found',
  'effort_found_improv',
  'found_improv_cancer',
  'improv_cancer_daughter',
  'cancer_daughter_awar',
  'daughter_awar_well',
  'awar_well_recent',
  'well_recent_wife',
  'recent_wife_look',
  'wife_look_hair',
  'look_hair_straighten',
  'hair_straighten_daughter',
  'straighten_daughter_borrow',
  'daughter_borrow_found',
  'borrow_found_gram',
  'found_gram_marijuana',
  'gram_marijuana_elf-bar',
  'marijuana_elf-bar_vape',
  'elf-bar_vape_well',
  'vape_well_partial',
  'well_partial_empti',
  'partial_empti_handl',
  'empti_handl_tito',
  'handl_tito_vodka',
  'tito_vodka_bedroom',
  'vodka_bedroom_confront',
  'bedroom_confront_daughter',
  'confront_daughter_confess',
  'daughter_confess_use',
  'confess_use_substanc',
  'use_substanc_month',
  'substanc_month_point',
  'month_point_said',
  'point_said_sinc',
  'said_sinc_knew',
  'sinc_knew_like',
  'knew_like_go',
  'like_go_surviv',
  'go_surviv_past',
  'surviv_past_want',
  'past_want_tri',
  'want_tri_thing',
  'tri_thing_social',
  'thing_social_assur',
  'social_assur_us',
  'assur_us_respons',
  'us_respons_user',
  'respons_user_substanc',
  'user_substanc_live',
  'substanc_live_legal',
  'live_legal_state',
  'legal_state_vape',
  'state_vape_though',
  'vape_though_smoke',
  'though_smoke_cigarett',
  'smoke_cigarett_drink',
  'cigarett_drink_occasion',
  'drink_occasion_roll',
  'occasion_roll_joint',
  'roll_joint_normal',
  'joint_normal_would',
  'normal_would_want',
  'would_want_children',
  'want_children_use',
  'children_use_thought',
  'use_thought_could',
  'thought_could_make',
  'could_make_except',
  'make_except_due',
  'except_due_circumst',
  'due_circumst_wife',
  'circumst_wife_howev',
  'wife_howev_disagre',
  'howev_disagre_drink',
  'disagre_drink_glass',
  'drink_glass_wine',
  'glass_wine_everi',
  'wine_everi_dislik',
  'everi_dislik_nicotin',
  'dislik_nicotin_marijuana',
  'nicotin_marijuana_convers',
  'marijuana_convers_came',
  'convers_came_conclus',
  'came_conclus_would',
  'conclus_would_allow',
  'would_allow_thing',
  'allow_thing_supervis',
  'thing_supervis_long',
  'supervis_long_retail',
  'long_retail_store',
  'retail_store_dispensari',
  'store_dispensari_street',
  'dispensari_street_dealer',
  'street_dealer_though',
  'dealer_though_wife',
  'though_wife_remain',
  'wife_remain_adam',
  'remain_adam_aita'],
 ['engag',
  'fianc',
  'month',
  'share',
  'financ',
  'want',
  'got',
  'rais',
  'salari',
  'earn',
  '%',
  'notic',
  'use',
  'ask',
  'pay',
  'friend',
  'whenev',
  'say',
  'pay',
  'hed',
  'respond',
  '%',
  'act',
  '%',
  'unfair',
  'im',
  'dserv',
  'sever',
  'time',
  'trick',
  'pay',
  'friend',
  'meal',
  'ask',
  'publicli',
  'let',
  'say',
  'im',
  'nice',
  'say',
  'hate',
  'confront',
  'especi',
  'public',
  'place',
  'like',
  'restaur',
  'grin',
  'pay',
  'last',
  'tuesday',
  'ask',
  'join',
  'buddi',
  'dinner',
  'told',
  'start',
  'pay',
  'food',
  'expect',
  'said',
  'got',
  'worri',
  'got',
  'restaur',
  'met',
  'friend',
  'order',
  'food',
  'middl',
  'meal',
  'lean',
  'whisper',
  'would',
  'pay',
  'everyth',
  'friend',
  'order',
  'got',
  'mad',
  'whisper',
  'back',
  'noooo',
  'probabl',
  'reli',
  'caus',
  'scene',
  'public',
  'infront',
  'friend',
  'said',
  'enough',
  'money',
  'could',
  'pay',
  'everyon',
  'food',
  '%',
  'rememb',
  'fume',
  'insid',
  'instead',
  'react',
  'neg',
  'lose',
  'temper',
  'wait',
  'til',
  'bill',
  'arriv',
  'alreadi',
  'split',
  'start',
  'first',
  'order',
  'paid',
  'mine',
  'excus',
  'restroom',
  'sneak',
  'got',
  'car',
  'went',
  'home',
  'start',
  'get',
  'phonecal',
  'fianc',
  'text',
  'ask',
  'text',
  'back',
  'say',
  'appreci',
  'put',
  'situat',
  'basic',
  'trick',
  'pay',
  'friend',
  'food',
  'told',
  'went',
  'home',
  'stop',
  'repli',
  'hour',
  'later',
  'came',
  'start',
  'yell',
  'call',
  'selfish',
  'irrat',
  'cheapskat',
  'childish',
  'sneak',
  'like',
  'leav',
  'stuck',
  'bill',
  'could',
  'pay',
  'call',
  'brother',
  'help',
  'loud',
  'argument',
  'walk',
  'friend',
  'speak',
  'told',
  'theyr',
  'disappoint',
  'behavior',
  'tell',
  'take',
  'time',
  'reflect',
  'type',
  'woman',
  'gon',
  'na',
  'marri',
  'aita',
  'expect',
  'fair',
  'justifi',
  'eta',
  'info',
  'said',
  'restaur',
  'expens',
  'could',
  'paid',
  'admit',
  'tell',
  'til',
  'later',
  'know',
  'id',
  'refus',
  'still',
  'think',
  'reaction',
  'childish',
  'unaccept',
  'engag_fianc',
  'fianc_month',
  'month_share',
  'share_financ',
  'financ_want',
  'want_got',
  'got_rais',
  'rais_salari',
  'salari_earn',
  'earn_%',
  '%_notic',
  'notic_use',
  'use_ask',
  'ask_pay',
  'pay_friend',
  'friend_whenev',
  'whenev_say',
  'say_pay',
  'pay_hed',
  'hed_respond',
  'respond_%',
  '%_act',
  'act_%',
  '%_unfair',
  'unfair_im',
  'im_dserv',
  'dserv_sever',
  'sever_time',
  'time_trick',
  'trick_pay',
  'pay_friend',
  'friend_meal',
  'meal_ask',
  'ask_publicli',
  'publicli_let',
  'let_say',
  'say_im',
  'im_nice',
  'nice_say',
  'say_hate',
  'hate_confront',
  'confront_especi',
  'especi_public',
  'public_place',
  'place_like',
  'like_restaur',
  'restaur_grin',
  'grin_pay',
  'pay_last',
  'last_tuesday',
  'tuesday_ask',
  'ask_join',
  'join_buddi',
  'buddi_dinner',
  'dinner_told',
  'told_start',
  'start_pay',
  'pay_food',
  'food_expect',
  'expect_said',
  'said_got',
  'got_worri',
  'worri_got',
  'got_restaur',
  'restaur_met',
  'met_friend',
  'friend_order',
  'order_food',
  'food_middl',
  'middl_meal',
  'meal_lean',
  'lean_whisper',
  'whisper_would',
  'would_pay',
  'pay_everyth',
  'everyth_friend',
  'friend_order',
  'order_got',
  'got_mad',
  'mad_whisper',
  'whisper_back',
  'back_noooo',
  'noooo_probabl',
  'probabl_reli',
  'reli_caus',
  'caus_scene',
  'scene_public',
  'public_infront',
  'infront_friend',
  'friend_said',
  'said_enough',
  'enough_money',
  'money_could',
  'could_pay',
  'pay_everyon',
  'everyon_food',
  'food_%',
  '%_rememb',
  'rememb_fume',
  'fume_insid',
  'insid_instead',
  'instead_react',
  'react_neg',
  'neg_lose',
  'lose_temper',
  'temper_wait',
  'wait_til',
  'til_bill',
  'bill_arriv',
  'arriv_alreadi',
  'alreadi_split',
  'split_start',
  'start_first',
  'first_order',
  'order_paid',
  'paid_mine',
  'mine_excus',
  'excus_restroom',
  'restroom_sneak',
  'sneak_got',
  'got_car',
  'car_went',
  'went_home',
  'home_start',
  'start_get',
  'get_phonecal',
  'phonecal_fianc',
  'fianc_text',
  'text_ask',
  'ask_text',
  'text_back',
  'back_say',
  'say_appreci',
  'appreci_put',
  'put_situat',
  'situat_basic',
  'basic_trick',
  'trick_pay',
  'pay_friend',
  'friend_food',
  'food_told',
  'told_went',
  'went_home',
  'home_stop',
  'stop_repli',
  'repli_hour',
  'hour_later',
  'later_came',
  'came_start',
  'start_yell',
  'yell_call',
  'call_selfish',
  'selfish_irrat',
  'irrat_cheapskat',
  'cheapskat_childish',
  'childish_sneak',
  'sneak_like',
  'like_leav',
  'leav_stuck',
  'stuck_bill',
  'bill_could',
  'could_pay',
  'pay_call',
  'call_brother',
  'brother_help',
  'help_loud',
  'loud_argument',
  'argument_walk',
  'walk_friend',
  'friend_speak',
  'speak_told',
  'told_theyr',
  'theyr_disappoint',
  'disappoint_behavior',
  'behavior_tell',
  'tell_take',
  'take_time',
  'time_reflect',
  'reflect_type',
  'type_woman',
  'woman_gon',
  'gon_na',
  'na_marri',
  'marri_aita',
  'aita_expect',
  'expect_fair',
  'fair_justifi',
  'justifi_eta',
  'eta_info',
  'info_said',
  'said_restaur',
  'restaur_expens',
  'expens_could',
  'could_paid',
  'paid_admit',
  'admit_tell',
  'tell_til',
  'til_later',
  'later_know',
  'know_id',
  'id_refus',
  'refus_still',
  'still_think',
  'think_reaction',
  'reaction_childish',
  'childish_unaccept',
  'engag_fianc_month',
  'fianc_month_share',
  'month_share_financ',
  'share_financ_want',
  'financ_want_got',
  'want_got_rais',
  'got_rais_salari',
  'rais_salari_earn',
  'salari_earn_%',
  'earn_%_notic',
  '%_notic_use',
  'notic_use_ask',
  'use_ask_pay',
  'ask_pay_friend',
  'pay_friend_whenev',
  'friend_whenev_say',
  'whenev_say_pay',
  'say_pay_hed',
  'pay_hed_respond',
  'hed_respond_%',
  'respond_%_act',
  '%_act_%',
  'act_%_unfair',
  '%_unfair_im',
  'unfair_im_dserv',
  'im_dserv_sever',
  'dserv_sever_time',
  'sever_time_trick',
  'time_trick_pay',
  'trick_pay_friend',
  'pay_friend_meal',
  'friend_meal_ask',
  'meal_ask_publicli',
  'ask_publicli_let',
  'publicli_let_say',
  'let_say_im',
  'say_im_nice',
  'im_nice_say',
  'nice_say_hate',
  'say_hate_confront',
  'hate_confront_especi',
  'confront_especi_public',
  'especi_public_place',
  'public_place_like',
  'place_like_restaur',
  'like_restaur_grin',
  'restaur_grin_pay',
  'grin_pay_last',
  'pay_last_tuesday',
  'last_tuesday_ask',
  'tuesday_ask_join',
  'ask_join_buddi',
  'join_buddi_dinner',
  'buddi_dinner_told',
  'dinner_told_start',
  'told_start_pay',
  'start_pay_food',
  'pay_food_expect',
  'food_expect_said',
  'expect_said_got',
  'said_got_worri',
  'got_worri_got',
  'worri_got_restaur',
  'got_restaur_met',
  'restaur_met_friend',
  'met_friend_order',
  'friend_order_food',
  'order_food_middl',
  'food_middl_meal',
  'middl_meal_lean',
  'meal_lean_whisper',
  'lean_whisper_would',
  'whisper_would_pay',
  'would_pay_everyth',
  'pay_everyth_friend',
  'everyth_friend_order',
  'friend_order_got',
  'order_got_mad',
  'got_mad_whisper',
  'mad_whisper_back',
  'whisper_back_noooo',
  'back_noooo_probabl',
  'noooo_probabl_reli',
  'probabl_reli_caus',
  'reli_caus_scene',
  'caus_scene_public',
  'scene_public_infront',
  'public_infront_friend',
  'infront_friend_said',
  'friend_said_enough',
  'said_enough_money',
  'enough_money_could',
  'money_could_pay',
  'could_pay_everyon',
  'pay_everyon_food',
  'everyon_food_%',
  'food_%_rememb',
  '%_rememb_fume',
  'rememb_fume_insid',
  'fume_insid_instead',
  'insid_instead_react',
  'instead_react_neg',
  'react_neg_lose',
  'neg_lose_temper',
  'lose_temper_wait',
  'temper_wait_til',
  'wait_til_bill',
  'til_bill_arriv',
  'bill_arriv_alreadi',
  'arriv_alreadi_split',
  'alreadi_split_start',
  'split_start_first',
  'start_first_order',
  'first_order_paid',
  'order_paid_mine',
  'paid_mine_excus',
  'mine_excus_restroom',
  'excus_restroom_sneak',
  'restroom_sneak_got',
  'sneak_got_car',
  'got_car_went',
  'car_went_home',
  'went_home_start',
  'home_start_get',
  'start_get_phonecal',
  'get_phonecal_fianc',
  'phonecal_fianc_text',
  'fianc_text_ask',
  'text_ask_text',
  'ask_text_back',
  'text_back_say',
  'back_say_appreci',
  'say_appreci_put',
  'appreci_put_situat',
  'put_situat_basic',
  'situat_basic_trick',
  'basic_trick_pay',
  'trick_pay_friend',
  'pay_friend_food',
  'friend_food_told',
  'food_told_went',
  'told_went_home',
  'went_home_stop',
  'home_stop_repli',
  'stop_repli_hour',
  'repli_hour_later',
  'hour_later_came',
  'later_came_start',
  'came_start_yell',
  'start_yell_call',
  'yell_call_selfish',
  'call_selfish_irrat',
  'selfish_irrat_cheapskat',
  'irrat_cheapskat_childish',
  'cheapskat_childish_sneak',
  'childish_sneak_like',
  'sneak_like_leav',
  'like_leav_stuck',
  'leav_stuck_bill',
  'stuck_bill_could',
  'bill_could_pay',
  'could_pay_call',
  'pay_call_brother',
  'call_brother_help',
  'brother_help_loud',
  'help_loud_argument',
  'loud_argument_walk',
  'argument_walk_friend',
  'walk_friend_speak',
  'friend_speak_told',
  'speak_told_theyr',
  'told_theyr_disappoint',
  'theyr_disappoint_behavior',
  'disappoint_behavior_tell',
  'behavior_tell_take',
  'tell_take_time',
  'take_time_reflect',
  'time_reflect_type',
  'reflect_type_woman',
  'type_woman_gon',
  'woman_gon_na',
  'gon_na_marri',
  'na_marri_aita',
  'marri_aita_expect',
  'aita_expect_fair',
  'expect_fair_justifi',
  'fair_justifi_eta',
  'justifi_eta_info',
  'eta_info_said',
  'info_said_restaur',
  'said_restaur_expens',
  'restaur_expens_could',
  'expens_could_paid',
  'could_paid_admit',
  'paid_admit_tell',
  'admit_tell_til',
  'tell_til_later',
  'til_later_know',
  'later_know_id',
  'know_id_refus',
  'id_refus_still',
  'refus_still_think',
  'still_think_reaction',
  'think_reaction_childish',
  'reaction_childish_unaccept'],
 ['brother',
  'fred',
  'wife',
  'sarah',
  'financi',
  'stabl',
  'bit',
  'surpris',
  'sister',
  'kati',
  'announc',
  'pregnant',
  'howev',
  'kept',
  'month',
  'ago',
  'kati',
  'plan',
  'famili',
  'trip',
  'brother',
  'sil',
  'decid',
  'opt',
  'cut',
  'cost',
  'babi',
  'mom',
  'dad',
  'decid',
  'cancel',
  'trip',
  'altogeth',
  'anoth',
  'one',
  'later',
  'sinc',
  'mom',
  'health',
  'great',
  'either',
  'greatli',
  'irk',
  'kati',
  'realli',
  'look',
  'forward',
  'trip',
  'made',
  'unsubtl',
  'remark',
  'fred',
  'sarah',
  'children',
  'money',
  'clearli',
  'upset',
  'unfortun',
  'due',
  'sever',
  'complic',
  'babi',
  'stillborn',
  'month',
  'brother',
  'sil',
  'understand',
  'still',
  'devast',
  'especi',
  'sil',
  'mental',
  'health',
  'well',
  'yesterday',
  'host',
  'littl',
  'famili',
  'dinner',
  'home',
  'sister',
  'brother',
  'sil',
  'parent',
  'time',
  'dinner',
  'sil',
  'went',
  'bathroom',
  'meanwhil',
  'husband',
  'ask',
  'fred',
  'well',
  'fred',
  'could',
  'repli',
  'kati',
  'jump',
  'said',
  'well',
  'though',
  'loss',
  'sad',
  'think',
  'good',
  'thing',
  'least',
  'worri',
  'money',
  'anymor',
  'said',
  'bring',
  'kid',
  'world',
  'unless',
  'sure',
  'provid',
  'fred',
  'went',
  'red-fac',
  'said',
  'would',
  'abl',
  'provid',
  'child',
  'may',
  'money',
  'extra',
  'luxuri',
  'would',
  'everyth',
  'child',
  'almost',
  'cri',
  'purpl',
  'anger',
  'quickli',
  'drag',
  'kati',
  'away',
  'kitchen',
  'demand',
  'possess',
  'say',
  'someth',
  'insensit',
  'got',
  'incred',
  'defens',
  'said',
  'made',
  'practic',
  'observ',
  '%',
  'correct',
  'better',
  'see',
  'straight',
  'cloud',
  'emot',
  'time',
  'sarah',
  'come',
  'bathroom',
  'shock',
  'see',
  'fred',
  'tear',
  'kept',
  'get',
  'hyster',
  'ask',
  'wrong',
  'knew',
  'kati',
  'presenc',
  'would',
  'ruin',
  'thing',
  'ask',
  'get',
  'look',
  'incred',
  'hurt',
  'angri',
  'went',
  'anyway',
  'fortun',
  'parent',
  'late',
  'see',
  'whole',
  'spectacl',
  'came',
  'home',
  'found',
  'happen',
  'shock',
  'upset',
  'kati',
  'mom',
  'think',
  'perhap',
  'kick',
  'kati',
  'like',
  'aita',
  '&',
  'xb',
  'eta',
  'clariti',
  'kati',
  'ought',
  'enough',
  'matur',
  'know',
  'say',
  'brother_fred',
  'fred_wife',
  'wife_sarah',
  'sarah_financi',
  'financi_stabl',
  'stabl_bit',
  'bit_surpris',
  'surpris_sister',
  'sister_kati',
  'kati_announc',
  'announc_pregnant',
  'pregnant_howev',
  'howev_kept',
  'kept_month',
  'month_ago',
  'ago_kati',
  'kati_plan',
  'plan_famili',
  'famili_trip',
  'trip_brother',
  'brother_sil',
  'sil_decid',
  'decid_opt',
  'opt_cut',
  'cut_cost',
  'cost_babi',
  'babi_mom',
  'mom_dad',
  'dad_decid',
  'decid_cancel',
  'cancel_trip',
  'trip_altogeth',
  'altogeth_anoth',
  'anoth_one',
  'one_later',
  'later_sinc',
  'sinc_mom',
  'mom_health',
  'health_great',
  'great_either',
  'either_greatli',
  'greatli_irk',
  'irk_kati',
  'kati_realli',
  'realli_look',
  'look_forward',
  'forward_trip',
  'trip_made',
  'made_unsubtl',
  'unsubtl_remark',
  'remark_fred',
  'fred_sarah',
  'sarah_children',
  'children_money',
  'money_clearli',
  'clearli_upset',
  'upset_unfortun',
  'unfortun_due',
  'due_sever',
  'sever_complic',
  'complic_babi',
  'babi_stillborn',
  'stillborn_month',
  'month_brother',
  'brother_sil',
  'sil_understand',
  'understand_still',
  'still_devast',
  'devast_especi',
  'especi_sil',
  'sil_mental',
  'mental_health',
  'health_well',
  'well_yesterday',
  'yesterday_host',
  'host_littl',
  'littl_famili',
  'famili_dinner',
  'dinner_home',
  'home_sister',
  'sister_brother',
  'brother_sil',
  'sil_parent',
  'parent_time',
  'time_dinner',
  'dinner_sil',
  'sil_went',
  'went_bathroom',
  'bathroom_meanwhil',
  'meanwhil_husband',
  'husband_ask',
  'ask_fred',
  'fred_well',
  'well_fred',
  'fred_could',
  'could_repli',
  'repli_kati',
  'kati_jump',
  'jump_said',
  'said_well',
  'well_though',
  'though_loss',
  'loss_sad',
  'sad_think',
  'think_good',
  'good_thing',
  'thing_least',
  'least_worri',
  'worri_money',
  'money_anymor',
  'anymor_said',
  'said_bring',
  'bring_kid',
  'kid_world',
  'world_unless',
  'unless_sure',
  'sure_provid',
  'provid_fred',
  'fred_went',
  'went_red-fac',
  'red-fac_said',
  'said_would',
  'would_abl',
  'abl_provid',
  'provid_child',
  'child_may',
  'may_money',
  'money_extra',
  'extra_luxuri',
  'luxuri_would',
  'would_everyth',
  'everyth_child',
  'child_almost',
  'almost_cri',
  'cri_purpl',
  'purpl_anger',
  'anger_quickli',
  'quickli_drag',
  'drag_kati',
  'kati_away',
  'away_kitchen',
  'kitchen_demand',
  'demand_possess',
  'possess_say',
  'say_someth',
  'someth_insensit',
  'insensit_got',
  'got_incred',
  'incred_defens',
  'defens_said',
  'said_made',
  'made_practic',
  'practic_observ',
  'observ_%',
  '%_correct',
  'correct_better',
  'better_see',
  'see_straight',
  'straight_cloud',
  'cloud_emot',
  'emot_time',
  'time_sarah',
  'sarah_come',
  'come_bathroom',
  'bathroom_shock',
  'shock_see',
  'see_fred',
  'fred_tear',
  'tear_kept',
  'kept_get',
  'get_hyster',
  'hyster_ask',
  'ask_wrong',
  'wrong_knew',
  'knew_kati',
  'kati_presenc',
  'presenc_would',
  'would_ruin',
  'ruin_thing',
  'thing_ask',
  'ask_get',
  'get_look',
  'look_incred',
  'incred_hurt',
  'hurt_angri',
  'angri_went',
  'went_anyway',
  'anyway_fortun',
  'fortun_parent',
  'parent_late',
  'late_see',
  'see_whole',
  'whole_spectacl',
  'spectacl_came',
  'came_home',
  'home_found',
  'found_happen',
  'happen_shock',
  'shock_upset',
  'upset_kati',
  'kati_mom',
  'mom_think',
  'think_perhap',
  'perhap_kick',
  'kick_kati',
  'kati_like',
  'like_aita',
  'aita_&',
  '&_xb',
  'xb_eta',
  'eta_clariti',
  'clariti_kati',
  'kati_ought',
  'ought_enough',
  'enough_matur',
  'matur_know',
  'know_say',
  'brother_fred_wife',
  'fred_wife_sarah',
  'wife_sarah_financi',
  'sarah_financi_stabl',
  'financi_stabl_bit',
  'stabl_bit_surpris',
  'bit_surpris_sister',
  'surpris_sister_kati',
  'sister_kati_announc',
  'kati_announc_pregnant',
  'announc_pregnant_howev',
  'pregnant_howev_kept',
  'howev_kept_month',
  'kept_month_ago',
  'month_ago_kati',
  'ago_kati_plan',
  'kati_plan_famili',
  'plan_famili_trip',
  'famili_trip_brother',
  'trip_brother_sil',
  'brother_sil_decid',
  'sil_decid_opt',
  'decid_opt_cut',
  'opt_cut_cost',
  'cut_cost_babi',
  'cost_babi_mom',
  'babi_mom_dad',
  'mom_dad_decid',
  'dad_decid_cancel',
  'decid_cancel_trip',
  'cancel_trip_altogeth',
  'trip_altogeth_anoth',
  'altogeth_anoth_one',
  'anoth_one_later',
  'one_later_sinc',
  'later_sinc_mom',
  'sinc_mom_health',
  'mom_health_great',
  'health_great_either',
  'great_either_greatli',
  'either_greatli_irk',
  'greatli_irk_kati',
  'irk_kati_realli',
  'kati_realli_look',
  'realli_look_forward',
  'look_forward_trip',
  'forward_trip_made',
  'trip_made_unsubtl',
  'made_unsubtl_remark',
  'unsubtl_remark_fred',
  'remark_fred_sarah',
  'fred_sarah_children',
  'sarah_children_money',
  'children_money_clearli',
  'money_clearli_upset',
  'clearli_upset_unfortun',
  'upset_unfortun_due',
  'unfortun_due_sever',
  'due_sever_complic',
  'sever_complic_babi',
  'complic_babi_stillborn',
  'babi_stillborn_month',
  'stillborn_month_brother',
  'month_brother_sil',
  'brother_sil_understand',
  'sil_understand_still',
  'understand_still_devast',
  'still_devast_especi',
  'devast_especi_sil',
  'especi_sil_mental',
  'sil_mental_health',
  'mental_health_well',
  'health_well_yesterday',
  'well_yesterday_host',
  'yesterday_host_littl',
  'host_littl_famili',
  'littl_famili_dinner',
  'famili_dinner_home',
  'dinner_home_sister',
  'home_sister_brother',
  'sister_brother_sil',
  'brother_sil_parent',
  'sil_parent_time',
  'parent_time_dinner',
  'time_dinner_sil',
  'dinner_sil_went',
  'sil_went_bathroom',
  'went_bathroom_meanwhil',
  'bathroom_meanwhil_husband',
  'meanwhil_husband_ask',
  'husband_ask_fred',
  'ask_fred_well',
  'fred_well_fred',
  'well_fred_could',
  'fred_could_repli',
  'could_repli_kati',
  'repli_kati_jump',
  'kati_jump_said',
  'jump_said_well',
  'said_well_though',
  'well_though_loss',
  'though_loss_sad',
  'loss_sad_think',
  'sad_think_good',
  'think_good_thing',
  'good_thing_least',
  'thing_least_worri',
  'least_worri_money',
  'worri_money_anymor',
  'money_anymor_said',
  'anymor_said_bring',
  'said_bring_kid',
  'bring_kid_world',
  'kid_world_unless',
  'world_unless_sure',
  'unless_sure_provid',
  'sure_provid_fred',
  'provid_fred_went',
  'fred_went_red-fac',
  'went_red-fac_said',
  'red-fac_said_would',
  'said_would_abl',
  'would_abl_provid',
  'abl_provid_child',
  'provid_child_may',
  'child_may_money',
  'may_money_extra',
  'money_extra_luxuri',
  'extra_luxuri_would',
  'luxuri_would_everyth',
  'would_everyth_child',
  'everyth_child_almost',
  'child_almost_cri',
  'almost_cri_purpl',
  'cri_purpl_anger',
  'purpl_anger_quickli',
  'anger_quickli_drag',
  'quickli_drag_kati',
  'drag_kati_away',
  'kati_away_kitchen',
  'away_kitchen_demand',
  'kitchen_demand_possess',
  'demand_possess_say',
  'possess_say_someth',
  'say_someth_insensit',
  'someth_insensit_got',
  'insensit_got_incred',
  'got_incred_defens',
  'incred_defens_said',
  'defens_said_made',
  'said_made_practic',
  'made_practic_observ',
  'practic_observ_%',
  'observ_%_correct',
  '%_correct_better',
  'correct_better_see',
  'better_see_straight',
  'see_straight_cloud',
  'straight_cloud_emot',
  'cloud_emot_time',
  'emot_time_sarah',
  'time_sarah_come',
  'sarah_come_bathroom',
  'come_bathroom_shock',
  'bathroom_shock_see',
  'shock_see_fred',
  'see_fred_tear',
  'fred_tear_kept',
  'tear_kept_get',
  'kept_get_hyster',
  'get_hyster_ask',
  'hyster_ask_wrong',
  'ask_wrong_knew',
  'wrong_knew_kati',
  'knew_kati_presenc',
  'kati_presenc_would',
  'presenc_would_ruin',
  'would_ruin_thing',
  'ruin_thing_ask',
  'thing_ask_get',
  'ask_get_look',
  'get_look_incred',
  'look_incred_hurt',
  'incred_hurt_angri',
  'hurt_angri_went',
  'angri_went_anyway',
  'went_anyway_fortun',
  'anyway_fortun_parent',
  'fortun_parent_late',
  'parent_late_see',
  'late_see_whole',
  'see_whole_spectacl',
  'whole_spectacl_came',
  'spectacl_came_home',
  'came_home_found',
  'home_found_happen',
  'found_happen_shock',
  'happen_shock_upset',
  'shock_upset_kati',
  'upset_kati_mom',
  'kati_mom_think',
  'mom_think_perhap',
  'think_perhap_kick',
  'perhap_kick_kati',
  'kick_kati_like',
  'kati_like_aita',
  'like_aita_&',
  'aita_&_xb',
  '&_xb_eta',
  'xb_eta_clariti',
  'eta_clariti_kati',
  'clariti_kati_ought',
  'kati_ought_enough',
  'ought_enough_matur',
  'enough_matur_know',
  'matur_know_say'],
 ['got',
  'marri',
  'month',
  'ago',
  'dress',
  'long',
  'laci',
  'gown',
  'mom',
  'wore',
  'wed',
  'mom',
  'pass',
  'away',
  'year',
  'ago',
  'dress',
  'import',
  'big',
  'plan',
  'keep',
  'safe',
  'damag',
  'would',
  'wear',
  'dress',
  'wed',
  'would',
  'switch',
  'casual',
  'dress',
  'recept',
  'wear',
  'dress',
  'eat',
  'drink',
  'anyth',
  'except',
  'water',
  'would',
  'stay',
  'insid',
  'time',
  'promis',
  'im',
  'usual',
  'crazi',
  'cleanli',
  'mom',
  'dress',
  'thought',
  'damag',
  'broke',
  'heart',
  'also',
  'knew',
  'want',
  'wear',
  'got',
  'marri',
  'piec',
  'ador',
  'dress',
  'alway',
  'dream',
  'would',
  'wear',
  'bridesmaid',
  'knew',
  'well',
  'particular',
  'dress',
  'room',
  'venu',
  'get',
  'readi',
  'dress',
  'hang',
  'safe',
  'place',
  'room',
  'day',
  'wed',
  'went',
  'check',
  'someth',
  'wed',
  'leav',
  'bridesmaid',
  'room',
  'happen',
  'told',
  'open',
  'bottl',
  'pinot',
  'noir',
  'favorit',
  'celebr',
  'pour',
  'glass',
  'began',
  'walk',
  'around',
  'check',
  'room',
  'one',
  'bridesmaid',
  'anna',
  'want',
  'get',
  'closer',
  'look',
  'dress',
  'got',
  'realli',
  'close',
  'start',
  'touch',
  'lace',
  'somehow',
  'hand',
  'hold',
  'wine',
  'glass',
  'slip',
  'wine',
  'spill',
  'bottom',
  'dress',
  'came',
  'upstair',
  'told',
  'happen',
  'start',
  'sob',
  'maid',
  'honor',
  'call',
  'sever',
  'profession',
  'cleaner',
  'said',
  'way',
  'could',
  'get',
  'dress',
  'wed',
  'told',
  'us',
  'way',
  'save',
  'dress',
  'could',
  'get',
  'moh',
  'start',
  'call',
  'becam',
  'extrem',
  'angri',
  'ask',
  'anna',
  'hell',
  'hold',
  'red',
  'wine',
  'close',
  'dress',
  'knew',
  'care',
  'dismiss',
  'said',
  'big',
  'deal',
  'plan',
  'wear',
  'dress',
  'could',
  'gotten',
  'damag',
  'way',
  'believ',
  'said',
  'call',
  'thoughtless',
  'careless',
  'stupid',
  'told',
  'longer',
  'part',
  'wed',
  'want',
  'leav',
  'left',
  'neither',
  'us',
  'reach',
  'sinc',
  'got',
  'marri',
  'dress',
  'plan',
  'wear',
  'recept',
  'heartbroken',
  'wear',
  'mom',
  'dress',
  'wed',
  'bridesmaid',
  'joke',
  'bridezilla',
  'kick',
  'anna',
  'made',
  'honest',
  'mistak',
  'absolut',
  'think',
  'im',
  'ah',
  'bridezilla',
  'anna',
  'reaction',
  'horribl',
  'insincer',
  'want',
  'get',
  'stori',
  'chest',
  'ask',
  'peopl',
  'might',
  'imparti',
  'aita',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_dress',
  'dress_long',
  'long_laci',
  'laci_gown',
  'gown_mom',
  'mom_wore',
  'wore_wed',
  'wed_mom',
  'mom_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_dress',
  'dress_import',
  'import_big',
  'big_plan',
  'plan_keep',
  'keep_safe',
  'safe_damag',
  'damag_would',
  'would_wear',
  'wear_dress',
  'dress_wed',
  'wed_would',
  'would_switch',
  'switch_casual',
  'casual_dress',
  'dress_recept',
  'recept_wear',
  'wear_dress',
  'dress_eat',
  'eat_drink',
  'drink_anyth',
  'anyth_except',
  'except_water',
  'water_would',
  'would_stay',
  'stay_insid',
  'insid_time',
  'time_promis',
  'promis_im',
  'im_usual',
  'usual_crazi',
  'crazi_cleanli',
  'cleanli_mom',
  'mom_dress',
  'dress_thought',
  'thought_damag',
  'damag_broke',
  'broke_heart',
  'heart_also',
  'also_knew',
  'knew_want',
  'want_wear',
  'wear_got',
  'got_marri',
  'marri_piec',
  'piec_ador',
  'ador_dress',
  'dress_alway',
  'alway_dream',
  'dream_would',
  'would_wear',
  'wear_bridesmaid',
  'bridesmaid_knew',
  'knew_well',
  'well_particular',
  'particular_dress',
  'dress_room',
  'room_venu',
  'venu_get',
  'get_readi',
  'readi_dress',
  'dress_hang',
  'hang_safe',
  'safe_place',
  'place_room',
  'room_day',
  'day_wed',
  'wed_went',
  'went_check',
  'check_someth',
  'someth_wed',
  'wed_leav',
  'leav_bridesmaid',
  'bridesmaid_room',
  'room_happen',
  'happen_told',
  'told_open',
  'open_bottl',
  'bottl_pinot',
  'pinot_noir',
  'noir_favorit',
  'favorit_celebr',
  'celebr_pour',
  'pour_glass',
  'glass_began',
  'began_walk',
  'walk_around',
  'around_check',
  'check_room',
  'room_one',
  'one_bridesmaid',
  'bridesmaid_anna',
  'anna_want',
  'want_get',
  'get_closer',
  'closer_look',
  'look_dress',
  'dress_got',
  'got_realli',
  'realli_close',
  'close_start',
  'start_touch',
  'touch_lace',
  'lace_somehow',
  'somehow_hand',
  'hand_hold',
  'hold_wine',
  'wine_glass',
  'glass_slip',
  'slip_wine',
  'wine_spill',
  'spill_bottom',
  'bottom_dress',
  'dress_came',
  'came_upstair',
  'upstair_told',
  'told_happen',
  'happen_start',
  'start_sob',
  'sob_maid',
  'maid_honor',
  'honor_call',
  'call_sever',
  'sever_profession',
  'profession_cleaner',
  'cleaner_said',
  'said_way',
  'way_could',
  'could_get',
  'get_dress',
  'dress_wed',
  'wed_told',
  'told_us',
  'us_way',
  'way_save',
  'save_dress',
  'dress_could',
  'could_get',
  'get_moh',
  'moh_start',
  'start_call',
  'call_becam',
  'becam_extrem',
  'extrem_angri',
  'angri_ask',
  'ask_anna',
  'anna_hell',
  'hell_hold',
  'hold_red',
  'red_wine',
  'wine_close',
  'close_dress',
  'dress_knew',
  'knew_care',
  'care_dismiss',
  'dismiss_said',
  'said_big',
  'big_deal',
  'deal_plan',
  'plan_wear',
  'wear_dress',
  'dress_could',
  'could_gotten',
  'gotten_damag',
  'damag_way',
  'way_believ',
  'believ_said',
  'said_call',
  'call_thoughtless',
  'thoughtless_careless',
  'careless_stupid',
  'stupid_told',
  'told_longer',
  'longer_part',
  'part_wed',
  'wed_want',
  'want_leav',
  'leav_left',
  'left_neither',
  'neither_us',
  'us_reach',
  'reach_sinc',
  'sinc_got',
  'got_marri',
  'marri_dress',
  'dress_plan',
  'plan_wear',
  'wear_recept',
  'recept_heartbroken',
  'heartbroken_wear',
  'wear_mom',
  'mom_dress',
  'dress_wed',
  'wed_bridesmaid',
  'bridesmaid_joke',
  'joke_bridezilla',
  'bridezilla_kick',
  'kick_anna',
  'anna_made',
  'made_honest',
  'honest_mistak',
  'mistak_absolut',
  'absolut_think',
  'think_im',
  'im_ah',
  'ah_bridezilla',
  'bridezilla_anna',
  'anna_reaction',
  'reaction_horribl',
  'horribl_insincer',
  'insincer_want',
  'want_get',
  'get_stori',
  'stori_chest',
  'chest_ask',
  'ask_peopl',
  'peopl_might',
  'might_imparti',
  'imparti_aita',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_dress',
  'ago_dress_long',
  'dress_long_laci',
  'long_laci_gown',
  'laci_gown_mom',
  'gown_mom_wore',
  'mom_wore_wed',
  'wore_wed_mom',
  'wed_mom_pass',
  'mom_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_dress',
  'ago_dress_import',
  'dress_import_big',
  'import_big_plan',
  'big_plan_keep',
  'plan_keep_safe',
  'keep_safe_damag',
  'safe_damag_would',
  'damag_would_wear',
  'would_wear_dress',
  'wear_dress_wed',
  'dress_wed_would',
  'wed_would_switch',
  'would_switch_casual',
  'switch_casual_dress',
  'casual_dress_recept',
  'dress_recept_wear',
  'recept_wear_dress',
  'wear_dress_eat',
  'dress_eat_drink',
  'eat_drink_anyth',
  'drink_anyth_except',
  'anyth_except_water',
  'except_water_would',
  'water_would_stay',
  'would_stay_insid',
  'stay_insid_time',
  'insid_time_promis',
  'time_promis_im',
  'promis_im_usual',
  'im_usual_crazi',
  'usual_crazi_cleanli',
  'crazi_cleanli_mom',
  'cleanli_mom_dress',
  'mom_dress_thought',
  'dress_thought_damag',
  'thought_damag_broke',
  'damag_broke_heart',
  'broke_heart_also',
  'heart_also_knew',
  'also_knew_want',
  'knew_want_wear',
  'want_wear_got',
  'wear_got_marri',
  'got_marri_piec',
  'marri_piec_ador',
  'piec_ador_dress',
  'ador_dress_alway',
  'dress_alway_dream',
  'alway_dream_would',
  'dream_would_wear',
  'would_wear_bridesmaid',
  'wear_bridesmaid_knew',
  'bridesmaid_knew_well',
  'knew_well_particular',
  'well_particular_dress',
  'particular_dress_room',
  'dress_room_venu',
  'room_venu_get',
  'venu_get_readi',
  'get_readi_dress',
  'readi_dress_hang',
  'dress_hang_safe',
  'hang_safe_place',
  'safe_place_room',
  'place_room_day',
  'room_day_wed',
  'day_wed_went',
  'wed_went_check',
  'went_check_someth',
  'check_someth_wed',
  'someth_wed_leav',
  'wed_leav_bridesmaid',
  'leav_bridesmaid_room',
  'bridesmaid_room_happen',
  'room_happen_told',
  'happen_told_open',
  'told_open_bottl',
  'open_bottl_pinot',
  'bottl_pinot_noir',
  'pinot_noir_favorit',
  'noir_favorit_celebr',
  'favorit_celebr_pour',
  'celebr_pour_glass',
  'pour_glass_began',
  'glass_began_walk',
  'began_walk_around',
  'walk_around_check',
  'around_check_room',
  'check_room_one',
  'room_one_bridesmaid',
  'one_bridesmaid_anna',
  'bridesmaid_anna_want',
  'anna_want_get',
  'want_get_closer',
  'get_closer_look',
  'closer_look_dress',
  'look_dress_got',
  'dress_got_realli',
  'got_realli_close',
  'realli_close_start',
  'close_start_touch',
  'start_touch_lace',
  'touch_lace_somehow',
  'lace_somehow_hand',
  'somehow_hand_hold',
  'hand_hold_wine',
  'hold_wine_glass',
  'wine_glass_slip',
  'glass_slip_wine',
  'slip_wine_spill',
  'wine_spill_bottom',
  'spill_bottom_dress',
  'bottom_dress_came',
  'dress_came_upstair',
  'came_upstair_told',
  'upstair_told_happen',
  'told_happen_start',
  'happen_start_sob',
  'start_sob_maid',
  'sob_maid_honor',
  'maid_honor_call',
  'honor_call_sever',
  'call_sever_profession',
  'sever_profession_cleaner',
  'profession_cleaner_said',
  'cleaner_said_way',
  'said_way_could',
  'way_could_get',
  'could_get_dress',
  'get_dress_wed',
  'dress_wed_told',
  'wed_told_us',
  'told_us_way',
  'us_way_save',
  'way_save_dress',
  'save_dress_could',
  'dress_could_get',
  'could_get_moh',
  'get_moh_start',
  'moh_start_call',
  'start_call_becam',
  'call_becam_extrem',
  'becam_extrem_angri',
  'extrem_angri_ask',
  'angri_ask_anna',
  'ask_anna_hell',
  'anna_hell_hold',
  'hell_hold_red',
  'hold_red_wine',
  'red_wine_close',
  'wine_close_dress',
  'close_dress_knew',
  'dress_knew_care',
  'knew_care_dismiss',
  'care_dismiss_said',
  'dismiss_said_big',
  'said_big_deal',
  'big_deal_plan',
  'deal_plan_wear',
  'plan_wear_dress',
  'wear_dress_could',
  'dress_could_gotten',
  'could_gotten_damag',
  'gotten_damag_way',
  'damag_way_believ',
  'way_believ_said',
  'believ_said_call',
  'said_call_thoughtless',
  'call_thoughtless_careless',
  'thoughtless_careless_stupid',
  'careless_stupid_told',
  'stupid_told_longer',
  'told_longer_part',
  'longer_part_wed',
  'part_wed_want',
  'wed_want_leav',
  'want_leav_left',
  'leav_left_neither',
  'left_neither_us',
  'neither_us_reach',
  'us_reach_sinc',
  'reach_sinc_got',
  'sinc_got_marri',
  'got_marri_dress',
  'marri_dress_plan',
  'dress_plan_wear',
  'plan_wear_recept',
  'wear_recept_heartbroken',
  'recept_heartbroken_wear',
  'heartbroken_wear_mom',
  'wear_mom_dress',
  'mom_dress_wed',
  'dress_wed_bridesmaid',
  'wed_bridesmaid_joke',
  'bridesmaid_joke_bridezilla',
  'joke_bridezilla_kick',
  'bridezilla_kick_anna',
  'kick_anna_made',
  'anna_made_honest',
  'made_honest_mistak',
  'honest_mistak_absolut',
  'mistak_absolut_think',
  'absolut_think_im',
  'think_im_ah',
  'im_ah_bridezilla',
  'ah_bridezilla_anna',
  'bridezilla_anna_reaction',
  'anna_reaction_horribl',
  'reaction_horribl_insincer',
  'horribl_insincer_want',
  'insincer_want_get',
  'want_get_stori',
  'get_stori_chest',
  'stori_chest_ask',
  'chest_ask_peopl',
  'ask_peopl_might',
  'peopl_might_imparti',
  'might_imparti_aita'],
 ['husband',
  'famili',
  'like',
  'drink',
  'everi',
  'holiday',
  'includ',
  'multipl',
  'bottl',
  'winecocktail',
  'hate',
  'drink',
  'never',
  'drank',
  'father',
  'alcohol',
  'think',
  'childish',
  'cant',
  'fun',
  'without',
  'drink',
  'year',
  'im',
  'host',
  'christma',
  'chang',
  'decid',
  'sinc',
  'hous',
  'alcohol',
  'allow',
  'get',
  'older',
  'time',
  'grow',
  'husband',
  'sister',
  'call',
  'ask',
  'could',
  'bring',
  'saw',
  'recip',
  'christma',
  'martini',
  'want',
  'bring',
  'told',
  'alcohol',
  'rule',
  'say',
  'much',
  'must',
  'told',
  'rest',
  'famili',
  'start',
  'text',
  'ask',
  'seriou',
  'say',
  'lame',
  'im',
  'budg',
  'turn',
  'husband',
  'sister',
  'host',
  'altern',
  'gather',
  'almost',
  'everyon',
  'choos',
  'go',
  'instead',
  'disrespect',
  'would',
  'spend',
  'one',
  'day',
  'sober',
  'husband',
  'told',
  'talk',
  'sister',
  'invit',
  'gather',
  'said',
  'go',
  'stop',
  'caus',
  'issu',
  'rude',
  'husband',
  'mad',
  'im',
  'make',
  'stay',
  'home',
  'spend',
  'christma',
  'turn',
  'host',
  'chose',
  'alcohol',
  'could',
  'dealt',
  'one',
  'year',
  'husband_famili',
  'famili_like',
  'like_drink',
  'drink_everi',
  'everi_holiday',
  'holiday_includ',
  'includ_multipl',
  'multipl_bottl',
  'bottl_winecocktail',
  'winecocktail_hate',
  'hate_drink',
  'drink_never',
  'never_drank',
  'drank_father',
  'father_alcohol',
  'alcohol_think',
  'think_childish',
  'childish_cant',
  'cant_fun',
  'fun_without',
  'without_drink',
  'drink_year',
  'year_im',
  'im_host',
  'host_christma',
  'christma_chang',
  'chang_decid',
  'decid_sinc',
  'sinc_hous',
  'hous_alcohol',
  'alcohol_allow',
  'allow_get',
  'get_older',
  'older_time',
  'time_grow',
  'grow_husband',
  'husband_sister',
  'sister_call',
  'call_ask',
  'ask_could',
  'could_bring',
  'bring_saw',
  'saw_recip',
  'recip_christma',
  'christma_martini',
  'martini_want',
  'want_bring',
  'bring_told',
  'told_alcohol',
  'alcohol_rule',
  'rule_say',
  'say_much',
  'much_must',
  'must_told',
  'told_rest',
  'rest_famili',
  'famili_start',
  'start_text',
  'text_ask',
  'ask_seriou',
  'seriou_say',
  'say_lame',
  'lame_im',
  'im_budg',
  'budg_turn',
  'turn_husband',
  'husband_sister',
  'sister_host',
  'host_altern',
  'altern_gather',
  'gather_almost',
  'almost_everyon',
  'everyon_choos',
  'choos_go',
  'go_instead',
  'instead_disrespect',
  'disrespect_would',
  'would_spend',
  'spend_one',
  'one_day',
  'day_sober',
  'sober_husband',
  'husband_told',
  'told_talk',
  'talk_sister',
  'sister_invit',
  'invit_gather',
  'gather_said',
  'said_go',
  'go_stop',
  'stop_caus',
  'caus_issu',
  'issu_rude',
  'rude_husband',
  'husband_mad',
  'mad_im',
  'im_make',
  'make_stay',
  'stay_home',
  'home_spend',
  'spend_christma',
  'christma_turn',
  'turn_host',
  'host_chose',
  'chose_alcohol',
  'alcohol_could',
  'could_dealt',
  'dealt_one',
  'one_year',
  'husband_famili_like',
  'famili_like_drink',
  'like_drink_everi',
  'drink_everi_holiday',
  'everi_holiday_includ',
  'holiday_includ_multipl',
  'includ_multipl_bottl',
  'multipl_bottl_winecocktail',
  'bottl_winecocktail_hate',
  'winecocktail_hate_drink',
  'hate_drink_never',
  'drink_never_drank',
  'never_drank_father',
  'drank_father_alcohol',
  'father_alcohol_think',
  'alcohol_think_childish',
  'think_childish_cant',
  'childish_cant_fun',
  'cant_fun_without',
  'fun_without_drink',
  'without_drink_year',
  'drink_year_im',
  'year_im_host',
  'im_host_christma',
  'host_christma_chang',
  'christma_chang_decid',
  'chang_decid_sinc',
  'decid_sinc_hous',
  'sinc_hous_alcohol',
  'hous_alcohol_allow',
  'alcohol_allow_get',
  'allow_get_older',
  'get_older_time',
  'older_time_grow',
  'time_grow_husband',
  'grow_husband_sister',
  'husband_sister_call',
  'sister_call_ask',
  'call_ask_could',
  'ask_could_bring',
  'could_bring_saw',
  'bring_saw_recip',
  'saw_recip_christma',
  'recip_christma_martini',
  'christma_martini_want',
  'martini_want_bring',
  'want_bring_told',
  'bring_told_alcohol',
  'told_alcohol_rule',
  'alcohol_rule_say',
  'rule_say_much',
  'say_much_must',
  'much_must_told',
  'must_told_rest',
  'told_rest_famili',
  'rest_famili_start',
  'famili_start_text',
  'start_text_ask',
  'text_ask_seriou',
  'ask_seriou_say',
  'seriou_say_lame',
  'say_lame_im',
  'lame_im_budg',
  'im_budg_turn',
  'budg_turn_husband',
  'turn_husband_sister',
  'husband_sister_host',
  'sister_host_altern',
  'host_altern_gather',
  'altern_gather_almost',
  'gather_almost_everyon',
  'almost_everyon_choos',
  'everyon_choos_go',
  'choos_go_instead',
  'go_instead_disrespect',
  'instead_disrespect_would',
  'disrespect_would_spend',
  'would_spend_one',
  'spend_one_day',
  'one_day_sober',
  'day_sober_husband',
  'sober_husband_told',
  'husband_told_talk',
  'told_talk_sister',
  'talk_sister_invit',
  'sister_invit_gather',
  'invit_gather_said',
  'gather_said_go',
  'said_go_stop',
  'go_stop_caus',
  'stop_caus_issu',
  'caus_issu_rude',
  'issu_rude_husband',
  'rude_husband_mad',
  'husband_mad_im',
  'mad_im_make',
  'im_make_stay',
  'make_stay_home',
  'stay_home_spend',
  'home_spend_christma',
  'spend_christma_turn',
  'christma_turn_host',
  'turn_host_chose',
  'host_chose_alcohol',
  'chose_alcohol_could',
  'alcohol_could_dealt',
  'could_dealt_one',
  'dealt_one_year'],
 ['daughter',
  'sensit',
  'stomach',
  'ever',
  'sinc',
  'kid',
  'certain',
  'food',
  'upset',
  'stomach',
  'point',
  'unabl',
  'stop',
  'throw',
  'weve',
  'seen',
  'countless',
  'doctor',
  'far',
  'nobodi',
  'abl',
  'give',
  'us',
  'clear',
  'answer',
  'advic',
  'keep',
  'get',
  'identifi',
  'trigger',
  'food',
  'cut',
  'diet',
  'pretti',
  'good',
  'idea',
  'food',
  'soda',
  'carbon',
  'drink',
  'chip',
  'cheeto',
  'similar',
  'process',
  'snack',
  'anyth',
  'oili',
  'fri',
  'sweet',
  'unfortun',
  'exacti',
  'kind',
  'stuff',
  'daughter',
  'love',
  'eat',
  'horribl',
  'feel',
  'still',
  'refus',
  'cut',
  'diet',
  'turn',
  'led',
  'spend',
  'lot',
  'time',
  'hospit',
  'past',
  'year',
  'littl',
  'easier',
  'keep',
  'food',
  'away',
  'simpli',
  'buy',
  'older',
  'cant',
  'alway',
  'check',
  'eat',
  'eat',
  'greasi',
  'pizza',
  'school',
  'cafeteria',
  'trade',
  'lunch',
  'classmat',
  'goe',
  'friend',
  'stop',
  'eat',
  'kfc',
  'alway',
  'end',
  'er',
  'cri',
  'shake',
  'cant',
  'stop',
  'throw',
  'case',
  'christma',
  'eve',
  'well',
  'whole',
  'famili',
  'gather',
  'place',
  'cours',
  'among',
  'mani',
  'dish',
  'christma',
  'tabl',
  'main',
  'trigger',
  'food',
  'like',
  'chip',
  'soda',
  'chocol',
  'sweet',
  'mind',
  'far',
  'food',
  'avail',
  'also',
  'varieti',
  'home-cook',
  'tradit',
  'dish',
  'tabl',
  'ingredi',
  'upset',
  'stomach',
  'like',
  'veget',
  'meat',
  'dairi',
  'etc',
  'delici',
  'well-season',
  '-',
  'daughter',
  'say',
  'realli',
  'like',
  'dish',
  'despit',
  'daughter',
  'chose',
  'eat',
  'noth',
  'trigger',
  'food',
  'remind',
  'theyd',
  'make',
  'feel',
  'aw',
  'said',
  'care',
  '*',
  'christma',
  'year',
  '*',
  '*',
  'want',
  'live',
  'littl',
  '*',
  'well',
  'end',
  'violent',
  'throw',
  'er',
  'hour',
  'later',
  'hospit',
  'day',
  'got',
  'hospit',
  'hour',
  'ago',
  'unlik',
  'previou',
  'time',
  'someth',
  'like',
  'happen',
  'time',
  'chose',
  'spend',
  'christma',
  'relax',
  'home',
  'rest',
  'famili',
  'hospit',
  'daughter',
  'side',
  'kept',
  'touch',
  'call',
  'text',
  'told',
  'need',
  'anyth',
  'id',
  'ask',
  'famili',
  'member',
  'bring',
  'made',
  'clear',
  'would',
  'visit',
  'stay',
  'well',
  'daughter',
  'take',
  'well',
  'cri',
  'everi',
  'time',
  'talk',
  'phone',
  'beg',
  'come',
  'told',
  'horribl',
  'abandon',
  'alon',
  'famili',
  'take',
  'side',
  'either',
  'past',
  'day',
  'got',
  'call',
  'everyth',
  'littl',
  'extrem',
  'downright',
  'cruel',
  'heartless',
  'aita',
  'reddit',
  'daughter_sensit',
  'sensit_stomach',
  'stomach_ever',
  'ever_sinc',
  'sinc_kid',
  'kid_certain',
  'certain_food',
  'food_upset',
  'upset_stomach',
  'stomach_point',
  'point_unabl',
  'unabl_stop',
  'stop_throw',
  'throw_weve',
  'weve_seen',
  'seen_countless',
  'countless_doctor',
  'doctor_far',
  'far_nobodi',
  'nobodi_abl',
  'abl_give',
  'give_us',
  'us_clear',
  'clear_answer',
  'answer_advic',
  'advic_keep',
  'keep_get',
  'get_identifi',
  'identifi_trigger',
  'trigger_food',
  'food_cut',
  'cut_diet',
  'diet_pretti',
  'pretti_good',
  'good_idea',
  'idea_food',
  'food_soda',
  'soda_carbon',
  'carbon_drink',
  'drink_chip',
  'chip_cheeto',
  'cheeto_similar',
  'similar_process',
  'process_snack',
  'snack_anyth',
  'anyth_oili',
  'oili_fri',
  'fri_sweet',
  'sweet_unfortun',
  'unfortun_exacti',
  'exacti_kind',
  'kind_stuff',
  'stuff_daughter',
  'daughter_love',
  'love_eat',
  'eat_horribl',
  'horribl_feel',
  'feel_still',
  'still_refus',
  'refus_cut',
  'cut_diet',
  'diet_turn',
  'turn_led',
  'led_spend',
  'spend_lot',
  'lot_time',
  'time_hospit',
  'hospit_past',
  'past_year',
  'year_littl',
  'littl_easier',
  'easier_keep',
  'keep_food',
  'food_away',
  'away_simpli',
  'simpli_buy',
  'buy_older',
  'older_cant',
  'cant_alway',
  'alway_check',
  'check_eat',
  'eat_eat',
  'eat_greasi',
  'greasi_pizza',
  'pizza_school',
  'school_cafeteria',
  'cafeteria_trade',
  'trade_lunch',
  'lunch_classmat',
  'classmat_goe',
  'goe_friend',
  'friend_stop',
  'stop_eat',
  'eat_kfc',
  'kfc_alway',
  'alway_end',
  'end_er',
  'er_cri',
  'cri_shake',
  'shake_cant',
  'cant_stop',
  'stop_throw',
  'throw_case',
  'case_christma',
  'christma_eve',
  'eve_well',
  'well_whole',
  'whole_famili',
  'famili_gather',
  'gather_place',
  'place_cours',
  'cours_among',
  'among_mani',
  'mani_dish',
  'dish_christma',
  'christma_tabl',
  'tabl_main',
  'main_trigger',
  'trigger_food',
  'food_like',
  'like_chip',
  'chip_soda',
  'soda_chocol',
  'chocol_sweet',
  'sweet_mind',
  'mind_far',
  'far_food',
  'food_avail',
  'avail_also',
  'also_varieti',
  'varieti_home-cook',
  'home-cook_tradit',
  'tradit_dish',
  'dish_tabl',
  'tabl_ingredi',
  'ingredi_upset',
  'upset_stomach',
  'stomach_like',
  'like_veget',
  'veget_meat',
  'meat_dairi',
  'dairi_etc',
  'etc_delici',
  'delici_well-season',
  'well-season_-',
  '-_daughter',
  'daughter_say',
  'say_realli',
  'realli_like',
  'like_dish',
  'dish_despit',
  'despit_daughter',
  'daughter_chose',
  'chose_eat',
  'eat_noth',
  'noth_trigger',
  'trigger_food',
  'food_remind',
  'remind_theyd',
  'theyd_make',
  'make_feel',
  'feel_aw',
  'aw_said',
  'said_care',
  'care_*',
  '*_christma',
  'christma_year',
  'year_*',
  '*_*',
  '*_want',
  'want_live',
  'live_littl',
  'littl_*',
  '*_well',
  'well_end',
  'end_violent',
  'violent_throw',
  'throw_er',
  'er_hour',
  'hour_later',
  'later_hospit',
  'hospit_day',
  'day_got',
  'got_hospit',
  'hospit_hour',
  'hour_ago',
  'ago_unlik',
  'unlik_previou',
  'previou_time',
  'time_someth',
  'someth_like',
  'like_happen',
  'happen_time',
  'time_chose',
  'chose_spend',
  'spend_christma',
  'christma_relax',
  'relax_home',
  'home_rest',
  'rest_famili',
  'famili_hospit',
  'hospit_daughter',
  'daughter_side',
  'side_kept',
  'kept_touch',
  'touch_call',
  'call_text',
  'text_told',
  'told_need',
  'need_anyth',
  'anyth_id',
  'id_ask',
  'ask_famili',
  'famili_member',
  'member_bring',
  'bring_made',
  'made_clear',
  'clear_would',
  'would_visit',
  'visit_stay',
  'stay_well',
  'well_daughter',
  'daughter_take',
  'take_well',
  'well_cri',
  'cri_everi',
  'everi_time',
  'time_talk',
  'talk_phone',
  'phone_beg',
  'beg_come',
  'come_told',
  'told_horribl',
  'horribl_abandon',
  'abandon_alon',
  'alon_famili',
  'famili_take',
  'take_side',
  'side_either',
  'either_past',
  'past_day',
  'day_got',
  'got_call',
  'call_everyth',
  'everyth_littl',
  'littl_extrem',
  'extrem_downright',
  'downright_cruel',
  'cruel_heartless',
  'heartless_aita',
  'aita_reddit',
  'daughter_sensit_stomach',
  'sensit_stomach_ever',
  'stomach_ever_sinc',
  'ever_sinc_kid',
  'sinc_kid_certain',
  'kid_certain_food',
  'certain_food_upset',
  'food_upset_stomach',
  'upset_stomach_point',
  'stomach_point_unabl',
  'point_unabl_stop',
  'unabl_stop_throw',
  'stop_throw_weve',
  'throw_weve_seen',
  'weve_seen_countless',
  'seen_countless_doctor',
  'countless_doctor_far',
  'doctor_far_nobodi',
  'far_nobodi_abl',
  'nobodi_abl_give',
  'abl_give_us',
  'give_us_clear',
  'us_clear_answer',
  'clear_answer_advic',
  'answer_advic_keep',
  'advic_keep_get',
  'keep_get_identifi',
  'get_identifi_trigger',
  'identifi_trigger_food',
  'trigger_food_cut',
  'food_cut_diet',
  'cut_diet_pretti',
  'diet_pretti_good',
  'pretti_good_idea',
  'good_idea_food',
  'idea_food_soda',
  'food_soda_carbon',
  'soda_carbon_drink',
  'carbon_drink_chip',
  'drink_chip_cheeto',
  'chip_cheeto_similar',
  'cheeto_similar_process',
  'similar_process_snack',
  'process_snack_anyth',
  'snack_anyth_oili',
  'anyth_oili_fri',
  'oili_fri_sweet',
  'fri_sweet_unfortun',
  'sweet_unfortun_exacti',
  'unfortun_exacti_kind',
  'exacti_kind_stuff',
  'kind_stuff_daughter',
  'stuff_daughter_love',
  'daughter_love_eat',
  'love_eat_horribl',
  'eat_horribl_feel',
  'horribl_feel_still',
  'feel_still_refus',
  'still_refus_cut',
  'refus_cut_diet',
  'cut_diet_turn',
  'diet_turn_led',
  'turn_led_spend',
  'led_spend_lot',
  'spend_lot_time',
  'lot_time_hospit',
  'time_hospit_past',
  'hospit_past_year',
  'past_year_littl',
  'year_littl_easier',
  'littl_easier_keep',
  'easier_keep_food',
  'keep_food_away',
  'food_away_simpli',
  'away_simpli_buy',
  'simpli_buy_older',
  'buy_older_cant',
  'older_cant_alway',
  'cant_alway_check',
  'alway_check_eat',
  'check_eat_eat',
  'eat_eat_greasi',
  'eat_greasi_pizza',
  'greasi_pizza_school',
  'pizza_school_cafeteria',
  'school_cafeteria_trade',
  'cafeteria_trade_lunch',
  'trade_lunch_classmat',
  'lunch_classmat_goe',
  'classmat_goe_friend',
  'goe_friend_stop',
  'friend_stop_eat',
  'stop_eat_kfc',
  'eat_kfc_alway',
  'kfc_alway_end',
  'alway_end_er',
  'end_er_cri',
  'er_cri_shake',
  'cri_shake_cant',
  'shake_cant_stop',
  'cant_stop_throw',
  'stop_throw_case',
  'throw_case_christma',
  'case_christma_eve',
  'christma_eve_well',
  'eve_well_whole',
  'well_whole_famili',
  'whole_famili_gather',
  'famili_gather_place',
  'gather_place_cours',
  'place_cours_among',
  'cours_among_mani',
  'among_mani_dish',
  'mani_dish_christma',
  'dish_christma_tabl',
  'christma_tabl_main',
  'tabl_main_trigger',
  'main_trigger_food',
  'trigger_food_like',
  'food_like_chip',
  'like_chip_soda',
  'chip_soda_chocol',
  'soda_chocol_sweet',
  'chocol_sweet_mind',
  'sweet_mind_far',
  'mind_far_food',
  'far_food_avail',
  'food_avail_also',
  'avail_also_varieti',
  'also_varieti_home-cook',
  'varieti_home-cook_tradit',
  'home-cook_tradit_dish',
  'tradit_dish_tabl',
  'dish_tabl_ingredi',
  'tabl_ingredi_upset',
  'ingredi_upset_stomach',
  'upset_stomach_like',
  'stomach_like_veget',
  'like_veget_meat',
  'veget_meat_dairi',
  'meat_dairi_etc',
  'dairi_etc_delici',
  'etc_delici_well-season',
  'delici_well-season_-',
  'well-season_-_daughter',
  '-_daughter_say',
  'daughter_say_realli',
  'say_realli_like',
  'realli_like_dish',
  'like_dish_despit',
  'dish_despit_daughter',
  'despit_daughter_chose',
  'daughter_chose_eat',
  'chose_eat_noth',
  'eat_noth_trigger',
  'noth_trigger_food',
  'trigger_food_remind',
  'food_remind_theyd',
  'remind_theyd_make',
  'theyd_make_feel',
  'make_feel_aw',
  'feel_aw_said',
  'aw_said_care',
  'said_care_*',
  'care_*_christma',
  '*_christma_year',
  'christma_year_*',
  'year_*_*',
  '*_*_want',
  '*_want_live',
  'want_live_littl',
  'live_littl_*',
  'littl_*_well',
  '*_well_end',
  'well_end_violent',
  'end_violent_throw',
  'violent_throw_er',
  'throw_er_hour',
  'er_hour_later',
  'hour_later_hospit',
  'later_hospit_day',
  'hospit_day_got',
  'day_got_hospit',
  'got_hospit_hour',
  'hospit_hour_ago',
  'hour_ago_unlik',
  'ago_unlik_previou',
  'unlik_previou_time',
  'previou_time_someth',
  'time_someth_like',
  'someth_like_happen',
  'like_happen_time',
  'happen_time_chose',
  'time_chose_spend',
  'chose_spend_christma',
  'spend_christma_relax',
  'christma_relax_home',
  'relax_home_rest',
  'home_rest_famili',
  'rest_famili_hospit',
  'famili_hospit_daughter',
  'hospit_daughter_side',
  'daughter_side_kept',
  'side_kept_touch',
  'kept_touch_call',
  'touch_call_text',
  'call_text_told',
  'text_told_need',
  'told_need_anyth',
  'need_anyth_id',
  'anyth_id_ask',
  'id_ask_famili',
  'ask_famili_member',
  'famili_member_bring',
  'member_bring_made',
  'bring_made_clear',
  'made_clear_would',
  'clear_would_visit',
  'would_visit_stay',
  'visit_stay_well',
  'stay_well_daughter',
  'well_daughter_take',
  'daughter_take_well',
  'take_well_cri',
  'well_cri_everi',
  'cri_everi_time',
  'everi_time_talk',
  'time_talk_phone',
  'talk_phone_beg',
  'phone_beg_come',
  'beg_come_told',
  'come_told_horribl',
  'told_horribl_abandon',
  'horribl_abandon_alon',
  'abandon_alon_famili',
  'alon_famili_take',
  'famili_take_side',
  'take_side_either',
  'side_either_past',
  'either_past_day',
  'past_day_got',
  'day_got_call',
  'got_call_everyth',
  'call_everyth_littl',
  'everyth_littl_extrem',
  'littl_extrem_downright',
  'extrem_downright_cruel',
  'downright_cruel_heartless',
  'cruel_heartless_aita',
  'heartless_aita_reddit'],
 ['husband',
  'togeth',
  'year',
  'two',
  'kid',
  'half',
  'brother',
  'year',
  'old',
  'past',
  'week',
  'husband',
  'emerg',
  'dad',
  'medic',
  'emerg',
  'want',
  'someon',
  'watch',
  'son',
  'ask',
  'older',
  'son',
  'refus',
  'go',
  'friend',
  'also',
  'ask',
  'daughter',
  'lock',
  'room',
  'studi',
  'restaur',
  'brother',
  'meet',
  'girlfriend',
  'first',
  'time',
  'husband',
  'end',
  'take',
  'son',
  'hospit',
  'mom',
  'watch',
  'came',
  'home',
  'lash',
  'everybodi',
  'call',
  'us',
  'selfish',
  'unfeel',
  'tri',
  'explain',
  'kid',
  'busi',
  'told',
  'get',
  'bull',
  'older',
  'son',
  'couldv',
  'skip',
  'hangout',
  'watch',
  'brother',
  'daughter',
  'couldv',
  'watch',
  'brother',
  'studi',
  'instead',
  'lock',
  'room',
  'scold',
  'well',
  'told',
  'leav',
  'lunch',
  'brother',
  'sinc',
  'visit',
  'town',
  'chanc',
  'meet',
  'girlfriend',
  'yell',
  'told',
  'us',
  'cancel',
  'famili',
  'holiday',
  'trip',
  'christma',
  'year',
  'two',
  'older',
  'kid',
  'upset',
  'said',
  'unfair',
  'call',
  'unreason',
  'cancel',
  'trip',
  'punish',
  'kid',
  'possibl',
  'like',
  'refus',
  'discuss',
  'later',
  'kid',
  'speak',
  'say',
  'good',
  'riddanc',
  '*',
  'edit',
  'husband',
  'suppos',
  'watch',
  'son',
  'time',
  'went',
  'see',
  'brother',
  'restaur',
  'kid',
  'use',
  'watch',
  'brother',
  'neither',
  'parent',
  'home',
  '*',
  '*',
  'updat',
  'husband',
  'told',
  'us',
  'hell',
  'spend',
  'christma',
  'famili',
  'say',
  'need',
  'around',
  'dad',
  'anyway',
  'kid',
  'said',
  'go',
  'dad',
  'sinc',
  'husband',
  'still',
  'talk',
  'neither',
  'kid',
  'happi',
  'thing',
  'turn',
  'feel',
  'like',
  'thing',
  'gotten',
  'hand',
  'problem',
  'got',
  'bigger',
  'choos',
  'basic',
  'abandon',
  'us',
  'christma',
  'also',
  'keep',
  'son',
  'away',
  'sibl',
  '*',
  'husband_togeth',
  'togeth_year',
  'year_two',
  'two_kid',
  'kid_half',
  'half_brother',
  'brother_year',
  'year_old',
  'old_past',
  'past_week',
  'week_husband',
  'husband_emerg',
  'emerg_dad',
  'dad_medic',
  'medic_emerg',
  'emerg_want',
  'want_someon',
  'someon_watch',
  'watch_son',
  'son_ask',
  'ask_older',
  'older_son',
  'son_refus',
  'refus_go',
  'go_friend',
  'friend_also',
  'also_ask',
  'ask_daughter',
  'daughter_lock',
  'lock_room',
  'room_studi',
  'studi_restaur',
  'restaur_brother',
  'brother_meet',
  'meet_girlfriend',
  'girlfriend_first',
  'first_time',
  'time_husband',
  'husband_end',
  'end_take',
  'take_son',
  'son_hospit',
  'hospit_mom',
  'mom_watch',
  'watch_came',
  'came_home',
  'home_lash',
  'lash_everybodi',
  'everybodi_call',
  'call_us',
  'us_selfish',
  'selfish_unfeel',
  'unfeel_tri',
  'tri_explain',
  'explain_kid',
  'kid_busi',
  'busi_told',
  'told_get',
  'get_bull',
  'bull_older',
  'older_son',
  'son_couldv',
  'couldv_skip',
  'skip_hangout',
  'hangout_watch',
  'watch_brother',
  'brother_daughter',
  'daughter_couldv',
  'couldv_watch',
  'watch_brother',
  'brother_studi',
  'studi_instead',
  'instead_lock',
  'lock_room',
  'room_scold',
  'scold_well',
  'well_told',
  'told_leav',
  'leav_lunch',
  'lunch_brother',
  'brother_sinc',
  'sinc_visit',
  'visit_town',
  'town_chanc',
  'chanc_meet',
  'meet_girlfriend',
  'girlfriend_yell',
  'yell_told',
  'told_us',
  'us_cancel',
  'cancel_famili',
  'famili_holiday',
  'holiday_trip',
  'trip_christma',
  'christma_year',
  'year_two',
  'two_older',
  'older_kid',
  'kid_upset',
  'upset_said',
  'said_unfair',
  'unfair_call',
  'call_unreason',
  'unreason_cancel',
  'cancel_trip',
  'trip_punish',
  'punish_kid',
  'kid_possibl',
  'possibl_like',
  'like_refus',
  'refus_discuss',
  'discuss_later',
  'later_kid',
  'kid_speak',
  'speak_say',
  'say_good',
  'good_riddanc',
  'riddanc_*',
  '*_edit',
  'edit_husband',
  'husband_suppos',
  'suppos_watch',
  'watch_son',
  'son_time',
  'time_went',
  'went_see',
  'see_brother',
  'brother_restaur',
  'restaur_kid',
  'kid_use',
  'use_watch',
  'watch_brother',
  'brother_neither',
  'neither_parent',
  'parent_home',
  'home_*',
  '*_*',
  '*_updat',
  'updat_husband',
  'husband_told',
  'told_us',
  'us_hell',
  'hell_spend',
  'spend_christma',
  'christma_famili',
  'famili_say',
  'say_need',
  'need_around',
  'around_dad',
  'dad_anyway',
  'anyway_kid',
  'kid_said',
  'said_go',
  'go_dad',
  'dad_sinc',
  'sinc_husband',
  'husband_still',
  'still_talk',
  'talk_neither',
  'neither_kid',
  'kid_happi',
  'happi_thing',
  'thing_turn',
  'turn_feel',
  'feel_like',
  'like_thing',
  'thing_gotten',
  'gotten_hand',
  'hand_problem',
  'problem_got',
  'got_bigger',
  'bigger_choos',
  'choos_basic',
  'basic_abandon',
  'abandon_us',
  'us_christma',
  'christma_also',
  'also_keep',
  'keep_son',
  'son_away',
  'away_sibl',
  'sibl_*',
  'husband_togeth_year',
  'togeth_year_two',
  'year_two_kid',
  'two_kid_half',
  'kid_half_brother',
  'half_brother_year',
  'brother_year_old',
  'year_old_past',
  'old_past_week',
  'past_week_husband',
  'week_husband_emerg',
  'husband_emerg_dad',
  'emerg_dad_medic',
  'dad_medic_emerg',
  'medic_emerg_want',
  'emerg_want_someon',
  'want_someon_watch',
  'someon_watch_son',
  'watch_son_ask',
  'son_ask_older',
  'ask_older_son',
  'older_son_refus',
  'son_refus_go',
  'refus_go_friend',
  'go_friend_also',
  'friend_also_ask',
  'also_ask_daughter',
  'ask_daughter_lock',
  'daughter_lock_room',
  'lock_room_studi',
  'room_studi_restaur',
  'studi_restaur_brother',
  'restaur_brother_meet',
  'brother_meet_girlfriend',
  'meet_girlfriend_first',
  'girlfriend_first_time',
  'first_time_husband',
  'time_husband_end',
  'husband_end_take',
  'end_take_son',
  'take_son_hospit',
  'son_hospit_mom',
  'hospit_mom_watch',
  'mom_watch_came',
  'watch_came_home',
  'came_home_lash',
  'home_lash_everybodi',
  'lash_everybodi_call',
  'everybodi_call_us',
  'call_us_selfish',
  'us_selfish_unfeel',
  'selfish_unfeel_tri',
  'unfeel_tri_explain',
  'tri_explain_kid',
  'explain_kid_busi',
  'kid_busi_told',
  'busi_told_get',
  'told_get_bull',
  'get_bull_older',
  'bull_older_son',
  'older_son_couldv',
  'son_couldv_skip',
  'couldv_skip_hangout',
  'skip_hangout_watch',
  'hangout_watch_brother',
  'watch_brother_daughter',
  'brother_daughter_couldv',
  'daughter_couldv_watch',
  'couldv_watch_brother',
  'watch_brother_studi',
  'brother_studi_instead',
  'studi_instead_lock',
  'instead_lock_room',
  'lock_room_scold',
  'room_scold_well',
  'scold_well_told',
  'well_told_leav',
  'told_leav_lunch',
  'leav_lunch_brother',
  'lunch_brother_sinc',
  'brother_sinc_visit',
  'sinc_visit_town',
  'visit_town_chanc',
  'town_chanc_meet',
  'chanc_meet_girlfriend',
  'meet_girlfriend_yell',
  'girlfriend_yell_told',
  'yell_told_us',
  'told_us_cancel',
  'us_cancel_famili',
  'cancel_famili_holiday',
  'famili_holiday_trip',
  'holiday_trip_christma',
  'trip_christma_year',
  'christma_year_two',
  'year_two_older',
  'two_older_kid',
  'older_kid_upset',
  'kid_upset_said',
  'upset_said_unfair',
  'said_unfair_call',
  'unfair_call_unreason',
  'call_unreason_cancel',
  'unreason_cancel_trip',
  'cancel_trip_punish',
  'trip_punish_kid',
  'punish_kid_possibl',
  'kid_possibl_like',
  'possibl_like_refus',
  'like_refus_discuss',
  'refus_discuss_later',
  'discuss_later_kid',
  'later_kid_speak',
  'kid_speak_say',
  'speak_say_good',
  'say_good_riddanc',
  'good_riddanc_*',
  'riddanc_*_edit',
  '*_edit_husband',
  'edit_husband_suppos',
  'husband_suppos_watch',
  'suppos_watch_son',
  'watch_son_time',
  'son_time_went',
  'time_went_see',
  'went_see_brother',
  'see_brother_restaur',
  'brother_restaur_kid',
  'restaur_kid_use',
  'kid_use_watch',
  'use_watch_brother',
  'watch_brother_neither',
  'brother_neither_parent',
  'neither_parent_home',
  'parent_home_*',
  'home_*_*',
  '*_*_updat',
  '*_updat_husband',
  'updat_husband_told',
  'husband_told_us',
  'told_us_hell',
  'us_hell_spend',
  'hell_spend_christma',
  'spend_christma_famili',
  'christma_famili_say',
  'famili_say_need',
  'say_need_around',
  'need_around_dad',
  'around_dad_anyway',
  'dad_anyway_kid',
  'anyway_kid_said',
  'kid_said_go',
  'said_go_dad',
  'go_dad_sinc',
  'dad_sinc_husband',
  'sinc_husband_still',
  'husband_still_talk',
  'still_talk_neither',
  'talk_neither_kid',
  'neither_kid_happi',
  'kid_happi_thing',
  'happi_thing_turn',
  'thing_turn_feel',
  'turn_feel_like',
  'feel_like_thing',
  'like_thing_gotten',
  'thing_gotten_hand',
  'gotten_hand_problem',
  'hand_problem_got',
  'problem_got_bigger',
  'got_bigger_choos',
  'bigger_choos_basic',
  'choos_basic_abandon',
  'basic_abandon_us',
  'abandon_us_christma',
  'us_christma_also',
  'christma_also_keep',
  'also_keep_son',
  'keep_son_away',
  'son_away_sibl',
  'away_sibl_*'],
 ['sister',
  'juli',
  'tri',
  'babi',
  'year',
  'miscarriag',
  'year',
  'ago',
  'outsid',
  'unabl',
  'get',
  'pregnant',
  'heart',
  'hurt',
  'howev',
  'one',
  'thing',
  'agre',
  'famili',
  'handl',
  'allow',
  'talk',
  'babi',
  'around',
  'juli',
  'kid',
  'younger',
  'cant',
  'come',
  'famili',
  'event',
  'shell',
  'attend',
  'attend',
  'babi',
  'shower',
  'baptism',
  'etc',
  'last',
  'one',
  'understand',
  'rest',
  'feel',
  'overkil',
  'got',
  'pregnant',
  'last',
  'year',
  'told',
  'juli',
  'first',
  'reiter',
  'boundari',
  'said',
  'understood',
  'first',
  'hurdl',
  'came',
  'babi',
  'shower',
  'mil',
  'throw',
  'expect',
  'juli',
  'come',
  'mom',
  'told',
  'one',
  'period',
  'respect',
  'said',
  'ridicul',
  'come',
  'matter',
  'peopl',
  'side',
  'famili',
  'came',
  'shower',
  'son',
  'born',
  'post',
  'birth',
  'announc',
  'facebook',
  'parent',
  'lectur',
  'said',
  'go',
  'hurt',
  'juli',
  'said',
  'could',
  'block',
  'mute',
  'said',
  'make',
  'effort',
  'juli',
  'echo',
  'care',
  'id',
  'stop',
  'end',
  'block',
  'save',
  'drama',
  'aunt',
  'th',
  'birthday',
  'parti',
  'next',
  'week',
  'husband',
  'plan',
  'go',
  'bring',
  'son',
  'juli',
  'call',
  'ask',
  'go',
  'ask',
  'get',
  'sitter',
  'son',
  'said',
  'want',
  'miss',
  'parti',
  'aunt',
  'one',
  'peopl',
  'agre',
  'juli',
  'boundari',
  'fair',
  'want',
  'son',
  'get',
  'see',
  'often',
  'juli',
  'got',
  'upset',
  'start',
  'cri',
  'say',
  'unfair',
  'final',
  'snap',
  'ask',
  'would',
  'happen',
  'got',
  'pregnant',
  'would',
  'expect',
  'shower',
  'love',
  'attent',
  'refus',
  'give',
  'peopl',
  'kid',
  'babi',
  'allow',
  'attend',
  'event',
  'said',
  'differ',
  'said',
  'im',
  'coddl',
  'anymor',
  'son',
  'exist',
  'famili',
  'come',
  'decid',
  'want',
  'parent',
  'yell',
  'mean',
  'juli',
  'offer',
  'pay',
  'sitter',
  'said',
  'even',
  'hous',
  'aita',
  'sister_juli',
  'juli_tri',
  'tri_babi',
  'babi_year',
  'year_miscarriag',
  'miscarriag_year',
  'year_ago',
  'ago_outsid',
  'outsid_unabl',
  'unabl_get',
  'get_pregnant',
  'pregnant_heart',
  'heart_hurt',
  'hurt_howev',
  'howev_one',
  'one_thing',
  'thing_agre',
  'agre_famili',
  'famili_handl',
  'handl_allow',
  'allow_talk',
  'talk_babi',
  'babi_around',
  'around_juli',
  'juli_kid',
  'kid_younger',
  'younger_cant',
  'cant_come',
  'come_famili',
  'famili_event',
  'event_shell',
  'shell_attend',
  'attend_attend',
  'attend_babi',
  'babi_shower',
  'shower_baptism',
  'baptism_etc',
  'etc_last',
  'last_one',
  'one_understand',
  'understand_rest',
  'rest_feel',
  'feel_overkil',
  'overkil_got',
  'got_pregnant',
  'pregnant_last',
  'last_year',
  'year_told',
  'told_juli',
  'juli_first',
  'first_reiter',
  'reiter_boundari',
  'boundari_said',
  'said_understood',
  'understood_first',
  'first_hurdl',
  'hurdl_came',
  'came_babi',
  'babi_shower',
  'shower_mil',
  'mil_throw',
  'throw_expect',
  'expect_juli',
  'juli_come',
  'come_mom',
  'mom_told',
  'told_one',
  'one_period',
  'period_respect',
  'respect_said',
  'said_ridicul',
  'ridicul_come',
  'come_matter',
  'matter_peopl',
  'peopl_side',
  'side_famili',
  'famili_came',
  'came_shower',
  'shower_son',
  'son_born',
  'born_post',
  'post_birth',
  'birth_announc',
  'announc_facebook',
  'facebook_parent',
  'parent_lectur',
  'lectur_said',
  'said_go',
  'go_hurt',
  'hurt_juli',
  'juli_said',
  'said_could',
  'could_block',
  'block_mute',
  'mute_said',
  'said_make',
  'make_effort',
  'effort_juli',
  'juli_echo',
  'echo_care',
  'care_id',
  'id_stop',
  'stop_end',
  'end_block',
  'block_save',
  'save_drama',
  'drama_aunt',
  'aunt_th',
  'th_birthday',
  'birthday_parti',
  'parti_next',
  'next_week',
  'week_husband',
  'husband_plan',
  'plan_go',
  'go_bring',
  'bring_son',
  'son_juli',
  'juli_call',
  'call_ask',
  'ask_go',
  'go_ask',
  'ask_get',
  'get_sitter',
  'sitter_son',
  'son_said',
  'said_want',
  'want_miss',
  'miss_parti',
  'parti_aunt',
  'aunt_one',
  'one_peopl',
  'peopl_agre',
  'agre_juli',
  'juli_boundari',
  'boundari_fair',
  'fair_want',
  'want_son',
  'son_get',
  'get_see',
  'see_often',
  'often_juli',
  'juli_got',
  'got_upset',
  'upset_start',
  'start_cri',
  'cri_say',
  'say_unfair',
  'unfair_final',
  'final_snap',
  'snap_ask',
  'ask_would',
  'would_happen',
  'happen_got',
  'got_pregnant',
  'pregnant_would',
  'would_expect',
  'expect_shower',
  'shower_love',
  'love_attent',
  'attent_refus',
  'refus_give',
  'give_peopl',
  'peopl_kid',
  'kid_babi',
  'babi_allow',
  'allow_attend',
  'attend_event',
  'event_said',
  'said_differ',
  'differ_said',
  'said_im',
  'im_coddl',
  'coddl_anymor',
  'anymor_son',
  'son_exist',
  'exist_famili',
  'famili_come',
  'come_decid',
  'decid_want',
  'want_parent',
  'parent_yell',
  'yell_mean',
  'mean_juli',
  'juli_offer',
  'offer_pay',
  'pay_sitter',
  'sitter_said',
  'said_even',
  'even_hous',
  'hous_aita',
  'sister_juli_tri',
  'juli_tri_babi',
  'tri_babi_year',
  'babi_year_miscarriag',
  'year_miscarriag_year',
  'miscarriag_year_ago',
  'year_ago_outsid',
  'ago_outsid_unabl',
  'outsid_unabl_get',
  'unabl_get_pregnant',
  'get_pregnant_heart',
  'pregnant_heart_hurt',
  'heart_hurt_howev',
  'hurt_howev_one',
  'howev_one_thing',
  'one_thing_agre',
  'thing_agre_famili',
  'agre_famili_handl',
  'famili_handl_allow',
  'handl_allow_talk',
  'allow_talk_babi',
  'talk_babi_around',
  'babi_around_juli',
  'around_juli_kid',
  'juli_kid_younger',
  'kid_younger_cant',
  'younger_cant_come',
  'cant_come_famili',
  'come_famili_event',
  'famili_event_shell',
  'event_shell_attend',
  'shell_attend_attend',
  'attend_attend_babi',
  'attend_babi_shower',
  'babi_shower_baptism',
  'shower_baptism_etc',
  'baptism_etc_last',
  'etc_last_one',
  'last_one_understand',
  'one_understand_rest',
  'understand_rest_feel',
  'rest_feel_overkil',
  'feel_overkil_got',
  'overkil_got_pregnant',
  'got_pregnant_last',
  'pregnant_last_year',
  'last_year_told',
  'year_told_juli',
  'told_juli_first',
  'juli_first_reiter',
  'first_reiter_boundari',
  'reiter_boundari_said',
  'boundari_said_understood',
  'said_understood_first',
  'understood_first_hurdl',
  'first_hurdl_came',
  'hurdl_came_babi',
  'came_babi_shower',
  'babi_shower_mil',
  'shower_mil_throw',
  'mil_throw_expect',
  'throw_expect_juli',
  'expect_juli_come',
  'juli_come_mom',
  'come_mom_told',
  'mom_told_one',
  'told_one_period',
  'one_period_respect',
  'period_respect_said',
  'respect_said_ridicul',
  'said_ridicul_come',
  'ridicul_come_matter',
  'come_matter_peopl',
  'matter_peopl_side',
  'peopl_side_famili',
  'side_famili_came',
  'famili_came_shower',
  'came_shower_son',
  'shower_son_born',
  'son_born_post',
  'born_post_birth',
  'post_birth_announc',
  'birth_announc_facebook',
  'announc_facebook_parent',
  'facebook_parent_lectur',
  'parent_lectur_said',
  'lectur_said_go',
  'said_go_hurt',
  'go_hurt_juli',
  'hurt_juli_said',
  'juli_said_could',
  'said_could_block',
  'could_block_mute',
  'block_mute_said',
  'mute_said_make',
  'said_make_effort',
  'make_effort_juli',
  'effort_juli_echo',
  'juli_echo_care',
  'echo_care_id',
  'care_id_stop',
  'id_stop_end',
  'stop_end_block',
  'end_block_save',
  'block_save_drama',
  'save_drama_aunt',
  'drama_aunt_th',
  'aunt_th_birthday',
  'th_birthday_parti',
  'birthday_parti_next',
  'parti_next_week',
  'next_week_husband',
  'week_husband_plan',
  'husband_plan_go',
  'plan_go_bring',
  'go_bring_son',
  'bring_son_juli',
  'son_juli_call',
  'juli_call_ask',
  'call_ask_go',
  'ask_go_ask',
  'go_ask_get',
  'ask_get_sitter',
  'get_sitter_son',
  'sitter_son_said',
  'son_said_want',
  'said_want_miss',
  'want_miss_parti',
  'miss_parti_aunt',
  'parti_aunt_one',
  'aunt_one_peopl',
  'one_peopl_agre',
  'peopl_agre_juli',
  'agre_juli_boundari',
  'juli_boundari_fair',
  'boundari_fair_want',
  'fair_want_son',
  'want_son_get',
  'son_get_see',
  'get_see_often',
  'see_often_juli',
  'often_juli_got',
  'juli_got_upset',
  'got_upset_start',
  'upset_start_cri',
  'start_cri_say',
  'cri_say_unfair',
  'say_unfair_final',
  'unfair_final_snap',
  'final_snap_ask',
  'snap_ask_would',
  'ask_would_happen',
  'would_happen_got',
  'happen_got_pregnant',
  'got_pregnant_would',
  'pregnant_would_expect',
  'would_expect_shower',
  'expect_shower_love',
  'shower_love_attent',
  'love_attent_refus',
  'attent_refus_give',
  'refus_give_peopl',
  'give_peopl_kid',
  'peopl_kid_babi',
  'kid_babi_allow',
  'babi_allow_attend',
  'allow_attend_event',
  'attend_event_said',
  'event_said_differ',
  'said_differ_said',
  'differ_said_im',
  'said_im_coddl',
  'im_coddl_anymor',
  'coddl_anymor_son',
  'anymor_son_exist',
  'son_exist_famili',
  'exist_famili_come',
  'famili_come_decid',
  'come_decid_want',
  'decid_want_parent',
  'want_parent_yell',
  'parent_yell_mean',
  'yell_mean_juli',
  'mean_juli_offer',
  'juli_offer_pay',
  'offer_pay_sitter',
  'pay_sitter_said',
  'sitter_said_even',
  'said_even_hous',
  'even_hous_aita'],
 ['daughter',
  'sadi',
  'ex-husband',
  'john',
  'got',
  'divorc',
  'year',
  'ago',
  'primari',
  'custodi',
  'see',
  'two',
  'weekend',
  'month',
  'last',
  'year',
  'got',
  'marri',
  'amanda',
  'sole',
  'custodi',
  'kid',
  '&',
  'previou',
  'marriag',
  'amanda',
  'sahm',
  'health',
  'reason',
  'want',
  'work',
  'john',
  'work',
  'make',
  'good',
  'money',
  'support',
  'enough',
  'live',
  'luxuri',
  'much',
  'higher-pay',
  'job',
  'sinc',
  'sadi',
  'make',
  'sure',
  'best',
  'possibl',
  'life',
  'goe',
  'privat',
  'school',
  'set',
  'colleg',
  'fund',
  'much',
  'better',
  'thing',
  'kid',
  'phone',
  'cloth',
  'etc',
  'still',
  'manag',
  'rais',
  'humbl',
  'take',
  'thing',
  'grant',
  'one',
  'hardest',
  'work',
  'peopl',
  'know',
  'alway',
  'make',
  'sure',
  'get',
  'good',
  'grade',
  'keep',
  'room',
  'tidi',
  'well',
  'last',
  'time',
  'came',
  'back',
  'weekend',
  'john',
  'notic',
  'cloth',
  'bring',
  'back',
  'duffel',
  'size',
  'much',
  'cheaper',
  'poorer',
  'qualiti',
  'usual',
  'buy',
  'ask',
  'told',
  'dad',
  'amanda',
  'take',
  'away',
  'nice',
  'cloth',
  'give',
  'kid',
  'sadi',
  'get',
  'cloth',
  'buy',
  'target',
  'ask',
  'want',
  'back',
  'said',
  'mind',
  'share',
  'sinc',
  'favourit',
  'cloth',
  'kept',
  'problem',
  'came',
  'went',
  'pick',
  'last',
  'weekendi',
  'busi',
  'meet',
  'drive',
  'amanda',
  'offer',
  'pick',
  'sadi',
  'school',
  'happen',
  'got',
  'sunday',
  'john',
  'amanda',
  'ask',
  'sit',
  'sadi',
  'came',
  'hug',
  'amanda',
  'sent',
  'room',
  'quit',
  'harshli',
  'say',
  'punish',
  'yet',
  'confus',
  'sadi',
  'rare',
  'misbehav',
  'sat',
  'kitchen',
  'said',
  'unfair',
  'sadi',
  'go',
  'privat',
  'school',
  'kid',
  'go',
  'public',
  'one',
  'theyd',
  'decid',
  'sadi',
  'would',
  'pull',
  'privat',
  'school',
  'put',
  'school',
  'girl',
  'also',
  'said',
  'keep',
  'sadi',
  'punish',
  'told',
  'blew',
  'told',
  'fair',
  'yell',
  'amanda',
  'kid',
  'even',
  'real',
  'famili',
  'steal',
  'told',
  'uncertain',
  'term',
  'fuck',
  'would',
  'pull',
  'child',
  'school',
  'like',
  'away',
  'friend',
  'cant',
  'afford',
  'told',
  'could',
  'easili',
  'make',
  'much',
  'money',
  'amanda',
  'start',
  'work',
  'field',
  'qualif',
  'job',
  'market',
  'good',
  'told',
  'money',
  'problem',
  'issu',
  'sadi',
  'item',
  'get',
  'stolen',
  'tri',
  'pull',
  'school',
  'ill',
  'take',
  'court',
  'theyv',
  'blow',
  'phone',
  'ever',
  'sinc',
  'call',
  'selfish',
  'ah',
  'tell',
  'stori',
  'friend',
  'told',
  'rub',
  'success',
  'face',
  'still',
  'feel',
  'like',
  'anyth',
  'wrong',
  'still',
  'aita',
  'edit',
  'got',
  'temporari',
  'guardianship',
  'wait',
  'court',
  'hear',
  'go',
  'tri',
  'get',
  'full',
  'custodi',
  'john',
  'get',
  'one',
  'day',
  'week',
  'visit',
  'supervis',
  'least',
  'first',
  'month',
  'contact',
  'amanda',
  'kidsthi',
  'way',
  'still',
  'see',
  'sadi',
  'much',
  'tri',
  'repair',
  'relationship',
  'go',
  'back',
  'contact',
  'us',
  'made',
  'email',
  'cced',
  'lawyer',
  'ive',
  'ask',
  'sadi',
  'thing',
  'back',
  'ive',
  'talk',
  'sadi',
  'weve',
  'decid',
  'go',
  'tri',
  'therapi',
  'littl',
  'help',
  'deal',
  'everyth',
  'happen',
  'updat',
  'weve',
  'hear',
  'custodi',
  'arrang',
  'modifi',
  'decis',
  'relat',
  'sadi',
  'made',
  'alon',
  'john',
  'supervis',
  'visit',
  'week',
  'sadi',
  'continu',
  'therapi',
  'deal',
  'issu',
  'amanda',
  'co',
  'caus',
  'tri',
  'push',
  'custodi',
  'split',
  'ground',
  'alien',
  'tri',
  'put',
  'sadi',
  'father',
  'made',
  'clear',
  'start',
  'want',
  'keep',
  'amanda',
  'children',
  'away',
  'want',
  'supervis',
  'feel',
  'safe',
  'leav',
  'alon',
  'yet',
  'open',
  'modif',
  'thank',
  'proof',
  'steal',
  'sadi',
  'therapist',
  'testimoni',
  'claim',
  'thrown',
  'pretti',
  'quickli',
  'amanda',
  'piss',
  'tri',
  'contact',
  'sadi',
  'made',
  'clear',
  'keep',
  'harrass',
  'daughter',
  'ill',
  'make',
  'known',
  'author',
  'sadi',
  'block',
  'everywher',
  'commun',
  'john',
  'us',
  'made',
  'text',
  'messag',
  'email',
  'id',
  'like',
  'thank',
  'support',
  'throughout',
  'realli',
  'mean',
  'lot',
  'us',
  'send',
  'load',
  'love',
  'daughter_sadi',
  'sadi_ex-husband',
  'ex-husband_john',
  'john_got',
  'got_divorc',
  'divorc_year',
  'year_ago',
  'ago_primari',
  'primari_custodi',
  'custodi_see',
  'see_two',
  'two_weekend',
  'weekend_month',
  'month_last',
  'last_year',
  'year_got',
  'got_marri',
  'marri_amanda',
  'amanda_sole',
  'sole_custodi',
  'custodi_kid',
  'kid_&',
  '&_previou',
  'previou_marriag',
  'marriag_amanda',
  'amanda_sahm',
  'sahm_health',
  'health_reason',
  'reason_want',
  'want_work',
  'work_john',
  'john_work',
  'work_make',
  'make_good',
  'good_money',
  'money_support',
  'support_enough',
  'enough_live',
  'live_luxuri',
  'luxuri_much',
  'much_higher-pay',
  'higher-pay_job',
  'job_sinc',
  'sinc_sadi',
  'sadi_make',
  'make_sure',
  'sure_best',
  'best_possibl',
  'possibl_life',
  'life_goe',
  'goe_privat',
  'privat_school',
  'school_set',
  'set_colleg',
  'colleg_fund',
  'fund_much',
  'much_better',
  'better_thing',
  'thing_kid',
  'kid_phone',
  'phone_cloth',
  'cloth_etc',
  'etc_still',
  'still_manag',
  'manag_rais',
  'rais_humbl',
  'humbl_take',
  'take_thing',
  'thing_grant',
  'grant_one',
  'one_hardest',
  'hardest_work',
  'work_peopl',
  'peopl_know',
  'know_alway',
  'alway_make',
  'make_sure',
  'sure_get',
  'get_good',
  'good_grade',
  'grade_keep',
  'keep_room',
  'room_tidi',
  'tidi_well',
  'well_last',
  'last_time',
  'time_came',
  'came_back',
  'back_weekend',
  'weekend_john',
  'john_notic',
  'notic_cloth',
  'cloth_bring',
  'bring_back',
  'back_duffel',
  'duffel_size',
  'size_much',
  'much_cheaper',
  'cheaper_poorer',
  'poorer_qualiti',
  'qualiti_usual',
  'usual_buy',
  'buy_ask',
  'ask_told',
  'told_dad',
  'dad_amanda',
  'amanda_take',
  'take_away',
  'away_nice',
  'nice_cloth',
  'cloth_give',
  'give_kid',
  'kid_sadi',
  'sadi_get',
  'get_cloth',
  'cloth_buy',
  'buy_target',
  'target_ask',
  'ask_want',
  'want_back',
  'back_said',
  'said_mind',
  'mind_share',
  'share_sinc',
  'sinc_favourit',
  'favourit_cloth',
  'cloth_kept',
  'kept_problem',
  'problem_came',
  'came_went',
  'went_pick',
  'pick_last',
  'last_weekendi',
  'weekendi_busi',
  'busi_meet',
  'meet_drive',
  'drive_amanda',
  'amanda_offer',
  'offer_pick',
  'pick_sadi',
  'sadi_school',
  'school_happen',
  'happen_got',
  'got_sunday',
  'sunday_john',
  'john_amanda',
  'amanda_ask',
  'ask_sit',
  'sit_sadi',
  'sadi_came',
  'came_hug',
  'hug_amanda',
  'amanda_sent',
  'sent_room',
  'room_quit',
  'quit_harshli',
  'harshli_say',
  'say_punish',
  'punish_yet',
  'yet_confus',
  'confus_sadi',
  'sadi_rare',
  'rare_misbehav',
  'misbehav_sat',
  'sat_kitchen',
  'kitchen_said',
  'said_unfair',
  'unfair_sadi',
  'sadi_go',
  'go_privat',
  'privat_school',
  'school_kid',
  'kid_go',
  'go_public',
  'public_one',
  'one_theyd',
  'theyd_decid',
  'decid_sadi',
  'sadi_would',
  'would_pull',
  'pull_privat',
  'privat_school',
  'school_put',
  'put_school',
  'school_girl',
  'girl_also',
  'also_said',
  'said_keep',
  'keep_sadi',
  'sadi_punish',
  'punish_told',
  'told_blew',
  'blew_told',
  'told_fair',
  'fair_yell',
  'yell_amanda',
  'amanda_kid',
  'kid_even',
  'even_real',
  'real_famili',
  'famili_steal',
  'steal_told',
  'told_uncertain',
  'uncertain_term',
  'term_fuck',
  'fuck_would',
  'would_pull',
  'pull_child',
  'child_school',
  'school_like',
  'like_away',
  'away_friend',
  'friend_cant',
  'cant_afford',
  'afford_told',
  'told_could',
  'could_easili',
  'easili_make',
  'make_much',
  'much_money',
  'money_amanda',
  'amanda_start',
  'start_work',
  'work_field',
  'field_qualif',
  'qualif_job',
  'job_market',
  'market_good',
  'good_told',
  'told_money',
  'money_problem',
  'problem_issu',
  'issu_sadi',
  'sadi_item',
  'item_get',
  'get_stolen',
  'stolen_tri',
  'tri_pull',
  'pull_school',
  'school_ill',
  'ill_take',
  'take_court',
  'court_theyv',
  'theyv_blow',
  'blow_phone',
  'phone_ever',
  'ever_sinc',
  'sinc_call',
  'call_selfish',
  'selfish_ah',
  'ah_tell',
  'tell_stori',
  'stori_friend',
  'friend_told',
  'told_rub',
  'rub_success',
  'success_face',
  'face_still',
  'still_feel',
  'feel_like',
  'like_anyth',
  'anyth_wrong',
  'wrong_still',
  'still_aita',
  'aita_edit',
  'edit_got',
  'got_temporari',
  'temporari_guardianship',
  'guardianship_wait',
  'wait_court',
  'court_hear',
  'hear_go',
  'go_tri',
  'tri_get',
  'get_full',
  'full_custodi',
  'custodi_john',
  'john_get',
  'get_one',
  'one_day',
  'day_week',
  'week_visit',
  'visit_supervis',
  'supervis_least',
  'least_first',
  'first_month',
  'month_contact',
  'contact_amanda',
  'amanda_kidsthi',
  'kidsthi_way',
  'way_still',
  'still_see',
  'see_sadi',
  'sadi_much',
  'much_tri',
  'tri_repair',
  'repair_relationship',
  'relationship_go',
  'go_back',
  'back_contact',
  'contact_us',
  'us_made',
  'made_email',
  'email_cced',
  'cced_lawyer',
  'lawyer_ive',
  'ive_ask',
  'ask_sadi',
  'sadi_thing',
  'thing_back',
  'back_ive',
  'ive_talk',
  'talk_sadi',
  'sadi_weve',
  'weve_decid',
  'decid_go',
  'go_tri',
  'tri_therapi',
  'therapi_littl',
  'littl_help',
  'help_deal',
  'deal_everyth',
  'everyth_happen',
  'happen_updat',
  'updat_weve',
  'weve_hear',
  'hear_custodi',
  'custodi_arrang',
  'arrang_modifi',
  'modifi_decis',
  'decis_relat',
  'relat_sadi',
  'sadi_made',
  'made_alon',
  'alon_john',
  'john_supervis',
  'supervis_visit',
  'visit_week',
  'week_sadi',
  'sadi_continu',
  'continu_therapi',
  'therapi_deal',
  'deal_issu',
  'issu_amanda',
  'amanda_co',
  'co_caus',
  'caus_tri',
  'tri_push',
  'push_custodi',
  'custodi_split',
  'split_ground',
  'ground_alien',
  'alien_tri',
  'tri_put',
  'put_sadi',
  'sadi_father',
  'father_made',
  'made_clear',
  'clear_start',
  'start_want',
  'want_keep',
  'keep_amanda',
  'amanda_children',
  'children_away',
  'away_want',
  'want_supervis',
  'supervis_feel',
  'feel_safe',
  'safe_leav',
  'leav_alon',
  'alon_yet',
  'yet_open',
  'open_modif',
  'modif_thank',
  'thank_proof',
  'proof_steal',
  'steal_sadi',
  'sadi_therapist',
  'therapist_testimoni',
  'testimoni_claim',
  'claim_thrown',
  'thrown_pretti',
  'pretti_quickli',
  'quickli_amanda',
  'amanda_piss',
  'piss_tri',
  'tri_contact',
  'contact_sadi',
  'sadi_made',
  'made_clear',
  'clear_keep',
  'keep_harrass',
  'harrass_daughter',
  'daughter_ill',
  'ill_make',
  'make_known',
  'known_author',
  'author_sadi',
  'sadi_block',
  'block_everywher',
  'everywher_commun',
  'commun_john',
  'john_us',
  'us_made',
  'made_text',
  'text_messag',
  'messag_email',
  'email_id',
  'id_like',
  'like_thank',
  'thank_support',
  'support_throughout',
  'throughout_realli',
  'realli_mean',
  'mean_lot',
  'lot_us',
  'us_send',
  'send_load',
  'load_love',
  'daughter_sadi_ex-husband',
  'sadi_ex-husband_john',
  'ex-husband_john_got',
  'john_got_divorc',
  'got_divorc_year',
  'divorc_year_ago',
  'year_ago_primari',
  'ago_primari_custodi',
  'primari_custodi_see',
  'custodi_see_two',
  'see_two_weekend',
  'two_weekend_month',
  'weekend_month_last',
  'month_last_year',
  'last_year_got',
  'year_got_marri',
  'got_marri_amanda',
  'marri_amanda_sole',
  'amanda_sole_custodi',
  'sole_custodi_kid',
  'custodi_kid_&',
  'kid_&_previou',
  '&_previou_marriag',
  'previou_marriag_amanda',
  'marriag_amanda_sahm',
  'amanda_sahm_health',
  'sahm_health_reason',
  'health_reason_want',
  'reason_want_work',
  'want_work_john',
  'work_john_work',
  'john_work_make',
  'work_make_good',
  'make_good_money',
  'good_money_support',
  'money_support_enough',
  'support_enough_live',
  'enough_live_luxuri',
  'live_luxuri_much',
  'luxuri_much_higher-pay',
  'much_higher-pay_job',
  'higher-pay_job_sinc',
  'job_sinc_sadi',
  'sinc_sadi_make',
  'sadi_make_sure',
  'make_sure_best',
  'sure_best_possibl',
  'best_possibl_life',
  'possibl_life_goe',
  'life_goe_privat',
  'goe_privat_school',
  'privat_school_set',
  'school_set_colleg',
  'set_colleg_fund',
  'colleg_fund_much',
  'fund_much_better',
  'much_better_thing',
  'better_thing_kid',
  'thing_kid_phone',
  'kid_phone_cloth',
  'phone_cloth_etc',
  'cloth_etc_still',
  'etc_still_manag',
  'still_manag_rais',
  'manag_rais_humbl',
  'rais_humbl_take',
  'humbl_take_thing',
  'take_thing_grant',
  'thing_grant_one',
  'grant_one_hardest',
  'one_hardest_work',
  'hardest_work_peopl',
  'work_peopl_know',
  'peopl_know_alway',
  'know_alway_make',
  'alway_make_sure',
  'make_sure_get',
  'sure_get_good',
  'get_good_grade',
  'good_grade_keep',
  'grade_keep_room',
  'keep_room_tidi',
  'room_tidi_well',
  'tidi_well_last',
  'well_last_time',
  'last_time_came',
  'time_came_back',
  'came_back_weekend',
  'back_weekend_john',
  'weekend_john_notic',
  'john_notic_cloth',
  'notic_cloth_bring',
  'cloth_bring_back',
  'bring_back_duffel',
  'back_duffel_size',
  'duffel_size_much',
  'size_much_cheaper',
  'much_cheaper_poorer',
  'cheaper_poorer_qualiti',
  'poorer_qualiti_usual',
  'qualiti_usual_buy',
  'usual_buy_ask',
  'buy_ask_told',
  'ask_told_dad',
  'told_dad_amanda',
  'dad_amanda_take',
  'amanda_take_away',
  'take_away_nice',
  'away_nice_cloth',
  'nice_cloth_give',
  'cloth_give_kid',
  'give_kid_sadi',
  'kid_sadi_get',
  'sadi_get_cloth',
  'get_cloth_buy',
  'cloth_buy_target',
  'buy_target_ask',
  'target_ask_want',
  'ask_want_back',
  'want_back_said',
  'back_said_mind',
  'said_mind_share',
  'mind_share_sinc',
  'share_sinc_favourit',
  'sinc_favourit_cloth',
  'favourit_cloth_kept',
  'cloth_kept_problem',
  'kept_problem_came',
  'problem_came_went',
  'came_went_pick',
  'went_pick_last',
  'pick_last_weekendi',
  'last_weekendi_busi',
  'weekendi_busi_meet',
  'busi_meet_drive',
  'meet_drive_amanda',
  'drive_amanda_offer',
  'amanda_offer_pick',
  'offer_pick_sadi',
  'pick_sadi_school',
  'sadi_school_happen',
  'school_happen_got',
  'happen_got_sunday',
  'got_sunday_john',
  'sunday_john_amanda',
  'john_amanda_ask',
  'amanda_ask_sit',
  'ask_sit_sadi',
  'sit_sadi_came',
  'sadi_came_hug',
  'came_hug_amanda',
  'hug_amanda_sent',
  'amanda_sent_room',
  'sent_room_quit',
  'room_quit_harshli',
  'quit_harshli_say',
  'harshli_say_punish',
  'say_punish_yet',
  'punish_yet_confus',
  'yet_confus_sadi',
  'confus_sadi_rare',
  ...],
 ['im',
  'go',
  'direct',
  'quick',
  'sister',
  'im',
  'close',
  'also',
  'niec',
  'leah',
  'leah',
  'ex',
  'wife',
  'decid',
  'split',
  'divorc',
  'due',
  'inferitil',
  'problem',
  'last',
  'year',
  'start',
  'colleg',
  'fund',
  'leah',
  'help',
  'go',
  'chosen',
  'colleg',
  'visit',
  'mother',
  'home',
  'sister',
  'leah',
  'live',
  'everi',
  'week',
  'spend',
  'weekend',
  'togeth',
  'past',
  'weekend',
  'asleep',
  'upstair',
  'mother',
  'sister',
  'leah',
  'kitchen',
  'came',
  'downstair',
  'grab',
  'glass',
  'water',
  'heard',
  'sister',
  'talk',
  'ex',
  'wife',
  'expect',
  'babi',
  'new',
  'husband',
  'struck',
  'nerv',
  'kind',
  'froze',
  'shock',
  'heard',
  'leah',
  'react',
  'news',
  'repeatedli',
  'say',
  'told',
  'told',
  'explain',
  'alway',
  'thought',
  'one',
  'problem',
  'abl',
  'babi',
  'ex',
  'afraid',
  'admit',
  'due',
  'fragil',
  'masculin',
  'could',
  'believ',
  'said',
  'made',
  'wors',
  'follow',
  'statement',
  'ex',
  'smart',
  'get',
  'divorc',
  'late',
  'went',
  'upstair',
  'room',
  'shut',
  'door',
  'stay',
  'hour',
  'mom',
  'sister',
  'saw',
  'leav',
  'insist',
  'know',
  'problem',
  'want',
  'argu',
  'told',
  'heard',
  'leah',
  'said',
  'leah',
  'stop',
  'eat',
  'got',
  'quiet',
  'sister',
  'tri',
  'play',
  'dumb',
  'told',
  'heard',
  'entir',
  'convers',
  'ex',
  'wife',
  'pregnanc',
  'news',
  'sister',
  'tri',
  'backpaddl',
  'say',
  'leah',
  'kid',
  'know',
  'much',
  'stuff',
  'spout',
  'nonesens',
  'told',
  'wan',
  'na',
  'talk',
  'refus',
  'let',
  'leav',
  'left',
  'eventu',
  'later',
  'sent',
  'sister',
  'text',
  'tell',
  'hurt',
  'devast',
  'leah',
  'said',
  'told',
  'longer',
  'respons',
  'fund',
  'educ',
  'sister',
  'kept',
  'tri',
  'call',
  'text',
  'say',
  'leah',
  'mean',
  'said',
  'offer',
  'make',
  'apolog',
  'feel',
  'comfort',
  'room',
  'someon',
  'blame',
  'someth',
  'control',
  'someth',
  'liter',
  'turn',
  'life',
  'upsid',
  'mother',
  'tri',
  'get',
  'come',
  'could',
  'talk',
  'say',
  'leah',
  'desev',
  'turn',
  'back',
  'like',
  'eta',
  'went',
  'unexpectedli',
  'read',
  'lot',
  'insight',
  'comment',
  'keep',
  'im',
  'sorri',
  'seen',
  'sister',
  'leah',
  'happen',
  'still',
  'tri',
  'contact',
  'mean',
  'still',
  'room',
  'discuss',
  'ive',
  'decid',
  'go',
  'see',
  'tomorrow',
  'sit',
  'togeth',
  'long',
  'convers',
  'admit',
  'im',
  'type',
  'person',
  'feel',
  'comfort',
  'talk',
  'bother',
  'especi',
  'come',
  'sensit',
  'topic',
  'like',
  'said',
  'famili',
  'niec',
  'futur',
  'admit',
  'mad',
  'told',
  'sister',
  'colleg',
  'fund',
  'cancel',
  'love',
  'leah',
  'much',
  'see',
  'daughter',
  'unfortun',
  'dad',
  'bil',
  'deceas',
  'understand',
  'lose',
  'parent',
  'young',
  'age',
  'relat',
  'kind',
  'hurt',
  'carri',
  'insid',
  'lost',
  'father',
  'accid',
  'think',
  'thatsit',
  'talk',
  'thing',
  'best',
  'option',
  'make',
  'decis',
  'hope',
  'get',
  'resolv',
  'soon',
  'im',
  'sorri',
  'long',
  'eta',
  'want',
  'let',
  'guy',
  'know',
  'might',
  'updat',
  'happen',
  'talk',
  'well',
  'see',
  'goe',
  'thank',
  'much',
  'bear',
  'also',
  'one',
  'thing',
  'clarifi',
  'ex',
  'wife',
  'fertil',
  'issu',
  'side',
  'sinc',
  'ex',
  'wife',
  'got',
  'pregnant',
  'soon',
  'new',
  'marriag',
  'famili',
  'thought',
  'problem',
  'origin',
  'im',
  'learn',
  'word',
  'get',
  'head',
  'easili',
  'im',
  'mad',
  'anyon',
  'im',
  'tri',
  'move',
  'life',
  'like',
  'anybodi',
  'els',
  'im_go',
  'go_direct',
  'direct_quick',
  'quick_sister',
  'sister_im',
  'im_close',
  'close_also',
  'also_niec',
  'niec_leah',
  'leah_leah',
  'leah_ex',
  'ex_wife',
  'wife_decid',
  'decid_split',
  'split_divorc',
  'divorc_due',
  'due_inferitil',
  'inferitil_problem',
  'problem_last',
  'last_year',
  'year_start',
  'start_colleg',
  'colleg_fund',
  'fund_leah',
  'leah_help',
  'help_go',
  'go_chosen',
  'chosen_colleg',
  'colleg_visit',
  'visit_mother',
  'mother_home',
  'home_sister',
  'sister_leah',
  'leah_live',
  'live_everi',
  'everi_week',
  'week_spend',
  'spend_weekend',
  'weekend_togeth',
  'togeth_past',
  'past_weekend',
  'weekend_asleep',
  'asleep_upstair',
  'upstair_mother',
  'mother_sister',
  'sister_leah',
  'leah_kitchen',
  'kitchen_came',
  'came_downstair',
  'downstair_grab',
  'grab_glass',
  'glass_water',
  'water_heard',
  'heard_sister',
  'sister_talk',
  'talk_ex',
  'ex_wife',
  'wife_expect',
  'expect_babi',
  'babi_new',
  'new_husband',
  'husband_struck',
  'struck_nerv',
  'nerv_kind',
  'kind_froze',
  'froze_shock',
  'shock_heard',
  'heard_leah',
  'leah_react',
  'react_news',
  'news_repeatedli',
  'repeatedli_say',
  'say_told',
  'told_told',
  'told_explain',
  'explain_alway',
  'alway_thought',
  'thought_one',
  'one_problem',
  'problem_abl',
  'abl_babi',
  'babi_ex',
  'ex_afraid',
  'afraid_admit',
  'admit_due',
  'due_fragil',
  'fragil_masculin',
  'masculin_could',
  'could_believ',
  'believ_said',
  'said_made',
  'made_wors',
  'wors_follow',
  'follow_statement',
  'statement_ex',
  'ex_smart',
  'smart_get',
  'get_divorc',
  'divorc_late',
  'late_went',
  'went_upstair',
  'upstair_room',
  'room_shut',
  'shut_door',
  'door_stay',
  'stay_hour',
  'hour_mom',
  'mom_sister',
  'sister_saw',
  'saw_leav',
  'leav_insist',
  'insist_know',
  'know_problem',
  'problem_want',
  'want_argu',
  'argu_told',
  'told_heard',
  'heard_leah',
  'leah_said',
  'said_leah',
  'leah_stop',
  'stop_eat',
  'eat_got',
  'got_quiet',
  'quiet_sister',
  'sister_tri',
  'tri_play',
  'play_dumb',
  'dumb_told',
  'told_heard',
  'heard_entir',
  'entir_convers',
  'convers_ex',
  'ex_wife',
  'wife_pregnanc',
  'pregnanc_news',
  'news_sister',
  'sister_tri',
  'tri_backpaddl',
  'backpaddl_say',
  'say_leah',
  'leah_kid',
  'kid_know',
  'know_much',
  'much_stuff',
  'stuff_spout',
  'spout_nonesens',
  'nonesens_told',
  'told_wan',
  'wan_na',
  'na_talk',
  'talk_refus',
  'refus_let',
  'let_leav',
  'leav_left',
  'left_eventu',
  'eventu_later',
  'later_sent',
  'sent_sister',
  'sister_text',
  'text_tell',
  'tell_hurt',
  'hurt_devast',
  'devast_leah',
  'leah_said',
  'said_told',
  'told_longer',
  'longer_respons',
  'respons_fund',
  'fund_educ',
  'educ_sister',
  'sister_kept',
  'kept_tri',
  'tri_call',
  'call_text',
  'text_say',
  'say_leah',
  'leah_mean',
  'mean_said',
  'said_offer',
  'offer_make',
  'make_apolog',
  'apolog_feel',
  'feel_comfort',
  'comfort_room',
  'room_someon',
  'someon_blame',
  'blame_someth',
  'someth_control',
  'control_someth',
  'someth_liter',
  'liter_turn',
  'turn_life',
  'life_upsid',
  'upsid_mother',
  'mother_tri',
  'tri_get',
  'get_come',
  'come_could',
  'could_talk',
  'talk_say',
  'say_leah',
  'leah_desev',
  'desev_turn',
  'turn_back',
  'back_like',
  'like_eta',
  'eta_went',
  'went_unexpectedli',
  'unexpectedli_read',
  'read_lot',
  'lot_insight',
  'insight_comment',
  'comment_keep',
  'keep_im',
  'im_sorri',
  'sorri_seen',
  'seen_sister',
  'sister_leah',
  'leah_happen',
  'happen_still',
  'still_tri',
  'tri_contact',
  'contact_mean',
  'mean_still',
  'still_room',
  'room_discuss',
  'discuss_ive',
  'ive_decid',
  'decid_go',
  'go_see',
  'see_tomorrow',
  'tomorrow_sit',
  'sit_togeth',
  'togeth_long',
  'long_convers',
  'convers_admit',
  'admit_im',
  'im_type',
  'type_person',
  'person_feel',
  'feel_comfort',
  'comfort_talk',
  'talk_bother',
  'bother_especi',
  'especi_come',
  'come_sensit',
  'sensit_topic',
  'topic_like',
  'like_said',
  'said_famili',
  'famili_niec',
  'niec_futur',
  'futur_admit',
  'admit_mad',
  'mad_told',
  'told_sister',
  'sister_colleg',
  'colleg_fund',
  'fund_cancel',
  'cancel_love',
  'love_leah',
  'leah_much',
  'much_see',
  'see_daughter',
  'daughter_unfortun',
  'unfortun_dad',
  'dad_bil',
  'bil_deceas',
  'deceas_understand',
  'understand_lose',
  'lose_parent',
  'parent_young',
  'young_age',
  'age_relat',
  'relat_kind',
  'kind_hurt',
  'hurt_carri',
  'carri_insid',
  'insid_lost',
  'lost_father',
  'father_accid',
  'accid_think',
  'think_thatsit',
  'thatsit_talk',
  'talk_thing',
  'thing_best',
  'best_option',
  'option_make',
  'make_decis',
  'decis_hope',
  'hope_get',
  'get_resolv',
  'resolv_soon',
  'soon_im',
  'im_sorri',
  'sorri_long',
  'long_eta',
  'eta_want',
  'want_let',
  'let_guy',
  'guy_know',
  'know_might',
  'might_updat',
  'updat_happen',
  'happen_talk',
  'talk_well',
  'well_see',
  'see_goe',
  'goe_thank',
  'thank_much',
  'much_bear',
  'bear_also',
  'also_one',
  'one_thing',
  'thing_clarifi',
  'clarifi_ex',
  'ex_wife',
  'wife_fertil',
  'fertil_issu',
  'issu_side',
  'side_sinc',
  'sinc_ex',
  'ex_wife',
  'wife_got',
  'got_pregnant',
  'pregnant_soon',
  'soon_new',
  'new_marriag',
  'marriag_famili',
  'famili_thought',
  'thought_problem',
  'problem_origin',
  'origin_im',
  'im_learn',
  'learn_word',
  'word_get',
  'get_head',
  'head_easili',
  'easili_im',
  'im_mad',
  'mad_anyon',
  'anyon_im',
  'im_tri',
  'tri_move',
  'move_life',
  'life_like',
  'like_anybodi',
  'anybodi_els',
  'im_go_direct',
  'go_direct_quick',
  'direct_quick_sister',
  'quick_sister_im',
  'sister_im_close',
  'im_close_also',
  'close_also_niec',
  'also_niec_leah',
  'niec_leah_leah',
  'leah_leah_ex',
  'leah_ex_wife',
  'ex_wife_decid',
  'wife_decid_split',
  'decid_split_divorc',
  'split_divorc_due',
  'divorc_due_inferitil',
  'due_inferitil_problem',
  'inferitil_problem_last',
  'problem_last_year',
  'last_year_start',
  'year_start_colleg',
  'start_colleg_fund',
  'colleg_fund_leah',
  'fund_leah_help',
  'leah_help_go',
  'help_go_chosen',
  'go_chosen_colleg',
  'chosen_colleg_visit',
  'colleg_visit_mother',
  'visit_mother_home',
  'mother_home_sister',
  'home_sister_leah',
  'sister_leah_live',
  'leah_live_everi',
  'live_everi_week',
  'everi_week_spend',
  'week_spend_weekend',
  'spend_weekend_togeth',
  'weekend_togeth_past',
  'togeth_past_weekend',
  'past_weekend_asleep',
  'weekend_asleep_upstair',
  'asleep_upstair_mother',
  'upstair_mother_sister',
  'mother_sister_leah',
  'sister_leah_kitchen',
  'leah_kitchen_came',
  'kitchen_came_downstair',
  'came_downstair_grab',
  'downstair_grab_glass',
  'grab_glass_water',
  'glass_water_heard',
  'water_heard_sister',
  'heard_sister_talk',
  'sister_talk_ex',
  'talk_ex_wife',
  'ex_wife_expect',
  'wife_expect_babi',
  'expect_babi_new',
  'babi_new_husband',
  'new_husband_struck',
  'husband_struck_nerv',
  'struck_nerv_kind',
  'nerv_kind_froze',
  'kind_froze_shock',
  'froze_shock_heard',
  'shock_heard_leah',
  'heard_leah_react',
  'leah_react_news',
  'react_news_repeatedli',
  'news_repeatedli_say',
  'repeatedli_say_told',
  'say_told_told',
  'told_told_explain',
  'told_explain_alway',
  'explain_alway_thought',
  'alway_thought_one',
  'thought_one_problem',
  'one_problem_abl',
  'problem_abl_babi',
  'abl_babi_ex',
  'babi_ex_afraid',
  'ex_afraid_admit',
  'afraid_admit_due',
  'admit_due_fragil',
  'due_fragil_masculin',
  'fragil_masculin_could',
  'masculin_could_believ',
  'could_believ_said',
  'believ_said_made',
  'said_made_wors',
  'made_wors_follow',
  'wors_follow_statement',
  'follow_statement_ex',
  'statement_ex_smart',
  'ex_smart_get',
  'smart_get_divorc',
  'get_divorc_late',
  'divorc_late_went',
  'late_went_upstair',
  'went_upstair_room',
  'upstair_room_shut',
  'room_shut_door',
  'shut_door_stay',
  'door_stay_hour',
  'stay_hour_mom',
  'hour_mom_sister',
  'mom_sister_saw',
  'sister_saw_leav',
  'saw_leav_insist',
  'leav_insist_know',
  'insist_know_problem',
  'know_problem_want',
  'problem_want_argu',
  'want_argu_told',
  'argu_told_heard',
  'told_heard_leah',
  'heard_leah_said',
  'leah_said_leah',
  'said_leah_stop',
  'leah_stop_eat',
  'stop_eat_got',
  'eat_got_quiet',
  'got_quiet_sister',
  'quiet_sister_tri',
  'sister_tri_play',
  'tri_play_dumb',
  'play_dumb_told',
  'dumb_told_heard',
  'told_heard_entir',
  'heard_entir_convers',
  'entir_convers_ex',
  'convers_ex_wife',
  'ex_wife_pregnanc',
  'wife_pregnanc_news',
  'pregnanc_news_sister',
  'news_sister_tri',
  'sister_tri_backpaddl',
  'tri_backpaddl_say',
  'backpaddl_say_leah',
  'say_leah_kid',
  'leah_kid_know',
  'kid_know_much',
  'know_much_stuff',
  'much_stuff_spout',
  'stuff_spout_nonesens',
  'spout_nonesens_told',
  'nonesens_told_wan',
  'told_wan_na',
  'wan_na_talk',
  'na_talk_refus',
  'talk_refus_let',
  'refus_let_leav',
  'let_leav_left',
  'leav_left_eventu',
  'left_eventu_later',
  'eventu_later_sent',
  'later_sent_sister',
  'sent_sister_text',
  'sister_text_tell',
  'text_tell_hurt',
  'tell_hurt_devast',
  'hurt_devast_leah',
  'devast_leah_said',
  'leah_said_told',
  'said_told_longer',
  'told_longer_respons',
  'longer_respons_fund',
  'respons_fund_educ',
  'fund_educ_sister',
  'educ_sister_kept',
  'sister_kept_tri',
  'kept_tri_call',
  'tri_call_text',
  'call_text_say',
  'text_say_leah',
  'say_leah_mean',
  'leah_mean_said',
  'mean_said_offer',
  'said_offer_make',
  'offer_make_apolog',
  'make_apolog_feel',
  'apolog_feel_comfort',
  'feel_comfort_room',
  'comfort_room_someon',
  'room_someon_blame',
  'someon_blame_someth',
  'blame_someth_control',
  'someth_control_someth',
  'control_someth_liter',
  'someth_liter_turn',
  'liter_turn_life',
  'turn_life_upsid',
  'life_upsid_mother',
  'upsid_mother_tri',
  'mother_tri_get',
  'tri_get_come',
  'get_come_could',
  'come_could_talk',
  'could_talk_say',
  'talk_say_leah',
  'say_leah_desev',
  'leah_desev_turn',
  'desev_turn_back',
  'turn_back_like',
  'back_like_eta',
  'like_eta_went',
  'eta_went_unexpectedli',
  'went_unexpectedli_read',
  'unexpectedli_read_lot',
  'read_lot_insight',
  'lot_insight_comment',
  'insight_comment_keep',
  'comment_keep_im',
  'keep_im_sorri',
  'im_sorri_seen',
  'sorri_seen_sister',
  'seen_sister_leah',
  'sister_leah_happen',
  'leah_happen_still',
  'happen_still_tri',
  'still_tri_contact',
  'tri_contact_mean',
  'contact_mean_still',
  'mean_still_room',
  'still_room_discuss',
  'room_discuss_ive',
  'discuss_ive_decid',
  'ive_decid_go',
  'decid_go_see',
  'go_see_tomorrow',
  'see_tomorrow_sit',
  'tomorrow_sit_togeth',
  'sit_togeth_long',
  'togeth_long_convers',
  'long_convers_admit',
  'convers_admit_im',
  'admit_im_type',
  'im_type_person',
  'type_person_feel',
  'person_feel_comfort',
  'feel_comfort_talk',
  'comfort_talk_bother',
  'talk_bother_especi',
  'bother_especi_come',
  'especi_come_sensit',
  'come_sensit_topic',
  'sensit_topic_like',
  'topic_like_said',
  'like_said_famili',
  'said_famili_niec',
  'famili_niec_futur',
  'niec_futur_admit',
  'futur_admit_mad',
  'admit_mad_told',
  'mad_told_sister',
  'told_sister_colleg',
  'sister_colleg_fund',
  'colleg_fund_cancel',
  'fund_cancel_love',
  'cancel_love_leah',
  'love_leah_much',
  'leah_much_see',
  'much_see_daughter',
  'see_daughter_unfortun',
  'daughter_unfortun_dad',
  'unfortun_dad_bil',
  'dad_bil_deceas',
  'bil_deceas_understand',
  'deceas_understand_lose',
  'understand_lose_parent',
  'lose_parent_young',
  'parent_young_age',
  'young_age_relat',
  'age_relat_kind',
  'relat_kind_hurt',
  'kind_hurt_carri',
  'hurt_carri_insid',
  'carri_insid_lost',
  'insid_lost_father',
  'lost_father_accid',
  'father_accid_think',
  'accid_think_thatsit',
  'think_thatsit_talk',
  'thatsit_talk_thing',
  'talk_thing_best',
  'thing_best_option',
  'best_option_make',
  'option_make_decis',
  'make_decis_hope',
  'decis_hope_get',
  'hope_get_resolv',
  'get_resolv_soon',
  'resolv_soon_im',
  'soon_im_sorri',
  'im_sorri_long',
  'sorri_long_eta',
  'long_eta_want',
  'eta_want_let',
  'want_let_guy',
  'let_guy_know',
  ...],
 ['bought',
  'hoarder',
  'hous',
  'back',
  'may',
  'big',
  'bedroom',
  'half',
  'bathroom',
  'hous',
  'bought',
  'contract',
  'state',
  'take',
  'ownership',
  'hous',
  'everyth',
  'ladi',
  'die',
  'heir',
  'could',
  'deal',
  'stench',
  'liter',
  'mountain',
  'junk',
  'wast',
  'could',
  'open',
  'door',
  'even',
  'room',
  'junk',
  'fill',
  'wall',
  'wall',
  'floor',
  'ceil',
  'well',
  'took',
  'last',
  'year',
  'finish',
  'clean',
  'fix',
  'updat',
  'clean',
  'made',
  'sure',
  'check',
  'everyth',
  'throw',
  'end',
  '$',
  'money',
  'nice',
  'jewelri',
  'antiqu',
  'furnitur',
  'final',
  'stun',
  'style',
  'lace',
  'cover',
  'wed',
  'dress',
  'woman',
  'took',
  'care',
  'dress',
  'anymor',
  'took',
  'minor',
  'work',
  'restor',
  'current',
  'partner',
  'decid',
  'would',
  'dress',
  'wear',
  'ever',
  'get',
  'marri',
  'clean',
  'reach',
  'heir',
  'pass',
  'pictur',
  'momento',
  'christma',
  'person',
  'ornament',
  'kid',
  'artwork',
  'one',
  'fb',
  'friend',
  'list',
  'repair',
  'dress',
  'put',
  'jewelri',
  'post',
  'pic',
  'fb',
  'well',
  'woman',
  'saw',
  'ask',
  'dress',
  'heirloom',
  'back',
  'refus',
  'give',
  'back',
  'legal',
  'cant',
  'anyth',
  'also',
  'meant',
  'much',
  'clean',
  'hous',
  'sell',
  'famili',
  'call',
  'social',
  'media',
  'aita',
  'bought_hoarder',
  'hoarder_hous',
  'hous_back',
  'back_may',
  'may_big',
  'big_bedroom',
  'bedroom_half',
  'half_bathroom',
  'bathroom_hous',
  'hous_bought',
  'bought_contract',
  'contract_state',
  'state_take',
  'take_ownership',
  'ownership_hous',
  'hous_everyth',
  'everyth_ladi',
  'ladi_die',
  'die_heir',
  'heir_could',
  'could_deal',
  'deal_stench',
  'stench_liter',
  'liter_mountain',
  'mountain_junk',
  'junk_wast',
  'wast_could',
  'could_open',
  'open_door',
  'door_even',
  'even_room',
  'room_junk',
  'junk_fill',
  'fill_wall',
  'wall_wall',
  'wall_floor',
  'floor_ceil',
  'ceil_well',
  'well_took',
  'took_last',
  'last_year',
  'year_finish',
  'finish_clean',
  'clean_fix',
  'fix_updat',
  'updat_clean',
  'clean_made',
  'made_sure',
  'sure_check',
  'check_everyth',
  'everyth_throw',
  'throw_end',
  'end_$',
  '$_money',
  'money_nice',
  'nice_jewelri',
  'jewelri_antiqu',
  'antiqu_furnitur',
  'furnitur_final',
  'final_stun',
  'stun_style',
  'style_lace',
  'lace_cover',
  'cover_wed',
  'wed_dress',
  'dress_woman',
  'woman_took',
  'took_care',
  'care_dress',
  'dress_anymor',
  'anymor_took',
  'took_minor',
  'minor_work',
  'work_restor',
  'restor_current',
  'current_partner',
  'partner_decid',
  'decid_would',
  'would_dress',
  'dress_wear',
  'wear_ever',
  'ever_get',
  'get_marri',
  'marri_clean',
  'clean_reach',
  'reach_heir',
  'heir_pass',
  'pass_pictur',
  'pictur_momento',
  'momento_christma',
  'christma_person',
  'person_ornament',
  'ornament_kid',
  'kid_artwork',
  'artwork_one',
  'one_fb',
  'fb_friend',
  'friend_list',
  'list_repair',
  'repair_dress',
  'dress_put',
  'put_jewelri',
  'jewelri_post',
  'post_pic',
  'pic_fb',
  'fb_well',
  'well_woman',
  'woman_saw',
  'saw_ask',
  'ask_dress',
  'dress_heirloom',
  'heirloom_back',
  'back_refus',
  'refus_give',
  'give_back',
  'back_legal',
  'legal_cant',
  'cant_anyth',
  'anyth_also',
  'also_meant',
  'meant_much',
  'much_clean',
  'clean_hous',
  'hous_sell',
  'sell_famili',
  'famili_call',
  'call_social',
  'social_media',
  'media_aita',
  'bought_hoarder_hous',
  'hoarder_hous_back',
  'hous_back_may',
  'back_may_big',
  'may_big_bedroom',
  'big_bedroom_half',
  'bedroom_half_bathroom',
  'half_bathroom_hous',
  'bathroom_hous_bought',
  'hous_bought_contract',
  'bought_contract_state',
  'contract_state_take',
  'state_take_ownership',
  'take_ownership_hous',
  'ownership_hous_everyth',
  'hous_everyth_ladi',
  'everyth_ladi_die',
  'ladi_die_heir',
  'die_heir_could',
  'heir_could_deal',
  'could_deal_stench',
  'deal_stench_liter',
  'stench_liter_mountain',
  'liter_mountain_junk',
  'mountain_junk_wast',
  'junk_wast_could',
  'wast_could_open',
  'could_open_door',
  'open_door_even',
  'door_even_room',
  'even_room_junk',
  'room_junk_fill',
  'junk_fill_wall',
  'fill_wall_wall',
  'wall_wall_floor',
  'wall_floor_ceil',
  'floor_ceil_well',
  'ceil_well_took',
  'well_took_last',
  'took_last_year',
  'last_year_finish',
  'year_finish_clean',
  'finish_clean_fix',
  'clean_fix_updat',
  'fix_updat_clean',
  'updat_clean_made',
  'clean_made_sure',
  'made_sure_check',
  'sure_check_everyth',
  'check_everyth_throw',
  'everyth_throw_end',
  'throw_end_$',
  'end_$_money',
  '$_money_nice',
  'money_nice_jewelri',
  'nice_jewelri_antiqu',
  'jewelri_antiqu_furnitur',
  'antiqu_furnitur_final',
  'furnitur_final_stun',
  'final_stun_style',
  'stun_style_lace',
  'style_lace_cover',
  'lace_cover_wed',
  'cover_wed_dress',
  'wed_dress_woman',
  'dress_woman_took',
  'woman_took_care',
  'took_care_dress',
  'care_dress_anymor',
  'dress_anymor_took',
  'anymor_took_minor',
  'took_minor_work',
  'minor_work_restor',
  'work_restor_current',
  'restor_current_partner',
  'current_partner_decid',
  'partner_decid_would',
  'decid_would_dress',
  'would_dress_wear',
  'dress_wear_ever',
  'wear_ever_get',
  'ever_get_marri',
  'get_marri_clean',
  'marri_clean_reach',
  'clean_reach_heir',
  'reach_heir_pass',
  'heir_pass_pictur',
  'pass_pictur_momento',
  'pictur_momento_christma',
  'momento_christma_person',
  'christma_person_ornament',
  'person_ornament_kid',
  'ornament_kid_artwork',
  'kid_artwork_one',
  'artwork_one_fb',
  'one_fb_friend',
  'fb_friend_list',
  'friend_list_repair',
  'list_repair_dress',
  'repair_dress_put',
  'dress_put_jewelri',
  'put_jewelri_post',
  'jewelri_post_pic',
  'post_pic_fb',
  'pic_fb_well',
  'fb_well_woman',
  'well_woman_saw',
  'woman_saw_ask',
  'saw_ask_dress',
  'ask_dress_heirloom',
  'dress_heirloom_back',
  'heirloom_back_refus',
  'back_refus_give',
  'refus_give_back',
  'give_back_legal',
  'back_legal_cant',
  'legal_cant_anyth',
  'cant_anyth_also',
  'anyth_also_meant',
  'also_meant_much',
  'meant_much_clean',
  'much_clean_hous',
  'clean_hous_sell',
  'hous_sell_famili',
  'sell_famili_call',
  'famili_call_social',
  'call_social_media',
  'social_media_aita'],
 ['accid',
  'babi',
  'lost',
  'left',
  'eye',
  'eye',
  'socket',
  'could',
  'put',
  'fake',
  'eye',
  'normal',
  'skin',
  'scar',
  'big',
  'pach',
  'face',
  'reconstruct',
  'face',
  'later',
  'surgeri',
  'way',
  'right',
  'side',
  'bottom',
  'half',
  'face',
  'complet',
  'normal',
  'big',
  'side',
  'bang',
  'hide',
  'left',
  'side',
  'face',
  'freak',
  'anyon',
  'get',
  'weird',
  'look',
  'ive',
  'go',
  'school',
  'sinc',
  'teacher',
  'kid',
  'know',
  'got',
  'new',
  'teacher',
  'week',
  'start',
  'ask',
  'us',
  'go',
  'around',
  'introduc',
  'ourself',
  'got',
  'rude',
  'ask',
  'parent',
  'know',
  'come',
  'school',
  'look',
  'like',
  'extrem',
  'disrespect',
  'fix',
  'bang',
  'want',
  'see',
  'face',
  'obey',
  'tuck',
  'bang',
  'behind',
  'ear',
  'show',
  'left',
  'side',
  'face',
  'gasp',
  'face',
  'turn',
  'red',
  'classmat',
  'laugh',
  'told',
  'let',
  'bang',
  'later',
  'day',
  'head',
  'teacher',
  'came',
  'scold',
  'told',
  'wrong',
  'shock',
  'new',
  'teacher',
  'told',
  'anyth',
  'wrong',
  'obey',
  'order',
  'fault',
  'end',
  'want',
  'look',
  'face',
  'aita',
  '--',
  '--',
  '-',
  'updat',
  'mom',
  'went',
  'talk',
  'head',
  'teacher',
  'turn',
  'new',
  'teacher',
  'made',
  'sound',
  'like',
  'play',
  'prank',
  'tri',
  'deliber',
  'shock',
  'make',
  'fun',
  'front',
  'class',
  'classmat',
  'call',
  'confirm',
  'part',
  'stori',
  'head',
  'teacher',
  'apolog',
  'call',
  'unfortun',
  'misunderstand',
  'told',
  'us',
  'clear',
  'new',
  'teacher',
  'worri',
  'believ',
  'misunderstand',
  'sound',
  'like',
  'new',
  'teacher',
  'deliber',
  'lie',
  'cant',
  'anyth',
  'accid_babi',
  'babi_lost',
  'lost_left',
  'left_eye',
  'eye_eye',
  'eye_socket',
  'socket_could',
  'could_put',
  'put_fake',
  'fake_eye',
  'eye_normal',
  'normal_skin',
  'skin_scar',
  'scar_big',
  'big_pach',
  'pach_face',
  'face_reconstruct',
  'reconstruct_face',
  'face_later',
  'later_surgeri',
  'surgeri_way',
  'way_right',
  'right_side',
  'side_bottom',
  'bottom_half',
  'half_face',
  'face_complet',
  'complet_normal',
  'normal_big',
  'big_side',
  'side_bang',
  'bang_hide',
  'hide_left',
  'left_side',
  'side_face',
  'face_freak',
  'freak_anyon',
  'anyon_get',
  'get_weird',
  'weird_look',
  'look_ive',
  'ive_go',
  'go_school',
  'school_sinc',
  'sinc_teacher',
  'teacher_kid',
  'kid_know',
  'know_got',
  'got_new',
  'new_teacher',
  'teacher_week',
  'week_start',
  'start_ask',
  'ask_us',
  'us_go',
  'go_around',
  'around_introduc',
  'introduc_ourself',
  'ourself_got',
  'got_rude',
  'rude_ask',
  'ask_parent',
  'parent_know',
  'know_come',
  'come_school',
  'school_look',
  'look_like',
  'like_extrem',
  'extrem_disrespect',
  'disrespect_fix',
  'fix_bang',
  'bang_want',
  'want_see',
  'see_face',
  'face_obey',
  'obey_tuck',
  'tuck_bang',
  'bang_behind',
  'behind_ear',
  'ear_show',
  'show_left',
  'left_side',
  'side_face',
  'face_gasp',
  'gasp_face',
  'face_turn',
  'turn_red',
  'red_classmat',
  'classmat_laugh',
  'laugh_told',
  'told_let',
  'let_bang',
  'bang_later',
  'later_day',
  'day_head',
  'head_teacher',
  'teacher_came',
  'came_scold',
  'scold_told',
  'told_wrong',
  'wrong_shock',
  'shock_new',
  'new_teacher',
  'teacher_told',
  'told_anyth',
  'anyth_wrong',
  'wrong_obey',
  'obey_order',
  'order_fault',
  'fault_end',
  'end_want',
  'want_look',
  'look_face',
  'face_aita',
  'aita_--',
  '--_--',
  '--_-',
  '-_updat',
  'updat_mom',
  'mom_went',
  'went_talk',
  'talk_head',
  'head_teacher',
  'teacher_turn',
  'turn_new',
  'new_teacher',
  'teacher_made',
  'made_sound',
  'sound_like',
  'like_play',
  'play_prank',
  'prank_tri',
  'tri_deliber',
  'deliber_shock',
  'shock_make',
  'make_fun',
  'fun_front',
  'front_class',
  'class_classmat',
  'classmat_call',
  'call_confirm',
  'confirm_part',
  'part_stori',
  'stori_head',
  'head_teacher',
  'teacher_apolog',
  'apolog_call',
  'call_unfortun',
  'unfortun_misunderstand',
  'misunderstand_told',
  'told_us',
  'us_clear',
  'clear_new',
  'new_teacher',
  'teacher_worri',
  'worri_believ',
  'believ_misunderstand',
  'misunderstand_sound',
  'sound_like',
  'like_new',
  'new_teacher',
  'teacher_deliber',
  'deliber_lie',
  'lie_cant',
  'cant_anyth',
  'accid_babi_lost',
  'babi_lost_left',
  'lost_left_eye',
  'left_eye_eye',
  'eye_eye_socket',
  'eye_socket_could',
  'socket_could_put',
  'could_put_fake',
  'put_fake_eye',
  'fake_eye_normal',
  'eye_normal_skin',
  'normal_skin_scar',
  'skin_scar_big',
  'scar_big_pach',
  'big_pach_face',
  'pach_face_reconstruct',
  'face_reconstruct_face',
  'reconstruct_face_later',
  'face_later_surgeri',
  'later_surgeri_way',
  'surgeri_way_right',
  'way_right_side',
  'right_side_bottom',
  'side_bottom_half',
  'bottom_half_face',
  'half_face_complet',
  'face_complet_normal',
  'complet_normal_big',
  'normal_big_side',
  'big_side_bang',
  'side_bang_hide',
  'bang_hide_left',
  'hide_left_side',
  'left_side_face',
  'side_face_freak',
  'face_freak_anyon',
  'freak_anyon_get',
  'anyon_get_weird',
  'get_weird_look',
  'weird_look_ive',
  'look_ive_go',
  'ive_go_school',
  'go_school_sinc',
  'school_sinc_teacher',
  'sinc_teacher_kid',
  'teacher_kid_know',
  'kid_know_got',
  'know_got_new',
  'got_new_teacher',
  'new_teacher_week',
  'teacher_week_start',
  'week_start_ask',
  'start_ask_us',
  'ask_us_go',
  'us_go_around',
  'go_around_introduc',
  'around_introduc_ourself',
  'introduc_ourself_got',
  'ourself_got_rude',
  'got_rude_ask',
  'rude_ask_parent',
  'ask_parent_know',
  'parent_know_come',
  'know_come_school',
  'come_school_look',
  'school_look_like',
  'look_like_extrem',
  'like_extrem_disrespect',
  'extrem_disrespect_fix',
  'disrespect_fix_bang',
  'fix_bang_want',
  'bang_want_see',
  'want_see_face',
  'see_face_obey',
  'face_obey_tuck',
  'obey_tuck_bang',
  'tuck_bang_behind',
  'bang_behind_ear',
  'behind_ear_show',
  'ear_show_left',
  'show_left_side',
  'left_side_face',
  'side_face_gasp',
  'face_gasp_face',
  'gasp_face_turn',
  'face_turn_red',
  'turn_red_classmat',
  'red_classmat_laugh',
  'classmat_laugh_told',
  'laugh_told_let',
  'told_let_bang',
  'let_bang_later',
  'bang_later_day',
  'later_day_head',
  'day_head_teacher',
  'head_teacher_came',
  'teacher_came_scold',
  'came_scold_told',
  'scold_told_wrong',
  'told_wrong_shock',
  'wrong_shock_new',
  'shock_new_teacher',
  'new_teacher_told',
  'teacher_told_anyth',
  'told_anyth_wrong',
  'anyth_wrong_obey',
  'wrong_obey_order',
  'obey_order_fault',
  'order_fault_end',
  'fault_end_want',
  'end_want_look',
  'want_look_face',
  'look_face_aita',
  'face_aita_--',
  'aita_--_--',
  '--_--_-',
  '--_-_updat',
  '-_updat_mom',
  'updat_mom_went',
  'mom_went_talk',
  'went_talk_head',
  'talk_head_teacher',
  'head_teacher_turn',
  'teacher_turn_new',
  'turn_new_teacher',
  'new_teacher_made',
  'teacher_made_sound',
  'made_sound_like',
  'sound_like_play',
  'like_play_prank',
  'play_prank_tri',
  'prank_tri_deliber',
  'tri_deliber_shock',
  'deliber_shock_make',
  'shock_make_fun',
  'make_fun_front',
  'fun_front_class',
  'front_class_classmat',
  'class_classmat_call',
  'classmat_call_confirm',
  'call_confirm_part',
  'confirm_part_stori',
  'part_stori_head',
  'stori_head_teacher',
  'head_teacher_apolog',
  'teacher_apolog_call',
  'apolog_call_unfortun',
  'call_unfortun_misunderstand',
  'unfortun_misunderstand_told',
  'misunderstand_told_us',
  'told_us_clear',
  'us_clear_new',
  'clear_new_teacher',
  'new_teacher_worri',
  'teacher_worri_believ',
  'worri_believ_misunderstand',
  'believ_misunderstand_sound',
  'misunderstand_sound_like',
  'sound_like_new',
  'like_new_teacher',
  'new_teacher_deliber',
  'teacher_deliber_lie',
  'deliber_lie_cant',
  'lie_cant_anyth'],
 ['recent',
  'fli',
  'nyc',
  'lax',
  'work',
  'trip',
  'displeasur',
  'sit',
  'next',
  'famili',
  'littl',
  'boy',
  'got',
  'plane',
  'midst',
  'issu',
  'diabet',
  'need',
  'eat',
  'within',
  'two',
  'hour',
  'began',
  'snack',
  'immedi',
  'began',
  'receiv',
  'dirti',
  'look',
  'parent',
  'mother',
  'said',
  'son',
  'put',
  'food',
  'away',
  'figur',
  'id',
  'wait',
  'flight',
  'attend',
  'came',
  'around',
  'could',
  'buy',
  'food',
  'eat',
  'accept',
  'time',
  'show',
  'respect',
  'wish',
  'flight',
  'attend',
  'come',
  'beverag',
  'snack',
  'start',
  'ask',
  'coke',
  'snack',
  'box',
  'finish',
  'sentenc',
  'father',
  'say',
  'noth',
  'row',
  'set',
  'continu',
  'go',
  'press',
  'call',
  'light',
  'get',
  'food',
  'drink',
  'actual',
  'need',
  'father',
  'say',
  'son',
  'prader-willi',
  'wed',
  'prefer',
  'eat',
  'caus',
  'tantrum',
  'know',
  'cant',
  'eat',
  'alway',
  'hungri',
  'im',
  'close',
  'tantrum',
  'point',
  'look',
  'eye',
  'say',
  'care',
  'fli',
  'privat',
  'want',
  'control',
  'surround',
  'flight',
  'attend',
  'come',
  'back',
  'get',
  'food',
  'drink',
  'snarf',
  'chug',
  'soda',
  'sit',
  'back',
  'soon',
  'im',
  'calm',
  'im',
  'abl',
  'open',
  'laptop',
  'get',
  'back',
  'work',
  'mother',
  'lean',
  'say',
  'feel',
  'call',
  'educ',
  'son',
  'diseas',
  'felt',
  'entir',
  'bodi',
  'clench',
  'keep',
  'talk',
  'explain',
  'id',
  'made',
  'son',
  'feel',
  'said',
  'listen',
  'ladi',
  'fuck',
  'care',
  'im',
  'go',
  'handl',
  'td',
  'way',
  'see',
  'fit',
  'go',
  'handl',
  'son',
  'way',
  'see',
  'fit',
  'im',
  'endang',
  'want',
  'deal',
  'tantrum',
  'want',
  'control',
  'peopl',
  'book',
  'seat',
  'row',
  'fuck',
  'fli',
  'privat',
  'recount',
  'stori',
  'friend',
  'mine',
  'id',
  'gotten',
  'plane',
  'immedi',
  'told',
  'huge',
  'ah',
  'given',
  'littl',
  'bit',
  'grace',
  'due',
  'son',
  'condit',
  'kind',
  'feel',
  'bad',
  'time',
  'think',
  'unavoid',
  'go',
  'public',
  'around',
  'aita',
  'recent_fli',
  'fli_nyc',
  'nyc_lax',
  'lax_work',
  'work_trip',
  'trip_displeasur',
  'displeasur_sit',
  'sit_next',
  'next_famili',
  'famili_littl',
  'littl_boy',
  'boy_got',
  'got_plane',
  'plane_midst',
  'midst_issu',
  'issu_diabet',
  'diabet_need',
  'need_eat',
  'eat_within',
  'within_two',
  'two_hour',
  'hour_began',
  'began_snack',
  'snack_immedi',
  'immedi_began',
  'began_receiv',
  'receiv_dirti',
  'dirti_look',
  'look_parent',
  'parent_mother',
  'mother_said',
  'said_son',
  'son_put',
  'put_food',
  'food_away',
  'away_figur',
  'figur_id',
  'id_wait',
  'wait_flight',
  'flight_attend',
  'attend_came',
  'came_around',
  'around_could',
  'could_buy',
  'buy_food',
  'food_eat',
  'eat_accept',
  'accept_time',
  'time_show',
  'show_respect',
  'respect_wish',
  'wish_flight',
  'flight_attend',
  'attend_come',
  'come_beverag',
  'beverag_snack',
  'snack_start',
  'start_ask',
  'ask_coke',
  'coke_snack',
  'snack_box',
  'box_finish',
  'finish_sentenc',
  'sentenc_father',
  'father_say',
  'say_noth',
  'noth_row',
  'row_set',
  'set_continu',
  'continu_go',
  'go_press',
  'press_call',
  'call_light',
  'light_get',
  'get_food',
  'food_drink',
  'drink_actual',
  'actual_need',
  'need_father',
  'father_say',
  'say_son',
  'son_prader-willi',
  'prader-willi_wed',
  'wed_prefer',
  'prefer_eat',
  'eat_caus',
  'caus_tantrum',
  'tantrum_know',
  'know_cant',
  'cant_eat',
  'eat_alway',
  'alway_hungri',
  'hungri_im',
  'im_close',
  'close_tantrum',
  'tantrum_point',
  'point_look',
  'look_eye',
  'eye_say',
  'say_care',
  'care_fli',
  'fli_privat',
  'privat_want',
  'want_control',
  'control_surround',
  'surround_flight',
  'flight_attend',
  'attend_come',
  'come_back',
  'back_get',
  'get_food',
  'food_drink',
  'drink_snarf',
  'snarf_chug',
  'chug_soda',
  'soda_sit',
  'sit_back',
  'back_soon',
  'soon_im',
  'im_calm',
  'calm_im',
  'im_abl',
  'abl_open',
  'open_laptop',
  'laptop_get',
  'get_back',
  'back_work',
  'work_mother',
  'mother_lean',
  'lean_say',
  'say_feel',
  'feel_call',
  'call_educ',
  'educ_son',
  'son_diseas',
  'diseas_felt',
  'felt_entir',
  'entir_bodi',
  'bodi_clench',
  'clench_keep',
  'keep_talk',
  'talk_explain',
  'explain_id',
  'id_made',
  'made_son',
  'son_feel',
  'feel_said',
  'said_listen',
  'listen_ladi',
  'ladi_fuck',
  'fuck_care',
  'care_im',
  'im_go',
  'go_handl',
  'handl_td',
  'td_way',
  'way_see',
  'see_fit',
  'fit_go',
  'go_handl',
  'handl_son',
  'son_way',
  'way_see',
  'see_fit',
  'fit_im',
  'im_endang',
  'endang_want',
  'want_deal',
  'deal_tantrum',
  'tantrum_want',
  'want_control',
  'control_peopl',
  'peopl_book',
  'book_seat',
  'seat_row',
  'row_fuck',
  'fuck_fli',
  'fli_privat',
  'privat_recount',
  'recount_stori',
  'stori_friend',
  'friend_mine',
  'mine_id',
  'id_gotten',
  'gotten_plane',
  'plane_immedi',
  'immedi_told',
  'told_huge',
  'huge_ah',
  'ah_given',
  'given_littl',
  'littl_bit',
  'bit_grace',
  'grace_due',
  'due_son',
  'son_condit',
  'condit_kind',
  'kind_feel',
  'feel_bad',
  'bad_time',
  'time_think',
  'think_unavoid',
  'unavoid_go',
  'go_public',
  'public_around',
  'around_aita',
  'recent_fli_nyc',
  'fli_nyc_lax',
  'nyc_lax_work',
  'lax_work_trip',
  'work_trip_displeasur',
  'trip_displeasur_sit',
  'displeasur_sit_next',
  'sit_next_famili',
  'next_famili_littl',
  'famili_littl_boy',
  'littl_boy_got',
  'boy_got_plane',
  'got_plane_midst',
  'plane_midst_issu',
  'midst_issu_diabet',
  'issu_diabet_need',
  'diabet_need_eat',
  'need_eat_within',
  'eat_within_two',
  'within_two_hour',
  'two_hour_began',
  'hour_began_snack',
  'began_snack_immedi',
  'snack_immedi_began',
  'immedi_began_receiv',
  'began_receiv_dirti',
  'receiv_dirti_look',
  'dirti_look_parent',
  'look_parent_mother',
  'parent_mother_said',
  'mother_said_son',
  'said_son_put',
  'son_put_food',
  'put_food_away',
  'food_away_figur',
  'away_figur_id',
  'figur_id_wait',
  'id_wait_flight',
  'wait_flight_attend',
  'flight_attend_came',
  'attend_came_around',
  'came_around_could',
  'around_could_buy',
  'could_buy_food',
  'buy_food_eat',
  'food_eat_accept',
  'eat_accept_time',
  'accept_time_show',
  'time_show_respect',
  'show_respect_wish',
  'respect_wish_flight',
  'wish_flight_attend',
  'flight_attend_come',
  'attend_come_beverag',
  'come_beverag_snack',
  'beverag_snack_start',
  'snack_start_ask',
  'start_ask_coke',
  'ask_coke_snack',
  'coke_snack_box',
  'snack_box_finish',
  'box_finish_sentenc',
  'finish_sentenc_father',
  'sentenc_father_say',
  'father_say_noth',
  'say_noth_row',
  'noth_row_set',
  'row_set_continu',
  'set_continu_go',
  'continu_go_press',
  'go_press_call',
  'press_call_light',
  'call_light_get',
  'light_get_food',
  'get_food_drink',
  'food_drink_actual',
  'drink_actual_need',
  'actual_need_father',
  'need_father_say',
  'father_say_son',
  'say_son_prader-willi',
  'son_prader-willi_wed',
  'prader-willi_wed_prefer',
  'wed_prefer_eat',
  'prefer_eat_caus',
  'eat_caus_tantrum',
  'caus_tantrum_know',
  'tantrum_know_cant',
  'know_cant_eat',
  'cant_eat_alway',
  'eat_alway_hungri',
  'alway_hungri_im',
  'hungri_im_close',
  'im_close_tantrum',
  'close_tantrum_point',
  'tantrum_point_look',
  'point_look_eye',
  'look_eye_say',
  'eye_say_care',
  'say_care_fli',
  'care_fli_privat',
  'fli_privat_want',
  'privat_want_control',
  'want_control_surround',
  'control_surround_flight',
  'surround_flight_attend',
  'flight_attend_come',
  'attend_come_back',
  'come_back_get',
  'back_get_food',
  'get_food_drink',
  'food_drink_snarf',
  'drink_snarf_chug',
  'snarf_chug_soda',
  'chug_soda_sit',
  'soda_sit_back',
  'sit_back_soon',
  'back_soon_im',
  'soon_im_calm',
  'im_calm_im',
  'calm_im_abl',
  'im_abl_open',
  'abl_open_laptop',
  'open_laptop_get',
  'laptop_get_back',
  'get_back_work',
  'back_work_mother',
  'work_mother_lean',
  'mother_lean_say',
  'lean_say_feel',
  'say_feel_call',
  'feel_call_educ',
  'call_educ_son',
  'educ_son_diseas',
  'son_diseas_felt',
  'diseas_felt_entir',
  'felt_entir_bodi',
  'entir_bodi_clench',
  'bodi_clench_keep',
  'clench_keep_talk',
  'keep_talk_explain',
  'talk_explain_id',
  'explain_id_made',
  'id_made_son',
  'made_son_feel',
  'son_feel_said',
  'feel_said_listen',
  'said_listen_ladi',
  'listen_ladi_fuck',
  'ladi_fuck_care',
  'fuck_care_im',
  'care_im_go',
  'im_go_handl',
  'go_handl_td',
  'handl_td_way',
  'td_way_see',
  'way_see_fit',
  'see_fit_go',
  'fit_go_handl',
  'go_handl_son',
  'handl_son_way',
  'son_way_see',
  'way_see_fit',
  'see_fit_im',
  'fit_im_endang',
  'im_endang_want',
  'endang_want_deal',
  'want_deal_tantrum',
  'deal_tantrum_want',
  'tantrum_want_control',
  'want_control_peopl',
  'control_peopl_book',
  'peopl_book_seat',
  'book_seat_row',
  'seat_row_fuck',
  'row_fuck_fli',
  'fuck_fli_privat',
  'fli_privat_recount',
  'privat_recount_stori',
  'recount_stori_friend',
  'stori_friend_mine',
  'friend_mine_id',
  'mine_id_gotten',
  'id_gotten_plane',
  'gotten_plane_immedi',
  'plane_immedi_told',
  'immedi_told_huge',
  'told_huge_ah',
  'huge_ah_given',
  'ah_given_littl',
  'given_littl_bit',
  'littl_bit_grace',
  'bit_grace_due',
  'grace_due_son',
  'due_son_condit',
  'son_condit_kind',
  'condit_kind_feel',
  'kind_feel_bad',
  'feel_bad_time',
  'bad_time_think',
  'time_think_unavoid',
  'think_unavoid_go',
  'unavoid_go_public',
  'go_public_around',
  'public_around_aita'],
 ['husband',
  'ms',
  'best',
  'friend',
  'infertil',
  'got',
  'divorc',
  'time',
  'lie',
  'hid',
  'infertil',
  'life',
  'day',
  'told',
  'cant',
  'kid',
  'alway',
  'soft',
  'spot',
  'children',
  'found',
  'husband',
  'expect',
  'thrill',
  'start',
  'buy',
  'us',
  'gift',
  'decor',
  'piec',
  'made',
  'woodwork',
  'babi',
  'husband',
  'think',
  'nice',
  'gestur',
  'help',
  'feel',
  'uncomfort',
  'especi',
  'much',
  'keep',
  'mentio',
  'babi',
  'day',
  'ago',
  'husband',
  'found',
  'gender',
  'babi',
  'minut',
  'told',
  'start',
  'call',
  'babi',
  'random',
  'name',
  'pick',
  'go',
  'give',
  'babi',
  'infertil',
  'start',
  'beg',
  'us',
  'use',
  'name',
  'husband',
  'said',
  'done',
  'deal',
  'refus',
  'husband',
  'call',
  'heartless',
  'ask',
  'one',
  'small',
  'nice',
  'gestur',
  'struggl',
  'friend',
  'give',
  'closur',
  'honor',
  'thing',
  'done',
  'us',
  'flip',
  'said',
  'babi',
  'heard',
  'left',
  'immedi',
  'husband',
  'yell',
  'say',
  'babi',
  'behavior',
  'toward',
  'abhor',
  'left',
  'come',
  'back',
  'til',
  'morn',
  'kept',
  'say',
  'thing',
  'pressur',
  'agre',
  'name',
  'refus',
  'aita',
  'choos',
  'hill',
  'die',
  'husband_ms',
  'ms_best',
  'best_friend',
  'friend_infertil',
  'infertil_got',
  'got_divorc',
  'divorc_time',
  'time_lie',
  'lie_hid',
  'hid_infertil',
  'infertil_life',
  'life_day',
  'day_told',
  'told_cant',
  'cant_kid',
  'kid_alway',
  'alway_soft',
  'soft_spot',
  'spot_children',
  'children_found',
  'found_husband',
  'husband_expect',
  'expect_thrill',
  'thrill_start',
  'start_buy',
  'buy_us',
  'us_gift',
  'gift_decor',
  'decor_piec',
  'piec_made',
  'made_woodwork',
  'woodwork_babi',
  'babi_husband',
  'husband_think',
  'think_nice',
  'nice_gestur',
  'gestur_help',
  'help_feel',
  'feel_uncomfort',
  'uncomfort_especi',
  'especi_much',
  'much_keep',
  'keep_mentio',
  'mentio_babi',
  'babi_day',
  'day_ago',
  'ago_husband',
  'husband_found',
  'found_gender',
  'gender_babi',
  'babi_minut',
  'minut_told',
  'told_start',
  'start_call',
  'call_babi',
  'babi_random',
  'random_name',
  'name_pick',
  'pick_go',
  'go_give',
  'give_babi',
  'babi_infertil',
  'infertil_start',
  'start_beg',
  'beg_us',
  'us_use',
  'use_name',
  'name_husband',
  'husband_said',
  'said_done',
  'done_deal',
  'deal_refus',
  'refus_husband',
  'husband_call',
  'call_heartless',
  'heartless_ask',
  'ask_one',
  'one_small',
  'small_nice',
  'nice_gestur',
  'gestur_struggl',
  'struggl_friend',
  'friend_give',
  'give_closur',
  'closur_honor',
  'honor_thing',
  'thing_done',
  'done_us',
  'us_flip',
  'flip_said',
  'said_babi',
  'babi_heard',
  'heard_left',
  'left_immedi',
  'immedi_husband',
  'husband_yell',
  'yell_say',
  'say_babi',
  'babi_behavior',
  'behavior_toward',
  'toward_abhor',
  'abhor_left',
  'left_come',
  'come_back',
  'back_til',
  'til_morn',
  'morn_kept',
  'kept_say',
  'say_thing',
  'thing_pressur',
  'pressur_agre',
  'agre_name',
  'name_refus',
  'refus_aita',
  'aita_choos',
  'choos_hill',
  'hill_die',
  'husband_ms_best',
  'ms_best_friend',
  'best_friend_infertil',
  'friend_infertil_got',
  'infertil_got_divorc',
  'got_divorc_time',
  'divorc_time_lie',
  'time_lie_hid',
  'lie_hid_infertil',
  'hid_infertil_life',
  'infertil_life_day',
  'life_day_told',
  'day_told_cant',
  'told_cant_kid',
  'cant_kid_alway',
  'kid_alway_soft',
  'alway_soft_spot',
  'soft_spot_children',
  'spot_children_found',
  'children_found_husband',
  'found_husband_expect',
  'husband_expect_thrill',
  'expect_thrill_start',
  'thrill_start_buy',
  'start_buy_us',
  'buy_us_gift',
  'us_gift_decor',
  'gift_decor_piec',
  'decor_piec_made',
  'piec_made_woodwork',
  'made_woodwork_babi',
  'woodwork_babi_husband',
  'babi_husband_think',
  'husband_think_nice',
  'think_nice_gestur',
  'nice_gestur_help',
  'gestur_help_feel',
  'help_feel_uncomfort',
  'feel_uncomfort_especi',
  'uncomfort_especi_much',
  'especi_much_keep',
  'much_keep_mentio',
  'keep_mentio_babi',
  'mentio_babi_day',
  'babi_day_ago',
  'day_ago_husband',
  'ago_husband_found',
  'husband_found_gender',
  'found_gender_babi',
  'gender_babi_minut',
  'babi_minut_told',
  'minut_told_start',
  'told_start_call',
  'start_call_babi',
  'call_babi_random',
  'babi_random_name',
  'random_name_pick',
  'name_pick_go',
  'pick_go_give',
  'go_give_babi',
  'give_babi_infertil',
  'babi_infertil_start',
  'infertil_start_beg',
  'start_beg_us',
  'beg_us_use',
  'us_use_name',
  'use_name_husband',
  'name_husband_said',
  'husband_said_done',
  'said_done_deal',
  'done_deal_refus',
  'deal_refus_husband',
  'refus_husband_call',
  'husband_call_heartless',
  'call_heartless_ask',
  'heartless_ask_one',
  'ask_one_small',
  'one_small_nice',
  'small_nice_gestur',
  'nice_gestur_struggl',
  'gestur_struggl_friend',
  'struggl_friend_give',
  'friend_give_closur',
  'give_closur_honor',
  'closur_honor_thing',
  'honor_thing_done',
  'thing_done_us',
  'done_us_flip',
  'us_flip_said',
  'flip_said_babi',
  'said_babi_heard',
  'babi_heard_left',
  'heard_left_immedi',
  'left_immedi_husband',
  'immedi_husband_yell',
  'husband_yell_say',
  'yell_say_babi',
  'say_babi_behavior',
  'babi_behavior_toward',
  'behavior_toward_abhor',
  'toward_abhor_left',
  'abhor_left_come',
  'left_come_back',
  'come_back_til',
  'back_til_morn',
  'til_morn_kept',
  'morn_kept_say',
  'kept_say_thing',
  'say_thing_pressur',
  'thing_pressur_agre',
  'pressur_agre_name',
  'agre_name_refus',
  'name_refus_aita',
  'refus_aita_choos',
  'aita_choos_hill',
  'choos_hill_die'],
 ['long',
  'stori',
  'short',
  'start',
  'see',
  'yo',
  'dave',
  'year',
  'ago',
  'son',
  'daughter',
  'ann',
  'book',
  'road',
  'trip',
  'son',
  'roughli',
  'month',
  'ago',
  'road',
  'trip',
  'consist',
  'roughli',
  'hour',
  'worth',
  'drive',
  'stop',
  'first',
  'time',
  'ive',
  'ever',
  'financi',
  'abl',
  'much',
  'anyth',
  'children',
  'went',
  'plan',
  'stop',
  'everi',
  'place',
  'ever',
  'ask',
  'go',
  'basic',
  'beyond',
  'excit',
  'surpris',
  'trip',
  'got',
  'home',
  'night',
  'ago',
  'week',
  'leav',
  'dave',
  'decid',
  'want',
  'go',
  'bring',
  'ann',
  'bond',
  'experi',
  'live',
  'togeth',
  'ann',
  'never',
  'like',
  'im',
  'bore',
  'said',
  'face',
  'dave',
  'think',
  'good',
  'realli',
  'want',
  'either',
  'go',
  'thought',
  'hell',
  'could',
  'good',
  'us',
  'boy',
  'fuck',
  'wrong',
  'moment',
  'ann',
  'got',
  'vehicl',
  'start',
  'complain',
  'absolut',
  'everyth',
  'crowd',
  'loud',
  'take',
  'mani',
  'stop',
  'boy',
  'annoy',
  'need',
  'quiet',
  'fuck',
  'chill',
  'get',
  'hotel',
  'hour',
  'pa',
  'around',
  'pm',
  'point',
  'dave',
  'ask',
  'take',
  'drive',
  'ann',
  'get',
  'irrit',
  'kid',
  'told',
  'could',
  'make',
  'quick',
  'need',
  'go',
  'get',
  'dinner',
  'suppli',
  'hour',
  'later',
  'show',
  'back',
  'ann',
  'went',
  'eat',
  'make',
  'comment',
  'say',
  'think',
  'want',
  'eat',
  'ann',
  'snap',
  'back',
  'think',
  'ask',
  'comment',
  'like',
  'day',
  'final',
  'snap',
  'bodi',
  'say',
  'want',
  'go',
  'home',
  'sever',
  'time',
  'dave',
  'told',
  'kid',
  'quiet',
  'kid',
  'comfort',
  'point',
  'done',
  'anyth',
  'kid',
  'queen',
  'would',
  'fit',
  'pull',
  'anywher',
  'dave',
  'point',
  'basic',
  'refus',
  'let',
  'drive',
  'despit',
  'argu',
  'car',
  'snap',
  'told',
  'pull',
  'fuck',
  'final',
  'drive',
  'nearest',
  'car',
  'rental',
  'tell',
  'get',
  'fuck',
  'car',
  'dave',
  'ann',
  'start',
  'flip',
  'ann',
  'say',
  'go',
  'get',
  'car',
  'bed',
  'bug',
  'dave',
  'say',
  'want',
  'take',
  'separ',
  'vehicl',
  'enough',
  'money',
  'rental',
  'queen',
  'spent',
  '$',
  'day',
  'say',
  'believ',
  'fuck',
  'ask',
  'take',
  'close',
  'mile',
  'home',
  'took',
  'day',
  'get',
  'home',
  'due',
  'lack',
  'money',
  'need',
  'borrow',
  'im',
  'told',
  'im',
  'selfish',
  'cunt',
  'aita',
  'long_stori',
  'stori_short',
  'short_start',
  'start_see',
  'see_yo',
  'yo_dave',
  'dave_year',
  'year_ago',
  'ago_son',
  'son_daughter',
  'daughter_ann',
  'ann_book',
  'book_road',
  'road_trip',
  'trip_son',
  'son_roughli',
  'roughli_month',
  'month_ago',
  'ago_road',
  'road_trip',
  'trip_consist',
  'consist_roughli',
  'roughli_hour',
  'hour_worth',
  'worth_drive',
  'drive_stop',
  'stop_first',
  'first_time',
  'time_ive',
  'ive_ever',
  'ever_financi',
  'financi_abl',
  'abl_much',
  'much_anyth',
  'anyth_children',
  'children_went',
  'went_plan',
  'plan_stop',
  'stop_everi',
  'everi_place',
  'place_ever',
  'ever_ask',
  'ask_go',
  'go_basic',
  'basic_beyond',
  'beyond_excit',
  'excit_surpris',
  'surpris_trip',
  'trip_got',
  'got_home',
  'home_night',
  'night_ago',
  'ago_week',
  'week_leav',
  'leav_dave',
  'dave_decid',
  'decid_want',
  'want_go',
  'go_bring',
  'bring_ann',
  'ann_bond',
  'bond_experi',
  'experi_live',
  'live_togeth',
  'togeth_ann',
  'ann_never',
  'never_like',
  'like_im',
  'im_bore',
  'bore_said',
  'said_face',
  'face_dave',
  'dave_think',
  'think_good',
  'good_realli',
  'realli_want',
  'want_either',
  'either_go',
  'go_thought',
  'thought_hell',
  'hell_could',
  'could_good',
  'good_us',
  'us_boy',
  'boy_fuck',
  'fuck_wrong',
  'wrong_moment',
  'moment_ann',
  'ann_got',
  'got_vehicl',
  'vehicl_start',
  'start_complain',
  'complain_absolut',
  'absolut_everyth',
  'everyth_crowd',
  'crowd_loud',
  'loud_take',
  'take_mani',
  'mani_stop',
  'stop_boy',
  'boy_annoy',
  'annoy_need',
  'need_quiet',
  'quiet_fuck',
  'fuck_chill',
  'chill_get',
  'get_hotel',
  'hotel_hour',
  'hour_pa',
  'pa_around',
  'around_pm',
  'pm_point',
  'point_dave',
  'dave_ask',
  'ask_take',
  'take_drive',
  'drive_ann',
  'ann_get',
  'get_irrit',
  'irrit_kid',
  'kid_told',
  'told_could',
  'could_make',
  'make_quick',
  'quick_need',
  'need_go',
  'go_get',
  'get_dinner',
  'dinner_suppli',
  'suppli_hour',
  'hour_later',
  'later_show',
  'show_back',
  'back_ann',
  'ann_went',
  'went_eat',
  'eat_make',
  'make_comment',
  'comment_say',
  'say_think',
  'think_want',
  'want_eat',
  'eat_ann',
  'ann_snap',
  'snap_back',
  'back_think',
  'think_ask',
  'ask_comment',
  'comment_like',
  'like_day',
  'day_final',
  'final_snap',
  'snap_bodi',
  'bodi_say',
  'say_want',
  'want_go',
  'go_home',
  'home_sever',
  'sever_time',
  'time_dave',
  'dave_told',
  'told_kid',
  'kid_quiet',
  'quiet_kid',
  'kid_comfort',
  'comfort_point',
  'point_done',
  'done_anyth',
  'anyth_kid',
  'kid_queen',
  'queen_would',
  'would_fit',
  'fit_pull',
  'pull_anywher',
  'anywher_dave',
  'dave_point',
  'point_basic',
  'basic_refus',
  'refus_let',
  'let_drive',
  'drive_despit',
  'despit_argu',
  'argu_car',
  'car_snap',
  'snap_told',
  'told_pull',
  'pull_fuck',
  'fuck_final',
  'final_drive',
  'drive_nearest',
  'nearest_car',
  'car_rental',
  'rental_tell',
  'tell_get',
  'get_fuck',
  'fuck_car',
  'car_dave',
  'dave_ann',
  'ann_start',
  'start_flip',
  'flip_ann',
  'ann_say',
  'say_go',
  'go_get',
  'get_car',
  'car_bed',
  'bed_bug',
  'bug_dave',
  'dave_say',
  'say_want',
  'want_take',
  'take_separ',
  'separ_vehicl',
  'vehicl_enough',
  'enough_money',
  'money_rental',
  'rental_queen',
  'queen_spent',
  'spent_$',
  '$_day',
  'day_say',
  'say_believ',
  'believ_fuck',
  'fuck_ask',
  'ask_take',
  'take_close',
  'close_mile',
  'mile_home',
  'home_took',
  'took_day',
  'day_get',
  'get_home',
  'home_due',
  'due_lack',
  'lack_money',
  'money_need',
  'need_borrow',
  'borrow_im',
  'im_told',
  'told_im',
  'im_selfish',
  'selfish_cunt',
  'cunt_aita',
  'long_stori_short',
  'stori_short_start',
  'short_start_see',
  'start_see_yo',
  'see_yo_dave',
  'yo_dave_year',
  'dave_year_ago',
  'year_ago_son',
  'ago_son_daughter',
  'son_daughter_ann',
  'daughter_ann_book',
  'ann_book_road',
  'book_road_trip',
  'road_trip_son',
  'trip_son_roughli',
  'son_roughli_month',
  'roughli_month_ago',
  'month_ago_road',
  'ago_road_trip',
  'road_trip_consist',
  'trip_consist_roughli',
  'consist_roughli_hour',
  'roughli_hour_worth',
  'hour_worth_drive',
  'worth_drive_stop',
  'drive_stop_first',
  'stop_first_time',
  'first_time_ive',
  'time_ive_ever',
  'ive_ever_financi',
  'ever_financi_abl',
  'financi_abl_much',
  'abl_much_anyth',
  'much_anyth_children',
  'anyth_children_went',
  'children_went_plan',
  'went_plan_stop',
  'plan_stop_everi',
  'stop_everi_place',
  'everi_place_ever',
  'place_ever_ask',
  'ever_ask_go',
  'ask_go_basic',
  'go_basic_beyond',
  'basic_beyond_excit',
  'beyond_excit_surpris',
  'excit_surpris_trip',
  'surpris_trip_got',
  'trip_got_home',
  'got_home_night',
  'home_night_ago',
  'night_ago_week',
  'ago_week_leav',
  'week_leav_dave',
  'leav_dave_decid',
  'dave_decid_want',
  'decid_want_go',
  'want_go_bring',
  'go_bring_ann',
  'bring_ann_bond',
  'ann_bond_experi',
  'bond_experi_live',
  'experi_live_togeth',
  'live_togeth_ann',
  'togeth_ann_never',
  'ann_never_like',
  'never_like_im',
  'like_im_bore',
  'im_bore_said',
  'bore_said_face',
  'said_face_dave',
  'face_dave_think',
  'dave_think_good',
  'think_good_realli',
  'good_realli_want',
  'realli_want_either',
  'want_either_go',
  'either_go_thought',
  'go_thought_hell',
  'thought_hell_could',
  'hell_could_good',
  'could_good_us',
  'good_us_boy',
  'us_boy_fuck',
  'boy_fuck_wrong',
  'fuck_wrong_moment',
  'wrong_moment_ann',
  'moment_ann_got',
  'ann_got_vehicl',
  'got_vehicl_start',
  'vehicl_start_complain',
  'start_complain_absolut',
  'complain_absolut_everyth',
  'absolut_everyth_crowd',
  'everyth_crowd_loud',
  'crowd_loud_take',
  'loud_take_mani',
  'take_mani_stop',
  'mani_stop_boy',
  'stop_boy_annoy',
  'boy_annoy_need',
  'annoy_need_quiet',
  'need_quiet_fuck',
  'quiet_fuck_chill',
  'fuck_chill_get',
  'chill_get_hotel',
  'get_hotel_hour',
  'hotel_hour_pa',
  'hour_pa_around',
  'pa_around_pm',
  'around_pm_point',
  'pm_point_dave',
  'point_dave_ask',
  'dave_ask_take',
  'ask_take_drive',
  'take_drive_ann',
  'drive_ann_get',
  'ann_get_irrit',
  'get_irrit_kid',
  'irrit_kid_told',
  'kid_told_could',
  'told_could_make',
  'could_make_quick',
  'make_quick_need',
  'quick_need_go',
  'need_go_get',
  'go_get_dinner',
  'get_dinner_suppli',
  'dinner_suppli_hour',
  'suppli_hour_later',
  'hour_later_show',
  'later_show_back',
  'show_back_ann',
  'back_ann_went',
  'ann_went_eat',
  'went_eat_make',
  'eat_make_comment',
  'make_comment_say',
  'comment_say_think',
  'say_think_want',
  'think_want_eat',
  'want_eat_ann',
  'eat_ann_snap',
  'ann_snap_back',
  'snap_back_think',
  'back_think_ask',
  'think_ask_comment',
  'ask_comment_like',
  'comment_like_day',
  'like_day_final',
  'day_final_snap',
  'final_snap_bodi',
  'snap_bodi_say',
  'bodi_say_want',
  'say_want_go',
  'want_go_home',
  'go_home_sever',
  'home_sever_time',
  'sever_time_dave',
  'time_dave_told',
  'dave_told_kid',
  'told_kid_quiet',
  'kid_quiet_kid',
  'quiet_kid_comfort',
  'kid_comfort_point',
  'comfort_point_done',
  'point_done_anyth',
  'done_anyth_kid',
  'anyth_kid_queen',
  'kid_queen_would',
  'queen_would_fit',
  'would_fit_pull',
  'fit_pull_anywher',
  'pull_anywher_dave',
  'anywher_dave_point',
  'dave_point_basic',
  'point_basic_refus',
  'basic_refus_let',
  'refus_let_drive',
  'let_drive_despit',
  'drive_despit_argu',
  'despit_argu_car',
  'argu_car_snap',
  'car_snap_told',
  'snap_told_pull',
  'told_pull_fuck',
  'pull_fuck_final',
  'fuck_final_drive',
  'final_drive_nearest',
  'drive_nearest_car',
  'nearest_car_rental',
  'car_rental_tell',
  'rental_tell_get',
  'tell_get_fuck',
  'get_fuck_car',
  'fuck_car_dave',
  'car_dave_ann',
  'dave_ann_start',
  'ann_start_flip',
  'start_flip_ann',
  'flip_ann_say',
  'ann_say_go',
  'say_go_get',
  'go_get_car',
  'get_car_bed',
  'car_bed_bug',
  'bed_bug_dave',
  'bug_dave_say',
  'dave_say_want',
  'say_want_take',
  'want_take_separ',
  'take_separ_vehicl',
  'separ_vehicl_enough',
  'vehicl_enough_money',
  'enough_money_rental',
  'money_rental_queen',
  'rental_queen_spent',
  'queen_spent_$',
  'spent_$_day',
  '$_day_say',
  'day_say_believ',
  'say_believ_fuck',
  'believ_fuck_ask',
  'fuck_ask_take',
  'ask_take_close',
  'take_close_mile',
  'close_mile_home',
  'mile_home_took',
  'home_took_day',
  'took_day_get',
  'day_get_home',
  'get_home_due',
  'home_due_lack',
  'due_lack_money',
  'lack_money_need',
  'money_need_borrow',
  'need_borrow_im',
  'borrow_im_told',
  'im_told_im',
  'told_im_selfish',
  'im_selfish_cunt',
  'selfish_cunt_aita'],
 ['date',
  'boyfriend',
  'ricki',
  'month',
  'divorc',
  'hate',
  'word',
  'goe',
  'word',
  'divorce',
  'instead',
  'sinc',
  'first',
  'one',
  'make',
  'sound',
  'like',
  'dump',
  'initi',
  'anyway',
  'alway',
  'go',
  'long',
  'rant',
  'exe',
  'say',
  'stuff',
  'like',
  'hope',
  'aw',
  'habit',
  'ex',
  'hope',
  'like',
  'xyz',
  'caus',
  'ex',
  'list',
  'goe',
  'found',
  'nd',
  'job',
  'recent',
  'pay',
  'everi',
  'time',
  'go',
  'protest',
  'hed',
  'say',
  'go',
  'rough',
  'patch',
  'see',
  'much',
  'help',
  'cam',
  'offer',
  'last',
  'night',
  'invit',
  'famili',
  'join',
  'us',
  'dinner',
  'got',
  'restaur',
  'first',
  'ask',
  'brought',
  'enough',
  'momey',
  'said',
  'told',
  'told',
  'parent',
  'id',
  'pay',
  'meal',
  'said',
  'would',
  'went',
  'parent',
  'go',
  'rough',
  'patch',
  'like',
  'said',
  'im',
  'sorri',
  'cant',
  'coincid',
  'ask',
  'meant',
  'told',
  'would',
  'pay',
  'insist',
  'refus',
  'said',
  'lean',
  'back',
  'said',
  'well',
  'much',
  'choic',
  'anyway',
  'laugh',
  'like',
  'funni',
  'silent',
  'got',
  'took',
  'phone',
  'purs',
  'walk',
  'right',
  'shock',
  'start',
  'shout',
  'stop',
  'wait',
  'went',
  'home',
  'call',
  'enrag',
  'say',
  'horribl',
  'thing',
  'walk',
  'parent',
  'couldv',
  'paid',
  'told',
  'unfortun',
  'financi',
  'situat',
  'problem',
  'oblig',
  'pay',
  'food',
  'pay',
  'meal',
  'go',
  'got',
  'offend',
  'said',
  'qout',
  'make',
  'money',
  'prioriti',
  'like',
  'ex',
  'went',
  'disrespect',
  'attitud',
  'made',
  'look',
  'small',
  'infront',
  'parent',
  'forc',
  'lie',
  'came',
  'weve',
  'go',
  'back',
  'forth',
  'til',
  'mad',
  'refus',
  'speak',
  'til',
  'apolog',
  'aita',
  'feel',
  'bad',
  'parent',
  'love',
  'best',
  'keep',
  'good',
  'relationship',
  'date_boyfriend',
  'boyfriend_ricki',
  'ricki_month',
  'month_divorc',
  'divorc_hate',
  'hate_word',
  'word_goe',
  'goe_word',
  'word_divorce',
  'divorce_instead',
  'instead_sinc',
  'sinc_first',
  'first_one',
  'one_make',
  'make_sound',
  'sound_like',
  'like_dump',
  'dump_initi',
  'initi_anyway',
  'anyway_alway',
  'alway_go',
  'go_long',
  'long_rant',
  'rant_exe',
  'exe_say',
  'say_stuff',
  'stuff_like',
  'like_hope',
  'hope_aw',
  'aw_habit',
  'habit_ex',
  'ex_hope',
  'hope_like',
  'like_xyz',
  'xyz_caus',
  'caus_ex',
  'ex_list',
  'list_goe',
  'goe_found',
  'found_nd',
  'nd_job',
  'job_recent',
  'recent_pay',
  'pay_everi',
  'everi_time',
  'time_go',
  'go_protest',
  'protest_hed',
  'hed_say',
  'say_go',
  'go_rough',
  'rough_patch',
  'patch_see',
  'see_much',
  'much_help',
  'help_cam',
  'cam_offer',
  'offer_last',
  'last_night',
  'night_invit',
  'invit_famili',
  'famili_join',
  'join_us',
  'us_dinner',
  'dinner_got',
  'got_restaur',
  'restaur_first',
  'first_ask',
  'ask_brought',
  'brought_enough',
  'enough_momey',
  'momey_said',
  'said_told',
  'told_told',
  'told_parent',
  'parent_id',
  'id_pay',
  'pay_meal',
  'meal_said',
  'said_would',
  'would_went',
  'went_parent',
  'parent_go',
  'go_rough',
  'rough_patch',
  'patch_like',
  'like_said',
  'said_im',
  'im_sorri',
  'sorri_cant',
  'cant_coincid',
  'coincid_ask',
  'ask_meant',
  'meant_told',
  'told_would',
  'would_pay',
  'pay_insist',
  'insist_refus',
  'refus_said',
  'said_lean',
  'lean_back',
  'back_said',
  'said_well',
  'well_much',
  'much_choic',
  'choic_anyway',
  'anyway_laugh',
  'laugh_like',
  'like_funni',
  'funni_silent',
  'silent_got',
  'got_took',
  'took_phone',
  'phone_purs',
  'purs_walk',
  'walk_right',
  'right_shock',
  'shock_start',
  'start_shout',
  'shout_stop',
  'stop_wait',
  'wait_went',
  'went_home',
  'home_call',
  'call_enrag',
  'enrag_say',
  'say_horribl',
  'horribl_thing',
  'thing_walk',
  'walk_parent',
  'parent_couldv',
  'couldv_paid',
  'paid_told',
  'told_unfortun',
  'unfortun_financi',
  'financi_situat',
  'situat_problem',
  'problem_oblig',
  'oblig_pay',
  'pay_food',
  'food_pay',
  'pay_meal',
  'meal_go',
  'go_got',
  'got_offend',
  'offend_said',
  'said_qout',
  'qout_make',
  'make_money',
  'money_prioriti',
  'prioriti_like',
  'like_ex',
  'ex_went',
  'went_disrespect',
  'disrespect_attitud',
  'attitud_made',
  'made_look',
  'look_small',
  'small_infront',
  'infront_parent',
  'parent_forc',
  'forc_lie',
  'lie_came',
  'came_weve',
  'weve_go',
  'go_back',
  'back_forth',
  'forth_til',
  'til_mad',
  'mad_refus',
  'refus_speak',
  'speak_til',
  'til_apolog',
  'apolog_aita',
  'aita_feel',
  'feel_bad',
  'bad_parent',
  'parent_love',
  'love_best',
  'best_keep',
  'keep_good',
  'good_relationship',
  'date_boyfriend_ricki',
  'boyfriend_ricki_month',
  'ricki_month_divorc',
  'month_divorc_hate',
  'divorc_hate_word',
  'hate_word_goe',
  'word_goe_word',
  'goe_word_divorce',
  'word_divorce_instead',
  'divorce_instead_sinc',
  'instead_sinc_first',
  'sinc_first_one',
  'first_one_make',
  'one_make_sound',
  'make_sound_like',
  'sound_like_dump',
  'like_dump_initi',
  'dump_initi_anyway',
  'initi_anyway_alway',
  'anyway_alway_go',
  'alway_go_long',
  'go_long_rant',
  'long_rant_exe',
  'rant_exe_say',
  'exe_say_stuff',
  'say_stuff_like',
  'stuff_like_hope',
  'like_hope_aw',
  'hope_aw_habit',
  'aw_habit_ex',
  'habit_ex_hope',
  'ex_hope_like',
  'hope_like_xyz',
  'like_xyz_caus',
  'xyz_caus_ex',
  'caus_ex_list',
  'ex_list_goe',
  'list_goe_found',
  'goe_found_nd',
  'found_nd_job',
  'nd_job_recent',
  'job_recent_pay',
  'recent_pay_everi',
  'pay_everi_time',
  'everi_time_go',
  'time_go_protest',
  'go_protest_hed',
  'protest_hed_say',
  'hed_say_go',
  'say_go_rough',
  'go_rough_patch',
  'rough_patch_see',
  'patch_see_much',
  'see_much_help',
  'much_help_cam',
  'help_cam_offer',
  'cam_offer_last',
  'offer_last_night',
  'last_night_invit',
  'night_invit_famili',
  'invit_famili_join',
  'famili_join_us',
  'join_us_dinner',
  'us_dinner_got',
  'dinner_got_restaur',
  'got_restaur_first',
  'restaur_first_ask',
  'first_ask_brought',
  'ask_brought_enough',
  'brought_enough_momey',
  'enough_momey_said',
  'momey_said_told',
  'said_told_told',
  'told_told_parent',
  'told_parent_id',
  'parent_id_pay',
  'id_pay_meal',
  'pay_meal_said',
  'meal_said_would',
  'said_would_went',
  'would_went_parent',
  'went_parent_go',
  'parent_go_rough',
  'go_rough_patch',
  'rough_patch_like',
  'patch_like_said',
  'like_said_im',
  'said_im_sorri',
  'im_sorri_cant',
  'sorri_cant_coincid',
  'cant_coincid_ask',
  'coincid_ask_meant',
  'ask_meant_told',
  'meant_told_would',
  'told_would_pay',
  'would_pay_insist',
  'pay_insist_refus',
  'insist_refus_said',
  'refus_said_lean',
  'said_lean_back',
  'lean_back_said',
  'back_said_well',
  'said_well_much',
  'well_much_choic',
  'much_choic_anyway',
  'choic_anyway_laugh',
  'anyway_laugh_like',
  'laugh_like_funni',
  'like_funni_silent',
  'funni_silent_got',
  'silent_got_took',
  'got_took_phone',
  'took_phone_purs',
  'phone_purs_walk',
  'purs_walk_right',
  'walk_right_shock',
  'right_shock_start',
  'shock_start_shout',
  'start_shout_stop',
  'shout_stop_wait',
  'stop_wait_went',
  'wait_went_home',
  'went_home_call',
  'home_call_enrag',
  'call_enrag_say',
  'enrag_say_horribl',
  'say_horribl_thing',
  'horribl_thing_walk',
  'thing_walk_parent',
  'walk_parent_couldv',
  'parent_couldv_paid',
  'couldv_paid_told',
  'paid_told_unfortun',
  'told_unfortun_financi',
  'unfortun_financi_situat',
  'financi_situat_problem',
  'situat_problem_oblig',
  'problem_oblig_pay',
  'oblig_pay_food',
  'pay_food_pay',
  'food_pay_meal',
  'pay_meal_go',
  'meal_go_got',
  'go_got_offend',
  'got_offend_said',
  'offend_said_qout',
  'said_qout_make',
  'qout_make_money',
  'make_money_prioriti',
  'money_prioriti_like',
  'prioriti_like_ex',
  'like_ex_went',
  'ex_went_disrespect',
  'went_disrespect_attitud',
  'disrespect_attitud_made',
  'attitud_made_look',
  'made_look_small',
  'look_small_infront',
  'small_infront_parent',
  'infront_parent_forc',
  'parent_forc_lie',
  'forc_lie_came',
  'lie_came_weve',
  'came_weve_go',
  'weve_go_back',
  'go_back_forth',
  'back_forth_til',
  'forth_til_mad',
  'til_mad_refus',
  'mad_refus_speak',
  'refus_speak_til',
  'speak_til_apolog',
  'til_apolog_aita',
  'apolog_aita_feel',
  'aita_feel_bad',
  'feel_bad_parent',
  'bad_parent_love',
  'parent_love_best',
  'love_best_keep',
  'best_keep_good',
  'keep_good_relationship'],
 ['titl',
  'probabl',
  'make',
  'sound',
  'wors',
  'im',
  'still',
  'conflict',
  'boyfriend',
  'almost',
  'year',
  'invit',
  'dinner',
  'famili',
  'mom',
  'dad',
  'yr',
  'old',
  'brother',
  'never',
  'met',
  'prior',
  'thing',
  'knew',
  'theyr',
  'conserv',
  'christian',
  'love',
  'peopl',
  'got',
  'along',
  'realli',
  'well',
  'dinner',
  'love',
  'talk',
  'time',
  'dinner',
  'bf',
  'dad',
  'want',
  'pray',
  'pray',
  'said',
  'someth',
  'alon',
  'line',
  'let',
  'us',
  'dig',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'pretti',
  'popular',
  'say',
  'countri',
  'mostli',
  'told',
  'young',
  'children',
  'school',
  'understand',
  'alway',
  'speak',
  'food',
  'mouth',
  'extrem',
  'loud',
  'tabl',
  'say',
  'cultur',
  'thing',
  'though',
  'dug',
  'took',
  'bite',
  'fish',
  'soup',
  'absolut',
  'delici',
  'yknow',
  'like',
  'good',
  'guest',
  'want',
  'compliment',
  'cook',
  'delici',
  '-',
  'saffron',
  'perfect',
  'autumn',
  'soup',
  'bf',
  'brother',
  'look',
  'surpris',
  'bf',
  'father',
  'hush',
  'big',
  'time',
  'realli',
  'aggress',
  'shhh',
  'finger',
  'lip',
  'said',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'aplogis',
  'thought',
  'accident',
  'spoken',
  'food',
  'mouth',
  'someth',
  'minut',
  'pass',
  'nobodi',
  'said',
  'word',
  'super',
  'awkward',
  'weird',
  'especi',
  'sinc',
  'talk',
  'bf',
  'also',
  'unusu',
  'quiet',
  'minut',
  'weird',
  'ask',
  'day',
  'nice',
  'invit',
  'mother',
  'hush',
  'thing',
  'awkward',
  'think',
  'click',
  'speak',
  'tabl',
  'let',
  'food',
  'keep',
  'us',
  'quiet',
  'realli',
  'quiet',
  'super',
  'awkward',
  'situat',
  'deal',
  'imagin',
  'sit',
  'tabl',
  'peopl',
  'everybodi',
  'eat',
  'soup',
  'look',
  'dead',
  'seriou',
  'laugh',
  'slip',
  'end',
  'told',
  'bf',
  'parent',
  'disrespect',
  'etc',
  'respect',
  'household',
  'work',
  'could',
  'eat',
  'alon',
  'kitchen',
  'eat',
  'like',
  'separ',
  'dine',
  'room',
  'sooo',
  'thank',
  'food',
  'left',
  'hotel',
  'bf',
  'stay',
  'boyfriend',
  'later',
  'told',
  'asshol',
  'move',
  'kept',
  'quiet',
  'eat',
  'alon',
  'kitchen',
  'understand',
  'famili',
  'tradit',
  'rule',
  'weird',
  'take',
  'anymor',
  'asshol',
  'though',
  'titl_probabl',
  'probabl_make',
  'make_sound',
  'sound_wors',
  'wors_im',
  'im_still',
  'still_conflict',
  'conflict_boyfriend',
  'boyfriend_almost',
  'almost_year',
  'year_invit',
  'invit_dinner',
  'dinner_famili',
  'famili_mom',
  'mom_dad',
  'dad_yr',
  'yr_old',
  'old_brother',
  'brother_never',
  'never_met',
  'met_prior',
  'prior_thing',
  'thing_knew',
  'knew_theyr',
  'theyr_conserv',
  'conserv_christian',
  'christian_love',
  'love_peopl',
  'peopl_got',
  'got_along',
  'along_realli',
  'realli_well',
  'well_dinner',
  'dinner_love',
  'love_talk',
  'talk_time',
  'time_dinner',
  'dinner_bf',
  'bf_dad',
  'dad_want',
  'want_pray',
  'pray_pray',
  'pray_said',
  'said_someth',
  'someth_alon',
  'alon_line',
  'line_let',
  'let_us',
  'us_dig',
  'dig_let',
  'let_food',
  'food_keep',
  'keep_us',
  'us_quiet',
  'quiet_pretti',
  'pretti_popular',
  'popular_say',
  'say_countri',
  'countri_mostli',
  'mostli_told',
  'told_young',
  'young_children',
  'children_school',
  'school_understand',
  'understand_alway',
  'alway_speak',
  'speak_food',
  'food_mouth',
  'mouth_extrem',
  'extrem_loud',
  'loud_tabl',
  'tabl_say',
  'say_cultur',
  'cultur_thing',
  'thing_though',
  'though_dug',
  'dug_took',
  'took_bite',
  'bite_fish',
  'fish_soup',
  'soup_absolut',
  'absolut_delici',
  'delici_yknow',
  'yknow_like',
  'like_good',
  'good_guest',
  'guest_want',
  'want_compliment',
  'compliment_cook',
  'cook_delici',
  'delici_-',
  '-_saffron',
  'saffron_perfect',
  'perfect_autumn',
  'autumn_soup',
  'soup_bf',
  'bf_brother',
  'brother_look',
  'look_surpris',
  'surpris_bf',
  'bf_father',
  'father_hush',
  'hush_big',
  'big_time',
  'time_realli',
  'realli_aggress',
  'aggress_shhh',
  'shhh_finger',
  'finger_lip',
  'lip_said',
  'said_let',
  'let_food',
  'food_keep',
  'keep_us',
  'us_quiet',
  'quiet_aplogis',
  'aplogis_thought',
  'thought_accident',
  'accident_spoken',
  'spoken_food',
  'food_mouth',
  'mouth_someth',
  'someth_minut',
  'minut_pass',
  'pass_nobodi',
  'nobodi_said',
  'said_word',
  'word_super',
  'super_awkward',
  'awkward_weird',
  'weird_especi',
  'especi_sinc',
  'sinc_talk',
  'talk_bf',
  'bf_also',
  'also_unusu',
  'unusu_quiet',
  'quiet_minut',
  'minut_weird',
  'weird_ask',
  'ask_day',
  'day_nice',
  'nice_invit',
  'invit_mother',
  'mother_hush',
  'hush_thing',
  'thing_awkward',
  'awkward_think',
  'think_click',
  'click_speak',
  'speak_tabl',
  'tabl_let',
  'let_food',
  'food_keep',
  'keep_us',
  'us_quiet',
  'quiet_realli',
  'realli_quiet',
  'quiet_super',
  'super_awkward',
  'awkward_situat',
  'situat_deal',
  'deal_imagin',
  'imagin_sit',
  'sit_tabl',
  'tabl_peopl',
  'peopl_everybodi',
  'everybodi_eat',
  'eat_soup',
  'soup_look',
  'look_dead',
  'dead_seriou',
  'seriou_laugh',
  'laugh_slip',
  'slip_end',
  'end_told',
  'told_bf',
  'bf_parent',
  'parent_disrespect',
  'disrespect_etc',
  'etc_respect',
  'respect_household',
  'household_work',
  'work_could',
  'could_eat',
  'eat_alon',
  'alon_kitchen',
  'kitchen_eat',
  'eat_like',
  'like_separ',
  'separ_dine',
  'dine_room',
  'room_sooo',
  'sooo_thank',
  'thank_food',
  'food_left',
  'left_hotel',
  'hotel_bf',
  'bf_stay',
  'stay_boyfriend',
  'boyfriend_later',
  'later_told',
  'told_asshol',
  'asshol_move',
  'move_kept',
  'kept_quiet',
  'quiet_eat',
  'eat_alon',
  'alon_kitchen',
  'kitchen_understand',
  'understand_famili',
  'famili_tradit',
  'tradit_rule',
  'rule_weird',
  'weird_take',
  'take_anymor',
  'anymor_asshol',
  'asshol_though',
  'titl_probabl_make',
  'probabl_make_sound',
  'make_sound_wors',
  'sound_wors_im',
  'wors_im_still',
  'im_still_conflict',
  'still_conflict_boyfriend',
  'conflict_boyfriend_almost',
  'boyfriend_almost_year',
  'almost_year_invit',
  'year_invit_dinner',
  'invit_dinner_famili',
  'dinner_famili_mom',
  'famili_mom_dad',
  'mom_dad_yr',
  'dad_yr_old',
  'yr_old_brother',
  'old_brother_never',
  'brother_never_met',
  'never_met_prior',
  'met_prior_thing',
  'prior_thing_knew',
  'thing_knew_theyr',
  'knew_theyr_conserv',
  'theyr_conserv_christian',
  'conserv_christian_love',
  'christian_love_peopl',
  'love_peopl_got',
  'peopl_got_along',
  'got_along_realli',
  'along_realli_well',
  'realli_well_dinner',
  'well_dinner_love',
  'dinner_love_talk',
  'love_talk_time',
  'talk_time_dinner',
  'time_dinner_bf',
  'dinner_bf_dad',
  'bf_dad_want',
  'dad_want_pray',
  'want_pray_pray',
  'pray_pray_said',
  'pray_said_someth',
  'said_someth_alon',
  'someth_alon_line',
  'alon_line_let',
  'line_let_us',
  'let_us_dig',
  'us_dig_let',
  'dig_let_food',
  'let_food_keep',
  'food_keep_us',
  'keep_us_quiet',
  'us_quiet_pretti',
  'quiet_pretti_popular',
  'pretti_popular_say',
  'popular_say_countri',
  'say_countri_mostli',
  'countri_mostli_told',
  'mostli_told_young',
  'told_young_children',
  'young_children_school',
  'children_school_understand',
  'school_understand_alway',
  'understand_alway_speak',
  'alway_speak_food',
  'speak_food_mouth',
  'food_mouth_extrem',
  'mouth_extrem_loud',
  'extrem_loud_tabl',
  'loud_tabl_say',
  'tabl_say_cultur',
  'say_cultur_thing',
  'cultur_thing_though',
  'thing_though_dug',
  'though_dug_took',
  'dug_took_bite',
  'took_bite_fish',
  'bite_fish_soup',
  'fish_soup_absolut',
  'soup_absolut_delici',
  'absolut_delici_yknow',
  'delici_yknow_like',
  'yknow_like_good',
  'like_good_guest',
  'good_guest_want',
  'guest_want_compliment',
  'want_compliment_cook',
  'compliment_cook_delici',
  'cook_delici_-',
  'delici_-_saffron',
  '-_saffron_perfect',
  'saffron_perfect_autumn',
  'perfect_autumn_soup',
  'autumn_soup_bf',
  'soup_bf_brother',
  'bf_brother_look',
  'brother_look_surpris',
  'look_surpris_bf',
  'surpris_bf_father',
  'bf_father_hush',
  'father_hush_big',
  'hush_big_time',
  'big_time_realli',
  'time_realli_aggress',
  'realli_aggress_shhh',
  'aggress_shhh_finger',
  'shhh_finger_lip',
  'finger_lip_said',
  'lip_said_let',
  'said_let_food',
  'let_food_keep',
  'food_keep_us',
  'keep_us_quiet',
  'us_quiet_aplogis',
  'quiet_aplogis_thought',
  'aplogis_thought_accident',
  'thought_accident_spoken',
  'accident_spoken_food',
  'spoken_food_mouth',
  'food_mouth_someth',
  'mouth_someth_minut',
  'someth_minut_pass',
  'minut_pass_nobodi',
  'pass_nobodi_said',
  'nobodi_said_word',
  'said_word_super',
  'word_super_awkward',
  'super_awkward_weird',
  'awkward_weird_especi',
  'weird_especi_sinc',
  'especi_sinc_talk',
  'sinc_talk_bf',
  'talk_bf_also',
  'bf_also_unusu',
  'also_unusu_quiet',
  'unusu_quiet_minut',
  'quiet_minut_weird',
  'minut_weird_ask',
  'weird_ask_day',
  'ask_day_nice',
  'day_nice_invit',
  'nice_invit_mother',
  'invit_mother_hush',
  'mother_hush_thing',
  'hush_thing_awkward',
  'thing_awkward_think',
  'awkward_think_click',
  'think_click_speak',
  'click_speak_tabl',
  'speak_tabl_let',
  'tabl_let_food',
  'let_food_keep',
  'food_keep_us',
  'keep_us_quiet',
  'us_quiet_realli',
  'quiet_realli_quiet',
  'realli_quiet_super',
  'quiet_super_awkward',
  'super_awkward_situat',
  'awkward_situat_deal',
  'situat_deal_imagin',
  'deal_imagin_sit',
  'imagin_sit_tabl',
  'sit_tabl_peopl',
  'tabl_peopl_everybodi',
  'peopl_everybodi_eat',
  'everybodi_eat_soup',
  'eat_soup_look',
  'soup_look_dead',
  'look_dead_seriou',
  'dead_seriou_laugh',
  'seriou_laugh_slip',
  'laugh_slip_end',
  'slip_end_told',
  'end_told_bf',
  'told_bf_parent',
  'bf_parent_disrespect',
  'parent_disrespect_etc',
  'disrespect_etc_respect',
  'etc_respect_household',
  'respect_household_work',
  'household_work_could',
  'work_could_eat',
  'could_eat_alon',
  'eat_alon_kitchen',
  'alon_kitchen_eat',
  'kitchen_eat_like',
  'eat_like_separ',
  'like_separ_dine',
  'separ_dine_room',
  'dine_room_sooo',
  'room_sooo_thank',
  'sooo_thank_food',
  'thank_food_left',
  'food_left_hotel',
  'left_hotel_bf',
  'hotel_bf_stay',
  'bf_stay_boyfriend',
  'stay_boyfriend_later',
  'boyfriend_later_told',
  'later_told_asshol',
  'told_asshol_move',
  'asshol_move_kept',
  'move_kept_quiet',
  'kept_quiet_eat',
  'quiet_eat_alon',
  'eat_alon_kitchen',
  'alon_kitchen_understand',
  'kitchen_understand_famili',
  'understand_famili_tradit',
  'famili_tradit_rule',
  'tradit_rule_weird',
  'rule_weird_take',
  'weird_take_anymor',
  'take_anymor_asshol',
  'anymor_asshol_though'],
 ['background',
  'best',
  'friend',
  'gotten',
  'go',
  'spartan',
  'race',
  'small',
  'group',
  'friend',
  'start',
  'go',
  'local',
  'one',
  'recent',
  'heard',
  'one',
  'anoth',
  'state',
  'want',
  'go',
  'compet',
  'anywher',
  'stay',
  'ask',
  'could',
  'borrow',
  'truck',
  'trailer',
  'tow',
  'behind',
  'camper',
  'weekend',
  'said',
  'comfort',
  'take',
  'truck',
  'trailer',
  'id',
  'drive',
  'camper',
  'event',
  'made',
  'three',
  'hour',
  'trip',
  'set',
  'everyth',
  'area',
  'race',
  'take',
  'place',
  'next',
  'day',
  'habit',
  'leav',
  'key',
  'hook',
  'next',
  'door',
  'bedroom',
  'camper',
  'rememb',
  'come',
  'nightfal',
  'went',
  'take',
  'phone',
  'call',
  'outsid',
  'end',
  'wander',
  'around',
  'ground',
  'hour',
  'got',
  'back',
  'camper',
  'door',
  'lock',
  'told',
  'best',
  'friend',
  'older',
  'friend',
  'window',
  'enough',
  'room',
  'trailer',
  'reach',
  'key',
  'unlock',
  'door',
  'realiz',
  'left',
  'insid',
  'camper',
  'hook',
  'room',
  'call',
  'best',
  'friend',
  'outsid',
  'told',
  'sorri',
  'bro',
  'noth',
  'end',
  'sleep',
  'truck',
  'night',
  'fortun',
  'left',
  'unlock',
  'accid',
  'race',
  'began',
  'came',
  'meander',
  'trailer',
  'woke',
  'apolog',
  'way',
  'race',
  'hook',
  'truck',
  'back',
  'trailer',
  'close',
  'lock',
  'everyth',
  'wait',
  'finish',
  'start',
  'walk',
  'back',
  'trailer',
  'think',
  'realli',
  'wide',
  'open',
  'field',
  'saw',
  'come',
  'start',
  'truck',
  'drove',
  'properti',
  'chase',
  'behind',
  'made',
  'three',
  'hour',
  'trip',
  'back',
  'home',
  'declin',
  'call',
  'call',
  'final',
  'got',
  'home',
  'final',
  'took',
  'best',
  'friend',
  'call',
  'start',
  'yell',
  'say',
  'would',
  'way',
  'home',
  'said',
  'sorri',
  'made',
  'sleep',
  'truck',
  'solid',
  'told',
  'better',
  'way',
  'handl',
  'leav',
  'unfamiliar',
  'citi',
  'way',
  'home',
  'think',
  'end',
  'call',
  'dad',
  'come',
  'get',
  'right',
  'better',
  'way',
  'handl',
  'felt',
  'justifi',
  'said',
  'kinda',
  'doubt',
  'decis',
  'asshol',
  'background_best',
  'best_friend',
  'friend_gotten',
  'gotten_go',
  'go_spartan',
  'spartan_race',
  'race_small',
  'small_group',
  'group_friend',
  'friend_start',
  'start_go',
  'go_local',
  'local_one',
  'one_recent',
  'recent_heard',
  'heard_one',
  'one_anoth',
  'anoth_state',
  'state_want',
  'want_go',
  'go_compet',
  'compet_anywher',
  'anywher_stay',
  'stay_ask',
  'ask_could',
  'could_borrow',
  'borrow_truck',
  'truck_trailer',
  'trailer_tow',
  'tow_behind',
  'behind_camper',
  'camper_weekend',
  'weekend_said',
  'said_comfort',
  'comfort_take',
  'take_truck',
  'truck_trailer',
  'trailer_id',
  'id_drive',
  'drive_camper',
  'camper_event',
  'event_made',
  'made_three',
  'three_hour',
  'hour_trip',
  'trip_set',
  'set_everyth',
  'everyth_area',
  'area_race',
  'race_take',
  'take_place',
  'place_next',
  'next_day',
  'day_habit',
  'habit_leav',
  'leav_key',
  'key_hook',
  'hook_next',
  'next_door',
  'door_bedroom',
  'bedroom_camper',
  'camper_rememb',
  'rememb_come',
  'come_nightfal',
  'nightfal_went',
  'went_take',
  'take_phone',
  'phone_call',
  'call_outsid',
  'outsid_end',
  'end_wander',
  'wander_around',
  'around_ground',
  'ground_hour',
  'hour_got',
  'got_back',
  'back_camper',
  'camper_door',
  'door_lock',
  'lock_told',
  'told_best',
  'best_friend',
  'friend_older',
  'older_friend',
  'friend_window',
  'window_enough',
  'enough_room',
  'room_trailer',
  'trailer_reach',
  'reach_key',
  'key_unlock',
  'unlock_door',
  'door_realiz',
  'realiz_left',
  'left_insid',
  'insid_camper',
  'camper_hook',
  'hook_room',
  'room_call',
  'call_best',
  'best_friend',
  'friend_outsid',
  'outsid_told',
  'told_sorri',
  'sorri_bro',
  'bro_noth',
  'noth_end',
  'end_sleep',
  'sleep_truck',
  'truck_night',
  'night_fortun',
  'fortun_left',
  'left_unlock',
  'unlock_accid',
  'accid_race',
  'race_began',
  'began_came',
  'came_meander',
  'meander_trailer',
  'trailer_woke',
  'woke_apolog',
  'apolog_way',
  'way_race',
  'race_hook',
  'hook_truck',
  'truck_back',
  'back_trailer',
  'trailer_close',
  'close_lock',
  'lock_everyth',
  'everyth_wait',
  'wait_finish',
  'finish_start',
  'start_walk',
  'walk_back',
  'back_trailer',
  'trailer_think',
  'think_realli',
  'realli_wide',
  'wide_open',
  'open_field',
  'field_saw',
  'saw_come',
  'come_start',
  'start_truck',
  'truck_drove',
  'drove_properti',
  'properti_chase',
  'chase_behind',
  'behind_made',
  'made_three',
  'three_hour',
  'hour_trip',
  'trip_back',
  'back_home',
  'home_declin',
  'declin_call',
  'call_call',
  'call_final',
  'final_got',
  'got_home',
  'home_final',
  'final_took',
  'took_best',
  'best_friend',
  'friend_call',
  'call_start',
  'start_yell',
  'yell_say',
  'say_would',
  'would_way',
  'way_home',
  'home_said',
  'said_sorri',
  'sorri_made',
  'made_sleep',
  'sleep_truck',
  'truck_solid',
  'solid_told',
  'told_better',
  'better_way',
  'way_handl',
  'handl_leav',
  'leav_unfamiliar',
  'unfamiliar_citi',
  'citi_way',
  'way_home',
  'home_think',
  'think_end',
  'end_call',
  'call_dad',
  'dad_come',
  'come_get',
  'get_right',
  'right_better',
  'better_way',
  'way_handl',
  'handl_felt',
  'felt_justifi',
  'justifi_said',
  'said_kinda',
  'kinda_doubt',
  'doubt_decis',
  'decis_asshol',
  'background_best_friend',
  'best_friend_gotten',
  'friend_gotten_go',
  'gotten_go_spartan',
  'go_spartan_race',
  'spartan_race_small',
  'race_small_group',
  'small_group_friend',
  'group_friend_start',
  'friend_start_go',
  'start_go_local',
  'go_local_one',
  'local_one_recent',
  'one_recent_heard',
  'recent_heard_one',
  'heard_one_anoth',
  'one_anoth_state',
  'anoth_state_want',
  'state_want_go',
  'want_go_compet',
  'go_compet_anywher',
  'compet_anywher_stay',
  'anywher_stay_ask',
  'stay_ask_could',
  'ask_could_borrow',
  'could_borrow_truck',
  'borrow_truck_trailer',
  'truck_trailer_tow',
  'trailer_tow_behind',
  'tow_behind_camper',
  'behind_camper_weekend',
  'camper_weekend_said',
  'weekend_said_comfort',
  'said_comfort_take',
  'comfort_take_truck',
  'take_truck_trailer',
  'truck_trailer_id',
  'trailer_id_drive',
  'id_drive_camper',
  'drive_camper_event',
  'camper_event_made',
  'event_made_three',
  'made_three_hour',
  'three_hour_trip',
  'hour_trip_set',
  'trip_set_everyth',
  'set_everyth_area',
  'everyth_area_race',
  'area_race_take',
  'race_take_place',
  'take_place_next',
  'place_next_day',
  'next_day_habit',
  'day_habit_leav',
  'habit_leav_key',
  'leav_key_hook',
  'key_hook_next',
  'hook_next_door',
  'next_door_bedroom',
  'door_bedroom_camper',
  'bedroom_camper_rememb',
  'camper_rememb_come',
  'rememb_come_nightfal',
  'come_nightfal_went',
  'nightfal_went_take',
  'went_take_phone',
  'take_phone_call',
  'phone_call_outsid',
  'call_outsid_end',
  'outsid_end_wander',
  'end_wander_around',
  'wander_around_ground',
  'around_ground_hour',
  'ground_hour_got',
  'hour_got_back',
  'got_back_camper',
  'back_camper_door',
  'camper_door_lock',
  'door_lock_told',
  'lock_told_best',
  'told_best_friend',
  'best_friend_older',
  'friend_older_friend',
  'older_friend_window',
  'friend_window_enough',
  'window_enough_room',
  'enough_room_trailer',
  'room_trailer_reach',
  'trailer_reach_key',
  'reach_key_unlock',
  'key_unlock_door',
  'unlock_door_realiz',
  'door_realiz_left',
  'realiz_left_insid',
  'left_insid_camper',
  'insid_camper_hook',
  'camper_hook_room',
  'hook_room_call',
  'room_call_best',
  'call_best_friend',
  'best_friend_outsid',
  'friend_outsid_told',
  'outsid_told_sorri',
  'told_sorri_bro',
  'sorri_bro_noth',
  'bro_noth_end',
  'noth_end_sleep',
  'end_sleep_truck',
  'sleep_truck_night',
  'truck_night_fortun',
  'night_fortun_left',
  'fortun_left_unlock',
  'left_unlock_accid',
  'unlock_accid_race',
  'accid_race_began',
  'race_began_came',
  'began_came_meander',
  'came_meander_trailer',
  'meander_trailer_woke',
  'trailer_woke_apolog',
  'woke_apolog_way',
  'apolog_way_race',
  'way_race_hook',
  'race_hook_truck',
  'hook_truck_back',
  'truck_back_trailer',
  'back_trailer_close',
  'trailer_close_lock',
  'close_lock_everyth',
  'lock_everyth_wait',
  'everyth_wait_finish',
  'wait_finish_start',
  'finish_start_walk',
  'start_walk_back',
  'walk_back_trailer',
  'back_trailer_think',
  'trailer_think_realli',
  'think_realli_wide',
  'realli_wide_open',
  'wide_open_field',
  'open_field_saw',
  'field_saw_come',
  'saw_come_start',
  'come_start_truck',
  'start_truck_drove',
  'truck_drove_properti',
  'drove_properti_chase',
  'properti_chase_behind',
  'chase_behind_made',
  'behind_made_three',
  'made_three_hour',
  'three_hour_trip',
  'hour_trip_back',
  'trip_back_home',
  'back_home_declin',
  'home_declin_call',
  'declin_call_call',
  'call_call_final',
  'call_final_got',
  'final_got_home',
  'got_home_final',
  'home_final_took',
  'final_took_best',
  'took_best_friend',
  'best_friend_call',
  'friend_call_start',
  'call_start_yell',
  'start_yell_say',
  'yell_say_would',
  'say_would_way',
  'would_way_home',
  'way_home_said',
  'home_said_sorri',
  'said_sorri_made',
  'sorri_made_sleep',
  'made_sleep_truck',
  'sleep_truck_solid',
  'truck_solid_told',
  'solid_told_better',
  'told_better_way',
  'better_way_handl',
  'way_handl_leav',
  'handl_leav_unfamiliar',
  'leav_unfamiliar_citi',
  'unfamiliar_citi_way',
  'citi_way_home',
  'way_home_think',
  'home_think_end',
  'think_end_call',
  'end_call_dad',
  'call_dad_come',
  'dad_come_get',
  'come_get_right',
  'get_right_better',
  'right_better_way',
  'better_way_handl',
  'way_handl_felt',
  'handl_felt_justifi',
  'felt_justifi_said',
  'justifi_said_kinda',
  'said_kinda_doubt',
  'kinda_doubt_decis',
  'doubt_decis_asshol'],
 ['boyfriend',
  'grew',
  'hous',
  'valu',
  'outdat',
  'gender',
  'norm',
  'women',
  'alway',
  'respons',
  'cook',
  'clean',
  'learn',
  'life',
  'move',
  'colleg',
  'good',
  'thing',
  'mind',
  'help',
  'dish',
  'handl',
  'laundri',
  'one',
  'thing',
  'cant',
  'seem',
  'get',
  'learn',
  'cook',
  'thing',
  'microwav',
  'frozen',
  'meal',
  'ive',
  'tri',
  'teach',
  'basic',
  'seem',
  'like',
  'goe',
  'one',
  'ear',
  'come',
  'still',
  'cant',
  'turn',
  'oven',
  'use',
  'stove',
  'without',
  'help',
  'toaster',
  'complic',
  'use',
  'claim',
  'know',
  'boil',
  'egg',
  'cook',
  'rice',
  'even',
  'measur',
  'ingredi',
  'use',
  'cup',
  'understand',
  'cant',
  'grasp',
  'fine',
  'thing',
  'part',
  'may',
  'asshol',
  'went',
  'trip',
  'two',
  'week',
  'ago',
  'work',
  'im',
  'charg',
  'buy',
  'groceri',
  'separ',
  'account',
  'realiz',
  'expens',
  'frozen',
  'meal',
  'actual',
  'three',
  'four',
  'dollar',
  'said',
  'screw',
  'bought',
  'easiest',
  'ingredi',
  'could',
  'find',
  'lot',
  'cheaper',
  'cook',
  'like',
  'leftov',
  'cook',
  'ahead',
  'left',
  'sat',
  'gave',
  'long',
  'lesson',
  'use',
  'oven',
  'toaster',
  'stove',
  'well',
  'boilscrambl',
  'egg',
  'toast',
  'piec',
  'toast',
  'boil',
  'ricenoodl',
  'heat',
  'pasta',
  'sauc',
  'also',
  'taught',
  'pan',
  'fri',
  'thing',
  'like',
  'onion',
  'veggi',
  'tell',
  'readi',
  'case',
  'want',
  'cook',
  'lunch',
  'dinner',
  'also',
  'bought',
  'thing',
  'make',
  'salad',
  'fix',
  'sandwich',
  'come',
  'back',
  'week',
  'later',
  'angri',
  'claim',
  'practic',
  'left',
  'starv',
  'know',
  'troubl',
  'cook',
  'retali',
  'say',
  'show',
  'get',
  'whole',
  'rang',
  'excus',
  'set',
  'ovenstov',
  'temp',
  'complic',
  'cut',
  'finger',
  'chop',
  'onion',
  'chop',
  'cut',
  'heal',
  'like',
  'salad',
  'kit',
  'everyth',
  'balanc',
  'appar',
  'ate',
  'sandwich',
  'good',
  'fast',
  'food',
  'week',
  'think',
  'im',
  'major',
  'asshol',
  'tell',
  'im',
  'buy',
  'frozen',
  'meal',
  'leav',
  'alon',
  'fend',
  'one',
  'hand',
  'think',
  'shitti',
  'tell',
  'buy',
  'meal',
  'someon',
  'grew',
  'home',
  'pretti',
  'much',
  'boil',
  'hotdog',
  'veggi',
  'properli',
  'learn',
  'cook',
  'move',
  'feel',
  'time',
  'month',
  'get',
  'simplest',
  'concept',
  'im',
  'left',
  'feel',
  'partial',
  'justifi',
  'action',
  'reddit',
  'aita',
  'boyfriend_grew',
  'grew_hous',
  'hous_valu',
  'valu_outdat',
  'outdat_gender',
  'gender_norm',
  'norm_women',
  'women_alway',
  'alway_respons',
  'respons_cook',
  'cook_clean',
  'clean_learn',
  'learn_life',
  'life_move',
  'move_colleg',
  'colleg_good',
  'good_thing',
  'thing_mind',
  'mind_help',
  'help_dish',
  'dish_handl',
  'handl_laundri',
  'laundri_one',
  'one_thing',
  'thing_cant',
  'cant_seem',
  'seem_get',
  'get_learn',
  'learn_cook',
  'cook_thing',
  'thing_microwav',
  'microwav_frozen',
  'frozen_meal',
  'meal_ive',
  'ive_tri',
  'tri_teach',
  'teach_basic',
  'basic_seem',
  'seem_like',
  'like_goe',
  'goe_one',
  'one_ear',
  'ear_come',
  'come_still',
  'still_cant',
  'cant_turn',
  'turn_oven',
  'oven_use',
  'use_stove',
  'stove_without',
  'without_help',
  'help_toaster',
  'toaster_complic',
  'complic_use',
  'use_claim',
  'claim_know',
  'know_boil',
  'boil_egg',
  'egg_cook',
  'cook_rice',
  'rice_even',
  'even_measur',
  'measur_ingredi',
  'ingredi_use',
  'use_cup',
  'cup_understand',
  'understand_cant',
  'cant_grasp',
  'grasp_fine',
  'fine_thing',
  'thing_part',
  'part_may',
  'may_asshol',
  'asshol_went',
  'went_trip',
  'trip_two',
  'two_week',
  'week_ago',
  'ago_work',
  'work_im',
  'im_charg',
  'charg_buy',
  'buy_groceri',
  'groceri_separ',
  'separ_account',
  'account_realiz',
  'realiz_expens',
  'expens_frozen',
  'frozen_meal',
  'meal_actual',
  'actual_three',
  'three_four',
  'four_dollar',
  'dollar_said',
  'said_screw',
  'screw_bought',
  'bought_easiest',
  'easiest_ingredi',
  'ingredi_could',
  'could_find',
  'find_lot',
  'lot_cheaper',
  'cheaper_cook',
  'cook_like',
  'like_leftov',
  'leftov_cook',
  'cook_ahead',
  'ahead_left',
  'left_sat',
  'sat_gave',
  'gave_long',
  'long_lesson',
  'lesson_use',
  'use_oven',
  'oven_toaster',
  'toaster_stove',
  'stove_well',
  'well_boilscrambl',
  'boilscrambl_egg',
  'egg_toast',
  'toast_piec',
  'piec_toast',
  'toast_boil',
  'boil_ricenoodl',
  'ricenoodl_heat',
  'heat_pasta',
  'pasta_sauc',
  'sauc_also',
  'also_taught',
  'taught_pan',
  'pan_fri',
  'fri_thing',
  'thing_like',
  'like_onion',
  'onion_veggi',
  'veggi_tell',
  'tell_readi',
  'readi_case',
  'case_want',
  'want_cook',
  'cook_lunch',
  'lunch_dinner',
  'dinner_also',
  'also_bought',
  'bought_thing',
  'thing_make',
  'make_salad',
  'salad_fix',
  'fix_sandwich',
  'sandwich_come',
  'come_back',
  'back_week',
  'week_later',
  'later_angri',
  'angri_claim',
  'claim_practic',
  'practic_left',
  'left_starv',
  'starv_know',
  'know_troubl',
  'troubl_cook',
  'cook_retali',
  'retali_say',
  'say_show',
  'show_get',
  'get_whole',
  'whole_rang',
  'rang_excus',
  'excus_set',
  'set_ovenstov',
  'ovenstov_temp',
  'temp_complic',
  'complic_cut',
  'cut_finger',
  'finger_chop',
  'chop_onion',
  'onion_chop',
  'chop_cut',
  'cut_heal',
  'heal_like',
  'like_salad',
  'salad_kit',
  'kit_everyth',
  'everyth_balanc',
  'balanc_appar',
  'appar_ate',
  'ate_sandwich',
  'sandwich_good',
  'good_fast',
  'fast_food',
  'food_week',
  'week_think',
  'think_im',
  'im_major',
  'major_asshol',
  'asshol_tell',
  'tell_im',
  'im_buy',
  'buy_frozen',
  'frozen_meal',
  'meal_leav',
  'leav_alon',
  'alon_fend',
  'fend_one',
  'one_hand',
  'hand_think',
  'think_shitti',
  'shitti_tell',
  'tell_buy',
  'buy_meal',
  'meal_someon',
  'someon_grew',
  'grew_home',
  'home_pretti',
  'pretti_much',
  'much_boil',
  'boil_hotdog',
  'hotdog_veggi',
  'veggi_properli',
  'properli_learn',
  'learn_cook',
  'cook_move',
  'move_feel',
  'feel_time',
  'time_month',
  'month_get',
  'get_simplest',
  'simplest_concept',
  'concept_im',
  'im_left',
  'left_feel',
  'feel_partial',
  'partial_justifi',
  'justifi_action',
  'action_reddit',
  'reddit_aita',
  'boyfriend_grew_hous',
  'grew_hous_valu',
  'hous_valu_outdat',
  'valu_outdat_gender',
  'outdat_gender_norm',
  'gender_norm_women',
  'norm_women_alway',
  'women_alway_respons',
  'alway_respons_cook',
  'respons_cook_clean',
  'cook_clean_learn',
  'clean_learn_life',
  'learn_life_move',
  'life_move_colleg',
  'move_colleg_good',
  'colleg_good_thing',
  'good_thing_mind',
  'thing_mind_help',
  'mind_help_dish',
  'help_dish_handl',
  'dish_handl_laundri',
  'handl_laundri_one',
  'laundri_one_thing',
  'one_thing_cant',
  'thing_cant_seem',
  'cant_seem_get',
  'seem_get_learn',
  'get_learn_cook',
  'learn_cook_thing',
  'cook_thing_microwav',
  'thing_microwav_frozen',
  'microwav_frozen_meal',
  'frozen_meal_ive',
  'meal_ive_tri',
  'ive_tri_teach',
  'tri_teach_basic',
  'teach_basic_seem',
  'basic_seem_like',
  'seem_like_goe',
  'like_goe_one',
  'goe_one_ear',
  'one_ear_come',
  'ear_come_still',
  'come_still_cant',
  'still_cant_turn',
  'cant_turn_oven',
  'turn_oven_use',
  'oven_use_stove',
  'use_stove_without',
  'stove_without_help',
  'without_help_toaster',
  'help_toaster_complic',
  'toaster_complic_use',
  'complic_use_claim',
  'use_claim_know',
  'claim_know_boil',
  'know_boil_egg',
  'boil_egg_cook',
  'egg_cook_rice',
  'cook_rice_even',
  'rice_even_measur',
  'even_measur_ingredi',
  'measur_ingredi_use',
  'ingredi_use_cup',
  'use_cup_understand',
  'cup_understand_cant',
  'understand_cant_grasp',
  'cant_grasp_fine',
  'grasp_fine_thing',
  'fine_thing_part',
  'thing_part_may',
  'part_may_asshol',
  'may_asshol_went',
  'asshol_went_trip',
  'went_trip_two',
  'trip_two_week',
  'two_week_ago',
  'week_ago_work',
  'ago_work_im',
  'work_im_charg',
  'im_charg_buy',
  'charg_buy_groceri',
  'buy_groceri_separ',
  'groceri_separ_account',
  'separ_account_realiz',
  'account_realiz_expens',
  'realiz_expens_frozen',
  'expens_frozen_meal',
  'frozen_meal_actual',
  'meal_actual_three',
  'actual_three_four',
  'three_four_dollar',
  'four_dollar_said',
  'dollar_said_screw',
  'said_screw_bought',
  'screw_bought_easiest',
  'bought_easiest_ingredi',
  'easiest_ingredi_could',
  'ingredi_could_find',
  'could_find_lot',
  'find_lot_cheaper',
  'lot_cheaper_cook',
  'cheaper_cook_like',
  'cook_like_leftov',
  'like_leftov_cook',
  'leftov_cook_ahead',
  'cook_ahead_left',
  'ahead_left_sat',
  'left_sat_gave',
  'sat_gave_long',
  'gave_long_lesson',
  'long_lesson_use',
  'lesson_use_oven',
  'use_oven_toaster',
  'oven_toaster_stove',
  'toaster_stove_well',
  'stove_well_boilscrambl',
  'well_boilscrambl_egg',
  'boilscrambl_egg_toast',
  'egg_toast_piec',
  'toast_piec_toast',
  'piec_toast_boil',
  'toast_boil_ricenoodl',
  'boil_ricenoodl_heat',
  'ricenoodl_heat_pasta',
  'heat_pasta_sauc',
  'pasta_sauc_also',
  'sauc_also_taught',
  'also_taught_pan',
  'taught_pan_fri',
  'pan_fri_thing',
  'fri_thing_like',
  'thing_like_onion',
  'like_onion_veggi',
  'onion_veggi_tell',
  'veggi_tell_readi',
  'tell_readi_case',
  'readi_case_want',
  'case_want_cook',
  'want_cook_lunch',
  'cook_lunch_dinner',
  'lunch_dinner_also',
  'dinner_also_bought',
  'also_bought_thing',
  'bought_thing_make',
  'thing_make_salad',
  'make_salad_fix',
  'salad_fix_sandwich',
  'fix_sandwich_come',
  'sandwich_come_back',
  'come_back_week',
  'back_week_later',
  'week_later_angri',
  'later_angri_claim',
  'angri_claim_practic',
  'claim_practic_left',
  'practic_left_starv',
  'left_starv_know',
  'starv_know_troubl',
  'know_troubl_cook',
  'troubl_cook_retali',
  'cook_retali_say',
  'retali_say_show',
  'say_show_get',
  'show_get_whole',
  'get_whole_rang',
  'whole_rang_excus',
  'rang_excus_set',
  'excus_set_ovenstov',
  'set_ovenstov_temp',
  'ovenstov_temp_complic',
  'temp_complic_cut',
  'complic_cut_finger',
  'cut_finger_chop',
  'finger_chop_onion',
  'chop_onion_chop',
  'onion_chop_cut',
  'chop_cut_heal',
  'cut_heal_like',
  'heal_like_salad',
  'like_salad_kit',
  'salad_kit_everyth',
  'kit_everyth_balanc',
  'everyth_balanc_appar',
  'balanc_appar_ate',
  'appar_ate_sandwich',
  'ate_sandwich_good',
  'sandwich_good_fast',
  'good_fast_food',
  'fast_food_week',
  'food_week_think',
  'week_think_im',
  'think_im_major',
  'im_major_asshol',
  'major_asshol_tell',
  'asshol_tell_im',
  'tell_im_buy',
  'im_buy_frozen',
  'buy_frozen_meal',
  'frozen_meal_leav',
  'meal_leav_alon',
  'leav_alon_fend',
  'alon_fend_one',
  'fend_one_hand',
  'one_hand_think',
  'hand_think_shitti',
  'think_shitti_tell',
  'shitti_tell_buy',
  'tell_buy_meal',
  'buy_meal_someon',
  'meal_someon_grew',
  'someon_grew_home',
  'grew_home_pretti',
  'home_pretti_much',
  'pretti_much_boil',
  'much_boil_hotdog',
  'boil_hotdog_veggi',
  'hotdog_veggi_properli',
  'veggi_properli_learn',
  'properli_learn_cook',
  'learn_cook_move',
  'cook_move_feel',
  'move_feel_time',
  'feel_time_month',
  'time_month_get',
  'month_get_simplest',
  'get_simplest_concept',
  'simplest_concept_im',
  'concept_im_left',
  'im_left_feel',
  'left_feel_partial',
  'feel_partial_justifi',
  'partial_justifi_action',
  'justifi_action_reddit',
  'action_reddit_aita'],
 ['im',
  'ah',
  'ill',
  'im',
  'sorri',
  'like',
  'would',
  'good',
  'know',
  'rest',
  'famili',
  'think',
  'went',
  'far',
  'mom',
  'die',
  'leukemia',
  'memori',
  'sick',
  'get',
  'spend',
  'lot',
  'time',
  'last',
  'year',
  'artist',
  'anymor',
  'would',
  'make',
  'littl',
  'collag',
  'hospit',
  'draw',
  'photo',
  'messag',
  'grandmoth',
  'put',
  'book',
  'die',
  'want',
  'like',
  'mom',
  'counselor',
  'thought',
  'would',
  'help',
  'start',
  'journal',
  'would',
  'kind',
  'similar',
  'thing',
  'ive',
  'done',
  'least',
  'one',
  'page',
  'week',
  'year',
  'ever',
  'sinc',
  'mom',
  'die',
  'miss',
  'someth',
  'hard',
  'go',
  'kind',
  'uniqu',
  'record',
  'mental',
  'state',
  'last',
  'year',
  'father',
  'remarri',
  'step-moth',
  'realli',
  'lean',
  'hard',
  'im',
  'mom',
  'father',
  'stop',
  'improv',
  'half-broth',
  'basic',
  'forgot',
  'unfortun',
  'got',
  'cancer',
  'pretti',
  'much',
  'ceas',
  'exist',
  'father',
  'either',
  'work',
  'gone',
  'brother',
  'spent',
  'teen',
  'year',
  'mostli',
  'home',
  'alon',
  'grandpar',
  'mantra',
  'brother',
  'need',
  'focu',
  'might',
  'die',
  'need',
  'selfish',
  'sinc',
  'healthi',
  'stop',
  'tri',
  'talk',
  'dark',
  'time',
  'move',
  'cut',
  'complet',
  'grandpar',
  'let',
  'know',
  'brother',
  'die',
  'coupl',
  'year',
  'ago',
  'respect',
  'desir',
  'remain',
  'nc',
  'father',
  'recent',
  'reach',
  'want',
  'see',
  'talk',
  'went',
  'old',
  'journal',
  'made',
  'powerpoint',
  'imag',
  'entri',
  'talk',
  'frustrat',
  'feel',
  'abandon',
  'unwant',
  'liter',
  'quot',
  'thing',
  'dad',
  'said',
  'argument',
  'even',
  'realli',
  'dark',
  'stuff',
  'serious',
  'depress',
  'end',
  'photo',
  'one',
  'mom',
  'collag',
  'written',
  'rememb',
  'dad',
  'alway',
  'wrote',
  'fail',
  'go',
  'away',
  'underneath',
  'felt',
  'like',
  'abl',
  'see',
  'liter',
  'perspect',
  'would',
  'commun',
  'want',
  'back',
  'better',
  'could',
  'evid',
  'work',
  'littl',
  'well',
  'ive',
  'bombard',
  'famili',
  'tell',
  'understand',
  'want',
  'see',
  'sent',
  'gut',
  'complet',
  'fallen',
  'apart',
  'read',
  'unnecessarili',
  'cruel',
  'mayb',
  'know',
  'bar',
  'kind',
  'weird',
  'sometim',
  'aita',
  'edit',
  '-',
  'coupl',
  'follow',
  'note',
  'sinc',
  'came',
  'comment',
  'love',
  'brother',
  'resent',
  'good',
  'kid',
  'wish',
  'still',
  'us',
  'none',
  'fault',
  'complet',
  'father',
  'lesser',
  'extent',
  'step-moth',
  'parent',
  'prevent',
  'spend',
  'time',
  'got',
  'sicker',
  'allow',
  'even',
  'abl',
  'toward',
  'end',
  'also',
  'struggl',
  'stay',
  'aliv',
  'empathi',
  'understand',
  'father',
  'lost',
  'also',
  'lost',
  'peopl',
  'plu',
  'effect',
  'father',
  'even',
  'excus',
  'complet',
  'shut',
  'kid',
  'complet',
  'life',
  'also',
  'prevent',
  'get',
  'kind',
  'help',
  'understand',
  'depress',
  'freez',
  'ive',
  'still',
  'even',
  'adult',
  'manag',
  'consid',
  'impact',
  'behavior',
  'peopl',
  'bad',
  'given',
  'rais',
  'someon',
  'els',
  'mom',
  'parent',
  'ask',
  'agre',
  'let',
  'stay',
  'full',
  'time',
  'could',
  'dad',
  'abl',
  'occasion',
  'tell',
  'love',
  'even',
  'text',
  'messag',
  'altern',
  'could',
  'live',
  'grandpar',
  'peopl',
  'around',
  'care',
  'everi',
  'day',
  'even',
  'father',
  'got',
  'neither',
  'everi',
  'request',
  'help',
  'kind',
  'met',
  'suck',
  'empath',
  'function',
  'break',
  'insid',
  'cant',
  'empath',
  'gather',
  'rel',
  'back',
  'hard',
  'boundari',
  'set',
  'father',
  'step-moth',
  'split',
  'long',
  'ago',
  'divorc',
  'proceed',
  'reach',
  'rest',
  'famili',
  'upset',
  'respond',
  'time',
  '-',
  'good',
  'place',
  'alreadi',
  'ive',
  'told',
  'care',
  'encourag',
  'keep',
  'away',
  'refus',
  'pass',
  'messag',
  'tri',
  'get',
  'inpati',
  'care',
  'someth',
  'theyr',
  'worri',
  'go',
  'someth',
  'rash',
  'want',
  'anyth',
  'ive',
  'told',
  'want',
  'hear',
  'anyth',
  'happen',
  'point',
  'rest',
  'famili',
  'love',
  'sake',
  'hope',
  'pull',
  'togeth',
  'im_ah',
  'ah_ill',
  'ill_im',
  'im_sorri',
  'sorri_like',
  'like_would',
  'would_good',
  'good_know',
  'know_rest',
  'rest_famili',
  'famili_think',
  'think_went',
  'went_far',
  'far_mom',
  'mom_die',
  'die_leukemia',
  'leukemia_memori',
  'memori_sick',
  'sick_get',
  'get_spend',
  'spend_lot',
  'lot_time',
  'time_last',
  'last_year',
  'year_artist',
  'artist_anymor',
  'anymor_would',
  'would_make',
  'make_littl',
  'littl_collag',
  'collag_hospit',
  'hospit_draw',
  'draw_photo',
  'photo_messag',
  'messag_grandmoth',
  'grandmoth_put',
  'put_book',
  'book_die',
  'die_want',
  'want_like',
  'like_mom',
  'mom_counselor',
  'counselor_thought',
  'thought_would',
  'would_help',
  'help_start',
  'start_journal',
  'journal_would',
  'would_kind',
  'kind_similar',
  'similar_thing',
  'thing_ive',
  'ive_done',
  'done_least',
  'least_one',
  'one_page',
  'page_week',
  'week_year',
  'year_ever',
  'ever_sinc',
  'sinc_mom',
  'mom_die',
  'die_miss',
  'miss_someth',
  'someth_hard',
  'hard_go',
  'go_kind',
  'kind_uniqu',
  'uniqu_record',
  'record_mental',
  'mental_state',
  'state_last',
  'last_year',
  'year_father',
  'father_remarri',
  'remarri_step-moth',
  'step-moth_realli',
  'realli_lean',
  'lean_hard',
  'hard_im',
  'im_mom',
  'mom_father',
  'father_stop',
  'stop_improv',
  'improv_half-broth',
  'half-broth_basic',
  'basic_forgot',
  'forgot_unfortun',
  'unfortun_got',
  'got_cancer',
  'cancer_pretti',
  'pretti_much',
  'much_ceas',
  'ceas_exist',
  'exist_father',
  'father_either',
  'either_work',
  'work_gone',
  'gone_brother',
  'brother_spent',
  'spent_teen',
  'teen_year',
  'year_mostli',
  'mostli_home',
  'home_alon',
  'alon_grandpar',
  'grandpar_mantra',
  'mantra_brother',
  'brother_need',
  'need_focu',
  'focu_might',
  'might_die',
  'die_need',
  'need_selfish',
  'selfish_sinc',
  'sinc_healthi',
  'healthi_stop',
  'stop_tri',
  'tri_talk',
  'talk_dark',
  'dark_time',
  'time_move',
  'move_cut',
  'cut_complet',
  'complet_grandpar',
  'grandpar_let',
  'let_know',
  'know_brother',
  'brother_die',
  'die_coupl',
  'coupl_year',
  'year_ago',
  'ago_respect',
  'respect_desir',
  'desir_remain',
  'remain_nc',
  'nc_father',
  'father_recent',
  'recent_reach',
  'reach_want',
  'want_see',
  'see_talk',
  'talk_went',
  'went_old',
  'old_journal',
  'journal_made',
  'made_powerpoint',
  'powerpoint_imag',
  'imag_entri',
  'entri_talk',
  'talk_frustrat',
  'frustrat_feel',
  'feel_abandon',
  'abandon_unwant',
  'unwant_liter',
  'liter_quot',
  'quot_thing',
  'thing_dad',
  'dad_said',
  'said_argument',
  'argument_even',
  'even_realli',
  'realli_dark',
  'dark_stuff',
  'stuff_serious',
  'serious_depress',
  'depress_end',
  'end_photo',
  'photo_one',
  'one_mom',
  'mom_collag',
  'collag_written',
  'written_rememb',
  'rememb_dad',
  'dad_alway',
  'alway_wrote',
  'wrote_fail',
  'fail_go',
  'go_away',
  'away_underneath',
  'underneath_felt',
  'felt_like',
  'like_abl',
  'abl_see',
  'see_liter',
  'liter_perspect',
  'perspect_would',
  'would_commun',
  'commun_want',
  'want_back',
  'back_better',
  'better_could',
  'could_evid',
  'evid_work',
  'work_littl',
  'littl_well',
  'well_ive',
  'ive_bombard',
  'bombard_famili',
  'famili_tell',
  'tell_understand',
  'understand_want',
  'want_see',
  'see_sent',
  'sent_gut',
  'gut_complet',
  'complet_fallen',
  'fallen_apart',
  'apart_read',
  'read_unnecessarili',
  'unnecessarili_cruel',
  'cruel_mayb',
  'mayb_know',
  'know_bar',
  'bar_kind',
  'kind_weird',
  'weird_sometim',
  'sometim_aita',
  'aita_edit',
  'edit_-',
  '-_coupl',
  'coupl_follow',
  'follow_note',
  'note_sinc',
  'sinc_came',
  'came_comment',
  'comment_love',
  'love_brother',
  'brother_resent',
  'resent_good',
  'good_kid',
  'kid_wish',
  'wish_still',
  'still_us',
  'us_none',
  'none_fault',
  'fault_complet',
  'complet_father',
  'father_lesser',
  'lesser_extent',
  'extent_step-moth',
  'step-moth_parent',
  'parent_prevent',
  'prevent_spend',
  'spend_time',
  'time_got',
  'got_sicker',
  'sicker_allow',
  'allow_even',
  'even_abl',
  'abl_toward',
  'toward_end',
  'end_also',
  'also_struggl',
  'struggl_stay',
  'stay_aliv',
  'aliv_empathi',
  'empathi_understand',
  'understand_father',
  'father_lost',
  'lost_also',
  'also_lost',
  'lost_peopl',
  'peopl_plu',
  'plu_effect',
  'effect_father',
  'father_even',
  'even_excus',
  'excus_complet',
  'complet_shut',
  'shut_kid',
  'kid_complet',
  'complet_life',
  'life_also',
  'also_prevent',
  'prevent_get',
  'get_kind',
  'kind_help',
  'help_understand',
  'understand_depress',
  'depress_freez',
  'freez_ive',
  'ive_still',
  'still_even',
  'even_adult',
  'adult_manag',
  'manag_consid',
  'consid_impact',
  'impact_behavior',
  'behavior_peopl',
  'peopl_bad',
  'bad_given',
  'given_rais',
  'rais_someon',
  'someon_els',
  'els_mom',
  'mom_parent',
  'parent_ask',
  'ask_agre',
  'agre_let',
  'let_stay',
  'stay_full',
  'full_time',
  'time_could',
  'could_dad',
  'dad_abl',
  'abl_occasion',
  'occasion_tell',
  'tell_love',
  'love_even',
  'even_text',
  'text_messag',
  'messag_altern',
  'altern_could',
  'could_live',
  'live_grandpar',
  'grandpar_peopl',
  'peopl_around',
  'around_care',
  'care_everi',
  'everi_day',
  'day_even',
  'even_father',
  'father_got',
  'got_neither',
  'neither_everi',
  'everi_request',
  'request_help',
  'help_kind',
  'kind_met',
  'met_suck',
  'suck_empath',
  'empath_function',
  'function_break',
  'break_insid',
  'insid_cant',
  'cant_empath',
  'empath_gather',
  'gather_rel',
  'rel_back',
  'back_hard',
  'hard_boundari',
  'boundari_set',
  'set_father',
  'father_step-moth',
  'step-moth_split',
  'split_long',
  'long_ago',
  'ago_divorc',
  'divorc_proceed',
  'proceed_reach',
  'reach_rest',
  'rest_famili',
  'famili_upset',
  'upset_respond',
  'respond_time',
  'time_-',
  '-_good',
  'good_place',
  'place_alreadi',
  'alreadi_ive',
  'ive_told',
  'told_care',
  'care_encourag',
  'encourag_keep',
  'keep_away',
  'away_refus',
  'refus_pass',
  'pass_messag',
  'messag_tri',
  'tri_get',
  'get_inpati',
  'inpati_care',
  'care_someth',
  'someth_theyr',
  'theyr_worri',
  'worri_go',
  'go_someth',
  'someth_rash',
  'rash_want',
  'want_anyth',
  'anyth_ive',
  'ive_told',
  'told_want',
  'want_hear',
  'hear_anyth',
  'anyth_happen',
  'happen_point',
  'point_rest',
  'rest_famili',
  'famili_love',
  'love_sake',
  'sake_hope',
  'hope_pull',
  'pull_togeth',
  'im_ah_ill',
  'ah_ill_im',
  'ill_im_sorri',
  'im_sorri_like',
  'sorri_like_would',
  'like_would_good',
  'would_good_know',
  'good_know_rest',
  'know_rest_famili',
  'rest_famili_think',
  'famili_think_went',
  'think_went_far',
  'went_far_mom',
  'far_mom_die',
  'mom_die_leukemia',
  'die_leukemia_memori',
  'leukemia_memori_sick',
  'memori_sick_get',
  'sick_get_spend',
  'get_spend_lot',
  'spend_lot_time',
  'lot_time_last',
  'time_last_year',
  'last_year_artist',
  'year_artist_anymor',
  'artist_anymor_would',
  'anymor_would_make',
  'would_make_littl',
  'make_littl_collag',
  'littl_collag_hospit',
  'collag_hospit_draw',
  'hospit_draw_photo',
  'draw_photo_messag',
  'photo_messag_grandmoth',
  'messag_grandmoth_put',
  'grandmoth_put_book',
  'put_book_die',
  'book_die_want',
  'die_want_like',
  'want_like_mom',
  'like_mom_counselor',
  'mom_counselor_thought',
  'counselor_thought_would',
  'thought_would_help',
  'would_help_start',
  'help_start_journal',
  'start_journal_would',
  'journal_would_kind',
  'would_kind_similar',
  'kind_similar_thing',
  'similar_thing_ive',
  'thing_ive_done',
  'ive_done_least',
  'done_least_one',
  'least_one_page',
  'one_page_week',
  'page_week_year',
  'week_year_ever',
  'year_ever_sinc',
  'ever_sinc_mom',
  'sinc_mom_die',
  'mom_die_miss',
  'die_miss_someth',
  'miss_someth_hard',
  'someth_hard_go',
  'hard_go_kind',
  'go_kind_uniqu',
  'kind_uniqu_record',
  'uniqu_record_mental',
  'record_mental_state',
  'mental_state_last',
  'state_last_year',
  'last_year_father',
  'year_father_remarri',
  'father_remarri_step-moth',
  'remarri_step-moth_realli',
  'step-moth_realli_lean',
  'realli_lean_hard',
  'lean_hard_im',
  'hard_im_mom',
  'im_mom_father',
  'mom_father_stop',
  'father_stop_improv',
  'stop_improv_half-broth',
  'improv_half-broth_basic',
  'half-broth_basic_forgot',
  'basic_forgot_unfortun',
  'forgot_unfortun_got',
  'unfortun_got_cancer',
  'got_cancer_pretti',
  'cancer_pretti_much',
  'pretti_much_ceas',
  'much_ceas_exist',
  'ceas_exist_father',
  'exist_father_either',
  'father_either_work',
  'either_work_gone',
  'work_gone_brother',
  'gone_brother_spent',
  'brother_spent_teen',
  'spent_teen_year',
  'teen_year_mostli',
  'year_mostli_home',
  'mostli_home_alon',
  'home_alon_grandpar',
  'alon_grandpar_mantra',
  'grandpar_mantra_brother',
  'mantra_brother_need',
  'brother_need_focu',
  'need_focu_might',
  'focu_might_die',
  'might_die_need',
  'die_need_selfish',
  'need_selfish_sinc',
  'selfish_sinc_healthi',
  'sinc_healthi_stop',
  'healthi_stop_tri',
  'stop_tri_talk',
  'tri_talk_dark',
  'talk_dark_time',
  'dark_time_move',
  'time_move_cut',
  'move_cut_complet',
  'cut_complet_grandpar',
  'complet_grandpar_let',
  'grandpar_let_know',
  'let_know_brother',
  'know_brother_die',
  'brother_die_coupl',
  'die_coupl_year',
  'coupl_year_ago',
  'year_ago_respect',
  'ago_respect_desir',
  'respect_desir_remain',
  'desir_remain_nc',
  'remain_nc_father',
  'nc_father_recent',
  'father_recent_reach',
  'recent_reach_want',
  'reach_want_see',
  'want_see_talk',
  'see_talk_went',
  'talk_went_old',
  'went_old_journal',
  'old_journal_made',
  'journal_made_powerpoint',
  'made_powerpoint_imag',
  'powerpoint_imag_entri',
  'imag_entri_talk',
  'entri_talk_frustrat',
  'talk_frustrat_feel',
  'frustrat_feel_abandon',
  'feel_abandon_unwant',
  'abandon_unwant_liter',
  'unwant_liter_quot',
  'liter_quot_thing',
  'quot_thing_dad',
  'thing_dad_said',
  'dad_said_argument',
  'said_argument_even',
  'argument_even_realli',
  'even_realli_dark',
  'realli_dark_stuff',
  'dark_stuff_serious',
  'stuff_serious_depress',
  'serious_depress_end',
  'depress_end_photo',
  'end_photo_one',
  'photo_one_mom',
  'one_mom_collag',
  'mom_collag_written',
  'collag_written_rememb',
  'written_rememb_dad',
  'rememb_dad_alway',
  'dad_alway_wrote',
  'alway_wrote_fail',
  'wrote_fail_go',
  'fail_go_away',
  'go_away_underneath',
  'away_underneath_felt',
  'underneath_felt_like',
  'felt_like_abl',
  'like_abl_see',
  'abl_see_liter',
  'see_liter_perspect',
  'liter_perspect_would',
  'perspect_would_commun',
  'would_commun_want',
  'commun_want_back',
  'want_back_better',
  'back_better_could',
  'better_could_evid',
  'could_evid_work',
  'evid_work_littl',
  'work_littl_well',
  'littl_well_ive',
  'well_ive_bombard',
  'ive_bombard_famili',
  'bombard_famili_tell',
  'famili_tell_understand',
  'tell_understand_want',
  'understand_want_see',
  'want_see_sent',
  'see_sent_gut',
  'sent_gut_complet',
  'gut_complet_fallen',
  'complet_fallen_apart',
  'fallen_apart_read',
  'apart_read_unnecessarili',
  ...],
 ['start',
  'work',
  'compani',
  'recent',
  'get',
  'along',
  'cowork',
  'issu',
  'guy',
  'morgan',
  'morgan',
  'understand',
  'everyon',
  'call',
  'handsom',
  'guy',
  'offic',
  'date',
  'cowork',
  'hit',
  'sever',
  'seem',
  'friendli',
  'talk',
  'seem',
  'respect',
  'never',
  'ask',
  'question',
  'outsid',
  'work',
  'offer',
  'buy',
  'lunch',
  'internet',
  'kept',
  'send',
  'funni',
  'meme',
  'stuff',
  'nice',
  'felt',
  'bit',
  'much',
  'ask',
  'stop',
  'start',
  'send',
  'pic',
  'inappropri',
  'text',
  'say',
  'im',
  'marri',
  'inappropri',
  'text',
  'say',
  'lie',
  'marri',
  'get',
  'back',
  'went',
  'nice',
  'attract',
  'im',
  'tri',
  'act',
  'like',
  'like',
  'get',
  'tri',
  'harder',
  'felt',
  'frustrat',
  'especislli',
  'kept',
  'sendig',
  'pic',
  'day',
  'ago',
  'sent',
  '&',
  'ck',
  'pic',
  'told',
  'suck',
  'decid',
  'let',
  'husband',
  'deal',
  'sent',
  'text',
  'back',
  'say',
  'sorri',
  'bud',
  'small',
  'object',
  'chock',
  'hazard',
  'block',
  'day',
  'came',
  'offic',
  'look',
  'furiou',
  'confront',
  'mislead',
  'wed',
  'ring',
  'im',
  'marri',
  'said',
  'need',
  'prove',
  'anyth',
  'anybodi',
  'lead',
  'anyon',
  'said',
  'tri',
  'get',
  'close',
  'told',
  'im',
  'marri',
  'get',
  'go',
  'said',
  'sorri',
  'mayb',
  'basic',
  'tri',
  'enforc',
  'relationship',
  'anyon',
  'regradless',
  'theyr',
  'relationship',
  'said',
  'husband',
  'rude',
  'offens',
  'rush',
  'cowork',
  'said',
  'morgan',
  'asshol',
  'bare',
  'blame',
  'wed',
  'ring',
  'somewhat',
  'mislead',
  'said',
  'think',
  'owe',
  'anyon',
  'explan',
  'refus',
  'apolog',
  'happen',
  'keep',
  'peac',
  'offic',
  'aita',
  'realli',
  'wear',
  'wed',
  'ring',
  'edit',
  'reason',
  'wear',
  'wed',
  'ring',
  'skin',
  'problem',
  'start_work',
  'work_compani',
  'compani_recent',
  'recent_get',
  'get_along',
  'along_cowork',
  'cowork_issu',
  'issu_guy',
  'guy_morgan',
  'morgan_morgan',
  'morgan_understand',
  'understand_everyon',
  'everyon_call',
  'call_handsom',
  'handsom_guy',
  'guy_offic',
  'offic_date',
  'date_cowork',
  'cowork_hit',
  'hit_sever',
  'sever_seem',
  'seem_friendli',
  'friendli_talk',
  'talk_seem',
  'seem_respect',
  'respect_never',
  'never_ask',
  'ask_question',
  'question_outsid',
  'outsid_work',
  'work_offer',
  'offer_buy',
  'buy_lunch',
  'lunch_internet',
  'internet_kept',
  'kept_send',
  'send_funni',
  'funni_meme',
  'meme_stuff',
  'stuff_nice',
  'nice_felt',
  'felt_bit',
  'bit_much',
  'much_ask',
  'ask_stop',
  'stop_start',
  'start_send',
  'send_pic',
  'pic_inappropri',
  'inappropri_text',
  'text_say',
  'say_im',
  'im_marri',
  'marri_inappropri',
  'inappropri_text',
  'text_say',
  'say_lie',
  'lie_marri',
  'marri_get',
  'get_back',
  'back_went',
  'went_nice',
  'nice_attract',
  'attract_im',
  'im_tri',
  'tri_act',
  'act_like',
  'like_like',
  'like_get',
  'get_tri',
  'tri_harder',
  'harder_felt',
  'felt_frustrat',
  'frustrat_especislli',
  'especislli_kept',
  'kept_sendig',
  'sendig_pic',
  'pic_day',
  'day_ago',
  'ago_sent',
  'sent_&',
  '&_ck',
  'ck_pic',
  'pic_told',
  'told_suck',
  'suck_decid',
  'decid_let',
  'let_husband',
  'husband_deal',
  'deal_sent',
  'sent_text',
  'text_back',
  'back_say',
  'say_sorri',
  'sorri_bud',
  'bud_small',
  'small_object',
  'object_chock',
  'chock_hazard',
  'hazard_block',
  'block_day',
  'day_came',
  'came_offic',
  'offic_look',
  'look_furiou',
  'furiou_confront',
  'confront_mislead',
  'mislead_wed',
  'wed_ring',
  'ring_im',
  'im_marri',
  'marri_said',
  'said_need',
  'need_prove',
  'prove_anyth',
  'anyth_anybodi',
  'anybodi_lead',
  'lead_anyon',
  'anyon_said',
  'said_tri',
  'tri_get',
  'get_close',
  'close_told',
  'told_im',
  'im_marri',
  'marri_get',
  'get_go',
  'go_said',
  'said_sorri',
  'sorri_mayb',
  'mayb_basic',
  'basic_tri',
  'tri_enforc',
  'enforc_relationship',
  'relationship_anyon',
  'anyon_regradless',
  'regradless_theyr',
  'theyr_relationship',
  'relationship_said',
  'said_husband',
  'husband_rude',
  'rude_offens',
  'offens_rush',
  'rush_cowork',
  'cowork_said',
  'said_morgan',
  'morgan_asshol',
  'asshol_bare',
  'bare_blame',
  'blame_wed',
  'wed_ring',
  'ring_somewhat',
  'somewhat_mislead',
  'mislead_said',
  'said_think',
  'think_owe',
  'owe_anyon',
  'anyon_explan',
  'explan_refus',
  'refus_apolog',
  'apolog_happen',
  'happen_keep',
  'keep_peac',
  'peac_offic',
  'offic_aita',
  'aita_realli',
  'realli_wear',
  'wear_wed',
  'wed_ring',
  'ring_edit',
  'edit_reason',
  'reason_wear',
  'wear_wed',
  'wed_ring',
  'ring_skin',
  'skin_problem',
  'start_work_compani',
  'work_compani_recent',
  'compani_recent_get',
  'recent_get_along',
  'get_along_cowork',
  'along_cowork_issu',
  'cowork_issu_guy',
  'issu_guy_morgan',
  'guy_morgan_morgan',
  'morgan_morgan_understand',
  'morgan_understand_everyon',
  'understand_everyon_call',
  'everyon_call_handsom',
  'call_handsom_guy',
  'handsom_guy_offic',
  'guy_offic_date',
  'offic_date_cowork',
  'date_cowork_hit',
  'cowork_hit_sever',
  'hit_sever_seem',
  'sever_seem_friendli',
  'seem_friendli_talk',
  'friendli_talk_seem',
  'talk_seem_respect',
  'seem_respect_never',
  'respect_never_ask',
  'never_ask_question',
  'ask_question_outsid',
  'question_outsid_work',
  'outsid_work_offer',
  'work_offer_buy',
  'offer_buy_lunch',
  'buy_lunch_internet',
  'lunch_internet_kept',
  'internet_kept_send',
  'kept_send_funni',
  'send_funni_meme',
  'funni_meme_stuff',
  'meme_stuff_nice',
  'stuff_nice_felt',
  'nice_felt_bit',
  'felt_bit_much',
  'bit_much_ask',
  'much_ask_stop',
  'ask_stop_start',
  'stop_start_send',
  'start_send_pic',
  'send_pic_inappropri',
  'pic_inappropri_text',
  'inappropri_text_say',
  'text_say_im',
  'say_im_marri',
  'im_marri_inappropri',
  'marri_inappropri_text',
  'inappropri_text_say',
  'text_say_lie',
  'say_lie_marri',
  'lie_marri_get',
  'marri_get_back',
  'get_back_went',
  'back_went_nice',
  'went_nice_attract',
  'nice_attract_im',
  'attract_im_tri',
  'im_tri_act',
  'tri_act_like',
  'act_like_like',
  'like_like_get',
  'like_get_tri',
  'get_tri_harder',
  'tri_harder_felt',
  'harder_felt_frustrat',
  'felt_frustrat_especislli',
  'frustrat_especislli_kept',
  'especislli_kept_sendig',
  'kept_sendig_pic',
  'sendig_pic_day',
  'pic_day_ago',
  'day_ago_sent',
  'ago_sent_&',
  'sent_&_ck',
  '&_ck_pic',
  'ck_pic_told',
  'pic_told_suck',
  'told_suck_decid',
  'suck_decid_let',
  'decid_let_husband',
  'let_husband_deal',
  'husband_deal_sent',
  'deal_sent_text',
  'sent_text_back',
  'text_back_say',
  'back_say_sorri',
  'say_sorri_bud',
  'sorri_bud_small',
  'bud_small_object',
  'small_object_chock',
  'object_chock_hazard',
  'chock_hazard_block',
  'hazard_block_day',
  'block_day_came',
  'day_came_offic',
  'came_offic_look',
  'offic_look_furiou',
  'look_furiou_confront',
  'furiou_confront_mislead',
  'confront_mislead_wed',
  'mislead_wed_ring',
  'wed_ring_im',
  'ring_im_marri',
  'im_marri_said',
  'marri_said_need',
  'said_need_prove',
  'need_prove_anyth',
  'prove_anyth_anybodi',
  'anyth_anybodi_lead',
  'anybodi_lead_anyon',
  'lead_anyon_said',
  'anyon_said_tri',
  'said_tri_get',
  'tri_get_close',
  'get_close_told',
  'close_told_im',
  'told_im_marri',
  'im_marri_get',
  'marri_get_go',
  'get_go_said',
  'go_said_sorri',
  'said_sorri_mayb',
  'sorri_mayb_basic',
  'mayb_basic_tri',
  'basic_tri_enforc',
  'tri_enforc_relationship',
  'enforc_relationship_anyon',
  'relationship_anyon_regradless',
  'anyon_regradless_theyr',
  'regradless_theyr_relationship',
  'theyr_relationship_said',
  'relationship_said_husband',
  'said_husband_rude',
  'husband_rude_offens',
  'rude_offens_rush',
  'offens_rush_cowork',
  'rush_cowork_said',
  'cowork_said_morgan',
  'said_morgan_asshol',
  'morgan_asshol_bare',
  'asshol_bare_blame',
  'bare_blame_wed',
  'blame_wed_ring',
  'wed_ring_somewhat',
  'ring_somewhat_mislead',
  'somewhat_mislead_said',
  'mislead_said_think',
  'said_think_owe',
  'think_owe_anyon',
  'owe_anyon_explan',
  'anyon_explan_refus',
  'explan_refus_apolog',
  'refus_apolog_happen',
  'apolog_happen_keep',
  'happen_keep_peac',
  'keep_peac_offic',
  'peac_offic_aita',
  'offic_aita_realli',
  'aita_realli_wear',
  'realli_wear_wed',
  'wear_wed_ring',
  'wed_ring_edit',
  'ring_edit_reason',
  'edit_reason_wear',
  'reason_wear_wed',
  'wear_wed_ring',
  'wed_ring_skin',
  'ring_skin_problem'],
 ['im',
  'still',
  'get',
  'shit',
  'famili',
  'possibl',
  'may',
  'bit',
  'ah',
  'im',
  'player',
  'mom',
  'step-dad',
  'four',
  'step-sibl',
  'famili',
  'im',
  'black',
  'sheep',
  'im',
  'one',
  'marri',
  'kid',
  'prefer',
  'love',
  'live',
  'alon',
  'want',
  'kid',
  'partner',
  'import',
  'famili',
  'ask',
  'im',
  'go',
  'get',
  'boyfriend',
  'settl',
  'sinc',
  'answer',
  'alway',
  'ew',
  'never',
  'go',
  'skip',
  'thanksgiv',
  'mom',
  'insist',
  'want',
  'everyon',
  'home',
  'year',
  'possibl',
  'went',
  'usual',
  'drill',
  'youngest',
  'step-broth',
  'wife',
  'anoth',
  'kid',
  'big',
  'announc',
  'fine',
  'around',
  'end',
  'dinner',
  'one',
  'ssil',
  'ask',
  'im',
  'anxiou',
  'kid',
  'sinc',
  'im',
  'almost',
  'time',
  'run',
  'laugh',
  'said',
  'nah',
  'im',
  'good',
  'led',
  'one',
  'step-broth',
  'say',
  'everi',
  'famili',
  'need',
  'old',
  'maiden',
  'aunt',
  'comment',
  'appreci',
  'said',
  'let',
  'move',
  'mom',
  'said',
  'worri',
  'im',
  'possibl',
  'ah',
  'know',
  'famili',
  'dirt',
  'said',
  'well',
  'im',
  'person',
  'tabl',
  'alcohol',
  'cheater',
  'constantli',
  'broke',
  'af',
  'kid',
  'afford',
  'im',
  'one',
  'worri',
  'brought',
  'thanksgiv',
  'dead',
  'halt',
  'one',
  'said',
  'thing',
  'rest',
  'dinner',
  'text',
  'radioact',
  'still',
  'feel',
  'like',
  'probabl',
  'ride',
  'line',
  'mom',
  'say',
  'caus',
  'lot',
  'problem',
  'among',
  'sibl',
  'also',
  'kinda',
  'start',
  'im_still',
  'still_get',
  'get_shit',
  'shit_famili',
  'famili_possibl',
  'possibl_may',
  'may_bit',
  'bit_ah',
  'ah_im',
  'im_player',
  'player_mom',
  'mom_step-dad',
  'step-dad_four',
  'four_step-sibl',
  'step-sibl_famili',
  'famili_im',
  'im_black',
  'black_sheep',
  'sheep_im',
  'im_one',
  'one_marri',
  'marri_kid',
  'kid_prefer',
  'prefer_love',
  'love_live',
  'live_alon',
  'alon_want',
  'want_kid',
  'kid_partner',
  'partner_import',
  'import_famili',
  'famili_ask',
  'ask_im',
  'im_go',
  'go_get',
  'get_boyfriend',
  'boyfriend_settl',
  'settl_sinc',
  'sinc_answer',
  'answer_alway',
  'alway_ew',
  'ew_never',
  'never_go',
  'go_skip',
  'skip_thanksgiv',
  'thanksgiv_mom',
  'mom_insist',
  'insist_want',
  'want_everyon',
  'everyon_home',
  'home_year',
  'year_possibl',
  'possibl_went',
  'went_usual',
  'usual_drill',
  'drill_youngest',
  'youngest_step-broth',
  'step-broth_wife',
  'wife_anoth',
  'anoth_kid',
  'kid_big',
  'big_announc',
  'announc_fine',
  'fine_around',
  'around_end',
  'end_dinner',
  'dinner_one',
  'one_ssil',
  'ssil_ask',
  'ask_im',
  'im_anxiou',
  'anxiou_kid',
  'kid_sinc',
  'sinc_im',
  'im_almost',
  'almost_time',
  'time_run',
  'run_laugh',
  'laugh_said',
  'said_nah',
  'nah_im',
  'im_good',
  'good_led',
  'led_one',
  'one_step-broth',
  'step-broth_say',
  'say_everi',
  'everi_famili',
  'famili_need',
  'need_old',
  'old_maiden',
  'maiden_aunt',
  'aunt_comment',
  'comment_appreci',
  'appreci_said',
  'said_let',
  'let_move',
  'move_mom',
  'mom_said',
  'said_worri',
  'worri_im',
  'im_possibl',
  'possibl_ah',
  'ah_know',
  'know_famili',
  'famili_dirt',
  'dirt_said',
  'said_well',
  'well_im',
  'im_person',
  'person_tabl',
  'tabl_alcohol',
  'alcohol_cheater',
  'cheater_constantli',
  'constantli_broke',
  'broke_af',
  'af_kid',
  'kid_afford',
  'afford_im',
  'im_one',
  'one_worri',
  'worri_brought',
  'brought_thanksgiv',
  'thanksgiv_dead',
  'dead_halt',
  'halt_one',
  'one_said',
  'said_thing',
  'thing_rest',
  'rest_dinner',
  'dinner_text',
  'text_radioact',
  'radioact_still',
  'still_feel',
  'feel_like',
  'like_probabl',
  'probabl_ride',
  'ride_line',
  'line_mom',
  'mom_say',
  'say_caus',
  'caus_lot',
  'lot_problem',
  'problem_among',
  'among_sibl',
  'sibl_also',
  'also_kinda',
  'kinda_start',
  'im_still_get',
  'still_get_shit',
  'get_shit_famili',
  'shit_famili_possibl',
  'famili_possibl_may',
  'possibl_may_bit',
  'may_bit_ah',
  'bit_ah_im',
  'ah_im_player',
  'im_player_mom',
  'player_mom_step-dad',
  'mom_step-dad_four',
  'step-dad_four_step-sibl',
  'four_step-sibl_famili',
  'step-sibl_famili_im',
  'famili_im_black',
  'im_black_sheep',
  'black_sheep_im',
  'sheep_im_one',
  'im_one_marri',
  'one_marri_kid',
  'marri_kid_prefer',
  'kid_prefer_love',
  'prefer_love_live',
  'love_live_alon',
  'live_alon_want',
  'alon_want_kid',
  'want_kid_partner',
  'kid_partner_import',
  'partner_import_famili',
  'import_famili_ask',
  'famili_ask_im',
  'ask_im_go',
  'im_go_get',
  'go_get_boyfriend',
  'get_boyfriend_settl',
  'boyfriend_settl_sinc',
  'settl_sinc_answer',
  'sinc_answer_alway',
  'answer_alway_ew',
  'alway_ew_never',
  'ew_never_go',
  'never_go_skip',
  'go_skip_thanksgiv',
  'skip_thanksgiv_mom',
  'thanksgiv_mom_insist',
  'mom_insist_want',
  'insist_want_everyon',
  'want_everyon_home',
  'everyon_home_year',
  'home_year_possibl',
  'year_possibl_went',
  'possibl_went_usual',
  'went_usual_drill',
  'usual_drill_youngest',
  'drill_youngest_step-broth',
  'youngest_step-broth_wife',
  'step-broth_wife_anoth',
  'wife_anoth_kid',
  'anoth_kid_big',
  'kid_big_announc',
  'big_announc_fine',
  'announc_fine_around',
  'fine_around_end',
  'around_end_dinner',
  'end_dinner_one',
  'dinner_one_ssil',
  'one_ssil_ask',
  'ssil_ask_im',
  'ask_im_anxiou',
  'im_anxiou_kid',
  'anxiou_kid_sinc',
  'kid_sinc_im',
  'sinc_im_almost',
  'im_almost_time',
  'almost_time_run',
  'time_run_laugh',
  'run_laugh_said',
  'laugh_said_nah',
  'said_nah_im',
  'nah_im_good',
  'im_good_led',
  'good_led_one',
  'led_one_step-broth',
  'one_step-broth_say',
  'step-broth_say_everi',
  'say_everi_famili',
  'everi_famili_need',
  'famili_need_old',
  'need_old_maiden',
  'old_maiden_aunt',
  'maiden_aunt_comment',
  'aunt_comment_appreci',
  'comment_appreci_said',
  'appreci_said_let',
  'said_let_move',
  'let_move_mom',
  'move_mom_said',
  'mom_said_worri',
  'said_worri_im',
  'worri_im_possibl',
  'im_possibl_ah',
  'possibl_ah_know',
  'ah_know_famili',
  'know_famili_dirt',
  'famili_dirt_said',
  'dirt_said_well',
  'said_well_im',
  'well_im_person',
  'im_person_tabl',
  'person_tabl_alcohol',
  'tabl_alcohol_cheater',
  'alcohol_cheater_constantli',
  'cheater_constantli_broke',
  'constantli_broke_af',
  'broke_af_kid',
  'af_kid_afford',
  'kid_afford_im',
  'afford_im_one',
  'im_one_worri',
  'one_worri_brought',
  'worri_brought_thanksgiv',
  'brought_thanksgiv_dead',
  'thanksgiv_dead_halt',
  'dead_halt_one',
  'halt_one_said',
  'one_said_thing',
  'said_thing_rest',
  'thing_rest_dinner',
  'rest_dinner_text',
  'dinner_text_radioact',
  'text_radioact_still',
  'radioact_still_feel',
  'still_feel_like',
  'feel_like_probabl',
  'like_probabl_ride',
  'probabl_ride_line',
  'ride_line_mom',
  'line_mom_say',
  'mom_say_caus',
  'say_caus_lot',
  'caus_lot_problem',
  'lot_problem_among',
  'problem_among_sibl',
  'among_sibl_also',
  'sibl_also_kinda',
  'also_kinda_start'],
 ['marri',
  'husband',
  'year',
  'date',
  'year',
  'want',
  'start',
  'say',
  'realli',
  'good',
  'guy',
  'area',
  'husband',
  'parent',
  'brother',
  'age',
  'ish',
  'brother',
  'girlfriendsfiancé',
  'tradit',
  'go',
  'dinner',
  'month',
  'invit',
  '%',
  'time',
  'ive',
  'talk',
  'husband',
  'brother',
  'fiancé',
  'say',
  'invit',
  'everi',
  'time',
  'say',
  'im',
  'invit',
  'mean',
  'husband',
  'tell',
  'im',
  'go',
  'famili',
  'dinner',
  'probabl',
  'best',
  'sit',
  'one',
  'express',
  'want',
  'come',
  'told',
  'would',
  'best',
  'caus',
  'sever',
  'fight',
  'week',
  'ago',
  'husband',
  'went',
  'famili',
  'dinner',
  'invit',
  'piss',
  'earlier',
  'day',
  'call',
  'made',
  'reserv',
  'restaur',
  'go',
  'husband',
  'left',
  'hous',
  'know',
  'reserv',
  'left',
  'minut',
  'end',
  'seat',
  'tabl',
  'see',
  'famili',
  'got',
  'go',
  'bathroom',
  'walk',
  'right',
  'past',
  'includ',
  'brother',
  'husband',
  'look',
  'complet',
  'shock',
  'ask',
  'told',
  'die',
  'steak',
  'came',
  'got',
  'one',
  'restaur',
  'mother',
  'law',
  'said',
  'rude',
  'interrupt',
  'famili',
  'dinner',
  'point',
  'tri',
  'join',
  'go',
  'bathroom',
  'told',
  'good',
  'meal',
  'left',
  'went',
  'finish',
  'steak',
  'husband',
  'realli',
  'piss',
  'came',
  'home',
  'told',
  'believ',
  'much',
  'asshol',
  'said',
  'asshol',
  'invit',
  'dinner',
  'brother',
  'got',
  'go',
  'husband',
  'said',
  'decis',
  'invit',
  'famili',
  'respect',
  'anyway',
  'way',
  'word',
  'asshol',
  'thrown',
  'around',
  'made',
  'think',
  'sub',
  'want',
  'ask',
  'asshol',
  'edit',
  'know',
  'add',
  'updat',
  'sub',
  'updat',
  'post',
  'profil',
  'marri_husband',
  'husband_year',
  'year_date',
  'date_year',
  'year_want',
  'want_start',
  'start_say',
  'say_realli',
  'realli_good',
  'good_guy',
  'guy_area',
  'area_husband',
  'husband_parent',
  'parent_brother',
  'brother_age',
  'age_ish',
  'ish_brother',
  'brother_girlfriendsfiancé',
  'girlfriendsfiancé_tradit',
  'tradit_go',
  'go_dinner',
  'dinner_month',
  'month_invit',
  'invit_%',
  '%_time',
  'time_ive',
  'ive_talk',
  'talk_husband',
  'husband_brother',
  'brother_fiancé',
  'fiancé_say',
  'say_invit',
  'invit_everi',
  'everi_time',
  'time_say',
  'say_im',
  'im_invit',
  'invit_mean',
  'mean_husband',
  'husband_tell',
  'tell_im',
  'im_go',
  'go_famili',
  'famili_dinner',
  'dinner_probabl',
  'probabl_best',
  'best_sit',
  'sit_one',
  'one_express',
  'express_want',
  'want_come',
  'come_told',
  'told_would',
  'would_best',
  'best_caus',
  'caus_sever',
  'sever_fight',
  'fight_week',
  'week_ago',
  'ago_husband',
  'husband_went',
  'went_famili',
  'famili_dinner',
  'dinner_invit',
  'invit_piss',
  'piss_earlier',
  'earlier_day',
  'day_call',
  'call_made',
  'made_reserv',
  'reserv_restaur',
  'restaur_go',
  'go_husband',
  'husband_left',
  'left_hous',
  'hous_know',
  'know_reserv',
  'reserv_left',
  'left_minut',
  'minut_end',
  'end_seat',
  'seat_tabl',
  'tabl_see',
  'see_famili',
  'famili_got',
  'got_go',
  'go_bathroom',
  'bathroom_walk',
  'walk_right',
  'right_past',
  'past_includ',
  'includ_brother',
  'brother_husband',
  'husband_look',
  'look_complet',
  'complet_shock',
  'shock_ask',
  'ask_told',
  'told_die',
  'die_steak',
  'steak_came',
  'came_got',
  'got_one',
  'one_restaur',
  'restaur_mother',
  'mother_law',
  'law_said',
  'said_rude',
  'rude_interrupt',
  'interrupt_famili',
  'famili_dinner',
  'dinner_point',
  'point_tri',
  'tri_join',
  'join_go',
  'go_bathroom',
  'bathroom_told',
  'told_good',
  'good_meal',
  'meal_left',
  'left_went',
  'went_finish',
  'finish_steak',
  'steak_husband',
  'husband_realli',
  'realli_piss',
  'piss_came',
  'came_home',
  'home_told',
  'told_believ',
  'believ_much',
  'much_asshol',
  'asshol_said',
  'said_asshol',
  'asshol_invit',
  'invit_dinner',
  'dinner_brother',
  'brother_got',
  'got_go',
  'go_husband',
  'husband_said',
  'said_decis',
  'decis_invit',
  'invit_famili',
  'famili_respect',
  'respect_anyway',
  'anyway_way',
  'way_word',
  'word_asshol',
  'asshol_thrown',
  'thrown_around',
  'around_made',
  'made_think',
  'think_sub',
  'sub_want',
  'want_ask',
  'ask_asshol',
  'asshol_edit',
  'edit_know',
  'know_add',
  'add_updat',
  'updat_sub',
  'sub_updat',
  'updat_post',
  'post_profil',
  'marri_husband_year',
  'husband_year_date',
  'year_date_year',
  'date_year_want',
  'year_want_start',
  'want_start_say',
  'start_say_realli',
  'say_realli_good',
  'realli_good_guy',
  'good_guy_area',
  'guy_area_husband',
  'area_husband_parent',
  'husband_parent_brother',
  'parent_brother_age',
  'brother_age_ish',
  'age_ish_brother',
  'ish_brother_girlfriendsfiancé',
  'brother_girlfriendsfiancé_tradit',
  'girlfriendsfiancé_tradit_go',
  'tradit_go_dinner',
  'go_dinner_month',
  'dinner_month_invit',
  'month_invit_%',
  'invit_%_time',
  '%_time_ive',
  'time_ive_talk',
  'ive_talk_husband',
  'talk_husband_brother',
  'husband_brother_fiancé',
  'brother_fiancé_say',
  'fiancé_say_invit',
  'say_invit_everi',
  'invit_everi_time',
  'everi_time_say',
  'time_say_im',
  'say_im_invit',
  'im_invit_mean',
  'invit_mean_husband',
  'mean_husband_tell',
  'husband_tell_im',
  'tell_im_go',
  'im_go_famili',
  'go_famili_dinner',
  'famili_dinner_probabl',
  'dinner_probabl_best',
  'probabl_best_sit',
  'best_sit_one',
  'sit_one_express',
  'one_express_want',
  'express_want_come',
  'want_come_told',
  'come_told_would',
  'told_would_best',
  'would_best_caus',
  'best_caus_sever',
  'caus_sever_fight',
  'sever_fight_week',
  'fight_week_ago',
  'week_ago_husband',
  'ago_husband_went',
  'husband_went_famili',
  'went_famili_dinner',
  'famili_dinner_invit',
  'dinner_invit_piss',
  'invit_piss_earlier',
  'piss_earlier_day',
  'earlier_day_call',
  'day_call_made',
  'call_made_reserv',
  'made_reserv_restaur',
  'reserv_restaur_go',
  'restaur_go_husband',
  'go_husband_left',
  'husband_left_hous',
  'left_hous_know',
  'hous_know_reserv',
  'know_reserv_left',
  'reserv_left_minut',
  'left_minut_end',
  'minut_end_seat',
  'end_seat_tabl',
  'seat_tabl_see',
  'tabl_see_famili',
  'see_famili_got',
  'famili_got_go',
  'got_go_bathroom',
  'go_bathroom_walk',
  'bathroom_walk_right',
  'walk_right_past',
  'right_past_includ',
  'past_includ_brother',
  'includ_brother_husband',
  'brother_husband_look',
  'husband_look_complet',
  'look_complet_shock',
  'complet_shock_ask',
  'shock_ask_told',
  'ask_told_die',
  'told_die_steak',
  'die_steak_came',
  'steak_came_got',
  'came_got_one',
  'got_one_restaur',
  'one_restaur_mother',
  'restaur_mother_law',
  'mother_law_said',
  'law_said_rude',
  'said_rude_interrupt',
  'rude_interrupt_famili',
  'interrupt_famili_dinner',
  'famili_dinner_point',
  'dinner_point_tri',
  'point_tri_join',
  'tri_join_go',
  'join_go_bathroom',
  'go_bathroom_told',
  'bathroom_told_good',
  'told_good_meal',
  'good_meal_left',
  'meal_left_went',
  'left_went_finish',
  'went_finish_steak',
  'finish_steak_husband',
  'steak_husband_realli',
  'husband_realli_piss',
  'realli_piss_came',
  'piss_came_home',
  'came_home_told',
  'home_told_believ',
  'told_believ_much',
  'believ_much_asshol',
  'much_asshol_said',
  'asshol_said_asshol',
  'said_asshol_invit',
  'asshol_invit_dinner',
  'invit_dinner_brother',
  'dinner_brother_got',
  'brother_got_go',
  'got_go_husband',
  'go_husband_said',
  'husband_said_decis',
  'said_decis_invit',
  'decis_invit_famili',
  'invit_famili_respect',
  'famili_respect_anyway',
  'respect_anyway_way',
  'anyway_way_word',
  'way_word_asshol',
  'word_asshol_thrown',
  'asshol_thrown_around',
  'thrown_around_made',
  'around_made_think',
  'made_think_sub',
  'think_sub_want',
  'sub_want_ask',
  'want_ask_asshol',
  'ask_asshol_edit',
  'asshol_edit_know',
  'edit_know_add',
  'know_add_updat',
  'add_updat_sub',
  'updat_sub_updat',
  'sub_updat_post',
  'updat_post_profil'],
 ['context_',
  'im',
  'sahm',
  'kid',
  'yr',
  'old',
  '&',
  'month',
  'old',
  'husband',
  'ambul',
  'driver',
  'work',
  'odd',
  'hour',
  'come',
  'home',
  'unexpectedli',
  'expect',
  'dinner',
  'lunch',
  'readi',
  'whenev',
  'get',
  'home',
  'whether',
  'im',
  'sleep',
  'busi',
  'kid',
  'exhaust',
  'know',
  'hard',
  'work',
  'struggl',
  'long',
  'mom',
  'suggest',
  'start',
  'pre-mak',
  'meal',
  'dinner',
  'lunch',
  'readi',
  'home',
  'got',
  'ta',
  'reheat',
  'immedi',
  'got',
  'went',
  'groceri',
  'shop',
  'spent',
  'entir',
  'day',
  'make',
  'meal',
  'store',
  'fridg',
  'respons',
  'idea',
  'whatev',
  'sort',
  'reliev',
  'caus',
  'could',
  'sleep',
  'properli',
  'kid',
  'care',
  'get',
  'interrupt',
  'etc',
  'well',
  'pm',
  'last',
  'night',
  'come',
  'home',
  'im',
  'sleep',
  'put',
  'babi',
  'sleep',
  'wake',
  'shout',
  'livingroom',
  'rush',
  'ask',
  'happen',
  'tell',
  'hungri',
  'want',
  'dinner',
  'tell',
  'fridg',
  'need',
  'reheat',
  'wake',
  'tell',
  'need',
  'go',
  'reheat',
  'say',
  'happen',
  'need',
  'reheat',
  'dinner',
  'start',
  'laugh',
  'sarcast',
  'got',
  'mad',
  'tell',
  'im',
  'ridicul',
  'assum',
  'work',
  'stop',
  'entir',
  'shift',
  'expect',
  'chore',
  'aka',
  'reheat',
  'dinner',
  'im',
  'start',
  'argu',
  'complain',
  'im',
  'enough',
  'refus',
  'reheat',
  'go',
  'back',
  'insid',
  'bedroom',
  'shut',
  'door',
  'come',
  'hour',
  'later',
  'yell',
  'ive',
  'basic',
  'made',
  'almost',
  'pass',
  'hunger',
  'caus',
  'im',
  'petti',
  'tri',
  'prove',
  'point',
  'tell',
  'unreason',
  'expect',
  'reheat',
  'dinner',
  'could',
  'give',
  'nasti',
  'look',
  'tell',
  'go',
  'bed',
  'hungri',
  'im',
  'respons',
  'head',
  'morn',
  'silent',
  'get',
  'dress',
  'leav',
  'turn',
  'phone',
  'context__im',
  'im_sahm',
  'sahm_kid',
  'kid_yr',
  'yr_old',
  'old_&',
  '&_month',
  'month_old',
  'old_husband',
  'husband_ambul',
  'ambul_driver',
  'driver_work',
  'work_odd',
  'odd_hour',
  'hour_come',
  'come_home',
  'home_unexpectedli',
  'unexpectedli_expect',
  'expect_dinner',
  'dinner_lunch',
  'lunch_readi',
  'readi_whenev',
  'whenev_get',
  'get_home',
  'home_whether',
  'whether_im',
  'im_sleep',
  'sleep_busi',
  'busi_kid',
  'kid_exhaust',
  'exhaust_know',
  'know_hard',
  'hard_work',
  'work_struggl',
  'struggl_long',
  'long_mom',
  'mom_suggest',
  'suggest_start',
  'start_pre-mak',
  'pre-mak_meal',
  'meal_dinner',
  'dinner_lunch',
  'lunch_readi',
  'readi_home',
  'home_got',
  'got_ta',
  'ta_reheat',
  'reheat_immedi',
  'immedi_got',
  'got_went',
  'went_groceri',
  'groceri_shop',
  'shop_spent',
  'spent_entir',
  'entir_day',
  'day_make',
  'make_meal',
  'meal_store',
  'store_fridg',
  'fridg_respons',
  'respons_idea',
  'idea_whatev',
  'whatev_sort',
  'sort_reliev',
  'reliev_caus',
  'caus_could',
  'could_sleep',
  'sleep_properli',
  'properli_kid',
  'kid_care',
  'care_get',
  'get_interrupt',
  'interrupt_etc',
  'etc_well',
  'well_pm',
  'pm_last',
  'last_night',
  'night_come',
  'come_home',
  'home_im',
  'im_sleep',
  'sleep_put',
  'put_babi',
  'babi_sleep',
  'sleep_wake',
  'wake_shout',
  'shout_livingroom',
  'livingroom_rush',
  'rush_ask',
  'ask_happen',
  'happen_tell',
  'tell_hungri',
  'hungri_want',
  'want_dinner',
  'dinner_tell',
  'tell_fridg',
  'fridg_need',
  'need_reheat',
  'reheat_wake',
  'wake_tell',
  'tell_need',
  'need_go',
  'go_reheat',
  'reheat_say',
  'say_happen',
  'happen_need',
  'need_reheat',
  'reheat_dinner',
  'dinner_start',
  'start_laugh',
  'laugh_sarcast',
  'sarcast_got',
  'got_mad',
  'mad_tell',
  'tell_im',
  'im_ridicul',
  'ridicul_assum',
  'assum_work',
  'work_stop',
  'stop_entir',
  'entir_shift',
  'shift_expect',
  'expect_chore',
  'chore_aka',
  'aka_reheat',
  'reheat_dinner',
  'dinner_im',
  'im_start',
  'start_argu',
  'argu_complain',
  'complain_im',
  'im_enough',
  'enough_refus',
  'refus_reheat',
  'reheat_go',
  'go_back',
  'back_insid',
  'insid_bedroom',
  'bedroom_shut',
  'shut_door',
  'door_come',
  'come_hour',
  'hour_later',
  'later_yell',
  'yell_ive',
  'ive_basic',
  'basic_made',
  'made_almost',
  'almost_pass',
  'pass_hunger',
  'hunger_caus',
  'caus_im',
  'im_petti',
  'petti_tri',
  'tri_prove',
  'prove_point',
  'point_tell',
  'tell_unreason',
  'unreason_expect',
  'expect_reheat',
  'reheat_dinner',
  'dinner_could',
  'could_give',
  'give_nasti',
  'nasti_look',
  'look_tell',
  'tell_go',
  'go_bed',
  'bed_hungri',
  'hungri_im',
  'im_respons',
  'respons_head',
  'head_morn',
  'morn_silent',
  'silent_get',
  'get_dress',
  'dress_leav',
  'leav_turn',
  'turn_phone',
  'context__im_sahm',
  'im_sahm_kid',
  'sahm_kid_yr',
  'kid_yr_old',
  'yr_old_&',
  'old_&_month',
  '&_month_old',
  'month_old_husband',
  'old_husband_ambul',
  'husband_ambul_driver',
  'ambul_driver_work',
  'driver_work_odd',
  'work_odd_hour',
  'odd_hour_come',
  'hour_come_home',
  'come_home_unexpectedli',
  'home_unexpectedli_expect',
  'unexpectedli_expect_dinner',
  'expect_dinner_lunch',
  'dinner_lunch_readi',
  'lunch_readi_whenev',
  'readi_whenev_get',
  'whenev_get_home',
  'get_home_whether',
  'home_whether_im',
  'whether_im_sleep',
  'im_sleep_busi',
  'sleep_busi_kid',
  'busi_kid_exhaust',
  'kid_exhaust_know',
  'exhaust_know_hard',
  'know_hard_work',
  'hard_work_struggl',
  'work_struggl_long',
  'struggl_long_mom',
  'long_mom_suggest',
  'mom_suggest_start',
  'suggest_start_pre-mak',
  'start_pre-mak_meal',
  'pre-mak_meal_dinner',
  'meal_dinner_lunch',
  'dinner_lunch_readi',
  'lunch_readi_home',
  'readi_home_got',
  'home_got_ta',
  'got_ta_reheat',
  'ta_reheat_immedi',
  'reheat_immedi_got',
  'immedi_got_went',
  'got_went_groceri',
  'went_groceri_shop',
  'groceri_shop_spent',
  'shop_spent_entir',
  'spent_entir_day',
  'entir_day_make',
  'day_make_meal',
  'make_meal_store',
  'meal_store_fridg',
  'store_fridg_respons',
  'fridg_respons_idea',
  'respons_idea_whatev',
  'idea_whatev_sort',
  'whatev_sort_reliev',
  'sort_reliev_caus',
  'reliev_caus_could',
  'caus_could_sleep',
  'could_sleep_properli',
  'sleep_properli_kid',
  'properli_kid_care',
  'kid_care_get',
  'care_get_interrupt',
  'get_interrupt_etc',
  'interrupt_etc_well',
  'etc_well_pm',
  'well_pm_last',
  'pm_last_night',
  'last_night_come',
  'night_come_home',
  'come_home_im',
  'home_im_sleep',
  'im_sleep_put',
  'sleep_put_babi',
  'put_babi_sleep',
  'babi_sleep_wake',
  'sleep_wake_shout',
  'wake_shout_livingroom',
  'shout_livingroom_rush',
  'livingroom_rush_ask',
  'rush_ask_happen',
  'ask_happen_tell',
  'happen_tell_hungri',
  'tell_hungri_want',
  'hungri_want_dinner',
  'want_dinner_tell',
  'dinner_tell_fridg',
  'tell_fridg_need',
  'fridg_need_reheat',
  'need_reheat_wake',
  'reheat_wake_tell',
  'wake_tell_need',
  'tell_need_go',
  'need_go_reheat',
  'go_reheat_say',
  'reheat_say_happen',
  'say_happen_need',
  'happen_need_reheat',
  'need_reheat_dinner',
  'reheat_dinner_start',
  'dinner_start_laugh',
  'start_laugh_sarcast',
  'laugh_sarcast_got',
  'sarcast_got_mad',
  'got_mad_tell',
  'mad_tell_im',
  'tell_im_ridicul',
  'im_ridicul_assum',
  'ridicul_assum_work',
  'assum_work_stop',
  'work_stop_entir',
  'stop_entir_shift',
  'entir_shift_expect',
  'shift_expect_chore',
  'expect_chore_aka',
  'chore_aka_reheat',
  'aka_reheat_dinner',
  'reheat_dinner_im',
  'dinner_im_start',
  'im_start_argu',
  'start_argu_complain',
  'argu_complain_im',
  'complain_im_enough',
  'im_enough_refus',
  'enough_refus_reheat',
  'refus_reheat_go',
  'reheat_go_back',
  'go_back_insid',
  'back_insid_bedroom',
  'insid_bedroom_shut',
  'bedroom_shut_door',
  'shut_door_come',
  'door_come_hour',
  'come_hour_later',
  'hour_later_yell',
  'later_yell_ive',
  'yell_ive_basic',
  'ive_basic_made',
  'basic_made_almost',
  'made_almost_pass',
  'almost_pass_hunger',
  'pass_hunger_caus',
  'hunger_caus_im',
  'caus_im_petti',
  'im_petti_tri',
  'petti_tri_prove',
  'tri_prove_point',
  'prove_point_tell',
  'point_tell_unreason',
  'tell_unreason_expect',
  'unreason_expect_reheat',
  'expect_reheat_dinner',
  'reheat_dinner_could',
  'dinner_could_give',
  'could_give_nasti',
  'give_nasti_look',
  'nasti_look_tell',
  'look_tell_go',
  'tell_go_bed',
  'go_bed_hungri',
  'bed_hungri_im',
  'hungri_im_respons',
  'im_respons_head',
  'respons_head_morn',
  'head_morn_silent',
  'morn_silent_get',
  'silent_get_dress',
  'get_dress_leav',
  'dress_leav_turn',
  'leav_turn_phone'],
 ['long-tim',
  'partner',
  'divorc',
  'year',
  'divorc',
  'acrimoni',
  'ex-wif',
  'get',
  'along',
  'weve',
  'ask',
  'host',
  'daughter',
  'graduat',
  'parti',
  'home',
  'partner',
  'ex',
  'drop',
  'ball',
  'fail',
  'secur',
  'venu',
  'spent',
  'week',
  'plan',
  'parti',
  'make',
  'arrang',
  'order',
  'materi',
  'make',
  'vision',
  'realiti',
  'week',
  'later',
  'inform',
  'us',
  'presenc',
  'would',
  'anger',
  'mother',
  'circumst',
  'could',
  'attend',
  'parti',
  'held',
  'home',
  'shop',
  'expect',
  'howev',
  'devot',
  'time',
  'creativ',
  'talent',
  'make',
  'graduat',
  'parti',
  'beauti',
  'wibta',
  'refus',
  'plan',
  'organ',
  'decor',
  'parti',
  'updat',
  'home',
  'next',
  'door',
  'bore',
  'parti',
  'best',
  'girlfriend',
  'consum',
  'food',
  'plan',
  'parti',
  'dress',
  'lbd',
  'drink',
  'champagn',
  'contempl',
  'futur',
  'long-tim_partner',
  'partner_divorc',
  'divorc_year',
  'year_divorc',
  'divorc_acrimoni',
  'acrimoni_ex-wif',
  'ex-wif_get',
  'get_along',
  'along_weve',
  'weve_ask',
  'ask_host',
  'host_daughter',
  'daughter_graduat',
  'graduat_parti',
  'parti_home',
  'home_partner',
  'partner_ex',
  'ex_drop',
  'drop_ball',
  'ball_fail',
  'fail_secur',
  'secur_venu',
  'venu_spent',
  'spent_week',
  'week_plan',
  'plan_parti',
  'parti_make',
  'make_arrang',
  'arrang_order',
  'order_materi',
  'materi_make',
  'make_vision',
  'vision_realiti',
  'realiti_week',
  'week_later',
  'later_inform',
  'inform_us',
  'us_presenc',
  'presenc_would',
  'would_anger',
  'anger_mother',
  'mother_circumst',
  'circumst_could',
  'could_attend',
  'attend_parti',
  'parti_held',
  'held_home',
  'home_shop',
  'shop_expect',
  'expect_howev',
  'howev_devot',
  'devot_time',
  'time_creativ',
  'creativ_talent',
  'talent_make',
  'make_graduat',
  'graduat_parti',
  'parti_beauti',
  'beauti_wibta',
  'wibta_refus',
  'refus_plan',
  'plan_organ',
  'organ_decor',
  'decor_parti',
  'parti_updat',
  'updat_home',
  'home_next',
  'next_door',
  'door_bore',
  'bore_parti',
  'parti_best',
  'best_girlfriend',
  'girlfriend_consum',
  'consum_food',
  'food_plan',
  'plan_parti',
  'parti_dress',
  'dress_lbd',
  'lbd_drink',
  'drink_champagn',
  'champagn_contempl',
  'contempl_futur',
  'long-tim_partner_divorc',
  'partner_divorc_year',
  'divorc_year_divorc',
  'year_divorc_acrimoni',
  'divorc_acrimoni_ex-wif',
  'acrimoni_ex-wif_get',
  'ex-wif_get_along',
  'get_along_weve',
  'along_weve_ask',
  'weve_ask_host',
  'ask_host_daughter',
  'host_daughter_graduat',
  'daughter_graduat_parti',
  'graduat_parti_home',
  'parti_home_partner',
  'home_partner_ex',
  'partner_ex_drop',
  'ex_drop_ball',
  'drop_ball_fail',
  'ball_fail_secur',
  'fail_secur_venu',
  'secur_venu_spent',
  'venu_spent_week',
  'spent_week_plan',
  'week_plan_parti',
  'plan_parti_make',
  'parti_make_arrang',
  'make_arrang_order',
  'arrang_order_materi',
  'order_materi_make',
  'materi_make_vision',
  'make_vision_realiti',
  'vision_realiti_week',
  'realiti_week_later',
  'week_later_inform',
  'later_inform_us',
  'inform_us_presenc',
  'us_presenc_would',
  'presenc_would_anger',
  'would_anger_mother',
  'anger_mother_circumst',
  'mother_circumst_could',
  'circumst_could_attend',
  'could_attend_parti',
  'attend_parti_held',
  'parti_held_home',
  'held_home_shop',
  'home_shop_expect',
  'shop_expect_howev',
  'expect_howev_devot',
  'howev_devot_time',
  'devot_time_creativ',
  'time_creativ_talent',
  'creativ_talent_make',
  'talent_make_graduat',
  'make_graduat_parti',
  'graduat_parti_beauti',
  'parti_beauti_wibta',
  'beauti_wibta_refus',
  'wibta_refus_plan',
  'refus_plan_organ',
  'plan_organ_decor',
  'organ_decor_parti',
  'decor_parti_updat',
  'parti_updat_home',
  'updat_home_next',
  'home_next_door',
  'next_door_bore',
  'door_bore_parti',
  'bore_parti_best',
  'parti_best_girlfriend',
  'best_girlfriend_consum',
  'girlfriend_consum_food',
  'consum_food_plan',
  'food_plan_parti',
  'plan_parti_dress',
  'parti_dress_lbd',
  'dress_lbd_drink',
  'lbd_drink_champagn',
  'drink_champagn_contempl',
  'champagn_contempl_futur'],
 ['throwaway',
  'girlfriend',
  'rose',
  'togeth',
  'year',
  'month',
  'pregnant',
  'first',
  'child',
  'mum',
  'seem',
  'realli',
  'like',
  'rose',
  'least',
  'toler',
  '-',
  'announc',
  'expect',
  'someth',
  'definit',
  'switch',
  'becom',
  'extrem',
  'rude',
  'disrespect',
  'toward',
  'girlfriend',
  'make',
  'passive-aggress',
  'comment',
  'everi',
  'chanc',
  'get',
  'ive',
  'take',
  'step',
  'back',
  'mother',
  'fix',
  'behaviour',
  'rose',
  'gone',
  'visit',
  'famili',
  'live',
  'far',
  'town',
  'last-minut',
  'trip',
  'drove',
  'destin',
  'back',
  'unfortun',
  'around',
  'pm',
  'car',
  'broke',
  'forc',
  'pull',
  'fortun',
  'brother',
  'chri',
  'great',
  'car',
  'live',
  'hour',
  'rose',
  'strand',
  'pick',
  'sort',
  'everyth',
  'countri',
  'im',
  'grate',
  'brother',
  'sort',
  'everyth',
  'chri',
  'move',
  'back',
  'mum',
  'year',
  'ago',
  'obvious',
  'situat',
  'best',
  'especi',
  'consid',
  'tension',
  'rose',
  'mom',
  'exist',
  'particular',
  'reason',
  'hope',
  'mum',
  'could',
  'put',
  'petti',
  'asid',
  'least',
  'night',
  'late',
  'chri',
  'drive',
  'rose',
  'back',
  'home',
  'brother',
  'told',
  'would',
  'drive',
  'back',
  'tomorrow',
  'morn',
  'arrang',
  'mum',
  'seem',
  'like',
  'one',
  'manag',
  'keep',
  'mouth',
  'shut',
  'girlfriend',
  'tell',
  'rose',
  'help',
  'prepar',
  'dinner',
  'wash',
  'actual',
  'engag',
  'decent',
  'convers',
  'mum',
  'first',
  'time',
  'age',
  'howev',
  'mostli',
  'avoid',
  'chri',
  'goe',
  'bed',
  'earlier',
  'leav',
  'mum',
  'rose',
  'mum',
  'live',
  'two-bedroom',
  'apart',
  'sinc',
  'bedroom',
  'taken',
  'rose',
  'assum',
  'would',
  'sleep',
  'couch',
  'appar',
  'assum',
  'wrong',
  'mum',
  'give',
  'rose',
  'thinnest',
  'blanket',
  'ever',
  'basic',
  'scream',
  'tell',
  'sleep',
  'floor',
  'ruin',
  'couch',
  'tell',
  'rose',
  'make',
  'pillow',
  'couch',
  'blanket',
  'provid',
  'zero',
  'warmth',
  'rose',
  'thought',
  'protest',
  'ultim',
  'decid',
  'accord',
  'rose',
  'mum',
  'kept',
  'open',
  'door',
  'check',
  'sleep',
  'couch',
  'even',
  'tri',
  'sleep',
  'couch',
  'chri',
  'found',
  'rose',
  'couch',
  'let',
  'sleep',
  'bed',
  'end',
  'tell',
  'told',
  'make',
  'big',
  'fuss',
  'exact',
  'opposit',
  'call',
  'mum',
  'angri',
  'told',
  'disrespect',
  'badli',
  'tri',
  'defend',
  'say',
  'harm',
  'babi',
  'okay',
  'pregnant',
  'women',
  'sleep',
  'floor',
  'refus',
  'hear',
  'chri',
  'agre',
  'told',
  'make',
  'fight',
  'feel',
  'like',
  'im',
  'lose',
  'mind',
  'aita',
  'throwaway_girlfriend',
  'girlfriend_rose',
  'rose_togeth',
  'togeth_year',
  'year_month',
  'month_pregnant',
  'pregnant_first',
  'first_child',
  'child_mum',
  'mum_seem',
  'seem_realli',
  'realli_like',
  'like_rose',
  'rose_least',
  'least_toler',
  'toler_-',
  '-_announc',
  'announc_expect',
  'expect_someth',
  'someth_definit',
  'definit_switch',
  'switch_becom',
  'becom_extrem',
  'extrem_rude',
  'rude_disrespect',
  'disrespect_toward',
  'toward_girlfriend',
  'girlfriend_make',
  'make_passive-aggress',
  'passive-aggress_comment',
  'comment_everi',
  'everi_chanc',
  'chanc_get',
  'get_ive',
  'ive_take',
  'take_step',
  'step_back',
  'back_mother',
  'mother_fix',
  'fix_behaviour',
  'behaviour_rose',
  'rose_gone',
  'gone_visit',
  'visit_famili',
  'famili_live',
  'live_far',
  'far_town',
  'town_last-minut',
  'last-minut_trip',
  'trip_drove',
  'drove_destin',
  'destin_back',
  'back_unfortun',
  'unfortun_around',
  'around_pm',
  'pm_car',
  'car_broke',
  'broke_forc',
  'forc_pull',
  'pull_fortun',
  'fortun_brother',
  'brother_chri',
  'chri_great',
  'great_car',
  'car_live',
  'live_hour',
  'hour_rose',
  'rose_strand',
  'strand_pick',
  'pick_sort',
  'sort_everyth',
  'everyth_countri',
  'countri_im',
  'im_grate',
  'grate_brother',
  'brother_sort',
  'sort_everyth',
  'everyth_chri',
  'chri_move',
  'move_back',
  'back_mum',
  'mum_year',
  'year_ago',
  'ago_obvious',
  'obvious_situat',
  'situat_best',
  'best_especi',
  'especi_consid',
  'consid_tension',
  'tension_rose',
  'rose_mom',
  'mom_exist',
  'exist_particular',
  'particular_reason',
  'reason_hope',
  'hope_mum',
  'mum_could',
  'could_put',
  'put_petti',
  'petti_asid',
  'asid_least',
  'least_night',
  'night_late',
  'late_chri',
  'chri_drive',
  'drive_rose',
  'rose_back',
  'back_home',
  'home_brother',
  'brother_told',
  'told_would',
  'would_drive',
  'drive_back',
  'back_tomorrow',
  'tomorrow_morn',
  'morn_arrang',
  'arrang_mum',
  'mum_seem',
  'seem_like',
  'like_one',
  'one_manag',
  'manag_keep',
  'keep_mouth',
  'mouth_shut',
  'shut_girlfriend',
  'girlfriend_tell',
  'tell_rose',
  'rose_help',
  'help_prepar',
  'prepar_dinner',
  'dinner_wash',
  'wash_actual',
  'actual_engag',
  'engag_decent',
  'decent_convers',
  'convers_mum',
  'mum_first',
  'first_time',
  'time_age',
  'age_howev',
  'howev_mostli',
  'mostli_avoid',
  'avoid_chri',
  'chri_goe',
  'goe_bed',
  'bed_earlier',
  'earlier_leav',
  'leav_mum',
  'mum_rose',
  'rose_mum',
  'mum_live',
  'live_two-bedroom',
  'two-bedroom_apart',
  'apart_sinc',
  'sinc_bedroom',
  'bedroom_taken',
  'taken_rose',
  'rose_assum',
  'assum_would',
  'would_sleep',
  'sleep_couch',
  'couch_appar',
  'appar_assum',
  'assum_wrong',
  'wrong_mum',
  'mum_give',
  'give_rose',
  'rose_thinnest',
  'thinnest_blanket',
  'blanket_ever',
  'ever_basic',
  'basic_scream',
  'scream_tell',
  'tell_sleep',
  'sleep_floor',
  'floor_ruin',
  'ruin_couch',
  'couch_tell',
  'tell_rose',
  'rose_make',
  'make_pillow',
  'pillow_couch',
  'couch_blanket',
  'blanket_provid',
  'provid_zero',
  'zero_warmth',
  'warmth_rose',
  'rose_thought',
  'thought_protest',
  'protest_ultim',
  'ultim_decid',
  'decid_accord',
  'accord_rose',
  'rose_mum',
  'mum_kept',
  'kept_open',
  'open_door',
  'door_check',
  'check_sleep',
  'sleep_couch',
  'couch_even',
  'even_tri',
  'tri_sleep',
  'sleep_couch',
  'couch_chri',
  'chri_found',
  'found_rose',
  'rose_couch',
  'couch_let',
  'let_sleep',
  'sleep_bed',
  'bed_end',
  'end_tell',
  'tell_told',
  'told_make',
  'make_big',
  'big_fuss',
  'fuss_exact',
  'exact_opposit',
  'opposit_call',
  'call_mum',
  'mum_angri',
  'angri_told',
  'told_disrespect',
  'disrespect_badli',
  'badli_tri',
  'tri_defend',
  'defend_say',
  'say_harm',
  'harm_babi',
  'babi_okay',
  'okay_pregnant',
  'pregnant_women',
  'women_sleep',
  'sleep_floor',
  'floor_refus',
  'refus_hear',
  'hear_chri',
  'chri_agre',
  'agre_told',
  'told_make',
  'make_fight',
  'fight_feel',
  'feel_like',
  'like_im',
  'im_lose',
  'lose_mind',
  'mind_aita',
  'throwaway_girlfriend_rose',
  'girlfriend_rose_togeth',
  'rose_togeth_year',
  'togeth_year_month',
  'year_month_pregnant',
  'month_pregnant_first',
  'pregnant_first_child',
  'first_child_mum',
  'child_mum_seem',
  'mum_seem_realli',
  'seem_realli_like',
  'realli_like_rose',
  'like_rose_least',
  'rose_least_toler',
  'least_toler_-',
  'toler_-_announc',
  '-_announc_expect',
  'announc_expect_someth',
  'expect_someth_definit',
  'someth_definit_switch',
  'definit_switch_becom',
  'switch_becom_extrem',
  'becom_extrem_rude',
  'extrem_rude_disrespect',
  'rude_disrespect_toward',
  'disrespect_toward_girlfriend',
  'toward_girlfriend_make',
  'girlfriend_make_passive-aggress',
  'make_passive-aggress_comment',
  'passive-aggress_comment_everi',
  'comment_everi_chanc',
  'everi_chanc_get',
  'chanc_get_ive',
  'get_ive_take',
  'ive_take_step',
  'take_step_back',
  'step_back_mother',
  'back_mother_fix',
  'mother_fix_behaviour',
  'fix_behaviour_rose',
  'behaviour_rose_gone',
  'rose_gone_visit',
  'gone_visit_famili',
  'visit_famili_live',
  'famili_live_far',
  'live_far_town',
  'far_town_last-minut',
  'town_last-minut_trip',
  'last-minut_trip_drove',
  'trip_drove_destin',
  'drove_destin_back',
  'destin_back_unfortun',
  'back_unfortun_around',
  'unfortun_around_pm',
  'around_pm_car',
  'pm_car_broke',
  'car_broke_forc',
  'broke_forc_pull',
  'forc_pull_fortun',
  'pull_fortun_brother',
  'fortun_brother_chri',
  'brother_chri_great',
  'chri_great_car',
  'great_car_live',
  'car_live_hour',
  'live_hour_rose',
  'hour_rose_strand',
  'rose_strand_pick',
  'strand_pick_sort',
  'pick_sort_everyth',
  'sort_everyth_countri',
  'everyth_countri_im',
  'countri_im_grate',
  'im_grate_brother',
  'grate_brother_sort',
  'brother_sort_everyth',
  'sort_everyth_chri',
  'everyth_chri_move',
  'chri_move_back',
  'move_back_mum',
  'back_mum_year',
  'mum_year_ago',
  'year_ago_obvious',
  'ago_obvious_situat',
  'obvious_situat_best',
  'situat_best_especi',
  'best_especi_consid',
  'especi_consid_tension',
  'consid_tension_rose',
  'tension_rose_mom',
  'rose_mom_exist',
  'mom_exist_particular',
  'exist_particular_reason',
  'particular_reason_hope',
  'reason_hope_mum',
  'hope_mum_could',
  'mum_could_put',
  'could_put_petti',
  'put_petti_asid',
  'petti_asid_least',
  'asid_least_night',
  'least_night_late',
  'night_late_chri',
  'late_chri_drive',
  'chri_drive_rose',
  'drive_rose_back',
  'rose_back_home',
  'back_home_brother',
  'home_brother_told',
  'brother_told_would',
  'told_would_drive',
  'would_drive_back',
  'drive_back_tomorrow',
  'back_tomorrow_morn',
  'tomorrow_morn_arrang',
  'morn_arrang_mum',
  'arrang_mum_seem',
  'mum_seem_like',
  'seem_like_one',
  'like_one_manag',
  'one_manag_keep',
  'manag_keep_mouth',
  'keep_mouth_shut',
  'mouth_shut_girlfriend',
  'shut_girlfriend_tell',
  'girlfriend_tell_rose',
  'tell_rose_help',
  'rose_help_prepar',
  'help_prepar_dinner',
  'prepar_dinner_wash',
  'dinner_wash_actual',
  'wash_actual_engag',
  'actual_engag_decent',
  'engag_decent_convers',
  'decent_convers_mum',
  'convers_mum_first',
  'mum_first_time',
  'first_time_age',
  'time_age_howev',
  'age_howev_mostli',
  'howev_mostli_avoid',
  'mostli_avoid_chri',
  'avoid_chri_goe',
  'chri_goe_bed',
  'goe_bed_earlier',
  'bed_earlier_leav',
  'earlier_leav_mum',
  'leav_mum_rose',
  'mum_rose_mum',
  'rose_mum_live',
  'mum_live_two-bedroom',
  'live_two-bedroom_apart',
  'two-bedroom_apart_sinc',
  'apart_sinc_bedroom',
  'sinc_bedroom_taken',
  'bedroom_taken_rose',
  'taken_rose_assum',
  'rose_assum_would',
  'assum_would_sleep',
  'would_sleep_couch',
  'sleep_couch_appar',
  'couch_appar_assum',
  'appar_assum_wrong',
  'assum_wrong_mum',
  'wrong_mum_give',
  'mum_give_rose',
  'give_rose_thinnest',
  'rose_thinnest_blanket',
  'thinnest_blanket_ever',
  'blanket_ever_basic',
  'ever_basic_scream',
  'basic_scream_tell',
  'scream_tell_sleep',
  'tell_sleep_floor',
  'sleep_floor_ruin',
  'floor_ruin_couch',
  'ruin_couch_tell',
  'couch_tell_rose',
  'tell_rose_make',
  'rose_make_pillow',
  'make_pillow_couch',
  'pillow_couch_blanket',
  'couch_blanket_provid',
  'blanket_provid_zero',
  'provid_zero_warmth',
  'zero_warmth_rose',
  'warmth_rose_thought',
  'rose_thought_protest',
  'thought_protest_ultim',
  'protest_ultim_decid',
  'ultim_decid_accord',
  'decid_accord_rose',
  'accord_rose_mum',
  'rose_mum_kept',
  'mum_kept_open',
  'kept_open_door',
  'open_door_check',
  'door_check_sleep',
  'check_sleep_couch',
  'sleep_couch_even',
  'couch_even_tri',
  'even_tri_sleep',
  'tri_sleep_couch',
  'sleep_couch_chri',
  'couch_chri_found',
  'chri_found_rose',
  'found_rose_couch',
  'rose_couch_let',
  'couch_let_sleep',
  'let_sleep_bed',
  'sleep_bed_end',
  'bed_end_tell',
  'end_tell_told',
  'tell_told_make',
  'told_make_big',
  'make_big_fuss',
  'big_fuss_exact',
  'fuss_exact_opposit',
  'exact_opposit_call',
  'opposit_call_mum',
  'call_mum_angri',
  'mum_angri_told',
  'angri_told_disrespect',
  'told_disrespect_badli',
  'disrespect_badli_tri',
  'badli_tri_defend',
  'tri_defend_say',
  'defend_say_harm',
  'say_harm_babi',
  'harm_babi_okay',
  'babi_okay_pregnant',
  'okay_pregnant_women',
  'pregnant_women_sleep',
  'women_sleep_floor',
  'sleep_floor_refus',
  'floor_refus_hear',
  'refus_hear_chri',
  'hear_chri_agre',
  'chri_agre_told',
  'agre_told_make',
  'told_make_fight',
  'make_fight_feel',
  'fight_feel_like',
  'feel_like_im',
  'like_im_lose',
  'im_lose_mind',
  'lose_mind_aita'],
 ['current',
  'divorc',
  'ex',
  'thoma',
  'year',
  'end',
  'see',
  'lawyer',
  'help',
  'divid',
  'stuff',
  'everyth',
  'pretti',
  'much',
  'wrap',
  'till',
  'said',
  'longer',
  'want',
  'part',
  'kid',
  'live',
  'argu',
  'sinc',
  'alreadi',
  'know',
  'like',
  'parent',
  'want',
  'around',
  'want',
  'life',
  'ask',
  'want',
  'tell',
  'kid',
  'said',
  'whatev',
  'think',
  'best',
  'care',
  'want',
  'parent',
  'anymor',
  'everyth',
  'agreement',
  'sign',
  'fuss',
  'week',
  'later',
  'get',
  'call',
  'ex',
  'mil',
  'ask',
  'could',
  'meet',
  'came',
  'broke',
  'cri',
  'beg',
  'let',
  'ex',
  'see',
  'kid',
  'confus',
  'meant',
  'contact',
  'meet',
  'lawyer',
  'went',
  'ex',
  'said',
  'realli',
  'miss',
  'petti',
  '*',
  'tch',
  'take',
  'full',
  'custodi',
  'also',
  'cri',
  'day',
  'told',
  'version',
  'event',
  'call',
  'bs',
  'say',
  'son',
  'lie',
  'like',
  'especi',
  'kid',
  'decid',
  'call',
  'front',
  'know',
  'meet',
  'day',
  'said',
  'hey',
  'soccer',
  'game',
  'day',
  'wonder',
  'want',
  'go',
  'know',
  'hed',
  'realli',
  'love',
  'happi',
  'see',
  'instantli',
  'said',
  'alreadi',
  'said',
  'im',
  'anymor',
  'rais',
  'voic',
  'bit',
  'say',
  'well',
  'holiday',
  'birthday',
  'never',
  'discuss',
  'famili',
  'might',
  'want',
  'see',
  'said',
  'famili',
  'alreadi',
  'think',
  'kid',
  'mine',
  'anyway',
  'matter',
  'ask',
  'well',
  'think',
  'go',
  'effect',
  'denis',
  'mom',
  'moon',
  'said',
  'love',
  'kid',
  'doubt',
  'issu',
  'bit',
  'talk',
  'final',
  'hung',
  'ex',
  'mil',
  'straight',
  'face',
  'nod',
  'everyth',
  'happen',
  'say',
  'mmm',
  'okay',
  'ask',
  'leav',
  'said',
  'would',
  'touch',
  'later',
  'day',
  'got',
  'call',
  'ex',
  'say',
  'fault',
  'kick',
  'mom',
  'hous',
  'possibl',
  'taken',
  'also',
  'none',
  'famili',
  'member',
  'talk',
  'ex',
  'mil',
  'heard',
  'threw',
  'lot',
  'insult',
  'hung',
  'mate',
  'keep',
  'call',
  'text',
  'friend',
  'say',
  'said',
  'anyth',
  'first',
  'place',
  'ruin',
  'life',
  'edit',
  'hello',
  'thank',
  'support',
  'gold',
  'reward',
  'ye',
  'plan',
  'let',
  'denis',
  'see',
  'kid',
  'know',
  'want',
  'give',
  'world',
  'along',
  'rest',
  'famili',
  'honestli',
  'confus',
  'op',
  'meant',
  'first',
  'daughter',
  'told',
  'overpow',
  'like',
  'anim',
  'sister',
  'clarifi',
  'nd',
  'edit',
  'hello',
  'want',
  'address',
  'someth',
  'keep',
  'come',
  'cant',
  'keep',
  'everyon',
  'due',
  'action',
  'took',
  'younger',
  'christian',
  'parent',
  'thought',
  'would',
  'best',
  'marri',
  'time',
  'current_divorc',
  'divorc_ex',
  'ex_thoma',
  'thoma_year',
  'year_end',
  'end_see',
  'see_lawyer',
  'lawyer_help',
  'help_divid',
  'divid_stuff',
  'stuff_everyth',
  'everyth_pretti',
  'pretti_much',
  'much_wrap',
  'wrap_till',
  'till_said',
  'said_longer',
  'longer_want',
  'want_part',
  'part_kid',
  'kid_live',
  'live_argu',
  'argu_sinc',
  'sinc_alreadi',
  'alreadi_know',
  'know_like',
  'like_parent',
  'parent_want',
  'want_around',
  'around_want',
  'want_life',
  'life_ask',
  'ask_want',
  'want_tell',
  'tell_kid',
  'kid_said',
  'said_whatev',
  'whatev_think',
  'think_best',
  'best_care',
  'care_want',
  'want_parent',
  'parent_anymor',
  'anymor_everyth',
  'everyth_agreement',
  'agreement_sign',
  'sign_fuss',
  'fuss_week',
  'week_later',
  'later_get',
  'get_call',
  'call_ex',
  'ex_mil',
  'mil_ask',
  'ask_could',
  'could_meet',
  'meet_came',
  'came_broke',
  'broke_cri',
  'cri_beg',
  'beg_let',
  'let_ex',
  'ex_see',
  'see_kid',
  'kid_confus',
  'confus_meant',
  'meant_contact',
  'contact_meet',
  'meet_lawyer',
  'lawyer_went',
  'went_ex',
  'ex_said',
  'said_realli',
  'realli_miss',
  'miss_petti',
  'petti_*',
  '*_tch',
  'tch_take',
  'take_full',
  'full_custodi',
  'custodi_also',
  'also_cri',
  'cri_day',
  'day_told',
  'told_version',
  'version_event',
  'event_call',
  'call_bs',
  'bs_say',
  'say_son',
  'son_lie',
  'lie_like',
  'like_especi',
  'especi_kid',
  'kid_decid',
  'decid_call',
  'call_front',
  'front_know',
  'know_meet',
  'meet_day',
  'day_said',
  'said_hey',
  'hey_soccer',
  'soccer_game',
  'game_day',
  'day_wonder',
  'wonder_want',
  'want_go',
  'go_know',
  'know_hed',
  'hed_realli',
  'realli_love',
  'love_happi',
  'happi_see',
  'see_instantli',
  'instantli_said',
  'said_alreadi',
  'alreadi_said',
  'said_im',
  'im_anymor',
  'anymor_rais',
  'rais_voic',
  'voic_bit',
  'bit_say',
  'say_well',
  'well_holiday',
  'holiday_birthday',
  'birthday_never',
  'never_discuss',
  'discuss_famili',
  'famili_might',
  'might_want',
  'want_see',
  'see_said',
  'said_famili',
  'famili_alreadi',
  'alreadi_think',
  'think_kid',
  'kid_mine',
  'mine_anyway',
  'anyway_matter',
  'matter_ask',
  'ask_well',
  'well_think',
  'think_go',
  'go_effect',
  'effect_denis',
  'denis_mom',
  'mom_moon',
  'moon_said',
  'said_love',
  'love_kid',
  'kid_doubt',
  'doubt_issu',
  'issu_bit',
  'bit_talk',
  'talk_final',
  'final_hung',
  'hung_ex',
  'ex_mil',
  'mil_straight',
  'straight_face',
  'face_nod',
  'nod_everyth',
  'everyth_happen',
  'happen_say',
  'say_mmm',
  'mmm_okay',
  'okay_ask',
  'ask_leav',
  'leav_said',
  'said_would',
  'would_touch',
  'touch_later',
  'later_day',
  'day_got',
  'got_call',
  'call_ex',
  'ex_say',
  'say_fault',
  'fault_kick',
  'kick_mom',
  'mom_hous',
  'hous_possibl',
  'possibl_taken',
  'taken_also',
  'also_none',
  'none_famili',
  'famili_member',
  'member_talk',
  'talk_ex',
  'ex_mil',
  'mil_heard',
  'heard_threw',
  'threw_lot',
  'lot_insult',
  'insult_hung',
  'hung_mate',
  'mate_keep',
  'keep_call',
  'call_text',
  'text_friend',
  'friend_say',
  'say_said',
  'said_anyth',
  'anyth_first',
  'first_place',
  'place_ruin',
  'ruin_life',
  'life_edit',
  'edit_hello',
  'hello_thank',
  'thank_support',
  'support_gold',
  'gold_reward',
  'reward_ye',
  'ye_plan',
  'plan_let',
  'let_denis',
  'denis_see',
  'see_kid',
  'kid_know',
  'know_want',
  'want_give',
  'give_world',
  'world_along',
  'along_rest',
  'rest_famili',
  'famili_honestli',
  'honestli_confus',
  'confus_op',
  'op_meant',
  'meant_first',
  'first_daughter',
  'daughter_told',
  'told_overpow',
  'overpow_like',
  'like_anim',
  'anim_sister',
  'sister_clarifi',
  'clarifi_nd',
  'nd_edit',
  'edit_hello',
  'hello_want',
  'want_address',
  'address_someth',
  'someth_keep',
  'keep_come',
  'come_cant',
  'cant_keep',
  'keep_everyon',
  'everyon_due',
  'due_action',
  'action_took',
  'took_younger',
  'younger_christian',
  'christian_parent',
  'parent_thought',
  'thought_would',
  'would_best',
  'best_marri',
  'marri_time',
  'current_divorc_ex',
  'divorc_ex_thoma',
  'ex_thoma_year',
  'thoma_year_end',
  'year_end_see',
  'end_see_lawyer',
  'see_lawyer_help',
  'lawyer_help_divid',
  'help_divid_stuff',
  'divid_stuff_everyth',
  'stuff_everyth_pretti',
  'everyth_pretti_much',
  'pretti_much_wrap',
  'much_wrap_till',
  'wrap_till_said',
  'till_said_longer',
  'said_longer_want',
  'longer_want_part',
  'want_part_kid',
  'part_kid_live',
  'kid_live_argu',
  'live_argu_sinc',
  'argu_sinc_alreadi',
  'sinc_alreadi_know',
  'alreadi_know_like',
  'know_like_parent',
  'like_parent_want',
  'parent_want_around',
  'want_around_want',
  'around_want_life',
  'want_life_ask',
  'life_ask_want',
  'ask_want_tell',
  'want_tell_kid',
  'tell_kid_said',
  'kid_said_whatev',
  'said_whatev_think',
  'whatev_think_best',
  'think_best_care',
  'best_care_want',
  'care_want_parent',
  'want_parent_anymor',
  'parent_anymor_everyth',
  'anymor_everyth_agreement',
  'everyth_agreement_sign',
  'agreement_sign_fuss',
  'sign_fuss_week',
  'fuss_week_later',
  'week_later_get',
  'later_get_call',
  'get_call_ex',
  'call_ex_mil',
  'ex_mil_ask',
  'mil_ask_could',
  'ask_could_meet',
  'could_meet_came',
  'meet_came_broke',
  'came_broke_cri',
  'broke_cri_beg',
  'cri_beg_let',
  'beg_let_ex',
  'let_ex_see',
  'ex_see_kid',
  'see_kid_confus',
  'kid_confus_meant',
  'confus_meant_contact',
  'meant_contact_meet',
  'contact_meet_lawyer',
  'meet_lawyer_went',
  'lawyer_went_ex',
  'went_ex_said',
  'ex_said_realli',
  'said_realli_miss',
  'realli_miss_petti',
  'miss_petti_*',
  'petti_*_tch',
  '*_tch_take',
  'tch_take_full',
  'take_full_custodi',
  'full_custodi_also',
  'custodi_also_cri',
  'also_cri_day',
  'cri_day_told',
  'day_told_version',
  'told_version_event',
  'version_event_call',
  'event_call_bs',
  'call_bs_say',
  'bs_say_son',
  'say_son_lie',
  'son_lie_like',
  'lie_like_especi',
  'like_especi_kid',
  'especi_kid_decid',
  'kid_decid_call',
  'decid_call_front',
  'call_front_know',
  'front_know_meet',
  'know_meet_day',
  'meet_day_said',
  'day_said_hey',
  'said_hey_soccer',
  'hey_soccer_game',
  'soccer_game_day',
  'game_day_wonder',
  'day_wonder_want',
  'wonder_want_go',
  'want_go_know',
  'go_know_hed',
  'know_hed_realli',
  'hed_realli_love',
  'realli_love_happi',
  'love_happi_see',
  'happi_see_instantli',
  'see_instantli_said',
  'instantli_said_alreadi',
  'said_alreadi_said',
  'alreadi_said_im',
  'said_im_anymor',
  'im_anymor_rais',
  'anymor_rais_voic',
  'rais_voic_bit',
  'voic_bit_say',
  'bit_say_well',
  'say_well_holiday',
  'well_holiday_birthday',
  'holiday_birthday_never',
  'birthday_never_discuss',
  'never_discuss_famili',
  'discuss_famili_might',
  'famili_might_want',
  'might_want_see',
  'want_see_said',
  'see_said_famili',
  'said_famili_alreadi',
  'famili_alreadi_think',
  'alreadi_think_kid',
  'think_kid_mine',
  'kid_mine_anyway',
  'mine_anyway_matter',
  'anyway_matter_ask',
  'matter_ask_well',
  'ask_well_think',
  'well_think_go',
  'think_go_effect',
  'go_effect_denis',
  'effect_denis_mom',
  'denis_mom_moon',
  'mom_moon_said',
  'moon_said_love',
  'said_love_kid',
  'love_kid_doubt',
  'kid_doubt_issu',
  'doubt_issu_bit',
  'issu_bit_talk',
  'bit_talk_final',
  'talk_final_hung',
  'final_hung_ex',
  'hung_ex_mil',
  'ex_mil_straight',
  'mil_straight_face',
  'straight_face_nod',
  'face_nod_everyth',
  'nod_everyth_happen',
  'everyth_happen_say',
  'happen_say_mmm',
  'say_mmm_okay',
  'mmm_okay_ask',
  'okay_ask_leav',
  'ask_leav_said',
  'leav_said_would',
  'said_would_touch',
  'would_touch_later',
  'touch_later_day',
  'later_day_got',
  'day_got_call',
  'got_call_ex',
  'call_ex_say',
  'ex_say_fault',
  'say_fault_kick',
  'fault_kick_mom',
  'kick_mom_hous',
  'mom_hous_possibl',
  'hous_possibl_taken',
  'possibl_taken_also',
  'taken_also_none',
  'also_none_famili',
  'none_famili_member',
  'famili_member_talk',
  'member_talk_ex',
  'talk_ex_mil',
  'ex_mil_heard',
  'mil_heard_threw',
  'heard_threw_lot',
  'threw_lot_insult',
  'lot_insult_hung',
  'insult_hung_mate',
  'hung_mate_keep',
  'mate_keep_call',
  'keep_call_text',
  'call_text_friend',
  'text_friend_say',
  'friend_say_said',
  'say_said_anyth',
  'said_anyth_first',
  'anyth_first_place',
  'first_place_ruin',
  'place_ruin_life',
  'ruin_life_edit',
  'life_edit_hello',
  'edit_hello_thank',
  'hello_thank_support',
  'thank_support_gold',
  'support_gold_reward',
  'gold_reward_ye',
  'reward_ye_plan',
  'ye_plan_let',
  'plan_let_denis',
  'let_denis_see',
  'denis_see_kid',
  'see_kid_know',
  'kid_know_want',
  'know_want_give',
  'want_give_world',
  'give_world_along',
  'world_along_rest',
  'along_rest_famili',
  'rest_famili_honestli',
  'famili_honestli_confus',
  'honestli_confus_op',
  'confus_op_meant',
  'op_meant_first',
  'meant_first_daughter',
  'first_daughter_told',
  'daughter_told_overpow',
  'told_overpow_like',
  'overpow_like_anim',
  'like_anim_sister',
  'anim_sister_clarifi',
  'sister_clarifi_nd',
  'clarifi_nd_edit',
  'nd_edit_hello',
  'edit_hello_want',
  'hello_want_address',
  'want_address_someth',
  'address_someth_keep',
  'someth_keep_come',
  'keep_come_cant',
  'come_cant_keep',
  'cant_keep_everyon',
  'keep_everyon_due',
  'everyon_due_action',
  'due_action_took',
  'action_took_younger',
  'took_younger_christian',
  'younger_christian_parent',
  'christian_parent_thought',
  'parent_thought_would',
  'thought_would_best',
  'would_best_marri',
  'best_marri_time'],
 ['dad',
  'pass',
  'away',
  'left',
  'one',
  'last',
  'favorit',
  'ship',
  'model',
  'display',
  'live',
  'room',
  'reason',
  'never',
  'actual',
  'mention',
  'boyfriend',
  'month',
  'mayb',
  'live',
  'togeth',
  'visit',
  'often',
  'day',
  'friend',
  'came',
  'place',
  'celebr',
  'birthday',
  'got',
  'drunk',
  'start',
  'throw',
  'sofa',
  'pillow',
  'told',
  'stop',
  'went',
  'kitchen',
  'clean',
  'start',
  'hear',
  'loud',
  'nois',
  'walk',
  'kitchen',
  'saw',
  'model',
  'ship',
  'boyfriend',
  'hand',
  'rush',
  'get',
  'pass',
  'friend',
  'friend',
  'pass',
  'friend',
  'start',
  'run',
  'around',
  'tri',
  'catch',
  'yell',
  'stop',
  'boyfriend',
  'grab',
  'angri',
  'told',
  'hand',
  'said',
  'need',
  'kiss',
  'first',
  'yell',
  'tri',
  'threw',
  'friend',
  'tri',
  'catch',
  'misse',
  'hit',
  'wall',
  'broke',
  'lost',
  'kick',
  'friend',
  'fight',
  'tell',
  'sentiment',
  'item',
  'dad',
  'demand',
  'pay',
  '$',
  'much',
  'cost',
  'left',
  'call',
  'morn',
  'ask',
  'seriou',
  'want',
  'pay',
  '$',
  'said',
  'dead',
  'seriou',
  'start',
  'make',
  'excus',
  'say',
  'drunk',
  'also',
  'never',
  'told',
  'ship',
  'import',
  'monetarili',
  'sentiment',
  'anoth',
  'fight',
  'hung',
  'upon',
  'tell',
  'im',
  'expect',
  'afraid',
  'take',
  'legal',
  'rout',
  'kept',
  'text',
  'ask',
  'let',
  'go',
  'say',
  'cruel',
  'threaten',
  'law',
  'friend',
  'apolog',
  'think',
  'would',
  'insist',
  'pay',
  'get',
  'mightv',
  'got',
  'work',
  'item',
  'treat',
  'boyfriend',
  'badli',
  'seem',
  'like',
  'reckless',
  'part',
  'aita',
  'dad_pass',
  'pass_away',
  'away_left',
  'left_one',
  'one_last',
  'last_favorit',
  'favorit_ship',
  'ship_model',
  'model_display',
  'display_live',
  'live_room',
  'room_reason',
  'reason_never',
  'never_actual',
  'actual_mention',
  'mention_boyfriend',
  'boyfriend_month',
  'month_mayb',
  'mayb_live',
  'live_togeth',
  'togeth_visit',
  'visit_often',
  'often_day',
  'day_friend',
  'friend_came',
  'came_place',
  'place_celebr',
  'celebr_birthday',
  'birthday_got',
  'got_drunk',
  'drunk_start',
  'start_throw',
  'throw_sofa',
  'sofa_pillow',
  'pillow_told',
  'told_stop',
  'stop_went',
  'went_kitchen',
  'kitchen_clean',
  'clean_start',
  'start_hear',
  'hear_loud',
  'loud_nois',
  'nois_walk',
  'walk_kitchen',
  'kitchen_saw',
  'saw_model',
  'model_ship',
  'ship_boyfriend',
  'boyfriend_hand',
  'hand_rush',
  'rush_get',
  'get_pass',
  'pass_friend',
  'friend_friend',
  'friend_pass',
  'pass_friend',
  'friend_start',
  'start_run',
  'run_around',
  'around_tri',
  'tri_catch',
  'catch_yell',
  'yell_stop',
  'stop_boyfriend',
  'boyfriend_grab',
  'grab_angri',
  'angri_told',
  'told_hand',
  'hand_said',
  'said_need',
  'need_kiss',
  'kiss_first',
  'first_yell',
  'yell_tri',
  'tri_threw',
  'threw_friend',
  'friend_tri',
  'tri_catch',
  'catch_misse',
  'misse_hit',
  'hit_wall',
  'wall_broke',
  'broke_lost',
  'lost_kick',
  'kick_friend',
  'friend_fight',
  'fight_tell',
  'tell_sentiment',
  'sentiment_item',
  'item_dad',
  'dad_demand',
  'demand_pay',
  'pay_$',
  '$_much',
  'much_cost',
  'cost_left',
  'left_call',
  'call_morn',
  'morn_ask',
  'ask_seriou',
  'seriou_want',
  'want_pay',
  'pay_$',
  '$_said',
  'said_dead',
  'dead_seriou',
  'seriou_start',
  'start_make',
  'make_excus',
  'excus_say',
  'say_drunk',
  'drunk_also',
  'also_never',
  'never_told',
  'told_ship',
  'ship_import',
  'import_monetarili',
  'monetarili_sentiment',
  'sentiment_anoth',
  'anoth_fight',
  'fight_hung',
  'hung_upon',
  'upon_tell',
  'tell_im',
  'im_expect',
  'expect_afraid',
  'afraid_take',
  'take_legal',
  'legal_rout',
  'rout_kept',
  'kept_text',
  'text_ask',
  'ask_let',
  'let_go',
  'go_say',
  'say_cruel',
  'cruel_threaten',
  'threaten_law',
  'law_friend',
  'friend_apolog',
  'apolog_think',
  'think_would',
  'would_insist',
  'insist_pay',
  'pay_get',
  'get_mightv',
  'mightv_got',
  'got_work',
  'work_item',
  'item_treat',
  'treat_boyfriend',
  'boyfriend_badli',
  'badli_seem',
  'seem_like',
  'like_reckless',
  'reckless_part',
  'part_aita',
  'dad_pass_away',
  'pass_away_left',
  'away_left_one',
  'left_one_last',
  'one_last_favorit',
  'last_favorit_ship',
  'favorit_ship_model',
  'ship_model_display',
  'model_display_live',
  'display_live_room',
  'live_room_reason',
  'room_reason_never',
  'reason_never_actual',
  'never_actual_mention',
  'actual_mention_boyfriend',
  'mention_boyfriend_month',
  'boyfriend_month_mayb',
  'month_mayb_live',
  'mayb_live_togeth',
  'live_togeth_visit',
  'togeth_visit_often',
  'visit_often_day',
  'often_day_friend',
  'day_friend_came',
  'friend_came_place',
  'came_place_celebr',
  'place_celebr_birthday',
  'celebr_birthday_got',
  'birthday_got_drunk',
  'got_drunk_start',
  'drunk_start_throw',
  'start_throw_sofa',
  'throw_sofa_pillow',
  'sofa_pillow_told',
  'pillow_told_stop',
  'told_stop_went',
  'stop_went_kitchen',
  'went_kitchen_clean',
  'kitchen_clean_start',
  'clean_start_hear',
  'start_hear_loud',
  'hear_loud_nois',
  'loud_nois_walk',
  'nois_walk_kitchen',
  'walk_kitchen_saw',
  'kitchen_saw_model',
  'saw_model_ship',
  'model_ship_boyfriend',
  'ship_boyfriend_hand',
  'boyfriend_hand_rush',
  'hand_rush_get',
  'rush_get_pass',
  'get_pass_friend',
  'pass_friend_friend',
  'friend_friend_pass',
  'friend_pass_friend',
  'pass_friend_start',
  'friend_start_run',
  'start_run_around',
  'run_around_tri',
  'around_tri_catch',
  'tri_catch_yell',
  'catch_yell_stop',
  'yell_stop_boyfriend',
  'stop_boyfriend_grab',
  'boyfriend_grab_angri',
  'grab_angri_told',
  'angri_told_hand',
  'told_hand_said',
  'hand_said_need',
  'said_need_kiss',
  'need_kiss_first',
  'kiss_first_yell',
  'first_yell_tri',
  'yell_tri_threw',
  'tri_threw_friend',
  'threw_friend_tri',
  'friend_tri_catch',
  'tri_catch_misse',
  'catch_misse_hit',
  'misse_hit_wall',
  'hit_wall_broke',
  'wall_broke_lost',
  'broke_lost_kick',
  'lost_kick_friend',
  'kick_friend_fight',
  'friend_fight_tell',
  'fight_tell_sentiment',
  'tell_sentiment_item',
  'sentiment_item_dad',
  'item_dad_demand',
  'dad_demand_pay',
  'demand_pay_$',
  'pay_$_much',
  '$_much_cost',
  'much_cost_left',
  'cost_left_call',
  'left_call_morn',
  'call_morn_ask',
  'morn_ask_seriou',
  'ask_seriou_want',
  'seriou_want_pay',
  'want_pay_$',
  'pay_$_said',
  '$_said_dead',
  'said_dead_seriou',
  'dead_seriou_start',
  'seriou_start_make',
  'start_make_excus',
  'make_excus_say',
  'excus_say_drunk',
  'say_drunk_also',
  'drunk_also_never',
  'also_never_told',
  'never_told_ship',
  'told_ship_import',
  'ship_import_monetarili',
  'import_monetarili_sentiment',
  'monetarili_sentiment_anoth',
  'sentiment_anoth_fight',
  'anoth_fight_hung',
  'fight_hung_upon',
  'hung_upon_tell',
  'upon_tell_im',
  'tell_im_expect',
  'im_expect_afraid',
  'expect_afraid_take',
  'afraid_take_legal',
  'take_legal_rout',
  'legal_rout_kept',
  'rout_kept_text',
  'kept_text_ask',
  'text_ask_let',
  'ask_let_go',
  'let_go_say',
  'go_say_cruel',
  'say_cruel_threaten',
  'cruel_threaten_law',
  'threaten_law_friend',
  'law_friend_apolog',
  'friend_apolog_think',
  'apolog_think_would',
  'think_would_insist',
  'would_insist_pay',
  'insist_pay_get',
  'pay_get_mightv',
  'get_mightv_got',
  'mightv_got_work',
  'got_work_item',
  'work_item_treat',
  'item_treat_boyfriend',
  'treat_boyfriend_badli',
  'boyfriend_badli_seem',
  'badli_seem_like',
  'seem_like_reckless',
  'like_reckless_part',
  'reckless_part_aita'],
 ['got',
  'invit',
  'fianc',
  'famili',
  'christma',
  'celebratori',
  'dinner',
  'first',
  'christma',
  'alway',
  'picki',
  'eat',
  'cant',
  'help',
  'psycholog',
  'factor',
  'childhood',
  'person',
  'like',
  'dislik',
  'accept',
  'invit',
  'let',
  'fmil',
  'know',
  'eat',
  'tradit',
  'food',
  'celebr',
  'show',
  'varieti',
  'dish',
  'choos',
  'accommod',
  'refus',
  'told',
  'bring',
  'dish',
  'said',
  'bring',
  'dish',
  'im',
  'guest',
  'better',
  'stay',
  'home',
  'went',
  'back',
  'forth',
  'insist',
  'come',
  'accommod',
  'made',
  'thought',
  'simpl',
  'request',
  'fmil',
  'couldv',
  'agre',
  'realli',
  'want',
  'fianc',
  'agre',
  'shhould',
  'bring',
  'dish',
  'arriv',
  'saw',
  'accommod',
  'made',
  'got',
  'go',
  'thing',
  'walk',
  'went',
  'home',
  'fmil',
  'fianc',
  'shock',
  'got',
  'ton',
  'call',
  'text',
  'fianc',
  'came',
  'home',
  'lash',
  'call',
  'selfish',
  'spoil',
  'walk',
  'like',
  'dish',
  'mom',
  'make',
  'responsibilti',
  'feed',
  'responsibilti',
  'feed',
  'im',
  'guest',
  'make',
  'sens',
  'told',
  'accus',
  'start',
  'shit',
  'ruin',
  'first',
  'christma',
  'famili',
  'disrespect',
  'mom',
  'continuelli',
  'say',
  'fuck',
  'suck',
  'famili',
  'sake',
  'eta',
  'clear',
  'point',
  '*',
  'say',
  'respect',
  'inlaw',
  'especi',
  'fmil',
  'respect',
  'far',
  'biggest',
  'conflict',
  '*',
  'work',
  'long',
  'hour',
  'even',
  'holiday',
  'much',
  'time',
  'cook',
  '*',
  'ask',
  'elabor',
  'dish',
  'sever',
  'dish',
  'one',
  'simpl',
  'option',
  'got_invit',
  'invit_fianc',
  'fianc_famili',
  'famili_christma',
  'christma_celebratori',
  'celebratori_dinner',
  'dinner_first',
  'first_christma',
  'christma_alway',
  'alway_picki',
  'picki_eat',
  'eat_cant',
  'cant_help',
  'help_psycholog',
  'psycholog_factor',
  'factor_childhood',
  'childhood_person',
  'person_like',
  'like_dislik',
  'dislik_accept',
  'accept_invit',
  'invit_let',
  'let_fmil',
  'fmil_know',
  'know_eat',
  'eat_tradit',
  'tradit_food',
  'food_celebr',
  'celebr_show',
  'show_varieti',
  'varieti_dish',
  'dish_choos',
  'choos_accommod',
  'accommod_refus',
  'refus_told',
  'told_bring',
  'bring_dish',
  'dish_said',
  'said_bring',
  'bring_dish',
  'dish_im',
  'im_guest',
  'guest_better',
  'better_stay',
  'stay_home',
  'home_went',
  'went_back',
  'back_forth',
  'forth_insist',
  'insist_come',
  'come_accommod',
  'accommod_made',
  'made_thought',
  'thought_simpl',
  'simpl_request',
  'request_fmil',
  'fmil_couldv',
  'couldv_agre',
  'agre_realli',
  'realli_want',
  'want_fianc',
  'fianc_agre',
  'agre_shhould',
  'shhould_bring',
  'bring_dish',
  'dish_arriv',
  'arriv_saw',
  'saw_accommod',
  'accommod_made',
  'made_got',
  'got_go',
  'go_thing',
  'thing_walk',
  'walk_went',
  'went_home',
  'home_fmil',
  'fmil_fianc',
  'fianc_shock',
  'shock_got',
  'got_ton',
  'ton_call',
  'call_text',
  'text_fianc',
  'fianc_came',
  'came_home',
  'home_lash',
  'lash_call',
  'call_selfish',
  'selfish_spoil',
  'spoil_walk',
  'walk_like',
  'like_dish',
  'dish_mom',
  'mom_make',
  'make_responsibilti',
  'responsibilti_feed',
  'feed_responsibilti',
  'responsibilti_feed',
  'feed_im',
  'im_guest',
  'guest_make',
  'make_sens',
  'sens_told',
  'told_accus',
  'accus_start',
  'start_shit',
  'shit_ruin',
  'ruin_first',
  'first_christma',
  'christma_famili',
  'famili_disrespect',
  'disrespect_mom',
  'mom_continuelli',
  'continuelli_say',
  'say_fuck',
  'fuck_suck',
  'suck_famili',
  'famili_sake',
  'sake_eta',
  'eta_clear',
  'clear_point',
  'point_*',
  '*_say',
  'say_respect',
  'respect_inlaw',
  'inlaw_especi',
  'especi_fmil',
  'fmil_respect',
  'respect_far',
  'far_biggest',
  'biggest_conflict',
  'conflict_*',
  '*_work',
  'work_long',
  'long_hour',
  'hour_even',
  'even_holiday',
  'holiday_much',
  'much_time',
  'time_cook',
  'cook_*',
  '*_ask',
  'ask_elabor',
  'elabor_dish',
  'dish_sever',
  'sever_dish',
  'dish_one',
  'one_simpl',
  'simpl_option',
  'got_invit_fianc',
  'invit_fianc_famili',
  'fianc_famili_christma',
  'famili_christma_celebratori',
  'christma_celebratori_dinner',
  'celebratori_dinner_first',
  'dinner_first_christma',
  'first_christma_alway',
  'christma_alway_picki',
  'alway_picki_eat',
  'picki_eat_cant',
  'eat_cant_help',
  'cant_help_psycholog',
  'help_psycholog_factor',
  'psycholog_factor_childhood',
  'factor_childhood_person',
  'childhood_person_like',
  'person_like_dislik',
  'like_dislik_accept',
  'dislik_accept_invit',
  'accept_invit_let',
  'invit_let_fmil',
  'let_fmil_know',
  'fmil_know_eat',
  'know_eat_tradit',
  'eat_tradit_food',
  'tradit_food_celebr',
  'food_celebr_show',
  'celebr_show_varieti',
  'show_varieti_dish',
  'varieti_dish_choos',
  'dish_choos_accommod',
  'choos_accommod_refus',
  'accommod_refus_told',
  'refus_told_bring',
  'told_bring_dish',
  'bring_dish_said',
  'dish_said_bring',
  'said_bring_dish',
  'bring_dish_im',
  'dish_im_guest',
  'im_guest_better',
  'guest_better_stay',
  'better_stay_home',
  'stay_home_went',
  'home_went_back',
  'went_back_forth',
  'back_forth_insist',
  'forth_insist_come',
  'insist_come_accommod',
  'come_accommod_made',
  'accommod_made_thought',
  'made_thought_simpl',
  'thought_simpl_request',
  'simpl_request_fmil',
  'request_fmil_couldv',
  'fmil_couldv_agre',
  'couldv_agre_realli',
  'agre_realli_want',
  'realli_want_fianc',
  'want_fianc_agre',
  'fianc_agre_shhould',
  'agre_shhould_bring',
  'shhould_bring_dish',
  'bring_dish_arriv',
  'dish_arriv_saw',
  'arriv_saw_accommod',
  'saw_accommod_made',
  'accommod_made_got',
  'made_got_go',
  'got_go_thing',
  'go_thing_walk',
  'thing_walk_went',
  'walk_went_home',
  'went_home_fmil',
  'home_fmil_fianc',
  'fmil_fianc_shock',
  'fianc_shock_got',
  'shock_got_ton',
  'got_ton_call',
  'ton_call_text',
  'call_text_fianc',
  'text_fianc_came',
  'fianc_came_home',
  'came_home_lash',
  'home_lash_call',
  'lash_call_selfish',
  'call_selfish_spoil',
  'selfish_spoil_walk',
  'spoil_walk_like',
  'walk_like_dish',
  'like_dish_mom',
  'dish_mom_make',
  'mom_make_responsibilti',
  'make_responsibilti_feed',
  'responsibilti_feed_responsibilti',
  'feed_responsibilti_feed',
  'responsibilti_feed_im',
  'feed_im_guest',
  'im_guest_make',
  'guest_make_sens',
  'make_sens_told',
  'sens_told_accus',
  'told_accus_start',
  'accus_start_shit',
  'start_shit_ruin',
  'shit_ruin_first',
  'ruin_first_christma',
  'first_christma_famili',
  'christma_famili_disrespect',
  'famili_disrespect_mom',
  'disrespect_mom_continuelli',
  'mom_continuelli_say',
  'continuelli_say_fuck',
  'say_fuck_suck',
  'fuck_suck_famili',
  'suck_famili_sake',
  'famili_sake_eta',
  'sake_eta_clear',
  'eta_clear_point',
  'clear_point_*',
  'point_*_say',
  '*_say_respect',
  'say_respect_inlaw',
  'respect_inlaw_especi',
  'inlaw_especi_fmil',
  'especi_fmil_respect',
  'fmil_respect_far',
  'respect_far_biggest',
  'far_biggest_conflict',
  'biggest_conflict_*',
  'conflict_*_work',
  '*_work_long',
  'work_long_hour',
  'long_hour_even',
  'hour_even_holiday',
  'even_holiday_much',
  'holiday_much_time',
  'much_time_cook',
  'time_cook_*',
  'cook_*_ask',
  '*_ask_elabor',
  'ask_elabor_dish',
  'elabor_dish_sever',
  'dish_sever_dish',
  'sever_dish_one',
  'dish_one_simpl',
  'one_simpl_option'],
 ['pretti',
  'much',
  'titl',
  'brother',
  'current',
  'engag',
  'fiancè',
  'bought',
  'new',
  'phone',
  'valentin',
  'ask',
  'boyfriend',
  'train',
  'comput',
  'softwar',
  'instal',
  'hidden',
  'track',
  'app',
  'phone',
  'fianceè',
  'see',
  'notic',
  'overheard',
  'talk',
  'enter',
  'room',
  'went',
  'silent',
  'wait',
  'til',
  'brother',
  'left',
  'talk',
  'boyfriend',
  'deni',
  'convers',
  'brother',
  'first',
  'admit',
  'instal',
  'app',
  'phone',
  'told',
  'brother',
  'wrong',
  'huge',
  'breach',
  'privaci',
  'said',
  'noth',
  'advis',
  'stay',
  'well',
  'said',
  'want',
  'tell',
  'brother',
  'fiancè',
  'boyfriend',
  'argu',
  'nosi',
  'intrus',
  'told',
  'stay',
  'let',
  'deal',
  'issu',
  'thought',
  'unfair',
  'futur',
  'sister',
  'law',
  'sinc',
  'one',
  'work',
  'pay',
  'bill',
  'rent',
  'treat',
  'boyfriend',
  'told',
  'gtfo',
  'attitud',
  'said',
  'stay',
  'way',
  'concern',
  'know',
  'feel',
  'horribl',
  'hear',
  'brother',
  'sinc',
  'good',
  'relationship',
  'fiance',
  'cant',
  'help',
  'feel',
  'guilti',
  'want',
  'tell',
  'aita',
  'want',
  'tell',
  'pretti_much',
  'much_titl',
  'titl_brother',
  'brother_current',
  'current_engag',
  'engag_fiancè',
  'fiancè_bought',
  'bought_new',
  'new_phone',
  'phone_valentin',
  'valentin_ask',
  'ask_boyfriend',
  'boyfriend_train',
  'train_comput',
  'comput_softwar',
  'softwar_instal',
  'instal_hidden',
  'hidden_track',
  'track_app',
  'app_phone',
  'phone_fianceè',
  'fianceè_see',
  'see_notic',
  'notic_overheard',
  'overheard_talk',
  'talk_enter',
  'enter_room',
  'room_went',
  'went_silent',
  'silent_wait',
  'wait_til',
  'til_brother',
  'brother_left',
  'left_talk',
  'talk_boyfriend',
  'boyfriend_deni',
  'deni_convers',
  'convers_brother',
  'brother_first',
  'first_admit',
  'admit_instal',
  'instal_app',
  'app_phone',
  'phone_told',
  'told_brother',
  'brother_wrong',
  'wrong_huge',
  'huge_breach',
  'breach_privaci',
  'privaci_said',
  'said_noth',
  'noth_advis',
  'advis_stay',
  'stay_well',
  'well_said',
  'said_want',
  'want_tell',
  'tell_brother',
  'brother_fiancè',
  'fiancè_boyfriend',
  'boyfriend_argu',
  'argu_nosi',
  'nosi_intrus',
  'intrus_told',
  'told_stay',
  'stay_let',
  'let_deal',
  'deal_issu',
  'issu_thought',
  'thought_unfair',
  'unfair_futur',
  'futur_sister',
  'sister_law',
  'law_sinc',
  'sinc_one',
  'one_work',
  'work_pay',
  'pay_bill',
  'bill_rent',
  'rent_treat',
  'treat_boyfriend',
  'boyfriend_told',
  'told_gtfo',
  'gtfo_attitud',
  'attitud_said',
  'said_stay',
  'stay_way',
  'way_concern',
  'concern_know',
  'know_feel',
  'feel_horribl',
  'horribl_hear',
  'hear_brother',
  'brother_sinc',
  'sinc_good',
  'good_relationship',
  'relationship_fiance',
  'fiance_cant',
  'cant_help',
  'help_feel',
  'feel_guilti',
  'guilti_want',
  'want_tell',
  'tell_aita',
  'aita_want',
  'want_tell',
  'pretti_much_titl',
  'much_titl_brother',
  'titl_brother_current',
  'brother_current_engag',
  'current_engag_fiancè',
  'engag_fiancè_bought',
  'fiancè_bought_new',
  'bought_new_phone',
  'new_phone_valentin',
  'phone_valentin_ask',
  'valentin_ask_boyfriend',
  'ask_boyfriend_train',
  'boyfriend_train_comput',
  'train_comput_softwar',
  'comput_softwar_instal',
  'softwar_instal_hidden',
  'instal_hidden_track',
  'hidden_track_app',
  'track_app_phone',
  'app_phone_fianceè',
  'phone_fianceè_see',
  'fianceè_see_notic',
  'see_notic_overheard',
  'notic_overheard_talk',
  'overheard_talk_enter',
  'talk_enter_room',
  'enter_room_went',
  'room_went_silent',
  'went_silent_wait',
  'silent_wait_til',
  'wait_til_brother',
  'til_brother_left',
  'brother_left_talk',
  'left_talk_boyfriend',
  'talk_boyfriend_deni',
  'boyfriend_deni_convers',
  'deni_convers_brother',
  'convers_brother_first',
  'brother_first_admit',
  'first_admit_instal',
  'admit_instal_app',
  'instal_app_phone',
  'app_phone_told',
  'phone_told_brother',
  'told_brother_wrong',
  'brother_wrong_huge',
  'wrong_huge_breach',
  'huge_breach_privaci',
  'breach_privaci_said',
  'privaci_said_noth',
  'said_noth_advis',
  'noth_advis_stay',
  'advis_stay_well',
  'stay_well_said',
  'well_said_want',
  'said_want_tell',
  'want_tell_brother',
  'tell_brother_fiancè',
  'brother_fiancè_boyfriend',
  'fiancè_boyfriend_argu',
  'boyfriend_argu_nosi',
  'argu_nosi_intrus',
  'nosi_intrus_told',
  'intrus_told_stay',
  'told_stay_let',
  'stay_let_deal',
  'let_deal_issu',
  'deal_issu_thought',
  'issu_thought_unfair',
  'thought_unfair_futur',
  'unfair_futur_sister',
  'futur_sister_law',
  'sister_law_sinc',
  'law_sinc_one',
  'sinc_one_work',
  'one_work_pay',
  'work_pay_bill',
  'pay_bill_rent',
  'bill_rent_treat',
  'rent_treat_boyfriend',
  'treat_boyfriend_told',
  'boyfriend_told_gtfo',
  'told_gtfo_attitud',
  'gtfo_attitud_said',
  'attitud_said_stay',
  'said_stay_way',
  'stay_way_concern',
  'way_concern_know',
  'concern_know_feel',
  'know_feel_horribl',
  'feel_horribl_hear',
  'horribl_hear_brother',
  'hear_brother_sinc',
  'brother_sinc_good',
  'sinc_good_relationship',
  'good_relationship_fiance',
  'relationship_fiance_cant',
  'fiance_cant_help',
  'cant_help_feel',
  'help_feel_guilti',
  'feel_guilti_want',
  'guilti_want_tell',
  'want_tell_aita',
  'tell_aita_want',
  'aita_want_tell'],
 ['husband',
  'shaun',
  'year',
  'marri',
  'month',
  'famili',
  'decent',
  'peopl',
  'mom',
  'littl',
  'passive-aggress',
  'tend',
  'critic',
  'lot',
  'shaun',
  'see',
  'still',
  'get',
  'use',
  'around',
  'idk',
  'treat',
  'ex',
  'julissa',
  'good',
  'mil',
  'say',
  'julissa',
  'around',
  'famili',
  'age',
  'past',
  'shaun',
  'never',
  'affect',
  'relationship',
  'fine',
  'never',
  'mind',
  'attend',
  'everi',
  'holiday',
  'around',
  'til',
  'yesterday',
  'thanksgiv',
  'dinner',
  'mil',
  'hous',
  'shaun',
  'went',
  'arriv',
  'alreadi',
  'dinner',
  'time',
  'everyon',
  'seat',
  'saw',
  'chair',
  'taken',
  'ask',
  'mil',
  'save',
  'seat',
  'said',
  'sorri',
  'one',
  'granddaught',
  'decid',
  'show',
  'last',
  'minut',
  'chair',
  'taken',
  'look',
  'julissa',
  'sit',
  'next',
  'shaun',
  'tri',
  'point',
  'deserv',
  'chair',
  'sinc',
  'im',
  'dil',
  'know',
  'said',
  'knowi',
  'know',
  'mil',
  'flatout',
  'said',
  'julissa',
  'much',
  'famili',
  'rude',
  'impli',
  'otherwis',
  'julissa',
  'nod',
  'confid',
  'glanc',
  'upset',
  'want',
  'leav',
  'decid',
  'sit',
  'husband',
  'lap',
  'act',
  'casual',
  'possibl',
  'sat',
  'lap',
  'ask',
  'okay',
  'worri',
  'im',
  'petit',
  'strong',
  'built',
  'start',
  'eat',
  'casual',
  'smile',
  'compliment',
  'food',
  'mention',
  'shaun',
  'warm',
  'comfort',
  'lap',
  'tabl',
  'went',
  'awkwardli',
  'silenc',
  'bil',
  'would',
  'tri',
  'break',
  'silenc',
  'chang',
  'subject',
  'somehow',
  'goe',
  'back',
  'awkward',
  'mil',
  'julissa',
  'bare',
  'eat',
  'stare',
  'eye',
  'wide',
  'open',
  'minut',
  'later',
  'julissa',
  'excus',
  'bathroom',
  'mil',
  'still',
  'awkward',
  'best',
  'focu',
  'dinner',
  'shaun',
  'eat',
  'well',
  'later',
  'much',
  'tension',
  'mil',
  'bare',
  'abl',
  'speak',
  'julissa',
  'left',
  'earli',
  'like',
  'right',
  'dinner',
  'shaun',
  'went',
  'home',
  'mil',
  'tri',
  'call',
  'call',
  'shaun',
  'text',
  'say',
  'inappropri',
  'ruin',
  'thanksgiv',
  'dinner',
  'made',
  'awkward',
  'said',
  'fault',
  'chair',
  'taken',
  'couldv',
  'drag',
  'chair',
  'kitchen',
  'act',
  'childishli',
  'made',
  'julissa',
  'famili',
  'uncomfort',
  'inappropri',
  'edit',
  'need',
  'mention',
  'even',
  'took',
  'chair',
  'kitchen',
  'enough',
  'space',
  'dinner',
  'tabl',
  'fit',
  'chair',
  'everyon',
  'sit',
  'next',
  'husband_shaun',
  'shaun_year',
  'year_marri',
  'marri_month',
  'month_famili',
  'famili_decent',
  'decent_peopl',
  'peopl_mom',
  'mom_littl',
  'littl_passive-aggress',
  'passive-aggress_tend',
  'tend_critic',
  'critic_lot',
  'lot_shaun',
  'shaun_see',
  'see_still',
  'still_get',
  'get_use',
  'use_around',
  'around_idk',
  'idk_treat',
  'treat_ex',
  'ex_julissa',
  'julissa_good',
  'good_mil',
  'mil_say',
  'say_julissa',
  'julissa_around',
  'around_famili',
  'famili_age',
  'age_past',
  'past_shaun',
  'shaun_never',
  'never_affect',
  'affect_relationship',
  'relationship_fine',
  'fine_never',
  'never_mind',
  'mind_attend',
  'attend_everi',
  'everi_holiday',
  'holiday_around',
  'around_til',
  'til_yesterday',
  'yesterday_thanksgiv',
  'thanksgiv_dinner',
  'dinner_mil',
  'mil_hous',
  'hous_shaun',
  'shaun_went',
  'went_arriv',
  'arriv_alreadi',
  'alreadi_dinner',
  'dinner_time',
  'time_everyon',
  'everyon_seat',
  'seat_saw',
  'saw_chair',
  'chair_taken',
  'taken_ask',
  'ask_mil',
  'mil_save',
  'save_seat',
  'seat_said',
  'said_sorri',
  'sorri_one',
  'one_granddaught',
  'granddaught_decid',
  'decid_show',
  'show_last',
  'last_minut',
  'minut_chair',
  'chair_taken',
  'taken_look',
  'look_julissa',
  'julissa_sit',
  'sit_next',
  'next_shaun',
  'shaun_tri',
  'tri_point',
  'point_deserv',
  'deserv_chair',
  'chair_sinc',
  'sinc_im',
  'im_dil',
  'dil_know',
  'know_said',
  'said_knowi',
  'knowi_know',
  'know_mil',
  'mil_flatout',
  'flatout_said',
  'said_julissa',
  'julissa_much',
  'much_famili',
  'famili_rude',
  'rude_impli',
  'impli_otherwis',
  'otherwis_julissa',
  'julissa_nod',
  'nod_confid',
  'confid_glanc',
  'glanc_upset',
  'upset_want',
  'want_leav',
  'leav_decid',
  'decid_sit',
  'sit_husband',
  'husband_lap',
  'lap_act',
  'act_casual',
  'casual_possibl',
  'possibl_sat',
  'sat_lap',
  'lap_ask',
  'ask_okay',
  'okay_worri',
  'worri_im',
  'im_petit',
  'petit_strong',
  'strong_built',
  'built_start',
  'start_eat',
  'eat_casual',
  'casual_smile',
  'smile_compliment',
  'compliment_food',
  'food_mention',
  'mention_shaun',
  'shaun_warm',
  'warm_comfort',
  'comfort_lap',
  'lap_tabl',
  'tabl_went',
  'went_awkwardli',
  'awkwardli_silenc',
  'silenc_bil',
  'bil_would',
  'would_tri',
  'tri_break',
  'break_silenc',
  'silenc_chang',
  'chang_subject',
  'subject_somehow',
  'somehow_goe',
  'goe_back',
  'back_awkward',
  'awkward_mil',
  'mil_julissa',
  'julissa_bare',
  'bare_eat',
  'eat_stare',
  'stare_eye',
  'eye_wide',
  'wide_open',
  'open_minut',
  'minut_later',
  'later_julissa',
  'julissa_excus',
  'excus_bathroom',
  'bathroom_mil',
  'mil_still',
  'still_awkward',
  'awkward_best',
  'best_focu',
  'focu_dinner',
  'dinner_shaun',
  'shaun_eat',
  'eat_well',
  'well_later',
  'later_much',
  'much_tension',
  'tension_mil',
  'mil_bare',
  'bare_abl',
  'abl_speak',
  'speak_julissa',
  'julissa_left',
  'left_earli',
  'earli_like',
  'like_right',
  'right_dinner',
  'dinner_shaun',
  'shaun_went',
  'went_home',
  'home_mil',
  'mil_tri',
  'tri_call',
  'call_call',
  'call_shaun',
  'shaun_text',
  'text_say',
  'say_inappropri',
  'inappropri_ruin',
  'ruin_thanksgiv',
  'thanksgiv_dinner',
  'dinner_made',
  'made_awkward',
  'awkward_said',
  'said_fault',
  'fault_chair',
  'chair_taken',
  'taken_couldv',
  'couldv_drag',
  'drag_chair',
  'chair_kitchen',
  'kitchen_act',
  'act_childishli',
  'childishli_made',
  'made_julissa',
  'julissa_famili',
  'famili_uncomfort',
  'uncomfort_inappropri',
  'inappropri_edit',
  'edit_need',
  'need_mention',
  'mention_even',
  'even_took',
  'took_chair',
  'chair_kitchen',
  'kitchen_enough',
  'enough_space',
  'space_dinner',
  'dinner_tabl',
  'tabl_fit',
  'fit_chair',
  'chair_everyon',
  'everyon_sit',
  'sit_next',
  'husband_shaun_year',
  'shaun_year_marri',
  'year_marri_month',
  'marri_month_famili',
  'month_famili_decent',
  'famili_decent_peopl',
  'decent_peopl_mom',
  'peopl_mom_littl',
  'mom_littl_passive-aggress',
  'littl_passive-aggress_tend',
  'passive-aggress_tend_critic',
  'tend_critic_lot',
  'critic_lot_shaun',
  'lot_shaun_see',
  'shaun_see_still',
  'see_still_get',
  'still_get_use',
  'get_use_around',
  'use_around_idk',
  'around_idk_treat',
  'idk_treat_ex',
  'treat_ex_julissa',
  'ex_julissa_good',
  'julissa_good_mil',
  'good_mil_say',
  'mil_say_julissa',
  'say_julissa_around',
  'julissa_around_famili',
  'around_famili_age',
  'famili_age_past',
  'age_past_shaun',
  'past_shaun_never',
  'shaun_never_affect',
  'never_affect_relationship',
  'affect_relationship_fine',
  'relationship_fine_never',
  'fine_never_mind',
  'never_mind_attend',
  'mind_attend_everi',
  'attend_everi_holiday',
  'everi_holiday_around',
  'holiday_around_til',
  'around_til_yesterday',
  'til_yesterday_thanksgiv',
  'yesterday_thanksgiv_dinner',
  'thanksgiv_dinner_mil',
  'dinner_mil_hous',
  'mil_hous_shaun',
  'hous_shaun_went',
  'shaun_went_arriv',
  'went_arriv_alreadi',
  'arriv_alreadi_dinner',
  'alreadi_dinner_time',
  'dinner_time_everyon',
  'time_everyon_seat',
  'everyon_seat_saw',
  'seat_saw_chair',
  'saw_chair_taken',
  'chair_taken_ask',
  'taken_ask_mil',
  'ask_mil_save',
  'mil_save_seat',
  'save_seat_said',
  'seat_said_sorri',
  'said_sorri_one',
  'sorri_one_granddaught',
  'one_granddaught_decid',
  'granddaught_decid_show',
  'decid_show_last',
  'show_last_minut',
  'last_minut_chair',
  'minut_chair_taken',
  'chair_taken_look',
  'taken_look_julissa',
  'look_julissa_sit',
  'julissa_sit_next',
  'sit_next_shaun',
  'next_shaun_tri',
  'shaun_tri_point',
  'tri_point_deserv',
  'point_deserv_chair',
  'deserv_chair_sinc',
  'chair_sinc_im',
  'sinc_im_dil',
  'im_dil_know',
  'dil_know_said',
  'know_said_knowi',
  'said_knowi_know',
  'knowi_know_mil',
  'know_mil_flatout',
  'mil_flatout_said',
  'flatout_said_julissa',
  'said_julissa_much',
  'julissa_much_famili',
  'much_famili_rude',
  'famili_rude_impli',
  'rude_impli_otherwis',
  'impli_otherwis_julissa',
  'otherwis_julissa_nod',
  'julissa_nod_confid',
  'nod_confid_glanc',
  'confid_glanc_upset',
  'glanc_upset_want',
  'upset_want_leav',
  'want_leav_decid',
  'leav_decid_sit',
  'decid_sit_husband',
  'sit_husband_lap',
  'husband_lap_act',
  'lap_act_casual',
  'act_casual_possibl',
  'casual_possibl_sat',
  'possibl_sat_lap',
  'sat_lap_ask',
  'lap_ask_okay',
  'ask_okay_worri',
  'okay_worri_im',
  'worri_im_petit',
  'im_petit_strong',
  'petit_strong_built',
  'strong_built_start',
  'built_start_eat',
  'start_eat_casual',
  'eat_casual_smile',
  'casual_smile_compliment',
  'smile_compliment_food',
  'compliment_food_mention',
  'food_mention_shaun',
  'mention_shaun_warm',
  'shaun_warm_comfort',
  'warm_comfort_lap',
  'comfort_lap_tabl',
  'lap_tabl_went',
  'tabl_went_awkwardli',
  'went_awkwardli_silenc',
  'awkwardli_silenc_bil',
  'silenc_bil_would',
  'bil_would_tri',
  'would_tri_break',
  'tri_break_silenc',
  'break_silenc_chang',
  'silenc_chang_subject',
  'chang_subject_somehow',
  'subject_somehow_goe',
  'somehow_goe_back',
  'goe_back_awkward',
  'back_awkward_mil',
  'awkward_mil_julissa',
  'mil_julissa_bare',
  'julissa_bare_eat',
  'bare_eat_stare',
  'eat_stare_eye',
  'stare_eye_wide',
  'eye_wide_open',
  'wide_open_minut',
  'open_minut_later',
  'minut_later_julissa',
  'later_julissa_excus',
  'julissa_excus_bathroom',
  'excus_bathroom_mil',
  'bathroom_mil_still',
  'mil_still_awkward',
  'still_awkward_best',
  'awkward_best_focu',
  'best_focu_dinner',
  'focu_dinner_shaun',
  'dinner_shaun_eat',
  'shaun_eat_well',
  'eat_well_later',
  'well_later_much',
  'later_much_tension',
  'much_tension_mil',
  'tension_mil_bare',
  'mil_bare_abl',
  'bare_abl_speak',
  'abl_speak_julissa',
  'speak_julissa_left',
  'julissa_left_earli',
  'left_earli_like',
  'earli_like_right',
  'like_right_dinner',
  'right_dinner_shaun',
  'dinner_shaun_went',
  'shaun_went_home',
  'went_home_mil',
  'home_mil_tri',
  'mil_tri_call',
  'tri_call_call',
  'call_call_shaun',
  'call_shaun_text',
  'shaun_text_say',
  'text_say_inappropri',
  'say_inappropri_ruin',
  'inappropri_ruin_thanksgiv',
  'ruin_thanksgiv_dinner',
  'thanksgiv_dinner_made',
  'dinner_made_awkward',
  'made_awkward_said',
  'awkward_said_fault',
  'said_fault_chair',
  'fault_chair_taken',
  'chair_taken_couldv',
  'taken_couldv_drag',
  'couldv_drag_chair',
  'drag_chair_kitchen',
  'chair_kitchen_act',
  'kitchen_act_childishli',
  'act_childishli_made',
  'childishli_made_julissa',
  'made_julissa_famili',
  'julissa_famili_uncomfort',
  'famili_uncomfort_inappropri',
  'uncomfort_inappropri_edit',
  'inappropri_edit_need',
  'edit_need_mention',
  'need_mention_even',
  'mention_even_took',
  'even_took_chair',
  'took_chair_kitchen',
  'chair_kitchen_enough',
  'kitchen_enough_space',
  'enough_space_dinner',
  'space_dinner_tabl',
  'dinner_tabl_fit',
  'tabl_fit_chair',
  'fit_chair_everyon',
  'chair_everyon_sit',
  'everyon_sit_next'],
 ['first',
  'want',
  'start',
  'mention',
  'wife',
  'cancer',
  'patient',
  'unfortun',
  'start',
  'lose',
  'hair',
  'due',
  'chemo',
  'therapi',
  'incred',
  'insecur',
  'lack',
  'hair',
  'particular',
  'got',
  'wig',
  'start',
  'wear',
  'mind',
  '%',
  'support',
  'sinc',
  'wear',
  'around',
  'famili',
  'friend',
  'sister',
  'lost',
  'apart',
  'messi',
  'divorc',
  'move',
  'twin',
  'daughter',
  'almost',
  'month',
  'ago',
  'thing',
  'go',
  'well',
  'except',
  'niec',
  'constant',
  'remark',
  'wife',
  'wig',
  'got',
  'hung',
  'kept',
  'ask',
  'lot',
  'question',
  'ask',
  'take',
  'turn',
  'tri',
  'suggest',
  'strighten',
  'strightner',
  'exhaust',
  'even',
  'pressur',
  'see',
  'without',
  'wife',
  'uncomfort',
  'refus',
  'yesterday',
  'got',
  'home',
  'found',
  'wife',
  'lock',
  'bedroom',
  'cri',
  'ask',
  'happen',
  'told',
  'woke',
  'find',
  'wig',
  'discov',
  'niec',
  'took',
  'hid',
  'urg',
  'come',
  'could',
  'see',
  'without',
  'wife',
  'repeatedli',
  'ask',
  'give',
  'back',
  'start',
  'laugh',
  'record',
  'wife',
  'got',
  'lock',
  'door',
  'keep',
  'distanc',
  'caus',
  'stop',
  'fume',
  'went',
  'kitchen',
  'confront',
  'act',
  'confus',
  'abl',
  'get',
  'wig',
  'back',
  'lash',
  'tell',
  'humili',
  'wife',
  'barrass',
  'take',
  'away',
  'wig',
  'said',
  'lightheart',
  'prank',
  'made',
  'go',
  'sister',
  'got',
  'involv',
  'said',
  'wife',
  'sensit',
  'girl',
  'curio',
  'see',
  'without',
  'wig',
  'overreact',
  'told',
  'daughter',
  'record',
  'saw',
  'noth',
  'wrong',
  'said',
  'overreact',
  'well',
  'lost',
  'told',
  'niec',
  'longer',
  'welcom',
  'stay',
  'home',
  'need',
  'leav',
  'later',
  'let',
  'know',
  'evict',
  'sinc',
  'thought',
  'seriou',
  'start',
  'cri',
  'beg',
  'let',
  'go',
  'wife',
  'longer',
  'comfort',
  'around',
  'sister',
  'call',
  'elderi',
  'dad',
  'beg',
  'let',
  'stay',
  'insist',
  'niec',
  'act',
  'like',
  'typic',
  'teenag',
  'offer',
  'speak',
  'wife',
  'declin',
  'theyv',
  'beg',
  'chang',
  'mind',
  'ket',
  'refus',
  'aita',
  'first_want',
  'want_start',
  'start_mention',
  'mention_wife',
  'wife_cancer',
  'cancer_patient',
  'patient_unfortun',
  'unfortun_start',
  'start_lose',
  'lose_hair',
  'hair_due',
  'due_chemo',
  'chemo_therapi',
  'therapi_incred',
  'incred_insecur',
  'insecur_lack',
  'lack_hair',
  'hair_particular',
  'particular_got',
  'got_wig',
  'wig_start',
  'start_wear',
  'wear_mind',
  'mind_%',
  '%_support',
  'support_sinc',
  'sinc_wear',
  'wear_around',
  'around_famili',
  'famili_friend',
  'friend_sister',
  'sister_lost',
  'lost_apart',
  'apart_messi',
  'messi_divorc',
  'divorc_move',
  'move_twin',
  'twin_daughter',
  'daughter_almost',
  'almost_month',
  'month_ago',
  'ago_thing',
  'thing_go',
  'go_well',
  'well_except',
  'except_niec',
  'niec_constant',
  'constant_remark',
  'remark_wife',
  'wife_wig',
  'wig_got',
  'got_hung',
  'hung_kept',
  'kept_ask',
  'ask_lot',
  'lot_question',
  'question_ask',
  'ask_take',
  'take_turn',
  'turn_tri',
  'tri_suggest',
  'suggest_strighten',
  'strighten_strightner',
  'strightner_exhaust',
  'exhaust_even',
  'even_pressur',
  'pressur_see',
  'see_without',
  'without_wife',
  'wife_uncomfort',
  'uncomfort_refus',
  'refus_yesterday',
  'yesterday_got',
  'got_home',
  'home_found',
  'found_wife',
  'wife_lock',
  'lock_bedroom',
  'bedroom_cri',
  'cri_ask',
  'ask_happen',
  'happen_told',
  'told_woke',
  'woke_find',
  'find_wig',
  'wig_discov',
  'discov_niec',
  'niec_took',
  'took_hid',
  'hid_urg',
  'urg_come',
  'come_could',
  'could_see',
  'see_without',
  'without_wife',
  'wife_repeatedli',
  'repeatedli_ask',
  'ask_give',
  'give_back',
  'back_start',
  'start_laugh',
  'laugh_record',
  'record_wife',
  'wife_got',
  'got_lock',
  'lock_door',
  'door_keep',
  'keep_distanc',
  'distanc_caus',
  'caus_stop',
  'stop_fume',
  'fume_went',
  'went_kitchen',
  'kitchen_confront',
  'confront_act',
  'act_confus',
  'confus_abl',
  'abl_get',
  'get_wig',
  'wig_back',
  'back_lash',
  'lash_tell',
  'tell_humili',
  'humili_wife',
  'wife_barrass',
  'barrass_take',
  'take_away',
  'away_wig',
  'wig_said',
  'said_lightheart',
  'lightheart_prank',
  'prank_made',
  'made_go',
  'go_sister',
  'sister_got',
  'got_involv',
  'involv_said',
  'said_wife',
  'wife_sensit',
  'sensit_girl',
  'girl_curio',
  'curio_see',
  'see_without',
  'without_wig',
  'wig_overreact',
  'overreact_told',
  'told_daughter',
  'daughter_record',
  'record_saw',
  'saw_noth',
  'noth_wrong',
  'wrong_said',
  'said_overreact',
  'overreact_well',
  'well_lost',
  'lost_told',
  'told_niec',
  'niec_longer',
  'longer_welcom',
  'welcom_stay',
  'stay_home',
  'home_need',
  'need_leav',
  'leav_later',
  'later_let',
  'let_know',
  'know_evict',
  'evict_sinc',
  'sinc_thought',
  'thought_seriou',
  'seriou_start',
  'start_cri',
  'cri_beg',
  'beg_let',
  'let_go',
  'go_wife',
  'wife_longer',
  'longer_comfort',
  'comfort_around',
  'around_sister',
  'sister_call',
  'call_elderi',
  'elderi_dad',
  'dad_beg',
  'beg_let',
  'let_stay',
  'stay_insist',
  'insist_niec',
  'niec_act',
  'act_like',
  'like_typic',
  'typic_teenag',
  'teenag_offer',
  'offer_speak',
  'speak_wife',
  'wife_declin',
  'declin_theyv',
  'theyv_beg',
  'beg_chang',
  'chang_mind',
  'mind_ket',
  'ket_refus',
  'refus_aita',
  'first_want_start',
  'want_start_mention',
  'start_mention_wife',
  'mention_wife_cancer',
  'wife_cancer_patient',
  'cancer_patient_unfortun',
  'patient_unfortun_start',
  'unfortun_start_lose',
  'start_lose_hair',
  'lose_hair_due',
  'hair_due_chemo',
  'due_chemo_therapi',
  'chemo_therapi_incred',
  'therapi_incred_insecur',
  'incred_insecur_lack',
  'insecur_lack_hair',
  'lack_hair_particular',
  'hair_particular_got',
  'particular_got_wig',
  'got_wig_start',
  'wig_start_wear',
  'start_wear_mind',
  'wear_mind_%',
  'mind_%_support',
  '%_support_sinc',
  'support_sinc_wear',
  'sinc_wear_around',
  'wear_around_famili',
  'around_famili_friend',
  'famili_friend_sister',
  'friend_sister_lost',
  'sister_lost_apart',
  'lost_apart_messi',
  'apart_messi_divorc',
  'messi_divorc_move',
  'divorc_move_twin',
  'move_twin_daughter',
  'twin_daughter_almost',
  'daughter_almost_month',
  'almost_month_ago',
  'month_ago_thing',
  'ago_thing_go',
  'thing_go_well',
  'go_well_except',
  'well_except_niec',
  'except_niec_constant',
  'niec_constant_remark',
  'constant_remark_wife',
  'remark_wife_wig',
  'wife_wig_got',
  'wig_got_hung',
  'got_hung_kept',
  'hung_kept_ask',
  'kept_ask_lot',
  'ask_lot_question',
  'lot_question_ask',
  'question_ask_take',
  'ask_take_turn',
  'take_turn_tri',
  'turn_tri_suggest',
  'tri_suggest_strighten',
  'suggest_strighten_strightner',
  'strighten_strightner_exhaust',
  'strightner_exhaust_even',
  'exhaust_even_pressur',
  'even_pressur_see',
  'pressur_see_without',
  'see_without_wife',
  'without_wife_uncomfort',
  'wife_uncomfort_refus',
  'uncomfort_refus_yesterday',
  'refus_yesterday_got',
  'yesterday_got_home',
  'got_home_found',
  'home_found_wife',
  'found_wife_lock',
  'wife_lock_bedroom',
  'lock_bedroom_cri',
  'bedroom_cri_ask',
  'cri_ask_happen',
  'ask_happen_told',
  'happen_told_woke',
  'told_woke_find',
  'woke_find_wig',
  'find_wig_discov',
  'wig_discov_niec',
  'discov_niec_took',
  'niec_took_hid',
  'took_hid_urg',
  'hid_urg_come',
  'urg_come_could',
  'come_could_see',
  'could_see_without',
  'see_without_wife',
  'without_wife_repeatedli',
  'wife_repeatedli_ask',
  'repeatedli_ask_give',
  'ask_give_back',
  'give_back_start',
  'back_start_laugh',
  'start_laugh_record',
  'laugh_record_wife',
  'record_wife_got',
  'wife_got_lock',
  'got_lock_door',
  'lock_door_keep',
  'door_keep_distanc',
  'keep_distanc_caus',
  'distanc_caus_stop',
  'caus_stop_fume',
  'stop_fume_went',
  'fume_went_kitchen',
  'went_kitchen_confront',
  'kitchen_confront_act',
  'confront_act_confus',
  'act_confus_abl',
  'confus_abl_get',
  'abl_get_wig',
  'get_wig_back',
  'wig_back_lash',
  'back_lash_tell',
  'lash_tell_humili',
  'tell_humili_wife',
  'humili_wife_barrass',
  'wife_barrass_take',
  'barrass_take_away',
  'take_away_wig',
  'away_wig_said',
  'wig_said_lightheart',
  'said_lightheart_prank',
  'lightheart_prank_made',
  'prank_made_go',
  'made_go_sister',
  'go_sister_got',
  'sister_got_involv',
  'got_involv_said',
  'involv_said_wife',
  'said_wife_sensit',
  'wife_sensit_girl',
  'sensit_girl_curio',
  'girl_curio_see',
  'curio_see_without',
  'see_without_wig',
  'without_wig_overreact',
  'wig_overreact_told',
  'overreact_told_daughter',
  'told_daughter_record',
  'daughter_record_saw',
  'record_saw_noth',
  'saw_noth_wrong',
  'noth_wrong_said',
  'wrong_said_overreact',
  'said_overreact_well',
  'overreact_well_lost',
  'well_lost_told',
  'lost_told_niec',
  'told_niec_longer',
  'niec_longer_welcom',
  'longer_welcom_stay',
  'welcom_stay_home',
  'stay_home_need',
  'home_need_leav',
  'need_leav_later',
  'leav_later_let',
  'later_let_know',
  'let_know_evict',
  'know_evict_sinc',
  'evict_sinc_thought',
  'sinc_thought_seriou',
  'thought_seriou_start',
  'seriou_start_cri',
  'start_cri_beg',
  'cri_beg_let',
  'beg_let_go',
  'let_go_wife',
  'go_wife_longer',
  'wife_longer_comfort',
  'longer_comfort_around',
  'comfort_around_sister',
  'around_sister_call',
  'sister_call_elderi',
  'call_elderi_dad',
  'elderi_dad_beg',
  'dad_beg_let',
  'beg_let_stay',
  'let_stay_insist',
  'stay_insist_niec',
  'insist_niec_act',
  'niec_act_like',
  'act_like_typic',
  'like_typic_teenag',
  'typic_teenag_offer',
  'teenag_offer_speak',
  'offer_speak_wife',
  'speak_wife_declin',
  'wife_declin_theyv',
  'declin_theyv_beg',
  'theyv_beg_chang',
  'beg_chang_mind',
  'chang_mind_ket',
  'mind_ket_refus',
  'ket_refus_aita'],
 ['sister',
  'husband',
  'struggl',
  'infertil',
  'sinc',
  'got',
  'marri',
  'year',
  'ago',
  'theyv',
  'tri',
  'absolut',
  'everyth',
  'medic',
  'spiritu',
  'unfortun',
  'noth',
  'work',
  'approach',
  'late',
  'theyr',
  'start',
  'look',
  'adopt',
  'also',
  'slow',
  'go',
  'sinc',
  'financi',
  'condit',
  'exactli',
  'stabl',
  'multipl',
  'round',
  'fertil',
  'treatment',
  'went',
  'imagin',
  'struggl',
  'sympath',
  'stress',
  'situat',
  'bring',
  'husband',
  'honestli',
  'put',
  'strain',
  'relationship',
  'husband',
  'lost',
  'best',
  'friend',
  'mason',
  'wife',
  'kate',
  'two',
  'week',
  'ago',
  'horribl',
  'car',
  'accid',
  'left',
  'behind',
  'son',
  'pete',
  'even',
  'two',
  'yet',
  'sudden',
  'heart-wrench',
  'still',
  'griev',
  'lower',
  'contact',
  'lot',
  'peopl',
  'includ',
  'sister',
  'bil',
  'main',
  'concern',
  'right',
  'pete',
  'whose',
  'custodi',
  'come',
  'us',
  'godpar',
  'activ',
  'engag',
  'pete',
  'life',
  'sinc',
  'birth',
  'mason',
  'kate',
  'neither',
  'left',
  'immedi',
  'live',
  'rel',
  'take',
  'weve',
  'decid',
  'adopt',
  'pete',
  'soon',
  'stomach',
  'process',
  'husband',
  'never',
  'plan',
  'kid',
  'even',
  'absolut',
  'way',
  'want',
  'go',
  'situat',
  'far',
  'ideal',
  'start',
  'adopt',
  'process',
  'yesterday',
  'pete',
  'safeti',
  'noth',
  'els',
  'broke',
  'news',
  'extend',
  'famili',
  'friend',
  'let',
  'know',
  'husband',
  'avail',
  'littl',
  'longer',
  'know',
  'sister',
  'bil',
  'someth',
  'say',
  'im',
  'prepar',
  'heat',
  'text',
  'messag',
  'voic',
  'mail',
  'howev',
  'expect',
  'turn',
  'doorstep',
  'cri',
  'unfair',
  'given',
  'everyth',
  'want',
  'deserv',
  'parent',
  'go',
  'ive',
  'never',
  'seen',
  'husband',
  'angri',
  'usual',
  'mild',
  'gentl',
  'recent',
  'event',
  'stretch',
  'patienc',
  'limit',
  'kick',
  'porch',
  'told',
  'sister',
  'left',
  'sinc',
  'pain',
  'inconveni',
  'much',
  'around',
  'famili',
  'anymor',
  'know',
  'made',
  'fuss',
  'everyon',
  'someth',
  'say',
  'us',
  'turn',
  'phone',
  'know',
  'one',
  'curs',
  'us',
  'one',
  'know',
  'didar',
  'husband',
  'pain',
  'griev',
  'cant',
  'trust',
  'object',
  'go',
  'far',
  'edit',
  'origin',
  'want',
  'put',
  'inform',
  'want',
  'everyon',
  'point',
  'say',
  'reason',
  'wrong',
  'sake',
  'disclosur',
  'husband',
  'men',
  'case',
  'homophobia',
  'sister',
  'fault',
  'first',
  'person',
  'accept',
  'love',
  'hear',
  'singl',
  'word',
  'comment',
  'sister_husband',
  'husband_struggl',
  'struggl_infertil',
  'infertil_sinc',
  'sinc_got',
  'got_marri',
  'marri_year',
  'year_ago',
  'ago_theyv',
  'theyv_tri',
  'tri_absolut',
  'absolut_everyth',
  'everyth_medic',
  'medic_spiritu',
  'spiritu_unfortun',
  'unfortun_noth',
  'noth_work',
  'work_approach',
  'approach_late',
  'late_theyr',
  'theyr_start',
  'start_look',
  'look_adopt',
  'adopt_also',
  'also_slow',
  'slow_go',
  'go_sinc',
  'sinc_financi',
  'financi_condit',
  'condit_exactli',
  'exactli_stabl',
  'stabl_multipl',
  'multipl_round',
  'round_fertil',
  'fertil_treatment',
  'treatment_went',
  'went_imagin',
  'imagin_struggl',
  'struggl_sympath',
  'sympath_stress',
  'stress_situat',
  'situat_bring',
  'bring_husband',
  'husband_honestli',
  'honestli_put',
  'put_strain',
  'strain_relationship',
  'relationship_husband',
  'husband_lost',
  'lost_best',
  'best_friend',
  'friend_mason',
  'mason_wife',
  'wife_kate',
  'kate_two',
  'two_week',
  'week_ago',
  'ago_horribl',
  'horribl_car',
  'car_accid',
  'accid_left',
  'left_behind',
  'behind_son',
  'son_pete',
  'pete_even',
  'even_two',
  'two_yet',
  'yet_sudden',
  'sudden_heart-wrench',
  'heart-wrench_still',
  'still_griev',
  'griev_lower',
  'lower_contact',
  'contact_lot',
  'lot_peopl',
  'peopl_includ',
  'includ_sister',
  'sister_bil',
  'bil_main',
  'main_concern',
  'concern_right',
  'right_pete',
  'pete_whose',
  'whose_custodi',
  'custodi_come',
  'come_us',
  'us_godpar',
  'godpar_activ',
  'activ_engag',
  'engag_pete',
  'pete_life',
  'life_sinc',
  'sinc_birth',
  'birth_mason',
  'mason_kate',
  'kate_neither',
  'neither_left',
  'left_immedi',
  'immedi_live',
  'live_rel',
  'rel_take',
  'take_weve',
  'weve_decid',
  'decid_adopt',
  'adopt_pete',
  'pete_soon',
  'soon_stomach',
  'stomach_process',
  'process_husband',
  'husband_never',
  'never_plan',
  'plan_kid',
  'kid_even',
  'even_absolut',
  'absolut_way',
  'way_want',
  'want_go',
  'go_situat',
  'situat_far',
  'far_ideal',
  'ideal_start',
  'start_adopt',
  'adopt_process',
  'process_yesterday',
  'yesterday_pete',
  'pete_safeti',
  'safeti_noth',
  'noth_els',
  'els_broke',
  'broke_news',
  'news_extend',
  'extend_famili',
  'famili_friend',
  'friend_let',
  'let_know',
  'know_husband',
  'husband_avail',
  'avail_littl',
  'littl_longer',
  'longer_know',
  'know_sister',
  'sister_bil',
  'bil_someth',
  'someth_say',
  'say_im',
  'im_prepar',
  'prepar_heat',
  'heat_text',
  'text_messag',
  'messag_voic',
  'voic_mail',
  'mail_howev',
  'howev_expect',
  'expect_turn',
  'turn_doorstep',
  'doorstep_cri',
  'cri_unfair',
  'unfair_given',
  'given_everyth',
  'everyth_want',
  'want_deserv',
  'deserv_parent',
  'parent_go',
  'go_ive',
  'ive_never',
  'never_seen',
  'seen_husband',
  'husband_angri',
  'angri_usual',
  'usual_mild',
  'mild_gentl',
  'gentl_recent',
  'recent_event',
  'event_stretch',
  'stretch_patienc',
  'patienc_limit',
  'limit_kick',
  'kick_porch',
  'porch_told',
  'told_sister',
  'sister_left',
  'left_sinc',
  'sinc_pain',
  'pain_inconveni',
  'inconveni_much',
  'much_around',
  'around_famili',
  'famili_anymor',
  'anymor_know',
  'know_made',
  'made_fuss',
  'fuss_everyon',
  'everyon_someth',
  'someth_say',
  'say_us',
  'us_turn',
  'turn_phone',
  'phone_know',
  'know_one',
  'one_curs',
  'curs_us',
  'us_one',
  'one_know',
  'know_didar',
  'didar_husband',
  'husband_pain',
  'pain_griev',
  'griev_cant',
  'cant_trust',
  'trust_object',
  'object_go',
  'go_far',
  'far_edit',
  'edit_origin',
  'origin_want',
  'want_put',
  'put_inform',
  'inform_want',
  'want_everyon',
  'everyon_point',
  'point_say',
  'say_reason',
  'reason_wrong',
  'wrong_sake',
  'sake_disclosur',
  'disclosur_husband',
  'husband_men',
  'men_case',
  'case_homophobia',
  'homophobia_sister',
  'sister_fault',
  'fault_first',
  'first_person',
  'person_accept',
  'accept_love',
  'love_hear',
  'hear_singl',
  'singl_word',
  'word_comment',
  'sister_husband_struggl',
  'husband_struggl_infertil',
  'struggl_infertil_sinc',
  'infertil_sinc_got',
  'sinc_got_marri',
  'got_marri_year',
  'marri_year_ago',
  'year_ago_theyv',
  'ago_theyv_tri',
  'theyv_tri_absolut',
  'tri_absolut_everyth',
  'absolut_everyth_medic',
  'everyth_medic_spiritu',
  'medic_spiritu_unfortun',
  'spiritu_unfortun_noth',
  'unfortun_noth_work',
  'noth_work_approach',
  'work_approach_late',
  'approach_late_theyr',
  'late_theyr_start',
  'theyr_start_look',
  'start_look_adopt',
  'look_adopt_also',
  'adopt_also_slow',
  'also_slow_go',
  'slow_go_sinc',
  'go_sinc_financi',
  'sinc_financi_condit',
  'financi_condit_exactli',
  'condit_exactli_stabl',
  'exactli_stabl_multipl',
  'stabl_multipl_round',
  'multipl_round_fertil',
  'round_fertil_treatment',
  'fertil_treatment_went',
  'treatment_went_imagin',
  'went_imagin_struggl',
  'imagin_struggl_sympath',
  'struggl_sympath_stress',
  'sympath_stress_situat',
  'stress_situat_bring',
  'situat_bring_husband',
  'bring_husband_honestli',
  'husband_honestli_put',
  'honestli_put_strain',
  'put_strain_relationship',
  'strain_relationship_husband',
  'relationship_husband_lost',
  'husband_lost_best',
  'lost_best_friend',
  'best_friend_mason',
  'friend_mason_wife',
  'mason_wife_kate',
  'wife_kate_two',
  'kate_two_week',
  'two_week_ago',
  'week_ago_horribl',
  'ago_horribl_car',
  'horribl_car_accid',
  'car_accid_left',
  'accid_left_behind',
  'left_behind_son',
  'behind_son_pete',
  'son_pete_even',
  'pete_even_two',
  'even_two_yet',
  'two_yet_sudden',
  'yet_sudden_heart-wrench',
  'sudden_heart-wrench_still',
  'heart-wrench_still_griev',
  'still_griev_lower',
  'griev_lower_contact',
  'lower_contact_lot',
  'contact_lot_peopl',
  'lot_peopl_includ',
  'peopl_includ_sister',
  'includ_sister_bil',
  'sister_bil_main',
  'bil_main_concern',
  'main_concern_right',
  'concern_right_pete',
  'right_pete_whose',
  'pete_whose_custodi',
  'whose_custodi_come',
  'custodi_come_us',
  'come_us_godpar',
  'us_godpar_activ',
  'godpar_activ_engag',
  'activ_engag_pete',
  'engag_pete_life',
  'pete_life_sinc',
  'life_sinc_birth',
  'sinc_birth_mason',
  'birth_mason_kate',
  'mason_kate_neither',
  'kate_neither_left',
  'neither_left_immedi',
  'left_immedi_live',
  'immedi_live_rel',
  'live_rel_take',
  'rel_take_weve',
  'take_weve_decid',
  'weve_decid_adopt',
  'decid_adopt_pete',
  'adopt_pete_soon',
  'pete_soon_stomach',
  'soon_stomach_process',
  'stomach_process_husband',
  'process_husband_never',
  'husband_never_plan',
  'never_plan_kid',
  'plan_kid_even',
  'kid_even_absolut',
  'even_absolut_way',
  'absolut_way_want',
  'way_want_go',
  'want_go_situat',
  'go_situat_far',
  'situat_far_ideal',
  'far_ideal_start',
  'ideal_start_adopt',
  'start_adopt_process',
  'adopt_process_yesterday',
  'process_yesterday_pete',
  'yesterday_pete_safeti',
  'pete_safeti_noth',
  'safeti_noth_els',
  'noth_els_broke',
  'els_broke_news',
  'broke_news_extend',
  'news_extend_famili',
  'extend_famili_friend',
  'famili_friend_let',
  'friend_let_know',
  'let_know_husband',
  'know_husband_avail',
  'husband_avail_littl',
  'avail_littl_longer',
  'littl_longer_know',
  'longer_know_sister',
  'know_sister_bil',
  'sister_bil_someth',
  'bil_someth_say',
  'someth_say_im',
  'say_im_prepar',
  'im_prepar_heat',
  'prepar_heat_text',
  'heat_text_messag',
  'text_messag_voic',
  'messag_voic_mail',
  'voic_mail_howev',
  'mail_howev_expect',
  'howev_expect_turn',
  'expect_turn_doorstep',
  'turn_doorstep_cri',
  'doorstep_cri_unfair',
  'cri_unfair_given',
  'unfair_given_everyth',
  'given_everyth_want',
  'everyth_want_deserv',
  'want_deserv_parent',
  'deserv_parent_go',
  'parent_go_ive',
  'go_ive_never',
  'ive_never_seen',
  'never_seen_husband',
  'seen_husband_angri',
  'husband_angri_usual',
  'angri_usual_mild',
  'usual_mild_gentl',
  'mild_gentl_recent',
  'gentl_recent_event',
  'recent_event_stretch',
  'event_stretch_patienc',
  'stretch_patienc_limit',
  'patienc_limit_kick',
  'limit_kick_porch',
  'kick_porch_told',
  'porch_told_sister',
  'told_sister_left',
  'sister_left_sinc',
  'left_sinc_pain',
  'sinc_pain_inconveni',
  'pain_inconveni_much',
  'inconveni_much_around',
  'much_around_famili',
  'around_famili_anymor',
  'famili_anymor_know',
  'anymor_know_made',
  'know_made_fuss',
  'made_fuss_everyon',
  'fuss_everyon_someth',
  'everyon_someth_say',
  'someth_say_us',
  'say_us_turn',
  'us_turn_phone',
  'turn_phone_know',
  'phone_know_one',
  'know_one_curs',
  'one_curs_us',
  'curs_us_one',
  'us_one_know',
  'one_know_didar',
  'know_didar_husband',
  'didar_husband_pain',
  'husband_pain_griev',
  'pain_griev_cant',
  'griev_cant_trust',
  'cant_trust_object',
  'trust_object_go',
  'object_go_far',
  'go_far_edit',
  'far_edit_origin',
  'edit_origin_want',
  'origin_want_put',
  'want_put_inform',
  'put_inform_want',
  'inform_want_everyon',
  'want_everyon_point',
  'everyon_point_say',
  'point_say_reason',
  'say_reason_wrong',
  'reason_wrong_sake',
  'wrong_sake_disclosur',
  'sake_disclosur_husband',
  'disclosur_husband_men',
  'husband_men_case',
  'men_case_homophobia',
  'case_homophobia_sister',
  'homophobia_sister_fault',
  'sister_fault_first',
  'fault_first_person',
  'first_person_accept',
  'person_accept_love',
  'accept_love_hear',
  'love_hear_singl',
  'hear_singl_word',
  'singl_word_comment'],
 ['lent',
  'bf',
  'money',
  'week',
  'ago',
  'someth',
  'need',
  'promis',
  'pay',
  'back',
  'asap',
  'suppos',
  'pay',
  'back',
  'day',
  'ago',
  'someth',
  'came',
  'tri',
  'patient',
  'yesterday',
  'plan',
  'go',
  'friend',
  'night',
  'dinner',
  'yesterday',
  'came',
  'back',
  'work',
  'rob',
  'bu',
  'money',
  'card',
  'stolen',
  'cancel',
  'card',
  'bank',
  'custom',
  'servic',
  'told',
  'new',
  'card',
  'new',
  'detail',
  'physic',
  'card',
  'digit',
  'detail',
  'appl',
  'pay',
  'would',
  'avail',
  'follow',
  'morn',
  'bank',
  'close',
  'afternoon',
  'money',
  'went',
  'dinner',
  'bf',
  'friend',
  'told',
  'bf',
  'could',
  'pay',
  'back',
  'money',
  'least',
  'pay',
  'meal',
  'sinc',
  'money',
  'exactli',
  'say',
  'ye',
  'simpl',
  'worri',
  'order',
  'order',
  'told',
  'cant',
  'cover',
  'mine',
  'moment',
  'better',
  'order',
  'anyth',
  'bite',
  'meal',
  'mad',
  'frustrat',
  'promis',
  'give',
  'back',
  'money',
  'claim',
  'someth',
  'came',
  'give',
  'back',
  'order',
  'nice',
  'meal',
  'told',
  'get',
  'scrap',
  'pay',
  'back',
  'least',
  'meal',
  'id',
  'one',
  'sit',
  'meal',
  'front',
  'said',
  'ridicul',
  'got',
  'left',
  'friend',
  'believ',
  'low',
  'get',
  'leav',
  'polit',
  'stay',
  'cant',
  'quit',
  'understand',
  'logic',
  'way',
  'ta',
  'lent_bf',
  'bf_money',
  'money_week',
  'week_ago',
  'ago_someth',
  'someth_need',
  'need_promis',
  'promis_pay',
  'pay_back',
  'back_asap',
  'asap_suppos',
  'suppos_pay',
  'pay_back',
  'back_day',
  'day_ago',
  'ago_someth',
  'someth_came',
  'came_tri',
  'tri_patient',
  'patient_yesterday',
  'yesterday_plan',
  'plan_go',
  'go_friend',
  'friend_night',
  'night_dinner',
  'dinner_yesterday',
  'yesterday_came',
  'came_back',
  'back_work',
  'work_rob',
  'rob_bu',
  'bu_money',
  'money_card',
  'card_stolen',
  'stolen_cancel',
  'cancel_card',
  'card_bank',
  'bank_custom',
  'custom_servic',
  'servic_told',
  'told_new',
  'new_card',
  'card_new',
  'new_detail',
  'detail_physic',
  'physic_card',
  'card_digit',
  'digit_detail',
  'detail_appl',
  'appl_pay',
  'pay_would',
  'would_avail',
  'avail_follow',
  'follow_morn',
  'morn_bank',
  'bank_close',
  'close_afternoon',
  'afternoon_money',
  'money_went',
  'went_dinner',
  'dinner_bf',
  'bf_friend',
  'friend_told',
  'told_bf',
  'bf_could',
  'could_pay',
  'pay_back',
  'back_money',
  'money_least',
  'least_pay',
  'pay_meal',
  'meal_sinc',
  'sinc_money',
  'money_exactli',
  'exactli_say',
  'say_ye',
  'ye_simpl',
  'simpl_worri',
  'worri_order',
  'order_order',
  'order_told',
  'told_cant',
  'cant_cover',
  'cover_mine',
  'mine_moment',
  'moment_better',
  'better_order',
  'order_anyth',
  'anyth_bite',
  'bite_meal',
  'meal_mad',
  'mad_frustrat',
  'frustrat_promis',
  'promis_give',
  'give_back',
  'back_money',
  'money_claim',
  'claim_someth',
  'someth_came',
  'came_give',
  'give_back',
  'back_order',
  'order_nice',
  'nice_meal',
  'meal_told',
  'told_get',
  'get_scrap',
  'scrap_pay',
  'pay_back',
  'back_least',
  'least_meal',
  'meal_id',
  'id_one',
  'one_sit',
  'sit_meal',
  'meal_front',
  'front_said',
  'said_ridicul',
  'ridicul_got',
  'got_left',
  'left_friend',
  'friend_believ',
  'believ_low',
  'low_get',
  'get_leav',
  'leav_polit',
  'polit_stay',
  'stay_cant',
  'cant_quit',
  'quit_understand',
  'understand_logic',
  'logic_way',
  'way_ta',
  'lent_bf_money',
  'bf_money_week',
  'money_week_ago',
  'week_ago_someth',
  'ago_someth_need',
  'someth_need_promis',
  'need_promis_pay',
  'promis_pay_back',
  'pay_back_asap',
  'back_asap_suppos',
  'asap_suppos_pay',
  'suppos_pay_back',
  'pay_back_day',
  'back_day_ago',
  'day_ago_someth',
  'ago_someth_came',
  'someth_came_tri',
  'came_tri_patient',
  'tri_patient_yesterday',
  'patient_yesterday_plan',
  'yesterday_plan_go',
  'plan_go_friend',
  'go_friend_night',
  'friend_night_dinner',
  'night_dinner_yesterday',
  'dinner_yesterday_came',
  'yesterday_came_back',
  'came_back_work',
  'back_work_rob',
  'work_rob_bu',
  'rob_bu_money',
  'bu_money_card',
  'money_card_stolen',
  'card_stolen_cancel',
  'stolen_cancel_card',
  'cancel_card_bank',
  'card_bank_custom',
  'bank_custom_servic',
  'custom_servic_told',
  'servic_told_new',
  'told_new_card',
  'new_card_new',
  'card_new_detail',
  'new_detail_physic',
  'detail_physic_card',
  'physic_card_digit',
  'card_digit_detail',
  'digit_detail_appl',
  'detail_appl_pay',
  'appl_pay_would',
  'pay_would_avail',
  'would_avail_follow',
  'avail_follow_morn',
  'follow_morn_bank',
  'morn_bank_close',
  'bank_close_afternoon',
  'close_afternoon_money',
  'afternoon_money_went',
  'money_went_dinner',
  'went_dinner_bf',
  'dinner_bf_friend',
  'bf_friend_told',
  'friend_told_bf',
  'told_bf_could',
  'bf_could_pay',
  'could_pay_back',
  'pay_back_money',
  'back_money_least',
  'money_least_pay',
  'least_pay_meal',
  'pay_meal_sinc',
  'meal_sinc_money',
  'sinc_money_exactli',
  'money_exactli_say',
  'exactli_say_ye',
  'say_ye_simpl',
  'ye_simpl_worri',
  'simpl_worri_order',
  'worri_order_order',
  'order_order_told',
  'order_told_cant',
  'told_cant_cover',
  'cant_cover_mine',
  'cover_mine_moment',
  'mine_moment_better',
  'moment_better_order',
  'better_order_anyth',
  'order_anyth_bite',
  'anyth_bite_meal',
  'bite_meal_mad',
  'meal_mad_frustrat',
  'mad_frustrat_promis',
  'frustrat_promis_give',
  'promis_give_back',
  'give_back_money',
  'back_money_claim',
  'money_claim_someth',
  'claim_someth_came',
  'someth_came_give',
  'came_give_back',
  'give_back_order',
  'back_order_nice',
  'order_nice_meal',
  'nice_meal_told',
  'meal_told_get',
  'told_get_scrap',
  'get_scrap_pay',
  'scrap_pay_back',
  'pay_back_least',
  'back_least_meal',
  'least_meal_id',
  'meal_id_one',
  'id_one_sit',
  'one_sit_meal',
  'sit_meal_front',
  'meal_front_said',
  'front_said_ridicul',
  'said_ridicul_got',
  'ridicul_got_left',
  'got_left_friend',
  'left_friend_believ',
  'friend_believ_low',
  'believ_low_get',
  'low_get_leav',
  'get_leav_polit',
  'leav_polit_stay',
  'polit_stay_cant',
  'stay_cant_quit',
  'cant_quit_understand',
  'quit_understand_logic',
  'understand_logic_way',
  'logic_way_ta'],
 ['[',
  'og',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'mani',
  'ask',
  'nonstop',
  'updat',
  'sorri',
  'took',
  'log',
  'back',
  'lot',
  'stuff',
  'go',
  'ye',
  'found',
  'ring',
  'stress',
  'day',
  'deeper',
  'search',
  'hous',
  'tri',
  'think',
  'like',
  'nephew',
  'look',
  'place',
  'think',
  'hed',
  'hide',
  'someth',
  'realli',
  'want',
  'found',
  'decis',
  'realli',
  'found',
  'brother',
  'abl',
  'get',
  'talk',
  'abl',
  'pay',
  'back',
  'im',
  'owe',
  'polic',
  'would',
  'get',
  'involv',
  'beg',
  'told',
  'better',
  'pray',
  'find',
  'come',
  'money',
  'pay',
  'guess',
  'prayer',
  'work',
  'guess',
  'found',
  'freak',
  'sink',
  'sink',
  'thank',
  'comment',
  'told',
  'look',
  'place',
  'idk',
  'wouldv',
  'done',
  'otherwis',
  'sink',
  'guest',
  'room',
  'im',
  'glad',
  'throw',
  'away',
  'guy',
  'know',
  'freak',
  'reliev',
  'find',
  'took',
  'work',
  'remov',
  'trap',
  'sink',
  'get',
  'happi',
  'find',
  'night',
  'girlfriend',
  'fiancé',
  '😉',
  'got',
  'back',
  'propos',
  'said',
  'ye',
  'nice',
  'romant',
  'dinner',
  'two',
  'us',
  'home…',
  'plan',
  'wait',
  'shit',
  'thought',
  'fuck',
  'im',
  'propos',
  'asap',
  'anyth',
  'els',
  'happen',
  '😅🤣',
  'brother',
  'heard',
  'find',
  'ring',
  'thought',
  'meant',
  'could',
  'come',
  'back',
  'said',
  'want',
  'argu',
  'told',
  'lucki',
  'gone',
  'cop',
  'sinc',
  'alreadi',
  'video',
  'evid',
  'son',
  'take',
  'ring',
  'way',
  'im',
  'let',
  'back',
  'nephew',
  'even',
  'say',
  'ring',
  'talk',
  'nephew',
  'found',
  'ring',
  'said',
  'want',
  'tell',
  'anyon',
  'id',
  'mad',
  'hide',
  'honestli',
  'energi',
  'anymor',
  'problem',
  'problem',
  'hope',
  'get',
  'help',
  'late',
  'thing',
  'import',
  'fiancé',
  'start',
  'live',
  'plan',
  'wed',
  '😁',
  'thank',
  'reddit',
  'help',
  'serious',
  'guy',
  'life',
  'saver',
  '😅',
  'edit',
  'add',
  'receiv',
  'news',
  'alreadi',
  'submit',
  'post',
  'approv',
  'want',
  'add',
  'im',
  'happi',
  'girlfriend',
  'also',
  'inform',
  'pregnant',
  '😆😆',
  'found',
  'trip',
  'wait',
  'good',
  'time',
  'tell',
  'relat',
  'post',
  'idc',
  'im',
  'gon',
  'na',
  'dad',
  '[_og',
  'og_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar',
  'httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_mani',
  'mani_ask',
  'ask_nonstop',
  'nonstop_updat',
  'updat_sorri',
  'sorri_took',
  'took_log',
  'log_back',
  'back_lot',
  'lot_stuff',
  'stuff_go',
  'go_ye',
  'ye_found',
  'found_ring',
  'ring_stress',
  'stress_day',
  'day_deeper',
  'deeper_search',
  'search_hous',
  'hous_tri',
  'tri_think',
  'think_like',
  'like_nephew',
  'nephew_look',
  'look_place',
  'place_think',
  'think_hed',
  'hed_hide',
  'hide_someth',
  'someth_realli',
  'realli_want',
  'want_found',
  'found_decis',
  'decis_realli',
  'realli_found',
  'found_brother',
  'brother_abl',
  'abl_get',
  'get_talk',
  'talk_abl',
  'abl_pay',
  'pay_back',
  'back_im',
  'im_owe',
  'owe_polic',
  'polic_would',
  'would_get',
  'get_involv',
  'involv_beg',
  'beg_told',
  'told_better',
  'better_pray',
  'pray_find',
  'find_come',
  'come_money',
  'money_pay',
  'pay_guess',
  'guess_prayer',
  'prayer_work',
  'work_guess',
  'guess_found',
  'found_freak',
  'freak_sink',
  'sink_sink',
  'sink_thank',
  'thank_comment',
  'comment_told',
  'told_look',
  'look_place',
  'place_idk',
  'idk_wouldv',
  'wouldv_done',
  'done_otherwis',
  'otherwis_sink',
  'sink_guest',
  'guest_room',
  'room_im',
  'im_glad',
  'glad_throw',
  'throw_away',
  'away_guy',
  'guy_know',
  'know_freak',
  'freak_reliev',
  'reliev_find',
  'find_took',
  'took_work',
  'work_remov',
  'remov_trap',
  'trap_sink',
  'sink_get',
  'get_happi',
  'happi_find',
  'find_night',
  'night_girlfriend',
  'girlfriend_fiancé',
  'fiancé_😉',
  '😉_got',
  'got_back',
  'back_propos',
  'propos_said',
  'said_ye',
  'ye_nice',
  'nice_romant',
  'romant_dinner',
  'dinner_two',
  'two_us',
  'us_home…',
  'home…_plan',
  'plan_wait',
  'wait_shit',
  'shit_thought',
  'thought_fuck',
  'fuck_im',
  'im_propos',
  'propos_asap',
  'asap_anyth',
  'anyth_els',
  'els_happen',
  'happen_😅🤣',
  '😅🤣_brother',
  'brother_heard',
  'heard_find',
  'find_ring',
  'ring_thought',
  'thought_meant',
  'meant_could',
  'could_come',
  'come_back',
  'back_said',
  'said_want',
  'want_argu',
  'argu_told',
  'told_lucki',
  'lucki_gone',
  'gone_cop',
  'cop_sinc',
  'sinc_alreadi',
  'alreadi_video',
  'video_evid',
  'evid_son',
  'son_take',
  'take_ring',
  'ring_way',
  'way_im',
  'im_let',
  'let_back',
  'back_nephew',
  'nephew_even',
  'even_say',
  'say_ring',
  'ring_talk',
  'talk_nephew',
  'nephew_found',
  'found_ring',
  'ring_said',
  'said_want',
  'want_tell',
  'tell_anyon',
  'anyon_id',
  'id_mad',
  'mad_hide',
  'hide_honestli',
  'honestli_energi',
  'energi_anymor',
  'anymor_problem',
  'problem_problem',
  'problem_hope',
  'hope_get',
  'get_help',
  'help_late',
  'late_thing',
  'thing_import',
  'import_fiancé',
  'fiancé_start',
  'start_live',
  'live_plan',
  'plan_wed',
  'wed_😁',
  '😁_thank',
  'thank_reddit',
  'reddit_help',
  'help_serious',
  'serious_guy',
  'guy_life',
  'life_saver',
  'saver_😅',
  '😅_edit',
  'edit_add',
  'add_receiv',
  'receiv_news',
  'news_alreadi',
  'alreadi_submit',
  'submit_post',
  'post_approv',
  'approv_want',
  'want_add',
  'add_im',
  'im_happi',
  'happi_girlfriend',
  'girlfriend_also',
  'also_inform',
  'inform_pregnant',
  'pregnant_😆😆',
  '😆😆_found',
  'found_trip',
  'trip_wait',
  'wait_good',
  'good_time',
  'time_tell',
  'tell_relat',
  'relat_post',
  'post_idc',
  'idc_im',
  'im_gon',
  'gon_na',
  'na_dad',
  '[_og_post',
  'og_post_]',
  'post_]_httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar',
  ']_httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar_&',
  'httpswwwredditcomramitheassholecommentstzyzdaita_for_kicking_my_brother_and_his_family_oututm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_mani',
  'utm_name=iossmf_mani_ask',
  'mani_ask_nonstop',
  'ask_nonstop_updat',
  'nonstop_updat_sorri',
  'updat_sorri_took',
  'sorri_took_log',
  'took_log_back',
  'log_back_lot',
  'back_lot_stuff',
  'lot_stuff_go',
  'stuff_go_ye',
  'go_ye_found',
  'ye_found_ring',
  'found_ring_stress',
  'ring_stress_day',
  'stress_day_deeper',
  'day_deeper_search',
  'deeper_search_hous',
  'search_hous_tri',
  'hous_tri_think',
  'tri_think_like',
  'think_like_nephew',
  'like_nephew_look',
  'nephew_look_place',
  'look_place_think',
  'place_think_hed',
  'think_hed_hide',
  'hed_hide_someth',
  'hide_someth_realli',
  'someth_realli_want',
  'realli_want_found',
  'want_found_decis',
  'found_decis_realli',
  'decis_realli_found',
  'realli_found_brother',
  'found_brother_abl',
  'brother_abl_get',
  'abl_get_talk',
  'get_talk_abl',
  'talk_abl_pay',
  'abl_pay_back',
  'pay_back_im',
  'back_im_owe',
  'im_owe_polic',
  'owe_polic_would',
  'polic_would_get',
  'would_get_involv',
  'get_involv_beg',
  'involv_beg_told',
  'beg_told_better',
  'told_better_pray',
  'better_pray_find',
  'pray_find_come',
  'find_come_money',
  'come_money_pay',
  'money_pay_guess',
  'pay_guess_prayer',
  'guess_prayer_work',
  'prayer_work_guess',
  'work_guess_found',
  'guess_found_freak',
  'found_freak_sink',
  'freak_sink_sink',
  'sink_sink_thank',
  'sink_thank_comment',
  'thank_comment_told',
  'comment_told_look',
  'told_look_place',
  'look_place_idk',
  'place_idk_wouldv',
  'idk_wouldv_done',
  'wouldv_done_otherwis',
  'done_otherwis_sink',
  'otherwis_sink_guest',
  'sink_guest_room',
  'guest_room_im',
  'room_im_glad',
  'im_glad_throw',
  'glad_throw_away',
  'throw_away_guy',
  'away_guy_know',
  'guy_know_freak',
  'know_freak_reliev',
  'freak_reliev_find',
  'reliev_find_took',
  'find_took_work',
  'took_work_remov',
  'work_remov_trap',
  'remov_trap_sink',
  'trap_sink_get',
  'sink_get_happi',
  'get_happi_find',
  'happi_find_night',
  'find_night_girlfriend',
  'night_girlfriend_fiancé',
  'girlfriend_fiancé_😉',
  'fiancé_😉_got',
  '😉_got_back',
  'got_back_propos',
  'back_propos_said',
  'propos_said_ye',
  'said_ye_nice',
  'ye_nice_romant',
  'nice_romant_dinner',
  'romant_dinner_two',
  'dinner_two_us',
  'two_us_home…',
  'us_home…_plan',
  'home…_plan_wait',
  'plan_wait_shit',
  'wait_shit_thought',
  'shit_thought_fuck',
  'thought_fuck_im',
  'fuck_im_propos',
  'im_propos_asap',
  'propos_asap_anyth',
  'asap_anyth_els',
  'anyth_els_happen',
  'els_happen_😅🤣',
  'happen_😅🤣_brother',
  '😅🤣_brother_heard',
  'brother_heard_find',
  'heard_find_ring',
  'find_ring_thought',
  'ring_thought_meant',
  'thought_meant_could',
  'meant_could_come',
  'could_come_back',
  'come_back_said',
  'back_said_want',
  'said_want_argu',
  'want_argu_told',
  'argu_told_lucki',
  'told_lucki_gone',
  'lucki_gone_cop',
  'gone_cop_sinc',
  'cop_sinc_alreadi',
  'sinc_alreadi_video',
  'alreadi_video_evid',
  'video_evid_son',
  'evid_son_take',
  'son_take_ring',
  'take_ring_way',
  'ring_way_im',
  'way_im_let',
  'im_let_back',
  'let_back_nephew',
  'back_nephew_even',
  'nephew_even_say',
  'even_say_ring',
  'say_ring_talk',
  'ring_talk_nephew',
  'talk_nephew_found',
  'nephew_found_ring',
  'found_ring_said',
  'ring_said_want',
  'said_want_tell',
  'want_tell_anyon',
  'tell_anyon_id',
  'anyon_id_mad',
  'id_mad_hide',
  'mad_hide_honestli',
  'hide_honestli_energi',
  'honestli_energi_anymor',
  'energi_anymor_problem',
  'anymor_problem_problem',
  'problem_problem_hope',
  'problem_hope_get',
  'hope_get_help',
  'get_help_late',
  'help_late_thing',
  'late_thing_import',
  'thing_import_fiancé',
  'import_fiancé_start',
  'fiancé_start_live',
  'start_live_plan',
  'live_plan_wed',
  'plan_wed_😁',
  'wed_😁_thank',
  '😁_thank_reddit',
  'thank_reddit_help',
  'reddit_help_serious',
  'help_serious_guy',
  'serious_guy_life',
  'guy_life_saver',
  'life_saver_😅',
  'saver_😅_edit',
  '😅_edit_add',
  'edit_add_receiv',
  'add_receiv_news',
  'receiv_news_alreadi',
  'news_alreadi_submit',
  'alreadi_submit_post',
  'submit_post_approv',
  'post_approv_want',
  'approv_want_add',
  'want_add_im',
  'add_im_happi',
  'im_happi_girlfriend',
  'happi_girlfriend_also',
  'girlfriend_also_inform',
  'also_inform_pregnant',
  'inform_pregnant_😆😆',
  'pregnant_😆😆_found',
  '😆😆_found_trip',
  'found_trip_wait',
  'trip_wait_good',
  'wait_good_time',
  'good_time_tell',
  'time_tell_relat',
  'tell_relat_post',
  'relat_post_idc',
  'post_idc_im',
  'idc_im_gon',
  'im_gon_na',
  'gon_na_dad'],
 ['husband',
  'invit',
  'new',
  'cowork',
  'dinner',
  'arriv',
  'introduc',
  'gestur',
  'say',
  'mr',
  'smith',
  'even',
  'say',
  'nameth',
  'housewif',
  'look',
  'second',
  'start',
  'laugh',
  'hyster',
  'told',
  'said',
  'honey',
  'work',
  'full',
  'time',
  'ye',
  'still',
  'act',
  'like',
  'housewif',
  'im',
  'home',
  'simpli',
  'cant',
  'bother',
  'help',
  'co',
  'worker',
  'stare',
  'tri',
  'laugh',
  'chang',
  'subject',
  'ask',
  'want',
  'drink',
  'dinner',
  'went',
  'super',
  'awkward',
  'give',
  'look',
  'stare',
  'guest',
  'left',
  'blew',
  'say',
  'embarrass',
  'laugh',
  'like',
  'lunat',
  'make',
  'comment',
  'made',
  'infront',
  'new',
  'cowork',
  'ruin',
  'imag',
  'told',
  'wrong',
  'lie',
  'statu',
  'deni',
  'degre',
  'begin',
  'said',
  'couldv',
  'talk',
  'privat',
  'later',
  'like',
  'make',
  'cowork',
  'think',
  'useless',
  'storm',
  'quiet',
  'entir',
  'night',
  'line',
  'husband_invit',
  'invit_new',
  'new_cowork',
  'cowork_dinner',
  'dinner_arriv',
  'arriv_introduc',
  'introduc_gestur',
  'gestur_say',
  'say_mr',
  'mr_smith',
  'smith_even',
  'even_say',
  'say_nameth',
  'nameth_housewif',
  'housewif_look',
  'look_second',
  'second_start',
  'start_laugh',
  'laugh_hyster',
  'hyster_told',
  'told_said',
  'said_honey',
  'honey_work',
  'work_full',
  'full_time',
  'time_ye',
  'ye_still',
  'still_act',
  'act_like',
  'like_housewif',
  'housewif_im',
  'im_home',
  'home_simpli',
  'simpli_cant',
  'cant_bother',
  'bother_help',
  'help_co',
  'co_worker',
  'worker_stare',
  'stare_tri',
  'tri_laugh',
  'laugh_chang',
  'chang_subject',
  'subject_ask',
  'ask_want',
  'want_drink',
  'drink_dinner',
  'dinner_went',
  'went_super',
  'super_awkward',
  'awkward_give',
  'give_look',
  'look_stare',
  'stare_guest',
  'guest_left',
  'left_blew',
  'blew_say',
  'say_embarrass',
  'embarrass_laugh',
  'laugh_like',
  'like_lunat',
  'lunat_make',
  'make_comment',
  'comment_made',
  'made_infront',
  'infront_new',
  'new_cowork',
  'cowork_ruin',
  'ruin_imag',
  'imag_told',
  'told_wrong',
  'wrong_lie',
  'lie_statu',
  'statu_deni',
  'deni_degre',
  'degre_begin',
  'begin_said',
  'said_couldv',
  'couldv_talk',
  'talk_privat',
  'privat_later',
  'later_like',
  'like_make',
  'make_cowork',
  'cowork_think',
  'think_useless',
  'useless_storm',
  'storm_quiet',
  'quiet_entir',
  'entir_night',
  'night_line',
  'husband_invit_new',
  'invit_new_cowork',
  'new_cowork_dinner',
  'cowork_dinner_arriv',
  'dinner_arriv_introduc',
  'arriv_introduc_gestur',
  'introduc_gestur_say',
  'gestur_say_mr',
  'say_mr_smith',
  'mr_smith_even',
  'smith_even_say',
  'even_say_nameth',
  'say_nameth_housewif',
  'nameth_housewif_look',
  'housewif_look_second',
  'look_second_start',
  'second_start_laugh',
  'start_laugh_hyster',
  'laugh_hyster_told',
  'hyster_told_said',
  'told_said_honey',
  'said_honey_work',
  'honey_work_full',
  'work_full_time',
  'full_time_ye',
  'time_ye_still',
  'ye_still_act',
  'still_act_like',
  'act_like_housewif',
  'like_housewif_im',
  'housewif_im_home',
  'im_home_simpli',
  'home_simpli_cant',
  'simpli_cant_bother',
  'cant_bother_help',
  'bother_help_co',
  'help_co_worker',
  'co_worker_stare',
  'worker_stare_tri',
  'stare_tri_laugh',
  'tri_laugh_chang',
  'laugh_chang_subject',
  'chang_subject_ask',
  'subject_ask_want',
  'ask_want_drink',
  'want_drink_dinner',
  'drink_dinner_went',
  'dinner_went_super',
  'went_super_awkward',
  'super_awkward_give',
  'awkward_give_look',
  'give_look_stare',
  'look_stare_guest',
  'stare_guest_left',
  'guest_left_blew',
  'left_blew_say',
  'blew_say_embarrass',
  'say_embarrass_laugh',
  'embarrass_laugh_like',
  'laugh_like_lunat',
  'like_lunat_make',
  'lunat_make_comment',
  'make_comment_made',
  'comment_made_infront',
  'made_infront_new',
  'infront_new_cowork',
  'new_cowork_ruin',
  'cowork_ruin_imag',
  'ruin_imag_told',
  'imag_told_wrong',
  'told_wrong_lie',
  'wrong_lie_statu',
  'lie_statu_deni',
  'statu_deni_degre',
  'deni_degre_begin',
  'degre_begin_said',
  'begin_said_couldv',
  'said_couldv_talk',
  'couldv_talk_privat',
  'talk_privat_later',
  'privat_later_like',
  'later_like_make',
  'like_make_cowork',
  'make_cowork_think',
  'cowork_think_useless',
  'think_useless_storm',
  'useless_storm_quiet',
  'storm_quiet_entir',
  'quiet_entir_night',
  'entir_night_line'],
 ['husband',
  'use',
  'incom',
  'home',
  'weve',
  'lost',
  'home',
  'one',
  'incom',
  'move',
  'smaller',
  'apart',
  'sell',
  'mani',
  'thing',
  'give',
  'costli',
  'habit',
  'husband',
  'expens',
  'habit',
  'go',
  'spa',
  'weekli',
  'massag',
  'session',
  'live',
  'urban',
  'area',
  'stuff',
  'ridicul',
  'expens',
  'singl',
  'session',
  '$',
  'everi',
  'week',
  'thatd',
  'nearli',
  'month',
  'offer',
  'session',
  'regular',
  'spa',
  'get',
  'luxuri',
  'spa',
  'near',
  'restaur',
  'use',
  'go',
  'say',
  'ladi',
  'give',
  'massag',
  'expert',
  'use',
  'problem',
  'im',
  'incom',
  'earner',
  'im',
  'struggl',
  'make',
  'end',
  'meet',
  'im',
  'also',
  'pregnant',
  'need',
  'save',
  'money',
  'prepar',
  'nurseri',
  'told',
  'cut',
  'session',
  'refus',
  'told',
  'pay',
  'anymor',
  'said',
  'hed',
  'get',
  'money',
  'yesterday',
  'check',
  'saw',
  'use',
  'credit',
  'card',
  'session',
  'whole',
  'month',
  'max',
  'complet',
  'found',
  'went',
  'shop',
  'babi',
  'essenti',
  'cashier',
  'said',
  'money',
  'return',
  'everyth',
  'went',
  'home',
  'went',
  'told',
  'max',
  'card',
  'made',
  'look',
  'like',
  'idiot',
  'store',
  'said',
  'tell',
  'caus',
  'knew',
  'id',
  'issu',
  'demand',
  'pay',
  'back',
  '$',
  'spent',
  'refus',
  'yell',
  'call',
  'irrespons',
  'got',
  'upset',
  'call',
  'selfish',
  'told',
  'stop',
  'play',
  'victim',
  'affect',
  'us',
  'sinc',
  'go',
  'parent',
  'stress',
  'keep',
  'dismiss',
  'need',
  'human',
  'went',
  'upstair',
  'went',
  'start',
  'give',
  'silent',
  'kept',
  'demand',
  'money',
  'back',
  'said',
  'expect',
  'back',
  'sinc',
  'marri',
  'money',
  'technic',
  'stop',
  'use',
  'unemploy',
  'husband_use',
  'use_incom',
  'incom_home',
  'home_weve',
  'weve_lost',
  'lost_home',
  'home_one',
  'one_incom',
  'incom_move',
  'move_smaller',
  'smaller_apart',
  'apart_sell',
  'sell_mani',
  'mani_thing',
  'thing_give',
  'give_costli',
  'costli_habit',
  'habit_husband',
  'husband_expens',
  'expens_habit',
  'habit_go',
  'go_spa',
  'spa_weekli',
  'weekli_massag',
  'massag_session',
  'session_live',
  'live_urban',
  'urban_area',
  'area_stuff',
  'stuff_ridicul',
  'ridicul_expens',
  'expens_singl',
  'singl_session',
  'session_$',
  '$_everi',
  'everi_week',
  'week_thatd',
  'thatd_nearli',
  'nearli_month',
  'month_offer',
  'offer_session',
  'session_regular',
  'regular_spa',
  'spa_get',
  'get_luxuri',
  'luxuri_spa',
  'spa_near',
  'near_restaur',
  'restaur_use',
  'use_go',
  'go_say',
  'say_ladi',
  'ladi_give',
  'give_massag',
  'massag_expert',
  'expert_use',
  'use_problem',
  'problem_im',
  'im_incom',
  'incom_earner',
  'earner_im',
  'im_struggl',
  'struggl_make',
  'make_end',
  'end_meet',
  'meet_im',
  'im_also',
  'also_pregnant',
  'pregnant_need',
  'need_save',
  'save_money',
  'money_prepar',
  'prepar_nurseri',
  'nurseri_told',
  'told_cut',
  'cut_session',
  'session_refus',
  'refus_told',
  'told_pay',
  'pay_anymor',
  'anymor_said',
  'said_hed',
  'hed_get',
  'get_money',
  'money_yesterday',
  'yesterday_check',
  'check_saw',
  'saw_use',
  'use_credit',
  'credit_card',
  'card_session',
  'session_whole',
  'whole_month',
  'month_max',
  'max_complet',
  'complet_found',
  'found_went',
  'went_shop',
  'shop_babi',
  'babi_essenti',
  'essenti_cashier',
  'cashier_said',
  'said_money',
  'money_return',
  'return_everyth',
  'everyth_went',
  'went_home',
  'home_went',
  'went_told',
  'told_max',
  'max_card',
  'card_made',
  'made_look',
  'look_like',
  'like_idiot',
  'idiot_store',
  'store_said',
  'said_tell',
  'tell_caus',
  'caus_knew',
  'knew_id',
  'id_issu',
  'issu_demand',
  'demand_pay',
  'pay_back',
  'back_$',
  '$_spent',
  'spent_refus',
  'refus_yell',
  'yell_call',
  'call_irrespons',
  'irrespons_got',
  'got_upset',
  'upset_call',
  'call_selfish',
  'selfish_told',
  'told_stop',
  'stop_play',
  'play_victim',
  'victim_affect',
  'affect_us',
  'us_sinc',
  'sinc_go',
  'go_parent',
  'parent_stress',
  'stress_keep',
  'keep_dismiss',
  'dismiss_need',
  'need_human',
  'human_went',
  'went_upstair',
  'upstair_went',
  'went_start',
  'start_give',
  'give_silent',
  'silent_kept',
  'kept_demand',
  'demand_money',
  'money_back',
  'back_said',
  'said_expect',
  'expect_back',
  'back_sinc',
  'sinc_marri',
  'marri_money',
  'money_technic',
  'technic_stop',
  'stop_use',
  'use_unemploy',
  'husband_use_incom',
  'use_incom_home',
  'incom_home_weve',
  'home_weve_lost',
  'weve_lost_home',
  'lost_home_one',
  'home_one_incom',
  'one_incom_move',
  'incom_move_smaller',
  'move_smaller_apart',
  'smaller_apart_sell',
  'apart_sell_mani',
  'sell_mani_thing',
  'mani_thing_give',
  'thing_give_costli',
  'give_costli_habit',
  'costli_habit_husband',
  'habit_husband_expens',
  'husband_expens_habit',
  'expens_habit_go',
  'habit_go_spa',
  'go_spa_weekli',
  'spa_weekli_massag',
  'weekli_massag_session',
  'massag_session_live',
  'session_live_urban',
  'live_urban_area',
  'urban_area_stuff',
  'area_stuff_ridicul',
  'stuff_ridicul_expens',
  'ridicul_expens_singl',
  'expens_singl_session',
  'singl_session_$',
  'session_$_everi',
  '$_everi_week',
  'everi_week_thatd',
  'week_thatd_nearli',
  'thatd_nearli_month',
  'nearli_month_offer',
  'month_offer_session',
  'offer_session_regular',
  'session_regular_spa',
  'regular_spa_get',
  'spa_get_luxuri',
  'get_luxuri_spa',
  'luxuri_spa_near',
  'spa_near_restaur',
  'near_restaur_use',
  'restaur_use_go',
  'use_go_say',
  'go_say_ladi',
  'say_ladi_give',
  'ladi_give_massag',
  'give_massag_expert',
  'massag_expert_use',
  'expert_use_problem',
  'use_problem_im',
  'problem_im_incom',
  'im_incom_earner',
  'incom_earner_im',
  'earner_im_struggl',
  'im_struggl_make',
  'struggl_make_end',
  'make_end_meet',
  'end_meet_im',
  'meet_im_also',
  'im_also_pregnant',
  'also_pregnant_need',
  'pregnant_need_save',
  'need_save_money',
  'save_money_prepar',
  'money_prepar_nurseri',
  'prepar_nurseri_told',
  'nurseri_told_cut',
  'told_cut_session',
  'cut_session_refus',
  'session_refus_told',
  'refus_told_pay',
  'told_pay_anymor',
  'pay_anymor_said',
  'anymor_said_hed',
  'said_hed_get',
  'hed_get_money',
  'get_money_yesterday',
  'money_yesterday_check',
  'yesterday_check_saw',
  'check_saw_use',
  'saw_use_credit',
  'use_credit_card',
  'credit_card_session',
  'card_session_whole',
  'session_whole_month',
  'whole_month_max',
  'month_max_complet',
  'max_complet_found',
  'complet_found_went',
  'found_went_shop',
  'went_shop_babi',
  'shop_babi_essenti',
  'babi_essenti_cashier',
  'essenti_cashier_said',
  'cashier_said_money',
  'said_money_return',
  'money_return_everyth',
  'return_everyth_went',
  'everyth_went_home',
  'went_home_went',
  'home_went_told',
  'went_told_max',
  'told_max_card',
  'max_card_made',
  'card_made_look',
  'made_look_like',
  'look_like_idiot',
  'like_idiot_store',
  'idiot_store_said',
  'store_said_tell',
  'said_tell_caus',
  'tell_caus_knew',
  'caus_knew_id',
  'knew_id_issu',
  'id_issu_demand',
  'issu_demand_pay',
  'demand_pay_back',
  'pay_back_$',
  'back_$_spent',
  '$_spent_refus',
  'spent_refus_yell',
  'refus_yell_call',
  'yell_call_irrespons',
  'call_irrespons_got',
  'irrespons_got_upset',
  'got_upset_call',
  'upset_call_selfish',
  'call_selfish_told',
  'selfish_told_stop',
  'told_stop_play',
  'stop_play_victim',
  'play_victim_affect',
  'victim_affect_us',
  'affect_us_sinc',
  'us_sinc_go',
  'sinc_go_parent',
  'go_parent_stress',
  'parent_stress_keep',
  'stress_keep_dismiss',
  'keep_dismiss_need',
  'dismiss_need_human',
  'need_human_went',
  'human_went_upstair',
  'went_upstair_went',
  'upstair_went_start',
  'went_start_give',
  'start_give_silent',
  'give_silent_kept',
  'silent_kept_demand',
  'kept_demand_money',
  'demand_money_back',
  'money_back_said',
  'back_said_expect',
  'said_expect_back',
  'expect_back_sinc',
  'back_sinc_marri',
  'sinc_marri_money',
  'marri_money_technic',
  'money_technic_stop',
  'technic_stop_use',
  'stop_use_unemploy'],
 ['wife',
  'marri',
  'year',
  'began',
  'tri',
  'conceiv',
  'septemb',
  'luck',
  'far',
  'doctor',
  'say',
  'first',
  'appoint',
  'typic',
  'take',
  'close',
  'year',
  'coupl',
  'conceiv',
  'tell',
  'peopl',
  'infertil',
  'true',
  'doctor',
  'said',
  'wife',
  'went',
  'work',
  'christma',
  'parti',
  'mid',
  'decemb',
  'wife',
  'met',
  'cowork',
  'wife',
  'let',
  'call',
  'mari',
  'took',
  'like',
  'mari',
  'pregnant',
  'invit',
  'wife',
  'babi',
  'shower',
  'yesterday',
  'wife',
  'sound',
  'excit',
  'go',
  'ask',
  'alon',
  'think',
  'shell',
  'fine',
  'know',
  'wife',
  'know',
  'typic',
  'bother',
  'knew',
  'bask',
  'happi',
  'someon',
  'els',
  'pregnanc',
  'urg',
  'think',
  'said',
  'fine',
  'excit',
  'went',
  'babi',
  'shower',
  'yesterday',
  'minut',
  'call',
  'ask',
  'come',
  'cafe',
  'nearbi',
  'knew',
  'stay',
  'long',
  'find',
  'entranc',
  'hous',
  'cri',
  'bunch',
  'women',
  'consol',
  'saw',
  'came',
  'pull',
  'garden',
  'talk',
  'said',
  'danc',
  'look',
  'mari',
  'pregnant',
  'belli',
  'take',
  'anymor',
  'start',
  'cri',
  'ran',
  'mari',
  'friend',
  'follow',
  'consol',
  'consol',
  'said',
  'ok',
  'let',
  'go',
  'babe',
  'want',
  'go',
  'go',
  'drive',
  'feel',
  'better',
  'look',
  'weird',
  'ask',
  'would',
  'leav',
  'ask',
  'would',
  'stay',
  'said',
  'feel',
  'better',
  'go',
  'good',
  'time',
  'sigh',
  'said',
  'babe',
  'know',
  'go',
  'happen',
  'doubt',
  'attent',
  'mari',
  'great',
  'babi',
  'shower',
  'deserv',
  'celebr',
  'cant',
  'see',
  'peopl',
  'go',
  'shift',
  'focu',
  'consol',
  'celebr',
  'still',
  'roll',
  'eye',
  'said',
  'go',
  'back',
  'could',
  'leav',
  'hour',
  'later',
  'parti',
  'near',
  'end',
  'go',
  'back',
  'pick',
  'cowork',
  'step',
  'hous',
  'lo',
  'behold',
  'everyon',
  'sit',
  'circl',
  'wife',
  'centr',
  'attent',
  'cowork',
  'look',
  'wife',
  'call',
  'said',
  'left',
  'age',
  'ago',
  'wife',
  'enter',
  'car',
  'first',
  'ask',
  'feel',
  'spoke',
  'minut',
  'ask',
  'happen',
  'mari',
  'left',
  'said',
  'oh',
  'crap',
  'mari',
  'forgot',
  'say',
  'bye',
  'told',
  'mari',
  'left',
  'age',
  'ago',
  'said',
  'know',
  'go',
  'hard',
  'time',
  'earth',
  'would',
  'friend',
  'consol',
  'minut',
  'fine',
  'entir',
  'parti',
  'realli',
  'left',
  'earlier',
  'look',
  'offend',
  'said',
  'mari',
  'husband',
  'mine',
  'stare',
  'drove',
  'home',
  'silenc',
  'told',
  'want',
  'talk',
  'morn',
  'sort',
  'thing',
  'ignor',
  'left',
  'hous',
  'wife_marri',
  'marri_year',
  'year_began',
  'began_tri',
  'tri_conceiv',
  'conceiv_septemb',
  'septemb_luck',
  'luck_far',
  'far_doctor',
  'doctor_say',
  'say_first',
  'first_appoint',
  'appoint_typic',
  'typic_take',
  'take_close',
  'close_year',
  'year_coupl',
  'coupl_conceiv',
  'conceiv_tell',
  'tell_peopl',
  'peopl_infertil',
  'infertil_true',
  'true_doctor',
  'doctor_said',
  'said_wife',
  'wife_went',
  'went_work',
  'work_christma',
  'christma_parti',
  'parti_mid',
  'mid_decemb',
  'decemb_wife',
  'wife_met',
  'met_cowork',
  'cowork_wife',
  'wife_let',
  'let_call',
  'call_mari',
  'mari_took',
  'took_like',
  'like_mari',
  'mari_pregnant',
  'pregnant_invit',
  'invit_wife',
  'wife_babi',
  'babi_shower',
  'shower_yesterday',
  'yesterday_wife',
  'wife_sound',
  'sound_excit',
  'excit_go',
  'go_ask',
  'ask_alon',
  'alon_think',
  'think_shell',
  'shell_fine',
  'fine_know',
  'know_wife',
  'wife_know',
  'know_typic',
  'typic_bother',
  'bother_knew',
  'knew_bask',
  'bask_happi',
  'happi_someon',
  'someon_els',
  'els_pregnanc',
  'pregnanc_urg',
  'urg_think',
  'think_said',
  'said_fine',
  'fine_excit',
  'excit_went',
  'went_babi',
  'babi_shower',
  'shower_yesterday',
  'yesterday_minut',
  'minut_call',
  'call_ask',
  'ask_come',
  'come_cafe',
  'cafe_nearbi',
  'nearbi_knew',
  'knew_stay',
  'stay_long',
  'long_find',
  'find_entranc',
  'entranc_hous',
  'hous_cri',
  'cri_bunch',
  'bunch_women',
  'women_consol',
  'consol_saw',
  'saw_came',
  'came_pull',
  'pull_garden',
  'garden_talk',
  'talk_said',
  'said_danc',
  'danc_look',
  'look_mari',
  'mari_pregnant',
  'pregnant_belli',
  'belli_take',
  'take_anymor',
  'anymor_start',
  'start_cri',
  'cri_ran',
  'ran_mari',
  'mari_friend',
  'friend_follow',
  'follow_consol',
  'consol_consol',
  'consol_said',
  'said_ok',
  'ok_let',
  'let_go',
  'go_babe',
  'babe_want',
  'want_go',
  'go_go',
  'go_drive',
  'drive_feel',
  'feel_better',
  'better_look',
  'look_weird',
  'weird_ask',
  'ask_would',
  'would_leav',
  'leav_ask',
  'ask_would',
  'would_stay',
  'stay_said',
  'said_feel',
  'feel_better',
  'better_go',
  'go_good',
  'good_time',
  'time_sigh',
  'sigh_said',
  'said_babe',
  'babe_know',
  'know_go',
  'go_happen',
  'happen_doubt',
  'doubt_attent',
  'attent_mari',
  'mari_great',
  'great_babi',
  'babi_shower',
  'shower_deserv',
  'deserv_celebr',
  'celebr_cant',
  'cant_see',
  'see_peopl',
  'peopl_go',
  'go_shift',
  'shift_focu',
  'focu_consol',
  'consol_celebr',
  'celebr_still',
  'still_roll',
  'roll_eye',
  'eye_said',
  'said_go',
  'go_back',
  'back_could',
  'could_leav',
  'leav_hour',
  'hour_later',
  'later_parti',
  'parti_near',
  'near_end',
  'end_go',
  'go_back',
  'back_pick',
  'pick_cowork',
  'cowork_step',
  'step_hous',
  'hous_lo',
  'lo_behold',
  'behold_everyon',
  'everyon_sit',
  'sit_circl',
  'circl_wife',
  'wife_centr',
  'centr_attent',
  'attent_cowork',
  'cowork_look',
  'look_wife',
  'wife_call',
  'call_said',
  'said_left',
  'left_age',
  'age_ago',
  'ago_wife',
  'wife_enter',
  'enter_car',
  'car_first',
  'first_ask',
  'ask_feel',
  'feel_spoke',
  'spoke_minut',
  'minut_ask',
  'ask_happen',
  'happen_mari',
  'mari_left',
  'left_said',
  'said_oh',
  'oh_crap',
  'crap_mari',
  'mari_forgot',
  'forgot_say',
  'say_bye',
  'bye_told',
  'told_mari',
  'mari_left',
  'left_age',
  'age_ago',
  'ago_said',
  'said_know',
  'know_go',
  'go_hard',
  'hard_time',
  'time_earth',
  'earth_would',
  'would_friend',
  'friend_consol',
  'consol_minut',
  'minut_fine',
  'fine_entir',
  'entir_parti',
  'parti_realli',
  'realli_left',
  'left_earlier',
  'earlier_look',
  'look_offend',
  'offend_said',
  'said_mari',
  'mari_husband',
  'husband_mine',
  'mine_stare',
  'stare_drove',
  'drove_home',
  'home_silenc',
  'silenc_told',
  'told_want',
  'want_talk',
  'talk_morn',
  'morn_sort',
  'sort_thing',
  'thing_ignor',
  'ignor_left',
  'left_hous',
  'wife_marri_year',
  'marri_year_began',
  'year_began_tri',
  'began_tri_conceiv',
  'tri_conceiv_septemb',
  'conceiv_septemb_luck',
  'septemb_luck_far',
  'luck_far_doctor',
  'far_doctor_say',
  'doctor_say_first',
  'say_first_appoint',
  'first_appoint_typic',
  'appoint_typic_take',
  'typic_take_close',
  'take_close_year',
  'close_year_coupl',
  'year_coupl_conceiv',
  'coupl_conceiv_tell',
  'conceiv_tell_peopl',
  'tell_peopl_infertil',
  'peopl_infertil_true',
  'infertil_true_doctor',
  'true_doctor_said',
  'doctor_said_wife',
  'said_wife_went',
  'wife_went_work',
  'went_work_christma',
  'work_christma_parti',
  'christma_parti_mid',
  'parti_mid_decemb',
  'mid_decemb_wife',
  'decemb_wife_met',
  'wife_met_cowork',
  'met_cowork_wife',
  'cowork_wife_let',
  'wife_let_call',
  'let_call_mari',
  'call_mari_took',
  'mari_took_like',
  'took_like_mari',
  'like_mari_pregnant',
  'mari_pregnant_invit',
  'pregnant_invit_wife',
  'invit_wife_babi',
  'wife_babi_shower',
  'babi_shower_yesterday',
  'shower_yesterday_wife',
  'yesterday_wife_sound',
  'wife_sound_excit',
  'sound_excit_go',
  'excit_go_ask',
  'go_ask_alon',
  'ask_alon_think',
  'alon_think_shell',
  'think_shell_fine',
  'shell_fine_know',
  'fine_know_wife',
  'know_wife_know',
  'wife_know_typic',
  'know_typic_bother',
  'typic_bother_knew',
  'bother_knew_bask',
  'knew_bask_happi',
  'bask_happi_someon',
  'happi_someon_els',
  'someon_els_pregnanc',
  'els_pregnanc_urg',
  'pregnanc_urg_think',
  'urg_think_said',
  'think_said_fine',
  'said_fine_excit',
  'fine_excit_went',
  'excit_went_babi',
  'went_babi_shower',
  'babi_shower_yesterday',
  'shower_yesterday_minut',
  'yesterday_minut_call',
  'minut_call_ask',
  'call_ask_come',
  'ask_come_cafe',
  'come_cafe_nearbi',
  'cafe_nearbi_knew',
  'nearbi_knew_stay',
  'knew_stay_long',
  'stay_long_find',
  'long_find_entranc',
  'find_entranc_hous',
  'entranc_hous_cri',
  'hous_cri_bunch',
  'cri_bunch_women',
  'bunch_women_consol',
  'women_consol_saw',
  'consol_saw_came',
  'saw_came_pull',
  'came_pull_garden',
  'pull_garden_talk',
  'garden_talk_said',
  'talk_said_danc',
  'said_danc_look',
  'danc_look_mari',
  'look_mari_pregnant',
  'mari_pregnant_belli',
  'pregnant_belli_take',
  'belli_take_anymor',
  'take_anymor_start',
  'anymor_start_cri',
  'start_cri_ran',
  'cri_ran_mari',
  'ran_mari_friend',
  'mari_friend_follow',
  'friend_follow_consol',
  'follow_consol_consol',
  'consol_consol_said',
  'consol_said_ok',
  'said_ok_let',
  'ok_let_go',
  'let_go_babe',
  'go_babe_want',
  'babe_want_go',
  'want_go_go',
  'go_go_drive',
  'go_drive_feel',
  'drive_feel_better',
  'feel_better_look',
  'better_look_weird',
  'look_weird_ask',
  'weird_ask_would',
  'ask_would_leav',
  'would_leav_ask',
  'leav_ask_would',
  'ask_would_stay',
  'would_stay_said',
  'stay_said_feel',
  'said_feel_better',
  'feel_better_go',
  'better_go_good',
  'go_good_time',
  'good_time_sigh',
  'time_sigh_said',
  'sigh_said_babe',
  'said_babe_know',
  'babe_know_go',
  'know_go_happen',
  'go_happen_doubt',
  'happen_doubt_attent',
  'doubt_attent_mari',
  'attent_mari_great',
  'mari_great_babi',
  'great_babi_shower',
  'babi_shower_deserv',
  'shower_deserv_celebr',
  'deserv_celebr_cant',
  'celebr_cant_see',
  'cant_see_peopl',
  'see_peopl_go',
  'peopl_go_shift',
  'go_shift_focu',
  'shift_focu_consol',
  'focu_consol_celebr',
  'consol_celebr_still',
  'celebr_still_roll',
  'still_roll_eye',
  'roll_eye_said',
  'eye_said_go',
  'said_go_back',
  'go_back_could',
  'back_could_leav',
  'could_leav_hour',
  'leav_hour_later',
  'hour_later_parti',
  'later_parti_near',
  'parti_near_end',
  'near_end_go',
  'end_go_back',
  'go_back_pick',
  'back_pick_cowork',
  'pick_cowork_step',
  'cowork_step_hous',
  'step_hous_lo',
  'hous_lo_behold',
  'lo_behold_everyon',
  'behold_everyon_sit',
  'everyon_sit_circl',
  'sit_circl_wife',
  'circl_wife_centr',
  'wife_centr_attent',
  'centr_attent_cowork',
  'attent_cowork_look',
  'cowork_look_wife',
  'look_wife_call',
  'wife_call_said',
  'call_said_left',
  'said_left_age',
  'left_age_ago',
  'age_ago_wife',
  'ago_wife_enter',
  'wife_enter_car',
  'enter_car_first',
  'car_first_ask',
  'first_ask_feel',
  'ask_feel_spoke',
  'feel_spoke_minut',
  'spoke_minut_ask',
  'minut_ask_happen',
  'ask_happen_mari',
  'happen_mari_left',
  'mari_left_said',
  'left_said_oh',
  'said_oh_crap',
  'oh_crap_mari',
  'crap_mari_forgot',
  'mari_forgot_say',
  'forgot_say_bye',
  'say_bye_told',
  'bye_told_mari',
  'told_mari_left',
  'mari_left_age',
  'left_age_ago',
  'age_ago_said',
  'ago_said_know',
  'said_know_go',
  'know_go_hard',
  'go_hard_time',
  'hard_time_earth',
  'time_earth_would',
  'earth_would_friend',
  'would_friend_consol',
  'friend_consol_minut',
  'consol_minut_fine',
  'minut_fine_entir',
  'fine_entir_parti',
  'entir_parti_realli',
  'parti_realli_left',
  'realli_left_earlier',
  'left_earlier_look',
  'earlier_look_offend',
  'look_offend_said',
  'offend_said_mari',
  'said_mari_husband',
  'mari_husband_mine',
  'husband_mine_stare',
  'mine_stare_drove',
  'stare_drove_home',
  'drove_home_silenc',
  'home_silenc_told',
  'silenc_told_want',
  'told_want_talk',
  'want_talk_morn',
  'talk_morn_sort',
  'morn_sort_thing',
  'sort_thing_ignor',
  'thing_ignor_left',
  'ignor_left_hous'],
 ['throwaway',
  'year',
  'old',
  'daughter',
  'jess',
  'father',
  'husband',
  'die',
  'accid',
  'young',
  'us',
  'two',
  'long',
  'time',
  'result',
  'close',
  'lot',
  'open',
  'kid',
  'parent',
  'around',
  'week',
  'ago',
  'ask',
  'could',
  'take',
  'movi',
  'date',
  'guy',
  'class',
  'know',
  'guy',
  'distantli',
  'theyv',
  'done',
  'extra',
  'curricular',
  'togeth',
  'thrill',
  'daughter',
  'first',
  '‘',
  'boyfriend',
  'took',
  'day',
  'ago',
  'end',
  'hang',
  'hous',
  'bit',
  'afterward',
  'extrem',
  'polit',
  'mayb',
  'mum',
  'insid',
  'happier',
  'went',
  'older',
  'sister',
  'hous',
  'coffe',
  'earlier',
  'morn',
  'backstori',
  'sister',
  'two',
  'teenag',
  'live',
  'almost',
  'full',
  'time',
  'dad',
  'messi',
  'divorc',
  'around',
  'three',
  'year',
  'ago',
  'kid',
  'choos',
  'live',
  'dad',
  'reason',
  'sister',
  'extrem',
  'bear',
  'kind',
  'mum',
  'believ',
  'kid',
  'privaci',
  'run',
  'live',
  'adult',
  'know',
  'mani',
  'argument',
  'would',
  'take',
  'away',
  'door',
  'let',
  'hang',
  'friend',
  'search',
  'phone',
  'everi',
  'night',
  'etc',
  'primari',
  'reason',
  'divorc',
  'although',
  'admit',
  'love',
  'someon',
  'grew',
  'littl',
  'privaci',
  'fulli',
  'understand',
  'kid',
  'want',
  'live',
  'daughter',
  'came',
  'convers',
  'bought',
  'first',
  'date',
  'explain',
  'went',
  'sister',
  'laugh',
  'told',
  'must',
  'joke',
  'realis',
  'seriou',
  'told',
  'terribl',
  'mother',
  'let',
  'daughter',
  'walk',
  'set',
  'boundari',
  'rant',
  'basic',
  'said',
  'year',
  'old',
  'incap',
  'go',
  'lazi',
  'neglect',
  'allow',
  'also',
  'said',
  '‘',
  'would',
  'never',
  'allow',
  'kid',
  'repli',
  'say',
  '‘',
  'exactli',
  'kid',
  'drive',
  'dad',
  'got',
  'quiet',
  'told',
  'leav',
  'got',
  'home',
  'start',
  'think',
  'said',
  'time',
  'thought',
  'simpli',
  'tell',
  'need',
  'hear',
  'im',
  'wonder',
  'cross',
  'line',
  'throwaway_year',
  'year_old',
  'old_daughter',
  'daughter_jess',
  'jess_father',
  'father_husband',
  'husband_die',
  'die_accid',
  'accid_young',
  'young_us',
  'us_two',
  'two_long',
  'long_time',
  'time_result',
  'result_close',
  'close_lot',
  'lot_open',
  'open_kid',
  'kid_parent',
  'parent_around',
  'around_week',
  'week_ago',
  'ago_ask',
  'ask_could',
  'could_take',
  'take_movi',
  'movi_date',
  'date_guy',
  'guy_class',
  'class_know',
  'know_guy',
  'guy_distantli',
  'distantli_theyv',
  'theyv_done',
  'done_extra',
  'extra_curricular',
  'curricular_togeth',
  'togeth_thrill',
  'thrill_daughter',
  'daughter_first',
  'first_‘',
  '‘_boyfriend',
  'boyfriend_took',
  'took_day',
  'day_ago',
  'ago_end',
  'end_hang',
  'hang_hous',
  'hous_bit',
  'bit_afterward',
  'afterward_extrem',
  'extrem_polit',
  'polit_mayb',
  'mayb_mum',
  'mum_insid',
  'insid_happier',
  'happier_went',
  'went_older',
  'older_sister',
  'sister_hous',
  'hous_coffe',
  'coffe_earlier',
  'earlier_morn',
  'morn_backstori',
  'backstori_sister',
  'sister_two',
  'two_teenag',
  'teenag_live',
  'live_almost',
  'almost_full',
  'full_time',
  'time_dad',
  'dad_messi',
  'messi_divorc',
  'divorc_around',
  'around_three',
  'three_year',
  'year_ago',
  'ago_kid',
  'kid_choos',
  'choos_live',
  'live_dad',
  'dad_reason',
  'reason_sister',
  'sister_extrem',
  'extrem_bear',
  'bear_kind',
  'kind_mum',
  'mum_believ',
  'believ_kid',
  'kid_privaci',
  'privaci_run',
  'run_live',
  'live_adult',
  'adult_know',
  'know_mani',
  'mani_argument',
  'argument_would',
  'would_take',
  'take_away',
  'away_door',
  'door_let',
  'let_hang',
  'hang_friend',
  'friend_search',
  'search_phone',
  'phone_everi',
  'everi_night',
  'night_etc',
  'etc_primari',
  'primari_reason',
  'reason_divorc',
  'divorc_although',
  'although_admit',
  'admit_love',
  'love_someon',
  'someon_grew',
  'grew_littl',
  'littl_privaci',
  'privaci_fulli',
  'fulli_understand',
  'understand_kid',
  'kid_want',
  'want_live',
  'live_daughter',
  'daughter_came',
  'came_convers',
  'convers_bought',
  'bought_first',
  'first_date',
  'date_explain',
  'explain_went',
  'went_sister',
  'sister_laugh',
  'laugh_told',
  'told_must',
  'must_joke',
  'joke_realis',
  'realis_seriou',
  'seriou_told',
  'told_terribl',
  'terribl_mother',
  'mother_let',
  'let_daughter',
  'daughter_walk',
  'walk_set',
  'set_boundari',
  'boundari_rant',
  'rant_basic',
  'basic_said',
  'said_year',
  'year_old',
  'old_incap',
  'incap_go',
  'go_lazi',
  'lazi_neglect',
  'neglect_allow',
  'allow_also',
  'also_said',
  'said_‘',
  '‘_would',
  'would_never',
  'never_allow',
  'allow_kid',
  'kid_repli',
  'repli_say',
  'say_‘',
  '‘_exactli',
  'exactli_kid',
  'kid_drive',
  'drive_dad',
  'dad_got',
  'got_quiet',
  'quiet_told',
  'told_leav',
  'leav_got',
  'got_home',
  'home_start',
  'start_think',
  'think_said',
  'said_time',
  'time_thought',
  'thought_simpli',
  'simpli_tell',
  'tell_need',
  'need_hear',
  'hear_im',
  'im_wonder',
  'wonder_cross',
  'cross_line',
  'throwaway_year_old',
  'year_old_daughter',
  'old_daughter_jess',
  'daughter_jess_father',
  'jess_father_husband',
  'father_husband_die',
  'husband_die_accid',
  'die_accid_young',
  'accid_young_us',
  'young_us_two',
  'us_two_long',
  'two_long_time',
  'long_time_result',
  'time_result_close',
  'result_close_lot',
  'close_lot_open',
  'lot_open_kid',
  'open_kid_parent',
  'kid_parent_around',
  'parent_around_week',
  'around_week_ago',
  'week_ago_ask',
  'ago_ask_could',
  'ask_could_take',
  'could_take_movi',
  'take_movi_date',
  'movi_date_guy',
  'date_guy_class',
  'guy_class_know',
  'class_know_guy',
  'know_guy_distantli',
  'guy_distantli_theyv',
  'distantli_theyv_done',
  'theyv_done_extra',
  'done_extra_curricular',
  'extra_curricular_togeth',
  'curricular_togeth_thrill',
  'togeth_thrill_daughter',
  'thrill_daughter_first',
  'daughter_first_‘',
  'first_‘_boyfriend',
  '‘_boyfriend_took',
  'boyfriend_took_day',
  'took_day_ago',
  'day_ago_end',
  'ago_end_hang',
  'end_hang_hous',
  'hang_hous_bit',
  'hous_bit_afterward',
  'bit_afterward_extrem',
  'afterward_extrem_polit',
  'extrem_polit_mayb',
  'polit_mayb_mum',
  'mayb_mum_insid',
  'mum_insid_happier',
  'insid_happier_went',
  'happier_went_older',
  'went_older_sister',
  'older_sister_hous',
  'sister_hous_coffe',
  'hous_coffe_earlier',
  'coffe_earlier_morn',
  'earlier_morn_backstori',
  'morn_backstori_sister',
  'backstori_sister_two',
  'sister_two_teenag',
  'two_teenag_live',
  'teenag_live_almost',
  'live_almost_full',
  'almost_full_time',
  'full_time_dad',
  'time_dad_messi',
  'dad_messi_divorc',
  'messi_divorc_around',
  'divorc_around_three',
  'around_three_year',
  'three_year_ago',
  'year_ago_kid',
  'ago_kid_choos',
  'kid_choos_live',
  'choos_live_dad',
  'live_dad_reason',
  'dad_reason_sister',
  'reason_sister_extrem',
  'sister_extrem_bear',
  'extrem_bear_kind',
  'bear_kind_mum',
  'kind_mum_believ',
  'mum_believ_kid',
  'believ_kid_privaci',
  'kid_privaci_run',
  'privaci_run_live',
  'run_live_adult',
  'live_adult_know',
  'adult_know_mani',
  'know_mani_argument',
  'mani_argument_would',
  'argument_would_take',
  'would_take_away',
  'take_away_door',
  'away_door_let',
  'door_let_hang',
  'let_hang_friend',
  'hang_friend_search',
  'friend_search_phone',
  'search_phone_everi',
  'phone_everi_night',
  'everi_night_etc',
  'night_etc_primari',
  'etc_primari_reason',
  'primari_reason_divorc',
  'reason_divorc_although',
  'divorc_although_admit',
  'although_admit_love',
  'admit_love_someon',
  'love_someon_grew',
  'someon_grew_littl',
  'grew_littl_privaci',
  'littl_privaci_fulli',
  'privaci_fulli_understand',
  'fulli_understand_kid',
  'understand_kid_want',
  'kid_want_live',
  'want_live_daughter',
  'live_daughter_came',
  'daughter_came_convers',
  'came_convers_bought',
  'convers_bought_first',
  'bought_first_date',
  'first_date_explain',
  'date_explain_went',
  'explain_went_sister',
  'went_sister_laugh',
  'sister_laugh_told',
  'laugh_told_must',
  'told_must_joke',
  'must_joke_realis',
  'joke_realis_seriou',
  'realis_seriou_told',
  'seriou_told_terribl',
  'told_terribl_mother',
  'terribl_mother_let',
  'mother_let_daughter',
  'let_daughter_walk',
  'daughter_walk_set',
  'walk_set_boundari',
  'set_boundari_rant',
  'boundari_rant_basic',
  'rant_basic_said',
  'basic_said_year',
  'said_year_old',
  'year_old_incap',
  'old_incap_go',
  'incap_go_lazi',
  'go_lazi_neglect',
  'lazi_neglect_allow',
  'neglect_allow_also',
  'allow_also_said',
  'also_said_‘',
  'said_‘_would',
  '‘_would_never',
  'would_never_allow',
  'never_allow_kid',
  'allow_kid_repli',
  'kid_repli_say',
  'repli_say_‘',
  'say_‘_exactli',
  '‘_exactli_kid',
  'exactli_kid_drive',
  'kid_drive_dad',
  'drive_dad_got',
  'dad_got_quiet',
  'got_quiet_told',
  'quiet_told_leav',
  'told_leav_got',
  'leav_got_home',
  'got_home_start',
  'home_start_think',
  'start_think_said',
  'think_said_time',
  'said_time_thought',
  'time_thought_simpli',
  'thought_simpli_tell',
  'simpli_tell_need',
  'tell_need_hear',
  'need_hear_im',
  'hear_im_wonder',
  'im_wonder_cross',
  'wonder_cross_line'],
 ['might',
  'sound',
  'bad',
  'know',
  'ta',
  'date',
  'boyfriend',
  'rhett',
  'month',
  'live',
  'differ',
  'town',
  'american',
  'live',
  'usual',
  'visit',
  'weekend',
  'time',
  'decid',
  'visit',
  'town',
  'eat',
  'diner',
  'rhett',
  'alreadi',
  'arriv',
  'diner',
  'talk',
  'check',
  'menu',
  'time',
  'order',
  'pull',
  'small',
  'bell',
  'jacket',
  'pocket',
  'lift',
  'start',
  'shake',
  'produc',
  'loud',
  'annoy',
  'sound',
  'ear',
  'start',
  'hurt',
  'confus',
  'ask',
  'said',
  'tri',
  'get',
  'one',
  'waiter',
  'staff',
  'attent',
  'said',
  'embarrass',
  'stop',
  'right',
  'kept',
  'shake',
  'begin',
  'explain',
  'look',
  'receiv',
  'everyon',
  'demand',
  'stop',
  'said',
  'til',
  'someon',
  'came',
  'took',
  'order',
  'threaten',
  'leav',
  'place',
  'cancel',
  'dinner',
  'kept',
  'someon',
  'came',
  'alreadi',
  'id',
  'alreadi',
  'gotten',
  'took',
  'purs',
  'start',
  'make',
  'way',
  'follow',
  'start',
  'argu',
  'walk',
  'told',
  'take',
  'embarrass',
  'got',
  'upset',
  'said',
  'get',
  'thought',
  'bell',
  'embarrass',
  'explain',
  'perfect',
  'solut',
  'longer',
  'forc',
  'wait',
  'til',
  'someon',
  'show',
  'ask',
  'accept',
  'america',
  'said',
  'ye',
  'free',
  'countri',
  'peopl',
  'usual',
  'give',
  'shit',
  'said',
  'inappropri',
  'embarrasd',
  'said',
  'sensit',
  'overreact',
  'noth',
  'insist',
  'go',
  'back',
  'insid',
  'refus',
  'end',
  'leav',
  'kept',
  'ruin',
  'dinner',
  'cancel',
  'offend',
  'act',
  'like',
  'behavior',
  'sham',
  'said',
  'right',
  'give',
  'opinion',
  'done',
  'even',
  'thought',
  'basic',
  'told',
  'get',
  'high',
  'hors',
  'stop',
  'call',
  'geniu',
  'idea',
  'embarrass',
  'sulk',
  'day',
  'want',
  'apolog',
  'mayb',
  'overreact',
  'mayb',
  'noth',
  'live',
  'unaccept',
  'might_sound',
  'sound_bad',
  'bad_know',
  'know_ta',
  'ta_date',
  'date_boyfriend',
  'boyfriend_rhett',
  'rhett_month',
  'month_live',
  'live_differ',
  'differ_town',
  'town_american',
  'american_live',
  'live_usual',
  'usual_visit',
  'visit_weekend',
  'weekend_time',
  'time_decid',
  'decid_visit',
  'visit_town',
  'town_eat',
  'eat_diner',
  'diner_rhett',
  'rhett_alreadi',
  'alreadi_arriv',
  'arriv_diner',
  'diner_talk',
  'talk_check',
  'check_menu',
  'menu_time',
  'time_order',
  'order_pull',
  'pull_small',
  'small_bell',
  'bell_jacket',
  'jacket_pocket',
  'pocket_lift',
  'lift_start',
  'start_shake',
  'shake_produc',
  'produc_loud',
  'loud_annoy',
  'annoy_sound',
  'sound_ear',
  'ear_start',
  'start_hurt',
  'hurt_confus',
  'confus_ask',
  'ask_said',
  'said_tri',
  'tri_get',
  'get_one',
  'one_waiter',
  'waiter_staff',
  'staff_attent',
  'attent_said',
  'said_embarrass',
  'embarrass_stop',
  'stop_right',
  'right_kept',
  'kept_shake',
  'shake_begin',
  'begin_explain',
  'explain_look',
  'look_receiv',
  'receiv_everyon',
  'everyon_demand',
  'demand_stop',
  'stop_said',
  'said_til',
  'til_someon',
  'someon_came',
  'came_took',
  'took_order',
  'order_threaten',
  'threaten_leav',
  'leav_place',
  'place_cancel',
  'cancel_dinner',
  'dinner_kept',
  'kept_someon',
  'someon_came',
  'came_alreadi',
  'alreadi_id',
  'id_alreadi',
  'alreadi_gotten',
  'gotten_took',
  'took_purs',
  'purs_start',
  'start_make',
  'make_way',
  'way_follow',
  'follow_start',
  'start_argu',
  'argu_walk',
  'walk_told',
  'told_take',
  'take_embarrass',
  'embarrass_got',
  'got_upset',
  'upset_said',
  'said_get',
  'get_thought',
  'thought_bell',
  'bell_embarrass',
  'embarrass_explain',
  'explain_perfect',
  'perfect_solut',
  'solut_longer',
  'longer_forc',
  'forc_wait',
  'wait_til',
  'til_someon',
  'someon_show',
  'show_ask',
  'ask_accept',
  'accept_america',
  'america_said',
  'said_ye',
  'ye_free',
  'free_countri',
  'countri_peopl',
  'peopl_usual',
  'usual_give',
  'give_shit',
  'shit_said',
  'said_inappropri',
  'inappropri_embarrasd',
  'embarrasd_said',
  'said_sensit',
  'sensit_overreact',
  'overreact_noth',
  'noth_insist',
  'insist_go',
  'go_back',
  'back_insid',
  'insid_refus',
  'refus_end',
  'end_leav',
  'leav_kept',
  'kept_ruin',
  'ruin_dinner',
  'dinner_cancel',
  'cancel_offend',
  'offend_act',
  'act_like',
  'like_behavior',
  'behavior_sham',
  'sham_said',
  'said_right',
  'right_give',
  'give_opinion',
  'opinion_done',
  'done_even',
  'even_thought',
  'thought_basic',
  'basic_told',
  'told_get',
  'get_high',
  'high_hors',
  'hors_stop',
  'stop_call',
  'call_geniu',
  'geniu_idea',
  'idea_embarrass',
  'embarrass_sulk',
  'sulk_day',
  'day_want',
  'want_apolog',
  'apolog_mayb',
  'mayb_overreact',
  'overreact_mayb',
  'mayb_noth',
  'noth_live',
  'live_unaccept',
  'might_sound_bad',
  'sound_bad_know',
  'bad_know_ta',
  'know_ta_date',
  'ta_date_boyfriend',
  'date_boyfriend_rhett',
  'boyfriend_rhett_month',
  'rhett_month_live',
  'month_live_differ',
  'live_differ_town',
  'differ_town_american',
  'town_american_live',
  'american_live_usual',
  'live_usual_visit',
  'usual_visit_weekend',
  'visit_weekend_time',
  'weekend_time_decid',
  'time_decid_visit',
  'decid_visit_town',
  'visit_town_eat',
  'town_eat_diner',
  'eat_diner_rhett',
  'diner_rhett_alreadi',
  'rhett_alreadi_arriv',
  'alreadi_arriv_diner',
  'arriv_diner_talk',
  'diner_talk_check',
  'talk_check_menu',
  'check_menu_time',
  'menu_time_order',
  'time_order_pull',
  'order_pull_small',
  'pull_small_bell',
  'small_bell_jacket',
  'bell_jacket_pocket',
  'jacket_pocket_lift',
  'pocket_lift_start',
  'lift_start_shake',
  'start_shake_produc',
  'shake_produc_loud',
  'produc_loud_annoy',
  'loud_annoy_sound',
  'annoy_sound_ear',
  'sound_ear_start',
  'ear_start_hurt',
  'start_hurt_confus',
  'hurt_confus_ask',
  'confus_ask_said',
  'ask_said_tri',
  'said_tri_get',
  'tri_get_one',
  'get_one_waiter',
  'one_waiter_staff',
  'waiter_staff_attent',
  'staff_attent_said',
  'attent_said_embarrass',
  'said_embarrass_stop',
  'embarrass_stop_right',
  'stop_right_kept',
  'right_kept_shake',
  'kept_shake_begin',
  'shake_begin_explain',
  'begin_explain_look',
  'explain_look_receiv',
  'look_receiv_everyon',
  'receiv_everyon_demand',
  'everyon_demand_stop',
  'demand_stop_said',
  'stop_said_til',
  'said_til_someon',
  'til_someon_came',
  'someon_came_took',
  'came_took_order',
  'took_order_threaten',
  'order_threaten_leav',
  'threaten_leav_place',
  'leav_place_cancel',
  'place_cancel_dinner',
  'cancel_dinner_kept',
  'dinner_kept_someon',
  'kept_someon_came',
  'someon_came_alreadi',
  'came_alreadi_id',
  'alreadi_id_alreadi',
  'id_alreadi_gotten',
  'alreadi_gotten_took',
  'gotten_took_purs',
  'took_purs_start',
  'purs_start_make',
  'start_make_way',
  'make_way_follow',
  'way_follow_start',
  'follow_start_argu',
  'start_argu_walk',
  'argu_walk_told',
  'walk_told_take',
  'told_take_embarrass',
  'take_embarrass_got',
  'embarrass_got_upset',
  'got_upset_said',
  'upset_said_get',
  'said_get_thought',
  'get_thought_bell',
  'thought_bell_embarrass',
  'bell_embarrass_explain',
  'embarrass_explain_perfect',
  'explain_perfect_solut',
  'perfect_solut_longer',
  'solut_longer_forc',
  'longer_forc_wait',
  'forc_wait_til',
  'wait_til_someon',
  'til_someon_show',
  'someon_show_ask',
  'show_ask_accept',
  'ask_accept_america',
  'accept_america_said',
  'america_said_ye',
  'said_ye_free',
  'ye_free_countri',
  'free_countri_peopl',
  'countri_peopl_usual',
  'peopl_usual_give',
  'usual_give_shit',
  'give_shit_said',
  'shit_said_inappropri',
  'said_inappropri_embarrasd',
  'inappropri_embarrasd_said',
  'embarrasd_said_sensit',
  'said_sensit_overreact',
  'sensit_overreact_noth',
  'overreact_noth_insist',
  'noth_insist_go',
  'insist_go_back',
  'go_back_insid',
  'back_insid_refus',
  'insid_refus_end',
  'refus_end_leav',
  'end_leav_kept',
  'leav_kept_ruin',
  'kept_ruin_dinner',
  'ruin_dinner_cancel',
  'dinner_cancel_offend',
  'cancel_offend_act',
  'offend_act_like',
  'act_like_behavior',
  'like_behavior_sham',
  'behavior_sham_said',
  'sham_said_right',
  'said_right_give',
  'right_give_opinion',
  'give_opinion_done',
  'opinion_done_even',
  'done_even_thought',
  'even_thought_basic',
  'thought_basic_told',
  'basic_told_get',
  'told_get_high',
  'get_high_hors',
  'high_hors_stop',
  'hors_stop_call',
  'stop_call_geniu',
  'call_geniu_idea',
  'geniu_idea_embarrass',
  'idea_embarrass_sulk',
  'embarrass_sulk_day',
  'sulk_day_want',
  'day_want_apolog',
  'want_apolog_mayb',
  'apolog_mayb_overreact',
  'mayb_overreact_mayb',
  'overreact_mayb_noth',
  'mayb_noth_live',
  'noth_live_unaccept'],
 ['daughterf',
  'dy',
  'hair',
  'dark',
  'reddish',
  'brown',
  'birthdayi',
  'let',
  'dye',
  'hair',
  'middl',
  'school',
  'said',
  'could',
  'high',
  'school',
  'school',
  'dress',
  'code',
  'hair',
  'specifi',
  'natur',
  'hair',
  'color',
  'took',
  'mean',
  'brown',
  'blond',
  'red',
  'black',
  'etc',
  'basic',
  'natur',
  'tone',
  'natur',
  'hair',
  'black',
  'think',
  'much',
  'chang',
  'hairdress',
  'bleach',
  'hair',
  'said',
  'lighten',
  'enough',
  'caus',
  'signific',
  'damag',
  'one',
  'teacher',
  'begin',
  'oct',
  'last',
  'year',
  'began',
  'complain',
  'parent',
  'teacher',
  'meet',
  'hair',
  'meet',
  'dress',
  'code',
  'said',
  'hair',
  'color',
  'grew',
  'peopl',
  'head',
  'dress',
  'code',
  'told',
  'clearli',
  'natur',
  'color',
  'shot',
  'back',
  'ton',
  'student',
  'saw',
  'even',
  'blond',
  'hair',
  'highlight',
  'clearli',
  'natur',
  'brunett',
  'claim',
  'look',
  'like',
  'could',
  'blond',
  'daughter',
  'hair',
  'suppos',
  'black',
  'daughter',
  'asian',
  'pretti',
  'racist',
  'say',
  'cant',
  'dye',
  'hair',
  'brought',
  'principl',
  'agre',
  'say',
  'dress',
  'code',
  'saw',
  'ton',
  'white',
  'kid',
  'class',
  'obvious',
  'brown',
  'hair',
  'dy',
  'blond',
  'even',
  'red',
  'one',
  'said',
  'anyth',
  'want',
  'darken',
  'hair',
  'look',
  'natur',
  'went',
  'end',
  'school',
  'year',
  'contact',
  'superintend',
  'sever',
  'time',
  'never',
  'got',
  'back',
  'almost',
  'start',
  'school',
  'get',
  'email',
  'principl',
  'remind',
  'daughter',
  'allow',
  'black',
  'hair',
  'still',
  'reddish',
  'brown',
  'hair',
  'want',
  'dye',
  'back',
  'ive',
  'tri',
  'fight',
  'last',
  'thing',
  'barg',
  'superintend',
  'offic',
  'demand',
  'get',
  'involv',
  'daughterf_dy',
  'dy_hair',
  'hair_dark',
  'dark_reddish',
  'reddish_brown',
  'brown_birthdayi',
  'birthdayi_let',
  'let_dye',
  'dye_hair',
  'hair_middl',
  'middl_school',
  'school_said',
  'said_could',
  'could_high',
  'high_school',
  'school_school',
  'school_dress',
  'dress_code',
  'code_hair',
  'hair_specifi',
  'specifi_natur',
  'natur_hair',
  'hair_color',
  'color_took',
  'took_mean',
  'mean_brown',
  'brown_blond',
  'blond_red',
  'red_black',
  'black_etc',
  'etc_basic',
  'basic_natur',
  'natur_tone',
  'tone_natur',
  'natur_hair',
  'hair_black',
  'black_think',
  'think_much',
  'much_chang',
  'chang_hairdress',
  'hairdress_bleach',
  'bleach_hair',
  'hair_said',
  'said_lighten',
  'lighten_enough',
  'enough_caus',
  'caus_signific',
  'signific_damag',
  'damag_one',
  'one_teacher',
  'teacher_begin',
  'begin_oct',
  'oct_last',
  'last_year',
  'year_began',
  'began_complain',
  'complain_parent',
  'parent_teacher',
  'teacher_meet',
  'meet_hair',
  'hair_meet',
  'meet_dress',
  'dress_code',
  'code_said',
  'said_hair',
  'hair_color',
  'color_grew',
  'grew_peopl',
  'peopl_head',
  'head_dress',
  'dress_code',
  'code_told',
  'told_clearli',
  'clearli_natur',
  'natur_color',
  'color_shot',
  'shot_back',
  'back_ton',
  'ton_student',
  'student_saw',
  'saw_even',
  'even_blond',
  'blond_hair',
  'hair_highlight',
  'highlight_clearli',
  'clearli_natur',
  'natur_brunett',
  'brunett_claim',
  'claim_look',
  'look_like',
  'like_could',
  'could_blond',
  'blond_daughter',
  'daughter_hair',
  'hair_suppos',
  'suppos_black',
  'black_daughter',
  'daughter_asian',
  'asian_pretti',
  'pretti_racist',
  'racist_say',
  'say_cant',
  'cant_dye',
  'dye_hair',
  'hair_brought',
  'brought_principl',
  'principl_agre',
  'agre_say',
  'say_dress',
  'dress_code',
  'code_saw',
  'saw_ton',
  'ton_white',
  'white_kid',
  'kid_class',
  'class_obvious',
  'obvious_brown',
  'brown_hair',
  'hair_dy',
  'dy_blond',
  'blond_even',
  'even_red',
  'red_one',
  'one_said',
  'said_anyth',
  'anyth_want',
  'want_darken',
  'darken_hair',
  'hair_look',
  'look_natur',
  'natur_went',
  'went_end',
  'end_school',
  'school_year',
  'year_contact',
  'contact_superintend',
  'superintend_sever',
  'sever_time',
  'time_never',
  'never_got',
  'got_back',
  'back_almost',
  'almost_start',
  'start_school',
  'school_get',
  'get_email',
  'email_principl',
  'principl_remind',
  'remind_daughter',
  'daughter_allow',
  'allow_black',
  'black_hair',
  'hair_still',
  'still_reddish',
  'reddish_brown',
  'brown_hair',
  'hair_want',
  'want_dye',
  'dye_back',
  'back_ive',
  'ive_tri',
  'tri_fight',
  'fight_last',
  'last_thing',
  'thing_barg',
  'barg_superintend',
  'superintend_offic',
  'offic_demand',
  'demand_get',
  'get_involv',
  'daughterf_dy_hair',
  'dy_hair_dark',
  'hair_dark_reddish',
  'dark_reddish_brown',
  'reddish_brown_birthdayi',
  'brown_birthdayi_let',
  'birthdayi_let_dye',
  'let_dye_hair',
  'dye_hair_middl',
  'hair_middl_school',
  'middl_school_said',
  'school_said_could',
  'said_could_high',
  'could_high_school',
  'high_school_school',
  'school_school_dress',
  'school_dress_code',
  'dress_code_hair',
  'code_hair_specifi',
  'hair_specifi_natur',
  'specifi_natur_hair',
  'natur_hair_color',
  'hair_color_took',
  'color_took_mean',
  'took_mean_brown',
  'mean_brown_blond',
  'brown_blond_red',
  'blond_red_black',
  'red_black_etc',
  'black_etc_basic',
  'etc_basic_natur',
  'basic_natur_tone',
  'natur_tone_natur',
  'tone_natur_hair',
  'natur_hair_black',
  'hair_black_think',
  'black_think_much',
  'think_much_chang',
  'much_chang_hairdress',
  'chang_hairdress_bleach',
  'hairdress_bleach_hair',
  'bleach_hair_said',
  'hair_said_lighten',
  'said_lighten_enough',
  'lighten_enough_caus',
  'enough_caus_signific',
  'caus_signific_damag',
  'signific_damag_one',
  'damag_one_teacher',
  'one_teacher_begin',
  'teacher_begin_oct',
  'begin_oct_last',
  'oct_last_year',
  'last_year_began',
  'year_began_complain',
  'began_complain_parent',
  'complain_parent_teacher',
  'parent_teacher_meet',
  'teacher_meet_hair',
  'meet_hair_meet',
  'hair_meet_dress',
  'meet_dress_code',
  'dress_code_said',
  'code_said_hair',
  'said_hair_color',
  'hair_color_grew',
  'color_grew_peopl',
  'grew_peopl_head',
  'peopl_head_dress',
  'head_dress_code',
  'dress_code_told',
  'code_told_clearli',
  'told_clearli_natur',
  'clearli_natur_color',
  'natur_color_shot',
  'color_shot_back',
  'shot_back_ton',
  'back_ton_student',
  'ton_student_saw',
  'student_saw_even',
  'saw_even_blond',
  'even_blond_hair',
  'blond_hair_highlight',
  'hair_highlight_clearli',
  'highlight_clearli_natur',
  'clearli_natur_brunett',
  'natur_brunett_claim',
  'brunett_claim_look',
  'claim_look_like',
  'look_like_could',
  'like_could_blond',
  'could_blond_daughter',
  'blond_daughter_hair',
  'daughter_hair_suppos',
  'hair_suppos_black',
  'suppos_black_daughter',
  'black_daughter_asian',
  'daughter_asian_pretti',
  'asian_pretti_racist',
  'pretti_racist_say',
  'racist_say_cant',
  'say_cant_dye',
  'cant_dye_hair',
  'dye_hair_brought',
  'hair_brought_principl',
  'brought_principl_agre',
  'principl_agre_say',
  'agre_say_dress',
  'say_dress_code',
  'dress_code_saw',
  'code_saw_ton',
  'saw_ton_white',
  'ton_white_kid',
  'white_kid_class',
  'kid_class_obvious',
  'class_obvious_brown',
  'obvious_brown_hair',
  'brown_hair_dy',
  'hair_dy_blond',
  'dy_blond_even',
  'blond_even_red',
  'even_red_one',
  'red_one_said',
  'one_said_anyth',
  'said_anyth_want',
  'anyth_want_darken',
  'want_darken_hair',
  'darken_hair_look',
  'hair_look_natur',
  'look_natur_went',
  'natur_went_end',
  'went_end_school',
  'end_school_year',
  'school_year_contact',
  'year_contact_superintend',
  'contact_superintend_sever',
  'superintend_sever_time',
  'sever_time_never',
  'time_never_got',
  'never_got_back',
  'got_back_almost',
  'back_almost_start',
  'almost_start_school',
  'start_school_get',
  'school_get_email',
  'get_email_principl',
  'email_principl_remind',
  'principl_remind_daughter',
  'remind_daughter_allow',
  'daughter_allow_black',
  'allow_black_hair',
  'black_hair_still',
  'hair_still_reddish',
  'still_reddish_brown',
  'reddish_brown_hair',
  'brown_hair_want',
  'hair_want_dye',
  'want_dye_back',
  'dye_back_ive',
  'back_ive_tri',
  'ive_tri_fight',
  'tri_fight_last',
  'fight_last_thing',
  'last_thing_barg',
  'thing_barg_superintend',
  'barg_superintend_offic',
  'superintend_offic_demand',
  'offic_demand_get',
  'demand_get_involv'],
 ['httpswwwredditcomramitheassholecommentsuuhziaita_for_not_waking_my_partner_up_and_causing_himutm_medium=android_app',
  '&',
  'utm_source=shar',
  'post',
  'receiv',
  'messag',
  'express',
  'concern',
  'advic',
  'thought',
  'id',
  'updat',
  'thing',
  'turn',
  'morn',
  'incid',
  'partner',
  'got',
  'bed',
  'kid',
  'took',
  'older',
  'girl',
  'breakfast',
  'later',
  'ask',
  'hed',
  'read',
  'thread',
  'agre',
  'subdu',
  'afterward',
  'say',
  'much',
  'except',
  'agre',
  'ah',
  'next',
  'day',
  'took',
  'work',
  'saw',
  'gp',
  'start',
  'anti-depress',
  'long',
  'talk',
  'asham',
  'act',
  'see',
  'stranger',
  'compar',
  'children',
  'cri',
  'realis',
  'much',
  'let',
  'everyon',
  'especi',
  'daughter',
  'grow',
  'think',
  'normal',
  'behaviour',
  'confirm',
  'start',
  'live',
  'parent',
  'year',
  'back',
  'left',
  'home',
  'get',
  'away',
  'mother',
  'told',
  'hed',
  'fail',
  'men',
  'need',
  'woman',
  'look',
  'felt',
  'like',
  'failur',
  'easi',
  'mother',
  'feed',
  'idea',
  'would',
  'also',
  'manipul',
  'thing',
  'look',
  'like',
  'incompet',
  'person',
  'eg',
  'id',
  'tell',
  'relax',
  'id',
  'handl',
  'dish',
  'mother',
  'twist',
  'think',
  'incompet',
  'stop',
  'help',
  'hed',
  'wake',
  'feel',
  'useless',
  'manag',
  'convinc',
  'unhappi',
  'take',
  'care',
  'way',
  'wife',
  'decid',
  'got',
  'contact',
  'go',
  'well',
  'cri',
  'told',
  'horribl',
  'son',
  'abandon',
  'mother',
  'tri',
  'control',
  'forc',
  'block',
  'shed',
  'use',
  'differ',
  'number',
  'continu',
  'call',
  'week',
  'end',
  'chang',
  'number',
  'heard',
  'famili',
  'sinc',
  'bought',
  'unhappi',
  'work',
  'stimul',
  'enough',
  'felt',
  'like',
  'leav',
  'offer',
  'pick',
  'part',
  'time',
  'work',
  'said',
  'talk',
  'boss',
  'took',
  'time',
  'eventu',
  'quit',
  'spoke',
  'dad',
  'use',
  'connect',
  'got',
  'good',
  'job',
  'compani',
  'new',
  'job',
  'primarili',
  'work',
  'home',
  'posit',
  'abl',
  'help',
  'girl',
  'free',
  'time',
  'abl',
  'take',
  'girl',
  'school',
  'watch',
  'play',
  'work',
  'enjoy',
  'start',
  'new',
  'job',
  'book',
  'trip',
  'us',
  'go',
  'snow',
  'week',
  'blast',
  'love',
  'see',
  'relax',
  'happi',
  'enjoy',
  'girl',
  'life',
  'promis',
  'honest',
  'feel',
  'relationship',
  'improv',
  'immens',
  'thank',
  'everyon',
  'gave',
  'judgement',
  'advis',
  'say',
  'realli',
  'help',
  'see',
  'thing',
  'clearli',
  'especi',
  'toxic',
  'relationship',
  'mother',
  'httpswwwredditcomramitheassholecommentsuuhziaita_for_not_waking_my_partner_up_and_causing_himutm_medium=android_app_&',
  '&_utm_source=shar',
  'utm_source=shar_post',
  'post_receiv',
  'receiv_messag',
  'messag_express',
  'express_concern',
  'concern_advic',
  'advic_thought',
  'thought_id',
  'id_updat',
  'updat_thing',
  'thing_turn',
  'turn_morn',
  'morn_incid',
  'incid_partner',
  'partner_got',
  'got_bed',
  'bed_kid',
  'kid_took',
  'took_older',
  'older_girl',
  'girl_breakfast',
  'breakfast_later',
  'later_ask',
  'ask_hed',
  'hed_read',
  'read_thread',
  'thread_agre',
  'agre_subdu',
  'subdu_afterward',
  'afterward_say',
  'say_much',
  'much_except',
  'except_agre',
  'agre_ah',
  'ah_next',
  'next_day',
  'day_took',
  'took_work',
  'work_saw',
  'saw_gp',
  'gp_start',
  'start_anti-depress',
  'anti-depress_long',
  'long_talk',
  'talk_asham',
  'asham_act',
  'act_see',
  'see_stranger',
  'stranger_compar',
  'compar_children',
  'children_cri',
  'cri_realis',
  'realis_much',
  'much_let',
  'let_everyon',
  'everyon_especi',
  'especi_daughter',
  'daughter_grow',
  'grow_think',
  'think_normal',
  'normal_behaviour',
  'behaviour_confirm',
  'confirm_start',
  'start_live',
  'live_parent',
  'parent_year',
  'year_back',
  'back_left',
  'left_home',
  'home_get',
  'get_away',
  'away_mother',
  'mother_told',
  'told_hed',
  'hed_fail',
  'fail_men',
  'men_need',
  'need_woman',
  'woman_look',
  'look_felt',
  'felt_like',
  'like_failur',
  'failur_easi',
  'easi_mother',
  'mother_feed',
  'feed_idea',
  'idea_would',
  'would_also',
  'also_manipul',
  'manipul_thing',
  'thing_look',
  'look_like',
  'like_incompet',
  'incompet_person',
  'person_eg',
  'eg_id',
  'id_tell',
  'tell_relax',
  'relax_id',
  'id_handl',
  'handl_dish',
  'dish_mother',
  'mother_twist',
  'twist_think',
  'think_incompet',
  'incompet_stop',
  'stop_help',
  'help_hed',
  'hed_wake',
  'wake_feel',
  'feel_useless',
  'useless_manag',
  'manag_convinc',
  'convinc_unhappi',
  'unhappi_take',
  'take_care',
  'care_way',
  'way_wife',
  'wife_decid',
  'decid_got',
  'got_contact',
  'contact_go',
  'go_well',
  'well_cri',
  'cri_told',
  'told_horribl',
  'horribl_son',
  'son_abandon',
  'abandon_mother',
  'mother_tri',
  'tri_control',
  'control_forc',
  'forc_block',
  'block_shed',
  'shed_use',
  'use_differ',
  'differ_number',
  'number_continu',
  'continu_call',
  'call_week',
  'week_end',
  'end_chang',
  'chang_number',
  'number_heard',
  'heard_famili',
  'famili_sinc',
  'sinc_bought',
  'bought_unhappi',
  'unhappi_work',
  'work_stimul',
  'stimul_enough',
  'enough_felt',
  'felt_like',
  'like_leav',
  'leav_offer',
  'offer_pick',
  'pick_part',
  'part_time',
  'time_work',
  'work_said',
  'said_talk',
  'talk_boss',
  'boss_took',
  'took_time',
  'time_eventu',
  'eventu_quit',
  'quit_spoke',
  'spoke_dad',
  'dad_use',
  'use_connect',
  'connect_got',
  'got_good',
  'good_job',
  'job_compani',
  'compani_new',
  'new_job',
  'job_primarili',
  'primarili_work',
  'work_home',
  'home_posit',
  'posit_abl',
  'abl_help',
  'help_girl',
  'girl_free',
  'free_time',
  'time_abl',
  'abl_take',
  'take_girl',
  'girl_school',
  'school_watch',
  'watch_play',
  'play_work',
  'work_enjoy',
  'enjoy_start',
  'start_new',
  'new_job',
  'job_book',
  'book_trip',
  'trip_us',
  'us_go',
  'go_snow',
  'snow_week',
  'week_blast',
  'blast_love',
  'love_see',
  'see_relax',
  'relax_happi',
  'happi_enjoy',
  'enjoy_girl',
  'girl_life',
  'life_promis',
  'promis_honest',
  'honest_feel',
  'feel_relationship',
  'relationship_improv',
  'improv_immens',
  'immens_thank',
  'thank_everyon',
  'everyon_gave',
  'gave_judgement',
  'judgement_advis',
  'advis_say',
  'say_realli',
  'realli_help',
  'help_see',
  'see_thing',
  'thing_clearli',
  'clearli_especi',
  'especi_toxic',
  'toxic_relationship',
  'relationship_mother',
  'httpswwwredditcomramitheassholecommentsuuhziaita_for_not_waking_my_partner_up_and_causing_himutm_medium=android_app_&_utm_source=shar',
  '&_utm_source=shar_post',
  'utm_source=shar_post_receiv',
  'post_receiv_messag',
  'receiv_messag_express',
  'messag_express_concern',
  'express_concern_advic',
  'concern_advic_thought',
  'advic_thought_id',
  'thought_id_updat',
  'id_updat_thing',
  'updat_thing_turn',
  'thing_turn_morn',
  'turn_morn_incid',
  'morn_incid_partner',
  'incid_partner_got',
  'partner_got_bed',
  'got_bed_kid',
  'bed_kid_took',
  'kid_took_older',
  'took_older_girl',
  'older_girl_breakfast',
  'girl_breakfast_later',
  'breakfast_later_ask',
  'later_ask_hed',
  'ask_hed_read',
  'hed_read_thread',
  'read_thread_agre',
  'thread_agre_subdu',
  'agre_subdu_afterward',
  'subdu_afterward_say',
  'afterward_say_much',
  'say_much_except',
  'much_except_agre',
  'except_agre_ah',
  'agre_ah_next',
  'ah_next_day',
  'next_day_took',
  'day_took_work',
  'took_work_saw',
  'work_saw_gp',
  'saw_gp_start',
  'gp_start_anti-depress',
  'start_anti-depress_long',
  'anti-depress_long_talk',
  'long_talk_asham',
  'talk_asham_act',
  'asham_act_see',
  'act_see_stranger',
  'see_stranger_compar',
  'stranger_compar_children',
  'compar_children_cri',
  'children_cri_realis',
  'cri_realis_much',
  'realis_much_let',
  'much_let_everyon',
  'let_everyon_especi',
  'everyon_especi_daughter',
  'especi_daughter_grow',
  'daughter_grow_think',
  'grow_think_normal',
  'think_normal_behaviour',
  'normal_behaviour_confirm',
  'behaviour_confirm_start',
  'confirm_start_live',
  'start_live_parent',
  'live_parent_year',
  'parent_year_back',
  'year_back_left',
  'back_left_home',
  'left_home_get',
  'home_get_away',
  'get_away_mother',
  'away_mother_told',
  'mother_told_hed',
  'told_hed_fail',
  'hed_fail_men',
  'fail_men_need',
  'men_need_woman',
  'need_woman_look',
  'woman_look_felt',
  'look_felt_like',
  'felt_like_failur',
  'like_failur_easi',
  'failur_easi_mother',
  'easi_mother_feed',
  'mother_feed_idea',
  'feed_idea_would',
  'idea_would_also',
  'would_also_manipul',
  'also_manipul_thing',
  'manipul_thing_look',
  'thing_look_like',
  'look_like_incompet',
  'like_incompet_person',
  'incompet_person_eg',
  'person_eg_id',
  'eg_id_tell',
  'id_tell_relax',
  'tell_relax_id',
  'relax_id_handl',
  'id_handl_dish',
  'handl_dish_mother',
  'dish_mother_twist',
  'mother_twist_think',
  'twist_think_incompet',
  'think_incompet_stop',
  'incompet_stop_help',
  'stop_help_hed',
  'help_hed_wake',
  'hed_wake_feel',
  'wake_feel_useless',
  'feel_useless_manag',
  'useless_manag_convinc',
  'manag_convinc_unhappi',
  'convinc_unhappi_take',
  'unhappi_take_care',
  'take_care_way',
  'care_way_wife',
  'way_wife_decid',
  'wife_decid_got',
  'decid_got_contact',
  'got_contact_go',
  'contact_go_well',
  'go_well_cri',
  'well_cri_told',
  'cri_told_horribl',
  'told_horribl_son',
  'horribl_son_abandon',
  'son_abandon_mother',
  'abandon_mother_tri',
  'mother_tri_control',
  'tri_control_forc',
  'control_forc_block',
  'forc_block_shed',
  'block_shed_use',
  'shed_use_differ',
  'use_differ_number',
  'differ_number_continu',
  'number_continu_call',
  'continu_call_week',
  'call_week_end',
  'week_end_chang',
  'end_chang_number',
  'chang_number_heard',
  'number_heard_famili',
  'heard_famili_sinc',
  'famili_sinc_bought',
  'sinc_bought_unhappi',
  'bought_unhappi_work',
  'unhappi_work_stimul',
  'work_stimul_enough',
  'stimul_enough_felt',
  'enough_felt_like',
  'felt_like_leav',
  'like_leav_offer',
  'leav_offer_pick',
  'offer_pick_part',
  'pick_part_time',
  'part_time_work',
  'time_work_said',
  'work_said_talk',
  'said_talk_boss',
  'talk_boss_took',
  'boss_took_time',
  'took_time_eventu',
  'time_eventu_quit',
  'eventu_quit_spoke',
  'quit_spoke_dad',
  'spoke_dad_use',
  'dad_use_connect',
  'use_connect_got',
  'connect_got_good',
  'got_good_job',
  'good_job_compani',
  'job_compani_new',
  'compani_new_job',
  'new_job_primarili',
  'job_primarili_work',
  'primarili_work_home',
  'work_home_posit',
  'home_posit_abl',
  'posit_abl_help',
  'abl_help_girl',
  'help_girl_free',
  'girl_free_time',
  'free_time_abl',
  'time_abl_take',
  'abl_take_girl',
  'take_girl_school',
  'girl_school_watch',
  'school_watch_play',
  'watch_play_work',
  'play_work_enjoy',
  'work_enjoy_start',
  'enjoy_start_new',
  'start_new_job',
  'new_job_book',
  'job_book_trip',
  'book_trip_us',
  'trip_us_go',
  'us_go_snow',
  'go_snow_week',
  'snow_week_blast',
  'week_blast_love',
  'blast_love_see',
  'love_see_relax',
  'see_relax_happi',
  'relax_happi_enjoy',
  'happi_enjoy_girl',
  'enjoy_girl_life',
  'girl_life_promis',
  'life_promis_honest',
  'promis_honest_feel',
  'honest_feel_relationship',
  'feel_relationship_improv',
  'relationship_improv_immens',
  'improv_immens_thank',
  'immens_thank_everyon',
  'thank_everyon_gave',
  'everyon_gave_judgement',
  'gave_judgement_advis',
  'judgement_advis_say',
  'advis_say_realli',
  'say_realli_help',
  'realli_help_see',
  'help_see_thing',
  'see_thing_clearli',
  'thing_clearli_especi',
  'clearli_especi_toxic',
  'especi_toxic_relationship',
  'toxic_relationship_mother'],
 ['partnerm',
  'year',
  'live',
  'togeth',
  'marri',
  'plan',
  'marri',
  'futur',
  'sonm',
  'current',
  'highschool',
  'senior',
  'partner',
  'daughterf',
  'go',
  'colleg',
  'background',
  'need',
  'understand',
  'issu',
  'met',
  'partner',
  'widow',
  'year',
  'lucki',
  'enough',
  'lucr',
  'busi',
  'famili',
  'money',
  'also',
  'late',
  'husband',
  'left',
  'substanti',
  'estat',
  'includ',
  'hous',
  'live',
  'hous',
  'famili',
  'home',
  'pass',
  'son',
  'heir',
  'partner',
  'also',
  'make',
  'good',
  'money',
  'differ',
  'lifestyl',
  'pretti',
  'much',
  'neglig',
  'late',
  'husband',
  'made',
  'sure',
  'spoil',
  'son',
  'respons',
  'keep',
  'room',
  'clean',
  'even',
  'though',
  'hous',
  'keeper',
  'chore',
  'weekend',
  'taught',
  'cook',
  'allow',
  'reason',
  'save',
  'expens',
  'purchas',
  'like',
  'car',
  'psetc',
  'current',
  'partner',
  'ex-wif',
  'spoil',
  'daughter',
  'rotten',
  'due',
  'incid',
  'first',
  'move',
  'togeth',
  'demand',
  'son',
  'bedroom',
  'sinc',
  'second',
  'biggest',
  'got',
  'reject',
  'sinc',
  'home',
  'spend',
  'weekend',
  'famili',
  'therapi',
  'agre',
  'treat',
  'like',
  'guest',
  'follow',
  'hous',
  'rule',
  'extent',
  'relationship',
  'spoil',
  'good',
  'girl',
  'academ',
  'excel',
  'except',
  'aforement',
  'incid',
  'respect',
  'pleasant',
  'young',
  'woman',
  'probelm',
  'know',
  'extent',
  'partner',
  'spent',
  'money',
  'pay',
  'money',
  'rent',
  'put',
  'son',
  'colleg',
  'fund',
  'split',
  'common',
  'bill',
  'half',
  'everyth',
  'els',
  'respons',
  'know',
  'much',
  'financ',
  'son',
  'plan',
  'tour',
  'east',
  'asia',
  'summer',
  'happi',
  'give',
  'money',
  'gift',
  'get',
  'prestigi',
  'colleg',
  'stepdaught',
  'heard',
  'ask',
  'dad',
  'pay',
  'tour',
  'europ',
  'sinc',
  'send',
  'one',
  'got',
  'colleg',
  'agre',
  'never',
  'say',
  'came',
  'ask',
  'lend',
  'close',
  '$',
  'cant',
  'afford',
  'trip',
  'even',
  'give',
  'much',
  'son',
  'plane',
  'ticket',
  'expens',
  'refus',
  'said',
  'sinc',
  'emerg',
  'save',
  'send',
  'trip',
  'graduat',
  'colleg',
  'talk',
  'say',
  'chose',
  'favourit',
  'relationship',
  'daughter',
  'know',
  'even',
  'applic',
  'put',
  'money',
  'happi',
  'relationship',
  'daughter',
  'aita',
  'easili',
  'afford',
  'lend',
  'full',
  'amount',
  'want',
  'reason',
  'convinc',
  'enough',
  'partnerm_year',
  'year_live',
  'live_togeth',
  'togeth_marri',
  'marri_plan',
  'plan_marri',
  'marri_futur',
  'futur_sonm',
  'sonm_current',
  'current_highschool',
  'highschool_senior',
  'senior_partner',
  'partner_daughterf',
  'daughterf_go',
  'go_colleg',
  'colleg_background',
  'background_need',
  'need_understand',
  'understand_issu',
  'issu_met',
  'met_partner',
  'partner_widow',
  'widow_year',
  'year_lucki',
  'lucki_enough',
  'enough_lucr',
  'lucr_busi',
  'busi_famili',
  'famili_money',
  'money_also',
  'also_late',
  'late_husband',
  'husband_left',
  'left_substanti',
  'substanti_estat',
  'estat_includ',
  'includ_hous',
  'hous_live',
  'live_hous',
  'hous_famili',
  'famili_home',
  'home_pass',
  'pass_son',
  'son_heir',
  'heir_partner',
  'partner_also',
  'also_make',
  'make_good',
  'good_money',
  'money_differ',
  'differ_lifestyl',
  'lifestyl_pretti',
  'pretti_much',
  'much_neglig',
  'neglig_late',
  'late_husband',
  'husband_made',
  'made_sure',
  'sure_spoil',
  'spoil_son',
  'son_respons',
  'respons_keep',
  'keep_room',
  'room_clean',
  'clean_even',
  'even_though',
  'though_hous',
  'hous_keeper',
  'keeper_chore',
  'chore_weekend',
  'weekend_taught',
  'taught_cook',
  'cook_allow',
  'allow_reason',
  'reason_save',
  'save_expens',
  'expens_purchas',
  'purchas_like',
  'like_car',
  'car_psetc',
  'psetc_current',
  'current_partner',
  'partner_ex-wif',
  'ex-wif_spoil',
  'spoil_daughter',
  'daughter_rotten',
  'rotten_due',
  'due_incid',
  'incid_first',
  'first_move',
  'move_togeth',
  'togeth_demand',
  'demand_son',
  'son_bedroom',
  'bedroom_sinc',
  'sinc_second',
  'second_biggest',
  'biggest_got',
  'got_reject',
  'reject_sinc',
  'sinc_home',
  'home_spend',
  'spend_weekend',
  'weekend_famili',
  'famili_therapi',
  'therapi_agre',
  'agre_treat',
  'treat_like',
  'like_guest',
  'guest_follow',
  'follow_hous',
  'hous_rule',
  'rule_extent',
  'extent_relationship',
  'relationship_spoil',
  'spoil_good',
  'good_girl',
  'girl_academ',
  'academ_excel',
  'excel_except',
  'except_aforement',
  'aforement_incid',
  'incid_respect',
  'respect_pleasant',
  'pleasant_young',
  'young_woman',
  'woman_probelm',
  'probelm_know',
  'know_extent',
  'extent_partner',
  'partner_spent',
  'spent_money',
  'money_pay',
  'pay_money',
  'money_rent',
  'rent_put',
  'put_son',
  'son_colleg',
  'colleg_fund',
  'fund_split',
  'split_common',
  'common_bill',
  'bill_half',
  'half_everyth',
  'everyth_els',
  'els_respons',
  'respons_know',
  'know_much',
  'much_financ',
  'financ_son',
  'son_plan',
  'plan_tour',
  'tour_east',
  'east_asia',
  'asia_summer',
  'summer_happi',
  'happi_give',
  'give_money',
  'money_gift',
  'gift_get',
  'get_prestigi',
  'prestigi_colleg',
  'colleg_stepdaught',
  'stepdaught_heard',
  'heard_ask',
  'ask_dad',
  'dad_pay',
  'pay_tour',
  'tour_europ',
  'europ_sinc',
  'sinc_send',
  'send_one',
  'one_got',
  'got_colleg',
  'colleg_agre',
  'agre_never',
  'never_say',
  'say_came',
  'came_ask',
  'ask_lend',
  'lend_close',
  'close_$',
  '$_cant',
  'cant_afford',
  'afford_trip',
  'trip_even',
  'even_give',
  'give_much',
  'much_son',
  'son_plane',
  'plane_ticket',
  'ticket_expens',
  'expens_refus',
  'refus_said',
  'said_sinc',
  'sinc_emerg',
  'emerg_save',
  'save_send',
  'send_trip',
  'trip_graduat',
  'graduat_colleg',
  'colleg_talk',
  'talk_say',
  'say_chose',
  'chose_favourit',
  'favourit_relationship',
  'relationship_daughter',
  'daughter_know',
  'know_even',
  'even_applic',
  'applic_put',
  'put_money',
  'money_happi',
  'happi_relationship',
  'relationship_daughter',
  'daughter_aita',
  'aita_easili',
  'easili_afford',
  'afford_lend',
  'lend_full',
  'full_amount',
  'amount_want',
  'want_reason',
  'reason_convinc',
  'convinc_enough',
  'partnerm_year_live',
  'year_live_togeth',
  'live_togeth_marri',
  'togeth_marri_plan',
  'marri_plan_marri',
  'plan_marri_futur',
  'marri_futur_sonm',
  'futur_sonm_current',
  'sonm_current_highschool',
  'current_highschool_senior',
  'highschool_senior_partner',
  'senior_partner_daughterf',
  'partner_daughterf_go',
  'daughterf_go_colleg',
  'go_colleg_background',
  'colleg_background_need',
  'background_need_understand',
  'need_understand_issu',
  'understand_issu_met',
  'issu_met_partner',
  'met_partner_widow',
  'partner_widow_year',
  'widow_year_lucki',
  'year_lucki_enough',
  'lucki_enough_lucr',
  'enough_lucr_busi',
  'lucr_busi_famili',
  'busi_famili_money',
  'famili_money_also',
  'money_also_late',
  'also_late_husband',
  'late_husband_left',
  'husband_left_substanti',
  'left_substanti_estat',
  'substanti_estat_includ',
  'estat_includ_hous',
  'includ_hous_live',
  'hous_live_hous',
  'live_hous_famili',
  'hous_famili_home',
  'famili_home_pass',
  'home_pass_son',
  'pass_son_heir',
  'son_heir_partner',
  'heir_partner_also',
  'partner_also_make',
  'also_make_good',
  'make_good_money',
  'good_money_differ',
  'money_differ_lifestyl',
  'differ_lifestyl_pretti',
  'lifestyl_pretti_much',
  'pretti_much_neglig',
  'much_neglig_late',
  'neglig_late_husband',
  'late_husband_made',
  'husband_made_sure',
  'made_sure_spoil',
  'sure_spoil_son',
  'spoil_son_respons',
  'son_respons_keep',
  'respons_keep_room',
  'keep_room_clean',
  'room_clean_even',
  'clean_even_though',
  'even_though_hous',
  'though_hous_keeper',
  'hous_keeper_chore',
  'keeper_chore_weekend',
  'chore_weekend_taught',
  'weekend_taught_cook',
  'taught_cook_allow',
  'cook_allow_reason',
  'allow_reason_save',
  'reason_save_expens',
  'save_expens_purchas',
  'expens_purchas_like',
  'purchas_like_car',
  'like_car_psetc',
  'car_psetc_current',
  'psetc_current_partner',
  'current_partner_ex-wif',
  'partner_ex-wif_spoil',
  'ex-wif_spoil_daughter',
  'spoil_daughter_rotten',
  'daughter_rotten_due',
  'rotten_due_incid',
  'due_incid_first',
  'incid_first_move',
  'first_move_togeth',
  'move_togeth_demand',
  'togeth_demand_son',
  'demand_son_bedroom',
  'son_bedroom_sinc',
  'bedroom_sinc_second',
  'sinc_second_biggest',
  'second_biggest_got',
  'biggest_got_reject',
  'got_reject_sinc',
  'reject_sinc_home',
  'sinc_home_spend',
  'home_spend_weekend',
  'spend_weekend_famili',
  'weekend_famili_therapi',
  'famili_therapi_agre',
  'therapi_agre_treat',
  'agre_treat_like',
  'treat_like_guest',
  'like_guest_follow',
  'guest_follow_hous',
  'follow_hous_rule',
  'hous_rule_extent',
  'rule_extent_relationship',
  'extent_relationship_spoil',
  'relationship_spoil_good',
  'spoil_good_girl',
  'good_girl_academ',
  'girl_academ_excel',
  'academ_excel_except',
  'excel_except_aforement',
  'except_aforement_incid',
  'aforement_incid_respect',
  'incid_respect_pleasant',
  'respect_pleasant_young',
  'pleasant_young_woman',
  'young_woman_probelm',
  'woman_probelm_know',
  'probelm_know_extent',
  'know_extent_partner',
  'extent_partner_spent',
  'partner_spent_money',
  'spent_money_pay',
  'money_pay_money',
  'pay_money_rent',
  'money_rent_put',
  'rent_put_son',
  'put_son_colleg',
  'son_colleg_fund',
  'colleg_fund_split',
  'fund_split_common',
  'split_common_bill',
  'common_bill_half',
  'bill_half_everyth',
  'half_everyth_els',
  'everyth_els_respons',
  'els_respons_know',
  'respons_know_much',
  'know_much_financ',
  'much_financ_son',
  'financ_son_plan',
  'son_plan_tour',
  'plan_tour_east',
  'tour_east_asia',
  'east_asia_summer',
  'asia_summer_happi',
  'summer_happi_give',
  'happi_give_money',
  'give_money_gift',
  'money_gift_get',
  'gift_get_prestigi',
  'get_prestigi_colleg',
  'prestigi_colleg_stepdaught',
  'colleg_stepdaught_heard',
  'stepdaught_heard_ask',
  'heard_ask_dad',
  'ask_dad_pay',
  'dad_pay_tour',
  'pay_tour_europ',
  'tour_europ_sinc',
  'europ_sinc_send',
  'sinc_send_one',
  'send_one_got',
  'one_got_colleg',
  'got_colleg_agre',
  'colleg_agre_never',
  'agre_never_say',
  'never_say_came',
  'say_came_ask',
  'came_ask_lend',
  'ask_lend_close',
  'lend_close_$',
  'close_$_cant',
  '$_cant_afford',
  'cant_afford_trip',
  'afford_trip_even',
  'trip_even_give',
  'even_give_much',
  'give_much_son',
  'much_son_plane',
  'son_plane_ticket',
  'plane_ticket_expens',
  'ticket_expens_refus',
  'expens_refus_said',
  'refus_said_sinc',
  'said_sinc_emerg',
  'sinc_emerg_save',
  'emerg_save_send',
  'save_send_trip',
  'send_trip_graduat',
  'trip_graduat_colleg',
  'graduat_colleg_talk',
  'colleg_talk_say',
  'talk_say_chose',
  'say_chose_favourit',
  'chose_favourit_relationship',
  'favourit_relationship_daughter',
  'relationship_daughter_know',
  'daughter_know_even',
  'know_even_applic',
  'even_applic_put',
  'applic_put_money',
  'put_money_happi',
  'money_happi_relationship',
  'happi_relationship_daughter',
  'relationship_daughter_aita',
  'daughter_aita_easili',
  'aita_easili_afford',
  'easili_afford_lend',
  'afford_lend_full',
  'lend_full_amount',
  'full_amount_want',
  'amount_want_reason',
  'want_reason_convinc',
  'reason_convinc_enough'],
 ['pleas',
  'read',
  'full',
  'stori',
  'husband',
  'brother',
  'bil',
  'wife',
  'sil',
  'struggl',
  'infertil',
  'year',
  'tri',
  'much',
  'long',
  'decid',
  'stop',
  'startedsort',
  'live',
  'experi',
  'child',
  'thing',
  'parent',
  'like',
  'get',
  'nurseri',
  'remov',
  'buy',
  'bani',
  'coth',
  'toy',
  'attend',
  'school',
  'show',
  'etc',
  'etc',
  'im',
  'month',
  'pregnant',
  'bil',
  '&',
  'sil',
  'ask',
  'mani',
  'question',
  'like',
  'expect',
  'bothersom',
  'get',
  'involv',
  'grin',
  '&',
  'bear',
  'til',
  'request',
  'deliveri',
  'room',
  'experi',
  'child',
  'birth',
  'said',
  'stood',
  'firm',
  'later',
  'discov',
  'husband',
  'volunt',
  'place',
  'give',
  'brother',
  'wife',
  'chanc',
  'experi',
  'fight',
  'told',
  'bil',
  '&',
  'sil',
  'came',
  'later',
  'tri',
  'talk',
  'nice',
  'said',
  'push',
  'blew',
  'tell',
  'fertil',
  'problem',
  'fault',
  'harsh',
  'know',
  'regret',
  'say',
  'told',
  'get',
  'therapi',
  'sil',
  'start',
  'cri',
  'bil',
  'ask',
  'take',
  'time',
  'think',
  'rude',
  'said',
  'noth',
  'think',
  'mind',
  'alreadi',
  'made',
  'left',
  'husband',
  'start',
  'rage',
  'yell',
  'child',
  'rude',
  'dismiss',
  'griev',
  'strugglig',
  'brother',
  'wife',
  'told',
  'look',
  'eye',
  'tell',
  'would',
  'happi',
  'ruin',
  'brother',
  'marriag',
  'small',
  'yet',
  'grace',
  'deed',
  'help',
  'bil',
  'wife',
  'process',
  'trauma',
  'final',
  'make',
  'peac',
  'felt',
  'much',
  'anger',
  'cri',
  'told',
  'get',
  'alreadi',
  'stop',
  'purpos',
  'selfish',
  'petti',
  'talk',
  'say',
  'stay',
  'way',
  'til',
  'say',
  'ye',
  'mightv',
  'act',
  'cruel',
  'want',
  'father',
  'child',
  'feel',
  'comfort',
  'bil',
  '&',
  'sil',
  'pleas_read',
  'read_full',
  'full_stori',
  'stori_husband',
  'husband_brother',
  'brother_bil',
  'bil_wife',
  'wife_sil',
  'sil_struggl',
  'struggl_infertil',
  'infertil_year',
  'year_tri',
  'tri_much',
  'much_long',
  'long_decid',
  'decid_stop',
  'stop_startedsort',
  'startedsort_live',
  'live_experi',
  'experi_child',
  'child_thing',
  'thing_parent',
  'parent_like',
  'like_get',
  'get_nurseri',
  'nurseri_remov',
  'remov_buy',
  'buy_bani',
  'bani_coth',
  'coth_toy',
  'toy_attend',
  'attend_school',
  'school_show',
  'show_etc',
  'etc_etc',
  'etc_im',
  'im_month',
  'month_pregnant',
  'pregnant_bil',
  'bil_&',
  '&_sil',
  'sil_ask',
  'ask_mani',
  'mani_question',
  'question_like',
  'like_expect',
  'expect_bothersom',
  'bothersom_get',
  'get_involv',
  'involv_grin',
  'grin_&',
  '&_bear',
  'bear_til',
  'til_request',
  'request_deliveri',
  'deliveri_room',
  'room_experi',
  'experi_child',
  'child_birth',
  'birth_said',
  'said_stood',
  'stood_firm',
  'firm_later',
  'later_discov',
  'discov_husband',
  'husband_volunt',
  'volunt_place',
  'place_give',
  'give_brother',
  'brother_wife',
  'wife_chanc',
  'chanc_experi',
  'experi_fight',
  'fight_told',
  'told_bil',
  'bil_&',
  '&_sil',
  'sil_came',
  'came_later',
  'later_tri',
  'tri_talk',
  'talk_nice',
  'nice_said',
  'said_push',
  'push_blew',
  'blew_tell',
  'tell_fertil',
  'fertil_problem',
  'problem_fault',
  'fault_harsh',
  'harsh_know',
  'know_regret',
  'regret_say',
  'say_told',
  'told_get',
  'get_therapi',
  'therapi_sil',
  'sil_start',
  'start_cri',
  'cri_bil',
  'bil_ask',
  'ask_take',
  'take_time',
  'time_think',
  'think_rude',
  'rude_said',
  'said_noth',
  'noth_think',
  'think_mind',
  'mind_alreadi',
  'alreadi_made',
  'made_left',
  'left_husband',
  'husband_start',
  'start_rage',
  'rage_yell',
  'yell_child',
  'child_rude',
  'rude_dismiss',
  'dismiss_griev',
  'griev_strugglig',
  'strugglig_brother',
  'brother_wife',
  'wife_told',
  'told_look',
  'look_eye',
  'eye_tell',
  'tell_would',
  'would_happi',
  'happi_ruin',
  'ruin_brother',
  'brother_marriag',
  'marriag_small',
  'small_yet',
  'yet_grace',
  'grace_deed',
  'deed_help',
  'help_bil',
  'bil_wife',
  'wife_process',
  'process_trauma',
  'trauma_final',
  'final_make',
  'make_peac',
  'peac_felt',
  'felt_much',
  'much_anger',
  'anger_cri',
  'cri_told',
  'told_get',
  'get_alreadi',
  'alreadi_stop',
  'stop_purpos',
  'purpos_selfish',
  'selfish_petti',
  'petti_talk',
  'talk_say',
  'say_stay',
  'stay_way',
  'way_til',
  'til_say',
  'say_ye',
  'ye_mightv',
  'mightv_act',
  'act_cruel',
  'cruel_want',
  'want_father',
  'father_child',
  'child_feel',
  'feel_comfort',
  'comfort_bil',
  'bil_&',
  '&_sil',
  'pleas_read_full',
  'read_full_stori',
  'full_stori_husband',
  'stori_husband_brother',
  'husband_brother_bil',
  'brother_bil_wife',
  'bil_wife_sil',
  'wife_sil_struggl',
  'sil_struggl_infertil',
  'struggl_infertil_year',
  'infertil_year_tri',
  'year_tri_much',
  'tri_much_long',
  'much_long_decid',
  'long_decid_stop',
  'decid_stop_startedsort',
  'stop_startedsort_live',
  'startedsort_live_experi',
  'live_experi_child',
  'experi_child_thing',
  'child_thing_parent',
  'thing_parent_like',
  'parent_like_get',
  'like_get_nurseri',
  'get_nurseri_remov',
  'nurseri_remov_buy',
  'remov_buy_bani',
  'buy_bani_coth',
  'bani_coth_toy',
  'coth_toy_attend',
  'toy_attend_school',
  'attend_school_show',
  'school_show_etc',
  'show_etc_etc',
  'etc_etc_im',
  'etc_im_month',
  'im_month_pregnant',
  'month_pregnant_bil',
  'pregnant_bil_&',
  'bil_&_sil',
  '&_sil_ask',
  'sil_ask_mani',
  'ask_mani_question',
  'mani_question_like',
  'question_like_expect',
  'like_expect_bothersom',
  'expect_bothersom_get',
  'bothersom_get_involv',
  'get_involv_grin',
  'involv_grin_&',
  'grin_&_bear',
  '&_bear_til',
  'bear_til_request',
  'til_request_deliveri',
  'request_deliveri_room',
  'deliveri_room_experi',
  'room_experi_child',
  'experi_child_birth',
  'child_birth_said',
  'birth_said_stood',
  'said_stood_firm',
  'stood_firm_later',
  'firm_later_discov',
  'later_discov_husband',
  'discov_husband_volunt',
  'husband_volunt_place',
  'volunt_place_give',
  'place_give_brother',
  'give_brother_wife',
  'brother_wife_chanc',
  'wife_chanc_experi',
  'chanc_experi_fight',
  'experi_fight_told',
  'fight_told_bil',
  'told_bil_&',
  'bil_&_sil',
  '&_sil_came',
  'sil_came_later',
  'came_later_tri',
  'later_tri_talk',
  'tri_talk_nice',
  'talk_nice_said',
  'nice_said_push',
  'said_push_blew',
  'push_blew_tell',
  'blew_tell_fertil',
  'tell_fertil_problem',
  'fertil_problem_fault',
  'problem_fault_harsh',
  'fault_harsh_know',
  'harsh_know_regret',
  'know_regret_say',
  'regret_say_told',
  'say_told_get',
  'told_get_therapi',
  'get_therapi_sil',
  'therapi_sil_start',
  'sil_start_cri',
  'start_cri_bil',
  'cri_bil_ask',
  'bil_ask_take',
  'ask_take_time',
  'take_time_think',
  'time_think_rude',
  'think_rude_said',
  'rude_said_noth',
  'said_noth_think',
  'noth_think_mind',
  'think_mind_alreadi',
  'mind_alreadi_made',
  'alreadi_made_left',
  'made_left_husband',
  'left_husband_start',
  'husband_start_rage',
  'start_rage_yell',
  'rage_yell_child',
  'yell_child_rude',
  'child_rude_dismiss',
  'rude_dismiss_griev',
  'dismiss_griev_strugglig',
  'griev_strugglig_brother',
  'strugglig_brother_wife',
  'brother_wife_told',
  'wife_told_look',
  'told_look_eye',
  'look_eye_tell',
  'eye_tell_would',
  'tell_would_happi',
  'would_happi_ruin',
  'happi_ruin_brother',
  'ruin_brother_marriag',
  'brother_marriag_small',
  'marriag_small_yet',
  'small_yet_grace',
  'yet_grace_deed',
  'grace_deed_help',
  'deed_help_bil',
  'help_bil_wife',
  'bil_wife_process',
  'wife_process_trauma',
  'process_trauma_final',
  'trauma_final_make',
  'final_make_peac',
  'make_peac_felt',
  'peac_felt_much',
  'felt_much_anger',
  'much_anger_cri',
  'anger_cri_told',
  'cri_told_get',
  'told_get_alreadi',
  'get_alreadi_stop',
  'alreadi_stop_purpos',
  'stop_purpos_selfish',
  'purpos_selfish_petti',
  'selfish_petti_talk',
  'petti_talk_say',
  'talk_say_stay',
  'say_stay_way',
  'stay_way_til',
  'way_til_say',
  'til_say_ye',
  'say_ye_mightv',
  'ye_mightv_act',
  'mightv_act_cruel',
  'act_cruel_want',
  'cruel_want_father',
  'want_father_child',
  'father_child_feel',
  'child_feel_comfort',
  'feel_comfort_bil',
  'comfort_bil_&',
  'bil_&_sil'],
 ['sorri',
  'wordi',
  'titl',
  'dad',
  'left',
  'mom',
  'step-mom',
  'four',
  'year',
  'ago',
  'met',
  'marri',
  'sm',
  'aida',
  'kid',
  'previou',
  'marriag',
  'dad',
  'love',
  'parent',
  'instead',
  'got',
  'togeth',
  'saw',
  'best',
  '-',
  'time',
  'everi',
  'year',
  'move',
  'hour',
  'away',
  'year',
  'later',
  'chang',
  'heart',
  'demand',
  'custodi',
  'made',
  'miser',
  'built',
  'room',
  'new',
  'hous',
  'tri',
  'fill',
  'miss',
  'year',
  'new',
  'gift',
  'even',
  'plan',
  'big',
  'birthday',
  'parti',
  'th',
  'birthday',
  'stop',
  'go',
  'place',
  'dad',
  'left',
  'mom',
  'brother',
  'time',
  'took',
  'one',
  'boy',
  'mom',
  'move',
  'back',
  'grandpar',
  'place',
  'uncl',
  'live',
  'next',
  'door',
  'alreadi',
  'kid',
  'alway',
  'father',
  'aunt',
  'like',
  'second',
  'mother',
  'cousin',
  'like',
  'brother',
  'never',
  'stop',
  'go',
  'bio-dad',
  'mom',
  'get',
  'second',
  'job',
  'use',
  'sleep',
  'uncl',
  'pretti',
  'much',
  'everi',
  'day',
  'understand',
  'last',
  'year',
  'grandma',
  'told',
  'dad',
  'stop',
  'pay',
  'child',
  'support',
  'spite',
  'mom',
  'money',
  'take',
  'court',
  'ever',
  'sinc',
  'turn',
  'father',
  'day',
  'uncl',
  'cousin',
  'make',
  'breakfast',
  'plan',
  'fun',
  'day',
  'small',
  'gift',
  'im',
  'step-mom',
  'sent',
  'fb',
  'messag',
  'say',
  'im',
  'old',
  'enough',
  'give',
  'part',
  'bio-dad',
  'gift',
  'year',
  'step-kid',
  'want',
  'give',
  'car',
  'put',
  '%',
  'like',
  'sent',
  'lol',
  'meme',
  'said',
  'could',
  'use',
  'miss',
  'child',
  'support',
  'cover',
  'block',
  'later',
  'one',
  'kid',
  'sent',
  'ah',
  'messag',
  'aita',
  'sorri_wordi',
  'wordi_titl',
  'titl_dad',
  'dad_left',
  'left_mom',
  'mom_step-mom',
  'step-mom_four',
  'four_year',
  'year_ago',
  'ago_met',
  'met_marri',
  'marri_sm',
  'sm_aida',
  'aida_kid',
  'kid_previou',
  'previou_marriag',
  'marriag_dad',
  'dad_love',
  'love_parent',
  'parent_instead',
  'instead_got',
  'got_togeth',
  'togeth_saw',
  'saw_best',
  'best_-',
  '-_time',
  'time_everi',
  'everi_year',
  'year_move',
  'move_hour',
  'hour_away',
  'away_year',
  'year_later',
  'later_chang',
  'chang_heart',
  'heart_demand',
  'demand_custodi',
  'custodi_made',
  'made_miser',
  'miser_built',
  'built_room',
  'room_new',
  'new_hous',
  'hous_tri',
  'tri_fill',
  'fill_miss',
  'miss_year',
  'year_new',
  'new_gift',
  'gift_even',
  'even_plan',
  'plan_big',
  'big_birthday',
  'birthday_parti',
  'parti_th',
  'th_birthday',
  'birthday_stop',
  'stop_go',
  'go_place',
  'place_dad',
  'dad_left',
  'left_mom',
  'mom_brother',
  'brother_time',
  'time_took',
  'took_one',
  'one_boy',
  'boy_mom',
  'mom_move',
  'move_back',
  'back_grandpar',
  'grandpar_place',
  'place_uncl',
  'uncl_live',
  'live_next',
  'next_door',
  'door_alreadi',
  'alreadi_kid',
  'kid_alway',
  'alway_father',
  'father_aunt',
  'aunt_like',
  'like_second',
  'second_mother',
  'mother_cousin',
  'cousin_like',
  'like_brother',
  'brother_never',
  'never_stop',
  'stop_go',
  'go_bio-dad',
  'bio-dad_mom',
  'mom_get',
  'get_second',
  'second_job',
  'job_use',
  'use_sleep',
  'sleep_uncl',
  'uncl_pretti',
  'pretti_much',
  'much_everi',
  'everi_day',
  'day_understand',
  'understand_last',
  'last_year',
  'year_grandma',
  'grandma_told',
  'told_dad',
  'dad_stop',
  'stop_pay',
  'pay_child',
  'child_support',
  'support_spite',
  'spite_mom',
  'mom_money',
  'money_take',
  'take_court',
  'court_ever',
  'ever_sinc',
  'sinc_turn',
  'turn_father',
  'father_day',
  'day_uncl',
  'uncl_cousin',
  'cousin_make',
  'make_breakfast',
  'breakfast_plan',
  'plan_fun',
  'fun_day',
  'day_small',
  'small_gift',
  'gift_im',
  'im_step-mom',
  'step-mom_sent',
  'sent_fb',
  'fb_messag',
  'messag_say',
  'say_im',
  'im_old',
  'old_enough',
  'enough_give',
  'give_part',
  'part_bio-dad',
  'bio-dad_gift',
  'gift_year',
  'year_step-kid',
  'step-kid_want',
  'want_give',
  'give_car',
  'car_put',
  'put_%',
  '%_like',
  'like_sent',
  'sent_lol',
  'lol_meme',
  'meme_said',
  'said_could',
  'could_use',
  'use_miss',
  'miss_child',
  'child_support',
  'support_cover',
  'cover_block',
  'block_later',
  'later_one',
  'one_kid',
  'kid_sent',
  'sent_ah',
  'ah_messag',
  'messag_aita',
  'sorri_wordi_titl',
  'wordi_titl_dad',
  'titl_dad_left',
  'dad_left_mom',
  'left_mom_step-mom',
  'mom_step-mom_four',
  'step-mom_four_year',
  'four_year_ago',
  'year_ago_met',
  'ago_met_marri',
  'met_marri_sm',
  'marri_sm_aida',
  'sm_aida_kid',
  'aida_kid_previou',
  'kid_previou_marriag',
  'previou_marriag_dad',
  'marriag_dad_love',
  'dad_love_parent',
  'love_parent_instead',
  'parent_instead_got',
  'instead_got_togeth',
  'got_togeth_saw',
  'togeth_saw_best',
  'saw_best_-',
  'best_-_time',
  '-_time_everi',
  'time_everi_year',
  'everi_year_move',
  'year_move_hour',
  'move_hour_away',
  'hour_away_year',
  'away_year_later',
  'year_later_chang',
  'later_chang_heart',
  'chang_heart_demand',
  'heart_demand_custodi',
  'demand_custodi_made',
  'custodi_made_miser',
  'made_miser_built',
  'miser_built_room',
  'built_room_new',
  'room_new_hous',
  'new_hous_tri',
  'hous_tri_fill',
  'tri_fill_miss',
  'fill_miss_year',
  'miss_year_new',
  'year_new_gift',
  'new_gift_even',
  'gift_even_plan',
  'even_plan_big',
  'plan_big_birthday',
  'big_birthday_parti',
  'birthday_parti_th',
  'parti_th_birthday',
  'th_birthday_stop',
  'birthday_stop_go',
  'stop_go_place',
  'go_place_dad',
  'place_dad_left',
  'dad_left_mom',
  'left_mom_brother',
  'mom_brother_time',
  'brother_time_took',
  'time_took_one',
  'took_one_boy',
  'one_boy_mom',
  'boy_mom_move',
  'mom_move_back',
  'move_back_grandpar',
  'back_grandpar_place',
  'grandpar_place_uncl',
  'place_uncl_live',
  'uncl_live_next',
  'live_next_door',
  'next_door_alreadi',
  'door_alreadi_kid',
  'alreadi_kid_alway',
  'kid_alway_father',
  'alway_father_aunt',
  'father_aunt_like',
  'aunt_like_second',
  'like_second_mother',
  'second_mother_cousin',
  'mother_cousin_like',
  'cousin_like_brother',
  'like_brother_never',
  'brother_never_stop',
  'never_stop_go',
  'stop_go_bio-dad',
  'go_bio-dad_mom',
  'bio-dad_mom_get',
  'mom_get_second',
  'get_second_job',
  'second_job_use',
  'job_use_sleep',
  'use_sleep_uncl',
  'sleep_uncl_pretti',
  'uncl_pretti_much',
  'pretti_much_everi',
  'much_everi_day',
  'everi_day_understand',
  'day_understand_last',
  'understand_last_year',
  'last_year_grandma',
  'year_grandma_told',
  'grandma_told_dad',
  'told_dad_stop',
  'dad_stop_pay',
  'stop_pay_child',
  'pay_child_support',
  'child_support_spite',
  'support_spite_mom',
  'spite_mom_money',
  'mom_money_take',
  'money_take_court',
  'take_court_ever',
  'court_ever_sinc',
  'ever_sinc_turn',
  'sinc_turn_father',
  'turn_father_day',
  'father_day_uncl',
  'day_uncl_cousin',
  'uncl_cousin_make',
  'cousin_make_breakfast',
  'make_breakfast_plan',
  'breakfast_plan_fun',
  'plan_fun_day',
  'fun_day_small',
  'day_small_gift',
  'small_gift_im',
  'gift_im_step-mom',
  'im_step-mom_sent',
  'step-mom_sent_fb',
  'sent_fb_messag',
  'fb_messag_say',
  'messag_say_im',
  'say_im_old',
  'im_old_enough',
  'old_enough_give',
  'enough_give_part',
  'give_part_bio-dad',
  'part_bio-dad_gift',
  'bio-dad_gift_year',
  'gift_year_step-kid',
  'year_step-kid_want',
  'step-kid_want_give',
  'want_give_car',
  'give_car_put',
  'car_put_%',
  'put_%_like',
  '%_like_sent',
  'like_sent_lol',
  'sent_lol_meme',
  'lol_meme_said',
  'meme_said_could',
  'said_could_use',
  'could_use_miss',
  'use_miss_child',
  'miss_child_support',
  'child_support_cover',
  'support_cover_block',
  'cover_block_later',
  'block_later_one',
  'later_one_kid',
  'one_kid_sent',
  'kid_sent_ah',
  'sent_ah_messag',
  'ah_messag_aita'],
 ['last',
  'week',
  'stepdaught',
  'sd',
  'th',
  'birthday',
  'hospit',
  'day',
  'prior',
  'medic',
  'issu',
  'better',
  'husband',
  'threw',
  'small',
  'birthday',
  'parti',
  'unbeknowest',
  'boy',
  '&',
  'decid',
  'pull',
  'funni',
  'prank',
  'mess',
  'birthday',
  'cake',
  'made',
  'instead',
  'ad',
  'ice',
  'cake',
  'ad',
  'mayonnais',
  'go',
  'well',
  'sd',
  'reaction',
  'cri',
  'husband',
  'blew',
  'boy',
  'said',
  'tri',
  'prank',
  'sinc',
  'norm',
  'alway',
  'prank',
  'husband',
  'said',
  'wrong',
  'time',
  'birthday',
  'especi',
  'get',
  'hospit',
  'told',
  'boy',
  'ruin',
  'birthday',
  'told',
  'exaggar',
  'statement',
  'got',
  'upset',
  'yell',
  'defend',
  'behavior',
  'enbler',
  'boy',
  'love',
  'act',
  'like',
  'husband',
  'non',
  'sd',
  'speak',
  'boy',
  'aita',
  'say',
  'exaggar',
  'last_week',
  'week_stepdaught',
  'stepdaught_sd',
  'sd_th',
  'th_birthday',
  'birthday_hospit',
  'hospit_day',
  'day_prior',
  'prior_medic',
  'medic_issu',
  'issu_better',
  'better_husband',
  'husband_threw',
  'threw_small',
  'small_birthday',
  'birthday_parti',
  'parti_unbeknowest',
  'unbeknowest_boy',
  'boy_&',
  '&_decid',
  'decid_pull',
  'pull_funni',
  'funni_prank',
  'prank_mess',
  'mess_birthday',
  'birthday_cake',
  'cake_made',
  'made_instead',
  'instead_ad',
  'ad_ice',
  'ice_cake',
  'cake_ad',
  'ad_mayonnais',
  'mayonnais_go',
  'go_well',
  'well_sd',
  'sd_reaction',
  'reaction_cri',
  'cri_husband',
  'husband_blew',
  'blew_boy',
  'boy_said',
  'said_tri',
  'tri_prank',
  'prank_sinc',
  'sinc_norm',
  'norm_alway',
  'alway_prank',
  'prank_husband',
  'husband_said',
  'said_wrong',
  'wrong_time',
  'time_birthday',
  'birthday_especi',
  'especi_get',
  'get_hospit',
  'hospit_told',
  'told_boy',
  'boy_ruin',
  'ruin_birthday',
  'birthday_told',
  'told_exaggar',
  'exaggar_statement',
  'statement_got',
  'got_upset',
  'upset_yell',
  'yell_defend',
  'defend_behavior',
  'behavior_enbler',
  'enbler_boy',
  'boy_love',
  'love_act',
  'act_like',
  'like_husband',
  'husband_non',
  'non_sd',
  'sd_speak',
  'speak_boy',
  'boy_aita',
  'aita_say',
  'say_exaggar',
  'last_week_stepdaught',
  'week_stepdaught_sd',
  'stepdaught_sd_th',
  'sd_th_birthday',
  'th_birthday_hospit',
  'birthday_hospit_day',
  'hospit_day_prior',
  'day_prior_medic',
  'prior_medic_issu',
  'medic_issu_better',
  'issu_better_husband',
  'better_husband_threw',
  'husband_threw_small',
  'threw_small_birthday',
  'small_birthday_parti',
  'birthday_parti_unbeknowest',
  'parti_unbeknowest_boy',
  'unbeknowest_boy_&',
  'boy_&_decid',
  '&_decid_pull',
  'decid_pull_funni',
  'pull_funni_prank',
  'funni_prank_mess',
  'prank_mess_birthday',
  'mess_birthday_cake',
  'birthday_cake_made',
  'cake_made_instead',
  'made_instead_ad',
  'instead_ad_ice',
  'ad_ice_cake',
  'ice_cake_ad',
  'cake_ad_mayonnais',
  'ad_mayonnais_go',
  'mayonnais_go_well',
  'go_well_sd',
  'well_sd_reaction',
  'sd_reaction_cri',
  'reaction_cri_husband',
  'cri_husband_blew',
  'husband_blew_boy',
  'blew_boy_said',
  'boy_said_tri',
  'said_tri_prank',
  'tri_prank_sinc',
  'prank_sinc_norm',
  'sinc_norm_alway',
  'norm_alway_prank',
  'alway_prank_husband',
  'prank_husband_said',
  'husband_said_wrong',
  'said_wrong_time',
  'wrong_time_birthday',
  'time_birthday_especi',
  'birthday_especi_get',
  'especi_get_hospit',
  'get_hospit_told',
  'hospit_told_boy',
  'told_boy_ruin',
  'boy_ruin_birthday',
  'ruin_birthday_told',
  'birthday_told_exaggar',
  'told_exaggar_statement',
  'exaggar_statement_got',
  'statement_got_upset',
  'got_upset_yell',
  'upset_yell_defend',
  'yell_defend_behavior',
  'defend_behavior_enbler',
  'behavior_enbler_boy',
  'enbler_boy_love',
  'boy_love_act',
  'love_act_like',
  'act_like_husband',
  'like_husband_non',
  'husband_non_sd',
  'non_sd_speak',
  'sd_speak_boy',
  'speak_boy_aita',
  'boy_aita_say',
  'aita_say_exaggar'],
 ['mother',
  'wonder',
  'year',
  'old',
  'son',
  'whole',
  'thing',
  'happen',
  'last',
  'april',
  'still',
  'get',
  'complaint',
  'ask',
  'stranger',
  'judgement',
  'internet',
  'last',
  'year',
  'kid',
  'first',
  'year',
  'big',
  'kid',
  'school',
  'like',
  'call',
  'sinc',
  'first',
  'grade',
  'coincid',
  'pandem',
  'best',
  'place',
  'financi',
  'like',
  'famili',
  'consum',
  'debt',
  'pile',
  'throw',
  'everi',
  'spare',
  'cent',
  'time',
  'throw',
  'parti',
  'invit',
  'classmat',
  'one',
  'consid',
  'friend',
  'sent',
  'dozen',
  'cupcak',
  'juic',
  'box',
  'class',
  'invit',
  'deliv',
  'hous',
  'front',
  'kid',
  'like',
  'said',
  'money',
  'tight',
  'got',
  'creativ',
  'made',
  'small',
  'cake',
  'box',
  'cake',
  'vanilla',
  'chocol',
  'funfetti',
  'buttercream',
  'differ',
  'colour',
  'also',
  'made',
  'big',
  'sugar',
  'cooki',
  'differ',
  'colour',
  'frost',
  'sprinkl',
  'final',
  'bought',
  'tortilla',
  'made',
  'pizza',
  'sauc',
  'varieti',
  'top',
  'ask',
  'kid',
  'bring',
  'swimsuit',
  'water',
  'gun',
  'make',
  'pizza',
  'station',
  'lunch',
  'play',
  'water',
  'gun',
  'decor',
  'cake',
  'final',
  'cooki',
  'take',
  'home',
  'saturday',
  'well',
  'next',
  'monday',
  'kid',
  'would',
  'stop',
  'rave',
  'fun',
  'parti',
  'best',
  'birthday',
  'parti',
  'ever',
  'kid',
  'happi',
  'invit',
  'pick',
  'tuesday',
  'coupl',
  'mom',
  'confront',
  'invit',
  'kid',
  'said',
  'sorri',
  'small',
  'parti',
  'close',
  'friend',
  'kept',
  'complain',
  'exclud',
  'kid',
  'take',
  'serious',
  'new',
  'school',
  'year',
  'almost',
  'month',
  'later',
  'still',
  'get',
  'occasion',
  'comment',
  'thrown',
  'aita',
  'mother_wonder',
  'wonder_year',
  'year_old',
  'old_son',
  'son_whole',
  'whole_thing',
  'thing_happen',
  'happen_last',
  'last_april',
  'april_still',
  'still_get',
  'get_complaint',
  'complaint_ask',
  'ask_stranger',
  'stranger_judgement',
  'judgement_internet',
  'internet_last',
  'last_year',
  'year_kid',
  'kid_first',
  'first_year',
  'year_big',
  'big_kid',
  'kid_school',
  'school_like',
  'like_call',
  'call_sinc',
  'sinc_first',
  'first_grade',
  'grade_coincid',
  'coincid_pandem',
  'pandem_best',
  'best_place',
  'place_financi',
  'financi_like',
  'like_famili',
  'famili_consum',
  'consum_debt',
  'debt_pile',
  'pile_throw',
  'throw_everi',
  'everi_spare',
  'spare_cent',
  'cent_time',
  'time_throw',
  'throw_parti',
  'parti_invit',
  'invit_classmat',
  'classmat_one',
  'one_consid',
  'consid_friend',
  'friend_sent',
  'sent_dozen',
  'dozen_cupcak',
  'cupcak_juic',
  'juic_box',
  'box_class',
  'class_invit',
  'invit_deliv',
  'deliv_hous',
  'hous_front',
  'front_kid',
  'kid_like',
  'like_said',
  'said_money',
  'money_tight',
  'tight_got',
  'got_creativ',
  'creativ_made',
  'made_small',
  'small_cake',
  'cake_box',
  'box_cake',
  'cake_vanilla',
  'vanilla_chocol',
  'chocol_funfetti',
  'funfetti_buttercream',
  'buttercream_differ',
  'differ_colour',
  'colour_also',
  'also_made',
  'made_big',
  'big_sugar',
  'sugar_cooki',
  'cooki_differ',
  'differ_colour',
  'colour_frost',
  'frost_sprinkl',
  'sprinkl_final',
  'final_bought',
  'bought_tortilla',
  'tortilla_made',
  'made_pizza',
  'pizza_sauc',
  'sauc_varieti',
  'varieti_top',
  'top_ask',
  'ask_kid',
  'kid_bring',
  'bring_swimsuit',
  'swimsuit_water',
  'water_gun',
  'gun_make',
  'make_pizza',
  'pizza_station',
  'station_lunch',
  'lunch_play',
  'play_water',
  'water_gun',
  'gun_decor',
  'decor_cake',
  'cake_final',
  'final_cooki',
  'cooki_take',
  'take_home',
  'home_saturday',
  'saturday_well',
  'well_next',
  'next_monday',
  'monday_kid',
  'kid_would',
  'would_stop',
  'stop_rave',
  'rave_fun',
  'fun_parti',
  'parti_best',
  'best_birthday',
  'birthday_parti',
  'parti_ever',
  'ever_kid',
  'kid_happi',
  'happi_invit',
  'invit_pick',
  'pick_tuesday',
  'tuesday_coupl',
  'coupl_mom',
  'mom_confront',
  'confront_invit',
  'invit_kid',
  'kid_said',
  'said_sorri',
  'sorri_small',
  'small_parti',
  'parti_close',
  'close_friend',
  'friend_kept',
  'kept_complain',
  'complain_exclud',
  'exclud_kid',
  'kid_take',
  'take_serious',
  'serious_new',
  'new_school',
  'school_year',
  'year_almost',
  'almost_month',
  'month_later',
  'later_still',
  'still_get',
  'get_occasion',
  'occasion_comment',
  'comment_thrown',
  'thrown_aita',
  'mother_wonder_year',
  'wonder_year_old',
  'year_old_son',
  'old_son_whole',
  'son_whole_thing',
  'whole_thing_happen',
  'thing_happen_last',
  'happen_last_april',
  'last_april_still',
  'april_still_get',
  'still_get_complaint',
  'get_complaint_ask',
  'complaint_ask_stranger',
  'ask_stranger_judgement',
  'stranger_judgement_internet',
  'judgement_internet_last',
  'internet_last_year',
  'last_year_kid',
  'year_kid_first',
  'kid_first_year',
  'first_year_big',
  'year_big_kid',
  'big_kid_school',
  'kid_school_like',
  'school_like_call',
  'like_call_sinc',
  'call_sinc_first',
  'sinc_first_grade',
  'first_grade_coincid',
  'grade_coincid_pandem',
  'coincid_pandem_best',
  'pandem_best_place',
  'best_place_financi',
  'place_financi_like',
  'financi_like_famili',
  'like_famili_consum',
  'famili_consum_debt',
  'consum_debt_pile',
  'debt_pile_throw',
  'pile_throw_everi',
  'throw_everi_spare',
  'everi_spare_cent',
  'spare_cent_time',
  'cent_time_throw',
  'time_throw_parti',
  'throw_parti_invit',
  'parti_invit_classmat',
  'invit_classmat_one',
  'classmat_one_consid',
  'one_consid_friend',
  'consid_friend_sent',
  'friend_sent_dozen',
  'sent_dozen_cupcak',
  'dozen_cupcak_juic',
  'cupcak_juic_box',
  'juic_box_class',
  'box_class_invit',
  'class_invit_deliv',
  'invit_deliv_hous',
  'deliv_hous_front',
  'hous_front_kid',
  'front_kid_like',
  'kid_like_said',
  'like_said_money',
  'said_money_tight',
  'money_tight_got',
  'tight_got_creativ',
  'got_creativ_made',
  'creativ_made_small',
  'made_small_cake',
  'small_cake_box',
  'cake_box_cake',
  'box_cake_vanilla',
  'cake_vanilla_chocol',
  'vanilla_chocol_funfetti',
  'chocol_funfetti_buttercream',
  'funfetti_buttercream_differ',
  'buttercream_differ_colour',
  'differ_colour_also',
  'colour_also_made',
  'also_made_big',
  'made_big_sugar',
  'big_sugar_cooki',
  'sugar_cooki_differ',
  'cooki_differ_colour',
  'differ_colour_frost',
  'colour_frost_sprinkl',
  'frost_sprinkl_final',
  'sprinkl_final_bought',
  'final_bought_tortilla',
  'bought_tortilla_made',
  'tortilla_made_pizza',
  'made_pizza_sauc',
  'pizza_sauc_varieti',
  'sauc_varieti_top',
  'varieti_top_ask',
  'top_ask_kid',
  'ask_kid_bring',
  'kid_bring_swimsuit',
  'bring_swimsuit_water',
  'swimsuit_water_gun',
  'water_gun_make',
  'gun_make_pizza',
  'make_pizza_station',
  'pizza_station_lunch',
  'station_lunch_play',
  'lunch_play_water',
  'play_water_gun',
  'water_gun_decor',
  'gun_decor_cake',
  'decor_cake_final',
  'cake_final_cooki',
  'final_cooki_take',
  'cooki_take_home',
  'take_home_saturday',
  'home_saturday_well',
  'saturday_well_next',
  'well_next_monday',
  'next_monday_kid',
  'monday_kid_would',
  'kid_would_stop',
  'would_stop_rave',
  'stop_rave_fun',
  'rave_fun_parti',
  'fun_parti_best',
  'parti_best_birthday',
  'best_birthday_parti',
  'birthday_parti_ever',
  'parti_ever_kid',
  'ever_kid_happi',
  'kid_happi_invit',
  'happi_invit_pick',
  'invit_pick_tuesday',
  'pick_tuesday_coupl',
  'tuesday_coupl_mom',
  'coupl_mom_confront',
  'mom_confront_invit',
  'confront_invit_kid',
  'invit_kid_said',
  'kid_said_sorri',
  'said_sorri_small',
  'sorri_small_parti',
  'small_parti_close',
  'parti_close_friend',
  'close_friend_kept',
  'friend_kept_complain',
  'kept_complain_exclud',
  'complain_exclud_kid',
  'exclud_kid_take',
  'kid_take_serious',
  'take_serious_new',
  'serious_new_school',
  'new_school_year',
  'school_year_almost',
  'year_almost_month',
  'almost_month_later',
  'month_later_still',
  'later_still_get',
  'still_get_occasion',
  'get_occasion_comment',
  'occasion_comment_thrown',
  'comment_thrown_aita'],
 ['got',
  'marri',
  'week',
  'ago',
  'marri',
  'end',
  'found',
  'older',
  'brother',
  'thoma',
  'got',
  'involv',
  'first',
  'wife',
  'devast',
  'close',
  'great',
  'relationship',
  'also',
  'help',
  'much',
  'struggl',
  'see',
  'repaid',
  'hurt',
  'day',
  'stop',
  'talk',
  'mom',
  'dad',
  'forc',
  'keep',
  'secret',
  'weak',
  'argu',
  'kept',
  'owm',
  'distanc',
  'met',
  'wife',
  'famili',
  'love',
  'embrac',
  'mom',
  'dad',
  'treat',
  'like',
  'queen',
  'help',
  'repair',
  'soldifi',
  'relationship',
  'howev',
  'wed',
  'approach',
  'told',
  'expect',
  'invit',
  'thoma',
  'cours',
  'refus',
  'kept',
  'guilt',
  'rel',
  'guest',
  'would',
  'think',
  'say',
  'see',
  'thoma',
  'fought',
  'til',
  'day',
  'wed',
  'turn',
  'theyd',
  'invit',
  'behind',
  'back',
  'found',
  'stop',
  'time',
  'came',
  'wed',
  'look',
  'piss',
  'ask',
  'go',
  'tell',
  'peopl',
  'ask',
  'thoma',
  'told',
  'id',
  'take',
  'care',
  'take',
  'moment',
  'everyon',
  'pay',
  'attent',
  'grab',
  'mic',
  'flatout',
  'announc',
  'said',
  'reason',
  'invit',
  'thoma',
  'wed',
  'worri',
  'hed',
  'steal',
  'wife',
  'like',
  'stole',
  'first',
  'one',
  'said',
  'play',
  'make',
  'sound',
  'tens',
  'guest',
  'look',
  'shock',
  'start',
  'mumbl',
  'went',
  'awkwardli',
  'quiet',
  'moment',
  'move',
  'saw',
  'mom',
  'dad',
  'walk',
  'look',
  'grudgingli',
  'later',
  'start',
  'lash',
  'expos',
  'thoma',
  'caus',
  'shun',
  'famili',
  'hideo',
  'way',
  'told',
  'alreadi',
  'said',
  'want',
  'yet',
  'tri',
  'push',
  'repeatedli',
  'say',
  'peopl',
  'go',
  'say',
  'told',
  'reason',
  'play',
  'way',
  'guest',
  'still',
  'got',
  'messag',
  'mom',
  'start',
  'yell',
  'everyon',
  'look',
  'shun',
  'thoma',
  'call',
  'pathet',
  'cruel',
  'still',
  'punish',
  'gradual',
  'ruin',
  'life',
  'despit',
  'apolog',
  'tri',
  'reconcil',
  'opinion',
  'someth',
  'unforgiv',
  'weve',
  'horribl',
  'term',
  'sinc',
  'aita',
  'wife',
  'said',
  'least',
  'theyr',
  'back',
  'peopl',
  'would',
  'say',
  'invit',
  'got_marri',
  'marri_week',
  'week_ago',
  'ago_marri',
  'marri_end',
  'end_found',
  'found_older',
  'older_brother',
  'brother_thoma',
  'thoma_got',
  'got_involv',
  'involv_first',
  'first_wife',
  'wife_devast',
  'devast_close',
  'close_great',
  'great_relationship',
  'relationship_also',
  'also_help',
  'help_much',
  'much_struggl',
  'struggl_see',
  'see_repaid',
  'repaid_hurt',
  'hurt_day',
  'day_stop',
  'stop_talk',
  'talk_mom',
  'mom_dad',
  'dad_forc',
  'forc_keep',
  'keep_secret',
  'secret_weak',
  'weak_argu',
  'argu_kept',
  'kept_owm',
  'owm_distanc',
  'distanc_met',
  'met_wife',
  'wife_famili',
  'famili_love',
  'love_embrac',
  'embrac_mom',
  'mom_dad',
  'dad_treat',
  'treat_like',
  'like_queen',
  'queen_help',
  'help_repair',
  'repair_soldifi',
  'soldifi_relationship',
  'relationship_howev',
  'howev_wed',
  'wed_approach',
  'approach_told',
  'told_expect',
  'expect_invit',
  'invit_thoma',
  'thoma_cours',
  'cours_refus',
  'refus_kept',
  'kept_guilt',
  'guilt_rel',
  'rel_guest',
  'guest_would',
  'would_think',
  'think_say',
  'say_see',
  'see_thoma',
  'thoma_fought',
  'fought_til',
  'til_day',
  'day_wed',
  'wed_turn',
  'turn_theyd',
  'theyd_invit',
  'invit_behind',
  'behind_back',
  'back_found',
  'found_stop',
  'stop_time',
  'time_came',
  'came_wed',
  'wed_look',
  'look_piss',
  'piss_ask',
  'ask_go',
  'go_tell',
  'tell_peopl',
  'peopl_ask',
  'ask_thoma',
  'thoma_told',
  'told_id',
  'id_take',
  'take_care',
  'care_take',
  'take_moment',
  'moment_everyon',
  'everyon_pay',
  'pay_attent',
  'attent_grab',
  'grab_mic',
  'mic_flatout',
  'flatout_announc',
  'announc_said',
  'said_reason',
  'reason_invit',
  'invit_thoma',
  'thoma_wed',
  'wed_worri',
  'worri_hed',
  'hed_steal',
  'steal_wife',
  'wife_like',
  'like_stole',
  'stole_first',
  'first_one',
  'one_said',
  'said_play',
  'play_make',
  'make_sound',
  'sound_tens',
  'tens_guest',
  'guest_look',
  'look_shock',
  'shock_start',
  'start_mumbl',
  'mumbl_went',
  'went_awkwardli',
  'awkwardli_quiet',
  'quiet_moment',
  'moment_move',
  'move_saw',
  'saw_mom',
  'mom_dad',
  'dad_walk',
  'walk_look',
  'look_grudgingli',
  'grudgingli_later',
  'later_start',
  'start_lash',
  'lash_expos',
  'expos_thoma',
  'thoma_caus',
  'caus_shun',
  'shun_famili',
  'famili_hideo',
  'hideo_way',
  'way_told',
  'told_alreadi',
  'alreadi_said',
  'said_want',
  'want_yet',
  'yet_tri',
  'tri_push',
  'push_repeatedli',
  'repeatedli_say',
  'say_peopl',
  'peopl_go',
  'go_say',
  'say_told',
  'told_reason',
  'reason_play',
  'play_way',
  'way_guest',
  'guest_still',
  'still_got',
  'got_messag',
  'messag_mom',
  'mom_start',
  'start_yell',
  'yell_everyon',
  'everyon_look',
  'look_shun',
  'shun_thoma',
  'thoma_call',
  'call_pathet',
  'pathet_cruel',
  'cruel_still',
  'still_punish',
  'punish_gradual',
  'gradual_ruin',
  'ruin_life',
  'life_despit',
  'despit_apolog',
  'apolog_tri',
  'tri_reconcil',
  'reconcil_opinion',
  'opinion_someth',
  'someth_unforgiv',
  'unforgiv_weve',
  'weve_horribl',
  'horribl_term',
  'term_sinc',
  'sinc_aita',
  'aita_wife',
  'wife_said',
  'said_least',
  'least_theyr',
  'theyr_back',
  'back_peopl',
  'peopl_would',
  'would_say',
  'say_invit',
  'got_marri_week',
  'marri_week_ago',
  'week_ago_marri',
  'ago_marri_end',
  'marri_end_found',
  'end_found_older',
  'found_older_brother',
  'older_brother_thoma',
  'brother_thoma_got',
  'thoma_got_involv',
  'got_involv_first',
  'involv_first_wife',
  'first_wife_devast',
  'wife_devast_close',
  'devast_close_great',
  'close_great_relationship',
  'great_relationship_also',
  'relationship_also_help',
  'also_help_much',
  'help_much_struggl',
  'much_struggl_see',
  'struggl_see_repaid',
  'see_repaid_hurt',
  'repaid_hurt_day',
  'hurt_day_stop',
  'day_stop_talk',
  'stop_talk_mom',
  'talk_mom_dad',
  'mom_dad_forc',
  'dad_forc_keep',
  'forc_keep_secret',
  'keep_secret_weak',
  'secret_weak_argu',
  'weak_argu_kept',
  'argu_kept_owm',
  'kept_owm_distanc',
  'owm_distanc_met',
  'distanc_met_wife',
  'met_wife_famili',
  'wife_famili_love',
  'famili_love_embrac',
  'love_embrac_mom',
  'embrac_mom_dad',
  'mom_dad_treat',
  'dad_treat_like',
  'treat_like_queen',
  'like_queen_help',
  'queen_help_repair',
  'help_repair_soldifi',
  'repair_soldifi_relationship',
  'soldifi_relationship_howev',
  'relationship_howev_wed',
  'howev_wed_approach',
  'wed_approach_told',
  'approach_told_expect',
  'told_expect_invit',
  'expect_invit_thoma',
  'invit_thoma_cours',
  'thoma_cours_refus',
  'cours_refus_kept',
  'refus_kept_guilt',
  'kept_guilt_rel',
  'guilt_rel_guest',
  'rel_guest_would',
  'guest_would_think',
  'would_think_say',
  'think_say_see',
  'say_see_thoma',
  'see_thoma_fought',
  'thoma_fought_til',
  'fought_til_day',
  'til_day_wed',
  'day_wed_turn',
  'wed_turn_theyd',
  'turn_theyd_invit',
  'theyd_invit_behind',
  'invit_behind_back',
  'behind_back_found',
  'back_found_stop',
  'found_stop_time',
  'stop_time_came',
  'time_came_wed',
  'came_wed_look',
  'wed_look_piss',
  'look_piss_ask',
  'piss_ask_go',
  'ask_go_tell',
  'go_tell_peopl',
  'tell_peopl_ask',
  'peopl_ask_thoma',
  'ask_thoma_told',
  'thoma_told_id',
  'told_id_take',
  'id_take_care',
  'take_care_take',
  'care_take_moment',
  'take_moment_everyon',
  'moment_everyon_pay',
  'everyon_pay_attent',
  'pay_attent_grab',
  'attent_grab_mic',
  'grab_mic_flatout',
  'mic_flatout_announc',
  'flatout_announc_said',
  'announc_said_reason',
  'said_reason_invit',
  'reason_invit_thoma',
  'invit_thoma_wed',
  'thoma_wed_worri',
  'wed_worri_hed',
  'worri_hed_steal',
  'hed_steal_wife',
  'steal_wife_like',
  'wife_like_stole',
  'like_stole_first',
  'stole_first_one',
  'first_one_said',
  'one_said_play',
  'said_play_make',
  'play_make_sound',
  'make_sound_tens',
  'sound_tens_guest',
  'tens_guest_look',
  'guest_look_shock',
  'look_shock_start',
  'shock_start_mumbl',
  'start_mumbl_went',
  'mumbl_went_awkwardli',
  'went_awkwardli_quiet',
  'awkwardli_quiet_moment',
  'quiet_moment_move',
  'moment_move_saw',
  'move_saw_mom',
  'saw_mom_dad',
  'mom_dad_walk',
  'dad_walk_look',
  'walk_look_grudgingli',
  'look_grudgingli_later',
  'grudgingli_later_start',
  'later_start_lash',
  'start_lash_expos',
  'lash_expos_thoma',
  'expos_thoma_caus',
  'thoma_caus_shun',
  'caus_shun_famili',
  'shun_famili_hideo',
  'famili_hideo_way',
  'hideo_way_told',
  'way_told_alreadi',
  'told_alreadi_said',
  'alreadi_said_want',
  'said_want_yet',
  'want_yet_tri',
  'yet_tri_push',
  'tri_push_repeatedli',
  'push_repeatedli_say',
  'repeatedli_say_peopl',
  'say_peopl_go',
  'peopl_go_say',
  'go_say_told',
  'say_told_reason',
  'told_reason_play',
  'reason_play_way',
  'play_way_guest',
  'way_guest_still',
  'guest_still_got',
  'still_got_messag',
  'got_messag_mom',
  'messag_mom_start',
  'mom_start_yell',
  'start_yell_everyon',
  'yell_everyon_look',
  'everyon_look_shun',
  'look_shun_thoma',
  'shun_thoma_call',
  'thoma_call_pathet',
  'call_pathet_cruel',
  'pathet_cruel_still',
  'cruel_still_punish',
  'still_punish_gradual',
  'punish_gradual_ruin',
  'gradual_ruin_life',
  'ruin_life_despit',
  'life_despit_apolog',
  'despit_apolog_tri',
  'apolog_tri_reconcil',
  'tri_reconcil_opinion',
  'reconcil_opinion_someth',
  'opinion_someth_unforgiv',
  'someth_unforgiv_weve',
  'unforgiv_weve_horribl',
  'weve_horribl_term',
  'horribl_term_sinc',
  'term_sinc_aita',
  'sinc_aita_wife',
  'aita_wife_said',
  'wife_said_least',
  'said_least_theyr',
  'least_theyr_back',
  'theyr_back_peopl',
  'back_peopl_would',
  'peopl_would_say',
  'would_say_invit'],
 ['live',
  'parent',
  'older',
  'sister',
  'super',
  'young',
  'like',
  'think',
  'mom',
  'dad',
  'great',
  'job',
  'lot',
  'problem',
  'chronic',
  'unemploy',
  'thief',
  'two',
  'kid',
  'okay',
  'live',
  'us',
  'well',
  'boyfriend',
  'want',
  'around',
  'like',
  'kid',
  'spoil',
  'littl',
  'brat',
  'parent',
  'dote',
  'make',
  'shitti',
  'parent',
  'mom',
  'parent',
  'let',
  'put',
  'lock',
  'door',
  'hous',
  'want',
  'problem',
  'talk',
  'kid',
  'explain',
  'would',
  'happen',
  'came',
  'room',
  'without',
  'permiss',
  'understand',
  'well',
  'sister',
  'broke',
  'boyfriend',
  'need',
  'place',
  'stay',
  'beg',
  'parent',
  'let',
  'stay',
  'us',
  'declin',
  'beg',
  'lock',
  'door',
  'dice',
  'go',
  'school',
  'cant',
  'guard',
  'stuff',
  'time',
  'came',
  'home',
  'friday',
  'found',
  'car',
  'absolut',
  'trash',
  'side',
  'destroy',
  'sister',
  'gone',
  'room',
  'found',
  'spare',
  'key',
  'taken',
  'car',
  'lost',
  'control',
  'ice',
  'day',
  'eat',
  'crap',
  'toss',
  'fast',
  'food',
  'wrapper',
  'everywher',
  'sideswip',
  'tree',
  'saw',
  'car',
  'livid',
  'told',
  'parent',
  'expect',
  'pay',
  'fix',
  'said',
  'money',
  'said',
  'would',
  'call',
  'grandpar',
  'help',
  'get',
  'car',
  'insur',
  'talk',
  'grandfath',
  'came',
  'back',
  'talk',
  'parent',
  'said',
  'insur',
  'would',
  'cover',
  'fix',
  'replac',
  'car',
  'depend',
  'damag',
  'would',
  'file',
  'polic',
  'report',
  'sister',
  'would',
  'probabl',
  'charg',
  'steal',
  'car',
  'beg',
  'tell',
  'insur',
  'permiss',
  'said',
  'nope',
  'rather',
  'go',
  'insur',
  'replac',
  'car',
  'use',
  'money',
  'sett',
  'asid',
  'take',
  'niec',
  'orlando',
  'next',
  'summer',
  'graduat',
  'fine',
  'without',
  'see',
  'disney',
  'world',
  'parent',
  'sister',
  'niec',
  'upset',
  'say',
  'im',
  'asshol',
  'deni',
  'niec',
  'opportun',
  'go',
  'vacat',
  'never',
  'ask',
  'lock',
  'door',
  'would',
  'cheaper',
  'aita',
  'edit',
  'hey',
  'got',
  'home',
  'school',
  'deadbolt',
  'bedroom',
  'door',
  'mom',
  'gave',
  'key',
  'say',
  'keep',
  'one',
  'emerg',
  'agre',
  'long',
  'emerg',
  'live_parent',
  'parent_older',
  'older_sister',
  'sister_super',
  'super_young',
  'young_like',
  'like_think',
  'think_mom',
  'mom_dad',
  'dad_great',
  'great_job',
  'job_lot',
  'lot_problem',
  'problem_chronic',
  'chronic_unemploy',
  'unemploy_thief',
  'thief_two',
  'two_kid',
  'kid_okay',
  'okay_live',
  'live_us',
  'us_well',
  'well_boyfriend',
  'boyfriend_want',
  'want_around',
  'around_like',
  'like_kid',
  'kid_spoil',
  'spoil_littl',
  'littl_brat',
  'brat_parent',
  'parent_dote',
  'dote_make',
  'make_shitti',
  'shitti_parent',
  'parent_mom',
  'mom_parent',
  'parent_let',
  'let_put',
  'put_lock',
  'lock_door',
  'door_hous',
  'hous_want',
  'want_problem',
  'problem_talk',
  'talk_kid',
  'kid_explain',
  'explain_would',
  'would_happen',
  'happen_came',
  'came_room',
  'room_without',
  'without_permiss',
  'permiss_understand',
  'understand_well',
  'well_sister',
  'sister_broke',
  'broke_boyfriend',
  'boyfriend_need',
  'need_place',
  'place_stay',
  'stay_beg',
  'beg_parent',
  'parent_let',
  'let_stay',
  'stay_us',
  'us_declin',
  'declin_beg',
  'beg_lock',
  'lock_door',
  'door_dice',
  'dice_go',
  'go_school',
  'school_cant',
  'cant_guard',
  'guard_stuff',
  'stuff_time',
  'time_came',
  'came_home',
  'home_friday',
  'friday_found',
  'found_car',
  'car_absolut',
  'absolut_trash',
  'trash_side',
  'side_destroy',
  'destroy_sister',
  'sister_gone',
  'gone_room',
  'room_found',
  'found_spare',
  'spare_key',
  'key_taken',
  'taken_car',
  'car_lost',
  'lost_control',
  'control_ice',
  'ice_day',
  'day_eat',
  'eat_crap',
  'crap_toss',
  'toss_fast',
  'fast_food',
  'food_wrapper',
  'wrapper_everywher',
  'everywher_sideswip',
  'sideswip_tree',
  'tree_saw',
  'saw_car',
  'car_livid',
  'livid_told',
  'told_parent',
  'parent_expect',
  'expect_pay',
  'pay_fix',
  'fix_said',
  'said_money',
  'money_said',
  'said_would',
  'would_call',
  'call_grandpar',
  'grandpar_help',
  'help_get',
  'get_car',
  'car_insur',
  'insur_talk',
  'talk_grandfath',
  'grandfath_came',
  'came_back',
  'back_talk',
  'talk_parent',
  'parent_said',
  'said_insur',
  'insur_would',
  'would_cover',
  'cover_fix',
  'fix_replac',
  'replac_car',
  'car_depend',
  'depend_damag',
  'damag_would',
  'would_file',
  'file_polic',
  'polic_report',
  'report_sister',
  'sister_would',
  'would_probabl',
  'probabl_charg',
  'charg_steal',
  'steal_car',
  'car_beg',
  'beg_tell',
  'tell_insur',
  'insur_permiss',
  'permiss_said',
  'said_nope',
  'nope_rather',
  'rather_go',
  'go_insur',
  'insur_replac',
  'replac_car',
  'car_use',
  'use_money',
  'money_sett',
  'sett_asid',
  'asid_take',
  'take_niec',
  'niec_orlando',
  'orlando_next',
  'next_summer',
  'summer_graduat',
  'graduat_fine',
  'fine_without',
  'without_see',
  'see_disney',
  'disney_world',
  'world_parent',
  'parent_sister',
  'sister_niec',
  'niec_upset',
  'upset_say',
  'say_im',
  'im_asshol',
  'asshol_deni',
  'deni_niec',
  'niec_opportun',
  'opportun_go',
  'go_vacat',
  'vacat_never',
  'never_ask',
  'ask_lock',
  'lock_door',
  'door_would',
  'would_cheaper',
  'cheaper_aita',
  'aita_edit',
  'edit_hey',
  'hey_got',
  'got_home',
  'home_school',
  'school_deadbolt',
  'deadbolt_bedroom',
  'bedroom_door',
  'door_mom',
  'mom_gave',
  'gave_key',
  'key_say',
  'say_keep',
  'keep_one',
  'one_emerg',
  'emerg_agre',
  'agre_long',
  'long_emerg',
  'live_parent_older',
  'parent_older_sister',
  'older_sister_super',
  'sister_super_young',
  'super_young_like',
  'young_like_think',
  'like_think_mom',
  'think_mom_dad',
  'mom_dad_great',
  'dad_great_job',
  'great_job_lot',
  'job_lot_problem',
  'lot_problem_chronic',
  'problem_chronic_unemploy',
  'chronic_unemploy_thief',
  'unemploy_thief_two',
  'thief_two_kid',
  'two_kid_okay',
  'kid_okay_live',
  'okay_live_us',
  'live_us_well',
  'us_well_boyfriend',
  'well_boyfriend_want',
  'boyfriend_want_around',
  'want_around_like',
  'around_like_kid',
  'like_kid_spoil',
  'kid_spoil_littl',
  'spoil_littl_brat',
  'littl_brat_parent',
  'brat_parent_dote',
  'parent_dote_make',
  'dote_make_shitti',
  'make_shitti_parent',
  'shitti_parent_mom',
  'parent_mom_parent',
  'mom_parent_let',
  'parent_let_put',
  'let_put_lock',
  'put_lock_door',
  'lock_door_hous',
  'door_hous_want',
  'hous_want_problem',
  'want_problem_talk',
  'problem_talk_kid',
  'talk_kid_explain',
  'kid_explain_would',
  'explain_would_happen',
  'would_happen_came',
  'happen_came_room',
  'came_room_without',
  'room_without_permiss',
  'without_permiss_understand',
  'permiss_understand_well',
  'understand_well_sister',
  'well_sister_broke',
  'sister_broke_boyfriend',
  'broke_boyfriend_need',
  'boyfriend_need_place',
  'need_place_stay',
  'place_stay_beg',
  'stay_beg_parent',
  'beg_parent_let',
  'parent_let_stay',
  'let_stay_us',
  'stay_us_declin',
  'us_declin_beg',
  'declin_beg_lock',
  'beg_lock_door',
  'lock_door_dice',
  'door_dice_go',
  'dice_go_school',
  'go_school_cant',
  'school_cant_guard',
  'cant_guard_stuff',
  'guard_stuff_time',
  'stuff_time_came',
  'time_came_home',
  'came_home_friday',
  'home_friday_found',
  'friday_found_car',
  'found_car_absolut',
  'car_absolut_trash',
  'absolut_trash_side',
  'trash_side_destroy',
  'side_destroy_sister',
  'destroy_sister_gone',
  'sister_gone_room',
  'gone_room_found',
  'room_found_spare',
  'found_spare_key',
  'spare_key_taken',
  'key_taken_car',
  'taken_car_lost',
  'car_lost_control',
  'lost_control_ice',
  'control_ice_day',
  'ice_day_eat',
  'day_eat_crap',
  'eat_crap_toss',
  'crap_toss_fast',
  'toss_fast_food',
  'fast_food_wrapper',
  'food_wrapper_everywher',
  'wrapper_everywher_sideswip',
  'everywher_sideswip_tree',
  'sideswip_tree_saw',
  'tree_saw_car',
  'saw_car_livid',
  'car_livid_told',
  'livid_told_parent',
  'told_parent_expect',
  'parent_expect_pay',
  'expect_pay_fix',
  'pay_fix_said',
  'fix_said_money',
  'said_money_said',
  'money_said_would',
  'said_would_call',
  'would_call_grandpar',
  'call_grandpar_help',
  'grandpar_help_get',
  'help_get_car',
  'get_car_insur',
  'car_insur_talk',
  'insur_talk_grandfath',
  'talk_grandfath_came',
  'grandfath_came_back',
  'came_back_talk',
  'back_talk_parent',
  'talk_parent_said',
  'parent_said_insur',
  'said_insur_would',
  'insur_would_cover',
  'would_cover_fix',
  'cover_fix_replac',
  'fix_replac_car',
  'replac_car_depend',
  'car_depend_damag',
  'depend_damag_would',
  'damag_would_file',
  'would_file_polic',
  'file_polic_report',
  'polic_report_sister',
  'report_sister_would',
  'sister_would_probabl',
  'would_probabl_charg',
  'probabl_charg_steal',
  'charg_steal_car',
  'steal_car_beg',
  'car_beg_tell',
  'beg_tell_insur',
  'tell_insur_permiss',
  'insur_permiss_said',
  'permiss_said_nope',
  'said_nope_rather',
  'nope_rather_go',
  'rather_go_insur',
  'go_insur_replac',
  'insur_replac_car',
  'replac_car_use',
  'car_use_money',
  'use_money_sett',
  'money_sett_asid',
  'sett_asid_take',
  'asid_take_niec',
  'take_niec_orlando',
  'niec_orlando_next',
  'orlando_next_summer',
  'next_summer_graduat',
  'summer_graduat_fine',
  'graduat_fine_without',
  'fine_without_see',
  'without_see_disney',
  'see_disney_world',
  'disney_world_parent',
  'world_parent_sister',
  'parent_sister_niec',
  'sister_niec_upset',
  'niec_upset_say',
  'upset_say_im',
  'say_im_asshol',
  'im_asshol_deni',
  'asshol_deni_niec',
  'deni_niec_opportun',
  'niec_opportun_go',
  'opportun_go_vacat',
  'go_vacat_never',
  'vacat_never_ask',
  'never_ask_lock',
  'ask_lock_door',
  'lock_door_would',
  'door_would_cheaper',
  'would_cheaper_aita',
  'cheaper_aita_edit',
  'aita_edit_hey',
  'edit_hey_got',
  'hey_got_home',
  'got_home_school',
  'home_school_deadbolt',
  'school_deadbolt_bedroom',
  'deadbolt_bedroom_door',
  'bedroom_door_mom',
  'door_mom_gave',
  'mom_gave_key',
  'gave_key_say',
  'key_say_keep',
  'say_keep_one',
  'keep_one_emerg',
  'one_emerg_agre',
  'emerg_agre_long',
  'agre_long_emerg'],
 ['partner',
  'togeth',
  'year',
  'daughter',
  'previou',
  'relationship',
  'right',
  'bat',
  'made',
  'known',
  'fertil',
  'issu',
  'like',
  'ever',
  'abl',
  'father',
  'child',
  'move',
  'slow',
  'relationship',
  'although',
  'fallen',
  'love',
  'fast',
  'thing',
  'got',
  'seriou',
  'overheard',
  'tell',
  'sister',
  'concern',
  'might',
  '‘',
  'aggress',
  'type',
  'person',
  'amount',
  'scar',
  'want',
  'scare',
  'away',
  'told',
  'bad',
  'childhood',
  'left',
  'littl',
  'two',
  'year',
  'relationship',
  'felt',
  'somewhat',
  'comfort',
  'open',
  'first',
  'time',
  'told',
  'exactli',
  'im',
  'infertil',
  'direct',
  'result',
  'injuri',
  'suffer',
  'due',
  'trauma',
  'child',
  'realli',
  'empathet',
  'thank',
  'found',
  'one',
  'want',
  'spend',
  'life',
  'also',
  'came',
  'kid',
  'ador',
  'fast',
  'forward',
  'last',
  'summer',
  'partner',
  'friend',
  'decid',
  'play',
  'impromptu',
  'prank',
  'came',
  'home',
  'work',
  'multipl',
  'posit',
  'pregnanc',
  'test',
  'bathroom',
  'partner',
  'announc',
  'pregnant',
  'start',
  'freak',
  'out…',
  'happi',
  'freak',
  'caus',
  'thought',
  'hit',
  'lotteri',
  'slim',
  'none',
  'chanc',
  'start',
  'laugh',
  'test',
  'friend',
  'partner',
  'pretti',
  'much',
  'devast',
  'felt',
  'realli',
  'let',
  'partner',
  'would',
  'actual',
  'pull',
  'prank',
  'like',
  'first',
  'shock',
  'reaction',
  'said',
  'thought',
  'know',
  'joke',
  'consid',
  'circumst',
  'end',
  'apolog',
  'realiz',
  'hurt',
  'point',
  'post',
  'three',
  'week',
  'ago',
  'arrang',
  'huge',
  'dinner',
  'entir',
  'famili',
  'hous',
  'us',
  'play',
  'stupid',
  'mysteri',
  'game',
  'ultim',
  'announc',
  'everyon',
  'pregnant',
  'mother',
  'sister',
  'deliri',
  'happi',
  'immedi',
  'got',
  'piss',
  'think',
  'yet',
  'anoth',
  'prank',
  'show',
  'absolut',
  'emot',
  'everyon',
  'caught',
  'said',
  'partner',
  'either',
  'mental',
  'disturb',
  'cheat',
  'pretti',
  'much',
  'hell',
  'broke',
  'loos',
  'partner',
  'pov',
  'sincer',
  'apologet',
  'prank',
  'know',
  'well',
  'enough',
  'think',
  'shed',
  'ever',
  'pull',
  'stunt',
  'also',
  'livid',
  'ruin',
  'announc',
  'embarrass',
  'front',
  'entir',
  'famili',
  'caus',
  'think',
  'im',
  'horribl',
  'person',
  'final',
  'insinu',
  'cheater',
  'still',
  'stand',
  'claim',
  'never',
  'prank',
  'reaction',
  'would',
  'differ',
  'find',
  'odd',
  'decid',
  'tell',
  'along',
  'famili',
  'thing',
  'would',
  'like',
  'went',
  'better',
  'told',
  'first',
  'announc',
  'togeth',
  'im',
  'start',
  'think',
  'act',
  'immatur',
  'caus',
  'scene',
  'front',
  'famili',
  'think',
  'mayb',
  'im',
  'wrong',
  'partner_togeth',
  'togeth_year',
  'year_daughter',
  'daughter_previou',
  'previou_relationship',
  'relationship_right',
  'right_bat',
  'bat_made',
  'made_known',
  'known_fertil',
  'fertil_issu',
  'issu_like',
  'like_ever',
  'ever_abl',
  'abl_father',
  'father_child',
  'child_move',
  'move_slow',
  'slow_relationship',
  'relationship_although',
  'although_fallen',
  'fallen_love',
  'love_fast',
  'fast_thing',
  'thing_got',
  'got_seriou',
  'seriou_overheard',
  'overheard_tell',
  'tell_sister',
  'sister_concern',
  'concern_might',
  'might_‘',
  '‘_aggress',
  'aggress_type',
  'type_person',
  'person_amount',
  'amount_scar',
  'scar_want',
  'want_scare',
  'scare_away',
  'away_told',
  'told_bad',
  'bad_childhood',
  'childhood_left',
  'left_littl',
  'littl_two',
  'two_year',
  'year_relationship',
  'relationship_felt',
  'felt_somewhat',
  'somewhat_comfort',
  'comfort_open',
  'open_first',
  'first_time',
  'time_told',
  'told_exactli',
  'exactli_im',
  'im_infertil',
  'infertil_direct',
  'direct_result',
  'result_injuri',
  'injuri_suffer',
  'suffer_due',
  'due_trauma',
  'trauma_child',
  'child_realli',
  'realli_empathet',
  'empathet_thank',
  'thank_found',
  'found_one',
  'one_want',
  'want_spend',
  'spend_life',
  'life_also',
  'also_came',
  'came_kid',
  'kid_ador',
  'ador_fast',
  'fast_forward',
  'forward_last',
  'last_summer',
  'summer_partner',
  'partner_friend',
  'friend_decid',
  'decid_play',
  'play_impromptu',
  'impromptu_prank',
  'prank_came',
  'came_home',
  'home_work',
  'work_multipl',
  'multipl_posit',
  'posit_pregnanc',
  'pregnanc_test',
  'test_bathroom',
  'bathroom_partner',
  'partner_announc',
  'announc_pregnant',
  'pregnant_start',
  'start_freak',
  'freak_out…',
  'out…_happi',
  'happi_freak',
  'freak_caus',
  'caus_thought',
  'thought_hit',
  'hit_lotteri',
  'lotteri_slim',
  'slim_none',
  'none_chanc',
  'chanc_start',
  'start_laugh',
  'laugh_test',
  'test_friend',
  'friend_partner',
  'partner_pretti',
  'pretti_much',
  'much_devast',
  'devast_felt',
  'felt_realli',
  'realli_let',
  'let_partner',
  'partner_would',
  'would_actual',
  'actual_pull',
  'pull_prank',
  'prank_like',
  'like_first',
  'first_shock',
  'shock_reaction',
  'reaction_said',
  'said_thought',
  'thought_know',
  'know_joke',
  'joke_consid',
  'consid_circumst',
  'circumst_end',
  'end_apolog',
  'apolog_realiz',
  'realiz_hurt',
  'hurt_point',
  'point_post',
  'post_three',
  'three_week',
  'week_ago',
  'ago_arrang',
  'arrang_huge',
  'huge_dinner',
  'dinner_entir',
  'entir_famili',
  'famili_hous',
  'hous_us',
  'us_play',
  'play_stupid',
  'stupid_mysteri',
  'mysteri_game',
  'game_ultim',
  'ultim_announc',
  'announc_everyon',
  'everyon_pregnant',
  'pregnant_mother',
  'mother_sister',
  'sister_deliri',
  'deliri_happi',
  'happi_immedi',
  'immedi_got',
  'got_piss',
  'piss_think',
  'think_yet',
  'yet_anoth',
  'anoth_prank',
  'prank_show',
  'show_absolut',
  'absolut_emot',
  'emot_everyon',
  'everyon_caught',
  'caught_said',
  'said_partner',
  'partner_either',
  'either_mental',
  'mental_disturb',
  'disturb_cheat',
  'cheat_pretti',
  'pretti_much',
  'much_hell',
  'hell_broke',
  'broke_loos',
  'loos_partner',
  'partner_pov',
  'pov_sincer',
  'sincer_apologet',
  'apologet_prank',
  'prank_know',
  'know_well',
  'well_enough',
  'enough_think',
  'think_shed',
  'shed_ever',
  'ever_pull',
  'pull_stunt',
  'stunt_also',
  'also_livid',
  'livid_ruin',
  'ruin_announc',
  'announc_embarrass',
  'embarrass_front',
  'front_entir',
  'entir_famili',
  'famili_caus',
  'caus_think',
  'think_im',
  'im_horribl',
  'horribl_person',
  'person_final',
  'final_insinu',
  'insinu_cheater',
  'cheater_still',
  'still_stand',
  'stand_claim',
  'claim_never',
  'never_prank',
  'prank_reaction',
  'reaction_would',
  'would_differ',
  'differ_find',
  'find_odd',
  'odd_decid',
  'decid_tell',
  'tell_along',
  'along_famili',
  'famili_thing',
  'thing_would',
  'would_like',
  'like_went',
  'went_better',
  'better_told',
  'told_first',
  'first_announc',
  'announc_togeth',
  'togeth_im',
  'im_start',
  'start_think',
  'think_act',
  'act_immatur',
  'immatur_caus',
  'caus_scene',
  'scene_front',
  'front_famili',
  'famili_think',
  'think_mayb',
  'mayb_im',
  'im_wrong',
  'partner_togeth_year',
  'togeth_year_daughter',
  'year_daughter_previou',
  'daughter_previou_relationship',
  'previou_relationship_right',
  'relationship_right_bat',
  'right_bat_made',
  'bat_made_known',
  'made_known_fertil',
  'known_fertil_issu',
  'fertil_issu_like',
  'issu_like_ever',
  'like_ever_abl',
  'ever_abl_father',
  'abl_father_child',
  'father_child_move',
  'child_move_slow',
  'move_slow_relationship',
  'slow_relationship_although',
  'relationship_although_fallen',
  'although_fallen_love',
  'fallen_love_fast',
  'love_fast_thing',
  'fast_thing_got',
  'thing_got_seriou',
  'got_seriou_overheard',
  'seriou_overheard_tell',
  'overheard_tell_sister',
  'tell_sister_concern',
  'sister_concern_might',
  'concern_might_‘',
  'might_‘_aggress',
  '‘_aggress_type',
  'aggress_type_person',
  'type_person_amount',
  'person_amount_scar',
  'amount_scar_want',
  'scar_want_scare',
  'want_scare_away',
  'scare_away_told',
  'away_told_bad',
  'told_bad_childhood',
  'bad_childhood_left',
  'childhood_left_littl',
  'left_littl_two',
  'littl_two_year',
  'two_year_relationship',
  'year_relationship_felt',
  'relationship_felt_somewhat',
  'felt_somewhat_comfort',
  'somewhat_comfort_open',
  'comfort_open_first',
  'open_first_time',
  'first_time_told',
  'time_told_exactli',
  'told_exactli_im',
  'exactli_im_infertil',
  'im_infertil_direct',
  'infertil_direct_result',
  'direct_result_injuri',
  'result_injuri_suffer',
  'injuri_suffer_due',
  'suffer_due_trauma',
  'due_trauma_child',
  'trauma_child_realli',
  'child_realli_empathet',
  'realli_empathet_thank',
  'empathet_thank_found',
  'thank_found_one',
  'found_one_want',
  'one_want_spend',
  'want_spend_life',
  'spend_life_also',
  'life_also_came',
  'also_came_kid',
  'came_kid_ador',
  'kid_ador_fast',
  'ador_fast_forward',
  'fast_forward_last',
  'forward_last_summer',
  'last_summer_partner',
  'summer_partner_friend',
  'partner_friend_decid',
  'friend_decid_play',
  'decid_play_impromptu',
  'play_impromptu_prank',
  'impromptu_prank_came',
  'prank_came_home',
  'came_home_work',
  'home_work_multipl',
  'work_multipl_posit',
  'multipl_posit_pregnanc',
  'posit_pregnanc_test',
  'pregnanc_test_bathroom',
  'test_bathroom_partner',
  'bathroom_partner_announc',
  'partner_announc_pregnant',
  'announc_pregnant_start',
  'pregnant_start_freak',
  'start_freak_out…',
  'freak_out…_happi',
  'out…_happi_freak',
  'happi_freak_caus',
  'freak_caus_thought',
  'caus_thought_hit',
  'thought_hit_lotteri',
  'hit_lotteri_slim',
  'lotteri_slim_none',
  'slim_none_chanc',
  'none_chanc_start',
  'chanc_start_laugh',
  'start_laugh_test',
  'laugh_test_friend',
  'test_friend_partner',
  'friend_partner_pretti',
  'partner_pretti_much',
  'pretti_much_devast',
  'much_devast_felt',
  'devast_felt_realli',
  'felt_realli_let',
  'realli_let_partner',
  'let_partner_would',
  'partner_would_actual',
  'would_actual_pull',
  'actual_pull_prank',
  'pull_prank_like',
  'prank_like_first',
  'like_first_shock',
  'first_shock_reaction',
  'shock_reaction_said',
  'reaction_said_thought',
  'said_thought_know',
  'thought_know_joke',
  'know_joke_consid',
  'joke_consid_circumst',
  'consid_circumst_end',
  'circumst_end_apolog',
  'end_apolog_realiz',
  'apolog_realiz_hurt',
  'realiz_hurt_point',
  'hurt_point_post',
  'point_post_three',
  'post_three_week',
  'three_week_ago',
  'week_ago_arrang',
  'ago_arrang_huge',
  'arrang_huge_dinner',
  'huge_dinner_entir',
  'dinner_entir_famili',
  'entir_famili_hous',
  'famili_hous_us',
  'hous_us_play',
  'us_play_stupid',
  'play_stupid_mysteri',
  'stupid_mysteri_game',
  'mysteri_game_ultim',
  'game_ultim_announc',
  'ultim_announc_everyon',
  'announc_everyon_pregnant',
  'everyon_pregnant_mother',
  'pregnant_mother_sister',
  'mother_sister_deliri',
  'sister_deliri_happi',
  'deliri_happi_immedi',
  'happi_immedi_got',
  'immedi_got_piss',
  'got_piss_think',
  'piss_think_yet',
  'think_yet_anoth',
  'yet_anoth_prank',
  'anoth_prank_show',
  'prank_show_absolut',
  'show_absolut_emot',
  'absolut_emot_everyon',
  'emot_everyon_caught',
  'everyon_caught_said',
  'caught_said_partner',
  'said_partner_either',
  'partner_either_mental',
  'either_mental_disturb',
  'mental_disturb_cheat',
  'disturb_cheat_pretti',
  'cheat_pretti_much',
  'pretti_much_hell',
  'much_hell_broke',
  'hell_broke_loos',
  'broke_loos_partner',
  'loos_partner_pov',
  'partner_pov_sincer',
  'pov_sincer_apologet',
  'sincer_apologet_prank',
  'apologet_prank_know',
  'prank_know_well',
  'know_well_enough',
  'well_enough_think',
  'enough_think_shed',
  'think_shed_ever',
  'shed_ever_pull',
  'ever_pull_stunt',
  'pull_stunt_also',
  'stunt_also_livid',
  'also_livid_ruin',
  'livid_ruin_announc',
  'ruin_announc_embarrass',
  'announc_embarrass_front',
  'embarrass_front_entir',
  'front_entir_famili',
  'entir_famili_caus',
  'famili_caus_think',
  'caus_think_im',
  'think_im_horribl',
  'im_horribl_person',
  'horribl_person_final',
  'person_final_insinu',
  'final_insinu_cheater',
  'insinu_cheater_still',
  'cheater_still_stand',
  'still_stand_claim',
  'stand_claim_never',
  'claim_never_prank',
  'never_prank_reaction',
  'prank_reaction_would',
  'reaction_would_differ',
  'would_differ_find',
  'differ_find_odd',
  'find_odd_decid',
  'odd_decid_tell',
  'decid_tell_along',
  'tell_along_famili',
  'along_famili_thing',
  'famili_thing_would',
  'thing_would_like',
  'would_like_went',
  'like_went_better',
  'went_better_told',
  'better_told_first',
  'told_first_announc',
  'first_announc_togeth',
  'announc_togeth_im',
  'togeth_im_start',
  'im_start_think',
  'start_think_act',
  'think_act_immatur',
  'act_immatur_caus',
  'immatur_caus_scene',
  'caus_scene_front',
  'scene_front_famili',
  'front_famili_think',
  'famili_think_mayb',
  'think_mayb_im',
  'mayb_im_wrong'],
 ['husband',
  'car',
  'sold',
  'old',
  'one',
  'help',
  'pay',
  'brother',
  'wed',
  'agre',
  'car',
  'got',
  'togeth',
  'share',
  'properti',
  'besid',
  'car',
  'affect',
  'til',
  'husband',
  'start',
  'complain',
  'commut',
  'work',
  'hangout',
  'place',
  'tri',
  'get',
  'let',
  'drive',
  'car',
  'sever',
  'time',
  'stood',
  'firm',
  'put',
  'boundari',
  'make',
  'understand',
  'car',
  'never',
  'driven',
  'one',
  'reason',
  'bad',
  'drive',
  'brother',
  'live',
  'town',
  'husband',
  'ask',
  'could',
  'drive',
  'car',
  'wed',
  'refus',
  'im',
  'imvit',
  'anoth',
  'stori',
  'anoth',
  'day',
  'buy',
  'like',
  'said',
  'car',
  'limit',
  'threw',
  'fit',
  'call',
  'unreason',
  'let',
  'take',
  'public',
  'transport',
  'bare',
  'stand',
  'minut',
  'let',
  'alon',
  'hour',
  'said',
  'problem',
  'irrit',
  'made',
  'stop',
  'argu',
  'day',
  'suppos',
  'travel',
  'town',
  'woke',
  'find',
  'car',
  'key',
  'went',
  'outsid',
  'find',
  'car',
  'either',
  'beyond',
  'piss',
  'call',
  'like',
  'expect',
  'took',
  'way',
  'town',
  'lost',
  'told',
  'gave',
  'permiss',
  'take',
  'whole',
  'day',
  'said',
  'turn',
  'around',
  'come',
  'home',
  'id',
  'call',
  'cop',
  'report',
  'miss',
  'respons',
  'dare',
  'caus',
  'know',
  'would',
  'happen',
  'hung',
  'immedi',
  'call',
  'polic',
  'told',
  'situat',
  'tell',
  'husband',
  'took',
  'theyd',
  'think',
  'famili',
  'disput',
  'decid',
  'get',
  'involv',
  'report',
  'miss',
  'hour',
  'later',
  'got',
  'call',
  'husband',
  'say',
  'back',
  'town',
  'held',
  'local',
  'polic',
  'station',
  'went',
  'station',
  'talk',
  'cop',
  'husband',
  'made',
  'scene',
  'swear',
  'gave',
  'permiss',
  'take',
  'said',
  'act',
  'jealousi',
  'spite',
  'go',
  'attent',
  'wed',
  'invit',
  'took',
  'car',
  'went',
  'home',
  'stay',
  'littl',
  'longer',
  'came',
  'home',
  'even',
  'went',
  'rage',
  'fit',
  'creat',
  'aw',
  'situat',
  'almost',
  'caus',
  'miss',
  'brother',
  'wed',
  'call',
  'vindict',
  'bitter',
  'lunat',
  'call',
  'polic',
  'tri',
  'accus',
  'steal',
  'car',
  'leav',
  'day',
  'abl',
  'famili',
  'decid',
  'extent',
  'stay',
  'still',
  'gotten',
  'back',
  'yet',
  'right',
  'mom',
  'brother',
  'blast',
  'happen',
  'call',
  'spite',
  'husband_car',
  'car_sold',
  'sold_old',
  'old_one',
  'one_help',
  'help_pay',
  'pay_brother',
  'brother_wed',
  'wed_agre',
  'agre_car',
  'car_got',
  'got_togeth',
  'togeth_share',
  'share_properti',
  'properti_besid',
  'besid_car',
  'car_affect',
  'affect_til',
  'til_husband',
  'husband_start',
  'start_complain',
  'complain_commut',
  'commut_work',
  'work_hangout',
  'hangout_place',
  'place_tri',
  'tri_get',
  'get_let',
  'let_drive',
  'drive_car',
  'car_sever',
  'sever_time',
  'time_stood',
  'stood_firm',
  'firm_put',
  'put_boundari',
  'boundari_make',
  'make_understand',
  'understand_car',
  'car_never',
  'never_driven',
  'driven_one',
  'one_reason',
  'reason_bad',
  'bad_drive',
  'drive_brother',
  'brother_live',
  'live_town',
  'town_husband',
  'husband_ask',
  'ask_could',
  'could_drive',
  'drive_car',
  'car_wed',
  'wed_refus',
  'refus_im',
  'im_imvit',
  'imvit_anoth',
  'anoth_stori',
  'stori_anoth',
  'anoth_day',
  'day_buy',
  'buy_like',
  'like_said',
  'said_car',
  'car_limit',
  'limit_threw',
  'threw_fit',
  'fit_call',
  'call_unreason',
  'unreason_let',
  'let_take',
  'take_public',
  'public_transport',
  'transport_bare',
  'bare_stand',
  'stand_minut',
  'minut_let',
  'let_alon',
  'alon_hour',
  'hour_said',
  'said_problem',
  'problem_irrit',
  'irrit_made',
  'made_stop',
  'stop_argu',
  'argu_day',
  'day_suppos',
  'suppos_travel',
  'travel_town',
  'town_woke',
  'woke_find',
  'find_car',
  'car_key',
  'key_went',
  'went_outsid',
  'outsid_find',
  'find_car',
  'car_either',
  'either_beyond',
  'beyond_piss',
  'piss_call',
  'call_like',
  'like_expect',
  'expect_took',
  'took_way',
  'way_town',
  'town_lost',
  'lost_told',
  'told_gave',
  'gave_permiss',
  'permiss_take',
  'take_whole',
  'whole_day',
  'day_said',
  'said_turn',
  'turn_around',
  'around_come',
  'come_home',
  'home_id',
  'id_call',
  'call_cop',
  'cop_report',
  'report_miss',
  'miss_respons',
  'respons_dare',
  'dare_caus',
  'caus_know',
  'know_would',
  'would_happen',
  'happen_hung',
  'hung_immedi',
  'immedi_call',
  'call_polic',
  'polic_told',
  'told_situat',
  'situat_tell',
  'tell_husband',
  'husband_took',
  'took_theyd',
  'theyd_think',
  'think_famili',
  'famili_disput',
  'disput_decid',
  'decid_get',
  'get_involv',
  'involv_report',
  'report_miss',
  'miss_hour',
  'hour_later',
  'later_got',
  'got_call',
  'call_husband',
  'husband_say',
  'say_back',
  'back_town',
  'town_held',
  'held_local',
  'local_polic',
  'polic_station',
  'station_went',
  'went_station',
  'station_talk',
  'talk_cop',
  'cop_husband',
  'husband_made',
  'made_scene',
  'scene_swear',
  'swear_gave',
  'gave_permiss',
  'permiss_take',
  'take_said',
  'said_act',
  'act_jealousi',
  'jealousi_spite',
  'spite_go',
  'go_attent',
  'attent_wed',
  'wed_invit',
  'invit_took',
  'took_car',
  'car_went',
  'went_home',
  'home_stay',
  'stay_littl',
  'littl_longer',
  'longer_came',
  'came_home',
  'home_even',
  'even_went',
  'went_rage',
  'rage_fit',
  'fit_creat',
  'creat_aw',
  'aw_situat',
  'situat_almost',
  'almost_caus',
  'caus_miss',
  'miss_brother',
  'brother_wed',
  'wed_call',
  'call_vindict',
  'vindict_bitter',
  'bitter_lunat',
  'lunat_call',
  'call_polic',
  'polic_tri',
  'tri_accus',
  'accus_steal',
  'steal_car',
  'car_leav',
  'leav_day',
  'day_abl',
  'abl_famili',
  'famili_decid',
  'decid_extent',
  'extent_stay',
  'stay_still',
  'still_gotten',
  'gotten_back',
  'back_yet',
  'yet_right',
  'right_mom',
  'mom_brother',
  'brother_blast',
  'blast_happen',
  'happen_call',
  'call_spite',
  'husband_car_sold',
  'car_sold_old',
  'sold_old_one',
  'old_one_help',
  'one_help_pay',
  'help_pay_brother',
  'pay_brother_wed',
  'brother_wed_agre',
  'wed_agre_car',
  'agre_car_got',
  'car_got_togeth',
  'got_togeth_share',
  'togeth_share_properti',
  'share_properti_besid',
  'properti_besid_car',
  'besid_car_affect',
  'car_affect_til',
  'affect_til_husband',
  'til_husband_start',
  'husband_start_complain',
  'start_complain_commut',
  'complain_commut_work',
  'commut_work_hangout',
  'work_hangout_place',
  'hangout_place_tri',
  'place_tri_get',
  'tri_get_let',
  'get_let_drive',
  'let_drive_car',
  'drive_car_sever',
  'car_sever_time',
  'sever_time_stood',
  'time_stood_firm',
  'stood_firm_put',
  'firm_put_boundari',
  'put_boundari_make',
  'boundari_make_understand',
  'make_understand_car',
  'understand_car_never',
  'car_never_driven',
  'never_driven_one',
  'driven_one_reason',
  'one_reason_bad',
  'reason_bad_drive',
  'bad_drive_brother',
  'drive_brother_live',
  'brother_live_town',
  'live_town_husband',
  'town_husband_ask',
  'husband_ask_could',
  'ask_could_drive',
  'could_drive_car',
  'drive_car_wed',
  'car_wed_refus',
  'wed_refus_im',
  'refus_im_imvit',
  'im_imvit_anoth',
  'imvit_anoth_stori',
  'anoth_stori_anoth',
  'stori_anoth_day',
  'anoth_day_buy',
  'day_buy_like',
  'buy_like_said',
  'like_said_car',
  'said_car_limit',
  'car_limit_threw',
  'limit_threw_fit',
  'threw_fit_call',
  'fit_call_unreason',
  'call_unreason_let',
  'unreason_let_take',
  'let_take_public',
  'take_public_transport',
  'public_transport_bare',
  'transport_bare_stand',
  'bare_stand_minut',
  'stand_minut_let',
  'minut_let_alon',
  'let_alon_hour',
  'alon_hour_said',
  'hour_said_problem',
  'said_problem_irrit',
  'problem_irrit_made',
  'irrit_made_stop',
  'made_stop_argu',
  'stop_argu_day',
  'argu_day_suppos',
  'day_suppos_travel',
  'suppos_travel_town',
  'travel_town_woke',
  'town_woke_find',
  'woke_find_car',
  'find_car_key',
  'car_key_went',
  'key_went_outsid',
  'went_outsid_find',
  'outsid_find_car',
  'find_car_either',
  'car_either_beyond',
  'either_beyond_piss',
  'beyond_piss_call',
  'piss_call_like',
  'call_like_expect',
  'like_expect_took',
  'expect_took_way',
  'took_way_town',
  'way_town_lost',
  'town_lost_told',
  'lost_told_gave',
  'told_gave_permiss',
  'gave_permiss_take',
  'permiss_take_whole',
  'take_whole_day',
  'whole_day_said',
  'day_said_turn',
  'said_turn_around',
  'turn_around_come',
  'around_come_home',
  'come_home_id',
  'home_id_call',
  'id_call_cop',
  'call_cop_report',
  'cop_report_miss',
  'report_miss_respons',
  'miss_respons_dare',
  'respons_dare_caus',
  'dare_caus_know',
  'caus_know_would',
  'know_would_happen',
  'would_happen_hung',
  'happen_hung_immedi',
  'hung_immedi_call',
  'immedi_call_polic',
  'call_polic_told',
  'polic_told_situat',
  'told_situat_tell',
  'situat_tell_husband',
  'tell_husband_took',
  'husband_took_theyd',
  'took_theyd_think',
  'theyd_think_famili',
  'think_famili_disput',
  'famili_disput_decid',
  'disput_decid_get',
  'decid_get_involv',
  'get_involv_report',
  'involv_report_miss',
  'report_miss_hour',
  'miss_hour_later',
  'hour_later_got',
  'later_got_call',
  'got_call_husband',
  'call_husband_say',
  'husband_say_back',
  'say_back_town',
  'back_town_held',
  'town_held_local',
  'held_local_polic',
  'local_polic_station',
  'polic_station_went',
  'station_went_station',
  'went_station_talk',
  'station_talk_cop',
  'talk_cop_husband',
  'cop_husband_made',
  'husband_made_scene',
  'made_scene_swear',
  'scene_swear_gave',
  'swear_gave_permiss',
  'gave_permiss_take',
  'permiss_take_said',
  'take_said_act',
  'said_act_jealousi',
  'act_jealousi_spite',
  'jealousi_spite_go',
  'spite_go_attent',
  'go_attent_wed',
  'attent_wed_invit',
  'wed_invit_took',
  'invit_took_car',
  'took_car_went',
  'car_went_home',
  'went_home_stay',
  'home_stay_littl',
  'stay_littl_longer',
  'littl_longer_came',
  'longer_came_home',
  'came_home_even',
  'home_even_went',
  'even_went_rage',
  'went_rage_fit',
  'rage_fit_creat',
  'fit_creat_aw',
  'creat_aw_situat',
  'aw_situat_almost',
  'situat_almost_caus',
  'almost_caus_miss',
  'caus_miss_brother',
  'miss_brother_wed',
  'brother_wed_call',
  'wed_call_vindict',
  'call_vindict_bitter',
  'vindict_bitter_lunat',
  'bitter_lunat_call',
  'lunat_call_polic',
  'call_polic_tri',
  'polic_tri_accus',
  'tri_accus_steal',
  'accus_steal_car',
  'steal_car_leav',
  'car_leav_day',
  'leav_day_abl',
  'day_abl_famili',
  'abl_famili_decid',
  'famili_decid_extent',
  'decid_extent_stay',
  'extent_stay_still',
  'stay_still_gotten',
  'still_gotten_back',
  'gotten_back_yet',
  'back_yet_right',
  'yet_right_mom',
  'right_mom_brother',
  'mom_brother_blast',
  'brother_blast_happen',
  'blast_happen_call',
  'happen_call_spite'],
 ['ok',
  'guy',
  'im',
  'extrem',
  'tri',
  'long',
  'ass',
  'day',
  'pleas',
  'excus',
  'poor',
  'grammar',
  'spell',
  'mistak',
  'begin',
  'brother',
  'ben',
  'fake',
  'name',
  'relationship',
  'abbi',
  'fake',
  'name',
  'year',
  'theyv',
  'engag',
  'year',
  'theyv',
  'nearli',
  'gotten',
  'marri',
  'year',
  'ago',
  'month',
  'wed',
  'ben',
  'chicken',
  'went',
  'therapi',
  'basic',
  'dad',
  'left',
  'us',
  'issu',
  'commit',
  'thought',
  'last',
  'year',
  'final',
  'gon',
  'na',
  'step',
  'abbi',
  'partner',
  'deserv',
  'seem',
  'bit',
  'anxiou',
  'lead',
  'big',
  'day',
  'assur',
  'everyon',
  'ok',
  'today',
  'meant',
  'get',
  'marri',
  'abbi',
  'us',
  'bridesmaid',
  'enter',
  'church',
  'ben',
  'found',
  'everyon',
  'tri',
  'calm',
  'say',
  'traffic',
  'probabl',
  'monster',
  'hangov',
  'well',
  'hour',
  'pass',
  'two',
  'three',
  'four',
  'hour',
  'mark',
  'abbi',
  'said',
  'fuck',
  'go',
  'back',
  'hotel',
  'call',
  'land',
  'famili',
  'look',
  'panick',
  'nervou',
  'tri',
  'get',
  'ben',
  'groomsmen',
  'arriv',
  'yet',
  'brother',
  'brother',
  'law',
  'sister',
  'husband',
  'went',
  'look',
  'think',
  'got',
  'hurt',
  'arrest',
  'night',
  'went',
  'back',
  'hotel',
  'broken',
  'look',
  'abbi',
  'drank',
  'ate',
  'food',
  'anoth',
  'hour',
  'got',
  'text',
  'brother',
  'law',
  'say',
  'found',
  'bar',
  'tri',
  'talk',
  'go',
  'wed',
  'sister',
  'rang',
  'husband',
  'heard',
  'background',
  'liter',
  'act',
  'like',
  'year',
  'old',
  'want',
  'go',
  'doctor',
  'honestli',
  'guy',
  'enough',
  'stage',
  'mess',
  'girl',
  'long',
  'frankli',
  'lead',
  'someon',
  'along',
  'year',
  'cruel',
  'mayb',
  'asshol',
  'centuri',
  'walk',
  'abbi',
  'room',
  'told',
  'quiet',
  'rang',
  'brother',
  'law',
  'put',
  'loud',
  'speaker',
  'ask',
  'go',
  'put',
  'ben',
  'phone',
  'drunk',
  'fool',
  'start',
  'say',
  'shit',
  'like',
  'think',
  'one',
  'theyv',
  'togeth',
  'long',
  'scare',
  'alon',
  'let',
  'hear',
  'everyth',
  'lie',
  'felt',
  'like',
  'monster',
  'start',
  'cri',
  'abbi',
  'grab',
  'phone',
  'told',
  'one',
  'hour',
  'get',
  'church',
  'good',
  'long',
  'stori',
  'short',
  'ben',
  'end',
  'church',
  'minut',
  'later',
  'abbi',
  'took',
  'dress',
  'left',
  'hotel',
  'alon',
  'end',
  'left',
  'alter',
  'went',
  'honeymoon',
  'alon',
  'ive',
  'disown',
  'everyon',
  'expect',
  'two',
  'sibl',
  'sister',
  'get',
  'abbi',
  'maid',
  'honour',
  'collect',
  'suitcas',
  'outsid',
  'hotel',
  'mom',
  'dump',
  'found',
  'im',
  'full',
  'blame',
  'ruin',
  'relationship',
  '%',
  'famili',
  'hate',
  'ok_guy',
  'guy_im',
  'im_extrem',
  'extrem_tri',
  'tri_long',
  'long_ass',
  'ass_day',
  'day_pleas',
  'pleas_excus',
  'excus_poor',
  'poor_grammar',
  'grammar_spell',
  'spell_mistak',
  'mistak_begin',
  'begin_brother',
  'brother_ben',
  'ben_fake',
  'fake_name',
  'name_relationship',
  'relationship_abbi',
  'abbi_fake',
  'fake_name',
  'name_year',
  'year_theyv',
  'theyv_engag',
  'engag_year',
  'year_theyv',
  'theyv_nearli',
  'nearli_gotten',
  'gotten_marri',
  'marri_year',
  'year_ago',
  'ago_month',
  'month_wed',
  'wed_ben',
  'ben_chicken',
  'chicken_went',
  'went_therapi',
  'therapi_basic',
  'basic_dad',
  'dad_left',
  'left_us',
  'us_issu',
  'issu_commit',
  'commit_thought',
  'thought_last',
  'last_year',
  'year_final',
  'final_gon',
  'gon_na',
  'na_step',
  'step_abbi',
  'abbi_partner',
  'partner_deserv',
  'deserv_seem',
  'seem_bit',
  'bit_anxiou',
  'anxiou_lead',
  'lead_big',
  'big_day',
  'day_assur',
  'assur_everyon',
  'everyon_ok',
  'ok_today',
  'today_meant',
  'meant_get',
  'get_marri',
  'marri_abbi',
  'abbi_us',
  'us_bridesmaid',
  'bridesmaid_enter',
  'enter_church',
  'church_ben',
  'ben_found',
  'found_everyon',
  'everyon_tri',
  'tri_calm',
  'calm_say',
  'say_traffic',
  'traffic_probabl',
  'probabl_monster',
  'monster_hangov',
  'hangov_well',
  'well_hour',
  'hour_pass',
  'pass_two',
  'two_three',
  'three_four',
  'four_hour',
  'hour_mark',
  'mark_abbi',
  'abbi_said',
  'said_fuck',
  'fuck_go',
  'go_back',
  'back_hotel',
  'hotel_call',
  'call_land',
  'land_famili',
  'famili_look',
  'look_panick',
  'panick_nervou',
  'nervou_tri',
  'tri_get',
  'get_ben',
  'ben_groomsmen',
  'groomsmen_arriv',
  'arriv_yet',
  'yet_brother',
  'brother_brother',
  'brother_law',
  'law_sister',
  'sister_husband',
  'husband_went',
  'went_look',
  'look_think',
  'think_got',
  'got_hurt',
  'hurt_arrest',
  'arrest_night',
  'night_went',
  'went_back',
  'back_hotel',
  'hotel_broken',
  'broken_look',
  'look_abbi',
  'abbi_drank',
  'drank_ate',
  'ate_food',
  'food_anoth',
  'anoth_hour',
  'hour_got',
  'got_text',
  'text_brother',
  'brother_law',
  'law_say',
  'say_found',
  'found_bar',
  'bar_tri',
  'tri_talk',
  'talk_go',
  'go_wed',
  'wed_sister',
  'sister_rang',
  'rang_husband',
  'husband_heard',
  'heard_background',
  'background_liter',
  'liter_act',
  'act_like',
  'like_year',
  'year_old',
  'old_want',
  'want_go',
  'go_doctor',
  'doctor_honestli',
  'honestli_guy',
  'guy_enough',
  'enough_stage',
  'stage_mess',
  'mess_girl',
  'girl_long',
  'long_frankli',
  'frankli_lead',
  'lead_someon',
  'someon_along',
  'along_year',
  'year_cruel',
  'cruel_mayb',
  'mayb_asshol',
  'asshol_centuri',
  'centuri_walk',
  'walk_abbi',
  'abbi_room',
  'room_told',
  'told_quiet',
  'quiet_rang',
  'rang_brother',
  'brother_law',
  'law_put',
  'put_loud',
  'loud_speaker',
  'speaker_ask',
  'ask_go',
  'go_put',
  'put_ben',
  'ben_phone',
  'phone_drunk',
  'drunk_fool',
  'fool_start',
  'start_say',
  'say_shit',
  'shit_like',
  'like_think',
  'think_one',
  'one_theyv',
  'theyv_togeth',
  'togeth_long',
  'long_scare',
  'scare_alon',
  'alon_let',
  'let_hear',
  'hear_everyth',
  'everyth_lie',
  'lie_felt',
  'felt_like',
  'like_monster',
  'monster_start',
  'start_cri',
  'cri_abbi',
  'abbi_grab',
  'grab_phone',
  'phone_told',
  'told_one',
  'one_hour',
  'hour_get',
  'get_church',
  'church_good',
  'good_long',
  'long_stori',
  'stori_short',
  'short_ben',
  'ben_end',
  'end_church',
  'church_minut',
  'minut_later',
  'later_abbi',
  'abbi_took',
  'took_dress',
  'dress_left',
  'left_hotel',
  'hotel_alon',
  'alon_end',
  'end_left',
  'left_alter',
  'alter_went',
  'went_honeymoon',
  'honeymoon_alon',
  'alon_ive',
  'ive_disown',
  'disown_everyon',
  'everyon_expect',
  'expect_two',
  'two_sibl',
  'sibl_sister',
  'sister_get',
  'get_abbi',
  'abbi_maid',
  'maid_honour',
  'honour_collect',
  'collect_suitcas',
  'suitcas_outsid',
  'outsid_hotel',
  'hotel_mom',
  'mom_dump',
  'dump_found',
  'found_im',
  'im_full',
  'full_blame',
  'blame_ruin',
  'ruin_relationship',
  'relationship_%',
  '%_famili',
  'famili_hate',
  'ok_guy_im',
  'guy_im_extrem',
  'im_extrem_tri',
  'extrem_tri_long',
  'tri_long_ass',
  'long_ass_day',
  'ass_day_pleas',
  'day_pleas_excus',
  'pleas_excus_poor',
  'excus_poor_grammar',
  'poor_grammar_spell',
  'grammar_spell_mistak',
  'spell_mistak_begin',
  'mistak_begin_brother',
  'begin_brother_ben',
  'brother_ben_fake',
  'ben_fake_name',
  'fake_name_relationship',
  'name_relationship_abbi',
  'relationship_abbi_fake',
  'abbi_fake_name',
  'fake_name_year',
  'name_year_theyv',
  'year_theyv_engag',
  'theyv_engag_year',
  'engag_year_theyv',
  'year_theyv_nearli',
  'theyv_nearli_gotten',
  'nearli_gotten_marri',
  'gotten_marri_year',
  'marri_year_ago',
  'year_ago_month',
  'ago_month_wed',
  'month_wed_ben',
  'wed_ben_chicken',
  'ben_chicken_went',
  'chicken_went_therapi',
  'went_therapi_basic',
  'therapi_basic_dad',
  'basic_dad_left',
  'dad_left_us',
  'left_us_issu',
  'us_issu_commit',
  'issu_commit_thought',
  'commit_thought_last',
  'thought_last_year',
  'last_year_final',
  'year_final_gon',
  'final_gon_na',
  'gon_na_step',
  'na_step_abbi',
  'step_abbi_partner',
  'abbi_partner_deserv',
  'partner_deserv_seem',
  'deserv_seem_bit',
  'seem_bit_anxiou',
  'bit_anxiou_lead',
  'anxiou_lead_big',
  'lead_big_day',
  'big_day_assur',
  'day_assur_everyon',
  'assur_everyon_ok',
  'everyon_ok_today',
  'ok_today_meant',
  'today_meant_get',
  'meant_get_marri',
  'get_marri_abbi',
  'marri_abbi_us',
  'abbi_us_bridesmaid',
  'us_bridesmaid_enter',
  'bridesmaid_enter_church',
  'enter_church_ben',
  'church_ben_found',
  'ben_found_everyon',
  'found_everyon_tri',
  'everyon_tri_calm',
  'tri_calm_say',
  'calm_say_traffic',
  'say_traffic_probabl',
  'traffic_probabl_monster',
  'probabl_monster_hangov',
  'monster_hangov_well',
  'hangov_well_hour',
  'well_hour_pass',
  'hour_pass_two',
  'pass_two_three',
  'two_three_four',
  'three_four_hour',
  'four_hour_mark',
  'hour_mark_abbi',
  'mark_abbi_said',
  'abbi_said_fuck',
  'said_fuck_go',
  'fuck_go_back',
  'go_back_hotel',
  'back_hotel_call',
  'hotel_call_land',
  'call_land_famili',
  'land_famili_look',
  'famili_look_panick',
  'look_panick_nervou',
  'panick_nervou_tri',
  'nervou_tri_get',
  'tri_get_ben',
  'get_ben_groomsmen',
  'ben_groomsmen_arriv',
  'groomsmen_arriv_yet',
  'arriv_yet_brother',
  'yet_brother_brother',
  'brother_brother_law',
  'brother_law_sister',
  'law_sister_husband',
  'sister_husband_went',
  'husband_went_look',
  'went_look_think',
  'look_think_got',
  'think_got_hurt',
  'got_hurt_arrest',
  'hurt_arrest_night',
  'arrest_night_went',
  'night_went_back',
  'went_back_hotel',
  'back_hotel_broken',
  'hotel_broken_look',
  'broken_look_abbi',
  'look_abbi_drank',
  'abbi_drank_ate',
  'drank_ate_food',
  'ate_food_anoth',
  'food_anoth_hour',
  'anoth_hour_got',
  'hour_got_text',
  'got_text_brother',
  'text_brother_law',
  'brother_law_say',
  'law_say_found',
  'say_found_bar',
  'found_bar_tri',
  'bar_tri_talk',
  'tri_talk_go',
  'talk_go_wed',
  'go_wed_sister',
  'wed_sister_rang',
  'sister_rang_husband',
  'rang_husband_heard',
  'husband_heard_background',
  'heard_background_liter',
  'background_liter_act',
  'liter_act_like',
  'act_like_year',
  'like_year_old',
  'year_old_want',
  'old_want_go',
  'want_go_doctor',
  'go_doctor_honestli',
  'doctor_honestli_guy',
  'honestli_guy_enough',
  'guy_enough_stage',
  'enough_stage_mess',
  'stage_mess_girl',
  'mess_girl_long',
  'girl_long_frankli',
  'long_frankli_lead',
  'frankli_lead_someon',
  'lead_someon_along',
  'someon_along_year',
  'along_year_cruel',
  'year_cruel_mayb',
  'cruel_mayb_asshol',
  'mayb_asshol_centuri',
  'asshol_centuri_walk',
  'centuri_walk_abbi',
  'walk_abbi_room',
  'abbi_room_told',
  'room_told_quiet',
  'told_quiet_rang',
  'quiet_rang_brother',
  'rang_brother_law',
  'brother_law_put',
  'law_put_loud',
  'put_loud_speaker',
  'loud_speaker_ask',
  'speaker_ask_go',
  'ask_go_put',
  'go_put_ben',
  'put_ben_phone',
  'ben_phone_drunk',
  'phone_drunk_fool',
  'drunk_fool_start',
  'fool_start_say',
  'start_say_shit',
  'say_shit_like',
  'shit_like_think',
  'like_think_one',
  'think_one_theyv',
  'one_theyv_togeth',
  'theyv_togeth_long',
  'togeth_long_scare',
  'long_scare_alon',
  'scare_alon_let',
  'alon_let_hear',
  'let_hear_everyth',
  'hear_everyth_lie',
  'everyth_lie_felt',
  'lie_felt_like',
  'felt_like_monster',
  'like_monster_start',
  'monster_start_cri',
  'start_cri_abbi',
  'cri_abbi_grab',
  'abbi_grab_phone',
  'grab_phone_told',
  'phone_told_one',
  'told_one_hour',
  'one_hour_get',
  'hour_get_church',
  'get_church_good',
  'church_good_long',
  'good_long_stori',
  'long_stori_short',
  'stori_short_ben',
  'short_ben_end',
  'ben_end_church',
  'end_church_minut',
  'church_minut_later',
  'minut_later_abbi',
  'later_abbi_took',
  'abbi_took_dress',
  'took_dress_left',
  'dress_left_hotel',
  'left_hotel_alon',
  'hotel_alon_end',
  'alon_end_left',
  'end_left_alter',
  'left_alter_went',
  'alter_went_honeymoon',
  'went_honeymoon_alon',
  'honeymoon_alon_ive',
  'alon_ive_disown',
  'ive_disown_everyon',
  'disown_everyon_expect',
  'everyon_expect_two',
  'expect_two_sibl',
  'two_sibl_sister',
  'sibl_sister_get',
  'sister_get_abbi',
  'get_abbi_maid',
  'abbi_maid_honour',
  'maid_honour_collect',
  'honour_collect_suitcas',
  'collect_suitcas_outsid',
  'suitcas_outsid_hotel',
  'outsid_hotel_mom',
  'hotel_mom_dump',
  'mom_dump_found',
  'dump_found_im',
  'found_im_full',
  'im_full_blame',
  'full_blame_ruin',
  'blame_ruin_relationship',
  'ruin_relationship_%',
  'relationship_%_famili',
  '%_famili_hate'],
 ['sister',
  'jess',
  'marri',
  'yo',
  'stepson',
  'husband',
  'work',
  'full',
  'time',
  'sahm',
  'everi',
  'monday',
  'shed',
  'call',
  'mom',
  'get',
  'go',
  'hous',
  'watch',
  'stepkid',
  'hour',
  'live',
  'home',
  'parent',
  'ive',
  'notic',
  'routin',
  'week',
  'last',
  'week',
  'mom',
  'went',
  'town',
  'visit',
  'rel',
  'yesterday',
  'monday',
  'sister',
  'call',
  'ask',
  'come',
  'watch',
  'stepkid',
  'hour',
  'import',
  'thing',
  'said',
  'go',
  'studi',
  'also',
  'everi',
  'monday',
  'clearli',
  'import',
  'urgent',
  'insist',
  'told',
  'sorri',
  'end',
  'call',
  'went',
  'univers',
  'hour',
  'later',
  'got',
  'call',
  'brother',
  'law',
  'ask',
  'sister',
  'said',
  'idea',
  'proceed',
  'tell',
  'came',
  'home',
  'pm',
  'found',
  'son',
  'hous',
  'shock',
  'sister',
  'left',
  'stepkid',
  'could',
  'go',
  'god',
  'know',
  'told',
  'convers',
  'got',
  'angri',
  'even',
  'sister',
  'came',
  'start',
  'make',
  'scene',
  'yell',
  'bail',
  'sent',
  'text',
  'messag',
  'tell',
  'alreadi',
  'hous',
  'forc',
  'come',
  'watch',
  'stepson',
  'see',
  'fb',
  'messag',
  'til',
  'told',
  'said',
  'deliber',
  'also',
  'expos',
  'husband',
  'told',
  'shed',
  'home',
  'kid',
  'also',
  'told',
  'husband',
  'mom',
  'come',
  'everi',
  'monday',
  'morn',
  'watch',
  'kid',
  'hour',
  'caus',
  'huge',
  'fight',
  'sister',
  'yell',
  'petti',
  'selfish',
  'stir',
  'shit',
  'caus',
  'issu',
  'marriag',
  'tattl',
  'husband',
  'keep',
  'argu',
  'went',
  'room',
  'start',
  'play',
  'music',
  'dad',
  'said',
  'blame',
  'help',
  'sister',
  'reason',
  'husband',
  'conflict',
  'aita',
  'okay',
  'guy',
  'saw',
  'question',
  'ask',
  'multipl',
  'time',
  'ill',
  'put',
  'answer',
  'see',
  'brother',
  'law',
  'wife',
  'deceas',
  'brother',
  'law',
  'alway',
  'work',
  'sister',
  'call',
  'mom',
  'get',
  'come',
  'watch',
  'stepson',
  'guy',
  'ask',
  'sister',
  'goe',
  'everi',
  'monday',
  'even',
  'saw',
  'someon',
  'mention',
  'yta',
  'find',
  'know',
  'anyth',
  'idea',
  'go',
  'sister',
  'thought',
  'non',
  'busi',
  'updat',
  'guy',
  'ive',
  'decid',
  'tri',
  'find',
  'realli',
  'go',
  'jess',
  'im',
  'type',
  'snoop',
  'busi',
  'alreadi',
  'made',
  'busi',
  'turn',
  'famili',
  'someth',
  'ngl',
  'came',
  'think',
  'go',
  'get',
  'toast',
  'wrong',
  'thank',
  'good',
  'ill',
  'updat',
  'soon',
  'possibl',
  'thank',
  'sister_jess',
  'jess_marri',
  'marri_yo',
  'yo_stepson',
  'stepson_husband',
  'husband_work',
  'work_full',
  'full_time',
  'time_sahm',
  'sahm_everi',
  'everi_monday',
  'monday_shed',
  'shed_call',
  'call_mom',
  'mom_get',
  'get_go',
  'go_hous',
  'hous_watch',
  'watch_stepkid',
  'stepkid_hour',
  'hour_live',
  'live_home',
  'home_parent',
  'parent_ive',
  'ive_notic',
  'notic_routin',
  'routin_week',
  'week_last',
  'last_week',
  'week_mom',
  'mom_went',
  'went_town',
  'town_visit',
  'visit_rel',
  'rel_yesterday',
  'yesterday_monday',
  'monday_sister',
  'sister_call',
  'call_ask',
  'ask_come',
  'come_watch',
  'watch_stepkid',
  'stepkid_hour',
  'hour_import',
  'import_thing',
  'thing_said',
  'said_go',
  'go_studi',
  'studi_also',
  'also_everi',
  'everi_monday',
  'monday_clearli',
  'clearli_import',
  'import_urgent',
  'urgent_insist',
  'insist_told',
  'told_sorri',
  'sorri_end',
  'end_call',
  'call_went',
  'went_univers',
  'univers_hour',
  'hour_later',
  'later_got',
  'got_call',
  'call_brother',
  'brother_law',
  'law_ask',
  'ask_sister',
  'sister_said',
  'said_idea',
  'idea_proceed',
  'proceed_tell',
  'tell_came',
  'came_home',
  'home_pm',
  'pm_found',
  'found_son',
  'son_hous',
  'hous_shock',
  'shock_sister',
  'sister_left',
  'left_stepkid',
  'stepkid_could',
  'could_go',
  'go_god',
  'god_know',
  'know_told',
  'told_convers',
  'convers_got',
  'got_angri',
  'angri_even',
  'even_sister',
  'sister_came',
  'came_start',
  'start_make',
  'make_scene',
  'scene_yell',
  'yell_bail',
  'bail_sent',
  'sent_text',
  'text_messag',
  'messag_tell',
  'tell_alreadi',
  'alreadi_hous',
  'hous_forc',
  'forc_come',
  'come_watch',
  'watch_stepson',
  'stepson_see',
  'see_fb',
  'fb_messag',
  'messag_til',
  'til_told',
  'told_said',
  'said_deliber',
  'deliber_also',
  'also_expos',
  'expos_husband',
  'husband_told',
  'told_shed',
  'shed_home',
  'home_kid',
  'kid_also',
  'also_told',
  'told_husband',
  'husband_mom',
  'mom_come',
  'come_everi',
  'everi_monday',
  'monday_morn',
  'morn_watch',
  'watch_kid',
  'kid_hour',
  'hour_caus',
  'caus_huge',
  'huge_fight',
  'fight_sister',
  'sister_yell',
  'yell_petti',
  'petti_selfish',
  'selfish_stir',
  'stir_shit',
  'shit_caus',
  'caus_issu',
  'issu_marriag',
  'marriag_tattl',
  'tattl_husband',
  'husband_keep',
  'keep_argu',
  'argu_went',
  'went_room',
  'room_start',
  'start_play',
  'play_music',
  'music_dad',
  'dad_said',
  'said_blame',
  'blame_help',
  'help_sister',
  'sister_reason',
  'reason_husband',
  'husband_conflict',
  'conflict_aita',
  'aita_okay',
  'okay_guy',
  'guy_saw',
  'saw_question',
  'question_ask',
  'ask_multipl',
  'multipl_time',
  'time_ill',
  'ill_put',
  'put_answer',
  'answer_see',
  'see_brother',
  'brother_law',
  'law_wife',
  'wife_deceas',
  'deceas_brother',
  'brother_law',
  'law_alway',
  'alway_work',
  'work_sister',
  'sister_call',
  'call_mom',
  'mom_get',
  'get_come',
  'come_watch',
  'watch_stepson',
  'stepson_guy',
  'guy_ask',
  'ask_sister',
  'sister_goe',
  'goe_everi',
  'everi_monday',
  'monday_even',
  'even_saw',
  'saw_someon',
  'someon_mention',
  'mention_yta',
  'yta_find',
  'find_know',
  'know_anyth',
  'anyth_idea',
  'idea_go',
  'go_sister',
  'sister_thought',
  'thought_non',
  'non_busi',
  'busi_updat',
  'updat_guy',
  'guy_ive',
  'ive_decid',
  'decid_tri',
  'tri_find',
  'find_realli',
  'realli_go',
  'go_jess',
  'jess_im',
  'im_type',
  'type_snoop',
  'snoop_busi',
  'busi_alreadi',
  'alreadi_made',
  'made_busi',
  'busi_turn',
  'turn_famili',
  'famili_someth',
  'someth_ngl',
  'ngl_came',
  'came_think',
  'think_go',
  'go_get',
  'get_toast',
  'toast_wrong',
  'wrong_thank',
  'thank_good',
  'good_ill',
  'ill_updat',
  'updat_soon',
  'soon_possibl',
  'possibl_thank',
  'sister_jess_marri',
  'jess_marri_yo',
  'marri_yo_stepson',
  'yo_stepson_husband',
  'stepson_husband_work',
  'husband_work_full',
  'work_full_time',
  'full_time_sahm',
  'time_sahm_everi',
  'sahm_everi_monday',
  'everi_monday_shed',
  'monday_shed_call',
  'shed_call_mom',
  'call_mom_get',
  'mom_get_go',
  'get_go_hous',
  'go_hous_watch',
  'hous_watch_stepkid',
  'watch_stepkid_hour',
  'stepkid_hour_live',
  'hour_live_home',
  'live_home_parent',
  'home_parent_ive',
  'parent_ive_notic',
  'ive_notic_routin',
  'notic_routin_week',
  'routin_week_last',
  'week_last_week',
  'last_week_mom',
  'week_mom_went',
  'mom_went_town',
  'went_town_visit',
  'town_visit_rel',
  'visit_rel_yesterday',
  'rel_yesterday_monday',
  'yesterday_monday_sister',
  'monday_sister_call',
  'sister_call_ask',
  'call_ask_come',
  'ask_come_watch',
  'come_watch_stepkid',
  'watch_stepkid_hour',
  'stepkid_hour_import',
  'hour_import_thing',
  'import_thing_said',
  'thing_said_go',
  'said_go_studi',
  'go_studi_also',
  'studi_also_everi',
  'also_everi_monday',
  'everi_monday_clearli',
  'monday_clearli_import',
  'clearli_import_urgent',
  'import_urgent_insist',
  'urgent_insist_told',
  'insist_told_sorri',
  'told_sorri_end',
  'sorri_end_call',
  'end_call_went',
  'call_went_univers',
  'went_univers_hour',
  'univers_hour_later',
  'hour_later_got',
  'later_got_call',
  'got_call_brother',
  'call_brother_law',
  'brother_law_ask',
  'law_ask_sister',
  'ask_sister_said',
  'sister_said_idea',
  'said_idea_proceed',
  'idea_proceed_tell',
  'proceed_tell_came',
  'tell_came_home',
  'came_home_pm',
  'home_pm_found',
  'pm_found_son',
  'found_son_hous',
  'son_hous_shock',
  'hous_shock_sister',
  'shock_sister_left',
  'sister_left_stepkid',
  'left_stepkid_could',
  'stepkid_could_go',
  'could_go_god',
  'go_god_know',
  'god_know_told',
  'know_told_convers',
  'told_convers_got',
  'convers_got_angri',
  'got_angri_even',
  'angri_even_sister',
  'even_sister_came',
  'sister_came_start',
  'came_start_make',
  'start_make_scene',
  'make_scene_yell',
  'scene_yell_bail',
  'yell_bail_sent',
  'bail_sent_text',
  'sent_text_messag',
  'text_messag_tell',
  'messag_tell_alreadi',
  'tell_alreadi_hous',
  'alreadi_hous_forc',
  'hous_forc_come',
  'forc_come_watch',
  'come_watch_stepson',
  'watch_stepson_see',
  'stepson_see_fb',
  'see_fb_messag',
  'fb_messag_til',
  'messag_til_told',
  'til_told_said',
  'told_said_deliber',
  'said_deliber_also',
  'deliber_also_expos',
  'also_expos_husband',
  'expos_husband_told',
  'husband_told_shed',
  'told_shed_home',
  'shed_home_kid',
  'home_kid_also',
  'kid_also_told',
  'also_told_husband',
  'told_husband_mom',
  'husband_mom_come',
  'mom_come_everi',
  'come_everi_monday',
  'everi_monday_morn',
  'monday_morn_watch',
  'morn_watch_kid',
  'watch_kid_hour',
  'kid_hour_caus',
  'hour_caus_huge',
  'caus_huge_fight',
  'huge_fight_sister',
  'fight_sister_yell',
  'sister_yell_petti',
  'yell_petti_selfish',
  'petti_selfish_stir',
  'selfish_stir_shit',
  'stir_shit_caus',
  'shit_caus_issu',
  'caus_issu_marriag',
  'issu_marriag_tattl',
  'marriag_tattl_husband',
  'tattl_husband_keep',
  'husband_keep_argu',
  'keep_argu_went',
  'argu_went_room',
  'went_room_start',
  'room_start_play',
  'start_play_music',
  'play_music_dad',
  'music_dad_said',
  'dad_said_blame',
  'said_blame_help',
  'blame_help_sister',
  'help_sister_reason',
  'sister_reason_husband',
  'reason_husband_conflict',
  'husband_conflict_aita',
  'conflict_aita_okay',
  'aita_okay_guy',
  'okay_guy_saw',
  'guy_saw_question',
  'saw_question_ask',
  'question_ask_multipl',
  'ask_multipl_time',
  'multipl_time_ill',
  'time_ill_put',
  'ill_put_answer',
  'put_answer_see',
  'answer_see_brother',
  'see_brother_law',
  'brother_law_wife',
  'law_wife_deceas',
  'wife_deceas_brother',
  'deceas_brother_law',
  'brother_law_alway',
  'law_alway_work',
  'alway_work_sister',
  'work_sister_call',
  'sister_call_mom',
  'call_mom_get',
  'mom_get_come',
  'get_come_watch',
  'come_watch_stepson',
  'watch_stepson_guy',
  'stepson_guy_ask',
  'guy_ask_sister',
  'ask_sister_goe',
  'sister_goe_everi',
  'goe_everi_monday',
  'everi_monday_even',
  'monday_even_saw',
  'even_saw_someon',
  'saw_someon_mention',
  'someon_mention_yta',
  'mention_yta_find',
  'yta_find_know',
  'find_know_anyth',
  'know_anyth_idea',
  'anyth_idea_go',
  'idea_go_sister',
  'go_sister_thought',
  'sister_thought_non',
  'thought_non_busi',
  'non_busi_updat',
  'busi_updat_guy',
  'updat_guy_ive',
  'guy_ive_decid',
  'ive_decid_tri',
  'decid_tri_find',
  'tri_find_realli',
  'find_realli_go',
  'realli_go_jess',
  'go_jess_im',
  'jess_im_type',
  'im_type_snoop',
  'type_snoop_busi',
  'snoop_busi_alreadi',
  'busi_alreadi_made',
  'alreadi_made_busi',
  'made_busi_turn',
  'busi_turn_famili',
  'turn_famili_someth',
  'famili_someth_ngl',
  'someth_ngl_came',
  'ngl_came_think',
  'came_think_go',
  'think_go_get',
  'go_get_toast',
  'get_toast_wrong',
  'toast_wrong_thank',
  'wrong_thank_good',
  'thank_good_ill',
  'good_ill_updat',
  'ill_updat_soon',
  'updat_soon_possibl',
  'soon_possibl_thank'],
 ['met',
  'guy',
  'date',
  'app',
  'hit',
  'arrang',
  'first',
  'date',
  'thing',
  'go',
  'well',
  'sat',
  'start',
  'small',
  'chat',
  'waitress',
  'come',
  'ask',
  'us',
  'want',
  'order',
  'say',
  'want',
  'gestur',
  'order',
  'order',
  'pull',
  'think',
  'dollar',
  'tabl',
  'say',
  'tip',
  'everytim',
  'mess',
  'take',
  'away',
  'waitress',
  'look',
  'nervou',
  'immedi',
  'im',
  'sit',
  'bit',
  'shock',
  'mostli',
  'embarrass',
  'expect',
  'must',
  'new',
  'well',
  'spill',
  'drink',
  'tabl',
  'night',
  'gave',
  'us',
  'wrong',
  'food',
  'overal',
  'seem',
  'lost',
  'took',
  'away',
  'dollar',
  'ask',
  'thought',
  'tip',
  'way',
  'good',
  'idea',
  'said',
  'best',
  'way',
  'ensur',
  'good',
  'servic',
  'disagre',
  'said',
  'cant',
  'alway',
  'nice',
  'peopl',
  'respect',
  'job',
  'decid',
  'want',
  'noth',
  'call',
  'waitress',
  'get',
  'bill',
  'slap',
  'dollar',
  'bill',
  'hand',
  'got',
  'pay',
  'meal',
  'later',
  'night',
  'demand',
  'know',
  'given',
  'tip',
  'despit',
  'poor',
  'servic',
  'told',
  'decid',
  'treat',
  'livelihood',
  'like',
  'game',
  'said',
  'shell',
  'never',
  'improv',
  'servic',
  'im',
  'peopl',
  'pleaser',
  'block',
  'ive',
  'wonder',
  'ever',
  'sinc',
  'realli',
  'right',
  'thing',
  'aita',
  'met_guy',
  'guy_date',
  'date_app',
  'app_hit',
  'hit_arrang',
  'arrang_first',
  'first_date',
  'date_thing',
  'thing_go',
  'go_well',
  'well_sat',
  'sat_start',
  'start_small',
  'small_chat',
  'chat_waitress',
  'waitress_come',
  'come_ask',
  'ask_us',
  'us_want',
  'want_order',
  'order_say',
  'say_want',
  'want_gestur',
  'gestur_order',
  'order_order',
  'order_pull',
  'pull_think',
  'think_dollar',
  'dollar_tabl',
  'tabl_say',
  'say_tip',
  'tip_everytim',
  'everytim_mess',
  'mess_take',
  'take_away',
  'away_waitress',
  'waitress_look',
  'look_nervou',
  'nervou_immedi',
  'immedi_im',
  'im_sit',
  'sit_bit',
  'bit_shock',
  'shock_mostli',
  'mostli_embarrass',
  'embarrass_expect',
  'expect_must',
  'must_new',
  'new_well',
  'well_spill',
  'spill_drink',
  'drink_tabl',
  'tabl_night',
  'night_gave',
  'gave_us',
  'us_wrong',
  'wrong_food',
  'food_overal',
  'overal_seem',
  'seem_lost',
  'lost_took',
  'took_away',
  'away_dollar',
  'dollar_ask',
  'ask_thought',
  'thought_tip',
  'tip_way',
  'way_good',
  'good_idea',
  'idea_said',
  'said_best',
  'best_way',
  'way_ensur',
  'ensur_good',
  'good_servic',
  'servic_disagre',
  'disagre_said',
  'said_cant',
  'cant_alway',
  'alway_nice',
  'nice_peopl',
  'peopl_respect',
  'respect_job',
  'job_decid',
  'decid_want',
  'want_noth',
  'noth_call',
  'call_waitress',
  'waitress_get',
  'get_bill',
  'bill_slap',
  'slap_dollar',
  'dollar_bill',
  'bill_hand',
  'hand_got',
  'got_pay',
  'pay_meal',
  'meal_later',
  'later_night',
  'night_demand',
  'demand_know',
  'know_given',
  'given_tip',
  'tip_despit',
  'despit_poor',
  'poor_servic',
  'servic_told',
  'told_decid',
  'decid_treat',
  'treat_livelihood',
  'livelihood_like',
  'like_game',
  'game_said',
  'said_shell',
  'shell_never',
  'never_improv',
  'improv_servic',
  'servic_im',
  'im_peopl',
  'peopl_pleaser',
  'pleaser_block',
  'block_ive',
  'ive_wonder',
  'wonder_ever',
  'ever_sinc',
  'sinc_realli',
  'realli_right',
  'right_thing',
  'thing_aita',
  'met_guy_date',
  'guy_date_app',
  'date_app_hit',
  'app_hit_arrang',
  'hit_arrang_first',
  'arrang_first_date',
  'first_date_thing',
  'date_thing_go',
  'thing_go_well',
  'go_well_sat',
  'well_sat_start',
  'sat_start_small',
  'start_small_chat',
  'small_chat_waitress',
  'chat_waitress_come',
  'waitress_come_ask',
  'come_ask_us',
  'ask_us_want',
  'us_want_order',
  'want_order_say',
  'order_say_want',
  'say_want_gestur',
  'want_gestur_order',
  'gestur_order_order',
  'order_order_pull',
  'order_pull_think',
  'pull_think_dollar',
  'think_dollar_tabl',
  'dollar_tabl_say',
  'tabl_say_tip',
  'say_tip_everytim',
  'tip_everytim_mess',
  'everytim_mess_take',
  'mess_take_away',
  'take_away_waitress',
  'away_waitress_look',
  'waitress_look_nervou',
  'look_nervou_immedi',
  'nervou_immedi_im',
  'immedi_im_sit',
  'im_sit_bit',
  'sit_bit_shock',
  'bit_shock_mostli',
  'shock_mostli_embarrass',
  'mostli_embarrass_expect',
  'embarrass_expect_must',
  'expect_must_new',
  'must_new_well',
  'new_well_spill',
  'well_spill_drink',
  'spill_drink_tabl',
  'drink_tabl_night',
  'tabl_night_gave',
  'night_gave_us',
  'gave_us_wrong',
  'us_wrong_food',
  'wrong_food_overal',
  'food_overal_seem',
  'overal_seem_lost',
  'seem_lost_took',
  'lost_took_away',
  'took_away_dollar',
  'away_dollar_ask',
  'dollar_ask_thought',
  'ask_thought_tip',
  'thought_tip_way',
  'tip_way_good',
  'way_good_idea',
  'good_idea_said',
  'idea_said_best',
  'said_best_way',
  'best_way_ensur',
  'way_ensur_good',
  'ensur_good_servic',
  'good_servic_disagre',
  'servic_disagre_said',
  'disagre_said_cant',
  'said_cant_alway',
  'cant_alway_nice',
  'alway_nice_peopl',
  'nice_peopl_respect',
  'peopl_respect_job',
  'respect_job_decid',
  'job_decid_want',
  'decid_want_noth',
  'want_noth_call',
  'noth_call_waitress',
  'call_waitress_get',
  'waitress_get_bill',
  'get_bill_slap',
  'bill_slap_dollar',
  'slap_dollar_bill',
  'dollar_bill_hand',
  'bill_hand_got',
  'hand_got_pay',
  'got_pay_meal',
  'pay_meal_later',
  'meal_later_night',
  'later_night_demand',
  'night_demand_know',
  'demand_know_given',
  'know_given_tip',
  'given_tip_despit',
  'tip_despit_poor',
  'despit_poor_servic',
  'poor_servic_told',
  'servic_told_decid',
  'told_decid_treat',
  'decid_treat_livelihood',
  'treat_livelihood_like',
  'livelihood_like_game',
  'like_game_said',
  'game_said_shell',
  'said_shell_never',
  'shell_never_improv',
  'never_improv_servic',
  'improv_servic_im',
  'servic_im_peopl',
  'im_peopl_pleaser',
  'peopl_pleaser_block',
  'pleaser_block_ive',
  'block_ive_wonder',
  'ive_wonder_ever',
  'wonder_ever_sinc',
  'ever_sinc_realli',
  'sinc_realli_right',
  'realli_right_thing',
  'right_thing_aita'],
 ['date',
  'boyfriend',
  'jake',
  'sinc',
  'freshmen',
  'year',
  'colleg',
  'last',
  'year',
  'undergrad',
  'decid',
  'rent',
  'apart',
  'togeth',
  'split',
  'everyth',
  'includ',
  'util',
  'groceri',
  'rent',
  'continu',
  'live',
  'togeth',
  'town',
  'colleg',
  'graduat',
  'recent',
  'got',
  'job',
  'chicago',
  'current',
  'live',
  'downtown',
  'dad',
  'work',
  'real',
  'estat',
  'multipl',
  'invest',
  'properti',
  'dad',
  'gener',
  'allow',
  'live',
  'one',
  'properti',
  'rent',
  'free',
  'said',
  'boyfriend',
  'would',
  'pay',
  '$',
  'month',
  'rent',
  'dad',
  'protect',
  'noth',
  'kind',
  'boyfriend',
  'dad',
  'reason',
  'make',
  'boyfriend',
  'pay',
  'rent',
  'want',
  'sure',
  'boyfriend',
  'free',
  'place',
  'live',
  'keep',
  'mind',
  'dad',
  'rent',
  'apart',
  'tenant',
  'would',
  'charg',
  '$',
  'month',
  'rent',
  'ritzi',
  'build',
  'middl',
  'downtown',
  'chicago',
  'boyfriend',
  'mad',
  'ask',
  'half',
  '$',
  'rent',
  'explain',
  'pay',
  'rent',
  'dad',
  'charg',
  'say',
  'split',
  'rent',
  'past',
  'year',
  'would',
  'stop',
  'rent',
  'colleg',
  'town',
  '$',
  'pay',
  '$',
  'month',
  'apart',
  'chicago',
  'significantli',
  'nicer',
  'pay',
  '$',
  'less',
  'month',
  'colleg',
  'idea',
  'dad',
  'charg',
  'rent',
  'charg',
  'boyfriend',
  'crazi',
  'suck',
  'pay',
  'half',
  'afford',
  'edit',
  'jake',
  'still',
  'split',
  'util',
  'groceri',
  'go',
  'date',
  'night',
  'switch',
  'pay',
  'pay',
  'one',
  'week',
  'ill',
  'pay',
  'next',
  'date_boyfriend',
  'boyfriend_jake',
  'jake_sinc',
  'sinc_freshmen',
  'freshmen_year',
  'year_colleg',
  'colleg_last',
  'last_year',
  'year_undergrad',
  'undergrad_decid',
  'decid_rent',
  'rent_apart',
  'apart_togeth',
  'togeth_split',
  'split_everyth',
  'everyth_includ',
  'includ_util',
  'util_groceri',
  'groceri_rent',
  'rent_continu',
  'continu_live',
  'live_togeth',
  'togeth_town',
  'town_colleg',
  'colleg_graduat',
  'graduat_recent',
  'recent_got',
  'got_job',
  'job_chicago',
  'chicago_current',
  'current_live',
  'live_downtown',
  'downtown_dad',
  'dad_work',
  'work_real',
  'real_estat',
  'estat_multipl',
  'multipl_invest',
  'invest_properti',
  'properti_dad',
  'dad_gener',
  'gener_allow',
  'allow_live',
  'live_one',
  'one_properti',
  'properti_rent',
  'rent_free',
  'free_said',
  'said_boyfriend',
  'boyfriend_would',
  'would_pay',
  'pay_$',
  '$_month',
  'month_rent',
  'rent_dad',
  'dad_protect',
  'protect_noth',
  'noth_kind',
  'kind_boyfriend',
  'boyfriend_dad',
  'dad_reason',
  'reason_make',
  'make_boyfriend',
  'boyfriend_pay',
  'pay_rent',
  'rent_want',
  'want_sure',
  'sure_boyfriend',
  'boyfriend_free',
  'free_place',
  'place_live',
  'live_keep',
  'keep_mind',
  'mind_dad',
  'dad_rent',
  'rent_apart',
  'apart_tenant',
  'tenant_would',
  'would_charg',
  'charg_$',
  '$_month',
  'month_rent',
  'rent_ritzi',
  'ritzi_build',
  'build_middl',
  'middl_downtown',
  'downtown_chicago',
  'chicago_boyfriend',
  'boyfriend_mad',
  'mad_ask',
  'ask_half',
  'half_$',
  '$_rent',
  'rent_explain',
  'explain_pay',
  'pay_rent',
  'rent_dad',
  'dad_charg',
  'charg_say',
  'say_split',
  'split_rent',
  'rent_past',
  'past_year',
  'year_would',
  'would_stop',
  'stop_rent',
  'rent_colleg',
  'colleg_town',
  'town_$',
  '$_pay',
  'pay_$',
  '$_month',
  'month_apart',
  'apart_chicago',
  'chicago_significantli',
  'significantli_nicer',
  'nicer_pay',
  'pay_$',
  '$_less',
  'less_month',
  'month_colleg',
  'colleg_idea',
  'idea_dad',
  'dad_charg',
  'charg_rent',
  'rent_charg',
  'charg_boyfriend',
  'boyfriend_crazi',
  'crazi_suck',
  'suck_pay',
  'pay_half',
  'half_afford',
  'afford_edit',
  'edit_jake',
  'jake_still',
  'still_split',
  'split_util',
  'util_groceri',
  'groceri_go',
  'go_date',
  'date_night',
  'night_switch',
  'switch_pay',
  'pay_pay',
  'pay_one',
  'one_week',
  'week_ill',
  'ill_pay',
  'pay_next',
  'date_boyfriend_jake',
  'boyfriend_jake_sinc',
  'jake_sinc_freshmen',
  'sinc_freshmen_year',
  'freshmen_year_colleg',
  'year_colleg_last',
  'colleg_last_year',
  'last_year_undergrad',
  'year_undergrad_decid',
  'undergrad_decid_rent',
  'decid_rent_apart',
  'rent_apart_togeth',
  'apart_togeth_split',
  'togeth_split_everyth',
  'split_everyth_includ',
  'everyth_includ_util',
  'includ_util_groceri',
  'util_groceri_rent',
  'groceri_rent_continu',
  'rent_continu_live',
  'continu_live_togeth',
  'live_togeth_town',
  'togeth_town_colleg',
  'town_colleg_graduat',
  'colleg_graduat_recent',
  'graduat_recent_got',
  'recent_got_job',
  'got_job_chicago',
  'job_chicago_current',
  'chicago_current_live',
  'current_live_downtown',
  'live_downtown_dad',
  'downtown_dad_work',
  'dad_work_real',
  'work_real_estat',
  'real_estat_multipl',
  'estat_multipl_invest',
  'multipl_invest_properti',
  'invest_properti_dad',
  'properti_dad_gener',
  'dad_gener_allow',
  'gener_allow_live',
  'allow_live_one',
  'live_one_properti',
  'one_properti_rent',
  'properti_rent_free',
  'rent_free_said',
  'free_said_boyfriend',
  'said_boyfriend_would',
  'boyfriend_would_pay',
  'would_pay_$',
  'pay_$_month',
  '$_month_rent',
  'month_rent_dad',
  'rent_dad_protect',
  'dad_protect_noth',
  'protect_noth_kind',
  'noth_kind_boyfriend',
  'kind_boyfriend_dad',
  'boyfriend_dad_reason',
  'dad_reason_make',
  'reason_make_boyfriend',
  'make_boyfriend_pay',
  'boyfriend_pay_rent',
  'pay_rent_want',
  'rent_want_sure',
  'want_sure_boyfriend',
  'sure_boyfriend_free',
  'boyfriend_free_place',
  'free_place_live',
  'place_live_keep',
  'live_keep_mind',
  'keep_mind_dad',
  'mind_dad_rent',
  'dad_rent_apart',
  'rent_apart_tenant',
  'apart_tenant_would',
  'tenant_would_charg',
  'would_charg_$',
  'charg_$_month',
  '$_month_rent',
  'month_rent_ritzi',
  'rent_ritzi_build',
  'ritzi_build_middl',
  'build_middl_downtown',
  'middl_downtown_chicago',
  'downtown_chicago_boyfriend',
  'chicago_boyfriend_mad',
  'boyfriend_mad_ask',
  'mad_ask_half',
  'ask_half_$',
  'half_$_rent',
  '$_rent_explain',
  'rent_explain_pay',
  'explain_pay_rent',
  'pay_rent_dad',
  'rent_dad_charg',
  'dad_charg_say',
  'charg_say_split',
  'say_split_rent',
  'split_rent_past',
  'rent_past_year',
  'past_year_would',
  'year_would_stop',
  'would_stop_rent',
  'stop_rent_colleg',
  'rent_colleg_town',
  'colleg_town_$',
  'town_$_pay',
  '$_pay_$',
  'pay_$_month',
  '$_month_apart',
  'month_apart_chicago',
  'apart_chicago_significantli',
  'chicago_significantli_nicer',
  'significantli_nicer_pay',
  'nicer_pay_$',
  'pay_$_less',
  '$_less_month',
  'less_month_colleg',
  'month_colleg_idea',
  'colleg_idea_dad',
  'idea_dad_charg',
  'dad_charg_rent',
  'charg_rent_charg',
  'rent_charg_boyfriend',
  'charg_boyfriend_crazi',
  'boyfriend_crazi_suck',
  'crazi_suck_pay',
  'suck_pay_half',
  'pay_half_afford',
  'half_afford_edit',
  'afford_edit_jake',
  'edit_jake_still',
  'jake_still_split',
  'still_split_util',
  'split_util_groceri',
  'util_groceri_go',
  'groceri_go_date',
  'go_date_night',
  'date_night_switch',
  'night_switch_pay',
  'switch_pay_pay',
  'pay_pay_one',
  'pay_one_week',
  'one_week_ill',
  'week_ill_pay',
  'ill_pay_next'],
 ['husband',
  'mickey',
  'love',
  'mom',
  'cook',
  'alway',
  'prais',
  'food',
  'make',
  'even',
  'mention',
  'groom',
  'speech',
  'wed',
  'consid',
  'good',
  'cook',
  'fact',
  'im',
  'go',
  'say',
  'im',
  'even',
  'better',
  'mom',
  'problem',
  'even',
  'want',
  'tri',
  'cook',
  'give',
  'chanc',
  'prove',
  'thought',
  'would',
  'chang',
  'marriag',
  'month',
  'later',
  'noth',
  'chang',
  'eat',
  'eat',
  'im',
  'cook',
  'request',
  'mom',
  'send',
  'meal',
  'everyday',
  'eat',
  'dinner',
  'get',
  'work',
  'except',
  'weekend',
  'go',
  'hous',
  'eat',
  'breakfast',
  'lunch',
  'dinner',
  'dessert',
  'everi',
  'singl',
  'day',
  'hed',
  'come',
  'home',
  'ask',
  'mom',
  'sent',
  'meal',
  'grew',
  'irrit',
  'whenev',
  'tri',
  'offer',
  'tast',
  'wast',
  'food',
  'cook',
  'hed',
  'lay',
  'bed',
  'say',
  'full',
  'came',
  'idea',
  'cook',
  'meal',
  'mom',
  'sent',
  'day',
  'put',
  'asid',
  'til',
  'got',
  'home',
  'ask',
  'mom',
  'sent',
  'meal',
  'dinner',
  'said',
  'ye',
  'serv',
  'version',
  'meal',
  '-',
  'notic',
  'anyth',
  'differ',
  'ate',
  'whole',
  'thing',
  'hasit',
  'sat',
  'across',
  'ask',
  'question',
  'good',
  'meal',
  'went',
  'prais',
  'say',
  'perfect',
  'except',
  'need',
  'long',
  'day',
  'work',
  'smile',
  'said',
  'welcom',
  'froze',
  'look',
  'minut',
  'look',
  'plate',
  'back',
  'said',
  'wait',
  'made',
  'said',
  'hand',
  'scratch',
  'face',
  'suddenli',
  'went',
  'red',
  'got',
  'upset',
  'said',
  'cool',
  'told',
  'never',
  'even',
  'gave',
  'chanc',
  'show',
  'good',
  'cook',
  'probabl',
  'use',
  'mom',
  'cook',
  'reject',
  'altern',
  'unfair',
  'said',
  'lie',
  'basic',
  'trick',
  'eat',
  'food',
  'idea',
  'came',
  'said',
  'like',
  'admit',
  'good',
  'issu',
  'got',
  'seat',
  'threw',
  'napkin',
  'said',
  'unbeliev',
  'walk',
  'got',
  'quiet',
  'rest',
  'even',
  'post',
  'fb',
  'vagu',
  'post',
  'trick',
  'eat',
  'someon',
  'food',
  'like',
  'felt',
  'guilti',
  'bad',
  'think',
  'mayb',
  'realli',
  'done',
  'frusrtat',
  'kept',
  'turn',
  'everi',
  'meal',
  'tri',
  'cook',
  'say',
  'thank',
  'prefer',
  'mom',
  'food',
  'aita',
  'husband_mickey',
  'mickey_love',
  'love_mom',
  'mom_cook',
  'cook_alway',
  'alway_prais',
  'prais_food',
  'food_make',
  'make_even',
  'even_mention',
  'mention_groom',
  'groom_speech',
  'speech_wed',
  'wed_consid',
  'consid_good',
  'good_cook',
  'cook_fact',
  'fact_im',
  'im_go',
  'go_say',
  'say_im',
  'im_even',
  'even_better',
  'better_mom',
  'mom_problem',
  'problem_even',
  'even_want',
  'want_tri',
  'tri_cook',
  'cook_give',
  'give_chanc',
  'chanc_prove',
  'prove_thought',
  'thought_would',
  'would_chang',
  'chang_marriag',
  'marriag_month',
  'month_later',
  'later_noth',
  'noth_chang',
  'chang_eat',
  'eat_eat',
  'eat_im',
  'im_cook',
  'cook_request',
  'request_mom',
  'mom_send',
  'send_meal',
  'meal_everyday',
  'everyday_eat',
  'eat_dinner',
  'dinner_get',
  'get_work',
  'work_except',
  'except_weekend',
  'weekend_go',
  'go_hous',
  'hous_eat',
  'eat_breakfast',
  'breakfast_lunch',
  'lunch_dinner',
  'dinner_dessert',
  'dessert_everi',
  'everi_singl',
  'singl_day',
  'day_hed',
  'hed_come',
  'come_home',
  'home_ask',
  'ask_mom',
  'mom_sent',
  'sent_meal',
  'meal_grew',
  'grew_irrit',
  'irrit_whenev',
  'whenev_tri',
  'tri_offer',
  'offer_tast',
  'tast_wast',
  'wast_food',
  'food_cook',
  'cook_hed',
  'hed_lay',
  'lay_bed',
  'bed_say',
  'say_full',
  'full_came',
  'came_idea',
  'idea_cook',
  'cook_meal',
  'meal_mom',
  'mom_sent',
  'sent_day',
  'day_put',
  'put_asid',
  'asid_til',
  'til_got',
  'got_home',
  'home_ask',
  'ask_mom',
  'mom_sent',
  'sent_meal',
  'meal_dinner',
  'dinner_said',
  'said_ye',
  'ye_serv',
  'serv_version',
  'version_meal',
  'meal_-',
  '-_notic',
  'notic_anyth',
  'anyth_differ',
  'differ_ate',
  'ate_whole',
  'whole_thing',
  'thing_hasit',
  'hasit_sat',
  'sat_across',
  'across_ask',
  'ask_question',
  'question_good',
  'good_meal',
  'meal_went',
  'went_prais',
  'prais_say',
  'say_perfect',
  'perfect_except',
  'except_need',
  'need_long',
  'long_day',
  'day_work',
  'work_smile',
  'smile_said',
  'said_welcom',
  'welcom_froze',
  'froze_look',
  'look_minut',
  'minut_look',
  'look_plate',
  'plate_back',
  'back_said',
  'said_wait',
  'wait_made',
  'made_said',
  'said_hand',
  'hand_scratch',
  'scratch_face',
  'face_suddenli',
  'suddenli_went',
  'went_red',
  'red_got',
  'got_upset',
  'upset_said',
  'said_cool',
  'cool_told',
  'told_never',
  'never_even',
  'even_gave',
  'gave_chanc',
  'chanc_show',
  'show_good',
  'good_cook',
  'cook_probabl',
  'probabl_use',
  'use_mom',
  'mom_cook',
  'cook_reject',
  'reject_altern',
  'altern_unfair',
  'unfair_said',
  'said_lie',
  'lie_basic',
  'basic_trick',
  'trick_eat',
  'eat_food',
  'food_idea',
  'idea_came',
  'came_said',
  'said_like',
  'like_admit',
  'admit_good',
  'good_issu',
  'issu_got',
  'got_seat',
  'seat_threw',
  'threw_napkin',
  'napkin_said',
  'said_unbeliev',
  'unbeliev_walk',
  'walk_got',
  'got_quiet',
  'quiet_rest',
  'rest_even',
  'even_post',
  'post_fb',
  'fb_vagu',
  'vagu_post',
  'post_trick',
  'trick_eat',
  'eat_someon',
  'someon_food',
  'food_like',
  'like_felt',
  'felt_guilti',
  'guilti_bad',
  'bad_think',
  'think_mayb',
  'mayb_realli',
  'realli_done',
  'done_frusrtat',
  'frusrtat_kept',
  'kept_turn',
  'turn_everi',
  'everi_meal',
  'meal_tri',
  'tri_cook',
  'cook_say',
  'say_thank',
  'thank_prefer',
  'prefer_mom',
  'mom_food',
  'food_aita',
  'husband_mickey_love',
  'mickey_love_mom',
  'love_mom_cook',
  'mom_cook_alway',
  'cook_alway_prais',
  'alway_prais_food',
  'prais_food_make',
  'food_make_even',
  'make_even_mention',
  'even_mention_groom',
  'mention_groom_speech',
  'groom_speech_wed',
  'speech_wed_consid',
  'wed_consid_good',
  'consid_good_cook',
  'good_cook_fact',
  'cook_fact_im',
  'fact_im_go',
  'im_go_say',
  'go_say_im',
  'say_im_even',
  'im_even_better',
  'even_better_mom',
  'better_mom_problem',
  'mom_problem_even',
  'problem_even_want',
  'even_want_tri',
  'want_tri_cook',
  'tri_cook_give',
  'cook_give_chanc',
  'give_chanc_prove',
  'chanc_prove_thought',
  'prove_thought_would',
  'thought_would_chang',
  'would_chang_marriag',
  'chang_marriag_month',
  'marriag_month_later',
  'month_later_noth',
  'later_noth_chang',
  'noth_chang_eat',
  'chang_eat_eat',
  'eat_eat_im',
  'eat_im_cook',
  'im_cook_request',
  'cook_request_mom',
  'request_mom_send',
  'mom_send_meal',
  'send_meal_everyday',
  'meal_everyday_eat',
  'everyday_eat_dinner',
  'eat_dinner_get',
  'dinner_get_work',
  'get_work_except',
  'work_except_weekend',
  'except_weekend_go',
  'weekend_go_hous',
  'go_hous_eat',
  'hous_eat_breakfast',
  'eat_breakfast_lunch',
  'breakfast_lunch_dinner',
  'lunch_dinner_dessert',
  'dinner_dessert_everi',
  'dessert_everi_singl',
  'everi_singl_day',
  'singl_day_hed',
  'day_hed_come',
  'hed_come_home',
  'come_home_ask',
  'home_ask_mom',
  'ask_mom_sent',
  'mom_sent_meal',
  'sent_meal_grew',
  'meal_grew_irrit',
  'grew_irrit_whenev',
  'irrit_whenev_tri',
  'whenev_tri_offer',
  'tri_offer_tast',
  'offer_tast_wast',
  'tast_wast_food',
  'wast_food_cook',
  'food_cook_hed',
  'cook_hed_lay',
  'hed_lay_bed',
  'lay_bed_say',
  'bed_say_full',
  'say_full_came',
  'full_came_idea',
  'came_idea_cook',
  'idea_cook_meal',
  'cook_meal_mom',
  'meal_mom_sent',
  'mom_sent_day',
  'sent_day_put',
  'day_put_asid',
  'put_asid_til',
  'asid_til_got',
  'til_got_home',
  'got_home_ask',
  'home_ask_mom',
  'ask_mom_sent',
  'mom_sent_meal',
  'sent_meal_dinner',
  'meal_dinner_said',
  'dinner_said_ye',
  'said_ye_serv',
  'ye_serv_version',
  'serv_version_meal',
  'version_meal_-',
  'meal_-_notic',
  '-_notic_anyth',
  'notic_anyth_differ',
  'anyth_differ_ate',
  'differ_ate_whole',
  'ate_whole_thing',
  'whole_thing_hasit',
  'thing_hasit_sat',
  'hasit_sat_across',
  'sat_across_ask',
  'across_ask_question',
  'ask_question_good',
  'question_good_meal',
  'good_meal_went',
  'meal_went_prais',
  'went_prais_say',
  'prais_say_perfect',
  'say_perfect_except',
  'perfect_except_need',
  'except_need_long',
  'need_long_day',
  'long_day_work',
  'day_work_smile',
  'work_smile_said',
  'smile_said_welcom',
  'said_welcom_froze',
  'welcom_froze_look',
  'froze_look_minut',
  'look_minut_look',
  'minut_look_plate',
  'look_plate_back',
  'plate_back_said',
  'back_said_wait',
  'said_wait_made',
  'wait_made_said',
  'made_said_hand',
  'said_hand_scratch',
  'hand_scratch_face',
  'scratch_face_suddenli',
  'face_suddenli_went',
  'suddenli_went_red',
  'went_red_got',
  'red_got_upset',
  'got_upset_said',
  'upset_said_cool',
  'said_cool_told',
  'cool_told_never',
  'told_never_even',
  'never_even_gave',
  'even_gave_chanc',
  'gave_chanc_show',
  'chanc_show_good',
  'show_good_cook',
  'good_cook_probabl',
  'cook_probabl_use',
  'probabl_use_mom',
  'use_mom_cook',
  'mom_cook_reject',
  'cook_reject_altern',
  'reject_altern_unfair',
  'altern_unfair_said',
  'unfair_said_lie',
  'said_lie_basic',
  'lie_basic_trick',
  'basic_trick_eat',
  'trick_eat_food',
  'eat_food_idea',
  'food_idea_came',
  'idea_came_said',
  'came_said_like',
  'said_like_admit',
  'like_admit_good',
  'admit_good_issu',
  'good_issu_got',
  'issu_got_seat',
  'got_seat_threw',
  'seat_threw_napkin',
  'threw_napkin_said',
  'napkin_said_unbeliev',
  'said_unbeliev_walk',
  'unbeliev_walk_got',
  'walk_got_quiet',
  'got_quiet_rest',
  'quiet_rest_even',
  'rest_even_post',
  'even_post_fb',
  'post_fb_vagu',
  'fb_vagu_post',
  'vagu_post_trick',
  'post_trick_eat',
  'trick_eat_someon',
  'eat_someon_food',
  'someon_food_like',
  'food_like_felt',
  'like_felt_guilti',
  'felt_guilti_bad',
  'guilti_bad_think',
  'bad_think_mayb',
  'think_mayb_realli',
  'mayb_realli_done',
  'realli_done_frusrtat',
  'done_frusrtat_kept',
  'frusrtat_kept_turn',
  'kept_turn_everi',
  'turn_everi_meal',
  'everi_meal_tri',
  'meal_tri_cook',
  'tri_cook_say',
  'cook_say_thank',
  'say_thank_prefer',
  'thank_prefer_mom',
  'prefer_mom_food',
  'mom_food_aita'],
 ['start',
  'want',
  'say',
  'husband',
  'old',
  'friend',
  'known',
  'sinc',
  'highschool',
  'theyr',
  'inseper',
  'spend',
  'entir',
  'week',
  'togeth',
  'like',
  'theyr',
  'realli',
  'realli',
  'close',
  'husband',
  'struggl',
  'fertil',
  'issu',
  'year',
  'recent',
  'start',
  'new',
  'method',
  'ivf',
  'hope',
  'get',
  'least',
  'one',
  'child',
  'togeth',
  'note',
  'save',
  'major',
  'treatment',
  'husband',
  'paid',
  '-',
  'thousand',
  'save',
  'anoth',
  'round',
  'huge',
  'disappoint',
  'heartbreak',
  'fail',
  'first',
  'time',
  'goe',
  'time',
  'id',
  'put',
  'money',
  'includ',
  'dad',
  'inhert',
  'husband',
  'pay',
  'cent',
  'last',
  'week',
  'found',
  'secretli',
  'pull',
  'total',
  'complet',
  'utterli',
  'shock',
  'confront',
  'casual',
  'remind',
  'mani',
  'time',
  'best',
  'friend',
  'complain',
  'old',
  'junk',
  'car',
  'decid',
  'lend',
  'buy',
  'decent',
  'car',
  'argument',
  'friend',
  'wouldv',
  'done',
  'beyond',
  'livid',
  'ask',
  'realli',
  'thought',
  'okay',
  'said',
  'worri',
  'guarante',
  'friend',
  'pay',
  'us',
  'back',
  'time',
  'lost',
  'immedi',
  'demand',
  'friend',
  'send',
  'money',
  'back',
  'threaten',
  'polic',
  'involv',
  'case',
  'refus',
  'friend',
  'immedi',
  'return',
  'money',
  'told',
  'husband',
  'polic',
  'thing',
  'husband',
  'came',
  'home',
  'yell',
  'call',
  'unhing',
  'selfish',
  'told',
  'save',
  'moneyus',
  'inherit',
  'treatment',
  'contribut',
  'noth',
  'even',
  'though',
  'togeth',
  'correct',
  'say',
  'im',
  'one',
  'problem',
  'thought',
  'fair',
  'make',
  'pay',
  'ivf',
  'hurt',
  'badli',
  'argu',
  'anymor',
  'went',
  'stay',
  'friend',
  'constantli',
  'shame',
  'treat',
  'polic',
  'invovl',
  'like',
  'stole',
  'someth',
  'start_want',
  'want_say',
  'say_husband',
  'husband_old',
  'old_friend',
  'friend_known',
  'known_sinc',
  'sinc_highschool',
  'highschool_theyr',
  'theyr_inseper',
  'inseper_spend',
  'spend_entir',
  'entir_week',
  'week_togeth',
  'togeth_like',
  'like_theyr',
  'theyr_realli',
  'realli_realli',
  'realli_close',
  'close_husband',
  'husband_struggl',
  'struggl_fertil',
  'fertil_issu',
  'issu_year',
  'year_recent',
  'recent_start',
  'start_new',
  'new_method',
  'method_ivf',
  'ivf_hope',
  'hope_get',
  'get_least',
  'least_one',
  'one_child',
  'child_togeth',
  'togeth_note',
  'note_save',
  'save_major',
  'major_treatment',
  'treatment_husband',
  'husband_paid',
  'paid_-',
  '-_thousand',
  'thousand_save',
  'save_anoth',
  'anoth_round',
  'round_huge',
  'huge_disappoint',
  'disappoint_heartbreak',
  'heartbreak_fail',
  'fail_first',
  'first_time',
  'time_goe',
  'goe_time',
  'time_id',
  'id_put',
  'put_money',
  'money_includ',
  'includ_dad',
  'dad_inhert',
  'inhert_husband',
  'husband_pay',
  'pay_cent',
  'cent_last',
  'last_week',
  'week_found',
  'found_secretli',
  'secretli_pull',
  'pull_total',
  'total_complet',
  'complet_utterli',
  'utterli_shock',
  'shock_confront',
  'confront_casual',
  'casual_remind',
  'remind_mani',
  'mani_time',
  'time_best',
  'best_friend',
  'friend_complain',
  'complain_old',
  'old_junk',
  'junk_car',
  'car_decid',
  'decid_lend',
  'lend_buy',
  'buy_decent',
  'decent_car',
  'car_argument',
  'argument_friend',
  'friend_wouldv',
  'wouldv_done',
  'done_beyond',
  'beyond_livid',
  'livid_ask',
  'ask_realli',
  'realli_thought',
  'thought_okay',
  'okay_said',
  'said_worri',
  'worri_guarante',
  'guarante_friend',
  'friend_pay',
  'pay_us',
  'us_back',
  'back_time',
  'time_lost',
  'lost_immedi',
  'immedi_demand',
  'demand_friend',
  'friend_send',
  'send_money',
  'money_back',
  'back_threaten',
  'threaten_polic',
  'polic_involv',
  'involv_case',
  'case_refus',
  'refus_friend',
  'friend_immedi',
  'immedi_return',
  'return_money',
  'money_told',
  'told_husband',
  'husband_polic',
  'polic_thing',
  'thing_husband',
  'husband_came',
  'came_home',
  'home_yell',
  'yell_call',
  'call_unhing',
  'unhing_selfish',
  'selfish_told',
  'told_save',
  'save_moneyus',
  'moneyus_inherit',
  'inherit_treatment',
  'treatment_contribut',
  'contribut_noth',
  'noth_even',
  'even_though',
  'though_togeth',
  'togeth_correct',
  'correct_say',
  'say_im',
  'im_one',
  'one_problem',
  'problem_thought',
  'thought_fair',
  'fair_make',
  'make_pay',
  'pay_ivf',
  'ivf_hurt',
  'hurt_badli',
  'badli_argu',
  'argu_anymor',
  'anymor_went',
  'went_stay',
  'stay_friend',
  'friend_constantli',
  'constantli_shame',
  'shame_treat',
  'treat_polic',
  'polic_invovl',
  'invovl_like',
  'like_stole',
  'stole_someth',
  'start_want_say',
  'want_say_husband',
  'say_husband_old',
  'husband_old_friend',
  'old_friend_known',
  'friend_known_sinc',
  'known_sinc_highschool',
  'sinc_highschool_theyr',
  'highschool_theyr_inseper',
  'theyr_inseper_spend',
  'inseper_spend_entir',
  'spend_entir_week',
  'entir_week_togeth',
  'week_togeth_like',
  'togeth_like_theyr',
  'like_theyr_realli',
  'theyr_realli_realli',
  'realli_realli_close',
  'realli_close_husband',
  'close_husband_struggl',
  'husband_struggl_fertil',
  'struggl_fertil_issu',
  'fertil_issu_year',
  'issu_year_recent',
  'year_recent_start',
  'recent_start_new',
  'start_new_method',
  'new_method_ivf',
  'method_ivf_hope',
  'ivf_hope_get',
  'hope_get_least',
  'get_least_one',
  'least_one_child',
  'one_child_togeth',
  'child_togeth_note',
  'togeth_note_save',
  'note_save_major',
  'save_major_treatment',
  'major_treatment_husband',
  'treatment_husband_paid',
  'husband_paid_-',
  'paid_-_thousand',
  '-_thousand_save',
  'thousand_save_anoth',
  'save_anoth_round',
  'anoth_round_huge',
  'round_huge_disappoint',
  'huge_disappoint_heartbreak',
  'disappoint_heartbreak_fail',
  'heartbreak_fail_first',
  'fail_first_time',
  'first_time_goe',
  'time_goe_time',
  'goe_time_id',
  'time_id_put',
  'id_put_money',
  'put_money_includ',
  'money_includ_dad',
  'includ_dad_inhert',
  'dad_inhert_husband',
  'inhert_husband_pay',
  'husband_pay_cent',
  'pay_cent_last',
  'cent_last_week',
  'last_week_found',
  'week_found_secretli',
  'found_secretli_pull',
  'secretli_pull_total',
  'pull_total_complet',
  'total_complet_utterli',
  'complet_utterli_shock',
  'utterli_shock_confront',
  'shock_confront_casual',
  'confront_casual_remind',
  'casual_remind_mani',
  'remind_mani_time',
  'mani_time_best',
  'time_best_friend',
  'best_friend_complain',
  'friend_complain_old',
  'complain_old_junk',
  'old_junk_car',
  'junk_car_decid',
  'car_decid_lend',
  'decid_lend_buy',
  'lend_buy_decent',
  'buy_decent_car',
  'decent_car_argument',
  'car_argument_friend',
  'argument_friend_wouldv',
  'friend_wouldv_done',
  'wouldv_done_beyond',
  'done_beyond_livid',
  'beyond_livid_ask',
  'livid_ask_realli',
  'ask_realli_thought',
  'realli_thought_okay',
  'thought_okay_said',
  'okay_said_worri',
  'said_worri_guarante',
  'worri_guarante_friend',
  'guarante_friend_pay',
  'friend_pay_us',
  'pay_us_back',
  'us_back_time',
  'back_time_lost',
  'time_lost_immedi',
  'lost_immedi_demand',
  'immedi_demand_friend',
  'demand_friend_send',
  'friend_send_money',
  'send_money_back',
  'money_back_threaten',
  'back_threaten_polic',
  'threaten_polic_involv',
  'polic_involv_case',
  'involv_case_refus',
  'case_refus_friend',
  'refus_friend_immedi',
  'friend_immedi_return',
  'immedi_return_money',
  'return_money_told',
  'money_told_husband',
  'told_husband_polic',
  'husband_polic_thing',
  'polic_thing_husband',
  'thing_husband_came',
  'husband_came_home',
  'came_home_yell',
  'home_yell_call',
  'yell_call_unhing',
  'call_unhing_selfish',
  'unhing_selfish_told',
  'selfish_told_save',
  'told_save_moneyus',
  'save_moneyus_inherit',
  'moneyus_inherit_treatment',
  'inherit_treatment_contribut',
  'treatment_contribut_noth',
  'contribut_noth_even',
  'noth_even_though',
  'even_though_togeth',
  'though_togeth_correct',
  'togeth_correct_say',
  'correct_say_im',
  'say_im_one',
  'im_one_problem',
  'one_problem_thought',
  'problem_thought_fair',
  'thought_fair_make',
  'fair_make_pay',
  'make_pay_ivf',
  'pay_ivf_hurt',
  'ivf_hurt_badli',
  'hurt_badli_argu',
  'badli_argu_anymor',
  'argu_anymor_went',
  'anymor_went_stay',
  'went_stay_friend',
  'stay_friend_constantli',
  'friend_constantli_shame',
  'constantli_shame_treat',
  'shame_treat_polic',
  'treat_polic_invovl',
  'polic_invovl_like',
  'invovl_like_stole',
  'like_stole_someth'],
 ['fianc',
  'year',
  'get',
  'marri',
  'end',
  'year',
  'recent',
  'move',
  'hous',
  'inherit',
  'mom',
  'hous',
  'name',
  'took',
  'lot',
  'talk',
  'convinc',
  'name',
  'titl',
  'well',
  'honestli',
  'part',
  'think',
  'good',
  'idea',
  'least',
  'right',
  'mayb',
  'marriag',
  'anyway',
  'ive',
  'decid',
  'go',
  'ahead',
  'put',
  'name',
  'titl',
  'could',
  'go',
  'ahead',
  'start',
  'contribut',
  'toward',
  'mortgag',
  'light',
  'burden',
  'littl',
  'bit',
  'weve',
  'made',
  'appoint',
  'decid',
  'form',
  'ownership',
  'base',
  'time',
  'sign',
  'deed',
  'fianc',
  'stop',
  'gave',
  'pen',
  'say',
  'pen',
  'lucki',
  'pen',
  'told',
  'use',
  'sign',
  'deed',
  'took',
  'tri',
  'sign',
  'turn',
  'empti',
  'like',
  'oh',
  'mustv',
  'forgotten',
  'laugh',
  'pull',
  'lucki',
  'pen',
  'took',
  'tri',
  'sign',
  'one',
  'empti',
  'honestli',
  'see',
  'laugh',
  'figur',
  'mess',
  'swore',
  'pull',
  'anoth',
  'one',
  'lucki',
  'pen',
  'tri',
  'one',
  'empti',
  'fianc',
  'start',
  'cackl',
  'felt',
  'humili',
  'especi',
  'gentleman',
  'next',
  'stare',
  'got',
  'piss',
  'ask',
  'said',
  'prank',
  'ask',
  'realli',
  'realli',
  'think',
  'time',
  'prank',
  'like',
  'alright',
  'use',
  'real',
  'pen',
  'push',
  'paper',
  'away',
  'said',
  'know',
  'never',
  'mind',
  'longer',
  'want',
  'deed',
  'lost',
  'complet',
  'say',
  'deal',
  'cant',
  'back',
  'like',
  'stupid',
  'joke',
  'took',
  'serious',
  'argument',
  'refus',
  'sign',
  'deed',
  'least',
  'home',
  'blew',
  'say',
  'one',
  'delay',
  'process',
  'alreadi',
  'gave',
  'real',
  'pen',
  'sign',
  'damn',
  'paper',
  'get',
  'accus',
  'look',
  'excus',
  'deed',
  'start',
  'silent',
  'treatment',
  'say',
  'noth',
  'say',
  'til',
  'paper',
  'sign',
  'realli',
  'take',
  'serious',
  'fianc_year',
  'year_get',
  'get_marri',
  'marri_end',
  'end_year',
  'year_recent',
  'recent_move',
  'move_hous',
  'hous_inherit',
  'inherit_mom',
  'mom_hous',
  'hous_name',
  'name_took',
  'took_lot',
  'lot_talk',
  'talk_convinc',
  'convinc_name',
  'name_titl',
  'titl_well',
  'well_honestli',
  'honestli_part',
  'part_think',
  'think_good',
  'good_idea',
  'idea_least',
  'least_right',
  'right_mayb',
  'mayb_marriag',
  'marriag_anyway',
  'anyway_ive',
  'ive_decid',
  'decid_go',
  'go_ahead',
  'ahead_put',
  'put_name',
  'name_titl',
  'titl_could',
  'could_go',
  'go_ahead',
  'ahead_start',
  'start_contribut',
  'contribut_toward',
  'toward_mortgag',
  'mortgag_light',
  'light_burden',
  'burden_littl',
  'littl_bit',
  'bit_weve',
  'weve_made',
  'made_appoint',
  'appoint_decid',
  'decid_form',
  'form_ownership',
  'ownership_base',
  'base_time',
  'time_sign',
  'sign_deed',
  'deed_fianc',
  'fianc_stop',
  'stop_gave',
  'gave_pen',
  'pen_say',
  'say_pen',
  'pen_lucki',
  'lucki_pen',
  'pen_told',
  'told_use',
  'use_sign',
  'sign_deed',
  'deed_took',
  'took_tri',
  'tri_sign',
  'sign_turn',
  'turn_empti',
  'empti_like',
  'like_oh',
  'oh_mustv',
  'mustv_forgotten',
  'forgotten_laugh',
  'laugh_pull',
  'pull_lucki',
  'lucki_pen',
  'pen_took',
  'took_tri',
  'tri_sign',
  'sign_one',
  'one_empti',
  'empti_honestli',
  'honestli_see',
  'see_laugh',
  'laugh_figur',
  'figur_mess',
  'mess_swore',
  'swore_pull',
  'pull_anoth',
  'anoth_one',
  'one_lucki',
  'lucki_pen',
  'pen_tri',
  'tri_one',
  'one_empti',
  'empti_fianc',
  'fianc_start',
  'start_cackl',
  'cackl_felt',
  'felt_humili',
  'humili_especi',
  'especi_gentleman',
  'gentleman_next',
  'next_stare',
  'stare_got',
  'got_piss',
  'piss_ask',
  'ask_said',
  'said_prank',
  'prank_ask',
  'ask_realli',
  'realli_realli',
  'realli_think',
  'think_time',
  'time_prank',
  'prank_like',
  'like_alright',
  'alright_use',
  'use_real',
  'real_pen',
  'pen_push',
  'push_paper',
  'paper_away',
  'away_said',
  'said_know',
  'know_never',
  'never_mind',
  'mind_longer',
  'longer_want',
  'want_deed',
  'deed_lost',
  'lost_complet',
  'complet_say',
  'say_deal',
  'deal_cant',
  'cant_back',
  'back_like',
  'like_stupid',
  'stupid_joke',
  'joke_took',
  'took_serious',
  'serious_argument',
  'argument_refus',
  'refus_sign',
  'sign_deed',
  'deed_least',
  'least_home',
  'home_blew',
  'blew_say',
  'say_one',
  'one_delay',
  'delay_process',
  'process_alreadi',
  'alreadi_gave',
  'gave_real',
  'real_pen',
  'pen_sign',
  'sign_damn',
  'damn_paper',
  'paper_get',
  'get_accus',
  'accus_look',
  'look_excus',
  'excus_deed',
  'deed_start',
  'start_silent',
  'silent_treatment',
  'treatment_say',
  'say_noth',
  'noth_say',
  'say_til',
  'til_paper',
  'paper_sign',
  'sign_realli',
  'realli_take',
  'take_serious',
  'fianc_year_get',
  'year_get_marri',
  'get_marri_end',
  'marri_end_year',
  'end_year_recent',
  'year_recent_move',
  'recent_move_hous',
  'move_hous_inherit',
  'hous_inherit_mom',
  'inherit_mom_hous',
  'mom_hous_name',
  'hous_name_took',
  'name_took_lot',
  'took_lot_talk',
  'lot_talk_convinc',
  'talk_convinc_name',
  'convinc_name_titl',
  'name_titl_well',
  'titl_well_honestli',
  'well_honestli_part',
  'honestli_part_think',
  'part_think_good',
  'think_good_idea',
  'good_idea_least',
  'idea_least_right',
  'least_right_mayb',
  'right_mayb_marriag',
  'mayb_marriag_anyway',
  'marriag_anyway_ive',
  'anyway_ive_decid',
  'ive_decid_go',
  'decid_go_ahead',
  'go_ahead_put',
  'ahead_put_name',
  'put_name_titl',
  'name_titl_could',
  'titl_could_go',
  'could_go_ahead',
  'go_ahead_start',
  'ahead_start_contribut',
  'start_contribut_toward',
  'contribut_toward_mortgag',
  'toward_mortgag_light',
  'mortgag_light_burden',
  'light_burden_littl',
  'burden_littl_bit',
  'littl_bit_weve',
  'bit_weve_made',
  'weve_made_appoint',
  'made_appoint_decid',
  'appoint_decid_form',
  'decid_form_ownership',
  'form_ownership_base',
  'ownership_base_time',
  'base_time_sign',
  'time_sign_deed',
  'sign_deed_fianc',
  'deed_fianc_stop',
  'fianc_stop_gave',
  'stop_gave_pen',
  'gave_pen_say',
  'pen_say_pen',
  'say_pen_lucki',
  'pen_lucki_pen',
  'lucki_pen_told',
  'pen_told_use',
  'told_use_sign',
  'use_sign_deed',
  'sign_deed_took',
  'deed_took_tri',
  'took_tri_sign',
  'tri_sign_turn',
  'sign_turn_empti',
  'turn_empti_like',
  'empti_like_oh',
  'like_oh_mustv',
  'oh_mustv_forgotten',
  'mustv_forgotten_laugh',
  'forgotten_laugh_pull',
  'laugh_pull_lucki',
  'pull_lucki_pen',
  'lucki_pen_took',
  'pen_took_tri',
  'took_tri_sign',
  'tri_sign_one',
  'sign_one_empti',
  'one_empti_honestli',
  'empti_honestli_see',
  'honestli_see_laugh',
  'see_laugh_figur',
  'laugh_figur_mess',
  'figur_mess_swore',
  'mess_swore_pull',
  'swore_pull_anoth',
  'pull_anoth_one',
  'anoth_one_lucki',
  'one_lucki_pen',
  'lucki_pen_tri',
  'pen_tri_one',
  'tri_one_empti',
  'one_empti_fianc',
  'empti_fianc_start',
  'fianc_start_cackl',
  'start_cackl_felt',
  'cackl_felt_humili',
  'felt_humili_especi',
  'humili_especi_gentleman',
  'especi_gentleman_next',
  'gentleman_next_stare',
  'next_stare_got',
  'stare_got_piss',
  'got_piss_ask',
  'piss_ask_said',
  'ask_said_prank',
  'said_prank_ask',
  'prank_ask_realli',
  'ask_realli_realli',
  'realli_realli_think',
  'realli_think_time',
  'think_time_prank',
  'time_prank_like',
  'prank_like_alright',
  'like_alright_use',
  'alright_use_real',
  'use_real_pen',
  'real_pen_push',
  'pen_push_paper',
  'push_paper_away',
  'paper_away_said',
  'away_said_know',
  'said_know_never',
  'know_never_mind',
  'never_mind_longer',
  'mind_longer_want',
  'longer_want_deed',
  'want_deed_lost',
  'deed_lost_complet',
  'lost_complet_say',
  'complet_say_deal',
  'say_deal_cant',
  'deal_cant_back',
  'cant_back_like',
  'back_like_stupid',
  'like_stupid_joke',
  'stupid_joke_took',
  'joke_took_serious',
  'took_serious_argument',
  'serious_argument_refus',
  'argument_refus_sign',
  'refus_sign_deed',
  'sign_deed_least',
  'deed_least_home',
  'least_home_blew',
  'home_blew_say',
  'blew_say_one',
  'say_one_delay',
  'one_delay_process',
  'delay_process_alreadi',
  'process_alreadi_gave',
  'alreadi_gave_real',
  'gave_real_pen',
  'real_pen_sign',
  'pen_sign_damn',
  'sign_damn_paper',
  'damn_paper_get',
  'paper_get_accus',
  'get_accus_look',
  'accus_look_excus',
  'look_excus_deed',
  'excus_deed_start',
  'deed_start_silent',
  'start_silent_treatment',
  'silent_treatment_say',
  'treatment_say_noth',
  'say_noth_say',
  'noth_say_til',
  'say_til_paper',
  'til_paper_sign',
  'paper_sign_realli',
  'sign_realli_take',
  'realli_take_serious'],
 ['sorri',
  'sentenc',
  'feel',
  'awkward',
  'nativ',
  'speaker',
  'work',
  'home',
  'job',
  'relax',
  'requir',
  'glu',
  'screen',
  'girlfriend',
  'work',
  'stress',
  'custom',
  'servic',
  'job',
  'day',
  'terribl',
  'year',
  'weve',
  'live',
  'togeth',
  'practic',
  'chore',
  'around',
  'hous',
  'tri',
  'treat',
  'like',
  'queen',
  'come',
  'back',
  'home',
  'howev',
  'one',
  'thing',
  'cant',
  'handyman',
  'matter',
  'easi',
  'task',
  'month',
  'ago',
  'bathroom',
  'door',
  'hing',
  'need',
  'replac',
  'call',
  'friend',
  'help',
  'last',
  'week',
  'lunch',
  'parent',
  'ask',
  'dad',
  'project',
  'work',
  'woodwork',
  'hobbi',
  'show',
  'progress',
  'phone',
  'suggest',
  'help',
  'last',
  'touch',
  'girlfriend',
  'told',
  'cant',
  'even',
  'replac',
  'door',
  'hing',
  'let',
  'alon',
  'help',
  'mom',
  'said',
  'everi',
  'man',
  'know',
  'fix',
  'thing',
  'around',
  'hous',
  'husband',
  'agre',
  'remaind',
  'lunch',
  'awkward',
  'like',
  'real',
  'parent',
  'disappoint',
  'huge',
  'failur',
  'left',
  'told',
  'girlfriend',
  'expect',
  'reaction',
  'instead',
  'take',
  'side',
  'said',
  'right',
  'embarrass',
  'need',
  'call',
  'friend',
  'help',
  'someth',
  'trivial',
  'remind',
  'get',
  'nervou',
  'anxiou',
  'everytim',
  'touch',
  'tool',
  'admit',
  'stupid',
  'way',
  'honest',
  'sinc',
  'start',
  'still',
  'chang',
  'mind',
  'told',
  'sinc',
  'idea',
  'man',
  'twist',
  'must',
  'share',
  'view',
  'start',
  'work',
  'version',
  'man',
  'told',
  'stop',
  'cook',
  'ill',
  'stop',
  'dish',
  'laundri',
  'clean',
  'thing',
  'would',
  'keep',
  'take',
  'trash',
  'groceri',
  'shop',
  'could',
  'focu',
  'time',
  'effort',
  'becom',
  'man',
  'sorri_sentenc',
  'sentenc_feel',
  'feel_awkward',
  'awkward_nativ',
  'nativ_speaker',
  'speaker_work',
  'work_home',
  'home_job',
  'job_relax',
  'relax_requir',
  'requir_glu',
  'glu_screen',
  'screen_girlfriend',
  'girlfriend_work',
  'work_stress',
  'stress_custom',
  'custom_servic',
  'servic_job',
  'job_day',
  'day_terribl',
  'terribl_year',
  'year_weve',
  'weve_live',
  'live_togeth',
  'togeth_practic',
  'practic_chore',
  'chore_around',
  'around_hous',
  'hous_tri',
  'tri_treat',
  'treat_like',
  'like_queen',
  'queen_come',
  'come_back',
  'back_home',
  'home_howev',
  'howev_one',
  'one_thing',
  'thing_cant',
  'cant_handyman',
  'handyman_matter',
  'matter_easi',
  'easi_task',
  'task_month',
  'month_ago',
  'ago_bathroom',
  'bathroom_door',
  'door_hing',
  'hing_need',
  'need_replac',
  'replac_call',
  'call_friend',
  'friend_help',
  'help_last',
  'last_week',
  'week_lunch',
  'lunch_parent',
  'parent_ask',
  'ask_dad',
  'dad_project',
  'project_work',
  'work_woodwork',
  'woodwork_hobbi',
  'hobbi_show',
  'show_progress',
  'progress_phone',
  'phone_suggest',
  'suggest_help',
  'help_last',
  'last_touch',
  'touch_girlfriend',
  'girlfriend_told',
  'told_cant',
  'cant_even',
  'even_replac',
  'replac_door',
  'door_hing',
  'hing_let',
  'let_alon',
  'alon_help',
  'help_mom',
  'mom_said',
  'said_everi',
  'everi_man',
  'man_know',
  'know_fix',
  'fix_thing',
  'thing_around',
  'around_hous',
  'hous_husband',
  'husband_agre',
  'agre_remaind',
  'remaind_lunch',
  'lunch_awkward',
  'awkward_like',
  'like_real',
  'real_parent',
  'parent_disappoint',
  'disappoint_huge',
  'huge_failur',
  'failur_left',
  'left_told',
  'told_girlfriend',
  'girlfriend_expect',
  'expect_reaction',
  'reaction_instead',
  'instead_take',
  'take_side',
  'side_said',
  'said_right',
  'right_embarrass',
  'embarrass_need',
  'need_call',
  'call_friend',
  'friend_help',
  'help_someth',
  'someth_trivial',
  'trivial_remind',
  'remind_get',
  'get_nervou',
  'nervou_anxiou',
  'anxiou_everytim',
  'everytim_touch',
  'touch_tool',
  'tool_admit',
  'admit_stupid',
  'stupid_way',
  'way_honest',
  'honest_sinc',
  'sinc_start',
  'start_still',
  'still_chang',
  'chang_mind',
  'mind_told',
  'told_sinc',
  'sinc_idea',
  'idea_man',
  'man_twist',
  'twist_must',
  'must_share',
  'share_view',
  'view_start',
  'start_work',
  'work_version',
  'version_man',
  'man_told',
  'told_stop',
  'stop_cook',
  'cook_ill',
  'ill_stop',
  'stop_dish',
  'dish_laundri',
  'laundri_clean',
  'clean_thing',
  'thing_would',
  'would_keep',
  'keep_take',
  'take_trash',
  'trash_groceri',
  'groceri_shop',
  'shop_could',
  'could_focu',
  'focu_time',
  'time_effort',
  'effort_becom',
  'becom_man',
  'sorri_sentenc_feel',
  'sentenc_feel_awkward',
  'feel_awkward_nativ',
  'awkward_nativ_speaker',
  'nativ_speaker_work',
  'speaker_work_home',
  'work_home_job',
  'home_job_relax',
  'job_relax_requir',
  'relax_requir_glu',
  'requir_glu_screen',
  'glu_screen_girlfriend',
  'screen_girlfriend_work',
  'girlfriend_work_stress',
  'work_stress_custom',
  'stress_custom_servic',
  'custom_servic_job',
  'servic_job_day',
  'job_day_terribl',
  'day_terribl_year',
  'terribl_year_weve',
  'year_weve_live',
  'weve_live_togeth',
  'live_togeth_practic',
  'togeth_practic_chore',
  'practic_chore_around',
  'chore_around_hous',
  'around_hous_tri',
  'hous_tri_treat',
  'tri_treat_like',
  'treat_like_queen',
  'like_queen_come',
  'queen_come_back',
  'come_back_home',
  'back_home_howev',
  'home_howev_one',
  'howev_one_thing',
  'one_thing_cant',
  'thing_cant_handyman',
  'cant_handyman_matter',
  'handyman_matter_easi',
  'matter_easi_task',
  'easi_task_month',
  'task_month_ago',
  'month_ago_bathroom',
  'ago_bathroom_door',
  'bathroom_door_hing',
  'door_hing_need',
  'hing_need_replac',
  'need_replac_call',
  'replac_call_friend',
  'call_friend_help',
  'friend_help_last',
  'help_last_week',
  'last_week_lunch',
  'week_lunch_parent',
  'lunch_parent_ask',
  'parent_ask_dad',
  'ask_dad_project',
  'dad_project_work',
  'project_work_woodwork',
  'work_woodwork_hobbi',
  'woodwork_hobbi_show',
  'hobbi_show_progress',
  'show_progress_phone',
  'progress_phone_suggest',
  'phone_suggest_help',
  'suggest_help_last',
  'help_last_touch',
  'last_touch_girlfriend',
  'touch_girlfriend_told',
  'girlfriend_told_cant',
  'told_cant_even',
  'cant_even_replac',
  'even_replac_door',
  'replac_door_hing',
  'door_hing_let',
  'hing_let_alon',
  'let_alon_help',
  'alon_help_mom',
  'help_mom_said',
  'mom_said_everi',
  'said_everi_man',
  'everi_man_know',
  'man_know_fix',
  'know_fix_thing',
  'fix_thing_around',
  'thing_around_hous',
  'around_hous_husband',
  'hous_husband_agre',
  'husband_agre_remaind',
  'agre_remaind_lunch',
  'remaind_lunch_awkward',
  'lunch_awkward_like',
  'awkward_like_real',
  'like_real_parent',
  'real_parent_disappoint',
  'parent_disappoint_huge',
  'disappoint_huge_failur',
  'huge_failur_left',
  'failur_left_told',
  'left_told_girlfriend',
  'told_girlfriend_expect',
  'girlfriend_expect_reaction',
  'expect_reaction_instead',
  'reaction_instead_take',
  'instead_take_side',
  'take_side_said',
  'side_said_right',
  'said_right_embarrass',
  'right_embarrass_need',
  'embarrass_need_call',
  'need_call_friend',
  'call_friend_help',
  'friend_help_someth',
  'help_someth_trivial',
  'someth_trivial_remind',
  'trivial_remind_get',
  'remind_get_nervou',
  'get_nervou_anxiou',
  'nervou_anxiou_everytim',
  'anxiou_everytim_touch',
  'everytim_touch_tool',
  'touch_tool_admit',
  'tool_admit_stupid',
  'admit_stupid_way',
  'stupid_way_honest',
  'way_honest_sinc',
  'honest_sinc_start',
  'sinc_start_still',
  'start_still_chang',
  'still_chang_mind',
  'chang_mind_told',
  'mind_told_sinc',
  'told_sinc_idea',
  'sinc_idea_man',
  'idea_man_twist',
  'man_twist_must',
  'twist_must_share',
  'must_share_view',
  'share_view_start',
  'view_start_work',
  'start_work_version',
  'work_version_man',
  'version_man_told',
  'man_told_stop',
  'told_stop_cook',
  'stop_cook_ill',
  'cook_ill_stop',
  'ill_stop_dish',
  'stop_dish_laundri',
  'dish_laundri_clean',
  'laundri_clean_thing',
  'clean_thing_would',
  'thing_would_keep',
  'would_keep_take',
  'keep_take_trash',
  'take_trash_groceri',
  'trash_groceri_shop',
  'groceri_shop_could',
  'shop_could_focu',
  'could_focu_time',
  'focu_time_effort',
  'time_effort_becom',
  'effort_becom_man'],
 ['husband',
  'date',
  'year',
  'marri',
  'year',
  'old',
  'babi',
  'boy',
  'sinc',
  'plan',
  'children',
  'told',
  'husband',
  'want',
  'get',
  'boob',
  'redon',
  'want',
  'perki',
  'surgeri',
  'last',
  'year',
  'mil',
  'alway',
  'sniffi',
  'husband',
  'son',
  'weve',
  'gone',
  'lc',
  'year',
  'overbear',
  'dismiss',
  'thing',
  'got',
  'littl',
  'better',
  'babi',
  'born',
  'surgeri',
  'oof',
  'like',
  'wrote',
  'forehead',
  'look',
  'boob',
  'want',
  'cheat',
  'husband',
  'alway',
  'impli',
  'male',
  'valid',
  'yeah',
  'son',
  'ff',
  'ill',
  'leav',
  'husband',
  'look',
  'like',
  'hooker',
  'wear',
  'stuff',
  'show',
  'cleavag',
  'couldv',
  'gotten',
  'littl',
  'smaller',
  'everyth',
  'also',
  'complaint',
  'cloth',
  'underwear',
  'lot',
  'marri',
  'woman',
  'child',
  'dress',
  'like',
  'see',
  'stung',
  'could',
  'know',
  'suspect',
  'go',
  'drawer',
  'husband',
  'told',
  '*',
  'could',
  'never',
  '*',
  'made',
  'comment',
  'cute',
  'set',
  'lingeri',
  'show',
  'basic',
  'everyth',
  'confus',
  'ask',
  'howd',
  'know',
  'said',
  'saw',
  'wash',
  'machin',
  'prefer',
  'wash',
  'set',
  'hand',
  'lace',
  'last',
  'longer',
  'anyway',
  'recent',
  'chang',
  'bedroom',
  'idea',
  'put',
  'end',
  'restock',
  'drawer',
  'use',
  'one',
  'vaniti',
  'put',
  'husband',
  'mine',
  'sex',
  'toy',
  'set',
  'dirti',
  'letter',
  'wrote',
  'mil',
  'visit',
  'us',
  'time',
  'said',
  'noth',
  'felt',
  'bad',
  'accus',
  'yesterday',
  'sil',
  'husband',
  'kitchen',
  'cook',
  'heard',
  'mil',
  'call',
  'us',
  'went',
  'room',
  'stand',
  'next',
  'open',
  'drawer',
  'snort',
  'look',
  'husband',
  'said',
  'see',
  'snoop',
  'husband',
  'got',
  'red',
  'face',
  'berat',
  'mil',
  'sil',
  'left',
  'call',
  'indec',
  'husband',
  'mad',
  'mad',
  'say',
  'set',
  'trap',
  'famili',
  'say',
  'three',
  'need',
  'apolog',
  'mayb',
  'aita',
  'husband_date',
  'date_year',
  'year_marri',
  'marri_year',
  'year_old',
  'old_babi',
  'babi_boy',
  'boy_sinc',
  'sinc_plan',
  'plan_children',
  'children_told',
  'told_husband',
  'husband_want',
  'want_get',
  'get_boob',
  'boob_redon',
  'redon_want',
  'want_perki',
  'perki_surgeri',
  'surgeri_last',
  'last_year',
  'year_mil',
  'mil_alway',
  'alway_sniffi',
  'sniffi_husband',
  'husband_son',
  'son_weve',
  'weve_gone',
  'gone_lc',
  'lc_year',
  'year_overbear',
  'overbear_dismiss',
  'dismiss_thing',
  'thing_got',
  'got_littl',
  'littl_better',
  'better_babi',
  'babi_born',
  'born_surgeri',
  'surgeri_oof',
  'oof_like',
  'like_wrote',
  'wrote_forehead',
  'forehead_look',
  'look_boob',
  'boob_want',
  'want_cheat',
  'cheat_husband',
  'husband_alway',
  'alway_impli',
  'impli_male',
  'male_valid',
  'valid_yeah',
  'yeah_son',
  'son_ff',
  'ff_ill',
  'ill_leav',
  'leav_husband',
  'husband_look',
  'look_like',
  'like_hooker',
  'hooker_wear',
  'wear_stuff',
  'stuff_show',
  'show_cleavag',
  'cleavag_couldv',
  'couldv_gotten',
  'gotten_littl',
  'littl_smaller',
  'smaller_everyth',
  'everyth_also',
  'also_complaint',
  'complaint_cloth',
  'cloth_underwear',
  'underwear_lot',
  'lot_marri',
  'marri_woman',
  'woman_child',
  'child_dress',
  'dress_like',
  'like_see',
  'see_stung',
  'stung_could',
  'could_know',
  'know_suspect',
  'suspect_go',
  'go_drawer',
  'drawer_husband',
  'husband_told',
  'told_*',
  '*_could',
  'could_never',
  'never_*',
  '*_made',
  'made_comment',
  'comment_cute',
  'cute_set',
  'set_lingeri',
  'lingeri_show',
  'show_basic',
  'basic_everyth',
  'everyth_confus',
  'confus_ask',
  'ask_howd',
  'howd_know',
  'know_said',
  'said_saw',
  'saw_wash',
  'wash_machin',
  'machin_prefer',
  'prefer_wash',
  'wash_set',
  'set_hand',
  'hand_lace',
  'lace_last',
  'last_longer',
  'longer_anyway',
  'anyway_recent',
  'recent_chang',
  'chang_bedroom',
  'bedroom_idea',
  'idea_put',
  'put_end',
  'end_restock',
  'restock_drawer',
  'drawer_use',
  'use_one',
  'one_vaniti',
  'vaniti_put',
  'put_husband',
  'husband_mine',
  'mine_sex',
  'sex_toy',
  'toy_set',
  'set_dirti',
  'dirti_letter',
  'letter_wrote',
  'wrote_mil',
  'mil_visit',
  'visit_us',
  'us_time',
  'time_said',
  'said_noth',
  'noth_felt',
  'felt_bad',
  'bad_accus',
  'accus_yesterday',
  'yesterday_sil',
  'sil_husband',
  'husband_kitchen',
  'kitchen_cook',
  'cook_heard',
  'heard_mil',
  'mil_call',
  'call_us',
  'us_went',
  'went_room',
  'room_stand',
  'stand_next',
  'next_open',
  'open_drawer',
  'drawer_snort',
  'snort_look',
  'look_husband',
  'husband_said',
  'said_see',
  'see_snoop',
  'snoop_husband',
  'husband_got',
  'got_red',
  'red_face',
  'face_berat',
  'berat_mil',
  'mil_sil',
  'sil_left',
  'left_call',
  'call_indec',
  'indec_husband',
  'husband_mad',
  'mad_mad',
  'mad_say',
  'say_set',
  'set_trap',
  'trap_famili',
  'famili_say',
  'say_three',
  'three_need',
  'need_apolog',
  'apolog_mayb',
  'mayb_aita',
  'husband_date_year',
  'date_year_marri',
  'year_marri_year',
  'marri_year_old',
  'year_old_babi',
  'old_babi_boy',
  'babi_boy_sinc',
  'boy_sinc_plan',
  'sinc_plan_children',
  'plan_children_told',
  'children_told_husband',
  'told_husband_want',
  'husband_want_get',
  'want_get_boob',
  'get_boob_redon',
  'boob_redon_want',
  'redon_want_perki',
  'want_perki_surgeri',
  'perki_surgeri_last',
  'surgeri_last_year',
  'last_year_mil',
  'year_mil_alway',
  'mil_alway_sniffi',
  'alway_sniffi_husband',
  'sniffi_husband_son',
  'husband_son_weve',
  'son_weve_gone',
  'weve_gone_lc',
  'gone_lc_year',
  'lc_year_overbear',
  'year_overbear_dismiss',
  'overbear_dismiss_thing',
  'dismiss_thing_got',
  'thing_got_littl',
  'got_littl_better',
  'littl_better_babi',
  'better_babi_born',
  'babi_born_surgeri',
  'born_surgeri_oof',
  'surgeri_oof_like',
  'oof_like_wrote',
  'like_wrote_forehead',
  'wrote_forehead_look',
  'forehead_look_boob',
  'look_boob_want',
  'boob_want_cheat',
  'want_cheat_husband',
  'cheat_husband_alway',
  'husband_alway_impli',
  'alway_impli_male',
  'impli_male_valid',
  'male_valid_yeah',
  'valid_yeah_son',
  'yeah_son_ff',
  'son_ff_ill',
  'ff_ill_leav',
  'ill_leav_husband',
  'leav_husband_look',
  'husband_look_like',
  'look_like_hooker',
  'like_hooker_wear',
  'hooker_wear_stuff',
  'wear_stuff_show',
  'stuff_show_cleavag',
  'show_cleavag_couldv',
  'cleavag_couldv_gotten',
  'couldv_gotten_littl',
  'gotten_littl_smaller',
  'littl_smaller_everyth',
  'smaller_everyth_also',
  'everyth_also_complaint',
  'also_complaint_cloth',
  'complaint_cloth_underwear',
  'cloth_underwear_lot',
  'underwear_lot_marri',
  'lot_marri_woman',
  'marri_woman_child',
  'woman_child_dress',
  'child_dress_like',
  'dress_like_see',
  'like_see_stung',
  'see_stung_could',
  'stung_could_know',
  'could_know_suspect',
  'know_suspect_go',
  'suspect_go_drawer',
  'go_drawer_husband',
  'drawer_husband_told',
  'husband_told_*',
  'told_*_could',
  '*_could_never',
  'could_never_*',
  'never_*_made',
  '*_made_comment',
  'made_comment_cute',
  'comment_cute_set',
  'cute_set_lingeri',
  'set_lingeri_show',
  'lingeri_show_basic',
  'show_basic_everyth',
  'basic_everyth_confus',
  'everyth_confus_ask',
  'confus_ask_howd',
  'ask_howd_know',
  'howd_know_said',
  'know_said_saw',
  'said_saw_wash',
  'saw_wash_machin',
  'wash_machin_prefer',
  'machin_prefer_wash',
  'prefer_wash_set',
  'wash_set_hand',
  'set_hand_lace',
  'hand_lace_last',
  'lace_last_longer',
  'last_longer_anyway',
  'longer_anyway_recent',
  'anyway_recent_chang',
  'recent_chang_bedroom',
  'chang_bedroom_idea',
  'bedroom_idea_put',
  'idea_put_end',
  'put_end_restock',
  'end_restock_drawer',
  'restock_drawer_use',
  'drawer_use_one',
  'use_one_vaniti',
  'one_vaniti_put',
  'vaniti_put_husband',
  'put_husband_mine',
  'husband_mine_sex',
  'mine_sex_toy',
  'sex_toy_set',
  'toy_set_dirti',
  'set_dirti_letter',
  'dirti_letter_wrote',
  'letter_wrote_mil',
  'wrote_mil_visit',
  'mil_visit_us',
  'visit_us_time',
  'us_time_said',
  'time_said_noth',
  'said_noth_felt',
  'noth_felt_bad',
  'felt_bad_accus',
  'bad_accus_yesterday',
  'accus_yesterday_sil',
  'yesterday_sil_husband',
  'sil_husband_kitchen',
  'husband_kitchen_cook',
  'kitchen_cook_heard',
  'cook_heard_mil',
  'heard_mil_call',
  'mil_call_us',
  'call_us_went',
  'us_went_room',
  'went_room_stand',
  'room_stand_next',
  'stand_next_open',
  'next_open_drawer',
  'open_drawer_snort',
  'drawer_snort_look',
  'snort_look_husband',
  'look_husband_said',
  'husband_said_see',
  'said_see_snoop',
  'see_snoop_husband',
  'snoop_husband_got',
  'husband_got_red',
  'got_red_face',
  'red_face_berat',
  'face_berat_mil',
  'berat_mil_sil',
  'mil_sil_left',
  'sil_left_call',
  'left_call_indec',
  'call_indec_husband',
  'indec_husband_mad',
  'husband_mad_mad',
  'mad_mad_say',
  'mad_say_set',
  'say_set_trap',
  'set_trap_famili',
  'trap_famili_say',
  'famili_say_three',
  'say_three_need',
  'three_need_apolog',
  'need_apolog_mayb',
  'apolog_mayb_aita'],
 ['yo',
  'man',
  'larg',
  'store',
  'yesterday',
  'mo',
  'son',
  'babi',
  'went',
  'restroom',
  'saw',
  'familycompanion',
  'restroom',
  'men',
  'women',
  'went',
  'men',
  'room',
  'saw',
  'cubicl',
  'urin',
  'chang',
  'tabl',
  'sink',
  'counter',
  'either',
  'walk',
  'hunt',
  'employe',
  'ask',
  'chang',
  'tabl',
  'said',
  'bathroom',
  'ask',
  'assum',
  'familycompanion',
  'restroom',
  'side',
  'store',
  'took',
  'back',
  'ask',
  'anoth',
  'bathroom',
  'said',
  'told',
  'bathroom',
  'chang',
  'tabl',
  'ask',
  'sure',
  'suggest',
  'look',
  'annoy',
  'went',
  'back',
  'men',
  'room',
  'chang',
  'tabl',
  'came',
  'employe',
  'gone',
  'keep',
  'mind',
  'son',
  'poopi',
  'diaper',
  'whole',
  'time',
  'give',
  'head',
  'ladi',
  'room',
  'sure',
  'enough',
  'chang',
  'tabl',
  'woman',
  'wash',
  'hand',
  'said',
  'wrong',
  'bathroom',
  'buddi',
  'gestur',
  'son',
  'said',
  'chang',
  'tabl',
  'men',
  'room',
  'laugh',
  'said',
  'bro',
  'suck',
  'walk',
  'rush',
  'chang',
  'hope',
  'done',
  'anyon',
  'els',
  'walk',
  'im',
  'almost',
  'done',
  'woman',
  'walk',
  'start',
  'scream',
  'tri',
  'explain',
  'kept',
  'scream',
  'get',
  'cant',
  'ran',
  'finish',
  'put',
  'diaper',
  'rush',
  'bathroom',
  'saw',
  'woman',
  'talk',
  'employe',
  'decid',
  'leav',
  'without',
  'stuff',
  'employe',
  'tri',
  'wave',
  'stop',
  'rush',
  'car',
  'buckl',
  'son',
  'carseat',
  'left',
  'wife',
  'said',
  'absolut',
  'right',
  'thing',
  'mom',
  'said',
  'im',
  'idiot',
  '%',
  'wrong',
  'sister',
  'stop',
  'laugh',
  'help',
  'aita',
  'yo_man',
  'man_larg',
  'larg_store',
  'store_yesterday',
  'yesterday_mo',
  'mo_son',
  'son_babi',
  'babi_went',
  'went_restroom',
  'restroom_saw',
  'saw_familycompanion',
  'familycompanion_restroom',
  'restroom_men',
  'men_women',
  'women_went',
  'went_men',
  'men_room',
  'room_saw',
  'saw_cubicl',
  'cubicl_urin',
  'urin_chang',
  'chang_tabl',
  'tabl_sink',
  'sink_counter',
  'counter_either',
  'either_walk',
  'walk_hunt',
  'hunt_employe',
  'employe_ask',
  'ask_chang',
  'chang_tabl',
  'tabl_said',
  'said_bathroom',
  'bathroom_ask',
  'ask_assum',
  'assum_familycompanion',
  'familycompanion_restroom',
  'restroom_side',
  'side_store',
  'store_took',
  'took_back',
  'back_ask',
  'ask_anoth',
  'anoth_bathroom',
  'bathroom_said',
  'said_told',
  'told_bathroom',
  'bathroom_chang',
  'chang_tabl',
  'tabl_ask',
  'ask_sure',
  'sure_suggest',
  'suggest_look',
  'look_annoy',
  'annoy_went',
  'went_back',
  'back_men',
  'men_room',
  'room_chang',
  'chang_tabl',
  'tabl_came',
  'came_employe',
  'employe_gone',
  'gone_keep',
  'keep_mind',
  'mind_son',
  'son_poopi',
  'poopi_diaper',
  'diaper_whole',
  'whole_time',
  'time_give',
  'give_head',
  'head_ladi',
  'ladi_room',
  'room_sure',
  'sure_enough',
  'enough_chang',
  'chang_tabl',
  'tabl_woman',
  'woman_wash',
  'wash_hand',
  'hand_said',
  'said_wrong',
  'wrong_bathroom',
  'bathroom_buddi',
  'buddi_gestur',
  'gestur_son',
  'son_said',
  'said_chang',
  'chang_tabl',
  'tabl_men',
  'men_room',
  'room_laugh',
  'laugh_said',
  'said_bro',
  'bro_suck',
  'suck_walk',
  'walk_rush',
  'rush_chang',
  'chang_hope',
  'hope_done',
  'done_anyon',
  'anyon_els',
  'els_walk',
  'walk_im',
  'im_almost',
  'almost_done',
  'done_woman',
  'woman_walk',
  'walk_start',
  'start_scream',
  'scream_tri',
  'tri_explain',
  'explain_kept',
  'kept_scream',
  'scream_get',
  'get_cant',
  'cant_ran',
  'ran_finish',
  'finish_put',
  'put_diaper',
  'diaper_rush',
  'rush_bathroom',
  'bathroom_saw',
  'saw_woman',
  'woman_talk',
  'talk_employe',
  'employe_decid',
  'decid_leav',
  'leav_without',
  'without_stuff',
  'stuff_employe',
  'employe_tri',
  'tri_wave',
  'wave_stop',
  'stop_rush',
  'rush_car',
  'car_buckl',
  'buckl_son',
  'son_carseat',
  'carseat_left',
  'left_wife',
  'wife_said',
  'said_absolut',
  'absolut_right',
  'right_thing',
  'thing_mom',
  'mom_said',
  'said_im',
  'im_idiot',
  'idiot_%',
  '%_wrong',
  'wrong_sister',
  'sister_stop',
  'stop_laugh',
  'laugh_help',
  'help_aita',
  'yo_man_larg',
  'man_larg_store',
  'larg_store_yesterday',
  'store_yesterday_mo',
  'yesterday_mo_son',
  'mo_son_babi',
  'son_babi_went',
  'babi_went_restroom',
  'went_restroom_saw',
  'restroom_saw_familycompanion',
  'saw_familycompanion_restroom',
  'familycompanion_restroom_men',
  'restroom_men_women',
  'men_women_went',
  'women_went_men',
  'went_men_room',
  'men_room_saw',
  'room_saw_cubicl',
  'saw_cubicl_urin',
  'cubicl_urin_chang',
  'urin_chang_tabl',
  'chang_tabl_sink',
  'tabl_sink_counter',
  'sink_counter_either',
  'counter_either_walk',
  'either_walk_hunt',
  'walk_hunt_employe',
  'hunt_employe_ask',
  'employe_ask_chang',
  'ask_chang_tabl',
  'chang_tabl_said',
  'tabl_said_bathroom',
  'said_bathroom_ask',
  'bathroom_ask_assum',
  'ask_assum_familycompanion',
  'assum_familycompanion_restroom',
  'familycompanion_restroom_side',
  'restroom_side_store',
  'side_store_took',
  'store_took_back',
  'took_back_ask',
  'back_ask_anoth',
  'ask_anoth_bathroom',
  'anoth_bathroom_said',
  'bathroom_said_told',
  'said_told_bathroom',
  'told_bathroom_chang',
  'bathroom_chang_tabl',
  'chang_tabl_ask',
  'tabl_ask_sure',
  'ask_sure_suggest',
  'sure_suggest_look',
  'suggest_look_annoy',
  'look_annoy_went',
  'annoy_went_back',
  'went_back_men',
  'back_men_room',
  'men_room_chang',
  'room_chang_tabl',
  'chang_tabl_came',
  'tabl_came_employe',
  'came_employe_gone',
  'employe_gone_keep',
  'gone_keep_mind',
  'keep_mind_son',
  'mind_son_poopi',
  'son_poopi_diaper',
  'poopi_diaper_whole',
  'diaper_whole_time',
  'whole_time_give',
  'time_give_head',
  'give_head_ladi',
  'head_ladi_room',
  'ladi_room_sure',
  'room_sure_enough',
  'sure_enough_chang',
  'enough_chang_tabl',
  'chang_tabl_woman',
  'tabl_woman_wash',
  'woman_wash_hand',
  'wash_hand_said',
  'hand_said_wrong',
  'said_wrong_bathroom',
  'wrong_bathroom_buddi',
  'bathroom_buddi_gestur',
  'buddi_gestur_son',
  'gestur_son_said',
  'son_said_chang',
  'said_chang_tabl',
  'chang_tabl_men',
  'tabl_men_room',
  'men_room_laugh',
  'room_laugh_said',
  'laugh_said_bro',
  'said_bro_suck',
  'bro_suck_walk',
  'suck_walk_rush',
  'walk_rush_chang',
  'rush_chang_hope',
  'chang_hope_done',
  'hope_done_anyon',
  'done_anyon_els',
  'anyon_els_walk',
  'els_walk_im',
  'walk_im_almost',
  'im_almost_done',
  'almost_done_woman',
  'done_woman_walk',
  'woman_walk_start',
  'walk_start_scream',
  'start_scream_tri',
  'scream_tri_explain',
  'tri_explain_kept',
  'explain_kept_scream',
  'kept_scream_get',
  'scream_get_cant',
  'get_cant_ran',
  'cant_ran_finish',
  'ran_finish_put',
  'finish_put_diaper',
  'put_diaper_rush',
  'diaper_rush_bathroom',
  'rush_bathroom_saw',
  'bathroom_saw_woman',
  'saw_woman_talk',
  'woman_talk_employe',
  'talk_employe_decid',
  'employe_decid_leav',
  'decid_leav_without',
  'leav_without_stuff',
  'without_stuff_employe',
  'stuff_employe_tri',
  'employe_tri_wave',
  'tri_wave_stop',
  'wave_stop_rush',
  'stop_rush_car',
  'rush_car_buckl',
  'car_buckl_son',
  'buckl_son_carseat',
  'son_carseat_left',
  'carseat_left_wife',
  'left_wife_said',
  'wife_said_absolut',
  'said_absolut_right',
  'absolut_right_thing',
  'right_thing_mom',
  'thing_mom_said',
  'mom_said_im',
  'said_im_idiot',
  'im_idiot_%',
  'idiot_%_wrong',
  '%_wrong_sister',
  'wrong_sister_stop',
  'sister_stop_laugh',
  'stop_laugh_help',
  'laugh_help_aita'],
 ['updat',
  'bottom',
  'throwaway',
  'usual',
  'mobil',
  'format',
  'apolog',
  'gemologist',
  'spend',
  'day',
  'lab',
  'test',
  'identifi',
  'stone',
  'natur',
  'work',
  'also',
  'larg',
  'valuabl',
  'collect',
  'jewelleri',
  'also',
  'gem',
  'specimen',
  'keep',
  'safe',
  'specif',
  'bought',
  'instal',
  'keep',
  'safe',
  'also',
  'second',
  'smaller',
  'safe',
  'keep',
  'import',
  'document',
  'like',
  'passport',
  'home',
  'boyfriend',
  'year',
  'recent',
  'move',
  'rent',
  'gave',
  'code',
  'smaller',
  'safe',
  'could',
  'put',
  'valuabl',
  'also',
  'want',
  'code',
  'gem',
  'safe',
  'put',
  'anyth',
  'say',
  'live',
  'togeth',
  'trust',
  'give',
  'code',
  'ive',
  'said',
  'reason',
  'open',
  'safe',
  'thing',
  'use',
  'store',
  'collect',
  'said',
  'interest',
  'gem',
  'collect',
  'want',
  'look',
  'still',
  'want',
  'code',
  'access',
  'caus',
  'tension',
  'say',
  'give',
  'show',
  'trust',
  'said',
  'liter',
  'reason',
  'go',
  'need',
  'code',
  'figur',
  'collect',
  'im',
  'difficult',
  'littl',
  'gem',
  'one',
  'know',
  'code',
  'reddit',
  'ta',
  '*',
  'also',
  'uk',
  'spell',
  'jewelleri',
  'differ',
  'us',
  'edit',
  'holi',
  'hell',
  'blew',
  'way',
  'ever',
  'expect',
  'im',
  'stick',
  'gun',
  'im',
  'give',
  'code',
  'love',
  'internet',
  'stranger',
  'right',
  'huge',
  'marinara',
  'flag',
  'ill',
  'tell',
  'pack',
  'stuff',
  'ill',
  'updat',
  'later',
  'thank',
  'comment',
  'edit',
  'keep',
  'come',
  'safe',
  'weigh',
  'nearli',
  'half',
  'ton',
  'bolt',
  'floor',
  'wall',
  'compani',
  'make',
  'safe',
  'vault',
  'strong',
  'room',
  'jewel',
  'could',
  'bring',
  'hous',
  'around',
  'would',
  'still',
  'intact',
  'final',
  'edit',
  'think',
  'phrase',
  'badli',
  'gem',
  'jewelleri',
  'safe',
  'mine',
  'mine',
  'alon',
  'keep',
  'client',
  'jewelleri',
  'home',
  'busi',
  'valuat',
  'rent',
  'separ',
  'space',
  'keep',
  'client',
  'item',
  'give',
  'updat',
  'thing',
  'pan',
  'anoth',
  'edit',
  'ive',
  'check',
  'camera',
  'thank',
  'suggest',
  'peopl',
  'asid',
  'one',
  'alreadi',
  'fit',
  'access',
  'ive',
  'move',
  'person',
  'doc',
  'littl',
  'safe',
  'gem',
  'safe',
  'ive',
  'told',
  'colleagu',
  'im',
  'go',
  'come',
  'around',
  'updat',
  'firstli',
  'thank',
  'much',
  'insan',
  'amount',
  'comment',
  'support',
  'meant',
  'much',
  'messag',
  'question',
  'im',
  'realli',
  'sorri',
  'get',
  'mani',
  'probabl',
  'emphasis',
  'last',
  'post',
  'coupl',
  'convers',
  'explain',
  'reason',
  'go',
  'etc',
  'short',
  'version',
  'told',
  'get',
  'code',
  'die',
  'hill',
  'reason',
  'continu',
  'lack',
  'respect',
  'push',
  'boundari',
  'ok',
  'felt',
  'like',
  'tri',
  'manipul',
  'make',
  'trust',
  'lot',
  'back',
  'forth',
  'final',
  'admit',
  'want',
  'access',
  'safe',
  'feel',
  'like',
  'share',
  'whole',
  'hous',
  'insist',
  'tenanc',
  'agreement',
  'rather',
  'let',
  'move',
  'like',
  'part',
  'live',
  'limit',
  'also',
  'insecur',
  'resent',
  'money',
  'home',
  'whilst',
  'made',
  'comment',
  'realis',
  'big',
  'issu',
  'also',
  'said',
  'keep',
  'safe',
  'made',
  'feel',
  'like',
  'thought',
  'lesser',
  'made',
  'feel',
  'like',
  'treat',
  'like',
  'child',
  'told',
  'feel',
  'right',
  'relationship',
  'either',
  'us',
  'best',
  'break',
  'shock',
  'end',
  'thing',
  'cri',
  'ask',
  'reconsid',
  'said',
  'got',
  'angri',
  'call',
  'stuck',
  '*',
  'tch',
  'said',
  'better',
  'without',
  'anyway',
  'went',
  'friend',
  'told',
  'via',
  'text',
  'day',
  'leav',
  'per',
  'tenanc',
  'agreement',
  'need',
  'stay',
  'friend',
  'said',
  'would',
  'gone',
  'end',
  'week',
  'day',
  'later',
  'came',
  'back',
  'pack',
  'stuff',
  'left',
  'stay',
  'friend',
  'chang',
  'lock',
  'alarm',
  'cctv',
  'system',
  'profession',
  'monitor',
  'chang',
  'verbal',
  'password',
  'give',
  'call',
  'precaut',
  'ive',
  'check',
  'collect',
  'touch',
  'also',
  'took',
  'guy',
  'advic',
  'give',
  'solicitor',
  'code',
  'safe',
  'deposit',
  'detail',
  'pass',
  'executor',
  'event',
  'death',
  'feel',
  'horribl',
  'despit',
  'love',
  'lot',
  'comment',
  'said',
  'partner',
  'respect',
  'boundari',
  'take',
  'interest',
  'passion',
  'realli',
  'got',
  'true',
  'may',
  'reach',
  'question',
  'made',
  'happi',
  'also',
  'sad',
  'never',
  'ask',
  'stuff',
  'like',
  'think',
  'push',
  'edg',
  'end',
  'anyth',
  'im',
  'pretti',
  'cut',
  'right',
  'miss',
  'know',
  'ill',
  'ok',
  'great',
  'friend',
  'famili',
  'around',
  'also',
  'diamond',
  'girl',
  'best',
  'friend',
  'knock',
  'around',
  'help',
  'cheer',
  'updat_bottom',
  'bottom_throwaway',
  'throwaway_usual',
  'usual_mobil',
  'mobil_format',
  'format_apolog',
  'apolog_gemologist',
  'gemologist_spend',
  'spend_day',
  'day_lab',
  'lab_test',
  'test_identifi',
  'identifi_stone',
  'stone_natur',
  'natur_work',
  'work_also',
  'also_larg',
  'larg_valuabl',
  'valuabl_collect',
  'collect_jewelleri',
  'jewelleri_also',
  'also_gem',
  'gem_specimen',
  'specimen_keep',
  'keep_safe',
  'safe_specif',
  'specif_bought',
  'bought_instal',
  'instal_keep',
  'keep_safe',
  'safe_also',
  'also_second',
  'second_smaller',
  'smaller_safe',
  'safe_keep',
  'keep_import',
  'import_document',
  'document_like',
  'like_passport',
  'passport_home',
  'home_boyfriend',
  'boyfriend_year',
  'year_recent',
  'recent_move',
  'move_rent',
  'rent_gave',
  'gave_code',
  'code_smaller',
  'smaller_safe',
  'safe_could',
  'could_put',
  'put_valuabl',
  'valuabl_also',
  'also_want',
  'want_code',
  'code_gem',
  'gem_safe',
  'safe_put',
  'put_anyth',
  'anyth_say',
  'say_live',
  'live_togeth',
  'togeth_trust',
  'trust_give',
  'give_code',
  'code_ive',
  'ive_said',
  'said_reason',
  'reason_open',
  'open_safe',
  'safe_thing',
  'thing_use',
  'use_store',
  'store_collect',
  'collect_said',
  'said_interest',
  'interest_gem',
  'gem_collect',
  'collect_want',
  'want_look',
  'look_still',
  'still_want',
  'want_code',
  'code_access',
  'access_caus',
  'caus_tension',
  'tension_say',
  'say_give',
  'give_show',
  'show_trust',
  'trust_said',
  'said_liter',
  'liter_reason',
  'reason_go',
  'go_need',
  'need_code',
  'code_figur',
  'figur_collect',
  'collect_im',
  'im_difficult',
  'difficult_littl',
  'littl_gem',
  'gem_one',
  'one_know',
  'know_code',
  'code_reddit',
  'reddit_ta',
  'ta_*',
  '*_also',
  'also_uk',
  'uk_spell',
  'spell_jewelleri',
  'jewelleri_differ',
  'differ_us',
  'us_edit',
  'edit_holi',
  'holi_hell',
  'hell_blew',
  'blew_way',
  'way_ever',
  'ever_expect',
  'expect_im',
  'im_stick',
  'stick_gun',
  'gun_im',
  'im_give',
  'give_code',
  'code_love',
  'love_internet',
  'internet_stranger',
  'stranger_right',
  'right_huge',
  'huge_marinara',
  'marinara_flag',
  'flag_ill',
  'ill_tell',
  'tell_pack',
  'pack_stuff',
  'stuff_ill',
  'ill_updat',
  'updat_later',
  'later_thank',
  'thank_comment',
  'comment_edit',
  'edit_keep',
  'keep_come',
  'come_safe',
  'safe_weigh',
  'weigh_nearli',
  'nearli_half',
  'half_ton',
  'ton_bolt',
  'bolt_floor',
  'floor_wall',
  'wall_compani',
  'compani_make',
  'make_safe',
  'safe_vault',
  'vault_strong',
  'strong_room',
  'room_jewel',
  'jewel_could',
  'could_bring',
  'bring_hous',
  'hous_around',
  'around_would',
  'would_still',
  'still_intact',
  'intact_final',
  'final_edit',
  'edit_think',
  'think_phrase',
  'phrase_badli',
  'badli_gem',
  'gem_jewelleri',
  'jewelleri_safe',
  'safe_mine',
  'mine_mine',
  'mine_alon',
  'alon_keep',
  'keep_client',
  'client_jewelleri',
  'jewelleri_home',
  'home_busi',
  'busi_valuat',
  'valuat_rent',
  'rent_separ',
  'separ_space',
  'space_keep',
  'keep_client',
  'client_item',
  'item_give',
  'give_updat',
  'updat_thing',
  'thing_pan',
  'pan_anoth',
  'anoth_edit',
  'edit_ive',
  'ive_check',
  'check_camera',
  'camera_thank',
  'thank_suggest',
  'suggest_peopl',
  'peopl_asid',
  'asid_one',
  'one_alreadi',
  'alreadi_fit',
  'fit_access',
  'access_ive',
  'ive_move',
  'move_person',
  'person_doc',
  'doc_littl',
  'littl_safe',
  'safe_gem',
  'gem_safe',
  'safe_ive',
  'ive_told',
  'told_colleagu',
  'colleagu_im',
  'im_go',
  'go_come',
  'come_around',
  'around_updat',
  'updat_firstli',
  'firstli_thank',
  'thank_much',
  'much_insan',
  'insan_amount',
  'amount_comment',
  'comment_support',
  'support_meant',
  'meant_much',
  'much_messag',
  'messag_question',
  'question_im',
  'im_realli',
  'realli_sorri',
  'sorri_get',
  'get_mani',
  'mani_probabl',
  'probabl_emphasis',
  'emphasis_last',
  'last_post',
  'post_coupl',
  'coupl_convers',
  'convers_explain',
  'explain_reason',
  'reason_go',
  'go_etc',
  'etc_short',
  'short_version',
  'version_told',
  'told_get',
  'get_code',
  'code_die',
  'die_hill',
  'hill_reason',
  'reason_continu',
  'continu_lack',
  'lack_respect',
  'respect_push',
  'push_boundari',
  'boundari_ok',
  'ok_felt',
  'felt_like',
  'like_tri',
  'tri_manipul',
  'manipul_make',
  'make_trust',
  'trust_lot',
  'lot_back',
  'back_forth',
  'forth_final',
  'final_admit',
  'admit_want',
  'want_access',
  'access_safe',
  'safe_feel',
  'feel_like',
  'like_share',
  'share_whole',
  'whole_hous',
  'hous_insist',
  'insist_tenanc',
  'tenanc_agreement',
  'agreement_rather',
  'rather_let',
  'let_move',
  'move_like',
  'like_part',
  'part_live',
  'live_limit',
  'limit_also',
  'also_insecur',
  'insecur_resent',
  'resent_money',
  'money_home',
  'home_whilst',
  'whilst_made',
  'made_comment',
  'comment_realis',
  'realis_big',
  'big_issu',
  'issu_also',
  'also_said',
  'said_keep',
  'keep_safe',
  'safe_made',
  'made_feel',
  'feel_like',
  'like_thought',
  'thought_lesser',
  'lesser_made',
  'made_feel',
  'feel_like',
  'like_treat',
  'treat_like',
  'like_child',
  'child_told',
  'told_feel',
  'feel_right',
  'right_relationship',
  'relationship_either',
  'either_us',
  'us_best',
  'best_break',
  'break_shock',
  'shock_end',
  'end_thing',
  'thing_cri',
  'cri_ask',
  'ask_reconsid',
  'reconsid_said',
  'said_got',
  'got_angri',
  'angri_call',
  'call_stuck',
  'stuck_*',
  '*_tch',
  'tch_said',
  'said_better',
  'better_without',
  'without_anyway',
  'anyway_went',
  'went_friend',
  'friend_told',
  'told_via',
  'via_text',
  'text_day',
  'day_leav',
  'leav_per',
  'per_tenanc',
  'tenanc_agreement',
  'agreement_need',
  'need_stay',
  'stay_friend',
  'friend_said',
  'said_would',
  'would_gone',
  'gone_end',
  'end_week',
  'week_day',
  'day_later',
  'later_came',
  'came_back',
  'back_pack',
  'pack_stuff',
  'stuff_left',
  'left_stay',
  'stay_friend',
  'friend_chang',
  'chang_lock',
  'lock_alarm',
  'alarm_cctv',
  'cctv_system',
  'system_profession',
  'profession_monitor',
  'monitor_chang',
  'chang_verbal',
  'verbal_password',
  'password_give',
  'give_call',
  'call_precaut',
  'precaut_ive',
  'ive_check',
  'check_collect',
  'collect_touch',
  'touch_also',
  'also_took',
  'took_guy',
  'guy_advic',
  'advic_give',
  'give_solicitor',
  'solicitor_code',
  'code_safe',
  'safe_deposit',
  'deposit_detail',
  'detail_pass',
  'pass_executor',
  'executor_event',
  'event_death',
  'death_feel',
  'feel_horribl',
  'horribl_despit',
  'despit_love',
  'love_lot',
  'lot_comment',
  'comment_said',
  'said_partner',
  'partner_respect',
  'respect_boundari',
  'boundari_take',
  'take_interest',
  'interest_passion',
  'passion_realli',
  'realli_got',
  'got_true',
  'true_may',
  'may_reach',
  'reach_question',
  'question_made',
  'made_happi',
  'happi_also',
  'also_sad',
  'sad_never',
  'never_ask',
  'ask_stuff',
  'stuff_like',
  'like_think',
  'think_push',
  'push_edg',
  'edg_end',
  'end_anyth',
  'anyth_im',
  'im_pretti',
  'pretti_cut',
  'cut_right',
  'right_miss',
  'miss_know',
  'know_ill',
  'ill_ok',
  'ok_great',
  'great_friend',
  'friend_famili',
  'famili_around',
  'around_also',
  'also_diamond',
  'diamond_girl',
  'girl_best',
  'best_friend',
  'friend_knock',
  'knock_around',
  'around_help',
  'help_cheer',
  'updat_bottom_throwaway',
  'bottom_throwaway_usual',
  'throwaway_usual_mobil',
  'usual_mobil_format',
  'mobil_format_apolog',
  'format_apolog_gemologist',
  'apolog_gemologist_spend',
  'gemologist_spend_day',
  'spend_day_lab',
  'day_lab_test',
  'lab_test_identifi',
  'test_identifi_stone',
  'identifi_stone_natur',
  'stone_natur_work',
  'natur_work_also',
  'work_also_larg',
  'also_larg_valuabl',
  'larg_valuabl_collect',
  'valuabl_collect_jewelleri',
  'collect_jewelleri_also',
  'jewelleri_also_gem',
  'also_gem_specimen',
  'gem_specimen_keep',
  'specimen_keep_safe',
  'keep_safe_specif',
  'safe_specif_bought',
  'specif_bought_instal',
  'bought_instal_keep',
  'instal_keep_safe',
  'keep_safe_also',
  'safe_also_second',
  'also_second_smaller',
  'second_smaller_safe',
  'smaller_safe_keep',
  'safe_keep_import',
  'keep_import_document',
  'import_document_like',
  'document_like_passport',
  'like_passport_home',
  'passport_home_boyfriend',
  'home_boyfriend_year',
  'boyfriend_year_recent',
  'year_recent_move',
  'recent_move_rent',
  'move_rent_gave',
  'rent_gave_code',
  'gave_code_smaller',
  'code_smaller_safe',
  'smaller_safe_could',
  'safe_could_put',
  'could_put_valuabl',
  'put_valuabl_also',
  'valuabl_also_want',
  'also_want_code',
  'want_code_gem',
  'code_gem_safe',
  'gem_safe_put',
  'safe_put_anyth',
  'put_anyth_say',
  'anyth_say_live',
  'say_live_togeth',
  'live_togeth_trust',
  'togeth_trust_give',
  'trust_give_code',
  'give_code_ive',
  'code_ive_said',
  'ive_said_reason',
  'said_reason_open',
  'reason_open_safe',
  'open_safe_thing',
  'safe_thing_use',
  'thing_use_store',
  'use_store_collect',
  'store_collect_said',
  'collect_said_interest',
  'said_interest_gem',
  'interest_gem_collect',
  'gem_collect_want',
  'collect_want_look',
  'want_look_still',
  'look_still_want',
  'still_want_code',
  'want_code_access',
  'code_access_caus',
  'access_caus_tension',
  'caus_tension_say',
  'tension_say_give',
  'say_give_show',
  'give_show_trust',
  ...],
 ['conflict',
  'pretti',
  'recent',
  'use',
  'use',
  'tampon',
  'period',
  'due',
  'medic',
  'reason',
  'anymor',
  'im',
  'use',
  'pad',
  'big',
  'deal',
  'husband',
  'disagre',
  'firstli',
  'complain',
  'consult',
  'first',
  'like',
  'said',
  'huge',
  'deal',
  'like',
  'bc',
  'said',
  'feel',
  'comfort',
  'sleep',
  'bed',
  'wear',
  'pad',
  'threw',
  'hard',
  'expect',
  'issu',
  'regard',
  'said',
  'feel',
  'comfort',
  '*',
  '*',
  'would',
  'like',
  'use',
  'tampon',
  'nighttim',
  'sleep',
  'somewher',
  'els',
  'laugh',
  'kept',
  'sleep',
  'bed',
  'wear',
  'pad',
  'like',
  'issu',
  'made',
  'uncomfort',
  'basic',
  'took',
  'couch',
  'start',
  'complain',
  'forc',
  'couch',
  'make',
  'uncomfort',
  'alreadi',
  'offer',
  'compromis',
  'told',
  'drama',
  'queen',
  'compromis',
  'illog',
  'stop',
  'use',
  'pad',
  'free',
  'bleed',
  'bed',
  'risk',
  'health',
  'use',
  'tampon',
  'doctor',
  'advis',
  'still',
  'upset',
  'even',
  'though',
  'im',
  'longer',
  'period',
  'say',
  'owe',
  'make',
  'uncomfort',
  'brush',
  'complaint',
  'conflict_pretti',
  'pretti_recent',
  'recent_use',
  'use_use',
  'use_tampon',
  'tampon_period',
  'period_due',
  'due_medic',
  'medic_reason',
  'reason_anymor',
  'anymor_im',
  'im_use',
  'use_pad',
  'pad_big',
  'big_deal',
  'deal_husband',
  'husband_disagre',
  'disagre_firstli',
  'firstli_complain',
  'complain_consult',
  'consult_first',
  'first_like',
  'like_said',
  'said_huge',
  'huge_deal',
  'deal_like',
  'like_bc',
  'bc_said',
  'said_feel',
  'feel_comfort',
  'comfort_sleep',
  'sleep_bed',
  'bed_wear',
  'wear_pad',
  'pad_threw',
  'threw_hard',
  'hard_expect',
  'expect_issu',
  'issu_regard',
  'regard_said',
  'said_feel',
  'feel_comfort',
  'comfort_*',
  '*_*',
  '*_would',
  'would_like',
  'like_use',
  'use_tampon',
  'tampon_nighttim',
  'nighttim_sleep',
  'sleep_somewher',
  'somewher_els',
  'els_laugh',
  'laugh_kept',
  'kept_sleep',
  'sleep_bed',
  'bed_wear',
  'wear_pad',
  'pad_like',
  'like_issu',
  'issu_made',
  'made_uncomfort',
  'uncomfort_basic',
  'basic_took',
  'took_couch',
  'couch_start',
  'start_complain',
  'complain_forc',
  'forc_couch',
  'couch_make',
  'make_uncomfort',
  'uncomfort_alreadi',
  'alreadi_offer',
  'offer_compromis',
  'compromis_told',
  'told_drama',
  'drama_queen',
  'queen_compromis',
  'compromis_illog',
  'illog_stop',
  'stop_use',
  'use_pad',
  'pad_free',
  'free_bleed',
  'bleed_bed',
  'bed_risk',
  'risk_health',
  'health_use',
  'use_tampon',
  'tampon_doctor',
  'doctor_advis',
  'advis_still',
  'still_upset',
  'upset_even',
  'even_though',
  'though_im',
  'im_longer',
  'longer_period',
  'period_say',
  'say_owe',
  'owe_make',
  'make_uncomfort',
  'uncomfort_brush',
  'brush_complaint',
  'conflict_pretti_recent',
  'pretti_recent_use',
  'recent_use_use',
  'use_use_tampon',
  'use_tampon_period',
  'tampon_period_due',
  'period_due_medic',
  'due_medic_reason',
  'medic_reason_anymor',
  'reason_anymor_im',
  'anymor_im_use',
  'im_use_pad',
  'use_pad_big',
  'pad_big_deal',
  'big_deal_husband',
  'deal_husband_disagre',
  'husband_disagre_firstli',
  'disagre_firstli_complain',
  'firstli_complain_consult',
  'complain_consult_first',
  'consult_first_like',
  'first_like_said',
  'like_said_huge',
  'said_huge_deal',
  'huge_deal_like',
  'deal_like_bc',
  'like_bc_said',
  'bc_said_feel',
  'said_feel_comfort',
  'feel_comfort_sleep',
  'comfort_sleep_bed',
  'sleep_bed_wear',
  'bed_wear_pad',
  'wear_pad_threw',
  'pad_threw_hard',
  'threw_hard_expect',
  'hard_expect_issu',
  'expect_issu_regard',
  'issu_regard_said',
  'regard_said_feel',
  'said_feel_comfort',
  'feel_comfort_*',
  'comfort_*_*',
  '*_*_would',
  '*_would_like',
  'would_like_use',
  'like_use_tampon',
  'use_tampon_nighttim',
  'tampon_nighttim_sleep',
  'nighttim_sleep_somewher',
  'sleep_somewher_els',
  'somewher_els_laugh',
  'els_laugh_kept',
  'laugh_kept_sleep',
  'kept_sleep_bed',
  'sleep_bed_wear',
  'bed_wear_pad',
  'wear_pad_like',
  'pad_like_issu',
  'like_issu_made',
  'issu_made_uncomfort',
  'made_uncomfort_basic',
  'uncomfort_basic_took',
  'basic_took_couch',
  'took_couch_start',
  'couch_start_complain',
  'start_complain_forc',
  'complain_forc_couch',
  'forc_couch_make',
  'couch_make_uncomfort',
  'make_uncomfort_alreadi',
  'uncomfort_alreadi_offer',
  'alreadi_offer_compromis',
  'offer_compromis_told',
  'compromis_told_drama',
  'told_drama_queen',
  'drama_queen_compromis',
  'queen_compromis_illog',
  'compromis_illog_stop',
  'illog_stop_use',
  'stop_use_pad',
  'use_pad_free',
  'pad_free_bleed',
  'free_bleed_bed',
  'bleed_bed_risk',
  'bed_risk_health',
  'risk_health_use',
  'health_use_tampon',
  'use_tampon_doctor',
  'tampon_doctor_advis',
  'doctor_advis_still',
  'advis_still_upset',
  'still_upset_even',
  'upset_even_though',
  'even_though_im',
  'though_im_longer',
  'im_longer_period',
  'longer_period_say',
  'period_say_owe',
  'say_owe_make',
  'owe_make_uncomfort',
  'make_uncomfort_brush',
  'uncomfort_brush_complaint'],
 ['ill',
  'admit',
  'im',
  'bias',
  'right',
  'bat',
  'stand',
  'call',
  'ex',
  'call',
  'friend',
  'earli',
  'die',
  'recent',
  '-',
  'aneurysm',
  'ive',
  'year',
  'hed',
  'known',
  '+',
  'way',
  'tell',
  'friend',
  'colleg',
  'decid',
  'date',
  'got',
  'marri',
  'realiz',
  'great',
  'coupl',
  'decid',
  'friend',
  'happen',
  'year',
  'met',
  'clear',
  'earli',
  'import',
  'coupl',
  'month',
  'date',
  'came',
  '*',
  'friend',
  '*',
  'actual',
  '*',
  'ex-wif',
  '*',
  'explain',
  'say',
  'one',
  'closest',
  'friend',
  'pure',
  'platon',
  'express',
  'discomfort',
  'close',
  'ex',
  'told',
  'fine',
  'seriou',
  'issu',
  'let',
  'know',
  'save',
  'us',
  'time',
  'ill',
  'choos',
  'like',
  'ive',
  'known',
  'year',
  'one',
  'import',
  'peopl',
  'life',
  'ok',
  'want',
  'us',
  'thing',
  'engag',
  'ask',
  'gave',
  'perplex',
  'look',
  '&',
  'ask',
  'would',
  'us',
  'get',
  'marri',
  'affect',
  'friendship',
  'suck',
  '&',
  'went',
  'along',
  'resent',
  'everi',
  'moment',
  'know',
  'especi',
  'social',
  'understood',
  'part',
  'husband',
  'friend',
  'mine',
  'well',
  'like',
  'could',
  'use',
  'angl',
  'hed',
  'lunch',
  'ex',
  'theyd',
  'go',
  'geeki',
  'movi',
  'whatev',
  'time',
  'brought',
  'said',
  'convers',
  'chanc',
  'back',
  'die',
  'lunch',
  'day',
  'way',
  'car',
  'spent',
  'bunch',
  'time',
  'cri',
  'honestli',
  'reliev',
  'work',
  'husband',
  'funer',
  'plan',
  'told',
  'think',
  'go',
  'argument',
  'sum',
  'dead',
  'factor',
  'anymor',
  'get',
  'use',
  'friend',
  'excus',
  'sinc',
  'exist',
  'anymor',
  'cri',
  'coupl',
  'day',
  'get',
  'done',
  'mourn',
  'alreadi',
  'need',
  'go',
  'funer',
  'sinc',
  'want',
  'angriest',
  'ive',
  'ever',
  'seen',
  'told',
  'repli',
  'hell',
  'go',
  'matter',
  'feel',
  'burn',
  'fuck',
  'ground',
  'hold',
  'wed',
  'band',
  'besid',
  'closest',
  'friend',
  'life',
  'husband',
  '&',
  'sister',
  'call',
  'insensit',
  'asshol',
  'say',
  'romant',
  'aspect',
  'relationship',
  '&',
  'im',
  'heartless',
  'husband',
  'went',
  'far',
  'call',
  'ghoul',
  'ive',
  'react',
  'never',
  'felt',
  'relationship',
  'appropri',
  'hid',
  'year',
  'want',
  'husband',
  'gone',
  'feel',
  'hide',
  'anymor',
  'speak',
  'freeli',
  'aita',
  'want',
  '*',
  'done',
  '*',
  'attend',
  'funer',
  'ill_admit',
  'admit_im',
  'im_bias',
  'bias_right',
  'right_bat',
  'bat_stand',
  'stand_call',
  'call_ex',
  'ex_call',
  'call_friend',
  'friend_earli',
  'earli_die',
  'die_recent',
  'recent_-',
  '-_aneurysm',
  'aneurysm_ive',
  'ive_year',
  'year_hed',
  'hed_known',
  'known_+',
  '+_way',
  'way_tell',
  'tell_friend',
  'friend_colleg',
  'colleg_decid',
  'decid_date',
  'date_got',
  'got_marri',
  'marri_realiz',
  'realiz_great',
  'great_coupl',
  'coupl_decid',
  'decid_friend',
  'friend_happen',
  'happen_year',
  'year_met',
  'met_clear',
  'clear_earli',
  'earli_import',
  'import_coupl',
  'coupl_month',
  'month_date',
  'date_came',
  'came_*',
  '*_friend',
  'friend_*',
  '*_actual',
  'actual_*',
  '*_ex-wif',
  'ex-wif_*',
  '*_explain',
  'explain_say',
  'say_one',
  'one_closest',
  'closest_friend',
  'friend_pure',
  'pure_platon',
  'platon_express',
  'express_discomfort',
  'discomfort_close',
  'close_ex',
  'ex_told',
  'told_fine',
  'fine_seriou',
  'seriou_issu',
  'issu_let',
  'let_know',
  'know_save',
  'save_us',
  'us_time',
  'time_ill',
  'ill_choos',
  'choos_like',
  'like_ive',
  'ive_known',
  'known_year',
  'year_one',
  'one_import',
  'import_peopl',
  'peopl_life',
  'life_ok',
  'ok_want',
  'want_us',
  'us_thing',
  'thing_engag',
  'engag_ask',
  'ask_gave',
  'gave_perplex',
  'perplex_look',
  'look_&',
  '&_ask',
  'ask_would',
  'would_us',
  'us_get',
  'get_marri',
  'marri_affect',
  'affect_friendship',
  'friendship_suck',
  'suck_&',
  '&_went',
  'went_along',
  'along_resent',
  'resent_everi',
  'everi_moment',
  'moment_know',
  'know_especi',
  'especi_social',
  'social_understood',
  'understood_part',
  'part_husband',
  'husband_friend',
  'friend_mine',
  'mine_well',
  'well_like',
  'like_could',
  'could_use',
  'use_angl',
  'angl_hed',
  'hed_lunch',
  'lunch_ex',
  'ex_theyd',
  'theyd_go',
  'go_geeki',
  'geeki_movi',
  'movi_whatev',
  'whatev_time',
  'time_brought',
  'brought_said',
  'said_convers',
  'convers_chanc',
  'chanc_back',
  'back_die',
  'die_lunch',
  'lunch_day',
  'day_way',
  'way_car',
  'car_spent',
  'spent_bunch',
  'bunch_time',
  'time_cri',
  'cri_honestli',
  'honestli_reliev',
  'reliev_work',
  'work_husband',
  'husband_funer',
  'funer_plan',
  'plan_told',
  'told_think',
  'think_go',
  'go_argument',
  'argument_sum',
  'sum_dead',
  'dead_factor',
  'factor_anymor',
  'anymor_get',
  'get_use',
  'use_friend',
  'friend_excus',
  'excus_sinc',
  'sinc_exist',
  'exist_anymor',
  'anymor_cri',
  'cri_coupl',
  'coupl_day',
  'day_get',
  'get_done',
  'done_mourn',
  'mourn_alreadi',
  'alreadi_need',
  'need_go',
  'go_funer',
  'funer_sinc',
  'sinc_want',
  'want_angriest',
  'angriest_ive',
  'ive_ever',
  'ever_seen',
  'seen_told',
  'told_repli',
  'repli_hell',
  'hell_go',
  'go_matter',
  'matter_feel',
  'feel_burn',
  'burn_fuck',
  'fuck_ground',
  'ground_hold',
  'hold_wed',
  'wed_band',
  'band_besid',
  'besid_closest',
  'closest_friend',
  'friend_life',
  'life_husband',
  'husband_&',
  '&_sister',
  'sister_call',
  'call_insensit',
  'insensit_asshol',
  'asshol_say',
  'say_romant',
  'romant_aspect',
  'aspect_relationship',
  'relationship_&',
  '&_im',
  'im_heartless',
  'heartless_husband',
  'husband_went',
  'went_far',
  'far_call',
  'call_ghoul',
  'ghoul_ive',
  'ive_react',
  'react_never',
  'never_felt',
  'felt_relationship',
  'relationship_appropri',
  'appropri_hid',
  'hid_year',
  'year_want',
  'want_husband',
  'husband_gone',
  'gone_feel',
  'feel_hide',
  'hide_anymor',
  'anymor_speak',
  'speak_freeli',
  'freeli_aita',
  'aita_want',
  'want_*',
  '*_done',
  'done_*',
  '*_attend',
  'attend_funer',
  'ill_admit_im',
  'admit_im_bias',
  'im_bias_right',
  'bias_right_bat',
  'right_bat_stand',
  'bat_stand_call',
  'stand_call_ex',
  'call_ex_call',
  'ex_call_friend',
  'call_friend_earli',
  'friend_earli_die',
  'earli_die_recent',
  'die_recent_-',
  'recent_-_aneurysm',
  '-_aneurysm_ive',
  'aneurysm_ive_year',
  'ive_year_hed',
  'year_hed_known',
  'hed_known_+',
  'known_+_way',
  '+_way_tell',
  'way_tell_friend',
  'tell_friend_colleg',
  'friend_colleg_decid',
  'colleg_decid_date',
  'decid_date_got',
  'date_got_marri',
  'got_marri_realiz',
  'marri_realiz_great',
  'realiz_great_coupl',
  'great_coupl_decid',
  'coupl_decid_friend',
  'decid_friend_happen',
  'friend_happen_year',
  'happen_year_met',
  'year_met_clear',
  'met_clear_earli',
  'clear_earli_import',
  'earli_import_coupl',
  'import_coupl_month',
  'coupl_month_date',
  'month_date_came',
  'date_came_*',
  'came_*_friend',
  '*_friend_*',
  'friend_*_actual',
  '*_actual_*',
  'actual_*_ex-wif',
  '*_ex-wif_*',
  'ex-wif_*_explain',
  '*_explain_say',
  'explain_say_one',
  'say_one_closest',
  'one_closest_friend',
  'closest_friend_pure',
  'friend_pure_platon',
  'pure_platon_express',
  'platon_express_discomfort',
  'express_discomfort_close',
  'discomfort_close_ex',
  'close_ex_told',
  'ex_told_fine',
  'told_fine_seriou',
  'fine_seriou_issu',
  'seriou_issu_let',
  'issu_let_know',
  'let_know_save',
  'know_save_us',
  'save_us_time',
  'us_time_ill',
  'time_ill_choos',
  'ill_choos_like',
  'choos_like_ive',
  'like_ive_known',
  'ive_known_year',
  'known_year_one',
  'year_one_import',
  'one_import_peopl',
  'import_peopl_life',
  'peopl_life_ok',
  'life_ok_want',
  'ok_want_us',
  'want_us_thing',
  'us_thing_engag',
  'thing_engag_ask',
  'engag_ask_gave',
  'ask_gave_perplex',
  'gave_perplex_look',
  'perplex_look_&',
  'look_&_ask',
  '&_ask_would',
  'ask_would_us',
  'would_us_get',
  'us_get_marri',
  'get_marri_affect',
  'marri_affect_friendship',
  'affect_friendship_suck',
  'friendship_suck_&',
  'suck_&_went',
  '&_went_along',
  'went_along_resent',
  'along_resent_everi',
  'resent_everi_moment',
  'everi_moment_know',
  'moment_know_especi',
  'know_especi_social',
  'especi_social_understood',
  'social_understood_part',
  'understood_part_husband',
  'part_husband_friend',
  'husband_friend_mine',
  'friend_mine_well',
  'mine_well_like',
  'well_like_could',
  'like_could_use',
  'could_use_angl',
  'use_angl_hed',
  'angl_hed_lunch',
  'hed_lunch_ex',
  'lunch_ex_theyd',
  'ex_theyd_go',
  'theyd_go_geeki',
  'go_geeki_movi',
  'geeki_movi_whatev',
  'movi_whatev_time',
  'whatev_time_brought',
  'time_brought_said',
  'brought_said_convers',
  'said_convers_chanc',
  'convers_chanc_back',
  'chanc_back_die',
  'back_die_lunch',
  'die_lunch_day',
  'lunch_day_way',
  'day_way_car',
  'way_car_spent',
  'car_spent_bunch',
  'spent_bunch_time',
  'bunch_time_cri',
  'time_cri_honestli',
  'cri_honestli_reliev',
  'honestli_reliev_work',
  'reliev_work_husband',
  'work_husband_funer',
  'husband_funer_plan',
  'funer_plan_told',
  'plan_told_think',
  'told_think_go',
  'think_go_argument',
  'go_argument_sum',
  'argument_sum_dead',
  'sum_dead_factor',
  'dead_factor_anymor',
  'factor_anymor_get',
  'anymor_get_use',
  'get_use_friend',
  'use_friend_excus',
  'friend_excus_sinc',
  'excus_sinc_exist',
  'sinc_exist_anymor',
  'exist_anymor_cri',
  'anymor_cri_coupl',
  'cri_coupl_day',
  'coupl_day_get',
  'day_get_done',
  'get_done_mourn',
  'done_mourn_alreadi',
  'mourn_alreadi_need',
  'alreadi_need_go',
  'need_go_funer',
  'go_funer_sinc',
  'funer_sinc_want',
  'sinc_want_angriest',
  'want_angriest_ive',
  'angriest_ive_ever',
  'ive_ever_seen',
  'ever_seen_told',
  'seen_told_repli',
  'told_repli_hell',
  'repli_hell_go',
  'hell_go_matter',
  'go_matter_feel',
  'matter_feel_burn',
  'feel_burn_fuck',
  'burn_fuck_ground',
  'fuck_ground_hold',
  'ground_hold_wed',
  'hold_wed_band',
  'wed_band_besid',
  'band_besid_closest',
  'besid_closest_friend',
  'closest_friend_life',
  'friend_life_husband',
  'life_husband_&',
  'husband_&_sister',
  '&_sister_call',
  'sister_call_insensit',
  'call_insensit_asshol',
  'insensit_asshol_say',
  'asshol_say_romant',
  'say_romant_aspect',
  'romant_aspect_relationship',
  'aspect_relationship_&',
  'relationship_&_im',
  '&_im_heartless',
  'im_heartless_husband',
  'heartless_husband_went',
  'husband_went_far',
  'went_far_call',
  'far_call_ghoul',
  'call_ghoul_ive',
  'ghoul_ive_react',
  'ive_react_never',
  'react_never_felt',
  'never_felt_relationship',
  'felt_relationship_appropri',
  'relationship_appropri_hid',
  'appropri_hid_year',
  'hid_year_want',
  'year_want_husband',
  'want_husband_gone',
  'husband_gone_feel',
  'gone_feel_hide',
  'feel_hide_anymor',
  'hide_anymor_speak',
  'anymor_speak_freeli',
  'speak_freeli_aita',
  'freeli_aita_want',
  'aita_want_*',
  'want_*_done',
  '*_done_*',
  'done_*_attend',
  '*_attend_funer'],
 ['went',
  'job',
  'interview',
  'potenti',
  'job',
  'opportun',
  'compani',
  'interview',
  'well',
  'call',
  'eddi',
  'ish',
  'welcom',
  'offic',
  'sit',
  'first',
  'thing',
  'look',
  'cv',
  'start',
  'ask',
  'question',
  'seem',
  'littl',
  'person',
  'unrel',
  'job',
  'like',
  'relationship',
  'wether',
  'eye',
  'color',
  'real',
  'lens',
  'also',
  'ask',
  'spend',
  'time',
  'alon',
  'type',
  'dude',
  'like',
  'like',
  'legit',
  'person',
  'question',
  'know',
  'test',
  'react',
  'kept',
  'cool',
  'til',
  'ask',
  'question',
  'greatest',
  'weak',
  'respond',
  'say',
  'keep',
  'inappropri',
  'question',
  'answer',
  'polit',
  'look',
  'upset',
  'told',
  'attitud',
  'clear',
  'interview',
  'told',
  'get',
  'job',
  'found',
  'unfair',
  'think',
  'desrev',
  'lose',
  'job',
  'noth',
  'got',
  'argument',
  'told',
  'go',
  'report',
  'went',
  'speak',
  'supervisor',
  'file',
  'complaint',
  'eddi',
  'supervisor',
  'apolog',
  'tri',
  'reschedul',
  'new',
  'interview',
  'hasit',
  'later',
  'told',
  'eddi',
  'got',
  'fire',
  'made',
  'feel',
  'guilti',
  'mom',
  'dad',
  'agre',
  'question',
  'inappropri',
  'said',
  'went',
  'far',
  'report',
  'fire',
  'eddi',
  'tri',
  'contact',
  'via',
  'email',
  'say',
  'couldv',
  'resolv',
  'us',
  'even',
  'said',
  'couldv',
  'arrang',
  'new',
  'interview',
  'ruin',
  'cost',
  'job',
  'aita',
  'went_job',
  'job_interview',
  'interview_potenti',
  'potenti_job',
  'job_opportun',
  'opportun_compani',
  'compani_interview',
  'interview_well',
  'well_call',
  'call_eddi',
  'eddi_ish',
  'ish_welcom',
  'welcom_offic',
  'offic_sit',
  'sit_first',
  'first_thing',
  'thing_look',
  'look_cv',
  'cv_start',
  'start_ask',
  'ask_question',
  'question_seem',
  'seem_littl',
  'littl_person',
  'person_unrel',
  'unrel_job',
  'job_like',
  'like_relationship',
  'relationship_wether',
  'wether_eye',
  'eye_color',
  'color_real',
  'real_lens',
  'lens_also',
  'also_ask',
  'ask_spend',
  'spend_time',
  'time_alon',
  'alon_type',
  'type_dude',
  'dude_like',
  'like_like',
  'like_legit',
  'legit_person',
  'person_question',
  'question_know',
  'know_test',
  'test_react',
  'react_kept',
  'kept_cool',
  'cool_til',
  'til_ask',
  'ask_question',
  'question_greatest',
  'greatest_weak',
  'weak_respond',
  'respond_say',
  'say_keep',
  'keep_inappropri',
  'inappropri_question',
  'question_answer',
  'answer_polit',
  'polit_look',
  'look_upset',
  'upset_told',
  'told_attitud',
  'attitud_clear',
  'clear_interview',
  'interview_told',
  'told_get',
  'get_job',
  'job_found',
  'found_unfair',
  'unfair_think',
  'think_desrev',
  'desrev_lose',
  'lose_job',
  'job_noth',
  'noth_got',
  'got_argument',
  'argument_told',
  'told_go',
  'go_report',
  'report_went',
  'went_speak',
  'speak_supervisor',
  'supervisor_file',
  'file_complaint',
  'complaint_eddi',
  'eddi_supervisor',
  'supervisor_apolog',
  'apolog_tri',
  'tri_reschedul',
  'reschedul_new',
  'new_interview',
  'interview_hasit',
  'hasit_later',
  'later_told',
  'told_eddi',
  'eddi_got',
  'got_fire',
  'fire_made',
  'made_feel',
  'feel_guilti',
  'guilti_mom',
  'mom_dad',
  'dad_agre',
  'agre_question',
  'question_inappropri',
  'inappropri_said',
  'said_went',
  'went_far',
  'far_report',
  'report_fire',
  'fire_eddi',
  'eddi_tri',
  'tri_contact',
  'contact_via',
  'via_email',
  'email_say',
  'say_couldv',
  'couldv_resolv',
  'resolv_us',
  'us_even',
  'even_said',
  'said_couldv',
  'couldv_arrang',
  'arrang_new',
  'new_interview',
  'interview_ruin',
  'ruin_cost',
  'cost_job',
  'job_aita',
  'went_job_interview',
  'job_interview_potenti',
  'interview_potenti_job',
  'potenti_job_opportun',
  'job_opportun_compani',
  'opportun_compani_interview',
  'compani_interview_well',
  'interview_well_call',
  'well_call_eddi',
  'call_eddi_ish',
  'eddi_ish_welcom',
  'ish_welcom_offic',
  'welcom_offic_sit',
  'offic_sit_first',
  'sit_first_thing',
  'first_thing_look',
  'thing_look_cv',
  'look_cv_start',
  'cv_start_ask',
  'start_ask_question',
  'ask_question_seem',
  'question_seem_littl',
  'seem_littl_person',
  'littl_person_unrel',
  'person_unrel_job',
  'unrel_job_like',
  'job_like_relationship',
  'like_relationship_wether',
  'relationship_wether_eye',
  'wether_eye_color',
  'eye_color_real',
  'color_real_lens',
  'real_lens_also',
  'lens_also_ask',
  'also_ask_spend',
  'ask_spend_time',
  'spend_time_alon',
  'time_alon_type',
  'alon_type_dude',
  'type_dude_like',
  'dude_like_like',
  'like_like_legit',
  'like_legit_person',
  'legit_person_question',
  'person_question_know',
  'question_know_test',
  'know_test_react',
  'test_react_kept',
  'react_kept_cool',
  'kept_cool_til',
  'cool_til_ask',
  'til_ask_question',
  'ask_question_greatest',
  'question_greatest_weak',
  'greatest_weak_respond',
  'weak_respond_say',
  'respond_say_keep',
  'say_keep_inappropri',
  'keep_inappropri_question',
  'inappropri_question_answer',
  'question_answer_polit',
  'answer_polit_look',
  'polit_look_upset',
  'look_upset_told',
  'upset_told_attitud',
  'told_attitud_clear',
  'attitud_clear_interview',
  'clear_interview_told',
  'interview_told_get',
  'told_get_job',
  'get_job_found',
  'job_found_unfair',
  'found_unfair_think',
  'unfair_think_desrev',
  'think_desrev_lose',
  'desrev_lose_job',
  'lose_job_noth',
  'job_noth_got',
  'noth_got_argument',
  'got_argument_told',
  'argument_told_go',
  'told_go_report',
  'go_report_went',
  'report_went_speak',
  'went_speak_supervisor',
  'speak_supervisor_file',
  'supervisor_file_complaint',
  'file_complaint_eddi',
  'complaint_eddi_supervisor',
  'eddi_supervisor_apolog',
  'supervisor_apolog_tri',
  'apolog_tri_reschedul',
  'tri_reschedul_new',
  'reschedul_new_interview',
  'new_interview_hasit',
  'interview_hasit_later',
  'hasit_later_told',
  'later_told_eddi',
  'told_eddi_got',
  'eddi_got_fire',
  'got_fire_made',
  'fire_made_feel',
  'made_feel_guilti',
  'feel_guilti_mom',
  'guilti_mom_dad',
  'mom_dad_agre',
  'dad_agre_question',
  'agre_question_inappropri',
  'question_inappropri_said',
  'inappropri_said_went',
  'said_went_far',
  'went_far_report',
  'far_report_fire',
  'report_fire_eddi',
  'fire_eddi_tri',
  'eddi_tri_contact',
  'tri_contact_via',
  'contact_via_email',
  'via_email_say',
  'email_say_couldv',
  'say_couldv_resolv',
  'couldv_resolv_us',
  'resolv_us_even',
  'us_even_said',
  'even_said_couldv',
  'said_couldv_arrang',
  'couldv_arrang_new',
  'arrang_new_interview',
  'new_interview_ruin',
  'interview_ruin_cost',
  'ruin_cost_job',
  'cost_job_aita'],
 ['recent',
  'found',
  'son',
  'jacob',
  'pull',
  'incred',
  'cruel',
  'prank',
  'one',
  'girl',
  'ill',
  'call',
  'ashley',
  'friend',
  'group',
  'know',
  'girl',
  'hous',
  'even',
  'attend',
  'jacob',
  'birthday',
  'parti',
  'month',
  'ago',
  'seem',
  'incred',
  'sweet',
  'bit',
  'shi',
  'oldest',
  'son',
  'mark',
  'came',
  'told',
  'jacob',
  'ask',
  'ashley',
  'date',
  'prank',
  'stun',
  'cours',
  'ask',
  'could',
  'know',
  'hope',
  'mother',
  'would',
  'true',
  'mark',
  'show',
  'famili',
  'tablet',
  'use',
  'mostli',
  'son',
  'seem',
  'jacob',
  'forgot',
  'log',
  'chat',
  'app',
  'discord',
  'read',
  'long',
  'seri',
  'messag',
  'jacob',
  'friend',
  'mock',
  'ashley',
  'heartless',
  'prank',
  'speechless',
  'even',
  'get',
  'talk',
  'like',
  'thug',
  'year',
  'old',
  'live',
  'gate',
  'commun',
  'first',
  'figur',
  'proceed',
  'ill',
  'admit',
  'never',
  'imagin',
  'either',
  'boy',
  'would',
  'type',
  'person',
  'someth',
  'like',
  'way',
  'hell',
  'let',
  'go',
  'day',
  'thought',
  'decid',
  'go',
  'happen',
  'first',
  'thing',
  'first',
  'ground',
  'long',
  'im',
  'sure',
  'secondli',
  'id',
  'gotten',
  'jacob',
  'bike',
  'birthday',
  'arriv',
  'day',
  'previou',
  'id',
  'plan',
  'give',
  'parent',
  'came',
  'visit',
  'sinc',
  'theyd',
  'unabl',
  'make',
  'parti',
  'instead',
  'show',
  'knew',
  'prank',
  'told',
  'ground',
  'made',
  'carri',
  'new',
  'bike',
  'bedroom',
  'closet',
  'car',
  'drive',
  'ashley',
  'hous',
  'cri',
  'whole',
  'way',
  'id',
  'call',
  'parent',
  'earlier',
  'explain',
  'everyth',
  'got',
  'cart',
  'front',
  'porch',
  'ring',
  'bell',
  'front',
  'ashley',
  'parent',
  'god',
  'give',
  'sincer',
  'apolog',
  'gift',
  'bike',
  'even',
  'apolog',
  'say',
  'rais',
  'boy',
  'way',
  'unforgiv',
  'also',
  'call',
  'parent',
  'boy',
  'apart',
  'littl',
  'stunt',
  'seem',
  'right',
  'horrifi',
  'son',
  'involv',
  'felt',
  'id',
  'handl',
  'best',
  'could',
  'friend',
  'agre',
  'though',
  'parent',
  'found',
  'id',
  'made',
  'jacob',
  'give',
  'birthday',
  'gift',
  'away',
  'said',
  'went',
  'far',
  'still',
  'feel',
  'like',
  'right',
  'parent',
  'less',
  'dog',
  'pile',
  'like',
  'actual',
  'made',
  'wonder',
  'handl',
  'extrem',
  'aita',
  'recent_found',
  'found_son',
  'son_jacob',
  'jacob_pull',
  'pull_incred',
  'incred_cruel',
  'cruel_prank',
  'prank_one',
  'one_girl',
  'girl_ill',
  'ill_call',
  'call_ashley',
  'ashley_friend',
  'friend_group',
  'group_know',
  'know_girl',
  'girl_hous',
  'hous_even',
  'even_attend',
  'attend_jacob',
  'jacob_birthday',
  'birthday_parti',
  'parti_month',
  'month_ago',
  'ago_seem',
  'seem_incred',
  'incred_sweet',
  'sweet_bit',
  'bit_shi',
  'shi_oldest',
  'oldest_son',
  'son_mark',
  'mark_came',
  'came_told',
  'told_jacob',
  'jacob_ask',
  'ask_ashley',
  'ashley_date',
  'date_prank',
  'prank_stun',
  'stun_cours',
  'cours_ask',
  'ask_could',
  'could_know',
  'know_hope',
  'hope_mother',
  'mother_would',
  'would_true',
  'true_mark',
  'mark_show',
  'show_famili',
  'famili_tablet',
  'tablet_use',
  'use_mostli',
  'mostli_son',
  'son_seem',
  'seem_jacob',
  'jacob_forgot',
  'forgot_log',
  'log_chat',
  'chat_app',
  'app_discord',
  'discord_read',
  'read_long',
  'long_seri',
  'seri_messag',
  'messag_jacob',
  'jacob_friend',
  'friend_mock',
  'mock_ashley',
  'ashley_heartless',
  'heartless_prank',
  'prank_speechless',
  'speechless_even',
  'even_get',
  'get_talk',
  'talk_like',
  'like_thug',
  'thug_year',
  'year_old',
  'old_live',
  'live_gate',
  'gate_commun',
  'commun_first',
  'first_figur',
  'figur_proceed',
  'proceed_ill',
  'ill_admit',
  'admit_never',
  'never_imagin',
  'imagin_either',
  'either_boy',
  'boy_would',
  'would_type',
  'type_person',
  'person_someth',
  'someth_like',
  'like_way',
  'way_hell',
  'hell_let',
  'let_go',
  'go_day',
  'day_thought',
  'thought_decid',
  'decid_go',
  'go_happen',
  'happen_first',
  'first_thing',
  'thing_first',
  'first_ground',
  'ground_long',
  'long_im',
  'im_sure',
  'sure_secondli',
  'secondli_id',
  'id_gotten',
  'gotten_jacob',
  'jacob_bike',
  'bike_birthday',
  'birthday_arriv',
  'arriv_day',
  'day_previou',
  'previou_id',
  'id_plan',
  'plan_give',
  'give_parent',
  'parent_came',
  'came_visit',
  'visit_sinc',
  'sinc_theyd',
  'theyd_unabl',
  'unabl_make',
  'make_parti',
  'parti_instead',
  'instead_show',
  'show_knew',
  'knew_prank',
  'prank_told',
  'told_ground',
  'ground_made',
  'made_carri',
  'carri_new',
  'new_bike',
  'bike_bedroom',
  'bedroom_closet',
  'closet_car',
  'car_drive',
  'drive_ashley',
  'ashley_hous',
  'hous_cri',
  'cri_whole',
  'whole_way',
  'way_id',
  'id_call',
  'call_parent',
  'parent_earlier',
  'earlier_explain',
  'explain_everyth',
  'everyth_got',
  'got_cart',
  'cart_front',
  'front_porch',
  'porch_ring',
  'ring_bell',
  'bell_front',
  'front_ashley',
  'ashley_parent',
  'parent_god',
  'god_give',
  'give_sincer',
  'sincer_apolog',
  'apolog_gift',
  'gift_bike',
  'bike_even',
  'even_apolog',
  'apolog_say',
  'say_rais',
  'rais_boy',
  'boy_way',
  'way_unforgiv',
  'unforgiv_also',
  'also_call',
  'call_parent',
  'parent_boy',
  'boy_apart',
  'apart_littl',
  'littl_stunt',
  'stunt_seem',
  'seem_right',
  'right_horrifi',
  'horrifi_son',
  'son_involv',
  'involv_felt',
  'felt_id',
  'id_handl',
  'handl_best',
  'best_could',
  'could_friend',
  'friend_agre',
  'agre_though',
  'though_parent',
  'parent_found',
  'found_id',
  'id_made',
  'made_jacob',
  'jacob_give',
  'give_birthday',
  'birthday_gift',
  'gift_away',
  'away_said',
  'said_went',
  'went_far',
  'far_still',
  'still_feel',
  'feel_like',
  'like_right',
  'right_parent',
  'parent_less',
  'less_dog',
  'dog_pile',
  'pile_like',
  'like_actual',
  'actual_made',
  'made_wonder',
  'wonder_handl',
  'handl_extrem',
  'extrem_aita',
  'recent_found_son',
  'found_son_jacob',
  'son_jacob_pull',
  'jacob_pull_incred',
  'pull_incred_cruel',
  'incred_cruel_prank',
  'cruel_prank_one',
  'prank_one_girl',
  'one_girl_ill',
  'girl_ill_call',
  'ill_call_ashley',
  'call_ashley_friend',
  'ashley_friend_group',
  'friend_group_know',
  'group_know_girl',
  'know_girl_hous',
  'girl_hous_even',
  'hous_even_attend',
  'even_attend_jacob',
  'attend_jacob_birthday',
  'jacob_birthday_parti',
  'birthday_parti_month',
  'parti_month_ago',
  'month_ago_seem',
  'ago_seem_incred',
  'seem_incred_sweet',
  'incred_sweet_bit',
  'sweet_bit_shi',
  'bit_shi_oldest',
  'shi_oldest_son',
  'oldest_son_mark',
  'son_mark_came',
  'mark_came_told',
  'came_told_jacob',
  'told_jacob_ask',
  'jacob_ask_ashley',
  'ask_ashley_date',
  'ashley_date_prank',
  'date_prank_stun',
  'prank_stun_cours',
  'stun_cours_ask',
  'cours_ask_could',
  'ask_could_know',
  'could_know_hope',
  'know_hope_mother',
  'hope_mother_would',
  'mother_would_true',
  'would_true_mark',
  'true_mark_show',
  'mark_show_famili',
  'show_famili_tablet',
  'famili_tablet_use',
  'tablet_use_mostli',
  'use_mostli_son',
  'mostli_son_seem',
  'son_seem_jacob',
  'seem_jacob_forgot',
  'jacob_forgot_log',
  'forgot_log_chat',
  'log_chat_app',
  'chat_app_discord',
  'app_discord_read',
  'discord_read_long',
  'read_long_seri',
  'long_seri_messag',
  'seri_messag_jacob',
  'messag_jacob_friend',
  'jacob_friend_mock',
  'friend_mock_ashley',
  'mock_ashley_heartless',
  'ashley_heartless_prank',
  'heartless_prank_speechless',
  'prank_speechless_even',
  'speechless_even_get',
  'even_get_talk',
  'get_talk_like',
  'talk_like_thug',
  'like_thug_year',
  'thug_year_old',
  'year_old_live',
  'old_live_gate',
  'live_gate_commun',
  'gate_commun_first',
  'commun_first_figur',
  'first_figur_proceed',
  'figur_proceed_ill',
  'proceed_ill_admit',
  'ill_admit_never',
  'admit_never_imagin',
  'never_imagin_either',
  'imagin_either_boy',
  'either_boy_would',
  'boy_would_type',
  'would_type_person',
  'type_person_someth',
  'person_someth_like',
  'someth_like_way',
  'like_way_hell',
  'way_hell_let',
  'hell_let_go',
  'let_go_day',
  'go_day_thought',
  'day_thought_decid',
  'thought_decid_go',
  'decid_go_happen',
  'go_happen_first',
  'happen_first_thing',
  'first_thing_first',
  'thing_first_ground',
  'first_ground_long',
  'ground_long_im',
  'long_im_sure',
  'im_sure_secondli',
  'sure_secondli_id',
  'secondli_id_gotten',
  'id_gotten_jacob',
  'gotten_jacob_bike',
  'jacob_bike_birthday',
  'bike_birthday_arriv',
  'birthday_arriv_day',
  'arriv_day_previou',
  'day_previou_id',
  'previou_id_plan',
  'id_plan_give',
  'plan_give_parent',
  'give_parent_came',
  'parent_came_visit',
  'came_visit_sinc',
  'visit_sinc_theyd',
  'sinc_theyd_unabl',
  'theyd_unabl_make',
  'unabl_make_parti',
  'make_parti_instead',
  'parti_instead_show',
  'instead_show_knew',
  'show_knew_prank',
  'knew_prank_told',
  'prank_told_ground',
  'told_ground_made',
  'ground_made_carri',
  'made_carri_new',
  'carri_new_bike',
  'new_bike_bedroom',
  'bike_bedroom_closet',
  'bedroom_closet_car',
  'closet_car_drive',
  'car_drive_ashley',
  'drive_ashley_hous',
  'ashley_hous_cri',
  'hous_cri_whole',
  'cri_whole_way',
  'whole_way_id',
  'way_id_call',
  'id_call_parent',
  'call_parent_earlier',
  'parent_earlier_explain',
  'earlier_explain_everyth',
  'explain_everyth_got',
  'everyth_got_cart',
  'got_cart_front',
  'cart_front_porch',
  'front_porch_ring',
  'porch_ring_bell',
  'ring_bell_front',
  'bell_front_ashley',
  'front_ashley_parent',
  'ashley_parent_god',
  'parent_god_give',
  'god_give_sincer',
  'give_sincer_apolog',
  'sincer_apolog_gift',
  'apolog_gift_bike',
  'gift_bike_even',
  'bike_even_apolog',
  'even_apolog_say',
  'apolog_say_rais',
  'say_rais_boy',
  'rais_boy_way',
  'boy_way_unforgiv',
  'way_unforgiv_also',
  'unforgiv_also_call',
  'also_call_parent',
  'call_parent_boy',
  'parent_boy_apart',
  'boy_apart_littl',
  'apart_littl_stunt',
  'littl_stunt_seem',
  'stunt_seem_right',
  'seem_right_horrifi',
  'right_horrifi_son',
  'horrifi_son_involv',
  'son_involv_felt',
  'involv_felt_id',
  'felt_id_handl',
  'id_handl_best',
  'handl_best_could',
  'best_could_friend',
  'could_friend_agre',
  'friend_agre_though',
  'agre_though_parent',
  'though_parent_found',
  'parent_found_id',
  'found_id_made',
  'id_made_jacob',
  'made_jacob_give',
  'jacob_give_birthday',
  'give_birthday_gift',
  'birthday_gift_away',
  'gift_away_said',
  'away_said_went',
  'said_went_far',
  'went_far_still',
  'far_still_feel',
  'still_feel_like',
  'feel_like_right',
  'like_right_parent',
  'right_parent_less',
  'parent_less_dog',
  'less_dog_pile',
  'dog_pile_like',
  'pile_like_actual',
  'like_actual_made',
  'actual_made_wonder',
  'made_wonder_handl',
  'wonder_handl_extrem',
  'handl_extrem_aita'],
 ['parent',
  'plan',
  'child',
  'free',
  'coupl',
  'religi',
  'belief',
  'kept',
  'even',
  'unwant',
  'pregnanc',
  'rememb',
  'exactli',
  'told',
  'alway',
  'knew',
  'would',
  'expect',
  'move',
  'soon',
  'reach',
  'year',
  'old',
  'work',
  'save',
  'sinc',
  'turn',
  'respect',
  'ammount',
  'save',
  'account',
  'fair',
  'parent',
  'provid',
  'financi',
  'distant',
  'emot',
  'never',
  'abus',
  'week',
  'th',
  'birthday',
  'januari',
  'th',
  'sat',
  'ask',
  'found',
  'place',
  'move',
  'yet',
  'said',
  'ye',
  'extent',
  'convers',
  'plan',
  'live',
  'apart',
  'guy',
  'friend',
  'famili',
  'heard',
  'offer',
  'finish',
  'basement',
  'separ',
  'access',
  'cheap',
  'price',
  '$',
  'month',
  'util',
  'includ',
  'payment',
  'requir',
  'jump',
  'opportun',
  'even',
  'though',
  'know',
  'piti',
  'offer',
  'relev',
  'famili',
  'mine',
  'indian',
  'descent',
  'move',
  'day',
  'birthday',
  'parent',
  'contact',
  'sinc',
  'admit',
  'reach',
  'yesterday',
  'dad',
  'call',
  'invit',
  'dinner',
  'awkward',
  'even',
  'ask',
  'move',
  'back',
  'said',
  'pay',
  'rent',
  'anyth',
  'thing',
  'like',
  'new',
  'live',
  'situat',
  'lack',
  'awkward',
  'tension',
  'even',
  'know',
  'move',
  'said',
  'polit',
  'thank',
  'offer',
  'mother',
  'start',
  'cri',
  'left',
  'room',
  'dad',
  'start',
  'scold',
  'say',
  'friend',
  'exclud',
  'rumour',
  'threw',
  'anoth',
  'desi',
  'famili',
  'take',
  'said',
  'exactli',
  'happen',
  'job',
  'save',
  'consequ',
  'action',
  'decis',
  'whole',
  'extend',
  'famili',
  'call',
  'nonstop',
  'say',
  'ah',
  'aita',
  'edit',
  'first',
  'want',
  'thank',
  'kind',
  'comment',
  'well',
  'wish',
  'hesit',
  'moment',
  'made',
  'feel',
  'much',
  'better',
  'decis',
  'read',
  'everi',
  'comment',
  'appreci',
  'everi',
  'award',
  'think',
  'post',
  'would',
  'explod',
  'like',
  'happi',
  'nice',
  'comment',
  'answer',
  'question',
  'ask',
  'lot',
  'fellow',
  'desi',
  'redditor',
  'think',
  'parent',
  'thought',
  'would',
  'move',
  'stranger',
  'could',
  'say',
  'tri',
  'independ',
  'support',
  'move',
  'peopl',
  'commun',
  'pretend',
  'anymor',
  'also',
  'think',
  'aunti',
  'uncl',
  'live',
  'one',
  'told',
  'peopl',
  'situat',
  'extrem',
  'nice',
  'upset',
  'parent',
  'offer',
  'live',
  'long',
  'wish',
  'even',
  'go',
  'accept',
  'rent',
  'except',
  'insist',
  'parent_plan',
  'plan_child',
  'child_free',
  'free_coupl',
  'coupl_religi',
  'religi_belief',
  'belief_kept',
  'kept_even',
  'even_unwant',
  'unwant_pregnanc',
  'pregnanc_rememb',
  'rememb_exactli',
  'exactli_told',
  'told_alway',
  'alway_knew',
  'knew_would',
  'would_expect',
  'expect_move',
  'move_soon',
  'soon_reach',
  'reach_year',
  'year_old',
  'old_work',
  'work_save',
  'save_sinc',
  'sinc_turn',
  'turn_respect',
  'respect_ammount',
  'ammount_save',
  'save_account',
  'account_fair',
  'fair_parent',
  'parent_provid',
  'provid_financi',
  'financi_distant',
  'distant_emot',
  'emot_never',
  'never_abus',
  'abus_week',
  'week_th',
  'th_birthday',
  'birthday_januari',
  'januari_th',
  'th_sat',
  'sat_ask',
  'ask_found',
  'found_place',
  'place_move',
  'move_yet',
  'yet_said',
  'said_ye',
  'ye_extent',
  'extent_convers',
  'convers_plan',
  'plan_live',
  'live_apart',
  'apart_guy',
  'guy_friend',
  'friend_famili',
  'famili_heard',
  'heard_offer',
  'offer_finish',
  'finish_basement',
  'basement_separ',
  'separ_access',
  'access_cheap',
  'cheap_price',
  'price_$',
  '$_month',
  'month_util',
  'util_includ',
  'includ_payment',
  'payment_requir',
  'requir_jump',
  'jump_opportun',
  'opportun_even',
  'even_though',
  'though_know',
  'know_piti',
  'piti_offer',
  'offer_relev',
  'relev_famili',
  'famili_mine',
  'mine_indian',
  'indian_descent',
  'descent_move',
  'move_day',
  'day_birthday',
  'birthday_parent',
  'parent_contact',
  'contact_sinc',
  'sinc_admit',
  'admit_reach',
  'reach_yesterday',
  'yesterday_dad',
  'dad_call',
  'call_invit',
  'invit_dinner',
  'dinner_awkward',
  'awkward_even',
  'even_ask',
  'ask_move',
  'move_back',
  'back_said',
  'said_pay',
  'pay_rent',
  'rent_anyth',
  'anyth_thing',
  'thing_like',
  'like_new',
  'new_live',
  'live_situat',
  'situat_lack',
  'lack_awkward',
  'awkward_tension',
  'tension_even',
  'even_know',
  'know_move',
  'move_said',
  'said_polit',
  'polit_thank',
  'thank_offer',
  'offer_mother',
  'mother_start',
  'start_cri',
  'cri_left',
  'left_room',
  'room_dad',
  'dad_start',
  'start_scold',
  'scold_say',
  'say_friend',
  'friend_exclud',
  'exclud_rumour',
  'rumour_threw',
  'threw_anoth',
  'anoth_desi',
  'desi_famili',
  'famili_take',
  'take_said',
  'said_exactli',
  'exactli_happen',
  'happen_job',
  'job_save',
  'save_consequ',
  'consequ_action',
  'action_decis',
  'decis_whole',
  'whole_extend',
  'extend_famili',
  'famili_call',
  'call_nonstop',
  'nonstop_say',
  'say_ah',
  'ah_aita',
  'aita_edit',
  'edit_first',
  'first_want',
  'want_thank',
  'thank_kind',
  'kind_comment',
  'comment_well',
  'well_wish',
  'wish_hesit',
  'hesit_moment',
  'moment_made',
  'made_feel',
  'feel_much',
  'much_better',
  'better_decis',
  'decis_read',
  'read_everi',
  'everi_comment',
  'comment_appreci',
  'appreci_everi',
  'everi_award',
  'award_think',
  'think_post',
  'post_would',
  'would_explod',
  'explod_like',
  'like_happi',
  'happi_nice',
  'nice_comment',
  'comment_answer',
  'answer_question',
  'question_ask',
  'ask_lot',
  'lot_fellow',
  'fellow_desi',
  'desi_redditor',
  'redditor_think',
  'think_parent',
  'parent_thought',
  'thought_would',
  'would_move',
  'move_stranger',
  'stranger_could',
  'could_say',
  'say_tri',
  'tri_independ',
  'independ_support',
  'support_move',
  'move_peopl',
  'peopl_commun',
  'commun_pretend',
  'pretend_anymor',
  'anymor_also',
  'also_think',
  'think_aunti',
  'aunti_uncl',
  'uncl_live',
  'live_one',
  'one_told',
  'told_peopl',
  'peopl_situat',
  'situat_extrem',
  'extrem_nice',
  'nice_upset',
  'upset_parent',
  'parent_offer',
  'offer_live',
  'live_long',
  'long_wish',
  'wish_even',
  'even_go',
  'go_accept',
  'accept_rent',
  'rent_except',
  'except_insist',
  'parent_plan_child',
  'plan_child_free',
  'child_free_coupl',
  'free_coupl_religi',
  'coupl_religi_belief',
  'religi_belief_kept',
  'belief_kept_even',
  'kept_even_unwant',
  'even_unwant_pregnanc',
  'unwant_pregnanc_rememb',
  'pregnanc_rememb_exactli',
  'rememb_exactli_told',
  'exactli_told_alway',
  'told_alway_knew',
  'alway_knew_would',
  'knew_would_expect',
  'would_expect_move',
  'expect_move_soon',
  'move_soon_reach',
  'soon_reach_year',
  'reach_year_old',
  'year_old_work',
  'old_work_save',
  'work_save_sinc',
  'save_sinc_turn',
  'sinc_turn_respect',
  'turn_respect_ammount',
  'respect_ammount_save',
  'ammount_save_account',
  'save_account_fair',
  'account_fair_parent',
  'fair_parent_provid',
  'parent_provid_financi',
  'provid_financi_distant',
  'financi_distant_emot',
  'distant_emot_never',
  'emot_never_abus',
  'never_abus_week',
  'abus_week_th',
  'week_th_birthday',
  'th_birthday_januari',
  'birthday_januari_th',
  'januari_th_sat',
  'th_sat_ask',
  'sat_ask_found',
  'ask_found_place',
  'found_place_move',
  'place_move_yet',
  'move_yet_said',
  'yet_said_ye',
  'said_ye_extent',
  'ye_extent_convers',
  'extent_convers_plan',
  'convers_plan_live',
  'plan_live_apart',
  'live_apart_guy',
  'apart_guy_friend',
  'guy_friend_famili',
  'friend_famili_heard',
  'famili_heard_offer',
  'heard_offer_finish',
  'offer_finish_basement',
  'finish_basement_separ',
  'basement_separ_access',
  'separ_access_cheap',
  'access_cheap_price',
  'cheap_price_$',
  'price_$_month',
  '$_month_util',
  'month_util_includ',
  'util_includ_payment',
  'includ_payment_requir',
  'payment_requir_jump',
  'requir_jump_opportun',
  'jump_opportun_even',
  'opportun_even_though',
  'even_though_know',
  'though_know_piti',
  'know_piti_offer',
  'piti_offer_relev',
  'offer_relev_famili',
  'relev_famili_mine',
  'famili_mine_indian',
  'mine_indian_descent',
  'indian_descent_move',
  'descent_move_day',
  'move_day_birthday',
  'day_birthday_parent',
  'birthday_parent_contact',
  'parent_contact_sinc',
  'contact_sinc_admit',
  'sinc_admit_reach',
  'admit_reach_yesterday',
  'reach_yesterday_dad',
  'yesterday_dad_call',
  'dad_call_invit',
  'call_invit_dinner',
  'invit_dinner_awkward',
  'dinner_awkward_even',
  'awkward_even_ask',
  'even_ask_move',
  'ask_move_back',
  'move_back_said',
  'back_said_pay',
  'said_pay_rent',
  'pay_rent_anyth',
  'rent_anyth_thing',
  'anyth_thing_like',
  'thing_like_new',
  'like_new_live',
  'new_live_situat',
  'live_situat_lack',
  'situat_lack_awkward',
  'lack_awkward_tension',
  'awkward_tension_even',
  'tension_even_know',
  'even_know_move',
  'know_move_said',
  'move_said_polit',
  'said_polit_thank',
  'polit_thank_offer',
  'thank_offer_mother',
  'offer_mother_start',
  'mother_start_cri',
  'start_cri_left',
  'cri_left_room',
  'left_room_dad',
  'room_dad_start',
  'dad_start_scold',
  'start_scold_say',
  'scold_say_friend',
  'say_friend_exclud',
  'friend_exclud_rumour',
  'exclud_rumour_threw',
  'rumour_threw_anoth',
  'threw_anoth_desi',
  'anoth_desi_famili',
  'desi_famili_take',
  'famili_take_said',
  'take_said_exactli',
  'said_exactli_happen',
  'exactli_happen_job',
  'happen_job_save',
  'job_save_consequ',
  'save_consequ_action',
  'consequ_action_decis',
  'action_decis_whole',
  'decis_whole_extend',
  'whole_extend_famili',
  'extend_famili_call',
  'famili_call_nonstop',
  'call_nonstop_say',
  'nonstop_say_ah',
  'say_ah_aita',
  'ah_aita_edit',
  'aita_edit_first',
  'edit_first_want',
  'first_want_thank',
  'want_thank_kind',
  'thank_kind_comment',
  'kind_comment_well',
  'comment_well_wish',
  'well_wish_hesit',
  'wish_hesit_moment',
  'hesit_moment_made',
  'moment_made_feel',
  'made_feel_much',
  'feel_much_better',
  'much_better_decis',
  'better_decis_read',
  'decis_read_everi',
  'read_everi_comment',
  'everi_comment_appreci',
  'comment_appreci_everi',
  'appreci_everi_award',
  'everi_award_think',
  'award_think_post',
  'think_post_would',
  'post_would_explod',
  'would_explod_like',
  'explod_like_happi',
  'like_happi_nice',
  'happi_nice_comment',
  'nice_comment_answer',
  'comment_answer_question',
  'answer_question_ask',
  'question_ask_lot',
  'ask_lot_fellow',
  'lot_fellow_desi',
  'fellow_desi_redditor',
  'desi_redditor_think',
  'redditor_think_parent',
  'think_parent_thought',
  'parent_thought_would',
  'thought_would_move',
  'would_move_stranger',
  'move_stranger_could',
  'stranger_could_say',
  'could_say_tri',
  'say_tri_independ',
  'tri_independ_support',
  'independ_support_move',
  'support_move_peopl',
  'move_peopl_commun',
  'peopl_commun_pretend',
  'commun_pretend_anymor',
  'pretend_anymor_also',
  'anymor_also_think',
  'also_think_aunti',
  'think_aunti_uncl',
  'aunti_uncl_live',
  'uncl_live_one',
  'live_one_told',
  'one_told_peopl',
  'told_peopl_situat',
  'peopl_situat_extrem',
  'situat_extrem_nice',
  'extrem_nice_upset',
  'nice_upset_parent',
  'upset_parent_offer',
  'parent_offer_live',
  'offer_live_long',
  'live_long_wish',
  'long_wish_even',
  'wish_even_go',
  'even_go_accept',
  'go_accept_rent',
  'accept_rent_except',
  'rent_except_insist'],
 ['wow',
  'never',
  'felt',
  'support',
  'love',
  'long',
  'time',
  'even',
  'go',
  'post',
  'anyth',
  'im',
  'happi',
  'know',
  'explain',
  'big',
  'impact',
  'everyon',
  'comment',
  'dm',
  'love',
  'thank',
  'much',
  'offer',
  'friendship',
  'week',
  'ago',
  'move',
  'father',
  'alon',
  'son',
  'go',
  'crazi',
  'loneli',
  'liter',
  'kill',
  'need',
  'help',
  'longer',
  'asham',
  'admit',
  'dad',
  'made',
  'offer',
  'work',
  'mon-fri',
  'weekend',
  'well',
  'ive',
  'follow',
  'everyon',
  'advic',
  'sign',
  'mommi',
  'thing',
  'nearbi',
  'nerv',
  'wreck',
  'mani',
  'mom',
  'friendli',
  'came',
  'got',
  'three',
  'number',
  'theyr',
  'invit',
  'dinner',
  'parti',
  'theyr',
  'realli',
  'sweet',
  'despit',
  'least',
  'year',
  'older',
  'theyv',
  'sort',
  'adopt',
  'lol',
  'word',
  'mine',
  'im',
  'also',
  'go',
  'walk',
  'work',
  'dad',
  'son',
  'come',
  'along',
  'sometim',
  'dad',
  'also',
  'cook',
  'togeth',
  'make',
  'pretti',
  'neat',
  'stuff',
  'girlfriend',
  'also',
  'realli',
  'kind',
  'mother',
  'sister',
  'still',
  'know',
  'dislik',
  'babi',
  'much',
  'took',
  'step',
  'left',
  'gc',
  'might',
  'sound',
  'ridicul',
  'realli',
  'hard',
  'even',
  'shed',
  'tear',
  'spoken',
  'sinc',
  'contact',
  'law',
  'one',
  'last',
  'time',
  'idk',
  'parent',
  'said',
  'meet',
  'tri',
  'take',
  'dad',
  'got',
  'lawyer',
  'case',
  'im',
  'meet',
  'weekend',
  'depend',
  'goe',
  'let',
  'see',
  'son',
  'eventu',
  'final',
  'saw',
  'doctor',
  'ive',
  'diagnos',
  'ppd',
  'im',
  'current',
  'see',
  'therapist',
  'recommend',
  'start',
  'treatment',
  'plan',
  'son',
  'father',
  'gf',
  'biggest',
  'support',
  '‘',
  'tri',
  'better',
  'well',
  'ive',
  'also',
  'miss',
  'fiancé',
  'lot',
  'day',
  'memori',
  'kind',
  'calm',
  'idk',
  'long',
  'im',
  'alreadi',
  'see',
  'improv',
  'life',
  'crazi',
  'make',
  'origin',
  'post',
  'kickstart',
  'chang',
  'thank',
  'much',
  'everyth',
  'edit',
  'thank',
  'much',
  'nice',
  'comment',
  'messag',
  'im',
  'tri',
  'read',
  'mani',
  'keep',
  'haha',
  'ive',
  'shed',
  'tear',
  'well',
  'meet',
  'law',
  'went',
  'well',
  'fiancé',
  'mother',
  'cri',
  'lot',
  'said',
  'sorri',
  'give',
  'mani',
  'detail',
  'show',
  'pictur',
  'son',
  'still',
  'meet',
  'till',
  'lot',
  'later',
  'without',
  'progress',
  'also',
  'call',
  'fiancé',
  'bf',
  'fiancé',
  'well',
  'pass',
  'away',
  'week',
  'propos',
  'found',
  'ring',
  'friend',
  'told',
  'although',
  'never',
  'offici',
  'fiancé',
  'comfort',
  'call',
  'law',
  'law',
  'help',
  'word',
  'count',
  'yeah',
  'thank',
  'wow_never',
  'never_felt',
  'felt_support',
  'support_love',
  'love_long',
  'long_time',
  'time_even',
  'even_go',
  'go_post',
  'post_anyth',
  'anyth_im',
  'im_happi',
  'happi_know',
  'know_explain',
  'explain_big',
  'big_impact',
  'impact_everyon',
  'everyon_comment',
  'comment_dm',
  'dm_love',
  'love_thank',
  'thank_much',
  'much_offer',
  'offer_friendship',
  'friendship_week',
  'week_ago',
  'ago_move',
  'move_father',
  'father_alon',
  'alon_son',
  'son_go',
  'go_crazi',
  'crazi_loneli',
  'loneli_liter',
  'liter_kill',
  'kill_need',
  'need_help',
  'help_longer',
  'longer_asham',
  'asham_admit',
  'admit_dad',
  'dad_made',
  'made_offer',
  'offer_work',
  'work_mon-fri',
  'mon-fri_weekend',
  'weekend_well',
  'well_ive',
  'ive_follow',
  'follow_everyon',
  'everyon_advic',
  'advic_sign',
  'sign_mommi',
  'mommi_thing',
  'thing_nearbi',
  'nearbi_nerv',
  'nerv_wreck',
  'wreck_mani',
  'mani_mom',
  'mom_friendli',
  'friendli_came',
  'came_got',
  'got_three',
  'three_number',
  'number_theyr',
  'theyr_invit',
  'invit_dinner',
  'dinner_parti',
  'parti_theyr',
  'theyr_realli',
  'realli_sweet',
  'sweet_despit',
  'despit_least',
  'least_year',
  'year_older',
  'older_theyv',
  'theyv_sort',
  'sort_adopt',
  'adopt_lol',
  'lol_word',
  'word_mine',
  'mine_im',
  'im_also',
  'also_go',
  'go_walk',
  'walk_work',
  'work_dad',
  'dad_son',
  'son_come',
  'come_along',
  'along_sometim',
  'sometim_dad',
  'dad_also',
  'also_cook',
  'cook_togeth',
  'togeth_make',
  'make_pretti',
  'pretti_neat',
  'neat_stuff',
  'stuff_girlfriend',
  'girlfriend_also',
  'also_realli',
  'realli_kind',
  'kind_mother',
  'mother_sister',
  'sister_still',
  'still_know',
  'know_dislik',
  'dislik_babi',
  'babi_much',
  'much_took',
  'took_step',
  'step_left',
  'left_gc',
  'gc_might',
  'might_sound',
  'sound_ridicul',
  'ridicul_realli',
  'realli_hard',
  'hard_even',
  'even_shed',
  'shed_tear',
  'tear_spoken',
  'spoken_sinc',
  'sinc_contact',
  'contact_law',
  'law_one',
  'one_last',
  'last_time',
  'time_idk',
  'idk_parent',
  'parent_said',
  'said_meet',
  'meet_tri',
  'tri_take',
  'take_dad',
  'dad_got',
  'got_lawyer',
  'lawyer_case',
  'case_im',
  'im_meet',
  'meet_weekend',
  'weekend_depend',
  'depend_goe',
  'goe_let',
  'let_see',
  'see_son',
  'son_eventu',
  'eventu_final',
  'final_saw',
  'saw_doctor',
  'doctor_ive',
  'ive_diagnos',
  'diagnos_ppd',
  'ppd_im',
  'im_current',
  'current_see',
  'see_therapist',
  'therapist_recommend',
  'recommend_start',
  'start_treatment',
  'treatment_plan',
  'plan_son',
  'son_father',
  'father_gf',
  'gf_biggest',
  'biggest_support',
  'support_‘',
  '‘_tri',
  'tri_better',
  'better_well',
  'well_ive',
  'ive_also',
  'also_miss',
  'miss_fiancé',
  'fiancé_lot',
  'lot_day',
  'day_memori',
  'memori_kind',
  'kind_calm',
  'calm_idk',
  'idk_long',
  'long_im',
  'im_alreadi',
  'alreadi_see',
  'see_improv',
  'improv_life',
  'life_crazi',
  'crazi_make',
  'make_origin',
  'origin_post',
  'post_kickstart',
  'kickstart_chang',
  'chang_thank',
  'thank_much',
  'much_everyth',
  'everyth_edit',
  'edit_thank',
  'thank_much',
  'much_nice',
  'nice_comment',
  'comment_messag',
  'messag_im',
  'im_tri',
  'tri_read',
  'read_mani',
  'mani_keep',
  'keep_haha',
  'haha_ive',
  'ive_shed',
  'shed_tear',
  'tear_well',
  'well_meet',
  'meet_law',
  'law_went',
  'went_well',
  'well_fiancé',
  'fiancé_mother',
  'mother_cri',
  'cri_lot',
  'lot_said',
  'said_sorri',
  'sorri_give',
  'give_mani',
  'mani_detail',
  'detail_show',
  'show_pictur',
  'pictur_son',
  'son_still',
  'still_meet',
  'meet_till',
  'till_lot',
  'lot_later',
  'later_without',
  'without_progress',
  'progress_also',
  'also_call',
  'call_fiancé',
  'fiancé_bf',
  'bf_fiancé',
  'fiancé_well',
  'well_pass',
  'pass_away',
  'away_week',
  'week_propos',
  'propos_found',
  'found_ring',
  'ring_friend',
  'friend_told',
  'told_although',
  'although_never',
  'never_offici',
  'offici_fiancé',
  'fiancé_comfort',
  'comfort_call',
  'call_law',
  'law_law',
  'law_help',
  'help_word',
  'word_count',
  'count_yeah',
  'yeah_thank',
  'wow_never_felt',
  'never_felt_support',
  'felt_support_love',
  'support_love_long',
  'love_long_time',
  'long_time_even',
  'time_even_go',
  'even_go_post',
  'go_post_anyth',
  'post_anyth_im',
  'anyth_im_happi',
  'im_happi_know',
  'happi_know_explain',
  'know_explain_big',
  'explain_big_impact',
  'big_impact_everyon',
  'impact_everyon_comment',
  'everyon_comment_dm',
  'comment_dm_love',
  'dm_love_thank',
  'love_thank_much',
  'thank_much_offer',
  'much_offer_friendship',
  'offer_friendship_week',
  'friendship_week_ago',
  'week_ago_move',
  'ago_move_father',
  'move_father_alon',
  'father_alon_son',
  'alon_son_go',
  'son_go_crazi',
  'go_crazi_loneli',
  'crazi_loneli_liter',
  'loneli_liter_kill',
  'liter_kill_need',
  'kill_need_help',
  'need_help_longer',
  'help_longer_asham',
  'longer_asham_admit',
  'asham_admit_dad',
  'admit_dad_made',
  'dad_made_offer',
  'made_offer_work',
  'offer_work_mon-fri',
  'work_mon-fri_weekend',
  'mon-fri_weekend_well',
  'weekend_well_ive',
  'well_ive_follow',
  'ive_follow_everyon',
  'follow_everyon_advic',
  'everyon_advic_sign',
  'advic_sign_mommi',
  'sign_mommi_thing',
  'mommi_thing_nearbi',
  'thing_nearbi_nerv',
  'nearbi_nerv_wreck',
  'nerv_wreck_mani',
  'wreck_mani_mom',
  'mani_mom_friendli',
  'mom_friendli_came',
  'friendli_came_got',
  'came_got_three',
  'got_three_number',
  'three_number_theyr',
  'number_theyr_invit',
  'theyr_invit_dinner',
  'invit_dinner_parti',
  'dinner_parti_theyr',
  'parti_theyr_realli',
  'theyr_realli_sweet',
  'realli_sweet_despit',
  'sweet_despit_least',
  'despit_least_year',
  'least_year_older',
  'year_older_theyv',
  'older_theyv_sort',
  'theyv_sort_adopt',
  'sort_adopt_lol',
  'adopt_lol_word',
  'lol_word_mine',
  'word_mine_im',
  'mine_im_also',
  'im_also_go',
  'also_go_walk',
  'go_walk_work',
  'walk_work_dad',
  'work_dad_son',
  'dad_son_come',
  'son_come_along',
  'come_along_sometim',
  'along_sometim_dad',
  'sometim_dad_also',
  'dad_also_cook',
  'also_cook_togeth',
  'cook_togeth_make',
  'togeth_make_pretti',
  'make_pretti_neat',
  'pretti_neat_stuff',
  'neat_stuff_girlfriend',
  'stuff_girlfriend_also',
  'girlfriend_also_realli',
  'also_realli_kind',
  'realli_kind_mother',
  'kind_mother_sister',
  'mother_sister_still',
  'sister_still_know',
  'still_know_dislik',
  'know_dislik_babi',
  'dislik_babi_much',
  'babi_much_took',
  'much_took_step',
  'took_step_left',
  'step_left_gc',
  'left_gc_might',
  'gc_might_sound',
  'might_sound_ridicul',
  'sound_ridicul_realli',
  'ridicul_realli_hard',
  'realli_hard_even',
  'hard_even_shed',
  'even_shed_tear',
  'shed_tear_spoken',
  'tear_spoken_sinc',
  'spoken_sinc_contact',
  'sinc_contact_law',
  'contact_law_one',
  'law_one_last',
  'one_last_time',
  'last_time_idk',
  'time_idk_parent',
  'idk_parent_said',
  'parent_said_meet',
  'said_meet_tri',
  'meet_tri_take',
  'tri_take_dad',
  'take_dad_got',
  'dad_got_lawyer',
  'got_lawyer_case',
  'lawyer_case_im',
  'case_im_meet',
  'im_meet_weekend',
  'meet_weekend_depend',
  'weekend_depend_goe',
  'depend_goe_let',
  'goe_let_see',
  'let_see_son',
  'see_son_eventu',
  'son_eventu_final',
  'eventu_final_saw',
  'final_saw_doctor',
  'saw_doctor_ive',
  'doctor_ive_diagnos',
  'ive_diagnos_ppd',
  'diagnos_ppd_im',
  'ppd_im_current',
  'im_current_see',
  'current_see_therapist',
  'see_therapist_recommend',
  'therapist_recommend_start',
  'recommend_start_treatment',
  'start_treatment_plan',
  'treatment_plan_son',
  'plan_son_father',
  'son_father_gf',
  'father_gf_biggest',
  'gf_biggest_support',
  'biggest_support_‘',
  'support_‘_tri',
  '‘_tri_better',
  'tri_better_well',
  'better_well_ive',
  'well_ive_also',
  'ive_also_miss',
  'also_miss_fiancé',
  'miss_fiancé_lot',
  'fiancé_lot_day',
  'lot_day_memori',
  'day_memori_kind',
  'memori_kind_calm',
  'kind_calm_idk',
  'calm_idk_long',
  'idk_long_im',
  'long_im_alreadi',
  'im_alreadi_see',
  'alreadi_see_improv',
  'see_improv_life',
  'improv_life_crazi',
  'life_crazi_make',
  'crazi_make_origin',
  'make_origin_post',
  'origin_post_kickstart',
  'post_kickstart_chang',
  'kickstart_chang_thank',
  'chang_thank_much',
  'thank_much_everyth',
  'much_everyth_edit',
  'everyth_edit_thank',
  'edit_thank_much',
  'thank_much_nice',
  'much_nice_comment',
  'nice_comment_messag',
  'comment_messag_im',
  'messag_im_tri',
  'im_tri_read',
  'tri_read_mani',
  'read_mani_keep',
  'mani_keep_haha',
  'keep_haha_ive',
  'haha_ive_shed',
  'ive_shed_tear',
  'shed_tear_well',
  'tear_well_meet',
  'well_meet_law',
  'meet_law_went',
  'law_went_well',
  'went_well_fiancé',
  'well_fiancé_mother',
  'fiancé_mother_cri',
  'mother_cri_lot',
  'cri_lot_said',
  'lot_said_sorri',
  'said_sorri_give',
  'sorri_give_mani',
  'give_mani_detail',
  'mani_detail_show',
  'detail_show_pictur',
  'show_pictur_son',
  'pictur_son_still',
  'son_still_meet',
  'still_meet_till',
  'meet_till_lot',
  'till_lot_later',
  'lot_later_without',
  'later_without_progress',
  'without_progress_also',
  'progress_also_call',
  'also_call_fiancé',
  'call_fiancé_bf',
  'fiancé_bf_fiancé',
  'bf_fiancé_well',
  'fiancé_well_pass',
  'well_pass_away',
  'pass_away_week',
  'away_week_propos',
  'week_propos_found',
  'propos_found_ring',
  'found_ring_friend',
  'ring_friend_told',
  'friend_told_although',
  'told_although_never',
  'although_never_offici',
  'never_offici_fiancé',
  'offici_fiancé_comfort',
  'fiancé_comfort_call',
  'comfort_call_law',
  'call_law_law',
  'law_law_help',
  'law_help_word',
  'help_word_count',
  'word_count_yeah',
  'count_yeah_thank'],
 ['throwaway',
  'account',
  'fake',
  'name',
  'think',
  'im',
  'tah',
  'one',
  'cowork',
  'follow',
  'reddit',
  'let',
  'reddit',
  'decid',
  'name',
  'realli',
  'obscur',
  'charact',
  'greek',
  'mytholog',
  'prefer',
  'nicknam',
  'taken',
  'end',
  'name',
  'alway',
  'introduc',
  'im',
  'name',
  'call',
  'nicknam',
  'none',
  'cowork',
  'small',
  'busi',
  'work',
  'ever',
  'problem',
  'meganf',
  'niec',
  'jeffsm',
  'one',
  'two',
  'owner',
  'hire',
  'jeff',
  'davesm',
  'co-own',
  'busi',
  'dave',
  'actual',
  'day',
  'day',
  'run',
  'busi',
  'introduc',
  'nicknam',
  'usual',
  'immedi',
  'said',
  'bessi',
  'actual',
  'name',
  'would',
  'better',
  'nicknam',
  'come',
  'begin',
  'name',
  'like',
  'better',
  'told',
  'realli',
  'like',
  'nicknam',
  'answer',
  'ask',
  'pleas',
  'call',
  'bessi',
  'insist',
  'much',
  'prettier',
  'need',
  'get',
  'use',
  'next',
  'two',
  'month',
  'tri',
  'call',
  'bessi',
  'complet',
  'ignor',
  'whenev',
  'address',
  'way',
  'even',
  'knew',
  'realli',
  'need',
  'help',
  'someth',
  'would',
  'call',
  'desk',
  'phone',
  'say',
  'hey',
  'bessi',
  'would',
  'repli',
  'wrong',
  'number',
  'bessi',
  'hang',
  'tri',
  'get',
  'employe',
  'outsid',
  'offic',
  'start',
  'call',
  'bessi',
  'quickli',
  'shut',
  'usual',
  'finish',
  'work',
  'earli',
  'help',
  'lot',
  'tediou',
  'littl',
  'thing',
  'part',
  'job',
  'descript',
  'threaten',
  'stop',
  'help',
  'unless',
  'use',
  'prefer',
  'nicknam',
  'friday',
  'decid',
  'go',
  'get',
  'respond',
  'bessi',
  'matter',
  'open',
  'offic',
  'design',
  'opposit',
  'end',
  'start',
  'call',
  'bessi',
  'singsong',
  'voic',
  'tri',
  'annoy',
  'enough',
  'respond',
  'cowork',
  'got',
  'annoy',
  'tell',
  'stop',
  'one',
  'lisaf',
  'tell',
  'let',
  'call',
  'bessi',
  'alreadi',
  'refus',
  'kept',
  'call',
  'bessi',
  'louder',
  'louder',
  'dave',
  'barg',
  'hed',
  'confer',
  'call',
  'import',
  'client',
  'could',
  'hear',
  'yell',
  'offic',
  'hall',
  'told',
  'quiet',
  'call',
  'bessi',
  'one',
  'time',
  'hed',
  'write',
  'dock',
  'pay',
  'later',
  'megan',
  'corner',
  'break',
  'room',
  'call',
  'ah',
  'get',
  'troubl',
  'call',
  'bessi',
  'good',
  'measur',
  'dave',
  'walk',
  'heat',
  'lunch',
  'gave',
  'stern',
  'look',
  'said',
  'warn',
  'walk',
  'hr',
  'written',
  'lisa',
  'say',
  'im',
  'ah',
  'never',
  'help',
  'megan',
  'nicer',
  'fought',
  'hard',
  'nicknam',
  'probabl',
  'would',
  'given',
  'ago',
  'made',
  'big',
  'deal',
  'becam',
  'challeng',
  'reddit',
  'aita',
  'throwaway_account',
  'account_fake',
  'fake_name',
  'name_think',
  'think_im',
  'im_tah',
  'tah_one',
  'one_cowork',
  'cowork_follow',
  'follow_reddit',
  'reddit_let',
  'let_reddit',
  'reddit_decid',
  'decid_name',
  'name_realli',
  'realli_obscur',
  'obscur_charact',
  'charact_greek',
  'greek_mytholog',
  'mytholog_prefer',
  'prefer_nicknam',
  'nicknam_taken',
  'taken_end',
  'end_name',
  'name_alway',
  'alway_introduc',
  'introduc_im',
  'im_name',
  'name_call',
  'call_nicknam',
  'nicknam_none',
  'none_cowork',
  'cowork_small',
  'small_busi',
  'busi_work',
  'work_ever',
  'ever_problem',
  'problem_meganf',
  'meganf_niec',
  'niec_jeffsm',
  'jeffsm_one',
  'one_two',
  'two_owner',
  'owner_hire',
  'hire_jeff',
  'jeff_davesm',
  'davesm_co-own',
  'co-own_busi',
  'busi_dave',
  'dave_actual',
  'actual_day',
  'day_day',
  'day_run',
  'run_busi',
  'busi_introduc',
  'introduc_nicknam',
  'nicknam_usual',
  'usual_immedi',
  'immedi_said',
  'said_bessi',
  'bessi_actual',
  'actual_name',
  'name_would',
  'would_better',
  'better_nicknam',
  'nicknam_come',
  'come_begin',
  'begin_name',
  'name_like',
  'like_better',
  'better_told',
  'told_realli',
  'realli_like',
  'like_nicknam',
  'nicknam_answer',
  'answer_ask',
  'ask_pleas',
  'pleas_call',
  'call_bessi',
  'bessi_insist',
  'insist_much',
  'much_prettier',
  'prettier_need',
  'need_get',
  'get_use',
  'use_next',
  'next_two',
  'two_month',
  'month_tri',
  'tri_call',
  'call_bessi',
  'bessi_complet',
  'complet_ignor',
  'ignor_whenev',
  'whenev_address',
  'address_way',
  'way_even',
  'even_knew',
  'knew_realli',
  'realli_need',
  'need_help',
  'help_someth',
  'someth_would',
  'would_call',
  'call_desk',
  'desk_phone',
  'phone_say',
  'say_hey',
  'hey_bessi',
  'bessi_would',
  'would_repli',
  'repli_wrong',
  'wrong_number',
  'number_bessi',
  'bessi_hang',
  'hang_tri',
  'tri_get',
  'get_employe',
  'employe_outsid',
  'outsid_offic',
  'offic_start',
  'start_call',
  'call_bessi',
  'bessi_quickli',
  'quickli_shut',
  'shut_usual',
  'usual_finish',
  'finish_work',
  'work_earli',
  'earli_help',
  'help_lot',
  'lot_tediou',
  'tediou_littl',
  'littl_thing',
  'thing_part',
  'part_job',
  'job_descript',
  'descript_threaten',
  'threaten_stop',
  'stop_help',
  'help_unless',
  'unless_use',
  'use_prefer',
  'prefer_nicknam',
  'nicknam_friday',
  'friday_decid',
  'decid_go',
  'go_get',
  'get_respond',
  'respond_bessi',
  'bessi_matter',
  'matter_open',
  'open_offic',
  'offic_design',
  'design_opposit',
  'opposit_end',
  'end_start',
  'start_call',
  'call_bessi',
  'bessi_singsong',
  'singsong_voic',
  'voic_tri',
  'tri_annoy',
  'annoy_enough',
  'enough_respond',
  'respond_cowork',
  'cowork_got',
  'got_annoy',
  'annoy_tell',
  'tell_stop',
  'stop_one',
  'one_lisaf',
  'lisaf_tell',
  'tell_let',
  'let_call',
  'call_bessi',
  'bessi_alreadi',
  'alreadi_refus',
  'refus_kept',
  'kept_call',
  'call_bessi',
  'bessi_louder',
  'louder_louder',
  'louder_dave',
  'dave_barg',
  'barg_hed',
  'hed_confer',
  'confer_call',
  'call_import',
  'import_client',
  'client_could',
  'could_hear',
  'hear_yell',
  'yell_offic',
  'offic_hall',
  'hall_told',
  'told_quiet',
  'quiet_call',
  'call_bessi',
  'bessi_one',
  'one_time',
  'time_hed',
  'hed_write',
  'write_dock',
  'dock_pay',
  'pay_later',
  'later_megan',
  'megan_corner',
  'corner_break',
  'break_room',
  'room_call',
  'call_ah',
  'ah_get',
  'get_troubl',
  'troubl_call',
  'call_bessi',
  'bessi_good',
  'good_measur',
  'measur_dave',
  'dave_walk',
  'walk_heat',
  'heat_lunch',
  'lunch_gave',
  'gave_stern',
  'stern_look',
  'look_said',
  'said_warn',
  'warn_walk',
  'walk_hr',
  'hr_written',
  'written_lisa',
  'lisa_say',
  'say_im',
  'im_ah',
  'ah_never',
  'never_help',
  'help_megan',
  'megan_nicer',
  'nicer_fought',
  'fought_hard',
  'hard_nicknam',
  'nicknam_probabl',
  'probabl_would',
  'would_given',
  'given_ago',
  'ago_made',
  'made_big',
  'big_deal',
  'deal_becam',
  'becam_challeng',
  'challeng_reddit',
  'reddit_aita',
  'throwaway_account_fake',
  'account_fake_name',
  'fake_name_think',
  'name_think_im',
  'think_im_tah',
  'im_tah_one',
  'tah_one_cowork',
  'one_cowork_follow',
  'cowork_follow_reddit',
  'follow_reddit_let',
  'reddit_let_reddit',
  'let_reddit_decid',
  'reddit_decid_name',
  'decid_name_realli',
  'name_realli_obscur',
  'realli_obscur_charact',
  'obscur_charact_greek',
  'charact_greek_mytholog',
  'greek_mytholog_prefer',
  'mytholog_prefer_nicknam',
  'prefer_nicknam_taken',
  'nicknam_taken_end',
  'taken_end_name',
  'end_name_alway',
  'name_alway_introduc',
  'alway_introduc_im',
  'introduc_im_name',
  'im_name_call',
  'name_call_nicknam',
  'call_nicknam_none',
  'nicknam_none_cowork',
  'none_cowork_small',
  'cowork_small_busi',
  'small_busi_work',
  'busi_work_ever',
  'work_ever_problem',
  'ever_problem_meganf',
  'problem_meganf_niec',
  'meganf_niec_jeffsm',
  'niec_jeffsm_one',
  'jeffsm_one_two',
  'one_two_owner',
  'two_owner_hire',
  'owner_hire_jeff',
  'hire_jeff_davesm',
  'jeff_davesm_co-own',
  'davesm_co-own_busi',
  'co-own_busi_dave',
  'busi_dave_actual',
  'dave_actual_day',
  'actual_day_day',
  'day_day_run',
  'day_run_busi',
  'run_busi_introduc',
  'busi_introduc_nicknam',
  'introduc_nicknam_usual',
  'nicknam_usual_immedi',
  'usual_immedi_said',
  'immedi_said_bessi',
  'said_bessi_actual',
  'bessi_actual_name',
  'actual_name_would',
  'name_would_better',
  'would_better_nicknam',
  'better_nicknam_come',
  'nicknam_come_begin',
  'come_begin_name',
  'begin_name_like',
  'name_like_better',
  'like_better_told',
  'better_told_realli',
  'told_realli_like',
  'realli_like_nicknam',
  'like_nicknam_answer',
  'nicknam_answer_ask',
  'answer_ask_pleas',
  'ask_pleas_call',
  'pleas_call_bessi',
  'call_bessi_insist',
  'bessi_insist_much',
  'insist_much_prettier',
  'much_prettier_need',
  'prettier_need_get',
  'need_get_use',
  'get_use_next',
  'use_next_two',
  'next_two_month',
  'two_month_tri',
  'month_tri_call',
  'tri_call_bessi',
  'call_bessi_complet',
  'bessi_complet_ignor',
  'complet_ignor_whenev',
  'ignor_whenev_address',
  'whenev_address_way',
  'address_way_even',
  'way_even_knew',
  'even_knew_realli',
  'knew_realli_need',
  'realli_need_help',
  'need_help_someth',
  'help_someth_would',
  'someth_would_call',
  'would_call_desk',
  'call_desk_phone',
  'desk_phone_say',
  'phone_say_hey',
  'say_hey_bessi',
  'hey_bessi_would',
  'bessi_would_repli',
  'would_repli_wrong',
  'repli_wrong_number',
  'wrong_number_bessi',
  'number_bessi_hang',
  'bessi_hang_tri',
  'hang_tri_get',
  'tri_get_employe',
  'get_employe_outsid',
  'employe_outsid_offic',
  'outsid_offic_start',
  'offic_start_call',
  'start_call_bessi',
  'call_bessi_quickli',
  'bessi_quickli_shut',
  'quickli_shut_usual',
  'shut_usual_finish',
  'usual_finish_work',
  'finish_work_earli',
  'work_earli_help',
  'earli_help_lot',
  'help_lot_tediou',
  'lot_tediou_littl',
  'tediou_littl_thing',
  'littl_thing_part',
  'thing_part_job',
  'part_job_descript',
  'job_descript_threaten',
  'descript_threaten_stop',
  'threaten_stop_help',
  'stop_help_unless',
  'help_unless_use',
  'unless_use_prefer',
  'use_prefer_nicknam',
  'prefer_nicknam_friday',
  'nicknam_friday_decid',
  'friday_decid_go',
  'decid_go_get',
  'go_get_respond',
  'get_respond_bessi',
  'respond_bessi_matter',
  'bessi_matter_open',
  'matter_open_offic',
  'open_offic_design',
  'offic_design_opposit',
  'design_opposit_end',
  'opposit_end_start',
  'end_start_call',
  'start_call_bessi',
  'call_bessi_singsong',
  'bessi_singsong_voic',
  'singsong_voic_tri',
  'voic_tri_annoy',
  'tri_annoy_enough',
  'annoy_enough_respond',
  'enough_respond_cowork',
  'respond_cowork_got',
  'cowork_got_annoy',
  'got_annoy_tell',
  'annoy_tell_stop',
  'tell_stop_one',
  'stop_one_lisaf',
  'one_lisaf_tell',
  'lisaf_tell_let',
  'tell_let_call',
  'let_call_bessi',
  'call_bessi_alreadi',
  'bessi_alreadi_refus',
  'alreadi_refus_kept',
  'refus_kept_call',
  'kept_call_bessi',
  'call_bessi_louder',
  'bessi_louder_louder',
  'louder_louder_dave',
  'louder_dave_barg',
  'dave_barg_hed',
  'barg_hed_confer',
  'hed_confer_call',
  'confer_call_import',
  'call_import_client',
  'import_client_could',
  'client_could_hear',
  'could_hear_yell',
  'hear_yell_offic',
  'yell_offic_hall',
  'offic_hall_told',
  'hall_told_quiet',
  'told_quiet_call',
  'quiet_call_bessi',
  'call_bessi_one',
  'bessi_one_time',
  'one_time_hed',
  'time_hed_write',
  'hed_write_dock',
  'write_dock_pay',
  'dock_pay_later',
  'pay_later_megan',
  'later_megan_corner',
  'megan_corner_break',
  'corner_break_room',
  'break_room_call',
  'room_call_ah',
  'call_ah_get',
  'ah_get_troubl',
  'get_troubl_call',
  'troubl_call_bessi',
  'call_bessi_good',
  'bessi_good_measur',
  'good_measur_dave',
  'measur_dave_walk',
  'dave_walk_heat',
  'walk_heat_lunch',
  'heat_lunch_gave',
  'lunch_gave_stern',
  'gave_stern_look',
  'stern_look_said',
  'look_said_warn',
  'said_warn_walk',
  'warn_walk_hr',
  'walk_hr_written',
  'hr_written_lisa',
  'written_lisa_say',
  'lisa_say_im',
  'say_im_ah',
  'im_ah_never',
  'ah_never_help',
  'never_help_megan',
  'help_megan_nicer',
  'megan_nicer_fought',
  'nicer_fought_hard',
  'fought_hard_nicknam',
  'hard_nicknam_probabl',
  'nicknam_probabl_would',
  'probabl_would_given',
  'would_given_ago',
  'given_ago_made',
  'ago_made_big',
  'made_big_deal',
  'big_deal_becam',
  'deal_becam_challeng',
  'becam_challeng_reddit',
  'challeng_reddit_aita'],
 ['context',
  'husband',
  'got',
  'marri',
  'month',
  'ago',
  'live',
  'differ',
  'town',
  'parent',
  'mom',
  'visit',
  'us',
  'unexpectedli',
  'friday',
  'give',
  'context',
  'mil',
  'okay-ish',
  'respect',
  'son',
  'privaci',
  'extens',
  'mine',
  'time',
  'go',
  'bed',
  'mil',
  'request',
  'let',
  'sleep',
  'bedroom',
  'master',
  'bed',
  'lock',
  'door',
  'well',
  'explain',
  'cant',
  'feel',
  'comfort',
  'enough',
  'sleep',
  'without',
  'lock',
  'door',
  'found',
  'bizzar',
  'polit',
  'declin',
  'sugget',
  'option',
  'like',
  'guest',
  'room',
  'couch',
  'air',
  'mattress',
  'turn',
  'around',
  'present',
  'option',
  'husband',
  'agre',
  'said',
  'initi',
  'argument',
  'argument',
  'point',
  'put',
  'want',
  'keot',
  'room',
  'away',
  'stuff',
  'lash',
  'husband',
  'say',
  'stand',
  'say',
  'someth',
  'husband',
  'told',
  'let',
  'one',
  'night',
  'told',
  'option',
  'like',
  'could',
  'book',
  'hotel',
  'took',
  'kick',
  'start',
  'cri',
  'made',
  'husband',
  'upset',
  'left',
  'husband',
  'blew',
  'say',
  'disrespect',
  'mom',
  'guest',
  'hous',
  'treat',
  'poorli',
  'remind',
  'bedroom',
  'mine',
  'act',
  'horribl',
  'caus',
  'go',
  'stay',
  'hotel',
  'middl',
  'night',
  'went',
  'book',
  'room',
  'hotel',
  'turn',
  'phone',
  'next',
  'day',
  'went',
  'home',
  'told',
  'famili',
  'berat',
  'call',
  'behavior',
  'toward',
  'mil',
  'abhorr',
  'loathsom',
  'husband',
  'complain',
  'keep',
  'tri',
  'ruin',
  'relationship',
  'famili',
  'push',
  'away',
  'want',
  'know',
  'realli',
  'ta',
  'context_husband',
  'husband_got',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_live',
  'live_differ',
  'differ_town',
  'town_parent',
  'parent_mom',
  'mom_visit',
  'visit_us',
  'us_unexpectedli',
  'unexpectedli_friday',
  'friday_give',
  'give_context',
  'context_mil',
  'mil_okay-ish',
  'okay-ish_respect',
  'respect_son',
  'son_privaci',
  'privaci_extens',
  'extens_mine',
  'mine_time',
  'time_go',
  'go_bed',
  'bed_mil',
  'mil_request',
  'request_let',
  'let_sleep',
  'sleep_bedroom',
  'bedroom_master',
  'master_bed',
  'bed_lock',
  'lock_door',
  'door_well',
  'well_explain',
  'explain_cant',
  'cant_feel',
  'feel_comfort',
  'comfort_enough',
  'enough_sleep',
  'sleep_without',
  'without_lock',
  'lock_door',
  'door_found',
  'found_bizzar',
  'bizzar_polit',
  'polit_declin',
  'declin_sugget',
  'sugget_option',
  'option_like',
  'like_guest',
  'guest_room',
  'room_couch',
  'couch_air',
  'air_mattress',
  'mattress_turn',
  'turn_around',
  'around_present',
  'present_option',
  'option_husband',
  'husband_agre',
  'agre_said',
  'said_initi',
  'initi_argument',
  'argument_argument',
  'argument_point',
  'point_put',
  'put_want',
  'want_keot',
  'keot_room',
  'room_away',
  'away_stuff',
  'stuff_lash',
  'lash_husband',
  'husband_say',
  'say_stand',
  'stand_say',
  'say_someth',
  'someth_husband',
  'husband_told',
  'told_let',
  'let_one',
  'one_night',
  'night_told',
  'told_option',
  'option_like',
  'like_could',
  'could_book',
  'book_hotel',
  'hotel_took',
  'took_kick',
  'kick_start',
  'start_cri',
  'cri_made',
  'made_husband',
  'husband_upset',
  'upset_left',
  'left_husband',
  'husband_blew',
  'blew_say',
  'say_disrespect',
  'disrespect_mom',
  'mom_guest',
  'guest_hous',
  'hous_treat',
  'treat_poorli',
  'poorli_remind',
  'remind_bedroom',
  'bedroom_mine',
  'mine_act',
  'act_horribl',
  'horribl_caus',
  'caus_go',
  'go_stay',
  'stay_hotel',
  'hotel_middl',
  'middl_night',
  'night_went',
  'went_book',
  'book_room',
  'room_hotel',
  'hotel_turn',
  'turn_phone',
  'phone_next',
  'next_day',
  'day_went',
  'went_home',
  'home_told',
  'told_famili',
  'famili_berat',
  'berat_call',
  'call_behavior',
  'behavior_toward',
  'toward_mil',
  'mil_abhorr',
  'abhorr_loathsom',
  'loathsom_husband',
  'husband_complain',
  'complain_keep',
  'keep_tri',
  'tri_ruin',
  'ruin_relationship',
  'relationship_famili',
  'famili_push',
  'push_away',
  'away_want',
  'want_know',
  'know_realli',
  'realli_ta',
  'context_husband_got',
  'husband_got_marri',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_live',
  'ago_live_differ',
  'live_differ_town',
  'differ_town_parent',
  'town_parent_mom',
  'parent_mom_visit',
  'mom_visit_us',
  'visit_us_unexpectedli',
  'us_unexpectedli_friday',
  'unexpectedli_friday_give',
  'friday_give_context',
  'give_context_mil',
  'context_mil_okay-ish',
  'mil_okay-ish_respect',
  'okay-ish_respect_son',
  'respect_son_privaci',
  'son_privaci_extens',
  'privaci_extens_mine',
  'extens_mine_time',
  'mine_time_go',
  'time_go_bed',
  'go_bed_mil',
  'bed_mil_request',
  'mil_request_let',
  'request_let_sleep',
  'let_sleep_bedroom',
  'sleep_bedroom_master',
  'bedroom_master_bed',
  'master_bed_lock',
  'bed_lock_door',
  'lock_door_well',
  'door_well_explain',
  'well_explain_cant',
  'explain_cant_feel',
  'cant_feel_comfort',
  'feel_comfort_enough',
  'comfort_enough_sleep',
  'enough_sleep_without',
  'sleep_without_lock',
  'without_lock_door',
  'lock_door_found',
  'door_found_bizzar',
  'found_bizzar_polit',
  'bizzar_polit_declin',
  'polit_declin_sugget',
  'declin_sugget_option',
  'sugget_option_like',
  'option_like_guest',
  'like_guest_room',
  'guest_room_couch',
  'room_couch_air',
  'couch_air_mattress',
  'air_mattress_turn',
  'mattress_turn_around',
  'turn_around_present',
  'around_present_option',
  'present_option_husband',
  'option_husband_agre',
  'husband_agre_said',
  'agre_said_initi',
  'said_initi_argument',
  'initi_argument_argument',
  'argument_argument_point',
  'argument_point_put',
  'point_put_want',
  'put_want_keot',
  'want_keot_room',
  'keot_room_away',
  'room_away_stuff',
  'away_stuff_lash',
  'stuff_lash_husband',
  'lash_husband_say',
  'husband_say_stand',
  'say_stand_say',
  'stand_say_someth',
  'say_someth_husband',
  'someth_husband_told',
  'husband_told_let',
  'told_let_one',
  'let_one_night',
  'one_night_told',
  'night_told_option',
  'told_option_like',
  'option_like_could',
  'like_could_book',
  'could_book_hotel',
  'book_hotel_took',
  'hotel_took_kick',
  'took_kick_start',
  'kick_start_cri',
  'start_cri_made',
  'cri_made_husband',
  'made_husband_upset',
  'husband_upset_left',
  'upset_left_husband',
  'left_husband_blew',
  'husband_blew_say',
  'blew_say_disrespect',
  'say_disrespect_mom',
  'disrespect_mom_guest',
  'mom_guest_hous',
  'guest_hous_treat',
  'hous_treat_poorli',
  'treat_poorli_remind',
  'poorli_remind_bedroom',
  'remind_bedroom_mine',
  'bedroom_mine_act',
  'mine_act_horribl',
  'act_horribl_caus',
  'horribl_caus_go',
  'caus_go_stay',
  'go_stay_hotel',
  'stay_hotel_middl',
  'hotel_middl_night',
  'middl_night_went',
  'night_went_book',
  'went_book_room',
  'book_room_hotel',
  'room_hotel_turn',
  'hotel_turn_phone',
  'turn_phone_next',
  'phone_next_day',
  'next_day_went',
  'day_went_home',
  'went_home_told',
  'home_told_famili',
  'told_famili_berat',
  'famili_berat_call',
  'berat_call_behavior',
  'call_behavior_toward',
  'behavior_toward_mil',
  'toward_mil_abhorr',
  'mil_abhorr_loathsom',
  'abhorr_loathsom_husband',
  'loathsom_husband_complain',
  'husband_complain_keep',
  'complain_keep_tri',
  'keep_tri_ruin',
  'tri_ruin_relationship',
  'ruin_relationship_famili',
  'relationship_famili_push',
  'famili_push_away',
  'push_away_want',
  'away_want_know',
  'want_know_realli',
  'know_realli_ta'],
 ['got',
  'pregnant',
  'son',
  'juliu',
  'month',
  'th',
  'birthday',
  'tri',
  'best',
  'got',
  'good',
  'engin',
  'school',
  'got',
  'girlfriend',
  'iza',
  'pregnant',
  'annabella',
  'togeth',
  'ive',
  'one',
  'mostli',
  'rais',
  'iza',
  'got',
  'deport',
  'spend',
  'juli',
  'togeth',
  'ft',
  'everi',
  'night',
  'juliu',
  'got',
  'marri',
  'girlfriend',
  'katja',
  'graduat',
  'two',
  'wonder',
  'boy',
  'togeth',
  'annabella',
  'live',
  'thing',
  'juliu',
  'never',
  'spend',
  'time',
  'annabella',
  'even',
  'call',
  'say',
  'goodnight',
  'love',
  'much',
  'like',
  'month',
  'hell',
  'show',
  'box',
  'full',
  'toy',
  'spend',
  'day',
  'go',
  'back',
  'famili',
  'hurt',
  'much',
  'spend',
  'time',
  'hero',
  'im',
  'grandma',
  'act',
  'way',
  'wife',
  'katja',
  'would',
  'love',
  'annabella',
  'move',
  'brought',
  'idea',
  'went',
  'thing',
  'could',
  'togeth',
  'would',
  'love',
  'stepmom',
  'call',
  'princess',
  'sweeti',
  'mani',
  'nice',
  'nicknam',
  'reason',
  'juliu',
  'said',
  'stay',
  'day',
  'ago',
  'juliu',
  'told',
  'katja',
  'plan',
  'trip',
  'disneyland',
  'august',
  'told',
  'annabella',
  'would',
  'excit',
  'tell',
  'birthday',
  'blankli',
  'told',
  'come',
  'trip',
  'boy',
  'made',
  'clear',
  'need',
  'bring',
  'trip',
  'call',
  'asshol',
  '-',
  'never',
  'done',
  '-',
  'tri',
  'control',
  'admit',
  'bit',
  'control',
  'reaction',
  'think',
  'went',
  'far',
  'got_pregnant',
  'pregnant_son',
  'son_juliu',
  'juliu_month',
  'month_th',
  'th_birthday',
  'birthday_tri',
  'tri_best',
  'best_got',
  'got_good',
  'good_engin',
  'engin_school',
  'school_got',
  'got_girlfriend',
  'girlfriend_iza',
  'iza_pregnant',
  'pregnant_annabella',
  'annabella_togeth',
  'togeth_ive',
  'ive_one',
  'one_mostli',
  'mostli_rais',
  'rais_iza',
  'iza_got',
  'got_deport',
  'deport_spend',
  'spend_juli',
  'juli_togeth',
  'togeth_ft',
  'ft_everi',
  'everi_night',
  'night_juliu',
  'juliu_got',
  'got_marri',
  'marri_girlfriend',
  'girlfriend_katja',
  'katja_graduat',
  'graduat_two',
  'two_wonder',
  'wonder_boy',
  'boy_togeth',
  'togeth_annabella',
  'annabella_live',
  'live_thing',
  'thing_juliu',
  'juliu_never',
  'never_spend',
  'spend_time',
  'time_annabella',
  'annabella_even',
  'even_call',
  'call_say',
  'say_goodnight',
  'goodnight_love',
  'love_much',
  'much_like',
  'like_month',
  'month_hell',
  'hell_show',
  'show_box',
  'box_full',
  'full_toy',
  'toy_spend',
  'spend_day',
  'day_go',
  'go_back',
  'back_famili',
  'famili_hurt',
  'hurt_much',
  'much_spend',
  'spend_time',
  'time_hero',
  'hero_im',
  'im_grandma',
  'grandma_act',
  'act_way',
  'way_wife',
  'wife_katja',
  'katja_would',
  'would_love',
  'love_annabella',
  'annabella_move',
  'move_brought',
  'brought_idea',
  'idea_went',
  'went_thing',
  'thing_could',
  'could_togeth',
  'togeth_would',
  'would_love',
  'love_stepmom',
  'stepmom_call',
  'call_princess',
  'princess_sweeti',
  'sweeti_mani',
  'mani_nice',
  'nice_nicknam',
  'nicknam_reason',
  'reason_juliu',
  'juliu_said',
  'said_stay',
  'stay_day',
  'day_ago',
  'ago_juliu',
  'juliu_told',
  'told_katja',
  'katja_plan',
  'plan_trip',
  'trip_disneyland',
  'disneyland_august',
  'august_told',
  'told_annabella',
  'annabella_would',
  'would_excit',
  'excit_tell',
  'tell_birthday',
  'birthday_blankli',
  'blankli_told',
  'told_come',
  'come_trip',
  'trip_boy',
  'boy_made',
  'made_clear',
  'clear_need',
  'need_bring',
  'bring_trip',
  'trip_call',
  'call_asshol',
  'asshol_-',
  '-_never',
  'never_done',
  'done_-',
  '-_tri',
  'tri_control',
  'control_admit',
  'admit_bit',
  'bit_control',
  'control_reaction',
  'reaction_think',
  'think_went',
  'went_far',
  'got_pregnant_son',
  'pregnant_son_juliu',
  'son_juliu_month',
  'juliu_month_th',
  'month_th_birthday',
  'th_birthday_tri',
  'birthday_tri_best',
  'tri_best_got',
  'best_got_good',
  'got_good_engin',
  'good_engin_school',
  'engin_school_got',
  'school_got_girlfriend',
  'got_girlfriend_iza',
  'girlfriend_iza_pregnant',
  'iza_pregnant_annabella',
  'pregnant_annabella_togeth',
  'annabella_togeth_ive',
  'togeth_ive_one',
  'ive_one_mostli',
  'one_mostli_rais',
  'mostli_rais_iza',
  'rais_iza_got',
  'iza_got_deport',
  'got_deport_spend',
  'deport_spend_juli',
  'spend_juli_togeth',
  'juli_togeth_ft',
  'togeth_ft_everi',
  'ft_everi_night',
  'everi_night_juliu',
  'night_juliu_got',
  'juliu_got_marri',
  'got_marri_girlfriend',
  'marri_girlfriend_katja',
  'girlfriend_katja_graduat',
  'katja_graduat_two',
  'graduat_two_wonder',
  'two_wonder_boy',
  'wonder_boy_togeth',
  'boy_togeth_annabella',
  'togeth_annabella_live',
  'annabella_live_thing',
  'live_thing_juliu',
  'thing_juliu_never',
  'juliu_never_spend',
  'never_spend_time',
  'spend_time_annabella',
  'time_annabella_even',
  'annabella_even_call',
  'even_call_say',
  'call_say_goodnight',
  'say_goodnight_love',
  'goodnight_love_much',
  'love_much_like',
  'much_like_month',
  'like_month_hell',
  'month_hell_show',
  'hell_show_box',
  'show_box_full',
  'box_full_toy',
  'full_toy_spend',
  'toy_spend_day',
  'spend_day_go',
  'day_go_back',
  'go_back_famili',
  'back_famili_hurt',
  'famili_hurt_much',
  'hurt_much_spend',
  'much_spend_time',
  'spend_time_hero',
  'time_hero_im',
  'hero_im_grandma',
  'im_grandma_act',
  'grandma_act_way',
  'act_way_wife',
  'way_wife_katja',
  'wife_katja_would',
  'katja_would_love',
  'would_love_annabella',
  'love_annabella_move',
  'annabella_move_brought',
  'move_brought_idea',
  'brought_idea_went',
  'idea_went_thing',
  'went_thing_could',
  'thing_could_togeth',
  'could_togeth_would',
  'togeth_would_love',
  'would_love_stepmom',
  'love_stepmom_call',
  'stepmom_call_princess',
  'call_princess_sweeti',
  'princess_sweeti_mani',
  'sweeti_mani_nice',
  'mani_nice_nicknam',
  'nice_nicknam_reason',
  'nicknam_reason_juliu',
  'reason_juliu_said',
  'juliu_said_stay',
  'said_stay_day',
  'stay_day_ago',
  'day_ago_juliu',
  'ago_juliu_told',
  'juliu_told_katja',
  'told_katja_plan',
  'katja_plan_trip',
  'plan_trip_disneyland',
  'trip_disneyland_august',
  'disneyland_august_told',
  'august_told_annabella',
  'told_annabella_would',
  'annabella_would_excit',
  'would_excit_tell',
  'excit_tell_birthday',
  'tell_birthday_blankli',
  'birthday_blankli_told',
  'blankli_told_come',
  'told_come_trip',
  'come_trip_boy',
  'trip_boy_made',
  'boy_made_clear',
  'made_clear_need',
  'clear_need_bring',
  'need_bring_trip',
  'bring_trip_call',
  'trip_call_asshol',
  'call_asshol_-',
  'asshol_-_never',
  '-_never_done',
  'never_done_-',
  'done_-_tri',
  '-_tri_control',
  'tri_control_admit',
  'control_admit_bit',
  'admit_bit_control',
  'bit_control_reaction',
  'control_reaction_think',
  'reaction_think_went',
  'think_went_far'],
 ['year',
  'ago',
  'son',
  'matthew',
  'daughter',
  'ex',
  'wife',
  'josi',
  'alway',
  'thought',
  'josi',
  'daughter',
  'divorc',
  'year',
  'ago',
  'due',
  'son',
  'cheat',
  'conflict',
  'disappoint',
  'josi',
  'particularli',
  'close',
  'famili',
  'husband',
  'natur',
  'took',
  'josi',
  'angel',
  'insist',
  'lift',
  'finger',
  'taken',
  'though',
  'hurt',
  'kept',
  'civil',
  'around',
  'matthew',
  'husband',
  'held',
  'huge',
  'hand',
  'rais',
  'daughter',
  'ruth',
  'matthew',
  'remarri',
  'less',
  'year',
  'later',
  'four',
  'year',
  'old',
  'son',
  'disown',
  'ruth',
  'two',
  'year',
  'ago',
  'husband',
  'diagnos',
  'lung',
  'cancer',
  'hard',
  'everyon',
  'especi',
  'ruth',
  'extrem',
  'close',
  'told',
  'girlfriend',
  'boyfriend',
  'anyon',
  'els',
  'alway',
  'want',
  'one',
  'walk',
  'isl',
  'wed',
  'matt',
  'rare',
  'ever',
  'visit',
  'answer',
  'call',
  'often',
  'say',
  'kid',
  'like',
  'husband',
  'die',
  'lone',
  'last',
  'night',
  'matt',
  'stop',
  'talk',
  'inherit',
  'never',
  'mention',
  'josi',
  'ruth',
  'hint',
  'thought',
  'get',
  'inherit',
  'sibl',
  'entir',
  'time',
  'husband',
  'share',
  'awkward',
  'look',
  'decid',
  'cut',
  'explain',
  'everyon',
  'would',
  'get',
  'piec',
  'hed',
  'focu',
  'ruth',
  'bonni',
  'one',
  'grandkid',
  'matt',
  'got',
  'angri',
  'said',
  'ruth',
  'bastard',
  'son',
  'deserv',
  'husband',
  'got',
  'furiou',
  'left',
  'room',
  'say',
  'includ',
  'matthew',
  'matt',
  'yell',
  'back',
  'turn',
  'say',
  'ruth',
  'worth',
  'shed',
  'grow',
  'whore',
  'like',
  'mother',
  'told',
  'id',
  'rather',
  'mother',
  'daughter',
  'son',
  'insist',
  'leav',
  'im',
  'get',
  'phone',
  'call',
  'matt',
  'wife',
  'famili',
  'friend',
  'say',
  'husband',
  'overreact',
  'angri',
  'play',
  'favorit',
  'aita',
  'edit',
  'clear',
  'thing',
  'josi',
  'cheat',
  'matthew',
  'josi',
  'matthew',
  'met',
  'later',
  'colleg',
  'josi',
  'known',
  'parti',
  'girl',
  'ruth',
  'product',
  'affair',
  'plan',
  'get',
  'dna',
  'test',
  'matthew',
  'said',
  'gotten',
  'ruth',
  'skin',
  'hous',
  'occur',
  'heard',
  'came',
  'take',
  'josi',
  'ruth',
  'hesit',
  'josi',
  'matt',
  'live',
  'anoth',
  'countri',
  'move',
  'month',
  'got',
  'caught',
  'cheat',
  'els',
  'go',
  'josi',
  'stay',
  'home',
  'mom',
  'intent',
  'choos',
  'josi',
  'matt',
  'never',
  'discourag',
  'matt',
  'visit',
  'tri',
  'make',
  'clear',
  'pick',
  'choos',
  'took',
  'josi',
  'want',
  'granddaught',
  'safe',
  'good',
  'home',
  'year_ago',
  'ago_son',
  'son_matthew',
  'matthew_daughter',
  'daughter_ex',
  'ex_wife',
  'wife_josi',
  'josi_alway',
  'alway_thought',
  'thought_josi',
  'josi_daughter',
  'daughter_divorc',
  'divorc_year',
  'year_ago',
  'ago_due',
  'due_son',
  'son_cheat',
  'cheat_conflict',
  'conflict_disappoint',
  'disappoint_josi',
  'josi_particularli',
  'particularli_close',
  'close_famili',
  'famili_husband',
  'husband_natur',
  'natur_took',
  'took_josi',
  'josi_angel',
  'angel_insist',
  'insist_lift',
  'lift_finger',
  'finger_taken',
  'taken_though',
  'though_hurt',
  'hurt_kept',
  'kept_civil',
  'civil_around',
  'around_matthew',
  'matthew_husband',
  'husband_held',
  'held_huge',
  'huge_hand',
  'hand_rais',
  'rais_daughter',
  'daughter_ruth',
  'ruth_matthew',
  'matthew_remarri',
  'remarri_less',
  'less_year',
  'year_later',
  'later_four',
  'four_year',
  'year_old',
  'old_son',
  'son_disown',
  'disown_ruth',
  'ruth_two',
  'two_year',
  'year_ago',
  'ago_husband',
  'husband_diagnos',
  'diagnos_lung',
  'lung_cancer',
  'cancer_hard',
  'hard_everyon',
  'everyon_especi',
  'especi_ruth',
  'ruth_extrem',
  'extrem_close',
  'close_told',
  'told_girlfriend',
  'girlfriend_boyfriend',
  'boyfriend_anyon',
  'anyon_els',
  'els_alway',
  'alway_want',
  'want_one',
  'one_walk',
  'walk_isl',
  'isl_wed',
  'wed_matt',
  'matt_rare',
  'rare_ever',
  'ever_visit',
  'visit_answer',
  'answer_call',
  'call_often',
  'often_say',
  'say_kid',
  'kid_like',
  'like_husband',
  'husband_die',
  'die_lone',
  'lone_last',
  'last_night',
  'night_matt',
  'matt_stop',
  'stop_talk',
  'talk_inherit',
  'inherit_never',
  'never_mention',
  'mention_josi',
  'josi_ruth',
  'ruth_hint',
  'hint_thought',
  'thought_get',
  'get_inherit',
  'inherit_sibl',
  'sibl_entir',
  'entir_time',
  'time_husband',
  'husband_share',
  'share_awkward',
  'awkward_look',
  'look_decid',
  'decid_cut',
  'cut_explain',
  'explain_everyon',
  'everyon_would',
  'would_get',
  'get_piec',
  'piec_hed',
  'hed_focu',
  'focu_ruth',
  'ruth_bonni',
  'bonni_one',
  'one_grandkid',
  'grandkid_matt',
  'matt_got',
  'got_angri',
  'angri_said',
  'said_ruth',
  'ruth_bastard',
  'bastard_son',
  'son_deserv',
  'deserv_husband',
  'husband_got',
  'got_furiou',
  'furiou_left',
  'left_room',
  'room_say',
  'say_includ',
  'includ_matthew',
  'matthew_matt',
  'matt_yell',
  'yell_back',
  'back_turn',
  'turn_say',
  'say_ruth',
  'ruth_worth',
  'worth_shed',
  'shed_grow',
  'grow_whore',
  'whore_like',
  'like_mother',
  'mother_told',
  'told_id',
  'id_rather',
  'rather_mother',
  'mother_daughter',
  'daughter_son',
  'son_insist',
  'insist_leav',
  'leav_im',
  'im_get',
  'get_phone',
  'phone_call',
  'call_matt',
  'matt_wife',
  'wife_famili',
  'famili_friend',
  'friend_say',
  'say_husband',
  'husband_overreact',
  'overreact_angri',
  'angri_play',
  'play_favorit',
  'favorit_aita',
  'aita_edit',
  'edit_clear',
  'clear_thing',
  'thing_josi',
  'josi_cheat',
  'cheat_matthew',
  'matthew_josi',
  'josi_matthew',
  'matthew_met',
  'met_later',
  'later_colleg',
  'colleg_josi',
  'josi_known',
  'known_parti',
  'parti_girl',
  'girl_ruth',
  'ruth_product',
  'product_affair',
  'affair_plan',
  'plan_get',
  'get_dna',
  'dna_test',
  'test_matthew',
  'matthew_said',
  'said_gotten',
  'gotten_ruth',
  'ruth_skin',
  'skin_hous',
  'hous_occur',
  'occur_heard',
  'heard_came',
  'came_take',
  'take_josi',
  'josi_ruth',
  'ruth_hesit',
  'hesit_josi',
  'josi_matt',
  'matt_live',
  'live_anoth',
  'anoth_countri',
  'countri_move',
  'move_month',
  'month_got',
  'got_caught',
  'caught_cheat',
  'cheat_els',
  'els_go',
  'go_josi',
  'josi_stay',
  'stay_home',
  'home_mom',
  'mom_intent',
  'intent_choos',
  'choos_josi',
  'josi_matt',
  'matt_never',
  'never_discourag',
  'discourag_matt',
  'matt_visit',
  'visit_tri',
  'tri_make',
  'make_clear',
  'clear_pick',
  'pick_choos',
  'choos_took',
  'took_josi',
  'josi_want',
  'want_granddaught',
  'granddaught_safe',
  'safe_good',
  'good_home',
  'year_ago_son',
  'ago_son_matthew',
  'son_matthew_daughter',
  'matthew_daughter_ex',
  'daughter_ex_wife',
  'ex_wife_josi',
  'wife_josi_alway',
  'josi_alway_thought',
  'alway_thought_josi',
  'thought_josi_daughter',
  'josi_daughter_divorc',
  'daughter_divorc_year',
  'divorc_year_ago',
  'year_ago_due',
  'ago_due_son',
  'due_son_cheat',
  'son_cheat_conflict',
  'cheat_conflict_disappoint',
  'conflict_disappoint_josi',
  'disappoint_josi_particularli',
  'josi_particularli_close',
  'particularli_close_famili',
  'close_famili_husband',
  'famili_husband_natur',
  'husband_natur_took',
  'natur_took_josi',
  'took_josi_angel',
  'josi_angel_insist',
  'angel_insist_lift',
  'insist_lift_finger',
  'lift_finger_taken',
  'finger_taken_though',
  'taken_though_hurt',
  'though_hurt_kept',
  'hurt_kept_civil',
  'kept_civil_around',
  'civil_around_matthew',
  'around_matthew_husband',
  'matthew_husband_held',
  'husband_held_huge',
  'held_huge_hand',
  'huge_hand_rais',
  'hand_rais_daughter',
  'rais_daughter_ruth',
  'daughter_ruth_matthew',
  'ruth_matthew_remarri',
  'matthew_remarri_less',
  'remarri_less_year',
  'less_year_later',
  'year_later_four',
  'later_four_year',
  'four_year_old',
  'year_old_son',
  'old_son_disown',
  'son_disown_ruth',
  'disown_ruth_two',
  'ruth_two_year',
  'two_year_ago',
  'year_ago_husband',
  'ago_husband_diagnos',
  'husband_diagnos_lung',
  'diagnos_lung_cancer',
  'lung_cancer_hard',
  'cancer_hard_everyon',
  'hard_everyon_especi',
  'everyon_especi_ruth',
  'especi_ruth_extrem',
  'ruth_extrem_close',
  'extrem_close_told',
  'close_told_girlfriend',
  'told_girlfriend_boyfriend',
  'girlfriend_boyfriend_anyon',
  'boyfriend_anyon_els',
  'anyon_els_alway',
  'els_alway_want',
  'alway_want_one',
  'want_one_walk',
  'one_walk_isl',
  'walk_isl_wed',
  'isl_wed_matt',
  'wed_matt_rare',
  'matt_rare_ever',
  'rare_ever_visit',
  'ever_visit_answer',
  'visit_answer_call',
  'answer_call_often',
  'call_often_say',
  'often_say_kid',
  'say_kid_like',
  'kid_like_husband',
  'like_husband_die',
  'husband_die_lone',
  'die_lone_last',
  'lone_last_night',
  'last_night_matt',
  'night_matt_stop',
  'matt_stop_talk',
  'stop_talk_inherit',
  'talk_inherit_never',
  'inherit_never_mention',
  'never_mention_josi',
  'mention_josi_ruth',
  'josi_ruth_hint',
  'ruth_hint_thought',
  'hint_thought_get',
  'thought_get_inherit',
  'get_inherit_sibl',
  'inherit_sibl_entir',
  'sibl_entir_time',
  'entir_time_husband',
  'time_husband_share',
  'husband_share_awkward',
  'share_awkward_look',
  'awkward_look_decid',
  'look_decid_cut',
  'decid_cut_explain',
  'cut_explain_everyon',
  'explain_everyon_would',
  'everyon_would_get',
  'would_get_piec',
  'get_piec_hed',
  'piec_hed_focu',
  'hed_focu_ruth',
  'focu_ruth_bonni',
  'ruth_bonni_one',
  'bonni_one_grandkid',
  'one_grandkid_matt',
  'grandkid_matt_got',
  'matt_got_angri',
  'got_angri_said',
  'angri_said_ruth',
  'said_ruth_bastard',
  'ruth_bastard_son',
  'bastard_son_deserv',
  'son_deserv_husband',
  'deserv_husband_got',
  'husband_got_furiou',
  'got_furiou_left',
  'furiou_left_room',
  'left_room_say',
  'room_say_includ',
  'say_includ_matthew',
  'includ_matthew_matt',
  'matthew_matt_yell',
  'matt_yell_back',
  'yell_back_turn',
  'back_turn_say',
  'turn_say_ruth',
  'say_ruth_worth',
  'ruth_worth_shed',
  'worth_shed_grow',
  'shed_grow_whore',
  'grow_whore_like',
  'whore_like_mother',
  'like_mother_told',
  'mother_told_id',
  'told_id_rather',
  'id_rather_mother',
  'rather_mother_daughter',
  'mother_daughter_son',
  'daughter_son_insist',
  'son_insist_leav',
  'insist_leav_im',
  'leav_im_get',
  'im_get_phone',
  'get_phone_call',
  'phone_call_matt',
  'call_matt_wife',
  'matt_wife_famili',
  'wife_famili_friend',
  'famili_friend_say',
  'friend_say_husband',
  'say_husband_overreact',
  'husband_overreact_angri',
  'overreact_angri_play',
  'angri_play_favorit',
  'play_favorit_aita',
  'favorit_aita_edit',
  'aita_edit_clear',
  'edit_clear_thing',
  'clear_thing_josi',
  'thing_josi_cheat',
  'josi_cheat_matthew',
  'cheat_matthew_josi',
  'matthew_josi_matthew',
  'josi_matthew_met',
  'matthew_met_later',
  'met_later_colleg',
  'later_colleg_josi',
  'colleg_josi_known',
  'josi_known_parti',
  'known_parti_girl',
  'parti_girl_ruth',
  'girl_ruth_product',
  'ruth_product_affair',
  'product_affair_plan',
  'affair_plan_get',
  'plan_get_dna',
  'get_dna_test',
  'dna_test_matthew',
  'test_matthew_said',
  'matthew_said_gotten',
  'said_gotten_ruth',
  'gotten_ruth_skin',
  'ruth_skin_hous',
  'skin_hous_occur',
  'hous_occur_heard',
  'occur_heard_came',
  'heard_came_take',
  'came_take_josi',
  'take_josi_ruth',
  'josi_ruth_hesit',
  'ruth_hesit_josi',
  'hesit_josi_matt',
  'josi_matt_live',
  'matt_live_anoth',
  'live_anoth_countri',
  'anoth_countri_move',
  'countri_move_month',
  'move_month_got',
  'month_got_caught',
  'got_caught_cheat',
  'caught_cheat_els',
  'cheat_els_go',
  'els_go_josi',
  'go_josi_stay',
  'josi_stay_home',
  'stay_home_mom',
  'home_mom_intent',
  'mom_intent_choos',
  'intent_choos_josi',
  'choos_josi_matt',
  'josi_matt_never',
  'matt_never_discourag',
  'never_discourag_matt',
  'discourag_matt_visit',
  'matt_visit_tri',
  'visit_tri_make',
  'tri_make_clear',
  'make_clear_pick',
  'clear_pick_choos',
  'pick_choos_took',
  'choos_took_josi',
  'took_josi_want',
  'josi_want_granddaught',
  'want_granddaught_safe',
  'granddaught_safe_good',
  'safe_good_home'],
 ['boyfriend',
  'togeth',
  'year',
  'good',
  'heart',
  'normal',
  'ration',
  'one',
  'issu',
  'expect',
  'accompani',
  'everi',
  'ocass',
  'nomatt',
  'big',
  'small',
  'even',
  'went',
  'ex',
  'boyfriend',
  'funer',
  'day',
  'beg',
  'best',
  'friend',
  'got',
  'marri',
  'day',
  'ago',
  'small',
  'close',
  'famili',
  'friend',
  'invit',
  'boyfriend',
  'come',
  '+',
  'one',
  'rule',
  'pitch',
  'hissi',
  'fit',
  'say',
  'best',
  'friend',
  'respect',
  'relationship',
  'shock',
  'learn',
  'still',
  'go',
  'attend',
  'told',
  'cant',
  'go',
  'im',
  'expect',
  'go',
  'well',
  'best',
  'friend',
  'respect',
  'rule',
  'gave',
  'altimatum',
  'either',
  'go',
  'togeth',
  'stay',
  'home',
  'end',
  'go',
  'caus',
  'respect',
  'friend',
  'rule',
  'angri',
  'kept',
  'call',
  'entir',
  'hr',
  'drive',
  'stop',
  'later',
  'got',
  'text',
  'friend',
  'tell',
  'boyfriend',
  'got',
  'accid',
  'taken',
  'hospit',
  'freak',
  'gave',
  'address',
  'leav',
  'wed',
  'told',
  'friend',
  'cri',
  'entir',
  'drive',
  'home',
  'kept',
  'call',
  'friend',
  'got',
  'respons',
  'arriv',
  'hospit',
  'ask',
  'boyfriend',
  'check',
  'told',
  'anxieti',
  'reach',
  '%',
  'kept',
  'call',
  'friend',
  'one',
  'one',
  'went',
  'home',
  'wasalong',
  'friend',
  'saw',
  'said',
  'sorri',
  'get',
  'home',
  'left',
  'alon',
  'initi',
  'shock',
  'blew',
  'yell',
  'lie',
  'make',
  'leav',
  'friend',
  'wed',
  'liter',
  'go',
  'hospit',
  'freak',
  'caus',
  'kick',
  'friend',
  'got',
  'argument',
  'kept',
  'talk',
  'much',
  'love',
  'thu',
  'left',
  'tri',
  'see',
  'realli',
  'chose',
  'friend',
  'wed',
  'argu',
  'friend',
  'caus',
  'agre',
  'exclud',
  'said',
  'horribl',
  'call',
  'horribl',
  'went',
  'room',
  'aw',
  'caus',
  'friend',
  'kept',
  'call',
  'check',
  'caus',
  'thought',
  'realli',
  'hospit',
  'said',
  'overreact',
  'yell',
  'wrong',
  'person',
  'aita',
  'go',
  'far',
  '*',
  'info',
  'base',
  'request',
  'user_',
  'histori',
  'mental',
  'health',
  'issu',
  'got',
  'better',
  'past',
  'month',
  'also',
  'recent',
  'death',
  'famili',
  'realli',
  'affect',
  'health',
  'gener',
  '*',
  'boyfriend_togeth',
  'togeth_year',
  'year_good',
  'good_heart',
  'heart_normal',
  'normal_ration',
  'ration_one',
  'one_issu',
  'issu_expect',
  'expect_accompani',
  'accompani_everi',
  'everi_ocass',
  'ocass_nomatt',
  'nomatt_big',
  'big_small',
  'small_even',
  'even_went',
  'went_ex',
  'ex_boyfriend',
  'boyfriend_funer',
  'funer_day',
  'day_beg',
  'beg_best',
  'best_friend',
  'friend_got',
  'got_marri',
  'marri_day',
  'day_ago',
  'ago_small',
  'small_close',
  'close_famili',
  'famili_friend',
  'friend_invit',
  'invit_boyfriend',
  'boyfriend_come',
  'come_+',
  '+_one',
  'one_rule',
  'rule_pitch',
  'pitch_hissi',
  'hissi_fit',
  'fit_say',
  'say_best',
  'best_friend',
  'friend_respect',
  'respect_relationship',
  'relationship_shock',
  'shock_learn',
  'learn_still',
  'still_go',
  'go_attend',
  'attend_told',
  'told_cant',
  'cant_go',
  'go_im',
  'im_expect',
  'expect_go',
  'go_well',
  'well_best',
  'best_friend',
  'friend_respect',
  'respect_rule',
  'rule_gave',
  'gave_altimatum',
  'altimatum_either',
  'either_go',
  'go_togeth',
  'togeth_stay',
  'stay_home',
  'home_end',
  'end_go',
  'go_caus',
  'caus_respect',
  'respect_friend',
  'friend_rule',
  'rule_angri',
  'angri_kept',
  'kept_call',
  'call_entir',
  'entir_hr',
  'hr_drive',
  'drive_stop',
  'stop_later',
  'later_got',
  'got_text',
  'text_friend',
  'friend_tell',
  'tell_boyfriend',
  'boyfriend_got',
  'got_accid',
  'accid_taken',
  'taken_hospit',
  'hospit_freak',
  'freak_gave',
  'gave_address',
  'address_leav',
  'leav_wed',
  'wed_told',
  'told_friend',
  'friend_cri',
  'cri_entir',
  'entir_drive',
  'drive_home',
  'home_kept',
  'kept_call',
  'call_friend',
  'friend_got',
  'got_respons',
  'respons_arriv',
  'arriv_hospit',
  'hospit_ask',
  'ask_boyfriend',
  'boyfriend_check',
  'check_told',
  'told_anxieti',
  'anxieti_reach',
  'reach_%',
  '%_kept',
  'kept_call',
  'call_friend',
  'friend_one',
  'one_one',
  'one_went',
  'went_home',
  'home_wasalong',
  'wasalong_friend',
  'friend_saw',
  'saw_said',
  'said_sorri',
  'sorri_get',
  'get_home',
  'home_left',
  'left_alon',
  'alon_initi',
  'initi_shock',
  'shock_blew',
  'blew_yell',
  'yell_lie',
  'lie_make',
  'make_leav',
  'leav_friend',
  'friend_wed',
  'wed_liter',
  'liter_go',
  'go_hospit',
  'hospit_freak',
  'freak_caus',
  'caus_kick',
  'kick_friend',
  'friend_got',
  'got_argument',
  'argument_kept',
  'kept_talk',
  'talk_much',
  'much_love',
  'love_thu',
  'thu_left',
  'left_tri',
  'tri_see',
  'see_realli',
  'realli_chose',
  'chose_friend',
  'friend_wed',
  'wed_argu',
  'argu_friend',
  'friend_caus',
  'caus_agre',
  'agre_exclud',
  'exclud_said',
  'said_horribl',
  'horribl_call',
  'call_horribl',
  'horribl_went',
  'went_room',
  'room_aw',
  'aw_caus',
  'caus_friend',
  'friend_kept',
  'kept_call',
  'call_check',
  'check_caus',
  'caus_thought',
  'thought_realli',
  'realli_hospit',
  'hospit_said',
  'said_overreact',
  'overreact_yell',
  'yell_wrong',
  'wrong_person',
  'person_aita',
  'aita_go',
  'go_far',
  'far_*',
  '*_info',
  'info_base',
  'base_request',
  'request_user_',
  'user__histori',
  'histori_mental',
  'mental_health',
  'health_issu',
  'issu_got',
  'got_better',
  'better_past',
  'past_month',
  'month_also',
  'also_recent',
  'recent_death',
  'death_famili',
  'famili_realli',
  'realli_affect',
  'affect_health',
  'health_gener',
  'gener_*',
  'boyfriend_togeth_year',
  'togeth_year_good',
  'year_good_heart',
  'good_heart_normal',
  'heart_normal_ration',
  'normal_ration_one',
  'ration_one_issu',
  'one_issu_expect',
  'issu_expect_accompani',
  'expect_accompani_everi',
  'accompani_everi_ocass',
  'everi_ocass_nomatt',
  'ocass_nomatt_big',
  'nomatt_big_small',
  'big_small_even',
  'small_even_went',
  'even_went_ex',
  'went_ex_boyfriend',
  'ex_boyfriend_funer',
  'boyfriend_funer_day',
  'funer_day_beg',
  'day_beg_best',
  'beg_best_friend',
  'best_friend_got',
  'friend_got_marri',
  'got_marri_day',
  'marri_day_ago',
  'day_ago_small',
  'ago_small_close',
  'small_close_famili',
  'close_famili_friend',
  'famili_friend_invit',
  'friend_invit_boyfriend',
  'invit_boyfriend_come',
  'boyfriend_come_+',
  'come_+_one',
  '+_one_rule',
  'one_rule_pitch',
  'rule_pitch_hissi',
  'pitch_hissi_fit',
  'hissi_fit_say',
  'fit_say_best',
  'say_best_friend',
  'best_friend_respect',
  'friend_respect_relationship',
  'respect_relationship_shock',
  'relationship_shock_learn',
  'shock_learn_still',
  'learn_still_go',
  'still_go_attend',
  'go_attend_told',
  'attend_told_cant',
  'told_cant_go',
  'cant_go_im',
  'go_im_expect',
  'im_expect_go',
  'expect_go_well',
  'go_well_best',
  'well_best_friend',
  'best_friend_respect',
  'friend_respect_rule',
  'respect_rule_gave',
  'rule_gave_altimatum',
  'gave_altimatum_either',
  'altimatum_either_go',
  'either_go_togeth',
  'go_togeth_stay',
  'togeth_stay_home',
  'stay_home_end',
  'home_end_go',
  'end_go_caus',
  'go_caus_respect',
  'caus_respect_friend',
  'respect_friend_rule',
  'friend_rule_angri',
  'rule_angri_kept',
  'angri_kept_call',
  'kept_call_entir',
  'call_entir_hr',
  'entir_hr_drive',
  'hr_drive_stop',
  'drive_stop_later',
  'stop_later_got',
  'later_got_text',
  'got_text_friend',
  'text_friend_tell',
  'friend_tell_boyfriend',
  'tell_boyfriend_got',
  'boyfriend_got_accid',
  'got_accid_taken',
  'accid_taken_hospit',
  'taken_hospit_freak',
  'hospit_freak_gave',
  'freak_gave_address',
  'gave_address_leav',
  'address_leav_wed',
  'leav_wed_told',
  'wed_told_friend',
  'told_friend_cri',
  'friend_cri_entir',
  'cri_entir_drive',
  'entir_drive_home',
  'drive_home_kept',
  'home_kept_call',
  'kept_call_friend',
  'call_friend_got',
  'friend_got_respons',
  'got_respons_arriv',
  'respons_arriv_hospit',
  'arriv_hospit_ask',
  'hospit_ask_boyfriend',
  'ask_boyfriend_check',
  'boyfriend_check_told',
  'check_told_anxieti',
  'told_anxieti_reach',
  'anxieti_reach_%',
  'reach_%_kept',
  '%_kept_call',
  'kept_call_friend',
  'call_friend_one',
  'friend_one_one',
  'one_one_went',
  'one_went_home',
  'went_home_wasalong',
  'home_wasalong_friend',
  'wasalong_friend_saw',
  'friend_saw_said',
  'saw_said_sorri',
  'said_sorri_get',
  'sorri_get_home',
  'get_home_left',
  'home_left_alon',
  'left_alon_initi',
  'alon_initi_shock',
  'initi_shock_blew',
  'shock_blew_yell',
  'blew_yell_lie',
  'yell_lie_make',
  'lie_make_leav',
  'make_leav_friend',
  'leav_friend_wed',
  'friend_wed_liter',
  'wed_liter_go',
  'liter_go_hospit',
  'go_hospit_freak',
  'hospit_freak_caus',
  'freak_caus_kick',
  'caus_kick_friend',
  'kick_friend_got',
  'friend_got_argument',
  'got_argument_kept',
  'argument_kept_talk',
  'kept_talk_much',
  'talk_much_love',
  'much_love_thu',
  'love_thu_left',
  'thu_left_tri',
  'left_tri_see',
  'tri_see_realli',
  'see_realli_chose',
  'realli_chose_friend',
  'chose_friend_wed',
  'friend_wed_argu',
  'wed_argu_friend',
  'argu_friend_caus',
  'friend_caus_agre',
  'caus_agre_exclud',
  'agre_exclud_said',
  'exclud_said_horribl',
  'said_horribl_call',
  'horribl_call_horribl',
  'call_horribl_went',
  'horribl_went_room',
  'went_room_aw',
  'room_aw_caus',
  'aw_caus_friend',
  'caus_friend_kept',
  'friend_kept_call',
  'kept_call_check',
  'call_check_caus',
  'check_caus_thought',
  'caus_thought_realli',
  'thought_realli_hospit',
  'realli_hospit_said',
  'hospit_said_overreact',
  'said_overreact_yell',
  'overreact_yell_wrong',
  'yell_wrong_person',
  'wrong_person_aita',
  'person_aita_go',
  'aita_go_far',
  'go_far_*',
  'far_*_info',
  '*_info_base',
  'info_base_request',
  'base_request_user_',
  'request_user__histori',
  'user__histori_mental',
  'histori_mental_health',
  'mental_health_issu',
  'health_issu_got',
  'issu_got_better',
  'got_better_past',
  'better_past_month',
  'past_month_also',
  'month_also_recent',
  'also_recent_death',
  'recent_death_famili',
  'death_famili_realli',
  'famili_realli_affect',
  'realli_affect_health',
  'affect_health_gener',
  'health_gener_*'],
 ['im',
  '-year-old',
  'man',
  'wife',
  'sinc',
  'start',
  'relationship',
  'wife',
  'particular',
  'thing',
  'get',
  'done',
  'tend',
  'believ',
  'know',
  'one',
  'true',
  'correct',
  'way',
  'anyth',
  'relat',
  'anyth',
  'admit',
  'control',
  'freak',
  'bother',
  'never',
  'true',
  'dealbreak',
  'relationship',
  'often',
  'anyth',
  'whether',
  'household',
  'chore',
  'assembl',
  'piec',
  'furnitur',
  'take',
  'pictur',
  'write',
  'present',
  'work',
  'field',
  'master',
  'degre',
  'formal',
  'educ',
  'shell',
  'thing',
  'shell',
  'condescendingli',
  'say',
  '*',
  'close',
  '*',
  'get',
  'right',
  'realli',
  'draw',
  'close',
  'part',
  'ive',
  'told',
  'dozen',
  'time',
  'id',
  'prefer',
  'stop',
  'sound',
  'condescend',
  'insist',
  'compliment',
  'dish',
  'place',
  'dri',
  'orient',
  'approv',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'put',
  'way',
  'take',
  'pictur',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'angl',
  'camera',
  'way',
  'complet',
  'project',
  'work',
  'show',
  'result',
  '>',
  '*',
  'close',
  '*',
  'next',
  'time',
  'write',
  'way',
  'last',
  'two',
  'month',
  'wife',
  'undergo',
  'intens',
  'hire',
  'process',
  'job',
  'citi',
  'work',
  'highli',
  'nich',
  'field',
  'seldom',
  'find',
  'job',
  'open',
  'therefor',
  'ecstat',
  'opportun',
  'rel',
  'well-pay',
  'job',
  'want',
  'got',
  'final',
  'stage',
  'compani',
  'consid',
  'two',
  'peopl',
  'coincident',
  'colleg',
  'roommat',
  'well',
  'friday',
  'got',
  'call',
  'tell',
  'thank',
  'applic',
  'blah',
  'blah',
  'blah',
  'record',
  'file',
  'jazz',
  'wife',
  'came',
  'cri',
  'immedi',
  'comfort',
  '*',
  'close',
  '*',
  'blurt',
  'head',
  'whip',
  'ask',
  'meant',
  'said',
  '*',
  'close',
  '*',
  'get',
  'job',
  'bit',
  'immedi',
  'walk',
  'stay',
  'friend',
  'hous',
  'current',
  'sulk',
  'final',
  'sent',
  'text',
  'afternoon',
  'call',
  'huge',
  'jerk',
  'unnecessarili',
  'asshol',
  'im_-year-old',
  '-year-old_man',
  'man_wife',
  'wife_sinc',
  'sinc_start',
  'start_relationship',
  'relationship_wife',
  'wife_particular',
  'particular_thing',
  'thing_get',
  'get_done',
  'done_tend',
  'tend_believ',
  'believ_know',
  'know_one',
  'one_true',
  'true_correct',
  'correct_way',
  'way_anyth',
  'anyth_relat',
  'relat_anyth',
  'anyth_admit',
  'admit_control',
  'control_freak',
  'freak_bother',
  'bother_never',
  'never_true',
  'true_dealbreak',
  'dealbreak_relationship',
  'relationship_often',
  'often_anyth',
  'anyth_whether',
  'whether_household',
  'household_chore',
  'chore_assembl',
  'assembl_piec',
  'piec_furnitur',
  'furnitur_take',
  'take_pictur',
  'pictur_write',
  'write_present',
  'present_work',
  'work_field',
  'field_master',
  'master_degre',
  'degre_formal',
  'formal_educ',
  'educ_shell',
  'shell_thing',
  'thing_shell',
  'shell_condescendingli',
  'condescendingli_say',
  'say_*',
  '*_close',
  'close_*',
  '*_get',
  'get_right',
  'right_realli',
  'realli_draw',
  'draw_close',
  'close_part',
  'part_ive',
  'ive_told',
  'told_dozen',
  'dozen_time',
  'time_id',
  'id_prefer',
  'prefer_stop',
  'stop_sound',
  'sound_condescend',
  'condescend_insist',
  'insist_compliment',
  'compliment_dish',
  'dish_place',
  'place_dri',
  'dri_orient',
  'orient_approv',
  'approv_>',
  '>_*',
  '*_close',
  'close_*',
  '*_next',
  'next_time',
  'time_put',
  'put_way',
  'way_take',
  'take_pictur',
  'pictur_>',
  '>_*',
  '*_close',
  'close_*',
  '*_next',
  'next_time',
  'time_angl',
  'angl_camera',
  'camera_way',
  'way_complet',
  'complet_project',
  'project_work',
  'work_show',
  'show_result',
  'result_>',
  '>_*',
  '*_close',
  'close_*',
  '*_next',
  'next_time',
  'time_write',
  'write_way',
  'way_last',
  'last_two',
  'two_month',
  'month_wife',
  'wife_undergo',
  'undergo_intens',
  'intens_hire',
  'hire_process',
  'process_job',
  'job_citi',
  'citi_work',
  'work_highli',
  'highli_nich',
  'nich_field',
  'field_seldom',
  'seldom_find',
  'find_job',
  'job_open',
  'open_therefor',
  'therefor_ecstat',
  'ecstat_opportun',
  'opportun_rel',
  'rel_well-pay',
  'well-pay_job',
  'job_want',
  'want_got',
  'got_final',
  'final_stage',
  'stage_compani',
  'compani_consid',
  'consid_two',
  'two_peopl',
  'peopl_coincident',
  'coincident_colleg',
  'colleg_roommat',
  'roommat_well',
  'well_friday',
  'friday_got',
  'got_call',
  'call_tell',
  'tell_thank',
  'thank_applic',
  'applic_blah',
  'blah_blah',
  'blah_blah',
  'blah_record',
  'record_file',
  'file_jazz',
  'jazz_wife',
  'wife_came',
  'came_cri',
  'cri_immedi',
  'immedi_comfort',
  'comfort_*',
  '*_close',
  'close_*',
  '*_blurt',
  'blurt_head',
  'head_whip',
  'whip_ask',
  'ask_meant',
  'meant_said',
  'said_*',
  '*_close',
  'close_*',
  '*_get',
  'get_job',
  'job_bit',
  'bit_immedi',
  'immedi_walk',
  'walk_stay',
  'stay_friend',
  'friend_hous',
  'hous_current',
  'current_sulk',
  'sulk_final',
  'final_sent',
  'sent_text',
  'text_afternoon',
  'afternoon_call',
  'call_huge',
  'huge_jerk',
  'jerk_unnecessarili',
  'unnecessarili_asshol',
  'im_-year-old_man',
  '-year-old_man_wife',
  'man_wife_sinc',
  'wife_sinc_start',
  'sinc_start_relationship',
  'start_relationship_wife',
  'relationship_wife_particular',
  'wife_particular_thing',
  'particular_thing_get',
  'thing_get_done',
  'get_done_tend',
  'done_tend_believ',
  'tend_believ_know',
  'believ_know_one',
  'know_one_true',
  'one_true_correct',
  'true_correct_way',
  'correct_way_anyth',
  'way_anyth_relat',
  'anyth_relat_anyth',
  'relat_anyth_admit',
  'anyth_admit_control',
  'admit_control_freak',
  'control_freak_bother',
  'freak_bother_never',
  'bother_never_true',
  'never_true_dealbreak',
  'true_dealbreak_relationship',
  'dealbreak_relationship_often',
  'relationship_often_anyth',
  'often_anyth_whether',
  'anyth_whether_household',
  'whether_household_chore',
  'household_chore_assembl',
  'chore_assembl_piec',
  'assembl_piec_furnitur',
  'piec_furnitur_take',
  'furnitur_take_pictur',
  'take_pictur_write',
  'pictur_write_present',
  'write_present_work',
  'present_work_field',
  'work_field_master',
  'field_master_degre',
  'master_degre_formal',
  'degre_formal_educ',
  'formal_educ_shell',
  'educ_shell_thing',
  'shell_thing_shell',
  'thing_shell_condescendingli',
  'shell_condescendingli_say',
  'condescendingli_say_*',
  'say_*_close',
  '*_close_*',
  'close_*_get',
  '*_get_right',
  'get_right_realli',
  'right_realli_draw',
  'realli_draw_close',
  'draw_close_part',
  'close_part_ive',
  'part_ive_told',
  'ive_told_dozen',
  'told_dozen_time',
  'dozen_time_id',
  'time_id_prefer',
  'id_prefer_stop',
  'prefer_stop_sound',
  'stop_sound_condescend',
  'sound_condescend_insist',
  'condescend_insist_compliment',
  'insist_compliment_dish',
  'compliment_dish_place',
  'dish_place_dri',
  'place_dri_orient',
  'dri_orient_approv',
  'orient_approv_>',
  'approv_>_*',
  '>_*_close',
  '*_close_*',
  'close_*_next',
  '*_next_time',
  'next_time_put',
  'time_put_way',
  'put_way_take',
  'way_take_pictur',
  'take_pictur_>',
  'pictur_>_*',
  '>_*_close',
  '*_close_*',
  'close_*_next',
  '*_next_time',
  'next_time_angl',
  'time_angl_camera',
  'angl_camera_way',
  'camera_way_complet',
  'way_complet_project',
  'complet_project_work',
  'project_work_show',
  'work_show_result',
  'show_result_>',
  'result_>_*',
  '>_*_close',
  '*_close_*',
  'close_*_next',
  '*_next_time',
  'next_time_write',
  'time_write_way',
  'write_way_last',
  'way_last_two',
  'last_two_month',
  'two_month_wife',
  'month_wife_undergo',
  'wife_undergo_intens',
  'undergo_intens_hire',
  'intens_hire_process',
  'hire_process_job',
  'process_job_citi',
  'job_citi_work',
  'citi_work_highli',
  'work_highli_nich',
  'highli_nich_field',
  'nich_field_seldom',
  'field_seldom_find',
  'seldom_find_job',
  'find_job_open',
  'job_open_therefor',
  'open_therefor_ecstat',
  'therefor_ecstat_opportun',
  'ecstat_opportun_rel',
  'opportun_rel_well-pay',
  'rel_well-pay_job',
  'well-pay_job_want',
  'job_want_got',
  'want_got_final',
  'got_final_stage',
  'final_stage_compani',
  'stage_compani_consid',
  'compani_consid_two',
  'consid_two_peopl',
  'two_peopl_coincident',
  'peopl_coincident_colleg',
  'coincident_colleg_roommat',
  'colleg_roommat_well',
  'roommat_well_friday',
  'well_friday_got',
  'friday_got_call',
  'got_call_tell',
  'call_tell_thank',
  'tell_thank_applic',
  'thank_applic_blah',
  'applic_blah_blah',
  'blah_blah_blah',
  'blah_blah_record',
  'blah_record_file',
  'record_file_jazz',
  'file_jazz_wife',
  'jazz_wife_came',
  'wife_came_cri',
  'came_cri_immedi',
  'cri_immedi_comfort',
  'immedi_comfort_*',
  'comfort_*_close',
  '*_close_*',
  'close_*_blurt',
  '*_blurt_head',
  'blurt_head_whip',
  'head_whip_ask',
  'whip_ask_meant',
  'ask_meant_said',
  'meant_said_*',
  'said_*_close',
  '*_close_*',
  'close_*_get',
  '*_get_job',
  'get_job_bit',
  'job_bit_immedi',
  'bit_immedi_walk',
  'immedi_walk_stay',
  'walk_stay_friend',
  'stay_friend_hous',
  'friend_hous_current',
  'hous_current_sulk',
  'current_sulk_final',
  'sulk_final_sent',
  'final_sent_text',
  'sent_text_afternoon',
  'text_afternoon_call',
  'afternoon_call_huge',
  'call_huge_jerk',
  'huge_jerk_unnecessarili',
  'jerk_unnecessarili_asshol'],
 ['singl',
  'mom',
  'two',
  'boy',
  'age',
  'father',
  'divorc',
  'year',
  'ago',
  'learn',
  'cheat',
  'got',
  'pregnant',
  'either',
  'right',
  'told',
  'confess',
  'right',
  'divorc',
  'easi',
  'one',
  'want',
  'stay',
  'friend',
  'could',
  'look',
  'togeth',
  'year',
  'also',
  'friend',
  'boyfriendhusband',
  'betray',
  'like',
  'treat',
  'aw',
  'marri',
  'affair',
  'partner',
  'daughter',
  'within',
  'month',
  'separ',
  'follow',
  'son',
  'divorcetheir',
  'marriag',
  'last',
  'year',
  'lost',
  'babi',
  'led',
  'discoveri',
  'wife',
  'cancer',
  'follow',
  'lot',
  'fight',
  'two',
  'us',
  'want',
  'help',
  'wife',
  'said',
  'children',
  'current',
  'need',
  'famili',
  'beyond',
  'wife',
  'famili',
  'disown',
  'divorc',
  'extrem',
  'religi',
  'famili',
  'told',
  'would',
  'dead',
  'bodi',
  'would',
  'help',
  'argu',
  'children',
  'kid',
  'boy',
  'could',
  'see',
  'famili',
  'heal',
  'one',
  'told',
  'stop',
  'chanc',
  'happen',
  'cheat',
  'expect',
  'tell',
  'daughter',
  'school',
  'call',
  'got',
  'sick',
  'work',
  'time',
  'leav',
  'appar',
  'alreadi',
  'miss',
  'lot',
  'work',
  'due',
  'wife',
  'home',
  'recov',
  'chemo',
  'got',
  'call',
  'ask',
  'would',
  'pick',
  'said',
  'sever',
  'hour',
  'later',
  'got',
  'ream',
  'phone',
  'leav',
  'sick',
  'child',
  'school',
  'knew',
  'nobodi',
  'told',
  'leav',
  'wife',
  'rest',
  'told',
  'babysitt',
  'son',
  'call',
  'told',
  'daycar',
  'fuck',
  'asham',
  'sick',
  'child',
  'go',
  'lot',
  'could',
  'help',
  'told',
  'hope',
  'son',
  'go',
  'fuck',
  'asham',
  'argu',
  'back',
  'phone',
  'time',
  'guess',
  'part',
  'feel',
  'bad',
  'child',
  'son',
  'also',
  'sens',
  'atmospher',
  'dad',
  'incid',
  'talk',
  'hate',
  'aita',
  'singl_mom',
  'mom_two',
  'two_boy',
  'boy_age',
  'age_father',
  'father_divorc',
  'divorc_year',
  'year_ago',
  'ago_learn',
  'learn_cheat',
  'cheat_got',
  'got_pregnant',
  'pregnant_either',
  'either_right',
  'right_told',
  'told_confess',
  'confess_right',
  'right_divorc',
  'divorc_easi',
  'easi_one',
  'one_want',
  'want_stay',
  'stay_friend',
  'friend_could',
  'could_look',
  'look_togeth',
  'togeth_year',
  'year_also',
  'also_friend',
  'friend_boyfriendhusband',
  'boyfriendhusband_betray',
  'betray_like',
  'like_treat',
  'treat_aw',
  'aw_marri',
  'marri_affair',
  'affair_partner',
  'partner_daughter',
  'daughter_within',
  'within_month',
  'month_separ',
  'separ_follow',
  'follow_son',
  'son_divorcetheir',
  'divorcetheir_marriag',
  'marriag_last',
  'last_year',
  'year_lost',
  'lost_babi',
  'babi_led',
  'led_discoveri',
  'discoveri_wife',
  'wife_cancer',
  'cancer_follow',
  'follow_lot',
  'lot_fight',
  'fight_two',
  'two_us',
  'us_want',
  'want_help',
  'help_wife',
  'wife_said',
  'said_children',
  'children_current',
  'current_need',
  'need_famili',
  'famili_beyond',
  'beyond_wife',
  'wife_famili',
  'famili_disown',
  'disown_divorc',
  'divorc_extrem',
  'extrem_religi',
  'religi_famili',
  'famili_told',
  'told_would',
  'would_dead',
  'dead_bodi',
  'bodi_would',
  'would_help',
  'help_argu',
  'argu_children',
  'children_kid',
  'kid_boy',
  'boy_could',
  'could_see',
  'see_famili',
  'famili_heal',
  'heal_one',
  'one_told',
  'told_stop',
  'stop_chanc',
  'chanc_happen',
  'happen_cheat',
  'cheat_expect',
  'expect_tell',
  'tell_daughter',
  'daughter_school',
  'school_call',
  'call_got',
  'got_sick',
  'sick_work',
  'work_time',
  'time_leav',
  'leav_appar',
  'appar_alreadi',
  'alreadi_miss',
  'miss_lot',
  'lot_work',
  'work_due',
  'due_wife',
  'wife_home',
  'home_recov',
  'recov_chemo',
  'chemo_got',
  'got_call',
  'call_ask',
  'ask_would',
  'would_pick',
  'pick_said',
  'said_sever',
  'sever_hour',
  'hour_later',
  'later_got',
  'got_ream',
  'ream_phone',
  'phone_leav',
  'leav_sick',
  'sick_child',
  'child_school',
  'school_knew',
  'knew_nobodi',
  'nobodi_told',
  'told_leav',
  'leav_wife',
  'wife_rest',
  'rest_told',
  'told_babysitt',
  'babysitt_son',
  'son_call',
  'call_told',
  'told_daycar',
  'daycar_fuck',
  'fuck_asham',
  'asham_sick',
  'sick_child',
  'child_go',
  'go_lot',
  'lot_could',
  'could_help',
  'help_told',
  'told_hope',
  'hope_son',
  'son_go',
  'go_fuck',
  'fuck_asham',
  'asham_argu',
  'argu_back',
  'back_phone',
  'phone_time',
  'time_guess',
  'guess_part',
  'part_feel',
  'feel_bad',
  'bad_child',
  'child_son',
  'son_also',
  'also_sens',
  'sens_atmospher',
  'atmospher_dad',
  'dad_incid',
  'incid_talk',
  'talk_hate',
  'hate_aita',
  'singl_mom_two',
  'mom_two_boy',
  'two_boy_age',
  'boy_age_father',
  'age_father_divorc',
  'father_divorc_year',
  'divorc_year_ago',
  'year_ago_learn',
  'ago_learn_cheat',
  'learn_cheat_got',
  'cheat_got_pregnant',
  'got_pregnant_either',
  'pregnant_either_right',
  'either_right_told',
  'right_told_confess',
  'told_confess_right',
  'confess_right_divorc',
  'right_divorc_easi',
  'divorc_easi_one',
  'easi_one_want',
  'one_want_stay',
  'want_stay_friend',
  'stay_friend_could',
  'friend_could_look',
  'could_look_togeth',
  'look_togeth_year',
  'togeth_year_also',
  'year_also_friend',
  'also_friend_boyfriendhusband',
  'friend_boyfriendhusband_betray',
  'boyfriendhusband_betray_like',
  'betray_like_treat',
  'like_treat_aw',
  'treat_aw_marri',
  'aw_marri_affair',
  'marri_affair_partner',
  'affair_partner_daughter',
  'partner_daughter_within',
  'daughter_within_month',
  'within_month_separ',
  'month_separ_follow',
  'separ_follow_son',
  'follow_son_divorcetheir',
  'son_divorcetheir_marriag',
  'divorcetheir_marriag_last',
  'marriag_last_year',
  'last_year_lost',
  'year_lost_babi',
  'lost_babi_led',
  'babi_led_discoveri',
  'led_discoveri_wife',
  'discoveri_wife_cancer',
  'wife_cancer_follow',
  'cancer_follow_lot',
  'follow_lot_fight',
  'lot_fight_two',
  'fight_two_us',
  'two_us_want',
  'us_want_help',
  'want_help_wife',
  'help_wife_said',
  'wife_said_children',
  'said_children_current',
  'children_current_need',
  'current_need_famili',
  'need_famili_beyond',
  'famili_beyond_wife',
  'beyond_wife_famili',
  'wife_famili_disown',
  'famili_disown_divorc',
  'disown_divorc_extrem',
  'divorc_extrem_religi',
  'extrem_religi_famili',
  'religi_famili_told',
  'famili_told_would',
  'told_would_dead',
  'would_dead_bodi',
  'dead_bodi_would',
  'bodi_would_help',
  'would_help_argu',
  'help_argu_children',
  'argu_children_kid',
  'children_kid_boy',
  'kid_boy_could',
  'boy_could_see',
  'could_see_famili',
  'see_famili_heal',
  'famili_heal_one',
  'heal_one_told',
  'one_told_stop',
  'told_stop_chanc',
  'stop_chanc_happen',
  'chanc_happen_cheat',
  'happen_cheat_expect',
  'cheat_expect_tell',
  'expect_tell_daughter',
  'tell_daughter_school',
  'daughter_school_call',
  'school_call_got',
  'call_got_sick',
  'got_sick_work',
  'sick_work_time',
  'work_time_leav',
  'time_leav_appar',
  'leav_appar_alreadi',
  'appar_alreadi_miss',
  'alreadi_miss_lot',
  'miss_lot_work',
  'lot_work_due',
  'work_due_wife',
  'due_wife_home',
  'wife_home_recov',
  'home_recov_chemo',
  'recov_chemo_got',
  'chemo_got_call',
  'got_call_ask',
  'call_ask_would',
  'ask_would_pick',
  'would_pick_said',
  'pick_said_sever',
  'said_sever_hour',
  'sever_hour_later',
  'hour_later_got',
  'later_got_ream',
  'got_ream_phone',
  'ream_phone_leav',
  'phone_leav_sick',
  'leav_sick_child',
  'sick_child_school',
  'child_school_knew',
  'school_knew_nobodi',
  'knew_nobodi_told',
  'nobodi_told_leav',
  'told_leav_wife',
  'leav_wife_rest',
  'wife_rest_told',
  'rest_told_babysitt',
  'told_babysitt_son',
  'babysitt_son_call',
  'son_call_told',
  'call_told_daycar',
  'told_daycar_fuck',
  'daycar_fuck_asham',
  'fuck_asham_sick',
  'asham_sick_child',
  'sick_child_go',
  'child_go_lot',
  'go_lot_could',
  'lot_could_help',
  'could_help_told',
  'help_told_hope',
  'told_hope_son',
  'hope_son_go',
  'son_go_fuck',
  'go_fuck_asham',
  'fuck_asham_argu',
  'asham_argu_back',
  'argu_back_phone',
  'back_phone_time',
  'phone_time_guess',
  'time_guess_part',
  'guess_part_feel',
  'part_feel_bad',
  'feel_bad_child',
  'bad_child_son',
  'child_son_also',
  'son_also_sens',
  'also_sens_atmospher',
  'sens_atmospher_dad',
  'atmospher_dad_incid',
  'dad_incid_talk',
  'incid_talk_hate',
  'talk_hate_aita'],
 ['year',
  'ago',
  'marri',
  'expect',
  'babi',
  'thing',
  'went',
  'horribl',
  'wrong',
  'around',
  'week',
  'pregnanc',
  'suffer',
  'miscarriag',
  'return',
  'home',
  'find',
  'husband',
  'bed',
  'sister',
  'two',
  'tri',
  'apolog',
  'convinc',
  'could',
  'get',
  'want',
  'noth',
  'either',
  'even',
  'less',
  'found',
  'gotten',
  'pregnant',
  'divorc',
  'final',
  'quickli',
  'want',
  'noth',
  'divorc',
  'leav',
  'marriag',
  'noth',
  'cloth',
  'back',
  'pretti',
  'earli',
  'realiz',
  'parent',
  'hope',
  'would',
  'want',
  'still',
  'part',
  'babi',
  'life',
  'want',
  'noth',
  'babi',
  'sister',
  'conceiv',
  'sleep',
  'husband',
  'ex',
  'lay',
  'hospit',
  'lose',
  'pregnanc',
  'refus',
  'contact',
  'sister',
  'ex',
  'marri',
  'two',
  'children',
  'one',
  'conciev',
  'marriag',
  'met',
  'current',
  'husband',
  'distanc',
  'whole',
  'famili',
  'amaz',
  'famili',
  'great',
  'got',
  'marri',
  'two',
  'year',
  'ago',
  'famili',
  'noth',
  'short',
  'best',
  'ador',
  'niec',
  'nephew',
  'gain',
  'marriag',
  'spend',
  'lot',
  'time',
  'togeth',
  'around',
  'three',
  'month',
  'ago',
  'sister',
  'call',
  'work',
  'use',
  'work',
  'phone',
  'told',
  'need',
  'could',
  'pleas',
  'come',
  'hung',
  'phone',
  'continu',
  'day',
  'sever',
  'hour',
  'later',
  'got',
  'messag',
  'parent',
  'say',
  'need',
  'sister',
  'day',
  'later',
  'got',
  'anoth',
  'call',
  'told',
  'sister',
  'pregnant',
  'babi',
  'pass',
  'away',
  'insid',
  'deliv',
  'stillborn',
  'sleep',
  'someon',
  'els',
  'parent',
  'sister',
  'expect',
  'ralli',
  'around',
  'time',
  'pass',
  'live',
  'inund',
  'say',
  'meet',
  'kid',
  'like',
  'husband',
  'niec',
  'nephew',
  'reconcil',
  'famili',
  'sister',
  'told',
  'sorri',
  'want',
  'us',
  'make',
  'told',
  'three',
  'kid',
  'problem',
  'still',
  'want',
  'noth',
  'parent',
  'furiou',
  'say',
  'need',
  'forgiv',
  'whatev',
  'suffer',
  'wors',
  'would',
  'ever',
  'deserv',
  'kid',
  'innoc',
  'deserv',
  'aunt',
  'aita',
  'year_ago',
  'ago_marri',
  'marri_expect',
  'expect_babi',
  'babi_thing',
  'thing_went',
  'went_horribl',
  'horribl_wrong',
  'wrong_around',
  'around_week',
  'week_pregnanc',
  'pregnanc_suffer',
  'suffer_miscarriag',
  'miscarriag_return',
  'return_home',
  'home_find',
  'find_husband',
  'husband_bed',
  'bed_sister',
  'sister_two',
  'two_tri',
  'tri_apolog',
  'apolog_convinc',
  'convinc_could',
  'could_get',
  'get_want',
  'want_noth',
  'noth_either',
  'either_even',
  'even_less',
  'less_found',
  'found_gotten',
  'gotten_pregnant',
  'pregnant_divorc',
  'divorc_final',
  'final_quickli',
  'quickli_want',
  'want_noth',
  'noth_divorc',
  'divorc_leav',
  'leav_marriag',
  'marriag_noth',
  'noth_cloth',
  'cloth_back',
  'back_pretti',
  'pretti_earli',
  'earli_realiz',
  'realiz_parent',
  'parent_hope',
  'hope_would',
  'would_want',
  'want_still',
  'still_part',
  'part_babi',
  'babi_life',
  'life_want',
  'want_noth',
  'noth_babi',
  'babi_sister',
  'sister_conceiv',
  'conceiv_sleep',
  'sleep_husband',
  'husband_ex',
  'ex_lay',
  'lay_hospit',
  'hospit_lose',
  'lose_pregnanc',
  'pregnanc_refus',
  'refus_contact',
  'contact_sister',
  'sister_ex',
  'ex_marri',
  'marri_two',
  'two_children',
  'children_one',
  'one_conciev',
  'conciev_marriag',
  'marriag_met',
  'met_current',
  'current_husband',
  'husband_distanc',
  'distanc_whole',
  'whole_famili',
  'famili_amaz',
  'amaz_famili',
  'famili_great',
  'great_got',
  'got_marri',
  'marri_two',
  'two_year',
  'year_ago',
  'ago_famili',
  'famili_noth',
  'noth_short',
  'short_best',
  'best_ador',
  'ador_niec',
  'niec_nephew',
  'nephew_gain',
  'gain_marriag',
  'marriag_spend',
  'spend_lot',
  'lot_time',
  'time_togeth',
  'togeth_around',
  'around_three',
  'three_month',
  'month_ago',
  'ago_sister',
  'sister_call',
  'call_work',
  'work_use',
  'use_work',
  'work_phone',
  'phone_told',
  'told_need',
  'need_could',
  'could_pleas',
  'pleas_come',
  'come_hung',
  'hung_phone',
  'phone_continu',
  'continu_day',
  'day_sever',
  'sever_hour',
  'hour_later',
  'later_got',
  'got_messag',
  'messag_parent',
  'parent_say',
  'say_need',
  'need_sister',
  'sister_day',
  'day_later',
  'later_got',
  'got_anoth',
  'anoth_call',
  'call_told',
  'told_sister',
  'sister_pregnant',
  'pregnant_babi',
  'babi_pass',
  'pass_away',
  'away_insid',
  'insid_deliv',
  'deliv_stillborn',
  'stillborn_sleep',
  'sleep_someon',
  'someon_els',
  'els_parent',
  'parent_sister',
  'sister_expect',
  'expect_ralli',
  'ralli_around',
  'around_time',
  'time_pass',
  'pass_live',
  'live_inund',
  'inund_say',
  'say_meet',
  'meet_kid',
  'kid_like',
  'like_husband',
  'husband_niec',
  'niec_nephew',
  'nephew_reconcil',
  'reconcil_famili',
  'famili_sister',
  'sister_told',
  'told_sorri',
  'sorri_want',
  'want_us',
  'us_make',
  'make_told',
  'told_three',
  'three_kid',
  'kid_problem',
  'problem_still',
  'still_want',
  'want_noth',
  'noth_parent',
  'parent_furiou',
  'furiou_say',
  'say_need',
  'need_forgiv',
  'forgiv_whatev',
  'whatev_suffer',
  'suffer_wors',
  'wors_would',
  'would_ever',
  'ever_deserv',
  'deserv_kid',
  'kid_innoc',
  'innoc_deserv',
  'deserv_aunt',
  'aunt_aita',
  'year_ago_marri',
  'ago_marri_expect',
  'marri_expect_babi',
  'expect_babi_thing',
  'babi_thing_went',
  'thing_went_horribl',
  'went_horribl_wrong',
  'horribl_wrong_around',
  'wrong_around_week',
  'around_week_pregnanc',
  'week_pregnanc_suffer',
  'pregnanc_suffer_miscarriag',
  'suffer_miscarriag_return',
  'miscarriag_return_home',
  'return_home_find',
  'home_find_husband',
  'find_husband_bed',
  'husband_bed_sister',
  'bed_sister_two',
  'sister_two_tri',
  'two_tri_apolog',
  'tri_apolog_convinc',
  'apolog_convinc_could',
  'convinc_could_get',
  'could_get_want',
  'get_want_noth',
  'want_noth_either',
  'noth_either_even',
  'either_even_less',
  'even_less_found',
  'less_found_gotten',
  'found_gotten_pregnant',
  'gotten_pregnant_divorc',
  'pregnant_divorc_final',
  'divorc_final_quickli',
  'final_quickli_want',
  'quickli_want_noth',
  'want_noth_divorc',
  'noth_divorc_leav',
  'divorc_leav_marriag',
  'leav_marriag_noth',
  'marriag_noth_cloth',
  'noth_cloth_back',
  'cloth_back_pretti',
  'back_pretti_earli',
  'pretti_earli_realiz',
  'earli_realiz_parent',
  'realiz_parent_hope',
  'parent_hope_would',
  'hope_would_want',
  'would_want_still',
  'want_still_part',
  'still_part_babi',
  'part_babi_life',
  'babi_life_want',
  'life_want_noth',
  'want_noth_babi',
  'noth_babi_sister',
  'babi_sister_conceiv',
  'sister_conceiv_sleep',
  'conceiv_sleep_husband',
  'sleep_husband_ex',
  'husband_ex_lay',
  'ex_lay_hospit',
  'lay_hospit_lose',
  'hospit_lose_pregnanc',
  'lose_pregnanc_refus',
  'pregnanc_refus_contact',
  'refus_contact_sister',
  'contact_sister_ex',
  'sister_ex_marri',
  'ex_marri_two',
  'marri_two_children',
  'two_children_one',
  'children_one_conciev',
  'one_conciev_marriag',
  'conciev_marriag_met',
  'marriag_met_current',
  'met_current_husband',
  'current_husband_distanc',
  'husband_distanc_whole',
  'distanc_whole_famili',
  'whole_famili_amaz',
  'famili_amaz_famili',
  'amaz_famili_great',
  'famili_great_got',
  'great_got_marri',
  'got_marri_two',
  'marri_two_year',
  'two_year_ago',
  'year_ago_famili',
  'ago_famili_noth',
  'famili_noth_short',
  'noth_short_best',
  'short_best_ador',
  'best_ador_niec',
  'ador_niec_nephew',
  'niec_nephew_gain',
  'nephew_gain_marriag',
  'gain_marriag_spend',
  'marriag_spend_lot',
  'spend_lot_time',
  'lot_time_togeth',
  'time_togeth_around',
  'togeth_around_three',
  'around_three_month',
  'three_month_ago',
  'month_ago_sister',
  'ago_sister_call',
  'sister_call_work',
  'call_work_use',
  'work_use_work',
  'use_work_phone',
  'work_phone_told',
  'phone_told_need',
  'told_need_could',
  'need_could_pleas',
  'could_pleas_come',
  'pleas_come_hung',
  'come_hung_phone',
  'hung_phone_continu',
  'phone_continu_day',
  'continu_day_sever',
  'day_sever_hour',
  'sever_hour_later',
  'hour_later_got',
  'later_got_messag',
  'got_messag_parent',
  'messag_parent_say',
  'parent_say_need',
  'say_need_sister',
  'need_sister_day',
  'sister_day_later',
  'day_later_got',
  'later_got_anoth',
  'got_anoth_call',
  'anoth_call_told',
  'call_told_sister',
  'told_sister_pregnant',
  'sister_pregnant_babi',
  'pregnant_babi_pass',
  'babi_pass_away',
  'pass_away_insid',
  'away_insid_deliv',
  'insid_deliv_stillborn',
  'deliv_stillborn_sleep',
  'stillborn_sleep_someon',
  'sleep_someon_els',
  'someon_els_parent',
  'els_parent_sister',
  'parent_sister_expect',
  'sister_expect_ralli',
  'expect_ralli_around',
  'ralli_around_time',
  'around_time_pass',
  'time_pass_live',
  'pass_live_inund',
  'live_inund_say',
  'inund_say_meet',
  'say_meet_kid',
  'meet_kid_like',
  'kid_like_husband',
  'like_husband_niec',
  'husband_niec_nephew',
  'niec_nephew_reconcil',
  'nephew_reconcil_famili',
  'reconcil_famili_sister',
  'famili_sister_told',
  'sister_told_sorri',
  'told_sorri_want',
  'sorri_want_us',
  'want_us_make',
  'us_make_told',
  'make_told_three',
  'told_three_kid',
  'three_kid_problem',
  'kid_problem_still',
  'problem_still_want',
  'still_want_noth',
  'want_noth_parent',
  'noth_parent_furiou',
  'parent_furiou_say',
  'furiou_say_need',
  'say_need_forgiv',
  'need_forgiv_whatev',
  'forgiv_whatev_suffer',
  'whatev_suffer_wors',
  'suffer_wors_would',
  'wors_would_ever',
  'would_ever_deserv',
  'ever_deserv_kid',
  'deserv_kid_innoc',
  'kid_innoc_deserv',
  'innoc_deserv_aunt',
  'deserv_aunt_aita'],
 ['son',
  'eight',
  'got',
  'dog',
  'half',
  'great',
  'dane',
  'half',
  'dog',
  'friend',
  'dog',
  'met',
  'unauthor',
  'absenc',
  'son',
  'love',
  'dog',
  'care',
  'except',
  'vet',
  'stuff',
  'respons',
  'dog',
  'owner',
  'dog',
  'pretti',
  'much',
  'best',
  'friend',
  'wife',
  'week',
  'pregnant',
  'ever',
  'sinc',
  'confirm',
  'pregnanc',
  'act',
  'weird',
  'around',
  'dog',
  'avoid',
  'put',
  'hand',
  'stomach',
  'around',
  'jolt',
  'whenev',
  'make',
  'nois',
  'today',
  'told',
  'want',
  're-hom',
  'dog',
  'ask',
  'talk',
  'said',
  'anxieti',
  'jump',
  'complet',
  'unreason',
  'jump',
  'peopl',
  'train',
  'jump',
  'peopl',
  'run',
  'peopl',
  'young',
  'half',
  'great',
  'dane',
  'felt',
  'import',
  'dog',
  'especi',
  'one',
  'could',
  'possibl',
  'grow',
  'larg',
  'size',
  'reason',
  'think',
  'dog',
  'jump',
  'said',
  'way',
  'know',
  'sure',
  'dog',
  'jump',
  'babi',
  'could',
  'hurt',
  'dog',
  'never',
  'much',
  'growl',
  'said',
  'even',
  'dog',
  'jump',
  'anxieti',
  'bad',
  'health',
  'said',
  'need',
  'dog',
  'elsewher',
  'safeti',
  'babi',
  'told',
  'way',
  'son',
  'got',
  'dog',
  'right',
  'lost',
  'mom',
  'imprint',
  'hard',
  'sometim',
  'think',
  'love',
  'dog',
  'im',
  'take',
  'dog',
  'dog',
  'anyth',
  'wife',
  'said',
  'priorit',
  'dog',
  'pregnanc',
  'dog',
  'threat',
  'pregnanc',
  'unreason',
  'request',
  'would',
  'pregnant',
  'cant',
  'break',
  'son',
  'heart',
  'fear',
  'make',
  'sens',
  'asshol',
  'son_eight',
  'eight_got',
  'got_dog',
  'dog_half',
  'half_great',
  'great_dane',
  'dane_half',
  'half_dog',
  'dog_friend',
  'friend_dog',
  'dog_met',
  'met_unauthor',
  'unauthor_absenc',
  'absenc_son',
  'son_love',
  'love_dog',
  'dog_care',
  'care_except',
  'except_vet',
  'vet_stuff',
  'stuff_respons',
  'respons_dog',
  'dog_owner',
  'owner_dog',
  'dog_pretti',
  'pretti_much',
  'much_best',
  'best_friend',
  'friend_wife',
  'wife_week',
  'week_pregnant',
  'pregnant_ever',
  'ever_sinc',
  'sinc_confirm',
  'confirm_pregnanc',
  'pregnanc_act',
  'act_weird',
  'weird_around',
  'around_dog',
  'dog_avoid',
  'avoid_put',
  'put_hand',
  'hand_stomach',
  'stomach_around',
  'around_jolt',
  'jolt_whenev',
  'whenev_make',
  'make_nois',
  'nois_today',
  'today_told',
  'told_want',
  'want_re-hom',
  're-hom_dog',
  'dog_ask',
  'ask_talk',
  'talk_said',
  'said_anxieti',
  'anxieti_jump',
  'jump_complet',
  'complet_unreason',
  'unreason_jump',
  'jump_peopl',
  'peopl_train',
  'train_jump',
  'jump_peopl',
  'peopl_run',
  'run_peopl',
  'peopl_young',
  'young_half',
  'half_great',
  'great_dane',
  'dane_felt',
  'felt_import',
  'import_dog',
  'dog_especi',
  'especi_one',
  'one_could',
  'could_possibl',
  'possibl_grow',
  'grow_larg',
  'larg_size',
  'size_reason',
  'reason_think',
  'think_dog',
  'dog_jump',
  'jump_said',
  'said_way',
  'way_know',
  'know_sure',
  'sure_dog',
  'dog_jump',
  'jump_babi',
  'babi_could',
  'could_hurt',
  'hurt_dog',
  'dog_never',
  'never_much',
  'much_growl',
  'growl_said',
  'said_even',
  'even_dog',
  'dog_jump',
  'jump_anxieti',
  'anxieti_bad',
  'bad_health',
  'health_said',
  'said_need',
  'need_dog',
  'dog_elsewher',
  'elsewher_safeti',
  'safeti_babi',
  'babi_told',
  'told_way',
  'way_son',
  'son_got',
  'got_dog',
  'dog_right',
  'right_lost',
  'lost_mom',
  'mom_imprint',
  'imprint_hard',
  'hard_sometim',
  'sometim_think',
  'think_love',
  'love_dog',
  'dog_im',
  'im_take',
  'take_dog',
  'dog_dog',
  'dog_anyth',
  'anyth_wife',
  'wife_said',
  'said_priorit',
  'priorit_dog',
  'dog_pregnanc',
  'pregnanc_dog',
  'dog_threat',
  'threat_pregnanc',
  'pregnanc_unreason',
  'unreason_request',
  'request_would',
  'would_pregnant',
  'pregnant_cant',
  'cant_break',
  'break_son',
  'son_heart',
  'heart_fear',
  'fear_make',
  'make_sens',
  'sens_asshol',
  'son_eight_got',
  'eight_got_dog',
  'got_dog_half',
  'dog_half_great',
  'half_great_dane',
  'great_dane_half',
  'dane_half_dog',
  'half_dog_friend',
  'dog_friend_dog',
  'friend_dog_met',
  'dog_met_unauthor',
  'met_unauthor_absenc',
  'unauthor_absenc_son',
  'absenc_son_love',
  'son_love_dog',
  'love_dog_care',
  'dog_care_except',
  'care_except_vet',
  'except_vet_stuff',
  'vet_stuff_respons',
  'stuff_respons_dog',
  'respons_dog_owner',
  'dog_owner_dog',
  'owner_dog_pretti',
  'dog_pretti_much',
  'pretti_much_best',
  'much_best_friend',
  'best_friend_wife',
  'friend_wife_week',
  'wife_week_pregnant',
  'week_pregnant_ever',
  'pregnant_ever_sinc',
  'ever_sinc_confirm',
  'sinc_confirm_pregnanc',
  'confirm_pregnanc_act',
  'pregnanc_act_weird',
  'act_weird_around',
  'weird_around_dog',
  'around_dog_avoid',
  'dog_avoid_put',
  'avoid_put_hand',
  'put_hand_stomach',
  'hand_stomach_around',
  'stomach_around_jolt',
  'around_jolt_whenev',
  'jolt_whenev_make',
  'whenev_make_nois',
  'make_nois_today',
  'nois_today_told',
  'today_told_want',
  'told_want_re-hom',
  'want_re-hom_dog',
  're-hom_dog_ask',
  'dog_ask_talk',
  'ask_talk_said',
  'talk_said_anxieti',
  'said_anxieti_jump',
  'anxieti_jump_complet',
  'jump_complet_unreason',
  'complet_unreason_jump',
  'unreason_jump_peopl',
  'jump_peopl_train',
  'peopl_train_jump',
  'train_jump_peopl',
  'jump_peopl_run',
  'peopl_run_peopl',
  'run_peopl_young',
  'peopl_young_half',
  'young_half_great',
  'half_great_dane',
  'great_dane_felt',
  'dane_felt_import',
  'felt_import_dog',
  'import_dog_especi',
  'dog_especi_one',
  'especi_one_could',
  'one_could_possibl',
  'could_possibl_grow',
  'possibl_grow_larg',
  'grow_larg_size',
  'larg_size_reason',
  'size_reason_think',
  'reason_think_dog',
  'think_dog_jump',
  'dog_jump_said',
  'jump_said_way',
  'said_way_know',
  'way_know_sure',
  'know_sure_dog',
  'sure_dog_jump',
  'dog_jump_babi',
  'jump_babi_could',
  'babi_could_hurt',
  'could_hurt_dog',
  'hurt_dog_never',
  'dog_never_much',
  'never_much_growl',
  'much_growl_said',
  'growl_said_even',
  'said_even_dog',
  'even_dog_jump',
  'dog_jump_anxieti',
  'jump_anxieti_bad',
  'anxieti_bad_health',
  'bad_health_said',
  'health_said_need',
  'said_need_dog',
  'need_dog_elsewher',
  'dog_elsewher_safeti',
  'elsewher_safeti_babi',
  'safeti_babi_told',
  'babi_told_way',
  'told_way_son',
  'way_son_got',
  'son_got_dog',
  'got_dog_right',
  'dog_right_lost',
  'right_lost_mom',
  'lost_mom_imprint',
  'mom_imprint_hard',
  'imprint_hard_sometim',
  'hard_sometim_think',
  'sometim_think_love',
  'think_love_dog',
  'love_dog_im',
  'dog_im_take',
  'im_take_dog',
  'take_dog_dog',
  'dog_dog_anyth',
  'dog_anyth_wife',
  'anyth_wife_said',
  'wife_said_priorit',
  'said_priorit_dog',
  'priorit_dog_pregnanc',
  'dog_pregnanc_dog',
  'pregnanc_dog_threat',
  'dog_threat_pregnanc',
  'threat_pregnanc_unreason',
  'pregnanc_unreason_request',
  'unreason_request_would',
  'request_would_pregnant',
  'would_pregnant_cant',
  'pregnant_cant_break',
  'cant_break_son',
  'break_son_heart',
  'son_heart_fear',
  'heart_fear_make',
  'fear_make_sens',
  'make_sens_asshol'],
 ['marri',
  'husband',
  'year',
  'ago',
  'im',
  'current',
  'pregnant',
  'first',
  'babi',
  'togeth',
  'found',
  'girl',
  'inlaw',
  'want',
  'invit',
  'us',
  'dinner',
  'gender',
  'reveal',
  'announc',
  'celebr',
  'got',
  'saw',
  'mani',
  'rel',
  'come',
  'congrat',
  'us',
  'celebr',
  'bigger',
  'expect',
  'made',
  'nervou',
  'im',
  'fan',
  'around',
  'mani',
  'peopl',
  'sat',
  'dinner',
  'tabl',
  'bare',
  'ate',
  'feel',
  'much',
  'anxieti',
  'sort',
  'upset',
  'husband',
  'warn',
  'mani',
  'peopl',
  'come',
  'tri',
  'stay',
  'calm',
  'collect',
  'anyway',
  'announc',
  'middl',
  'celebr',
  'husband',
  'want',
  'give',
  'toast',
  'open',
  'bottl',
  'pour',
  'drink',
  'wish',
  'daughter',
  'healthi',
  'happi',
  'look',
  'noth',
  'like',
  'everyon',
  'tabl',
  'laugh',
  'sat',
  'stare',
  'shock',
  'kept',
  'laugh',
  'felt',
  'much',
  'rage',
  'anxieti',
  'got',
  'hand',
  'ngl',
  'got',
  'took',
  'purs',
  'made',
  'way',
  'mom',
  'follow',
  'ask',
  'okay',
  'told',
  'want',
  'tk',
  'go',
  'home',
  'came',
  'door',
  'ask',
  'wrong',
  'start',
  'argu',
  'said',
  'joke',
  'toast',
  'reaction',
  'top',
  'thing',
  'eversinc',
  'got',
  'pregnant',
  'kept',
  'hint',
  'want',
  'daughter',
  'look',
  'like',
  'even',
  'got',
  'morn',
  'first',
  'thing',
  'told',
  'much',
  'wish',
  'daughter',
  'look',
  'noth',
  'like',
  'hurt',
  'im',
  'alreadi',
  'deal',
  'low',
  'self',
  'esteem',
  'anxieti',
  'want',
  'go',
  'home',
  'said',
  'babi',
  'learn',
  'take',
  'fuck',
  'joke',
  'said',
  'made',
  'everyon',
  'laugh',
  'buy',
  'defens',
  'said',
  'warrant',
  'walk',
  'dinner',
  'disrespect',
  'reativ',
  'came',
  'celebr',
  'share',
  'joy',
  'went',
  'home',
  'call',
  'mani',
  'time',
  'tell',
  'get',
  'insecur',
  'check',
  'pass',
  'daughter',
  'urg',
  'get',
  'therapi',
  'stop',
  'act',
  'dramat',
  'like',
  'infront',
  'famili',
  'think',
  'leav',
  'dinner',
  'thf',
  'best',
  'solut',
  'got',
  'overwhelm',
  'marri_husband',
  'husband_year',
  'year_ago',
  'ago_im',
  'im_current',
  'current_pregnant',
  'pregnant_first',
  'first_babi',
  'babi_togeth',
  'togeth_found',
  'found_girl',
  'girl_inlaw',
  'inlaw_want',
  'want_invit',
  'invit_us',
  'us_dinner',
  'dinner_gender',
  'gender_reveal',
  'reveal_announc',
  'announc_celebr',
  'celebr_got',
  'got_saw',
  'saw_mani',
  'mani_rel',
  'rel_come',
  'come_congrat',
  'congrat_us',
  'us_celebr',
  'celebr_bigger',
  'bigger_expect',
  'expect_made',
  'made_nervou',
  'nervou_im',
  'im_fan',
  'fan_around',
  'around_mani',
  'mani_peopl',
  'peopl_sat',
  'sat_dinner',
  'dinner_tabl',
  'tabl_bare',
  'bare_ate',
  'ate_feel',
  'feel_much',
  'much_anxieti',
  'anxieti_sort',
  'sort_upset',
  'upset_husband',
  'husband_warn',
  'warn_mani',
  'mani_peopl',
  'peopl_come',
  'come_tri',
  'tri_stay',
  'stay_calm',
  'calm_collect',
  'collect_anyway',
  'anyway_announc',
  'announc_middl',
  'middl_celebr',
  'celebr_husband',
  'husband_want',
  'want_give',
  'give_toast',
  'toast_open',
  'open_bottl',
  'bottl_pour',
  'pour_drink',
  'drink_wish',
  'wish_daughter',
  'daughter_healthi',
  'healthi_happi',
  'happi_look',
  'look_noth',
  'noth_like',
  'like_everyon',
  'everyon_tabl',
  'tabl_laugh',
  'laugh_sat',
  'sat_stare',
  'stare_shock',
  'shock_kept',
  'kept_laugh',
  'laugh_felt',
  'felt_much',
  'much_rage',
  'rage_anxieti',
  'anxieti_got',
  'got_hand',
  'hand_ngl',
  'ngl_got',
  'got_took',
  'took_purs',
  'purs_made',
  'made_way',
  'way_mom',
  'mom_follow',
  'follow_ask',
  'ask_okay',
  'okay_told',
  'told_want',
  'want_tk',
  'tk_go',
  'go_home',
  'home_came',
  'came_door',
  'door_ask',
  'ask_wrong',
  'wrong_start',
  'start_argu',
  'argu_said',
  'said_joke',
  'joke_toast',
  'toast_reaction',
  'reaction_top',
  'top_thing',
  'thing_eversinc',
  'eversinc_got',
  'got_pregnant',
  'pregnant_kept',
  'kept_hint',
  'hint_want',
  'want_daughter',
  'daughter_look',
  'look_like',
  'like_even',
  'even_got',
  'got_morn',
  'morn_first',
  'first_thing',
  'thing_told',
  'told_much',
  'much_wish',
  'wish_daughter',
  'daughter_look',
  'look_noth',
  'noth_like',
  'like_hurt',
  'hurt_im',
  'im_alreadi',
  'alreadi_deal',
  'deal_low',
  'low_self',
  'self_esteem',
  'esteem_anxieti',
  'anxieti_want',
  'want_go',
  'go_home',
  'home_said',
  'said_babi',
  'babi_learn',
  'learn_take',
  'take_fuck',
  'fuck_joke',
  'joke_said',
  'said_made',
  'made_everyon',
  'everyon_laugh',
  'laugh_buy',
  'buy_defens',
  'defens_said',
  'said_warrant',
  'warrant_walk',
  'walk_dinner',
  'dinner_disrespect',
  'disrespect_reativ',
  'reativ_came',
  'came_celebr',
  'celebr_share',
  'share_joy',
  'joy_went',
  'went_home',
  'home_call',
  'call_mani',
  'mani_time',
  'time_tell',
  'tell_get',
  'get_insecur',
  'insecur_check',
  'check_pass',
  'pass_daughter',
  'daughter_urg',
  'urg_get',
  'get_therapi',
  'therapi_stop',
  'stop_act',
  'act_dramat',
  'dramat_like',
  'like_infront',
  'infront_famili',
  'famili_think',
  'think_leav',
  'leav_dinner',
  'dinner_thf',
  'thf_best',
  'best_solut',
  'solut_got',
  'got_overwhelm',
  'marri_husband_year',
  'husband_year_ago',
  'year_ago_im',
  'ago_im_current',
  'im_current_pregnant',
  'current_pregnant_first',
  'pregnant_first_babi',
  'first_babi_togeth',
  'babi_togeth_found',
  'togeth_found_girl',
  'found_girl_inlaw',
  'girl_inlaw_want',
  'inlaw_want_invit',
  'want_invit_us',
  'invit_us_dinner',
  'us_dinner_gender',
  'dinner_gender_reveal',
  'gender_reveal_announc',
  'reveal_announc_celebr',
  'announc_celebr_got',
  'celebr_got_saw',
  'got_saw_mani',
  'saw_mani_rel',
  'mani_rel_come',
  'rel_come_congrat',
  'come_congrat_us',
  'congrat_us_celebr',
  'us_celebr_bigger',
  'celebr_bigger_expect',
  'bigger_expect_made',
  'expect_made_nervou',
  'made_nervou_im',
  'nervou_im_fan',
  'im_fan_around',
  'fan_around_mani',
  'around_mani_peopl',
  'mani_peopl_sat',
  'peopl_sat_dinner',
  'sat_dinner_tabl',
  'dinner_tabl_bare',
  'tabl_bare_ate',
  'bare_ate_feel',
  'ate_feel_much',
  'feel_much_anxieti',
  'much_anxieti_sort',
  'anxieti_sort_upset',
  'sort_upset_husband',
  'upset_husband_warn',
  'husband_warn_mani',
  'warn_mani_peopl',
  'mani_peopl_come',
  'peopl_come_tri',
  'come_tri_stay',
  'tri_stay_calm',
  'stay_calm_collect',
  'calm_collect_anyway',
  'collect_anyway_announc',
  'anyway_announc_middl',
  'announc_middl_celebr',
  'middl_celebr_husband',
  'celebr_husband_want',
  'husband_want_give',
  'want_give_toast',
  'give_toast_open',
  'toast_open_bottl',
  'open_bottl_pour',
  'bottl_pour_drink',
  'pour_drink_wish',
  'drink_wish_daughter',
  'wish_daughter_healthi',
  'daughter_healthi_happi',
  'healthi_happi_look',
  'happi_look_noth',
  'look_noth_like',
  'noth_like_everyon',
  'like_everyon_tabl',
  'everyon_tabl_laugh',
  'tabl_laugh_sat',
  'laugh_sat_stare',
  'sat_stare_shock',
  'stare_shock_kept',
  'shock_kept_laugh',
  'kept_laugh_felt',
  'laugh_felt_much',
  'felt_much_rage',
  'much_rage_anxieti',
  'rage_anxieti_got',
  'anxieti_got_hand',
  'got_hand_ngl',
  'hand_ngl_got',
  'ngl_got_took',
  'got_took_purs',
  'took_purs_made',
  'purs_made_way',
  'made_way_mom',
  'way_mom_follow',
  'mom_follow_ask',
  'follow_ask_okay',
  'ask_okay_told',
  'okay_told_want',
  'told_want_tk',
  'want_tk_go',
  'tk_go_home',
  'go_home_came',
  'home_came_door',
  'came_door_ask',
  'door_ask_wrong',
  'ask_wrong_start',
  'wrong_start_argu',
  'start_argu_said',
  'argu_said_joke',
  'said_joke_toast',
  'joke_toast_reaction',
  'toast_reaction_top',
  'reaction_top_thing',
  'top_thing_eversinc',
  'thing_eversinc_got',
  'eversinc_got_pregnant',
  'got_pregnant_kept',
  'pregnant_kept_hint',
  'kept_hint_want',
  'hint_want_daughter',
  'want_daughter_look',
  'daughter_look_like',
  'look_like_even',
  'like_even_got',
  'even_got_morn',
  'got_morn_first',
  'morn_first_thing',
  'first_thing_told',
  'thing_told_much',
  'told_much_wish',
  'much_wish_daughter',
  'wish_daughter_look',
  'daughter_look_noth',
  'look_noth_like',
  'noth_like_hurt',
  'like_hurt_im',
  'hurt_im_alreadi',
  'im_alreadi_deal',
  'alreadi_deal_low',
  'deal_low_self',
  'low_self_esteem',
  'self_esteem_anxieti',
  'esteem_anxieti_want',
  'anxieti_want_go',
  'want_go_home',
  'go_home_said',
  'home_said_babi',
  'said_babi_learn',
  'babi_learn_take',
  'learn_take_fuck',
  'take_fuck_joke',
  'fuck_joke_said',
  'joke_said_made',
  'said_made_everyon',
  'made_everyon_laugh',
  'everyon_laugh_buy',
  'laugh_buy_defens',
  'buy_defens_said',
  'defens_said_warrant',
  'said_warrant_walk',
  'warrant_walk_dinner',
  'walk_dinner_disrespect',
  'dinner_disrespect_reativ',
  'disrespect_reativ_came',
  'reativ_came_celebr',
  'came_celebr_share',
  'celebr_share_joy',
  'share_joy_went',
  'joy_went_home',
  'went_home_call',
  'home_call_mani',
  'call_mani_time',
  'mani_time_tell',
  'time_tell_get',
  'tell_get_insecur',
  'get_insecur_check',
  'insecur_check_pass',
  'check_pass_daughter',
  'pass_daughter_urg',
  'daughter_urg_get',
  'urg_get_therapi',
  'get_therapi_stop',
  'therapi_stop_act',
  'stop_act_dramat',
  'act_dramat_like',
  'dramat_like_infront',
  'like_infront_famili',
  'infront_famili_think',
  'famili_think_leav',
  'think_leav_dinner',
  'leav_dinner_thf',
  'dinner_thf_best',
  'thf_best_solut',
  'best_solut_got',
  'solut_got_overwhelm'],
 ['uncl',
  'new',
  'girlfriend',
  'came',
  'famili',
  'dinner',
  'night',
  'first',
  'time',
  'anyon',
  'famili',
  'met',
  'super',
  'essenti',
  'oil',
  'eyerol',
  'induc',
  'say',
  'anyth',
  'show',
  'found',
  'annoy',
  'first',
  'bit',
  'tongu',
  'went',
  'put',
  'water',
  'ingest',
  'essenti',
  'oil',
  'rub',
  'pressur',
  'point',
  'tri',
  'convinc',
  'mom',
  'buy',
  'brought',
  'super',
  'good',
  'yeast',
  'infect',
  'look',
  'super',
  'horrifi',
  'ask',
  'mean',
  'put',
  '*',
  '*',
  'said',
  'ye',
  'insert',
  'drop',
  'clear',
  'right',
  'away',
  'told',
  'danger',
  'could',
  'caus',
  'chemic',
  'burn',
  'well',
  'throw',
  'vagin',
  'ph',
  'potenti',
  'caus',
  'infect',
  'said',
  'oh',
  'worri',
  'theyr',
  'natur',
  'repli',
  'poison',
  'ivi',
  'suggest',
  'shove',
  'vagina',
  'look',
  'kind',
  'shock',
  'sister',
  'laugh',
  'aunt',
  'said',
  'well',
  'point',
  'famili',
  'member',
  'said',
  'rude',
  'crass',
  'think',
  'one',
  'start',
  'talk',
  'yeast',
  'infect',
  'famili',
  'dinner',
  'certainli',
  'say',
  'word',
  'vagina',
  'less',
  'crass',
  'uncl_new',
  'new_girlfriend',
  'girlfriend_came',
  'came_famili',
  'famili_dinner',
  'dinner_night',
  'night_first',
  'first_time',
  'time_anyon',
  'anyon_famili',
  'famili_met',
  'met_super',
  'super_essenti',
  'essenti_oil',
  'oil_eyerol',
  'eyerol_induc',
  'induc_say',
  'say_anyth',
  'anyth_show',
  'show_found',
  'found_annoy',
  'annoy_first',
  'first_bit',
  'bit_tongu',
  'tongu_went',
  'went_put',
  'put_water',
  'water_ingest',
  'ingest_essenti',
  'essenti_oil',
  'oil_rub',
  'rub_pressur',
  'pressur_point',
  'point_tri',
  'tri_convinc',
  'convinc_mom',
  'mom_buy',
  'buy_brought',
  'brought_super',
  'super_good',
  'good_yeast',
  'yeast_infect',
  'infect_look',
  'look_super',
  'super_horrifi',
  'horrifi_ask',
  'ask_mean',
  'mean_put',
  'put_*',
  '*_*',
  '*_said',
  'said_ye',
  'ye_insert',
  'insert_drop',
  'drop_clear',
  'clear_right',
  'right_away',
  'away_told',
  'told_danger',
  'danger_could',
  'could_caus',
  'caus_chemic',
  'chemic_burn',
  'burn_well',
  'well_throw',
  'throw_vagin',
  'vagin_ph',
  'ph_potenti',
  'potenti_caus',
  'caus_infect',
  'infect_said',
  'said_oh',
  'oh_worri',
  'worri_theyr',
  'theyr_natur',
  'natur_repli',
  'repli_poison',
  'poison_ivi',
  'ivi_suggest',
  'suggest_shove',
  'shove_vagina',
  'vagina_look',
  'look_kind',
  'kind_shock',
  'shock_sister',
  'sister_laugh',
  'laugh_aunt',
  'aunt_said',
  'said_well',
  'well_point',
  'point_famili',
  'famili_member',
  'member_said',
  'said_rude',
  'rude_crass',
  'crass_think',
  'think_one',
  'one_start',
  'start_talk',
  'talk_yeast',
  'yeast_infect',
  'infect_famili',
  'famili_dinner',
  'dinner_certainli',
  'certainli_say',
  'say_word',
  'word_vagina',
  'vagina_less',
  'less_crass',
  'uncl_new_girlfriend',
  'new_girlfriend_came',
  'girlfriend_came_famili',
  'came_famili_dinner',
  'famili_dinner_night',
  'dinner_night_first',
  'night_first_time',
  'first_time_anyon',
  'time_anyon_famili',
  'anyon_famili_met',
  'famili_met_super',
  'met_super_essenti',
  'super_essenti_oil',
  'essenti_oil_eyerol',
  'oil_eyerol_induc',
  'eyerol_induc_say',
  'induc_say_anyth',
  'say_anyth_show',
  'anyth_show_found',
  'show_found_annoy',
  'found_annoy_first',
  'annoy_first_bit',
  'first_bit_tongu',
  'bit_tongu_went',
  'tongu_went_put',
  'went_put_water',
  'put_water_ingest',
  'water_ingest_essenti',
  'ingest_essenti_oil',
  'essenti_oil_rub',
  'oil_rub_pressur',
  'rub_pressur_point',
  'pressur_point_tri',
  'point_tri_convinc',
  'tri_convinc_mom',
  'convinc_mom_buy',
  'mom_buy_brought',
  'buy_brought_super',
  'brought_super_good',
  'super_good_yeast',
  'good_yeast_infect',
  'yeast_infect_look',
  'infect_look_super',
  'look_super_horrifi',
  'super_horrifi_ask',
  'horrifi_ask_mean',
  'ask_mean_put',
  'mean_put_*',
  'put_*_*',
  '*_*_said',
  '*_said_ye',
  'said_ye_insert',
  'ye_insert_drop',
  'insert_drop_clear',
  'drop_clear_right',
  'clear_right_away',
  'right_away_told',
  'away_told_danger',
  'told_danger_could',
  'danger_could_caus',
  'could_caus_chemic',
  'caus_chemic_burn',
  'chemic_burn_well',
  'burn_well_throw',
  'well_throw_vagin',
  'throw_vagin_ph',
  'vagin_ph_potenti',
  'ph_potenti_caus',
  'potenti_caus_infect',
  'caus_infect_said',
  'infect_said_oh',
  'said_oh_worri',
  'oh_worri_theyr',
  'worri_theyr_natur',
  'theyr_natur_repli',
  'natur_repli_poison',
  'repli_poison_ivi',
  'poison_ivi_suggest',
  'ivi_suggest_shove',
  'suggest_shove_vagina',
  'shove_vagina_look',
  'vagina_look_kind',
  'look_kind_shock',
  'kind_shock_sister',
  'shock_sister_laugh',
  'sister_laugh_aunt',
  'laugh_aunt_said',
  'aunt_said_well',
  'said_well_point',
  'well_point_famili',
  'point_famili_member',
  'famili_member_said',
  'member_said_rude',
  'said_rude_crass',
  'rude_crass_think',
  'crass_think_one',
  'think_one_start',
  'one_start_talk',
  'start_talk_yeast',
  'talk_yeast_infect',
  'yeast_infect_famili',
  'infect_famili_dinner',
  'famili_dinner_certainli',
  'dinner_certainli_say',
  'certainli_say_word',
  'say_word_vagina',
  'word_vagina_less',
  'vagina_less_crass'],
 ['throwaway',
  'guym',
  'gone',
  'date',
  'past',
  'coupl',
  'month',
  'nice',
  'far',
  'weve',
  'progress',
  'go',
  'public',
  'date',
  'week',
  'ago',
  'final',
  'decid',
  'nice',
  'date',
  'place',
  'sinc',
  'go',
  'place',
  'let',
  'know',
  'period',
  'sure',
  'expect',
  'boundari',
  'yet',
  'agre',
  'nice',
  'takeout',
  'dinner',
  'watch',
  'movi',
  'come',
  'eat',
  'sit',
  'couch',
  'pick',
  'movi',
  'say',
  'suck',
  'period',
  'said',
  'thought',
  'strang',
  'women',
  'give',
  'birth',
  'vagina',
  'period',
  'butt',
  'complet',
  'unpromot',
  'statement',
  'im',
  'still',
  'sure',
  'got',
  'topic',
  'tbh',
  'ask',
  'meant',
  'said',
  'exactli',
  'said',
  'kind',
  'smile',
  'assum',
  'much',
  'joke',
  'said',
  'oh',
  'yeah',
  'weird',
  'think',
  'go',
  'start',
  'laugh',
  'soon',
  'end',
  'joke',
  'instead',
  'start',
  'talk',
  'first',
  'girlfriend',
  'hed',
  'high',
  'school',
  'use',
  'complain',
  'bad',
  'period',
  'poop',
  'time',
  'point',
  'ask',
  'seriou',
  'look',
  'littl',
  'confus',
  'say',
  'ask',
  'explain',
  'came',
  'conclus',
  'explain',
  'first',
  'experi',
  'around',
  'period',
  'hs',
  'gf',
  'never',
  'receiv',
  'seen',
  'much',
  'inform',
  'understood',
  'someth',
  'happen',
  'insid',
  'bodi',
  'blood',
  'came',
  'somewher',
  'assum',
  'came',
  'vagina',
  'heard',
  'complain',
  'realiz',
  'actual',
  'came',
  'butt',
  'unexpect',
  'come',
  'year',
  'old',
  'man',
  'somehow',
  'manag',
  'keep',
  'composur',
  'told',
  'period',
  'fact',
  'come',
  'vagina',
  'butt',
  'look',
  'confus',
  'littl',
  'frustrat',
  'start',
  'insist',
  'wrong',
  'kept',
  'say',
  'sure',
  'confus',
  'came',
  'bodi',
  'explain',
  'anatomi',
  'bit',
  'work',
  'adam',
  'eventu',
  'conced',
  'women',
  'must',
  'period',
  'like',
  'henc',
  'ex-gf',
  'period',
  'form',
  'butt',
  'could',
  'understand',
  'matter',
  'mani',
  'time',
  'tri',
  'explain',
  'simpli',
  'come',
  'wrong',
  'conclus',
  'misinterpret',
  'gf',
  'word',
  'whole',
  'situat',
  'becam',
  'much',
  'start',
  'laugh',
  'doubl',
  'clutch',
  'stomach',
  'cri',
  'laugh',
  'whole',
  'debacl',
  'sat',
  'red-fac',
  'continu',
  'tri',
  'argu',
  'eventu',
  'said',
  'readi',
  'leav',
  'could',
  'watch',
  'movi',
  'felt',
  'bad',
  'laugh',
  'left',
  'could',
  'tell',
  'decid',
  'leav',
  'also',
  'text',
  'later',
  'night',
  'say',
  'done',
  'littl',
  'bit',
  'research',
  'longer',
  'interest',
  'pursu',
  'sort',
  'relationship',
  'stand',
  'someon',
  'laugh',
  'someon',
  'understand',
  'aita',
  'throwaway_guym',
  'guym_gone',
  'gone_date',
  'date_past',
  'past_coupl',
  'coupl_month',
  'month_nice',
  'nice_far',
  'far_weve',
  'weve_progress',
  'progress_go',
  'go_public',
  'public_date',
  'date_week',
  'week_ago',
  'ago_final',
  'final_decid',
  'decid_nice',
  'nice_date',
  'date_place',
  'place_sinc',
  'sinc_go',
  'go_place',
  'place_let',
  'let_know',
  'know_period',
  'period_sure',
  'sure_expect',
  'expect_boundari',
  'boundari_yet',
  'yet_agre',
  'agre_nice',
  'nice_takeout',
  'takeout_dinner',
  'dinner_watch',
  'watch_movi',
  'movi_come',
  'come_eat',
  'eat_sit',
  'sit_couch',
  'couch_pick',
  'pick_movi',
  'movi_say',
  'say_suck',
  'suck_period',
  'period_said',
  'said_thought',
  'thought_strang',
  'strang_women',
  'women_give',
  'give_birth',
  'birth_vagina',
  'vagina_period',
  'period_butt',
  'butt_complet',
  'complet_unpromot',
  'unpromot_statement',
  'statement_im',
  'im_still',
  'still_sure',
  'sure_got',
  'got_topic',
  'topic_tbh',
  'tbh_ask',
  'ask_meant',
  'meant_said',
  'said_exactli',
  'exactli_said',
  'said_kind',
  'kind_smile',
  'smile_assum',
  'assum_much',
  'much_joke',
  'joke_said',
  'said_oh',
  'oh_yeah',
  'yeah_weird',
  'weird_think',
  'think_go',
  'go_start',
  'start_laugh',
  'laugh_soon',
  'soon_end',
  'end_joke',
  'joke_instead',
  'instead_start',
  'start_talk',
  'talk_first',
  'first_girlfriend',
  'girlfriend_hed',
  'hed_high',
  'high_school',
  'school_use',
  'use_complain',
  'complain_bad',
  'bad_period',
  'period_poop',
  'poop_time',
  'time_point',
  'point_ask',
  'ask_seriou',
  'seriou_look',
  'look_littl',
  'littl_confus',
  'confus_say',
  'say_ask',
  'ask_explain',
  'explain_came',
  'came_conclus',
  'conclus_explain',
  'explain_first',
  'first_experi',
  'experi_around',
  'around_period',
  'period_hs',
  'hs_gf',
  'gf_never',
  'never_receiv',
  'receiv_seen',
  'seen_much',
  'much_inform',
  'inform_understood',
  'understood_someth',
  'someth_happen',
  'happen_insid',
  'insid_bodi',
  'bodi_blood',
  'blood_came',
  'came_somewher',
  'somewher_assum',
  'assum_came',
  'came_vagina',
  'vagina_heard',
  'heard_complain',
  'complain_realiz',
  'realiz_actual',
  'actual_came',
  'came_butt',
  'butt_unexpect',
  'unexpect_come',
  'come_year',
  'year_old',
  'old_man',
  'man_somehow',
  'somehow_manag',
  'manag_keep',
  'keep_composur',
  'composur_told',
  'told_period',
  'period_fact',
  'fact_come',
  'come_vagina',
  'vagina_butt',
  'butt_look',
  'look_confus',
  'confus_littl',
  'littl_frustrat',
  'frustrat_start',
  'start_insist',
  'insist_wrong',
  'wrong_kept',
  'kept_say',
  'say_sure',
  'sure_confus',
  'confus_came',
  'came_bodi',
  'bodi_explain',
  'explain_anatomi',
  'anatomi_bit',
  'bit_work',
  'work_adam',
  'adam_eventu',
  'eventu_conced',
  'conced_women',
  'women_must',
  'must_period',
  'period_like',
  'like_henc',
  'henc_ex-gf',
  'ex-gf_period',
  'period_form',
  'form_butt',
  'butt_could',
  'could_understand',
  'understand_matter',
  'matter_mani',
  'mani_time',
  'time_tri',
  'tri_explain',
  'explain_simpli',
  'simpli_come',
  'come_wrong',
  'wrong_conclus',
  'conclus_misinterpret',
  'misinterpret_gf',
  'gf_word',
  'word_whole',
  'whole_situat',
  'situat_becam',
  'becam_much',
  'much_start',
  'start_laugh',
  'laugh_doubl',
  'doubl_clutch',
  'clutch_stomach',
  'stomach_cri',
  'cri_laugh',
  'laugh_whole',
  'whole_debacl',
  'debacl_sat',
  'sat_red-fac',
  'red-fac_continu',
  'continu_tri',
  'tri_argu',
  'argu_eventu',
  'eventu_said',
  'said_readi',
  'readi_leav',
  'leav_could',
  'could_watch',
  'watch_movi',
  'movi_felt',
  'felt_bad',
  'bad_laugh',
  'laugh_left',
  'left_could',
  'could_tell',
  'tell_decid',
  'decid_leav',
  'leav_also',
  'also_text',
  'text_later',
  'later_night',
  'night_say',
  'say_done',
  'done_littl',
  'littl_bit',
  'bit_research',
  'research_longer',
  'longer_interest',
  'interest_pursu',
  'pursu_sort',
  'sort_relationship',
  'relationship_stand',
  'stand_someon',
  'someon_laugh',
  'laugh_someon',
  'someon_understand',
  'understand_aita',
  'throwaway_guym_gone',
  'guym_gone_date',
  'gone_date_past',
  'date_past_coupl',
  'past_coupl_month',
  'coupl_month_nice',
  'month_nice_far',
  'nice_far_weve',
  'far_weve_progress',
  'weve_progress_go',
  'progress_go_public',
  'go_public_date',
  'public_date_week',
  'date_week_ago',
  'week_ago_final',
  'ago_final_decid',
  'final_decid_nice',
  'decid_nice_date',
  'nice_date_place',
  'date_place_sinc',
  'place_sinc_go',
  'sinc_go_place',
  'go_place_let',
  'place_let_know',
  'let_know_period',
  'know_period_sure',
  'period_sure_expect',
  'sure_expect_boundari',
  'expect_boundari_yet',
  'boundari_yet_agre',
  'yet_agre_nice',
  'agre_nice_takeout',
  'nice_takeout_dinner',
  'takeout_dinner_watch',
  'dinner_watch_movi',
  'watch_movi_come',
  'movi_come_eat',
  'come_eat_sit',
  'eat_sit_couch',
  'sit_couch_pick',
  'couch_pick_movi',
  'pick_movi_say',
  'movi_say_suck',
  'say_suck_period',
  'suck_period_said',
  'period_said_thought',
  'said_thought_strang',
  'thought_strang_women',
  'strang_women_give',
  'women_give_birth',
  'give_birth_vagina',
  'birth_vagina_period',
  'vagina_period_butt',
  'period_butt_complet',
  'butt_complet_unpromot',
  'complet_unpromot_statement',
  'unpromot_statement_im',
  'statement_im_still',
  'im_still_sure',
  'still_sure_got',
  'sure_got_topic',
  'got_topic_tbh',
  'topic_tbh_ask',
  'tbh_ask_meant',
  'ask_meant_said',
  'meant_said_exactli',
  'said_exactli_said',
  'exactli_said_kind',
  'said_kind_smile',
  'kind_smile_assum',
  'smile_assum_much',
  'assum_much_joke',
  'much_joke_said',
  'joke_said_oh',
  'said_oh_yeah',
  'oh_yeah_weird',
  'yeah_weird_think',
  'weird_think_go',
  'think_go_start',
  'go_start_laugh',
  'start_laugh_soon',
  'laugh_soon_end',
  'soon_end_joke',
  'end_joke_instead',
  'joke_instead_start',
  'instead_start_talk',
  'start_talk_first',
  'talk_first_girlfriend',
  'first_girlfriend_hed',
  'girlfriend_hed_high',
  'hed_high_school',
  'high_school_use',
  'school_use_complain',
  'use_complain_bad',
  'complain_bad_period',
  'bad_period_poop',
  'period_poop_time',
  'poop_time_point',
  'time_point_ask',
  'point_ask_seriou',
  'ask_seriou_look',
  'seriou_look_littl',
  'look_littl_confus',
  'littl_confus_say',
  'confus_say_ask',
  'say_ask_explain',
  'ask_explain_came',
  'explain_came_conclus',
  'came_conclus_explain',
  'conclus_explain_first',
  'explain_first_experi',
  'first_experi_around',
  'experi_around_period',
  'around_period_hs',
  'period_hs_gf',
  'hs_gf_never',
  'gf_never_receiv',
  'never_receiv_seen',
  'receiv_seen_much',
  'seen_much_inform',
  'much_inform_understood',
  'inform_understood_someth',
  'understood_someth_happen',
  'someth_happen_insid',
  'happen_insid_bodi',
  'insid_bodi_blood',
  'bodi_blood_came',
  'blood_came_somewher',
  'came_somewher_assum',
  'somewher_assum_came',
  'assum_came_vagina',
  'came_vagina_heard',
  'vagina_heard_complain',
  'heard_complain_realiz',
  'complain_realiz_actual',
  'realiz_actual_came',
  'actual_came_butt',
  'came_butt_unexpect',
  'butt_unexpect_come',
  'unexpect_come_year',
  'come_year_old',
  'year_old_man',
  'old_man_somehow',
  'man_somehow_manag',
  'somehow_manag_keep',
  'manag_keep_composur',
  'keep_composur_told',
  'composur_told_period',
  'told_period_fact',
  'period_fact_come',
  'fact_come_vagina',
  'come_vagina_butt',
  'vagina_butt_look',
  'butt_look_confus',
  'look_confus_littl',
  'confus_littl_frustrat',
  'littl_frustrat_start',
  'frustrat_start_insist',
  'start_insist_wrong',
  'insist_wrong_kept',
  'wrong_kept_say',
  'kept_say_sure',
  'say_sure_confus',
  'sure_confus_came',
  'confus_came_bodi',
  'came_bodi_explain',
  'bodi_explain_anatomi',
  'explain_anatomi_bit',
  'anatomi_bit_work',
  'bit_work_adam',
  'work_adam_eventu',
  'adam_eventu_conced',
  'eventu_conced_women',
  'conced_women_must',
  'women_must_period',
  'must_period_like',
  'period_like_henc',
  'like_henc_ex-gf',
  'henc_ex-gf_period',
  'ex-gf_period_form',
  'period_form_butt',
  'form_butt_could',
  'butt_could_understand',
  'could_understand_matter',
  'understand_matter_mani',
  'matter_mani_time',
  'mani_time_tri',
  'time_tri_explain',
  'tri_explain_simpli',
  'explain_simpli_come',
  'simpli_come_wrong',
  'come_wrong_conclus',
  'wrong_conclus_misinterpret',
  'conclus_misinterpret_gf',
  'misinterpret_gf_word',
  'gf_word_whole',
  'word_whole_situat',
  'whole_situat_becam',
  'situat_becam_much',
  'becam_much_start',
  'much_start_laugh',
  'start_laugh_doubl',
  'laugh_doubl_clutch',
  'doubl_clutch_stomach',
  'clutch_stomach_cri',
  'stomach_cri_laugh',
  'cri_laugh_whole',
  'laugh_whole_debacl',
  'whole_debacl_sat',
  'debacl_sat_red-fac',
  'sat_red-fac_continu',
  'red-fac_continu_tri',
  'continu_tri_argu',
  'tri_argu_eventu',
  'argu_eventu_said',
  'eventu_said_readi',
  'said_readi_leav',
  'readi_leav_could',
  'leav_could_watch',
  'could_watch_movi',
  'watch_movi_felt',
  'movi_felt_bad',
  'felt_bad_laugh',
  'bad_laugh_left',
  'laugh_left_could',
  'left_could_tell',
  'could_tell_decid',
  'tell_decid_leav',
  'decid_leav_also',
  'leav_also_text',
  'also_text_later',
  'text_later_night',
  'later_night_say',
  'night_say_done',
  'say_done_littl',
  'done_littl_bit',
  'littl_bit_research',
  'bit_research_longer',
  'research_longer_interest',
  'longer_interest_pursu',
  'interest_pursu_sort',
  'pursu_sort_relationship',
  'sort_relationship_stand',
  'relationship_stand_someon',
  'stand_someon_laugh',
  'someon_laugh_someon',
  'laugh_someon_understand',
  'someon_understand_aita'],
 ['sister',
  'brother',
  'law',
  'came',
  'kid',
  'dinner',
  'parent',
  'hous',
  'watch',
  'niec',
  'dinner',
  'get',
  'readi',
  'sat',
  'happen',
  'sit',
  'next',
  'brother',
  'law',
  'wear',
  'skirt',
  'accident',
  'lift',
  'knee',
  'brother',
  'law',
  'look',
  'leg',
  'made',
  'face',
  'loudli',
  'said',
  'oh',
  'shooo',
  'op',
  'gross',
  'shave',
  'hair',
  'suppos',
  'everyon',
  'stare',
  'told',
  'suppos',
  'grow',
  'explain',
  'like',
  'suppos',
  'point',
  'mustach',
  'say',
  'well',
  'guess',
  'thing',
  'said',
  'littl',
  'mustach',
  'huh',
  'look',
  'meey',
  'wide',
  'open',
  'awkward',
  'silenc',
  'take',
  'though',
  'laugh',
  'sister',
  'told',
  'knock',
  'brother',
  'law',
  'got',
  'chair',
  'went',
  'insid',
  'bathroom',
  'sister',
  'follow',
  'could',
  'hear',
  'breakdown',
  'ask',
  'someth',
  'wrong',
  'mustach',
  'brother',
  'kept',
  'giggl',
  'dinner',
  'got',
  'cut',
  'short',
  'caus',
  'brother',
  'law',
  'want',
  'leav',
  'later',
  'got',
  'scold',
  'sister',
  'say',
  'step',
  'line',
  'disrespect',
  'someon',
  'older',
  'herhusband',
  'demand',
  'apolog',
  'insult',
  'ruin',
  'dinner',
  'aita',
  'edit',
  '-',
  'guy',
  'sister',
  'said',
  'reason',
  'brother',
  'law',
  'got',
  'offend',
  'consid',
  'mustach',
  'symbol',
  'manhood',
  'insult',
  'manhood',
  'made',
  'backhand',
  'comment',
  'said',
  'psycholog',
  'harm',
  'apolog',
  'im',
  'sure',
  'fix',
  'anyth',
  'except',
  'feel',
  'mustachi',
  'mustachelol',
  'sister_brother',
  'brother_law',
  'law_came',
  'came_kid',
  'kid_dinner',
  'dinner_parent',
  'parent_hous',
  'hous_watch',
  'watch_niec',
  'niec_dinner',
  'dinner_get',
  'get_readi',
  'readi_sat',
  'sat_happen',
  'happen_sit',
  'sit_next',
  'next_brother',
  'brother_law',
  'law_wear',
  'wear_skirt',
  'skirt_accident',
  'accident_lift',
  'lift_knee',
  'knee_brother',
  'brother_law',
  'law_look',
  'look_leg',
  'leg_made',
  'made_face',
  'face_loudli',
  'loudli_said',
  'said_oh',
  'oh_shooo',
  'shooo_op',
  'op_gross',
  'gross_shave',
  'shave_hair',
  'hair_suppos',
  'suppos_everyon',
  'everyon_stare',
  'stare_told',
  'told_suppos',
  'suppos_grow',
  'grow_explain',
  'explain_like',
  'like_suppos',
  'suppos_point',
  'point_mustach',
  'mustach_say',
  'say_well',
  'well_guess',
  'guess_thing',
  'thing_said',
  'said_littl',
  'littl_mustach',
  'mustach_huh',
  'huh_look',
  'look_meey',
  'meey_wide',
  'wide_open',
  'open_awkward',
  'awkward_silenc',
  'silenc_take',
  'take_though',
  'though_laugh',
  'laugh_sister',
  'sister_told',
  'told_knock',
  'knock_brother',
  'brother_law',
  'law_got',
  'got_chair',
  'chair_went',
  'went_insid',
  'insid_bathroom',
  'bathroom_sister',
  'sister_follow',
  'follow_could',
  'could_hear',
  'hear_breakdown',
  'breakdown_ask',
  'ask_someth',
  'someth_wrong',
  'wrong_mustach',
  'mustach_brother',
  'brother_kept',
  'kept_giggl',
  'giggl_dinner',
  'dinner_got',
  'got_cut',
  'cut_short',
  'short_caus',
  'caus_brother',
  'brother_law',
  'law_want',
  'want_leav',
  'leav_later',
  'later_got',
  'got_scold',
  'scold_sister',
  'sister_say',
  'say_step',
  'step_line',
  'line_disrespect',
  'disrespect_someon',
  'someon_older',
  'older_herhusband',
  'herhusband_demand',
  'demand_apolog',
  'apolog_insult',
  'insult_ruin',
  'ruin_dinner',
  'dinner_aita',
  'aita_edit',
  'edit_-',
  '-_guy',
  'guy_sister',
  'sister_said',
  'said_reason',
  'reason_brother',
  'brother_law',
  'law_got',
  'got_offend',
  'offend_consid',
  'consid_mustach',
  'mustach_symbol',
  'symbol_manhood',
  'manhood_insult',
  'insult_manhood',
  'manhood_made',
  'made_backhand',
  'backhand_comment',
  'comment_said',
  'said_psycholog',
  'psycholog_harm',
  'harm_apolog',
  'apolog_im',
  'im_sure',
  'sure_fix',
  'fix_anyth',
  'anyth_except',
  'except_feel',
  'feel_mustachi',
  'mustachi_mustachelol',
  'sister_brother_law',
  'brother_law_came',
  'law_came_kid',
  'came_kid_dinner',
  'kid_dinner_parent',
  'dinner_parent_hous',
  'parent_hous_watch',
  'hous_watch_niec',
  'watch_niec_dinner',
  'niec_dinner_get',
  'dinner_get_readi',
  'get_readi_sat',
  'readi_sat_happen',
  'sat_happen_sit',
  'happen_sit_next',
  'sit_next_brother',
  'next_brother_law',
  'brother_law_wear',
  'law_wear_skirt',
  'wear_skirt_accident',
  'skirt_accident_lift',
  'accident_lift_knee',
  'lift_knee_brother',
  'knee_brother_law',
  'brother_law_look',
  'law_look_leg',
  'look_leg_made',
  'leg_made_face',
  'made_face_loudli',
  'face_loudli_said',
  'loudli_said_oh',
  'said_oh_shooo',
  'oh_shooo_op',
  'shooo_op_gross',
  'op_gross_shave',
  'gross_shave_hair',
  'shave_hair_suppos',
  'hair_suppos_everyon',
  'suppos_everyon_stare',
  'everyon_stare_told',
  'stare_told_suppos',
  'told_suppos_grow',
  'suppos_grow_explain',
  'grow_explain_like',
  'explain_like_suppos',
  'like_suppos_point',
  'suppos_point_mustach',
  'point_mustach_say',
  'mustach_say_well',
  'say_well_guess',
  'well_guess_thing',
  'guess_thing_said',
  'thing_said_littl',
  'said_littl_mustach',
  'littl_mustach_huh',
  'mustach_huh_look',
  'huh_look_meey',
  'look_meey_wide',
  'meey_wide_open',
  'wide_open_awkward',
  'open_awkward_silenc',
  'awkward_silenc_take',
  'silenc_take_though',
  'take_though_laugh',
  'though_laugh_sister',
  'laugh_sister_told',
  'sister_told_knock',
  'told_knock_brother',
  'knock_brother_law',
  'brother_law_got',
  'law_got_chair',
  'got_chair_went',
  'chair_went_insid',
  'went_insid_bathroom',
  'insid_bathroom_sister',
  'bathroom_sister_follow',
  'sister_follow_could',
  'follow_could_hear',
  'could_hear_breakdown',
  'hear_breakdown_ask',
  'breakdown_ask_someth',
  'ask_someth_wrong',
  'someth_wrong_mustach',
  'wrong_mustach_brother',
  'mustach_brother_kept',
  'brother_kept_giggl',
  'kept_giggl_dinner',
  'giggl_dinner_got',
  'dinner_got_cut',
  'got_cut_short',
  'cut_short_caus',
  'short_caus_brother',
  'caus_brother_law',
  'brother_law_want',
  'law_want_leav',
  'want_leav_later',
  'leav_later_got',
  'later_got_scold',
  'got_scold_sister',
  'scold_sister_say',
  'sister_say_step',
  'say_step_line',
  'step_line_disrespect',
  'line_disrespect_someon',
  'disrespect_someon_older',
  'someon_older_herhusband',
  'older_herhusband_demand',
  'herhusband_demand_apolog',
  'demand_apolog_insult',
  'apolog_insult_ruin',
  'insult_ruin_dinner',
  'ruin_dinner_aita',
  'dinner_aita_edit',
  'aita_edit_-',
  'edit_-_guy',
  '-_guy_sister',
  'guy_sister_said',
  'sister_said_reason',
  'said_reason_brother',
  'reason_brother_law',
  'brother_law_got',
  'law_got_offend',
  'got_offend_consid',
  'offend_consid_mustach',
  'consid_mustach_symbol',
  'mustach_symbol_manhood',
  'symbol_manhood_insult',
  'manhood_insult_manhood',
  'insult_manhood_made',
  'manhood_made_backhand',
  'made_backhand_comment',
  'backhand_comment_said',
  'comment_said_psycholog',
  'said_psycholog_harm',
  'psycholog_harm_apolog',
  'harm_apolog_im',
  'apolog_im_sure',
  'im_sure_fix',
  'sure_fix_anyth',
  'fix_anyth_except',
  'anyth_except_feel',
  'except_feel_mustachi',
  'feel_mustachi_mustachelol'],
 ['boyfriend',
  'tradit',
  'anniversari',
  'go',
  'store',
  'separ',
  'buy',
  'gift',
  'exchang',
  'car',
  'silli',
  'cute',
  'walk',
  'new',
  'mom',
  '&',
  'pop',
  'anim',
  'store',
  'huge',
  'anim',
  'nerd',
  'boyfriend',
  'like',
  'video',
  'game',
  'also',
  'sell',
  'separ',
  'go',
  'look',
  'stuff',
  'boyfriend',
  'worker',
  'walk',
  'start',
  'chat',
  'point',
  'leg',
  'pretti',
  'big',
  'tattoo',
  'kakashi',
  'naruto',
  'thigh',
  'among',
  'anim',
  'tattoo',
  'ask',
  'got',
  'boyfriend',
  'said',
  'ive',
  'alway',
  'love',
  'naruto',
  'show',
  'tattoo',
  'includ',
  'leaf',
  'villag',
  'symbol',
  'gaara',
  'sand',
  'gourd',
  'piec',
  'arm',
  'asuma',
  'sarutobi',
  'start',
  'quizz',
  'lore',
  'anim',
  'told',
  'spent',
  '$',
  'tattoo',
  'anim',
  'know',
  'appreci',
  'tri',
  'catch',
  'gotcha',
  'moment',
  'told',
  'believ',
  'girl',
  'could',
  'ever',
  'fulli',
  'understand',
  'real',
  'stori',
  'naruto',
  'depth',
  'behind',
  'lol',
  'told',
  'need',
  'servic',
  'go',
  'back',
  'front',
  'desk',
  'told',
  'rude',
  'wannab',
  'bitch',
  'walk',
  'back',
  'continu',
  'purchas',
  'item',
  'left',
  'review',
  'later',
  'tldr',
  'feminin',
  'present',
  'enter',
  'caution',
  'one',
  'employe',
  'call',
  'bitch',
  'want',
  'prove',
  'nerd',
  'cred',
  'owner',
  'left',
  'comment',
  'review',
  'ask',
  'email',
  'convers',
  'ask',
  'take',
  'review',
  'peopl',
  'start',
  'complain',
  'employe',
  'well',
  'sale',
  'revenu',
  'drop',
  'told',
  'mayb',
  'hire',
  'misogynist',
  'want',
  'bad',
  'review',
  'friend',
  'tell',
  'im',
  'react',
  'aita',
  'boyfriend_tradit',
  'tradit_anniversari',
  'anniversari_go',
  'go_store',
  'store_separ',
  'separ_buy',
  'buy_gift',
  'gift_exchang',
  'exchang_car',
  'car_silli',
  'silli_cute',
  'cute_walk',
  'walk_new',
  'new_mom',
  'mom_&',
  '&_pop',
  'pop_anim',
  'anim_store',
  'store_huge',
  'huge_anim',
  'anim_nerd',
  'nerd_boyfriend',
  'boyfriend_like',
  'like_video',
  'video_game',
  'game_also',
  'also_sell',
  'sell_separ',
  'separ_go',
  'go_look',
  'look_stuff',
  'stuff_boyfriend',
  'boyfriend_worker',
  'worker_walk',
  'walk_start',
  'start_chat',
  'chat_point',
  'point_leg',
  'leg_pretti',
  'pretti_big',
  'big_tattoo',
  'tattoo_kakashi',
  'kakashi_naruto',
  'naruto_thigh',
  'thigh_among',
  'among_anim',
  'anim_tattoo',
  'tattoo_ask',
  'ask_got',
  'got_boyfriend',
  'boyfriend_said',
  'said_ive',
  'ive_alway',
  'alway_love',
  'love_naruto',
  'naruto_show',
  'show_tattoo',
  'tattoo_includ',
  'includ_leaf',
  'leaf_villag',
  'villag_symbol',
  'symbol_gaara',
  'gaara_sand',
  'sand_gourd',
  'gourd_piec',
  'piec_arm',
  'arm_asuma',
  'asuma_sarutobi',
  'sarutobi_start',
  'start_quizz',
  'quizz_lore',
  'lore_anim',
  'anim_told',
  'told_spent',
  'spent_$',
  '$_tattoo',
  'tattoo_anim',
  'anim_know',
  'know_appreci',
  'appreci_tri',
  'tri_catch',
  'catch_gotcha',
  'gotcha_moment',
  'moment_told',
  'told_believ',
  'believ_girl',
  'girl_could',
  'could_ever',
  'ever_fulli',
  'fulli_understand',
  'understand_real',
  'real_stori',
  'stori_naruto',
  'naruto_depth',
  'depth_behind',
  'behind_lol',
  'lol_told',
  'told_need',
  'need_servic',
  'servic_go',
  'go_back',
  'back_front',
  'front_desk',
  'desk_told',
  'told_rude',
  'rude_wannab',
  'wannab_bitch',
  'bitch_walk',
  'walk_back',
  'back_continu',
  'continu_purchas',
  'purchas_item',
  'item_left',
  'left_review',
  'review_later',
  'later_tldr',
  'tldr_feminin',
  'feminin_present',
  'present_enter',
  'enter_caution',
  'caution_one',
  'one_employe',
  'employe_call',
  'call_bitch',
  'bitch_want',
  'want_prove',
  'prove_nerd',
  'nerd_cred',
  'cred_owner',
  'owner_left',
  'left_comment',
  'comment_review',
  'review_ask',
  'ask_email',
  'email_convers',
  'convers_ask',
  'ask_take',
  'take_review',
  'review_peopl',
  'peopl_start',
  'start_complain',
  'complain_employe',
  'employe_well',
  'well_sale',
  'sale_revenu',
  'revenu_drop',
  'drop_told',
  'told_mayb',
  'mayb_hire',
  'hire_misogynist',
  'misogynist_want',
  'want_bad',
  'bad_review',
  'review_friend',
  'friend_tell',
  'tell_im',
  'im_react',
  'react_aita',
  'boyfriend_tradit_anniversari',
  'tradit_anniversari_go',
  'anniversari_go_store',
  'go_store_separ',
  'store_separ_buy',
  'separ_buy_gift',
  'buy_gift_exchang',
  'gift_exchang_car',
  'exchang_car_silli',
  'car_silli_cute',
  'silli_cute_walk',
  'cute_walk_new',
  'walk_new_mom',
  'new_mom_&',
  'mom_&_pop',
  '&_pop_anim',
  'pop_anim_store',
  'anim_store_huge',
  'store_huge_anim',
  'huge_anim_nerd',
  'anim_nerd_boyfriend',
  'nerd_boyfriend_like',
  'boyfriend_like_video',
  'like_video_game',
  'video_game_also',
  'game_also_sell',
  'also_sell_separ',
  'sell_separ_go',
  'separ_go_look',
  'go_look_stuff',
  'look_stuff_boyfriend',
  'stuff_boyfriend_worker',
  'boyfriend_worker_walk',
  'worker_walk_start',
  'walk_start_chat',
  'start_chat_point',
  'chat_point_leg',
  'point_leg_pretti',
  'leg_pretti_big',
  'pretti_big_tattoo',
  'big_tattoo_kakashi',
  'tattoo_kakashi_naruto',
  'kakashi_naruto_thigh',
  'naruto_thigh_among',
  'thigh_among_anim',
  'among_anim_tattoo',
  'anim_tattoo_ask',
  'tattoo_ask_got',
  'ask_got_boyfriend',
  'got_boyfriend_said',
  'boyfriend_said_ive',
  'said_ive_alway',
  'ive_alway_love',
  'alway_love_naruto',
  'love_naruto_show',
  'naruto_show_tattoo',
  'show_tattoo_includ',
  'tattoo_includ_leaf',
  'includ_leaf_villag',
  'leaf_villag_symbol',
  'villag_symbol_gaara',
  'symbol_gaara_sand',
  'gaara_sand_gourd',
  'sand_gourd_piec',
  'gourd_piec_arm',
  'piec_arm_asuma',
  'arm_asuma_sarutobi',
  'asuma_sarutobi_start',
  'sarutobi_start_quizz',
  'start_quizz_lore',
  'quizz_lore_anim',
  'lore_anim_told',
  'anim_told_spent',
  'told_spent_$',
  'spent_$_tattoo',
  '$_tattoo_anim',
  'tattoo_anim_know',
  'anim_know_appreci',
  'know_appreci_tri',
  'appreci_tri_catch',
  'tri_catch_gotcha',
  'catch_gotcha_moment',
  'gotcha_moment_told',
  'moment_told_believ',
  'told_believ_girl',
  'believ_girl_could',
  'girl_could_ever',
  'could_ever_fulli',
  'ever_fulli_understand',
  'fulli_understand_real',
  'understand_real_stori',
  'real_stori_naruto',
  'stori_naruto_depth',
  'naruto_depth_behind',
  'depth_behind_lol',
  'behind_lol_told',
  'lol_told_need',
  'told_need_servic',
  'need_servic_go',
  'servic_go_back',
  'go_back_front',
  'back_front_desk',
  'front_desk_told',
  'desk_told_rude',
  'told_rude_wannab',
  'rude_wannab_bitch',
  'wannab_bitch_walk',
  'bitch_walk_back',
  'walk_back_continu',
  'back_continu_purchas',
  'continu_purchas_item',
  'purchas_item_left',
  'item_left_review',
  'left_review_later',
  'review_later_tldr',
  'later_tldr_feminin',
  'tldr_feminin_present',
  'feminin_present_enter',
  'present_enter_caution',
  'enter_caution_one',
  'caution_one_employe',
  'one_employe_call',
  'employe_call_bitch',
  'call_bitch_want',
  'bitch_want_prove',
  'want_prove_nerd',
  'prove_nerd_cred',
  'nerd_cred_owner',
  'cred_owner_left',
  'owner_left_comment',
  'left_comment_review',
  'comment_review_ask',
  'review_ask_email',
  'ask_email_convers',
  'email_convers_ask',
  'convers_ask_take',
  'ask_take_review',
  'take_review_peopl',
  'review_peopl_start',
  'peopl_start_complain',
  'start_complain_employe',
  'complain_employe_well',
  'employe_well_sale',
  'well_sale_revenu',
  'sale_revenu_drop',
  'revenu_drop_told',
  'drop_told_mayb',
  'told_mayb_hire',
  'mayb_hire_misogynist',
  'hire_misogynist_want',
  'misogynist_want_bad',
  'want_bad_review',
  'bad_review_friend',
  'review_friend_tell',
  'friend_tell_im',
  'tell_im_react',
  'im_react_aita'],
 ['mem',
  'brother',
  'jackm',
  'wife',
  'jillf',
  'start',
  'jack',
  'jill',
  'got',
  'pregnant',
  'leas',
  'almost',
  'end',
  'parent',
  'invit',
  'stay',
  'hous',
  'day',
  'came',
  'jack',
  'ask',
  'move',
  'room',
  'yet',
  'confus',
  'like',
  'wtf',
  'told',
  'jill',
  'room',
  'go',
  'guest',
  'room',
  'refus',
  'parent',
  'got',
  'mad',
  'got',
  'fight',
  'lost',
  'end',
  'much',
  'smaller',
  'guest',
  'room',
  'jill',
  'problem',
  'cook',
  'eat',
  'scrambl',
  'egg',
  'mozzarela',
  'avocado',
  'everi',
  'day',
  'breakfast',
  'stand',
  'smell',
  'ask',
  'stop',
  'refus',
  'parent',
  'got',
  'involv',
  'stop',
  'problem',
  'food',
  'stop',
  'cook',
  'told',
  'must',
  'accomod',
  'caus',
  'pregnant',
  'like',
  'problem',
  'jill',
  'start',
  'boss',
  'around',
  'alon',
  'hour',
  'parent',
  'jack',
  'work',
  'obvious',
  'tought',
  'person',
  'maid',
  'refus',
  'trew',
  'temper',
  'tantrum',
  'like',
  'alway',
  'big',
  'fight',
  'jack',
  'parent',
  'told',
  'high',
  'risk',
  'pregnanc',
  'bed',
  'rest',
  'im',
  'asshol',
  'help',
  'told',
  'jack',
  'knock',
  'respons',
  'stood',
  'ground',
  'end',
  'jill',
  'cousin',
  'came',
  'help',
  'sometim',
  'jill',
  'gave',
  'birth',
  'nephew',
  'congratul',
  'came',
  'home',
  'like',
  'babi',
  'mostli',
  'keep',
  'stop',
  'jill',
  'ask',
  'favor',
  'pleas',
  'watch',
  'babi',
  'take',
  'quick',
  'shower',
  'pleas',
  'watch',
  'make',
  'food',
  'etc',
  'alway',
  'refus',
  'new',
  'fight',
  'came',
  'head',
  'last',
  'friday',
  'ask',
  'watch',
  'nephew',
  'goe',
  'pharmaci',
  'babi',
  'formula',
  'refus',
  'got',
  'mad',
  'fight',
  'grabe',
  'purs',
  'go',
  'anyway',
  'told',
  'moment',
  'walk',
  'door',
  'call',
  'polic',
  'child',
  'abandon',
  'seriou',
  'knew',
  'broke',
  'scream',
  'horribl',
  'human',
  'ran',
  'room',
  'complet',
  'mental',
  'breakdown',
  'jack',
  'parent',
  'came',
  'home',
  'biggest',
  'fight',
  'yet',
  'jack',
  'accus',
  'hate',
  'jill',
  'nephew',
  'upon',
  'thing',
  'told',
  'refus',
  'bond',
  'weapon',
  'parent',
  'told',
  'enough',
  'enough',
  'cant',
  'believ',
  'rais',
  'selfish',
  'human',
  'either',
  'help',
  'move',
  'im',
  'think',
  'second',
  'option',
  'aita',
  'edit',
  'work',
  'home',
  'pay',
  '%',
  'household',
  'expens',
  'includ',
  'mortag',
  'jack',
  'jill',
  'contribut',
  'anyth',
  'expens',
  'mem_brother',
  'brother_jackm',
  'jackm_wife',
  'wife_jillf',
  'jillf_start',
  'start_jack',
  'jack_jill',
  'jill_got',
  'got_pregnant',
  'pregnant_leas',
  'leas_almost',
  'almost_end',
  'end_parent',
  'parent_invit',
  'invit_stay',
  'stay_hous',
  'hous_day',
  'day_came',
  'came_jack',
  'jack_ask',
  'ask_move',
  'move_room',
  'room_yet',
  'yet_confus',
  'confus_like',
  'like_wtf',
  'wtf_told',
  'told_jill',
  'jill_room',
  'room_go',
  'go_guest',
  'guest_room',
  'room_refus',
  'refus_parent',
  'parent_got',
  'got_mad',
  'mad_got',
  'got_fight',
  'fight_lost',
  'lost_end',
  'end_much',
  'much_smaller',
  'smaller_guest',
  'guest_room',
  'room_jill',
  'jill_problem',
  'problem_cook',
  'cook_eat',
  'eat_scrambl',
  'scrambl_egg',
  'egg_mozzarela',
  'mozzarela_avocado',
  'avocado_everi',
  'everi_day',
  'day_breakfast',
  'breakfast_stand',
  'stand_smell',
  'smell_ask',
  'ask_stop',
  'stop_refus',
  'refus_parent',
  'parent_got',
  'got_involv',
  'involv_stop',
  'stop_problem',
  'problem_food',
  'food_stop',
  'stop_cook',
  'cook_told',
  'told_must',
  'must_accomod',
  'accomod_caus',
  'caus_pregnant',
  'pregnant_like',
  'like_problem',
  'problem_jill',
  'jill_start',
  'start_boss',
  'boss_around',
  'around_alon',
  'alon_hour',
  'hour_parent',
  'parent_jack',
  'jack_work',
  'work_obvious',
  'obvious_tought',
  'tought_person',
  'person_maid',
  'maid_refus',
  'refus_trew',
  'trew_temper',
  'temper_tantrum',
  'tantrum_like',
  'like_alway',
  'alway_big',
  'big_fight',
  'fight_jack',
  'jack_parent',
  'parent_told',
  'told_high',
  'high_risk',
  'risk_pregnanc',
  'pregnanc_bed',
  'bed_rest',
  'rest_im',
  'im_asshol',
  'asshol_help',
  'help_told',
  'told_jack',
  'jack_knock',
  'knock_respons',
  'respons_stood',
  'stood_ground',
  'ground_end',
  'end_jill',
  'jill_cousin',
  'cousin_came',
  'came_help',
  'help_sometim',
  'sometim_jill',
  'jill_gave',
  'gave_birth',
  'birth_nephew',
  'nephew_congratul',
  'congratul_came',
  'came_home',
  'home_like',
  'like_babi',
  'babi_mostli',
  'mostli_keep',
  'keep_stop',
  'stop_jill',
  'jill_ask',
  'ask_favor',
  'favor_pleas',
  'pleas_watch',
  'watch_babi',
  'babi_take',
  'take_quick',
  'quick_shower',
  'shower_pleas',
  'pleas_watch',
  'watch_make',
  'make_food',
  'food_etc',
  'etc_alway',
  'alway_refus',
  'refus_new',
  'new_fight',
  'fight_came',
  'came_head',
  'head_last',
  'last_friday',
  'friday_ask',
  'ask_watch',
  'watch_nephew',
  'nephew_goe',
  'goe_pharmaci',
  'pharmaci_babi',
  'babi_formula',
  'formula_refus',
  'refus_got',
  'got_mad',
  'mad_fight',
  'fight_grabe',
  'grabe_purs',
  'purs_go',
  'go_anyway',
  'anyway_told',
  'told_moment',
  'moment_walk',
  'walk_door',
  'door_call',
  'call_polic',
  'polic_child',
  'child_abandon',
  'abandon_seriou',
  'seriou_knew',
  'knew_broke',
  'broke_scream',
  'scream_horribl',
  'horribl_human',
  'human_ran',
  'ran_room',
  'room_complet',
  'complet_mental',
  'mental_breakdown',
  'breakdown_jack',
  'jack_parent',
  'parent_came',
  'came_home',
  'home_biggest',
  'biggest_fight',
  'fight_yet',
  'yet_jack',
  'jack_accus',
  'accus_hate',
  'hate_jill',
  'jill_nephew',
  'nephew_upon',
  'upon_thing',
  'thing_told',
  'told_refus',
  'refus_bond',
  'bond_weapon',
  'weapon_parent',
  'parent_told',
  'told_enough',
  'enough_enough',
  'enough_cant',
  'cant_believ',
  'believ_rais',
  'rais_selfish',
  'selfish_human',
  'human_either',
  'either_help',
  'help_move',
  'move_im',
  'im_think',
  'think_second',
  'second_option',
  'option_aita',
  'aita_edit',
  'edit_work',
  'work_home',
  'home_pay',
  'pay_%',
  '%_household',
  'household_expens',
  'expens_includ',
  'includ_mortag',
  'mortag_jack',
  'jack_jill',
  'jill_contribut',
  'contribut_anyth',
  'anyth_expens',
  'mem_brother_jackm',
  'brother_jackm_wife',
  'jackm_wife_jillf',
  'wife_jillf_start',
  'jillf_start_jack',
  'start_jack_jill',
  'jack_jill_got',
  'jill_got_pregnant',
  'got_pregnant_leas',
  'pregnant_leas_almost',
  'leas_almost_end',
  'almost_end_parent',
  'end_parent_invit',
  'parent_invit_stay',
  'invit_stay_hous',
  'stay_hous_day',
  'hous_day_came',
  'day_came_jack',
  'came_jack_ask',
  'jack_ask_move',
  'ask_move_room',
  'move_room_yet',
  'room_yet_confus',
  'yet_confus_like',
  'confus_like_wtf',
  'like_wtf_told',
  'wtf_told_jill',
  'told_jill_room',
  'jill_room_go',
  'room_go_guest',
  'go_guest_room',
  'guest_room_refus',
  'room_refus_parent',
  'refus_parent_got',
  'parent_got_mad',
  'got_mad_got',
  'mad_got_fight',
  'got_fight_lost',
  'fight_lost_end',
  'lost_end_much',
  'end_much_smaller',
  'much_smaller_guest',
  'smaller_guest_room',
  'guest_room_jill',
  'room_jill_problem',
  'jill_problem_cook',
  'problem_cook_eat',
  'cook_eat_scrambl',
  'eat_scrambl_egg',
  'scrambl_egg_mozzarela',
  'egg_mozzarela_avocado',
  'mozzarela_avocado_everi',
  'avocado_everi_day',
  'everi_day_breakfast',
  'day_breakfast_stand',
  'breakfast_stand_smell',
  'stand_smell_ask',
  'smell_ask_stop',
  'ask_stop_refus',
  'stop_refus_parent',
  'refus_parent_got',
  'parent_got_involv',
  'got_involv_stop',
  'involv_stop_problem',
  'stop_problem_food',
  'problem_food_stop',
  'food_stop_cook',
  'stop_cook_told',
  'cook_told_must',
  'told_must_accomod',
  'must_accomod_caus',
  'accomod_caus_pregnant',
  'caus_pregnant_like',
  'pregnant_like_problem',
  'like_problem_jill',
  'problem_jill_start',
  'jill_start_boss',
  'start_boss_around',
  'boss_around_alon',
  'around_alon_hour',
  'alon_hour_parent',
  'hour_parent_jack',
  'parent_jack_work',
  'jack_work_obvious',
  'work_obvious_tought',
  'obvious_tought_person',
  'tought_person_maid',
  'person_maid_refus',
  'maid_refus_trew',
  'refus_trew_temper',
  'trew_temper_tantrum',
  'temper_tantrum_like',
  'tantrum_like_alway',
  'like_alway_big',
  'alway_big_fight',
  'big_fight_jack',
  'fight_jack_parent',
  'jack_parent_told',
  'parent_told_high',
  'told_high_risk',
  'high_risk_pregnanc',
  'risk_pregnanc_bed',
  'pregnanc_bed_rest',
  'bed_rest_im',
  'rest_im_asshol',
  'im_asshol_help',
  'asshol_help_told',
  'help_told_jack',
  'told_jack_knock',
  'jack_knock_respons',
  'knock_respons_stood',
  'respons_stood_ground',
  'stood_ground_end',
  'ground_end_jill',
  'end_jill_cousin',
  'jill_cousin_came',
  'cousin_came_help',
  'came_help_sometim',
  'help_sometim_jill',
  'sometim_jill_gave',
  'jill_gave_birth',
  'gave_birth_nephew',
  'birth_nephew_congratul',
  'nephew_congratul_came',
  'congratul_came_home',
  'came_home_like',
  'home_like_babi',
  'like_babi_mostli',
  'babi_mostli_keep',
  'mostli_keep_stop',
  'keep_stop_jill',
  'stop_jill_ask',
  'jill_ask_favor',
  'ask_favor_pleas',
  'favor_pleas_watch',
  'pleas_watch_babi',
  'watch_babi_take',
  'babi_take_quick',
  'take_quick_shower',
  'quick_shower_pleas',
  'shower_pleas_watch',
  'pleas_watch_make',
  'watch_make_food',
  'make_food_etc',
  'food_etc_alway',
  'etc_alway_refus',
  'alway_refus_new',
  'refus_new_fight',
  'new_fight_came',
  'fight_came_head',
  'came_head_last',
  'head_last_friday',
  'last_friday_ask',
  'friday_ask_watch',
  'ask_watch_nephew',
  'watch_nephew_goe',
  'nephew_goe_pharmaci',
  'goe_pharmaci_babi',
  'pharmaci_babi_formula',
  'babi_formula_refus',
  'formula_refus_got',
  'refus_got_mad',
  'got_mad_fight',
  'mad_fight_grabe',
  'fight_grabe_purs',
  'grabe_purs_go',
  'purs_go_anyway',
  'go_anyway_told',
  'anyway_told_moment',
  'told_moment_walk',
  'moment_walk_door',
  'walk_door_call',
  'door_call_polic',
  'call_polic_child',
  'polic_child_abandon',
  'child_abandon_seriou',
  'abandon_seriou_knew',
  'seriou_knew_broke',
  'knew_broke_scream',
  'broke_scream_horribl',
  'scream_horribl_human',
  'horribl_human_ran',
  'human_ran_room',
  'ran_room_complet',
  'room_complet_mental',
  'complet_mental_breakdown',
  'mental_breakdown_jack',
  'breakdown_jack_parent',
  'jack_parent_came',
  'parent_came_home',
  'came_home_biggest',
  'home_biggest_fight',
  'biggest_fight_yet',
  'fight_yet_jack',
  'yet_jack_accus',
  'jack_accus_hate',
  'accus_hate_jill',
  'hate_jill_nephew',
  'jill_nephew_upon',
  'nephew_upon_thing',
  'upon_thing_told',
  'thing_told_refus',
  'told_refus_bond',
  'refus_bond_weapon',
  'bond_weapon_parent',
  'weapon_parent_told',
  'parent_told_enough',
  'told_enough_enough',
  'enough_enough_cant',
  'enough_cant_believ',
  'cant_believ_rais',
  'believ_rais_selfish',
  'rais_selfish_human',
  'selfish_human_either',
  'human_either_help',
  'either_help_move',
  'help_move_im',
  'move_im_think',
  'im_think_second',
  'think_second_option',
  'second_option_aita',
  'option_aita_edit',
  'aita_edit_work',
  'edit_work_home',
  'work_home_pay',
  'home_pay_%',
  'pay_%_household',
  '%_household_expens',
  'household_expens_includ',
  'expens_includ_mortag',
  'includ_mortag_jack',
  'mortag_jack_jill',
  'jack_jill_contribut',
  'jill_contribut_anyth',
  'contribut_anyth_expens'],
 ['im',
  'owner',
  'wonder',
  'rescu',
  'macaw',
  'wonder',
  'bird',
  'lot',
  'issu',
  'due',
  'abus',
  'former',
  'home',
  'ive',
  'year',
  'sinc',
  'taken',
  'vacat',
  'trip',
  'away',
  'would',
  'disrupt',
  'distrust',
  'everyon',
  'reliant',
  'routin',
  'love',
  'deepli',
  'im',
  'happi',
  'make',
  'sacrific',
  'perman',
  'toddler',
  'intellig',
  'bird',
  'met',
  'husband',
  'time',
  'kid',
  'older',
  'stepdaught',
  'time',
  'marri',
  'move',
  'away',
  'colleg',
  'nevertheless',
  'thought',
  'wed',
  'manag',
  'decent',
  'relationship',
  'stepdaught',
  'get',
  'marri',
  'march',
  'natur',
  'lot',
  'prepar',
  'involv',
  'theyr',
  'want',
  'huge',
  'tradit',
  'wed',
  'stress',
  'mind',
  'live',
  'state',
  'invit',
  'recent',
  'come',
  'visit',
  'week',
  'help',
  'make',
  'wed',
  'plan',
  'spend',
  'time',
  'yo',
  'declin',
  'insist',
  'know',
  'act',
  'hurt',
  'explain',
  'parrot',
  'well',
  'jt',
  'went',
  'downhil',
  'caus',
  'massiv',
  'fuss',
  'dad',
  'say',
  'never',
  'got',
  'mother',
  'figur',
  'never',
  'accept',
  'full',
  'blood',
  'daughter',
  'ultim',
  'snub',
  'silli',
  'anim',
  'im',
  'cold',
  'emotionless',
  'feel',
  'realli',
  'hurt',
  'tell',
  'agre',
  'even',
  'though',
  'refus',
  'take',
  'side',
  'see',
  'expect',
  'take',
  'holiday',
  'time',
  'work',
  'babysit',
  'bond',
  'sudden',
  'see',
  'im',
  'monster',
  'asshol',
  'edit',
  'context',
  'relationship',
  'usual',
  'talk',
  'visit',
  'home',
  'year',
  'edit',
  'begin',
  'think',
  'mayb',
  'mistak',
  'post',
  'mostli',
  'real',
  'nuanc',
  'situat',
  'reddit',
  'place',
  'nuanc',
  'mayb',
  'person',
  'relationship',
  'judg',
  'ah',
  'context',
  'first',
  'place',
  'also',
  'understand',
  'bigger',
  'person',
  'regardless',
  'asshol',
  'life',
  'short',
  'butthurt',
  'offend',
  'call',
  'stepdaught',
  'told',
  'understand',
  'big',
  'moment',
  'life',
  'want',
  'someon',
  'help',
  'support',
  'im',
  'still',
  'help',
  'way',
  'plan',
  'wed',
  'via',
  'zoom',
  'virtual',
  'talk',
  'bit',
  'ask',
  'accept',
  'reach',
  'past',
  'apologis',
  'said',
  'want',
  'accept',
  'someon',
  'stand-in',
  'fake',
  'replac',
  'bio',
  'mom',
  'regret',
  'would',
  'like',
  'closer',
  'relationship',
  'especi',
  'see',
  'close',
  'mom',
  'end',
  'convers',
  'posit',
  'im',
  'hope',
  'thing',
  'improv',
  'go',
  'forward',
  'told',
  'im',
  'crazi',
  'bird',
  'ladi',
  'ask',
  'still',
  'want',
  'relationship',
  'know',
  'said',
  'wed',
  'travel',
  'visit',
  'us',
  'room',
  'ill',
  'leav',
  'post',
  'im',
  'happi',
  'either',
  'way',
  'im',
  'glad',
  'feedback',
  'motiv',
  'make',
  'call',
  'im_owner',
  'owner_wonder',
  'wonder_rescu',
  'rescu_macaw',
  'macaw_wonder',
  'wonder_bird',
  'bird_lot',
  'lot_issu',
  'issu_due',
  'due_abus',
  'abus_former',
  'former_home',
  'home_ive',
  'ive_year',
  'year_sinc',
  'sinc_taken',
  'taken_vacat',
  'vacat_trip',
  'trip_away',
  'away_would',
  'would_disrupt',
  'disrupt_distrust',
  'distrust_everyon',
  'everyon_reliant',
  'reliant_routin',
  'routin_love',
  'love_deepli',
  'deepli_im',
  'im_happi',
  'happi_make',
  'make_sacrific',
  'sacrific_perman',
  'perman_toddler',
  'toddler_intellig',
  'intellig_bird',
  'bird_met',
  'met_husband',
  'husband_time',
  'time_kid',
  'kid_older',
  'older_stepdaught',
  'stepdaught_time',
  'time_marri',
  'marri_move',
  'move_away',
  'away_colleg',
  'colleg_nevertheless',
  'nevertheless_thought',
  'thought_wed',
  'wed_manag',
  'manag_decent',
  'decent_relationship',
  'relationship_stepdaught',
  'stepdaught_get',
  'get_marri',
  'marri_march',
  'march_natur',
  'natur_lot',
  'lot_prepar',
  'prepar_involv',
  'involv_theyr',
  'theyr_want',
  'want_huge',
  'huge_tradit',
  'tradit_wed',
  'wed_stress',
  'stress_mind',
  'mind_live',
  'live_state',
  'state_invit',
  'invit_recent',
  'recent_come',
  'come_visit',
  'visit_week',
  'week_help',
  'help_make',
  'make_wed',
  'wed_plan',
  'plan_spend',
  'spend_time',
  'time_yo',
  'yo_declin',
  'declin_insist',
  'insist_know',
  'know_act',
  'act_hurt',
  'hurt_explain',
  'explain_parrot',
  'parrot_well',
  'well_jt',
  'jt_went',
  'went_downhil',
  'downhil_caus',
  'caus_massiv',
  'massiv_fuss',
  'fuss_dad',
  'dad_say',
  'say_never',
  'never_got',
  'got_mother',
  'mother_figur',
  'figur_never',
  'never_accept',
  'accept_full',
  'full_blood',
  'blood_daughter',
  'daughter_ultim',
  'ultim_snub',
  'snub_silli',
  'silli_anim',
  'anim_im',
  'im_cold',
  'cold_emotionless',
  'emotionless_feel',
  'feel_realli',
  'realli_hurt',
  'hurt_tell',
  'tell_agre',
  'agre_even',
  'even_though',
  'though_refus',
  'refus_take',
  'take_side',
  'side_see',
  'see_expect',
  'expect_take',
  'take_holiday',
  'holiday_time',
  'time_work',
  'work_babysit',
  'babysit_bond',
  'bond_sudden',
  'sudden_see',
  'see_im',
  'im_monster',
  'monster_asshol',
  'asshol_edit',
  'edit_context',
  'context_relationship',
  'relationship_usual',
  'usual_talk',
  'talk_visit',
  'visit_home',
  'home_year',
  'year_edit',
  'edit_begin',
  'begin_think',
  'think_mayb',
  'mayb_mistak',
  'mistak_post',
  'post_mostli',
  'mostli_real',
  'real_nuanc',
  'nuanc_situat',
  'situat_reddit',
  'reddit_place',
  'place_nuanc',
  'nuanc_mayb',
  'mayb_person',
  'person_relationship',
  'relationship_judg',
  'judg_ah',
  'ah_context',
  'context_first',
  'first_place',
  'place_also',
  'also_understand',
  'understand_bigger',
  'bigger_person',
  'person_regardless',
  'regardless_asshol',
  'asshol_life',
  'life_short',
  'short_butthurt',
  'butthurt_offend',
  'offend_call',
  'call_stepdaught',
  'stepdaught_told',
  'told_understand',
  'understand_big',
  'big_moment',
  'moment_life',
  'life_want',
  'want_someon',
  'someon_help',
  'help_support',
  'support_im',
  'im_still',
  'still_help',
  'help_way',
  'way_plan',
  'plan_wed',
  'wed_via',
  'via_zoom',
  'zoom_virtual',
  'virtual_talk',
  'talk_bit',
  'bit_ask',
  'ask_accept',
  'accept_reach',
  'reach_past',
  'past_apologis',
  'apologis_said',
  'said_want',
  'want_accept',
  'accept_someon',
  'someon_stand-in',
  'stand-in_fake',
  'fake_replac',
  'replac_bio',
  'bio_mom',
  'mom_regret',
  'regret_would',
  'would_like',
  'like_closer',
  'closer_relationship',
  'relationship_especi',
  'especi_see',
  'see_close',
  'close_mom',
  'mom_end',
  'end_convers',
  'convers_posit',
  'posit_im',
  'im_hope',
  'hope_thing',
  'thing_improv',
  'improv_go',
  'go_forward',
  'forward_told',
  'told_im',
  'im_crazi',
  'crazi_bird',
  'bird_ladi',
  'ladi_ask',
  'ask_still',
  'still_want',
  'want_relationship',
  'relationship_know',
  'know_said',
  'said_wed',
  'wed_travel',
  'travel_visit',
  'visit_us',
  'us_room',
  'room_ill',
  'ill_leav',
  'leav_post',
  'post_im',
  'im_happi',
  'happi_either',
  'either_way',
  'way_im',
  'im_glad',
  'glad_feedback',
  'feedback_motiv',
  'motiv_make',
  'make_call',
  'im_owner_wonder',
  'owner_wonder_rescu',
  'wonder_rescu_macaw',
  'rescu_macaw_wonder',
  'macaw_wonder_bird',
  'wonder_bird_lot',
  'bird_lot_issu',
  'lot_issu_due',
  'issu_due_abus',
  'due_abus_former',
  'abus_former_home',
  'former_home_ive',
  'home_ive_year',
  'ive_year_sinc',
  'year_sinc_taken',
  'sinc_taken_vacat',
  'taken_vacat_trip',
  'vacat_trip_away',
  'trip_away_would',
  'away_would_disrupt',
  'would_disrupt_distrust',
  'disrupt_distrust_everyon',
  'distrust_everyon_reliant',
  'everyon_reliant_routin',
  'reliant_routin_love',
  'routin_love_deepli',
  'love_deepli_im',
  'deepli_im_happi',
  'im_happi_make',
  'happi_make_sacrific',
  'make_sacrific_perman',
  'sacrific_perman_toddler',
  'perman_toddler_intellig',
  'toddler_intellig_bird',
  'intellig_bird_met',
  'bird_met_husband',
  'met_husband_time',
  'husband_time_kid',
  'time_kid_older',
  'kid_older_stepdaught',
  'older_stepdaught_time',
  'stepdaught_time_marri',
  'time_marri_move',
  'marri_move_away',
  'move_away_colleg',
  'away_colleg_nevertheless',
  'colleg_nevertheless_thought',
  'nevertheless_thought_wed',
  'thought_wed_manag',
  'wed_manag_decent',
  'manag_decent_relationship',
  'decent_relationship_stepdaught',
  'relationship_stepdaught_get',
  'stepdaught_get_marri',
  'get_marri_march',
  'marri_march_natur',
  'march_natur_lot',
  'natur_lot_prepar',
  'lot_prepar_involv',
  'prepar_involv_theyr',
  'involv_theyr_want',
  'theyr_want_huge',
  'want_huge_tradit',
  'huge_tradit_wed',
  'tradit_wed_stress',
  'wed_stress_mind',
  'stress_mind_live',
  'mind_live_state',
  'live_state_invit',
  'state_invit_recent',
  'invit_recent_come',
  'recent_come_visit',
  'come_visit_week',
  'visit_week_help',
  'week_help_make',
  'help_make_wed',
  'make_wed_plan',
  'wed_plan_spend',
  'plan_spend_time',
  'spend_time_yo',
  'time_yo_declin',
  'yo_declin_insist',
  'declin_insist_know',
  'insist_know_act',
  'know_act_hurt',
  'act_hurt_explain',
  'hurt_explain_parrot',
  'explain_parrot_well',
  'parrot_well_jt',
  'well_jt_went',
  'jt_went_downhil',
  'went_downhil_caus',
  'downhil_caus_massiv',
  'caus_massiv_fuss',
  'massiv_fuss_dad',
  'fuss_dad_say',
  'dad_say_never',
  'say_never_got',
  'never_got_mother',
  'got_mother_figur',
  'mother_figur_never',
  'figur_never_accept',
  'never_accept_full',
  'accept_full_blood',
  'full_blood_daughter',
  'blood_daughter_ultim',
  'daughter_ultim_snub',
  'ultim_snub_silli',
  'snub_silli_anim',
  'silli_anim_im',
  'anim_im_cold',
  'im_cold_emotionless',
  'cold_emotionless_feel',
  'emotionless_feel_realli',
  'feel_realli_hurt',
  'realli_hurt_tell',
  'hurt_tell_agre',
  'tell_agre_even',
  'agre_even_though',
  'even_though_refus',
  'though_refus_take',
  'refus_take_side',
  'take_side_see',
  'side_see_expect',
  'see_expect_take',
  'expect_take_holiday',
  'take_holiday_time',
  'holiday_time_work',
  'time_work_babysit',
  'work_babysit_bond',
  'babysit_bond_sudden',
  'bond_sudden_see',
  'sudden_see_im',
  'see_im_monster',
  'im_monster_asshol',
  'monster_asshol_edit',
  'asshol_edit_context',
  'edit_context_relationship',
  'context_relationship_usual',
  'relationship_usual_talk',
  'usual_talk_visit',
  'talk_visit_home',
  'visit_home_year',
  'home_year_edit',
  'year_edit_begin',
  'edit_begin_think',
  'begin_think_mayb',
  'think_mayb_mistak',
  'mayb_mistak_post',
  'mistak_post_mostli',
  'post_mostli_real',
  'mostli_real_nuanc',
  'real_nuanc_situat',
  'nuanc_situat_reddit',
  'situat_reddit_place',
  'reddit_place_nuanc',
  'place_nuanc_mayb',
  'nuanc_mayb_person',
  'mayb_person_relationship',
  'person_relationship_judg',
  'relationship_judg_ah',
  'judg_ah_context',
  'ah_context_first',
  'context_first_place',
  'first_place_also',
  'place_also_understand',
  'also_understand_bigger',
  'understand_bigger_person',
  'bigger_person_regardless',
  'person_regardless_asshol',
  'regardless_asshol_life',
  'asshol_life_short',
  'life_short_butthurt',
  'short_butthurt_offend',
  'butthurt_offend_call',
  'offend_call_stepdaught',
  'call_stepdaught_told',
  'stepdaught_told_understand',
  'told_understand_big',
  'understand_big_moment',
  'big_moment_life',
  'moment_life_want',
  'life_want_someon',
  'want_someon_help',
  'someon_help_support',
  'help_support_im',
  'support_im_still',
  'im_still_help',
  'still_help_way',
  'help_way_plan',
  'way_plan_wed',
  'plan_wed_via',
  'wed_via_zoom',
  'via_zoom_virtual',
  'zoom_virtual_talk',
  'virtual_talk_bit',
  'talk_bit_ask',
  'bit_ask_accept',
  'ask_accept_reach',
  'accept_reach_past',
  'reach_past_apologis',
  'past_apologis_said',
  'apologis_said_want',
  'said_want_accept',
  'want_accept_someon',
  'accept_someon_stand-in',
  'someon_stand-in_fake',
  'stand-in_fake_replac',
  'fake_replac_bio',
  'replac_bio_mom',
  'bio_mom_regret',
  'mom_regret_would',
  'regret_would_like',
  'would_like_closer',
  'like_closer_relationship',
  'closer_relationship_especi',
  'relationship_especi_see',
  'especi_see_close',
  'see_close_mom',
  'close_mom_end',
  'mom_end_convers',
  'end_convers_posit',
  'convers_posit_im',
  'posit_im_hope',
  'im_hope_thing',
  'hope_thing_improv',
  'thing_improv_go',
  'improv_go_forward',
  'go_forward_told',
  'forward_told_im',
  'told_im_crazi',
  'im_crazi_bird',
  'crazi_bird_ladi',
  'bird_ladi_ask',
  'ladi_ask_still',
  'ask_still_want',
  'still_want_relationship',
  'want_relationship_know',
  'relationship_know_said',
  'know_said_wed',
  'said_wed_travel',
  'wed_travel_visit',
  'travel_visit_us',
  'visit_us_room',
  'us_room_ill',
  'room_ill_leav',
  'ill_leav_post',
  'leav_post_im',
  'post_im_happi',
  'im_happi_either',
  'happi_either_way',
  'either_way_im',
  'way_im_glad',
  'im_glad_feedback',
  'glad_feedback_motiv',
  'feedback_motiv_make',
  'motiv_make_call'],
 ['daughter',
  'amanda',
  'cerebr',
  'palsi',
  'abl',
  'walk',
  'independ',
  'walk',
  'long',
  'period',
  'time',
  'walk',
  'anyth',
  'even',
  'ground',
  'without',
  'assist',
  'ie',
  'stair',
  'rail',
  'cant',
  'walk',
  'rockssandetc',
  'iep',
  '-',
  'state',
  'pe',
  'excurs',
  'etc',
  'relev',
  'note',
  'amanda',
  'catch',
  'bu',
  'home',
  '-',
  'catch',
  'specif',
  'rout',
  'rout',
  'school',
  'offer',
  'drop',
  'road',
  'mile',
  'away',
  'footpath',
  'got',
  'call',
  'work',
  'today',
  'tell',
  'amanda',
  'spoken',
  'quit',
  'rude',
  'substitut',
  'pe',
  'gym',
  'teacher',
  'tri',
  'make',
  'climb',
  'rock',
  'wall',
  'school',
  'appar',
  'amanda',
  'say',
  'cant',
  'cerebr',
  'palsi',
  'iep',
  'anoth',
  'child',
  'said',
  'yeah',
  'teacher',
  'believ',
  'becam',
  'insist',
  '-',
  'stand',
  'amanda',
  'told',
  'fuck',
  'repeat',
  'anyth',
  'fuck',
  'sent',
  'offic',
  'handbook',
  'type',
  'offenc',
  'day',
  'school',
  'detent',
  'princip',
  'call',
  'said',
  'absolut',
  'told',
  'welcom',
  'week',
  'worth',
  'lunch',
  'detent',
  'even',
  'schedul',
  'chang',
  'work',
  'schedul',
  '-',
  'absolut',
  'afternoon',
  'husband',
  'away',
  'work',
  'work',
  'pm',
  'need',
  'amanda',
  'regular',
  'bu',
  'nobodi',
  'drop',
  'home',
  'detent',
  'finish',
  'told',
  'late',
  'bu',
  'remind',
  'amanda',
  'take',
  'bu',
  'told',
  'well',
  'sound',
  'like',
  'natur',
  'consequ',
  'averag',
  'kid',
  'refus',
  'someth',
  'rude',
  'deserv',
  'long',
  'walk',
  'home',
  'well',
  'detent',
  'kid',
  'could',
  'serious',
  'harm',
  'made',
  'walk',
  'far',
  'road',
  'princip',
  'told',
  'make',
  'excus',
  'amanda',
  'need',
  'face',
  'consequ',
  'technic',
  'need',
  'give',
  'permiss',
  '-',
  'make',
  'awar',
  'agre',
  'amanda',
  'need',
  'face',
  'consequ',
  'languag',
  '~~she',
  'ground',
  'weekend~~',
  'serv',
  'lunch',
  'detent',
  'school',
  'give',
  'apologis',
  'teacher',
  'specif',
  'languag',
  '-',
  'noth',
  'els',
  '-',
  'put',
  'danger',
  'right',
  'insist',
  '-',
  'insist',
  'take',
  'lunch',
  'break',
  'right',
  'drive',
  'pull',
  'rest',
  'day',
  'edit',
  'school',
  'call',
  'back',
  'said',
  'day',
  'lunch',
  'detent',
  '-',
  'sister',
  'live',
  'interst',
  'think',
  'im',
  'one',
  'mum',
  'told',
  'wrong',
  'henc',
  'post',
  'aita',
  'edit',
  'updat',
  'sinc',
  'unground',
  'amanda',
  'apologis',
  'told',
  'act',
  'irrat',
  'stress',
  'anger',
  'school',
  'situat',
  'also',
  'told',
  'regard',
  'apolog',
  'second',
  'updat',
  'ad',
  '[',
  'updat',
  'post',
  ']',
  'httpswwwredditcomuserta_aita_badmumcommentsvpcwsupdate_to_my_aita_post',
  'daughter_amanda',
  'amanda_cerebr',
  'cerebr_palsi',
  'palsi_abl',
  'abl_walk',
  'walk_independ',
  'independ_walk',
  'walk_long',
  'long_period',
  'period_time',
  'time_walk',
  'walk_anyth',
  'anyth_even',
  'even_ground',
  'ground_without',
  'without_assist',
  'assist_ie',
  'ie_stair',
  'stair_rail',
  'rail_cant',
  'cant_walk',
  'walk_rockssandetc',
  'rockssandetc_iep',
  'iep_-',
  '-_state',
  'state_pe',
  'pe_excurs',
  'excurs_etc',
  'etc_relev',
  'relev_note',
  'note_amanda',
  'amanda_catch',
  'catch_bu',
  'bu_home',
  'home_-',
  '-_catch',
  'catch_specif',
  'specif_rout',
  'rout_rout',
  'rout_school',
  'school_offer',
  'offer_drop',
  'drop_road',
  'road_mile',
  'mile_away',
  'away_footpath',
  'footpath_got',
  'got_call',
  'call_work',
  'work_today',
  'today_tell',
  'tell_amanda',
  'amanda_spoken',
  'spoken_quit',
  'quit_rude',
  'rude_substitut',
  'substitut_pe',
  'pe_gym',
  'gym_teacher',
  'teacher_tri',
  'tri_make',
  'make_climb',
  'climb_rock',
  'rock_wall',
  'wall_school',
  'school_appar',
  'appar_amanda',
  'amanda_say',
  'say_cant',
  'cant_cerebr',
  'cerebr_palsi',
  'palsi_iep',
  'iep_anoth',
  'anoth_child',
  'child_said',
  'said_yeah',
  'yeah_teacher',
  'teacher_believ',
  'believ_becam',
  'becam_insist',
  'insist_-',
  '-_stand',
  'stand_amanda',
  'amanda_told',
  'told_fuck',
  'fuck_repeat',
  'repeat_anyth',
  'anyth_fuck',
  'fuck_sent',
  'sent_offic',
  'offic_handbook',
  'handbook_type',
  'type_offenc',
  'offenc_day',
  'day_school',
  'school_detent',
  'detent_princip',
  'princip_call',
  'call_said',
  'said_absolut',
  'absolut_told',
  'told_welcom',
  'welcom_week',
  'week_worth',
  'worth_lunch',
  'lunch_detent',
  'detent_even',
  'even_schedul',
  'schedul_chang',
  'chang_work',
  'work_schedul',
  'schedul_-',
  '-_absolut',
  'absolut_afternoon',
  'afternoon_husband',
  'husband_away',
  'away_work',
  'work_work',
  'work_pm',
  'pm_need',
  'need_amanda',
  'amanda_regular',
  'regular_bu',
  'bu_nobodi',
  'nobodi_drop',
  'drop_home',
  'home_detent',
  'detent_finish',
  'finish_told',
  'told_late',
  'late_bu',
  'bu_remind',
  'remind_amanda',
  'amanda_take',
  'take_bu',
  'bu_told',
  'told_well',
  'well_sound',
  'sound_like',
  'like_natur',
  'natur_consequ',
  'consequ_averag',
  'averag_kid',
  'kid_refus',
  'refus_someth',
  'someth_rude',
  'rude_deserv',
  'deserv_long',
  'long_walk',
  'walk_home',
  'home_well',
  'well_detent',
  'detent_kid',
  'kid_could',
  'could_serious',
  'serious_harm',
  'harm_made',
  'made_walk',
  'walk_far',
  'far_road',
  'road_princip',
  'princip_told',
  'told_make',
  'make_excus',
  'excus_amanda',
  'amanda_need',
  'need_face',
  'face_consequ',
  'consequ_technic',
  'technic_need',
  'need_give',
  'give_permiss',
  'permiss_-',
  '-_make',
  'make_awar',
  'awar_agre',
  'agre_amanda',
  'amanda_need',
  'need_face',
  'face_consequ',
  'consequ_languag',
  'languag_~~she',
  '~~she_ground',
  'ground_weekend~~',
  'weekend~~_serv',
  'serv_lunch',
  'lunch_detent',
  'detent_school',
  'school_give',
  'give_apologis',
  'apologis_teacher',
  'teacher_specif',
  'specif_languag',
  'languag_-',
  '-_noth',
  'noth_els',
  'els_-',
  '-_put',
  'put_danger',
  'danger_right',
  'right_insist',
  'insist_-',
  '-_insist',
  'insist_take',
  'take_lunch',
  'lunch_break',
  'break_right',
  'right_drive',
  'drive_pull',
  'pull_rest',
  'rest_day',
  'day_edit',
  'edit_school',
  'school_call',
  'call_back',
  'back_said',
  'said_day',
  'day_lunch',
  'lunch_detent',
  'detent_-',
  '-_sister',
  'sister_live',
  'live_interst',
  'interst_think',
  'think_im',
  'im_one',
  'one_mum',
  'mum_told',
  'told_wrong',
  'wrong_henc',
  'henc_post',
  'post_aita',
  'aita_edit',
  'edit_updat',
  'updat_sinc',
  'sinc_unground',
  'unground_amanda',
  'amanda_apologis',
  'apologis_told',
  'told_act',
  'act_irrat',
  'irrat_stress',
  'stress_anger',
  'anger_school',
  'school_situat',
  'situat_also',
  'also_told',
  'told_regard',
  'regard_apolog',
  'apolog_second',
  'second_updat',
  'updat_ad',
  'ad_[',
  '[_updat',
  'updat_post',
  'post_]',
  ']_httpswwwredditcomuserta_aita_badmumcommentsvpcwsupdate_to_my_aita_post',
  'daughter_amanda_cerebr',
  'amanda_cerebr_palsi',
  'cerebr_palsi_abl',
  'palsi_abl_walk',
  'abl_walk_independ',
  'walk_independ_walk',
  'independ_walk_long',
  'walk_long_period',
  'long_period_time',
  'period_time_walk',
  'time_walk_anyth',
  'walk_anyth_even',
  'anyth_even_ground',
  'even_ground_without',
  'ground_without_assist',
  'without_assist_ie',
  'assist_ie_stair',
  'ie_stair_rail',
  'stair_rail_cant',
  'rail_cant_walk',
  'cant_walk_rockssandetc',
  'walk_rockssandetc_iep',
  'rockssandetc_iep_-',
  'iep_-_state',
  '-_state_pe',
  'state_pe_excurs',
  'pe_excurs_etc',
  'excurs_etc_relev',
  'etc_relev_note',
  'relev_note_amanda',
  'note_amanda_catch',
  'amanda_catch_bu',
  'catch_bu_home',
  'bu_home_-',
  'home_-_catch',
  '-_catch_specif',
  'catch_specif_rout',
  'specif_rout_rout',
  'rout_rout_school',
  'rout_school_offer',
  'school_offer_drop',
  'offer_drop_road',
  'drop_road_mile',
  'road_mile_away',
  'mile_away_footpath',
  'away_footpath_got',
  'footpath_got_call',
  'got_call_work',
  'call_work_today',
  'work_today_tell',
  'today_tell_amanda',
  'tell_amanda_spoken',
  'amanda_spoken_quit',
  'spoken_quit_rude',
  'quit_rude_substitut',
  'rude_substitut_pe',
  'substitut_pe_gym',
  'pe_gym_teacher',
  'gym_teacher_tri',
  'teacher_tri_make',
  'tri_make_climb',
  'make_climb_rock',
  'climb_rock_wall',
  'rock_wall_school',
  'wall_school_appar',
  'school_appar_amanda',
  'appar_amanda_say',
  'amanda_say_cant',
  'say_cant_cerebr',
  'cant_cerebr_palsi',
  'cerebr_palsi_iep',
  'palsi_iep_anoth',
  'iep_anoth_child',
  'anoth_child_said',
  'child_said_yeah',
  'said_yeah_teacher',
  'yeah_teacher_believ',
  'teacher_believ_becam',
  'believ_becam_insist',
  'becam_insist_-',
  'insist_-_stand',
  '-_stand_amanda',
  'stand_amanda_told',
  'amanda_told_fuck',
  'told_fuck_repeat',
  'fuck_repeat_anyth',
  'repeat_anyth_fuck',
  'anyth_fuck_sent',
  'fuck_sent_offic',
  'sent_offic_handbook',
  'offic_handbook_type',
  'handbook_type_offenc',
  'type_offenc_day',
  'offenc_day_school',
  'day_school_detent',
  'school_detent_princip',
  'detent_princip_call',
  'princip_call_said',
  'call_said_absolut',
  'said_absolut_told',
  'absolut_told_welcom',
  'told_welcom_week',
  'welcom_week_worth',
  'week_worth_lunch',
  'worth_lunch_detent',
  'lunch_detent_even',
  'detent_even_schedul',
  'even_schedul_chang',
  'schedul_chang_work',
  'chang_work_schedul',
  'work_schedul_-',
  'schedul_-_absolut',
  '-_absolut_afternoon',
  'absolut_afternoon_husband',
  'afternoon_husband_away',
  'husband_away_work',
  'away_work_work',
  'work_work_pm',
  'work_pm_need',
  'pm_need_amanda',
  'need_amanda_regular',
  'amanda_regular_bu',
  'regular_bu_nobodi',
  'bu_nobodi_drop',
  'nobodi_drop_home',
  'drop_home_detent',
  'home_detent_finish',
  'detent_finish_told',
  'finish_told_late',
  'told_late_bu',
  'late_bu_remind',
  'bu_remind_amanda',
  'remind_amanda_take',
  'amanda_take_bu',
  'take_bu_told',
  'bu_told_well',
  'told_well_sound',
  'well_sound_like',
  'sound_like_natur',
  'like_natur_consequ',
  'natur_consequ_averag',
  'consequ_averag_kid',
  'averag_kid_refus',
  'kid_refus_someth',
  'refus_someth_rude',
  'someth_rude_deserv',
  'rude_deserv_long',
  'deserv_long_walk',
  'long_walk_home',
  'walk_home_well',
  'home_well_detent',
  'well_detent_kid',
  'detent_kid_could',
  'kid_could_serious',
  'could_serious_harm',
  'serious_harm_made',
  'harm_made_walk',
  'made_walk_far',
  'walk_far_road',
  'far_road_princip',
  'road_princip_told',
  'princip_told_make',
  'told_make_excus',
  'make_excus_amanda',
  'excus_amanda_need',
  'amanda_need_face',
  'need_face_consequ',
  'face_consequ_technic',
  'consequ_technic_need',
  'technic_need_give',
  'need_give_permiss',
  'give_permiss_-',
  'permiss_-_make',
  '-_make_awar',
  'make_awar_agre',
  'awar_agre_amanda',
  'agre_amanda_need',
  'amanda_need_face',
  'need_face_consequ',
  'face_consequ_languag',
  'consequ_languag_~~she',
  'languag_~~she_ground',
  '~~she_ground_weekend~~',
  'ground_weekend~~_serv',
  'weekend~~_serv_lunch',
  'serv_lunch_detent',
  'lunch_detent_school',
  'detent_school_give',
  'school_give_apologis',
  'give_apologis_teacher',
  'apologis_teacher_specif',
  'teacher_specif_languag',
  'specif_languag_-',
  'languag_-_noth',
  '-_noth_els',
  'noth_els_-',
  'els_-_put',
  '-_put_danger',
  'put_danger_right',
  'danger_right_insist',
  'right_insist_-',
  'insist_-_insist',
  '-_insist_take',
  'insist_take_lunch',
  'take_lunch_break',
  'lunch_break_right',
  'break_right_drive',
  'right_drive_pull',
  'drive_pull_rest',
  'pull_rest_day',
  'rest_day_edit',
  'day_edit_school',
  'edit_school_call',
  'school_call_back',
  'call_back_said',
  'back_said_day',
  'said_day_lunch',
  'day_lunch_detent',
  'lunch_detent_-',
  'detent_-_sister',
  '-_sister_live',
  'sister_live_interst',
  'live_interst_think',
  'interst_think_im',
  'think_im_one',
  'im_one_mum',
  'one_mum_told',
  'mum_told_wrong',
  'told_wrong_henc',
  'wrong_henc_post',
  'henc_post_aita',
  'post_aita_edit',
  'aita_edit_updat',
  'edit_updat_sinc',
  'updat_sinc_unground',
  'sinc_unground_amanda',
  'unground_amanda_apologis',
  'amanda_apologis_told',
  'apologis_told_act',
  'told_act_irrat',
  'act_irrat_stress',
  'irrat_stress_anger',
  'stress_anger_school',
  'anger_school_situat',
  'school_situat_also',
  'situat_also_told',
  'also_told_regard',
  'told_regard_apolog',
  'regard_apolog_second',
  'apolog_second_updat',
  'second_updat_ad',
  'updat_ad_[',
  'ad_[_updat',
  '[_updat_post',
  'updat_post_]',
  'post_]_httpswwwredditcomuserta_aita_badmumcommentsvpcwsupdate_to_my_aita_post'],
 ['singl',
  'woman',
  'earli',
  'make',
  'live',
  'write',
  'self-publish',
  'adult',
  'fiction',
  'adult',
  'fiction',
  'mean',
  'adult',
  'fiction',
  'major',
  '‘',
  'plot',
  'steami',
  'typic',
  'tell',
  'peopl',
  'write',
  'tell',
  'write',
  'book',
  'live',
  'pen',
  'name',
  'question',
  'write',
  'abil',
  'editor',
  'correct',
  'mistak',
  'hide',
  'per',
  'se',
  'tell',
  'everyon',
  'meet',
  'live',
  'none',
  'neighbour',
  'knew',
  'bunch',
  'friend',
  'live',
  'hous',
  'alon',
  'pretti',
  'much',
  'neighbour',
  'either',
  'young',
  'famili',
  'retir',
  'coupl',
  'next',
  'door',
  'neighbour',
  'young',
  'coupl',
  'weve',
  'polit',
  'close',
  'anyth',
  'late',
  'husband',
  'let',
  'call',
  'roger',
  'becam',
  'friendli',
  'toward',
  'tri',
  'ignor',
  'get',
  'flirti',
  'like',
  'start',
  'avoid',
  'bbq',
  'bank',
  'holiday',
  'weekend',
  'take',
  'rubbish',
  'put',
  'bin',
  'roger',
  'look',
  'wave',
  '‘',
  'whisper',
  'someth',
  'friend',
  'watch',
  'care',
  'incred',
  'creepi',
  'way',
  'garden',
  'saw',
  'roger',
  'wife',
  'dalia',
  'leav',
  'hous',
  'friend',
  'look',
  'disgust',
  'whisper',
  'someth',
  'weird',
  'hurri',
  'back',
  'insid',
  'next',
  'morn',
  'found',
  'religi',
  'leaflet',
  'put',
  'letter',
  'box',
  'print',
  'normal',
  'printer',
  'paper',
  'warn',
  'lust',
  'behaviour',
  'lead',
  'hell',
  'etc',
  'threw',
  'away',
  'kept',
  'find',
  'similar',
  'leaflet',
  'put',
  'letter',
  'box',
  'next',
  'week',
  'sinc',
  'work',
  'home',
  'decid',
  'see',
  'leav',
  'leaflet',
  'surpris',
  'dalia',
  'decid',
  'confront',
  'ask',
  'stop',
  'put',
  'religi',
  'leaflet',
  'door',
  'despit',
  'polit',
  'happi',
  'told',
  'rethink',
  'life',
  'write',
  'disgust',
  'pretti',
  'vanilla',
  'found',
  'husband',
  'read',
  'night',
  'imagin',
  'kept',
  'go',
  'go',
  'burn',
  'hell',
  'moral',
  'etc',
  'well',
  'told',
  'stay',
  'away',
  'discuss',
  'husband',
  'close',
  'door',
  'face',
  'know',
  'someon',
  'told',
  'live',
  'day',
  'later',
  'found',
  'word',
  '‘',
  'sl',
  '*',
  'paint',
  'door',
  'day',
  'later',
  'caught',
  'key',
  'car',
  'almost',
  'done',
  'word',
  '‘',
  'wh',
  '*',
  'well',
  'call',
  'polic',
  'sinc',
  'instal',
  'camera',
  '‘',
  'sl',
  '*',
  'incid',
  'taken',
  'court',
  'key',
  'car',
  'talk',
  'neighbour',
  'ask',
  'polic',
  'told',
  'went',
  'overboard',
  'dalia',
  'clearli',
  'insecur',
  'love',
  'woman',
  'great',
  'mother',
  'talk',
  'instead',
  'call',
  'polic',
  'give',
  'chanc',
  'chang',
  'behaviour',
  'aita',
  'call',
  'polic',
  'give',
  'dalia',
  'chanc',
  'singl_woman',
  'woman_earli',
  'earli_make',
  'make_live',
  'live_write',
  'write_self-publish',
  'self-publish_adult',
  'adult_fiction',
  'fiction_adult',
  'adult_fiction',
  'fiction_mean',
  'mean_adult',
  'adult_fiction',
  'fiction_major',
  'major_‘',
  '‘_plot',
  'plot_steami',
  'steami_typic',
  'typic_tell',
  'tell_peopl',
  'peopl_write',
  'write_tell',
  'tell_write',
  'write_book',
  'book_live',
  'live_pen',
  'pen_name',
  'name_question',
  'question_write',
  'write_abil',
  'abil_editor',
  'editor_correct',
  'correct_mistak',
  'mistak_hide',
  'hide_per',
  'per_se',
  'se_tell',
  'tell_everyon',
  'everyon_meet',
  'meet_live',
  'live_none',
  'none_neighbour',
  'neighbour_knew',
  'knew_bunch',
  'bunch_friend',
  'friend_live',
  'live_hous',
  'hous_alon',
  'alon_pretti',
  'pretti_much',
  'much_neighbour',
  'neighbour_either',
  'either_young',
  'young_famili',
  'famili_retir',
  'retir_coupl',
  'coupl_next',
  'next_door',
  'door_neighbour',
  'neighbour_young',
  'young_coupl',
  'coupl_weve',
  'weve_polit',
  'polit_close',
  'close_anyth',
  'anyth_late',
  'late_husband',
  'husband_let',
  'let_call',
  'call_roger',
  'roger_becam',
  'becam_friendli',
  'friendli_toward',
  'toward_tri',
  'tri_ignor',
  'ignor_get',
  'get_flirti',
  'flirti_like',
  'like_start',
  'start_avoid',
  'avoid_bbq',
  'bbq_bank',
  'bank_holiday',
  'holiday_weekend',
  'weekend_take',
  'take_rubbish',
  'rubbish_put',
  'put_bin',
  'bin_roger',
  'roger_look',
  'look_wave',
  'wave_‘',
  '‘_whisper',
  'whisper_someth',
  'someth_friend',
  'friend_watch',
  'watch_care',
  'care_incred',
  'incred_creepi',
  'creepi_way',
  'way_garden',
  'garden_saw',
  'saw_roger',
  'roger_wife',
  'wife_dalia',
  'dalia_leav',
  'leav_hous',
  'hous_friend',
  'friend_look',
  'look_disgust',
  'disgust_whisper',
  'whisper_someth',
  'someth_weird',
  'weird_hurri',
  'hurri_back',
  'back_insid',
  'insid_next',
  'next_morn',
  'morn_found',
  'found_religi',
  'religi_leaflet',
  'leaflet_put',
  'put_letter',
  'letter_box',
  'box_print',
  'print_normal',
  'normal_printer',
  'printer_paper',
  'paper_warn',
  'warn_lust',
  'lust_behaviour',
  'behaviour_lead',
  'lead_hell',
  'hell_etc',
  'etc_threw',
  'threw_away',
  'away_kept',
  'kept_find',
  'find_similar',
  'similar_leaflet',
  'leaflet_put',
  'put_letter',
  'letter_box',
  'box_next',
  'next_week',
  'week_sinc',
  'sinc_work',
  'work_home',
  'home_decid',
  'decid_see',
  'see_leav',
  'leav_leaflet',
  'leaflet_surpris',
  'surpris_dalia',
  'dalia_decid',
  'decid_confront',
  'confront_ask',
  'ask_stop',
  'stop_put',
  'put_religi',
  'religi_leaflet',
  'leaflet_door',
  'door_despit',
  'despit_polit',
  'polit_happi',
  'happi_told',
  'told_rethink',
  'rethink_life',
  'life_write',
  'write_disgust',
  'disgust_pretti',
  'pretti_vanilla',
  'vanilla_found',
  'found_husband',
  'husband_read',
  'read_night',
  'night_imagin',
  'imagin_kept',
  'kept_go',
  'go_go',
  'go_burn',
  'burn_hell',
  'hell_moral',
  'moral_etc',
  'etc_well',
  'well_told',
  'told_stay',
  'stay_away',
  'away_discuss',
  'discuss_husband',
  'husband_close',
  'close_door',
  'door_face',
  'face_know',
  'know_someon',
  'someon_told',
  'told_live',
  'live_day',
  'day_later',
  'later_found',
  'found_word',
  'word_‘',
  '‘_sl',
  'sl_*',
  '*_paint',
  'paint_door',
  'door_day',
  'day_later',
  'later_caught',
  'caught_key',
  'key_car',
  'car_almost',
  'almost_done',
  'done_word',
  'word_‘',
  '‘_wh',
  'wh_*',
  '*_well',
  'well_call',
  'call_polic',
  'polic_sinc',
  'sinc_instal',
  'instal_camera',
  'camera_‘',
  '‘_sl',
  'sl_*',
  '*_incid',
  'incid_taken',
  'taken_court',
  'court_key',
  'key_car',
  'car_talk',
  'talk_neighbour',
  'neighbour_ask',
  'ask_polic',
  'polic_told',
  'told_went',
  'went_overboard',
  'overboard_dalia',
  'dalia_clearli',
  'clearli_insecur',
  'insecur_love',
  'love_woman',
  'woman_great',
  'great_mother',
  'mother_talk',
  'talk_instead',
  'instead_call',
  'call_polic',
  'polic_give',
  'give_chanc',
  'chanc_chang',
  'chang_behaviour',
  'behaviour_aita',
  'aita_call',
  'call_polic',
  'polic_give',
  'give_dalia',
  'dalia_chanc',
  'singl_woman_earli',
  'woman_earli_make',
  'earli_make_live',
  'make_live_write',
  'live_write_self-publish',
  'write_self-publish_adult',
  'self-publish_adult_fiction',
  'adult_fiction_adult',
  'fiction_adult_fiction',
  'adult_fiction_mean',
  'fiction_mean_adult',
  'mean_adult_fiction',
  'adult_fiction_major',
  'fiction_major_‘',
  'major_‘_plot',
  '‘_plot_steami',
  'plot_steami_typic',
  'steami_typic_tell',
  'typic_tell_peopl',
  'tell_peopl_write',
  'peopl_write_tell',
  'write_tell_write',
  'tell_write_book',
  'write_book_live',
  'book_live_pen',
  'live_pen_name',
  'pen_name_question',
  'name_question_write',
  'question_write_abil',
  'write_abil_editor',
  'abil_editor_correct',
  'editor_correct_mistak',
  'correct_mistak_hide',
  'mistak_hide_per',
  'hide_per_se',
  'per_se_tell',
  'se_tell_everyon',
  'tell_everyon_meet',
  'everyon_meet_live',
  'meet_live_none',
  'live_none_neighbour',
  'none_neighbour_knew',
  'neighbour_knew_bunch',
  'knew_bunch_friend',
  'bunch_friend_live',
  'friend_live_hous',
  'live_hous_alon',
  'hous_alon_pretti',
  'alon_pretti_much',
  'pretti_much_neighbour',
  'much_neighbour_either',
  'neighbour_either_young',
  'either_young_famili',
  'young_famili_retir',
  'famili_retir_coupl',
  'retir_coupl_next',
  'coupl_next_door',
  'next_door_neighbour',
  'door_neighbour_young',
  'neighbour_young_coupl',
  'young_coupl_weve',
  'coupl_weve_polit',
  'weve_polit_close',
  'polit_close_anyth',
  'close_anyth_late',
  'anyth_late_husband',
  'late_husband_let',
  'husband_let_call',
  'let_call_roger',
  'call_roger_becam',
  'roger_becam_friendli',
  'becam_friendli_toward',
  'friendli_toward_tri',
  'toward_tri_ignor',
  'tri_ignor_get',
  'ignor_get_flirti',
  'get_flirti_like',
  'flirti_like_start',
  'like_start_avoid',
  'start_avoid_bbq',
  'avoid_bbq_bank',
  'bbq_bank_holiday',
  'bank_holiday_weekend',
  'holiday_weekend_take',
  'weekend_take_rubbish',
  'take_rubbish_put',
  'rubbish_put_bin',
  'put_bin_roger',
  'bin_roger_look',
  'roger_look_wave',
  'look_wave_‘',
  'wave_‘_whisper',
  '‘_whisper_someth',
  'whisper_someth_friend',
  'someth_friend_watch',
  'friend_watch_care',
  'watch_care_incred',
  'care_incred_creepi',
  'incred_creepi_way',
  'creepi_way_garden',
  'way_garden_saw',
  'garden_saw_roger',
  'saw_roger_wife',
  'roger_wife_dalia',
  'wife_dalia_leav',
  'dalia_leav_hous',
  'leav_hous_friend',
  'hous_friend_look',
  'friend_look_disgust',
  'look_disgust_whisper',
  'disgust_whisper_someth',
  'whisper_someth_weird',
  'someth_weird_hurri',
  'weird_hurri_back',
  'hurri_back_insid',
  'back_insid_next',
  'insid_next_morn',
  'next_morn_found',
  'morn_found_religi',
  'found_religi_leaflet',
  'religi_leaflet_put',
  'leaflet_put_letter',
  'put_letter_box',
  'letter_box_print',
  'box_print_normal',
  'print_normal_printer',
  'normal_printer_paper',
  'printer_paper_warn',
  'paper_warn_lust',
  'warn_lust_behaviour',
  'lust_behaviour_lead',
  'behaviour_lead_hell',
  'lead_hell_etc',
  'hell_etc_threw',
  'etc_threw_away',
  'threw_away_kept',
  'away_kept_find',
  'kept_find_similar',
  'find_similar_leaflet',
  'similar_leaflet_put',
  'leaflet_put_letter',
  'put_letter_box',
  'letter_box_next',
  'box_next_week',
  'next_week_sinc',
  'week_sinc_work',
  'sinc_work_home',
  'work_home_decid',
  'home_decid_see',
  'decid_see_leav',
  'see_leav_leaflet',
  'leav_leaflet_surpris',
  'leaflet_surpris_dalia',
  'surpris_dalia_decid',
  'dalia_decid_confront',
  'decid_confront_ask',
  'confront_ask_stop',
  'ask_stop_put',
  'stop_put_religi',
  'put_religi_leaflet',
  'religi_leaflet_door',
  'leaflet_door_despit',
  'door_despit_polit',
  'despit_polit_happi',
  'polit_happi_told',
  'happi_told_rethink',
  'told_rethink_life',
  'rethink_life_write',
  'life_write_disgust',
  'write_disgust_pretti',
  'disgust_pretti_vanilla',
  'pretti_vanilla_found',
  'vanilla_found_husband',
  'found_husband_read',
  'husband_read_night',
  'read_night_imagin',
  'night_imagin_kept',
  'imagin_kept_go',
  'kept_go_go',
  'go_go_burn',
  'go_burn_hell',
  'burn_hell_moral',
  'hell_moral_etc',
  'moral_etc_well',
  'etc_well_told',
  'well_told_stay',
  'told_stay_away',
  'stay_away_discuss',
  'away_discuss_husband',
  'discuss_husband_close',
  'husband_close_door',
  'close_door_face',
  'door_face_know',
  'face_know_someon',
  'know_someon_told',
  'someon_told_live',
  'told_live_day',
  'live_day_later',
  'day_later_found',
  'later_found_word',
  'found_word_‘',
  'word_‘_sl',
  '‘_sl_*',
  'sl_*_paint',
  '*_paint_door',
  'paint_door_day',
  'door_day_later',
  'day_later_caught',
  'later_caught_key',
  'caught_key_car',
  'key_car_almost',
  'car_almost_done',
  'almost_done_word',
  'done_word_‘',
  'word_‘_wh',
  '‘_wh_*',
  'wh_*_well',
  '*_well_call',
  'well_call_polic',
  'call_polic_sinc',
  'polic_sinc_instal',
  'sinc_instal_camera',
  'instal_camera_‘',
  'camera_‘_sl',
  '‘_sl_*',
  'sl_*_incid',
  '*_incid_taken',
  'incid_taken_court',
  'taken_court_key',
  'court_key_car',
  'key_car_talk',
  'car_talk_neighbour',
  'talk_neighbour_ask',
  'neighbour_ask_polic',
  'ask_polic_told',
  'polic_told_went',
  'told_went_overboard',
  'went_overboard_dalia',
  'overboard_dalia_clearli',
  'dalia_clearli_insecur',
  'clearli_insecur_love',
  'insecur_love_woman',
  'love_woman_great',
  'woman_great_mother',
  'great_mother_talk',
  'mother_talk_instead',
  'talk_instead_call',
  'instead_call_polic',
  'call_polic_give',
  'polic_give_chanc',
  'give_chanc_chang',
  'chanc_chang_behaviour',
  'chang_behaviour_aita',
  'behaviour_aita_call',
  'aita_call_polic',
  'call_polic_give',
  'polic_give_dalia',
  'give_dalia_chanc'],
 ['year',
  'old',
  'daughter',
  'love',
  'frost',
  'everi',
  'week',
  'buy',
  'cupcak',
  'wife',
  'alway',
  'eat',
  'frost',
  'past',
  'week',
  'decid',
  'eat',
  'cupcak',
  'go',
  'insid',
  'ask',
  'cupcak',
  'told',
  'like',
  'cupcak',
  'anymor',
  'bought',
  'two',
  'work',
  'last',
  'night',
  'enjoy',
  'cupcak',
  'go',
  'insid',
  'caught',
  'ran',
  'mom',
  'tell',
  'much',
  'terribl',
  'dad',
  'steal',
  'frost',
  'week',
  'sulk',
  'wife',
  'think',
  'im',
  'ah',
  'im',
  'act',
  'childish',
  'let',
  'easi',
  'say',
  'never',
  'given',
  'frost',
  'aita',
  'edit',
  'everyon',
  'take',
  'serious',
  'lol',
  'daughter',
  'entitl',
  'spoil',
  'brat',
  'honestli',
  'think',
  'even',
  'love',
  'frost',
  'much',
  'annoy',
  'made',
  'post',
  'wife',
  'like',
  'sub',
  'want',
  'show',
  'im',
  'ah',
  'edit',
  'lot',
  'happen',
  'sinc',
  'post',
  'wife',
  'get',
  'divorc',
  'say',
  'cant',
  'live',
  'liar',
  'cp',
  'came',
  'home',
  'take',
  'child',
  'away',
  'said',
  'terribl',
  'parent',
  'let',
  'child',
  'eat',
  'frost',
  'time',
  'got',
  'daughter',
  'home',
  'cop',
  'came',
  'arrest',
  'steal',
  'car',
  'said',
  'frost',
  'thiev',
  'alway',
  'becom',
  'car',
  'thiev',
  'need',
  'wait',
  'go',
  'jail',
  'asap',
  'got',
  'call',
  'said',
  'go',
  'nc',
  'lie',
  'cant',
  'trust',
  'anymor',
  'meanwhil',
  'get',
  'call',
  'friend',
  'tell',
  'us',
  'horror',
  'stori',
  'daughter',
  'bulli',
  'life',
  'ruin',
  'cupcak',
  'nahhh',
  'lol',
  'daughter',
  'seriou',
  'convers',
  'problem',
  'came',
  'agreement',
  'said',
  'shell',
  'stop',
  'steal',
  'frost',
  'stop',
  'steal',
  'chip',
  'good',
  'xd',
  'edit',
  'peopl',
  'clearli',
  'realiz',
  'second',
  'edit',
  'joke',
  'keep',
  'get',
  'happen',
  'fake',
  'messag',
  'yeah',
  'genius',
  'right',
  'year_old',
  'old_daughter',
  'daughter_love',
  'love_frost',
  'frost_everi',
  'everi_week',
  'week_buy',
  'buy_cupcak',
  'cupcak_wife',
  'wife_alway',
  'alway_eat',
  'eat_frost',
  'frost_past',
  'past_week',
  'week_decid',
  'decid_eat',
  'eat_cupcak',
  'cupcak_go',
  'go_insid',
  'insid_ask',
  'ask_cupcak',
  'cupcak_told',
  'told_like',
  'like_cupcak',
  'cupcak_anymor',
  'anymor_bought',
  'bought_two',
  'two_work',
  'work_last',
  'last_night',
  'night_enjoy',
  'enjoy_cupcak',
  'cupcak_go',
  'go_insid',
  'insid_caught',
  'caught_ran',
  'ran_mom',
  'mom_tell',
  'tell_much',
  'much_terribl',
  'terribl_dad',
  'dad_steal',
  'steal_frost',
  'frost_week',
  'week_sulk',
  'sulk_wife',
  'wife_think',
  'think_im',
  'im_ah',
  'ah_im',
  'im_act',
  'act_childish',
  'childish_let',
  'let_easi',
  'easi_say',
  'say_never',
  'never_given',
  'given_frost',
  'frost_aita',
  'aita_edit',
  'edit_everyon',
  'everyon_take',
  'take_serious',
  'serious_lol',
  'lol_daughter',
  'daughter_entitl',
  'entitl_spoil',
  'spoil_brat',
  'brat_honestli',
  'honestli_think',
  'think_even',
  'even_love',
  'love_frost',
  'frost_much',
  'much_annoy',
  'annoy_made',
  'made_post',
  'post_wife',
  'wife_like',
  'like_sub',
  'sub_want',
  'want_show',
  'show_im',
  'im_ah',
  'ah_edit',
  'edit_lot',
  'lot_happen',
  'happen_sinc',
  'sinc_post',
  'post_wife',
  'wife_get',
  'get_divorc',
  'divorc_say',
  'say_cant',
  'cant_live',
  'live_liar',
  'liar_cp',
  'cp_came',
  'came_home',
  'home_take',
  'take_child',
  'child_away',
  'away_said',
  'said_terribl',
  'terribl_parent',
  'parent_let',
  'let_child',
  'child_eat',
  'eat_frost',
  'frost_time',
  'time_got',
  'got_daughter',
  'daughter_home',
  'home_cop',
  'cop_came',
  'came_arrest',
  'arrest_steal',
  'steal_car',
  'car_said',
  'said_frost',
  'frost_thiev',
  'thiev_alway',
  'alway_becom',
  'becom_car',
  'car_thiev',
  'thiev_need',
  'need_wait',
  'wait_go',
  'go_jail',
  'jail_asap',
  'asap_got',
  'got_call',
  'call_said',
  'said_go',
  'go_nc',
  'nc_lie',
  'lie_cant',
  'cant_trust',
  'trust_anymor',
  'anymor_meanwhil',
  'meanwhil_get',
  'get_call',
  'call_friend',
  'friend_tell',
  'tell_us',
  'us_horror',
  'horror_stori',
  'stori_daughter',
  'daughter_bulli',
  'bulli_life',
  'life_ruin',
  'ruin_cupcak',
  'cupcak_nahhh',
  'nahhh_lol',
  'lol_daughter',
  'daughter_seriou',
  'seriou_convers',
  'convers_problem',
  'problem_came',
  'came_agreement',
  'agreement_said',
  'said_shell',
  'shell_stop',
  'stop_steal',
  'steal_frost',
  'frost_stop',
  'stop_steal',
  'steal_chip',
  'chip_good',
  'good_xd',
  'xd_edit',
  'edit_peopl',
  'peopl_clearli',
  'clearli_realiz',
  'realiz_second',
  'second_edit',
  'edit_joke',
  'joke_keep',
  'keep_get',
  'get_happen',
  'happen_fake',
  'fake_messag',
  'messag_yeah',
  'yeah_genius',
  'genius_right',
  'year_old_daughter',
  'old_daughter_love',
  'daughter_love_frost',
  'love_frost_everi',
  'frost_everi_week',
  'everi_week_buy',
  'week_buy_cupcak',
  'buy_cupcak_wife',
  'cupcak_wife_alway',
  'wife_alway_eat',
  'alway_eat_frost',
  'eat_frost_past',
  'frost_past_week',
  'past_week_decid',
  'week_decid_eat',
  'decid_eat_cupcak',
  'eat_cupcak_go',
  'cupcak_go_insid',
  'go_insid_ask',
  'insid_ask_cupcak',
  'ask_cupcak_told',
  'cupcak_told_like',
  'told_like_cupcak',
  'like_cupcak_anymor',
  'cupcak_anymor_bought',
  'anymor_bought_two',
  'bought_two_work',
  'two_work_last',
  'work_last_night',
  'last_night_enjoy',
  'night_enjoy_cupcak',
  'enjoy_cupcak_go',
  'cupcak_go_insid',
  'go_insid_caught',
  'insid_caught_ran',
  'caught_ran_mom',
  'ran_mom_tell',
  'mom_tell_much',
  'tell_much_terribl',
  'much_terribl_dad',
  'terribl_dad_steal',
  'dad_steal_frost',
  'steal_frost_week',
  'frost_week_sulk',
  'week_sulk_wife',
  'sulk_wife_think',
  'wife_think_im',
  'think_im_ah',
  'im_ah_im',
  'ah_im_act',
  'im_act_childish',
  'act_childish_let',
  'childish_let_easi',
  'let_easi_say',
  'easi_say_never',
  'say_never_given',
  'never_given_frost',
  'given_frost_aita',
  'frost_aita_edit',
  'aita_edit_everyon',
  'edit_everyon_take',
  'everyon_take_serious',
  'take_serious_lol',
  'serious_lol_daughter',
  'lol_daughter_entitl',
  'daughter_entitl_spoil',
  'entitl_spoil_brat',
  'spoil_brat_honestli',
  'brat_honestli_think',
  'honestli_think_even',
  'think_even_love',
  'even_love_frost',
  'love_frost_much',
  'frost_much_annoy',
  'much_annoy_made',
  'annoy_made_post',
  'made_post_wife',
  'post_wife_like',
  'wife_like_sub',
  'like_sub_want',
  'sub_want_show',
  'want_show_im',
  'show_im_ah',
  'im_ah_edit',
  'ah_edit_lot',
  'edit_lot_happen',
  'lot_happen_sinc',
  'happen_sinc_post',
  'sinc_post_wife',
  'post_wife_get',
  'wife_get_divorc',
  'get_divorc_say',
  'divorc_say_cant',
  'say_cant_live',
  'cant_live_liar',
  'live_liar_cp',
  'liar_cp_came',
  'cp_came_home',
  'came_home_take',
  'home_take_child',
  'take_child_away',
  'child_away_said',
  'away_said_terribl',
  'said_terribl_parent',
  'terribl_parent_let',
  'parent_let_child',
  'let_child_eat',
  'child_eat_frost',
  'eat_frost_time',
  'frost_time_got',
  'time_got_daughter',
  'got_daughter_home',
  'daughter_home_cop',
  'home_cop_came',
  'cop_came_arrest',
  'came_arrest_steal',
  'arrest_steal_car',
  'steal_car_said',
  'car_said_frost',
  'said_frost_thiev',
  'frost_thiev_alway',
  'thiev_alway_becom',
  'alway_becom_car',
  'becom_car_thiev',
  'car_thiev_need',
  'thiev_need_wait',
  'need_wait_go',
  'wait_go_jail',
  'go_jail_asap',
  'jail_asap_got',
  'asap_got_call',
  'got_call_said',
  'call_said_go',
  'said_go_nc',
  'go_nc_lie',
  'nc_lie_cant',
  'lie_cant_trust',
  'cant_trust_anymor',
  'trust_anymor_meanwhil',
  'anymor_meanwhil_get',
  'meanwhil_get_call',
  'get_call_friend',
  'call_friend_tell',
  'friend_tell_us',
  'tell_us_horror',
  'us_horror_stori',
  'horror_stori_daughter',
  'stori_daughter_bulli',
  'daughter_bulli_life',
  'bulli_life_ruin',
  'life_ruin_cupcak',
  'ruin_cupcak_nahhh',
  'cupcak_nahhh_lol',
  'nahhh_lol_daughter',
  'lol_daughter_seriou',
  'daughter_seriou_convers',
  'seriou_convers_problem',
  'convers_problem_came',
  'problem_came_agreement',
  'came_agreement_said',
  'agreement_said_shell',
  'said_shell_stop',
  'shell_stop_steal',
  'stop_steal_frost',
  'steal_frost_stop',
  'frost_stop_steal',
  'stop_steal_chip',
  'steal_chip_good',
  'chip_good_xd',
  'good_xd_edit',
  'xd_edit_peopl',
  'edit_peopl_clearli',
  'peopl_clearli_realiz',
  'clearli_realiz_second',
  'realiz_second_edit',
  'second_edit_joke',
  'edit_joke_keep',
  'joke_keep_get',
  'keep_get_happen',
  'get_happen_fake',
  'happen_fake_messag',
  'fake_messag_yeah',
  'messag_yeah_genius',
  'yeah_genius_right'],
 ['sister',
  'brought',
  'new',
  'boyfriend',
  'parent',
  'hous',
  'meet',
  'first',
  'time',
  'wife',
  'came',
  'well',
  'met',
  'dude',
  'seem',
  'ok-ish',
  'first',
  'start',
  'ask',
  'weird',
  'person',
  'question',
  'wife',
  'breast',
  'cancer',
  'got',
  'singl',
  'mastectomi',
  'last',
  'year',
  'told',
  'stori',
  'sister',
  'boyfriend',
  'like',
  'oh',
  'stare',
  'wife',
  'briefli',
  'play',
  'said',
  'without',
  'even',
  'ask',
  'pretti',
  'much',
  'tell',
  'one',
  'got',
  'blow',
  'floor',
  'wife',
  'could',
  'bare',
  'keep',
  'straight',
  'face',
  'lie',
  'could',
  'leav',
  'tabl',
  'caus',
  'liter',
  'tear',
  'look',
  'dude',
  'said',
  'seriou',
  'said',
  'joke',
  'bro',
  'start',
  'ask',
  'explain',
  'joke',
  'stare',
  'ask',
  'explain',
  'detail',
  'still',
  'got',
  'answer',
  'sister',
  'ask',
  'stop',
  'clearli',
  'got',
  'uncomfort',
  'insist',
  'explain',
  'joke',
  'caus',
  'clearlymi',
  'wife',
  'get',
  'thing',
  'got',
  'awkward',
  'avoid',
  'eye',
  'contact',
  'stare',
  'entir',
  'time',
  'still',
  'insist',
  'ask',
  'explain',
  'joke',
  'right',
  'second',
  'later',
  'said',
  'need',
  'step',
  'outsid',
  'make',
  'phone',
  'call',
  'turn',
  'got',
  'car',
  'left',
  'sister',
  'meltdown',
  'scream',
  'berat',
  'treat',
  'boyfriend',
  'call',
  'hostl',
  'anger',
  'issu',
  'scare',
  'boyfriend',
  'parent',
  'hous',
  'told',
  'overstep',
  'made',
  'wife',
  'uncomfort',
  'point',
  'cri',
  'actual',
  'call',
  'wife',
  'princess',
  'said',
  'soft',
  'take',
  'teas',
  'argument',
  'parent',
  'interven',
  'took',
  'wife',
  'left',
  'dad',
  'call',
  'later',
  'said',
  'understood',
  'hurt',
  'wife',
  'felt',
  'sister',
  'boyfriend',
  'visit',
  'first',
  'time',
  'show',
  'hostil',
  'agress',
  'instead',
  'ignor',
  'encourag',
  'reach',
  'sister',
  'later',
  'talk',
  'declin',
  'aita',
  'edit',
  'sister',
  'wife',
  'histori',
  'sister',
  'tend',
  'see',
  'worst',
  'peopl',
  'wife',
  'announc',
  'diagnosi',
  'sister',
  'actual',
  'thought',
  'fake',
  'famili',
  'longer',
  'brought',
  'wife',
  'miscarriag',
  'month',
  'prior',
  'thought',
  'line',
  'apolog',
  'move',
  'sister',
  'think',
  'bad',
  'trait',
  'see',
  'boyfriend',
  'smoke',
  'habit',
  'say',
  'thatvotherwis',
  'perfect',
  'smfh',
  'sister_brought',
  'brought_new',
  'new_boyfriend',
  'boyfriend_parent',
  'parent_hous',
  'hous_meet',
  'meet_first',
  'first_time',
  'time_wife',
  'wife_came',
  'came_well',
  'well_met',
  'met_dude',
  'dude_seem',
  'seem_ok-ish',
  'ok-ish_first',
  'first_start',
  'start_ask',
  'ask_weird',
  'weird_person',
  'person_question',
  'question_wife',
  'wife_breast',
  'breast_cancer',
  'cancer_got',
  'got_singl',
  'singl_mastectomi',
  'mastectomi_last',
  'last_year',
  'year_told',
  'told_stori',
  'stori_sister',
  'sister_boyfriend',
  'boyfriend_like',
  'like_oh',
  'oh_stare',
  'stare_wife',
  'wife_briefli',
  'briefli_play',
  'play_said',
  'said_without',
  'without_even',
  'even_ask',
  'ask_pretti',
  'pretti_much',
  'much_tell',
  'tell_one',
  'one_got',
  'got_blow',
  'blow_floor',
  'floor_wife',
  'wife_could',
  'could_bare',
  'bare_keep',
  'keep_straight',
  'straight_face',
  'face_lie',
  'lie_could',
  'could_leav',
  'leav_tabl',
  'tabl_caus',
  'caus_liter',
  'liter_tear',
  'tear_look',
  'look_dude',
  'dude_said',
  'said_seriou',
  'seriou_said',
  'said_joke',
  'joke_bro',
  'bro_start',
  'start_ask',
  'ask_explain',
  'explain_joke',
  'joke_stare',
  'stare_ask',
  'ask_explain',
  'explain_detail',
  'detail_still',
  'still_got',
  'got_answer',
  'answer_sister',
  'sister_ask',
  'ask_stop',
  'stop_clearli',
  'clearli_got',
  'got_uncomfort',
  'uncomfort_insist',
  'insist_explain',
  'explain_joke',
  'joke_caus',
  'caus_clearlymi',
  'clearlymi_wife',
  'wife_get',
  'get_thing',
  'thing_got',
  'got_awkward',
  'awkward_avoid',
  'avoid_eye',
  'eye_contact',
  'contact_stare',
  'stare_entir',
  'entir_time',
  'time_still',
  'still_insist',
  'insist_ask',
  'ask_explain',
  'explain_joke',
  'joke_right',
  'right_second',
  'second_later',
  'later_said',
  'said_need',
  'need_step',
  'step_outsid',
  'outsid_make',
  'make_phone',
  'phone_call',
  'call_turn',
  'turn_got',
  'got_car',
  'car_left',
  'left_sister',
  'sister_meltdown',
  'meltdown_scream',
  'scream_berat',
  'berat_treat',
  'treat_boyfriend',
  'boyfriend_call',
  'call_hostl',
  'hostl_anger',
  'anger_issu',
  'issu_scare',
  'scare_boyfriend',
  'boyfriend_parent',
  'parent_hous',
  'hous_told',
  'told_overstep',
  'overstep_made',
  'made_wife',
  'wife_uncomfort',
  'uncomfort_point',
  'point_cri',
  'cri_actual',
  'actual_call',
  'call_wife',
  'wife_princess',
  'princess_said',
  'said_soft',
  'soft_take',
  'take_teas',
  'teas_argument',
  'argument_parent',
  'parent_interven',
  'interven_took',
  'took_wife',
  'wife_left',
  'left_dad',
  'dad_call',
  'call_later',
  'later_said',
  'said_understood',
  'understood_hurt',
  'hurt_wife',
  'wife_felt',
  'felt_sister',
  'sister_boyfriend',
  'boyfriend_visit',
  'visit_first',
  'first_time',
  'time_show',
  'show_hostil',
  'hostil_agress',
  'agress_instead',
  'instead_ignor',
  'ignor_encourag',
  'encourag_reach',
  'reach_sister',
  'sister_later',
  'later_talk',
  'talk_declin',
  'declin_aita',
  'aita_edit',
  'edit_sister',
  'sister_wife',
  'wife_histori',
  'histori_sister',
  'sister_tend',
  'tend_see',
  'see_worst',
  'worst_peopl',
  'peopl_wife',
  'wife_announc',
  'announc_diagnosi',
  'diagnosi_sister',
  'sister_actual',
  'actual_thought',
  'thought_fake',
  'fake_famili',
  'famili_longer',
  'longer_brought',
  'brought_wife',
  'wife_miscarriag',
  'miscarriag_month',
  'month_prior',
  'prior_thought',
  'thought_line',
  'line_apolog',
  'apolog_move',
  'move_sister',
  'sister_think',
  'think_bad',
  'bad_trait',
  'trait_see',
  'see_boyfriend',
  'boyfriend_smoke',
  'smoke_habit',
  'habit_say',
  'say_thatvotherwis',
  'thatvotherwis_perfect',
  'perfect_smfh',
  'sister_brought_new',
  'brought_new_boyfriend',
  'new_boyfriend_parent',
  'boyfriend_parent_hous',
  'parent_hous_meet',
  'hous_meet_first',
  'meet_first_time',
  'first_time_wife',
  'time_wife_came',
  'wife_came_well',
  'came_well_met',
  'well_met_dude',
  'met_dude_seem',
  'dude_seem_ok-ish',
  'seem_ok-ish_first',
  'ok-ish_first_start',
  'first_start_ask',
  'start_ask_weird',
  'ask_weird_person',
  'weird_person_question',
  'person_question_wife',
  'question_wife_breast',
  'wife_breast_cancer',
  'breast_cancer_got',
  'cancer_got_singl',
  'got_singl_mastectomi',
  'singl_mastectomi_last',
  'mastectomi_last_year',
  'last_year_told',
  'year_told_stori',
  'told_stori_sister',
  'stori_sister_boyfriend',
  'sister_boyfriend_like',
  'boyfriend_like_oh',
  'like_oh_stare',
  'oh_stare_wife',
  'stare_wife_briefli',
  'wife_briefli_play',
  'briefli_play_said',
  'play_said_without',
  'said_without_even',
  'without_even_ask',
  'even_ask_pretti',
  'ask_pretti_much',
  'pretti_much_tell',
  'much_tell_one',
  'tell_one_got',
  'one_got_blow',
  'got_blow_floor',
  'blow_floor_wife',
  'floor_wife_could',
  'wife_could_bare',
  'could_bare_keep',
  'bare_keep_straight',
  'keep_straight_face',
  'straight_face_lie',
  'face_lie_could',
  'lie_could_leav',
  'could_leav_tabl',
  'leav_tabl_caus',
  'tabl_caus_liter',
  'caus_liter_tear',
  'liter_tear_look',
  'tear_look_dude',
  'look_dude_said',
  'dude_said_seriou',
  'said_seriou_said',
  'seriou_said_joke',
  'said_joke_bro',
  'joke_bro_start',
  'bro_start_ask',
  'start_ask_explain',
  'ask_explain_joke',
  'explain_joke_stare',
  'joke_stare_ask',
  'stare_ask_explain',
  'ask_explain_detail',
  'explain_detail_still',
  'detail_still_got',
  'still_got_answer',
  'got_answer_sister',
  'answer_sister_ask',
  'sister_ask_stop',
  'ask_stop_clearli',
  'stop_clearli_got',
  'clearli_got_uncomfort',
  'got_uncomfort_insist',
  'uncomfort_insist_explain',
  'insist_explain_joke',
  'explain_joke_caus',
  'joke_caus_clearlymi',
  'caus_clearlymi_wife',
  'clearlymi_wife_get',
  'wife_get_thing',
  'get_thing_got',
  'thing_got_awkward',
  'got_awkward_avoid',
  'awkward_avoid_eye',
  'avoid_eye_contact',
  'eye_contact_stare',
  'contact_stare_entir',
  'stare_entir_time',
  'entir_time_still',
  'time_still_insist',
  'still_insist_ask',
  'insist_ask_explain',
  'ask_explain_joke',
  'explain_joke_right',
  'joke_right_second',
  'right_second_later',
  'second_later_said',
  'later_said_need',
  'said_need_step',
  'need_step_outsid',
  'step_outsid_make',
  'outsid_make_phone',
  'make_phone_call',
  'phone_call_turn',
  'call_turn_got',
  'turn_got_car',
  'got_car_left',
  'car_left_sister',
  'left_sister_meltdown',
  'sister_meltdown_scream',
  'meltdown_scream_berat',
  'scream_berat_treat',
  'berat_treat_boyfriend',
  'treat_boyfriend_call',
  'boyfriend_call_hostl',
  'call_hostl_anger',
  'hostl_anger_issu',
  'anger_issu_scare',
  'issu_scare_boyfriend',
  'scare_boyfriend_parent',
  'boyfriend_parent_hous',
  'parent_hous_told',
  'hous_told_overstep',
  'told_overstep_made',
  'overstep_made_wife',
  'made_wife_uncomfort',
  'wife_uncomfort_point',
  'uncomfort_point_cri',
  'point_cri_actual',
  'cri_actual_call',
  'actual_call_wife',
  'call_wife_princess',
  'wife_princess_said',
  'princess_said_soft',
  'said_soft_take',
  'soft_take_teas',
  'take_teas_argument',
  'teas_argument_parent',
  'argument_parent_interven',
  'parent_interven_took',
  'interven_took_wife',
  'took_wife_left',
  'wife_left_dad',
  'left_dad_call',
  'dad_call_later',
  'call_later_said',
  'later_said_understood',
  'said_understood_hurt',
  'understood_hurt_wife',
  'hurt_wife_felt',
  'wife_felt_sister',
  'felt_sister_boyfriend',
  'sister_boyfriend_visit',
  'boyfriend_visit_first',
  'visit_first_time',
  'first_time_show',
  'time_show_hostil',
  'show_hostil_agress',
  'hostil_agress_instead',
  'agress_instead_ignor',
  'instead_ignor_encourag',
  'ignor_encourag_reach',
  'encourag_reach_sister',
  'reach_sister_later',
  'sister_later_talk',
  'later_talk_declin',
  'talk_declin_aita',
  'declin_aita_edit',
  'aita_edit_sister',
  'edit_sister_wife',
  'sister_wife_histori',
  'wife_histori_sister',
  'histori_sister_tend',
  'sister_tend_see',
  'tend_see_worst',
  'see_worst_peopl',
  'worst_peopl_wife',
  'peopl_wife_announc',
  'wife_announc_diagnosi',
  'announc_diagnosi_sister',
  'diagnosi_sister_actual',
  'sister_actual_thought',
  'actual_thought_fake',
  'thought_fake_famili',
  'fake_famili_longer',
  'famili_longer_brought',
  'longer_brought_wife',
  'brought_wife_miscarriag',
  'wife_miscarriag_month',
  'miscarriag_month_prior',
  'month_prior_thought',
  'prior_thought_line',
  'thought_line_apolog',
  'line_apolog_move',
  'apolog_move_sister',
  'move_sister_think',
  'sister_think_bad',
  'think_bad_trait',
  'bad_trait_see',
  'trait_see_boyfriend',
  'see_boyfriend_smoke',
  'boyfriend_smoke_habit',
  'smoke_habit_say',
  'habit_say_thatvotherwis',
  'say_thatvotherwis_perfect',
  'thatvotherwis_perfect_smfh'],
 ['im',
  'son',
  'im',
  'divorc',
  'year',
  'ex',
  'remarri',
  'recent',
  'new',
  'husband',
  'jonathan',
  'black',
  'white',
  'ex',
  'expect',
  'babi',
  'togeth',
  'also',
  'teenag',
  'boy',
  'ex',
  'share',
  'custodi',
  'son',
  'spend',
  'time',
  'plase',
  'room',
  'privaci',
  'last',
  'weekend',
  'mom',
  'sunday',
  'call',
  'upset',
  'say',
  'come',
  'pick',
  'rush',
  'found',
  'got',
  'fight',
  'jonathan',
  'chore',
  'jonathan',
  'lock',
  'wifi',
  'ban',
  'video',
  'game',
  'chore',
  'ex',
  'also',
  'disciplin',
  'jonathan',
  'permiss',
  'son',
  'act',
  '-',
  'use',
  'method',
  'use',
  'son',
  'longtermseri',
  'punish',
  'cours',
  'decid',
  'ex',
  'video',
  'game',
  'today',
  'type',
  'thing',
  'total',
  'fine',
  'jonathan',
  'ex',
  'jonathan',
  'told',
  'son',
  'got',
  'upset',
  'punish',
  'told',
  'jonathan',
  '*',
  'ck',
  'jonathan',
  'told',
  'stop',
  'talk',
  'like',
  'son',
  'repli',
  'son',
  'ruin',
  'life',
  'get',
  'tell',
  'want',
  'take',
  'order',
  'anyway',
  'ask',
  'son',
  'true',
  'said',
  'ye',
  'actual',
  'call',
  'word',
  'well',
  'true',
  'lost',
  'told',
  'son',
  'ground',
  'whole',
  'month',
  'decemb',
  'ex',
  'agre',
  'obvious',
  'annoy',
  'angri',
  'ton',
  'plan',
  'friend',
  'said',
  'overreact',
  'one',
  'word',
  'unfair',
  'brother',
  'mom',
  'agre',
  'son',
  'say',
  'punish',
  'fit',
  'crime',
  'aita',
  'im_son',
  'son_im',
  'im_divorc',
  'divorc_year',
  'year_ex',
  'ex_remarri',
  'remarri_recent',
  'recent_new',
  'new_husband',
  'husband_jonathan',
  'jonathan_black',
  'black_white',
  'white_ex',
  'ex_expect',
  'expect_babi',
  'babi_togeth',
  'togeth_also',
  'also_teenag',
  'teenag_boy',
  'boy_ex',
  'ex_share',
  'share_custodi',
  'custodi_son',
  'son_spend',
  'spend_time',
  'time_plase',
  'plase_room',
  'room_privaci',
  'privaci_last',
  'last_weekend',
  'weekend_mom',
  'mom_sunday',
  'sunday_call',
  'call_upset',
  'upset_say',
  'say_come',
  'come_pick',
  'pick_rush',
  'rush_found',
  'found_got',
  'got_fight',
  'fight_jonathan',
  'jonathan_chore',
  'chore_jonathan',
  'jonathan_lock',
  'lock_wifi',
  'wifi_ban',
  'ban_video',
  'video_game',
  'game_chore',
  'chore_ex',
  'ex_also',
  'also_disciplin',
  'disciplin_jonathan',
  'jonathan_permiss',
  'permiss_son',
  'son_act',
  'act_-',
  '-_use',
  'use_method',
  'method_use',
  'use_son',
  'son_longtermseri',
  'longtermseri_punish',
  'punish_cours',
  'cours_decid',
  'decid_ex',
  'ex_video',
  'video_game',
  'game_today',
  'today_type',
  'type_thing',
  'thing_total',
  'total_fine',
  'fine_jonathan',
  'jonathan_ex',
  'ex_jonathan',
  'jonathan_told',
  'told_son',
  'son_got',
  'got_upset',
  'upset_punish',
  'punish_told',
  'told_jonathan',
  'jonathan_*',
  '*_ck',
  'ck_jonathan',
  'jonathan_told',
  'told_stop',
  'stop_talk',
  'talk_like',
  'like_son',
  'son_repli',
  'repli_son',
  'son_ruin',
  'ruin_life',
  'life_get',
  'get_tell',
  'tell_want',
  'want_take',
  'take_order',
  'order_anyway',
  'anyway_ask',
  'ask_son',
  'son_true',
  'true_said',
  'said_ye',
  'ye_actual',
  'actual_call',
  'call_word',
  'word_well',
  'well_true',
  'true_lost',
  'lost_told',
  'told_son',
  'son_ground',
  'ground_whole',
  'whole_month',
  'month_decemb',
  'decemb_ex',
  'ex_agre',
  'agre_obvious',
  'obvious_annoy',
  'annoy_angri',
  'angri_ton',
  'ton_plan',
  'plan_friend',
  'friend_said',
  'said_overreact',
  'overreact_one',
  'one_word',
  'word_unfair',
  'unfair_brother',
  'brother_mom',
  'mom_agre',
  'agre_son',
  'son_say',
  'say_punish',
  'punish_fit',
  'fit_crime',
  'crime_aita',
  'im_son_im',
  'son_im_divorc',
  'im_divorc_year',
  'divorc_year_ex',
  'year_ex_remarri',
  'ex_remarri_recent',
  'remarri_recent_new',
  'recent_new_husband',
  'new_husband_jonathan',
  'husband_jonathan_black',
  'jonathan_black_white',
  'black_white_ex',
  'white_ex_expect',
  'ex_expect_babi',
  'expect_babi_togeth',
  'babi_togeth_also',
  'togeth_also_teenag',
  'also_teenag_boy',
  'teenag_boy_ex',
  'boy_ex_share',
  'ex_share_custodi',
  'share_custodi_son',
  'custodi_son_spend',
  'son_spend_time',
  'spend_time_plase',
  'time_plase_room',
  'plase_room_privaci',
  'room_privaci_last',
  'privaci_last_weekend',
  'last_weekend_mom',
  'weekend_mom_sunday',
  'mom_sunday_call',
  'sunday_call_upset',
  'call_upset_say',
  'upset_say_come',
  'say_come_pick',
  'come_pick_rush',
  'pick_rush_found',
  'rush_found_got',
  'found_got_fight',
  'got_fight_jonathan',
  'fight_jonathan_chore',
  'jonathan_chore_jonathan',
  'chore_jonathan_lock',
  'jonathan_lock_wifi',
  'lock_wifi_ban',
  'wifi_ban_video',
  'ban_video_game',
  'video_game_chore',
  'game_chore_ex',
  'chore_ex_also',
  'ex_also_disciplin',
  'also_disciplin_jonathan',
  'disciplin_jonathan_permiss',
  'jonathan_permiss_son',
  'permiss_son_act',
  'son_act_-',
  'act_-_use',
  '-_use_method',
  'use_method_use',
  'method_use_son',
  'use_son_longtermseri',
  'son_longtermseri_punish',
  'longtermseri_punish_cours',
  'punish_cours_decid',
  'cours_decid_ex',
  'decid_ex_video',
  'ex_video_game',
  'video_game_today',
  'game_today_type',
  'today_type_thing',
  'type_thing_total',
  'thing_total_fine',
  'total_fine_jonathan',
  'fine_jonathan_ex',
  'jonathan_ex_jonathan',
  'ex_jonathan_told',
  'jonathan_told_son',
  'told_son_got',
  'son_got_upset',
  'got_upset_punish',
  'upset_punish_told',
  'punish_told_jonathan',
  'told_jonathan_*',
  'jonathan_*_ck',
  '*_ck_jonathan',
  'ck_jonathan_told',
  'jonathan_told_stop',
  'told_stop_talk',
  'stop_talk_like',
  'talk_like_son',
  'like_son_repli',
  'son_repli_son',
  'repli_son_ruin',
  'son_ruin_life',
  'ruin_life_get',
  'life_get_tell',
  'get_tell_want',
  'tell_want_take',
  'want_take_order',
  'take_order_anyway',
  'order_anyway_ask',
  'anyway_ask_son',
  'ask_son_true',
  'son_true_said',
  'true_said_ye',
  'said_ye_actual',
  'ye_actual_call',
  'actual_call_word',
  'call_word_well',
  'word_well_true',
  'well_true_lost',
  'true_lost_told',
  'lost_told_son',
  'told_son_ground',
  'son_ground_whole',
  'ground_whole_month',
  'whole_month_decemb',
  'month_decemb_ex',
  'decemb_ex_agre',
  'ex_agre_obvious',
  'agre_obvious_annoy',
  'obvious_annoy_angri',
  'annoy_angri_ton',
  'angri_ton_plan',
  'ton_plan_friend',
  'plan_friend_said',
  'friend_said_overreact',
  'said_overreact_one',
  'overreact_one_word',
  'one_word_unfair',
  'word_unfair_brother',
  'unfair_brother_mom',
  'brother_mom_agre',
  'mom_agre_son',
  'agre_son_say',
  'son_say_punish',
  'say_punish_fit',
  'punish_fit_crime',
  'fit_crime_aita'],
 ['im',
  'son',
  'graduat',
  'year',
  'highschool',
  'wife',
  'start',
  'colleg',
  'fund',
  'minut',
  'found',
  'pregnant',
  'sinc',
  'make',
  'good',
  'money',
  'mid',
  'figur',
  'colleg',
  'fund',
  'current',
  'almost',
  '$',
  'never',
  'told',
  'son',
  'life',
  'may',
  'guid',
  'decis',
  'good',
  'parent',
  'sinc',
  'still',
  'young',
  'let',
  'make',
  'decis',
  'also',
  'never',
  'expect',
  'academ',
  'excel',
  'forc',
  'sport',
  'artist',
  'activ',
  'graduat',
  'highschool',
  'said',
  'want',
  'go',
  'colleg',
  'said',
  'long',
  'sure',
  'could',
  'whatev',
  'want',
  'refus',
  'trade',
  'school',
  'also',
  'want',
  'work',
  'us',
  'busi',
  'said',
  'plan',
  'use',
  'colleg',
  'fund',
  'start',
  'busi',
  'said',
  'allow',
  'take',
  'busi',
  'manag',
  'account',
  'law',
  'class',
  'nearbi',
  'commun',
  'colleg',
  'said',
  'would',
  'pay',
  'pocket',
  'fund',
  'would',
  'expect',
  'well',
  'made',
  'busi',
  'plan',
  'would',
  'give',
  'money',
  'wife',
  'agre',
  '%',
  'call',
  'us',
  'ah',
  'hold',
  'colleg',
  'fund',
  'hostag',
  'make',
  'want',
  'think',
  'best',
  'make',
  'sure',
  'busi',
  'succe',
  'aita',
  'edit',
  'oh',
  'wow',
  'log',
  'minut',
  'post',
  'log',
  'back',
  'expect',
  'mayb',
  'comment',
  'thank',
  'everyon',
  'read',
  'everi',
  'singl',
  'one',
  'decid',
  'answer',
  'relev',
  'question',
  'money',
  'wife',
  'name',
  'peopl',
  'said',
  'discuss',
  'earlier',
  'well',
  'earlier',
  'said',
  'want',
  'take',
  'coupl',
  'year',
  'work',
  'go',
  'colleg',
  'earlier',
  'last',
  'week',
  'said',
  'want',
  'start',
  'busi',
  'peopl',
  'also',
  'say',
  'spoil',
  'know',
  'fast',
  'money',
  'disappear',
  'right',
  'ran',
  'away',
  'abus',
  'home',
  'work',
  'fil',
  'got',
  'paid',
  'tabl',
  'abl',
  'work',
  'legal',
  'reason',
  'money',
  'marri',
  'boss',
  'daughter',
  'father',
  'left',
  'us',
  'paid',
  'hous',
  'boom',
  'busi',
  'move',
  'spain',
  'enjoy',
  'retir',
  'even',
  'get',
  'ged',
  'go',
  'colleg',
  'kid',
  'spoil',
  'kid',
  'like',
  'wish',
  'spoil',
  'also',
  'reason',
  'ask',
  'live',
  'fear',
  'someth',
  'could',
  'make',
  'like',
  'parent',
  'know',
  'commun',
  'full',
  'younger',
  'peopl',
  'might',
  'give',
  'differ',
  'perspect',
  'thank',
  'everyon',
  'im_son',
  'son_graduat',
  'graduat_year',
  'year_highschool',
  'highschool_wife',
  'wife_start',
  'start_colleg',
  'colleg_fund',
  'fund_minut',
  'minut_found',
  'found_pregnant',
  'pregnant_sinc',
  'sinc_make',
  'make_good',
  'good_money',
  'money_mid',
  'mid_figur',
  'figur_colleg',
  'colleg_fund',
  'fund_current',
  'current_almost',
  'almost_$',
  '$_never',
  'never_told',
  'told_son',
  'son_life',
  'life_may',
  'may_guid',
  'guid_decis',
  'decis_good',
  'good_parent',
  'parent_sinc',
  'sinc_still',
  'still_young',
  'young_let',
  'let_make',
  'make_decis',
  'decis_also',
  'also_never',
  'never_expect',
  'expect_academ',
  'academ_excel',
  'excel_forc',
  'forc_sport',
  'sport_artist',
  'artist_activ',
  'activ_graduat',
  'graduat_highschool',
  'highschool_said',
  'said_want',
  'want_go',
  'go_colleg',
  'colleg_said',
  'said_long',
  'long_sure',
  'sure_could',
  'could_whatev',
  'whatev_want',
  'want_refus',
  'refus_trade',
  'trade_school',
  'school_also',
  'also_want',
  'want_work',
  'work_us',
  'us_busi',
  'busi_said',
  'said_plan',
  'plan_use',
  'use_colleg',
  'colleg_fund',
  'fund_start',
  'start_busi',
  'busi_said',
  'said_allow',
  'allow_take',
  'take_busi',
  'busi_manag',
  'manag_account',
  'account_law',
  'law_class',
  'class_nearbi',
  'nearbi_commun',
  'commun_colleg',
  'colleg_said',
  'said_would',
  'would_pay',
  'pay_pocket',
  'pocket_fund',
  'fund_would',
  'would_expect',
  'expect_well',
  'well_made',
  'made_busi',
  'busi_plan',
  'plan_would',
  'would_give',
  'give_money',
  'money_wife',
  'wife_agre',
  'agre_%',
  '%_call',
  'call_us',
  'us_ah',
  'ah_hold',
  'hold_colleg',
  'colleg_fund',
  'fund_hostag',
  'hostag_make',
  'make_want',
  'want_think',
  'think_best',
  'best_make',
  'make_sure',
  'sure_busi',
  'busi_succe',
  'succe_aita',
  'aita_edit',
  'edit_oh',
  'oh_wow',
  'wow_log',
  'log_minut',
  'minut_post',
  'post_log',
  'log_back',
  'back_expect',
  'expect_mayb',
  'mayb_comment',
  'comment_thank',
  'thank_everyon',
  'everyon_read',
  'read_everi',
  'everi_singl',
  'singl_one',
  'one_decid',
  'decid_answer',
  'answer_relev',
  'relev_question',
  'question_money',
  'money_wife',
  'wife_name',
  'name_peopl',
  'peopl_said',
  'said_discuss',
  'discuss_earlier',
  'earlier_well',
  'well_earlier',
  'earlier_said',
  'said_want',
  'want_take',
  'take_coupl',
  'coupl_year',
  'year_work',
  'work_go',
  'go_colleg',
  'colleg_earlier',
  'earlier_last',
  'last_week',
  'week_said',
  'said_want',
  'want_start',
  'start_busi',
  'busi_peopl',
  'peopl_also',
  'also_say',
  'say_spoil',
  'spoil_know',
  'know_fast',
  'fast_money',
  'money_disappear',
  'disappear_right',
  'right_ran',
  'ran_away',
  'away_abus',
  'abus_home',
  'home_work',
  'work_fil',
  'fil_got',
  'got_paid',
  'paid_tabl',
  'tabl_abl',
  'abl_work',
  'work_legal',
  'legal_reason',
  'reason_money',
  'money_marri',
  'marri_boss',
  'boss_daughter',
  'daughter_father',
  'father_left',
  'left_us',
  'us_paid',
  'paid_hous',
  'hous_boom',
  'boom_busi',
  'busi_move',
  'move_spain',
  'spain_enjoy',
  'enjoy_retir',
  'retir_even',
  'even_get',
  'get_ged',
  'ged_go',
  'go_colleg',
  'colleg_kid',
  'kid_spoil',
  'spoil_kid',
  'kid_like',
  'like_wish',
  'wish_spoil',
  'spoil_also',
  'also_reason',
  'reason_ask',
  'ask_live',
  'live_fear',
  'fear_someth',
  'someth_could',
  'could_make',
  'make_like',
  'like_parent',
  'parent_know',
  'know_commun',
  'commun_full',
  'full_younger',
  'younger_peopl',
  'peopl_might',
  'might_give',
  'give_differ',
  'differ_perspect',
  'perspect_thank',
  'thank_everyon',
  'im_son_graduat',
  'son_graduat_year',
  'graduat_year_highschool',
  'year_highschool_wife',
  'highschool_wife_start',
  'wife_start_colleg',
  'start_colleg_fund',
  'colleg_fund_minut',
  'fund_minut_found',
  'minut_found_pregnant',
  'found_pregnant_sinc',
  'pregnant_sinc_make',
  'sinc_make_good',
  'make_good_money',
  'good_money_mid',
  'money_mid_figur',
  'mid_figur_colleg',
  'figur_colleg_fund',
  'colleg_fund_current',
  'fund_current_almost',
  'current_almost_$',
  'almost_$_never',
  '$_never_told',
  'never_told_son',
  'told_son_life',
  'son_life_may',
  'life_may_guid',
  'may_guid_decis',
  'guid_decis_good',
  'decis_good_parent',
  'good_parent_sinc',
  'parent_sinc_still',
  'sinc_still_young',
  'still_young_let',
  'young_let_make',
  'let_make_decis',
  'make_decis_also',
  'decis_also_never',
  'also_never_expect',
  'never_expect_academ',
  'expect_academ_excel',
  'academ_excel_forc',
  'excel_forc_sport',
  'forc_sport_artist',
  'sport_artist_activ',
  'artist_activ_graduat',
  'activ_graduat_highschool',
  'graduat_highschool_said',
  'highschool_said_want',
  'said_want_go',
  'want_go_colleg',
  'go_colleg_said',
  'colleg_said_long',
  'said_long_sure',
  'long_sure_could',
  'sure_could_whatev',
  'could_whatev_want',
  'whatev_want_refus',
  'want_refus_trade',
  'refus_trade_school',
  'trade_school_also',
  'school_also_want',
  'also_want_work',
  'want_work_us',
  'work_us_busi',
  'us_busi_said',
  'busi_said_plan',
  'said_plan_use',
  'plan_use_colleg',
  'use_colleg_fund',
  'colleg_fund_start',
  'fund_start_busi',
  'start_busi_said',
  'busi_said_allow',
  'said_allow_take',
  'allow_take_busi',
  'take_busi_manag',
  'busi_manag_account',
  'manag_account_law',
  'account_law_class',
  'law_class_nearbi',
  'class_nearbi_commun',
  'nearbi_commun_colleg',
  'commun_colleg_said',
  'colleg_said_would',
  'said_would_pay',
  'would_pay_pocket',
  'pay_pocket_fund',
  'pocket_fund_would',
  'fund_would_expect',
  'would_expect_well',
  'expect_well_made',
  'well_made_busi',
  'made_busi_plan',
  'busi_plan_would',
  'plan_would_give',
  'would_give_money',
  'give_money_wife',
  'money_wife_agre',
  'wife_agre_%',
  'agre_%_call',
  '%_call_us',
  'call_us_ah',
  'us_ah_hold',
  'ah_hold_colleg',
  'hold_colleg_fund',
  'colleg_fund_hostag',
  'fund_hostag_make',
  'hostag_make_want',
  'make_want_think',
  'want_think_best',
  'think_best_make',
  'best_make_sure',
  'make_sure_busi',
  'sure_busi_succe',
  'busi_succe_aita',
  'succe_aita_edit',
  'aita_edit_oh',
  'edit_oh_wow',
  'oh_wow_log',
  'wow_log_minut',
  'log_minut_post',
  'minut_post_log',
  'post_log_back',
  'log_back_expect',
  'back_expect_mayb',
  'expect_mayb_comment',
  'mayb_comment_thank',
  'comment_thank_everyon',
  'thank_everyon_read',
  'everyon_read_everi',
  'read_everi_singl',
  'everi_singl_one',
  'singl_one_decid',
  'one_decid_answer',
  'decid_answer_relev',
  'answer_relev_question',
  'relev_question_money',
  'question_money_wife',
  'money_wife_name',
  'wife_name_peopl',
  'name_peopl_said',
  'peopl_said_discuss',
  'said_discuss_earlier',
  'discuss_earlier_well',
  'earlier_well_earlier',
  'well_earlier_said',
  'earlier_said_want',
  'said_want_take',
  'want_take_coupl',
  'take_coupl_year',
  'coupl_year_work',
  'year_work_go',
  'work_go_colleg',
  'go_colleg_earlier',
  'colleg_earlier_last',
  'earlier_last_week',
  'last_week_said',
  'week_said_want',
  'said_want_start',
  'want_start_busi',
  'start_busi_peopl',
  'busi_peopl_also',
  'peopl_also_say',
  'also_say_spoil',
  'say_spoil_know',
  'spoil_know_fast',
  'know_fast_money',
  'fast_money_disappear',
  'money_disappear_right',
  'disappear_right_ran',
  'right_ran_away',
  'ran_away_abus',
  'away_abus_home',
  'abus_home_work',
  'home_work_fil',
  'work_fil_got',
  'fil_got_paid',
  'got_paid_tabl',
  'paid_tabl_abl',
  'tabl_abl_work',
  'abl_work_legal',
  'work_legal_reason',
  'legal_reason_money',
  'reason_money_marri',
  'money_marri_boss',
  'marri_boss_daughter',
  'boss_daughter_father',
  'daughter_father_left',
  'father_left_us',
  'left_us_paid',
  'us_paid_hous',
  'paid_hous_boom',
  'hous_boom_busi',
  'boom_busi_move',
  'busi_move_spain',
  'move_spain_enjoy',
  'spain_enjoy_retir',
  'enjoy_retir_even',
  'retir_even_get',
  'even_get_ged',
  'get_ged_go',
  'ged_go_colleg',
  'go_colleg_kid',
  'colleg_kid_spoil',
  'kid_spoil_kid',
  'spoil_kid_like',
  'kid_like_wish',
  'like_wish_spoil',
  'wish_spoil_also',
  'spoil_also_reason',
  'also_reason_ask',
  'reason_ask_live',
  'ask_live_fear',
  'live_fear_someth',
  'fear_someth_could',
  'someth_could_make',
  'could_make_like',
  'make_like_parent',
  'like_parent_know',
  'parent_know_commun',
  'know_commun_full',
  'commun_full_younger',
  'full_younger_peopl',
  'younger_peopl_might',
  'peopl_might_give',
  'might_give_differ',
  'give_differ_perspect',
  'differ_perspect_thank',
  'perspect_thank_everyon'],
 ['live',
  'real',
  'estat',
  'develop',
  'start',
  'snatch',
  'famili',
  'home',
  'bulldoz',
  'build',
  'enorm',
  'million',
  'dollar',
  'hous',
  'plot',
  'land',
  'hous',
  'also',
  'stick',
  'horribl',
  'term',
  'aesthet',
  '–',
  'think',
  'singl',
  'level',
  'brick',
  'home',
  '-level',
  'gigant',
  'white',
  'black',
  'box',
  'middl',
  'home',
  'famili',
  'sever',
  'gener',
  'alway',
  'known',
  'larg',
  'beauti',
  'garden',
  'invit',
  'kid',
  'help',
  'garden',
  'gave',
  'away',
  'mani',
  'veggi',
  'wed',
  'hold',
  'parti',
  'etc',
  'neighborhood',
  'treasur',
  'year',
  'develop',
  'snatch',
  'lot',
  'next',
  'door',
  'bulldoz',
  'erect',
  'enorm',
  'hous',
  'block',
  'light',
  'garden',
  'mani',
  'us',
  'tri',
  'fight',
  'citi',
  'everyth',
  'deni',
  'heartbreak',
  'neighborhood',
  'chang',
  'forev',
  'link',
  'famili',
  'almost',
  'go',
  'griev',
  'process',
  'new',
  'owner',
  'move',
  'welcom',
  'warmli',
  'peopl',
  'neighborhood',
  'avoid',
  'long',
  'could',
  'polit',
  'wave',
  'nod',
  'young',
  'coupl',
  'earli',
  'final',
  'came',
  'face',
  'face',
  'woman',
  'ask',
  'could',
  'chat',
  'said',
  'felt',
  'like',
  'mayb',
  'theyd',
  'done',
  'someth',
  'wrong',
  'move',
  'pull',
  'trash',
  'bin',
  'someth',
  'loud',
  'etc',
  'peopl',
  'friendli',
  'guy',
  'say',
  'surpris',
  'consid',
  'felt',
  'like',
  'nice',
  'somewhat',
  'affluent',
  'neighborhood',
  'given',
  'price',
  'expect',
  'friendli',
  'neighbor',
  'ask',
  'done',
  'research',
  'area',
  'said',
  'move',
  'california',
  'said',
  'mayb',
  'mistak',
  'said',
  'know',
  'meant',
  'ask',
  'theyd',
  'ever',
  'look',
  'backyard',
  'said',
  'ye',
  'said',
  'think',
  'garden',
  'cute',
  'said',
  'ye',
  'garden',
  'half',
  'less',
  'sunlight',
  'hous',
  'built',
  'neighborhood',
  'treasur',
  'guy',
  'said',
  'well',
  'fault',
  'built',
  'garden',
  'said',
  'well',
  'guy',
  'got',
  'paid',
  'million',
  'dollar',
  'hous',
  'everyon',
  'neighborhood',
  'hate',
  'said',
  'hope',
  'worth',
  'wish',
  'nice',
  'day',
  'told',
  'anoth',
  'neighbor',
  'exchang',
  'told',
  'feel',
  'bad',
  'move',
  'without',
  'idea',
  'get',
  'aita',
  'tell',
  'got',
  'paid',
  'live_real',
  'real_estat',
  'estat_develop',
  'develop_start',
  'start_snatch',
  'snatch_famili',
  'famili_home',
  'home_bulldoz',
  'bulldoz_build',
  'build_enorm',
  'enorm_million',
  'million_dollar',
  'dollar_hous',
  'hous_plot',
  'plot_land',
  'land_hous',
  'hous_also',
  'also_stick',
  'stick_horribl',
  'horribl_term',
  'term_aesthet',
  'aesthet_–',
  '–_think',
  'think_singl',
  'singl_level',
  'level_brick',
  'brick_home',
  'home_-level',
  '-level_gigant',
  'gigant_white',
  'white_black',
  'black_box',
  'box_middl',
  'middl_home',
  'home_famili',
  'famili_sever',
  'sever_gener',
  'gener_alway',
  'alway_known',
  'known_larg',
  'larg_beauti',
  'beauti_garden',
  'garden_invit',
  'invit_kid',
  'kid_help',
  'help_garden',
  'garden_gave',
  'gave_away',
  'away_mani',
  'mani_veggi',
  'veggi_wed',
  'wed_hold',
  'hold_parti',
  'parti_etc',
  'etc_neighborhood',
  'neighborhood_treasur',
  'treasur_year',
  'year_develop',
  'develop_snatch',
  'snatch_lot',
  'lot_next',
  'next_door',
  'door_bulldoz',
  'bulldoz_erect',
  'erect_enorm',
  'enorm_hous',
  'hous_block',
  'block_light',
  'light_garden',
  'garden_mani',
  'mani_us',
  'us_tri',
  'tri_fight',
  'fight_citi',
  'citi_everyth',
  'everyth_deni',
  'deni_heartbreak',
  'heartbreak_neighborhood',
  'neighborhood_chang',
  'chang_forev',
  'forev_link',
  'link_famili',
  'famili_almost',
  'almost_go',
  'go_griev',
  'griev_process',
  'process_new',
  'new_owner',
  'owner_move',
  'move_welcom',
  'welcom_warmli',
  'warmli_peopl',
  'peopl_neighborhood',
  'neighborhood_avoid',
  'avoid_long',
  'long_could',
  'could_polit',
  'polit_wave',
  'wave_nod',
  'nod_young',
  'young_coupl',
  'coupl_earli',
  'earli_final',
  'final_came',
  'came_face',
  'face_face',
  'face_woman',
  'woman_ask',
  'ask_could',
  'could_chat',
  'chat_said',
  'said_felt',
  'felt_like',
  'like_mayb',
  'mayb_theyd',
  'theyd_done',
  'done_someth',
  'someth_wrong',
  'wrong_move',
  'move_pull',
  'pull_trash',
  'trash_bin',
  'bin_someth',
  'someth_loud',
  'loud_etc',
  'etc_peopl',
  'peopl_friendli',
  'friendli_guy',
  'guy_say',
  'say_surpris',
  'surpris_consid',
  'consid_felt',
  'felt_like',
  'like_nice',
  'nice_somewhat',
  'somewhat_affluent',
  'affluent_neighborhood',
  'neighborhood_given',
  'given_price',
  'price_expect',
  'expect_friendli',
  'friendli_neighbor',
  'neighbor_ask',
  'ask_done',
  'done_research',
  'research_area',
  'area_said',
  'said_move',
  'move_california',
  'california_said',
  'said_mayb',
  'mayb_mistak',
  'mistak_said',
  'said_know',
  'know_meant',
  'meant_ask',
  'ask_theyd',
  'theyd_ever',
  'ever_look',
  'look_backyard',
  'backyard_said',
  'said_ye',
  'ye_said',
  'said_think',
  'think_garden',
  'garden_cute',
  'cute_said',
  'said_ye',
  'ye_garden',
  'garden_half',
  'half_less',
  'less_sunlight',
  'sunlight_hous',
  'hous_built',
  'built_neighborhood',
  'neighborhood_treasur',
  'treasur_guy',
  'guy_said',
  'said_well',
  'well_fault',
  'fault_built',
  'built_garden',
  'garden_said',
  'said_well',
  'well_guy',
  'guy_got',
  'got_paid',
  'paid_million',
  'million_dollar',
  'dollar_hous',
  'hous_everyon',
  'everyon_neighborhood',
  'neighborhood_hate',
  'hate_said',
  'said_hope',
  'hope_worth',
  'worth_wish',
  'wish_nice',
  'nice_day',
  'day_told',
  'told_anoth',
  'anoth_neighbor',
  'neighbor_exchang',
  'exchang_told',
  'told_feel',
  'feel_bad',
  'bad_move',
  'move_without',
  'without_idea',
  'idea_get',
  'get_aita',
  'aita_tell',
  'tell_got',
  'got_paid',
  'live_real_estat',
  'real_estat_develop',
  'estat_develop_start',
  'develop_start_snatch',
  'start_snatch_famili',
  'snatch_famili_home',
  'famili_home_bulldoz',
  'home_bulldoz_build',
  'bulldoz_build_enorm',
  'build_enorm_million',
  'enorm_million_dollar',
  'million_dollar_hous',
  'dollar_hous_plot',
  'hous_plot_land',
  'plot_land_hous',
  'land_hous_also',
  'hous_also_stick',
  'also_stick_horribl',
  'stick_horribl_term',
  'horribl_term_aesthet',
  'term_aesthet_–',
  'aesthet_–_think',
  '–_think_singl',
  'think_singl_level',
  'singl_level_brick',
  'level_brick_home',
  'brick_home_-level',
  'home_-level_gigant',
  '-level_gigant_white',
  'gigant_white_black',
  'white_black_box',
  'black_box_middl',
  'box_middl_home',
  'middl_home_famili',
  'home_famili_sever',
  'famili_sever_gener',
  'sever_gener_alway',
  'gener_alway_known',
  'alway_known_larg',
  'known_larg_beauti',
  'larg_beauti_garden',
  'beauti_garden_invit',
  'garden_invit_kid',
  'invit_kid_help',
  'kid_help_garden',
  'help_garden_gave',
  'garden_gave_away',
  'gave_away_mani',
  'away_mani_veggi',
  'mani_veggi_wed',
  'veggi_wed_hold',
  'wed_hold_parti',
  'hold_parti_etc',
  'parti_etc_neighborhood',
  'etc_neighborhood_treasur',
  'neighborhood_treasur_year',
  'treasur_year_develop',
  'year_develop_snatch',
  'develop_snatch_lot',
  'snatch_lot_next',
  'lot_next_door',
  'next_door_bulldoz',
  'door_bulldoz_erect',
  'bulldoz_erect_enorm',
  'erect_enorm_hous',
  'enorm_hous_block',
  'hous_block_light',
  'block_light_garden',
  'light_garden_mani',
  'garden_mani_us',
  'mani_us_tri',
  'us_tri_fight',
  'tri_fight_citi',
  'fight_citi_everyth',
  'citi_everyth_deni',
  'everyth_deni_heartbreak',
  'deni_heartbreak_neighborhood',
  'heartbreak_neighborhood_chang',
  'neighborhood_chang_forev',
  'chang_forev_link',
  'forev_link_famili',
  'link_famili_almost',
  'famili_almost_go',
  'almost_go_griev',
  'go_griev_process',
  'griev_process_new',
  'process_new_owner',
  'new_owner_move',
  'owner_move_welcom',
  'move_welcom_warmli',
  'welcom_warmli_peopl',
  'warmli_peopl_neighborhood',
  'peopl_neighborhood_avoid',
  'neighborhood_avoid_long',
  'avoid_long_could',
  'long_could_polit',
  'could_polit_wave',
  'polit_wave_nod',
  'wave_nod_young',
  'nod_young_coupl',
  'young_coupl_earli',
  'coupl_earli_final',
  'earli_final_came',
  'final_came_face',
  'came_face_face',
  'face_face_woman',
  'face_woman_ask',
  'woman_ask_could',
  'ask_could_chat',
  'could_chat_said',
  'chat_said_felt',
  'said_felt_like',
  'felt_like_mayb',
  'like_mayb_theyd',
  'mayb_theyd_done',
  'theyd_done_someth',
  'done_someth_wrong',
  'someth_wrong_move',
  'wrong_move_pull',
  'move_pull_trash',
  'pull_trash_bin',
  'trash_bin_someth',
  'bin_someth_loud',
  'someth_loud_etc',
  'loud_etc_peopl',
  'etc_peopl_friendli',
  'peopl_friendli_guy',
  'friendli_guy_say',
  'guy_say_surpris',
  'say_surpris_consid',
  'surpris_consid_felt',
  'consid_felt_like',
  'felt_like_nice',
  'like_nice_somewhat',
  'nice_somewhat_affluent',
  'somewhat_affluent_neighborhood',
  'affluent_neighborhood_given',
  'neighborhood_given_price',
  'given_price_expect',
  'price_expect_friendli',
  'expect_friendli_neighbor',
  'friendli_neighbor_ask',
  'neighbor_ask_done',
  'ask_done_research',
  'done_research_area',
  'research_area_said',
  'area_said_move',
  'said_move_california',
  'move_california_said',
  'california_said_mayb',
  'said_mayb_mistak',
  'mayb_mistak_said',
  'mistak_said_know',
  'said_know_meant',
  'know_meant_ask',
  'meant_ask_theyd',
  'ask_theyd_ever',
  'theyd_ever_look',
  'ever_look_backyard',
  'look_backyard_said',
  'backyard_said_ye',
  'said_ye_said',
  'ye_said_think',
  'said_think_garden',
  'think_garden_cute',
  'garden_cute_said',
  'cute_said_ye',
  'said_ye_garden',
  'ye_garden_half',
  'garden_half_less',
  'half_less_sunlight',
  'less_sunlight_hous',
  'sunlight_hous_built',
  'hous_built_neighborhood',
  'built_neighborhood_treasur',
  'neighborhood_treasur_guy',
  'treasur_guy_said',
  'guy_said_well',
  'said_well_fault',
  'well_fault_built',
  'fault_built_garden',
  'built_garden_said',
  'garden_said_well',
  'said_well_guy',
  'well_guy_got',
  'guy_got_paid',
  'got_paid_million',
  'paid_million_dollar',
  'million_dollar_hous',
  'dollar_hous_everyon',
  'hous_everyon_neighborhood',
  'everyon_neighborhood_hate',
  'neighborhood_hate_said',
  'hate_said_hope',
  'said_hope_worth',
  'hope_worth_wish',
  'worth_wish_nice',
  'wish_nice_day',
  'nice_day_told',
  'day_told_anoth',
  'told_anoth_neighbor',
  'anoth_neighbor_exchang',
  'neighbor_exchang_told',
  'exchang_told_feel',
  'told_feel_bad',
  'feel_bad_move',
  'bad_move_without',
  'move_without_idea',
  'without_idea_get',
  'idea_get_aita',
  'get_aita_tell',
  'aita_tell_got',
  'tell_got_paid'],
 ['im',
  'gon',
  'na',
  'keep',
  'short',
  'get',
  'marri',
  'fianc',
  'next',
  'month',
  'weve',
  'issu',
  'wed',
  'plan',
  'except',
  'guest',
  'list',
  'context',
  'larg',
  'famili',
  'stepsist',
  'biolog',
  'brother',
  'also',
  'biolog',
  'sister',
  'fianc',
  'argu',
  'guest',
  'list',
  'cut',
  'short',
  'suggest',
  'invit',
  'immedit',
  'famili',
  'ask',
  'elabor',
  'suggest',
  'exclud',
  'stepsist',
  'said',
  'got',
  'upset',
  'impli',
  'theyr',
  'famili',
  'said',
  'well',
  'meanti',
  'speak',
  'technic',
  'angl',
  'especi',
  'sinc',
  'includ',
  'wed',
  'parti',
  'like',
  'moh',
  'bridesmaid',
  'thought',
  'unneed',
  'said',
  'want',
  'alway',
  'want',
  'includ',
  'well',
  'day',
  'ago',
  'stepsist',
  'call',
  'say',
  'fiancé',
  'cancel',
  'invit',
  'told',
  'lie',
  'chang',
  'wed',
  'locat',
  'tell',
  'abl',
  'come',
  'fume',
  'went',
  'home',
  'start',
  'scream',
  'ask',
  'hear',
  'explain',
  'choic',
  'sinc',
  'requir',
  'shorten',
  'list',
  'dirti',
  'work',
  'sinc',
  'obvious',
  'look',
  'situat',
  'emot',
  'angl',
  'bring',
  'disinvit',
  'stepsist',
  'call',
  'hypocrit',
  'caus',
  'invit',
  'almost',
  'friend',
  'far',
  'know',
  'immedi',
  'famili',
  'told',
  'hurt',
  'stepsist',
  'go',
  'behind',
  'back',
  'exclud',
  'wed',
  'theyv',
  'excit',
  'got',
  'couch',
  'yell',
  'wed',
  'stepsist',
  'feel',
  'realli',
  'relev',
  'compar',
  'call',
  'control',
  'want',
  'way',
  'highway',
  'took',
  'phone',
  'amd',
  'storm',
  'see',
  'friend',
  'friend',
  'call',
  'scold',
  'im',
  'treat',
  'brother',
  'went',
  'rude',
  'suggestthat',
  'brother',
  'disinvit',
  'wed',
  'like',
  'call',
  'problem',
  'fmil',
  'call',
  'want',
  'sleak',
  'probabl',
  'told',
  'go',
  'probabl',
  'go',
  'ask',
  'apolog',
  'yell',
  'im_gon',
  'gon_na',
  'na_keep',
  'keep_short',
  'short_get',
  'get_marri',
  'marri_fianc',
  'fianc_next',
  'next_month',
  'month_weve',
  'weve_issu',
  'issu_wed',
  'wed_plan',
  'plan_except',
  'except_guest',
  'guest_list',
  'list_context',
  'context_larg',
  'larg_famili',
  'famili_stepsist',
  'stepsist_biolog',
  'biolog_brother',
  'brother_also',
  'also_biolog',
  'biolog_sister',
  'sister_fianc',
  'fianc_argu',
  'argu_guest',
  'guest_list',
  'list_cut',
  'cut_short',
  'short_suggest',
  'suggest_invit',
  'invit_immedit',
  'immedit_famili',
  'famili_ask',
  'ask_elabor',
  'elabor_suggest',
  'suggest_exclud',
  'exclud_stepsist',
  'stepsist_said',
  'said_got',
  'got_upset',
  'upset_impli',
  'impli_theyr',
  'theyr_famili',
  'famili_said',
  'said_well',
  'well_meanti',
  'meanti_speak',
  'speak_technic',
  'technic_angl',
  'angl_especi',
  'especi_sinc',
  'sinc_includ',
  'includ_wed',
  'wed_parti',
  'parti_like',
  'like_moh',
  'moh_bridesmaid',
  'bridesmaid_thought',
  'thought_unneed',
  'unneed_said',
  'said_want',
  'want_alway',
  'alway_want',
  'want_includ',
  'includ_well',
  'well_day',
  'day_ago',
  'ago_stepsist',
  'stepsist_call',
  'call_say',
  'say_fiancé',
  'fiancé_cancel',
  'cancel_invit',
  'invit_told',
  'told_lie',
  'lie_chang',
  'chang_wed',
  'wed_locat',
  'locat_tell',
  'tell_abl',
  'abl_come',
  'come_fume',
  'fume_went',
  'went_home',
  'home_start',
  'start_scream',
  'scream_ask',
  'ask_hear',
  'hear_explain',
  'explain_choic',
  'choic_sinc',
  'sinc_requir',
  'requir_shorten',
  'shorten_list',
  'list_dirti',
  'dirti_work',
  'work_sinc',
  'sinc_obvious',
  'obvious_look',
  'look_situat',
  'situat_emot',
  'emot_angl',
  'angl_bring',
  'bring_disinvit',
  'disinvit_stepsist',
  'stepsist_call',
  'call_hypocrit',
  'hypocrit_caus',
  'caus_invit',
  'invit_almost',
  'almost_friend',
  'friend_far',
  'far_know',
  'know_immedi',
  'immedi_famili',
  'famili_told',
  'told_hurt',
  'hurt_stepsist',
  'stepsist_go',
  'go_behind',
  'behind_back',
  'back_exclud',
  'exclud_wed',
  'wed_theyv',
  'theyv_excit',
  'excit_got',
  'got_couch',
  'couch_yell',
  'yell_wed',
  'wed_stepsist',
  'stepsist_feel',
  'feel_realli',
  'realli_relev',
  'relev_compar',
  'compar_call',
  'call_control',
  'control_want',
  'want_way',
  'way_highway',
  'highway_took',
  'took_phone',
  'phone_amd',
  'amd_storm',
  'storm_see',
  'see_friend',
  'friend_friend',
  'friend_call',
  'call_scold',
  'scold_im',
  'im_treat',
  'treat_brother',
  'brother_went',
  'went_rude',
  'rude_suggestthat',
  'suggestthat_brother',
  'brother_disinvit',
  'disinvit_wed',
  'wed_like',
  'like_call',
  'call_problem',
  'problem_fmil',
  'fmil_call',
  'call_want',
  'want_sleak',
  'sleak_probabl',
  'probabl_told',
  'told_go',
  'go_probabl',
  'probabl_go',
  'go_ask',
  'ask_apolog',
  'apolog_yell',
  'im_gon_na',
  'gon_na_keep',
  'na_keep_short',
  'keep_short_get',
  'short_get_marri',
  'get_marri_fianc',
  'marri_fianc_next',
  'fianc_next_month',
  'next_month_weve',
  'month_weve_issu',
  'weve_issu_wed',
  'issu_wed_plan',
  'wed_plan_except',
  'plan_except_guest',
  'except_guest_list',
  'guest_list_context',
  'list_context_larg',
  'context_larg_famili',
  'larg_famili_stepsist',
  'famili_stepsist_biolog',
  'stepsist_biolog_brother',
  'biolog_brother_also',
  'brother_also_biolog',
  'also_biolog_sister',
  'biolog_sister_fianc',
  'sister_fianc_argu',
  'fianc_argu_guest',
  'argu_guest_list',
  'guest_list_cut',
  'list_cut_short',
  'cut_short_suggest',
  'short_suggest_invit',
  'suggest_invit_immedit',
  'invit_immedit_famili',
  'immedit_famili_ask',
  'famili_ask_elabor',
  'ask_elabor_suggest',
  'elabor_suggest_exclud',
  'suggest_exclud_stepsist',
  'exclud_stepsist_said',
  'stepsist_said_got',
  'said_got_upset',
  'got_upset_impli',
  'upset_impli_theyr',
  'impli_theyr_famili',
  'theyr_famili_said',
  'famili_said_well',
  'said_well_meanti',
  'well_meanti_speak',
  'meanti_speak_technic',
  'speak_technic_angl',
  'technic_angl_especi',
  'angl_especi_sinc',
  'especi_sinc_includ',
  'sinc_includ_wed',
  'includ_wed_parti',
  'wed_parti_like',
  'parti_like_moh',
  'like_moh_bridesmaid',
  'moh_bridesmaid_thought',
  'bridesmaid_thought_unneed',
  'thought_unneed_said',
  'unneed_said_want',
  'said_want_alway',
  'want_alway_want',
  'alway_want_includ',
  'want_includ_well',
  'includ_well_day',
  'well_day_ago',
  'day_ago_stepsist',
  'ago_stepsist_call',
  'stepsist_call_say',
  'call_say_fiancé',
  'say_fiancé_cancel',
  'fiancé_cancel_invit',
  'cancel_invit_told',
  'invit_told_lie',
  'told_lie_chang',
  'lie_chang_wed',
  'chang_wed_locat',
  'wed_locat_tell',
  'locat_tell_abl',
  'tell_abl_come',
  'abl_come_fume',
  'come_fume_went',
  'fume_went_home',
  'went_home_start',
  'home_start_scream',
  'start_scream_ask',
  'scream_ask_hear',
  'ask_hear_explain',
  'hear_explain_choic',
  'explain_choic_sinc',
  'choic_sinc_requir',
  'sinc_requir_shorten',
  'requir_shorten_list',
  'shorten_list_dirti',
  'list_dirti_work',
  'dirti_work_sinc',
  'work_sinc_obvious',
  'sinc_obvious_look',
  'obvious_look_situat',
  'look_situat_emot',
  'situat_emot_angl',
  'emot_angl_bring',
  'angl_bring_disinvit',
  'bring_disinvit_stepsist',
  'disinvit_stepsist_call',
  'stepsist_call_hypocrit',
  'call_hypocrit_caus',
  'hypocrit_caus_invit',
  'caus_invit_almost',
  'invit_almost_friend',
  'almost_friend_far',
  'friend_far_know',
  'far_know_immedi',
  'know_immedi_famili',
  'immedi_famili_told',
  'famili_told_hurt',
  'told_hurt_stepsist',
  'hurt_stepsist_go',
  'stepsist_go_behind',
  'go_behind_back',
  'behind_back_exclud',
  'back_exclud_wed',
  'exclud_wed_theyv',
  'wed_theyv_excit',
  'theyv_excit_got',
  'excit_got_couch',
  'got_couch_yell',
  'couch_yell_wed',
  'yell_wed_stepsist',
  'wed_stepsist_feel',
  'stepsist_feel_realli',
  'feel_realli_relev',
  'realli_relev_compar',
  'relev_compar_call',
  'compar_call_control',
  'call_control_want',
  'control_want_way',
  'want_way_highway',
  'way_highway_took',
  'highway_took_phone',
  'took_phone_amd',
  'phone_amd_storm',
  'amd_storm_see',
  'storm_see_friend',
  'see_friend_friend',
  'friend_friend_call',
  'friend_call_scold',
  'call_scold_im',
  'scold_im_treat',
  'im_treat_brother',
  'treat_brother_went',
  'brother_went_rude',
  'went_rude_suggestthat',
  'rude_suggestthat_brother',
  'suggestthat_brother_disinvit',
  'brother_disinvit_wed',
  'disinvit_wed_like',
  'wed_like_call',
  'like_call_problem',
  'call_problem_fmil',
  'problem_fmil_call',
  'fmil_call_want',
  'call_want_sleak',
  'want_sleak_probabl',
  'sleak_probabl_told',
  'probabl_told_go',
  'told_go_probabl',
  'go_probabl_go',
  'probabl_go_ask',
  'go_ask_apolog',
  'ask_apolog_yell'],
 ['im',
  'littl',
  'sister',
  'dad',
  'die',
  'year',
  'ago',
  'sudden',
  'devast',
  'one',
  'day',
  'kiss',
  'hug',
  'si',
  'told',
  'us',
  'love',
  'us',
  'never',
  'heard',
  'time',
  'fulli',
  'grasp',
  'chose',
  'stay',
  'away',
  'even',
  'though',
  'mom',
  'tri',
  'explain',
  'us',
  'miss',
  'thought',
  'someth',
  'wrong',
  'make',
  'dad',
  'mad',
  'repeatedli',
  'call',
  'phone',
  'hope',
  'would',
  'answer',
  'alway',
  'went',
  'directli',
  'voicemail',
  'funer',
  'realiz',
  'would',
  'never',
  'see',
  'broke',
  'rememb',
  'much',
  'day',
  'except',
  'uncl',
  'david',
  'held',
  'entir',
  'time',
  'held',
  'throughout',
  'funer',
  'drive',
  'home',
  'fell',
  'asleep',
  'night',
  'uncl',
  'alan',
  'thing',
  'si',
  'easi',
  'grow',
  'mom',
  'si',
  'tough',
  'could',
  'two',
  'uncl',
  'alway',
  'phone',
  'call',
  'away',
  'whenev',
  'need',
  'help',
  'school',
  'one',
  'uncl',
  'tutor',
  'us',
  'one',
  'alway',
  'front',
  'row',
  'everi',
  'school',
  'perform',
  'game',
  'whenev',
  'wake',
  'middl',
  'night',
  'miss',
  'dad',
  'ill',
  'call',
  'uncl',
  'david',
  'know',
  'hell',
  'alway',
  'pick',
  'mom',
  'eventu',
  'remarri',
  'bob',
  'never',
  'like',
  'bob',
  'alway',
  'control',
  'place',
  'us',
  'strict',
  'schedul',
  'dinner',
  'everyday',
  'matter',
  'came',
  'home',
  'late',
  'dinner',
  'allow',
  'eat',
  'night',
  'whenev',
  'uncl',
  'gave',
  'si',
  'money',
  'give',
  'bob',
  'divid',
  'money',
  'equal',
  'coupl',
  'month',
  'ago',
  'si',
  'eat',
  'uncl',
  'david',
  'famili',
  'dinner',
  'convers',
  'eventu',
  'led',
  'want',
  'go',
  'colleg',
  'pay',
  'uncl',
  'david',
  'told',
  'uncl',
  'decid',
  'long',
  'ago',
  'go',
  'pay',
  'siss',
  'tuition',
  'cost',
  'live',
  'campu',
  'cri',
  'heard',
  'laugh',
  'jokingli',
  'said',
  'hope',
  'get',
  'medic',
  'school',
  'go',
  'cost',
  'fortun',
  'went',
  'home',
  'excitedli',
  'told',
  'mom',
  'bob',
  'uncl',
  'go',
  'pay',
  'colleg',
  'instead',
  'happi',
  'look',
  'furiou',
  'bob',
  'start',
  'scream',
  'unfair',
  'step',
  'sibl',
  'half',
  'sister',
  'get',
  'free',
  'ride',
  'colleg',
  'want',
  'tell',
  'uncl',
  'divid',
  'colleg',
  'fund',
  'equal',
  'among',
  'kid',
  'refus',
  'next',
  'day',
  'kept',
  'scream',
  'us',
  'si',
  'pack',
  'bag',
  'go',
  'uncl',
  'david',
  'hous',
  'kept',
  'scream',
  'even',
  'follow',
  'us',
  'car',
  'si',
  'live',
  'uncl',
  'david',
  'famili',
  'ever',
  'sinc',
  'feel',
  'like',
  'home',
  'ever',
  'hous',
  'mom',
  'ask',
  'us',
  'come',
  'home',
  'christma',
  'month',
  'ive',
  'refus',
  'today',
  'th',
  'call',
  'morn',
  'cri',
  'say',
  'need',
  'spend',
  'christma',
  'famili',
  'wrong',
  'spend',
  'christma',
  'mom',
  'im_littl',
  'littl_sister',
  'sister_dad',
  'dad_die',
  'die_year',
  'year_ago',
  'ago_sudden',
  'sudden_devast',
  'devast_one',
  'one_day',
  'day_kiss',
  'kiss_hug',
  'hug_si',
  'si_told',
  'told_us',
  'us_love',
  'love_us',
  'us_never',
  'never_heard',
  'heard_time',
  'time_fulli',
  'fulli_grasp',
  'grasp_chose',
  'chose_stay',
  'stay_away',
  'away_even',
  'even_though',
  'though_mom',
  'mom_tri',
  'tri_explain',
  'explain_us',
  'us_miss',
  'miss_thought',
  'thought_someth',
  'someth_wrong',
  'wrong_make',
  'make_dad',
  'dad_mad',
  'mad_repeatedli',
  'repeatedli_call',
  'call_phone',
  'phone_hope',
  'hope_would',
  'would_answer',
  'answer_alway',
  'alway_went',
  'went_directli',
  'directli_voicemail',
  'voicemail_funer',
  'funer_realiz',
  'realiz_would',
  'would_never',
  'never_see',
  'see_broke',
  'broke_rememb',
  'rememb_much',
  'much_day',
  'day_except',
  'except_uncl',
  'uncl_david',
  'david_held',
  'held_entir',
  'entir_time',
  'time_held',
  'held_throughout',
  'throughout_funer',
  'funer_drive',
  'drive_home',
  'home_fell',
  'fell_asleep',
  'asleep_night',
  'night_uncl',
  'uncl_alan',
  'alan_thing',
  'thing_si',
  'si_easi',
  'easi_grow',
  'grow_mom',
  'mom_si',
  'si_tough',
  'tough_could',
  'could_two',
  'two_uncl',
  'uncl_alway',
  'alway_phone',
  'phone_call',
  'call_away',
  'away_whenev',
  'whenev_need',
  'need_help',
  'help_school',
  'school_one',
  'one_uncl',
  'uncl_tutor',
  'tutor_us',
  'us_one',
  'one_alway',
  'alway_front',
  'front_row',
  'row_everi',
  'everi_school',
  'school_perform',
  'perform_game',
  'game_whenev',
  'whenev_wake',
  'wake_middl',
  'middl_night',
  'night_miss',
  'miss_dad',
  'dad_ill',
  'ill_call',
  'call_uncl',
  'uncl_david',
  'david_know',
  'know_hell',
  'hell_alway',
  'alway_pick',
  'pick_mom',
  'mom_eventu',
  'eventu_remarri',
  'remarri_bob',
  'bob_never',
  'never_like',
  'like_bob',
  'bob_alway',
  'alway_control',
  'control_place',
  'place_us',
  'us_strict',
  'strict_schedul',
  'schedul_dinner',
  'dinner_everyday',
  'everyday_matter',
  'matter_came',
  'came_home',
  'home_late',
  'late_dinner',
  'dinner_allow',
  'allow_eat',
  'eat_night',
  'night_whenev',
  'whenev_uncl',
  'uncl_gave',
  'gave_si',
  'si_money',
  'money_give',
  'give_bob',
  'bob_divid',
  'divid_money',
  'money_equal',
  'equal_coupl',
  'coupl_month',
  'month_ago',
  'ago_si',
  'si_eat',
  'eat_uncl',
  'uncl_david',
  'david_famili',
  'famili_dinner',
  'dinner_convers',
  'convers_eventu',
  'eventu_led',
  'led_want',
  'want_go',
  'go_colleg',
  'colleg_pay',
  'pay_uncl',
  'uncl_david',
  'david_told',
  'told_uncl',
  'uncl_decid',
  'decid_long',
  'long_ago',
  'ago_go',
  'go_pay',
  'pay_siss',
  'siss_tuition',
  'tuition_cost',
  'cost_live',
  'live_campu',
  'campu_cri',
  'cri_heard',
  'heard_laugh',
  'laugh_jokingli',
  'jokingli_said',
  'said_hope',
  'hope_get',
  'get_medic',
  'medic_school',
  'school_go',
  'go_cost',
  'cost_fortun',
  'fortun_went',
  'went_home',
  'home_excitedli',
  'excitedli_told',
  'told_mom',
  'mom_bob',
  'bob_uncl',
  'uncl_go',
  'go_pay',
  'pay_colleg',
  'colleg_instead',
  'instead_happi',
  'happi_look',
  'look_furiou',
  'furiou_bob',
  'bob_start',
  'start_scream',
  'scream_unfair',
  'unfair_step',
  'step_sibl',
  'sibl_half',
  'half_sister',
  'sister_get',
  'get_free',
  'free_ride',
  'ride_colleg',
  'colleg_want',
  'want_tell',
  'tell_uncl',
  'uncl_divid',
  'divid_colleg',
  'colleg_fund',
  'fund_equal',
  'equal_among',
  'among_kid',
  'kid_refus',
  'refus_next',
  'next_day',
  'day_kept',
  'kept_scream',
  'scream_us',
  'us_si',
  'si_pack',
  'pack_bag',
  'bag_go',
  'go_uncl',
  'uncl_david',
  'david_hous',
  'hous_kept',
  'kept_scream',
  'scream_even',
  'even_follow',
  'follow_us',
  'us_car',
  'car_si',
  'si_live',
  'live_uncl',
  'uncl_david',
  'david_famili',
  'famili_ever',
  'ever_sinc',
  'sinc_feel',
  'feel_like',
  'like_home',
  'home_ever',
  'ever_hous',
  'hous_mom',
  'mom_ask',
  'ask_us',
  'us_come',
  'come_home',
  'home_christma',
  'christma_month',
  'month_ive',
  'ive_refus',
  'refus_today',
  'today_th',
  'th_call',
  'call_morn',
  'morn_cri',
  'cri_say',
  'say_need',
  'need_spend',
  'spend_christma',
  'christma_famili',
  'famili_wrong',
  'wrong_spend',
  'spend_christma',
  'christma_mom',
  'im_littl_sister',
  'littl_sister_dad',
  'sister_dad_die',
  'dad_die_year',
  'die_year_ago',
  'year_ago_sudden',
  'ago_sudden_devast',
  'sudden_devast_one',
  'devast_one_day',
  'one_day_kiss',
  'day_kiss_hug',
  'kiss_hug_si',
  'hug_si_told',
  'si_told_us',
  'told_us_love',
  'us_love_us',
  'love_us_never',
  'us_never_heard',
  'never_heard_time',
  'heard_time_fulli',
  'time_fulli_grasp',
  'fulli_grasp_chose',
  'grasp_chose_stay',
  'chose_stay_away',
  'stay_away_even',
  'away_even_though',
  'even_though_mom',
  'though_mom_tri',
  'mom_tri_explain',
  'tri_explain_us',
  'explain_us_miss',
  'us_miss_thought',
  'miss_thought_someth',
  'thought_someth_wrong',
  'someth_wrong_make',
  'wrong_make_dad',
  'make_dad_mad',
  'dad_mad_repeatedli',
  'mad_repeatedli_call',
  'repeatedli_call_phone',
  'call_phone_hope',
  'phone_hope_would',
  'hope_would_answer',
  'would_answer_alway',
  'answer_alway_went',
  'alway_went_directli',
  'went_directli_voicemail',
  'directli_voicemail_funer',
  'voicemail_funer_realiz',
  'funer_realiz_would',
  'realiz_would_never',
  'would_never_see',
  'never_see_broke',
  'see_broke_rememb',
  'broke_rememb_much',
  'rememb_much_day',
  'much_day_except',
  'day_except_uncl',
  'except_uncl_david',
  'uncl_david_held',
  'david_held_entir',
  'held_entir_time',
  'entir_time_held',
  'time_held_throughout',
  'held_throughout_funer',
  'throughout_funer_drive',
  'funer_drive_home',
  'drive_home_fell',
  'home_fell_asleep',
  'fell_asleep_night',
  'asleep_night_uncl',
  'night_uncl_alan',
  'uncl_alan_thing',
  'alan_thing_si',
  'thing_si_easi',
  'si_easi_grow',
  'easi_grow_mom',
  'grow_mom_si',
  'mom_si_tough',
  'si_tough_could',
  'tough_could_two',
  'could_two_uncl',
  'two_uncl_alway',
  'uncl_alway_phone',
  'alway_phone_call',
  'phone_call_away',
  'call_away_whenev',
  'away_whenev_need',
  'whenev_need_help',
  'need_help_school',
  'help_school_one',
  'school_one_uncl',
  'one_uncl_tutor',
  'uncl_tutor_us',
  'tutor_us_one',
  'us_one_alway',
  'one_alway_front',
  'alway_front_row',
  'front_row_everi',
  'row_everi_school',
  'everi_school_perform',
  'school_perform_game',
  'perform_game_whenev',
  'game_whenev_wake',
  'whenev_wake_middl',
  'wake_middl_night',
  'middl_night_miss',
  'night_miss_dad',
  'miss_dad_ill',
  'dad_ill_call',
  'ill_call_uncl',
  'call_uncl_david',
  'uncl_david_know',
  'david_know_hell',
  'know_hell_alway',
  'hell_alway_pick',
  'alway_pick_mom',
  'pick_mom_eventu',
  'mom_eventu_remarri',
  'eventu_remarri_bob',
  'remarri_bob_never',
  'bob_never_like',
  'never_like_bob',
  'like_bob_alway',
  'bob_alway_control',
  'alway_control_place',
  'control_place_us',
  'place_us_strict',
  'us_strict_schedul',
  'strict_schedul_dinner',
  'schedul_dinner_everyday',
  'dinner_everyday_matter',
  'everyday_matter_came',
  'matter_came_home',
  'came_home_late',
  'home_late_dinner',
  'late_dinner_allow',
  'dinner_allow_eat',
  'allow_eat_night',
  'eat_night_whenev',
  'night_whenev_uncl',
  'whenev_uncl_gave',
  'uncl_gave_si',
  'gave_si_money',
  'si_money_give',
  'money_give_bob',
  'give_bob_divid',
  'bob_divid_money',
  'divid_money_equal',
  'money_equal_coupl',
  'equal_coupl_month',
  'coupl_month_ago',
  'month_ago_si',
  'ago_si_eat',
  'si_eat_uncl',
  'eat_uncl_david',
  'uncl_david_famili',
  'david_famili_dinner',
  'famili_dinner_convers',
  'dinner_convers_eventu',
  'convers_eventu_led',
  'eventu_led_want',
  'led_want_go',
  'want_go_colleg',
  'go_colleg_pay',
  'colleg_pay_uncl',
  'pay_uncl_david',
  'uncl_david_told',
  'david_told_uncl',
  'told_uncl_decid',
  'uncl_decid_long',
  'decid_long_ago',
  'long_ago_go',
  'ago_go_pay',
  'go_pay_siss',
  'pay_siss_tuition',
  'siss_tuition_cost',
  'tuition_cost_live',
  'cost_live_campu',
  'live_campu_cri',
  'campu_cri_heard',
  'cri_heard_laugh',
  'heard_laugh_jokingli',
  'laugh_jokingli_said',
  'jokingli_said_hope',
  'said_hope_get',
  'hope_get_medic',
  'get_medic_school',
  'medic_school_go',
  'school_go_cost',
  'go_cost_fortun',
  'cost_fortun_went',
  'fortun_went_home',
  'went_home_excitedli',
  'home_excitedli_told',
  'excitedli_told_mom',
  'told_mom_bob',
  'mom_bob_uncl',
  'bob_uncl_go',
  'uncl_go_pay',
  'go_pay_colleg',
  'pay_colleg_instead',
  'colleg_instead_happi',
  'instead_happi_look',
  'happi_look_furiou',
  'look_furiou_bob',
  'furiou_bob_start',
  'bob_start_scream',
  'start_scream_unfair',
  'scream_unfair_step',
  'unfair_step_sibl',
  'step_sibl_half',
  'sibl_half_sister',
  'half_sister_get',
  'sister_get_free',
  'get_free_ride',
  'free_ride_colleg',
  'ride_colleg_want',
  'colleg_want_tell',
  'want_tell_uncl',
  'tell_uncl_divid',
  'uncl_divid_colleg',
  'divid_colleg_fund',
  'colleg_fund_equal',
  'fund_equal_among',
  'equal_among_kid',
  'among_kid_refus',
  'kid_refus_next',
  'refus_next_day',
  'next_day_kept',
  'day_kept_scream',
  'kept_scream_us',
  'scream_us_si',
  'us_si_pack',
  'si_pack_bag',
  'pack_bag_go',
  'bag_go_uncl',
  'go_uncl_david',
  'uncl_david_hous',
  'david_hous_kept',
  'hous_kept_scream',
  'kept_scream_even',
  'scream_even_follow',
  'even_follow_us',
  'follow_us_car',
  'us_car_si',
  'car_si_live',
  'si_live_uncl',
  'live_uncl_david',
  'uncl_david_famili',
  'david_famili_ever',
  'famili_ever_sinc',
  'ever_sinc_feel',
  'sinc_feel_like',
  'feel_like_home',
  'like_home_ever',
  'home_ever_hous',
  'ever_hous_mom',
  'hous_mom_ask',
  'mom_ask_us',
  'ask_us_come',
  'us_come_home',
  'come_home_christma',
  'home_christma_month',
  'christma_month_ive',
  'month_ive_refus',
  'ive_refus_today',
  'refus_today_th',
  'today_th_call',
  'th_call_morn',
  'call_morn_cri',
  'morn_cri_say',
  'cri_say_need',
  'say_need_spend',
  'need_spend_christma',
  'spend_christma_famili',
  'christma_famili_wrong',
  'famili_wrong_spend',
  'wrong_spend_christma',
  'spend_christma_mom'],
 ['unemploy',
  'god',
  'know',
  'look',
  'job',
  'im',
  'sale',
  'rep',
  'well',
  'month',
  'right',
  'recov',
  'knee',
  'surgeri',
  'husband',
  'high',
  'pay',
  'job',
  'first',
  'suggest',
  'leav',
  'career',
  'sale',
  'rep',
  'behind',
  '[',
  'wealthi',
  'famili',
  'standard',
  'theyd',
  'mock',
  'lot',
  ']',
  'stay',
  'home',
  'refus',
  'love',
  'job',
  'want',
  'grow',
  'suggest',
  'find',
  'better',
  'job',
  'sinc',
  'connect',
  'field',
  'ive',
  'sever',
  'job',
  'interview',
  'husband',
  'ruin',
  'hed',
  'walk',
  'room',
  'whenev',
  'im',
  'potenti',
  'job',
  'interview',
  'introduc',
  'take',
  'convers',
  'interview',
  'hed',
  'tell',
  'good',
  'slip',
  'bad',
  'stuff',
  'eventu',
  'cost',
  'job',
  'argument',
  'make',
  'recommand',
  'sinc',
  'connect',
  'influenc',
  'told',
  'stop',
  'let',
  'handl',
  'sulk',
  'say',
  'tri',
  'guid',
  'whatnot',
  'sever',
  'day',
  'ago',
  'id',
  'gotten',
  'job',
  'interview',
  'get',
  'insid',
  'room',
  'interview',
  'start',
  'lock',
  'door',
  'husband',
  'tri',
  'come',
  'start',
  'knock',
  'door',
  'ask',
  'lock',
  'door',
  'tell',
  'let',
  'put',
  'headphon',
  'use',
  'nois',
  'cancel',
  'kept',
  'knock',
  'tell',
  'open',
  'door',
  'interview',
  'unlock',
  'door',
  'walk',
  'went',
  'call',
  'disrespect',
  'aw',
  'lock',
  'like',
  'said',
  'sorri',
  'want',
  'work',
  'compani',
  'badli',
  'let',
  'ruin',
  'got',
  'offend',
  'said',
  'petti',
  'childish',
  'also',
  'ungrat',
  'stunt',
  'pull',
  'said',
  'tri',
  'help',
  'get',
  'best',
  'deal',
  'said',
  'im',
  'child',
  'said',
  'ye',
  'especi',
  'behav',
  'exclud',
  'interview',
  'unemploy_god',
  'god_know',
  'know_look',
  'look_job',
  'job_im',
  'im_sale',
  'sale_rep',
  'rep_well',
  'well_month',
  'month_right',
  'right_recov',
  'recov_knee',
  'knee_surgeri',
  'surgeri_husband',
  'husband_high',
  'high_pay',
  'pay_job',
  'job_first',
  'first_suggest',
  'suggest_leav',
  'leav_career',
  'career_sale',
  'sale_rep',
  'rep_behind',
  'behind_[',
  '[_wealthi',
  'wealthi_famili',
  'famili_standard',
  'standard_theyd',
  'theyd_mock',
  'mock_lot',
  'lot_]',
  ']_stay',
  'stay_home',
  'home_refus',
  'refus_love',
  'love_job',
  'job_want',
  'want_grow',
  'grow_suggest',
  'suggest_find',
  'find_better',
  'better_job',
  'job_sinc',
  'sinc_connect',
  'connect_field',
  'field_ive',
  'ive_sever',
  'sever_job',
  'job_interview',
  'interview_husband',
  'husband_ruin',
  'ruin_hed',
  'hed_walk',
  'walk_room',
  'room_whenev',
  'whenev_im',
  'im_potenti',
  'potenti_job',
  'job_interview',
  'interview_introduc',
  'introduc_take',
  'take_convers',
  'convers_interview',
  'interview_hed',
  'hed_tell',
  'tell_good',
  'good_slip',
  'slip_bad',
  'bad_stuff',
  'stuff_eventu',
  'eventu_cost',
  'cost_job',
  'job_argument',
  'argument_make',
  'make_recommand',
  'recommand_sinc',
  'sinc_connect',
  'connect_influenc',
  'influenc_told',
  'told_stop',
  'stop_let',
  'let_handl',
  'handl_sulk',
  'sulk_say',
  'say_tri',
  'tri_guid',
  'guid_whatnot',
  'whatnot_sever',
  'sever_day',
  'day_ago',
  'ago_id',
  'id_gotten',
  'gotten_job',
  'job_interview',
  'interview_get',
  'get_insid',
  'insid_room',
  'room_interview',
  'interview_start',
  'start_lock',
  'lock_door',
  'door_husband',
  'husband_tri',
  'tri_come',
  'come_start',
  'start_knock',
  'knock_door',
  'door_ask',
  'ask_lock',
  'lock_door',
  'door_tell',
  'tell_let',
  'let_put',
  'put_headphon',
  'headphon_use',
  'use_nois',
  'nois_cancel',
  'cancel_kept',
  'kept_knock',
  'knock_tell',
  'tell_open',
  'open_door',
  'door_interview',
  'interview_unlock',
  'unlock_door',
  'door_walk',
  'walk_went',
  'went_call',
  'call_disrespect',
  'disrespect_aw',
  'aw_lock',
  'lock_like',
  'like_said',
  'said_sorri',
  'sorri_want',
  'want_work',
  'work_compani',
  'compani_badli',
  'badli_let',
  'let_ruin',
  'ruin_got',
  'got_offend',
  'offend_said',
  'said_petti',
  'petti_childish',
  'childish_also',
  'also_ungrat',
  'ungrat_stunt',
  'stunt_pull',
  'pull_said',
  'said_tri',
  'tri_help',
  'help_get',
  'get_best',
  'best_deal',
  'deal_said',
  'said_im',
  'im_child',
  'child_said',
  'said_ye',
  'ye_especi',
  'especi_behav',
  'behav_exclud',
  'exclud_interview',
  'unemploy_god_know',
  'god_know_look',
  'know_look_job',
  'look_job_im',
  'job_im_sale',
  'im_sale_rep',
  'sale_rep_well',
  'rep_well_month',
  'well_month_right',
  'month_right_recov',
  'right_recov_knee',
  'recov_knee_surgeri',
  'knee_surgeri_husband',
  'surgeri_husband_high',
  'husband_high_pay',
  'high_pay_job',
  'pay_job_first',
  'job_first_suggest',
  'first_suggest_leav',
  'suggest_leav_career',
  'leav_career_sale',
  'career_sale_rep',
  'sale_rep_behind',
  'rep_behind_[',
  'behind_[_wealthi',
  '[_wealthi_famili',
  'wealthi_famili_standard',
  'famili_standard_theyd',
  'standard_theyd_mock',
  'theyd_mock_lot',
  'mock_lot_]',
  'lot_]_stay',
  ']_stay_home',
  'stay_home_refus',
  'home_refus_love',
  'refus_love_job',
  'love_job_want',
  'job_want_grow',
  'want_grow_suggest',
  'grow_suggest_find',
  'suggest_find_better',
  'find_better_job',
  'better_job_sinc',
  'job_sinc_connect',
  'sinc_connect_field',
  'connect_field_ive',
  'field_ive_sever',
  'ive_sever_job',
  'sever_job_interview',
  'job_interview_husband',
  'interview_husband_ruin',
  'husband_ruin_hed',
  'ruin_hed_walk',
  'hed_walk_room',
  'walk_room_whenev',
  'room_whenev_im',
  'whenev_im_potenti',
  'im_potenti_job',
  'potenti_job_interview',
  'job_interview_introduc',
  'interview_introduc_take',
  'introduc_take_convers',
  'take_convers_interview',
  'convers_interview_hed',
  'interview_hed_tell',
  'hed_tell_good',
  'tell_good_slip',
  'good_slip_bad',
  'slip_bad_stuff',
  'bad_stuff_eventu',
  'stuff_eventu_cost',
  'eventu_cost_job',
  'cost_job_argument',
  'job_argument_make',
  'argument_make_recommand',
  'make_recommand_sinc',
  'recommand_sinc_connect',
  'sinc_connect_influenc',
  'connect_influenc_told',
  'influenc_told_stop',
  'told_stop_let',
  'stop_let_handl',
  'let_handl_sulk',
  'handl_sulk_say',
  'sulk_say_tri',
  'say_tri_guid',
  'tri_guid_whatnot',
  'guid_whatnot_sever',
  'whatnot_sever_day',
  'sever_day_ago',
  'day_ago_id',
  'ago_id_gotten',
  'id_gotten_job',
  'gotten_job_interview',
  'job_interview_get',
  'interview_get_insid',
  'get_insid_room',
  'insid_room_interview',
  'room_interview_start',
  'interview_start_lock',
  'start_lock_door',
  'lock_door_husband',
  'door_husband_tri',
  'husband_tri_come',
  'tri_come_start',
  'come_start_knock',
  'start_knock_door',
  'knock_door_ask',
  'door_ask_lock',
  'ask_lock_door',
  'lock_door_tell',
  'door_tell_let',
  'tell_let_put',
  'let_put_headphon',
  'put_headphon_use',
  'headphon_use_nois',
  'use_nois_cancel',
  'nois_cancel_kept',
  'cancel_kept_knock',
  'kept_knock_tell',
  'knock_tell_open',
  'tell_open_door',
  'open_door_interview',
  'door_interview_unlock',
  'interview_unlock_door',
  'unlock_door_walk',
  'door_walk_went',
  'walk_went_call',
  'went_call_disrespect',
  'call_disrespect_aw',
  'disrespect_aw_lock',
  'aw_lock_like',
  'lock_like_said',
  'like_said_sorri',
  'said_sorri_want',
  'sorri_want_work',
  'want_work_compani',
  'work_compani_badli',
  'compani_badli_let',
  'badli_let_ruin',
  'let_ruin_got',
  'ruin_got_offend',
  'got_offend_said',
  'offend_said_petti',
  'said_petti_childish',
  'petti_childish_also',
  'childish_also_ungrat',
  'also_ungrat_stunt',
  'ungrat_stunt_pull',
  'stunt_pull_said',
  'pull_said_tri',
  'said_tri_help',
  'tri_help_get',
  'help_get_best',
  'get_best_deal',
  'best_deal_said',
  'deal_said_im',
  'said_im_child',
  'im_child_said',
  'child_said_ye',
  'said_ye_especi',
  'ye_especi_behav',
  'especi_behav_exclud',
  'behav_exclud_interview'],
 ['husband',
  'tri',
  'kid',
  'year',
  'ive',
  'seri',
  'mc',
  'singl',
  'pregnanc',
  'success',
  'recent',
  'mc',
  'month',
  'ago',
  'although',
  'husband',
  'never',
  'said',
  'anyth',
  'tri',
  'time',
  'person',
  'tension',
  'emot',
  'overwhelm',
  'ive',
  'becom',
  'sensit',
  'even',
  'mention',
  'topic',
  'took',
  'famili',
  'hous',
  'dinner',
  'last',
  'night',
  'mc',
  'brought',
  'mom',
  'look',
  'disappoint',
  'face',
  'made',
  'lose',
  'appetit',
  'complet',
  'went',
  'may',
  'caus',
  'husband',
  'chime',
  'said',
  'start',
  'come',
  'conclus',
  'mayb',
  'im',
  'incap',
  'mom',
  'floor',
  'two',
  'reason',
  'one',
  'hed',
  'even',
  'say',
  'thing',
  'two',
  'doctor',
  'told',
  'someth',
  'wrong',
  'specif',
  'declar',
  'incap',
  'bear',
  'children',
  'mom',
  'hurt',
  'like',
  'sting',
  'look',
  'like',
  'told',
  'get',
  'offend',
  'sinc',
  'honest',
  'said',
  'love',
  'think',
  'im',
  'perfect',
  'still',
  'think',
  'im',
  'flaw',
  'area',
  'refer',
  'motherhood',
  'point',
  'got',
  'seat',
  'took',
  'stuff',
  'head',
  'door',
  'said',
  'noth',
  'made',
  'way',
  'shout',
  'stop',
  'went',
  'home',
  'came',
  'start',
  'unload',
  'immatur',
  'sensit',
  'ridicul',
  'said',
  'give',
  'honest',
  'opinion',
  'matter',
  'right',
  'polic',
  'word',
  'come',
  'mouth',
  'whether',
  'like',
  'im',
  'hear',
  'still',
  '*',
  'truth',
  '*',
  'argu',
  'stop',
  'talk',
  'altogeth',
  'keep',
  'say',
  'exagger',
  'walk',
  'dinner',
  'disrespect',
  'famili',
  'liter',
  'noth',
  'im',
  'unsur',
  'handl',
  'right',
  'way',
  'yet',
  'act',
  'emot',
  'husband_tri',
  'tri_kid',
  'kid_year',
  'year_ive',
  'ive_seri',
  'seri_mc',
  'mc_singl',
  'singl_pregnanc',
  'pregnanc_success',
  'success_recent',
  'recent_mc',
  'mc_month',
  'month_ago',
  'ago_although',
  'although_husband',
  'husband_never',
  'never_said',
  'said_anyth',
  'anyth_tri',
  'tri_time',
  'time_person',
  'person_tension',
  'tension_emot',
  'emot_overwhelm',
  'overwhelm_ive',
  'ive_becom',
  'becom_sensit',
  'sensit_even',
  'even_mention',
  'mention_topic',
  'topic_took',
  'took_famili',
  'famili_hous',
  'hous_dinner',
  'dinner_last',
  'last_night',
  'night_mc',
  'mc_brought',
  'brought_mom',
  'mom_look',
  'look_disappoint',
  'disappoint_face',
  'face_made',
  'made_lose',
  'lose_appetit',
  'appetit_complet',
  'complet_went',
  'went_may',
  'may_caus',
  'caus_husband',
  'husband_chime',
  'chime_said',
  'said_start',
  'start_come',
  'come_conclus',
  'conclus_mayb',
  'mayb_im',
  'im_incap',
  'incap_mom',
  'mom_floor',
  'floor_two',
  'two_reason',
  'reason_one',
  'one_hed',
  'hed_even',
  'even_say',
  'say_thing',
  'thing_two',
  'two_doctor',
  'doctor_told',
  'told_someth',
  'someth_wrong',
  'wrong_specif',
  'specif_declar',
  'declar_incap',
  'incap_bear',
  'bear_children',
  'children_mom',
  'mom_hurt',
  'hurt_like',
  'like_sting',
  'sting_look',
  'look_like',
  'like_told',
  'told_get',
  'get_offend',
  'offend_sinc',
  'sinc_honest',
  'honest_said',
  'said_love',
  'love_think',
  'think_im',
  'im_perfect',
  'perfect_still',
  'still_think',
  'think_im',
  'im_flaw',
  'flaw_area',
  'area_refer',
  'refer_motherhood',
  'motherhood_point',
  'point_got',
  'got_seat',
  'seat_took',
  'took_stuff',
  'stuff_head',
  'head_door',
  'door_said',
  'said_noth',
  'noth_made',
  'made_way',
  'way_shout',
  'shout_stop',
  'stop_went',
  'went_home',
  'home_came',
  'came_start',
  'start_unload',
  'unload_immatur',
  'immatur_sensit',
  'sensit_ridicul',
  'ridicul_said',
  'said_give',
  'give_honest',
  'honest_opinion',
  'opinion_matter',
  'matter_right',
  'right_polic',
  'polic_word',
  'word_come',
  'come_mouth',
  'mouth_whether',
  'whether_like',
  'like_im',
  'im_hear',
  'hear_still',
  'still_*',
  '*_truth',
  'truth_*',
  '*_argu',
  'argu_stop',
  'stop_talk',
  'talk_altogeth',
  'altogeth_keep',
  'keep_say',
  'say_exagger',
  'exagger_walk',
  'walk_dinner',
  'dinner_disrespect',
  'disrespect_famili',
  'famili_liter',
  'liter_noth',
  'noth_im',
  'im_unsur',
  'unsur_handl',
  'handl_right',
  'right_way',
  'way_yet',
  'yet_act',
  'act_emot',
  'husband_tri_kid',
  'tri_kid_year',
  'kid_year_ive',
  'year_ive_seri',
  'ive_seri_mc',
  'seri_mc_singl',
  'mc_singl_pregnanc',
  'singl_pregnanc_success',
  'pregnanc_success_recent',
  'success_recent_mc',
  'recent_mc_month',
  'mc_month_ago',
  'month_ago_although',
  'ago_although_husband',
  'although_husband_never',
  'husband_never_said',
  'never_said_anyth',
  'said_anyth_tri',
  'anyth_tri_time',
  'tri_time_person',
  'time_person_tension',
  'person_tension_emot',
  'tension_emot_overwhelm',
  'emot_overwhelm_ive',
  'overwhelm_ive_becom',
  'ive_becom_sensit',
  'becom_sensit_even',
  'sensit_even_mention',
  'even_mention_topic',
  'mention_topic_took',
  'topic_took_famili',
  'took_famili_hous',
  'famili_hous_dinner',
  'hous_dinner_last',
  'dinner_last_night',
  'last_night_mc',
  'night_mc_brought',
  'mc_brought_mom',
  'brought_mom_look',
  'mom_look_disappoint',
  'look_disappoint_face',
  'disappoint_face_made',
  'face_made_lose',
  'made_lose_appetit',
  'lose_appetit_complet',
  'appetit_complet_went',
  'complet_went_may',
  'went_may_caus',
  'may_caus_husband',
  'caus_husband_chime',
  'husband_chime_said',
  'chime_said_start',
  'said_start_come',
  'start_come_conclus',
  'come_conclus_mayb',
  'conclus_mayb_im',
  'mayb_im_incap',
  'im_incap_mom',
  'incap_mom_floor',
  'mom_floor_two',
  'floor_two_reason',
  'two_reason_one',
  'reason_one_hed',
  'one_hed_even',
  'hed_even_say',
  'even_say_thing',
  'say_thing_two',
  'thing_two_doctor',
  'two_doctor_told',
  'doctor_told_someth',
  'told_someth_wrong',
  'someth_wrong_specif',
  'wrong_specif_declar',
  'specif_declar_incap',
  'declar_incap_bear',
  'incap_bear_children',
  'bear_children_mom',
  'children_mom_hurt',
  'mom_hurt_like',
  'hurt_like_sting',
  'like_sting_look',
  'sting_look_like',
  'look_like_told',
  'like_told_get',
  'told_get_offend',
  'get_offend_sinc',
  'offend_sinc_honest',
  'sinc_honest_said',
  'honest_said_love',
  'said_love_think',
  'love_think_im',
  'think_im_perfect',
  'im_perfect_still',
  'perfect_still_think',
  'still_think_im',
  'think_im_flaw',
  'im_flaw_area',
  'flaw_area_refer',
  'area_refer_motherhood',
  'refer_motherhood_point',
  'motherhood_point_got',
  'point_got_seat',
  'got_seat_took',
  'seat_took_stuff',
  'took_stuff_head',
  'stuff_head_door',
  'head_door_said',
  'door_said_noth',
  'said_noth_made',
  'noth_made_way',
  'made_way_shout',
  'way_shout_stop',
  'shout_stop_went',
  'stop_went_home',
  'went_home_came',
  'home_came_start',
  'came_start_unload',
  'start_unload_immatur',
  'unload_immatur_sensit',
  'immatur_sensit_ridicul',
  'sensit_ridicul_said',
  'ridicul_said_give',
  'said_give_honest',
  'give_honest_opinion',
  'honest_opinion_matter',
  'opinion_matter_right',
  'matter_right_polic',
  'right_polic_word',
  'polic_word_come',
  'word_come_mouth',
  'come_mouth_whether',
  'mouth_whether_like',
  'whether_like_im',
  'like_im_hear',
  'im_hear_still',
  'hear_still_*',
  'still_*_truth',
  '*_truth_*',
  'truth_*_argu',
  '*_argu_stop',
  'argu_stop_talk',
  'stop_talk_altogeth',
  'talk_altogeth_keep',
  'altogeth_keep_say',
  'keep_say_exagger',
  'say_exagger_walk',
  'exagger_walk_dinner',
  'walk_dinner_disrespect',
  'dinner_disrespect_famili',
  'disrespect_famili_liter',
  'famili_liter_noth',
  'liter_noth_im',
  'noth_im_unsur',
  'im_unsur_handl',
  'unsur_handl_right',
  'handl_right_way',
  'right_way_yet',
  'way_yet_act',
  'yet_act_emot'],
 ['ex',
  'husband',
  'togeth',
  'year',
  'beauti',
  'daughter',
  'togeth',
  'jocelin',
  'got',
  'divorc',
  'year',
  'ago',
  'due',
  'infidel',
  'part',
  'devast',
  'love',
  'life',
  'betray',
  'trust',
  'loyalti',
  'built',
  'make',
  'matter',
  'wors',
  'end',
  'relationship',
  'woman',
  'cheat',
  'got',
  'engag',
  'one',
  'year',
  'later',
  'set',
  'marri',
  'two',
  'week',
  'honestli',
  'still',
  'heartbroken',
  'divorc',
  'hurt',
  'togeth',
  'year',
  'could',
  'go',
  'fall',
  'love',
  'someon',
  'els',
  'noth',
  'howev',
  'jocelin',
  'divorc',
  'great',
  'father',
  'would',
  'never',
  'want',
  'come',
  'bond',
  'jocelin',
  'love',
  'fiancé',
  'sweet',
  'know',
  'reason',
  'dad',
  'divorc',
  'want',
  'tell',
  'bit',
  'older',
  'want',
  'tell',
  'anyway',
  'compromis',
  'jocelin',
  'could',
  'come',
  'wed',
  'would',
  'provid',
  'transport',
  'wed',
  'want',
  'part',
  'want',
  'drop',
  'daughter',
  'wed',
  'want',
  'see',
  'decor',
  'happi',
  'guest',
  'itd',
  'much',
  'tell',
  'obvious',
  'agre',
  'today',
  'call',
  'ask',
  'ask',
  'huge',
  'favor',
  'turn',
  'futur',
  'law',
  'fli',
  'morn',
  'wed',
  'go',
  'pick',
  'therefor',
  'cant',
  'pick',
  'daughter',
  'day',
  'want',
  'ask',
  'could',
  'take',
  'said',
  'absolut',
  'ask',
  'cant',
  'pick',
  'day',
  'get',
  'school',
  'said',
  'want',
  'make',
  'drive',
  'twice',
  'like',
  'time',
  'prepar',
  'rehears',
  'dinner',
  'ask',
  'cant',
  'bride',
  'pick',
  'parent',
  'said',
  'shell',
  'get',
  'hair',
  'done',
  'abl',
  'laugh',
  'told',
  'way',
  'id',
  'take',
  'daughter',
  'hed',
  'figur',
  'boy',
  'say',
  'daughter',
  'ran',
  'downstair',
  'cri',
  'face',
  'beet',
  'red',
  'minut',
  'convers',
  'dad',
  'call',
  'terribl',
  'accus',
  'want',
  'spend',
  'time',
  'dad',
  'told',
  'case',
  'demand',
  'know',
  'take',
  'give',
  'answer',
  'ran',
  'upstair',
  'cri',
  'im',
  'get',
  'messag',
  'famili',
  'call',
  'heartless',
  'cold',
  'bitch',
  'tri',
  'ruin',
  'special',
  'day',
  'relationship',
  'long',
  'famili',
  'understand',
  'point',
  'view',
  'feel',
  'terribl',
  'ive',
  'upset',
  'daughter',
  'know',
  'aita',
  'put',
  'asid',
  'feel',
  'take',
  'ex_husband',
  'husband_togeth',
  'togeth_year',
  'year_beauti',
  'beauti_daughter',
  'daughter_togeth',
  'togeth_jocelin',
  'jocelin_got',
  'got_divorc',
  'divorc_year',
  'year_ago',
  'ago_due',
  'due_infidel',
  'infidel_part',
  'part_devast',
  'devast_love',
  'love_life',
  'life_betray',
  'betray_trust',
  'trust_loyalti',
  'loyalti_built',
  'built_make',
  'make_matter',
  'matter_wors',
  'wors_end',
  'end_relationship',
  'relationship_woman',
  'woman_cheat',
  'cheat_got',
  'got_engag',
  'engag_one',
  'one_year',
  'year_later',
  'later_set',
  'set_marri',
  'marri_two',
  'two_week',
  'week_honestli',
  'honestli_still',
  'still_heartbroken',
  'heartbroken_divorc',
  'divorc_hurt',
  'hurt_togeth',
  'togeth_year',
  'year_could',
  'could_go',
  'go_fall',
  'fall_love',
  'love_someon',
  'someon_els',
  'els_noth',
  'noth_howev',
  'howev_jocelin',
  'jocelin_divorc',
  'divorc_great',
  'great_father',
  'father_would',
  'would_never',
  'never_want',
  'want_come',
  'come_bond',
  'bond_jocelin',
  'jocelin_love',
  'love_fiancé',
  'fiancé_sweet',
  'sweet_know',
  'know_reason',
  'reason_dad',
  'dad_divorc',
  'divorc_want',
  'want_tell',
  'tell_bit',
  'bit_older',
  'older_want',
  'want_tell',
  'tell_anyway',
  'anyway_compromis',
  'compromis_jocelin',
  'jocelin_could',
  'could_come',
  'come_wed',
  'wed_would',
  'would_provid',
  'provid_transport',
  'transport_wed',
  'wed_want',
  'want_part',
  'part_want',
  'want_drop',
  'drop_daughter',
  'daughter_wed',
  'wed_want',
  'want_see',
  'see_decor',
  'decor_happi',
  'happi_guest',
  'guest_itd',
  'itd_much',
  'much_tell',
  'tell_obvious',
  'obvious_agre',
  'agre_today',
  'today_call',
  'call_ask',
  'ask_ask',
  'ask_huge',
  'huge_favor',
  'favor_turn',
  'turn_futur',
  'futur_law',
  'law_fli',
  'fli_morn',
  'morn_wed',
  'wed_go',
  'go_pick',
  'pick_therefor',
  'therefor_cant',
  'cant_pick',
  'pick_daughter',
  'daughter_day',
  'day_want',
  'want_ask',
  'ask_could',
  'could_take',
  'take_said',
  'said_absolut',
  'absolut_ask',
  'ask_cant',
  'cant_pick',
  'pick_day',
  'day_get',
  'get_school',
  'school_said',
  'said_want',
  'want_make',
  'make_drive',
  'drive_twice',
  'twice_like',
  'like_time',
  'time_prepar',
  'prepar_rehears',
  'rehears_dinner',
  'dinner_ask',
  'ask_cant',
  'cant_bride',
  'bride_pick',
  'pick_parent',
  'parent_said',
  'said_shell',
  'shell_get',
  'get_hair',
  'hair_done',
  'done_abl',
  'abl_laugh',
  'laugh_told',
  'told_way',
  'way_id',
  'id_take',
  'take_daughter',
  'daughter_hed',
  'hed_figur',
  'figur_boy',
  'boy_say',
  'say_daughter',
  'daughter_ran',
  'ran_downstair',
  'downstair_cri',
  'cri_face',
  'face_beet',
  'beet_red',
  'red_minut',
  'minut_convers',
  'convers_dad',
  'dad_call',
  'call_terribl',
  'terribl_accus',
  'accus_want',
  'want_spend',
  'spend_time',
  'time_dad',
  'dad_told',
  'told_case',
  'case_demand',
  'demand_know',
  'know_take',
  'take_give',
  'give_answer',
  'answer_ran',
  'ran_upstair',
  'upstair_cri',
  'cri_im',
  'im_get',
  'get_messag',
  'messag_famili',
  'famili_call',
  'call_heartless',
  'heartless_cold',
  'cold_bitch',
  'bitch_tri',
  'tri_ruin',
  'ruin_special',
  'special_day',
  'day_relationship',
  'relationship_long',
  'long_famili',
  'famili_understand',
  'understand_point',
  'point_view',
  'view_feel',
  'feel_terribl',
  'terribl_ive',
  'ive_upset',
  'upset_daughter',
  'daughter_know',
  'know_aita',
  'aita_put',
  'put_asid',
  'asid_feel',
  'feel_take',
  'ex_husband_togeth',
  'husband_togeth_year',
  'togeth_year_beauti',
  'year_beauti_daughter',
  'beauti_daughter_togeth',
  'daughter_togeth_jocelin',
  'togeth_jocelin_got',
  'jocelin_got_divorc',
  'got_divorc_year',
  'divorc_year_ago',
  'year_ago_due',
  'ago_due_infidel',
  'due_infidel_part',
  'infidel_part_devast',
  'part_devast_love',
  'devast_love_life',
  'love_life_betray',
  'life_betray_trust',
  'betray_trust_loyalti',
  'trust_loyalti_built',
  'loyalti_built_make',
  'built_make_matter',
  'make_matter_wors',
  'matter_wors_end',
  'wors_end_relationship',
  'end_relationship_woman',
  'relationship_woman_cheat',
  'woman_cheat_got',
  'cheat_got_engag',
  'got_engag_one',
  'engag_one_year',
  'one_year_later',
  'year_later_set',
  'later_set_marri',
  'set_marri_two',
  'marri_two_week',
  'two_week_honestli',
  'week_honestli_still',
  'honestli_still_heartbroken',
  'still_heartbroken_divorc',
  'heartbroken_divorc_hurt',
  'divorc_hurt_togeth',
  'hurt_togeth_year',
  'togeth_year_could',
  'year_could_go',
  'could_go_fall',
  'go_fall_love',
  'fall_love_someon',
  'love_someon_els',
  'someon_els_noth',
  'els_noth_howev',
  'noth_howev_jocelin',
  'howev_jocelin_divorc',
  'jocelin_divorc_great',
  'divorc_great_father',
  'great_father_would',
  'father_would_never',
  'would_never_want',
  'never_want_come',
  'want_come_bond',
  'come_bond_jocelin',
  'bond_jocelin_love',
  'jocelin_love_fiancé',
  'love_fiancé_sweet',
  'fiancé_sweet_know',
  'sweet_know_reason',
  'know_reason_dad',
  'reason_dad_divorc',
  'dad_divorc_want',
  'divorc_want_tell',
  'want_tell_bit',
  'tell_bit_older',
  'bit_older_want',
  'older_want_tell',
  'want_tell_anyway',
  'tell_anyway_compromis',
  'anyway_compromis_jocelin',
  'compromis_jocelin_could',
  'jocelin_could_come',
  'could_come_wed',
  'come_wed_would',
  'wed_would_provid',
  'would_provid_transport',
  'provid_transport_wed',
  'transport_wed_want',
  'wed_want_part',
  'want_part_want',
  'part_want_drop',
  'want_drop_daughter',
  'drop_daughter_wed',
  'daughter_wed_want',
  'wed_want_see',
  'want_see_decor',
  'see_decor_happi',
  'decor_happi_guest',
  'happi_guest_itd',
  'guest_itd_much',
  'itd_much_tell',
  'much_tell_obvious',
  'tell_obvious_agre',
  'obvious_agre_today',
  'agre_today_call',
  'today_call_ask',
  'call_ask_ask',
  'ask_ask_huge',
  'ask_huge_favor',
  'huge_favor_turn',
  'favor_turn_futur',
  'turn_futur_law',
  'futur_law_fli',
  'law_fli_morn',
  'fli_morn_wed',
  'morn_wed_go',
  'wed_go_pick',
  'go_pick_therefor',
  'pick_therefor_cant',
  'therefor_cant_pick',
  'cant_pick_daughter',
  'pick_daughter_day',
  'daughter_day_want',
  'day_want_ask',
  'want_ask_could',
  'ask_could_take',
  'could_take_said',
  'take_said_absolut',
  'said_absolut_ask',
  'absolut_ask_cant',
  'ask_cant_pick',
  'cant_pick_day',
  'pick_day_get',
  'day_get_school',
  'get_school_said',
  'school_said_want',
  'said_want_make',
  'want_make_drive',
  'make_drive_twice',
  'drive_twice_like',
  'twice_like_time',
  'like_time_prepar',
  'time_prepar_rehears',
  'prepar_rehears_dinner',
  'rehears_dinner_ask',
  'dinner_ask_cant',
  'ask_cant_bride',
  'cant_bride_pick',
  'bride_pick_parent',
  'pick_parent_said',
  'parent_said_shell',
  'said_shell_get',
  'shell_get_hair',
  'get_hair_done',
  'hair_done_abl',
  'done_abl_laugh',
  'abl_laugh_told',
  'laugh_told_way',
  'told_way_id',
  'way_id_take',
  'id_take_daughter',
  'take_daughter_hed',
  'daughter_hed_figur',
  'hed_figur_boy',
  'figur_boy_say',
  'boy_say_daughter',
  'say_daughter_ran',
  'daughter_ran_downstair',
  'ran_downstair_cri',
  'downstair_cri_face',
  'cri_face_beet',
  'face_beet_red',
  'beet_red_minut',
  'red_minut_convers',
  'minut_convers_dad',
  'convers_dad_call',
  'dad_call_terribl',
  'call_terribl_accus',
  'terribl_accus_want',
  'accus_want_spend',
  'want_spend_time',
  'spend_time_dad',
  'time_dad_told',
  'dad_told_case',
  'told_case_demand',
  'case_demand_know',
  'demand_know_take',
  'know_take_give',
  'take_give_answer',
  'give_answer_ran',
  'answer_ran_upstair',
  'ran_upstair_cri',
  'upstair_cri_im',
  'cri_im_get',
  'im_get_messag',
  'get_messag_famili',
  'messag_famili_call',
  'famili_call_heartless',
  'call_heartless_cold',
  'heartless_cold_bitch',
  'cold_bitch_tri',
  'bitch_tri_ruin',
  'tri_ruin_special',
  'ruin_special_day',
  'special_day_relationship',
  'day_relationship_long',
  'relationship_long_famili',
  'long_famili_understand',
  'famili_understand_point',
  'understand_point_view',
  'point_view_feel',
  'view_feel_terribl',
  'feel_terribl_ive',
  'terribl_ive_upset',
  'ive_upset_daughter',
  'upset_daughter_know',
  'daughter_know_aita',
  'know_aita_put',
  'aita_put_asid',
  'put_asid_feel',
  'asid_feel_take'],
 ['girl',
  'nicol',
  'start',
  'go',
  'school',
  'winter',
  'break',
  'littl',
  'weird',
  'tbh',
  'talk',
  'lot',
  'talk',
  'quiet',
  'bare',
  'hear',
  'use',
  'eat',
  'car',
  'one',
  'friend',
  'felt',
  'bad',
  'invit',
  'eat',
  'us',
  'notic',
  'lunch',
  'littl',
  'piec',
  'paper',
  'shed',
  'read',
  'smile',
  'like',
  'second',
  'fold',
  'put',
  'pocket',
  'lunchbox',
  'sometim',
  'shed',
  'take',
  'read',
  'coupl',
  'time',
  'lunch',
  'eventu',
  'ask',
  'said',
  'nanni',
  'write',
  'note',
  'everi',
  'day',
  'ask',
  'think',
  'littl',
  'embarrass',
  'know',
  'anyon',
  'note',
  'lunch',
  'past',
  'th',
  'grade',
  'got',
  'kinda',
  'defens',
  'said',
  'nanni',
  'similar',
  'thing',
  'sibl',
  'preschool',
  'elementari',
  'school',
  'kinda',
  'prove',
  'point',
  'start',
  'eat',
  'car',
  'one',
  'friend',
  'got',
  'mad',
  'appar',
  'realli',
  'bad',
  'home',
  'life',
  'move',
  'never',
  'anyon',
  'stuff',
  'idk',
  'tf',
  'expect',
  'know',
  'consid',
  'usual',
  'talk',
  'school',
  'start',
  'drama',
  'friend',
  'group',
  'want',
  'know',
  'asshol',
  'girl_nicol',
  'nicol_start',
  'start_go',
  'go_school',
  'school_winter',
  'winter_break',
  'break_littl',
  'littl_weird',
  'weird_tbh',
  'tbh_talk',
  'talk_lot',
  'lot_talk',
  'talk_quiet',
  'quiet_bare',
  'bare_hear',
  'hear_use',
  'use_eat',
  'eat_car',
  'car_one',
  'one_friend',
  'friend_felt',
  'felt_bad',
  'bad_invit',
  'invit_eat',
  'eat_us',
  'us_notic',
  'notic_lunch',
  'lunch_littl',
  'littl_piec',
  'piec_paper',
  'paper_shed',
  'shed_read',
  'read_smile',
  'smile_like',
  'like_second',
  'second_fold',
  'fold_put',
  'put_pocket',
  'pocket_lunchbox',
  'lunchbox_sometim',
  'sometim_shed',
  'shed_take',
  'take_read',
  'read_coupl',
  'coupl_time',
  'time_lunch',
  'lunch_eventu',
  'eventu_ask',
  'ask_said',
  'said_nanni',
  'nanni_write',
  'write_note',
  'note_everi',
  'everi_day',
  'day_ask',
  'ask_think',
  'think_littl',
  'littl_embarrass',
  'embarrass_know',
  'know_anyon',
  'anyon_note',
  'note_lunch',
  'lunch_past',
  'past_th',
  'th_grade',
  'grade_got',
  'got_kinda',
  'kinda_defens',
  'defens_said',
  'said_nanni',
  'nanni_similar',
  'similar_thing',
  'thing_sibl',
  'sibl_preschool',
  'preschool_elementari',
  'elementari_school',
  'school_kinda',
  'kinda_prove',
  'prove_point',
  'point_start',
  'start_eat',
  'eat_car',
  'car_one',
  'one_friend',
  'friend_got',
  'got_mad',
  'mad_appar',
  'appar_realli',
  'realli_bad',
  'bad_home',
  'home_life',
  'life_move',
  'move_never',
  'never_anyon',
  'anyon_stuff',
  'stuff_idk',
  'idk_tf',
  'tf_expect',
  'expect_know',
  'know_consid',
  'consid_usual',
  'usual_talk',
  'talk_school',
  'school_start',
  'start_drama',
  'drama_friend',
  'friend_group',
  'group_want',
  'want_know',
  'know_asshol',
  'girl_nicol_start',
  'nicol_start_go',
  'start_go_school',
  'go_school_winter',
  'school_winter_break',
  'winter_break_littl',
  'break_littl_weird',
  'littl_weird_tbh',
  'weird_tbh_talk',
  'tbh_talk_lot',
  'talk_lot_talk',
  'lot_talk_quiet',
  'talk_quiet_bare',
  'quiet_bare_hear',
  'bare_hear_use',
  'hear_use_eat',
  'use_eat_car',
  'eat_car_one',
  'car_one_friend',
  'one_friend_felt',
  'friend_felt_bad',
  'felt_bad_invit',
  'bad_invit_eat',
  'invit_eat_us',
  'eat_us_notic',
  'us_notic_lunch',
  'notic_lunch_littl',
  'lunch_littl_piec',
  'littl_piec_paper',
  'piec_paper_shed',
  'paper_shed_read',
  'shed_read_smile',
  'read_smile_like',
  'smile_like_second',
  'like_second_fold',
  'second_fold_put',
  'fold_put_pocket',
  'put_pocket_lunchbox',
  'pocket_lunchbox_sometim',
  'lunchbox_sometim_shed',
  'sometim_shed_take',
  'shed_take_read',
  'take_read_coupl',
  'read_coupl_time',
  'coupl_time_lunch',
  'time_lunch_eventu',
  'lunch_eventu_ask',
  'eventu_ask_said',
  'ask_said_nanni',
  'said_nanni_write',
  'nanni_write_note',
  'write_note_everi',
  'note_everi_day',
  'everi_day_ask',
  'day_ask_think',
  'ask_think_littl',
  'think_littl_embarrass',
  'littl_embarrass_know',
  'embarrass_know_anyon',
  'know_anyon_note',
  'anyon_note_lunch',
  'note_lunch_past',
  'lunch_past_th',
  'past_th_grade',
  'th_grade_got',
  'grade_got_kinda',
  'got_kinda_defens',
  'kinda_defens_said',
  'defens_said_nanni',
  'said_nanni_similar',
  'nanni_similar_thing',
  'similar_thing_sibl',
  'thing_sibl_preschool',
  'sibl_preschool_elementari',
  'preschool_elementari_school',
  'elementari_school_kinda',
  'school_kinda_prove',
  'kinda_prove_point',
  'prove_point_start',
  'point_start_eat',
  'start_eat_car',
  'eat_car_one',
  'car_one_friend',
  'one_friend_got',
  'friend_got_mad',
  'got_mad_appar',
  'mad_appar_realli',
  'appar_realli_bad',
  'realli_bad_home',
  'bad_home_life',
  'home_life_move',
  'life_move_never',
  'move_never_anyon',
  'never_anyon_stuff',
  'anyon_stuff_idk',
  'stuff_idk_tf',
  'idk_tf_expect',
  'tf_expect_know',
  'expect_know_consid',
  'know_consid_usual',
  'consid_usual_talk',
  'usual_talk_school',
  'talk_school_start',
  'school_start_drama',
  'start_drama_friend',
  'drama_friend_group',
  'friend_group_want',
  'group_want_know',
  'want_know_asshol'],
 ['husband',
  'sister',
  'move',
  'us',
  'major',
  'argument',
  'babi',
  'name',
  'theyr',
  'expect',
  'month',
  'known',
  'picki',
  'refus',
  'eat',
  'normal',
  'cook',
  'cook',
  'favorit',
  'food',
  'cant',
  'eat',
  'allergi',
  'yay',
  'everyday',
  'dinner',
  'figur',
  'eat',
  'sinc',
  'eat',
  'food',
  'im',
  'allerg',
  'last',
  'night',
  'husband',
  'agre',
  'hed',
  'cook',
  'cook',
  'us',
  'togeth',
  'seper',
  'got',
  'home',
  'long',
  'day',
  'work',
  'found',
  'sil',
  'convinc',
  'husband',
  'cook',
  'meal',
  'want',
  'cancel',
  'meal',
  'plan',
  'saw',
  'eat',
  'togeth',
  'kitchen',
  'husband',
  'apologit',
  'said',
  'sister',
  'convinc',
  'eat',
  'cook',
  'meal',
  'want',
  'us',
  'said',
  'fine',
  'went',
  'order',
  'food',
  'restaur',
  'went',
  'take',
  'shower',
  'work',
  'laptop',
  'came',
  'downstair',
  'find',
  'order',
  'place',
  'kitchen',
  'counter',
  'open',
  'someon',
  'ate',
  'major',
  'turn',
  'around',
  'sil',
  'stand',
  'say',
  'woke',
  'hungri',
  'resist',
  'smell',
  'come',
  'box',
  'lost',
  'yell',
  'ask',
  'wtf',
  'said',
  'save',
  'true',
  'rice',
  'dress',
  'start',
  'argu',
  'told',
  'take',
  'anymor',
  'told',
  'pack',
  'shit',
  'leav',
  'first',
  'thing',
  'morn',
  'began',
  'cri',
  'husband',
  'got',
  'involv',
  'defend',
  'repeatedli',
  'say',
  'pregnant',
  'eat',
  'basic',
  'suggest',
  'go',
  'make',
  'someth',
  'quick',
  'fridg',
  'let',
  'go',
  'refus',
  'bigger',
  'argument',
  'ensu',
  'aita',
  'kick',
  'husband_sister',
  'sister_move',
  'move_us',
  'us_major',
  'major_argument',
  'argument_babi',
  'babi_name',
  'name_theyr',
  'theyr_expect',
  'expect_month',
  'month_known',
  'known_picki',
  'picki_refus',
  'refus_eat',
  'eat_normal',
  'normal_cook',
  'cook_cook',
  'cook_favorit',
  'favorit_food',
  'food_cant',
  'cant_eat',
  'eat_allergi',
  'allergi_yay',
  'yay_everyday',
  'everyday_dinner',
  'dinner_figur',
  'figur_eat',
  'eat_sinc',
  'sinc_eat',
  'eat_food',
  'food_im',
  'im_allerg',
  'allerg_last',
  'last_night',
  'night_husband',
  'husband_agre',
  'agre_hed',
  'hed_cook',
  'cook_cook',
  'cook_us',
  'us_togeth',
  'togeth_seper',
  'seper_got',
  'got_home',
  'home_long',
  'long_day',
  'day_work',
  'work_found',
  'found_sil',
  'sil_convinc',
  'convinc_husband',
  'husband_cook',
  'cook_meal',
  'meal_want',
  'want_cancel',
  'cancel_meal',
  'meal_plan',
  'plan_saw',
  'saw_eat',
  'eat_togeth',
  'togeth_kitchen',
  'kitchen_husband',
  'husband_apologit',
  'apologit_said',
  'said_sister',
  'sister_convinc',
  'convinc_eat',
  'eat_cook',
  'cook_meal',
  'meal_want',
  'want_us',
  'us_said',
  'said_fine',
  'fine_went',
  'went_order',
  'order_food',
  'food_restaur',
  'restaur_went',
  'went_take',
  'take_shower',
  'shower_work',
  'work_laptop',
  'laptop_came',
  'came_downstair',
  'downstair_find',
  'find_order',
  'order_place',
  'place_kitchen',
  'kitchen_counter',
  'counter_open',
  'open_someon',
  'someon_ate',
  'ate_major',
  'major_turn',
  'turn_around',
  'around_sil',
  'sil_stand',
  'stand_say',
  'say_woke',
  'woke_hungri',
  'hungri_resist',
  'resist_smell',
  'smell_come',
  'come_box',
  'box_lost',
  'lost_yell',
  'yell_ask',
  'ask_wtf',
  'wtf_said',
  'said_save',
  'save_true',
  'true_rice',
  'rice_dress',
  'dress_start',
  'start_argu',
  'argu_told',
  'told_take',
  'take_anymor',
  'anymor_told',
  'told_pack',
  'pack_shit',
  'shit_leav',
  'leav_first',
  'first_thing',
  'thing_morn',
  'morn_began',
  'began_cri',
  'cri_husband',
  'husband_got',
  'got_involv',
  'involv_defend',
  'defend_repeatedli',
  'repeatedli_say',
  'say_pregnant',
  'pregnant_eat',
  'eat_basic',
  'basic_suggest',
  'suggest_go',
  'go_make',
  'make_someth',
  'someth_quick',
  'quick_fridg',
  'fridg_let',
  'let_go',
  'go_refus',
  'refus_bigger',
  'bigger_argument',
  'argument_ensu',
  'ensu_aita',
  'aita_kick',
  'husband_sister_move',
  'sister_move_us',
  'move_us_major',
  'us_major_argument',
  'major_argument_babi',
  'argument_babi_name',
  'babi_name_theyr',
  'name_theyr_expect',
  'theyr_expect_month',
  'expect_month_known',
  'month_known_picki',
  'known_picki_refus',
  'picki_refus_eat',
  'refus_eat_normal',
  'eat_normal_cook',
  'normal_cook_cook',
  'cook_cook_favorit',
  'cook_favorit_food',
  'favorit_food_cant',
  'food_cant_eat',
  'cant_eat_allergi',
  'eat_allergi_yay',
  'allergi_yay_everyday',
  'yay_everyday_dinner',
  'everyday_dinner_figur',
  'dinner_figur_eat',
  'figur_eat_sinc',
  'eat_sinc_eat',
  'sinc_eat_food',
  'eat_food_im',
  'food_im_allerg',
  'im_allerg_last',
  'allerg_last_night',
  'last_night_husband',
  'night_husband_agre',
  'husband_agre_hed',
  'agre_hed_cook',
  'hed_cook_cook',
  'cook_cook_us',
  'cook_us_togeth',
  'us_togeth_seper',
  'togeth_seper_got',
  'seper_got_home',
  'got_home_long',
  'home_long_day',
  'long_day_work',
  'day_work_found',
  'work_found_sil',
  'found_sil_convinc',
  'sil_convinc_husband',
  'convinc_husband_cook',
  'husband_cook_meal',
  'cook_meal_want',
  'meal_want_cancel',
  'want_cancel_meal',
  'cancel_meal_plan',
  'meal_plan_saw',
  'plan_saw_eat',
  'saw_eat_togeth',
  'eat_togeth_kitchen',
  'togeth_kitchen_husband',
  'kitchen_husband_apologit',
  'husband_apologit_said',
  'apologit_said_sister',
  'said_sister_convinc',
  'sister_convinc_eat',
  'convinc_eat_cook',
  'eat_cook_meal',
  'cook_meal_want',
  'meal_want_us',
  'want_us_said',
  'us_said_fine',
  'said_fine_went',
  'fine_went_order',
  'went_order_food',
  'order_food_restaur',
  'food_restaur_went',
  'restaur_went_take',
  'went_take_shower',
  'take_shower_work',
  'shower_work_laptop',
  'work_laptop_came',
  'laptop_came_downstair',
  'came_downstair_find',
  'downstair_find_order',
  'find_order_place',
  'order_place_kitchen',
  'place_kitchen_counter',
  'kitchen_counter_open',
  'counter_open_someon',
  'open_someon_ate',
  'someon_ate_major',
  'ate_major_turn',
  'major_turn_around',
  'turn_around_sil',
  'around_sil_stand',
  'sil_stand_say',
  'stand_say_woke',
  'say_woke_hungri',
  'woke_hungri_resist',
  'hungri_resist_smell',
  'resist_smell_come',
  'smell_come_box',
  'come_box_lost',
  'box_lost_yell',
  'lost_yell_ask',
  'yell_ask_wtf',
  'ask_wtf_said',
  'wtf_said_save',
  'said_save_true',
  'save_true_rice',
  'true_rice_dress',
  'rice_dress_start',
  'dress_start_argu',
  'start_argu_told',
  'argu_told_take',
  'told_take_anymor',
  'take_anymor_told',
  'anymor_told_pack',
  'told_pack_shit',
  'pack_shit_leav',
  'shit_leav_first',
  'leav_first_thing',
  'first_thing_morn',
  'thing_morn_began',
  'morn_began_cri',
  'began_cri_husband',
  'cri_husband_got',
  'husband_got_involv',
  'got_involv_defend',
  'involv_defend_repeatedli',
  'defend_repeatedli_say',
  'repeatedli_say_pregnant',
  'say_pregnant_eat',
  'pregnant_eat_basic',
  'eat_basic_suggest',
  'basic_suggest_go',
  'suggest_go_make',
  'go_make_someth',
  'make_someth_quick',
  'someth_quick_fridg',
  'quick_fridg_let',
  'fridg_let_go',
  'let_go_refus',
  'go_refus_bigger',
  'refus_bigger_argument',
  'bigger_argument_ensu',
  'argument_ensu_aita',
  'ensu_aita_kick'],
 ['son',
  'indian',
  'friend',
  'white',
  'son',
  'brought',
  'friend',
  'school',
  'bu',
  'messag',
  'mom',
  'ask',
  'okay',
  'late',
  'stay',
  'ask',
  'could',
  'stay',
  'serv',
  'dinner',
  'around',
  'would',
  'eat',
  'us',
  'cook',
  'lot',
  'indian',
  'cuisin',
  'hous',
  'grew',
  'make',
  'son',
  'told',
  'friend',
  'picki',
  'ask',
  'could',
  'make',
  'someth',
  'els',
  'keep',
  'fri',
  'chicken',
  'nugget',
  'son',
  'picki',
  'friend',
  'sit',
  'eat',
  'son',
  'friend',
  'seem',
  'happi',
  'nugget',
  'go',
  'play',
  'dinner',
  'boy',
  'mom',
  'pick',
  'littl',
  'get',
  'text',
  'later',
  'ask',
  'fed',
  'son',
  'frozen',
  'food',
  'cook',
  'fresh',
  'dinner',
  'everyon',
  'els',
  'told',
  'son',
  'said',
  'boy',
  'eat',
  'make',
  'said',
  'made',
  'someth',
  'also',
  'instead',
  'get',
  'freezer',
  'food',
  'told',
  'provid',
  'free',
  'childcar',
  'without',
  'notic',
  'kid',
  'chose',
  'eat',
  'everyon',
  'els',
  'ate',
  'continu',
  'child',
  'mom',
  'offer',
  'anyon',
  'altern',
  'made',
  'lucki',
  'accommod',
  'told',
  'let',
  'son',
  'stay',
  'child',
  'abus',
  'anymor',
  'son_indian',
  'indian_friend',
  'friend_white',
  'white_son',
  'son_brought',
  'brought_friend',
  'friend_school',
  'school_bu',
  'bu_messag',
  'messag_mom',
  'mom_ask',
  'ask_okay',
  'okay_late',
  'late_stay',
  'stay_ask',
  'ask_could',
  'could_stay',
  'stay_serv',
  'serv_dinner',
  'dinner_around',
  'around_would',
  'would_eat',
  'eat_us',
  'us_cook',
  'cook_lot',
  'lot_indian',
  'indian_cuisin',
  'cuisin_hous',
  'hous_grew',
  'grew_make',
  'make_son',
  'son_told',
  'told_friend',
  'friend_picki',
  'picki_ask',
  'ask_could',
  'could_make',
  'make_someth',
  'someth_els',
  'els_keep',
  'keep_fri',
  'fri_chicken',
  'chicken_nugget',
  'nugget_son',
  'son_picki',
  'picki_friend',
  'friend_sit',
  'sit_eat',
  'eat_son',
  'son_friend',
  'friend_seem',
  'seem_happi',
  'happi_nugget',
  'nugget_go',
  'go_play',
  'play_dinner',
  'dinner_boy',
  'boy_mom',
  'mom_pick',
  'pick_littl',
  'littl_get',
  'get_text',
  'text_later',
  'later_ask',
  'ask_fed',
  'fed_son',
  'son_frozen',
  'frozen_food',
  'food_cook',
  'cook_fresh',
  'fresh_dinner',
  'dinner_everyon',
  'everyon_els',
  'els_told',
  'told_son',
  'son_said',
  'said_boy',
  'boy_eat',
  'eat_make',
  'make_said',
  'said_made',
  'made_someth',
  'someth_also',
  'also_instead',
  'instead_get',
  'get_freezer',
  'freezer_food',
  'food_told',
  'told_provid',
  'provid_free',
  'free_childcar',
  'childcar_without',
  'without_notic',
  'notic_kid',
  'kid_chose',
  'chose_eat',
  'eat_everyon',
  'everyon_els',
  'els_ate',
  'ate_continu',
  'continu_child',
  'child_mom',
  'mom_offer',
  'offer_anyon',
  'anyon_altern',
  'altern_made',
  'made_lucki',
  'lucki_accommod',
  'accommod_told',
  'told_let',
  'let_son',
  'son_stay',
  'stay_child',
  'child_abus',
  'abus_anymor',
  'son_indian_friend',
  'indian_friend_white',
  'friend_white_son',
  'white_son_brought',
  'son_brought_friend',
  'brought_friend_school',
  'friend_school_bu',
  'school_bu_messag',
  'bu_messag_mom',
  'messag_mom_ask',
  'mom_ask_okay',
  'ask_okay_late',
  'okay_late_stay',
  'late_stay_ask',
  'stay_ask_could',
  'ask_could_stay',
  'could_stay_serv',
  'stay_serv_dinner',
  'serv_dinner_around',
  'dinner_around_would',
  'around_would_eat',
  'would_eat_us',
  'eat_us_cook',
  'us_cook_lot',
  'cook_lot_indian',
  'lot_indian_cuisin',
  'indian_cuisin_hous',
  'cuisin_hous_grew',
  'hous_grew_make',
  'grew_make_son',
  'make_son_told',
  'son_told_friend',
  'told_friend_picki',
  'friend_picki_ask',
  'picki_ask_could',
  'ask_could_make',
  'could_make_someth',
  'make_someth_els',
  'someth_els_keep',
  'els_keep_fri',
  'keep_fri_chicken',
  'fri_chicken_nugget',
  'chicken_nugget_son',
  'nugget_son_picki',
  'son_picki_friend',
  'picki_friend_sit',
  'friend_sit_eat',
  'sit_eat_son',
  'eat_son_friend',
  'son_friend_seem',
  'friend_seem_happi',
  'seem_happi_nugget',
  'happi_nugget_go',
  'nugget_go_play',
  'go_play_dinner',
  'play_dinner_boy',
  'dinner_boy_mom',
  'boy_mom_pick',
  'mom_pick_littl',
  'pick_littl_get',
  'littl_get_text',
  'get_text_later',
  'text_later_ask',
  'later_ask_fed',
  'ask_fed_son',
  'fed_son_frozen',
  'son_frozen_food',
  'frozen_food_cook',
  'food_cook_fresh',
  'cook_fresh_dinner',
  'fresh_dinner_everyon',
  'dinner_everyon_els',
  'everyon_els_told',
  'els_told_son',
  'told_son_said',
  'son_said_boy',
  'said_boy_eat',
  'boy_eat_make',
  'eat_make_said',
  'make_said_made',
  'said_made_someth',
  'made_someth_also',
  'someth_also_instead',
  'also_instead_get',
  'instead_get_freezer',
  'get_freezer_food',
  'freezer_food_told',
  'food_told_provid',
  'told_provid_free',
  'provid_free_childcar',
  'free_childcar_without',
  'childcar_without_notic',
  'without_notic_kid',
  'notic_kid_chose',
  'kid_chose_eat',
  'chose_eat_everyon',
  'eat_everyon_els',
  'everyon_els_ate',
  'els_ate_continu',
  'ate_continu_child',
  'continu_child_mom',
  'child_mom_offer',
  'mom_offer_anyon',
  'offer_anyon_altern',
  'anyon_altern_made',
  'altern_made_lucki',
  'made_lucki_accommod',
  'lucki_accommod_told',
  'accommod_told_let',
  'told_let_son',
  'let_son_stay',
  'son_stay_child',
  'stay_child_abus',
  'child_abus_anymor'],
 ['got',
  'marri',
  'last',
  'week',
  'wife',
  'thirti',
  'mexican',
  'american',
  'grew',
  'us',
  'famili',
  'know',
  'languag',
  'wife',
  'plan',
  'everi',
  'bit',
  'wed',
  'control',
  'nervou',
  'bride',
  'alright',
  'get',
  'stress',
  'recept',
  'went',
  'band',
  'ask',
  'play',
  'song',
  'sing',
  'new',
  'wife',
  'te',
  'amar',
  'miguel',
  'bose',
  'song',
  'first',
  'date',
  'realli',
  'bad',
  'mexican',
  'restaur',
  'becam',
  'long',
  'stand',
  'joke',
  'us',
  'guest',
  'realli',
  'love',
  'song',
  'mil',
  'cri',
  'told',
  'beauti',
  'bride',
  'seem',
  'upset',
  'ask',
  'wrong',
  'said',
  'ah',
  'take',
  'spotlight',
  'enforc',
  'ethnic',
  'let',
  'band',
  'sing',
  'song',
  'us',
  'aita',
  'got_marri',
  'marri_last',
  'last_week',
  'week_wife',
  'wife_thirti',
  'thirti_mexican',
  'mexican_american',
  'american_grew',
  'grew_us',
  'us_famili',
  'famili_know',
  'know_languag',
  'languag_wife',
  'wife_plan',
  'plan_everi',
  'everi_bit',
  'bit_wed',
  'wed_control',
  'control_nervou',
  'nervou_bride',
  'bride_alright',
  'alright_get',
  'get_stress',
  'stress_recept',
  'recept_went',
  'went_band',
  'band_ask',
  'ask_play',
  'play_song',
  'song_sing',
  'sing_new',
  'new_wife',
  'wife_te',
  'te_amar',
  'amar_miguel',
  'miguel_bose',
  'bose_song',
  'song_first',
  'first_date',
  'date_realli',
  'realli_bad',
  'bad_mexican',
  'mexican_restaur',
  'restaur_becam',
  'becam_long',
  'long_stand',
  'stand_joke',
  'joke_us',
  'us_guest',
  'guest_realli',
  'realli_love',
  'love_song',
  'song_mil',
  'mil_cri',
  'cri_told',
  'told_beauti',
  'beauti_bride',
  'bride_seem',
  'seem_upset',
  'upset_ask',
  'ask_wrong',
  'wrong_said',
  'said_ah',
  'ah_take',
  'take_spotlight',
  'spotlight_enforc',
  'enforc_ethnic',
  'ethnic_let',
  'let_band',
  'band_sing',
  'sing_song',
  'song_us',
  'us_aita',
  'got_marri_last',
  'marri_last_week',
  'last_week_wife',
  'week_wife_thirti',
  'wife_thirti_mexican',
  'thirti_mexican_american',
  'mexican_american_grew',
  'american_grew_us',
  'grew_us_famili',
  'us_famili_know',
  'famili_know_languag',
  'know_languag_wife',
  'languag_wife_plan',
  'wife_plan_everi',
  'plan_everi_bit',
  'everi_bit_wed',
  'bit_wed_control',
  'wed_control_nervou',
  'control_nervou_bride',
  'nervou_bride_alright',
  'bride_alright_get',
  'alright_get_stress',
  'get_stress_recept',
  'stress_recept_went',
  'recept_went_band',
  'went_band_ask',
  'band_ask_play',
  'ask_play_song',
  'play_song_sing',
  'song_sing_new',
  'sing_new_wife',
  'new_wife_te',
  'wife_te_amar',
  'te_amar_miguel',
  'amar_miguel_bose',
  'miguel_bose_song',
  'bose_song_first',
  'song_first_date',
  'first_date_realli',
  'date_realli_bad',
  'realli_bad_mexican',
  'bad_mexican_restaur',
  'mexican_restaur_becam',
  'restaur_becam_long',
  'becam_long_stand',
  'long_stand_joke',
  'stand_joke_us',
  'joke_us_guest',
  'us_guest_realli',
  'guest_realli_love',
  'realli_love_song',
  'love_song_mil',
  'song_mil_cri',
  'mil_cri_told',
  'cri_told_beauti',
  'told_beauti_bride',
  'beauti_bride_seem',
  'bride_seem_upset',
  'seem_upset_ask',
  'upset_ask_wrong',
  'ask_wrong_said',
  'wrong_said_ah',
  'said_ah_take',
  'ah_take_spotlight',
  'take_spotlight_enforc',
  'spotlight_enforc_ethnic',
  'enforc_ethnic_let',
  'ethnic_let_band',
  'let_band_sing',
  'band_sing_song',
  'sing_song_us',
  'song_us_aita'],
 ['sophomor',
  'colleg',
  'friend',
  'tia',
  'high',
  'school',
  'appli',
  'colleg',
  'scholarship',
  'help',
  'throughout',
  'colleg',
  'process',
  'end',
  'get',
  'earli',
  'action',
  'top',
  'colleg',
  'got',
  'full',
  'scholarship',
  'happi',
  'recent',
  'talk',
  'mutual',
  'friend',
  'start',
  'gush',
  'tia',
  'essay',
  'heartfelt',
  'beauti',
  'ask',
  'see',
  'thought',
  'forgotten',
  'show',
  'show',
  'mani',
  'essay',
  'draft',
  'read',
  'complet',
  'taken',
  'aback',
  'essay',
  'one',
  'colleg',
  'essay',
  'draft',
  'id',
  'shown',
  'tia',
  'refer',
  'write',
  'techniqu',
  'made',
  'clear',
  'livid',
  'essay',
  'realli',
  'person',
  'bare',
  'even',
  'tweak',
  'almost',
  'entir',
  'copi',
  'past',
  'trust',
  'fit',
  'rage',
  'gather',
  'evid',
  'help',
  'colleg',
  'process',
  'includ',
  'evid',
  'send',
  'specif',
  'essay',
  'show',
  'school',
  'lost',
  'scholarship',
  'also',
  'lost',
  'seat',
  'school',
  'peopl',
  'call',
  'dramat',
  'shame',
  'rob',
  'educ',
  'person',
  'famili',
  'get',
  'colleg',
  'receiv',
  'academ',
  'athlet',
  'scholarship',
  'everyon',
  'root',
  'includ',
  'one',
  'time',
  'expect',
  'outcom',
  'sever',
  'right',
  'feel',
  'bad',
  'feel',
  'terribl',
  'feel',
  'like',
  'took',
  'advantag',
  'want',
  'caus',
  'someth',
  'horribl',
  'justic',
  'cost',
  'someon',
  'dream',
  'im',
  'wonder',
  'justifi',
  'aita',
  '*',
  '*',
  '*',
  'edit',
  '*',
  '*',
  '*',
  'first',
  'thank',
  'everyon',
  'offer',
  'kind',
  'word',
  'reassur',
  'support',
  'obvious',
  'repli',
  'everyon',
  'go',
  'comment',
  'guy',
  'help',
  'realiz',
  'wrong',
  '❤️',
  'nasti',
  'yta',
  'comment',
  'guy',
  'also',
  'help',
  'realiz',
  'wrong\U0001faf6🏼',
  'someon',
  'said',
  'hope',
  'tia',
  'apologist',
  'work',
  'doctor',
  'cheat',
  'throughout',
  'medic',
  'school',
  'hous',
  'work',
  'cheat',
  'electrician',
  '😂',
  'secondli',
  'expect',
  'post',
  'blow',
  'much',
  'lol',
  'went',
  'bed',
  'soon',
  'post',
  'thought',
  'id',
  'wake',
  '-',
  'repli',
  'somehow',
  'im',
  'front',
  'page',
  'crazi',
  'stuff',
  'sophomor_colleg',
  'colleg_friend',
  'friend_tia',
  'tia_high',
  'high_school',
  'school_appli',
  'appli_colleg',
  'colleg_scholarship',
  'scholarship_help',
  'help_throughout',
  'throughout_colleg',
  'colleg_process',
  'process_end',
  'end_get',
  'get_earli',
  'earli_action',
  'action_top',
  'top_colleg',
  'colleg_got',
  'got_full',
  'full_scholarship',
  'scholarship_happi',
  'happi_recent',
  'recent_talk',
  'talk_mutual',
  'mutual_friend',
  'friend_start',
  'start_gush',
  'gush_tia',
  'tia_essay',
  'essay_heartfelt',
  'heartfelt_beauti',
  'beauti_ask',
  'ask_see',
  'see_thought',
  'thought_forgotten',
  'forgotten_show',
  'show_show',
  'show_mani',
  'mani_essay',
  'essay_draft',
  'draft_read',
  'read_complet',
  'complet_taken',
  'taken_aback',
  'aback_essay',
  'essay_one',
  'one_colleg',
  'colleg_essay',
  'essay_draft',
  'draft_id',
  'id_shown',
  'shown_tia',
  'tia_refer',
  'refer_write',
  'write_techniqu',
  'techniqu_made',
  'made_clear',
  'clear_livid',
  'livid_essay',
  'essay_realli',
  'realli_person',
  'person_bare',
  'bare_even',
  'even_tweak',
  'tweak_almost',
  'almost_entir',
  'entir_copi',
  'copi_past',
  'past_trust',
  'trust_fit',
  'fit_rage',
  'rage_gather',
  'gather_evid',
  'evid_help',
  'help_colleg',
  'colleg_process',
  'process_includ',
  'includ_evid',
  'evid_send',
  'send_specif',
  'specif_essay',
  'essay_show',
  'show_school',
  'school_lost',
  'lost_scholarship',
  'scholarship_also',
  'also_lost',
  'lost_seat',
  'seat_school',
  'school_peopl',
  'peopl_call',
  'call_dramat',
  'dramat_shame',
  'shame_rob',
  'rob_educ',
  'educ_person',
  'person_famili',
  'famili_get',
  'get_colleg',
  'colleg_receiv',
  'receiv_academ',
  'academ_athlet',
  'athlet_scholarship',
  'scholarship_everyon',
  'everyon_root',
  'root_includ',
  'includ_one',
  'one_time',
  'time_expect',
  'expect_outcom',
  'outcom_sever',
  'sever_right',
  'right_feel',
  'feel_bad',
  'bad_feel',
  'feel_terribl',
  'terribl_feel',
  'feel_like',
  'like_took',
  'took_advantag',
  'advantag_want',
  'want_caus',
  'caus_someth',
  'someth_horribl',
  'horribl_justic',
  'justic_cost',
  'cost_someon',
  'someon_dream',
  'dream_im',
  'im_wonder',
  'wonder_justifi',
  'justifi_aita',
  'aita_*',
  '*_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_*',
  '*_first',
  'first_thank',
  'thank_everyon',
  'everyon_offer',
  'offer_kind',
  'kind_word',
  'word_reassur',
  'reassur_support',
  'support_obvious',
  'obvious_repli',
  'repli_everyon',
  'everyon_go',
  'go_comment',
  'comment_guy',
  'guy_help',
  'help_realiz',
  'realiz_wrong',
  'wrong_❤️',
  '❤️_nasti',
  'nasti_yta',
  'yta_comment',
  'comment_guy',
  'guy_also',
  'also_help',
  'help_realiz',
  'realiz_wrong\U0001faf6🏼',
  'wrong\U0001faf6🏼_someon',
  'someon_said',
  'said_hope',
  'hope_tia',
  'tia_apologist',
  'apologist_work',
  'work_doctor',
  'doctor_cheat',
  'cheat_throughout',
  'throughout_medic',
  'medic_school',
  'school_hous',
  'hous_work',
  'work_cheat',
  'cheat_electrician',
  'electrician_😂',
  '😂_secondli',
  'secondli_expect',
  'expect_post',
  'post_blow',
  'blow_much',
  'much_lol',
  'lol_went',
  'went_bed',
  'bed_soon',
  'soon_post',
  'post_thought',
  'thought_id',
  'id_wake',
  'wake_-',
  '-_repli',
  'repli_somehow',
  'somehow_im',
  'im_front',
  'front_page',
  'page_crazi',
  'crazi_stuff',
  'sophomor_colleg_friend',
  'colleg_friend_tia',
  'friend_tia_high',
  'tia_high_school',
  'high_school_appli',
  'school_appli_colleg',
  'appli_colleg_scholarship',
  'colleg_scholarship_help',
  'scholarship_help_throughout',
  'help_throughout_colleg',
  'throughout_colleg_process',
  'colleg_process_end',
  'process_end_get',
  'end_get_earli',
  'get_earli_action',
  'earli_action_top',
  'action_top_colleg',
  'top_colleg_got',
  'colleg_got_full',
  'got_full_scholarship',
  'full_scholarship_happi',
  'scholarship_happi_recent',
  'happi_recent_talk',
  'recent_talk_mutual',
  'talk_mutual_friend',
  'mutual_friend_start',
  'friend_start_gush',
  'start_gush_tia',
  'gush_tia_essay',
  'tia_essay_heartfelt',
  'essay_heartfelt_beauti',
  'heartfelt_beauti_ask',
  'beauti_ask_see',
  'ask_see_thought',
  'see_thought_forgotten',
  'thought_forgotten_show',
  'forgotten_show_show',
  'show_show_mani',
  'show_mani_essay',
  'mani_essay_draft',
  'essay_draft_read',
  'draft_read_complet',
  'read_complet_taken',
  'complet_taken_aback',
  'taken_aback_essay',
  'aback_essay_one',
  'essay_one_colleg',
  'one_colleg_essay',
  'colleg_essay_draft',
  'essay_draft_id',
  'draft_id_shown',
  'id_shown_tia',
  'shown_tia_refer',
  'tia_refer_write',
  'refer_write_techniqu',
  'write_techniqu_made',
  'techniqu_made_clear',
  'made_clear_livid',
  'clear_livid_essay',
  'livid_essay_realli',
  'essay_realli_person',
  'realli_person_bare',
  'person_bare_even',
  'bare_even_tweak',
  'even_tweak_almost',
  'tweak_almost_entir',
  'almost_entir_copi',
  'entir_copi_past',
  'copi_past_trust',
  'past_trust_fit',
  'trust_fit_rage',
  'fit_rage_gather',
  'rage_gather_evid',
  'gather_evid_help',
  'evid_help_colleg',
  'help_colleg_process',
  'colleg_process_includ',
  'process_includ_evid',
  'includ_evid_send',
  'evid_send_specif',
  'send_specif_essay',
  'specif_essay_show',
  'essay_show_school',
  'show_school_lost',
  'school_lost_scholarship',
  'lost_scholarship_also',
  'scholarship_also_lost',
  'also_lost_seat',
  'lost_seat_school',
  'seat_school_peopl',
  'school_peopl_call',
  'peopl_call_dramat',
  'call_dramat_shame',
  'dramat_shame_rob',
  'shame_rob_educ',
  'rob_educ_person',
  'educ_person_famili',
  'person_famili_get',
  'famili_get_colleg',
  'get_colleg_receiv',
  'colleg_receiv_academ',
  'receiv_academ_athlet',
  'academ_athlet_scholarship',
  'athlet_scholarship_everyon',
  'scholarship_everyon_root',
  'everyon_root_includ',
  'root_includ_one',
  'includ_one_time',
  'one_time_expect',
  'time_expect_outcom',
  'expect_outcom_sever',
  'outcom_sever_right',
  'sever_right_feel',
  'right_feel_bad',
  'feel_bad_feel',
  'bad_feel_terribl',
  'feel_terribl_feel',
  'terribl_feel_like',
  'feel_like_took',
  'like_took_advantag',
  'took_advantag_want',
  'advantag_want_caus',
  'want_caus_someth',
  'caus_someth_horribl',
  'someth_horribl_justic',
  'horribl_justic_cost',
  'justic_cost_someon',
  'cost_someon_dream',
  'someon_dream_im',
  'dream_im_wonder',
  'im_wonder_justifi',
  'wonder_justifi_aita',
  'justifi_aita_*',
  'aita_*_*',
  '*_*_*',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_*',
  '*_*_first',
  '*_first_thank',
  'first_thank_everyon',
  'thank_everyon_offer',
  'everyon_offer_kind',
  'offer_kind_word',
  'kind_word_reassur',
  'word_reassur_support',
  'reassur_support_obvious',
  'support_obvious_repli',
  'obvious_repli_everyon',
  'repli_everyon_go',
  'everyon_go_comment',
  'go_comment_guy',
  'comment_guy_help',
  'guy_help_realiz',
  'help_realiz_wrong',
  'realiz_wrong_❤️',
  'wrong_❤️_nasti',
  '❤️_nasti_yta',
  'nasti_yta_comment',
  'yta_comment_guy',
  'comment_guy_also',
  'guy_also_help',
  'also_help_realiz',
  'help_realiz_wrong\U0001faf6🏼',
  'realiz_wrong\U0001faf6🏼_someon',
  'wrong\U0001faf6🏼_someon_said',
  'someon_said_hope',
  'said_hope_tia',
  'hope_tia_apologist',
  'tia_apologist_work',
  'apologist_work_doctor',
  'work_doctor_cheat',
  'doctor_cheat_throughout',
  'cheat_throughout_medic',
  'throughout_medic_school',
  'medic_school_hous',
  'school_hous_work',
  'hous_work_cheat',
  'work_cheat_electrician',
  'cheat_electrician_😂',
  'electrician_😂_secondli',
  '😂_secondli_expect',
  'secondli_expect_post',
  'expect_post_blow',
  'post_blow_much',
  'blow_much_lol',
  'much_lol_went',
  'lol_went_bed',
  'went_bed_soon',
  'bed_soon_post',
  'soon_post_thought',
  'post_thought_id',
  'thought_id_wake',
  'id_wake_-',
  'wake_-_repli',
  '-_repli_somehow',
  'repli_somehow_im',
  'somehow_im_front',
  'im_front_page',
  'front_page_crazi',
  'page_crazi_stuff'],
 ['hello',
  'everyon',
  'pleas',
  'excus',
  'grammar',
  'english',
  'th',
  'languag',
  '%',
  'self',
  'taught',
  'also',
  'long',
  'post',
  'sister',
  'twin',
  'come',
  'cultur',
  'arrang',
  'marriag',
  'option',
  'india',
  'mostli',
  'blind',
  'date',
  'set',
  'matchmak',
  'compat',
  'marri',
  'graduat',
  'highschool',
  'sister',
  'valedictorian',
  'btw',
  'chose',
  'attend',
  'colleg',
  'ask',
  'arrang',
  'marriag',
  'sinc',
  'want',
  'wife',
  'mother',
  'noth',
  'wrong',
  'parent',
  'love',
  'match',
  'tri',
  'convinc',
  'least',
  'get',
  'bachelor',
  'refus',
  'hand',
  'start',
  'attend',
  'engin',
  'colleg',
  'comput',
  'engin',
  'year',
  'later',
  'marri',
  'man',
  'met',
  'matchmak',
  'nice',
  'man',
  'teacher',
  'treat',
  'sister',
  'like',
  'queen',
  'thing',
  'freshli',
  'hire',
  'teacher',
  'sister',
  'went',
  'live',
  'doubl',
  'incom',
  'hous',
  'parent',
  'high',
  'earner',
  'doctor',
  'lawyer',
  'singl',
  'incom',
  'hous',
  'teacher',
  'salari',
  'graduat',
  'start',
  'work',
  'cyber',
  'secur',
  'personnel',
  'big',
  'bank',
  'year',
  'date',
  'around',
  'ask',
  'arrang',
  'marriag',
  'husband',
  'busi',
  'owner',
  'real',
  'estat',
  'develop',
  'make',
  'lot',
  'also',
  'come',
  'money',
  'sister',
  'like',
  'get',
  'go',
  'even',
  'threw',
  'tantrum',
  'thank',
  'privat',
  'wed',
  'appar',
  'bride',
  'gift',
  'brought',
  'tacki',
  'like',
  'expens',
  'yer',
  'husband',
  'could',
  'get',
  'problem',
  'first',
  'child',
  'age',
  'start',
  'pre-school',
  'sign',
  'privat',
  'school',
  'monthli',
  'tuition',
  'husband',
  'make',
  'heard',
  'explod',
  'rant',
  'fair',
  'kid',
  'equal',
  'opportun',
  'reason',
  'could',
  'live',
  'like',
  'parent',
  'chose',
  'better',
  'husband',
  'becam',
  'angri',
  'treat',
  'unfair',
  'husband',
  'parent',
  'laid',
  'truth',
  'told',
  'got',
  'match',
  'better',
  'husband',
  'colleg',
  'educ',
  'woman',
  'respect',
  'job',
  'wealthi',
  'men',
  'use',
  'matchmak',
  'want',
  'year',
  'old',
  'highschool',
  'graduat',
  'standard',
  'higher',
  'told',
  'husband',
  'wonder',
  'man',
  'love',
  'want',
  'wealthi',
  'man',
  'gone',
  'colleg',
  'nc',
  'say',
  'elitist',
  'ah',
  'aita',
  'hello_everyon',
  'everyon_pleas',
  'pleas_excus',
  'excus_grammar',
  'grammar_english',
  'english_th',
  'th_languag',
  'languag_%',
  '%_self',
  'self_taught',
  'taught_also',
  'also_long',
  'long_post',
  'post_sister',
  'sister_twin',
  'twin_come',
  'come_cultur',
  'cultur_arrang',
  'arrang_marriag',
  'marriag_option',
  'option_india',
  'india_mostli',
  'mostli_blind',
  'blind_date',
  'date_set',
  'set_matchmak',
  'matchmak_compat',
  'compat_marri',
  'marri_graduat',
  'graduat_highschool',
  'highschool_sister',
  'sister_valedictorian',
  'valedictorian_btw',
  'btw_chose',
  'chose_attend',
  'attend_colleg',
  'colleg_ask',
  'ask_arrang',
  'arrang_marriag',
  'marriag_sinc',
  'sinc_want',
  'want_wife',
  'wife_mother',
  'mother_noth',
  'noth_wrong',
  'wrong_parent',
  'parent_love',
  'love_match',
  'match_tri',
  'tri_convinc',
  'convinc_least',
  'least_get',
  'get_bachelor',
  'bachelor_refus',
  'refus_hand',
  'hand_start',
  'start_attend',
  'attend_engin',
  'engin_colleg',
  'colleg_comput',
  'comput_engin',
  'engin_year',
  'year_later',
  'later_marri',
  'marri_man',
  'man_met',
  'met_matchmak',
  'matchmak_nice',
  'nice_man',
  'man_teacher',
  'teacher_treat',
  'treat_sister',
  'sister_like',
  'like_queen',
  'queen_thing',
  'thing_freshli',
  'freshli_hire',
  'hire_teacher',
  'teacher_sister',
  'sister_went',
  'went_live',
  'live_doubl',
  'doubl_incom',
  'incom_hous',
  'hous_parent',
  'parent_high',
  'high_earner',
  'earner_doctor',
  'doctor_lawyer',
  'lawyer_singl',
  'singl_incom',
  'incom_hous',
  'hous_teacher',
  'teacher_salari',
  'salari_graduat',
  'graduat_start',
  'start_work',
  'work_cyber',
  'cyber_secur',
  'secur_personnel',
  'personnel_big',
  'big_bank',
  'bank_year',
  'year_date',
  'date_around',
  'around_ask',
  'ask_arrang',
  'arrang_marriag',
  'marriag_husband',
  'husband_busi',
  'busi_owner',
  'owner_real',
  'real_estat',
  'estat_develop',
  'develop_make',
  'make_lot',
  'lot_also',
  'also_come',
  'come_money',
  'money_sister',
  'sister_like',
  'like_get',
  'get_go',
  'go_even',
  'even_threw',
  'threw_tantrum',
  'tantrum_thank',
  'thank_privat',
  'privat_wed',
  'wed_appar',
  'appar_bride',
  'bride_gift',
  'gift_brought',
  'brought_tacki',
  'tacki_like',
  'like_expens',
  'expens_yer',
  'yer_husband',
  'husband_could',
  'could_get',
  'get_problem',
  'problem_first',
  'first_child',
  'child_age',
  'age_start',
  'start_pre-school',
  'pre-school_sign',
  'sign_privat',
  'privat_school',
  'school_monthli',
  'monthli_tuition',
  'tuition_husband',
  'husband_make',
  'make_heard',
  'heard_explod',
  'explod_rant',
  'rant_fair',
  'fair_kid',
  'kid_equal',
  'equal_opportun',
  'opportun_reason',
  'reason_could',
  'could_live',
  'live_like',
  'like_parent',
  'parent_chose',
  'chose_better',
  'better_husband',
  'husband_becam',
  'becam_angri',
  'angri_treat',
  'treat_unfair',
  'unfair_husband',
  'husband_parent',
  'parent_laid',
  'laid_truth',
  'truth_told',
  'told_got',
  'got_match',
  'match_better',
  'better_husband',
  'husband_colleg',
  'colleg_educ',
  'educ_woman',
  'woman_respect',
  'respect_job',
  'job_wealthi',
  'wealthi_men',
  'men_use',
  'use_matchmak',
  'matchmak_want',
  'want_year',
  'year_old',
  'old_highschool',
  'highschool_graduat',
  'graduat_standard',
  'standard_higher',
  'higher_told',
  'told_husband',
  'husband_wonder',
  'wonder_man',
  'man_love',
  'love_want',
  'want_wealthi',
  'wealthi_man',
  'man_gone',
  'gone_colleg',
  'colleg_nc',
  'nc_say',
  'say_elitist',
  'elitist_ah',
  'ah_aita',
  'hello_everyon_pleas',
  'everyon_pleas_excus',
  'pleas_excus_grammar',
  'excus_grammar_english',
  'grammar_english_th',
  'english_th_languag',
  'th_languag_%',
  'languag_%_self',
  '%_self_taught',
  'self_taught_also',
  'taught_also_long',
  'also_long_post',
  'long_post_sister',
  'post_sister_twin',
  'sister_twin_come',
  'twin_come_cultur',
  'come_cultur_arrang',
  'cultur_arrang_marriag',
  'arrang_marriag_option',
  'marriag_option_india',
  'option_india_mostli',
  'india_mostli_blind',
  'mostli_blind_date',
  'blind_date_set',
  'date_set_matchmak',
  'set_matchmak_compat',
  'matchmak_compat_marri',
  'compat_marri_graduat',
  'marri_graduat_highschool',
  'graduat_highschool_sister',
  'highschool_sister_valedictorian',
  'sister_valedictorian_btw',
  'valedictorian_btw_chose',
  'btw_chose_attend',
  'chose_attend_colleg',
  'attend_colleg_ask',
  'colleg_ask_arrang',
  'ask_arrang_marriag',
  'arrang_marriag_sinc',
  'marriag_sinc_want',
  'sinc_want_wife',
  'want_wife_mother',
  'wife_mother_noth',
  'mother_noth_wrong',
  'noth_wrong_parent',
  'wrong_parent_love',
  'parent_love_match',
  'love_match_tri',
  'match_tri_convinc',
  'tri_convinc_least',
  'convinc_least_get',
  'least_get_bachelor',
  'get_bachelor_refus',
  'bachelor_refus_hand',
  'refus_hand_start',
  'hand_start_attend',
  'start_attend_engin',
  'attend_engin_colleg',
  'engin_colleg_comput',
  'colleg_comput_engin',
  'comput_engin_year',
  'engin_year_later',
  'year_later_marri',
  'later_marri_man',
  'marri_man_met',
  'man_met_matchmak',
  'met_matchmak_nice',
  'matchmak_nice_man',
  'nice_man_teacher',
  'man_teacher_treat',
  'teacher_treat_sister',
  'treat_sister_like',
  'sister_like_queen',
  'like_queen_thing',
  'queen_thing_freshli',
  'thing_freshli_hire',
  'freshli_hire_teacher',
  'hire_teacher_sister',
  'teacher_sister_went',
  'sister_went_live',
  'went_live_doubl',
  'live_doubl_incom',
  'doubl_incom_hous',
  'incom_hous_parent',
  'hous_parent_high',
  'parent_high_earner',
  'high_earner_doctor',
  'earner_doctor_lawyer',
  'doctor_lawyer_singl',
  'lawyer_singl_incom',
  'singl_incom_hous',
  'incom_hous_teacher',
  'hous_teacher_salari',
  'teacher_salari_graduat',
  'salari_graduat_start',
  'graduat_start_work',
  'start_work_cyber',
  'work_cyber_secur',
  'cyber_secur_personnel',
  'secur_personnel_big',
  'personnel_big_bank',
  'big_bank_year',
  'bank_year_date',
  'year_date_around',
  'date_around_ask',
  'around_ask_arrang',
  'ask_arrang_marriag',
  'arrang_marriag_husband',
  'marriag_husband_busi',
  'husband_busi_owner',
  'busi_owner_real',
  'owner_real_estat',
  'real_estat_develop',
  'estat_develop_make',
  'develop_make_lot',
  'make_lot_also',
  'lot_also_come',
  'also_come_money',
  'come_money_sister',
  'money_sister_like',
  'sister_like_get',
  'like_get_go',
  'get_go_even',
  'go_even_threw',
  'even_threw_tantrum',
  'threw_tantrum_thank',
  'tantrum_thank_privat',
  'thank_privat_wed',
  'privat_wed_appar',
  'wed_appar_bride',
  'appar_bride_gift',
  'bride_gift_brought',
  'gift_brought_tacki',
  'brought_tacki_like',
  'tacki_like_expens',
  'like_expens_yer',
  'expens_yer_husband',
  'yer_husband_could',
  'husband_could_get',
  'could_get_problem',
  'get_problem_first',
  'problem_first_child',
  'first_child_age',
  'child_age_start',
  'age_start_pre-school',
  'start_pre-school_sign',
  'pre-school_sign_privat',
  'sign_privat_school',
  'privat_school_monthli',
  'school_monthli_tuition',
  'monthli_tuition_husband',
  'tuition_husband_make',
  'husband_make_heard',
  'make_heard_explod',
  'heard_explod_rant',
  'explod_rant_fair',
  'rant_fair_kid',
  'fair_kid_equal',
  'kid_equal_opportun',
  'equal_opportun_reason',
  'opportun_reason_could',
  'reason_could_live',
  'could_live_like',
  'live_like_parent',
  'like_parent_chose',
  'parent_chose_better',
  'chose_better_husband',
  'better_husband_becam',
  'husband_becam_angri',
  'becam_angri_treat',
  'angri_treat_unfair',
  'treat_unfair_husband',
  'unfair_husband_parent',
  'husband_parent_laid',
  'parent_laid_truth',
  'laid_truth_told',
  'truth_told_got',
  'told_got_match',
  'got_match_better',
  'match_better_husband',
  'better_husband_colleg',
  'husband_colleg_educ',
  'colleg_educ_woman',
  'educ_woman_respect',
  'woman_respect_job',
  'respect_job_wealthi',
  'job_wealthi_men',
  'wealthi_men_use',
  'men_use_matchmak',
  'use_matchmak_want',
  'matchmak_want_year',
  'want_year_old',
  'year_old_highschool',
  'old_highschool_graduat',
  'highschool_graduat_standard',
  'graduat_standard_higher',
  'standard_higher_told',
  'higher_told_husband',
  'told_husband_wonder',
  'husband_wonder_man',
  'wonder_man_love',
  'man_love_want',
  'love_want_wealthi',
  'want_wealthi_man',
  'wealthi_man_gone',
  'man_gone_colleg',
  'gone_colleg_nc',
  'colleg_nc_say',
  'nc_say_elitist',
  'say_elitist_ah',
  'elitist_ah_aita'],
 ['stillbirth',
  'week',
  'ago',
  'sister',
  'gave',
  'birth',
  'healthi',
  'babi',
  'boy',
  'week',
  'ago',
  'stillbirth',
  'produc',
  'milk',
  'pump',
  'sister',
  'breastfe',
  'son',
  'born',
  'formula',
  'shortag',
  'aw',
  'liter',
  'throw',
  'milk',
  'away',
  'offer',
  'sister',
  'gladli',
  'accept',
  'advis',
  'doctor',
  'pump',
  'week',
  'stillbirth',
  'prevent',
  'problem',
  'stop',
  'otherwis',
  'id',
  'keep',
  'produc',
  'milk',
  'due',
  'formula',
  'shortag',
  'pump',
  'week',
  'give',
  'milk',
  'sister',
  'formula',
  'stock',
  'abl',
  'go',
  'buy',
  'told',
  'ill',
  'stop',
  'pump',
  'told',
  'son',
  'stomach',
  'problem',
  'formula',
  'ask',
  'keep',
  'pump',
  'told',
  'emot',
  'handl',
  'longer',
  'said',
  'selfish',
  'alreadi',
  'feed',
  'son',
  'bottl',
  'first',
  'suggest',
  'id',
  'nurs',
  'daili',
  'feed',
  'least',
  '-',
  'live',
  'next',
  'door',
  'refus',
  'told',
  'im',
  'sorri',
  'pump',
  'day',
  'put',
  'freezer',
  'back',
  'find',
  'better',
  'formula',
  'son',
  'said',
  'breast',
  'milk',
  'healthiest',
  'help',
  'call',
  'selfish',
  'ah',
  'said',
  'embodi',
  'miseri',
  'love',
  'compani',
  'mother',
  'feel',
  'help',
  'sister',
  'husband',
  'said',
  'sister',
  'way',
  'line',
  'feel',
  'realli',
  'aw',
  'could',
  'still',
  'help',
  'know',
  'need',
  'edit',
  'want',
  'thank',
  'support',
  '❤',
  'thank',
  'much',
  'respond',
  'everi',
  'singl',
  'messag',
  'grate',
  'stillbirth_week',
  'week_ago',
  'ago_sister',
  'sister_gave',
  'gave_birth',
  'birth_healthi',
  'healthi_babi',
  'babi_boy',
  'boy_week',
  'week_ago',
  'ago_stillbirth',
  'stillbirth_produc',
  'produc_milk',
  'milk_pump',
  'pump_sister',
  'sister_breastfe',
  'breastfe_son',
  'son_born',
  'born_formula',
  'formula_shortag',
  'shortag_aw',
  'aw_liter',
  'liter_throw',
  'throw_milk',
  'milk_away',
  'away_offer',
  'offer_sister',
  'sister_gladli',
  'gladli_accept',
  'accept_advis',
  'advis_doctor',
  'doctor_pump',
  'pump_week',
  'week_stillbirth',
  'stillbirth_prevent',
  'prevent_problem',
  'problem_stop',
  'stop_otherwis',
  'otherwis_id',
  'id_keep',
  'keep_produc',
  'produc_milk',
  'milk_due',
  'due_formula',
  'formula_shortag',
  'shortag_pump',
  'pump_week',
  'week_give',
  'give_milk',
  'milk_sister',
  'sister_formula',
  'formula_stock',
  'stock_abl',
  'abl_go',
  'go_buy',
  'buy_told',
  'told_ill',
  'ill_stop',
  'stop_pump',
  'pump_told',
  'told_son',
  'son_stomach',
  'stomach_problem',
  'problem_formula',
  'formula_ask',
  'ask_keep',
  'keep_pump',
  'pump_told',
  'told_emot',
  'emot_handl',
  'handl_longer',
  'longer_said',
  'said_selfish',
  'selfish_alreadi',
  'alreadi_feed',
  'feed_son',
  'son_bottl',
  'bottl_first',
  'first_suggest',
  'suggest_id',
  'id_nurs',
  'nurs_daili',
  'daili_feed',
  'feed_least',
  'least_-',
  '-_live',
  'live_next',
  'next_door',
  'door_refus',
  'refus_told',
  'told_im',
  'im_sorri',
  'sorri_pump',
  'pump_day',
  'day_put',
  'put_freezer',
  'freezer_back',
  'back_find',
  'find_better',
  'better_formula',
  'formula_son',
  'son_said',
  'said_breast',
  'breast_milk',
  'milk_healthiest',
  'healthiest_help',
  'help_call',
  'call_selfish',
  'selfish_ah',
  'ah_said',
  'said_embodi',
  'embodi_miseri',
  'miseri_love',
  'love_compani',
  'compani_mother',
  'mother_feel',
  'feel_help',
  'help_sister',
  'sister_husband',
  'husband_said',
  'said_sister',
  'sister_way',
  'way_line',
  'line_feel',
  'feel_realli',
  'realli_aw',
  'aw_could',
  'could_still',
  'still_help',
  'help_know',
  'know_need',
  'need_edit',
  'edit_want',
  'want_thank',
  'thank_support',
  'support_❤',
  '❤_thank',
  'thank_much',
  'much_respond',
  'respond_everi',
  'everi_singl',
  'singl_messag',
  'messag_grate',
  'stillbirth_week_ago',
  'week_ago_sister',
  'ago_sister_gave',
  'sister_gave_birth',
  'gave_birth_healthi',
  'birth_healthi_babi',
  'healthi_babi_boy',
  'babi_boy_week',
  'boy_week_ago',
  'week_ago_stillbirth',
  'ago_stillbirth_produc',
  'stillbirth_produc_milk',
  'produc_milk_pump',
  'milk_pump_sister',
  'pump_sister_breastfe',
  'sister_breastfe_son',
  'breastfe_son_born',
  'son_born_formula',
  'born_formula_shortag',
  'formula_shortag_aw',
  'shortag_aw_liter',
  'aw_liter_throw',
  'liter_throw_milk',
  'throw_milk_away',
  'milk_away_offer',
  'away_offer_sister',
  'offer_sister_gladli',
  'sister_gladli_accept',
  'gladli_accept_advis',
  'accept_advis_doctor',
  'advis_doctor_pump',
  'doctor_pump_week',
  'pump_week_stillbirth',
  'week_stillbirth_prevent',
  'stillbirth_prevent_problem',
  'prevent_problem_stop',
  'problem_stop_otherwis',
  'stop_otherwis_id',
  'otherwis_id_keep',
  'id_keep_produc',
  'keep_produc_milk',
  'produc_milk_due',
  'milk_due_formula',
  'due_formula_shortag',
  'formula_shortag_pump',
  'shortag_pump_week',
  'pump_week_give',
  'week_give_milk',
  'give_milk_sister',
  'milk_sister_formula',
  'sister_formula_stock',
  'formula_stock_abl',
  'stock_abl_go',
  'abl_go_buy',
  'go_buy_told',
  'buy_told_ill',
  'told_ill_stop',
  'ill_stop_pump',
  'stop_pump_told',
  'pump_told_son',
  'told_son_stomach',
  'son_stomach_problem',
  'stomach_problem_formula',
  'problem_formula_ask',
  'formula_ask_keep',
  'ask_keep_pump',
  'keep_pump_told',
  'pump_told_emot',
  'told_emot_handl',
  'emot_handl_longer',
  'handl_longer_said',
  'longer_said_selfish',
  'said_selfish_alreadi',
  'selfish_alreadi_feed',
  'alreadi_feed_son',
  'feed_son_bottl',
  'son_bottl_first',
  'bottl_first_suggest',
  'first_suggest_id',
  'suggest_id_nurs',
  'id_nurs_daili',
  'nurs_daili_feed',
  'daili_feed_least',
  'feed_least_-',
  'least_-_live',
  '-_live_next',
  'live_next_door',
  'next_door_refus',
  'door_refus_told',
  'refus_told_im',
  'told_im_sorri',
  'im_sorri_pump',
  'sorri_pump_day',
  'pump_day_put',
  'day_put_freezer',
  'put_freezer_back',
  'freezer_back_find',
  'back_find_better',
  'find_better_formula',
  'better_formula_son',
  'formula_son_said',
  'son_said_breast',
  'said_breast_milk',
  'breast_milk_healthiest',
  'milk_healthiest_help',
  'healthiest_help_call',
  'help_call_selfish',
  'call_selfish_ah',
  'selfish_ah_said',
  'ah_said_embodi',
  'said_embodi_miseri',
  'embodi_miseri_love',
  'miseri_love_compani',
  'love_compani_mother',
  'compani_mother_feel',
  'mother_feel_help',
  'feel_help_sister',
  'help_sister_husband',
  'sister_husband_said',
  'husband_said_sister',
  'said_sister_way',
  'sister_way_line',
  'way_line_feel',
  'line_feel_realli',
  'feel_realli_aw',
  'realli_aw_could',
  'aw_could_still',
  'could_still_help',
  'still_help_know',
  'help_know_need',
  'know_need_edit',
  'need_edit_want',
  'edit_want_thank',
  'want_thank_support',
  'thank_support_❤',
  'support_❤_thank',
  '❤_thank_much',
  'thank_much_respond',
  'much_respond_everi',
  'respond_everi_singl',
  'everi_singl_messag',
  'singl_messag_grate'],
 ['aita',
  'hello',
  'give',
  'context',
  'marri',
  'husband',
  'month',
  'children',
  'two',
  'differ',
  'uninvolv',
  'mother',
  'live',
  'us',
  'full',
  'time',
  'kid',
  'yo',
  'yo',
  'work',
  'long',
  'hour',
  'demand',
  'job',
  'time',
  'wise',
  'husband',
  'think',
  'wfh',
  'paus',
  'whenev',
  'untru',
  'hed',
  'ask',
  'thing',
  'kid',
  'work',
  'hour',
  'told',
  'im',
  'work',
  'unavail',
  'hour',
  'kid',
  'responsibilti',
  'til',
  'im',
  'done',
  'yesterday',
  'told',
  'want',
  'go',
  'attend',
  'friend',
  'engag',
  'dinner',
  'ask',
  'could',
  'take',
  'time',
  'work',
  'make',
  'kid',
  'dinner',
  'told',
  'absolut',
  'insist',
  'cook',
  'order',
  'takeout',
  'said',
  'time',
  'cook',
  'takeout',
  'tabl',
  'sinc',
  'want',
  'eat',
  'fast',
  'food',
  'later',
  'said',
  'fine',
  'go',
  'cook',
  'dinner',
  'go',
  'parti',
  'hr',
  'later',
  'kid',
  'came',
  'said',
  'hungri',
  'puzzl',
  'ask',
  'dad',
  'cook',
  'dinner',
  'said',
  'moreov',
  'told',
  'come',
  'ask',
  'cook',
  'exactli',
  'pm',
  'piss',
  'find',
  'situat',
  'took',
  'minut',
  'meet',
  'order',
  'takeout',
  'nearbi',
  'restaur',
  'fed',
  'kid',
  'watch',
  'tv',
  'go',
  'sleep',
  'came',
  'home',
  'pm',
  'went',
  'discov',
  'cook',
  'like',
  'count',
  'yell',
  'feed',
  'kid',
  'takeout',
  'argu',
  'back',
  'say',
  'choic',
  'basic',
  'trick',
  'cook',
  'know',
  'busi',
  'order',
  'food',
  'made',
  'sure',
  'kid',
  'fed',
  'focus',
  'work',
  'rant',
  'care',
  'work',
  'stepchildren',
  'god',
  'forbid',
  'call',
  'selfish',
  'went',
  'upstair',
  'refus',
  'talk',
  'still',
  'sulk',
  'today',
  'say',
  'need',
  'get',
  'prioriti',
  'order',
  'caus',
  'theyr',
  'mess',
  'info',
  '-',
  'friend',
  'engag',
  'husband',
  'friend',
  'colleg',
  'theyr',
  'close',
  'miss',
  'event',
  'moreov',
  'said',
  'upset',
  'miss',
  'event',
  'refus',
  'cook',
  'homemad',
  'healthi',
  'meal',
  'order',
  'takeout',
  'know',
  'go',
  'info',
  '-',
  'reason',
  'expect',
  'cook',
  'fact',
  'busi',
  'usual',
  'cook',
  'respons',
  'info',
  '-',
  'work',
  'ye',
  'bare',
  'work',
  'warehous',
  'twice',
  'week',
  'friend',
  'dad',
  'warehous',
  'lot',
  'leverag',
  'info',
  '-',
  'context',
  'mother',
  'one',
  'ex',
  'wife',
  'ex',
  'girlfriend',
  'left',
  'financi',
  'reason',
  'said',
  'im',
  'fulli',
  'convinc',
  'aita_hello',
  'hello_give',
  'give_context',
  'context_marri',
  'marri_husband',
  'husband_month',
  'month_children',
  'children_two',
  'two_differ',
  'differ_uninvolv',
  'uninvolv_mother',
  'mother_live',
  'live_us',
  'us_full',
  'full_time',
  'time_kid',
  'kid_yo',
  'yo_yo',
  'yo_work',
  'work_long',
  'long_hour',
  'hour_demand',
  'demand_job',
  'job_time',
  'time_wise',
  'wise_husband',
  'husband_think',
  'think_wfh',
  'wfh_paus',
  'paus_whenev',
  'whenev_untru',
  'untru_hed',
  'hed_ask',
  'ask_thing',
  'thing_kid',
  'kid_work',
  'work_hour',
  'hour_told',
  'told_im',
  'im_work',
  'work_unavail',
  'unavail_hour',
  'hour_kid',
  'kid_responsibilti',
  'responsibilti_til',
  'til_im',
  'im_done',
  'done_yesterday',
  'yesterday_told',
  'told_want',
  'want_go',
  'go_attend',
  'attend_friend',
  'friend_engag',
  'engag_dinner',
  'dinner_ask',
  'ask_could',
  'could_take',
  'take_time',
  'time_work',
  'work_make',
  'make_kid',
  'kid_dinner',
  'dinner_told',
  'told_absolut',
  'absolut_insist',
  'insist_cook',
  'cook_order',
  'order_takeout',
  'takeout_said',
  'said_time',
  'time_cook',
  'cook_takeout',
  'takeout_tabl',
  'tabl_sinc',
  'sinc_want',
  'want_eat',
  'eat_fast',
  'fast_food',
  'food_later',
  'later_said',
  'said_fine',
  'fine_go',
  'go_cook',
  'cook_dinner',
  'dinner_go',
  'go_parti',
  'parti_hr',
  'hr_later',
  'later_kid',
  'kid_came',
  'came_said',
  'said_hungri',
  'hungri_puzzl',
  'puzzl_ask',
  'ask_dad',
  'dad_cook',
  'cook_dinner',
  'dinner_said',
  'said_moreov',
  'moreov_told',
  'told_come',
  'come_ask',
  'ask_cook',
  'cook_exactli',
  'exactli_pm',
  'pm_piss',
  'piss_find',
  'find_situat',
  'situat_took',
  'took_minut',
  'minut_meet',
  'meet_order',
  'order_takeout',
  'takeout_nearbi',
  'nearbi_restaur',
  'restaur_fed',
  'fed_kid',
  'kid_watch',
  'watch_tv',
  'tv_go',
  'go_sleep',
  'sleep_came',
  'came_home',
  'home_pm',
  'pm_went',
  'went_discov',
  'discov_cook',
  'cook_like',
  'like_count',
  'count_yell',
  'yell_feed',
  'feed_kid',
  'kid_takeout',
  'takeout_argu',
  'argu_back',
  'back_say',
  'say_choic',
  'choic_basic',
  'basic_trick',
  'trick_cook',
  'cook_know',
  'know_busi',
  'busi_order',
  'order_food',
  'food_made',
  'made_sure',
  'sure_kid',
  'kid_fed',
  'fed_focus',
  'focus_work',
  'work_rant',
  'rant_care',
  'care_work',
  'work_stepchildren',
  'stepchildren_god',
  'god_forbid',
  'forbid_call',
  'call_selfish',
  'selfish_went',
  'went_upstair',
  'upstair_refus',
  'refus_talk',
  'talk_still',
  'still_sulk',
  'sulk_today',
  'today_say',
  'say_need',
  'need_get',
  'get_prioriti',
  'prioriti_order',
  'order_caus',
  'caus_theyr',
  'theyr_mess',
  'mess_info',
  'info_-',
  '-_friend',
  'friend_engag',
  'engag_husband',
  'husband_friend',
  'friend_colleg',
  'colleg_theyr',
  'theyr_close',
  'close_miss',
  'miss_event',
  'event_moreov',
  'moreov_said',
  'said_upset',
  'upset_miss',
  'miss_event',
  'event_refus',
  'refus_cook',
  'cook_homemad',
  'homemad_healthi',
  'healthi_meal',
  'meal_order',
  'order_takeout',
  'takeout_know',
  'know_go',
  'go_info',
  'info_-',
  '-_reason',
  'reason_expect',
  'expect_cook',
  'cook_fact',
  'fact_busi',
  'busi_usual',
  'usual_cook',
  'cook_respons',
  'respons_info',
  'info_-',
  '-_work',
  'work_ye',
  'ye_bare',
  'bare_work',
  'work_warehous',
  'warehous_twice',
  'twice_week',
  'week_friend',
  'friend_dad',
  'dad_warehous',
  'warehous_lot',
  'lot_leverag',
  'leverag_info',
  'info_-',
  '-_context',
  'context_mother',
  'mother_one',
  'one_ex',
  'ex_wife',
  'wife_ex',
  'ex_girlfriend',
  'girlfriend_left',
  'left_financi',
  'financi_reason',
  'reason_said',
  'said_im',
  'im_fulli',
  'fulli_convinc',
  'aita_hello_give',
  'hello_give_context',
  'give_context_marri',
  'context_marri_husband',
  'marri_husband_month',
  'husband_month_children',
  'month_children_two',
  'children_two_differ',
  'two_differ_uninvolv',
  'differ_uninvolv_mother',
  'uninvolv_mother_live',
  'mother_live_us',
  'live_us_full',
  'us_full_time',
  'full_time_kid',
  'time_kid_yo',
  'kid_yo_yo',
  'yo_yo_work',
  'yo_work_long',
  'work_long_hour',
  'long_hour_demand',
  'hour_demand_job',
  'demand_job_time',
  'job_time_wise',
  'time_wise_husband',
  'wise_husband_think',
  'husband_think_wfh',
  'think_wfh_paus',
  'wfh_paus_whenev',
  'paus_whenev_untru',
  'whenev_untru_hed',
  'untru_hed_ask',
  'hed_ask_thing',
  'ask_thing_kid',
  'thing_kid_work',
  'kid_work_hour',
  'work_hour_told',
  'hour_told_im',
  'told_im_work',
  'im_work_unavail',
  'work_unavail_hour',
  'unavail_hour_kid',
  'hour_kid_responsibilti',
  'kid_responsibilti_til',
  'responsibilti_til_im',
  'til_im_done',
  'im_done_yesterday',
  'done_yesterday_told',
  'yesterday_told_want',
  'told_want_go',
  'want_go_attend',
  'go_attend_friend',
  'attend_friend_engag',
  'friend_engag_dinner',
  'engag_dinner_ask',
  'dinner_ask_could',
  'ask_could_take',
  'could_take_time',
  'take_time_work',
  'time_work_make',
  'work_make_kid',
  'make_kid_dinner',
  'kid_dinner_told',
  'dinner_told_absolut',
  'told_absolut_insist',
  'absolut_insist_cook',
  'insist_cook_order',
  'cook_order_takeout',
  'order_takeout_said',
  'takeout_said_time',
  'said_time_cook',
  'time_cook_takeout',
  'cook_takeout_tabl',
  'takeout_tabl_sinc',
  'tabl_sinc_want',
  'sinc_want_eat',
  'want_eat_fast',
  'eat_fast_food',
  'fast_food_later',
  'food_later_said',
  'later_said_fine',
  'said_fine_go',
  'fine_go_cook',
  'go_cook_dinner',
  'cook_dinner_go',
  'dinner_go_parti',
  'go_parti_hr',
  'parti_hr_later',
  'hr_later_kid',
  'later_kid_came',
  'kid_came_said',
  'came_said_hungri',
  'said_hungri_puzzl',
  'hungri_puzzl_ask',
  'puzzl_ask_dad',
  'ask_dad_cook',
  'dad_cook_dinner',
  'cook_dinner_said',
  'dinner_said_moreov',
  'said_moreov_told',
  'moreov_told_come',
  'told_come_ask',
  'come_ask_cook',
  'ask_cook_exactli',
  'cook_exactli_pm',
  'exactli_pm_piss',
  'pm_piss_find',
  'piss_find_situat',
  'find_situat_took',
  'situat_took_minut',
  'took_minut_meet',
  'minut_meet_order',
  'meet_order_takeout',
  'order_takeout_nearbi',
  'takeout_nearbi_restaur',
  'nearbi_restaur_fed',
  'restaur_fed_kid',
  'fed_kid_watch',
  'kid_watch_tv',
  'watch_tv_go',
  'tv_go_sleep',
  'go_sleep_came',
  'sleep_came_home',
  'came_home_pm',
  'home_pm_went',
  'pm_went_discov',
  'went_discov_cook',
  'discov_cook_like',
  'cook_like_count',
  'like_count_yell',
  'count_yell_feed',
  'yell_feed_kid',
  'feed_kid_takeout',
  'kid_takeout_argu',
  'takeout_argu_back',
  'argu_back_say',
  'back_say_choic',
  'say_choic_basic',
  'choic_basic_trick',
  'basic_trick_cook',
  'trick_cook_know',
  'cook_know_busi',
  'know_busi_order',
  'busi_order_food',
  'order_food_made',
  'food_made_sure',
  'made_sure_kid',
  'sure_kid_fed',
  'kid_fed_focus',
  'fed_focus_work',
  'focus_work_rant',
  'work_rant_care',
  'rant_care_work',
  'care_work_stepchildren',
  'work_stepchildren_god',
  'stepchildren_god_forbid',
  'god_forbid_call',
  'forbid_call_selfish',
  'call_selfish_went',
  'selfish_went_upstair',
  'went_upstair_refus',
  'upstair_refus_talk',
  'refus_talk_still',
  'talk_still_sulk',
  'still_sulk_today',
  'sulk_today_say',
  'today_say_need',
  'say_need_get',
  'need_get_prioriti',
  'get_prioriti_order',
  'prioriti_order_caus',
  'order_caus_theyr',
  'caus_theyr_mess',
  'theyr_mess_info',
  'mess_info_-',
  'info_-_friend',
  '-_friend_engag',
  'friend_engag_husband',
  'engag_husband_friend',
  'husband_friend_colleg',
  'friend_colleg_theyr',
  'colleg_theyr_close',
  'theyr_close_miss',
  'close_miss_event',
  'miss_event_moreov',
  'event_moreov_said',
  'moreov_said_upset',
  'said_upset_miss',
  'upset_miss_event',
  'miss_event_refus',
  'event_refus_cook',
  'refus_cook_homemad',
  'cook_homemad_healthi',
  'homemad_healthi_meal',
  'healthi_meal_order',
  'meal_order_takeout',
  'order_takeout_know',
  'takeout_know_go',
  'know_go_info',
  'go_info_-',
  'info_-_reason',
  '-_reason_expect',
  'reason_expect_cook',
  'expect_cook_fact',
  'cook_fact_busi',
  'fact_busi_usual',
  'busi_usual_cook',
  'usual_cook_respons',
  'cook_respons_info',
  'respons_info_-',
  'info_-_work',
  '-_work_ye',
  'work_ye_bare',
  'ye_bare_work',
  'bare_work_warehous',
  'work_warehous_twice',
  'warehous_twice_week',
  'twice_week_friend',
  'week_friend_dad',
  'friend_dad_warehous',
  'dad_warehous_lot',
  'warehous_lot_leverag',
  'lot_leverag_info',
  'leverag_info_-',
  'info_-_context',
  '-_context_mother',
  'context_mother_one',
  'mother_one_ex',
  'one_ex_wife',
  'ex_wife_ex',
  'wife_ex_girlfriend',
  'ex_girlfriend_left',
  'girlfriend_left_financi',
  'left_financi_reason',
  'financi_reason_said',
  'reason_said_im',
  'said_im_fulli',
  'im_fulli_convinc'],
 ['im',
  'father',
  'dad',
  'left',
  'famili',
  'without',
  'explan',
  'vanish',
  'one',
  'day',
  'ive',
  'never',
  'seen',
  'sinc',
  'left',
  'relationship',
  'issu',
  'mom',
  'heartbroken',
  'wait',
  'year',
  'return',
  '-',
  'end',
  'file',
  'divorc',
  'thank',
  'honest',
  '-',
  'year',
  'left',
  'bare',
  'memori',
  'resent',
  'year',
  'suffer',
  'put',
  'mom',
  'sister',
  'tri',
  'tri',
  'contact',
  'hed',
  'never',
  'respond',
  'cant',
  'rememb',
  'voic',
  'person',
  'even',
  'face',
  'much',
  'last',
  'week',
  'text',
  'mother',
  'said',
  'want',
  'meet',
  'year',
  'disappear',
  'mom',
  'agre',
  'arrang',
  'meet-up',
  'nearbi',
  'restaur',
  'sister',
  'nervousexcit',
  'realis',
  'felt',
  'nearli',
  'noth',
  'arriv',
  'mom',
  'sister',
  'start',
  'cri',
  'cri',
  'sight',
  'belov',
  'daughter',
  'saw',
  'look',
  'quit',
  'emotionless',
  'said',
  'miss',
  'dad',
  'repli',
  'honestli',
  'rememb',
  'left',
  'long',
  'like',
  'bare',
  'knew',
  'shock',
  'hurt',
  'eventu',
  'cut',
  'meet-up',
  'earli',
  'claim',
  'work',
  'mom',
  'sister',
  'mad',
  'blame',
  'mom',
  'said',
  'sister',
  'wait',
  'see',
  'dad',
  'long',
  'make',
  'stupid',
  'remark',
  'make',
  'leav',
  'second',
  'time',
  'ask',
  'could',
  'behav',
  'like',
  'toward',
  '*',
  'dad',
  '*',
  'tell',
  'im',
  'selfish',
  'bitch',
  'asshol',
  'im',
  'sorri',
  'cut',
  'meet-up',
  'short',
  'caus',
  'knew',
  'sister',
  'miss',
  'damn',
  'much',
  'honest',
  'feel',
  'bad',
  'say',
  'truth',
  'aita',
  'im_father',
  'father_dad',
  'dad_left',
  'left_famili',
  'famili_without',
  'without_explan',
  'explan_vanish',
  'vanish_one',
  'one_day',
  'day_ive',
  'ive_never',
  'never_seen',
  'seen_sinc',
  'sinc_left',
  'left_relationship',
  'relationship_issu',
  'issu_mom',
  'mom_heartbroken',
  'heartbroken_wait',
  'wait_year',
  'year_return',
  'return_-',
  '-_end',
  'end_file',
  'file_divorc',
  'divorc_thank',
  'thank_honest',
  'honest_-',
  '-_year',
  'year_left',
  'left_bare',
  'bare_memori',
  'memori_resent',
  'resent_year',
  'year_suffer',
  'suffer_put',
  'put_mom',
  'mom_sister',
  'sister_tri',
  'tri_tri',
  'tri_contact',
  'contact_hed',
  'hed_never',
  'never_respond',
  'respond_cant',
  'cant_rememb',
  'rememb_voic',
  'voic_person',
  'person_even',
  'even_face',
  'face_much',
  'much_last',
  'last_week',
  'week_text',
  'text_mother',
  'mother_said',
  'said_want',
  'want_meet',
  'meet_year',
  'year_disappear',
  'disappear_mom',
  'mom_agre',
  'agre_arrang',
  'arrang_meet-up',
  'meet-up_nearbi',
  'nearbi_restaur',
  'restaur_sister',
  'sister_nervousexcit',
  'nervousexcit_realis',
  'realis_felt',
  'felt_nearli',
  'nearli_noth',
  'noth_arriv',
  'arriv_mom',
  'mom_sister',
  'sister_start',
  'start_cri',
  'cri_cri',
  'cri_sight',
  'sight_belov',
  'belov_daughter',
  'daughter_saw',
  'saw_look',
  'look_quit',
  'quit_emotionless',
  'emotionless_said',
  'said_miss',
  'miss_dad',
  'dad_repli',
  'repli_honestli',
  'honestli_rememb',
  'rememb_left',
  'left_long',
  'long_like',
  'like_bare',
  'bare_knew',
  'knew_shock',
  'shock_hurt',
  'hurt_eventu',
  'eventu_cut',
  'cut_meet-up',
  'meet-up_earli',
  'earli_claim',
  'claim_work',
  'work_mom',
  'mom_sister',
  'sister_mad',
  'mad_blame',
  'blame_mom',
  'mom_said',
  'said_sister',
  'sister_wait',
  'wait_see',
  'see_dad',
  'dad_long',
  'long_make',
  'make_stupid',
  'stupid_remark',
  'remark_make',
  'make_leav',
  'leav_second',
  'second_time',
  'time_ask',
  'ask_could',
  'could_behav',
  'behav_like',
  'like_toward',
  'toward_*',
  '*_dad',
  'dad_*',
  '*_tell',
  'tell_im',
  'im_selfish',
  'selfish_bitch',
  'bitch_asshol',
  'asshol_im',
  'im_sorri',
  'sorri_cut',
  'cut_meet-up',
  'meet-up_short',
  'short_caus',
  'caus_knew',
  'knew_sister',
  'sister_miss',
  'miss_damn',
  'damn_much',
  'much_honest',
  'honest_feel',
  'feel_bad',
  'bad_say',
  'say_truth',
  'truth_aita',
  'im_father_dad',
  'father_dad_left',
  'dad_left_famili',
  'left_famili_without',
  'famili_without_explan',
  'without_explan_vanish',
  'explan_vanish_one',
  'vanish_one_day',
  'one_day_ive',
  'day_ive_never',
  'ive_never_seen',
  'never_seen_sinc',
  'seen_sinc_left',
  'sinc_left_relationship',
  'left_relationship_issu',
  'relationship_issu_mom',
  'issu_mom_heartbroken',
  'mom_heartbroken_wait',
  'heartbroken_wait_year',
  'wait_year_return',
  'year_return_-',
  'return_-_end',
  '-_end_file',
  'end_file_divorc',
  'file_divorc_thank',
  'divorc_thank_honest',
  'thank_honest_-',
  'honest_-_year',
  '-_year_left',
  'year_left_bare',
  'left_bare_memori',
  'bare_memori_resent',
  'memori_resent_year',
  'resent_year_suffer',
  'year_suffer_put',
  'suffer_put_mom',
  'put_mom_sister',
  'mom_sister_tri',
  'sister_tri_tri',
  'tri_tri_contact',
  'tri_contact_hed',
  'contact_hed_never',
  'hed_never_respond',
  'never_respond_cant',
  'respond_cant_rememb',
  'cant_rememb_voic',
  'rememb_voic_person',
  'voic_person_even',
  'person_even_face',
  'even_face_much',
  'face_much_last',
  'much_last_week',
  'last_week_text',
  'week_text_mother',
  'text_mother_said',
  'mother_said_want',
  'said_want_meet',
  'want_meet_year',
  'meet_year_disappear',
  'year_disappear_mom',
  'disappear_mom_agre',
  'mom_agre_arrang',
  'agre_arrang_meet-up',
  'arrang_meet-up_nearbi',
  'meet-up_nearbi_restaur',
  'nearbi_restaur_sister',
  'restaur_sister_nervousexcit',
  'sister_nervousexcit_realis',
  'nervousexcit_realis_felt',
  'realis_felt_nearli',
  'felt_nearli_noth',
  'nearli_noth_arriv',
  'noth_arriv_mom',
  'arriv_mom_sister',
  'mom_sister_start',
  'sister_start_cri',
  'start_cri_cri',
  'cri_cri_sight',
  'cri_sight_belov',
  'sight_belov_daughter',
  'belov_daughter_saw',
  'daughter_saw_look',
  'saw_look_quit',
  'look_quit_emotionless',
  'quit_emotionless_said',
  'emotionless_said_miss',
  'said_miss_dad',
  'miss_dad_repli',
  'dad_repli_honestli',
  'repli_honestli_rememb',
  'honestli_rememb_left',
  'rememb_left_long',
  'left_long_like',
  'long_like_bare',
  'like_bare_knew',
  'bare_knew_shock',
  'knew_shock_hurt',
  'shock_hurt_eventu',
  'hurt_eventu_cut',
  'eventu_cut_meet-up',
  'cut_meet-up_earli',
  'meet-up_earli_claim',
  'earli_claim_work',
  'claim_work_mom',
  'work_mom_sister',
  'mom_sister_mad',
  'sister_mad_blame',
  'mad_blame_mom',
  'blame_mom_said',
  'mom_said_sister',
  'said_sister_wait',
  'sister_wait_see',
  'wait_see_dad',
  'see_dad_long',
  'dad_long_make',
  'long_make_stupid',
  'make_stupid_remark',
  'stupid_remark_make',
  'remark_make_leav',
  'make_leav_second',
  'leav_second_time',
  'second_time_ask',
  'time_ask_could',
  'ask_could_behav',
  'could_behav_like',
  'behav_like_toward',
  'like_toward_*',
  'toward_*_dad',
  '*_dad_*',
  'dad_*_tell',
  '*_tell_im',
  'tell_im_selfish',
  'im_selfish_bitch',
  'selfish_bitch_asshol',
  'bitch_asshol_im',
  'asshol_im_sorri',
  'im_sorri_cut',
  'sorri_cut_meet-up',
  'cut_meet-up_short',
  'meet-up_short_caus',
  'short_caus_knew',
  'caus_knew_sister',
  'knew_sister_miss',
  'sister_miss_damn',
  'miss_damn_much',
  'damn_much_honest',
  'much_honest_feel',
  'honest_feel_bad',
  'feel_bad_say',
  'bad_say_truth',
  'say_truth_aita'],
 ['fiancé',
  'move',
  'togeth',
  'shortli',
  'got',
  'engag',
  'discuss',
  'wed',
  'split',
  'housework',
  'bill',
  'middl',
  'wiggl',
  'room',
  'need',
  'help',
  'move',
  'parent',
  '-stori',
  'garag',
  'convert',
  'basic',
  'apart',
  'offer',
  'low',
  'rent',
  'total',
  'pitch',
  'electr',
  'internet',
  'could',
  'save',
  'money',
  'place',
  'wed',
  'fiancé',
  'earn',
  'cool',
  'im',
  'proud',
  'move',
  'togeth',
  'alway',
  'seem',
  'like',
  'live',
  'paycheck',
  'paycheck',
  'chalk',
  'apart',
  'prior',
  'insan',
  'high',
  'rent',
  'stuck',
  'arrang',
  'first',
  'concern',
  'bill',
  'miss',
  'often',
  'remind',
  'post-engag',
  'back',
  'live',
  'paycheck',
  'paycheck',
  'either',
  'miss',
  'late',
  'part',
  'rent',
  'monthli',
  'two',
  'util',
  'pay',
  'groceri',
  'late',
  'car',
  'payment',
  'parent',
  'talk',
  'multipl',
  'time',
  'rent',
  'ive',
  'cover',
  'miss',
  'portion',
  'get',
  'us',
  'caught',
  'tri',
  'talk',
  'alway',
  'turn',
  'say',
  'move',
  'parent',
  'go',
  'hound',
  'us',
  'told',
  'lucki',
  'parent',
  'anywher',
  'els',
  'wouldv',
  'kick',
  'ass',
  'top',
  'pay',
  'bill',
  '%',
  'housework',
  'arrang',
  'pay',
  'date',
  'vacat',
  'gift',
  'pay',
  'toward',
  'pet',
  'ive',
  'suggest',
  'financi',
  'coach',
  'kick',
  'whenev',
  'around',
  'boast',
  'breadwinn',
  'sinc',
  'earn',
  'goe',
  'stress',
  'main',
  'sourc',
  'incom',
  'hour',
  'work',
  'pay',
  'bill',
  'let',
  'slide',
  'day',
  'ago',
  'get',
  'togeth',
  'sister',
  'start',
  'breadwinn',
  'sister',
  'said',
  'someth',
  'effect',
  'ex-boyfriend',
  'hard',
  'time',
  'someon',
  'earn',
  'fiancé',
  'went',
  'good',
  'thing',
  'op',
  'mind',
  'bring',
  'home',
  'pay',
  'told',
  'earn',
  'make',
  'breadwinn',
  'blow',
  'im',
  'pay',
  'bill',
  'embarrass',
  'keep',
  'say',
  'made',
  'look',
  'bad',
  'got',
  'troubl',
  'parent',
  'want',
  'see',
  'spend',
  'money',
  'month',
  'think',
  'anyth',
  'wrong',
  'aita',
  'updat',
  'last',
  'night',
  'readi',
  'postpon',
  'engag',
  'morn',
  'lot',
  'talk',
  'thing',
  'come',
  'light',
  'broken',
  'thank',
  'everyon',
  'respons',
  'input',
  'especi',
  'encourag',
  'look',
  'deeper',
  'quick',
  'summari',
  '\\-',
  'felt',
  'joint',
  'account',
  'would',
  'imped',
  'financi',
  'independ',
  '\\-',
  'insist',
  'could',
  'afford',
  'purchas',
  'base',
  'total',
  'incom',
  '\\-',
  'parent',
  'impress',
  'also',
  'pay',
  'student',
  'loan',
  'car',
  'phone',
  'pay',
  'vacat',
  '\\-',
  'get',
  'evict',
  'last',
  'apart',
  'late',
  'rent',
  'often',
  'enough',
  'go',
  'renew',
  'leas',
  'suggest',
  'us',
  'move',
  'bigger',
  'apart',
  'build',
  '\\-',
  'biggest',
  'nope',
  'im',
  'monthli',
  'take',
  'home',
  'amount',
  'told',
  'earn',
  'wage',
  'garnish',
  'kick',
  'addit',
  'mass',
  'debt',
  'onlin',
  'stuff',
  'make',
  'money',
  'lose',
  'due',
  'ye',
  'got',
  'ring',
  'back',
  'thank',
  'everyon',
  'respond',
  'anymor',
  'comment',
  'im',
  'go',
  'go',
  'take',
  'time',
  'get',
  'shit',
  'figur',
  'fiancé_move',
  'move_togeth',
  'togeth_shortli',
  'shortli_got',
  'got_engag',
  'engag_discuss',
  'discuss_wed',
  'wed_split',
  'split_housework',
  'housework_bill',
  'bill_middl',
  'middl_wiggl',
  'wiggl_room',
  'room_need',
  'need_help',
  'help_move',
  'move_parent',
  'parent_-stori',
  '-stori_garag',
  'garag_convert',
  'convert_basic',
  'basic_apart',
  'apart_offer',
  'offer_low',
  'low_rent',
  'rent_total',
  'total_pitch',
  'pitch_electr',
  'electr_internet',
  'internet_could',
  'could_save',
  'save_money',
  'money_place',
  'place_wed',
  'wed_fiancé',
  'fiancé_earn',
  'earn_cool',
  'cool_im',
  'im_proud',
  'proud_move',
  'move_togeth',
  'togeth_alway',
  'alway_seem',
  'seem_like',
  'like_live',
  'live_paycheck',
  'paycheck_paycheck',
  'paycheck_chalk',
  'chalk_apart',
  'apart_prior',
  'prior_insan',
  'insan_high',
  'high_rent',
  'rent_stuck',
  'stuck_arrang',
  'arrang_first',
  'first_concern',
  'concern_bill',
  'bill_miss',
  'miss_often',
  'often_remind',
  'remind_post-engag',
  'post-engag_back',
  'back_live',
  'live_paycheck',
  'paycheck_paycheck',
  'paycheck_either',
  'either_miss',
  'miss_late',
  'late_part',
  'part_rent',
  'rent_monthli',
  'monthli_two',
  'two_util',
  'util_pay',
  'pay_groceri',
  'groceri_late',
  'late_car',
  'car_payment',
  'payment_parent',
  'parent_talk',
  'talk_multipl',
  'multipl_time',
  'time_rent',
  'rent_ive',
  'ive_cover',
  'cover_miss',
  'miss_portion',
  'portion_get',
  'get_us',
  'us_caught',
  'caught_tri',
  'tri_talk',
  'talk_alway',
  'alway_turn',
  'turn_say',
  'say_move',
  'move_parent',
  'parent_go',
  'go_hound',
  'hound_us',
  'us_told',
  'told_lucki',
  'lucki_parent',
  'parent_anywher',
  'anywher_els',
  'els_wouldv',
  'wouldv_kick',
  'kick_ass',
  'ass_top',
  'top_pay',
  'pay_bill',
  'bill_%',
  '%_housework',
  'housework_arrang',
  'arrang_pay',
  'pay_date',
  'date_vacat',
  'vacat_gift',
  'gift_pay',
  'pay_toward',
  'toward_pet',
  'pet_ive',
  'ive_suggest',
  'suggest_financi',
  'financi_coach',
  'coach_kick',
  'kick_whenev',
  'whenev_around',
  'around_boast',
  'boast_breadwinn',
  'breadwinn_sinc',
  'sinc_earn',
  'earn_goe',
  'goe_stress',
  'stress_main',
  'main_sourc',
  'sourc_incom',
  'incom_hour',
  'hour_work',
  'work_pay',
  'pay_bill',
  'bill_let',
  'let_slide',
  'slide_day',
  'day_ago',
  'ago_get',
  'get_togeth',
  'togeth_sister',
  'sister_start',
  'start_breadwinn',
  'breadwinn_sister',
  'sister_said',
  'said_someth',
  'someth_effect',
  'effect_ex-boyfriend',
  'ex-boyfriend_hard',
  'hard_time',
  'time_someon',
  'someon_earn',
  'earn_fiancé',
  'fiancé_went',
  'went_good',
  'good_thing',
  'thing_op',
  'op_mind',
  'mind_bring',
  'bring_home',
  'home_pay',
  'pay_told',
  'told_earn',
  'earn_make',
  'make_breadwinn',
  'breadwinn_blow',
  'blow_im',
  'im_pay',
  'pay_bill',
  'bill_embarrass',
  'embarrass_keep',
  'keep_say',
  'say_made',
  'made_look',
  'look_bad',
  'bad_got',
  'got_troubl',
  'troubl_parent',
  'parent_want',
  'want_see',
  'see_spend',
  'spend_money',
  'money_month',
  'month_think',
  'think_anyth',
  'anyth_wrong',
  'wrong_aita',
  'aita_updat',
  'updat_last',
  'last_night',
  'night_readi',
  'readi_postpon',
  'postpon_engag',
  'engag_morn',
  'morn_lot',
  'lot_talk',
  'talk_thing',
  'thing_come',
  'come_light',
  'light_broken',
  'broken_thank',
  'thank_everyon',
  'everyon_respons',
  'respons_input',
  'input_especi',
  'especi_encourag',
  'encourag_look',
  'look_deeper',
  'deeper_quick',
  'quick_summari',
  'summari_\\-',
  '\\-_felt',
  'felt_joint',
  'joint_account',
  'account_would',
  'would_imped',
  'imped_financi',
  'financi_independ',
  'independ_\\-',
  '\\-_insist',
  'insist_could',
  'could_afford',
  'afford_purchas',
  'purchas_base',
  'base_total',
  'total_incom',
  'incom_\\-',
  '\\-_parent',
  'parent_impress',
  'impress_also',
  'also_pay',
  'pay_student',
  'student_loan',
  'loan_car',
  'car_phone',
  'phone_pay',
  'pay_vacat',
  'vacat_\\-',
  '\\-_get',
  'get_evict',
  'evict_last',
  'last_apart',
  'apart_late',
  'late_rent',
  'rent_often',
  'often_enough',
  'enough_go',
  'go_renew',
  'renew_leas',
  'leas_suggest',
  'suggest_us',
  'us_move',
  'move_bigger',
  'bigger_apart',
  'apart_build',
  'build_\\-',
  '\\-_biggest',
  'biggest_nope',
  'nope_im',
  'im_monthli',
  'monthli_take',
  'take_home',
  'home_amount',
  'amount_told',
  'told_earn',
  'earn_wage',
  'wage_garnish',
  'garnish_kick',
  'kick_addit',
  'addit_mass',
  'mass_debt',
  'debt_onlin',
  'onlin_stuff',
  'stuff_make',
  'make_money',
  'money_lose',
  'lose_due',
  'due_ye',
  'ye_got',
  'got_ring',
  'ring_back',
  'back_thank',
  'thank_everyon',
  'everyon_respond',
  'respond_anymor',
  'anymor_comment',
  'comment_im',
  'im_go',
  'go_go',
  'go_take',
  'take_time',
  'time_get',
  'get_shit',
  'shit_figur',
  'fiancé_move_togeth',
  'move_togeth_shortli',
  'togeth_shortli_got',
  'shortli_got_engag',
  'got_engag_discuss',
  'engag_discuss_wed',
  'discuss_wed_split',
  'wed_split_housework',
  'split_housework_bill',
  'housework_bill_middl',
  'bill_middl_wiggl',
  'middl_wiggl_room',
  'wiggl_room_need',
  'room_need_help',
  'need_help_move',
  'help_move_parent',
  'move_parent_-stori',
  'parent_-stori_garag',
  '-stori_garag_convert',
  'garag_convert_basic',
  'convert_basic_apart',
  'basic_apart_offer',
  'apart_offer_low',
  'offer_low_rent',
  'low_rent_total',
  'rent_total_pitch',
  'total_pitch_electr',
  'pitch_electr_internet',
  'electr_internet_could',
  'internet_could_save',
  'could_save_money',
  'save_money_place',
  'money_place_wed',
  'place_wed_fiancé',
  'wed_fiancé_earn',
  'fiancé_earn_cool',
  'earn_cool_im',
  'cool_im_proud',
  'im_proud_move',
  'proud_move_togeth',
  'move_togeth_alway',
  'togeth_alway_seem',
  'alway_seem_like',
  'seem_like_live',
  'like_live_paycheck',
  'live_paycheck_paycheck',
  'paycheck_paycheck_chalk',
  'paycheck_chalk_apart',
  'chalk_apart_prior',
  'apart_prior_insan',
  'prior_insan_high',
  'insan_high_rent',
  'high_rent_stuck',
  'rent_stuck_arrang',
  'stuck_arrang_first',
  'arrang_first_concern',
  'first_concern_bill',
  'concern_bill_miss',
  'bill_miss_often',
  'miss_often_remind',
  'often_remind_post-engag',
  'remind_post-engag_back',
  'post-engag_back_live',
  'back_live_paycheck',
  'live_paycheck_paycheck',
  'paycheck_paycheck_either',
  'paycheck_either_miss',
  'either_miss_late',
  'miss_late_part',
  'late_part_rent',
  'part_rent_monthli',
  'rent_monthli_two',
  'monthli_two_util',
  'two_util_pay',
  'util_pay_groceri',
  'pay_groceri_late',
  'groceri_late_car',
  'late_car_payment',
  'car_payment_parent',
  'payment_parent_talk',
  'parent_talk_multipl',
  'talk_multipl_time',
  'multipl_time_rent',
  'time_rent_ive',
  'rent_ive_cover',
  'ive_cover_miss',
  'cover_miss_portion',
  'miss_portion_get',
  'portion_get_us',
  'get_us_caught',
  'us_caught_tri',
  'caught_tri_talk',
  'tri_talk_alway',
  'talk_alway_turn',
  'alway_turn_say',
  'turn_say_move',
  'say_move_parent',
  'move_parent_go',
  'parent_go_hound',
  'go_hound_us',
  'hound_us_told',
  'us_told_lucki',
  'told_lucki_parent',
  'lucki_parent_anywher',
  'parent_anywher_els',
  'anywher_els_wouldv',
  'els_wouldv_kick',
  'wouldv_kick_ass',
  'kick_ass_top',
  'ass_top_pay',
  'top_pay_bill',
  'pay_bill_%',
  'bill_%_housework',
  '%_housework_arrang',
  'housework_arrang_pay',
  'arrang_pay_date',
  'pay_date_vacat',
  'date_vacat_gift',
  'vacat_gift_pay',
  'gift_pay_toward',
  'pay_toward_pet',
  'toward_pet_ive',
  'pet_ive_suggest',
  'ive_suggest_financi',
  'suggest_financi_coach',
  'financi_coach_kick',
  'coach_kick_whenev',
  'kick_whenev_around',
  'whenev_around_boast',
  'around_boast_breadwinn',
  'boast_breadwinn_sinc',
  'breadwinn_sinc_earn',
  'sinc_earn_goe',
  'earn_goe_stress',
  'goe_stress_main',
  'stress_main_sourc',
  'main_sourc_incom',
  'sourc_incom_hour',
  'incom_hour_work',
  'hour_work_pay',
  'work_pay_bill',
  'pay_bill_let',
  'bill_let_slide',
  'let_slide_day',
  'slide_day_ago',
  'day_ago_get',
  'ago_get_togeth',
  'get_togeth_sister',
  'togeth_sister_start',
  'sister_start_breadwinn',
  'start_breadwinn_sister',
  'breadwinn_sister_said',
  'sister_said_someth',
  'said_someth_effect',
  'someth_effect_ex-boyfriend',
  'effect_ex-boyfriend_hard',
  'ex-boyfriend_hard_time',
  'hard_time_someon',
  'time_someon_earn',
  'someon_earn_fiancé',
  'earn_fiancé_went',
  'fiancé_went_good',
  'went_good_thing',
  'good_thing_op',
  'thing_op_mind',
  'op_mind_bring',
  'mind_bring_home',
  'bring_home_pay',
  'home_pay_told',
  'pay_told_earn',
  'told_earn_make',
  'earn_make_breadwinn',
  'make_breadwinn_blow',
  'breadwinn_blow_im',
  'blow_im_pay',
  'im_pay_bill',
  'pay_bill_embarrass',
  'bill_embarrass_keep',
  'embarrass_keep_say',
  'keep_say_made',
  'say_made_look',
  'made_look_bad',
  'look_bad_got',
  'bad_got_troubl',
  'got_troubl_parent',
  'troubl_parent_want',
  'parent_want_see',
  'want_see_spend',
  'see_spend_money',
  'spend_money_month',
  'money_month_think',
  'month_think_anyth',
  'think_anyth_wrong',
  'anyth_wrong_aita',
  'wrong_aita_updat',
  'aita_updat_last',
  'updat_last_night',
  'last_night_readi',
  'night_readi_postpon',
  'readi_postpon_engag',
  'postpon_engag_morn',
  'engag_morn_lot',
  'morn_lot_talk',
  'lot_talk_thing',
  'talk_thing_come',
  'thing_come_light',
  'come_light_broken',
  'light_broken_thank',
  'broken_thank_everyon',
  'thank_everyon_respons',
  'everyon_respons_input',
  'respons_input_especi',
  'input_especi_encourag',
  'especi_encourag_look',
  'encourag_look_deeper',
  'look_deeper_quick',
  'deeper_quick_summari',
  'quick_summari_\\-',
  'summari_\\-_felt',
  '\\-_felt_joint',
  'felt_joint_account',
  'joint_account_would',
  'account_would_imped',
  'would_imped_financi',
  'imped_financi_independ',
  'financi_independ_\\-',
  'independ_\\-_insist',
  '\\-_insist_could',
  'insist_could_afford',
  'could_afford_purchas',
  'afford_purchas_base',
  'purchas_base_total',
  'base_total_incom',
  'total_incom_\\-',
  'incom_\\-_parent',
  '\\-_parent_impress',
  'parent_impress_also',
  'impress_also_pay',
  'also_pay_student',
  'pay_student_loan',
  'student_loan_car',
  'loan_car_phone',
  'car_phone_pay',
  'phone_pay_vacat',
  'pay_vacat_\\-',
  'vacat_\\-_get',
  '\\-_get_evict',
  'get_evict_last',
  'evict_last_apart',
  'last_apart_late',
  'apart_late_rent',
  'late_rent_often',
  'rent_often_enough',
  'often_enough_go',
  'enough_go_renew',
  'go_renew_leas',
  'renew_leas_suggest',
  'leas_suggest_us',
  'suggest_us_move',
  'us_move_bigger',
  'move_bigger_apart',
  'bigger_apart_build',
  'apart_build_\\-',
  'build_\\-_biggest',
  '\\-_biggest_nope',
  'biggest_nope_im',
  'nope_im_monthli',
  'im_monthli_take',
  'monthli_take_home',
  'take_home_amount',
  'home_amount_told',
  'amount_told_earn',
  'told_earn_wage',
  'earn_wage_garnish',
  'wage_garnish_kick',
  'garnish_kick_addit',
  'kick_addit_mass',
  'addit_mass_debt',
  'mass_debt_onlin',
  'debt_onlin_stuff',
  'onlin_stuff_make',
  'stuff_make_money',
  'make_money_lose',
  'money_lose_due',
  'lose_due_ye',
  'due_ye_got',
  'ye_got_ring',
  'got_ring_back',
  'ring_back_thank',
  'back_thank_everyon',
  'thank_everyon_respond',
  'everyon_respond_anymor',
  'respond_anymor_comment',
  'anymor_comment_im',
  'comment_im_go',
  'im_go_go',
  'go_go_take',
  'go_take_time',
  'take_time_get',
  'time_get_shit',
  'get_shit_figur'],
 ['mobil',
  'throwaway',
  'happen',
  'wife',
  'current',
  'sleep',
  'mom',
  'blow',
  'phone',
  '*',
  'ad',
  'edit',
  'bottom',
  '*',
  'marri',
  'wonder',
  'wife',
  'melodi',
  'current',
  'pregnant',
  'first',
  'child',
  'togeth',
  'year',
  'old',
  'daughter',
  'tina',
  'mother',
  'split',
  'custodi',
  'know',
  'part',
  'melodi',
  'need',
  'order',
  'feel',
  'support',
  'carri',
  'child',
  'spend',
  'lot',
  'time',
  'make',
  'sure',
  'comfort',
  'take',
  'load',
  'home',
  'much',
  'first',
  'child',
  'obvious',
  'lot',
  'physic',
  'emot',
  'mother',
  'melodi',
  'get',
  'along',
  'well',
  'mom',
  'like',
  'ex',
  'either',
  'broke',
  'head',
  'differ',
  'path',
  'mother',
  'bad',
  'blood',
  'think',
  'like',
  'date',
  'whatev',
  'reason',
  'weird',
  'nit',
  'picki',
  'melodi',
  'much',
  'around',
  'hous',
  'emot',
  'melodi',
  'alreadi',
  'cri',
  'easili',
  'pregnant',
  'made',
  'even',
  'sensit',
  'fine',
  'fact',
  'want',
  'stay',
  'home',
  'mom',
  'seem',
  'like',
  'noth',
  'melodi',
  'okay',
  'howev',
  'stand',
  'allow',
  'mom',
  'talk',
  'today',
  'pick',
  'daughter',
  'summer',
  'camp',
  'melodi',
  'went',
  'differ',
  'groceri',
  'store',
  'find',
  'rotisseri',
  'chicken',
  'talk',
  'sinc',
  'last',
  'night',
  'realli',
  'realli',
  'want',
  'one',
  'lol',
  'sent',
  'pictur',
  'messag',
  'document',
  'quest',
  'chicken',
  'final',
  'found',
  'girl',
  'happi',
  'rotisseri',
  'chicken',
  'also',
  'kind',
  'comfort',
  'food',
  'like',
  'spaghetti',
  'mom',
  'use',
  'make',
  'one',
  'lazi',
  'day',
  'feel',
  'like',
  'cook',
  'plan',
  'serv',
  'basic',
  'side',
  'dinner',
  'perfectli',
  'fine',
  'mother',
  'came',
  'see',
  'tina',
  'start',
  'tell',
  'melodi',
  'chicken',
  'bad',
  'eat',
  'pregnant',
  'melodi',
  'said',
  'fine',
  'usual',
  'eat',
  'healthi',
  'want',
  'one',
  'thing',
  'crave',
  'mom',
  'went',
  'unhealthi',
  'said',
  'need',
  'eat',
  'someth',
  'els',
  'melodi',
  'said',
  'went',
  'backyard',
  'facetim',
  'famili',
  'state',
  'came',
  'back',
  'mom',
  'thrown',
  'food',
  'order',
  'take',
  'salad',
  'melodi',
  'pizza',
  'everyon',
  'els',
  'melodi',
  'ask',
  'chicken',
  'mother',
  'told',
  'need',
  'start',
  'respons',
  'mother',
  'eat',
  'correctli',
  'babi',
  'melodi',
  'scream',
  'fuck',
  'wrong',
  'alway',
  'bitch',
  'start',
  'cri',
  'call',
  'home',
  'came',
  'back',
  'ask',
  'mother',
  'leav',
  'hear',
  'stori',
  'said',
  'come',
  'back',
  'apolog',
  'treat',
  'melodi',
  'mom',
  'went',
  'im',
  'choos',
  'anoth',
  'woman',
  'think',
  'enough',
  'enough',
  'melodi',
  'reach',
  'limit',
  'apolog',
  'blow',
  'tina',
  'hous',
  'told',
  'okay',
  'ting',
  'happen',
  'tina',
  'okay',
  'went',
  'find',
  'anoth',
  'chicken',
  'store',
  'close',
  'dad',
  'think',
  'im',
  'right',
  'take',
  'melodi',
  'side',
  'brother',
  'think',
  'alway',
  'defend',
  'mom',
  'aita',
  'edit',
  'okay',
  'guy',
  'expect',
  'get',
  'much',
  'attent',
  'woke',
  'mani',
  'notif',
  'im',
  'go',
  'tri',
  'go',
  'mani',
  'wow',
  'thank',
  'guy',
  'support',
  'award',
  'melodi',
  'love',
  'kind',
  'messag',
  'especi',
  'mama',
  '&',
  'soon',
  'mama',
  'get',
  'put',
  'lol',
  'mom',
  'claim',
  'season',
  '&',
  'fatgreas',
  'made',
  'chicken',
  'bad',
  'bs',
  'claim',
  'plan',
  'sit',
  'parent',
  'brother',
  'mom',
  'lot',
  'mention',
  'emot',
  'incest',
  'creep',
  'thing',
  'along',
  'line',
  'need',
  'address',
  'ill',
  'talk',
  'dad',
  'first',
  'famili',
  'meet',
  'lot',
  'ask',
  'would',
  'still',
  'want',
  'mom',
  'around',
  'honestli',
  'mayb',
  'im',
  'weak',
  'mother',
  'howev',
  'learn',
  'chang',
  'respect',
  'famili',
  'go',
  'nc',
  'hard',
  'melodi',
  'even',
  'want',
  'complet',
  'cut',
  'want',
  'chang',
  'well',
  'protect',
  'melodi',
  'cost',
  'mean',
  'cut',
  'mom',
  'ex',
  'break',
  'mother',
  'differ',
  'idea',
  'live',
  'go',
  'tina',
  'plan',
  'alreadi',
  'head',
  'toward',
  'go',
  'separ',
  'way',
  'got',
  'pregnant',
  'tri',
  'make',
  'work',
  'tina',
  'relationship',
  'split',
  'work',
  'great',
  'ex',
  'melodi',
  'get',
  'along',
  'great',
  'tina',
  'happi',
  'work',
  'thing',
  'one',
  'big',
  'blend',
  'famili',
  'ex',
  'melodi',
  'talk',
  'mother',
  'realiz',
  'need',
  'see',
  'therapist',
  'work',
  'childhood',
  'mom',
  'like',
  'mine',
  'process',
  'im',
  'work',
  'best',
  'peopl',
  'ask',
  'cultur',
  'black',
  'american',
  'think',
  'mom',
  'son',
  'thing',
  'cultur',
  'thing',
  'sure',
  'updat',
  'someon',
  'pleas',
  'comment',
  'let',
  'know',
  'ill',
  'updat',
  'speak',
  'dad',
  '&',
  'famili',
  'meet',
  'lot',
  'recommend',
  'justnomil',
  '&',
  'raisedbynarcissist',
  'think',
  'page',
  'name',
  'definit',
  'check',
  'melodi',
  'pregnanc',
  'go',
  'smoothli',
  'part',
  'exhaust',
  'emot',
  'put',
  'also',
  'girl',
  'gender',
  'reveal',
  'last',
  'week',
  'wonder',
  'thank',
  'well',
  'wish',
  'girldad',
  '🙌🏾',
  'edit',
  'find',
  'anoth',
  'chicken',
  'yesterday',
  'night',
  'whole',
  'fiasco',
  'thank',
  'everyon',
  'recommend',
  'get',
  'costco',
  'card',
  'way',
  'go',
  'anoth',
  'chicken',
  'quest',
  '😂',
  'mobil_throwaway',
  'throwaway_happen',
  'happen_wife',
  'wife_current',
  'current_sleep',
  'sleep_mom',
  'mom_blow',
  'blow_phone',
  'phone_*',
  '*_ad',
  'ad_edit',
  'edit_bottom',
  'bottom_*',
  '*_marri',
  'marri_wonder',
  'wonder_wife',
  'wife_melodi',
  'melodi_current',
  'current_pregnant',
  'pregnant_first',
  'first_child',
  'child_togeth',
  'togeth_year',
  'year_old',
  'old_daughter',
  'daughter_tina',
  'tina_mother',
  'mother_split',
  'split_custodi',
  'custodi_know',
  'know_part',
  'part_melodi',
  'melodi_need',
  'need_order',
  'order_feel',
  'feel_support',
  'support_carri',
  'carri_child',
  'child_spend',
  'spend_lot',
  'lot_time',
  'time_make',
  'make_sure',
  'sure_comfort',
  'comfort_take',
  'take_load',
  'load_home',
  'home_much',
  'much_first',
  'first_child',
  'child_obvious',
  'obvious_lot',
  'lot_physic',
  'physic_emot',
  'emot_mother',
  'mother_melodi',
  'melodi_get',
  'get_along',
  'along_well',
  'well_mom',
  'mom_like',
  'like_ex',
  'ex_either',
  'either_broke',
  'broke_head',
  'head_differ',
  'differ_path',
  'path_mother',
  'mother_bad',
  'bad_blood',
  'blood_think',
  'think_like',
  'like_date',
  'date_whatev',
  'whatev_reason',
  'reason_weird',
  'weird_nit',
  'nit_picki',
  'picki_melodi',
  'melodi_much',
  'much_around',
  'around_hous',
  'hous_emot',
  'emot_melodi',
  'melodi_alreadi',
  'alreadi_cri',
  'cri_easili',
  'easili_pregnant',
  'pregnant_made',
  'made_even',
  'even_sensit',
  'sensit_fine',
  'fine_fact',
  'fact_want',
  'want_stay',
  'stay_home',
  'home_mom',
  'mom_seem',
  'seem_like',
  'like_noth',
  'noth_melodi',
  'melodi_okay',
  'okay_howev',
  'howev_stand',
  'stand_allow',
  'allow_mom',
  'mom_talk',
  'talk_today',
  'today_pick',
  'pick_daughter',
  'daughter_summer',
  'summer_camp',
  'camp_melodi',
  'melodi_went',
  'went_differ',
  'differ_groceri',
  'groceri_store',
  'store_find',
  'find_rotisseri',
  'rotisseri_chicken',
  'chicken_talk',
  'talk_sinc',
  'sinc_last',
  'last_night',
  'night_realli',
  'realli_realli',
  'realli_want',
  'want_one',
  'one_lol',
  'lol_sent',
  'sent_pictur',
  'pictur_messag',
  'messag_document',
  'document_quest',
  'quest_chicken',
  'chicken_final',
  'final_found',
  'found_girl',
  'girl_happi',
  'happi_rotisseri',
  'rotisseri_chicken',
  'chicken_also',
  'also_kind',
  'kind_comfort',
  'comfort_food',
  'food_like',
  'like_spaghetti',
  'spaghetti_mom',
  'mom_use',
  'use_make',
  'make_one',
  'one_lazi',
  'lazi_day',
  'day_feel',
  'feel_like',
  'like_cook',
  'cook_plan',
  'plan_serv',
  'serv_basic',
  'basic_side',
  'side_dinner',
  'dinner_perfectli',
  'perfectli_fine',
  'fine_mother',
  'mother_came',
  'came_see',
  'see_tina',
  'tina_start',
  'start_tell',
  'tell_melodi',
  'melodi_chicken',
  'chicken_bad',
  'bad_eat',
  'eat_pregnant',
  'pregnant_melodi',
  'melodi_said',
  'said_fine',
  'fine_usual',
  'usual_eat',
  'eat_healthi',
  'healthi_want',
  'want_one',
  'one_thing',
  'thing_crave',
  'crave_mom',
  'mom_went',
  'went_unhealthi',
  'unhealthi_said',
  'said_need',
  'need_eat',
  'eat_someth',
  'someth_els',
  'els_melodi',
  'melodi_said',
  'said_went',
  'went_backyard',
  'backyard_facetim',
  'facetim_famili',
  'famili_state',
  'state_came',
  'came_back',
  'back_mom',
  'mom_thrown',
  'thrown_food',
  'food_order',
  'order_take',
  'take_salad',
  'salad_melodi',
  'melodi_pizza',
  'pizza_everyon',
  'everyon_els',
  'els_melodi',
  'melodi_ask',
  'ask_chicken',
  'chicken_mother',
  'mother_told',
  'told_need',
  'need_start',
  'start_respons',
  'respons_mother',
  'mother_eat',
  'eat_correctli',
  'correctli_babi',
  'babi_melodi',
  'melodi_scream',
  'scream_fuck',
  'fuck_wrong',
  'wrong_alway',
  'alway_bitch',
  'bitch_start',
  'start_cri',
  'cri_call',
  'call_home',
  'home_came',
  'came_back',
  'back_ask',
  'ask_mother',
  'mother_leav',
  'leav_hear',
  'hear_stori',
  'stori_said',
  'said_come',
  'come_back',
  'back_apolog',
  'apolog_treat',
  'treat_melodi',
  'melodi_mom',
  'mom_went',
  'went_im',
  'im_choos',
  'choos_anoth',
  'anoth_woman',
  'woman_think',
  'think_enough',
  'enough_enough',
  'enough_melodi',
  'melodi_reach',
  'reach_limit',
  'limit_apolog',
  'apolog_blow',
  'blow_tina',
  'tina_hous',
  'hous_told',
  'told_okay',
  'okay_ting',
  'ting_happen',
  'happen_tina',
  'tina_okay',
  'okay_went',
  'went_find',
  'find_anoth',
  'anoth_chicken',
  'chicken_store',
  'store_close',
  'close_dad',
  'dad_think',
  'think_im',
  'im_right',
  'right_take',
  'take_melodi',
  'melodi_side',
  'side_brother',
  'brother_think',
  'think_alway',
  'alway_defend',
  'defend_mom',
  'mom_aita',
  'aita_edit',
  'edit_okay',
  'okay_guy',
  'guy_expect',
  'expect_get',
  'get_much',
  'much_attent',
  'attent_woke',
  'woke_mani',
  'mani_notif',
  'notif_im',
  'im_go',
  'go_tri',
  'tri_go',
  'go_mani',
  'mani_wow',
  'wow_thank',
  'thank_guy',
  'guy_support',
  'support_award',
  'award_melodi',
  'melodi_love',
  'love_kind',
  'kind_messag',
  'messag_especi',
  'especi_mama',
  'mama_&',
  '&_soon',
  'soon_mama',
  'mama_get',
  'get_put',
  'put_lol',
  'lol_mom',
  'mom_claim',
  'claim_season',
  'season_&',
  '&_fatgreas',
  'fatgreas_made',
  'made_chicken',
  'chicken_bad',
  'bad_bs',
  'bs_claim',
  'claim_plan',
  'plan_sit',
  'sit_parent',
  'parent_brother',
  'brother_mom',
  'mom_lot',
  'lot_mention',
  'mention_emot',
  'emot_incest',
  'incest_creep',
  'creep_thing',
  'thing_along',
  'along_line',
  'line_need',
  'need_address',
  'address_ill',
  'ill_talk',
  'talk_dad',
  'dad_first',
  'first_famili',
  'famili_meet',
  'meet_lot',
  'lot_ask',
  'ask_would',
  'would_still',
  'still_want',
  'want_mom',
  'mom_around',
  'around_honestli',
  'honestli_mayb',
  'mayb_im',
  'im_weak',
  'weak_mother',
  'mother_howev',
  'howev_learn',
  'learn_chang',
  'chang_respect',
  'respect_famili',
  'famili_go',
  'go_nc',
  'nc_hard',
  'hard_melodi',
  'melodi_even',
  'even_want',
  'want_complet',
  'complet_cut',
  'cut_want',
  'want_chang',
  'chang_well',
  'well_protect',
  'protect_melodi',
  'melodi_cost',
  'cost_mean',
  'mean_cut',
  'cut_mom',
  'mom_ex',
  'ex_break',
  'break_mother',
  'mother_differ',
  'differ_idea',
  'idea_live',
  'live_go',
  'go_tina',
  'tina_plan',
  'plan_alreadi',
  'alreadi_head',
  'head_toward',
  'toward_go',
  'go_separ',
  'separ_way',
  'way_got',
  'got_pregnant',
  'pregnant_tri',
  'tri_make',
  'make_work',
  'work_tina',
  'tina_relationship',
  'relationship_split',
  'split_work',
  'work_great',
  'great_ex',
  'ex_melodi',
  'melodi_get',
  'get_along',
  'along_great',
  'great_tina',
  'tina_happi',
  'happi_work',
  'work_thing',
  'thing_one',
  'one_big',
  'big_blend',
  'blend_famili',
  'famili_ex',
  'ex_melodi',
  'melodi_talk',
  'talk_mother',
  'mother_realiz',
  'realiz_need',
  'need_see',
  'see_therapist',
  'therapist_work',
  'work_childhood',
  'childhood_mom',
  'mom_like',
  'like_mine',
  'mine_process',
  'process_im',
  'im_work',
  'work_best',
  'best_peopl',
  'peopl_ask',
  'ask_cultur',
  'cultur_black',
  'black_american',
  'american_think',
  'think_mom',
  'mom_son',
  'son_thing',
  'thing_cultur',
  'cultur_thing',
  'thing_sure',
  'sure_updat',
  'updat_someon',
  'someon_pleas',
  'pleas_comment',
  'comment_let',
  'let_know',
  'know_ill',
  'ill_updat',
  'updat_speak',
  'speak_dad',
  'dad_&',
  '&_famili',
  'famili_meet',
  'meet_lot',
  'lot_recommend',
  'recommend_justnomil',
  'justnomil_&',
  '&_raisedbynarcissist',
  'raisedbynarcissist_think',
  'think_page',
  'page_name',
  'name_definit',
  'definit_check',
  'check_melodi',
  'melodi_pregnanc',
  'pregnanc_go',
  'go_smoothli',
  'smoothli_part',
  'part_exhaust',
  'exhaust_emot',
  'emot_put',
  'put_also',
  'also_girl',
  'girl_gender',
  ...],
 ['throwaway',
  'account',
  'wife',
  'iren',
  'fit',
  'like',
  'work',
  'proper',
  'exercis',
  'regim',
  'etc',
  'believ',
  'feel',
  'good',
  'look',
  'good',
  'feel',
  'good',
  'work',
  'stop',
  'brother',
  'spent',
  'latter',
  'half',
  'last',
  'year',
  'go',
  'messi',
  'divorc',
  'need',
  'place',
  'stay',
  'though',
  'brother',
  'close',
  'figur',
  'would',
  'stay',
  'us',
  'coupl',
  'week',
  'got',
  'back',
  'feet',
  'typic',
  'gym',
  'rat',
  'alway',
  'strict',
  'diet',
  'alway',
  'work',
  'brag',
  'gain',
  'ive',
  'work',
  'time',
  'littl',
  'obnoxi',
  'alway',
  'mad',
  'work',
  'pace',
  'alway',
  'tri',
  'correct',
  'form',
  'pretti',
  'fit',
  'muscular',
  'guy',
  'like',
  'exercis',
  'push',
  'iren',
  'workout',
  'accord',
  'abl',
  'keep',
  'iren',
  'mostli',
  'shrug',
  'laugh',
  'tell',
  'would',
  'love',
  'workout',
  'iren',
  'work',
  'morn',
  'time',
  'week',
  'run',
  'even',
  'busi',
  'past',
  'week',
  'abl',
  'stick',
  'usual',
  'schedul',
  'think',
  'make',
  'excus',
  'want',
  'embarrass',
  'iren',
  'laugh',
  'two',
  'day',
  'ago',
  'iren',
  'went',
  'earli',
  'morn',
  'run',
  'go',
  'first',
  'thing',
  'heard',
  'enter',
  'hous',
  'reason',
  'keep',
  'iren',
  'sweat',
  'much',
  'found',
  'extrem',
  'comic',
  'kinda',
  'laugh',
  'iren',
  'roll',
  'eye',
  'went',
  'take',
  'shower',
  'thought',
  'convers',
  'would',
  'die',
  'howev',
  'kept',
  'bring',
  'wife',
  'sweat',
  'wife',
  'went',
  'work',
  'told',
  'make',
  'sure',
  'sweat',
  'cloth',
  'call',
  'middl',
  'day',
  'yell',
  'tell',
  'sweati',
  'bitch',
  'said',
  'cours',
  'bitch',
  'comment',
  'aggrav',
  'told',
  'knock',
  'stop',
  'act',
  'like',
  'child',
  'thought',
  'end',
  'kept',
  'go',
  'end',
  'day',
  'tire',
  'comment',
  'iren',
  'seem',
  'rather',
  'unphas',
  'serv',
  'food',
  'made',
  'comment',
  'sweat',
  'food',
  'point',
  'wit',
  'end',
  'told',
  'stop',
  'act',
  'like',
  'sore',
  'slow',
  'refer',
  'run',
  'pace',
  'loser',
  'eat',
  'food',
  'cours',
  'got',
  'angri',
  'said',
  'reason',
  'go',
  'slower',
  'usual',
  'distract',
  'wife',
  'unhygien',
  'sweat',
  'iren',
  'look',
  'bit',
  'offend',
  'told',
  'would',
  'kick',
  'made',
  'anoth',
  'comment',
  'like',
  'super',
  'piss',
  'ever',
  'sinc',
  'jokingli',
  'told',
  'stori',
  'mutual',
  'friend',
  'agre',
  'mayb',
  'harsh',
  'updat',
  'expect',
  'amount',
  'respons',
  'thank',
  'advic',
  'ive',
  'decid',
  'kick',
  'stay',
  'nearbi',
  'hotel',
  'throwaway_account',
  'account_wife',
  'wife_iren',
  'iren_fit',
  'fit_like',
  'like_work',
  'work_proper',
  'proper_exercis',
  'exercis_regim',
  'regim_etc',
  'etc_believ',
  'believ_feel',
  'feel_good',
  'good_look',
  'look_good',
  'good_feel',
  'feel_good',
  'good_work',
  'work_stop',
  'stop_brother',
  'brother_spent',
  'spent_latter',
  'latter_half',
  'half_last',
  'last_year',
  'year_go',
  'go_messi',
  'messi_divorc',
  'divorc_need',
  'need_place',
  'place_stay',
  'stay_though',
  'though_brother',
  'brother_close',
  'close_figur',
  'figur_would',
  'would_stay',
  'stay_us',
  'us_coupl',
  'coupl_week',
  'week_got',
  'got_back',
  'back_feet',
  'feet_typic',
  'typic_gym',
  'gym_rat',
  'rat_alway',
  'alway_strict',
  'strict_diet',
  'diet_alway',
  'alway_work',
  'work_brag',
  'brag_gain',
  'gain_ive',
  'ive_work',
  'work_time',
  'time_littl',
  'littl_obnoxi',
  'obnoxi_alway',
  'alway_mad',
  'mad_work',
  'work_pace',
  'pace_alway',
  'alway_tri',
  'tri_correct',
  'correct_form',
  'form_pretti',
  'pretti_fit',
  'fit_muscular',
  'muscular_guy',
  'guy_like',
  'like_exercis',
  'exercis_push',
  'push_iren',
  'iren_workout',
  'workout_accord',
  'accord_abl',
  'abl_keep',
  'keep_iren',
  'iren_mostli',
  'mostli_shrug',
  'shrug_laugh',
  'laugh_tell',
  'tell_would',
  'would_love',
  'love_workout',
  'workout_iren',
  'iren_work',
  'work_morn',
  'morn_time',
  'time_week',
  'week_run',
  'run_even',
  'even_busi',
  'busi_past',
  'past_week',
  'week_abl',
  'abl_stick',
  'stick_usual',
  'usual_schedul',
  'schedul_think',
  'think_make',
  'make_excus',
  'excus_want',
  'want_embarrass',
  'embarrass_iren',
  'iren_laugh',
  'laugh_two',
  'two_day',
  'day_ago',
  'ago_iren',
  'iren_went',
  'went_earli',
  'earli_morn',
  'morn_run',
  'run_go',
  'go_first',
  'first_thing',
  'thing_heard',
  'heard_enter',
  'enter_hous',
  'hous_reason',
  'reason_keep',
  'keep_iren',
  'iren_sweat',
  'sweat_much',
  'much_found',
  'found_extrem',
  'extrem_comic',
  'comic_kinda',
  'kinda_laugh',
  'laugh_iren',
  'iren_roll',
  'roll_eye',
  'eye_went',
  'went_take',
  'take_shower',
  'shower_thought',
  'thought_convers',
  'convers_would',
  'would_die',
  'die_howev',
  'howev_kept',
  'kept_bring',
  'bring_wife',
  'wife_sweat',
  'sweat_wife',
  'wife_went',
  'went_work',
  'work_told',
  'told_make',
  'make_sure',
  'sure_sweat',
  'sweat_cloth',
  'cloth_call',
  'call_middl',
  'middl_day',
  'day_yell',
  'yell_tell',
  'tell_sweati',
  'sweati_bitch',
  'bitch_said',
  'said_cours',
  'cours_bitch',
  'bitch_comment',
  'comment_aggrav',
  'aggrav_told',
  'told_knock',
  'knock_stop',
  'stop_act',
  'act_like',
  'like_child',
  'child_thought',
  'thought_end',
  'end_kept',
  'kept_go',
  'go_end',
  'end_day',
  'day_tire',
  'tire_comment',
  'comment_iren',
  'iren_seem',
  'seem_rather',
  'rather_unphas',
  'unphas_serv',
  'serv_food',
  'food_made',
  'made_comment',
  'comment_sweat',
  'sweat_food',
  'food_point',
  'point_wit',
  'wit_end',
  'end_told',
  'told_stop',
  'stop_act',
  'act_like',
  'like_sore',
  'sore_slow',
  'slow_refer',
  'refer_run',
  'run_pace',
  'pace_loser',
  'loser_eat',
  'eat_food',
  'food_cours',
  'cours_got',
  'got_angri',
  'angri_said',
  'said_reason',
  'reason_go',
  'go_slower',
  'slower_usual',
  'usual_distract',
  'distract_wife',
  'wife_unhygien',
  'unhygien_sweat',
  'sweat_iren',
  'iren_look',
  'look_bit',
  'bit_offend',
  'offend_told',
  'told_would',
  'would_kick',
  'kick_made',
  'made_anoth',
  'anoth_comment',
  'comment_like',
  'like_super',
  'super_piss',
  'piss_ever',
  'ever_sinc',
  'sinc_jokingli',
  'jokingli_told',
  'told_stori',
  'stori_mutual',
  'mutual_friend',
  'friend_agre',
  'agre_mayb',
  'mayb_harsh',
  'harsh_updat',
  'updat_expect',
  'expect_amount',
  'amount_respons',
  'respons_thank',
  'thank_advic',
  'advic_ive',
  'ive_decid',
  'decid_kick',
  'kick_stay',
  'stay_nearbi',
  'nearbi_hotel',
  'throwaway_account_wife',
  'account_wife_iren',
  'wife_iren_fit',
  'iren_fit_like',
  'fit_like_work',
  'like_work_proper',
  'work_proper_exercis',
  'proper_exercis_regim',
  'exercis_regim_etc',
  'regim_etc_believ',
  'etc_believ_feel',
  'believ_feel_good',
  'feel_good_look',
  'good_look_good',
  'look_good_feel',
  'good_feel_good',
  'feel_good_work',
  'good_work_stop',
  'work_stop_brother',
  'stop_brother_spent',
  'brother_spent_latter',
  'spent_latter_half',
  'latter_half_last',
  'half_last_year',
  'last_year_go',
  'year_go_messi',
  'go_messi_divorc',
  'messi_divorc_need',
  'divorc_need_place',
  'need_place_stay',
  'place_stay_though',
  'stay_though_brother',
  'though_brother_close',
  'brother_close_figur',
  'close_figur_would',
  'figur_would_stay',
  'would_stay_us',
  'stay_us_coupl',
  'us_coupl_week',
  'coupl_week_got',
  'week_got_back',
  'got_back_feet',
  'back_feet_typic',
  'feet_typic_gym',
  'typic_gym_rat',
  'gym_rat_alway',
  'rat_alway_strict',
  'alway_strict_diet',
  'strict_diet_alway',
  'diet_alway_work',
  'alway_work_brag',
  'work_brag_gain',
  'brag_gain_ive',
  'gain_ive_work',
  'ive_work_time',
  'work_time_littl',
  'time_littl_obnoxi',
  'littl_obnoxi_alway',
  'obnoxi_alway_mad',
  'alway_mad_work',
  'mad_work_pace',
  'work_pace_alway',
  'pace_alway_tri',
  'alway_tri_correct',
  'tri_correct_form',
  'correct_form_pretti',
  'form_pretti_fit',
  'pretti_fit_muscular',
  'fit_muscular_guy',
  'muscular_guy_like',
  'guy_like_exercis',
  'like_exercis_push',
  'exercis_push_iren',
  'push_iren_workout',
  'iren_workout_accord',
  'workout_accord_abl',
  'accord_abl_keep',
  'abl_keep_iren',
  'keep_iren_mostli',
  'iren_mostli_shrug',
  'mostli_shrug_laugh',
  'shrug_laugh_tell',
  'laugh_tell_would',
  'tell_would_love',
  'would_love_workout',
  'love_workout_iren',
  'workout_iren_work',
  'iren_work_morn',
  'work_morn_time',
  'morn_time_week',
  'time_week_run',
  'week_run_even',
  'run_even_busi',
  'even_busi_past',
  'busi_past_week',
  'past_week_abl',
  'week_abl_stick',
  'abl_stick_usual',
  'stick_usual_schedul',
  'usual_schedul_think',
  'schedul_think_make',
  'think_make_excus',
  'make_excus_want',
  'excus_want_embarrass',
  'want_embarrass_iren',
  'embarrass_iren_laugh',
  'iren_laugh_two',
  'laugh_two_day',
  'two_day_ago',
  'day_ago_iren',
  'ago_iren_went',
  'iren_went_earli',
  'went_earli_morn',
  'earli_morn_run',
  'morn_run_go',
  'run_go_first',
  'go_first_thing',
  'first_thing_heard',
  'thing_heard_enter',
  'heard_enter_hous',
  'enter_hous_reason',
  'hous_reason_keep',
  'reason_keep_iren',
  'keep_iren_sweat',
  'iren_sweat_much',
  'sweat_much_found',
  'much_found_extrem',
  'found_extrem_comic',
  'extrem_comic_kinda',
  'comic_kinda_laugh',
  'kinda_laugh_iren',
  'laugh_iren_roll',
  'iren_roll_eye',
  'roll_eye_went',
  'eye_went_take',
  'went_take_shower',
  'take_shower_thought',
  'shower_thought_convers',
  'thought_convers_would',
  'convers_would_die',
  'would_die_howev',
  'die_howev_kept',
  'howev_kept_bring',
  'kept_bring_wife',
  'bring_wife_sweat',
  'wife_sweat_wife',
  'sweat_wife_went',
  'wife_went_work',
  'went_work_told',
  'work_told_make',
  'told_make_sure',
  'make_sure_sweat',
  'sure_sweat_cloth',
  'sweat_cloth_call',
  'cloth_call_middl',
  'call_middl_day',
  'middl_day_yell',
  'day_yell_tell',
  'yell_tell_sweati',
  'tell_sweati_bitch',
  'sweati_bitch_said',
  'bitch_said_cours',
  'said_cours_bitch',
  'cours_bitch_comment',
  'bitch_comment_aggrav',
  'comment_aggrav_told',
  'aggrav_told_knock',
  'told_knock_stop',
  'knock_stop_act',
  'stop_act_like',
  'act_like_child',
  'like_child_thought',
  'child_thought_end',
  'thought_end_kept',
  'end_kept_go',
  'kept_go_end',
  'go_end_day',
  'end_day_tire',
  'day_tire_comment',
  'tire_comment_iren',
  'comment_iren_seem',
  'iren_seem_rather',
  'seem_rather_unphas',
  'rather_unphas_serv',
  'unphas_serv_food',
  'serv_food_made',
  'food_made_comment',
  'made_comment_sweat',
  'comment_sweat_food',
  'sweat_food_point',
  'food_point_wit',
  'point_wit_end',
  'wit_end_told',
  'end_told_stop',
  'told_stop_act',
  'stop_act_like',
  'act_like_sore',
  'like_sore_slow',
  'sore_slow_refer',
  'slow_refer_run',
  'refer_run_pace',
  'run_pace_loser',
  'pace_loser_eat',
  'loser_eat_food',
  'eat_food_cours',
  'food_cours_got',
  'cours_got_angri',
  'got_angri_said',
  'angri_said_reason',
  'said_reason_go',
  'reason_go_slower',
  'go_slower_usual',
  'slower_usual_distract',
  'usual_distract_wife',
  'distract_wife_unhygien',
  'wife_unhygien_sweat',
  'unhygien_sweat_iren',
  'sweat_iren_look',
  'iren_look_bit',
  'look_bit_offend',
  'bit_offend_told',
  'offend_told_would',
  'told_would_kick',
  'would_kick_made',
  'kick_made_anoth',
  'made_anoth_comment',
  'anoth_comment_like',
  'comment_like_super',
  'like_super_piss',
  'super_piss_ever',
  'piss_ever_sinc',
  'ever_sinc_jokingli',
  'sinc_jokingli_told',
  'jokingli_told_stori',
  'told_stori_mutual',
  'stori_mutual_friend',
  'mutual_friend_agre',
  'friend_agre_mayb',
  'agre_mayb_harsh',
  'mayb_harsh_updat',
  'harsh_updat_expect',
  'updat_expect_amount',
  'expect_amount_respons',
  'amount_respons_thank',
  'respons_thank_advic',
  'thank_advic_ive',
  'advic_ive_decid',
  'ive_decid_kick',
  'decid_kick_stay',
  'kick_stay_nearbi',
  'stay_nearbi_hotel'],
 ['bit',
  'complic',
  'bear',
  'husband',
  'year',
  'year',
  'old',
  'daughter',
  'ex',
  'wife',
  'nora',
  'reason',
  'divorc',
  'financi',
  'told',
  'initi',
  'got',
  'diagnos',
  'cancer',
  'cancer',
  'come',
  'back',
  'feel',
  'sorri',
  'decent',
  'woman',
  'overal',
  'due',
  'treatment',
  'schedul',
  'nora',
  'get',
  'visit',
  'stepdaught',
  'husband',
  'drive',
  'stepdaught',
  'see',
  'mom',
  'day',
  'week',
  'yesterday',
  'came',
  'home',
  'say',
  'nora',
  'home',
  'stepdaught',
  'leav',
  'wait',
  'hour',
  'went',
  'bedroom',
  'stay',
  'sometim',
  'went',
  'visit',
  'friend',
  'clean',
  'bedroom',
  'found',
  'gold',
  'bracelet',
  'look',
  'familiar',
  'realiz',
  'belong',
  'nora',
  'id',
  'seen',
  'wear',
  'confus',
  'wait',
  'til',
  'got',
  'home',
  'ask',
  'reaction',
  'good',
  'lash',
  'took',
  'hand',
  'say',
  'touch',
  'person',
  'stuff',
  'said',
  'stuff',
  'nora',
  'ask',
  'took',
  'bracelet',
  'behind',
  'back',
  'said',
  'nora',
  'gave',
  'could',
  'give',
  'daughter',
  'case',
  'someth',
  'happen',
  'nora',
  'know',
  'believ',
  'told',
  'would',
  'call',
  'nora',
  'ask',
  'start',
  'yell',
  'stay',
  'famili',
  'busi',
  'start',
  'argu',
  'kept',
  'demand',
  'tell',
  'got',
  'bracelet',
  'refus',
  'say',
  'anyth',
  'first',
  'admit',
  'go',
  'nora',
  'room',
  'take',
  'told',
  'thu',
  'okay',
  'said',
  'right',
  'spent',
  'money',
  'treatment',
  'never',
  'got',
  'money',
  'back',
  'shock',
  'statement',
  'marri',
  'back',
  'expect',
  'repaid',
  'got',
  'mad',
  'told',
  'day',
  'return',
  'bracelet',
  'ill',
  'tell',
  'nora',
  'let',
  'involv',
  'author',
  'caus',
  'bracelet',
  'look',
  'heavi',
  'pricey',
  'beg',
  'stay',
  'refus',
  'said',
  'malici',
  'side',
  'threaten',
  'refus',
  'negoti',
  'anyth',
  'im',
  'respons',
  'word',
  'nora',
  'decent',
  'woman',
  'struggl',
  'feel',
  'like',
  'know',
  'cant',
  'trust',
  'daughter',
  'father',
  'home',
  'said',
  'go',
  'ruin',
  'relationship',
  'badli',
  'said',
  'im',
  'still',
  'stand',
  'word',
  'aita',
  'bit_complic',
  'complic_bear',
  'bear_husband',
  'husband_year',
  'year_year',
  'year_old',
  'old_daughter',
  'daughter_ex',
  'ex_wife',
  'wife_nora',
  'nora_reason',
  'reason_divorc',
  'divorc_financi',
  'financi_told',
  'told_initi',
  'initi_got',
  'got_diagnos',
  'diagnos_cancer',
  'cancer_cancer',
  'cancer_come',
  'come_back',
  'back_feel',
  'feel_sorri',
  'sorri_decent',
  'decent_woman',
  'woman_overal',
  'overal_due',
  'due_treatment',
  'treatment_schedul',
  'schedul_nora',
  'nora_get',
  'get_visit',
  'visit_stepdaught',
  'stepdaught_husband',
  'husband_drive',
  'drive_stepdaught',
  'stepdaught_see',
  'see_mom',
  'mom_day',
  'day_week',
  'week_yesterday',
  'yesterday_came',
  'came_home',
  'home_say',
  'say_nora',
  'nora_home',
  'home_stepdaught',
  'stepdaught_leav',
  'leav_wait',
  'wait_hour',
  'hour_went',
  'went_bedroom',
  'bedroom_stay',
  'stay_sometim',
  'sometim_went',
  'went_visit',
  'visit_friend',
  'friend_clean',
  'clean_bedroom',
  'bedroom_found',
  'found_gold',
  'gold_bracelet',
  'bracelet_look',
  'look_familiar',
  'familiar_realiz',
  'realiz_belong',
  'belong_nora',
  'nora_id',
  'id_seen',
  'seen_wear',
  'wear_confus',
  'confus_wait',
  'wait_til',
  'til_got',
  'got_home',
  'home_ask',
  'ask_reaction',
  'reaction_good',
  'good_lash',
  'lash_took',
  'took_hand',
  'hand_say',
  'say_touch',
  'touch_person',
  'person_stuff',
  'stuff_said',
  'said_stuff',
  'stuff_nora',
  'nora_ask',
  'ask_took',
  'took_bracelet',
  'bracelet_behind',
  'behind_back',
  'back_said',
  'said_nora',
  'nora_gave',
  'gave_could',
  'could_give',
  'give_daughter',
  'daughter_case',
  'case_someth',
  'someth_happen',
  'happen_nora',
  'nora_know',
  'know_believ',
  'believ_told',
  'told_would',
  'would_call',
  'call_nora',
  'nora_ask',
  'ask_start',
  'start_yell',
  'yell_stay',
  'stay_famili',
  'famili_busi',
  'busi_start',
  'start_argu',
  'argu_kept',
  'kept_demand',
  'demand_tell',
  'tell_got',
  'got_bracelet',
  'bracelet_refus',
  'refus_say',
  'say_anyth',
  'anyth_first',
  'first_admit',
  'admit_go',
  'go_nora',
  'nora_room',
  'room_take',
  'take_told',
  'told_thu',
  'thu_okay',
  'okay_said',
  'said_right',
  'right_spent',
  'spent_money',
  'money_treatment',
  'treatment_never',
  'never_got',
  'got_money',
  'money_back',
  'back_shock',
  'shock_statement',
  'statement_marri',
  'marri_back',
  'back_expect',
  'expect_repaid',
  'repaid_got',
  'got_mad',
  'mad_told',
  'told_day',
  'day_return',
  'return_bracelet',
  'bracelet_ill',
  'ill_tell',
  'tell_nora',
  'nora_let',
  'let_involv',
  'involv_author',
  'author_caus',
  'caus_bracelet',
  'bracelet_look',
  'look_heavi',
  'heavi_pricey',
  'pricey_beg',
  'beg_stay',
  'stay_refus',
  'refus_said',
  'said_malici',
  'malici_side',
  'side_threaten',
  'threaten_refus',
  'refus_negoti',
  'negoti_anyth',
  'anyth_im',
  'im_respons',
  'respons_word',
  'word_nora',
  'nora_decent',
  'decent_woman',
  'woman_struggl',
  'struggl_feel',
  'feel_like',
  'like_know',
  'know_cant',
  'cant_trust',
  'trust_daughter',
  'daughter_father',
  'father_home',
  'home_said',
  'said_go',
  'go_ruin',
  'ruin_relationship',
  'relationship_badli',
  'badli_said',
  'said_im',
  'im_still',
  'still_stand',
  'stand_word',
  'word_aita',
  'bit_complic_bear',
  'complic_bear_husband',
  'bear_husband_year',
  'husband_year_year',
  'year_year_old',
  'year_old_daughter',
  'old_daughter_ex',
  'daughter_ex_wife',
  'ex_wife_nora',
  'wife_nora_reason',
  'nora_reason_divorc',
  'reason_divorc_financi',
  'divorc_financi_told',
  'financi_told_initi',
  'told_initi_got',
  'initi_got_diagnos',
  'got_diagnos_cancer',
  'diagnos_cancer_cancer',
  'cancer_cancer_come',
  'cancer_come_back',
  'come_back_feel',
  'back_feel_sorri',
  'feel_sorri_decent',
  'sorri_decent_woman',
  'decent_woman_overal',
  'woman_overal_due',
  'overal_due_treatment',
  'due_treatment_schedul',
  'treatment_schedul_nora',
  'schedul_nora_get',
  'nora_get_visit',
  'get_visit_stepdaught',
  'visit_stepdaught_husband',
  'stepdaught_husband_drive',
  'husband_drive_stepdaught',
  'drive_stepdaught_see',
  'stepdaught_see_mom',
  'see_mom_day',
  'mom_day_week',
  'day_week_yesterday',
  'week_yesterday_came',
  'yesterday_came_home',
  'came_home_say',
  'home_say_nora',
  'say_nora_home',
  'nora_home_stepdaught',
  'home_stepdaught_leav',
  'stepdaught_leav_wait',
  'leav_wait_hour',
  'wait_hour_went',
  'hour_went_bedroom',
  'went_bedroom_stay',
  'bedroom_stay_sometim',
  'stay_sometim_went',
  'sometim_went_visit',
  'went_visit_friend',
  'visit_friend_clean',
  'friend_clean_bedroom',
  'clean_bedroom_found',
  'bedroom_found_gold',
  'found_gold_bracelet',
  'gold_bracelet_look',
  'bracelet_look_familiar',
  'look_familiar_realiz',
  'familiar_realiz_belong',
  'realiz_belong_nora',
  'belong_nora_id',
  'nora_id_seen',
  'id_seen_wear',
  'seen_wear_confus',
  'wear_confus_wait',
  'confus_wait_til',
  'wait_til_got',
  'til_got_home',
  'got_home_ask',
  'home_ask_reaction',
  'ask_reaction_good',
  'reaction_good_lash',
  'good_lash_took',
  'lash_took_hand',
  'took_hand_say',
  'hand_say_touch',
  'say_touch_person',
  'touch_person_stuff',
  'person_stuff_said',
  'stuff_said_stuff',
  'said_stuff_nora',
  'stuff_nora_ask',
  'nora_ask_took',
  'ask_took_bracelet',
  'took_bracelet_behind',
  'bracelet_behind_back',
  'behind_back_said',
  'back_said_nora',
  'said_nora_gave',
  'nora_gave_could',
  'gave_could_give',
  'could_give_daughter',
  'give_daughter_case',
  'daughter_case_someth',
  'case_someth_happen',
  'someth_happen_nora',
  'happen_nora_know',
  'nora_know_believ',
  'know_believ_told',
  'believ_told_would',
  'told_would_call',
  'would_call_nora',
  'call_nora_ask',
  'nora_ask_start',
  'ask_start_yell',
  'start_yell_stay',
  'yell_stay_famili',
  'stay_famili_busi',
  'famili_busi_start',
  'busi_start_argu',
  'start_argu_kept',
  'argu_kept_demand',
  'kept_demand_tell',
  'demand_tell_got',
  'tell_got_bracelet',
  'got_bracelet_refus',
  'bracelet_refus_say',
  'refus_say_anyth',
  'say_anyth_first',
  'anyth_first_admit',
  'first_admit_go',
  'admit_go_nora',
  'go_nora_room',
  'nora_room_take',
  'room_take_told',
  'take_told_thu',
  'told_thu_okay',
  'thu_okay_said',
  'okay_said_right',
  'said_right_spent',
  'right_spent_money',
  'spent_money_treatment',
  'money_treatment_never',
  'treatment_never_got',
  'never_got_money',
  'got_money_back',
  'money_back_shock',
  'back_shock_statement',
  'shock_statement_marri',
  'statement_marri_back',
  'marri_back_expect',
  'back_expect_repaid',
  'expect_repaid_got',
  'repaid_got_mad',
  'got_mad_told',
  'mad_told_day',
  'told_day_return',
  'day_return_bracelet',
  'return_bracelet_ill',
  'bracelet_ill_tell',
  'ill_tell_nora',
  'tell_nora_let',
  'nora_let_involv',
  'let_involv_author',
  'involv_author_caus',
  'author_caus_bracelet',
  'caus_bracelet_look',
  'bracelet_look_heavi',
  'look_heavi_pricey',
  'heavi_pricey_beg',
  'pricey_beg_stay',
  'beg_stay_refus',
  'stay_refus_said',
  'refus_said_malici',
  'said_malici_side',
  'malici_side_threaten',
  'side_threaten_refus',
  'threaten_refus_negoti',
  'refus_negoti_anyth',
  'negoti_anyth_im',
  'anyth_im_respons',
  'im_respons_word',
  'respons_word_nora',
  'word_nora_decent',
  'nora_decent_woman',
  'decent_woman_struggl',
  'woman_struggl_feel',
  'struggl_feel_like',
  'feel_like_know',
  'like_know_cant',
  'know_cant_trust',
  'cant_trust_daughter',
  'trust_daughter_father',
  'daughter_father_home',
  'father_home_said',
  'home_said_go',
  'said_go_ruin',
  'go_ruin_relationship',
  'ruin_relationship_badli',
  'relationship_badli_said',
  'badli_said_im',
  'said_im_still',
  'im_still_stand',
  'still_stand_word',
  'stand_word_aita'],
 ['parent',
  'two',
  'girl',
  'sister',
  'alway',
  'felt',
  'like',
  'parent',
  'saw',
  'babysitt',
  'third',
  'adult',
  'hous',
  'expect',
  'year',
  'old',
  'kidteenag',
  'wherea',
  'sister',
  'babi',
  'spoil',
  'rotten',
  'ador',
  'never',
  'want',
  'anyth',
  'everyth',
  'make',
  'happi',
  'expect',
  'help',
  'take',
  'care',
  'sister',
  'long',
  'rememb',
  'special',
  'need',
  'never',
  'sick',
  'even',
  'preemi',
  'either',
  'dynam',
  'set',
  'rememb',
  'would',
  'come',
  'home',
  'school',
  'mom',
  'would',
  'help',
  'feed',
  'sister',
  'would',
  'watch',
  'hous',
  'would',
  'told',
  'need',
  'play',
  'sister',
  'upset',
  'shed',
  'miss',
  'lot',
  'parent',
  'would',
  'insist',
  'dedic',
  'time',
  'home',
  'wed',
  'go',
  'famili',
  'shed',
  'want',
  'someth',
  'theyd',
  'get',
  'would',
  'told',
  'act',
  'age',
  'want',
  'someth',
  'would',
  'get',
  'hang',
  'friend',
  'whenev',
  'want',
  'would',
  'realli',
  'amaz',
  'birthday',
  'parti',
  'sleepov',
  'never',
  'allow',
  'also',
  'never',
  'got',
  'attend',
  'sleepov',
  'friend',
  'hous',
  'time',
  'parent',
  'would',
  'take',
  'realli',
  'amaz',
  'stuff',
  'left',
  'behind',
  'time',
  'sister',
  'start',
  'get',
  'annoy',
  'pull',
  'back',
  'around',
  'kept',
  'im',
  'moodi',
  'around',
  'engag',
  'famili',
  'take',
  'punish',
  'rather',
  'chore',
  'sinc',
  'none',
  'assign',
  'parent',
  'hate',
  'littl',
  'hous',
  'keeper',
  'want',
  'sister',
  'told',
  'im',
  'brat',
  'ungrat',
  'help',
  'parent',
  'amaz',
  'time',
  'gotten',
  'wors',
  'heard',
  'make',
  'plan',
  'leav',
  'friend',
  'coupl',
  'month',
  'piss',
  'go',
  'leav',
  'famili',
  'behind',
  'told',
  'famili',
  'anyth',
  'talk',
  'mom',
  'dad',
  'save',
  'us',
  'go',
  'colleg',
  'wan',
  'na',
  'run',
  'away',
  'someth',
  'broke',
  'insid',
  'said',
  'told',
  'colleg',
  'fund',
  'wait',
  'like',
  'get',
  'anyth',
  'want',
  'im',
  'told',
  'act',
  'age',
  'want',
  'anyth',
  'told',
  'expect',
  'maid',
  'get',
  'noth',
  'get',
  'everyth',
  'told',
  'much',
  'older',
  'everyon',
  'expect',
  'adult',
  'ask',
  'shed',
  'feel',
  'suppos',
  'juggl',
  'younger',
  'sibl',
  'take',
  'care',
  'bulk',
  'household',
  'chore',
  'schoolwork',
  'get',
  'time',
  'friend',
  'reason',
  'shit',
  'work',
  'leav',
  'exhaust',
  'alreadi',
  'much',
  'told',
  'life',
  'make',
  'want',
  'stay',
  'parent',
  'cut',
  'short',
  'upset',
  'call',
  'asshol',
  'mean',
  'sister',
  'said',
  'asshol',
  'dump',
  'shoulder',
  'aita',
  'parent_two',
  'two_girl',
  'girl_sister',
  'sister_alway',
  'alway_felt',
  'felt_like',
  'like_parent',
  'parent_saw',
  'saw_babysitt',
  'babysitt_third',
  'third_adult',
  'adult_hous',
  'hous_expect',
  'expect_year',
  'year_old',
  'old_kidteenag',
  'kidteenag_wherea',
  'wherea_sister',
  'sister_babi',
  'babi_spoil',
  'spoil_rotten',
  'rotten_ador',
  'ador_never',
  'never_want',
  'want_anyth',
  'anyth_everyth',
  'everyth_make',
  'make_happi',
  'happi_expect',
  'expect_help',
  'help_take',
  'take_care',
  'care_sister',
  'sister_long',
  'long_rememb',
  'rememb_special',
  'special_need',
  'need_never',
  'never_sick',
  'sick_even',
  'even_preemi',
  'preemi_either',
  'either_dynam',
  'dynam_set',
  'set_rememb',
  'rememb_would',
  'would_come',
  'come_home',
  'home_school',
  'school_mom',
  'mom_would',
  'would_help',
  'help_feed',
  'feed_sister',
  'sister_would',
  'would_watch',
  'watch_hous',
  'hous_would',
  'would_told',
  'told_need',
  'need_play',
  'play_sister',
  'sister_upset',
  'upset_shed',
  'shed_miss',
  'miss_lot',
  'lot_parent',
  'parent_would',
  'would_insist',
  'insist_dedic',
  'dedic_time',
  'time_home',
  'home_wed',
  'wed_go',
  'go_famili',
  'famili_shed',
  'shed_want',
  'want_someth',
  'someth_theyd',
  'theyd_get',
  'get_would',
  'would_told',
  'told_act',
  'act_age',
  'age_want',
  'want_someth',
  'someth_would',
  'would_get',
  'get_hang',
  'hang_friend',
  'friend_whenev',
  'whenev_want',
  'want_would',
  'would_realli',
  'realli_amaz',
  'amaz_birthday',
  'birthday_parti',
  'parti_sleepov',
  'sleepov_never',
  'never_allow',
  'allow_also',
  'also_never',
  'never_got',
  'got_attend',
  'attend_sleepov',
  'sleepov_friend',
  'friend_hous',
  'hous_time',
  'time_parent',
  'parent_would',
  'would_take',
  'take_realli',
  'realli_amaz',
  'amaz_stuff',
  'stuff_left',
  'left_behind',
  'behind_time',
  'time_sister',
  'sister_start',
  'start_get',
  'get_annoy',
  'annoy_pull',
  'pull_back',
  'back_around',
  'around_kept',
  'kept_im',
  'im_moodi',
  'moodi_around',
  'around_engag',
  'engag_famili',
  'famili_take',
  'take_punish',
  'punish_rather',
  'rather_chore',
  'chore_sinc',
  'sinc_none',
  'none_assign',
  'assign_parent',
  'parent_hate',
  'hate_littl',
  'littl_hous',
  'hous_keeper',
  'keeper_want',
  'want_sister',
  'sister_told',
  'told_im',
  'im_brat',
  'brat_ungrat',
  'ungrat_help',
  'help_parent',
  'parent_amaz',
  'amaz_time',
  'time_gotten',
  'gotten_wors',
  'wors_heard',
  'heard_make',
  'make_plan',
  'plan_leav',
  'leav_friend',
  'friend_coupl',
  'coupl_month',
  'month_piss',
  'piss_go',
  'go_leav',
  'leav_famili',
  'famili_behind',
  'behind_told',
  'told_famili',
  'famili_anyth',
  'anyth_talk',
  'talk_mom',
  'mom_dad',
  'dad_save',
  'save_us',
  'us_go',
  'go_colleg',
  'colleg_wan',
  'wan_na',
  'na_run',
  'run_away',
  'away_someth',
  'someth_broke',
  'broke_insid',
  'insid_said',
  'said_told',
  'told_colleg',
  'colleg_fund',
  'fund_wait',
  'wait_like',
  'like_get',
  'get_anyth',
  'anyth_want',
  'want_im',
  'im_told',
  'told_act',
  'act_age',
  'age_want',
  'want_anyth',
  'anyth_told',
  'told_expect',
  'expect_maid',
  'maid_get',
  'get_noth',
  'noth_get',
  'get_everyth',
  'everyth_told',
  'told_much',
  'much_older',
  'older_everyon',
  'everyon_expect',
  'expect_adult',
  'adult_ask',
  'ask_shed',
  'shed_feel',
  'feel_suppos',
  'suppos_juggl',
  'juggl_younger',
  'younger_sibl',
  'sibl_take',
  'take_care',
  'care_bulk',
  'bulk_household',
  'household_chore',
  'chore_schoolwork',
  'schoolwork_get',
  'get_time',
  'time_friend',
  'friend_reason',
  'reason_shit',
  'shit_work',
  'work_leav',
  'leav_exhaust',
  'exhaust_alreadi',
  'alreadi_much',
  'much_told',
  'told_life',
  'life_make',
  'make_want',
  'want_stay',
  'stay_parent',
  'parent_cut',
  'cut_short',
  'short_upset',
  'upset_call',
  'call_asshol',
  'asshol_mean',
  'mean_sister',
  'sister_said',
  'said_asshol',
  'asshol_dump',
  'dump_shoulder',
  'shoulder_aita',
  'parent_two_girl',
  'two_girl_sister',
  'girl_sister_alway',
  'sister_alway_felt',
  'alway_felt_like',
  'felt_like_parent',
  'like_parent_saw',
  'parent_saw_babysitt',
  'saw_babysitt_third',
  'babysitt_third_adult',
  'third_adult_hous',
  'adult_hous_expect',
  'hous_expect_year',
  'expect_year_old',
  'year_old_kidteenag',
  'old_kidteenag_wherea',
  'kidteenag_wherea_sister',
  'wherea_sister_babi',
  'sister_babi_spoil',
  'babi_spoil_rotten',
  'spoil_rotten_ador',
  'rotten_ador_never',
  'ador_never_want',
  'never_want_anyth',
  'want_anyth_everyth',
  'anyth_everyth_make',
  'everyth_make_happi',
  'make_happi_expect',
  'happi_expect_help',
  'expect_help_take',
  'help_take_care',
  'take_care_sister',
  'care_sister_long',
  'sister_long_rememb',
  'long_rememb_special',
  'rememb_special_need',
  'special_need_never',
  'need_never_sick',
  'never_sick_even',
  'sick_even_preemi',
  'even_preemi_either',
  'preemi_either_dynam',
  'either_dynam_set',
  'dynam_set_rememb',
  'set_rememb_would',
  'rememb_would_come',
  'would_come_home',
  'come_home_school',
  'home_school_mom',
  'school_mom_would',
  'mom_would_help',
  'would_help_feed',
  'help_feed_sister',
  'feed_sister_would',
  'sister_would_watch',
  'would_watch_hous',
  'watch_hous_would',
  'hous_would_told',
  'would_told_need',
  'told_need_play',
  'need_play_sister',
  'play_sister_upset',
  'sister_upset_shed',
  'upset_shed_miss',
  'shed_miss_lot',
  'miss_lot_parent',
  'lot_parent_would',
  'parent_would_insist',
  'would_insist_dedic',
  'insist_dedic_time',
  'dedic_time_home',
  'time_home_wed',
  'home_wed_go',
  'wed_go_famili',
  'go_famili_shed',
  'famili_shed_want',
  'shed_want_someth',
  'want_someth_theyd',
  'someth_theyd_get',
  'theyd_get_would',
  'get_would_told',
  'would_told_act',
  'told_act_age',
  'act_age_want',
  'age_want_someth',
  'want_someth_would',
  'someth_would_get',
  'would_get_hang',
  'get_hang_friend',
  'hang_friend_whenev',
  'friend_whenev_want',
  'whenev_want_would',
  'want_would_realli',
  'would_realli_amaz',
  'realli_amaz_birthday',
  'amaz_birthday_parti',
  'birthday_parti_sleepov',
  'parti_sleepov_never',
  'sleepov_never_allow',
  'never_allow_also',
  'allow_also_never',
  'also_never_got',
  'never_got_attend',
  'got_attend_sleepov',
  'attend_sleepov_friend',
  'sleepov_friend_hous',
  'friend_hous_time',
  'hous_time_parent',
  'time_parent_would',
  'parent_would_take',
  'would_take_realli',
  'take_realli_amaz',
  'realli_amaz_stuff',
  'amaz_stuff_left',
  'stuff_left_behind',
  'left_behind_time',
  'behind_time_sister',
  'time_sister_start',
  'sister_start_get',
  'start_get_annoy',
  'get_annoy_pull',
  'annoy_pull_back',
  'pull_back_around',
  'back_around_kept',
  'around_kept_im',
  'kept_im_moodi',
  'im_moodi_around',
  'moodi_around_engag',
  'around_engag_famili',
  'engag_famili_take',
  'famili_take_punish',
  'take_punish_rather',
  'punish_rather_chore',
  'rather_chore_sinc',
  'chore_sinc_none',
  'sinc_none_assign',
  'none_assign_parent',
  'assign_parent_hate',
  'parent_hate_littl',
  'hate_littl_hous',
  'littl_hous_keeper',
  'hous_keeper_want',
  'keeper_want_sister',
  'want_sister_told',
  'sister_told_im',
  'told_im_brat',
  'im_brat_ungrat',
  'brat_ungrat_help',
  'ungrat_help_parent',
  'help_parent_amaz',
  'parent_amaz_time',
  'amaz_time_gotten',
  'time_gotten_wors',
  'gotten_wors_heard',
  'wors_heard_make',
  'heard_make_plan',
  'make_plan_leav',
  'plan_leav_friend',
  'leav_friend_coupl',
  'friend_coupl_month',
  'coupl_month_piss',
  'month_piss_go',
  'piss_go_leav',
  'go_leav_famili',
  'leav_famili_behind',
  'famili_behind_told',
  'behind_told_famili',
  'told_famili_anyth',
  'famili_anyth_talk',
  'anyth_talk_mom',
  'talk_mom_dad',
  'mom_dad_save',
  'dad_save_us',
  'save_us_go',
  'us_go_colleg',
  'go_colleg_wan',
  'colleg_wan_na',
  'wan_na_run',
  'na_run_away',
  'run_away_someth',
  'away_someth_broke',
  'someth_broke_insid',
  'broke_insid_said',
  'insid_said_told',
  'said_told_colleg',
  'told_colleg_fund',
  'colleg_fund_wait',
  'fund_wait_like',
  'wait_like_get',
  'like_get_anyth',
  'get_anyth_want',
  'anyth_want_im',
  'want_im_told',
  'im_told_act',
  'told_act_age',
  'act_age_want',
  'age_want_anyth',
  'want_anyth_told',
  'anyth_told_expect',
  'told_expect_maid',
  'expect_maid_get',
  'maid_get_noth',
  'get_noth_get',
  'noth_get_everyth',
  'get_everyth_told',
  'everyth_told_much',
  'told_much_older',
  'much_older_everyon',
  'older_everyon_expect',
  'everyon_expect_adult',
  'expect_adult_ask',
  'adult_ask_shed',
  'ask_shed_feel',
  'shed_feel_suppos',
  'feel_suppos_juggl',
  'suppos_juggl_younger',
  'juggl_younger_sibl',
  'younger_sibl_take',
  'sibl_take_care',
  'take_care_bulk',
  'care_bulk_household',
  'bulk_household_chore',
  'household_chore_schoolwork',
  'chore_schoolwork_get',
  'schoolwork_get_time',
  'get_time_friend',
  'time_friend_reason',
  'friend_reason_shit',
  'reason_shit_work',
  'shit_work_leav',
  'work_leav_exhaust',
  'leav_exhaust_alreadi',
  'exhaust_alreadi_much',
  'alreadi_much_told',
  'much_told_life',
  'told_life_make',
  'life_make_want',
  'make_want_stay',
  'want_stay_parent',
  'stay_parent_cut',
  'parent_cut_short',
  'cut_short_upset',
  'short_upset_call',
  'upset_call_asshol',
  'call_asshol_mean',
  'asshol_mean_sister',
  'mean_sister_said',
  'sister_said_asshol',
  'said_asshol_dump',
  'asshol_dump_shoulder',
  'dump_shoulder_aita'],
 ['husband',
  'car',
  'accid',
  'last',
  'week',
  'stay',
  'hospit',
  'broken',
  'leg',
  'mom',
  'mom',
  'get',
  'along',
  'tell',
  'im',
  'overreact',
  'paranoid',
  'whenev',
  'point',
  'mistreat',
  'complain',
  'hospit',
  'food',
  'say',
  'tast',
  'ask',
  'make',
  'favorit',
  'meal',
  'steack',
  'dish',
  'bring',
  'hospit',
  'note',
  'steak',
  'cheap',
  'live',
  'enough',
  'time',
  'prepar',
  'told',
  'see',
  'mom',
  'said',
  'im',
  'truli',
  'support',
  'wife',
  'id',
  'make',
  'happen',
  'went',
  'outsid',
  'room',
  'mom',
  'tone',
  'chang',
  'suddenli',
  'seem',
  'nice',
  'said',
  'could',
  'see',
  'exhaust',
  'go',
  'home',
  'worri',
  'steak',
  'dish',
  'said',
  'shed',
  'make',
  'ask',
  '%',
  'sure',
  'said',
  'absoluetli',
  'next',
  'visit',
  'show',
  'husband',
  'ask',
  'bring',
  'steak',
  'dish',
  'ask',
  'saw',
  'mom',
  'told',
  'mom',
  'offer',
  'make',
  'instesd',
  'told',
  'worri',
  'believ',
  'like',
  'mom',
  'said',
  'im',
  'buy',
  'mom',
  'realli',
  'said',
  'reaction',
  'shock',
  'act',
  'confus',
  'said',
  'im',
  'wife',
  'know',
  'id',
  'expect',
  'perform',
  'duti',
  'confus',
  'know',
  'husband',
  'seem',
  'upset',
  'entir',
  'visit',
  'wait',
  'til',
  'mom',
  'left',
  'talk',
  'swore',
  'mom',
  'said',
  'shed',
  'take',
  'care',
  'said',
  'believ',
  'pull',
  'phone',
  'call',
  'mom',
  'put',
  'speaker',
  'could',
  'hear',
  'convers',
  'said',
  'say',
  'make',
  'steak',
  'dish',
  'worri',
  'reli',
  'didbut',
  'obvious',
  'actual',
  'go',
  'tri',
  'help',
  'son',
  'see',
  'wife',
  'rough',
  'time',
  'took',
  'bait',
  'husband',
  'rais',
  'eyebrow',
  'got',
  'piss',
  'call',
  'later',
  'pick',
  'fight',
  'said',
  'visit',
  'lost',
  'call',
  'petti',
  'manipul',
  'blast',
  'facebook',
  'say',
  'stop',
  'see',
  'son',
  'get',
  'thing',
  'like',
  'cook',
  'husband',
  'famili',
  'critic',
  'husband_car',
  'car_accid',
  'accid_last',
  'last_week',
  'week_stay',
  'stay_hospit',
  'hospit_broken',
  'broken_leg',
  'leg_mom',
  'mom_mom',
  'mom_get',
  'get_along',
  'along_tell',
  'tell_im',
  'im_overreact',
  'overreact_paranoid',
  'paranoid_whenev',
  'whenev_point',
  'point_mistreat',
  'mistreat_complain',
  'complain_hospit',
  'hospit_food',
  'food_say',
  'say_tast',
  'tast_ask',
  'ask_make',
  'make_favorit',
  'favorit_meal',
  'meal_steack',
  'steack_dish',
  'dish_bring',
  'bring_hospit',
  'hospit_note',
  'note_steak',
  'steak_cheap',
  'cheap_live',
  'live_enough',
  'enough_time',
  'time_prepar',
  'prepar_told',
  'told_see',
  'see_mom',
  'mom_said',
  'said_im',
  'im_truli',
  'truli_support',
  'support_wife',
  'wife_id',
  'id_make',
  'make_happen',
  'happen_went',
  'went_outsid',
  'outsid_room',
  'room_mom',
  'mom_tone',
  'tone_chang',
  'chang_suddenli',
  'suddenli_seem',
  'seem_nice',
  'nice_said',
  'said_could',
  'could_see',
  'see_exhaust',
  'exhaust_go',
  'go_home',
  'home_worri',
  'worri_steak',
  'steak_dish',
  'dish_said',
  'said_shed',
  'shed_make',
  'make_ask',
  'ask_%',
  '%_sure',
  'sure_said',
  'said_absoluetli',
  'absoluetli_next',
  'next_visit',
  'visit_show',
  'show_husband',
  'husband_ask',
  'ask_bring',
  'bring_steak',
  'steak_dish',
  'dish_ask',
  'ask_saw',
  'saw_mom',
  'mom_told',
  'told_mom',
  'mom_offer',
  'offer_make',
  'make_instesd',
  'instesd_told',
  'told_worri',
  'worri_believ',
  'believ_like',
  'like_mom',
  'mom_said',
  'said_im',
  'im_buy',
  'buy_mom',
  'mom_realli',
  'realli_said',
  'said_reaction',
  'reaction_shock',
  'shock_act',
  'act_confus',
  'confus_said',
  'said_im',
  'im_wife',
  'wife_know',
  'know_id',
  'id_expect',
  'expect_perform',
  'perform_duti',
  'duti_confus',
  'confus_know',
  'know_husband',
  'husband_seem',
  'seem_upset',
  'upset_entir',
  'entir_visit',
  'visit_wait',
  'wait_til',
  'til_mom',
  'mom_left',
  'left_talk',
  'talk_swore',
  'swore_mom',
  'mom_said',
  'said_shed',
  'shed_take',
  'take_care',
  'care_said',
  'said_believ',
  'believ_pull',
  'pull_phone',
  'phone_call',
  'call_mom',
  'mom_put',
  'put_speaker',
  'speaker_could',
  'could_hear',
  'hear_convers',
  'convers_said',
  'said_say',
  'say_make',
  'make_steak',
  'steak_dish',
  'dish_worri',
  'worri_reli',
  'reli_didbut',
  'didbut_obvious',
  'obvious_actual',
  'actual_go',
  'go_tri',
  'tri_help',
  'help_son',
  'son_see',
  'see_wife',
  'wife_rough',
  'rough_time',
  'time_took',
  'took_bait',
  'bait_husband',
  'husband_rais',
  'rais_eyebrow',
  'eyebrow_got',
  'got_piss',
  'piss_call',
  'call_later',
  'later_pick',
  'pick_fight',
  'fight_said',
  'said_visit',
  'visit_lost',
  'lost_call',
  'call_petti',
  'petti_manipul',
  'manipul_blast',
  'blast_facebook',
  'facebook_say',
  'say_stop',
  'stop_see',
  'see_son',
  'son_get',
  'get_thing',
  'thing_like',
  'like_cook',
  'cook_husband',
  'husband_famili',
  'famili_critic',
  'husband_car_accid',
  'car_accid_last',
  'accid_last_week',
  'last_week_stay',
  'week_stay_hospit',
  'stay_hospit_broken',
  'hospit_broken_leg',
  'broken_leg_mom',
  'leg_mom_mom',
  'mom_mom_get',
  'mom_get_along',
  'get_along_tell',
  'along_tell_im',
  'tell_im_overreact',
  'im_overreact_paranoid',
  'overreact_paranoid_whenev',
  'paranoid_whenev_point',
  'whenev_point_mistreat',
  'point_mistreat_complain',
  'mistreat_complain_hospit',
  'complain_hospit_food',
  'hospit_food_say',
  'food_say_tast',
  'say_tast_ask',
  'tast_ask_make',
  'ask_make_favorit',
  'make_favorit_meal',
  'favorit_meal_steack',
  'meal_steack_dish',
  'steack_dish_bring',
  'dish_bring_hospit',
  'bring_hospit_note',
  'hospit_note_steak',
  'note_steak_cheap',
  'steak_cheap_live',
  'cheap_live_enough',
  'live_enough_time',
  'enough_time_prepar',
  'time_prepar_told',
  'prepar_told_see',
  'told_see_mom',
  'see_mom_said',
  'mom_said_im',
  'said_im_truli',
  'im_truli_support',
  'truli_support_wife',
  'support_wife_id',
  'wife_id_make',
  'id_make_happen',
  'make_happen_went',
  'happen_went_outsid',
  'went_outsid_room',
  'outsid_room_mom',
  'room_mom_tone',
  'mom_tone_chang',
  'tone_chang_suddenli',
  'chang_suddenli_seem',
  'suddenli_seem_nice',
  'seem_nice_said',
  'nice_said_could',
  'said_could_see',
  'could_see_exhaust',
  'see_exhaust_go',
  'exhaust_go_home',
  'go_home_worri',
  'home_worri_steak',
  'worri_steak_dish',
  'steak_dish_said',
  'dish_said_shed',
  'said_shed_make',
  'shed_make_ask',
  'make_ask_%',
  'ask_%_sure',
  '%_sure_said',
  'sure_said_absoluetli',
  'said_absoluetli_next',
  'absoluetli_next_visit',
  'next_visit_show',
  'visit_show_husband',
  'show_husband_ask',
  'husband_ask_bring',
  'ask_bring_steak',
  'bring_steak_dish',
  'steak_dish_ask',
  'dish_ask_saw',
  'ask_saw_mom',
  'saw_mom_told',
  'mom_told_mom',
  'told_mom_offer',
  'mom_offer_make',
  'offer_make_instesd',
  'make_instesd_told',
  'instesd_told_worri',
  'told_worri_believ',
  'worri_believ_like',
  'believ_like_mom',
  'like_mom_said',
  'mom_said_im',
  'said_im_buy',
  'im_buy_mom',
  'buy_mom_realli',
  'mom_realli_said',
  'realli_said_reaction',
  'said_reaction_shock',
  'reaction_shock_act',
  'shock_act_confus',
  'act_confus_said',
  'confus_said_im',
  'said_im_wife',
  'im_wife_know',
  'wife_know_id',
  'know_id_expect',
  'id_expect_perform',
  'expect_perform_duti',
  'perform_duti_confus',
  'duti_confus_know',
  'confus_know_husband',
  'know_husband_seem',
  'husband_seem_upset',
  'seem_upset_entir',
  'upset_entir_visit',
  'entir_visit_wait',
  'visit_wait_til',
  'wait_til_mom',
  'til_mom_left',
  'mom_left_talk',
  'left_talk_swore',
  'talk_swore_mom',
  'swore_mom_said',
  'mom_said_shed',
  'said_shed_take',
  'shed_take_care',
  'take_care_said',
  'care_said_believ',
  'said_believ_pull',
  'believ_pull_phone',
  'pull_phone_call',
  'phone_call_mom',
  'call_mom_put',
  'mom_put_speaker',
  'put_speaker_could',
  'speaker_could_hear',
  'could_hear_convers',
  'hear_convers_said',
  'convers_said_say',
  'said_say_make',
  'say_make_steak',
  'make_steak_dish',
  'steak_dish_worri',
  'dish_worri_reli',
  'worri_reli_didbut',
  'reli_didbut_obvious',
  'didbut_obvious_actual',
  'obvious_actual_go',
  'actual_go_tri',
  'go_tri_help',
  'tri_help_son',
  'help_son_see',
  'son_see_wife',
  'see_wife_rough',
  'wife_rough_time',
  'rough_time_took',
  'time_took_bait',
  'took_bait_husband',
  'bait_husband_rais',
  'husband_rais_eyebrow',
  'rais_eyebrow_got',
  'eyebrow_got_piss',
  'got_piss_call',
  'piss_call_later',
  'call_later_pick',
  'later_pick_fight',
  'pick_fight_said',
  'fight_said_visit',
  'said_visit_lost',
  'visit_lost_call',
  'lost_call_petti',
  'call_petti_manipul',
  'petti_manipul_blast',
  'manipul_blast_facebook',
  'blast_facebook_say',
  'facebook_say_stop',
  'say_stop_see',
  'stop_see_son',
  'see_son_get',
  'son_get_thing',
  'get_thing_like',
  'thing_like_cook',
  'like_cook_husband',
  'cook_husband_famili',
  'husband_famili_critic'],
 ['new',
  'account',
  'delet',
  'main',
  'might',
  'sound',
  'petti',
  'let',
  'explain',
  'could',
  'longer',
  'work',
  'physic',
  'disabl',
  'compani',
  'want',
  'hire',
  'past',
  'coupl',
  'year',
  'husband',
  'said',
  'better',
  'stay',
  'home',
  'worri',
  'work',
  'agre',
  'becom',
  'breadwinn',
  'like',
  'switch',
  'flip',
  'chore',
  'lost',
  'job',
  'becom',
  '%',
  'keep',
  'mind',
  'physic',
  'disabl',
  'develop',
  'excus',
  'anyth',
  'help',
  'stay',
  'home',
  'told',
  'fair',
  'especi',
  'sinc',
  'suffer',
  'physic',
  'discomfort',
  'made',
  'deal',
  'promis',
  'everyth',
  'start',
  'work',
  'told',
  'would',
  'find',
  'job',
  'laugh',
  'said',
  'good',
  'luck',
  'rememb',
  'vividli',
  'strang',
  'laugh',
  'never',
  'heard',
  'laugh',
  'start',
  'look',
  'job',
  'month',
  'luck',
  'til',
  'friend',
  'husband',
  'found',
  'potenti',
  'job',
  'compani',
  'would',
  'wfh',
  'due',
  'physic',
  'strain',
  'excit',
  'felt',
  'like',
  'im',
  'capabl',
  'despit',
  'struggl',
  'schedul',
  'interview',
  'told',
  'husband',
  'look',
  'red',
  'face',
  'said',
  'noth',
  'day',
  'ago',
  'found',
  'job',
  'interview',
  'got',
  'cancel',
  'found',
  'friend',
  'reach',
  'ask',
  'said',
  'idea',
  'check',
  'email',
  'found',
  'noth',
  'send',
  'anyth',
  'compani',
  'husband',
  'came',
  'home',
  'admit',
  'cancel',
  'interview',
  'ask',
  'said',
  'job',
  'lot',
  'requir',
  'seem',
  'fit',
  'accept',
  'spare',
  'heartach',
  'reject',
  'cancel',
  'interview',
  'flip',
  'told',
  'destroy',
  'one',
  'chanc',
  'land',
  'job',
  'said',
  'feel',
  'concern',
  'wellb',
  'told',
  'probabl',
  'want',
  'work',
  'caus',
  'want',
  'split',
  'hous',
  'chore',
  'seem',
  'offend',
  'threw',
  'fit',
  'unreason',
  'selfish',
  'even',
  'consid',
  'job',
  'without',
  'speak',
  'first',
  'told',
  'get',
  'involv',
  'work',
  'life',
  'call',
  'horribl',
  'accus',
  'bad',
  'intent',
  'went',
  'meet',
  'friend',
  'probabl',
  'vent',
  'one',
  'told',
  'husband',
  'look',
  'cruel',
  'yell',
  'cold',
  'shoulder',
  'sinc',
  'delet',
  'social',
  'media',
  'account',
  'claim',
  'theyr',
  'bad',
  'mental',
  'health',
  'neg',
  'affect',
  'platform',
  'aita',
  'yell',
  'new_account',
  'account_delet',
  'delet_main',
  'main_might',
  'might_sound',
  'sound_petti',
  'petti_let',
  'let_explain',
  'explain_could',
  'could_longer',
  'longer_work',
  'work_physic',
  'physic_disabl',
  'disabl_compani',
  'compani_want',
  'want_hire',
  'hire_past',
  'past_coupl',
  'coupl_year',
  'year_husband',
  'husband_said',
  'said_better',
  'better_stay',
  'stay_home',
  'home_worri',
  'worri_work',
  'work_agre',
  'agre_becom',
  'becom_breadwinn',
  'breadwinn_like',
  'like_switch',
  'switch_flip',
  'flip_chore',
  'chore_lost',
  'lost_job',
  'job_becom',
  'becom_%',
  '%_keep',
  'keep_mind',
  'mind_physic',
  'physic_disabl',
  'disabl_develop',
  'develop_excus',
  'excus_anyth',
  'anyth_help',
  'help_stay',
  'stay_home',
  'home_told',
  'told_fair',
  'fair_especi',
  'especi_sinc',
  'sinc_suffer',
  'suffer_physic',
  'physic_discomfort',
  'discomfort_made',
  'made_deal',
  'deal_promis',
  'promis_everyth',
  'everyth_start',
  'start_work',
  'work_told',
  'told_would',
  'would_find',
  'find_job',
  'job_laugh',
  'laugh_said',
  'said_good',
  'good_luck',
  'luck_rememb',
  'rememb_vividli',
  'vividli_strang',
  'strang_laugh',
  'laugh_never',
  'never_heard',
  'heard_laugh',
  'laugh_start',
  'start_look',
  'look_job',
  'job_month',
  'month_luck',
  'luck_til',
  'til_friend',
  'friend_husband',
  'husband_found',
  'found_potenti',
  'potenti_job',
  'job_compani',
  'compani_would',
  'would_wfh',
  'wfh_due',
  'due_physic',
  'physic_strain',
  'strain_excit',
  'excit_felt',
  'felt_like',
  'like_im',
  'im_capabl',
  'capabl_despit',
  'despit_struggl',
  'struggl_schedul',
  'schedul_interview',
  'interview_told',
  'told_husband',
  'husband_look',
  'look_red',
  'red_face',
  'face_said',
  'said_noth',
  'noth_day',
  'day_ago',
  'ago_found',
  'found_job',
  'job_interview',
  'interview_got',
  'got_cancel',
  'cancel_found',
  'found_friend',
  'friend_reach',
  'reach_ask',
  'ask_said',
  'said_idea',
  'idea_check',
  'check_email',
  'email_found',
  'found_noth',
  'noth_send',
  'send_anyth',
  'anyth_compani',
  'compani_husband',
  'husband_came',
  'came_home',
  'home_admit',
  'admit_cancel',
  'cancel_interview',
  'interview_ask',
  'ask_said',
  'said_job',
  'job_lot',
  'lot_requir',
  'requir_seem',
  'seem_fit',
  'fit_accept',
  'accept_spare',
  'spare_heartach',
  'heartach_reject',
  'reject_cancel',
  'cancel_interview',
  'interview_flip',
  'flip_told',
  'told_destroy',
  'destroy_one',
  'one_chanc',
  'chanc_land',
  'land_job',
  'job_said',
  'said_feel',
  'feel_concern',
  'concern_wellb',
  'wellb_told',
  'told_probabl',
  'probabl_want',
  'want_work',
  'work_caus',
  'caus_want',
  'want_split',
  'split_hous',
  'hous_chore',
  'chore_seem',
  'seem_offend',
  'offend_threw',
  'threw_fit',
  'fit_unreason',
  'unreason_selfish',
  'selfish_even',
  'even_consid',
  'consid_job',
  'job_without',
  'without_speak',
  'speak_first',
  'first_told',
  'told_get',
  'get_involv',
  'involv_work',
  'work_life',
  'life_call',
  'call_horribl',
  'horribl_accus',
  'accus_bad',
  'bad_intent',
  'intent_went',
  'went_meet',
  'meet_friend',
  'friend_probabl',
  'probabl_vent',
  'vent_one',
  'one_told',
  'told_husband',
  'husband_look',
  'look_cruel',
  'cruel_yell',
  'yell_cold',
  'cold_shoulder',
  'shoulder_sinc',
  'sinc_delet',
  'delet_social',
  'social_media',
  'media_account',
  'account_claim',
  'claim_theyr',
  'theyr_bad',
  'bad_mental',
  'mental_health',
  'health_neg',
  'neg_affect',
  'affect_platform',
  'platform_aita',
  'aita_yell',
  'new_account_delet',
  'account_delet_main',
  'delet_main_might',
  'main_might_sound',
  'might_sound_petti',
  'sound_petti_let',
  'petti_let_explain',
  'let_explain_could',
  'explain_could_longer',
  'could_longer_work',
  'longer_work_physic',
  'work_physic_disabl',
  'physic_disabl_compani',
  'disabl_compani_want',
  'compani_want_hire',
  'want_hire_past',
  'hire_past_coupl',
  'past_coupl_year',
  'coupl_year_husband',
  'year_husband_said',
  'husband_said_better',
  'said_better_stay',
  'better_stay_home',
  'stay_home_worri',
  'home_worri_work',
  'worri_work_agre',
  'work_agre_becom',
  'agre_becom_breadwinn',
  'becom_breadwinn_like',
  'breadwinn_like_switch',
  'like_switch_flip',
  'switch_flip_chore',
  'flip_chore_lost',
  'chore_lost_job',
  'lost_job_becom',
  'job_becom_%',
  'becom_%_keep',
  '%_keep_mind',
  'keep_mind_physic',
  'mind_physic_disabl',
  'physic_disabl_develop',
  'disabl_develop_excus',
  'develop_excus_anyth',
  'excus_anyth_help',
  'anyth_help_stay',
  'help_stay_home',
  'stay_home_told',
  'home_told_fair',
  'told_fair_especi',
  'fair_especi_sinc',
  'especi_sinc_suffer',
  'sinc_suffer_physic',
  'suffer_physic_discomfort',
  'physic_discomfort_made',
  'discomfort_made_deal',
  'made_deal_promis',
  'deal_promis_everyth',
  'promis_everyth_start',
  'everyth_start_work',
  'start_work_told',
  'work_told_would',
  'told_would_find',
  'would_find_job',
  'find_job_laugh',
  'job_laugh_said',
  'laugh_said_good',
  'said_good_luck',
  'good_luck_rememb',
  'luck_rememb_vividli',
  'rememb_vividli_strang',
  'vividli_strang_laugh',
  'strang_laugh_never',
  'laugh_never_heard',
  'never_heard_laugh',
  'heard_laugh_start',
  'laugh_start_look',
  'start_look_job',
  'look_job_month',
  'job_month_luck',
  'month_luck_til',
  'luck_til_friend',
  'til_friend_husband',
  'friend_husband_found',
  'husband_found_potenti',
  'found_potenti_job',
  'potenti_job_compani',
  'job_compani_would',
  'compani_would_wfh',
  'would_wfh_due',
  'wfh_due_physic',
  'due_physic_strain',
  'physic_strain_excit',
  'strain_excit_felt',
  'excit_felt_like',
  'felt_like_im',
  'like_im_capabl',
  'im_capabl_despit',
  'capabl_despit_struggl',
  'despit_struggl_schedul',
  'struggl_schedul_interview',
  'schedul_interview_told',
  'interview_told_husband',
  'told_husband_look',
  'husband_look_red',
  'look_red_face',
  'red_face_said',
  'face_said_noth',
  'said_noth_day',
  'noth_day_ago',
  'day_ago_found',
  'ago_found_job',
  'found_job_interview',
  'job_interview_got',
  'interview_got_cancel',
  'got_cancel_found',
  'cancel_found_friend',
  'found_friend_reach',
  'friend_reach_ask',
  'reach_ask_said',
  'ask_said_idea',
  'said_idea_check',
  'idea_check_email',
  'check_email_found',
  'email_found_noth',
  'found_noth_send',
  'noth_send_anyth',
  'send_anyth_compani',
  'anyth_compani_husband',
  'compani_husband_came',
  'husband_came_home',
  'came_home_admit',
  'home_admit_cancel',
  'admit_cancel_interview',
  'cancel_interview_ask',
  'interview_ask_said',
  'ask_said_job',
  'said_job_lot',
  'job_lot_requir',
  'lot_requir_seem',
  'requir_seem_fit',
  'seem_fit_accept',
  'fit_accept_spare',
  'accept_spare_heartach',
  'spare_heartach_reject',
  'heartach_reject_cancel',
  'reject_cancel_interview',
  'cancel_interview_flip',
  'interview_flip_told',
  'flip_told_destroy',
  'told_destroy_one',
  'destroy_one_chanc',
  'one_chanc_land',
  'chanc_land_job',
  'land_job_said',
  'job_said_feel',
  'said_feel_concern',
  'feel_concern_wellb',
  'concern_wellb_told',
  'wellb_told_probabl',
  'told_probabl_want',
  'probabl_want_work',
  'want_work_caus',
  'work_caus_want',
  'caus_want_split',
  'want_split_hous',
  'split_hous_chore',
  'hous_chore_seem',
  'chore_seem_offend',
  'seem_offend_threw',
  'offend_threw_fit',
  'threw_fit_unreason',
  'fit_unreason_selfish',
  'unreason_selfish_even',
  'selfish_even_consid',
  'even_consid_job',
  'consid_job_without',
  'job_without_speak',
  'without_speak_first',
  'speak_first_told',
  'first_told_get',
  'told_get_involv',
  'get_involv_work',
  'involv_work_life',
  'work_life_call',
  'life_call_horribl',
  'call_horribl_accus',
  'horribl_accus_bad',
  'accus_bad_intent',
  'bad_intent_went',
  'intent_went_meet',
  'went_meet_friend',
  'meet_friend_probabl',
  'friend_probabl_vent',
  'probabl_vent_one',
  'vent_one_told',
  'one_told_husband',
  'told_husband_look',
  'husband_look_cruel',
  'look_cruel_yell',
  'cruel_yell_cold',
  'yell_cold_shoulder',
  'cold_shoulder_sinc',
  'shoulder_sinc_delet',
  'sinc_delet_social',
  'delet_social_media',
  'social_media_account',
  'media_account_claim',
  'account_claim_theyr',
  'claim_theyr_bad',
  'theyr_bad_mental',
  'bad_mental_health',
  'mental_health_neg',
  'health_neg_affect',
  'neg_affect_platform',
  'affect_platform_aita',
  'platform_aita_yell'],
 ['hear',
  'husband',
  'jess',
  'bring',
  'home',
  'meal',
  'femal',
  'cowork',
  'nelli',
  'cook',
  'im',
  'best',
  'cook',
  'jess',
  'made',
  'clear',
  'still',
  'eat',
  'cook',
  'everyday',
  'notic',
  'nelli',
  'tend',
  'take',
  'everi',
  'opportun',
  'point',
  'weak',
  'taseless',
  'cook',
  'jess',
  'would',
  'say',
  'noth',
  'except',
  'steer',
  'convers',
  'toward',
  'someth',
  'els',
  'relat',
  'im',
  'sit',
  'wallow',
  'miseri',
  'think',
  'saidalso',
  'ask',
  'anoth',
  'chore',
  'good',
  'jess',
  'said',
  'iron',
  'suit',
  'respons',
  'joke',
  'send',
  'suit',
  'could',
  'see',
  'good',
  'iron',
  '*',
  '*',
  'roll',
  'eye',
  'hard',
  'least',
  'jess',
  'agre',
  'weird',
  'last',
  'weekjess',
  'came',
  'home',
  'new',
  'meal',
  'cook',
  'told',
  'alreadi',
  'cook',
  'dinner',
  'ask',
  'go',
  'meal',
  'told',
  'go',
  'eat',
  'dinner',
  'ngl',
  'get',
  'bit',
  'irrit',
  'mustv',
  'notic',
  'said',
  'promis',
  'nelli',
  'hed',
  'eat',
  'dinner',
  'ask',
  'take',
  'pic',
  'empti',
  'plate',
  'later',
  'confirm',
  'hed',
  'actual',
  'eaten',
  'baffledlik',
  'complet',
  'baffl',
  'told',
  'one',
  'thing',
  'one',
  'thing',
  'told',
  'chose',
  'eat',
  'nelli',
  'meal',
  'dinner',
  'cook',
  'would',
  'last',
  'time',
  'cook',
  'start',
  'moan',
  'unfair',
  'put',
  'rough',
  'place',
  'stall',
  'give',
  'clear',
  'answer',
  'til',
  'saw',
  'walk',
  'past',
  'later',
  'set',
  'tabl',
  'prepar',
  'dinner',
  'put',
  'meal',
  'microwav',
  'felt',
  'aw',
  'almost',
  'cri',
  'told',
  'cook',
  'anymor',
  'sinc',
  'made',
  'choic',
  'obvious',
  'piss',
  'went',
  'call',
  'childish',
  'pathet',
  'make',
  'ego',
  'got',
  'chair',
  'told',
  'owe',
  'noth',
  'made',
  'decis',
  'snap',
  'said',
  'ridiculo',
  'nellywa',
  'nice',
  'thing',
  'whilea',
  'behavior',
  'disgrac',
  '*',
  'disgust',
  '*',
  'went',
  'bedroom',
  'rush',
  'shout',
  '*',
  'leav',
  'fuck',
  'alon',
  '*',
  'proceed',
  'shut',
  'door',
  'speak',
  'mom',
  'knew',
  'argument',
  'call',
  'beg',
  'patient',
  'make',
  'decis',
  'might',
  'regret',
  'later',
  'agre',
  'nelli',
  'overstep',
  'firmli',
  'believ',
  'problem',
  'hard',
  'son',
  'mil',
  'incred',
  'bias',
  'mean',
  'eye',
  'son',
  'saint',
  'wrong',
  'feel',
  'like',
  'overreact',
  'realli',
  'mess',
  'push',
  'like',
  'hear_husband',
  'husband_jess',
  'jess_bring',
  'bring_home',
  'home_meal',
  'meal_femal',
  'femal_cowork',
  'cowork_nelli',
  'nelli_cook',
  'cook_im',
  'im_best',
  'best_cook',
  'cook_jess',
  'jess_made',
  'made_clear',
  'clear_still',
  'still_eat',
  'eat_cook',
  'cook_everyday',
  'everyday_notic',
  'notic_nelli',
  'nelli_tend',
  'tend_take',
  'take_everi',
  'everi_opportun',
  'opportun_point',
  'point_weak',
  'weak_taseless',
  'taseless_cook',
  'cook_jess',
  'jess_would',
  'would_say',
  'say_noth',
  'noth_except',
  'except_steer',
  'steer_convers',
  'convers_toward',
  'toward_someth',
  'someth_els',
  'els_relat',
  'relat_im',
  'im_sit',
  'sit_wallow',
  'wallow_miseri',
  'miseri_think',
  'think_saidalso',
  'saidalso_ask',
  'ask_anoth',
  'anoth_chore',
  'chore_good',
  'good_jess',
  'jess_said',
  'said_iron',
  'iron_suit',
  'suit_respons',
  'respons_joke',
  'joke_send',
  'send_suit',
  'suit_could',
  'could_see',
  'see_good',
  'good_iron',
  'iron_*',
  '*_*',
  '*_roll',
  'roll_eye',
  'eye_hard',
  'hard_least',
  'least_jess',
  'jess_agre',
  'agre_weird',
  'weird_last',
  'last_weekjess',
  'weekjess_came',
  'came_home',
  'home_new',
  'new_meal',
  'meal_cook',
  'cook_told',
  'told_alreadi',
  'alreadi_cook',
  'cook_dinner',
  'dinner_ask',
  'ask_go',
  'go_meal',
  'meal_told',
  'told_go',
  'go_eat',
  'eat_dinner',
  'dinner_ngl',
  'ngl_get',
  'get_bit',
  'bit_irrit',
  'irrit_mustv',
  'mustv_notic',
  'notic_said',
  'said_promis',
  'promis_nelli',
  'nelli_hed',
  'hed_eat',
  'eat_dinner',
  'dinner_ask',
  'ask_take',
  'take_pic',
  'pic_empti',
  'empti_plate',
  'plate_later',
  'later_confirm',
  'confirm_hed',
  'hed_actual',
  'actual_eaten',
  'eaten_baffledlik',
  'baffledlik_complet',
  'complet_baffl',
  'baffl_told',
  'told_one',
  'one_thing',
  'thing_one',
  'one_thing',
  'thing_told',
  'told_chose',
  'chose_eat',
  'eat_nelli',
  'nelli_meal',
  'meal_dinner',
  'dinner_cook',
  'cook_would',
  'would_last',
  'last_time',
  'time_cook',
  'cook_start',
  'start_moan',
  'moan_unfair',
  'unfair_put',
  'put_rough',
  'rough_place',
  'place_stall',
  'stall_give',
  'give_clear',
  'clear_answer',
  'answer_til',
  'til_saw',
  'saw_walk',
  'walk_past',
  'past_later',
  'later_set',
  'set_tabl',
  'tabl_prepar',
  'prepar_dinner',
  'dinner_put',
  'put_meal',
  'meal_microwav',
  'microwav_felt',
  'felt_aw',
  'aw_almost',
  'almost_cri',
  'cri_told',
  'told_cook',
  'cook_anymor',
  'anymor_sinc',
  'sinc_made',
  'made_choic',
  'choic_obvious',
  'obvious_piss',
  'piss_went',
  'went_call',
  'call_childish',
  'childish_pathet',
  'pathet_make',
  'make_ego',
  'ego_got',
  'got_chair',
  'chair_told',
  'told_owe',
  'owe_noth',
  'noth_made',
  'made_decis',
  'decis_snap',
  'snap_said',
  'said_ridiculo',
  'ridiculo_nellywa',
  'nellywa_nice',
  'nice_thing',
  'thing_whilea',
  'whilea_behavior',
  'behavior_disgrac',
  'disgrac_*',
  '*_disgust',
  'disgust_*',
  '*_went',
  'went_bedroom',
  'bedroom_rush',
  'rush_shout',
  'shout_*',
  '*_leav',
  'leav_fuck',
  'fuck_alon',
  'alon_*',
  '*_proceed',
  'proceed_shut',
  'shut_door',
  'door_speak',
  'speak_mom',
  'mom_knew',
  'knew_argument',
  'argument_call',
  'call_beg',
  'beg_patient',
  'patient_make',
  'make_decis',
  'decis_might',
  'might_regret',
  'regret_later',
  'later_agre',
  'agre_nelli',
  'nelli_overstep',
  'overstep_firmli',
  'firmli_believ',
  'believ_problem',
  'problem_hard',
  'hard_son',
  'son_mil',
  'mil_incred',
  'incred_bias',
  'bias_mean',
  'mean_eye',
  'eye_son',
  'son_saint',
  'saint_wrong',
  'wrong_feel',
  'feel_like',
  'like_overreact',
  'overreact_realli',
  'realli_mess',
  'mess_push',
  'push_like',
  'hear_husband_jess',
  'husband_jess_bring',
  'jess_bring_home',
  'bring_home_meal',
  'home_meal_femal',
  'meal_femal_cowork',
  'femal_cowork_nelli',
  'cowork_nelli_cook',
  'nelli_cook_im',
  'cook_im_best',
  'im_best_cook',
  'best_cook_jess',
  'cook_jess_made',
  'jess_made_clear',
  'made_clear_still',
  'clear_still_eat',
  'still_eat_cook',
  'eat_cook_everyday',
  'cook_everyday_notic',
  'everyday_notic_nelli',
  'notic_nelli_tend',
  'nelli_tend_take',
  'tend_take_everi',
  'take_everi_opportun',
  'everi_opportun_point',
  'opportun_point_weak',
  'point_weak_taseless',
  'weak_taseless_cook',
  'taseless_cook_jess',
  'cook_jess_would',
  'jess_would_say',
  'would_say_noth',
  'say_noth_except',
  'noth_except_steer',
  'except_steer_convers',
  'steer_convers_toward',
  'convers_toward_someth',
  'toward_someth_els',
  'someth_els_relat',
  'els_relat_im',
  'relat_im_sit',
  'im_sit_wallow',
  'sit_wallow_miseri',
  'wallow_miseri_think',
  'miseri_think_saidalso',
  'think_saidalso_ask',
  'saidalso_ask_anoth',
  'ask_anoth_chore',
  'anoth_chore_good',
  'chore_good_jess',
  'good_jess_said',
  'jess_said_iron',
  'said_iron_suit',
  'iron_suit_respons',
  'suit_respons_joke',
  'respons_joke_send',
  'joke_send_suit',
  'send_suit_could',
  'suit_could_see',
  'could_see_good',
  'see_good_iron',
  'good_iron_*',
  'iron_*_*',
  '*_*_roll',
  '*_roll_eye',
  'roll_eye_hard',
  'eye_hard_least',
  'hard_least_jess',
  'least_jess_agre',
  'jess_agre_weird',
  'agre_weird_last',
  'weird_last_weekjess',
  'last_weekjess_came',
  'weekjess_came_home',
  'came_home_new',
  'home_new_meal',
  'new_meal_cook',
  'meal_cook_told',
  'cook_told_alreadi',
  'told_alreadi_cook',
  'alreadi_cook_dinner',
  'cook_dinner_ask',
  'dinner_ask_go',
  'ask_go_meal',
  'go_meal_told',
  'meal_told_go',
  'told_go_eat',
  'go_eat_dinner',
  'eat_dinner_ngl',
  'dinner_ngl_get',
  'ngl_get_bit',
  'get_bit_irrit',
  'bit_irrit_mustv',
  'irrit_mustv_notic',
  'mustv_notic_said',
  'notic_said_promis',
  'said_promis_nelli',
  'promis_nelli_hed',
  'nelli_hed_eat',
  'hed_eat_dinner',
  'eat_dinner_ask',
  'dinner_ask_take',
  'ask_take_pic',
  'take_pic_empti',
  'pic_empti_plate',
  'empti_plate_later',
  'plate_later_confirm',
  'later_confirm_hed',
  'confirm_hed_actual',
  'hed_actual_eaten',
  'actual_eaten_baffledlik',
  'eaten_baffledlik_complet',
  'baffledlik_complet_baffl',
  'complet_baffl_told',
  'baffl_told_one',
  'told_one_thing',
  'one_thing_one',
  'thing_one_thing',
  'one_thing_told',
  'thing_told_chose',
  'told_chose_eat',
  'chose_eat_nelli',
  'eat_nelli_meal',
  'nelli_meal_dinner',
  'meal_dinner_cook',
  'dinner_cook_would',
  'cook_would_last',
  'would_last_time',
  'last_time_cook',
  'time_cook_start',
  'cook_start_moan',
  'start_moan_unfair',
  'moan_unfair_put',
  'unfair_put_rough',
  'put_rough_place',
  'rough_place_stall',
  'place_stall_give',
  'stall_give_clear',
  'give_clear_answer',
  'clear_answer_til',
  'answer_til_saw',
  'til_saw_walk',
  'saw_walk_past',
  'walk_past_later',
  'past_later_set',
  'later_set_tabl',
  'set_tabl_prepar',
  'tabl_prepar_dinner',
  'prepar_dinner_put',
  'dinner_put_meal',
  'put_meal_microwav',
  'meal_microwav_felt',
  'microwav_felt_aw',
  'felt_aw_almost',
  'aw_almost_cri',
  'almost_cri_told',
  'cri_told_cook',
  'told_cook_anymor',
  'cook_anymor_sinc',
  'anymor_sinc_made',
  'sinc_made_choic',
  'made_choic_obvious',
  'choic_obvious_piss',
  'obvious_piss_went',
  'piss_went_call',
  'went_call_childish',
  'call_childish_pathet',
  'childish_pathet_make',
  'pathet_make_ego',
  'make_ego_got',
  'ego_got_chair',
  'got_chair_told',
  'chair_told_owe',
  'told_owe_noth',
  'owe_noth_made',
  'noth_made_decis',
  'made_decis_snap',
  'decis_snap_said',
  'snap_said_ridiculo',
  'said_ridiculo_nellywa',
  'ridiculo_nellywa_nice',
  'nellywa_nice_thing',
  'nice_thing_whilea',
  'thing_whilea_behavior',
  'whilea_behavior_disgrac',
  'behavior_disgrac_*',
  'disgrac_*_disgust',
  '*_disgust_*',
  'disgust_*_went',
  '*_went_bedroom',
  'went_bedroom_rush',
  'bedroom_rush_shout',
  'rush_shout_*',
  'shout_*_leav',
  '*_leav_fuck',
  'leav_fuck_alon',
  'fuck_alon_*',
  'alon_*_proceed',
  '*_proceed_shut',
  'proceed_shut_door',
  'shut_door_speak',
  'door_speak_mom',
  'speak_mom_knew',
  'mom_knew_argument',
  'knew_argument_call',
  'argument_call_beg',
  'call_beg_patient',
  'beg_patient_make',
  'patient_make_decis',
  'make_decis_might',
  'decis_might_regret',
  'might_regret_later',
  'regret_later_agre',
  'later_agre_nelli',
  'agre_nelli_overstep',
  'nelli_overstep_firmli',
  'overstep_firmli_believ',
  'firmli_believ_problem',
  'believ_problem_hard',
  'problem_hard_son',
  'hard_son_mil',
  'son_mil_incred',
  'mil_incred_bias',
  'incred_bias_mean',
  'bias_mean_eye',
  'mean_eye_son',
  'eye_son_saint',
  'son_saint_wrong',
  'saint_wrong_feel',
  'wrong_feel_like',
  'feel_like_overreact',
  'like_overreact_realli',
  'overreact_realli_mess',
  'realli_mess_push',
  'mess_push_like'],
 ['expect',
  'first',
  'daughter',
  'husband',
  'septemb',
  'grew',
  'moder',
  'religi',
  'household',
  'pretti',
  'strictli',
  'defin',
  'gender',
  'role',
  'sinc',
  'girl',
  'chore',
  'around',
  'hous',
  'younger',
  'brother',
  'anyth',
  'talk',
  'parent',
  'varieti',
  'reason',
  'go',
  'year',
  'know',
  'pregnant',
  'aunt',
  'grandpar',
  'support',
  'leav',
  'household',
  'main',
  'famili',
  'month',
  'pregnant',
  'peopl',
  'start',
  'give',
  'gift',
  'grate',
  'decid',
  'want',
  'daughter',
  'surround',
  'pink',
  'everyth',
  'girl',
  'thing',
  'made',
  'consciou',
  'effort',
  'includ',
  'tradit',
  'boy',
  'outfit',
  'toy',
  'like',
  'dinosaur',
  'car',
  'told',
  'peopl',
  'gender',
  'item',
  'would',
  'accept',
  'get',
  'much',
  'pink',
  'gone',
  'balanc',
  'bit',
  'get',
  'green',
  'jacket',
  'someth',
  'younger',
  'aunt',
  'taken',
  'great',
  'offens',
  'boy',
  'boy',
  'girl',
  'girl',
  'verbal',
  'loud',
  'person',
  'let',
  'us',
  'know',
  'sever',
  'time',
  'opinion',
  'two',
  'boy',
  'babi',
  'shower',
  'older',
  'aunt',
  'gift',
  'us',
  'book',
  'call',
  'goodnight',
  'construct',
  'site',
  'littl',
  'stuf',
  'truck',
  'younger',
  'aunt',
  'went',
  'tirad',
  'somehow',
  'make',
  'daughter',
  'tran',
  'allow',
  'girl',
  'loud',
  'person',
  'cours',
  'say',
  'like',
  'yell',
  'front',
  'liber',
  'in-law',
  'support',
  'choic',
  'pregnanc',
  'hormon',
  'took',
  'grab',
  'toy',
  'gave',
  'younger',
  'aunt',
  'ask',
  'part',
  'peni',
  'need',
  'oper',
  'toy',
  'truck',
  'yell',
  'meant',
  'left',
  'rest',
  'babi',
  'shower',
  'went',
  'fine',
  'bit',
  'awkward',
  'sinc',
  'blow',
  'facebook',
  'bunch',
  'peopl',
  'agre',
  'make',
  'daughter',
  'tran',
  'tell',
  'asshol',
  'rest',
  'think',
  'fine',
  'handl',
  'way',
  'asshol',
  'edit',
  'add',
  'wow',
  'realli',
  'blew',
  'anticip',
  'much',
  'respons',
  'answer',
  'question',
  'care',
  'end',
  'love',
  'pink',
  'unicorn',
  'etc',
  'get',
  'tri',
  'balanc',
  'sheer',
  'amount',
  'pink',
  'item',
  'get',
  'friend',
  'famili',
  'almost',
  'everi',
  'singl',
  'gift',
  'heavili',
  'pink',
  'girl',
  'influenc',
  'point',
  'would',
  'dress',
  'anyth',
  'pink',
  'go',
  'buy',
  'boy',
  'thing',
  'also',
  'gener',
  'person',
  'argu',
  'feel',
  'like',
  'bit',
  'ahol',
  'intent',
  'said',
  'deadpan',
  'seriou',
  'could',
  'intent',
  'embarrass',
  'front',
  'famili',
  'member',
  'present',
  'deliveri',
  'question',
  'intend',
  'effect',
  'went',
  'quit',
  'red',
  'leav',
  'also',
  'first',
  'transphob',
  'comment',
  'ive',
  'ever',
  'heard',
  'mouth',
  'grew',
  'quit',
  'conserv',
  'older',
  'aunt',
  'come',
  'year',
  'ago',
  'realli',
  'chang',
  'famili',
  'perspect',
  'grandpar',
  'chang',
  'previous',
  'view',
  'aunt',
  'alway',
  'support',
  'aunt',
  'younger',
  'aunt',
  'alway',
  'want',
  'girl',
  'thought',
  'tri',
  'act',
  'fantasi',
  'girl',
  'gift',
  'prefer',
  'expect_first',
  'first_daughter',
  'daughter_husband',
  'husband_septemb',
  'septemb_grew',
  'grew_moder',
  'moder_religi',
  'religi_household',
  'household_pretti',
  'pretti_strictli',
  'strictli_defin',
  'defin_gender',
  'gender_role',
  'role_sinc',
  'sinc_girl',
  'girl_chore',
  'chore_around',
  'around_hous',
  'hous_younger',
  'younger_brother',
  'brother_anyth',
  'anyth_talk',
  'talk_parent',
  'parent_varieti',
  'varieti_reason',
  'reason_go',
  'go_year',
  'year_know',
  'know_pregnant',
  'pregnant_aunt',
  'aunt_grandpar',
  'grandpar_support',
  'support_leav',
  'leav_household',
  'household_main',
  'main_famili',
  'famili_month',
  'month_pregnant',
  'pregnant_peopl',
  'peopl_start',
  'start_give',
  'give_gift',
  'gift_grate',
  'grate_decid',
  'decid_want',
  'want_daughter',
  'daughter_surround',
  'surround_pink',
  'pink_everyth',
  'everyth_girl',
  'girl_thing',
  'thing_made',
  'made_consciou',
  'consciou_effort',
  'effort_includ',
  'includ_tradit',
  'tradit_boy',
  'boy_outfit',
  'outfit_toy',
  'toy_like',
  'like_dinosaur',
  'dinosaur_car',
  'car_told',
  'told_peopl',
  'peopl_gender',
  'gender_item',
  'item_would',
  'would_accept',
  'accept_get',
  'get_much',
  'much_pink',
  'pink_gone',
  'gone_balanc',
  'balanc_bit',
  'bit_get',
  'get_green',
  'green_jacket',
  'jacket_someth',
  'someth_younger',
  'younger_aunt',
  'aunt_taken',
  'taken_great',
  'great_offens',
  'offens_boy',
  'boy_boy',
  'boy_girl',
  'girl_girl',
  'girl_verbal',
  'verbal_loud',
  'loud_person',
  'person_let',
  'let_us',
  'us_know',
  'know_sever',
  'sever_time',
  'time_opinion',
  'opinion_two',
  'two_boy',
  'boy_babi',
  'babi_shower',
  'shower_older',
  'older_aunt',
  'aunt_gift',
  'gift_us',
  'us_book',
  'book_call',
  'call_goodnight',
  'goodnight_construct',
  'construct_site',
  'site_littl',
  'littl_stuf',
  'stuf_truck',
  'truck_younger',
  'younger_aunt',
  'aunt_went',
  'went_tirad',
  'tirad_somehow',
  'somehow_make',
  'make_daughter',
  'daughter_tran',
  'tran_allow',
  'allow_girl',
  'girl_loud',
  'loud_person',
  'person_cours',
  'cours_say',
  'say_like',
  'like_yell',
  'yell_front',
  'front_liber',
  'liber_in-law',
  'in-law_support',
  'support_choic',
  'choic_pregnanc',
  'pregnanc_hormon',
  'hormon_took',
  'took_grab',
  'grab_toy',
  'toy_gave',
  'gave_younger',
  'younger_aunt',
  'aunt_ask',
  'ask_part',
  'part_peni',
  'peni_need',
  'need_oper',
  'oper_toy',
  'toy_truck',
  'truck_yell',
  'yell_meant',
  'meant_left',
  'left_rest',
  'rest_babi',
  'babi_shower',
  'shower_went',
  'went_fine',
  'fine_bit',
  'bit_awkward',
  'awkward_sinc',
  'sinc_blow',
  'blow_facebook',
  'facebook_bunch',
  'bunch_peopl',
  'peopl_agre',
  'agre_make',
  'make_daughter',
  'daughter_tran',
  'tran_tell',
  'tell_asshol',
  'asshol_rest',
  'rest_think',
  'think_fine',
  'fine_handl',
  'handl_way',
  'way_asshol',
  'asshol_edit',
  'edit_add',
  'add_wow',
  'wow_realli',
  'realli_blew',
  'blew_anticip',
  'anticip_much',
  'much_respons',
  'respons_answer',
  'answer_question',
  'question_care',
  'care_end',
  'end_love',
  'love_pink',
  'pink_unicorn',
  'unicorn_etc',
  'etc_get',
  'get_tri',
  'tri_balanc',
  'balanc_sheer',
  'sheer_amount',
  'amount_pink',
  'pink_item',
  'item_get',
  'get_friend',
  'friend_famili',
  'famili_almost',
  'almost_everi',
  'everi_singl',
  'singl_gift',
  'gift_heavili',
  'heavili_pink',
  'pink_girl',
  'girl_influenc',
  'influenc_point',
  'point_would',
  'would_dress',
  'dress_anyth',
  'anyth_pink',
  'pink_go',
  'go_buy',
  'buy_boy',
  'boy_thing',
  'thing_also',
  'also_gener',
  'gener_person',
  'person_argu',
  'argu_feel',
  'feel_like',
  'like_bit',
  'bit_ahol',
  'ahol_intent',
  'intent_said',
  'said_deadpan',
  'deadpan_seriou',
  'seriou_could',
  'could_intent',
  'intent_embarrass',
  'embarrass_front',
  'front_famili',
  'famili_member',
  'member_present',
  'present_deliveri',
  'deliveri_question',
  'question_intend',
  'intend_effect',
  'effect_went',
  'went_quit',
  'quit_red',
  'red_leav',
  'leav_also',
  'also_first',
  'first_transphob',
  'transphob_comment',
  'comment_ive',
  'ive_ever',
  'ever_heard',
  'heard_mouth',
  'mouth_grew',
  'grew_quit',
  'quit_conserv',
  'conserv_older',
  'older_aunt',
  'aunt_come',
  'come_year',
  'year_ago',
  'ago_realli',
  'realli_chang',
  'chang_famili',
  'famili_perspect',
  'perspect_grandpar',
  'grandpar_chang',
  'chang_previous',
  'previous_view',
  'view_aunt',
  'aunt_alway',
  'alway_support',
  'support_aunt',
  'aunt_younger',
  'younger_aunt',
  'aunt_alway',
  'alway_want',
  'want_girl',
  'girl_thought',
  'thought_tri',
  'tri_act',
  'act_fantasi',
  'fantasi_girl',
  'girl_gift',
  'gift_prefer',
  'expect_first_daughter',
  'first_daughter_husband',
  'daughter_husband_septemb',
  'husband_septemb_grew',
  'septemb_grew_moder',
  'grew_moder_religi',
  'moder_religi_household',
  'religi_household_pretti',
  'household_pretti_strictli',
  'pretti_strictli_defin',
  'strictli_defin_gender',
  'defin_gender_role',
  'gender_role_sinc',
  'role_sinc_girl',
  'sinc_girl_chore',
  'girl_chore_around',
  'chore_around_hous',
  'around_hous_younger',
  'hous_younger_brother',
  'younger_brother_anyth',
  'brother_anyth_talk',
  'anyth_talk_parent',
  'talk_parent_varieti',
  'parent_varieti_reason',
  'varieti_reason_go',
  'reason_go_year',
  'go_year_know',
  'year_know_pregnant',
  'know_pregnant_aunt',
  'pregnant_aunt_grandpar',
  'aunt_grandpar_support',
  'grandpar_support_leav',
  'support_leav_household',
  'leav_household_main',
  'household_main_famili',
  'main_famili_month',
  'famili_month_pregnant',
  'month_pregnant_peopl',
  'pregnant_peopl_start',
  'peopl_start_give',
  'start_give_gift',
  'give_gift_grate',
  'gift_grate_decid',
  'grate_decid_want',
  'decid_want_daughter',
  'want_daughter_surround',
  'daughter_surround_pink',
  'surround_pink_everyth',
  'pink_everyth_girl',
  'everyth_girl_thing',
  'girl_thing_made',
  'thing_made_consciou',
  'made_consciou_effort',
  'consciou_effort_includ',
  'effort_includ_tradit',
  'includ_tradit_boy',
  'tradit_boy_outfit',
  'boy_outfit_toy',
  'outfit_toy_like',
  'toy_like_dinosaur',
  'like_dinosaur_car',
  'dinosaur_car_told',
  'car_told_peopl',
  'told_peopl_gender',
  'peopl_gender_item',
  'gender_item_would',
  'item_would_accept',
  'would_accept_get',
  'accept_get_much',
  'get_much_pink',
  'much_pink_gone',
  'pink_gone_balanc',
  'gone_balanc_bit',
  'balanc_bit_get',
  'bit_get_green',
  'get_green_jacket',
  'green_jacket_someth',
  'jacket_someth_younger',
  'someth_younger_aunt',
  'younger_aunt_taken',
  'aunt_taken_great',
  'taken_great_offens',
  'great_offens_boy',
  'offens_boy_boy',
  'boy_boy_girl',
  'boy_girl_girl',
  'girl_girl_verbal',
  'girl_verbal_loud',
  'verbal_loud_person',
  'loud_person_let',
  'person_let_us',
  'let_us_know',
  'us_know_sever',
  'know_sever_time',
  'sever_time_opinion',
  'time_opinion_two',
  'opinion_two_boy',
  'two_boy_babi',
  'boy_babi_shower',
  'babi_shower_older',
  'shower_older_aunt',
  'older_aunt_gift',
  'aunt_gift_us',
  'gift_us_book',
  'us_book_call',
  'book_call_goodnight',
  'call_goodnight_construct',
  'goodnight_construct_site',
  'construct_site_littl',
  'site_littl_stuf',
  'littl_stuf_truck',
  'stuf_truck_younger',
  'truck_younger_aunt',
  'younger_aunt_went',
  'aunt_went_tirad',
  'went_tirad_somehow',
  'tirad_somehow_make',
  'somehow_make_daughter',
  'make_daughter_tran',
  'daughter_tran_allow',
  'tran_allow_girl',
  'allow_girl_loud',
  'girl_loud_person',
  'loud_person_cours',
  'person_cours_say',
  'cours_say_like',
  'say_like_yell',
  'like_yell_front',
  'yell_front_liber',
  'front_liber_in-law',
  'liber_in-law_support',
  'in-law_support_choic',
  'support_choic_pregnanc',
  'choic_pregnanc_hormon',
  'pregnanc_hormon_took',
  'hormon_took_grab',
  'took_grab_toy',
  'grab_toy_gave',
  'toy_gave_younger',
  'gave_younger_aunt',
  'younger_aunt_ask',
  'aunt_ask_part',
  'ask_part_peni',
  'part_peni_need',
  'peni_need_oper',
  'need_oper_toy',
  'oper_toy_truck',
  'toy_truck_yell',
  'truck_yell_meant',
  'yell_meant_left',
  'meant_left_rest',
  'left_rest_babi',
  'rest_babi_shower',
  'babi_shower_went',
  'shower_went_fine',
  'went_fine_bit',
  'fine_bit_awkward',
  'bit_awkward_sinc',
  'awkward_sinc_blow',
  'sinc_blow_facebook',
  'blow_facebook_bunch',
  'facebook_bunch_peopl',
  'bunch_peopl_agre',
  'peopl_agre_make',
  'agre_make_daughter',
  'make_daughter_tran',
  'daughter_tran_tell',
  'tran_tell_asshol',
  'tell_asshol_rest',
  'asshol_rest_think',
  'rest_think_fine',
  'think_fine_handl',
  'fine_handl_way',
  'handl_way_asshol',
  'way_asshol_edit',
  'asshol_edit_add',
  'edit_add_wow',
  'add_wow_realli',
  'wow_realli_blew',
  'realli_blew_anticip',
  'blew_anticip_much',
  'anticip_much_respons',
  'much_respons_answer',
  'respons_answer_question',
  'answer_question_care',
  'question_care_end',
  'care_end_love',
  'end_love_pink',
  'love_pink_unicorn',
  'pink_unicorn_etc',
  'unicorn_etc_get',
  'etc_get_tri',
  'get_tri_balanc',
  'tri_balanc_sheer',
  'balanc_sheer_amount',
  'sheer_amount_pink',
  'amount_pink_item',
  'pink_item_get',
  'item_get_friend',
  'get_friend_famili',
  'friend_famili_almost',
  'famili_almost_everi',
  'almost_everi_singl',
  'everi_singl_gift',
  'singl_gift_heavili',
  'gift_heavili_pink',
  'heavili_pink_girl',
  'pink_girl_influenc',
  'girl_influenc_point',
  'influenc_point_would',
  'point_would_dress',
  'would_dress_anyth',
  'dress_anyth_pink',
  'anyth_pink_go',
  'pink_go_buy',
  'go_buy_boy',
  'buy_boy_thing',
  'boy_thing_also',
  'thing_also_gener',
  'also_gener_person',
  'gener_person_argu',
  'person_argu_feel',
  'argu_feel_like',
  'feel_like_bit',
  'like_bit_ahol',
  'bit_ahol_intent',
  'ahol_intent_said',
  'intent_said_deadpan',
  'said_deadpan_seriou',
  'deadpan_seriou_could',
  'seriou_could_intent',
  'could_intent_embarrass',
  'intent_embarrass_front',
  'embarrass_front_famili',
  'front_famili_member',
  'famili_member_present',
  'member_present_deliveri',
  'present_deliveri_question',
  'deliveri_question_intend',
  'question_intend_effect',
  'intend_effect_went',
  'effect_went_quit',
  'went_quit_red',
  'quit_red_leav',
  'red_leav_also',
  'leav_also_first',
  'also_first_transphob',
  'first_transphob_comment',
  'transphob_comment_ive',
  'comment_ive_ever',
  'ive_ever_heard',
  'ever_heard_mouth',
  'heard_mouth_grew',
  'mouth_grew_quit',
  'grew_quit_conserv',
  'quit_conserv_older',
  'conserv_older_aunt',
  'older_aunt_come',
  'aunt_come_year',
  'come_year_ago',
  'year_ago_realli',
  'ago_realli_chang',
  'realli_chang_famili',
  'chang_famili_perspect',
  'famili_perspect_grandpar',
  'perspect_grandpar_chang',
  'grandpar_chang_previous',
  'chang_previous_view',
  'previous_view_aunt',
  'view_aunt_alway',
  'aunt_alway_support',
  'alway_support_aunt',
  'support_aunt_younger',
  'aunt_younger_aunt',
  'younger_aunt_alway',
  'aunt_alway_want',
  'alway_want_girl',
  'want_girl_thought',
  'girl_thought_tri',
  'thought_tri_act',
  'tri_act_fantasi',
  'act_fantasi_girl',
  'fantasi_girl_gift',
  'girl_gift_prefer'],
 ['im',
  'yo',
  'twin',
  'boy',
  'babi',
  'girl',
  'even',
  'two',
  'day',
  'ago',
  'sister',
  'jodi',
  'suffer',
  'infertil',
  'past',
  'year',
  'well',
  'repeat',
  'miscarriag',
  'use',
  'feel',
  'realli',
  'bad',
  'also',
  'bit',
  'guilti',
  'got',
  'pregnant',
  'twice',
  'contracept',
  'caus',
  'tension',
  'us',
  'pregnant',
  'twin',
  'jealou',
  'alreadi',
  'feel',
  'intens',
  'guilt',
  'time',
  'around',
  'jealou',
  'still',
  'felt',
  'unfair',
  'husband',
  'decid',
  'done',
  'kid',
  'offer',
  'surrog',
  'sister',
  'soon',
  'im',
  'clear',
  'babi',
  'seem',
  'like',
  'absolut',
  'moon',
  'turn',
  'offer',
  'watch',
  'twin',
  'labour',
  'new',
  'babi',
  'relief',
  'part',
  'went',
  'labour',
  'thursday',
  'morn',
  'jodi',
  'came',
  'watch',
  'kid',
  'husband',
  'went',
  'hospit',
  'seem',
  'like',
  'great',
  'mood',
  'promptli',
  'rush',
  'us',
  'door',
  'everyth',
  'seem',
  'fine',
  'got',
  'home',
  'morn',
  'find',
  'thousand',
  'worth',
  'destruct',
  'pretti',
  'much',
  'everi',
  'babi',
  'item',
  'weve',
  'purchas',
  'even',
  'crib',
  'mattress',
  'torn',
  'open',
  'everyth',
  'ruin',
  'jodi',
  'tri',
  'pin',
  'twin',
  'theyr',
  'level',
  'destruct',
  'done',
  'adult',
  'twin',
  'cant',
  'even',
  'reach',
  'stuff',
  'destroy',
  'certainli',
  'know',
  'open',
  'diaper',
  'packag',
  'tear',
  'apart',
  'know',
  'kid',
  'especi',
  'toddler',
  'lot',
  'damag',
  'short',
  'time',
  'also',
  'know',
  'children',
  'capabl',
  'happen',
  'told',
  'sister',
  'get',
  'fuck',
  'home',
  'stay',
  'away',
  'famili',
  'got',
  'realli',
  'angri',
  'said',
  'lot',
  'stuff',
  'one',
  'hope',
  'never',
  'child',
  'ill',
  'tell',
  'exactli',
  'done',
  'mine',
  'told',
  'cant',
  'afford',
  'fix',
  'damag',
  'caus',
  'sinc',
  'still',
  'deni',
  'cough',
  'told',
  'babi',
  'even',
  'safe',
  'space',
  'sleep',
  'parent',
  'caught',
  'wind',
  'said',
  'even',
  'explain',
  'situat',
  'still',
  'think',
  'im',
  'asshol',
  'say',
  'someth',
  'vile',
  'sister',
  'done',
  'us',
  'obvious',
  'judgement',
  'cloud',
  'asshol',
  'im_yo',
  'yo_twin',
  'twin_boy',
  'boy_babi',
  'babi_girl',
  'girl_even',
  'even_two',
  'two_day',
  'day_ago',
  'ago_sister',
  'sister_jodi',
  'jodi_suffer',
  'suffer_infertil',
  'infertil_past',
  'past_year',
  'year_well',
  'well_repeat',
  'repeat_miscarriag',
  'miscarriag_use',
  'use_feel',
  'feel_realli',
  'realli_bad',
  'bad_also',
  'also_bit',
  'bit_guilti',
  'guilti_got',
  'got_pregnant',
  'pregnant_twice',
  'twice_contracept',
  'contracept_caus',
  'caus_tension',
  'tension_us',
  'us_pregnant',
  'pregnant_twin',
  'twin_jealou',
  'jealou_alreadi',
  'alreadi_feel',
  'feel_intens',
  'intens_guilt',
  'guilt_time',
  'time_around',
  'around_jealou',
  'jealou_still',
  'still_felt',
  'felt_unfair',
  'unfair_husband',
  'husband_decid',
  'decid_done',
  'done_kid',
  'kid_offer',
  'offer_surrog',
  'surrog_sister',
  'sister_soon',
  'soon_im',
  'im_clear',
  'clear_babi',
  'babi_seem',
  'seem_like',
  'like_absolut',
  'absolut_moon',
  'moon_turn',
  'turn_offer',
  'offer_watch',
  'watch_twin',
  'twin_labour',
  'labour_new',
  'new_babi',
  'babi_relief',
  'relief_part',
  'part_went',
  'went_labour',
  'labour_thursday',
  'thursday_morn',
  'morn_jodi',
  'jodi_came',
  'came_watch',
  'watch_kid',
  'kid_husband',
  'husband_went',
  'went_hospit',
  'hospit_seem',
  'seem_like',
  'like_great',
  'great_mood',
  'mood_promptli',
  'promptli_rush',
  'rush_us',
  'us_door',
  'door_everyth',
  'everyth_seem',
  'seem_fine',
  'fine_got',
  'got_home',
  'home_morn',
  'morn_find',
  'find_thousand',
  'thousand_worth',
  'worth_destruct',
  'destruct_pretti',
  'pretti_much',
  'much_everi',
  'everi_babi',
  'babi_item',
  'item_weve',
  'weve_purchas',
  'purchas_even',
  'even_crib',
  'crib_mattress',
  'mattress_torn',
  'torn_open',
  'open_everyth',
  'everyth_ruin',
  'ruin_jodi',
  'jodi_tri',
  'tri_pin',
  'pin_twin',
  'twin_theyr',
  'theyr_level',
  'level_destruct',
  'destruct_done',
  'done_adult',
  'adult_twin',
  'twin_cant',
  'cant_even',
  'even_reach',
  'reach_stuff',
  'stuff_destroy',
  'destroy_certainli',
  'certainli_know',
  'know_open',
  'open_diaper',
  'diaper_packag',
  'packag_tear',
  'tear_apart',
  'apart_know',
  'know_kid',
  'kid_especi',
  'especi_toddler',
  'toddler_lot',
  'lot_damag',
  'damag_short',
  'short_time',
  'time_also',
  'also_know',
  'know_children',
  'children_capabl',
  'capabl_happen',
  'happen_told',
  'told_sister',
  'sister_get',
  'get_fuck',
  'fuck_home',
  'home_stay',
  'stay_away',
  'away_famili',
  'famili_got',
  'got_realli',
  'realli_angri',
  'angri_said',
  'said_lot',
  'lot_stuff',
  'stuff_one',
  'one_hope',
  'hope_never',
  'never_child',
  'child_ill',
  'ill_tell',
  'tell_exactli',
  'exactli_done',
  'done_mine',
  'mine_told',
  'told_cant',
  'cant_afford',
  'afford_fix',
  'fix_damag',
  'damag_caus',
  'caus_sinc',
  'sinc_still',
  'still_deni',
  'deni_cough',
  'cough_told',
  'told_babi',
  'babi_even',
  'even_safe',
  'safe_space',
  'space_sleep',
  'sleep_parent',
  'parent_caught',
  'caught_wind',
  'wind_said',
  'said_even',
  'even_explain',
  'explain_situat',
  'situat_still',
  'still_think',
  'think_im',
  'im_asshol',
  'asshol_say',
  'say_someth',
  'someth_vile',
  'vile_sister',
  'sister_done',
  'done_us',
  'us_obvious',
  'obvious_judgement',
  'judgement_cloud',
  'cloud_asshol',
  'im_yo_twin',
  'yo_twin_boy',
  'twin_boy_babi',
  'boy_babi_girl',
  'babi_girl_even',
  'girl_even_two',
  'even_two_day',
  'two_day_ago',
  'day_ago_sister',
  'ago_sister_jodi',
  'sister_jodi_suffer',
  'jodi_suffer_infertil',
  'suffer_infertil_past',
  'infertil_past_year',
  'past_year_well',
  'year_well_repeat',
  'well_repeat_miscarriag',
  'repeat_miscarriag_use',
  'miscarriag_use_feel',
  'use_feel_realli',
  'feel_realli_bad',
  'realli_bad_also',
  'bad_also_bit',
  'also_bit_guilti',
  'bit_guilti_got',
  'guilti_got_pregnant',
  'got_pregnant_twice',
  'pregnant_twice_contracept',
  'twice_contracept_caus',
  'contracept_caus_tension',
  'caus_tension_us',
  'tension_us_pregnant',
  'us_pregnant_twin',
  'pregnant_twin_jealou',
  'twin_jealou_alreadi',
  'jealou_alreadi_feel',
  'alreadi_feel_intens',
  'feel_intens_guilt',
  'intens_guilt_time',
  'guilt_time_around',
  'time_around_jealou',
  'around_jealou_still',
  'jealou_still_felt',
  'still_felt_unfair',
  'felt_unfair_husband',
  'unfair_husband_decid',
  'husband_decid_done',
  'decid_done_kid',
  'done_kid_offer',
  'kid_offer_surrog',
  'offer_surrog_sister',
  'surrog_sister_soon',
  'sister_soon_im',
  'soon_im_clear',
  'im_clear_babi',
  'clear_babi_seem',
  'babi_seem_like',
  'seem_like_absolut',
  'like_absolut_moon',
  'absolut_moon_turn',
  'moon_turn_offer',
  'turn_offer_watch',
  'offer_watch_twin',
  'watch_twin_labour',
  'twin_labour_new',
  'labour_new_babi',
  'new_babi_relief',
  'babi_relief_part',
  'relief_part_went',
  'part_went_labour',
  'went_labour_thursday',
  'labour_thursday_morn',
  'thursday_morn_jodi',
  'morn_jodi_came',
  'jodi_came_watch',
  'came_watch_kid',
  'watch_kid_husband',
  'kid_husband_went',
  'husband_went_hospit',
  'went_hospit_seem',
  'hospit_seem_like',
  'seem_like_great',
  'like_great_mood',
  'great_mood_promptli',
  'mood_promptli_rush',
  'promptli_rush_us',
  'rush_us_door',
  'us_door_everyth',
  'door_everyth_seem',
  'everyth_seem_fine',
  'seem_fine_got',
  'fine_got_home',
  'got_home_morn',
  'home_morn_find',
  'morn_find_thousand',
  'find_thousand_worth',
  'thousand_worth_destruct',
  'worth_destruct_pretti',
  'destruct_pretti_much',
  'pretti_much_everi',
  'much_everi_babi',
  'everi_babi_item',
  'babi_item_weve',
  'item_weve_purchas',
  'weve_purchas_even',
  'purchas_even_crib',
  'even_crib_mattress',
  'crib_mattress_torn',
  'mattress_torn_open',
  'torn_open_everyth',
  'open_everyth_ruin',
  'everyth_ruin_jodi',
  'ruin_jodi_tri',
  'jodi_tri_pin',
  'tri_pin_twin',
  'pin_twin_theyr',
  'twin_theyr_level',
  'theyr_level_destruct',
  'level_destruct_done',
  'destruct_done_adult',
  'done_adult_twin',
  'adult_twin_cant',
  'twin_cant_even',
  'cant_even_reach',
  'even_reach_stuff',
  'reach_stuff_destroy',
  'stuff_destroy_certainli',
  'destroy_certainli_know',
  'certainli_know_open',
  'know_open_diaper',
  'open_diaper_packag',
  'diaper_packag_tear',
  'packag_tear_apart',
  'tear_apart_know',
  'apart_know_kid',
  'know_kid_especi',
  'kid_especi_toddler',
  'especi_toddler_lot',
  'toddler_lot_damag',
  'lot_damag_short',
  'damag_short_time',
  'short_time_also',
  'time_also_know',
  'also_know_children',
  'know_children_capabl',
  'children_capabl_happen',
  'capabl_happen_told',
  'happen_told_sister',
  'told_sister_get',
  'sister_get_fuck',
  'get_fuck_home',
  'fuck_home_stay',
  'home_stay_away',
  'stay_away_famili',
  'away_famili_got',
  'famili_got_realli',
  'got_realli_angri',
  'realli_angri_said',
  'angri_said_lot',
  'said_lot_stuff',
  'lot_stuff_one',
  'stuff_one_hope',
  'one_hope_never',
  'hope_never_child',
  'never_child_ill',
  'child_ill_tell',
  'ill_tell_exactli',
  'tell_exactli_done',
  'exactli_done_mine',
  'done_mine_told',
  'mine_told_cant',
  'told_cant_afford',
  'cant_afford_fix',
  'afford_fix_damag',
  'fix_damag_caus',
  'damag_caus_sinc',
  'caus_sinc_still',
  'sinc_still_deni',
  'still_deni_cough',
  'deni_cough_told',
  'cough_told_babi',
  'told_babi_even',
  'babi_even_safe',
  'even_safe_space',
  'safe_space_sleep',
  'space_sleep_parent',
  'sleep_parent_caught',
  'parent_caught_wind',
  'caught_wind_said',
  'wind_said_even',
  'said_even_explain',
  'even_explain_situat',
  'explain_situat_still',
  'situat_still_think',
  'still_think_im',
  'think_im_asshol',
  'im_asshol_say',
  'asshol_say_someth',
  'say_someth_vile',
  'someth_vile_sister',
  'vile_sister_done',
  'sister_done_us',
  'done_us_obvious',
  'us_obvious_judgement',
  'obvious_judgement_cloud',
  'judgement_cloud_asshol'],
 ['husband',
  '&',
  'expect',
  'babi',
  'boy',
  'bare',
  'catch',
  'preper',
  'get',
  'everyth',
  'readi',
  'mom',
  'kind',
  'busi',
  'bodi',
  'type',
  'help',
  'time',
  'invit',
  'us',
  'dinner',
  'said',
  'import',
  'request',
  'make',
  'brought',
  'request',
  'dinner',
  'tabl',
  'blatantli',
  'said',
  'want',
  'deliveri',
  'room',
  'give',
  'birth',
  'taken',
  'back',
  'request',
  '--',
  'realli',
  'thought',
  'someth',
  'nurseri',
  'diaper',
  'brand',
  'said',
  'sorri',
  'mom',
  'husband',
  'made',
  'face',
  'got',
  'quiet',
  'brought',
  'kept',
  'push',
  'say',
  'much',
  'grandmoth',
  'mom',
  'want',
  'support',
  'get',
  'opportun',
  'see',
  'grandbabi',
  'first',
  'moment',
  'husband',
  'side',
  'stare',
  'said',
  'alright',
  'opportun',
  'deliveri',
  'room',
  'son',
  'give',
  'birth',
  'everyon',
  'stop',
  'eat',
  'mother',
  'law',
  'left',
  'tabl',
  'instanc',
  'husband',
  'got',
  'although',
  'finish',
  'dinner',
  'said',
  'leav',
  'car',
  'lost',
  'ask',
  'brain',
  'cell',
  'made',
  'think',
  'good',
  'idea',
  'tell',
  'mom',
  'told',
  'mom',
  'kept',
  'push',
  'id',
  'alreadi',
  'given',
  'answer',
  'still',
  'said',
  'fuck',
  'shit',
  'heard',
  'say',
  'repli',
  'frustrat',
  'mean',
  'hurt',
  'feel',
  'caus',
  'issu',
  'argu',
  'want',
  'issu',
  'stop',
  'make',
  'shit',
  'difficult',
  'say',
  'ye',
  'mom',
  'request',
  'rant',
  'son',
  'said',
  'mom',
  'allow',
  'know',
  'realli',
  'meant',
  'said',
  'hear',
  'moment',
  'fume',
  'ignor',
  'tri',
  'talk',
  'act',
  'like',
  'im',
  'room',
  'think',
  'might',
  'gone',
  'far',
  'creat',
  'tension',
  'respond',
  'inappropri',
  'aita',
  'edit',
  'tension',
  'husband',
  'famili',
  'late',
  'probabl',
  'blew',
  'built',
  'resent',
  'husband_&',
  '&_expect',
  'expect_babi',
  'babi_boy',
  'boy_bare',
  'bare_catch',
  'catch_preper',
  'preper_get',
  'get_everyth',
  'everyth_readi',
  'readi_mom',
  'mom_kind',
  'kind_busi',
  'busi_bodi',
  'bodi_type',
  'type_help',
  'help_time',
  'time_invit',
  'invit_us',
  'us_dinner',
  'dinner_said',
  'said_import',
  'import_request',
  'request_make',
  'make_brought',
  'brought_request',
  'request_dinner',
  'dinner_tabl',
  'tabl_blatantli',
  'blatantli_said',
  'said_want',
  'want_deliveri',
  'deliveri_room',
  'room_give',
  'give_birth',
  'birth_taken',
  'taken_back',
  'back_request',
  'request_--',
  '--_realli',
  'realli_thought',
  'thought_someth',
  'someth_nurseri',
  'nurseri_diaper',
  'diaper_brand',
  'brand_said',
  'said_sorri',
  'sorri_mom',
  'mom_husband',
  'husband_made',
  'made_face',
  'face_got',
  'got_quiet',
  'quiet_brought',
  'brought_kept',
  'kept_push',
  'push_say',
  'say_much',
  'much_grandmoth',
  'grandmoth_mom',
  'mom_want',
  'want_support',
  'support_get',
  'get_opportun',
  'opportun_see',
  'see_grandbabi',
  'grandbabi_first',
  'first_moment',
  'moment_husband',
  'husband_side',
  'side_stare',
  'stare_said',
  'said_alright',
  'alright_opportun',
  'opportun_deliveri',
  'deliveri_room',
  'room_son',
  'son_give',
  'give_birth',
  'birth_everyon',
  'everyon_stop',
  'stop_eat',
  'eat_mother',
  'mother_law',
  'law_left',
  'left_tabl',
  'tabl_instanc',
  'instanc_husband',
  'husband_got',
  'got_although',
  'although_finish',
  'finish_dinner',
  'dinner_said',
  'said_leav',
  'leav_car',
  'car_lost',
  'lost_ask',
  'ask_brain',
  'brain_cell',
  'cell_made',
  'made_think',
  'think_good',
  'good_idea',
  'idea_tell',
  'tell_mom',
  'mom_told',
  'told_mom',
  'mom_kept',
  'kept_push',
  'push_id',
  'id_alreadi',
  'alreadi_given',
  'given_answer',
  'answer_still',
  'still_said',
  'said_fuck',
  'fuck_shit',
  'shit_heard',
  'heard_say',
  'say_repli',
  'repli_frustrat',
  'frustrat_mean',
  'mean_hurt',
  'hurt_feel',
  'feel_caus',
  'caus_issu',
  'issu_argu',
  'argu_want',
  'want_issu',
  'issu_stop',
  'stop_make',
  'make_shit',
  'shit_difficult',
  'difficult_say',
  'say_ye',
  'ye_mom',
  'mom_request',
  'request_rant',
  'rant_son',
  'son_said',
  'said_mom',
  'mom_allow',
  'allow_know',
  'know_realli',
  'realli_meant',
  'meant_said',
  'said_hear',
  'hear_moment',
  'moment_fume',
  'fume_ignor',
  'ignor_tri',
  'tri_talk',
  'talk_act',
  'act_like',
  'like_im',
  'im_room',
  'room_think',
  'think_might',
  'might_gone',
  'gone_far',
  'far_creat',
  'creat_tension',
  'tension_respond',
  'respond_inappropri',
  'inappropri_aita',
  'aita_edit',
  'edit_tension',
  'tension_husband',
  'husband_famili',
  'famili_late',
  'late_probabl',
  'probabl_blew',
  'blew_built',
  'built_resent',
  'husband_&_expect',
  '&_expect_babi',
  'expect_babi_boy',
  'babi_boy_bare',
  'boy_bare_catch',
  'bare_catch_preper',
  'catch_preper_get',
  'preper_get_everyth',
  'get_everyth_readi',
  'everyth_readi_mom',
  'readi_mom_kind',
  'mom_kind_busi',
  'kind_busi_bodi',
  'busi_bodi_type',
  'bodi_type_help',
  'type_help_time',
  'help_time_invit',
  'time_invit_us',
  'invit_us_dinner',
  'us_dinner_said',
  'dinner_said_import',
  'said_import_request',
  'import_request_make',
  'request_make_brought',
  'make_brought_request',
  'brought_request_dinner',
  'request_dinner_tabl',
  'dinner_tabl_blatantli',
  'tabl_blatantli_said',
  'blatantli_said_want',
  'said_want_deliveri',
  'want_deliveri_room',
  'deliveri_room_give',
  'room_give_birth',
  'give_birth_taken',
  'birth_taken_back',
  'taken_back_request',
  'back_request_--',
  'request_--_realli',
  '--_realli_thought',
  'realli_thought_someth',
  'thought_someth_nurseri',
  'someth_nurseri_diaper',
  'nurseri_diaper_brand',
  'diaper_brand_said',
  'brand_said_sorri',
  'said_sorri_mom',
  'sorri_mom_husband',
  'mom_husband_made',
  'husband_made_face',
  'made_face_got',
  'face_got_quiet',
  'got_quiet_brought',
  'quiet_brought_kept',
  'brought_kept_push',
  'kept_push_say',
  'push_say_much',
  'say_much_grandmoth',
  'much_grandmoth_mom',
  'grandmoth_mom_want',
  'mom_want_support',
  'want_support_get',
  'support_get_opportun',
  'get_opportun_see',
  'opportun_see_grandbabi',
  'see_grandbabi_first',
  'grandbabi_first_moment',
  'first_moment_husband',
  'moment_husband_side',
  'husband_side_stare',
  'side_stare_said',
  'stare_said_alright',
  'said_alright_opportun',
  'alright_opportun_deliveri',
  'opportun_deliveri_room',
  'deliveri_room_son',
  'room_son_give',
  'son_give_birth',
  'give_birth_everyon',
  'birth_everyon_stop',
  'everyon_stop_eat',
  'stop_eat_mother',
  'eat_mother_law',
  'mother_law_left',
  'law_left_tabl',
  'left_tabl_instanc',
  'tabl_instanc_husband',
  'instanc_husband_got',
  'husband_got_although',
  'got_although_finish',
  'although_finish_dinner',
  'finish_dinner_said',
  'dinner_said_leav',
  'said_leav_car',
  'leav_car_lost',
  'car_lost_ask',
  'lost_ask_brain',
  'ask_brain_cell',
  'brain_cell_made',
  'cell_made_think',
  'made_think_good',
  'think_good_idea',
  'good_idea_tell',
  'idea_tell_mom',
  'tell_mom_told',
  'mom_told_mom',
  'told_mom_kept',
  'mom_kept_push',
  'kept_push_id',
  'push_id_alreadi',
  'id_alreadi_given',
  'alreadi_given_answer',
  'given_answer_still',
  'answer_still_said',
  'still_said_fuck',
  'said_fuck_shit',
  'fuck_shit_heard',
  'shit_heard_say',
  'heard_say_repli',
  'say_repli_frustrat',
  'repli_frustrat_mean',
  'frustrat_mean_hurt',
  'mean_hurt_feel',
  'hurt_feel_caus',
  'feel_caus_issu',
  'caus_issu_argu',
  'issu_argu_want',
  'argu_want_issu',
  'want_issu_stop',
  'issu_stop_make',
  'stop_make_shit',
  'make_shit_difficult',
  'shit_difficult_say',
  'difficult_say_ye',
  'say_ye_mom',
  'ye_mom_request',
  'mom_request_rant',
  'request_rant_son',
  'rant_son_said',
  'son_said_mom',
  'said_mom_allow',
  'mom_allow_know',
  'allow_know_realli',
  'know_realli_meant',
  'realli_meant_said',
  'meant_said_hear',
  'said_hear_moment',
  'hear_moment_fume',
  'moment_fume_ignor',
  'fume_ignor_tri',
  'ignor_tri_talk',
  'tri_talk_act',
  'talk_act_like',
  'act_like_im',
  'like_im_room',
  'im_room_think',
  'room_think_might',
  'think_might_gone',
  'might_gone_far',
  'gone_far_creat',
  'far_creat_tension',
  'creat_tension_respond',
  'tension_respond_inappropri',
  'respond_inappropri_aita',
  'inappropri_aita_edit',
  'aita_edit_tension',
  'edit_tension_husband',
  'tension_husband_famili',
  'husband_famili_late',
  'famili_late_probabl',
  'late_probabl_blew',
  'probabl_blew_built',
  'blew_built_resent'],
 ['daughter',
  'old',
  'phone',
  'year',
  'alway',
  'want',
  'new',
  'phone',
  'im',
  'one',
  'work',
  'right',
  'sinc',
  'husband',
  'decid',
  'take',
  'break',
  'work',
  'inherit',
  'money',
  'dad',
  'saw',
  'pretti',
  'good',
  'school',
  'despit',
  'mental',
  'health',
  'issu',
  'gotten',
  'way',
  'focu',
  'decid',
  'keep',
  'encourag',
  'reward',
  'get',
  'appl',
  'iphon',
  'cost',
  'good',
  'sum',
  'money',
  'best',
  'save',
  'money',
  'buy',
  'liter',
  'skip',
  'pay',
  'breakfast',
  'work',
  'abl',
  'afford',
  'husband',
  'want',
  'help',
  'bought',
  'iphon',
  'quit',
  'honestli',
  'seen',
  'happi',
  'refresh',
  'realli',
  'went',
  'hard',
  'time',
  'past',
  'coupl',
  'year',
  'emot',
  'mental',
  'husband',
  'happi',
  'said',
  'iphon',
  'distract',
  'school',
  'chore',
  'true',
  'fact',
  'encourag',
  'still',
  'said',
  'spent',
  'kind',
  'money',
  'iphon',
  'might',
  'irrespons',
  'break',
  'daughter',
  'pick',
  'attitud',
  'toward',
  'iphon',
  'told',
  'ignor',
  'day',
  'ago',
  'found',
  'broke',
  'iphon',
  'ask',
  'said',
  'ask',
  'get',
  'someth',
  'toolbox',
  'garag',
  'iphon',
  'ignor',
  'use',
  'incid',
  'evid',
  'iphon',
  'bad',
  'influenc',
  'yell',
  'demand',
  'replac',
  'said',
  'took',
  'money',
  'account',
  'paid',
  'new',
  'iphon',
  'gave',
  'daughter',
  'saw',
  'went',
  'call',
  'viciou',
  'aw',
  'accus',
  'steal',
  'father',
  'money',
  'demand',
  'money',
  'took',
  'everi',
  'singl',
  'penni',
  'back',
  'basic',
  'told',
  'happen',
  'got',
  'mother',
  'say',
  'im',
  'set',
  'terribl',
  'exampl',
  'daughter',
  'get',
  'phone',
  'paid',
  'money',
  'stole',
  'dad',
  'husband',
  'said',
  'speak',
  'word',
  'til',
  'fix',
  'alreadi',
  'said',
  'owe',
  'noth',
  'aita',
  'eta',
  'biolog',
  'father',
  'stepdad',
  'price',
  'iphon',
  'live',
  'thousand',
  'dollar',
  'cheap',
  'find',
  'took',
  'thousand',
  'dollar',
  'inherit',
  'realli',
  'got',
  'furiou',
  'said',
  'worst',
  'woman',
  'met',
  'life',
  'ex',
  'wife',
  'way',
  'relev',
  'took',
  'back',
  'later',
  'said',
  'speak',
  'til',
  'money',
  'back',
  'daughter_old',
  'old_phone',
  'phone_year',
  'year_alway',
  'alway_want',
  'want_new',
  'new_phone',
  'phone_im',
  'im_one',
  'one_work',
  'work_right',
  'right_sinc',
  'sinc_husband',
  'husband_decid',
  'decid_take',
  'take_break',
  'break_work',
  'work_inherit',
  'inherit_money',
  'money_dad',
  'dad_saw',
  'saw_pretti',
  'pretti_good',
  'good_school',
  'school_despit',
  'despit_mental',
  'mental_health',
  'health_issu',
  'issu_gotten',
  'gotten_way',
  'way_focu',
  'focu_decid',
  'decid_keep',
  'keep_encourag',
  'encourag_reward',
  'reward_get',
  'get_appl',
  'appl_iphon',
  'iphon_cost',
  'cost_good',
  'good_sum',
  'sum_money',
  'money_best',
  'best_save',
  'save_money',
  'money_buy',
  'buy_liter',
  'liter_skip',
  'skip_pay',
  'pay_breakfast',
  'breakfast_work',
  'work_abl',
  'abl_afford',
  'afford_husband',
  'husband_want',
  'want_help',
  'help_bought',
  'bought_iphon',
  'iphon_quit',
  'quit_honestli',
  'honestli_seen',
  'seen_happi',
  'happi_refresh',
  'refresh_realli',
  'realli_went',
  'went_hard',
  'hard_time',
  'time_past',
  'past_coupl',
  'coupl_year',
  'year_emot',
  'emot_mental',
  'mental_husband',
  'husband_happi',
  'happi_said',
  'said_iphon',
  'iphon_distract',
  'distract_school',
  'school_chore',
  'chore_true',
  'true_fact',
  'fact_encourag',
  'encourag_still',
  'still_said',
  'said_spent',
  'spent_kind',
  'kind_money',
  'money_iphon',
  'iphon_might',
  'might_irrespons',
  'irrespons_break',
  'break_daughter',
  'daughter_pick',
  'pick_attitud',
  'attitud_toward',
  'toward_iphon',
  'iphon_told',
  'told_ignor',
  'ignor_day',
  'day_ago',
  'ago_found',
  'found_broke',
  'broke_iphon',
  'iphon_ask',
  'ask_said',
  'said_ask',
  'ask_get',
  'get_someth',
  'someth_toolbox',
  'toolbox_garag',
  'garag_iphon',
  'iphon_ignor',
  'ignor_use',
  'use_incid',
  'incid_evid',
  'evid_iphon',
  'iphon_bad',
  'bad_influenc',
  'influenc_yell',
  'yell_demand',
  'demand_replac',
  'replac_said',
  'said_took',
  'took_money',
  'money_account',
  'account_paid',
  'paid_new',
  'new_iphon',
  'iphon_gave',
  'gave_daughter',
  'daughter_saw',
  'saw_went',
  'went_call',
  'call_viciou',
  'viciou_aw',
  'aw_accus',
  'accus_steal',
  'steal_father',
  'father_money',
  'money_demand',
  'demand_money',
  'money_took',
  'took_everi',
  'everi_singl',
  'singl_penni',
  'penni_back',
  'back_basic',
  'basic_told',
  'told_happen',
  'happen_got',
  'got_mother',
  'mother_say',
  'say_im',
  'im_set',
  'set_terribl',
  'terribl_exampl',
  'exampl_daughter',
  'daughter_get',
  'get_phone',
  'phone_paid',
  'paid_money',
  'money_stole',
  'stole_dad',
  'dad_husband',
  'husband_said',
  'said_speak',
  'speak_word',
  'word_til',
  'til_fix',
  'fix_alreadi',
  'alreadi_said',
  'said_owe',
  'owe_noth',
  'noth_aita',
  'aita_eta',
  'eta_biolog',
  'biolog_father',
  'father_stepdad',
  'stepdad_price',
  'price_iphon',
  'iphon_live',
  'live_thousand',
  'thousand_dollar',
  'dollar_cheap',
  'cheap_find',
  'find_took',
  'took_thousand',
  'thousand_dollar',
  'dollar_inherit',
  'inherit_realli',
  'realli_got',
  'got_furiou',
  'furiou_said',
  'said_worst',
  'worst_woman',
  'woman_met',
  'met_life',
  'life_ex',
  'ex_wife',
  'wife_way',
  'way_relev',
  'relev_took',
  'took_back',
  'back_later',
  'later_said',
  'said_speak',
  'speak_til',
  'til_money',
  'money_back',
  'daughter_old_phone',
  'old_phone_year',
  'phone_year_alway',
  'year_alway_want',
  'alway_want_new',
  'want_new_phone',
  'new_phone_im',
  'phone_im_one',
  'im_one_work',
  'one_work_right',
  'work_right_sinc',
  'right_sinc_husband',
  'sinc_husband_decid',
  'husband_decid_take',
  'decid_take_break',
  'take_break_work',
  'break_work_inherit',
  'work_inherit_money',
  'inherit_money_dad',
  'money_dad_saw',
  'dad_saw_pretti',
  'saw_pretti_good',
  'pretti_good_school',
  'good_school_despit',
  'school_despit_mental',
  'despit_mental_health',
  'mental_health_issu',
  'health_issu_gotten',
  'issu_gotten_way',
  'gotten_way_focu',
  'way_focu_decid',
  'focu_decid_keep',
  'decid_keep_encourag',
  'keep_encourag_reward',
  'encourag_reward_get',
  'reward_get_appl',
  'get_appl_iphon',
  'appl_iphon_cost',
  'iphon_cost_good',
  'cost_good_sum',
  'good_sum_money',
  'sum_money_best',
  'money_best_save',
  'best_save_money',
  'save_money_buy',
  'money_buy_liter',
  'buy_liter_skip',
  'liter_skip_pay',
  'skip_pay_breakfast',
  'pay_breakfast_work',
  'breakfast_work_abl',
  'work_abl_afford',
  'abl_afford_husband',
  'afford_husband_want',
  'husband_want_help',
  'want_help_bought',
  'help_bought_iphon',
  'bought_iphon_quit',
  'iphon_quit_honestli',
  'quit_honestli_seen',
  'honestli_seen_happi',
  'seen_happi_refresh',
  'happi_refresh_realli',
  'refresh_realli_went',
  'realli_went_hard',
  'went_hard_time',
  'hard_time_past',
  'time_past_coupl',
  'past_coupl_year',
  'coupl_year_emot',
  'year_emot_mental',
  'emot_mental_husband',
  'mental_husband_happi',
  'husband_happi_said',
  'happi_said_iphon',
  'said_iphon_distract',
  'iphon_distract_school',
  'distract_school_chore',
  'school_chore_true',
  'chore_true_fact',
  'true_fact_encourag',
  'fact_encourag_still',
  'encourag_still_said',
  'still_said_spent',
  'said_spent_kind',
  'spent_kind_money',
  'kind_money_iphon',
  'money_iphon_might',
  'iphon_might_irrespons',
  'might_irrespons_break',
  'irrespons_break_daughter',
  'break_daughter_pick',
  'daughter_pick_attitud',
  'pick_attitud_toward',
  'attitud_toward_iphon',
  'toward_iphon_told',
  'iphon_told_ignor',
  'told_ignor_day',
  'ignor_day_ago',
  'day_ago_found',
  'ago_found_broke',
  'found_broke_iphon',
  'broke_iphon_ask',
  'iphon_ask_said',
  'ask_said_ask',
  'said_ask_get',
  'ask_get_someth',
  'get_someth_toolbox',
  'someth_toolbox_garag',
  'toolbox_garag_iphon',
  'garag_iphon_ignor',
  'iphon_ignor_use',
  'ignor_use_incid',
  'use_incid_evid',
  'incid_evid_iphon',
  'evid_iphon_bad',
  'iphon_bad_influenc',
  'bad_influenc_yell',
  'influenc_yell_demand',
  'yell_demand_replac',
  'demand_replac_said',
  'replac_said_took',
  'said_took_money',
  'took_money_account',
  'money_account_paid',
  'account_paid_new',
  'paid_new_iphon',
  'new_iphon_gave',
  'iphon_gave_daughter',
  'gave_daughter_saw',
  'daughter_saw_went',
  'saw_went_call',
  'went_call_viciou',
  'call_viciou_aw',
  'viciou_aw_accus',
  'aw_accus_steal',
  'accus_steal_father',
  'steal_father_money',
  'father_money_demand',
  'money_demand_money',
  'demand_money_took',
  'money_took_everi',
  'took_everi_singl',
  'everi_singl_penni',
  'singl_penni_back',
  'penni_back_basic',
  'back_basic_told',
  'basic_told_happen',
  'told_happen_got',
  'happen_got_mother',
  'got_mother_say',
  'mother_say_im',
  'say_im_set',
  'im_set_terribl',
  'set_terribl_exampl',
  'terribl_exampl_daughter',
  'exampl_daughter_get',
  'daughter_get_phone',
  'get_phone_paid',
  'phone_paid_money',
  'paid_money_stole',
  'money_stole_dad',
  'stole_dad_husband',
  'dad_husband_said',
  'husband_said_speak',
  'said_speak_word',
  'speak_word_til',
  'word_til_fix',
  'til_fix_alreadi',
  'fix_alreadi_said',
  'alreadi_said_owe',
  'said_owe_noth',
  'owe_noth_aita',
  'noth_aita_eta',
  'aita_eta_biolog',
  'eta_biolog_father',
  'biolog_father_stepdad',
  'father_stepdad_price',
  'stepdad_price_iphon',
  'price_iphon_live',
  'iphon_live_thousand',
  'live_thousand_dollar',
  'thousand_dollar_cheap',
  'dollar_cheap_find',
  'cheap_find_took',
  'find_took_thousand',
  'took_thousand_dollar',
  'thousand_dollar_inherit',
  'dollar_inherit_realli',
  'inherit_realli_got',
  'realli_got_furiou',
  'got_furiou_said',
  'furiou_said_worst',
  'said_worst_woman',
  'worst_woman_met',
  'woman_met_life',
  'met_life_ex',
  'life_ex_wife',
  'ex_wife_way',
  'wife_way_relev',
  'way_relev_took',
  'relev_took_back',
  'took_back_later',
  'back_later_said',
  'later_said_speak',
  'said_speak_til',
  'speak_til_money',
  'til_money_back'],
 ['fianc',
  'ben',
  'mom',
  'best',
  'relationship',
  'tri',
  'best',
  'polit',
  'around',
  'type',
  'thatd',
  'high',
  'standardsexpect',
  'whoever',
  'date',
  'son',
  'comment',
  'hair',
  'bodi',
  'sever',
  'time',
  'point',
  'suggest',
  'cosmet',
  'surgeri',
  'futur',
  'upset',
  'ben',
  'tell',
  'need',
  'learn',
  'thick',
  'skin',
  'sinc',
  'often',
  'time',
  'realli',
  'mean',
  'malici',
  'anyway',
  'im',
  'known',
  'bake',
  'cake',
  'sweet',
  'ben',
  'eat',
  'make',
  'whenev',
  'bring',
  'someth',
  'famili',
  'tri',
  'find',
  'everi',
  'excus',
  'world',
  'eat',
  'im',
  'ok',
  'stop',
  'ben',
  'st',
  'birthday',
  'mom',
  'want',
  'host',
  'parti',
  'decid',
  'bake',
  'birthday',
  'cake',
  'thrill',
  'went',
  'groceri',
  'shop',
  'took',
  'time',
  'work',
  'put',
  'much',
  'effort',
  'make',
  'like',
  'took',
  'mom',
  'hous',
  'surpris',
  'walk',
  'saw',
  'larg',
  'birthday',
  'cake',
  'sit',
  'din',
  'tabl',
  'puzzl',
  'fmil',
  'said',
  'request',
  'cake',
  'bakeri',
  'paid',
  'xxx',
  'money',
  'ask',
  'cake',
  'ive',
  'made',
  'respond',
  'oh',
  'place',
  'counter',
  'well',
  'let',
  'kid',
  'felt',
  'like',
  'ice',
  'drop',
  'look',
  'ben',
  'nod',
  'way',
  'mad',
  'cake',
  'still',
  'hand',
  'time',
  'turn',
  'around',
  'made',
  'way',
  'door',
  'mom',
  'remain',
  'stand',
  'ben',
  'follow',
  'ask',
  'go',
  'told',
  'need',
  'cake',
  'extent',
  'sinc',
  'effort',
  'easili',
  'dismiss',
  'disrespect',
  'said',
  'overreact',
  'mom',
  'paid',
  'much',
  'cake',
  'fair',
  'accept',
  'beg',
  'get',
  'back',
  'insid',
  'favor',
  'basic',
  'go',
  'flow',
  'decid',
  'go',
  'home',
  'got',
  'mad',
  'start',
  'say',
  'unreason',
  'stir',
  'drama',
  'noth',
  'went',
  'home',
  'get',
  'back',
  'til',
  'pm',
  'upset',
  'said',
  'famili',
  'appreci',
  'childish',
  'behavior',
  'display',
  'ruin',
  'parti',
  'disrespect',
  'mom',
  'like',
  'said',
  'turn',
  'huge',
  'deal',
  'act',
  'maturelli',
  'instead',
  'walk',
  'cake',
  'aita',
  'take',
  'cake',
  'walk',
  'fianc_ben',
  'ben_mom',
  'mom_best',
  'best_relationship',
  'relationship_tri',
  'tri_best',
  'best_polit',
  'polit_around',
  'around_type',
  'type_thatd',
  'thatd_high',
  'high_standardsexpect',
  'standardsexpect_whoever',
  'whoever_date',
  'date_son',
  'son_comment',
  'comment_hair',
  'hair_bodi',
  'bodi_sever',
  'sever_time',
  'time_point',
  'point_suggest',
  'suggest_cosmet',
  'cosmet_surgeri',
  'surgeri_futur',
  'futur_upset',
  'upset_ben',
  'ben_tell',
  'tell_need',
  'need_learn',
  'learn_thick',
  'thick_skin',
  'skin_sinc',
  'sinc_often',
  'often_time',
  'time_realli',
  'realli_mean',
  'mean_malici',
  'malici_anyway',
  'anyway_im',
  'im_known',
  'known_bake',
  'bake_cake',
  'cake_sweet',
  'sweet_ben',
  'ben_eat',
  'eat_make',
  'make_whenev',
  'whenev_bring',
  'bring_someth',
  'someth_famili',
  'famili_tri',
  'tri_find',
  'find_everi',
  'everi_excus',
  'excus_world',
  'world_eat',
  'eat_im',
  'im_ok',
  'ok_stop',
  'stop_ben',
  'ben_st',
  'st_birthday',
  'birthday_mom',
  'mom_want',
  'want_host',
  'host_parti',
  'parti_decid',
  'decid_bake',
  'bake_birthday',
  'birthday_cake',
  'cake_thrill',
  'thrill_went',
  'went_groceri',
  'groceri_shop',
  'shop_took',
  'took_time',
  'time_work',
  'work_put',
  'put_much',
  'much_effort',
  'effort_make',
  'make_like',
  'like_took',
  'took_mom',
  'mom_hous',
  'hous_surpris',
  'surpris_walk',
  'walk_saw',
  'saw_larg',
  'larg_birthday',
  'birthday_cake',
  'cake_sit',
  'sit_din',
  'din_tabl',
  'tabl_puzzl',
  'puzzl_fmil',
  'fmil_said',
  'said_request',
  'request_cake',
  'cake_bakeri',
  'bakeri_paid',
  'paid_xxx',
  'xxx_money',
  'money_ask',
  'ask_cake',
  'cake_ive',
  'ive_made',
  'made_respond',
  'respond_oh',
  'oh_place',
  'place_counter',
  'counter_well',
  'well_let',
  'let_kid',
  'kid_felt',
  'felt_like',
  'like_ice',
  'ice_drop',
  'drop_look',
  'look_ben',
  'ben_nod',
  'nod_way',
  'way_mad',
  'mad_cake',
  'cake_still',
  'still_hand',
  'hand_time',
  'time_turn',
  'turn_around',
  'around_made',
  'made_way',
  'way_door',
  'door_mom',
  'mom_remain',
  'remain_stand',
  'stand_ben',
  'ben_follow',
  'follow_ask',
  'ask_go',
  'go_told',
  'told_need',
  'need_cake',
  'cake_extent',
  'extent_sinc',
  'sinc_effort',
  'effort_easili',
  'easili_dismiss',
  'dismiss_disrespect',
  'disrespect_said',
  'said_overreact',
  'overreact_mom',
  'mom_paid',
  'paid_much',
  'much_cake',
  'cake_fair',
  'fair_accept',
  'accept_beg',
  'beg_get',
  'get_back',
  'back_insid',
  'insid_favor',
  'favor_basic',
  'basic_go',
  'go_flow',
  'flow_decid',
  'decid_go',
  'go_home',
  'home_got',
  'got_mad',
  'mad_start',
  'start_say',
  'say_unreason',
  'unreason_stir',
  'stir_drama',
  'drama_noth',
  'noth_went',
  'went_home',
  'home_get',
  'get_back',
  'back_til',
  'til_pm',
  'pm_upset',
  'upset_said',
  'said_famili',
  'famili_appreci',
  'appreci_childish',
  'childish_behavior',
  'behavior_display',
  'display_ruin',
  'ruin_parti',
  'parti_disrespect',
  'disrespect_mom',
  'mom_like',
  'like_said',
  'said_turn',
  'turn_huge',
  'huge_deal',
  'deal_act',
  'act_maturelli',
  'maturelli_instead',
  'instead_walk',
  'walk_cake',
  'cake_aita',
  'aita_take',
  'take_cake',
  'cake_walk',
  'fianc_ben_mom',
  'ben_mom_best',
  'mom_best_relationship',
  'best_relationship_tri',
  'relationship_tri_best',
  'tri_best_polit',
  'best_polit_around',
  'polit_around_type',
  'around_type_thatd',
  'type_thatd_high',
  'thatd_high_standardsexpect',
  'high_standardsexpect_whoever',
  'standardsexpect_whoever_date',
  'whoever_date_son',
  'date_son_comment',
  'son_comment_hair',
  'comment_hair_bodi',
  'hair_bodi_sever',
  'bodi_sever_time',
  'sever_time_point',
  'time_point_suggest',
  'point_suggest_cosmet',
  'suggest_cosmet_surgeri',
  'cosmet_surgeri_futur',
  'surgeri_futur_upset',
  'futur_upset_ben',
  'upset_ben_tell',
  'ben_tell_need',
  'tell_need_learn',
  'need_learn_thick',
  'learn_thick_skin',
  'thick_skin_sinc',
  'skin_sinc_often',
  'sinc_often_time',
  'often_time_realli',
  'time_realli_mean',
  'realli_mean_malici',
  'mean_malici_anyway',
  'malici_anyway_im',
  'anyway_im_known',
  'im_known_bake',
  'known_bake_cake',
  'bake_cake_sweet',
  'cake_sweet_ben',
  'sweet_ben_eat',
  'ben_eat_make',
  'eat_make_whenev',
  'make_whenev_bring',
  'whenev_bring_someth',
  'bring_someth_famili',
  'someth_famili_tri',
  'famili_tri_find',
  'tri_find_everi',
  'find_everi_excus',
  'everi_excus_world',
  'excus_world_eat',
  'world_eat_im',
  'eat_im_ok',
  'im_ok_stop',
  'ok_stop_ben',
  'stop_ben_st',
  'ben_st_birthday',
  'st_birthday_mom',
  'birthday_mom_want',
  'mom_want_host',
  'want_host_parti',
  'host_parti_decid',
  'parti_decid_bake',
  'decid_bake_birthday',
  'bake_birthday_cake',
  'birthday_cake_thrill',
  'cake_thrill_went',
  'thrill_went_groceri',
  'went_groceri_shop',
  'groceri_shop_took',
  'shop_took_time',
  'took_time_work',
  'time_work_put',
  'work_put_much',
  'put_much_effort',
  'much_effort_make',
  'effort_make_like',
  'make_like_took',
  'like_took_mom',
  'took_mom_hous',
  'mom_hous_surpris',
  'hous_surpris_walk',
  'surpris_walk_saw',
  'walk_saw_larg',
  'saw_larg_birthday',
  'larg_birthday_cake',
  'birthday_cake_sit',
  'cake_sit_din',
  'sit_din_tabl',
  'din_tabl_puzzl',
  'tabl_puzzl_fmil',
  'puzzl_fmil_said',
  'fmil_said_request',
  'said_request_cake',
  'request_cake_bakeri',
  'cake_bakeri_paid',
  'bakeri_paid_xxx',
  'paid_xxx_money',
  'xxx_money_ask',
  'money_ask_cake',
  'ask_cake_ive',
  'cake_ive_made',
  'ive_made_respond',
  'made_respond_oh',
  'respond_oh_place',
  'oh_place_counter',
  'place_counter_well',
  'counter_well_let',
  'well_let_kid',
  'let_kid_felt',
  'kid_felt_like',
  'felt_like_ice',
  'like_ice_drop',
  'ice_drop_look',
  'drop_look_ben',
  'look_ben_nod',
  'ben_nod_way',
  'nod_way_mad',
  'way_mad_cake',
  'mad_cake_still',
  'cake_still_hand',
  'still_hand_time',
  'hand_time_turn',
  'time_turn_around',
  'turn_around_made',
  'around_made_way',
  'made_way_door',
  'way_door_mom',
  'door_mom_remain',
  'mom_remain_stand',
  'remain_stand_ben',
  'stand_ben_follow',
  'ben_follow_ask',
  'follow_ask_go',
  'ask_go_told',
  'go_told_need',
  'told_need_cake',
  'need_cake_extent',
  'cake_extent_sinc',
  'extent_sinc_effort',
  'sinc_effort_easili',
  'effort_easili_dismiss',
  'easili_dismiss_disrespect',
  'dismiss_disrespect_said',
  'disrespect_said_overreact',
  'said_overreact_mom',
  'overreact_mom_paid',
  'mom_paid_much',
  'paid_much_cake',
  'much_cake_fair',
  'cake_fair_accept',
  'fair_accept_beg',
  'accept_beg_get',
  'beg_get_back',
  'get_back_insid',
  'back_insid_favor',
  'insid_favor_basic',
  'favor_basic_go',
  'basic_go_flow',
  'go_flow_decid',
  'flow_decid_go',
  'decid_go_home',
  'go_home_got',
  'home_got_mad',
  'got_mad_start',
  'mad_start_say',
  'start_say_unreason',
  'say_unreason_stir',
  'unreason_stir_drama',
  'stir_drama_noth',
  'drama_noth_went',
  'noth_went_home',
  'went_home_get',
  'home_get_back',
  'get_back_til',
  'back_til_pm',
  'til_pm_upset',
  'pm_upset_said',
  'upset_said_famili',
  'said_famili_appreci',
  'famili_appreci_childish',
  'appreci_childish_behavior',
  'childish_behavior_display',
  'behavior_display_ruin',
  'display_ruin_parti',
  'ruin_parti_disrespect',
  'parti_disrespect_mom',
  'disrespect_mom_like',
  'mom_like_said',
  'like_said_turn',
  'said_turn_huge',
  'turn_huge_deal',
  'huge_deal_act',
  'deal_act_maturelli',
  'act_maturelli_instead',
  'maturelli_instead_walk',
  'instead_walk_cake',
  'walk_cake_aita',
  'cake_aita_take',
  'aita_take_cake',
  'take_cake_walk'],
 ['recent',
  'got',
  'marri',
  'love',
  'life',
  'perfect',
  'wed',
  'except',
  'one',
  'thing',
  'mil',
  'freakout',
  'saw',
  'dress',
  'gone',
  'dress',
  'shop',
  'invit',
  'found',
  'perfect',
  'dress',
  'husband',
  'famili',
  'tradit',
  'alway',
  'wear',
  'blush',
  'dress',
  'wed',
  'day',
  'told',
  'respect',
  'said',
  'would',
  'wear',
  'whatev',
  'color',
  'dress',
  'perfect',
  'dress',
  'final',
  'found',
  'white',
  'mil',
  'ask',
  'ask',
  'could',
  'alter',
  'make',
  'blush',
  'find',
  'new',
  'dress',
  'said',
  'would',
  'ask',
  'long',
  'stori',
  'short',
  'show',
  'wed',
  'white',
  'dress',
  'ceremoni',
  'mil',
  'seeth',
  'recept',
  'pull',
  'asid',
  'ask',
  'dress',
  'white',
  'told',
  'want',
  'find',
  'new',
  'dress',
  'alter',
  'said',
  'tradit',
  'disappoint',
  'broke',
  'also',
  'said',
  'disappoint',
  'walk',
  'aisl',
  'white',
  'dress',
  'asshol',
  'could',
  'chang',
  'dress',
  'recent_got',
  'got_marri',
  'marri_love',
  'love_life',
  'life_perfect',
  'perfect_wed',
  'wed_except',
  'except_one',
  'one_thing',
  'thing_mil',
  'mil_freakout',
  'freakout_saw',
  'saw_dress',
  'dress_gone',
  'gone_dress',
  'dress_shop',
  'shop_invit',
  'invit_found',
  'found_perfect',
  'perfect_dress',
  'dress_husband',
  'husband_famili',
  'famili_tradit',
  'tradit_alway',
  'alway_wear',
  'wear_blush',
  'blush_dress',
  'dress_wed',
  'wed_day',
  'day_told',
  'told_respect',
  'respect_said',
  'said_would',
  'would_wear',
  'wear_whatev',
  'whatev_color',
  'color_dress',
  'dress_perfect',
  'perfect_dress',
  'dress_final',
  'final_found',
  'found_white',
  'white_mil',
  'mil_ask',
  'ask_ask',
  'ask_could',
  'could_alter',
  'alter_make',
  'make_blush',
  'blush_find',
  'find_new',
  'new_dress',
  'dress_said',
  'said_would',
  'would_ask',
  'ask_long',
  'long_stori',
  'stori_short',
  'short_show',
  'show_wed',
  'wed_white',
  'white_dress',
  'dress_ceremoni',
  'ceremoni_mil',
  'mil_seeth',
  'seeth_recept',
  'recept_pull',
  'pull_asid',
  'asid_ask',
  'ask_dress',
  'dress_white',
  'white_told',
  'told_want',
  'want_find',
  'find_new',
  'new_dress',
  'dress_alter',
  'alter_said',
  'said_tradit',
  'tradit_disappoint',
  'disappoint_broke',
  'broke_also',
  'also_said',
  'said_disappoint',
  'disappoint_walk',
  'walk_aisl',
  'aisl_white',
  'white_dress',
  'dress_asshol',
  'asshol_could',
  'could_chang',
  'chang_dress',
  'recent_got_marri',
  'got_marri_love',
  'marri_love_life',
  'love_life_perfect',
  'life_perfect_wed',
  'perfect_wed_except',
  'wed_except_one',
  'except_one_thing',
  'one_thing_mil',
  'thing_mil_freakout',
  'mil_freakout_saw',
  'freakout_saw_dress',
  'saw_dress_gone',
  'dress_gone_dress',
  'gone_dress_shop',
  'dress_shop_invit',
  'shop_invit_found',
  'invit_found_perfect',
  'found_perfect_dress',
  'perfect_dress_husband',
  'dress_husband_famili',
  'husband_famili_tradit',
  'famili_tradit_alway',
  'tradit_alway_wear',
  'alway_wear_blush',
  'wear_blush_dress',
  'blush_dress_wed',
  'dress_wed_day',
  'wed_day_told',
  'day_told_respect',
  'told_respect_said',
  'respect_said_would',
  'said_would_wear',
  'would_wear_whatev',
  'wear_whatev_color',
  'whatev_color_dress',
  'color_dress_perfect',
  'dress_perfect_dress',
  'perfect_dress_final',
  'dress_final_found',
  'final_found_white',
  'found_white_mil',
  'white_mil_ask',
  'mil_ask_ask',
  'ask_ask_could',
  'ask_could_alter',
  'could_alter_make',
  'alter_make_blush',
  'make_blush_find',
  'blush_find_new',
  'find_new_dress',
  'new_dress_said',
  'dress_said_would',
  'said_would_ask',
  'would_ask_long',
  'ask_long_stori',
  'long_stori_short',
  'stori_short_show',
  'short_show_wed',
  'show_wed_white',
  'wed_white_dress',
  'white_dress_ceremoni',
  'dress_ceremoni_mil',
  'ceremoni_mil_seeth',
  'mil_seeth_recept',
  'seeth_recept_pull',
  'recept_pull_asid',
  'pull_asid_ask',
  'asid_ask_dress',
  'ask_dress_white',
  'dress_white_told',
  'white_told_want',
  'told_want_find',
  'want_find_new',
  'find_new_dress',
  'new_dress_alter',
  'dress_alter_said',
  'alter_said_tradit',
  'said_tradit_disappoint',
  'tradit_disappoint_broke',
  'disappoint_broke_also',
  'broke_also_said',
  'also_said_disappoint',
  'said_disappoint_walk',
  'disappoint_walk_aisl',
  'walk_aisl_white',
  'aisl_white_dress',
  'white_dress_asshol',
  'dress_asshol_could',
  'asshol_could_chang',
  'could_chang_dress'],
 ['husband',
  '&',
  'togeth',
  'half',
  'year',
  'daughter',
  'calli',
  'love',
  'instrument',
  'music',
  'piano',
  'interest',
  'im',
  'say',
  'daughter',
  'realli',
  'see',
  'talent',
  'special',
  'importantlysh',
  'use',
  'express',
  'feel',
  'especi',
  'deceas',
  'father',
  'pass',
  'away',
  'alway',
  'say',
  'way',
  'connect',
  'play',
  'piano',
  'encourag',
  'grandpar',
  'bought',
  'thousand',
  'piano',
  'thrill',
  'whole',
  'famili',
  'encourag',
  'husband',
  'think',
  'distract',
  'school',
  'real',
  'futur',
  'etc',
  'attend',
  'play',
  'help',
  'academi',
  'even',
  'take',
  'time',
  'listen',
  'play',
  'everytim',
  'come',
  'home',
  'hear',
  'play',
  'upstair',
  'hed',
  'lectur',
  'us',
  'activ',
  'wast',
  'time',
  'sat',
  'told',
  'calli',
  'pick',
  'bad',
  'vibe',
  'got',
  'mad',
  'said',
  'job',
  'ensur',
  'get',
  'distract',
  'school',
  'although',
  'grade',
  'good',
  'went',
  'back',
  'forth',
  'made',
  'clear',
  'stop',
  'said',
  'okay',
  'end',
  'sunday',
  'huge',
  'argument',
  'ensu',
  'hous',
  'husband',
  'claim',
  'calli',
  'woke',
  'day',
  'loud',
  'play',
  'issu',
  'ultimatuim',
  'either',
  'piano',
  'goe',
  'get',
  'rid',
  'ask',
  'take',
  'said',
  'calli',
  'grandpar',
  'hous',
  'calli',
  'want',
  'left',
  'found',
  'husband',
  'took',
  'junk',
  'yard',
  'dad',
  'work',
  'cut',
  'piec',
  'big',
  'argument',
  'ensu',
  'liter',
  'scream',
  'match',
  'infront',
  'famili',
  'gave',
  'day',
  'pay',
  'new',
  'one',
  'despit',
  'apolog',
  'say',
  'act',
  'moment',
  'desper',
  'frustrat',
  'said',
  'way',
  'could',
  'pay',
  'use',
  'save',
  'suppos',
  'go',
  'toward',
  'new',
  'garag',
  'side',
  'busi',
  'complain',
  'forc',
  'pay',
  'ruin',
  'busi',
  'even',
  'start',
  'kept',
  'send',
  'famili',
  'middle-men',
  'get',
  'give',
  'least',
  'month',
  'refus',
  'stood',
  'ground',
  'despit',
  'call',
  'unreason',
  'sinc',
  'piano',
  'vs',
  'new',
  'busi',
  'aita',
  'forc',
  'pay',
  'give',
  'time',
  'edit',
  '~~',
  'issu',
  'whatev',
  'calli',
  'first',
  'til',
  'start',
  'live',
  'togeth',
  'first',
  'thought',
  'famili',
  'tend',
  'get',
  'annoy',
  'stuff',
  'famili',
  'member',
  'apparentlythi',
  'case',
  'way',
  'tonight',
  'tomorrow',
  'morn',
  'timelin',
  'ive',
  'given',
  'far',
  'heard',
  'dad',
  'husband_&',
  '&_togeth',
  'togeth_half',
  'half_year',
  'year_daughter',
  'daughter_calli',
  'calli_love',
  'love_instrument',
  'instrument_music',
  'music_piano',
  'piano_interest',
  'interest_im',
  'im_say',
  'say_daughter',
  'daughter_realli',
  'realli_see',
  'see_talent',
  'talent_special',
  'special_importantlysh',
  'importantlysh_use',
  'use_express',
  'express_feel',
  'feel_especi',
  'especi_deceas',
  'deceas_father',
  'father_pass',
  'pass_away',
  'away_alway',
  'alway_say',
  'say_way',
  'way_connect',
  'connect_play',
  'play_piano',
  'piano_encourag',
  'encourag_grandpar',
  'grandpar_bought',
  'bought_thousand',
  'thousand_piano',
  'piano_thrill',
  'thrill_whole',
  'whole_famili',
  'famili_encourag',
  'encourag_husband',
  'husband_think',
  'think_distract',
  'distract_school',
  'school_real',
  'real_futur',
  'futur_etc',
  'etc_attend',
  'attend_play',
  'play_help',
  'help_academi',
  'academi_even',
  'even_take',
  'take_time',
  'time_listen',
  'listen_play',
  'play_everytim',
  'everytim_come',
  'come_home',
  'home_hear',
  'hear_play',
  'play_upstair',
  'upstair_hed',
  'hed_lectur',
  'lectur_us',
  'us_activ',
  'activ_wast',
  'wast_time',
  'time_sat',
  'sat_told',
  'told_calli',
  'calli_pick',
  'pick_bad',
  'bad_vibe',
  'vibe_got',
  'got_mad',
  'mad_said',
  'said_job',
  'job_ensur',
  'ensur_get',
  'get_distract',
  'distract_school',
  'school_although',
  'although_grade',
  'grade_good',
  'good_went',
  'went_back',
  'back_forth',
  'forth_made',
  'made_clear',
  'clear_stop',
  'stop_said',
  'said_okay',
  'okay_end',
  'end_sunday',
  'sunday_huge',
  'huge_argument',
  'argument_ensu',
  'ensu_hous',
  'hous_husband',
  'husband_claim',
  'claim_calli',
  'calli_woke',
  'woke_day',
  'day_loud',
  'loud_play',
  'play_issu',
  'issu_ultimatuim',
  'ultimatuim_either',
  'either_piano',
  'piano_goe',
  'goe_get',
  'get_rid',
  'rid_ask',
  'ask_take',
  'take_said',
  'said_calli',
  'calli_grandpar',
  'grandpar_hous',
  'hous_calli',
  'calli_want',
  'want_left',
  'left_found',
  'found_husband',
  'husband_took',
  'took_junk',
  'junk_yard',
  'yard_dad',
  'dad_work',
  'work_cut',
  'cut_piec',
  'piec_big',
  'big_argument',
  'argument_ensu',
  'ensu_liter',
  'liter_scream',
  'scream_match',
  'match_infront',
  'infront_famili',
  'famili_gave',
  'gave_day',
  'day_pay',
  'pay_new',
  'new_one',
  'one_despit',
  'despit_apolog',
  'apolog_say',
  'say_act',
  'act_moment',
  'moment_desper',
  'desper_frustrat',
  'frustrat_said',
  'said_way',
  'way_could',
  'could_pay',
  'pay_use',
  'use_save',
  'save_suppos',
  'suppos_go',
  'go_toward',
  'toward_new',
  'new_garag',
  'garag_side',
  'side_busi',
  'busi_complain',
  'complain_forc',
  'forc_pay',
  'pay_ruin',
  'ruin_busi',
  'busi_even',
  'even_start',
  'start_kept',
  'kept_send',
  'send_famili',
  'famili_middle-men',
  'middle-men_get',
  'get_give',
  'give_least',
  'least_month',
  'month_refus',
  'refus_stood',
  'stood_ground',
  'ground_despit',
  'despit_call',
  'call_unreason',
  'unreason_sinc',
  'sinc_piano',
  'piano_vs',
  'vs_new',
  'new_busi',
  'busi_aita',
  'aita_forc',
  'forc_pay',
  'pay_give',
  'give_time',
  'time_edit',
  'edit_~~',
  '~~_issu',
  'issu_whatev',
  'whatev_calli',
  'calli_first',
  'first_til',
  'til_start',
  'start_live',
  'live_togeth',
  'togeth_first',
  'first_thought',
  'thought_famili',
  'famili_tend',
  'tend_get',
  'get_annoy',
  'annoy_stuff',
  'stuff_famili',
  'famili_member',
  'member_apparentlythi',
  'apparentlythi_case',
  'case_way',
  'way_tonight',
  'tonight_tomorrow',
  'tomorrow_morn',
  'morn_timelin',
  'timelin_ive',
  'ive_given',
  'given_far',
  'far_heard',
  'heard_dad',
  'husband_&_togeth',
  '&_togeth_half',
  'togeth_half_year',
  'half_year_daughter',
  'year_daughter_calli',
  'daughter_calli_love',
  'calli_love_instrument',
  'love_instrument_music',
  'instrument_music_piano',
  'music_piano_interest',
  'piano_interest_im',
  'interest_im_say',
  'im_say_daughter',
  'say_daughter_realli',
  'daughter_realli_see',
  'realli_see_talent',
  'see_talent_special',
  'talent_special_importantlysh',
  'special_importantlysh_use',
  'importantlysh_use_express',
  'use_express_feel',
  'express_feel_especi',
  'feel_especi_deceas',
  'especi_deceas_father',
  'deceas_father_pass',
  'father_pass_away',
  'pass_away_alway',
  'away_alway_say',
  'alway_say_way',
  'say_way_connect',
  'way_connect_play',
  'connect_play_piano',
  'play_piano_encourag',
  'piano_encourag_grandpar',
  'encourag_grandpar_bought',
  'grandpar_bought_thousand',
  'bought_thousand_piano',
  'thousand_piano_thrill',
  'piano_thrill_whole',
  'thrill_whole_famili',
  'whole_famili_encourag',
  'famili_encourag_husband',
  'encourag_husband_think',
  'husband_think_distract',
  'think_distract_school',
  'distract_school_real',
  'school_real_futur',
  'real_futur_etc',
  'futur_etc_attend',
  'etc_attend_play',
  'attend_play_help',
  'play_help_academi',
  'help_academi_even',
  'academi_even_take',
  'even_take_time',
  'take_time_listen',
  'time_listen_play',
  'listen_play_everytim',
  'play_everytim_come',
  'everytim_come_home',
  'come_home_hear',
  'home_hear_play',
  'hear_play_upstair',
  'play_upstair_hed',
  'upstair_hed_lectur',
  'hed_lectur_us',
  'lectur_us_activ',
  'us_activ_wast',
  'activ_wast_time',
  'wast_time_sat',
  'time_sat_told',
  'sat_told_calli',
  'told_calli_pick',
  'calli_pick_bad',
  'pick_bad_vibe',
  'bad_vibe_got',
  'vibe_got_mad',
  'got_mad_said',
  'mad_said_job',
  'said_job_ensur',
  'job_ensur_get',
  'ensur_get_distract',
  'get_distract_school',
  'distract_school_although',
  'school_although_grade',
  'although_grade_good',
  'grade_good_went',
  'good_went_back',
  'went_back_forth',
  'back_forth_made',
  'forth_made_clear',
  'made_clear_stop',
  'clear_stop_said',
  'stop_said_okay',
  'said_okay_end',
  'okay_end_sunday',
  'end_sunday_huge',
  'sunday_huge_argument',
  'huge_argument_ensu',
  'argument_ensu_hous',
  'ensu_hous_husband',
  'hous_husband_claim',
  'husband_claim_calli',
  'claim_calli_woke',
  'calli_woke_day',
  'woke_day_loud',
  'day_loud_play',
  'loud_play_issu',
  'play_issu_ultimatuim',
  'issu_ultimatuim_either',
  'ultimatuim_either_piano',
  'either_piano_goe',
  'piano_goe_get',
  'goe_get_rid',
  'get_rid_ask',
  'rid_ask_take',
  'ask_take_said',
  'take_said_calli',
  'said_calli_grandpar',
  'calli_grandpar_hous',
  'grandpar_hous_calli',
  'hous_calli_want',
  'calli_want_left',
  'want_left_found',
  'left_found_husband',
  'found_husband_took',
  'husband_took_junk',
  'took_junk_yard',
  'junk_yard_dad',
  'yard_dad_work',
  'dad_work_cut',
  'work_cut_piec',
  'cut_piec_big',
  'piec_big_argument',
  'big_argument_ensu',
  'argument_ensu_liter',
  'ensu_liter_scream',
  'liter_scream_match',
  'scream_match_infront',
  'match_infront_famili',
  'infront_famili_gave',
  'famili_gave_day',
  'gave_day_pay',
  'day_pay_new',
  'pay_new_one',
  'new_one_despit',
  'one_despit_apolog',
  'despit_apolog_say',
  'apolog_say_act',
  'say_act_moment',
  'act_moment_desper',
  'moment_desper_frustrat',
  'desper_frustrat_said',
  'frustrat_said_way',
  'said_way_could',
  'way_could_pay',
  'could_pay_use',
  'pay_use_save',
  'use_save_suppos',
  'save_suppos_go',
  'suppos_go_toward',
  'go_toward_new',
  'toward_new_garag',
  'new_garag_side',
  'garag_side_busi',
  'side_busi_complain',
  'busi_complain_forc',
  'complain_forc_pay',
  'forc_pay_ruin',
  'pay_ruin_busi',
  'ruin_busi_even',
  'busi_even_start',
  'even_start_kept',
  'start_kept_send',
  'kept_send_famili',
  'send_famili_middle-men',
  'famili_middle-men_get',
  'middle-men_get_give',
  'get_give_least',
  'give_least_month',
  'least_month_refus',
  'month_refus_stood',
  'refus_stood_ground',
  'stood_ground_despit',
  'ground_despit_call',
  'despit_call_unreason',
  'call_unreason_sinc',
  'unreason_sinc_piano',
  'sinc_piano_vs',
  'piano_vs_new',
  'vs_new_busi',
  'new_busi_aita',
  'busi_aita_forc',
  'aita_forc_pay',
  'forc_pay_give',
  'pay_give_time',
  'give_time_edit',
  'time_edit_~~',
  'edit_~~_issu',
  '~~_issu_whatev',
  'issu_whatev_calli',
  'whatev_calli_first',
  'calli_first_til',
  'first_til_start',
  'til_start_live',
  'start_live_togeth',
  'live_togeth_first',
  'togeth_first_thought',
  'first_thought_famili',
  'thought_famili_tend',
  'famili_tend_get',
  'tend_get_annoy',
  'get_annoy_stuff',
  'annoy_stuff_famili',
  'stuff_famili_member',
  'famili_member_apparentlythi',
  'member_apparentlythi_case',
  'apparentlythi_case_way',
  'case_way_tonight',
  'way_tonight_tomorrow',
  'tonight_tomorrow_morn',
  'tomorrow_morn_timelin',
  'morn_timelin_ive',
  'timelin_ive_given',
  'ive_given_far',
  'given_far_heard',
  'far_heard_dad'],
 ['start',
  'see',
  'therapist',
  'month',
  'ago',
  'postpartum',
  'depress',
  'first',
  'realli',
  'help',
  'notic',
  'two',
  'occas',
  'husband',
  'mention',
  'thing',
  'told',
  'confid',
  'therapist',
  'sinc',
  'proof',
  'want',
  'accus',
  'either',
  'decid',
  'tell',
  'therapist',
  'lie',
  'knew',
  'would',
  'confront',
  'heard',
  'see',
  'delusion',
  'lie',
  'suspici',
  'becam',
  'sinc',
  'even',
  'thing',
  'made',
  'husband',
  'look',
  'aw',
  'challeng',
  'twist',
  'make',
  'look',
  'good',
  'took',
  'confront',
  'first',
  'never',
  'believ',
  'lie',
  'session',
  'final',
  'convinc',
  'still',
  'furiou',
  'said',
  'want',
  'make',
  'sure',
  'okay',
  'use',
  'therapist',
  'spi',
  'aita',
  'start_see',
  'see_therapist',
  'therapist_month',
  'month_ago',
  'ago_postpartum',
  'postpartum_depress',
  'depress_first',
  'first_realli',
  'realli_help',
  'help_notic',
  'notic_two',
  'two_occas',
  'occas_husband',
  'husband_mention',
  'mention_thing',
  'thing_told',
  'told_confid',
  'confid_therapist',
  'therapist_sinc',
  'sinc_proof',
  'proof_want',
  'want_accus',
  'accus_either',
  'either_decid',
  'decid_tell',
  'tell_therapist',
  'therapist_lie',
  'lie_knew',
  'knew_would',
  'would_confront',
  'confront_heard',
  'heard_see',
  'see_delusion',
  'delusion_lie',
  'lie_suspici',
  'suspici_becam',
  'becam_sinc',
  'sinc_even',
  'even_thing',
  'thing_made',
  'made_husband',
  'husband_look',
  'look_aw',
  'aw_challeng',
  'challeng_twist',
  'twist_make',
  'make_look',
  'look_good',
  'good_took',
  'took_confront',
  'confront_first',
  'first_never',
  'never_believ',
  'believ_lie',
  'lie_session',
  'session_final',
  'final_convinc',
  'convinc_still',
  'still_furiou',
  'furiou_said',
  'said_want',
  'want_make',
  'make_sure',
  'sure_okay',
  'okay_use',
  'use_therapist',
  'therapist_spi',
  'spi_aita',
  'start_see_therapist',
  'see_therapist_month',
  'therapist_month_ago',
  'month_ago_postpartum',
  'ago_postpartum_depress',
  'postpartum_depress_first',
  'depress_first_realli',
  'first_realli_help',
  'realli_help_notic',
  'help_notic_two',
  'notic_two_occas',
  'two_occas_husband',
  'occas_husband_mention',
  'husband_mention_thing',
  'mention_thing_told',
  'thing_told_confid',
  'told_confid_therapist',
  'confid_therapist_sinc',
  'therapist_sinc_proof',
  'sinc_proof_want',
  'proof_want_accus',
  'want_accus_either',
  'accus_either_decid',
  'either_decid_tell',
  'decid_tell_therapist',
  'tell_therapist_lie',
  'therapist_lie_knew',
  'lie_knew_would',
  'knew_would_confront',
  'would_confront_heard',
  'confront_heard_see',
  'heard_see_delusion',
  'see_delusion_lie',
  'delusion_lie_suspici',
  'lie_suspici_becam',
  'suspici_becam_sinc',
  'becam_sinc_even',
  'sinc_even_thing',
  'even_thing_made',
  'thing_made_husband',
  'made_husband_look',
  'husband_look_aw',
  'look_aw_challeng',
  'aw_challeng_twist',
  'challeng_twist_make',
  'twist_make_look',
  'make_look_good',
  'look_good_took',
  'good_took_confront',
  'took_confront_first',
  'confront_first_never',
  'first_never_believ',
  'never_believ_lie',
  'believ_lie_session',
  'lie_session_final',
  'session_final_convinc',
  'final_convinc_still',
  'convinc_still_furiou',
  'still_furiou_said',
  'furiou_said_want',
  'said_want_make',
  'want_make_sure',
  'make_sure_okay',
  'sure_okay_use',
  'okay_use_therapist',
  'use_therapist_spi',
  'therapist_spi_aita'],
 ['rais',
  'christian',
  'household',
  'came',
  'gender',
  'role',
  'ingrain',
  'young',
  'age',
  'granddad',
  'howev',
  'hate',
  'parent',
  'taught',
  'us',
  'way',
  'got',
  'older',
  'becam',
  'close',
  'grandpar',
  'instead',
  'parent',
  'also',
  'older',
  'brother',
  'parent',
  'label',
  'second',
  'king',
  'hous',
  'info',
  'import',
  'grandpar',
  'live',
  'beauti',
  'hous',
  'neighbor',
  'mani',
  'tree',
  'garden',
  'pay',
  'hous',
  'year',
  'special',
  'granddad',
  'also',
  'bad',
  'problem',
  'back',
  'condit',
  'would',
  'get',
  'wors',
  'go',
  'anymor',
  'grandmoth',
  'pass',
  'got',
  'wors',
  'end',
  'need',
  'home',
  'care',
  'want',
  'stranger',
  'home',
  'option',
  'think',
  'due',
  'grandmoth',
  'pass',
  'parent',
  'preach',
  'punish',
  'sin',
  'take',
  'care',
  'plan',
  'put',
  'home',
  'decid',
  'stay',
  'sinc',
  'would',
  'easier',
  'job',
  'work',
  'effect',
  'home',
  'hed',
  'get',
  'care',
  'someon',
  'total',
  'stranger',
  'time',
  'took',
  'care',
  'fill',
  'home',
  'love',
  'laughter',
  'grandmoth',
  'brought',
  'granddad',
  'got',
  'wors',
  'singl',
  'call',
  'mom',
  'dad',
  'brother',
  'joke',
  'said',
  'mayb',
  'give',
  'missi',
  'hous',
  'name',
  'lol',
  'instead',
  'dad',
  'gon',
  'na',
  'give',
  'brother',
  'anyway',
  'laugh',
  'said',
  'assum',
  'joke',
  'fast',
  'forward',
  'worst',
  'happen',
  'one',
  'found',
  'make',
  'call',
  'much',
  'push',
  'away',
  'parent',
  'want',
  'find',
  'news',
  'random',
  'person',
  'funer',
  'first',
  'time',
  'ever',
  'truli',
  'connect',
  'parent',
  'year',
  'hug',
  'cri',
  'togeth',
  'vulner',
  'came',
  'time',
  'telenovela',
  'dramat',
  'intens',
  'hous',
  'suppos',
  'dad',
  'becam',
  'mine',
  'well',
  'mani',
  'thing',
  'dad',
  'plan',
  'give',
  'brother',
  'accus',
  'manipul',
  'granddad',
  'give',
  'brother',
  'yell',
  'week',
  'brother',
  'came',
  'hous',
  'tear',
  'beg',
  'give',
  'hous',
  'sinc',
  'small',
  'wife',
  'babi',
  'argu',
  'husband',
  'want',
  'kid',
  'need',
  'told',
  'leav',
  'felt',
  'horribl',
  'feel',
  'like',
  'asshol',
  'famili',
  'right',
  'need',
  'hous',
  'job',
  'pay',
  'good',
  'money',
  'could',
  'easili',
  'live',
  'somewher',
  'els',
  'hand',
  'though',
  'granddad',
  'want',
  'dad',
  'loss',
  'aita',
  'rais_christian',
  'christian_household',
  'household_came',
  'came_gender',
  'gender_role',
  'role_ingrain',
  'ingrain_young',
  'young_age',
  'age_granddad',
  'granddad_howev',
  'howev_hate',
  'hate_parent',
  'parent_taught',
  'taught_us',
  'us_way',
  'way_got',
  'got_older',
  'older_becam',
  'becam_close',
  'close_grandpar',
  'grandpar_instead',
  'instead_parent',
  'parent_also',
  'also_older',
  'older_brother',
  'brother_parent',
  'parent_label',
  'label_second',
  'second_king',
  'king_hous',
  'hous_info',
  'info_import',
  'import_grandpar',
  'grandpar_live',
  'live_beauti',
  'beauti_hous',
  'hous_neighbor',
  'neighbor_mani',
  'mani_tree',
  'tree_garden',
  'garden_pay',
  'pay_hous',
  'hous_year',
  'year_special',
  'special_granddad',
  'granddad_also',
  'also_bad',
  'bad_problem',
  'problem_back',
  'back_condit',
  'condit_would',
  'would_get',
  'get_wors',
  'wors_go',
  'go_anymor',
  'anymor_grandmoth',
  'grandmoth_pass',
  'pass_got',
  'got_wors',
  'wors_end',
  'end_need',
  'need_home',
  'home_care',
  'care_want',
  'want_stranger',
  'stranger_home',
  'home_option',
  'option_think',
  'think_due',
  'due_grandmoth',
  'grandmoth_pass',
  'pass_parent',
  'parent_preach',
  'preach_punish',
  'punish_sin',
  'sin_take',
  'take_care',
  'care_plan',
  'plan_put',
  'put_home',
  'home_decid',
  'decid_stay',
  'stay_sinc',
  'sinc_would',
  'would_easier',
  'easier_job',
  'job_work',
  'work_effect',
  'effect_home',
  'home_hed',
  'hed_get',
  'get_care',
  'care_someon',
  'someon_total',
  'total_stranger',
  'stranger_time',
  'time_took',
  'took_care',
  'care_fill',
  'fill_home',
  'home_love',
  'love_laughter',
  'laughter_grandmoth',
  'grandmoth_brought',
  'brought_granddad',
  'granddad_got',
  'got_wors',
  'wors_singl',
  'singl_call',
  'call_mom',
  'mom_dad',
  'dad_brother',
  'brother_joke',
  'joke_said',
  'said_mayb',
  'mayb_give',
  'give_missi',
  'missi_hous',
  'hous_name',
  'name_lol',
  'lol_instead',
  'instead_dad',
  'dad_gon',
  'gon_na',
  'na_give',
  'give_brother',
  'brother_anyway',
  'anyway_laugh',
  'laugh_said',
  'said_assum',
  'assum_joke',
  'joke_fast',
  'fast_forward',
  'forward_worst',
  'worst_happen',
  'happen_one',
  'one_found',
  'found_make',
  'make_call',
  'call_much',
  'much_push',
  'push_away',
  'away_parent',
  'parent_want',
  'want_find',
  'find_news',
  'news_random',
  'random_person',
  'person_funer',
  'funer_first',
  'first_time',
  'time_ever',
  'ever_truli',
  'truli_connect',
  'connect_parent',
  'parent_year',
  'year_hug',
  'hug_cri',
  'cri_togeth',
  'togeth_vulner',
  'vulner_came',
  'came_time',
  'time_telenovela',
  'telenovela_dramat',
  'dramat_intens',
  'intens_hous',
  'hous_suppos',
  'suppos_dad',
  'dad_becam',
  'becam_mine',
  'mine_well',
  'well_mani',
  'mani_thing',
  'thing_dad',
  'dad_plan',
  'plan_give',
  'give_brother',
  'brother_accus',
  'accus_manipul',
  'manipul_granddad',
  'granddad_give',
  'give_brother',
  'brother_yell',
  'yell_week',
  'week_brother',
  'brother_came',
  'came_hous',
  'hous_tear',
  'tear_beg',
  'beg_give',
  'give_hous',
  'hous_sinc',
  'sinc_small',
  'small_wife',
  'wife_babi',
  'babi_argu',
  'argu_husband',
  'husband_want',
  'want_kid',
  'kid_need',
  'need_told',
  'told_leav',
  'leav_felt',
  'felt_horribl',
  'horribl_feel',
  'feel_like',
  'like_asshol',
  'asshol_famili',
  'famili_right',
  'right_need',
  'need_hous',
  'hous_job',
  'job_pay',
  'pay_good',
  'good_money',
  'money_could',
  'could_easili',
  'easili_live',
  'live_somewher',
  'somewher_els',
  'els_hand',
  'hand_though',
  'though_granddad',
  'granddad_want',
  'want_dad',
  'dad_loss',
  'loss_aita',
  'rais_christian_household',
  'christian_household_came',
  'household_came_gender',
  'came_gender_role',
  'gender_role_ingrain',
  'role_ingrain_young',
  'ingrain_young_age',
  'young_age_granddad',
  'age_granddad_howev',
  'granddad_howev_hate',
  'howev_hate_parent',
  'hate_parent_taught',
  'parent_taught_us',
  'taught_us_way',
  'us_way_got',
  'way_got_older',
  'got_older_becam',
  'older_becam_close',
  'becam_close_grandpar',
  'close_grandpar_instead',
  'grandpar_instead_parent',
  'instead_parent_also',
  'parent_also_older',
  'also_older_brother',
  'older_brother_parent',
  'brother_parent_label',
  'parent_label_second',
  'label_second_king',
  'second_king_hous',
  'king_hous_info',
  'hous_info_import',
  'info_import_grandpar',
  'import_grandpar_live',
  'grandpar_live_beauti',
  'live_beauti_hous',
  'beauti_hous_neighbor',
  'hous_neighbor_mani',
  'neighbor_mani_tree',
  'mani_tree_garden',
  'tree_garden_pay',
  'garden_pay_hous',
  'pay_hous_year',
  'hous_year_special',
  'year_special_granddad',
  'special_granddad_also',
  'granddad_also_bad',
  'also_bad_problem',
  'bad_problem_back',
  'problem_back_condit',
  'back_condit_would',
  'condit_would_get',
  'would_get_wors',
  'get_wors_go',
  'wors_go_anymor',
  'go_anymor_grandmoth',
  'anymor_grandmoth_pass',
  'grandmoth_pass_got',
  'pass_got_wors',
  'got_wors_end',
  'wors_end_need',
  'end_need_home',
  'need_home_care',
  'home_care_want',
  'care_want_stranger',
  'want_stranger_home',
  'stranger_home_option',
  'home_option_think',
  'option_think_due',
  'think_due_grandmoth',
  'due_grandmoth_pass',
  'grandmoth_pass_parent',
  'pass_parent_preach',
  'parent_preach_punish',
  'preach_punish_sin',
  'punish_sin_take',
  'sin_take_care',
  'take_care_plan',
  'care_plan_put',
  'plan_put_home',
  'put_home_decid',
  'home_decid_stay',
  'decid_stay_sinc',
  'stay_sinc_would',
  'sinc_would_easier',
  'would_easier_job',
  'easier_job_work',
  'job_work_effect',
  'work_effect_home',
  'effect_home_hed',
  'home_hed_get',
  'hed_get_care',
  'get_care_someon',
  'care_someon_total',
  'someon_total_stranger',
  'total_stranger_time',
  'stranger_time_took',
  'time_took_care',
  'took_care_fill',
  'care_fill_home',
  'fill_home_love',
  'home_love_laughter',
  'love_laughter_grandmoth',
  'laughter_grandmoth_brought',
  'grandmoth_brought_granddad',
  'brought_granddad_got',
  'granddad_got_wors',
  'got_wors_singl',
  'wors_singl_call',
  'singl_call_mom',
  'call_mom_dad',
  'mom_dad_brother',
  'dad_brother_joke',
  'brother_joke_said',
  'joke_said_mayb',
  'said_mayb_give',
  'mayb_give_missi',
  'give_missi_hous',
  'missi_hous_name',
  'hous_name_lol',
  'name_lol_instead',
  'lol_instead_dad',
  'instead_dad_gon',
  'dad_gon_na',
  'gon_na_give',
  'na_give_brother',
  'give_brother_anyway',
  'brother_anyway_laugh',
  'anyway_laugh_said',
  'laugh_said_assum',
  'said_assum_joke',
  'assum_joke_fast',
  'joke_fast_forward',
  'fast_forward_worst',
  'forward_worst_happen',
  'worst_happen_one',
  'happen_one_found',
  'one_found_make',
  'found_make_call',
  'make_call_much',
  'call_much_push',
  'much_push_away',
  'push_away_parent',
  'away_parent_want',
  'parent_want_find',
  'want_find_news',
  'find_news_random',
  'news_random_person',
  'random_person_funer',
  'person_funer_first',
  'funer_first_time',
  'first_time_ever',
  'time_ever_truli',
  'ever_truli_connect',
  'truli_connect_parent',
  'connect_parent_year',
  'parent_year_hug',
  'year_hug_cri',
  'hug_cri_togeth',
  'cri_togeth_vulner',
  'togeth_vulner_came',
  'vulner_came_time',
  'came_time_telenovela',
  'time_telenovela_dramat',
  'telenovela_dramat_intens',
  'dramat_intens_hous',
  'intens_hous_suppos',
  'hous_suppos_dad',
  'suppos_dad_becam',
  'dad_becam_mine',
  'becam_mine_well',
  'mine_well_mani',
  'well_mani_thing',
  'mani_thing_dad',
  'thing_dad_plan',
  'dad_plan_give',
  'plan_give_brother',
  'give_brother_accus',
  'brother_accus_manipul',
  'accus_manipul_granddad',
  'manipul_granddad_give',
  'granddad_give_brother',
  'give_brother_yell',
  'brother_yell_week',
  'yell_week_brother',
  'week_brother_came',
  'brother_came_hous',
  'came_hous_tear',
  'hous_tear_beg',
  'tear_beg_give',
  'beg_give_hous',
  'give_hous_sinc',
  'hous_sinc_small',
  'sinc_small_wife',
  'small_wife_babi',
  'wife_babi_argu',
  'babi_argu_husband',
  'argu_husband_want',
  'husband_want_kid',
  'want_kid_need',
  'kid_need_told',
  'need_told_leav',
  'told_leav_felt',
  'leav_felt_horribl',
  'felt_horribl_feel',
  'horribl_feel_like',
  'feel_like_asshol',
  'like_asshol_famili',
  'asshol_famili_right',
  'famili_right_need',
  'right_need_hous',
  'need_hous_job',
  'hous_job_pay',
  'job_pay_good',
  'pay_good_money',
  'good_money_could',
  'money_could_easili',
  'could_easili_live',
  'easili_live_somewher',
  'live_somewher_els',
  'somewher_els_hand',
  'els_hand_though',
  'hand_though_granddad',
  'though_granddad_want',
  'granddad_want_dad',
  'want_dad_loss',
  'dad_loss_aita'],
 ['daughter',
  'averi',
  'husband',
  'tom',
  'expect',
  'first',
  'babi',
  'togeth',
  'theyr',
  'excit',
  'get',
  'mani',
  'thing',
  'done',
  'short',
  'time',
  'theyv',
  'busi',
  'late',
  'seen',
  'month',
  'yesterday',
  'visit',
  'hous',
  'talk',
  'babi',
  'mostli',
  'tom',
  'ask',
  'empti',
  'one',
  'room',
  'could',
  'turn',
  'nurseri',
  'yet',
  'confus',
  'question',
  'ask',
  'said',
  'expect',
  'ask',
  'look',
  'said',
  'everi',
  'decent',
  'grandmoth',
  'prepar',
  'nurseri',
  'home',
  'specif',
  'welcom',
  'grandson',
  'new',
  'member',
  'extend',
  'famili',
  'went',
  'give',
  'exampl',
  'common',
  'tradit',
  'know',
  'word',
  'irk',
  'ask',
  'cant',
  'mom',
  'prepar',
  'one',
  'grandson',
  'sinc',
  'grandson',
  'laugh',
  'said',
  'mom',
  'alreadi',
  'one',
  'prepar',
  'paid',
  'mention',
  'tom',
  'famili',
  'well',
  'unlik',
  'us',
  'avali',
  'room',
  'money',
  'afford',
  'whole',
  'nurseri',
  'yet',
  'tom',
  'insist',
  'necesari',
  'make',
  'effort',
  'make',
  'sure',
  'grandson',
  'get',
  'everyth',
  'need',
  'whenev',
  'visit',
  'look',
  'daughter',
  'wonder',
  'agre',
  'look',
  'told',
  'tom',
  'space',
  'money',
  'make',
  'happen',
  'argu',
  'make',
  'happen',
  'affect',
  'mani',
  'visit',
  'get',
  'compar',
  'mom',
  'fulli',
  'prepar',
  'consider',
  'grandbabi',
  'need',
  'averi',
  'final',
  'spoke',
  'told',
  'pleas',
  'tri',
  'move',
  'yo',
  'son',
  'stay',
  'yo',
  'brother',
  'said',
  'boy',
  'old',
  'enough',
  'get',
  'room',
  'tom',
  'pitch',
  'say',
  'boy',
  'share',
  'room',
  'sinc',
  'theyr',
  'boy',
  'convinc',
  'fact',
  'upset',
  'came',
  'suggest',
  'averi',
  'like',
  'took',
  'care',
  'babi',
  'want',
  'anyth',
  'true',
  'convers',
  'turn',
  'argument',
  'left',
  'minut',
  'later',
  'averi',
  'mustv',
  'call',
  'husband',
  'yell',
  'came',
  'home',
  'say',
  'way',
  'treat',
  'daughter',
  'grandchild',
  'told',
  'stori',
  'accus',
  'favor',
  'boy',
  'averi',
  'like',
  'alway',
  'time',
  'think',
  'request',
  'way',
  'reason',
  'edit',
  'one',
  'thing',
  'clarifi',
  'never',
  'said',
  'common',
  'unless',
  'well',
  'famili',
  'think',
  'tom',
  'said',
  'famili',
  'consid',
  'normal',
  'tom',
  'offer',
  'pay',
  'everyth',
  'empti',
  'son',
  'room',
  'said',
  'argument',
  'start',
  'tom',
  'say',
  'im',
  'refus',
  'work',
  'compromis',
  'compromis',
  'daughter_averi',
  'averi_husband',
  'husband_tom',
  'tom_expect',
  'expect_first',
  'first_babi',
  'babi_togeth',
  'togeth_theyr',
  'theyr_excit',
  'excit_get',
  'get_mani',
  'mani_thing',
  'thing_done',
  'done_short',
  'short_time',
  'time_theyv',
  'theyv_busi',
  'busi_late',
  'late_seen',
  'seen_month',
  'month_yesterday',
  'yesterday_visit',
  'visit_hous',
  'hous_talk',
  'talk_babi',
  'babi_mostli',
  'mostli_tom',
  'tom_ask',
  'ask_empti',
  'empti_one',
  'one_room',
  'room_could',
  'could_turn',
  'turn_nurseri',
  'nurseri_yet',
  'yet_confus',
  'confus_question',
  'question_ask',
  'ask_said',
  'said_expect',
  'expect_ask',
  'ask_look',
  'look_said',
  'said_everi',
  'everi_decent',
  'decent_grandmoth',
  'grandmoth_prepar',
  'prepar_nurseri',
  'nurseri_home',
  'home_specif',
  'specif_welcom',
  'welcom_grandson',
  'grandson_new',
  'new_member',
  'member_extend',
  'extend_famili',
  'famili_went',
  'went_give',
  'give_exampl',
  'exampl_common',
  'common_tradit',
  'tradit_know',
  'know_word',
  'word_irk',
  'irk_ask',
  'ask_cant',
  'cant_mom',
  'mom_prepar',
  'prepar_one',
  'one_grandson',
  'grandson_sinc',
  'sinc_grandson',
  'grandson_laugh',
  'laugh_said',
  'said_mom',
  'mom_alreadi',
  'alreadi_one',
  'one_prepar',
  'prepar_paid',
  'paid_mention',
  'mention_tom',
  'tom_famili',
  'famili_well',
  'well_unlik',
  'unlik_us',
  'us_avali',
  'avali_room',
  'room_money',
  'money_afford',
  'afford_whole',
  'whole_nurseri',
  'nurseri_yet',
  'yet_tom',
  'tom_insist',
  'insist_necesari',
  'necesari_make',
  'make_effort',
  'effort_make',
  'make_sure',
  'sure_grandson',
  'grandson_get',
  'get_everyth',
  'everyth_need',
  'need_whenev',
  'whenev_visit',
  'visit_look',
  'look_daughter',
  'daughter_wonder',
  'wonder_agre',
  'agre_look',
  'look_told',
  'told_tom',
  'tom_space',
  'space_money',
  'money_make',
  'make_happen',
  'happen_argu',
  'argu_make',
  'make_happen',
  'happen_affect',
  'affect_mani',
  'mani_visit',
  'visit_get',
  'get_compar',
  'compar_mom',
  'mom_fulli',
  'fulli_prepar',
  'prepar_consider',
  'consider_grandbabi',
  'grandbabi_need',
  'need_averi',
  'averi_final',
  'final_spoke',
  'spoke_told',
  'told_pleas',
  'pleas_tri',
  'tri_move',
  'move_yo',
  'yo_son',
  'son_stay',
  'stay_yo',
  'yo_brother',
  'brother_said',
  'said_boy',
  'boy_old',
  'old_enough',
  'enough_get',
  'get_room',
  'room_tom',
  'tom_pitch',
  'pitch_say',
  'say_boy',
  'boy_share',
  'share_room',
  'room_sinc',
  'sinc_theyr',
  'theyr_boy',
  'boy_convinc',
  'convinc_fact',
  'fact_upset',
  'upset_came',
  'came_suggest',
  'suggest_averi',
  'averi_like',
  'like_took',
  'took_care',
  'care_babi',
  'babi_want',
  'want_anyth',
  'anyth_true',
  'true_convers',
  'convers_turn',
  'turn_argument',
  'argument_left',
  'left_minut',
  'minut_later',
  'later_averi',
  'averi_mustv',
  'mustv_call',
  'call_husband',
  'husband_yell',
  'yell_came',
  'came_home',
  'home_say',
  'say_way',
  'way_treat',
  'treat_daughter',
  'daughter_grandchild',
  'grandchild_told',
  'told_stori',
  'stori_accus',
  'accus_favor',
  'favor_boy',
  'boy_averi',
  'averi_like',
  'like_alway',
  'alway_time',
  'time_think',
  'think_request',
  'request_way',
  'way_reason',
  'reason_edit',
  'edit_one',
  'one_thing',
  'thing_clarifi',
  'clarifi_never',
  'never_said',
  'said_common',
  'common_unless',
  'unless_well',
  'well_famili',
  'famili_think',
  'think_tom',
  'tom_said',
  'said_famili',
  'famili_consid',
  'consid_normal',
  'normal_tom',
  'tom_offer',
  'offer_pay',
  'pay_everyth',
  'everyth_empti',
  'empti_son',
  'son_room',
  'room_said',
  'said_argument',
  'argument_start',
  'start_tom',
  'tom_say',
  'say_im',
  'im_refus',
  'refus_work',
  'work_compromis',
  'compromis_compromis',
  'daughter_averi_husband',
  'averi_husband_tom',
  'husband_tom_expect',
  'tom_expect_first',
  'expect_first_babi',
  'first_babi_togeth',
  'babi_togeth_theyr',
  'togeth_theyr_excit',
  'theyr_excit_get',
  'excit_get_mani',
  'get_mani_thing',
  'mani_thing_done',
  'thing_done_short',
  'done_short_time',
  'short_time_theyv',
  'time_theyv_busi',
  'theyv_busi_late',
  'busi_late_seen',
  'late_seen_month',
  'seen_month_yesterday',
  'month_yesterday_visit',
  'yesterday_visit_hous',
  'visit_hous_talk',
  'hous_talk_babi',
  'talk_babi_mostli',
  'babi_mostli_tom',
  'mostli_tom_ask',
  'tom_ask_empti',
  'ask_empti_one',
  'empti_one_room',
  'one_room_could',
  'room_could_turn',
  'could_turn_nurseri',
  'turn_nurseri_yet',
  'nurseri_yet_confus',
  'yet_confus_question',
  'confus_question_ask',
  'question_ask_said',
  'ask_said_expect',
  'said_expect_ask',
  'expect_ask_look',
  'ask_look_said',
  'look_said_everi',
  'said_everi_decent',
  'everi_decent_grandmoth',
  'decent_grandmoth_prepar',
  'grandmoth_prepar_nurseri',
  'prepar_nurseri_home',
  'nurseri_home_specif',
  'home_specif_welcom',
  'specif_welcom_grandson',
  'welcom_grandson_new',
  'grandson_new_member',
  'new_member_extend',
  'member_extend_famili',
  'extend_famili_went',
  'famili_went_give',
  'went_give_exampl',
  'give_exampl_common',
  'exampl_common_tradit',
  'common_tradit_know',
  'tradit_know_word',
  'know_word_irk',
  'word_irk_ask',
  'irk_ask_cant',
  'ask_cant_mom',
  'cant_mom_prepar',
  'mom_prepar_one',
  'prepar_one_grandson',
  'one_grandson_sinc',
  'grandson_sinc_grandson',
  'sinc_grandson_laugh',
  'grandson_laugh_said',
  'laugh_said_mom',
  'said_mom_alreadi',
  'mom_alreadi_one',
  'alreadi_one_prepar',
  'one_prepar_paid',
  'prepar_paid_mention',
  'paid_mention_tom',
  'mention_tom_famili',
  'tom_famili_well',
  'famili_well_unlik',
  'well_unlik_us',
  'unlik_us_avali',
  'us_avali_room',
  'avali_room_money',
  'room_money_afford',
  'money_afford_whole',
  'afford_whole_nurseri',
  'whole_nurseri_yet',
  'nurseri_yet_tom',
  'yet_tom_insist',
  'tom_insist_necesari',
  'insist_necesari_make',
  'necesari_make_effort',
  'make_effort_make',
  'effort_make_sure',
  'make_sure_grandson',
  'sure_grandson_get',
  'grandson_get_everyth',
  'get_everyth_need',
  'everyth_need_whenev',
  'need_whenev_visit',
  'whenev_visit_look',
  'visit_look_daughter',
  'look_daughter_wonder',
  'daughter_wonder_agre',
  'wonder_agre_look',
  'agre_look_told',
  'look_told_tom',
  'told_tom_space',
  'tom_space_money',
  'space_money_make',
  'money_make_happen',
  'make_happen_argu',
  'happen_argu_make',
  'argu_make_happen',
  'make_happen_affect',
  'happen_affect_mani',
  'affect_mani_visit',
  'mani_visit_get',
  'visit_get_compar',
  'get_compar_mom',
  'compar_mom_fulli',
  'mom_fulli_prepar',
  'fulli_prepar_consider',
  'prepar_consider_grandbabi',
  'consider_grandbabi_need',
  'grandbabi_need_averi',
  'need_averi_final',
  'averi_final_spoke',
  'final_spoke_told',
  'spoke_told_pleas',
  'told_pleas_tri',
  'pleas_tri_move',
  'tri_move_yo',
  'move_yo_son',
  'yo_son_stay',
  'son_stay_yo',
  'stay_yo_brother',
  'yo_brother_said',
  'brother_said_boy',
  'said_boy_old',
  'boy_old_enough',
  'old_enough_get',
  'enough_get_room',
  'get_room_tom',
  'room_tom_pitch',
  'tom_pitch_say',
  'pitch_say_boy',
  'say_boy_share',
  'boy_share_room',
  'share_room_sinc',
  'room_sinc_theyr',
  'sinc_theyr_boy',
  'theyr_boy_convinc',
  'boy_convinc_fact',
  'convinc_fact_upset',
  'fact_upset_came',
  'upset_came_suggest',
  'came_suggest_averi',
  'suggest_averi_like',
  'averi_like_took',
  'like_took_care',
  'took_care_babi',
  'care_babi_want',
  'babi_want_anyth',
  'want_anyth_true',
  'anyth_true_convers',
  'true_convers_turn',
  'convers_turn_argument',
  'turn_argument_left',
  'argument_left_minut',
  'left_minut_later',
  'minut_later_averi',
  'later_averi_mustv',
  'averi_mustv_call',
  'mustv_call_husband',
  'call_husband_yell',
  'husband_yell_came',
  'yell_came_home',
  'came_home_say',
  'home_say_way',
  'say_way_treat',
  'way_treat_daughter',
  'treat_daughter_grandchild',
  'daughter_grandchild_told',
  'grandchild_told_stori',
  'told_stori_accus',
  'stori_accus_favor',
  'accus_favor_boy',
  'favor_boy_averi',
  'boy_averi_like',
  'averi_like_alway',
  'like_alway_time',
  'alway_time_think',
  'time_think_request',
  'think_request_way',
  'request_way_reason',
  'way_reason_edit',
  'reason_edit_one',
  'edit_one_thing',
  'one_thing_clarifi',
  'thing_clarifi_never',
  'clarifi_never_said',
  'never_said_common',
  'said_common_unless',
  'common_unless_well',
  'unless_well_famili',
  'well_famili_think',
  'famili_think_tom',
  'think_tom_said',
  'tom_said_famili',
  'said_famili_consid',
  'famili_consid_normal',
  'consid_normal_tom',
  'normal_tom_offer',
  'tom_offer_pay',
  'offer_pay_everyth',
  'pay_everyth_empti',
  'everyth_empti_son',
  'empti_son_room',
  'son_room_said',
  'room_said_argument',
  'said_argument_start',
  'argument_start_tom',
  'start_tom_say',
  'tom_say_im',
  'say_im_refus',
  'im_refus_work',
  'refus_work_compromis',
  'work_compromis_compromis'],
 ['context',
  'boyfriend',
  'adam',
  'half',
  'year',
  'quietshi',
  'type',
  'hard',
  'get',
  'open',
  'bother',
  'im',
  'one',
  'incom',
  'get',
  'along',
  'easili',
  'though',
  'bea',
  'bit',
  'unreason',
  'sometimeseg',
  'cook',
  'caus',
  'worri',
  'like',
  'food',
  'still',
  'cook',
  'smell',
  'pretti',
  'tell',
  'cook',
  'good',
  'anoth',
  'eg',
  'chore',
  'say',
  'worri',
  'might',
  'breakdamag',
  'someth',
  'frustrat',
  'work',
  'fix',
  'unto',
  'complic',
  'issu',
  'id',
  'put',
  'money',
  'asid',
  'sinc',
  'buy',
  'apart',
  'im',
  'final',
  'abl',
  'get',
  'done',
  'year',
  'told',
  'got',
  'agit',
  'said',
  'wait',
  'littl',
  'longer',
  'til',
  'marri',
  'said',
  'start',
  'complain',
  'bad',
  'feel',
  'see',
  'buy',
  'apart',
  'without',
  'contribut',
  'ask',
  'suppos',
  'becauseit',
  'kinda',
  'sound',
  'like',
  'problem',
  'offens',
  'got',
  'work',
  'gave',
  'option',
  'put',
  'name',
  'titl',
  'buy',
  'apart',
  'til',
  'marriag',
  'itll',
  'becom',
  'share',
  'marit',
  'asset',
  'said',
  'final',
  'drop',
  'eventu',
  'famili',
  'hous',
  'taken',
  'aback',
  'start',
  'complain',
  'apart',
  'told',
  'either',
  'put',
  'name',
  'titl',
  'wait',
  'til',
  'marriag',
  'buy',
  'caus',
  'feel',
  'like',
  'huge',
  'power',
  'imbal',
  'cant',
  'bring',
  'accept',
  'also',
  'said',
  'make',
  'feel',
  'like',
  'contribut',
  'noth',
  'snap',
  'said',
  'reason',
  'feel',
  'like',
  'contribut',
  'noth',
  'liter',
  'contribut',
  'noth',
  'suggest',
  'fix',
  'actual',
  'find',
  'job',
  'decent',
  'incom',
  'famili',
  'look',
  'shock',
  'glanc',
  'got',
  'walk',
  'away',
  'wait',
  'come',
  'back',
  'go',
  'home',
  'caus',
  'mom',
  'said',
  'felt',
  'overwhelm',
  'want',
  'space',
  'basic',
  'start',
  'shame',
  'statement',
  'hint',
  'financi',
  'abus',
  'control',
  'son',
  'home',
  'yet',
  'demand',
  'anoth',
  'tall',
  'apart',
  'probabl',
  'expect',
  'agre',
  'one',
  'option',
  'edit',
  'case',
  'matter',
  'disabl',
  'limit',
  'job',
  'opportun',
  'context_boyfriend',
  'boyfriend_adam',
  'adam_half',
  'half_year',
  'year_quietshi',
  'quietshi_type',
  'type_hard',
  'hard_get',
  'get_open',
  'open_bother',
  'bother_im',
  'im_one',
  'one_incom',
  'incom_get',
  'get_along',
  'along_easili',
  'easili_though',
  'though_bea',
  'bea_bit',
  'bit_unreason',
  'unreason_sometimeseg',
  'sometimeseg_cook',
  'cook_caus',
  'caus_worri',
  'worri_like',
  'like_food',
  'food_still',
  'still_cook',
  'cook_smell',
  'smell_pretti',
  'pretti_tell',
  'tell_cook',
  'cook_good',
  'good_anoth',
  'anoth_eg',
  'eg_chore',
  'chore_say',
  'say_worri',
  'worri_might',
  'might_breakdamag',
  'breakdamag_someth',
  'someth_frustrat',
  'frustrat_work',
  'work_fix',
  'fix_unto',
  'unto_complic',
  'complic_issu',
  'issu_id',
  'id_put',
  'put_money',
  'money_asid',
  'asid_sinc',
  'sinc_buy',
  'buy_apart',
  'apart_im',
  'im_final',
  'final_abl',
  'abl_get',
  'get_done',
  'done_year',
  'year_told',
  'told_got',
  'got_agit',
  'agit_said',
  'said_wait',
  'wait_littl',
  'littl_longer',
  'longer_til',
  'til_marri',
  'marri_said',
  'said_start',
  'start_complain',
  'complain_bad',
  'bad_feel',
  'feel_see',
  'see_buy',
  'buy_apart',
  'apart_without',
  'without_contribut',
  'contribut_ask',
  'ask_suppos',
  'suppos_becauseit',
  'becauseit_kinda',
  'kinda_sound',
  'sound_like',
  'like_problem',
  'problem_offens',
  'offens_got',
  'got_work',
  'work_gave',
  'gave_option',
  'option_put',
  'put_name',
  'name_titl',
  'titl_buy',
  'buy_apart',
  'apart_til',
  'til_marriag',
  'marriag_itll',
  'itll_becom',
  'becom_share',
  'share_marit',
  'marit_asset',
  'asset_said',
  'said_final',
  'final_drop',
  'drop_eventu',
  'eventu_famili',
  'famili_hous',
  'hous_taken',
  'taken_aback',
  'aback_start',
  'start_complain',
  'complain_apart',
  'apart_told',
  'told_either',
  'either_put',
  'put_name',
  'name_titl',
  'titl_wait',
  'wait_til',
  'til_marriag',
  'marriag_buy',
  'buy_caus',
  'caus_feel',
  'feel_like',
  'like_huge',
  'huge_power',
  'power_imbal',
  'imbal_cant',
  'cant_bring',
  'bring_accept',
  'accept_also',
  'also_said',
  'said_make',
  'make_feel',
  'feel_like',
  'like_contribut',
  'contribut_noth',
  'noth_snap',
  'snap_said',
  'said_reason',
  'reason_feel',
  'feel_like',
  'like_contribut',
  'contribut_noth',
  'noth_liter',
  'liter_contribut',
  'contribut_noth',
  'noth_suggest',
  'suggest_fix',
  'fix_actual',
  'actual_find',
  'find_job',
  'job_decent',
  'decent_incom',
  'incom_famili',
  'famili_look',
  'look_shock',
  'shock_glanc',
  'glanc_got',
  'got_walk',
  'walk_away',
  'away_wait',
  'wait_come',
  'come_back',
  'back_go',
  'go_home',
  'home_caus',
  'caus_mom',
  'mom_said',
  'said_felt',
  'felt_overwhelm',
  'overwhelm_want',
  'want_space',
  'space_basic',
  'basic_start',
  'start_shame',
  'shame_statement',
  'statement_hint',
  'hint_financi',
  'financi_abus',
  'abus_control',
  'control_son',
  'son_home',
  'home_yet',
  'yet_demand',
  'demand_anoth',
  'anoth_tall',
  'tall_apart',
  'apart_probabl',
  'probabl_expect',
  'expect_agre',
  'agre_one',
  'one_option',
  'option_edit',
  'edit_case',
  'case_matter',
  'matter_disabl',
  'disabl_limit',
  'limit_job',
  'job_opportun',
  'context_boyfriend_adam',
  'boyfriend_adam_half',
  'adam_half_year',
  'half_year_quietshi',
  'year_quietshi_type',
  'quietshi_type_hard',
  'type_hard_get',
  'hard_get_open',
  'get_open_bother',
  'open_bother_im',
  'bother_im_one',
  'im_one_incom',
  'one_incom_get',
  'incom_get_along',
  'get_along_easili',
  'along_easili_though',
  'easili_though_bea',
  'though_bea_bit',
  'bea_bit_unreason',
  'bit_unreason_sometimeseg',
  'unreason_sometimeseg_cook',
  'sometimeseg_cook_caus',
  'cook_caus_worri',
  'caus_worri_like',
  'worri_like_food',
  'like_food_still',
  'food_still_cook',
  'still_cook_smell',
  'cook_smell_pretti',
  'smell_pretti_tell',
  'pretti_tell_cook',
  'tell_cook_good',
  'cook_good_anoth',
  'good_anoth_eg',
  'anoth_eg_chore',
  'eg_chore_say',
  'chore_say_worri',
  'say_worri_might',
  'worri_might_breakdamag',
  'might_breakdamag_someth',
  'breakdamag_someth_frustrat',
  'someth_frustrat_work',
  'frustrat_work_fix',
  'work_fix_unto',
  'fix_unto_complic',
  'unto_complic_issu',
  'complic_issu_id',
  'issu_id_put',
  'id_put_money',
  'put_money_asid',
  'money_asid_sinc',
  'asid_sinc_buy',
  'sinc_buy_apart',
  'buy_apart_im',
  'apart_im_final',
  'im_final_abl',
  'final_abl_get',
  'abl_get_done',
  'get_done_year',
  'done_year_told',
  'year_told_got',
  'told_got_agit',
  'got_agit_said',
  'agit_said_wait',
  'said_wait_littl',
  'wait_littl_longer',
  'littl_longer_til',
  'longer_til_marri',
  'til_marri_said',
  'marri_said_start',
  'said_start_complain',
  'start_complain_bad',
  'complain_bad_feel',
  'bad_feel_see',
  'feel_see_buy',
  'see_buy_apart',
  'buy_apart_without',
  'apart_without_contribut',
  'without_contribut_ask',
  'contribut_ask_suppos',
  'ask_suppos_becauseit',
  'suppos_becauseit_kinda',
  'becauseit_kinda_sound',
  'kinda_sound_like',
  'sound_like_problem',
  'like_problem_offens',
  'problem_offens_got',
  'offens_got_work',
  'got_work_gave',
  'work_gave_option',
  'gave_option_put',
  'option_put_name',
  'put_name_titl',
  'name_titl_buy',
  'titl_buy_apart',
  'buy_apart_til',
  'apart_til_marriag',
  'til_marriag_itll',
  'marriag_itll_becom',
  'itll_becom_share',
  'becom_share_marit',
  'share_marit_asset',
  'marit_asset_said',
  'asset_said_final',
  'said_final_drop',
  'final_drop_eventu',
  'drop_eventu_famili',
  'eventu_famili_hous',
  'famili_hous_taken',
  'hous_taken_aback',
  'taken_aback_start',
  'aback_start_complain',
  'start_complain_apart',
  'complain_apart_told',
  'apart_told_either',
  'told_either_put',
  'either_put_name',
  'put_name_titl',
  'name_titl_wait',
  'titl_wait_til',
  'wait_til_marriag',
  'til_marriag_buy',
  'marriag_buy_caus',
  'buy_caus_feel',
  'caus_feel_like',
  'feel_like_huge',
  'like_huge_power',
  'huge_power_imbal',
  'power_imbal_cant',
  'imbal_cant_bring',
  'cant_bring_accept',
  'bring_accept_also',
  'accept_also_said',
  'also_said_make',
  'said_make_feel',
  'make_feel_like',
  'feel_like_contribut',
  'like_contribut_noth',
  'contribut_noth_snap',
  'noth_snap_said',
  'snap_said_reason',
  'said_reason_feel',
  'reason_feel_like',
  'feel_like_contribut',
  'like_contribut_noth',
  'contribut_noth_liter',
  'noth_liter_contribut',
  'liter_contribut_noth',
  'contribut_noth_suggest',
  'noth_suggest_fix',
  'suggest_fix_actual',
  'fix_actual_find',
  'actual_find_job',
  'find_job_decent',
  'job_decent_incom',
  'decent_incom_famili',
  'incom_famili_look',
  'famili_look_shock',
  'look_shock_glanc',
  'shock_glanc_got',
  'glanc_got_walk',
  'got_walk_away',
  'walk_away_wait',
  'away_wait_come',
  'wait_come_back',
  'come_back_go',
  'back_go_home',
  'go_home_caus',
  'home_caus_mom',
  'caus_mom_said',
  'mom_said_felt',
  'said_felt_overwhelm',
  'felt_overwhelm_want',
  'overwhelm_want_space',
  'want_space_basic',
  'space_basic_start',
  'basic_start_shame',
  'start_shame_statement',
  'shame_statement_hint',
  'statement_hint_financi',
  'hint_financi_abus',
  'financi_abus_control',
  'abus_control_son',
  'control_son_home',
  'son_home_yet',
  'home_yet_demand',
  'yet_demand_anoth',
  'demand_anoth_tall',
  'anoth_tall_apart',
  'tall_apart_probabl',
  'apart_probabl_expect',
  'probabl_expect_agre',
  'expect_agre_one',
  'agre_one_option',
  'one_option_edit',
  'option_edit_case',
  'edit_case_matter',
  'case_matter_disabl',
  'matter_disabl_limit',
  'disabl_limit_job',
  'limit_job_opportun'],
 ['wife',
  'run',
  'websit',
  'dedic',
  'cook',
  'recip',
  'take',
  'pictur',
  'food',
  'eat',
  'wether',
  'lunch',
  'dinner',
  'post',
  'insta',
  'account',
  'honest',
  'im',
  'annoy',
  'wait',
  'long',
  'get',
  'perfeft',
  'shot',
  'food',
  'decor',
  'ad',
  'fork',
  'remov',
  'salad',
  'dish',
  'take',
  'long',
  'lose',
  'appetit',
  'wait',
  'til',
  'done',
  'becom',
  'norm',
  'yesterday',
  'decid',
  'none',
  'came',
  'found',
  'cook',
  'entir',
  'feast',
  'next',
  'cook',
  'project',
  'put',
  'tabl',
  'note',
  'lok',
  'whole',
  'tabl',
  'set',
  'figur',
  'pictur',
  'alreadi',
  'taken',
  'right',
  'said',
  'go',
  'take',
  'pictur',
  'wait',
  'went',
  'upstair',
  'get',
  'camera',
  'grab',
  'spoon',
  'start',
  'fill',
  'plate',
  'everi',
  'dish',
  'made',
  'ruin',
  'look',
  'result',
  'hungri',
  'unwil',
  'wait',
  'around',
  '+',
  'eat',
  'came',
  'downstair',
  'saw',
  'damag',
  'blew',
  'almost',
  'cri',
  'say',
  'ruin',
  'cook',
  'project',
  'work',
  'hour',
  'well',
  'put',
  'effort',
  'said',
  'hungri',
  'wait',
  'kept',
  'yell',
  'much',
  'obnoxi',
  'jerk',
  'wait',
  'til',
  'dhe',
  'took',
  'pictur',
  'dish',
  'made',
  'even',
  'said',
  'attempt',
  'sabotag',
  'success',
  'said',
  'oh',
  'pleas',
  'enough',
  'conspiraci',
  'theori',
  'im',
  'hungri',
  'wait',
  'til',
  'got',
  'perfect',
  'shot',
  'big',
  'argument',
  'shewent',
  'upstair',
  'cri',
  'finish',
  'food',
  'went',
  'cool',
  'bit',
  'return',
  'shed',
  'threaten',
  'shell',
  'never',
  'eat',
  'anyth',
  'cook',
  'said',
  'shed',
  'rather',
  'throw',
  'garbag',
  'give',
  'ungrat',
  'obnoxi',
  'jerk',
  'like',
  'said',
  'cool',
  'told',
  'go',
  'fuck',
  'said',
  'fine',
  'went',
  'spend',
  'night',
  'guest',
  'room',
  'text',
  'word',
  'jerk',
  'time',
  'til',
  'turn',
  'phone',
  'today',
  'gone',
  'complet',
  'radio',
  'silenc',
  'aita',
  'wife_run',
  'run_websit',
  'websit_dedic',
  'dedic_cook',
  'cook_recip',
  'recip_take',
  'take_pictur',
  'pictur_food',
  'food_eat',
  'eat_wether',
  'wether_lunch',
  'lunch_dinner',
  'dinner_post',
  'post_insta',
  'insta_account',
  'account_honest',
  'honest_im',
  'im_annoy',
  'annoy_wait',
  'wait_long',
  'long_get',
  'get_perfeft',
  'perfeft_shot',
  'shot_food',
  'food_decor',
  'decor_ad',
  'ad_fork',
  'fork_remov',
  'remov_salad',
  'salad_dish',
  'dish_take',
  'take_long',
  'long_lose',
  'lose_appetit',
  'appetit_wait',
  'wait_til',
  'til_done',
  'done_becom',
  'becom_norm',
  'norm_yesterday',
  'yesterday_decid',
  'decid_none',
  'none_came',
  'came_found',
  'found_cook',
  'cook_entir',
  'entir_feast',
  'feast_next',
  'next_cook',
  'cook_project',
  'project_put',
  'put_tabl',
  'tabl_note',
  'note_lok',
  'lok_whole',
  'whole_tabl',
  'tabl_set',
  'set_figur',
  'figur_pictur',
  'pictur_alreadi',
  'alreadi_taken',
  'taken_right',
  'right_said',
  'said_go',
  'go_take',
  'take_pictur',
  'pictur_wait',
  'wait_went',
  'went_upstair',
  'upstair_get',
  'get_camera',
  'camera_grab',
  'grab_spoon',
  'spoon_start',
  'start_fill',
  'fill_plate',
  'plate_everi',
  'everi_dish',
  'dish_made',
  'made_ruin',
  'ruin_look',
  'look_result',
  'result_hungri',
  'hungri_unwil',
  'unwil_wait',
  'wait_around',
  'around_+',
  '+_eat',
  'eat_came',
  'came_downstair',
  'downstair_saw',
  'saw_damag',
  'damag_blew',
  'blew_almost',
  'almost_cri',
  'cri_say',
  'say_ruin',
  'ruin_cook',
  'cook_project',
  'project_work',
  'work_hour',
  'hour_well',
  'well_put',
  'put_effort',
  'effort_said',
  'said_hungri',
  'hungri_wait',
  'wait_kept',
  'kept_yell',
  'yell_much',
  'much_obnoxi',
  'obnoxi_jerk',
  'jerk_wait',
  'wait_til',
  'til_dhe',
  'dhe_took',
  'took_pictur',
  'pictur_dish',
  'dish_made',
  'made_even',
  'even_said',
  'said_attempt',
  'attempt_sabotag',
  'sabotag_success',
  'success_said',
  'said_oh',
  'oh_pleas',
  'pleas_enough',
  'enough_conspiraci',
  'conspiraci_theori',
  'theori_im',
  'im_hungri',
  'hungri_wait',
  'wait_til',
  'til_got',
  'got_perfect',
  'perfect_shot',
  'shot_big',
  'big_argument',
  'argument_shewent',
  'shewent_upstair',
  'upstair_cri',
  'cri_finish',
  'finish_food',
  'food_went',
  'went_cool',
  'cool_bit',
  'bit_return',
  'return_shed',
  'shed_threaten',
  'threaten_shell',
  'shell_never',
  'never_eat',
  'eat_anyth',
  'anyth_cook',
  'cook_said',
  'said_shed',
  'shed_rather',
  'rather_throw',
  'throw_garbag',
  'garbag_give',
  'give_ungrat',
  'ungrat_obnoxi',
  'obnoxi_jerk',
  'jerk_like',
  'like_said',
  'said_cool',
  'cool_told',
  'told_go',
  'go_fuck',
  'fuck_said',
  'said_fine',
  'fine_went',
  'went_spend',
  'spend_night',
  'night_guest',
  'guest_room',
  'room_text',
  'text_word',
  'word_jerk',
  'jerk_time',
  'time_til',
  'til_turn',
  'turn_phone',
  'phone_today',
  'today_gone',
  'gone_complet',
  'complet_radio',
  'radio_silenc',
  'silenc_aita',
  'wife_run_websit',
  'run_websit_dedic',
  'websit_dedic_cook',
  'dedic_cook_recip',
  'cook_recip_take',
  'recip_take_pictur',
  'take_pictur_food',
  'pictur_food_eat',
  'food_eat_wether',
  'eat_wether_lunch',
  'wether_lunch_dinner',
  'lunch_dinner_post',
  'dinner_post_insta',
  'post_insta_account',
  'insta_account_honest',
  'account_honest_im',
  'honest_im_annoy',
  'im_annoy_wait',
  'annoy_wait_long',
  'wait_long_get',
  'long_get_perfeft',
  'get_perfeft_shot',
  'perfeft_shot_food',
  'shot_food_decor',
  'food_decor_ad',
  'decor_ad_fork',
  'ad_fork_remov',
  'fork_remov_salad',
  'remov_salad_dish',
  'salad_dish_take',
  'dish_take_long',
  'take_long_lose',
  'long_lose_appetit',
  'lose_appetit_wait',
  'appetit_wait_til',
  'wait_til_done',
  'til_done_becom',
  'done_becom_norm',
  'becom_norm_yesterday',
  'norm_yesterday_decid',
  'yesterday_decid_none',
  'decid_none_came',
  'none_came_found',
  'came_found_cook',
  'found_cook_entir',
  'cook_entir_feast',
  'entir_feast_next',
  'feast_next_cook',
  'next_cook_project',
  'cook_project_put',
  'project_put_tabl',
  'put_tabl_note',
  'tabl_note_lok',
  'note_lok_whole',
  'lok_whole_tabl',
  'whole_tabl_set',
  'tabl_set_figur',
  'set_figur_pictur',
  'figur_pictur_alreadi',
  'pictur_alreadi_taken',
  'alreadi_taken_right',
  'taken_right_said',
  'right_said_go',
  'said_go_take',
  'go_take_pictur',
  'take_pictur_wait',
  'pictur_wait_went',
  'wait_went_upstair',
  'went_upstair_get',
  'upstair_get_camera',
  'get_camera_grab',
  'camera_grab_spoon',
  'grab_spoon_start',
  'spoon_start_fill',
  'start_fill_plate',
  'fill_plate_everi',
  'plate_everi_dish',
  'everi_dish_made',
  'dish_made_ruin',
  'made_ruin_look',
  'ruin_look_result',
  'look_result_hungri',
  'result_hungri_unwil',
  'hungri_unwil_wait',
  'unwil_wait_around',
  'wait_around_+',
  'around_+_eat',
  '+_eat_came',
  'eat_came_downstair',
  'came_downstair_saw',
  'downstair_saw_damag',
  'saw_damag_blew',
  'damag_blew_almost',
  'blew_almost_cri',
  'almost_cri_say',
  'cri_say_ruin',
  'say_ruin_cook',
  'ruin_cook_project',
  'cook_project_work',
  'project_work_hour',
  'work_hour_well',
  'hour_well_put',
  'well_put_effort',
  'put_effort_said',
  'effort_said_hungri',
  'said_hungri_wait',
  'hungri_wait_kept',
  'wait_kept_yell',
  'kept_yell_much',
  'yell_much_obnoxi',
  'much_obnoxi_jerk',
  'obnoxi_jerk_wait',
  'jerk_wait_til',
  'wait_til_dhe',
  'til_dhe_took',
  'dhe_took_pictur',
  'took_pictur_dish',
  'pictur_dish_made',
  'dish_made_even',
  'made_even_said',
  'even_said_attempt',
  'said_attempt_sabotag',
  'attempt_sabotag_success',
  'sabotag_success_said',
  'success_said_oh',
  'said_oh_pleas',
  'oh_pleas_enough',
  'pleas_enough_conspiraci',
  'enough_conspiraci_theori',
  'conspiraci_theori_im',
  'theori_im_hungri',
  'im_hungri_wait',
  'hungri_wait_til',
  'wait_til_got',
  'til_got_perfect',
  'got_perfect_shot',
  'perfect_shot_big',
  'shot_big_argument',
  'big_argument_shewent',
  'argument_shewent_upstair',
  'shewent_upstair_cri',
  'upstair_cri_finish',
  'cri_finish_food',
  'finish_food_went',
  'food_went_cool',
  'went_cool_bit',
  'cool_bit_return',
  'bit_return_shed',
  'return_shed_threaten',
  'shed_threaten_shell',
  'threaten_shell_never',
  'shell_never_eat',
  'never_eat_anyth',
  'eat_anyth_cook',
  'anyth_cook_said',
  'cook_said_shed',
  'said_shed_rather',
  'shed_rather_throw',
  'rather_throw_garbag',
  'throw_garbag_give',
  'garbag_give_ungrat',
  'give_ungrat_obnoxi',
  'ungrat_obnoxi_jerk',
  'obnoxi_jerk_like',
  'jerk_like_said',
  'like_said_cool',
  'said_cool_told',
  'cool_told_go',
  'told_go_fuck',
  'go_fuck_said',
  'fuck_said_fine',
  'said_fine_went',
  'fine_went_spend',
  'went_spend_night',
  'spend_night_guest',
  'night_guest_room',
  'guest_room_text',
  'room_text_word',
  'text_word_jerk',
  'word_jerk_time',
  'jerk_time_til',
  'time_til_turn',
  'til_turn_phone',
  'turn_phone_today',
  'phone_today_gone',
  'today_gone_complet',
  'gone_complet_radio',
  'complet_radio_silenc',
  'radio_silenc_aita'],
 ['ask',
  'ex',
  'divorc',
  'two',
  'month',
  'ago',
  'found',
  'week',
  'later',
  'sister',
  'husband',
  'go',
  'solicitor',
  'complet',
  'surpris',
  'ex',
  'help',
  'career',
  'lot',
  'still',
  'hurt',
  'sister',
  'told',
  'ive',
  'avoid',
  'sinc',
  'find',
  'parent',
  'invit',
  'everyon',
  'dinner',
  'miss',
  'went',
  'tri',
  'realli',
  'hard',
  'bite',
  'tongu',
  'kept',
  'refer',
  'ex',
  'wife',
  'told',
  'would',
  'stay',
  'marri',
  'go',
  'lose',
  'lot',
  'divorc',
  'ex',
  'end',
  'tell',
  'real',
  'piec',
  'shit',
  'front',
  'everybodi',
  'includ',
  'daughter',
  'sister',
  'got',
  'angri',
  'say',
  'front',
  'daughter',
  'mad',
  'told',
  'care',
  'bastard',
  'piss',
  'aita',
  'ask_ex',
  'ex_divorc',
  'divorc_two',
  'two_month',
  'month_ago',
  'ago_found',
  'found_week',
  'week_later',
  'later_sister',
  'sister_husband',
  'husband_go',
  'go_solicitor',
  'solicitor_complet',
  'complet_surpris',
  'surpris_ex',
  'ex_help',
  'help_career',
  'career_lot',
  'lot_still',
  'still_hurt',
  'hurt_sister',
  'sister_told',
  'told_ive',
  'ive_avoid',
  'avoid_sinc',
  'sinc_find',
  'find_parent',
  'parent_invit',
  'invit_everyon',
  'everyon_dinner',
  'dinner_miss',
  'miss_went',
  'went_tri',
  'tri_realli',
  'realli_hard',
  'hard_bite',
  'bite_tongu',
  'tongu_kept',
  'kept_refer',
  'refer_ex',
  'ex_wife',
  'wife_told',
  'told_would',
  'would_stay',
  'stay_marri',
  'marri_go',
  'go_lose',
  'lose_lot',
  'lot_divorc',
  'divorc_ex',
  'ex_end',
  'end_tell',
  'tell_real',
  'real_piec',
  'piec_shit',
  'shit_front',
  'front_everybodi',
  'everybodi_includ',
  'includ_daughter',
  'daughter_sister',
  'sister_got',
  'got_angri',
  'angri_say',
  'say_front',
  'front_daughter',
  'daughter_mad',
  'mad_told',
  'told_care',
  'care_bastard',
  'bastard_piss',
  'piss_aita',
  'ask_ex_divorc',
  'ex_divorc_two',
  'divorc_two_month',
  'two_month_ago',
  'month_ago_found',
  'ago_found_week',
  'found_week_later',
  'week_later_sister',
  'later_sister_husband',
  'sister_husband_go',
  'husband_go_solicitor',
  'go_solicitor_complet',
  'solicitor_complet_surpris',
  'complet_surpris_ex',
  'surpris_ex_help',
  'ex_help_career',
  'help_career_lot',
  'career_lot_still',
  'lot_still_hurt',
  'still_hurt_sister',
  'hurt_sister_told',
  'sister_told_ive',
  'told_ive_avoid',
  'ive_avoid_sinc',
  'avoid_sinc_find',
  'sinc_find_parent',
  'find_parent_invit',
  'parent_invit_everyon',
  'invit_everyon_dinner',
  'everyon_dinner_miss',
  'dinner_miss_went',
  'miss_went_tri',
  'went_tri_realli',
  'tri_realli_hard',
  'realli_hard_bite',
  'hard_bite_tongu',
  'bite_tongu_kept',
  'tongu_kept_refer',
  'kept_refer_ex',
  'refer_ex_wife',
  'ex_wife_told',
  'wife_told_would',
  'told_would_stay',
  'would_stay_marri',
  'stay_marri_go',
  'marri_go_lose',
  'go_lose_lot',
  'lose_lot_divorc',
  'lot_divorc_ex',
  'divorc_ex_end',
  'ex_end_tell',
  'end_tell_real',
  'tell_real_piec',
  'real_piec_shit',
  'piec_shit_front',
  'shit_front_everybodi',
  'front_everybodi_includ',
  'everybodi_includ_daughter',
  'includ_daughter_sister',
  'daughter_sister_got',
  'sister_got_angri',
  'got_angri_say',
  'angri_say_front',
  'say_front_daughter',
  'front_daughter_mad',
  'daughter_mad_told',
  'mad_told_care',
  'told_care_bastard',
  'care_bastard_piss',
  'bastard_piss_aita'],
 ['sister',
  'gave',
  'birth',
  'month',
  'ago',
  'brought',
  'babi',
  'mine',
  'wife',
  'wed',
  'breastfe',
  'whenev',
  'goe',
  'visit',
  'hous',
  'shell',
  'breastfe',
  'front',
  'us',
  'visit',
  'parent',
  'shell',
  'breastfe',
  'go',
  'public',
  'set',
  'shell',
  'sit',
  'bench',
  'park',
  'breastfe',
  'go',
  'restaur',
  'breastfe',
  'everi',
  'ive',
  'never',
  'spoken',
  'know',
  'shell',
  'get',
  'mad',
  'offend',
  'wed',
  'lost',
  'cool',
  'recept',
  'dinner',
  'kindli',
  'approach',
  'ask',
  'bring',
  'formula',
  'least',
  'bump',
  'milk',
  'put',
  'bottl',
  'moment',
  'said',
  'feel',
  'comfort',
  'breastfeed',
  'get',
  'milk',
  'pain',
  'said',
  'could',
  'make',
  'sacrific',
  'compromis',
  'one',
  'day',
  'instead',
  'front',
  'guest',
  'wed',
  'said',
  'cant',
  'much',
  'babi',
  'milk',
  'told',
  'thought',
  'instead',
  'complet',
  'embarrass',
  'us',
  'told',
  'wife',
  'deal',
  'said',
  'im',
  'ah',
  'immedi',
  'apologis',
  'sister',
  'parent',
  'also',
  'side',
  'sister',
  'pretti',
  'much',
  'everyon',
  'think',
  'im',
  'ah',
  'sinc',
  'im',
  'person',
  'problem',
  'reason',
  'decid',
  'call',
  'consid',
  'bad',
  'etiquett',
  'tacki',
  'formal',
  'event',
  'could',
  'find',
  'anoth',
  'solut',
  'night',
  'aita',
  'sister_gave',
  'gave_birth',
  'birth_month',
  'month_ago',
  'ago_brought',
  'brought_babi',
  'babi_mine',
  'mine_wife',
  'wife_wed',
  'wed_breastfe',
  'breastfe_whenev',
  'whenev_goe',
  'goe_visit',
  'visit_hous',
  'hous_shell',
  'shell_breastfe',
  'breastfe_front',
  'front_us',
  'us_visit',
  'visit_parent',
  'parent_shell',
  'shell_breastfe',
  'breastfe_go',
  'go_public',
  'public_set',
  'set_shell',
  'shell_sit',
  'sit_bench',
  'bench_park',
  'park_breastfe',
  'breastfe_go',
  'go_restaur',
  'restaur_breastfe',
  'breastfe_everi',
  'everi_ive',
  'ive_never',
  'never_spoken',
  'spoken_know',
  'know_shell',
  'shell_get',
  'get_mad',
  'mad_offend',
  'offend_wed',
  'wed_lost',
  'lost_cool',
  'cool_recept',
  'recept_dinner',
  'dinner_kindli',
  'kindli_approach',
  'approach_ask',
  'ask_bring',
  'bring_formula',
  'formula_least',
  'least_bump',
  'bump_milk',
  'milk_put',
  'put_bottl',
  'bottl_moment',
  'moment_said',
  'said_feel',
  'feel_comfort',
  'comfort_breastfeed',
  'breastfeed_get',
  'get_milk',
  'milk_pain',
  'pain_said',
  'said_could',
  'could_make',
  'make_sacrific',
  'sacrific_compromis',
  'compromis_one',
  'one_day',
  'day_instead',
  'instead_front',
  'front_guest',
  'guest_wed',
  'wed_said',
  'said_cant',
  'cant_much',
  'much_babi',
  'babi_milk',
  'milk_told',
  'told_thought',
  'thought_instead',
  'instead_complet',
  'complet_embarrass',
  'embarrass_us',
  'us_told',
  'told_wife',
  'wife_deal',
  'deal_said',
  'said_im',
  'im_ah',
  'ah_immedi',
  'immedi_apologis',
  'apologis_sister',
  'sister_parent',
  'parent_also',
  'also_side',
  'side_sister',
  'sister_pretti',
  'pretti_much',
  'much_everyon',
  'everyon_think',
  'think_im',
  'im_ah',
  'ah_sinc',
  'sinc_im',
  'im_person',
  'person_problem',
  'problem_reason',
  'reason_decid',
  'decid_call',
  'call_consid',
  'consid_bad',
  'bad_etiquett',
  'etiquett_tacki',
  'tacki_formal',
  'formal_event',
  'event_could',
  'could_find',
  'find_anoth',
  'anoth_solut',
  'solut_night',
  'night_aita',
  'sister_gave_birth',
  'gave_birth_month',
  'birth_month_ago',
  'month_ago_brought',
  'ago_brought_babi',
  'brought_babi_mine',
  'babi_mine_wife',
  'mine_wife_wed',
  'wife_wed_breastfe',
  'wed_breastfe_whenev',
  'breastfe_whenev_goe',
  'whenev_goe_visit',
  'goe_visit_hous',
  'visit_hous_shell',
  'hous_shell_breastfe',
  'shell_breastfe_front',
  'breastfe_front_us',
  'front_us_visit',
  'us_visit_parent',
  'visit_parent_shell',
  'parent_shell_breastfe',
  'shell_breastfe_go',
  'breastfe_go_public',
  'go_public_set',
  'public_set_shell',
  'set_shell_sit',
  'shell_sit_bench',
  'sit_bench_park',
  'bench_park_breastfe',
  'park_breastfe_go',
  'breastfe_go_restaur',
  'go_restaur_breastfe',
  'restaur_breastfe_everi',
  'breastfe_everi_ive',
  'everi_ive_never',
  'ive_never_spoken',
  'never_spoken_know',
  'spoken_know_shell',
  'know_shell_get',
  'shell_get_mad',
  'get_mad_offend',
  'mad_offend_wed',
  'offend_wed_lost',
  'wed_lost_cool',
  'lost_cool_recept',
  'cool_recept_dinner',
  'recept_dinner_kindli',
  'dinner_kindli_approach',
  'kindli_approach_ask',
  'approach_ask_bring',
  'ask_bring_formula',
  'bring_formula_least',
  'formula_least_bump',
  'least_bump_milk',
  'bump_milk_put',
  'milk_put_bottl',
  'put_bottl_moment',
  'bottl_moment_said',
  'moment_said_feel',
  'said_feel_comfort',
  'feel_comfort_breastfeed',
  'comfort_breastfeed_get',
  'breastfeed_get_milk',
  'get_milk_pain',
  'milk_pain_said',
  'pain_said_could',
  'said_could_make',
  'could_make_sacrific',
  'make_sacrific_compromis',
  'sacrific_compromis_one',
  'compromis_one_day',
  'one_day_instead',
  'day_instead_front',
  'instead_front_guest',
  'front_guest_wed',
  'guest_wed_said',
  'wed_said_cant',
  'said_cant_much',
  'cant_much_babi',
  'much_babi_milk',
  'babi_milk_told',
  'milk_told_thought',
  'told_thought_instead',
  'thought_instead_complet',
  'instead_complet_embarrass',
  'complet_embarrass_us',
  'embarrass_us_told',
  'us_told_wife',
  'told_wife_deal',
  'wife_deal_said',
  'deal_said_im',
  'said_im_ah',
  'im_ah_immedi',
  'ah_immedi_apologis',
  'immedi_apologis_sister',
  'apologis_sister_parent',
  'sister_parent_also',
  'parent_also_side',
  'also_side_sister',
  'side_sister_pretti',
  'sister_pretti_much',
  'pretti_much_everyon',
  'much_everyon_think',
  'everyon_think_im',
  'think_im_ah',
  'im_ah_sinc',
  'ah_sinc_im',
  'sinc_im_person',
  'im_person_problem',
  'person_problem_reason',
  'problem_reason_decid',
  'reason_decid_call',
  'decid_call_consid',
  'call_consid_bad',
  'consid_bad_etiquett',
  'bad_etiquett_tacki',
  'etiquett_tacki_formal',
  'tacki_formal_event',
  'formal_event_could',
  'event_could_find',
  'could_find_anoth',
  'find_anoth_solut',
  'anoth_solut_night',
  'solut_night_aita'],
 ['almost',
  'three',
  'year',
  'old',
  'beauti',
  'littl',
  'girl',
  'week',
  'shi',
  'third',
  'birthday',
  'babi',
  'hospic',
  'four',
  'week',
  'ago',
  'gone',
  'remiss',
  'late',
  'may',
  'unfortun',
  'cancer',
  'return',
  'except',
  'crush',
  'optic',
  'nerv',
  'cm',
  'long',
  'multipl',
  'doctor',
  'recommend',
  'make',
  'daughter',
  'comfort',
  'possibl',
  'believ',
  'remov',
  'tumor',
  'good',
  'option',
  'much',
  'say',
  'regard',
  'diagnosi',
  'heartbroken',
  'suffic',
  'husband',
  'make',
  'ton',
  'memori',
  'past',
  'week',
  'weve',
  'includ',
  'famili',
  'memori',
  'feel',
  'want',
  'spend',
  'much',
  'time',
  'daughter',
  'possibl',
  'mother',
  'law',
  'call',
  'yesterday',
  'tell',
  'book',
  'ticketshotelairfar',
  'trip',
  'next',
  'month',
  'thought',
  'sound',
  'fun',
  'said',
  'take',
  'toddler',
  'daughter',
  'husband',
  'invit',
  'husband',
  'daughter',
  'even',
  'three',
  'yet',
  'never',
  'stay',
  'overnight',
  'anywher',
  'mother',
  'law',
  'want',
  'take',
  'one',
  'entir',
  'week',
  'across',
  'countri',
  'alon',
  'suggest',
  'husband',
  'go',
  'way',
  'daughter',
  'comfort',
  'god',
  'sake',
  'event',
  'die',
  'cant',
  'gone',
  'week',
  'nurs',
  'care',
  'suggest',
  'go',
  'shorter',
  'amount',
  'time',
  'came',
  'variou',
  'suggest',
  'turn',
  'add',
  'daughter',
  'hospic',
  'still',
  'would',
  'comfort',
  'toddler',
  'across',
  'countri',
  'week',
  'alon',
  'without',
  'parent',
  'child',
  'hospic',
  'add',
  'anoth',
  'layer',
  'complex',
  'situat',
  'told',
  'mother',
  'law',
  'decis',
  'made',
  'alon',
  'without',
  'consult',
  'us',
  'solid',
  'call',
  'name',
  'hung',
  'call',
  'husband',
  'call',
  'name',
  'suggest',
  'would',
  'fight',
  'right',
  'daughter',
  'die',
  'im',
  'alreadi',
  'griev',
  'husband',
  'said',
  'acquiesc',
  'mother',
  'trip',
  'avoid',
  'drama',
  'even',
  'though',
  'agre',
  'daughter',
  'young',
  'want',
  'spend',
  'time',
  'cancer',
  'take',
  'littl',
  'etc',
  'said',
  'variou',
  'reason',
  'say',
  'edit',
  'thank',
  'everyon',
  'took',
  'time',
  'share',
  'thought',
  'insight',
  'appreci',
  'outpour',
  'messag',
  'im',
  'sorri',
  'chanc',
  'repli',
  'want',
  'add',
  'thing',
  'mother',
  'law',
  'live',
  'counti',
  'us',
  'citi',
  'parent',
  'minut',
  'drive',
  'without',
  'traffic',
  'howev',
  'law',
  'alway',
  'adam',
  'visit',
  'usual',
  'take',
  'daughter',
  'everi',
  'week',
  'hour',
  'visit',
  'rare',
  'ever',
  'come',
  'home',
  'parent',
  'like',
  'visit',
  'alway',
  'daughter',
  'much',
  'closer',
  'parent',
  'reason',
  'anytim',
  'husband',
  'go',
  'date',
  'night',
  'parent',
  'come',
  'watch',
  'like',
  'comfort',
  'zone',
  'cancer',
  'sinc',
  'cancer',
  'diagnosi',
  'weve',
  'hospit',
  'week',
  'time',
  'parent',
  'still',
  'much',
  'involv',
  'help',
  'im',
  'form',
  'drop',
  'meal',
  'help',
  'laundri',
  'etc',
  'im',
  'close',
  'famili',
  'famili',
  'respect',
  'us',
  'need',
  'space',
  'famili',
  'time',
  'think',
  'law',
  'may',
  'expedit',
  'guilt',
  'made',
  'much',
  'effort',
  'yo',
  'visit',
  'us',
  'see',
  'us',
  'accommod',
  'us',
  'alway',
  'daughter',
  'law',
  'alway',
  'felt',
  'like',
  'incub',
  'facilit',
  'relationship',
  'child',
  'also',
  'add',
  'set',
  'distanc',
  'much',
  'ive',
  'cut',
  'contact',
  'mil',
  'want',
  'around',
  'fiasco',
  'ive',
  'complet',
  'block',
  'phone',
  'commun',
  'husband',
  'sad',
  'say',
  'understand',
  'mention',
  'eye',
  'open',
  'situat',
  'realli',
  'mani',
  'level',
  'second',
  'edit',
  'saw',
  'variou',
  'command',
  'mother',
  'law',
  'possibl',
  'want',
  'take',
  'child',
  'trip',
  'get',
  'altern',
  'treatment',
  'mother',
  'law',
  'plan',
  'take',
  'child',
  'disney',
  'world',
  'florida',
  'across',
  'countri',
  'live',
  'mother',
  'law',
  'live',
  'state',
  'counti',
  'us',
  'husband',
  'taken',
  'child',
  'disneyland',
  'time',
  'life',
  'recent',
  'go',
  'one',
  'day',
  'exhaust',
  'daughter',
  'spent',
  'day',
  'cant',
  'imagin',
  'daughter',
  'handl',
  'disney',
  'world',
  'day',
  'also',
  'would',
  'like',
  'said',
  'trip',
  'even',
  'child',
  'die',
  'would',
  'still',
  'comfort',
  'go',
  'without',
  'bizmar',
  'situat',
  'mother',
  'law',
  'one',
  'altern',
  'treatment',
  'right',
  'ask',
  'shock',
  'point',
  'either',
  'way',
  'child',
  'go',
  'anywher',
  'supervis',
  'ive',
  'alreadi',
  'made',
  'clear',
  'husband',
  'want',
  'come',
  'visit',
  'home',
  'even',
  'im',
  'still',
  'board',
  'everyth',
  'transpir',
  'ive',
  'think',
  'realli',
  'deepli',
  'last',
  'month',
  'even',
  'last',
  'hour',
  'know',
  'continu',
  'part',
  'famili',
  'im',
  'tri',
  'think',
  'far',
  'ahead',
  'im',
  'serious',
  'doubt',
  'continu',
  'marriag',
  'thank',
  'everyon',
  'third',
  'edit',
  'realli',
  'close',
  'famili',
  'specif',
  'mom',
  'aunt',
  'know',
  'wish',
  'daughter',
  'husband',
  'argu',
  'daughter',
  'buri',
  'good',
  'week',
  'aw',
  'want',
  'buri',
  'grandma',
  'parent',
  'buri',
  'want',
  'buri',
  'cemeteri',
  'grandpar',
  'buri',
  'plan',
  'buri',
  'husband',
  'militari',
  'im',
  'confus',
  'want',
  'buri',
  'combat',
  'brother',
  'entir',
  'fiasco',
  'mother',
  'put',
  'foot',
  'would',
  'like',
  'daughter',
  'final',
  'rest',
  'place',
  'never',
  'thought',
  'would',
  'much',
  'back',
  'forth',
  'get',
  'buri',
  'week',
  'long',
  'trip',
  'invit',
  'consult',
  'acquiesc',
  'mother',
  'wish',
  'shit',
  'show',
  'say',
  'least',
  'love',
  'husband',
  'appal',
  'behavior',
  'also',
  'add',
  'famili',
  'support',
  'want',
  'daughter',
  'buri',
  'topic',
  'came',
  'even',
  'said',
  'wherev',
  'want',
  'choic',
  'even',
  'entertain',
  'cremat',
  'tri',
  'come',
  'middl',
  'ground',
  'sort',
  'even',
  'want',
  'discuss',
  'burial',
  'cremat',
  'absolut',
  'ive',
  'avoid',
  'feel',
  'morbid',
  'discuss',
  'daughter',
  'still',
  'aliv',
  'husband',
  'famili',
  'upset',
  'brought',
  'topic',
  'automat',
  'want',
  'daughter',
  'cemeteri',
  'choic',
  'main',
  'argument',
  'daughter',
  'carri',
  'last',
  'name',
  'go',
  'argument',
  'famili',
  'alreadi',
  'four',
  'open',
  'plot',
  'want',
  'make',
  'one',
  'doubl',
  'time',
  'come',
  'im',
  'even',
  'exhaust',
  'write',
  'life',
  'team',
  'unit',
  'grief',
  'feel',
  'like',
  'babi',
  'famili',
  'hold',
  'almost_three',
  'three_year',
  'year_old',
  'old_beauti',
  'beauti_littl',
  'littl_girl',
  'girl_week',
  'week_shi',
  'shi_third',
  'third_birthday',
  'birthday_babi',
  'babi_hospic',
  'hospic_four',
  'four_week',
  'week_ago',
  'ago_gone',
  'gone_remiss',
  'remiss_late',
  'late_may',
  'may_unfortun',
  'unfortun_cancer',
  'cancer_return',
  'return_except',
  'except_crush',
  'crush_optic',
  'optic_nerv',
  'nerv_cm',
  'cm_long',
  'long_multipl',
  'multipl_doctor',
  'doctor_recommend',
  'recommend_make',
  'make_daughter',
  'daughter_comfort',
  'comfort_possibl',
  'possibl_believ',
  'believ_remov',
  'remov_tumor',
  'tumor_good',
  'good_option',
  'option_much',
  'much_say',
  'say_regard',
  'regard_diagnosi',
  'diagnosi_heartbroken',
  'heartbroken_suffic',
  'suffic_husband',
  'husband_make',
  'make_ton',
  'ton_memori',
  'memori_past',
  'past_week',
  'week_weve',
  'weve_includ',
  'includ_famili',
  'famili_memori',
  'memori_feel',
  'feel_want',
  'want_spend',
  'spend_much',
  'much_time',
  'time_daughter',
  'daughter_possibl',
  'possibl_mother',
  'mother_law',
  'law_call',
  'call_yesterday',
  'yesterday_tell',
  'tell_book',
  'book_ticketshotelairfar',
  'ticketshotelairfar_trip',
  'trip_next',
  'next_month',
  'month_thought',
  'thought_sound',
  'sound_fun',
  'fun_said',
  'said_take',
  'take_toddler',
  'toddler_daughter',
  'daughter_husband',
  'husband_invit',
  'invit_husband',
  'husband_daughter',
  'daughter_even',
  'even_three',
  'three_yet',
  'yet_never',
  'never_stay',
  'stay_overnight',
  'overnight_anywher',
  'anywher_mother',
  'mother_law',
  'law_want',
  'want_take',
  'take_one',
  'one_entir',
  'entir_week',
  'week_across',
  'across_countri',
  'countri_alon',
  'alon_suggest',
  'suggest_husband',
  'husband_go',
  'go_way',
  'way_daughter',
  'daughter_comfort',
  'comfort_god',
  'god_sake',
  'sake_event',
  'event_die',
  'die_cant',
  'cant_gone',
  'gone_week',
  'week_nurs',
  'nurs_care',
  'care_suggest',
  'suggest_go',
  'go_shorter',
  'shorter_amount',
  'amount_time',
  'time_came',
  'came_variou',
  'variou_suggest',
  'suggest_turn',
  'turn_add',
  'add_daughter',
  'daughter_hospic',
  'hospic_still',
  'still_would',
  'would_comfort',
  'comfort_toddler',
  'toddler_across',
  'across_countri',
  'countri_week',
  'week_alon',
  'alon_without',
  'without_parent',
  'parent_child',
  'child_hospic',
  'hospic_add',
  'add_anoth',
  'anoth_layer',
  'layer_complex',
  'complex_situat',
  'situat_told',
  'told_mother',
  'mother_law',
  'law_decis',
  'decis_made',
  'made_alon',
  'alon_without',
  'without_consult',
  'consult_us',
  'us_solid',
  'solid_call',
  'call_name',
  'name_hung',
  'hung_call',
  'call_husband',
  'husband_call',
  'call_name',
  'name_suggest',
  'suggest_would',
  'would_fight',
  'fight_right',
  'right_daughter',
  'daughter_die',
  'die_im',
  'im_alreadi',
  'alreadi_griev',
  'griev_husband',
  'husband_said',
  'said_acquiesc',
  'acquiesc_mother',
  'mother_trip',
  'trip_avoid',
  'avoid_drama',
  'drama_even',
  'even_though',
  'though_agre',
  'agre_daughter',
  'daughter_young',
  'young_want',
  'want_spend',
  'spend_time',
  'time_cancer',
  'cancer_take',
  'take_littl',
  'littl_etc',
  'etc_said',
  'said_variou',
  'variou_reason',
  'reason_say',
  'say_edit',
  'edit_thank',
  'thank_everyon',
  'everyon_took',
  'took_time',
  'time_share',
  'share_thought',
  'thought_insight',
  'insight_appreci',
  'appreci_outpour',
  'outpour_messag',
  'messag_im',
  'im_sorri',
  'sorri_chanc',
  'chanc_repli',
  'repli_want',
  'want_add',
  'add_thing',
  'thing_mother',
  'mother_law',
  'law_live',
  'live_counti',
  'counti_us',
  'us_citi',
  'citi_parent',
  'parent_minut',
  'minut_drive',
  'drive_without',
  'without_traffic',
  'traffic_howev',
  'howev_law',
  'law_alway',
  'alway_adam',
  'adam_visit',
  'visit_usual',
  'usual_take',
  'take_daughter',
  'daughter_everi',
  'everi_week',
  'week_hour',
  'hour_visit',
  'visit_rare',
  'rare_ever',
  'ever_come',
  'come_home',
  'home_parent',
  'parent_like',
  'like_visit',
  'visit_alway',
  'alway_daughter',
  'daughter_much',
  'much_closer',
  'closer_parent',
  'parent_reason',
  'reason_anytim',
  'anytim_husband',
  'husband_go',
  'go_date',
  'date_night',
  'night_parent',
  'parent_come',
  'come_watch',
  'watch_like',
  'like_comfort',
  'comfort_zone',
  'zone_cancer',
  'cancer_sinc',
  'sinc_cancer',
  'cancer_diagnosi',
  'diagnosi_weve',
  'weve_hospit',
  'hospit_week',
  'week_time',
  'time_parent',
  'parent_still',
  'still_much',
  'much_involv',
  'involv_help',
  'help_im',
  'im_form',
  'form_drop',
  'drop_meal',
  'meal_help',
  'help_laundri',
  'laundri_etc',
  'etc_im',
  'im_close',
  'close_famili',
  'famili_famili',
  'famili_respect',
  'respect_us',
  'us_need',
  'need_space',
  'space_famili',
  'famili_time',
  'time_think',
  'think_law',
  'law_may',
  'may_expedit',
  'expedit_guilt',
  'guilt_made',
  'made_much',
  'much_effort',
  'effort_yo',
  'yo_visit',
  'visit_us',
  'us_see',
  'see_us',
  'us_accommod',
  'accommod_us',
  'us_alway',
  'alway_daughter',
  'daughter_law',
  'law_alway',
  'alway_felt',
  'felt_like',
  'like_incub',
  'incub_facilit',
  'facilit_relationship',
  'relationship_child',
  'child_also',
  'also_add',
  'add_set',
  'set_distanc',
  'distanc_much',
  'much_ive',
  'ive_cut',
  'cut_contact',
  'contact_mil',
  'mil_want',
  'want_around',
  'around_fiasco',
  'fiasco_ive',
  'ive_complet',
  'complet_block',
  'block_phone',
  'phone_commun',
  'commun_husband',
  'husband_sad',
  'sad_say',
  'say_understand',
  'understand_mention',
  'mention_eye',
  'eye_open',
  'open_situat',
  'situat_realli',
  'realli_mani',
  'mani_level',
  'level_second',
  'second_edit',
  'edit_saw',
  'saw_variou',
  'variou_command',
  'command_mother',
  'mother_law',
  'law_possibl',
  'possibl_want',
  'want_take',
  'take_child',
  'child_trip',
  'trip_get',
  'get_altern',
  'altern_treatment',
  'treatment_mother',
  'mother_law',
  'law_plan',
  'plan_take',
  'take_child',
  'child_disney',
  'disney_world',
  'world_florida',
  'florida_across',
  'across_countri',
  'countri_live',
  'live_mother',
  'mother_law',
  'law_live',
  'live_state',
  'state_counti',
  'counti_us',
  'us_husband',
  'husband_taken',
  'taken_child',
  'child_disneyland',
  'disneyland_time',
  'time_life',
  'life_recent',
  'recent_go',
  'go_one',
  ...],
 ['invit',
  'sister',
  'th',
  'birthday',
  'day',
  'ago',
  'restaur',
  'husband',
  'come',
  'said',
  'meet',
  'dinner',
  'client',
  'made',
  'famili',
  'feel',
  'let',
  'especi',
  'sister',
  'want',
  'also',
  'th',
  'birthday',
  'big',
  'deal',
  'obvious',
  'surpris',
  'arriv',
  'notic',
  'husband',
  'meet',
  'place',
  'tabl',
  'right',
  'corner',
  'men',
  'sit',
  'parent',
  'guest',
  'saw',
  'well',
  'wave',
  'saw',
  'ignor',
  'obvious',
  'much',
  'surpris',
  'parent',
  'ask',
  'even',
  'come',
  'tabl',
  'acknowledg',
  'cake',
  'arriv',
  'got',
  'walk',
  'tabl',
  'stood',
  'said',
  'excus',
  'husband',
  'silent',
  'ask',
  'introduc',
  'client',
  'hed',
  'take',
  'minut',
  'join',
  'famili',
  'candl',
  'blow',
  'say',
  'happi',
  'birthday',
  'bare',
  'let',
  'phrase',
  'said',
  'think',
  'im',
  'busi',
  'right',
  'insist',
  'say',
  'itd',
  'take',
  'coupl',
  'minut',
  'itd',
  'mean',
  'much',
  'sister',
  'stare',
  'stare',
  'awkwardli',
  'back',
  'client',
  'said',
  'noth',
  'got',
  'parent',
  'motion',
  'hurri',
  'sat',
  'us',
  'sister',
  'blew',
  'candl',
  'cut',
  'cake',
  'parent',
  'insist',
  'take',
  'piec',
  'join',
  'us',
  'selfi',
  'got',
  'walk',
  'back',
  'tabl',
  'look',
  'piss',
  'talk',
  'til',
  'met',
  'later',
  'home',
  'upset',
  'star',
  'scold',
  'infront',
  'parent',
  'say',
  'embarrass',
  'made',
  'look',
  'unprofession',
  'ruin',
  'busi',
  'meet',
  'told',
  'overreact',
  'sinc',
  'took',
  'minut',
  'sister',
  'birthday',
  'famili',
  'want',
  'join',
  'sinc',
  'liter',
  'restaur',
  'call',
  'ignor',
  'accus',
  'tamper',
  'work',
  'respond',
  'ignor',
  'mine',
  'famili',
  'presenc',
  'unaccept',
  'argu',
  'start',
  'stone',
  'wall',
  'refus',
  'talk',
  'fyi',
  'issu',
  'miss',
  'event',
  'see',
  'alreadi',
  'becom',
  'differ',
  'stori',
  'also',
  'liter',
  'took',
  '-',
  'minut',
  'even',
  'eat',
  'drink',
  'sat',
  'watch',
  'invit_sister',
  'sister_th',
  'th_birthday',
  'birthday_day',
  'day_ago',
  'ago_restaur',
  'restaur_husband',
  'husband_come',
  'come_said',
  'said_meet',
  'meet_dinner',
  'dinner_client',
  'client_made',
  'made_famili',
  'famili_feel',
  'feel_let',
  'let_especi',
  'especi_sister',
  'sister_want',
  'want_also',
  'also_th',
  'th_birthday',
  'birthday_big',
  'big_deal',
  'deal_obvious',
  'obvious_surpris',
  'surpris_arriv',
  'arriv_notic',
  'notic_husband',
  'husband_meet',
  'meet_place',
  'place_tabl',
  'tabl_right',
  'right_corner',
  'corner_men',
  'men_sit',
  'sit_parent',
  'parent_guest',
  'guest_saw',
  'saw_well',
  'well_wave',
  'wave_saw',
  'saw_ignor',
  'ignor_obvious',
  'obvious_much',
  'much_surpris',
  'surpris_parent',
  'parent_ask',
  'ask_even',
  'even_come',
  'come_tabl',
  'tabl_acknowledg',
  'acknowledg_cake',
  'cake_arriv',
  'arriv_got',
  'got_walk',
  'walk_tabl',
  'tabl_stood',
  'stood_said',
  'said_excus',
  'excus_husband',
  'husband_silent',
  'silent_ask',
  'ask_introduc',
  'introduc_client',
  'client_hed',
  'hed_take',
  'take_minut',
  'minut_join',
  'join_famili',
  'famili_candl',
  'candl_blow',
  'blow_say',
  'say_happi',
  'happi_birthday',
  'birthday_bare',
  'bare_let',
  'let_phrase',
  'phrase_said',
  'said_think',
  'think_im',
  'im_busi',
  'busi_right',
  'right_insist',
  'insist_say',
  'say_itd',
  'itd_take',
  'take_coupl',
  'coupl_minut',
  'minut_itd',
  'itd_mean',
  'mean_much',
  'much_sister',
  'sister_stare',
  'stare_stare',
  'stare_awkwardli',
  'awkwardli_back',
  'back_client',
  'client_said',
  'said_noth',
  'noth_got',
  'got_parent',
  'parent_motion',
  'motion_hurri',
  'hurri_sat',
  'sat_us',
  'us_sister',
  'sister_blew',
  'blew_candl',
  'candl_cut',
  'cut_cake',
  'cake_parent',
  'parent_insist',
  'insist_take',
  'take_piec',
  'piec_join',
  'join_us',
  'us_selfi',
  'selfi_got',
  'got_walk',
  'walk_back',
  'back_tabl',
  'tabl_look',
  'look_piss',
  'piss_talk',
  'talk_til',
  'til_met',
  'met_later',
  'later_home',
  'home_upset',
  'upset_star',
  'star_scold',
  'scold_infront',
  'infront_parent',
  'parent_say',
  'say_embarrass',
  'embarrass_made',
  'made_look',
  'look_unprofession',
  'unprofession_ruin',
  'ruin_busi',
  'busi_meet',
  'meet_told',
  'told_overreact',
  'overreact_sinc',
  'sinc_took',
  'took_minut',
  'minut_sister',
  'sister_birthday',
  'birthday_famili',
  'famili_want',
  'want_join',
  'join_sinc',
  'sinc_liter',
  'liter_restaur',
  'restaur_call',
  'call_ignor',
  'ignor_accus',
  'accus_tamper',
  'tamper_work',
  'work_respond',
  'respond_ignor',
  'ignor_mine',
  'mine_famili',
  'famili_presenc',
  'presenc_unaccept',
  'unaccept_argu',
  'argu_start',
  'start_stone',
  'stone_wall',
  'wall_refus',
  'refus_talk',
  'talk_fyi',
  'fyi_issu',
  'issu_miss',
  'miss_event',
  'event_see',
  'see_alreadi',
  'alreadi_becom',
  'becom_differ',
  'differ_stori',
  'stori_also',
  'also_liter',
  'liter_took',
  'took_-',
  '-_minut',
  'minut_even',
  'even_eat',
  'eat_drink',
  'drink_sat',
  'sat_watch',
  'invit_sister_th',
  'sister_th_birthday',
  'th_birthday_day',
  'birthday_day_ago',
  'day_ago_restaur',
  'ago_restaur_husband',
  'restaur_husband_come',
  'husband_come_said',
  'come_said_meet',
  'said_meet_dinner',
  'meet_dinner_client',
  'dinner_client_made',
  'client_made_famili',
  'made_famili_feel',
  'famili_feel_let',
  'feel_let_especi',
  'let_especi_sister',
  'especi_sister_want',
  'sister_want_also',
  'want_also_th',
  'also_th_birthday',
  'th_birthday_big',
  'birthday_big_deal',
  'big_deal_obvious',
  'deal_obvious_surpris',
  'obvious_surpris_arriv',
  'surpris_arriv_notic',
  'arriv_notic_husband',
  'notic_husband_meet',
  'husband_meet_place',
  'meet_place_tabl',
  'place_tabl_right',
  'tabl_right_corner',
  'right_corner_men',
  'corner_men_sit',
  'men_sit_parent',
  'sit_parent_guest',
  'parent_guest_saw',
  'guest_saw_well',
  'saw_well_wave',
  'well_wave_saw',
  'wave_saw_ignor',
  'saw_ignor_obvious',
  'ignor_obvious_much',
  'obvious_much_surpris',
  'much_surpris_parent',
  'surpris_parent_ask',
  'parent_ask_even',
  'ask_even_come',
  'even_come_tabl',
  'come_tabl_acknowledg',
  'tabl_acknowledg_cake',
  'acknowledg_cake_arriv',
  'cake_arriv_got',
  'arriv_got_walk',
  'got_walk_tabl',
  'walk_tabl_stood',
  'tabl_stood_said',
  'stood_said_excus',
  'said_excus_husband',
  'excus_husband_silent',
  'husband_silent_ask',
  'silent_ask_introduc',
  'ask_introduc_client',
  'introduc_client_hed',
  'client_hed_take',
  'hed_take_minut',
  'take_minut_join',
  'minut_join_famili',
  'join_famili_candl',
  'famili_candl_blow',
  'candl_blow_say',
  'blow_say_happi',
  'say_happi_birthday',
  'happi_birthday_bare',
  'birthday_bare_let',
  'bare_let_phrase',
  'let_phrase_said',
  'phrase_said_think',
  'said_think_im',
  'think_im_busi',
  'im_busi_right',
  'busi_right_insist',
  'right_insist_say',
  'insist_say_itd',
  'say_itd_take',
  'itd_take_coupl',
  'take_coupl_minut',
  'coupl_minut_itd',
  'minut_itd_mean',
  'itd_mean_much',
  'mean_much_sister',
  'much_sister_stare',
  'sister_stare_stare',
  'stare_stare_awkwardli',
  'stare_awkwardli_back',
  'awkwardli_back_client',
  'back_client_said',
  'client_said_noth',
  'said_noth_got',
  'noth_got_parent',
  'got_parent_motion',
  'parent_motion_hurri',
  'motion_hurri_sat',
  'hurri_sat_us',
  'sat_us_sister',
  'us_sister_blew',
  'sister_blew_candl',
  'blew_candl_cut',
  'candl_cut_cake',
  'cut_cake_parent',
  'cake_parent_insist',
  'parent_insist_take',
  'insist_take_piec',
  'take_piec_join',
  'piec_join_us',
  'join_us_selfi',
  'us_selfi_got',
  'selfi_got_walk',
  'got_walk_back',
  'walk_back_tabl',
  'back_tabl_look',
  'tabl_look_piss',
  'look_piss_talk',
  'piss_talk_til',
  'talk_til_met',
  'til_met_later',
  'met_later_home',
  'later_home_upset',
  'home_upset_star',
  'upset_star_scold',
  'star_scold_infront',
  'scold_infront_parent',
  'infront_parent_say',
  'parent_say_embarrass',
  'say_embarrass_made',
  'embarrass_made_look',
  'made_look_unprofession',
  'look_unprofession_ruin',
  'unprofession_ruin_busi',
  'ruin_busi_meet',
  'busi_meet_told',
  'meet_told_overreact',
  'told_overreact_sinc',
  'overreact_sinc_took',
  'sinc_took_minut',
  'took_minut_sister',
  'minut_sister_birthday',
  'sister_birthday_famili',
  'birthday_famili_want',
  'famili_want_join',
  'want_join_sinc',
  'join_sinc_liter',
  'sinc_liter_restaur',
  'liter_restaur_call',
  'restaur_call_ignor',
  'call_ignor_accus',
  'ignor_accus_tamper',
  'accus_tamper_work',
  'tamper_work_respond',
  'work_respond_ignor',
  'respond_ignor_mine',
  'ignor_mine_famili',
  'mine_famili_presenc',
  'famili_presenc_unaccept',
  'presenc_unaccept_argu',
  'unaccept_argu_start',
  'argu_start_stone',
  'start_stone_wall',
  'stone_wall_refus',
  'wall_refus_talk',
  'refus_talk_fyi',
  'talk_fyi_issu',
  'fyi_issu_miss',
  'issu_miss_event',
  'miss_event_see',
  'event_see_alreadi',
  'see_alreadi_becom',
  'alreadi_becom_differ',
  'becom_differ_stori',
  'differ_stori_also',
  'stori_also_liter',
  'also_liter_took',
  'liter_took_-',
  'took_-_minut',
  '-_minut_even',
  'minut_even_eat',
  'even_eat_drink',
  'eat_drink_sat',
  'drink_sat_watch'],
 ['recent',
  'got',
  'marri',
  'husband',
  'scott',
  'met',
  'engag',
  'former',
  'fianc',
  'martin',
  'broke',
  'relationship',
  'sort',
  'push',
  'famili',
  'doctor',
  'come',
  'wealthi',
  'famili',
  'relationship',
  'end',
  'mom',
  'devast',
  'best',
  'bring',
  'us',
  'back',
  'togeth',
  'exampl',
  'lie',
  'martin',
  'pregnant',
  'save',
  'us',
  'year',
  'ago',
  'good',
  'term',
  'includ',
  'martin',
  'mom',
  'bit',
  'tension',
  'toward',
  'scott',
  'treat',
  'well',
  'constantli',
  'make',
  'passiv',
  'nag',
  'comment',
  'compar',
  'martin',
  'time',
  'bother',
  'us',
  'tri',
  'let',
  'slide',
  'mom',
  'kept',
  'tell',
  'scott',
  'diamond',
  'ring',
  'new',
  'car',
  'bank',
  'account',
  'martin',
  'got',
  'fiance',
  'kept',
  'send',
  'photo',
  'say',
  'gener',
  'martin',
  'fiance',
  'compar',
  'scott',
  'done',
  'told',
  'stop',
  'apolog',
  'last',
  'week',
  'parent',
  'hous',
  'social',
  'gather',
  'lot',
  'rel',
  'came',
  'dinner',
  'dinner',
  'tabl',
  'mom',
  'ask',
  'scott',
  'saw',
  'text',
  'sent',
  'day',
  'said',
  'sorri',
  'notic',
  'told',
  'check',
  'right',
  'read',
  'loud',
  'everyon',
  'tabl',
  'could',
  'hear',
  'took',
  'phone',
  'start',
  'read',
  'text',
  'loud',
  'text',
  'mention',
  'martin',
  'got',
  'fiance',
  'new',
  'hous',
  'gener',
  'said',
  'martin',
  'younger',
  'scott',
  'yet',
  'abl',
  'buy',
  'hous',
  'basic',
  'shame',
  'scott',
  'inabl',
  'buy',
  'hous',
  'wrap',
  'say',
  'martin',
  'mayb',
  'bad',
  'afteral',
  'shock',
  'scott',
  'piss',
  'obvious',
  'howev',
  'lash',
  'anyth',
  'look',
  'text',
  'smile',
  'said',
  'know',
  'get',
  'entir',
  'text',
  'public',
  'educ',
  'year',
  'yet',
  'cant',
  'differenti',
  'passiv',
  'contract',
  'good',
  'god',
  'thought',
  'children',
  'mustv',
  'left',
  'behind',
  'everyon',
  'tabl',
  'bust',
  'laughter',
  'mom',
  'face',
  'went',
  'pale',
  'decid',
  'leav',
  'tabl',
  'sister',
  'start',
  'yell',
  'say',
  'scott',
  'aw',
  'rude',
  'need',
  'get',
  'apolog',
  'immedi',
  'forembarrass',
  'mom',
  'tabl',
  'refus',
  'tell',
  'apolog',
  'point',
  'judgement',
  'toward',
  'defend',
  'say',
  'let',
  'know',
  'confid',
  'took',
  'person',
  'left',
  'kept',
  'get',
  'told',
  'talk',
  'get',
  'apolog',
  'recent_got',
  'got_marri',
  'marri_husband',
  'husband_scott',
  'scott_met',
  'met_engag',
  'engag_former',
  'former_fianc',
  'fianc_martin',
  'martin_broke',
  'broke_relationship',
  'relationship_sort',
  'sort_push',
  'push_famili',
  'famili_doctor',
  'doctor_come',
  'come_wealthi',
  'wealthi_famili',
  'famili_relationship',
  'relationship_end',
  'end_mom',
  'mom_devast',
  'devast_best',
  'best_bring',
  'bring_us',
  'us_back',
  'back_togeth',
  'togeth_exampl',
  'exampl_lie',
  'lie_martin',
  'martin_pregnant',
  'pregnant_save',
  'save_us',
  'us_year',
  'year_ago',
  'ago_good',
  'good_term',
  'term_includ',
  'includ_martin',
  'martin_mom',
  'mom_bit',
  'bit_tension',
  'tension_toward',
  'toward_scott',
  'scott_treat',
  'treat_well',
  'well_constantli',
  'constantli_make',
  'make_passiv',
  'passiv_nag',
  'nag_comment',
  'comment_compar',
  'compar_martin',
  'martin_time',
  'time_bother',
  'bother_us',
  'us_tri',
  'tri_let',
  'let_slide',
  'slide_mom',
  'mom_kept',
  'kept_tell',
  'tell_scott',
  'scott_diamond',
  'diamond_ring',
  'ring_new',
  'new_car',
  'car_bank',
  'bank_account',
  'account_martin',
  'martin_got',
  'got_fiance',
  'fiance_kept',
  'kept_send',
  'send_photo',
  'photo_say',
  'say_gener',
  'gener_martin',
  'martin_fiance',
  'fiance_compar',
  'compar_scott',
  'scott_done',
  'done_told',
  'told_stop',
  'stop_apolog',
  'apolog_last',
  'last_week',
  'week_parent',
  'parent_hous',
  'hous_social',
  'social_gather',
  'gather_lot',
  'lot_rel',
  'rel_came',
  'came_dinner',
  'dinner_dinner',
  'dinner_tabl',
  'tabl_mom',
  'mom_ask',
  'ask_scott',
  'scott_saw',
  'saw_text',
  'text_sent',
  'sent_day',
  'day_said',
  'said_sorri',
  'sorri_notic',
  'notic_told',
  'told_check',
  'check_right',
  'right_read',
  'read_loud',
  'loud_everyon',
  'everyon_tabl',
  'tabl_could',
  'could_hear',
  'hear_took',
  'took_phone',
  'phone_start',
  'start_read',
  'read_text',
  'text_loud',
  'loud_text',
  'text_mention',
  'mention_martin',
  'martin_got',
  'got_fiance',
  'fiance_new',
  'new_hous',
  'hous_gener',
  'gener_said',
  'said_martin',
  'martin_younger',
  'younger_scott',
  'scott_yet',
  'yet_abl',
  'abl_buy',
  'buy_hous',
  'hous_basic',
  'basic_shame',
  'shame_scott',
  'scott_inabl',
  'inabl_buy',
  'buy_hous',
  'hous_wrap',
  'wrap_say',
  'say_martin',
  'martin_mayb',
  'mayb_bad',
  'bad_afteral',
  'afteral_shock',
  'shock_scott',
  'scott_piss',
  'piss_obvious',
  'obvious_howev',
  'howev_lash',
  'lash_anyth',
  'anyth_look',
  'look_text',
  'text_smile',
  'smile_said',
  'said_know',
  'know_get',
  'get_entir',
  'entir_text',
  'text_public',
  'public_educ',
  'educ_year',
  'year_yet',
  'yet_cant',
  'cant_differenti',
  'differenti_passiv',
  'passiv_contract',
  'contract_good',
  'good_god',
  'god_thought',
  'thought_children',
  'children_mustv',
  'mustv_left',
  'left_behind',
  'behind_everyon',
  'everyon_tabl',
  'tabl_bust',
  'bust_laughter',
  'laughter_mom',
  'mom_face',
  'face_went',
  'went_pale',
  'pale_decid',
  'decid_leav',
  'leav_tabl',
  'tabl_sister',
  'sister_start',
  'start_yell',
  'yell_say',
  'say_scott',
  'scott_aw',
  'aw_rude',
  'rude_need',
  'need_get',
  'get_apolog',
  'apolog_immedi',
  'immedi_forembarrass',
  'forembarrass_mom',
  'mom_tabl',
  'tabl_refus',
  'refus_tell',
  'tell_apolog',
  'apolog_point',
  'point_judgement',
  'judgement_toward',
  'toward_defend',
  'defend_say',
  'say_let',
  'let_know',
  'know_confid',
  'confid_took',
  'took_person',
  'person_left',
  'left_kept',
  'kept_get',
  'get_told',
  'told_talk',
  'talk_get',
  'get_apolog',
  'recent_got_marri',
  'got_marri_husband',
  'marri_husband_scott',
  'husband_scott_met',
  'scott_met_engag',
  'met_engag_former',
  'engag_former_fianc',
  'former_fianc_martin',
  'fianc_martin_broke',
  'martin_broke_relationship',
  'broke_relationship_sort',
  'relationship_sort_push',
  'sort_push_famili',
  'push_famili_doctor',
  'famili_doctor_come',
  'doctor_come_wealthi',
  'come_wealthi_famili',
  'wealthi_famili_relationship',
  'famili_relationship_end',
  'relationship_end_mom',
  'end_mom_devast',
  'mom_devast_best',
  'devast_best_bring',
  'best_bring_us',
  'bring_us_back',
  'us_back_togeth',
  'back_togeth_exampl',
  'togeth_exampl_lie',
  'exampl_lie_martin',
  'lie_martin_pregnant',
  'martin_pregnant_save',
  'pregnant_save_us',
  'save_us_year',
  'us_year_ago',
  'year_ago_good',
  'ago_good_term',
  'good_term_includ',
  'term_includ_martin',
  'includ_martin_mom',
  'martin_mom_bit',
  'mom_bit_tension',
  'bit_tension_toward',
  'tension_toward_scott',
  'toward_scott_treat',
  'scott_treat_well',
  'treat_well_constantli',
  'well_constantli_make',
  'constantli_make_passiv',
  'make_passiv_nag',
  'passiv_nag_comment',
  'nag_comment_compar',
  'comment_compar_martin',
  'compar_martin_time',
  'martin_time_bother',
  'time_bother_us',
  'bother_us_tri',
  'us_tri_let',
  'tri_let_slide',
  'let_slide_mom',
  'slide_mom_kept',
  'mom_kept_tell',
  'kept_tell_scott',
  'tell_scott_diamond',
  'scott_diamond_ring',
  'diamond_ring_new',
  'ring_new_car',
  'new_car_bank',
  'car_bank_account',
  'bank_account_martin',
  'account_martin_got',
  'martin_got_fiance',
  'got_fiance_kept',
  'fiance_kept_send',
  'kept_send_photo',
  'send_photo_say',
  'photo_say_gener',
  'say_gener_martin',
  'gener_martin_fiance',
  'martin_fiance_compar',
  'fiance_compar_scott',
  'compar_scott_done',
  'scott_done_told',
  'done_told_stop',
  'told_stop_apolog',
  'stop_apolog_last',
  'apolog_last_week',
  'last_week_parent',
  'week_parent_hous',
  'parent_hous_social',
  'hous_social_gather',
  'social_gather_lot',
  'gather_lot_rel',
  'lot_rel_came',
  'rel_came_dinner',
  'came_dinner_dinner',
  'dinner_dinner_tabl',
  'dinner_tabl_mom',
  'tabl_mom_ask',
  'mom_ask_scott',
  'ask_scott_saw',
  'scott_saw_text',
  'saw_text_sent',
  'text_sent_day',
  'sent_day_said',
  'day_said_sorri',
  'said_sorri_notic',
  'sorri_notic_told',
  'notic_told_check',
  'told_check_right',
  'check_right_read',
  'right_read_loud',
  'read_loud_everyon',
  'loud_everyon_tabl',
  'everyon_tabl_could',
  'tabl_could_hear',
  'could_hear_took',
  'hear_took_phone',
  'took_phone_start',
  'phone_start_read',
  'start_read_text',
  'read_text_loud',
  'text_loud_text',
  'loud_text_mention',
  'text_mention_martin',
  'mention_martin_got',
  'martin_got_fiance',
  'got_fiance_new',
  'fiance_new_hous',
  'new_hous_gener',
  'hous_gener_said',
  'gener_said_martin',
  'said_martin_younger',
  'martin_younger_scott',
  'younger_scott_yet',
  'scott_yet_abl',
  'yet_abl_buy',
  'abl_buy_hous',
  'buy_hous_basic',
  'hous_basic_shame',
  'basic_shame_scott',
  'shame_scott_inabl',
  'scott_inabl_buy',
  'inabl_buy_hous',
  'buy_hous_wrap',
  'hous_wrap_say',
  'wrap_say_martin',
  'say_martin_mayb',
  'martin_mayb_bad',
  'mayb_bad_afteral',
  'bad_afteral_shock',
  'afteral_shock_scott',
  'shock_scott_piss',
  'scott_piss_obvious',
  'piss_obvious_howev',
  'obvious_howev_lash',
  'howev_lash_anyth',
  'lash_anyth_look',
  'anyth_look_text',
  'look_text_smile',
  'text_smile_said',
  'smile_said_know',
  'said_know_get',
  'know_get_entir',
  'get_entir_text',
  'entir_text_public',
  'text_public_educ',
  'public_educ_year',
  'educ_year_yet',
  'year_yet_cant',
  'yet_cant_differenti',
  'cant_differenti_passiv',
  'differenti_passiv_contract',
  'passiv_contract_good',
  'contract_good_god',
  'good_god_thought',
  'god_thought_children',
  'thought_children_mustv',
  'children_mustv_left',
  'mustv_left_behind',
  'left_behind_everyon',
  'behind_everyon_tabl',
  'everyon_tabl_bust',
  'tabl_bust_laughter',
  'bust_laughter_mom',
  'laughter_mom_face',
  'mom_face_went',
  'face_went_pale',
  'went_pale_decid',
  'pale_decid_leav',
  'decid_leav_tabl',
  'leav_tabl_sister',
  'tabl_sister_start',
  'sister_start_yell',
  'start_yell_say',
  'yell_say_scott',
  'say_scott_aw',
  'scott_aw_rude',
  'aw_rude_need',
  'rude_need_get',
  'need_get_apolog',
  'get_apolog_immedi',
  'apolog_immedi_forembarrass',
  'immedi_forembarrass_mom',
  'forembarrass_mom_tabl',
  'mom_tabl_refus',
  'tabl_refus_tell',
  'refus_tell_apolog',
  'tell_apolog_point',
  'apolog_point_judgement',
  'point_judgement_toward',
  'judgement_toward_defend',
  'toward_defend_say',
  'defend_say_let',
  'say_let_know',
  'let_know_confid',
  'know_confid_took',
  'confid_took_person',
  'took_person_left',
  'person_left_kept',
  'left_kept_get',
  'kept_get_told',
  'get_told_talk',
  'told_talk_get',
  'talk_get_apolog'],
 ['past',
  'month',
  'good',
  'relationship',
  'mom',
  'stepdad',
  'im',
  'angri',
  'year',
  'ago',
  'dad',
  'pass',
  'away',
  'left',
  'inherit',
  'im',
  'suppos',
  'get',
  'th',
  'bday',
  'im',
  'also',
  'get',
  'survivor',
  'benefit',
  'mom',
  'use',
  'need',
  'thing',
  'like',
  'use',
  'inherit',
  'bought',
  'hous',
  'move',
  'weird',
  'alway',
  'live',
  'bedroom',
  'apart',
  'stepdad',
  'substitut',
  'teacher',
  'mom',
  'part',
  'time',
  'recept',
  'never',
  'even',
  'enough',
  'go',
  'vacat',
  'someth',
  'sudden',
  'larg',
  'hous',
  'nowher',
  'mg',
  'mom',
  'look',
  'guilti',
  'final',
  'admit',
  'use',
  'dad',
  'left',
  'buy',
  'hous',
  'lost',
  'shit',
  'tri',
  'justifi',
  'ask',
  'mean',
  'theyr',
  'move',
  'im',
  'hous',
  'gone',
  'name',
  'theyr',
  'like',
  'thought',
  'supposedli',
  'hous',
  'max',
  'time',
  'wouldv',
  'live',
  'month',
  'still',
  'money',
  'left',
  'went',
  'cheap',
  'colleg',
  'still',
  'cant',
  'believ',
  'use',
  'money',
  'someth',
  'amount',
  'couldv',
  'help',
  'get',
  'damm',
  'hous',
  'also',
  'think',
  'funni',
  'sinc',
  'stepdad',
  'like',
  'dad',
  'sinc',
  'spend',
  'time',
  'meant',
  'mom',
  'pay',
  'littl',
  'child',
  'support',
  'care',
  'use',
  'money',
  'left',
  'sorri',
  'bit',
  'rant',
  'im',
  'ask',
  'asshol',
  'last',
  'saturday',
  'famili',
  'came',
  'stay',
  'hous',
  'stay',
  'friday',
  'night',
  'nxt',
  'morn',
  'im',
  'get',
  'readi',
  'go',
  'work',
  'made',
  'egg',
  'hurri',
  'left',
  'stepdad',
  'ask',
  'come',
  'famili',
  'told',
  'im',
  'alreadi',
  'leav',
  'work',
  'gon',
  'na',
  'time',
  'make',
  'someth',
  'everyon',
  'act',
  'like',
  'big',
  'deal',
  'im',
  'littl',
  'late',
  'sinc',
  'rare',
  'peopl',
  'hous',
  'got',
  'back',
  'forth',
  'im',
  'go',
  'stop',
  'make',
  'breakfast',
  'whne',
  'pull',
  'talk',
  'like',
  'hous',
  'btw',
  'door',
  'kitchen',
  'lead',
  'right',
  'live',
  'room',
  'could',
  'hear',
  'said',
  'loudli',
  'actual',
  '*',
  '*',
  'hous',
  'sinc',
  'paid',
  'money',
  'forget',
  'stole',
  'mom',
  'expect',
  'apolog',
  'embarrass',
  'front',
  'whole',
  'famili',
  'left',
  'shit',
  'say',
  'alreadi',
  'went',
  'home',
  'time',
  'got',
  'home',
  'could',
  'feel',
  'tension',
  'straight',
  'ignor',
  'bad',
  'feel',
  'like',
  'anyth',
  'apolog',
  'think',
  'im',
  'good',
  'son',
  'kind',
  '-hole',
  'wan',
  'na',
  'know',
  'feel',
  'past_month',
  'month_good',
  'good_relationship',
  'relationship_mom',
  'mom_stepdad',
  'stepdad_im',
  'im_angri',
  'angri_year',
  'year_ago',
  'ago_dad',
  'dad_pass',
  'pass_away',
  'away_left',
  'left_inherit',
  'inherit_im',
  'im_suppos',
  'suppos_get',
  'get_th',
  'th_bday',
  'bday_im',
  'im_also',
  'also_get',
  'get_survivor',
  'survivor_benefit',
  'benefit_mom',
  'mom_use',
  'use_need',
  'need_thing',
  'thing_like',
  'like_use',
  'use_inherit',
  'inherit_bought',
  'bought_hous',
  'hous_move',
  'move_weird',
  'weird_alway',
  'alway_live',
  'live_bedroom',
  'bedroom_apart',
  'apart_stepdad',
  'stepdad_substitut',
  'substitut_teacher',
  'teacher_mom',
  'mom_part',
  'part_time',
  'time_recept',
  'recept_never',
  'never_even',
  'even_enough',
  'enough_go',
  'go_vacat',
  'vacat_someth',
  'someth_sudden',
  'sudden_larg',
  'larg_hous',
  'hous_nowher',
  'nowher_mg',
  'mg_mom',
  'mom_look',
  'look_guilti',
  'guilti_final',
  'final_admit',
  'admit_use',
  'use_dad',
  'dad_left',
  'left_buy',
  'buy_hous',
  'hous_lost',
  'lost_shit',
  'shit_tri',
  'tri_justifi',
  'justifi_ask',
  'ask_mean',
  'mean_theyr',
  'theyr_move',
  'move_im',
  'im_hous',
  'hous_gone',
  'gone_name',
  'name_theyr',
  'theyr_like',
  'like_thought',
  'thought_supposedli',
  'supposedli_hous',
  'hous_max',
  'max_time',
  'time_wouldv',
  'wouldv_live',
  'live_month',
  'month_still',
  'still_money',
  'money_left',
  'left_went',
  'went_cheap',
  'cheap_colleg',
  'colleg_still',
  'still_cant',
  'cant_believ',
  'believ_use',
  'use_money',
  'money_someth',
  'someth_amount',
  'amount_couldv',
  'couldv_help',
  'help_get',
  'get_damm',
  'damm_hous',
  'hous_also',
  'also_think',
  'think_funni',
  'funni_sinc',
  'sinc_stepdad',
  'stepdad_like',
  'like_dad',
  'dad_sinc',
  'sinc_spend',
  'spend_time',
  'time_meant',
  'meant_mom',
  'mom_pay',
  'pay_littl',
  'littl_child',
  'child_support',
  'support_care',
  'care_use',
  'use_money',
  'money_left',
  'left_sorri',
  'sorri_bit',
  'bit_rant',
  'rant_im',
  'im_ask',
  'ask_asshol',
  'asshol_last',
  'last_saturday',
  'saturday_famili',
  'famili_came',
  'came_stay',
  'stay_hous',
  'hous_stay',
  'stay_friday',
  'friday_night',
  'night_nxt',
  'nxt_morn',
  'morn_im',
  'im_get',
  'get_readi',
  'readi_go',
  'go_work',
  'work_made',
  'made_egg',
  'egg_hurri',
  'hurri_left',
  'left_stepdad',
  'stepdad_ask',
  'ask_come',
  'come_famili',
  'famili_told',
  'told_im',
  'im_alreadi',
  'alreadi_leav',
  'leav_work',
  'work_gon',
  'gon_na',
  'na_time',
  'time_make',
  'make_someth',
  'someth_everyon',
  'everyon_act',
  'act_like',
  'like_big',
  'big_deal',
  'deal_im',
  'im_littl',
  'littl_late',
  'late_sinc',
  'sinc_rare',
  'rare_peopl',
  'peopl_hous',
  'hous_got',
  'got_back',
  'back_forth',
  'forth_im',
  'im_go',
  'go_stop',
  'stop_make',
  'make_breakfast',
  'breakfast_whne',
  'whne_pull',
  'pull_talk',
  'talk_like',
  'like_hous',
  'hous_btw',
  'btw_door',
  'door_kitchen',
  'kitchen_lead',
  'lead_right',
  'right_live',
  'live_room',
  'room_could',
  'could_hear',
  'hear_said',
  'said_loudli',
  'loudli_actual',
  'actual_*',
  '*_*',
  '*_hous',
  'hous_sinc',
  'sinc_paid',
  'paid_money',
  'money_forget',
  'forget_stole',
  'stole_mom',
  'mom_expect',
  'expect_apolog',
  'apolog_embarrass',
  'embarrass_front',
  'front_whole',
  'whole_famili',
  'famili_left',
  'left_shit',
  'shit_say',
  'say_alreadi',
  'alreadi_went',
  'went_home',
  'home_time',
  'time_got',
  'got_home',
  'home_could',
  'could_feel',
  'feel_tension',
  'tension_straight',
  'straight_ignor',
  'ignor_bad',
  'bad_feel',
  'feel_like',
  'like_anyth',
  'anyth_apolog',
  'apolog_think',
  'think_im',
  'im_good',
  'good_son',
  'son_kind',
  'kind_-hole',
  '-hole_wan',
  'wan_na',
  'na_know',
  'know_feel',
  'past_month_good',
  'month_good_relationship',
  'good_relationship_mom',
  'relationship_mom_stepdad',
  'mom_stepdad_im',
  'stepdad_im_angri',
  'im_angri_year',
  'angri_year_ago',
  'year_ago_dad',
  'ago_dad_pass',
  'dad_pass_away',
  'pass_away_left',
  'away_left_inherit',
  'left_inherit_im',
  'inherit_im_suppos',
  'im_suppos_get',
  'suppos_get_th',
  'get_th_bday',
  'th_bday_im',
  'bday_im_also',
  'im_also_get',
  'also_get_survivor',
  'get_survivor_benefit',
  'survivor_benefit_mom',
  'benefit_mom_use',
  'mom_use_need',
  'use_need_thing',
  'need_thing_like',
  'thing_like_use',
  'like_use_inherit',
  'use_inherit_bought',
  'inherit_bought_hous',
  'bought_hous_move',
  'hous_move_weird',
  'move_weird_alway',
  'weird_alway_live',
  'alway_live_bedroom',
  'live_bedroom_apart',
  'bedroom_apart_stepdad',
  'apart_stepdad_substitut',
  'stepdad_substitut_teacher',
  'substitut_teacher_mom',
  'teacher_mom_part',
  'mom_part_time',
  'part_time_recept',
  'time_recept_never',
  'recept_never_even',
  'never_even_enough',
  'even_enough_go',
  'enough_go_vacat',
  'go_vacat_someth',
  'vacat_someth_sudden',
  'someth_sudden_larg',
  'sudden_larg_hous',
  'larg_hous_nowher',
  'hous_nowher_mg',
  'nowher_mg_mom',
  'mg_mom_look',
  'mom_look_guilti',
  'look_guilti_final',
  'guilti_final_admit',
  'final_admit_use',
  'admit_use_dad',
  'use_dad_left',
  'dad_left_buy',
  'left_buy_hous',
  'buy_hous_lost',
  'hous_lost_shit',
  'lost_shit_tri',
  'shit_tri_justifi',
  'tri_justifi_ask',
  'justifi_ask_mean',
  'ask_mean_theyr',
  'mean_theyr_move',
  'theyr_move_im',
  'move_im_hous',
  'im_hous_gone',
  'hous_gone_name',
  'gone_name_theyr',
  'name_theyr_like',
  'theyr_like_thought',
  'like_thought_supposedli',
  'thought_supposedli_hous',
  'supposedli_hous_max',
  'hous_max_time',
  'max_time_wouldv',
  'time_wouldv_live',
  'wouldv_live_month',
  'live_month_still',
  'month_still_money',
  'still_money_left',
  'money_left_went',
  'left_went_cheap',
  'went_cheap_colleg',
  'cheap_colleg_still',
  'colleg_still_cant',
  'still_cant_believ',
  'cant_believ_use',
  'believ_use_money',
  'use_money_someth',
  'money_someth_amount',
  'someth_amount_couldv',
  'amount_couldv_help',
  'couldv_help_get',
  'help_get_damm',
  'get_damm_hous',
  'damm_hous_also',
  'hous_also_think',
  'also_think_funni',
  'think_funni_sinc',
  'funni_sinc_stepdad',
  'sinc_stepdad_like',
  'stepdad_like_dad',
  'like_dad_sinc',
  'dad_sinc_spend',
  'sinc_spend_time',
  'spend_time_meant',
  'time_meant_mom',
  'meant_mom_pay',
  'mom_pay_littl',
  'pay_littl_child',
  'littl_child_support',
  'child_support_care',
  'support_care_use',
  'care_use_money',
  'use_money_left',
  'money_left_sorri',
  'left_sorri_bit',
  'sorri_bit_rant',
  'bit_rant_im',
  'rant_im_ask',
  'im_ask_asshol',
  'ask_asshol_last',
  'asshol_last_saturday',
  'last_saturday_famili',
  'saturday_famili_came',
  'famili_came_stay',
  'came_stay_hous',
  'stay_hous_stay',
  'hous_stay_friday',
  'stay_friday_night',
  'friday_night_nxt',
  'night_nxt_morn',
  'nxt_morn_im',
  'morn_im_get',
  'im_get_readi',
  'get_readi_go',
  'readi_go_work',
  'go_work_made',
  'work_made_egg',
  'made_egg_hurri',
  'egg_hurri_left',
  'hurri_left_stepdad',
  'left_stepdad_ask',
  'stepdad_ask_come',
  'ask_come_famili',
  'come_famili_told',
  'famili_told_im',
  'told_im_alreadi',
  'im_alreadi_leav',
  'alreadi_leav_work',
  'leav_work_gon',
  'work_gon_na',
  'gon_na_time',
  'na_time_make',
  'time_make_someth',
  'make_someth_everyon',
  'someth_everyon_act',
  'everyon_act_like',
  'act_like_big',
  'like_big_deal',
  'big_deal_im',
  'deal_im_littl',
  'im_littl_late',
  'littl_late_sinc',
  'late_sinc_rare',
  'sinc_rare_peopl',
  'rare_peopl_hous',
  'peopl_hous_got',
  'hous_got_back',
  'got_back_forth',
  'back_forth_im',
  'forth_im_go',
  'im_go_stop',
  'go_stop_make',
  'stop_make_breakfast',
  'make_breakfast_whne',
  'breakfast_whne_pull',
  'whne_pull_talk',
  'pull_talk_like',
  'talk_like_hous',
  'like_hous_btw',
  'hous_btw_door',
  'btw_door_kitchen',
  'door_kitchen_lead',
  'kitchen_lead_right',
  'lead_right_live',
  'right_live_room',
  'live_room_could',
  'room_could_hear',
  'could_hear_said',
  'hear_said_loudli',
  'said_loudli_actual',
  'loudli_actual_*',
  'actual_*_*',
  '*_*_hous',
  '*_hous_sinc',
  'hous_sinc_paid',
  'sinc_paid_money',
  'paid_money_forget',
  'money_forget_stole',
  'forget_stole_mom',
  'stole_mom_expect',
  'mom_expect_apolog',
  'expect_apolog_embarrass',
  'apolog_embarrass_front',
  'embarrass_front_whole',
  'front_whole_famili',
  'whole_famili_left',
  'famili_left_shit',
  'left_shit_say',
  'shit_say_alreadi',
  'say_alreadi_went',
  'alreadi_went_home',
  'went_home_time',
  'home_time_got',
  'time_got_home',
  'got_home_could',
  'home_could_feel',
  'could_feel_tension',
  'feel_tension_straight',
  'tension_straight_ignor',
  'straight_ignor_bad',
  'ignor_bad_feel',
  'bad_feel_like',
  'feel_like_anyth',
  'like_anyth_apolog',
  'anyth_apolog_think',
  'apolog_think_im',
  'think_im_good',
  'im_good_son',
  'good_son_kind',
  'son_kind_-hole',
  'kind_-hole_wan',
  '-hole_wan_na',
  'wan_na_know',
  'na_know_feel'],
 ['decad',
  'four',
  'best',
  'friend',
  'annual',
  'fish',
  'trip',
  'alway',
  'wive',
  'girlfriend',
  'rule',
  'sinc',
  'begin',
  'one',
  'ever',
  'violat',
  'two',
  'year',
  'ago',
  'friend',
  'tim',
  'told',
  'group',
  'want',
  'bring',
  'five',
  'year',
  'old',
  'son',
  'sort',
  'pass',
  'tradit',
  'next',
  'gener',
  'point',
  'tim',
  'kid',
  'daughter',
  'three',
  'two',
  'young',
  'fish',
  'support',
  'tim',
  'idea',
  'made',
  'big',
  'deal',
  'littl',
  'guy',
  'great',
  'time',
  'came',
  'last',
  'year',
  'well',
  'friend',
  'randi',
  'four',
  'month',
  'old',
  'son',
  'babi',
  'born',
  'tim',
  'gave',
  'randi',
  'children',
  'fish',
  'pole',
  'give',
  'son',
  'fifth',
  'birthday',
  'seem',
  'clear',
  'tradit',
  'evolv',
  'us',
  '+',
  'kid',
  'im',
  'cool',
  'mention',
  'friend',
  'day',
  'daughter',
  'excit',
  'year',
  'fish',
  'trip',
  'look',
  'like',
  'crazi',
  'tim',
  'said',
  'bring',
  'baffl',
  'super',
  'support',
  'bring',
  'son',
  'differ',
  'daughter',
  'age',
  'tim',
  'son',
  'first',
  'came',
  'trip',
  'anoth',
  'friend',
  'brought',
  'wive',
  'girlfriend',
  'rule',
  'piss',
  'five',
  'year',
  'old',
  'daughter',
  'anyon',
  'wife',
  'girlfriend',
  'said',
  'want',
  'daughter',
  'want',
  'tim',
  'son',
  'tim',
  'offend',
  'storm',
  'randi',
  'said',
  'said',
  'uncal',
  'said',
  'im',
  'bring',
  'daughter',
  'want',
  'make',
  'sure',
  'im',
  'entitl',
  'prick',
  'aita',
  'updat',
  'sent',
  'post',
  'friend',
  'talk',
  'end',
  'apolog',
  'daughter',
  'definit',
  'come',
  'trip',
  'know',
  'mani',
  'peopl',
  'assum',
  'friend',
  'sexist',
  'horribl',
  'theyr',
  'realli',
  'worri',
  'daughter',
  'would',
  'stay',
  'hotel',
  'instead',
  'usual',
  'cabin',
  'abl',
  'mani',
  'activ',
  'assur',
  'daughter',
  'sleep',
  'without',
  'air',
  'condit',
  'easili',
  'tim',
  'son',
  'go',
  'one',
  'troubl',
  'keep',
  'five',
  'year',
  'old',
  'energi',
  'everyon',
  'apolog',
  'bring',
  'wive',
  'girlfriend',
  'rule',
  'agre',
  'shitti',
  'thing',
  'say',
  'good',
  'thank',
  'support',
  'decad_four',
  'four_best',
  'best_friend',
  'friend_annual',
  'annual_fish',
  'fish_trip',
  'trip_alway',
  'alway_wive',
  'wive_girlfriend',
  'girlfriend_rule',
  'rule_sinc',
  'sinc_begin',
  'begin_one',
  'one_ever',
  'ever_violat',
  'violat_two',
  'two_year',
  'year_ago',
  'ago_friend',
  'friend_tim',
  'tim_told',
  'told_group',
  'group_want',
  'want_bring',
  'bring_five',
  'five_year',
  'year_old',
  'old_son',
  'son_sort',
  'sort_pass',
  'pass_tradit',
  'tradit_next',
  'next_gener',
  'gener_point',
  'point_tim',
  'tim_kid',
  'kid_daughter',
  'daughter_three',
  'three_two',
  'two_young',
  'young_fish',
  'fish_support',
  'support_tim',
  'tim_idea',
  'idea_made',
  'made_big',
  'big_deal',
  'deal_littl',
  'littl_guy',
  'guy_great',
  'great_time',
  'time_came',
  'came_last',
  'last_year',
  'year_well',
  'well_friend',
  'friend_randi',
  'randi_four',
  'four_month',
  'month_old',
  'old_son',
  'son_babi',
  'babi_born',
  'born_tim',
  'tim_gave',
  'gave_randi',
  'randi_children',
  'children_fish',
  'fish_pole',
  'pole_give',
  'give_son',
  'son_fifth',
  'fifth_birthday',
  'birthday_seem',
  'seem_clear',
  'clear_tradit',
  'tradit_evolv',
  'evolv_us',
  'us_+',
  '+_kid',
  'kid_im',
  'im_cool',
  'cool_mention',
  'mention_friend',
  'friend_day',
  'day_daughter',
  'daughter_excit',
  'excit_year',
  'year_fish',
  'fish_trip',
  'trip_look',
  'look_like',
  'like_crazi',
  'crazi_tim',
  'tim_said',
  'said_bring',
  'bring_baffl',
  'baffl_super',
  'super_support',
  'support_bring',
  'bring_son',
  'son_differ',
  'differ_daughter',
  'daughter_age',
  'age_tim',
  'tim_son',
  'son_first',
  'first_came',
  'came_trip',
  'trip_anoth',
  'anoth_friend',
  'friend_brought',
  'brought_wive',
  'wive_girlfriend',
  'girlfriend_rule',
  'rule_piss',
  'piss_five',
  'five_year',
  'year_old',
  'old_daughter',
  'daughter_anyon',
  'anyon_wife',
  'wife_girlfriend',
  'girlfriend_said',
  'said_want',
  'want_daughter',
  'daughter_want',
  'want_tim',
  'tim_son',
  'son_tim',
  'tim_offend',
  'offend_storm',
  'storm_randi',
  'randi_said',
  'said_said',
  'said_uncal',
  'uncal_said',
  'said_im',
  'im_bring',
  'bring_daughter',
  'daughter_want',
  'want_make',
  'make_sure',
  'sure_im',
  'im_entitl',
  'entitl_prick',
  'prick_aita',
  'aita_updat',
  'updat_sent',
  'sent_post',
  'post_friend',
  'friend_talk',
  'talk_end',
  'end_apolog',
  'apolog_daughter',
  'daughter_definit',
  'definit_come',
  'come_trip',
  'trip_know',
  'know_mani',
  'mani_peopl',
  'peopl_assum',
  'assum_friend',
  'friend_sexist',
  'sexist_horribl',
  'horribl_theyr',
  'theyr_realli',
  'realli_worri',
  'worri_daughter',
  'daughter_would',
  'would_stay',
  'stay_hotel',
  'hotel_instead',
  'instead_usual',
  'usual_cabin',
  'cabin_abl',
  'abl_mani',
  'mani_activ',
  'activ_assur',
  'assur_daughter',
  'daughter_sleep',
  'sleep_without',
  'without_air',
  'air_condit',
  'condit_easili',
  'easili_tim',
  'tim_son',
  'son_go',
  'go_one',
  'one_troubl',
  'troubl_keep',
  'keep_five',
  'five_year',
  'year_old',
  'old_energi',
  'energi_everyon',
  'everyon_apolog',
  'apolog_bring',
  'bring_wive',
  'wive_girlfriend',
  'girlfriend_rule',
  'rule_agre',
  'agre_shitti',
  'shitti_thing',
  'thing_say',
  'say_good',
  'good_thank',
  'thank_support',
  'decad_four_best',
  'four_best_friend',
  'best_friend_annual',
  'friend_annual_fish',
  'annual_fish_trip',
  'fish_trip_alway',
  'trip_alway_wive',
  'alway_wive_girlfriend',
  'wive_girlfriend_rule',
  'girlfriend_rule_sinc',
  'rule_sinc_begin',
  'sinc_begin_one',
  'begin_one_ever',
  'one_ever_violat',
  'ever_violat_two',
  'violat_two_year',
  'two_year_ago',
  'year_ago_friend',
  'ago_friend_tim',
  'friend_tim_told',
  'tim_told_group',
  'told_group_want',
  'group_want_bring',
  'want_bring_five',
  'bring_five_year',
  'five_year_old',
  'year_old_son',
  'old_son_sort',
  'son_sort_pass',
  'sort_pass_tradit',
  'pass_tradit_next',
  'tradit_next_gener',
  'next_gener_point',
  'gener_point_tim',
  'point_tim_kid',
  'tim_kid_daughter',
  'kid_daughter_three',
  'daughter_three_two',
  'three_two_young',
  'two_young_fish',
  'young_fish_support',
  'fish_support_tim',
  'support_tim_idea',
  'tim_idea_made',
  'idea_made_big',
  'made_big_deal',
  'big_deal_littl',
  'deal_littl_guy',
  'littl_guy_great',
  'guy_great_time',
  'great_time_came',
  'time_came_last',
  'came_last_year',
  'last_year_well',
  'year_well_friend',
  'well_friend_randi',
  'friend_randi_four',
  'randi_four_month',
  'four_month_old',
  'month_old_son',
  'old_son_babi',
  'son_babi_born',
  'babi_born_tim',
  'born_tim_gave',
  'tim_gave_randi',
  'gave_randi_children',
  'randi_children_fish',
  'children_fish_pole',
  'fish_pole_give',
  'pole_give_son',
  'give_son_fifth',
  'son_fifth_birthday',
  'fifth_birthday_seem',
  'birthday_seem_clear',
  'seem_clear_tradit',
  'clear_tradit_evolv',
  'tradit_evolv_us',
  'evolv_us_+',
  'us_+_kid',
  '+_kid_im',
  'kid_im_cool',
  'im_cool_mention',
  'cool_mention_friend',
  'mention_friend_day',
  'friend_day_daughter',
  'day_daughter_excit',
  'daughter_excit_year',
  'excit_year_fish',
  'year_fish_trip',
  'fish_trip_look',
  'trip_look_like',
  'look_like_crazi',
  'like_crazi_tim',
  'crazi_tim_said',
  'tim_said_bring',
  'said_bring_baffl',
  'bring_baffl_super',
  'baffl_super_support',
  'super_support_bring',
  'support_bring_son',
  'bring_son_differ',
  'son_differ_daughter',
  'differ_daughter_age',
  'daughter_age_tim',
  'age_tim_son',
  'tim_son_first',
  'son_first_came',
  'first_came_trip',
  'came_trip_anoth',
  'trip_anoth_friend',
  'anoth_friend_brought',
  'friend_brought_wive',
  'brought_wive_girlfriend',
  'wive_girlfriend_rule',
  'girlfriend_rule_piss',
  'rule_piss_five',
  'piss_five_year',
  'five_year_old',
  'year_old_daughter',
  'old_daughter_anyon',
  'daughter_anyon_wife',
  'anyon_wife_girlfriend',
  'wife_girlfriend_said',
  'girlfriend_said_want',
  'said_want_daughter',
  'want_daughter_want',
  'daughter_want_tim',
  'want_tim_son',
  'tim_son_tim',
  'son_tim_offend',
  'tim_offend_storm',
  'offend_storm_randi',
  'storm_randi_said',
  'randi_said_said',
  'said_said_uncal',
  'said_uncal_said',
  'uncal_said_im',
  'said_im_bring',
  'im_bring_daughter',
  'bring_daughter_want',
  'daughter_want_make',
  'want_make_sure',
  'make_sure_im',
  'sure_im_entitl',
  'im_entitl_prick',
  'entitl_prick_aita',
  'prick_aita_updat',
  'aita_updat_sent',
  'updat_sent_post',
  'sent_post_friend',
  'post_friend_talk',
  'friend_talk_end',
  'talk_end_apolog',
  'end_apolog_daughter',
  'apolog_daughter_definit',
  'daughter_definit_come',
  'definit_come_trip',
  'come_trip_know',
  'trip_know_mani',
  'know_mani_peopl',
  'mani_peopl_assum',
  'peopl_assum_friend',
  'assum_friend_sexist',
  'friend_sexist_horribl',
  'sexist_horribl_theyr',
  'horribl_theyr_realli',
  'theyr_realli_worri',
  'realli_worri_daughter',
  'worri_daughter_would',
  'daughter_would_stay',
  'would_stay_hotel',
  'stay_hotel_instead',
  'hotel_instead_usual',
  'instead_usual_cabin',
  'usual_cabin_abl',
  'cabin_abl_mani',
  'abl_mani_activ',
  'mani_activ_assur',
  'activ_assur_daughter',
  'assur_daughter_sleep',
  'daughter_sleep_without',
  'sleep_without_air',
  'without_air_condit',
  'air_condit_easili',
  'condit_easili_tim',
  'easili_tim_son',
  'tim_son_go',
  'son_go_one',
  'go_one_troubl',
  'one_troubl_keep',
  'troubl_keep_five',
  'keep_five_year',
  'five_year_old',
  'year_old_energi',
  'old_energi_everyon',
  'energi_everyon_apolog',
  'everyon_apolog_bring',
  'apolog_bring_wive',
  'bring_wive_girlfriend',
  'wive_girlfriend_rule',
  'girlfriend_rule_agre',
  'rule_agre_shitti',
  'agre_shitti_thing',
  'shitti_thing_say',
  'thing_say_good',
  'say_good_thank',
  'good_thank_support'],
 ['mobil',
  'ive',
  'never',
  'post',
  'sorri',
  'advanc',
  'met',
  'husband',
  'yr',
  'ago',
  'time',
  'singl',
  'dad',
  'mo',
  'babi',
  'girl',
  'lilyf',
  'work',
  'bakeri',
  'hed',
  'stop',
  'everi',
  'saturday',
  'walk',
  'eventu',
  'start',
  'go',
  'got',
  'marri',
  'yr',
  'ago',
  'legal',
  'adopt',
  'lili',
  'soon',
  'famili',
  'tradit',
  'oldest',
  'daughter',
  'get',
  'gift',
  'old',
  'sapphir',
  'ring',
  'th',
  'birthday',
  'ring',
  'belong',
  'grandmoth',
  'gave',
  'aunt',
  'gave',
  'cousin',
  'male',
  'lili',
  'th',
  'birthday',
  'month',
  'ago',
  'gave',
  'ring',
  'oldest',
  'daughter',
  'love',
  'ring',
  'anyth',
  'put',
  'chain',
  'wear',
  'around',
  'neck',
  'could',
  'keep',
  'better',
  'track',
  'month',
  'ive',
  'never',
  'seen',
  'take',
  'sister',
  'mia',
  'one',
  'lili',
  'favorit',
  'peopl',
  'lili',
  'realli',
  'love',
  'aunt',
  'sometim',
  'mia',
  'text',
  'let',
  'know',
  'pick',
  'lili',
  'school',
  'go',
  'eat',
  'go',
  'bookstor',
  'someth',
  'like',
  'day',
  'got',
  'one',
  'text',
  'mia',
  'told',
  'safe',
  'fun',
  'make',
  'sure',
  'daughter',
  'came',
  'home',
  'decent',
  'time',
  'school',
  'night',
  'lili',
  'got',
  'home',
  'hour',
  'dinner',
  'bare',
  'said',
  'hello',
  'dad',
  'went',
  'room',
  'thought',
  'mayb',
  'tire',
  'immedi',
  'ask',
  'go',
  'later',
  'night',
  'went',
  'go',
  'check',
  'want',
  'sure',
  'walk',
  'room',
  'saw',
  'cri',
  'ask',
  'wrong',
  'took',
  'minut',
  'eventu',
  'told',
  'mia',
  'took',
  'ring',
  '*',
  'famili',
  '*',
  'heirloom',
  'suppos',
  'go',
  'actual',
  'oldest',
  'daughter',
  'adopt',
  'mean',
  'realli',
  'famili',
  'reason',
  'go',
  'mia',
  'apart',
  'night',
  'get',
  'back',
  'spent',
  'rest',
  'even',
  'reassur',
  'lili',
  'famili',
  '%',
  'actual',
  'oldest',
  'daughter',
  'matter',
  'dna',
  'anyon',
  'els',
  'say',
  'left',
  'mia',
  'voicemail',
  'next',
  'morn',
  'tell',
  'return',
  'ring',
  'drive',
  'get',
  'text',
  'say',
  'would',
  'give',
  'daughter',
  'shed',
  'keep',
  'safe',
  'make',
  'sure',
  'give',
  'back',
  'wrong',
  'person',
  'told',
  'return',
  'ring',
  'pm',
  'day',
  'would',
  'call',
  'polic',
  'report',
  'stolen',
  'start',
  'text',
  'like',
  'crazi',
  'say',
  'ridicul',
  'much',
  'mom',
  'think',
  'say',
  'id',
  'contact',
  'polic',
  'take',
  'far',
  'mia',
  'tri',
  'keep',
  'famili',
  'tradit',
  'mobil_ive',
  'ive_never',
  'never_post',
  'post_sorri',
  'sorri_advanc',
  'advanc_met',
  'met_husband',
  'husband_yr',
  'yr_ago',
  'ago_time',
  'time_singl',
  'singl_dad',
  'dad_mo',
  'mo_babi',
  'babi_girl',
  'girl_lilyf',
  'lilyf_work',
  'work_bakeri',
  'bakeri_hed',
  'hed_stop',
  'stop_everi',
  'everi_saturday',
  'saturday_walk',
  'walk_eventu',
  'eventu_start',
  'start_go',
  'go_got',
  'got_marri',
  'marri_yr',
  'yr_ago',
  'ago_legal',
  'legal_adopt',
  'adopt_lili',
  'lili_soon',
  'soon_famili',
  'famili_tradit',
  'tradit_oldest',
  'oldest_daughter',
  'daughter_get',
  'get_gift',
  'gift_old',
  'old_sapphir',
  'sapphir_ring',
  'ring_th',
  'th_birthday',
  'birthday_ring',
  'ring_belong',
  'belong_grandmoth',
  'grandmoth_gave',
  'gave_aunt',
  'aunt_gave',
  'gave_cousin',
  'cousin_male',
  'male_lili',
  'lili_th',
  'th_birthday',
  'birthday_month',
  'month_ago',
  'ago_gave',
  'gave_ring',
  'ring_oldest',
  'oldest_daughter',
  'daughter_love',
  'love_ring',
  'ring_anyth',
  'anyth_put',
  'put_chain',
  'chain_wear',
  'wear_around',
  'around_neck',
  'neck_could',
  'could_keep',
  'keep_better',
  'better_track',
  'track_month',
  'month_ive',
  'ive_never',
  'never_seen',
  'seen_take',
  'take_sister',
  'sister_mia',
  'mia_one',
  'one_lili',
  'lili_favorit',
  'favorit_peopl',
  'peopl_lili',
  'lili_realli',
  'realli_love',
  'love_aunt',
  'aunt_sometim',
  'sometim_mia',
  'mia_text',
  'text_let',
  'let_know',
  'know_pick',
  'pick_lili',
  'lili_school',
  'school_go',
  'go_eat',
  'eat_go',
  'go_bookstor',
  'bookstor_someth',
  'someth_like',
  'like_day',
  'day_got',
  'got_one',
  'one_text',
  'text_mia',
  'mia_told',
  'told_safe',
  'safe_fun',
  'fun_make',
  'make_sure',
  'sure_daughter',
  'daughter_came',
  'came_home',
  'home_decent',
  'decent_time',
  'time_school',
  'school_night',
  'night_lili',
  'lili_got',
  'got_home',
  'home_hour',
  'hour_dinner',
  'dinner_bare',
  'bare_said',
  'said_hello',
  'hello_dad',
  'dad_went',
  'went_room',
  'room_thought',
  'thought_mayb',
  'mayb_tire',
  'tire_immedi',
  'immedi_ask',
  'ask_go',
  'go_later',
  'later_night',
  'night_went',
  'went_go',
  'go_check',
  'check_want',
  'want_sure',
  'sure_walk',
  'walk_room',
  'room_saw',
  'saw_cri',
  'cri_ask',
  'ask_wrong',
  'wrong_took',
  'took_minut',
  'minut_eventu',
  'eventu_told',
  'told_mia',
  'mia_took',
  'took_ring',
  'ring_*',
  '*_famili',
  'famili_*',
  '*_heirloom',
  'heirloom_suppos',
  'suppos_go',
  'go_actual',
  'actual_oldest',
  'oldest_daughter',
  'daughter_adopt',
  'adopt_mean',
  'mean_realli',
  'realli_famili',
  'famili_reason',
  'reason_go',
  'go_mia',
  'mia_apart',
  'apart_night',
  'night_get',
  'get_back',
  'back_spent',
  'spent_rest',
  'rest_even',
  'even_reassur',
  'reassur_lili',
  'lili_famili',
  'famili_%',
  '%_actual',
  'actual_oldest',
  'oldest_daughter',
  'daughter_matter',
  'matter_dna',
  'dna_anyon',
  'anyon_els',
  'els_say',
  'say_left',
  'left_mia',
  'mia_voicemail',
  'voicemail_next',
  'next_morn',
  'morn_tell',
  'tell_return',
  'return_ring',
  'ring_drive',
  'drive_get',
  'get_text',
  'text_say',
  'say_would',
  'would_give',
  'give_daughter',
  'daughter_shed',
  'shed_keep',
  'keep_safe',
  'safe_make',
  'make_sure',
  'sure_give',
  'give_back',
  'back_wrong',
  'wrong_person',
  'person_told',
  'told_return',
  'return_ring',
  'ring_pm',
  'pm_day',
  'day_would',
  'would_call',
  'call_polic',
  'polic_report',
  'report_stolen',
  'stolen_start',
  'start_text',
  'text_like',
  'like_crazi',
  'crazi_say',
  'say_ridicul',
  'ridicul_much',
  'much_mom',
  'mom_think',
  'think_say',
  'say_id',
  'id_contact',
  'contact_polic',
  'polic_take',
  'take_far',
  'far_mia',
  'mia_tri',
  'tri_keep',
  'keep_famili',
  'famili_tradit',
  'mobil_ive_never',
  'ive_never_post',
  'never_post_sorri',
  'post_sorri_advanc',
  'sorri_advanc_met',
  'advanc_met_husband',
  'met_husband_yr',
  'husband_yr_ago',
  'yr_ago_time',
  'ago_time_singl',
  'time_singl_dad',
  'singl_dad_mo',
  'dad_mo_babi',
  'mo_babi_girl',
  'babi_girl_lilyf',
  'girl_lilyf_work',
  'lilyf_work_bakeri',
  'work_bakeri_hed',
  'bakeri_hed_stop',
  'hed_stop_everi',
  'stop_everi_saturday',
  'everi_saturday_walk',
  'saturday_walk_eventu',
  'walk_eventu_start',
  'eventu_start_go',
  'start_go_got',
  'go_got_marri',
  'got_marri_yr',
  'marri_yr_ago',
  'yr_ago_legal',
  'ago_legal_adopt',
  'legal_adopt_lili',
  'adopt_lili_soon',
  'lili_soon_famili',
  'soon_famili_tradit',
  'famili_tradit_oldest',
  'tradit_oldest_daughter',
  'oldest_daughter_get',
  'daughter_get_gift',
  'get_gift_old',
  'gift_old_sapphir',
  'old_sapphir_ring',
  'sapphir_ring_th',
  'ring_th_birthday',
  'th_birthday_ring',
  'birthday_ring_belong',
  'ring_belong_grandmoth',
  'belong_grandmoth_gave',
  'grandmoth_gave_aunt',
  'gave_aunt_gave',
  'aunt_gave_cousin',
  'gave_cousin_male',
  'cousin_male_lili',
  'male_lili_th',
  'lili_th_birthday',
  'th_birthday_month',
  'birthday_month_ago',
  'month_ago_gave',
  'ago_gave_ring',
  'gave_ring_oldest',
  'ring_oldest_daughter',
  'oldest_daughter_love',
  'daughter_love_ring',
  'love_ring_anyth',
  'ring_anyth_put',
  'anyth_put_chain',
  'put_chain_wear',
  'chain_wear_around',
  'wear_around_neck',
  'around_neck_could',
  'neck_could_keep',
  'could_keep_better',
  'keep_better_track',
  'better_track_month',
  'track_month_ive',
  'month_ive_never',
  'ive_never_seen',
  'never_seen_take',
  'seen_take_sister',
  'take_sister_mia',
  'sister_mia_one',
  'mia_one_lili',
  'one_lili_favorit',
  'lili_favorit_peopl',
  'favorit_peopl_lili',
  'peopl_lili_realli',
  'lili_realli_love',
  'realli_love_aunt',
  'love_aunt_sometim',
  'aunt_sometim_mia',
  'sometim_mia_text',
  'mia_text_let',
  'text_let_know',
  'let_know_pick',
  'know_pick_lili',
  'pick_lili_school',
  'lili_school_go',
  'school_go_eat',
  'go_eat_go',
  'eat_go_bookstor',
  'go_bookstor_someth',
  'bookstor_someth_like',
  'someth_like_day',
  'like_day_got',
  'day_got_one',
  'got_one_text',
  'one_text_mia',
  'text_mia_told',
  'mia_told_safe',
  'told_safe_fun',
  'safe_fun_make',
  'fun_make_sure',
  'make_sure_daughter',
  'sure_daughter_came',
  'daughter_came_home',
  'came_home_decent',
  'home_decent_time',
  'decent_time_school',
  'time_school_night',
  'school_night_lili',
  'night_lili_got',
  'lili_got_home',
  'got_home_hour',
  'home_hour_dinner',
  'hour_dinner_bare',
  'dinner_bare_said',
  'bare_said_hello',
  'said_hello_dad',
  'hello_dad_went',
  'dad_went_room',
  'went_room_thought',
  'room_thought_mayb',
  'thought_mayb_tire',
  'mayb_tire_immedi',
  'tire_immedi_ask',
  'immedi_ask_go',
  'ask_go_later',
  'go_later_night',
  'later_night_went',
  'night_went_go',
  'went_go_check',
  'go_check_want',
  'check_want_sure',
  'want_sure_walk',
  'sure_walk_room',
  'walk_room_saw',
  'room_saw_cri',
  'saw_cri_ask',
  'cri_ask_wrong',
  'ask_wrong_took',
  'wrong_took_minut',
  'took_minut_eventu',
  'minut_eventu_told',
  'eventu_told_mia',
  'told_mia_took',
  'mia_took_ring',
  'took_ring_*',
  'ring_*_famili',
  '*_famili_*',
  'famili_*_heirloom',
  '*_heirloom_suppos',
  'heirloom_suppos_go',
  'suppos_go_actual',
  'go_actual_oldest',
  'actual_oldest_daughter',
  'oldest_daughter_adopt',
  'daughter_adopt_mean',
  'adopt_mean_realli',
  'mean_realli_famili',
  'realli_famili_reason',
  'famili_reason_go',
  'reason_go_mia',
  'go_mia_apart',
  'mia_apart_night',
  'apart_night_get',
  'night_get_back',
  'get_back_spent',
  'back_spent_rest',
  'spent_rest_even',
  'rest_even_reassur',
  'even_reassur_lili',
  'reassur_lili_famili',
  'lili_famili_%',
  'famili_%_actual',
  '%_actual_oldest',
  'actual_oldest_daughter',
  'oldest_daughter_matter',
  'daughter_matter_dna',
  'matter_dna_anyon',
  'dna_anyon_els',
  'anyon_els_say',
  'els_say_left',
  'say_left_mia',
  'left_mia_voicemail',
  'mia_voicemail_next',
  'voicemail_next_morn',
  'next_morn_tell',
  'morn_tell_return',
  'tell_return_ring',
  'return_ring_drive',
  'ring_drive_get',
  'drive_get_text',
  'get_text_say',
  'text_say_would',
  'say_would_give',
  'would_give_daughter',
  'give_daughter_shed',
  'daughter_shed_keep',
  'shed_keep_safe',
  'keep_safe_make',
  'safe_make_sure',
  'make_sure_give',
  'sure_give_back',
  'give_back_wrong',
  'back_wrong_person',
  'wrong_person_told',
  'person_told_return',
  'told_return_ring',
  'return_ring_pm',
  'ring_pm_day',
  'pm_day_would',
  'day_would_call',
  'would_call_polic',
  'call_polic_report',
  'polic_report_stolen',
  'report_stolen_start',
  'stolen_start_text',
  'start_text_like',
  'text_like_crazi',
  'like_crazi_say',
  'crazi_say_ridicul',
  'say_ridicul_much',
  'ridicul_much_mom',
  'much_mom_think',
  'mom_think_say',
  'think_say_id',
  'say_id_contact',
  'id_contact_polic',
  'contact_polic_take',
  'polic_take_far',
  'take_far_mia',
  'far_mia_tri',
  'mia_tri_keep',
  'tri_keep_famili',
  'keep_famili_tradit'],
 ['titl',
  'sound',
  'bad',
  'hear',
  'work',
  'colleagu',
  'mari',
  'adam',
  'late',
  '-earli',
  'mari',
  'start',
  'compani',
  'first',
  'got',
  'adam',
  'join',
  'work',
  'differ',
  'depart',
  'mari',
  'mine',
  'later',
  'mari',
  'left',
  'compani',
  'pursu',
  'anoth',
  'carrier',
  'start',
  'compani',
  'alreadi',
  'marri',
  'year',
  'mari',
  'kindest',
  'loveliest',
  'person',
  'ive',
  'ever',
  'met',
  'alway',
  'polit',
  'help',
  'would',
  'cheer',
  'anyon',
  'miss',
  'dearli',
  'came',
  'shock',
  'found',
  'divorc',
  'adam',
  'cheat',
  'call',
  'express',
  'sorri',
  'happen',
  'talk',
  'almost',
  'daipi',
  'ever',
  'sinc',
  'impress',
  'well',
  'mari',
  'hold',
  'situat',
  'bad',
  'mouth',
  'adam',
  'thing',
  'mention',
  'wed',
  'dress',
  'famili',
  'heirloom',
  'went',
  'miss',
  'move',
  'stuff',
  'apart',
  'thought',
  'might',
  'misplac',
  'differ',
  'box',
  'turn',
  'eventu',
  'year',
  'pass',
  'work',
  'depart',
  'adam',
  'good',
  'work',
  'colleagu',
  'dismiss',
  'ignor',
  'sometim',
  'adam',
  'invit',
  'wed',
  'ladi',
  'chelsea',
  'cheat',
  'mari',
  'entir',
  'depart',
  'invit',
  'said',
  'ye',
  'make',
  'sure',
  'mari',
  'ok',
  'ive',
  'also',
  'told',
  'wed',
  'far',
  'live',
  'could',
  'go',
  'drink',
  'want',
  'day',
  'adam',
  'wed',
  'notic',
  'chelsea',
  'wear',
  'similar',
  'dress',
  'mari',
  'worn',
  'photo',
  'adam',
  'wed',
  'year',
  'ago',
  'without',
  'think',
  'snap',
  'pictur',
  'send',
  'mari',
  'caption',
  'say',
  'dress',
  'look',
  'familiar',
  'mari',
  'saw',
  'messag',
  'respond',
  'hour',
  'later',
  'polic',
  'shown',
  'venu',
  'need',
  'add',
  'polic',
  'countri',
  'ruthless',
  'theft',
  'consid',
  'crimin',
  'matter',
  'polic',
  'deal',
  'polic',
  'ask',
  'chelsea',
  'take',
  'dress',
  'jewelleri',
  'chelsea',
  'refus',
  'start',
  'argu',
  'adam',
  'join',
  'rude',
  'polic',
  'taken',
  'polic',
  'station',
  'everyon',
  'wed',
  'leav',
  'tri',
  'call',
  'mari',
  'pick',
  'phone',
  'found',
  'later',
  'chelsea',
  'wear',
  'mari',
  'wed',
  'dress',
  'heirloom',
  'mari',
  'spot',
  'pictur',
  'sent',
  'call',
  'polic',
  'appar',
  'previous',
  'ask',
  'adam',
  'declin',
  'say',
  'never',
  'saw',
  'saw',
  'pictur',
  'knew',
  'lie',
  'stole',
  'chelsea',
  'leav',
  'wed',
  'dress',
  'jeweleri',
  'polic',
  'station',
  'go',
  'home',
  'wear',
  'underwear',
  'adam',
  'jacket',
  'bail',
  'yesterday',
  'adam',
  'return',
  'offic',
  'went',
  'complet',
  'mental',
  'blame',
  'send',
  'pictur',
  'mari',
  'ruin',
  'wed',
  'would',
  'also',
  'call',
  'asshol',
  'titl_sound',
  'sound_bad',
  'bad_hear',
  'hear_work',
  'work_colleagu',
  'colleagu_mari',
  'mari_adam',
  'adam_late',
  'late_-earli',
  '-earli_mari',
  'mari_start',
  'start_compani',
  'compani_first',
  'first_got',
  'got_adam',
  'adam_join',
  'join_work',
  'work_differ',
  'differ_depart',
  'depart_mari',
  'mari_mine',
  'mine_later',
  'later_mari',
  'mari_left',
  'left_compani',
  'compani_pursu',
  'pursu_anoth',
  'anoth_carrier',
  'carrier_start',
  'start_compani',
  'compani_alreadi',
  'alreadi_marri',
  'marri_year',
  'year_mari',
  'mari_kindest',
  'kindest_loveliest',
  'loveliest_person',
  'person_ive',
  'ive_ever',
  'ever_met',
  'met_alway',
  'alway_polit',
  'polit_help',
  'help_would',
  'would_cheer',
  'cheer_anyon',
  'anyon_miss',
  'miss_dearli',
  'dearli_came',
  'came_shock',
  'shock_found',
  'found_divorc',
  'divorc_adam',
  'adam_cheat',
  'cheat_call',
  'call_express',
  'express_sorri',
  'sorri_happen',
  'happen_talk',
  'talk_almost',
  'almost_daipi',
  'daipi_ever',
  'ever_sinc',
  'sinc_impress',
  'impress_well',
  'well_mari',
  'mari_hold',
  'hold_situat',
  'situat_bad',
  'bad_mouth',
  'mouth_adam',
  'adam_thing',
  'thing_mention',
  'mention_wed',
  'wed_dress',
  'dress_famili',
  'famili_heirloom',
  'heirloom_went',
  'went_miss',
  'miss_move',
  'move_stuff',
  'stuff_apart',
  'apart_thought',
  'thought_might',
  'might_misplac',
  'misplac_differ',
  'differ_box',
  'box_turn',
  'turn_eventu',
  'eventu_year',
  'year_pass',
  'pass_work',
  'work_depart',
  'depart_adam',
  'adam_good',
  'good_work',
  'work_colleagu',
  'colleagu_dismiss',
  'dismiss_ignor',
  'ignor_sometim',
  'sometim_adam',
  'adam_invit',
  'invit_wed',
  'wed_ladi',
  'ladi_chelsea',
  'chelsea_cheat',
  'cheat_mari',
  'mari_entir',
  'entir_depart',
  'depart_invit',
  'invit_said',
  'said_ye',
  'ye_make',
  'make_sure',
  'sure_mari',
  'mari_ok',
  'ok_ive',
  'ive_also',
  'also_told',
  'told_wed',
  'wed_far',
  'far_live',
  'live_could',
  'could_go',
  'go_drink',
  'drink_want',
  'want_day',
  'day_adam',
  'adam_wed',
  'wed_notic',
  'notic_chelsea',
  'chelsea_wear',
  'wear_similar',
  'similar_dress',
  'dress_mari',
  'mari_worn',
  'worn_photo',
  'photo_adam',
  'adam_wed',
  'wed_year',
  'year_ago',
  'ago_without',
  'without_think',
  'think_snap',
  'snap_pictur',
  'pictur_send',
  'send_mari',
  'mari_caption',
  'caption_say',
  'say_dress',
  'dress_look',
  'look_familiar',
  'familiar_mari',
  'mari_saw',
  'saw_messag',
  'messag_respond',
  'respond_hour',
  'hour_later',
  'later_polic',
  'polic_shown',
  'shown_venu',
  'venu_need',
  'need_add',
  'add_polic',
  'polic_countri',
  'countri_ruthless',
  'ruthless_theft',
  'theft_consid',
  'consid_crimin',
  'crimin_matter',
  'matter_polic',
  'polic_deal',
  'deal_polic',
  'polic_ask',
  'ask_chelsea',
  'chelsea_take',
  'take_dress',
  'dress_jewelleri',
  'jewelleri_chelsea',
  'chelsea_refus',
  'refus_start',
  'start_argu',
  'argu_adam',
  'adam_join',
  'join_rude',
  'rude_polic',
  'polic_taken',
  'taken_polic',
  'polic_station',
  'station_everyon',
  'everyon_wed',
  'wed_leav',
  'leav_tri',
  'tri_call',
  'call_mari',
  'mari_pick',
  'pick_phone',
  'phone_found',
  'found_later',
  'later_chelsea',
  'chelsea_wear',
  'wear_mari',
  'mari_wed',
  'wed_dress',
  'dress_heirloom',
  'heirloom_mari',
  'mari_spot',
  'spot_pictur',
  'pictur_sent',
  'sent_call',
  'call_polic',
  'polic_appar',
  'appar_previous',
  'previous_ask',
  'ask_adam',
  'adam_declin',
  'declin_say',
  'say_never',
  'never_saw',
  'saw_saw',
  'saw_pictur',
  'pictur_knew',
  'knew_lie',
  'lie_stole',
  'stole_chelsea',
  'chelsea_leav',
  'leav_wed',
  'wed_dress',
  'dress_jeweleri',
  'jeweleri_polic',
  'polic_station',
  'station_go',
  'go_home',
  'home_wear',
  'wear_underwear',
  'underwear_adam',
  'adam_jacket',
  'jacket_bail',
  'bail_yesterday',
  'yesterday_adam',
  'adam_return',
  'return_offic',
  'offic_went',
  'went_complet',
  'complet_mental',
  'mental_blame',
  'blame_send',
  'send_pictur',
  'pictur_mari',
  'mari_ruin',
  'ruin_wed',
  'wed_would',
  'would_also',
  'also_call',
  'call_asshol',
  'titl_sound_bad',
  'sound_bad_hear',
  'bad_hear_work',
  'hear_work_colleagu',
  'work_colleagu_mari',
  'colleagu_mari_adam',
  'mari_adam_late',
  'adam_late_-earli',
  'late_-earli_mari',
  '-earli_mari_start',
  'mari_start_compani',
  'start_compani_first',
  'compani_first_got',
  'first_got_adam',
  'got_adam_join',
  'adam_join_work',
  'join_work_differ',
  'work_differ_depart',
  'differ_depart_mari',
  'depart_mari_mine',
  'mari_mine_later',
  'mine_later_mari',
  'later_mari_left',
  'mari_left_compani',
  'left_compani_pursu',
  'compani_pursu_anoth',
  'pursu_anoth_carrier',
  'anoth_carrier_start',
  'carrier_start_compani',
  'start_compani_alreadi',
  'compani_alreadi_marri',
  'alreadi_marri_year',
  'marri_year_mari',
  'year_mari_kindest',
  'mari_kindest_loveliest',
  'kindest_loveliest_person',
  'loveliest_person_ive',
  'person_ive_ever',
  'ive_ever_met',
  'ever_met_alway',
  'met_alway_polit',
  'alway_polit_help',
  'polit_help_would',
  'help_would_cheer',
  'would_cheer_anyon',
  'cheer_anyon_miss',
  'anyon_miss_dearli',
  'miss_dearli_came',
  'dearli_came_shock',
  'came_shock_found',
  'shock_found_divorc',
  'found_divorc_adam',
  'divorc_adam_cheat',
  'adam_cheat_call',
  'cheat_call_express',
  'call_express_sorri',
  'express_sorri_happen',
  'sorri_happen_talk',
  'happen_talk_almost',
  'talk_almost_daipi',
  'almost_daipi_ever',
  'daipi_ever_sinc',
  'ever_sinc_impress',
  'sinc_impress_well',
  'impress_well_mari',
  'well_mari_hold',
  'mari_hold_situat',
  'hold_situat_bad',
  'situat_bad_mouth',
  'bad_mouth_adam',
  'mouth_adam_thing',
  'adam_thing_mention',
  'thing_mention_wed',
  'mention_wed_dress',
  'wed_dress_famili',
  'dress_famili_heirloom',
  'famili_heirloom_went',
  'heirloom_went_miss',
  'went_miss_move',
  'miss_move_stuff',
  'move_stuff_apart',
  'stuff_apart_thought',
  'apart_thought_might',
  'thought_might_misplac',
  'might_misplac_differ',
  'misplac_differ_box',
  'differ_box_turn',
  'box_turn_eventu',
  'turn_eventu_year',
  'eventu_year_pass',
  'year_pass_work',
  'pass_work_depart',
  'work_depart_adam',
  'depart_adam_good',
  'adam_good_work',
  'good_work_colleagu',
  'work_colleagu_dismiss',
  'colleagu_dismiss_ignor',
  'dismiss_ignor_sometim',
  'ignor_sometim_adam',
  'sometim_adam_invit',
  'adam_invit_wed',
  'invit_wed_ladi',
  'wed_ladi_chelsea',
  'ladi_chelsea_cheat',
  'chelsea_cheat_mari',
  'cheat_mari_entir',
  'mari_entir_depart',
  'entir_depart_invit',
  'depart_invit_said',
  'invit_said_ye',
  'said_ye_make',
  'ye_make_sure',
  'make_sure_mari',
  'sure_mari_ok',
  'mari_ok_ive',
  'ok_ive_also',
  'ive_also_told',
  'also_told_wed',
  'told_wed_far',
  'wed_far_live',
  'far_live_could',
  'live_could_go',
  'could_go_drink',
  'go_drink_want',
  'drink_want_day',
  'want_day_adam',
  'day_adam_wed',
  'adam_wed_notic',
  'wed_notic_chelsea',
  'notic_chelsea_wear',
  'chelsea_wear_similar',
  'wear_similar_dress',
  'similar_dress_mari',
  'dress_mari_worn',
  'mari_worn_photo',
  'worn_photo_adam',
  'photo_adam_wed',
  'adam_wed_year',
  'wed_year_ago',
  'year_ago_without',
  'ago_without_think',
  'without_think_snap',
  'think_snap_pictur',
  'snap_pictur_send',
  'pictur_send_mari',
  'send_mari_caption',
  'mari_caption_say',
  'caption_say_dress',
  'say_dress_look',
  'dress_look_familiar',
  'look_familiar_mari',
  'familiar_mari_saw',
  'mari_saw_messag',
  'saw_messag_respond',
  'messag_respond_hour',
  'respond_hour_later',
  'hour_later_polic',
  'later_polic_shown',
  'polic_shown_venu',
  'shown_venu_need',
  'venu_need_add',
  'need_add_polic',
  'add_polic_countri',
  'polic_countri_ruthless',
  'countri_ruthless_theft',
  'ruthless_theft_consid',
  'theft_consid_crimin',
  'consid_crimin_matter',
  'crimin_matter_polic',
  'matter_polic_deal',
  'polic_deal_polic',
  'deal_polic_ask',
  'polic_ask_chelsea',
  'ask_chelsea_take',
  'chelsea_take_dress',
  'take_dress_jewelleri',
  'dress_jewelleri_chelsea',
  'jewelleri_chelsea_refus',
  'chelsea_refus_start',
  'refus_start_argu',
  'start_argu_adam',
  'argu_adam_join',
  'adam_join_rude',
  'join_rude_polic',
  'rude_polic_taken',
  'polic_taken_polic',
  'taken_polic_station',
  'polic_station_everyon',
  'station_everyon_wed',
  'everyon_wed_leav',
  'wed_leav_tri',
  'leav_tri_call',
  'tri_call_mari',
  'call_mari_pick',
  'mari_pick_phone',
  'pick_phone_found',
  'phone_found_later',
  'found_later_chelsea',
  'later_chelsea_wear',
  'chelsea_wear_mari',
  'wear_mari_wed',
  'mari_wed_dress',
  'wed_dress_heirloom',
  'dress_heirloom_mari',
  'heirloom_mari_spot',
  'mari_spot_pictur',
  'spot_pictur_sent',
  'pictur_sent_call',
  'sent_call_polic',
  'call_polic_appar',
  'polic_appar_previous',
  'appar_previous_ask',
  'previous_ask_adam',
  'ask_adam_declin',
  'adam_declin_say',
  'declin_say_never',
  'say_never_saw',
  'never_saw_saw',
  'saw_saw_pictur',
  'saw_pictur_knew',
  'pictur_knew_lie',
  'knew_lie_stole',
  'lie_stole_chelsea',
  'stole_chelsea_leav',
  'chelsea_leav_wed',
  'leav_wed_dress',
  'wed_dress_jeweleri',
  'dress_jeweleri_polic',
  'jeweleri_polic_station',
  'polic_station_go',
  'station_go_home',
  'go_home_wear',
  'home_wear_underwear',
  'wear_underwear_adam',
  'underwear_adam_jacket',
  'adam_jacket_bail',
  'jacket_bail_yesterday',
  'bail_yesterday_adam',
  'yesterday_adam_return',
  'adam_return_offic',
  'return_offic_went',
  'offic_went_complet',
  'went_complet_mental',
  'complet_mental_blame',
  'mental_blame_send',
  'blame_send_pictur',
  'send_pictur_mari',
  'pictur_mari_ruin',
  'mari_ruin_wed',
  'ruin_wed_would',
  'wed_would_also',
  'would_also_call',
  'also_call_asshol'],
 ['week',
  'ago',
  'wife-',
  'went',
  'prematur',
  'labor',
  'daughter',
  'week',
  'entir',
  'unexpect',
  'wife',
  'daughter',
  'horribl',
  'time',
  'becam',
  'quit',
  'danger',
  'wife',
  'becam',
  'preeclampt',
  'among',
  'seriou',
  'complic',
  'first',
  'week',
  'even',
  'sure',
  'either',
  'wife',
  'daughter',
  'would',
  'make',
  'luckili',
  'surviv',
  'daughter',
  'still',
  'nicu',
  'week',
  'probabl',
  'anoth',
  'wife',
  'still',
  'hospit',
  'well',
  'horribl',
  'struggl',
  'wife',
  'healthi',
  'activ',
  'person',
  'even',
  'pregnanc',
  'abl',
  'maintain',
  'somewhat',
  'activ',
  'lifestyl',
  'trauma',
  'bodi',
  'went',
  'basic',
  'start',
  'back',
  'squar',
  'one',
  'even',
  'abl',
  'hold',
  'daughter',
  'yet',
  'wife',
  'lot',
  'struggl',
  'far',
  'birth',
  'trauma',
  'feel',
  'confus',
  'hurt',
  'experi',
  'told',
  'feel',
  'betray',
  'bodi',
  'even',
  'weakest',
  'moment',
  'even',
  'said',
  'regret',
  'get',
  'pregnant',
  'entir',
  'much',
  'suffer',
  'worri',
  'shell',
  'never',
  'person',
  'feel',
  'horribl',
  'feel',
  'multipl',
  'mental',
  'health',
  'profession',
  'work',
  'help',
  'support',
  'final',
  'reach',
  'point',
  'receiv',
  'visitor',
  'famili',
  'live',
  'close',
  'famili',
  'live',
  'state',
  'away',
  'await',
  'chanc',
  'meet',
  'babi',
  'check',
  'wife',
  'parent',
  'grandpar',
  'flew',
  'warn',
  'famili',
  'beforehand',
  'wife',
  'daughter',
  'still',
  'fragil',
  'stage',
  'patient',
  'brought',
  'see',
  'wife',
  'grand',
  'mother',
  'immedi',
  'went',
  'want',
  'talk',
  'birth',
  'experi',
  'wife',
  'told',
  'one',
  'worst',
  'experi',
  'life',
  'grandmoth',
  'respond',
  'tell',
  'worst',
  'yet',
  'come',
  'struggl',
  'mother',
  'wife',
  'got',
  'upset',
  'comment',
  'start',
  'scream',
  '-',
  'get',
  'never',
  'seen',
  'wife',
  'like',
  'could',
  'tell',
  'feel',
  'extrem',
  'stress',
  'quickli',
  'escort',
  'famili',
  'told',
  'would',
  'best',
  'left',
  'could',
  'talk',
  'later',
  'caus',
  'even',
  'stress',
  'wife',
  'famili',
  'said',
  'appal',
  'wife',
  'behavior',
  'defend',
  'grandmoth',
  'end',
  'day',
  'feel',
  'respons',
  'wife',
  'advoc',
  'time',
  'especi',
  'becom',
  'bit',
  'tension',
  'extend',
  'side',
  'famili',
  'howev',
  'told',
  'wife',
  'want',
  'stress',
  'plan',
  'deal',
  'alon',
  'entir',
  'apolog',
  'wife',
  'behalf',
  'ah',
  'ill',
  'see',
  'wife',
  'ah',
  'week_ago',
  'ago_wife-',
  'wife-_went',
  'went_prematur',
  'prematur_labor',
  'labor_daughter',
  'daughter_week',
  'week_entir',
  'entir_unexpect',
  'unexpect_wife',
  'wife_daughter',
  'daughter_horribl',
  'horribl_time',
  'time_becam',
  'becam_quit',
  'quit_danger',
  'danger_wife',
  'wife_becam',
  'becam_preeclampt',
  'preeclampt_among',
  'among_seriou',
  'seriou_complic',
  'complic_first',
  'first_week',
  'week_even',
  'even_sure',
  'sure_either',
  'either_wife',
  'wife_daughter',
  'daughter_would',
  'would_make',
  'make_luckili',
  'luckili_surviv',
  'surviv_daughter',
  'daughter_still',
  'still_nicu',
  'nicu_week',
  'week_probabl',
  'probabl_anoth',
  'anoth_wife',
  'wife_still',
  'still_hospit',
  'hospit_well',
  'well_horribl',
  'horribl_struggl',
  'struggl_wife',
  'wife_healthi',
  'healthi_activ',
  'activ_person',
  'person_even',
  'even_pregnanc',
  'pregnanc_abl',
  'abl_maintain',
  'maintain_somewhat',
  'somewhat_activ',
  'activ_lifestyl',
  'lifestyl_trauma',
  'trauma_bodi',
  'bodi_went',
  'went_basic',
  'basic_start',
  'start_back',
  'back_squar',
  'squar_one',
  'one_even',
  'even_abl',
  'abl_hold',
  'hold_daughter',
  'daughter_yet',
  'yet_wife',
  'wife_lot',
  'lot_struggl',
  'struggl_far',
  'far_birth',
  'birth_trauma',
  'trauma_feel',
  'feel_confus',
  'confus_hurt',
  'hurt_experi',
  'experi_told',
  'told_feel',
  'feel_betray',
  'betray_bodi',
  'bodi_even',
  'even_weakest',
  'weakest_moment',
  'moment_even',
  'even_said',
  'said_regret',
  'regret_get',
  'get_pregnant',
  'pregnant_entir',
  'entir_much',
  'much_suffer',
  'suffer_worri',
  'worri_shell',
  'shell_never',
  'never_person',
  'person_feel',
  'feel_horribl',
  'horribl_feel',
  'feel_multipl',
  'multipl_mental',
  'mental_health',
  'health_profession',
  'profession_work',
  'work_help',
  'help_support',
  'support_final',
  'final_reach',
  'reach_point',
  'point_receiv',
  'receiv_visitor',
  'visitor_famili',
  'famili_live',
  'live_close',
  'close_famili',
  'famili_live',
  'live_state',
  'state_away',
  'away_await',
  'await_chanc',
  'chanc_meet',
  'meet_babi',
  'babi_check',
  'check_wife',
  'wife_parent',
  'parent_grandpar',
  'grandpar_flew',
  'flew_warn',
  'warn_famili',
  'famili_beforehand',
  'beforehand_wife',
  'wife_daughter',
  'daughter_still',
  'still_fragil',
  'fragil_stage',
  'stage_patient',
  'patient_brought',
  'brought_see',
  'see_wife',
  'wife_grand',
  'grand_mother',
  'mother_immedi',
  'immedi_went',
  'went_want',
  'want_talk',
  'talk_birth',
  'birth_experi',
  'experi_wife',
  'wife_told',
  'told_one',
  'one_worst',
  'worst_experi',
  'experi_life',
  'life_grandmoth',
  'grandmoth_respond',
  'respond_tell',
  'tell_worst',
  'worst_yet',
  'yet_come',
  'come_struggl',
  'struggl_mother',
  'mother_wife',
  'wife_got',
  'got_upset',
  'upset_comment',
  'comment_start',
  'start_scream',
  'scream_-',
  '-_get',
  'get_never',
  'never_seen',
  'seen_wife',
  'wife_like',
  'like_could',
  'could_tell',
  'tell_feel',
  'feel_extrem',
  'extrem_stress',
  'stress_quickli',
  'quickli_escort',
  'escort_famili',
  'famili_told',
  'told_would',
  'would_best',
  'best_left',
  'left_could',
  'could_talk',
  'talk_later',
  'later_caus',
  'caus_even',
  'even_stress',
  'stress_wife',
  'wife_famili',
  'famili_said',
  'said_appal',
  'appal_wife',
  'wife_behavior',
  'behavior_defend',
  'defend_grandmoth',
  'grandmoth_end',
  'end_day',
  'day_feel',
  'feel_respons',
  'respons_wife',
  'wife_advoc',
  'advoc_time',
  'time_especi',
  'especi_becom',
  'becom_bit',
  'bit_tension',
  'tension_extend',
  'extend_side',
  'side_famili',
  'famili_howev',
  'howev_told',
  'told_wife',
  'wife_want',
  'want_stress',
  'stress_plan',
  'plan_deal',
  'deal_alon',
  'alon_entir',
  'entir_apolog',
  'apolog_wife',
  'wife_behalf',
  'behalf_ah',
  'ah_ill',
  'ill_see',
  'see_wife',
  'wife_ah',
  'week_ago_wife-',
  'ago_wife-_went',
  'wife-_went_prematur',
  'went_prematur_labor',
  'prematur_labor_daughter',
  'labor_daughter_week',
  'daughter_week_entir',
  'week_entir_unexpect',
  'entir_unexpect_wife',
  'unexpect_wife_daughter',
  'wife_daughter_horribl',
  'daughter_horribl_time',
  'horribl_time_becam',
  'time_becam_quit',
  'becam_quit_danger',
  'quit_danger_wife',
  'danger_wife_becam',
  'wife_becam_preeclampt',
  'becam_preeclampt_among',
  'preeclampt_among_seriou',
  'among_seriou_complic',
  'seriou_complic_first',
  'complic_first_week',
  'first_week_even',
  'week_even_sure',
  'even_sure_either',
  'sure_either_wife',
  'either_wife_daughter',
  'wife_daughter_would',
  'daughter_would_make',
  'would_make_luckili',
  'make_luckili_surviv',
  'luckili_surviv_daughter',
  'surviv_daughter_still',
  'daughter_still_nicu',
  'still_nicu_week',
  'nicu_week_probabl',
  'week_probabl_anoth',
  'probabl_anoth_wife',
  'anoth_wife_still',
  'wife_still_hospit',
  'still_hospit_well',
  'hospit_well_horribl',
  'well_horribl_struggl',
  'horribl_struggl_wife',
  'struggl_wife_healthi',
  'wife_healthi_activ',
  'healthi_activ_person',
  'activ_person_even',
  'person_even_pregnanc',
  'even_pregnanc_abl',
  'pregnanc_abl_maintain',
  'abl_maintain_somewhat',
  'maintain_somewhat_activ',
  'somewhat_activ_lifestyl',
  'activ_lifestyl_trauma',
  'lifestyl_trauma_bodi',
  'trauma_bodi_went',
  'bodi_went_basic',
  'went_basic_start',
  'basic_start_back',
  'start_back_squar',
  'back_squar_one',
  'squar_one_even',
  'one_even_abl',
  'even_abl_hold',
  'abl_hold_daughter',
  'hold_daughter_yet',
  'daughter_yet_wife',
  'yet_wife_lot',
  'wife_lot_struggl',
  'lot_struggl_far',
  'struggl_far_birth',
  'far_birth_trauma',
  'birth_trauma_feel',
  'trauma_feel_confus',
  'feel_confus_hurt',
  'confus_hurt_experi',
  'hurt_experi_told',
  'experi_told_feel',
  'told_feel_betray',
  'feel_betray_bodi',
  'betray_bodi_even',
  'bodi_even_weakest',
  'even_weakest_moment',
  'weakest_moment_even',
  'moment_even_said',
  'even_said_regret',
  'said_regret_get',
  'regret_get_pregnant',
  'get_pregnant_entir',
  'pregnant_entir_much',
  'entir_much_suffer',
  'much_suffer_worri',
  'suffer_worri_shell',
  'worri_shell_never',
  'shell_never_person',
  'never_person_feel',
  'person_feel_horribl',
  'feel_horribl_feel',
  'horribl_feel_multipl',
  'feel_multipl_mental',
  'multipl_mental_health',
  'mental_health_profession',
  'health_profession_work',
  'profession_work_help',
  'work_help_support',
  'help_support_final',
  'support_final_reach',
  'final_reach_point',
  'reach_point_receiv',
  'point_receiv_visitor',
  'receiv_visitor_famili',
  'visitor_famili_live',
  'famili_live_close',
  'live_close_famili',
  'close_famili_live',
  'famili_live_state',
  'live_state_away',
  'state_away_await',
  'away_await_chanc',
  'await_chanc_meet',
  'chanc_meet_babi',
  'meet_babi_check',
  'babi_check_wife',
  'check_wife_parent',
  'wife_parent_grandpar',
  'parent_grandpar_flew',
  'grandpar_flew_warn',
  'flew_warn_famili',
  'warn_famili_beforehand',
  'famili_beforehand_wife',
  'beforehand_wife_daughter',
  'wife_daughter_still',
  'daughter_still_fragil',
  'still_fragil_stage',
  'fragil_stage_patient',
  'stage_patient_brought',
  'patient_brought_see',
  'brought_see_wife',
  'see_wife_grand',
  'wife_grand_mother',
  'grand_mother_immedi',
  'mother_immedi_went',
  'immedi_went_want',
  'went_want_talk',
  'want_talk_birth',
  'talk_birth_experi',
  'birth_experi_wife',
  'experi_wife_told',
  'wife_told_one',
  'told_one_worst',
  'one_worst_experi',
  'worst_experi_life',
  'experi_life_grandmoth',
  'life_grandmoth_respond',
  'grandmoth_respond_tell',
  'respond_tell_worst',
  'tell_worst_yet',
  'worst_yet_come',
  'yet_come_struggl',
  'come_struggl_mother',
  'struggl_mother_wife',
  'mother_wife_got',
  'wife_got_upset',
  'got_upset_comment',
  'upset_comment_start',
  'comment_start_scream',
  'start_scream_-',
  'scream_-_get',
  '-_get_never',
  'get_never_seen',
  'never_seen_wife',
  'seen_wife_like',
  'wife_like_could',
  'like_could_tell',
  'could_tell_feel',
  'tell_feel_extrem',
  'feel_extrem_stress',
  'extrem_stress_quickli',
  'stress_quickli_escort',
  'quickli_escort_famili',
  'escort_famili_told',
  'famili_told_would',
  'told_would_best',
  'would_best_left',
  'best_left_could',
  'left_could_talk',
  'could_talk_later',
  'talk_later_caus',
  'later_caus_even',
  'caus_even_stress',
  'even_stress_wife',
  'stress_wife_famili',
  'wife_famili_said',
  'famili_said_appal',
  'said_appal_wife',
  'appal_wife_behavior',
  'wife_behavior_defend',
  'behavior_defend_grandmoth',
  'defend_grandmoth_end',
  'grandmoth_end_day',
  'end_day_feel',
  'day_feel_respons',
  'feel_respons_wife',
  'respons_wife_advoc',
  'wife_advoc_time',
  'advoc_time_especi',
  'time_especi_becom',
  'especi_becom_bit',
  'becom_bit_tension',
  'bit_tension_extend',
  'tension_extend_side',
  'extend_side_famili',
  'side_famili_howev',
  'famili_howev_told',
  'howev_told_wife',
  'told_wife_want',
  'wife_want_stress',
  'want_stress_plan',
  'stress_plan_deal',
  'plan_deal_alon',
  'deal_alon_entir',
  'alon_entir_apolog',
  'entir_apolog_wife',
  'apolog_wife_behalf',
  'wife_behalf_ah',
  'behalf_ah_ill',
  'ah_ill_see',
  'ill_see_wife',
  'see_wife_ah'],
 ['im',
  'childfre',
  'two',
  'sister',
  'lisa',
  'anni',
  'lisa',
  'two',
  'boy',
  'anni',
  'struggl',
  'financi',
  'littl',
  'good',
  'job',
  'year',
  'offer',
  'take',
  'nephew',
  'vacat',
  'year',
  'niec',
  'small',
  'feel',
  'comfort',
  'alon',
  'anni',
  'total',
  'get',
  'told',
  'sister',
  'bring',
  'boy',
  'appart',
  'weekend',
  'see',
  'theyll',
  'get',
  'along',
  'im',
  'take',
  'seasid',
  'day',
  'boy',
  'came',
  'first',
  'great',
  'time',
  'order',
  'us',
  'pizza',
  'watch',
  'movi',
  'play',
  'soccer',
  'etc',
  'next',
  'morn',
  'woke',
  'gave',
  'cereal',
  'yro',
  'throw',
  'cereal',
  'floor',
  'say',
  'waffl',
  'weekend',
  'told',
  'cant',
  'waffl',
  'breakfast',
  'today',
  'make',
  'dinner',
  'breakfast',
  'next',
  'day',
  'said',
  'like',
  'cereal',
  'told',
  'toast',
  'peanut',
  'butter',
  'fruit',
  'yell',
  'make',
  'waffl',
  'day',
  'also',
  'cut',
  'shirt',
  'let',
  'cooki',
  'lunch',
  'told',
  'suck',
  'tell',
  'eat',
  'veggi',
  'give',
  'ice',
  'cream',
  'nightmar',
  'yro',
  'yro',
  'behav',
  'great',
  'sister',
  'came',
  'pick',
  'told',
  'anni',
  'happen',
  'said',
  'oh',
  'high',
  'spirit',
  'told',
  'im',
  'take',
  'vacat',
  'also',
  'told',
  'lisa',
  'id',
  'glad',
  'take',
  'boy',
  'super',
  'super',
  'excit',
  'parent',
  'aunt',
  'bite',
  'head',
  'treat',
  'kid',
  'differ',
  'deni',
  'boy',
  'go',
  'seasid',
  'misbehav',
  'aita',
  'im_childfre',
  'childfre_two',
  'two_sister',
  'sister_lisa',
  'lisa_anni',
  'anni_lisa',
  'lisa_two',
  'two_boy',
  'boy_anni',
  'anni_struggl',
  'struggl_financi',
  'financi_littl',
  'littl_good',
  'good_job',
  'job_year',
  'year_offer',
  'offer_take',
  'take_nephew',
  'nephew_vacat',
  'vacat_year',
  'year_niec',
  'niec_small',
  'small_feel',
  'feel_comfort',
  'comfort_alon',
  'alon_anni',
  'anni_total',
  'total_get',
  'get_told',
  'told_sister',
  'sister_bring',
  'bring_boy',
  'boy_appart',
  'appart_weekend',
  'weekend_see',
  'see_theyll',
  'theyll_get',
  'get_along',
  'along_im',
  'im_take',
  'take_seasid',
  'seasid_day',
  'day_boy',
  'boy_came',
  'came_first',
  'first_great',
  'great_time',
  'time_order',
  'order_us',
  'us_pizza',
  'pizza_watch',
  'watch_movi',
  'movi_play',
  'play_soccer',
  'soccer_etc',
  'etc_next',
  'next_morn',
  'morn_woke',
  'woke_gave',
  'gave_cereal',
  'cereal_yro',
  'yro_throw',
  'throw_cereal',
  'cereal_floor',
  'floor_say',
  'say_waffl',
  'waffl_weekend',
  'weekend_told',
  'told_cant',
  'cant_waffl',
  'waffl_breakfast',
  'breakfast_today',
  'today_make',
  'make_dinner',
  'dinner_breakfast',
  'breakfast_next',
  'next_day',
  'day_said',
  'said_like',
  'like_cereal',
  'cereal_told',
  'told_toast',
  'toast_peanut',
  'peanut_butter',
  'butter_fruit',
  'fruit_yell',
  'yell_make',
  'make_waffl',
  'waffl_day',
  'day_also',
  'also_cut',
  'cut_shirt',
  'shirt_let',
  'let_cooki',
  'cooki_lunch',
  'lunch_told',
  'told_suck',
  'suck_tell',
  'tell_eat',
  'eat_veggi',
  'veggi_give',
  'give_ice',
  'ice_cream',
  'cream_nightmar',
  'nightmar_yro',
  'yro_yro',
  'yro_behav',
  'behav_great',
  'great_sister',
  'sister_came',
  'came_pick',
  'pick_told',
  'told_anni',
  'anni_happen',
  'happen_said',
  'said_oh',
  'oh_high',
  'high_spirit',
  'spirit_told',
  'told_im',
  'im_take',
  'take_vacat',
  'vacat_also',
  'also_told',
  'told_lisa',
  'lisa_id',
  'id_glad',
  'glad_take',
  'take_boy',
  'boy_super',
  'super_super',
  'super_excit',
  'excit_parent',
  'parent_aunt',
  'aunt_bite',
  'bite_head',
  'head_treat',
  'treat_kid',
  'kid_differ',
  'differ_deni',
  'deni_boy',
  'boy_go',
  'go_seasid',
  'seasid_misbehav',
  'misbehav_aita',
  'im_childfre_two',
  'childfre_two_sister',
  'two_sister_lisa',
  'sister_lisa_anni',
  'lisa_anni_lisa',
  'anni_lisa_two',
  'lisa_two_boy',
  'two_boy_anni',
  'boy_anni_struggl',
  'anni_struggl_financi',
  'struggl_financi_littl',
  'financi_littl_good',
  'littl_good_job',
  'good_job_year',
  'job_year_offer',
  'year_offer_take',
  'offer_take_nephew',
  'take_nephew_vacat',
  'nephew_vacat_year',
  'vacat_year_niec',
  'year_niec_small',
  'niec_small_feel',
  'small_feel_comfort',
  'feel_comfort_alon',
  'comfort_alon_anni',
  'alon_anni_total',
  'anni_total_get',
  'total_get_told',
  'get_told_sister',
  'told_sister_bring',
  'sister_bring_boy',
  'bring_boy_appart',
  'boy_appart_weekend',
  'appart_weekend_see',
  'weekend_see_theyll',
  'see_theyll_get',
  'theyll_get_along',
  'get_along_im',
  'along_im_take',
  'im_take_seasid',
  'take_seasid_day',
  'seasid_day_boy',
  'day_boy_came',
  'boy_came_first',
  'came_first_great',
  'first_great_time',
  'great_time_order',
  'time_order_us',
  'order_us_pizza',
  'us_pizza_watch',
  'pizza_watch_movi',
  'watch_movi_play',
  'movi_play_soccer',
  'play_soccer_etc',
  'soccer_etc_next',
  'etc_next_morn',
  'next_morn_woke',
  'morn_woke_gave',
  'woke_gave_cereal',
  'gave_cereal_yro',
  'cereal_yro_throw',
  'yro_throw_cereal',
  'throw_cereal_floor',
  'cereal_floor_say',
  'floor_say_waffl',
  'say_waffl_weekend',
  'waffl_weekend_told',
  'weekend_told_cant',
  'told_cant_waffl',
  'cant_waffl_breakfast',
  'waffl_breakfast_today',
  'breakfast_today_make',
  'today_make_dinner',
  'make_dinner_breakfast',
  'dinner_breakfast_next',
  'breakfast_next_day',
  'next_day_said',
  'day_said_like',
  'said_like_cereal',
  'like_cereal_told',
  'cereal_told_toast',
  'told_toast_peanut',
  'toast_peanut_butter',
  'peanut_butter_fruit',
  'butter_fruit_yell',
  'fruit_yell_make',
  'yell_make_waffl',
  'make_waffl_day',
  'waffl_day_also',
  'day_also_cut',
  'also_cut_shirt',
  'cut_shirt_let',
  'shirt_let_cooki',
  'let_cooki_lunch',
  'cooki_lunch_told',
  'lunch_told_suck',
  'told_suck_tell',
  'suck_tell_eat',
  'tell_eat_veggi',
  'eat_veggi_give',
  'veggi_give_ice',
  'give_ice_cream',
  'ice_cream_nightmar',
  'cream_nightmar_yro',
  'nightmar_yro_yro',
  'yro_yro_behav',
  'yro_behav_great',
  'behav_great_sister',
  'great_sister_came',
  'sister_came_pick',
  'came_pick_told',
  'pick_told_anni',
  'told_anni_happen',
  'anni_happen_said',
  'happen_said_oh',
  'said_oh_high',
  'oh_high_spirit',
  'high_spirit_told',
  'spirit_told_im',
  'told_im_take',
  'im_take_vacat',
  'take_vacat_also',
  'vacat_also_told',
  'also_told_lisa',
  'told_lisa_id',
  'lisa_id_glad',
  'id_glad_take',
  'glad_take_boy',
  'take_boy_super',
  'boy_super_super',
  'super_super_excit',
  'super_excit_parent',
  'excit_parent_aunt',
  'parent_aunt_bite',
  'aunt_bite_head',
  'bite_head_treat',
  'head_treat_kid',
  'treat_kid_differ',
  'kid_differ_deni',
  'differ_deni_boy',
  'deni_boy_go',
  'boy_go_seasid',
  'go_seasid_misbehav',
  'seasid_misbehav_aita'],
 ['son',
  'former',
  'relationship',
  'ex',
  'husband',
  'current',
  'im',
  'marri',
  'husband',
  'joe',
  'year',
  'old',
  'son',
  'son',
  'close',
  'stepbroth',
  'mani',
  'reason',
  'includ',
  'age',
  'interest',
  'hobbi',
  'etc',
  'son',
  'like',
  'draw',
  'lot',
  'stepbroth',
  'tend',
  'rip',
  'draw',
  'whenev',
  'get',
  'fight',
  'sibl',
  'stepsibl',
  'fight',
  'constantli',
  'normal',
  'normal',
  'stepson',
  'touch',
  'ruin',
  'son',
  'draw',
  'take',
  'time',
  'effort',
  'sometimesemot',
  'stepson',
  'apolog',
  'everytim',
  'help',
  'boundari',
  'put',
  'place',
  'longer',
  'damag',
  'son',
  'draw',
  'got',
  'son',
  'lock',
  'joe',
  'complain',
  'creat',
  'distanc',
  'boy',
  'suggest',
  'let',
  'resolv',
  'son',
  'drew',
  'pictur',
  'joe',
  'show',
  'us',
  'joe',
  'got',
  'extrem',
  'piss',
  'saw',
  'start',
  'scold',
  'son',
  'includ',
  'stepbroth',
  'got',
  'involv',
  'told',
  'proceed',
  'rip',
  'pictur',
  'half',
  'smaller',
  'smaller',
  'piec',
  'son',
  'start',
  'cri',
  'snap',
  'yell',
  'joe',
  'ask',
  'wth',
  'wrong',
  'told',
  'son',
  'go',
  'upstair',
  'punish',
  'punish',
  'cancel',
  'til',
  'start',
  'includ',
  'stepbroth',
  'draw',
  'told',
  'stop',
  'told',
  'stay',
  'reason',
  'issu',
  'said',
  'made',
  'boy',
  'resent',
  'enabl',
  'son',
  'unjustifi',
  'hatr',
  'stepbroth',
  'set',
  'boundari',
  'kept',
  'air',
  'qout',
  'word',
  'set',
  'brother',
  'remind',
  'son',
  'done',
  'caus',
  'son',
  'exclud',
  'told',
  'none',
  'us',
  'even',
  'right',
  'demand',
  'includ',
  'anyth',
  'son',
  'draw',
  'thing',
  'get',
  'final',
  'say',
  'demand',
  'apolog',
  'son',
  'immedi',
  'joe',
  'sarcast',
  'clap',
  'said',
  'keep',
  'son',
  'grow',
  'anti-soci',
  'soft',
  'went',
  'upstair',
  'leav',
  'rant',
  'basic',
  'fault',
  'stay',
  'son',
  'til',
  'calm',
  'joe',
  'told',
  'expect',
  'apolog',
  'im',
  'treat',
  'parent',
  'undermin',
  'word',
  'son_former',
  'former_relationship',
  'relationship_ex',
  'ex_husband',
  'husband_current',
  'current_im',
  'im_marri',
  'marri_husband',
  'husband_joe',
  'joe_year',
  'year_old',
  'old_son',
  'son_son',
  'son_close',
  'close_stepbroth',
  'stepbroth_mani',
  'mani_reason',
  'reason_includ',
  'includ_age',
  'age_interest',
  'interest_hobbi',
  'hobbi_etc',
  'etc_son',
  'son_like',
  'like_draw',
  'draw_lot',
  'lot_stepbroth',
  'stepbroth_tend',
  'tend_rip',
  'rip_draw',
  'draw_whenev',
  'whenev_get',
  'get_fight',
  'fight_sibl',
  'sibl_stepsibl',
  'stepsibl_fight',
  'fight_constantli',
  'constantli_normal',
  'normal_normal',
  'normal_stepson',
  'stepson_touch',
  'touch_ruin',
  'ruin_son',
  'son_draw',
  'draw_take',
  'take_time',
  'time_effort',
  'effort_sometimesemot',
  'sometimesemot_stepson',
  'stepson_apolog',
  'apolog_everytim',
  'everytim_help',
  'help_boundari',
  'boundari_put',
  'put_place',
  'place_longer',
  'longer_damag',
  'damag_son',
  'son_draw',
  'draw_got',
  'got_son',
  'son_lock',
  'lock_joe',
  'joe_complain',
  'complain_creat',
  'creat_distanc',
  'distanc_boy',
  'boy_suggest',
  'suggest_let',
  'let_resolv',
  'resolv_son',
  'son_drew',
  'drew_pictur',
  'pictur_joe',
  'joe_show',
  'show_us',
  'us_joe',
  'joe_got',
  'got_extrem',
  'extrem_piss',
  'piss_saw',
  'saw_start',
  'start_scold',
  'scold_son',
  'son_includ',
  'includ_stepbroth',
  'stepbroth_got',
  'got_involv',
  'involv_told',
  'told_proceed',
  'proceed_rip',
  'rip_pictur',
  'pictur_half',
  'half_smaller',
  'smaller_smaller',
  'smaller_piec',
  'piec_son',
  'son_start',
  'start_cri',
  'cri_snap',
  'snap_yell',
  'yell_joe',
  'joe_ask',
  'ask_wth',
  'wth_wrong',
  'wrong_told',
  'told_son',
  'son_go',
  'go_upstair',
  'upstair_punish',
  'punish_punish',
  'punish_cancel',
  'cancel_til',
  'til_start',
  'start_includ',
  'includ_stepbroth',
  'stepbroth_draw',
  'draw_told',
  'told_stop',
  'stop_told',
  'told_stay',
  'stay_reason',
  'reason_issu',
  'issu_said',
  'said_made',
  'made_boy',
  'boy_resent',
  'resent_enabl',
  'enabl_son',
  'son_unjustifi',
  'unjustifi_hatr',
  'hatr_stepbroth',
  'stepbroth_set',
  'set_boundari',
  'boundari_kept',
  'kept_air',
  'air_qout',
  'qout_word',
  'word_set',
  'set_brother',
  'brother_remind',
  'remind_son',
  'son_done',
  'done_caus',
  'caus_son',
  'son_exclud',
  'exclud_told',
  'told_none',
  'none_us',
  'us_even',
  'even_right',
  'right_demand',
  'demand_includ',
  'includ_anyth',
  'anyth_son',
  'son_draw',
  'draw_thing',
  'thing_get',
  'get_final',
  'final_say',
  'say_demand',
  'demand_apolog',
  'apolog_son',
  'son_immedi',
  'immedi_joe',
  'joe_sarcast',
  'sarcast_clap',
  'clap_said',
  'said_keep',
  'keep_son',
  'son_grow',
  'grow_anti-soci',
  'anti-soci_soft',
  'soft_went',
  'went_upstair',
  'upstair_leav',
  'leav_rant',
  'rant_basic',
  'basic_fault',
  'fault_stay',
  'stay_son',
  'son_til',
  'til_calm',
  'calm_joe',
  'joe_told',
  'told_expect',
  'expect_apolog',
  'apolog_im',
  'im_treat',
  'treat_parent',
  'parent_undermin',
  'undermin_word',
  'son_former_relationship',
  'former_relationship_ex',
  'relationship_ex_husband',
  'ex_husband_current',
  'husband_current_im',
  'current_im_marri',
  'im_marri_husband',
  'marri_husband_joe',
  'husband_joe_year',
  'joe_year_old',
  'year_old_son',
  'old_son_son',
  'son_son_close',
  'son_close_stepbroth',
  'close_stepbroth_mani',
  'stepbroth_mani_reason',
  'mani_reason_includ',
  'reason_includ_age',
  'includ_age_interest',
  'age_interest_hobbi',
  'interest_hobbi_etc',
  'hobbi_etc_son',
  'etc_son_like',
  'son_like_draw',
  'like_draw_lot',
  'draw_lot_stepbroth',
  'lot_stepbroth_tend',
  'stepbroth_tend_rip',
  'tend_rip_draw',
  'rip_draw_whenev',
  'draw_whenev_get',
  'whenev_get_fight',
  'get_fight_sibl',
  'fight_sibl_stepsibl',
  'sibl_stepsibl_fight',
  'stepsibl_fight_constantli',
  'fight_constantli_normal',
  'constantli_normal_normal',
  'normal_normal_stepson',
  'normal_stepson_touch',
  'stepson_touch_ruin',
  'touch_ruin_son',
  'ruin_son_draw',
  'son_draw_take',
  'draw_take_time',
  'take_time_effort',
  'time_effort_sometimesemot',
  'effort_sometimesemot_stepson',
  'sometimesemot_stepson_apolog',
  'stepson_apolog_everytim',
  'apolog_everytim_help',
  'everytim_help_boundari',
  'help_boundari_put',
  'boundari_put_place',
  'put_place_longer',
  'place_longer_damag',
  'longer_damag_son',
  'damag_son_draw',
  'son_draw_got',
  'draw_got_son',
  'got_son_lock',
  'son_lock_joe',
  'lock_joe_complain',
  'joe_complain_creat',
  'complain_creat_distanc',
  'creat_distanc_boy',
  'distanc_boy_suggest',
  'boy_suggest_let',
  'suggest_let_resolv',
  'let_resolv_son',
  'resolv_son_drew',
  'son_drew_pictur',
  'drew_pictur_joe',
  'pictur_joe_show',
  'joe_show_us',
  'show_us_joe',
  'us_joe_got',
  'joe_got_extrem',
  'got_extrem_piss',
  'extrem_piss_saw',
  'piss_saw_start',
  'saw_start_scold',
  'start_scold_son',
  'scold_son_includ',
  'son_includ_stepbroth',
  'includ_stepbroth_got',
  'stepbroth_got_involv',
  'got_involv_told',
  'involv_told_proceed',
  'told_proceed_rip',
  'proceed_rip_pictur',
  'rip_pictur_half',
  'pictur_half_smaller',
  'half_smaller_smaller',
  'smaller_smaller_piec',
  'smaller_piec_son',
  'piec_son_start',
  'son_start_cri',
  'start_cri_snap',
  'cri_snap_yell',
  'snap_yell_joe',
  'yell_joe_ask',
  'joe_ask_wth',
  'ask_wth_wrong',
  'wth_wrong_told',
  'wrong_told_son',
  'told_son_go',
  'son_go_upstair',
  'go_upstair_punish',
  'upstair_punish_punish',
  'punish_punish_cancel',
  'punish_cancel_til',
  'cancel_til_start',
  'til_start_includ',
  'start_includ_stepbroth',
  'includ_stepbroth_draw',
  'stepbroth_draw_told',
  'draw_told_stop',
  'told_stop_told',
  'stop_told_stay',
  'told_stay_reason',
  'stay_reason_issu',
  'reason_issu_said',
  'issu_said_made',
  'said_made_boy',
  'made_boy_resent',
  'boy_resent_enabl',
  'resent_enabl_son',
  'enabl_son_unjustifi',
  'son_unjustifi_hatr',
  'unjustifi_hatr_stepbroth',
  'hatr_stepbroth_set',
  'stepbroth_set_boundari',
  'set_boundari_kept',
  'boundari_kept_air',
  'kept_air_qout',
  'air_qout_word',
  'qout_word_set',
  'word_set_brother',
  'set_brother_remind',
  'brother_remind_son',
  'remind_son_done',
  'son_done_caus',
  'done_caus_son',
  'caus_son_exclud',
  'son_exclud_told',
  'exclud_told_none',
  'told_none_us',
  'none_us_even',
  'us_even_right',
  'even_right_demand',
  'right_demand_includ',
  'demand_includ_anyth',
  'includ_anyth_son',
  'anyth_son_draw',
  'son_draw_thing',
  'draw_thing_get',
  'thing_get_final',
  'get_final_say',
  'final_say_demand',
  'say_demand_apolog',
  'demand_apolog_son',
  'apolog_son_immedi',
  'son_immedi_joe',
  'immedi_joe_sarcast',
  'joe_sarcast_clap',
  'sarcast_clap_said',
  'clap_said_keep',
  'said_keep_son',
  'keep_son_grow',
  'son_grow_anti-soci',
  'grow_anti-soci_soft',
  'anti-soci_soft_went',
  'soft_went_upstair',
  'went_upstair_leav',
  'upstair_leav_rant',
  'leav_rant_basic',
  'rant_basic_fault',
  'basic_fault_stay',
  'fault_stay_son',
  'stay_son_til',
  'son_til_calm',
  'til_calm_joe',
  'calm_joe_told',
  'joe_told_expect',
  'told_expect_apolog',
  'expect_apolog_im',
  'apolog_im_treat',
  'im_treat_parent',
  'treat_parent_undermin',
  'parent_undermin_word'],
 ['hello',
  'togeth',
  'husband',
  'austin',
  'year',
  'marri',
  'divorc',
  'ex',
  'wife',
  'kid',
  'eversinc',
  'becam',
  'pregnant',
  'complat',
  '°',
  'becam',
  'obsess',
  'constantli',
  'watch',
  'everi',
  'move',
  'breath',
  'neck',
  'even',
  'hung',
  'photo',
  'sonogram',
  'also',
  'came',
  'list',
  'im',
  'allow',
  'allow',
  'like',
  'drive',
  'eat',
  'certain',
  'food',
  'work',
  'stood',
  'ground',
  'continu',
  'work',
  'also',
  'wear',
  'high',
  'heel',
  'watch',
  'certain',
  'show',
  'see',
  'famili',
  'unless',
  'percaus',
  'taken',
  'exhaust',
  'alreadi',
  'made',
  'wors',
  'yesterday',
  'woke',
  'said',
  'go',
  'doctor',
  'ask',
  'sinc',
  'feel',
  'sick',
  'said',
  'hunch',
  'skip',
  'work',
  'go',
  'appoint',
  'make',
  'sure',
  'felt',
  'someth',
  'wrong',
  'said',
  'went',
  'call',
  'boss',
  'took',
  'day',
  'speechless',
  'decid',
  'go',
  'get',
  'got',
  'kept',
  'scold',
  'thing',
  'night',
  'mightv',
  'caus',
  'problem-',
  'liter',
  'problem',
  'doctor',
  'told',
  'us',
  'ask',
  'check',
  'ask',
  'check',
  'againi',
  'take',
  'ask',
  'got',
  'took',
  'bag',
  'walk',
  'left',
  'argu',
  'doc',
  'got',
  'car',
  'went',
  'home',
  'immedi',
  'kept',
  'call',
  'came',
  'home',
  'start',
  'yell',
  'leav',
  'middl',
  'examin',
  'leav',
  'clinic',
  'blew',
  'upand',
  'told',
  'stand',
  'obsess',
  'anymor',
  'paranoia',
  'made',
  'feel',
  'paranoid',
  'begin',
  'affect',
  'social',
  'life',
  'mental',
  'physic',
  'health',
  'livelihood',
  'look',
  'said',
  'hurt',
  'said',
  'tri',
  'make',
  'sure',
  'babi',
  'fine',
  'aggress',
  'irrespons',
  'toward',
  'babi',
  'entir',
  'time',
  'said',
  'act',
  'like',
  'neglect',
  'mother',
  'babi',
  'even',
  'yet',
  'left',
  'turn',
  'phone',
  'morn',
  'act',
  'distant',
  'expect',
  'sort',
  'apolog',
  'aita',
  'overreact',
  'hello_togeth',
  'togeth_husband',
  'husband_austin',
  'austin_year',
  'year_marri',
  'marri_divorc',
  'divorc_ex',
  'ex_wife',
  'wife_kid',
  'kid_eversinc',
  'eversinc_becam',
  'becam_pregnant',
  'pregnant_complat',
  'complat_°',
  '°_becam',
  'becam_obsess',
  'obsess_constantli',
  'constantli_watch',
  'watch_everi',
  'everi_move',
  'move_breath',
  'breath_neck',
  'neck_even',
  'even_hung',
  'hung_photo',
  'photo_sonogram',
  'sonogram_also',
  'also_came',
  'came_list',
  'list_im',
  'im_allow',
  'allow_allow',
  'allow_like',
  'like_drive',
  'drive_eat',
  'eat_certain',
  'certain_food',
  'food_work',
  'work_stood',
  'stood_ground',
  'ground_continu',
  'continu_work',
  'work_also',
  'also_wear',
  'wear_high',
  'high_heel',
  'heel_watch',
  'watch_certain',
  'certain_show',
  'show_see',
  'see_famili',
  'famili_unless',
  'unless_percaus',
  'percaus_taken',
  'taken_exhaust',
  'exhaust_alreadi',
  'alreadi_made',
  'made_wors',
  'wors_yesterday',
  'yesterday_woke',
  'woke_said',
  'said_go',
  'go_doctor',
  'doctor_ask',
  'ask_sinc',
  'sinc_feel',
  'feel_sick',
  'sick_said',
  'said_hunch',
  'hunch_skip',
  'skip_work',
  'work_go',
  'go_appoint',
  'appoint_make',
  'make_sure',
  'sure_felt',
  'felt_someth',
  'someth_wrong',
  'wrong_said',
  'said_went',
  'went_call',
  'call_boss',
  'boss_took',
  'took_day',
  'day_speechless',
  'speechless_decid',
  'decid_go',
  'go_get',
  'get_got',
  'got_kept',
  'kept_scold',
  'scold_thing',
  'thing_night',
  'night_mightv',
  'mightv_caus',
  'caus_problem-',
  'problem-_liter',
  'liter_problem',
  'problem_doctor',
  'doctor_told',
  'told_us',
  'us_ask',
  'ask_check',
  'check_ask',
  'ask_check',
  'check_againi',
  'againi_take',
  'take_ask',
  'ask_got',
  'got_took',
  'took_bag',
  'bag_walk',
  'walk_left',
  'left_argu',
  'argu_doc',
  'doc_got',
  'got_car',
  'car_went',
  'went_home',
  'home_immedi',
  'immedi_kept',
  'kept_call',
  'call_came',
  'came_home',
  'home_start',
  'start_yell',
  'yell_leav',
  'leav_middl',
  'middl_examin',
  'examin_leav',
  'leav_clinic',
  'clinic_blew',
  'blew_upand',
  'upand_told',
  'told_stand',
  'stand_obsess',
  'obsess_anymor',
  'anymor_paranoia',
  'paranoia_made',
  'made_feel',
  'feel_paranoid',
  'paranoid_begin',
  'begin_affect',
  'affect_social',
  'social_life',
  'life_mental',
  'mental_physic',
  'physic_health',
  'health_livelihood',
  'livelihood_look',
  'look_said',
  'said_hurt',
  'hurt_said',
  'said_tri',
  'tri_make',
  'make_sure',
  'sure_babi',
  'babi_fine',
  'fine_aggress',
  'aggress_irrespons',
  'irrespons_toward',
  'toward_babi',
  'babi_entir',
  'entir_time',
  'time_said',
  'said_act',
  'act_like',
  'like_neglect',
  'neglect_mother',
  'mother_babi',
  'babi_even',
  'even_yet',
  'yet_left',
  'left_turn',
  'turn_phone',
  'phone_morn',
  'morn_act',
  'act_distant',
  'distant_expect',
  'expect_sort',
  'sort_apolog',
  'apolog_aita',
  'aita_overreact',
  'hello_togeth_husband',
  'togeth_husband_austin',
  'husband_austin_year',
  'austin_year_marri',
  'year_marri_divorc',
  'marri_divorc_ex',
  'divorc_ex_wife',
  'ex_wife_kid',
  'wife_kid_eversinc',
  'kid_eversinc_becam',
  'eversinc_becam_pregnant',
  'becam_pregnant_complat',
  'pregnant_complat_°',
  'complat_°_becam',
  '°_becam_obsess',
  'becam_obsess_constantli',
  'obsess_constantli_watch',
  'constantli_watch_everi',
  'watch_everi_move',
  'everi_move_breath',
  'move_breath_neck',
  'breath_neck_even',
  'neck_even_hung',
  'even_hung_photo',
  'hung_photo_sonogram',
  'photo_sonogram_also',
  'sonogram_also_came',
  'also_came_list',
  'came_list_im',
  'list_im_allow',
  'im_allow_allow',
  'allow_allow_like',
  'allow_like_drive',
  'like_drive_eat',
  'drive_eat_certain',
  'eat_certain_food',
  'certain_food_work',
  'food_work_stood',
  'work_stood_ground',
  'stood_ground_continu',
  'ground_continu_work',
  'continu_work_also',
  'work_also_wear',
  'also_wear_high',
  'wear_high_heel',
  'high_heel_watch',
  'heel_watch_certain',
  'watch_certain_show',
  'certain_show_see',
  'show_see_famili',
  'see_famili_unless',
  'famili_unless_percaus',
  'unless_percaus_taken',
  'percaus_taken_exhaust',
  'taken_exhaust_alreadi',
  'exhaust_alreadi_made',
  'alreadi_made_wors',
  'made_wors_yesterday',
  'wors_yesterday_woke',
  'yesterday_woke_said',
  'woke_said_go',
  'said_go_doctor',
  'go_doctor_ask',
  'doctor_ask_sinc',
  'ask_sinc_feel',
  'sinc_feel_sick',
  'feel_sick_said',
  'sick_said_hunch',
  'said_hunch_skip',
  'hunch_skip_work',
  'skip_work_go',
  'work_go_appoint',
  'go_appoint_make',
  'appoint_make_sure',
  'make_sure_felt',
  'sure_felt_someth',
  'felt_someth_wrong',
  'someth_wrong_said',
  'wrong_said_went',
  'said_went_call',
  'went_call_boss',
  'call_boss_took',
  'boss_took_day',
  'took_day_speechless',
  'day_speechless_decid',
  'speechless_decid_go',
  'decid_go_get',
  'go_get_got',
  'get_got_kept',
  'got_kept_scold',
  'kept_scold_thing',
  'scold_thing_night',
  'thing_night_mightv',
  'night_mightv_caus',
  'mightv_caus_problem-',
  'caus_problem-_liter',
  'problem-_liter_problem',
  'liter_problem_doctor',
  'problem_doctor_told',
  'doctor_told_us',
  'told_us_ask',
  'us_ask_check',
  'ask_check_ask',
  'check_ask_check',
  'ask_check_againi',
  'check_againi_take',
  'againi_take_ask',
  'take_ask_got',
  'ask_got_took',
  'got_took_bag',
  'took_bag_walk',
  'bag_walk_left',
  'walk_left_argu',
  'left_argu_doc',
  'argu_doc_got',
  'doc_got_car',
  'got_car_went',
  'car_went_home',
  'went_home_immedi',
  'home_immedi_kept',
  'immedi_kept_call',
  'kept_call_came',
  'call_came_home',
  'came_home_start',
  'home_start_yell',
  'start_yell_leav',
  'yell_leav_middl',
  'leav_middl_examin',
  'middl_examin_leav',
  'examin_leav_clinic',
  'leav_clinic_blew',
  'clinic_blew_upand',
  'blew_upand_told',
  'upand_told_stand',
  'told_stand_obsess',
  'stand_obsess_anymor',
  'obsess_anymor_paranoia',
  'anymor_paranoia_made',
  'paranoia_made_feel',
  'made_feel_paranoid',
  'feel_paranoid_begin',
  'paranoid_begin_affect',
  'begin_affect_social',
  'affect_social_life',
  'social_life_mental',
  'life_mental_physic',
  'mental_physic_health',
  'physic_health_livelihood',
  'health_livelihood_look',
  'livelihood_look_said',
  'look_said_hurt',
  'said_hurt_said',
  'hurt_said_tri',
  'said_tri_make',
  'tri_make_sure',
  'make_sure_babi',
  'sure_babi_fine',
  'babi_fine_aggress',
  'fine_aggress_irrespons',
  'aggress_irrespons_toward',
  'irrespons_toward_babi',
  'toward_babi_entir',
  'babi_entir_time',
  'entir_time_said',
  'time_said_act',
  'said_act_like',
  'act_like_neglect',
  'like_neglect_mother',
  'neglect_mother_babi',
  'mother_babi_even',
  'babi_even_yet',
  'even_yet_left',
  'yet_left_turn',
  'left_turn_phone',
  'turn_phone_morn',
  'phone_morn_act',
  'morn_act_distant',
  'act_distant_expect',
  'distant_expect_sort',
  'expect_sort_apolog',
  'sort_apolog_aita',
  'apolog_aita_overreact'],
 ['husband',
  'best',
  'friend',
  'femal',
  'got',
  'news',
  'dog',
  'cancer',
  'day',
  'ago',
  'husband',
  'would',
  'call',
  'everyday',
  'til',
  'yesterday',
  'visit',
  'open',
  'door',
  'greet',
  'led',
  'live',
  'room',
  'went',
  'kitchen',
  'get',
  'class',
  'water',
  'husband',
  'ask',
  'came',
  'back',
  'find',
  'live',
  'room',
  'turn',
  'went',
  'guest',
  'room',
  'door',
  'shut',
  'heard',
  'weepingsob',
  'sound',
  'come',
  'insid',
  'knock',
  'got',
  'found',
  'embrac',
  'cri',
  'stood',
  'door',
  'husband',
  'paus',
  'told',
  'give',
  'moment',
  'got',
  'ta',
  'say',
  'feel',
  'comfort',
  'request',
  'remain',
  'stand',
  'got',
  'start',
  'repeatedli',
  'tell',
  'get',
  'told',
  'hous',
  'cant',
  'tell',
  'stay',
  'got',
  'angri',
  'told',
  'get',
  'well',
  'talk',
  'later',
  'refus',
  'ask',
  'wrong',
  'see',
  'tens',
  'situat',
  'give',
  'privaci',
  'told',
  'need',
  'shut',
  'door',
  'reason',
  'nomatt',
  'argu',
  'end',
  'leav',
  'blew',
  'afterward',
  'call',
  'unbeliev',
  'say',
  'respect',
  'friend',
  'go',
  'thtough',
  'hard',
  'time',
  'refus',
  'give',
  'privaci',
  'told',
  'weird',
  'shut',
  'door',
  'becsus',
  'cri',
  'told',
  'petti',
  'overbear',
  'act',
  'like',
  'infront',
  'stop',
  'show',
  'proper',
  'support',
  'complet',
  'gone',
  'radio',
  'silent',
  'act',
  'like',
  'kick',
  'treat',
  'poorli',
  'context',
  'age',
  'involv',
  'femal',
  'femal',
  'male',
  'best',
  'friendsist',
  'like',
  '+',
  'year',
  'tend',
  'emot',
  'highli',
  'sensit',
  'get',
  'along',
  'tend',
  'boundari',
  'stomper',
  'doessay',
  'thing',
  'make',
  'feel',
  'like',
  'know',
  'husband',
  'much',
  'also',
  'compar',
  'us',
  'well',
  'initi',
  'want',
  'come',
  'hous',
  'husband',
  'call',
  'told',
  'come',
  'sinc',
  'see',
  'news',
  'receiv',
  'til',
  'yesterday',
  'husband_best',
  'best_friend',
  'friend_femal',
  'femal_got',
  'got_news',
  'news_dog',
  'dog_cancer',
  'cancer_day',
  'day_ago',
  'ago_husband',
  'husband_would',
  'would_call',
  'call_everyday',
  'everyday_til',
  'til_yesterday',
  'yesterday_visit',
  'visit_open',
  'open_door',
  'door_greet',
  'greet_led',
  'led_live',
  'live_room',
  'room_went',
  'went_kitchen',
  'kitchen_get',
  'get_class',
  'class_water',
  'water_husband',
  'husband_ask',
  'ask_came',
  'came_back',
  'back_find',
  'find_live',
  'live_room',
  'room_turn',
  'turn_went',
  'went_guest',
  'guest_room',
  'room_door',
  'door_shut',
  'shut_heard',
  'heard_weepingsob',
  'weepingsob_sound',
  'sound_come',
  'come_insid',
  'insid_knock',
  'knock_got',
  'got_found',
  'found_embrac',
  'embrac_cri',
  'cri_stood',
  'stood_door',
  'door_husband',
  'husband_paus',
  'paus_told',
  'told_give',
  'give_moment',
  'moment_got',
  'got_ta',
  'ta_say',
  'say_feel',
  'feel_comfort',
  'comfort_request',
  'request_remain',
  'remain_stand',
  'stand_got',
  'got_start',
  'start_repeatedli',
  'repeatedli_tell',
  'tell_get',
  'get_told',
  'told_hous',
  'hous_cant',
  'cant_tell',
  'tell_stay',
  'stay_got',
  'got_angri',
  'angri_told',
  'told_get',
  'get_well',
  'well_talk',
  'talk_later',
  'later_refus',
  'refus_ask',
  'ask_wrong',
  'wrong_see',
  'see_tens',
  'tens_situat',
  'situat_give',
  'give_privaci',
  'privaci_told',
  'told_need',
  'need_shut',
  'shut_door',
  'door_reason',
  'reason_nomatt',
  'nomatt_argu',
  'argu_end',
  'end_leav',
  'leav_blew',
  'blew_afterward',
  'afterward_call',
  'call_unbeliev',
  'unbeliev_say',
  'say_respect',
  'respect_friend',
  'friend_go',
  'go_thtough',
  'thtough_hard',
  'hard_time',
  'time_refus',
  'refus_give',
  'give_privaci',
  'privaci_told',
  'told_weird',
  'weird_shut',
  'shut_door',
  'door_becsus',
  'becsus_cri',
  'cri_told',
  'told_petti',
  'petti_overbear',
  'overbear_act',
  'act_like',
  'like_infront',
  'infront_stop',
  'stop_show',
  'show_proper',
  'proper_support',
  'support_complet',
  'complet_gone',
  'gone_radio',
  'radio_silent',
  'silent_act',
  'act_like',
  'like_kick',
  'kick_treat',
  'treat_poorli',
  'poorli_context',
  'context_age',
  'age_involv',
  'involv_femal',
  'femal_femal',
  'femal_male',
  'male_best',
  'best_friendsist',
  'friendsist_like',
  'like_+',
  '+_year',
  'year_tend',
  'tend_emot',
  'emot_highli',
  'highli_sensit',
  'sensit_get',
  'get_along',
  'along_tend',
  'tend_boundari',
  'boundari_stomper',
  'stomper_doessay',
  'doessay_thing',
  'thing_make',
  'make_feel',
  'feel_like',
  'like_know',
  'know_husband',
  'husband_much',
  'much_also',
  'also_compar',
  'compar_us',
  'us_well',
  'well_initi',
  'initi_want',
  'want_come',
  'come_hous',
  'hous_husband',
  'husband_call',
  'call_told',
  'told_come',
  'come_sinc',
  'sinc_see',
  'see_news',
  'news_receiv',
  'receiv_til',
  'til_yesterday',
  'husband_best_friend',
  'best_friend_femal',
  'friend_femal_got',
  'femal_got_news',
  'got_news_dog',
  'news_dog_cancer',
  'dog_cancer_day',
  'cancer_day_ago',
  'day_ago_husband',
  'ago_husband_would',
  'husband_would_call',
  'would_call_everyday',
  'call_everyday_til',
  'everyday_til_yesterday',
  'til_yesterday_visit',
  'yesterday_visit_open',
  'visit_open_door',
  'open_door_greet',
  'door_greet_led',
  'greet_led_live',
  'led_live_room',
  'live_room_went',
  'room_went_kitchen',
  'went_kitchen_get',
  'kitchen_get_class',
  'get_class_water',
  'class_water_husband',
  'water_husband_ask',
  'husband_ask_came',
  'ask_came_back',
  'came_back_find',
  'back_find_live',
  'find_live_room',
  'live_room_turn',
  'room_turn_went',
  'turn_went_guest',
  'went_guest_room',
  'guest_room_door',
  'room_door_shut',
  'door_shut_heard',
  'shut_heard_weepingsob',
  'heard_weepingsob_sound',
  'weepingsob_sound_come',
  'sound_come_insid',
  'come_insid_knock',
  'insid_knock_got',
  'knock_got_found',
  'got_found_embrac',
  'found_embrac_cri',
  'embrac_cri_stood',
  'cri_stood_door',
  'stood_door_husband',
  'door_husband_paus',
  'husband_paus_told',
  'paus_told_give',
  'told_give_moment',
  'give_moment_got',
  'moment_got_ta',
  'got_ta_say',
  'ta_say_feel',
  'say_feel_comfort',
  'feel_comfort_request',
  'comfort_request_remain',
  'request_remain_stand',
  'remain_stand_got',
  'stand_got_start',
  'got_start_repeatedli',
  'start_repeatedli_tell',
  'repeatedli_tell_get',
  'tell_get_told',
  'get_told_hous',
  'told_hous_cant',
  'hous_cant_tell',
  'cant_tell_stay',
  'tell_stay_got',
  'stay_got_angri',
  'got_angri_told',
  'angri_told_get',
  'told_get_well',
  'get_well_talk',
  'well_talk_later',
  'talk_later_refus',
  'later_refus_ask',
  'refus_ask_wrong',
  'ask_wrong_see',
  'wrong_see_tens',
  'see_tens_situat',
  'tens_situat_give',
  'situat_give_privaci',
  'give_privaci_told',
  'privaci_told_need',
  'told_need_shut',
  'need_shut_door',
  'shut_door_reason',
  'door_reason_nomatt',
  'reason_nomatt_argu',
  'nomatt_argu_end',
  'argu_end_leav',
  'end_leav_blew',
  'leav_blew_afterward',
  'blew_afterward_call',
  'afterward_call_unbeliev',
  'call_unbeliev_say',
  'unbeliev_say_respect',
  'say_respect_friend',
  'respect_friend_go',
  'friend_go_thtough',
  'go_thtough_hard',
  'thtough_hard_time',
  'hard_time_refus',
  'time_refus_give',
  'refus_give_privaci',
  'give_privaci_told',
  'privaci_told_weird',
  'told_weird_shut',
  'weird_shut_door',
  'shut_door_becsus',
  'door_becsus_cri',
  'becsus_cri_told',
  'cri_told_petti',
  'told_petti_overbear',
  'petti_overbear_act',
  'overbear_act_like',
  'act_like_infront',
  'like_infront_stop',
  'infront_stop_show',
  'stop_show_proper',
  'show_proper_support',
  'proper_support_complet',
  'support_complet_gone',
  'complet_gone_radio',
  'gone_radio_silent',
  'radio_silent_act',
  'silent_act_like',
  'act_like_kick',
  'like_kick_treat',
  'kick_treat_poorli',
  'treat_poorli_context',
  'poorli_context_age',
  'context_age_involv',
  'age_involv_femal',
  'involv_femal_femal',
  'femal_femal_male',
  'femal_male_best',
  'male_best_friendsist',
  'best_friendsist_like',
  'friendsist_like_+',
  'like_+_year',
  '+_year_tend',
  'year_tend_emot',
  'tend_emot_highli',
  'emot_highli_sensit',
  'highli_sensit_get',
  'sensit_get_along',
  'get_along_tend',
  'along_tend_boundari',
  'tend_boundari_stomper',
  'boundari_stomper_doessay',
  'stomper_doessay_thing',
  'doessay_thing_make',
  'thing_make_feel',
  'make_feel_like',
  'feel_like_know',
  'like_know_husband',
  'know_husband_much',
  'husband_much_also',
  'much_also_compar',
  'also_compar_us',
  'compar_us_well',
  'us_well_initi',
  'well_initi_want',
  'initi_want_come',
  'want_come_hous',
  'come_hous_husband',
  'hous_husband_call',
  'husband_call_told',
  'call_told_come',
  'told_come_sinc',
  'come_sinc_see',
  'sinc_see_news',
  'see_news_receiv',
  'news_receiv_til',
  'receiv_til_yesterday'],
 ['mil',
  'close',
  'relstionship',
  'civil',
  'toward',
  'bit',
  'passiv',
  'aggress',
  'time',
  'tend',
  'disagre',
  'often',
  'time',
  'live',
  'differ',
  'state',
  'fil',
  'pass',
  'away',
  'suddenli',
  'mil',
  'told',
  'husband',
  'come',
  'attend',
  'funer',
  'book',
  'ticket',
  'fli',
  'state',
  'issu',
  'start',
  'husband',
  'told',
  'sit',
  'togeth',
  'plane',
  'mom',
  'book',
  'first',
  'class',
  'ticket',
  'got',
  'ecconomi',
  'flabbergast',
  'tri',
  'ask',
  'urg',
  'suck',
  'well',
  'talk',
  'later',
  'moment',
  'particular',
  'moment',
  'felt',
  'much',
  'humili',
  'contempt',
  'felt',
  'like',
  'treat',
  'less',
  'even',
  'hard',
  'time',
  'decid',
  'go',
  'go',
  'back',
  'home',
  'husband',
  'shock',
  'decis',
  'go',
  'home',
  'tri',
  'convinc',
  'go',
  'declin',
  'went',
  'alon',
  'end',
  'miss',
  'funer',
  'livid',
  'call',
  'text',
  'nasti',
  'thing',
  'call',
  'petti',
  'spoil',
  'said',
  'grate',
  'mom',
  'paid',
  'ticket',
  'begin',
  'said',
  'owe',
  'goddamn',
  'thing',
  'argu',
  'couldv',
  'book',
  'us',
  'economi',
  'money',
  'issu',
  'call',
  'pathet',
  'think',
  'dad',
  'die',
  'said',
  'cruel',
  'mom',
  'famili',
  'never',
  'forget',
  'miss',
  'funer',
  'ridicul',
  'reason',
  'aita',
  'go',
  'home',
  'eta',
  'one',
  'reason',
  'settl',
  'ecconomi',
  'ticket',
  'want',
  'sit',
  'next',
  'husband',
  'support',
  'sob',
  'whole',
  'ride',
  'airport',
  'want',
  'leav',
  'side',
  'shock',
  'told',
  'sit',
  'togeth',
  'said',
  'like',
  'issu',
  'mil_close',
  'close_relstionship',
  'relstionship_civil',
  'civil_toward',
  'toward_bit',
  'bit_passiv',
  'passiv_aggress',
  'aggress_time',
  'time_tend',
  'tend_disagre',
  'disagre_often',
  'often_time',
  'time_live',
  'live_differ',
  'differ_state',
  'state_fil',
  'fil_pass',
  'pass_away',
  'away_suddenli',
  'suddenli_mil',
  'mil_told',
  'told_husband',
  'husband_come',
  'come_attend',
  'attend_funer',
  'funer_book',
  'book_ticket',
  'ticket_fli',
  'fli_state',
  'state_issu',
  'issu_start',
  'start_husband',
  'husband_told',
  'told_sit',
  'sit_togeth',
  'togeth_plane',
  'plane_mom',
  'mom_book',
  'book_first',
  'first_class',
  'class_ticket',
  'ticket_got',
  'got_ecconomi',
  'ecconomi_flabbergast',
  'flabbergast_tri',
  'tri_ask',
  'ask_urg',
  'urg_suck',
  'suck_well',
  'well_talk',
  'talk_later',
  'later_moment',
  'moment_particular',
  'particular_moment',
  'moment_felt',
  'felt_much',
  'much_humili',
  'humili_contempt',
  'contempt_felt',
  'felt_like',
  'like_treat',
  'treat_less',
  'less_even',
  'even_hard',
  'hard_time',
  'time_decid',
  'decid_go',
  'go_go',
  'go_back',
  'back_home',
  'home_husband',
  'husband_shock',
  'shock_decis',
  'decis_go',
  'go_home',
  'home_tri',
  'tri_convinc',
  'convinc_go',
  'go_declin',
  'declin_went',
  'went_alon',
  'alon_end',
  'end_miss',
  'miss_funer',
  'funer_livid',
  'livid_call',
  'call_text',
  'text_nasti',
  'nasti_thing',
  'thing_call',
  'call_petti',
  'petti_spoil',
  'spoil_said',
  'said_grate',
  'grate_mom',
  'mom_paid',
  'paid_ticket',
  'ticket_begin',
  'begin_said',
  'said_owe',
  'owe_goddamn',
  'goddamn_thing',
  'thing_argu',
  'argu_couldv',
  'couldv_book',
  'book_us',
  'us_economi',
  'economi_money',
  'money_issu',
  'issu_call',
  'call_pathet',
  'pathet_think',
  'think_dad',
  'dad_die',
  'die_said',
  'said_cruel',
  'cruel_mom',
  'mom_famili',
  'famili_never',
  'never_forget',
  'forget_miss',
  'miss_funer',
  'funer_ridicul',
  'ridicul_reason',
  'reason_aita',
  'aita_go',
  'go_home',
  'home_eta',
  'eta_one',
  'one_reason',
  'reason_settl',
  'settl_ecconomi',
  'ecconomi_ticket',
  'ticket_want',
  'want_sit',
  'sit_next',
  'next_husband',
  'husband_support',
  'support_sob',
  'sob_whole',
  'whole_ride',
  'ride_airport',
  'airport_want',
  'want_leav',
  'leav_side',
  'side_shock',
  'shock_told',
  'told_sit',
  'sit_togeth',
  'togeth_said',
  'said_like',
  'like_issu',
  'mil_close_relstionship',
  'close_relstionship_civil',
  'relstionship_civil_toward',
  'civil_toward_bit',
  'toward_bit_passiv',
  'bit_passiv_aggress',
  'passiv_aggress_time',
  'aggress_time_tend',
  'time_tend_disagre',
  'tend_disagre_often',
  'disagre_often_time',
  'often_time_live',
  'time_live_differ',
  'live_differ_state',
  'differ_state_fil',
  'state_fil_pass',
  'fil_pass_away',
  'pass_away_suddenli',
  'away_suddenli_mil',
  'suddenli_mil_told',
  'mil_told_husband',
  'told_husband_come',
  'husband_come_attend',
  'come_attend_funer',
  'attend_funer_book',
  'funer_book_ticket',
  'book_ticket_fli',
  'ticket_fli_state',
  'fli_state_issu',
  'state_issu_start',
  'issu_start_husband',
  'start_husband_told',
  'husband_told_sit',
  'told_sit_togeth',
  'sit_togeth_plane',
  'togeth_plane_mom',
  'plane_mom_book',
  'mom_book_first',
  'book_first_class',
  'first_class_ticket',
  'class_ticket_got',
  'ticket_got_ecconomi',
  'got_ecconomi_flabbergast',
  'ecconomi_flabbergast_tri',
  'flabbergast_tri_ask',
  'tri_ask_urg',
  'ask_urg_suck',
  'urg_suck_well',
  'suck_well_talk',
  'well_talk_later',
  'talk_later_moment',
  'later_moment_particular',
  'moment_particular_moment',
  'particular_moment_felt',
  'moment_felt_much',
  'felt_much_humili',
  'much_humili_contempt',
  'humili_contempt_felt',
  'contempt_felt_like',
  'felt_like_treat',
  'like_treat_less',
  'treat_less_even',
  'less_even_hard',
  'even_hard_time',
  'hard_time_decid',
  'time_decid_go',
  'decid_go_go',
  'go_go_back',
  'go_back_home',
  'back_home_husband',
  'home_husband_shock',
  'husband_shock_decis',
  'shock_decis_go',
  'decis_go_home',
  'go_home_tri',
  'home_tri_convinc',
  'tri_convinc_go',
  'convinc_go_declin',
  'go_declin_went',
  'declin_went_alon',
  'went_alon_end',
  'alon_end_miss',
  'end_miss_funer',
  'miss_funer_livid',
  'funer_livid_call',
  'livid_call_text',
  'call_text_nasti',
  'text_nasti_thing',
  'nasti_thing_call',
  'thing_call_petti',
  'call_petti_spoil',
  'petti_spoil_said',
  'spoil_said_grate',
  'said_grate_mom',
  'grate_mom_paid',
  'mom_paid_ticket',
  'paid_ticket_begin',
  'ticket_begin_said',
  'begin_said_owe',
  'said_owe_goddamn',
  'owe_goddamn_thing',
  'goddamn_thing_argu',
  'thing_argu_couldv',
  'argu_couldv_book',
  'couldv_book_us',
  'book_us_economi',
  'us_economi_money',
  'economi_money_issu',
  'money_issu_call',
  'issu_call_pathet',
  'call_pathet_think',
  'pathet_think_dad',
  'think_dad_die',
  'dad_die_said',
  'die_said_cruel',
  'said_cruel_mom',
  'cruel_mom_famili',
  'mom_famili_never',
  'famili_never_forget',
  'never_forget_miss',
  'forget_miss_funer',
  'miss_funer_ridicul',
  'funer_ridicul_reason',
  'ridicul_reason_aita',
  'reason_aita_go',
  'aita_go_home',
  'go_home_eta',
  'home_eta_one',
  'eta_one_reason',
  'one_reason_settl',
  'reason_settl_ecconomi',
  'settl_ecconomi_ticket',
  'ecconomi_ticket_want',
  'ticket_want_sit',
  'want_sit_next',
  'sit_next_husband',
  'next_husband_support',
  'husband_support_sob',
  'support_sob_whole',
  'sob_whole_ride',
  'whole_ride_airport',
  'ride_airport_want',
  'airport_want_leav',
  'want_leav_side',
  'leav_side_shock',
  'side_shock_told',
  'shock_told_sit',
  'told_sit_togeth',
  'sit_togeth_said',
  'togeth_said_like',
  'said_like_issu'],
 ['boyfriend',
  'month',
  'kid',
  'singl',
  'dad',
  'pretti',
  'good',
  'term',
  'regard',
  'almost',
  'everyth',
  'come',
  'money',
  'spend',
  'wed',
  'take',
  'turn',
  'invit',
  'weekli',
  'live',
  'togeth',
  'obvious',
  'sever',
  'time',
  'pay',
  'kid',
  'purchas',
  'make',
  'big',
  'issu',
  'sole',
  'reason',
  'purchas',
  'rel',
  'small',
  'pay',
  '$',
  '-',
  'day',
  'call',
  'work',
  'sound',
  'like',
  'hurri',
  'said',
  'found',
  'game',
  'devic',
  'look',
  'long',
  'want',
  'buy',
  'oldest',
  'son',
  'ask',
  'told',
  'short',
  'money',
  'need',
  '$',
  'ask',
  'lend',
  '$',
  'hesit',
  'agre',
  'ask',
  'bank',
  'account',
  'info',
  'could',
  'pull',
  'money',
  'refus',
  'told',
  'wait',
  'til',
  'get',
  'insist',
  'said',
  'hed',
  'handl',
  'send',
  'bank',
  'account',
  'info',
  'end',
  'call',
  'insist',
  'made',
  'uncomfort',
  'still',
  'said',
  'told',
  'either',
  'wait',
  'pay',
  'got',
  'mad',
  'say',
  'get',
  'act',
  'like',
  'got',
  'loud',
  'hung',
  'found',
  'sit',
  'outsid',
  'went',
  'home',
  'wait',
  'extrem',
  'upset',
  'ask',
  'send',
  'account',
  'info',
  'could',
  'pull',
  'money',
  'agre',
  'told',
  'feel',
  'comfort',
  'let',
  'anyon',
  'person',
  'info',
  'especi',
  'come',
  'financ',
  'got',
  'offend',
  'said',
  'im',
  'anyon',
  'im',
  'fing',
  'partner',
  'went',
  'rant',
  'end',
  'pay',
  'game',
  'devic',
  'look',
  'long',
  'kid',
  'mad',
  'fault',
  'fight',
  'left',
  'told',
  'id',
  'better',
  'apolog',
  'son',
  'next',
  'time',
  'call',
  'phone',
  'call',
  'yet',
  'feel',
  'like',
  'act',
  'stupidli',
  'irrat',
  'think',
  'given',
  'info',
  'ask',
  'fori',
  'know',
  'made',
  'right',
  'decis',
  '*',
  '*',
  'updat',
  '*',
  '*',
  'wow',
  'ive',
  'left',
  'thread',
  'first',
  'hour',
  'got',
  'back',
  'hundr',
  'peopl',
  'engagingwow',
  'im',
  'amaz',
  'sinc',
  'mani',
  'want',
  'know',
  'happen',
  'ive',
  'went',
  'place',
  'talk',
  'oldest',
  'son',
  'turn',
  'game',
  'devic',
  'thing',
  'lie',
  'want',
  'money',
  'someth',
  'els',
  'help',
  'pay',
  'one',
  'buddi',
  'car',
  'repair',
  'shock',
  'confess',
  'said',
  'lie',
  'make',
  'kid',
  'get',
  'lend',
  'money',
  'imagin',
  'reaction',
  'blew',
  'left',
  'without',
  'give',
  'chanc',
  'respond',
  'tri',
  'call',
  'phone',
  'still',
  'tri',
  'decid',
  'want',
  'space',
  'think',
  'happen',
  'realli',
  're-evalu',
  'relationship',
  'true',
  'pay',
  'kid',
  'past',
  'found',
  'put',
  'past',
  '$',
  '-',
  'purchas',
  'kid',
  'seen',
  'stuff',
  'said',
  'bought',
  'im',
  'need',
  'space',
  'quiet',
  'though',
  'im',
  'busi',
  'work',
  'best',
  'stay',
  'focus',
  'quit',
  'frankli',
  'longer',
  'sure',
  'could',
  'move',
  'past',
  'thisit',
  'unsettl',
  'issu',
  'lie',
  'use',
  'money',
  'like',
  'love',
  'kid',
  'ador',
  'thrm',
  'hurt',
  'im',
  'sure',
  'could',
  'come',
  'back',
  'might',
  'upset',
  'right',
  'need',
  'timei',
  'knowyeahim',
  'go',
  'lot',
  'think',
  'regard',
  'situat',
  'see',
  'happen',
  'sorri',
  'long',
  'text',
  'want',
  'let',
  'know',
  'situat',
  'whole',
  'boyfriend_month',
  'month_kid',
  'kid_singl',
  'singl_dad',
  'dad_pretti',
  'pretti_good',
  'good_term',
  'term_regard',
  'regard_almost',
  'almost_everyth',
  'everyth_come',
  'come_money',
  'money_spend',
  'spend_wed',
  'wed_take',
  'take_turn',
  'turn_invit',
  'invit_weekli',
  'weekli_live',
  'live_togeth',
  'togeth_obvious',
  'obvious_sever',
  'sever_time',
  'time_pay',
  'pay_kid',
  'kid_purchas',
  'purchas_make',
  'make_big',
  'big_issu',
  'issu_sole',
  'sole_reason',
  'reason_purchas',
  'purchas_rel',
  'rel_small',
  'small_pay',
  'pay_$',
  '$_-',
  '-_day',
  'day_call',
  'call_work',
  'work_sound',
  'sound_like',
  'like_hurri',
  'hurri_said',
  'said_found',
  'found_game',
  'game_devic',
  'devic_look',
  'look_long',
  'long_want',
  'want_buy',
  'buy_oldest',
  'oldest_son',
  'son_ask',
  'ask_told',
  'told_short',
  'short_money',
  'money_need',
  'need_$',
  '$_ask',
  'ask_lend',
  'lend_$',
  '$_hesit',
  'hesit_agre',
  'agre_ask',
  'ask_bank',
  'bank_account',
  'account_info',
  'info_could',
  'could_pull',
  'pull_money',
  'money_refus',
  'refus_told',
  'told_wait',
  'wait_til',
  'til_get',
  'get_insist',
  'insist_said',
  'said_hed',
  'hed_handl',
  'handl_send',
  'send_bank',
  'bank_account',
  'account_info',
  'info_end',
  'end_call',
  'call_insist',
  'insist_made',
  'made_uncomfort',
  'uncomfort_still',
  'still_said',
  'said_told',
  'told_either',
  'either_wait',
  'wait_pay',
  'pay_got',
  'got_mad',
  'mad_say',
  'say_get',
  'get_act',
  'act_like',
  'like_got',
  'got_loud',
  'loud_hung',
  'hung_found',
  'found_sit',
  'sit_outsid',
  'outsid_went',
  'went_home',
  'home_wait',
  'wait_extrem',
  'extrem_upset',
  'upset_ask',
  'ask_send',
  'send_account',
  'account_info',
  'info_could',
  'could_pull',
  'pull_money',
  'money_agre',
  'agre_told',
  'told_feel',
  'feel_comfort',
  'comfort_let',
  'let_anyon',
  'anyon_person',
  'person_info',
  'info_especi',
  'especi_come',
  'come_financ',
  'financ_got',
  'got_offend',
  'offend_said',
  'said_im',
  'im_anyon',
  'anyon_im',
  'im_fing',
  'fing_partner',
  'partner_went',
  'went_rant',
  'rant_end',
  'end_pay',
  'pay_game',
  'game_devic',
  'devic_look',
  'look_long',
  'long_kid',
  'kid_mad',
  'mad_fault',
  'fault_fight',
  'fight_left',
  'left_told',
  'told_id',
  'id_better',
  'better_apolog',
  'apolog_son',
  'son_next',
  'next_time',
  'time_call',
  'call_phone',
  'phone_call',
  'call_yet',
  'yet_feel',
  'feel_like',
  'like_act',
  'act_stupidli',
  'stupidli_irrat',
  'irrat_think',
  'think_given',
  'given_info',
  'info_ask',
  'ask_fori',
  'fori_know',
  'know_made',
  'made_right',
  'right_decis',
  'decis_*',
  '*_*',
  '*_updat',
  'updat_*',
  '*_*',
  '*_wow',
  'wow_ive',
  'ive_left',
  'left_thread',
  'thread_first',
  'first_hour',
  'hour_got',
  'got_back',
  'back_hundr',
  'hundr_peopl',
  'peopl_engagingwow',
  'engagingwow_im',
  'im_amaz',
  'amaz_sinc',
  'sinc_mani',
  'mani_want',
  'want_know',
  'know_happen',
  'happen_ive',
  'ive_went',
  'went_place',
  'place_talk',
  'talk_oldest',
  'oldest_son',
  'son_turn',
  'turn_game',
  'game_devic',
  'devic_thing',
  'thing_lie',
  'lie_want',
  'want_money',
  'money_someth',
  'someth_els',
  'els_help',
  'help_pay',
  'pay_one',
  'one_buddi',
  'buddi_car',
  'car_repair',
  'repair_shock',
  'shock_confess',
  'confess_said',
  'said_lie',
  'lie_make',
  'make_kid',
  'kid_get',
  'get_lend',
  'lend_money',
  'money_imagin',
  'imagin_reaction',
  'reaction_blew',
  'blew_left',
  'left_without',
  'without_give',
  'give_chanc',
  'chanc_respond',
  'respond_tri',
  'tri_call',
  'call_phone',
  'phone_still',
  'still_tri',
  'tri_decid',
  'decid_want',
  'want_space',
  'space_think',
  'think_happen',
  'happen_realli',
  'realli_re-evalu',
  're-evalu_relationship',
  'relationship_true',
  'true_pay',
  'pay_kid',
  'kid_past',
  'past_found',
  'found_put',
  'put_past',
  'past_$',
  '$_-',
  '-_purchas',
  'purchas_kid',
  'kid_seen',
  'seen_stuff',
  'stuff_said',
  'said_bought',
  'bought_im',
  'im_need',
  'need_space',
  'space_quiet',
  'quiet_though',
  'though_im',
  'im_busi',
  'busi_work',
  'work_best',
  'best_stay',
  'stay_focus',
  'focus_quit',
  'quit_frankli',
  'frankli_longer',
  'longer_sure',
  'sure_could',
  'could_move',
  'move_past',
  'past_thisit',
  'thisit_unsettl',
  'unsettl_issu',
  'issu_lie',
  'lie_use',
  'use_money',
  'money_like',
  'like_love',
  'love_kid',
  'kid_ador',
  'ador_thrm',
  'thrm_hurt',
  'hurt_im',
  'im_sure',
  'sure_could',
  'could_come',
  'come_back',
  'back_might',
  'might_upset',
  'upset_right',
  'right_need',
  'need_timei',
  'timei_knowyeahim',
  'knowyeahim_go',
  'go_lot',
  'lot_think',
  'think_regard',
  'regard_situat',
  'situat_see',
  'see_happen',
  'happen_sorri',
  'sorri_long',
  'long_text',
  'text_want',
  'want_let',
  'let_know',
  'know_situat',
  'situat_whole',
  'boyfriend_month_kid',
  'month_kid_singl',
  'kid_singl_dad',
  'singl_dad_pretti',
  'dad_pretti_good',
  'pretti_good_term',
  'good_term_regard',
  'term_regard_almost',
  'regard_almost_everyth',
  'almost_everyth_come',
  'everyth_come_money',
  'come_money_spend',
  'money_spend_wed',
  'spend_wed_take',
  'wed_take_turn',
  'take_turn_invit',
  'turn_invit_weekli',
  'invit_weekli_live',
  'weekli_live_togeth',
  'live_togeth_obvious',
  'togeth_obvious_sever',
  'obvious_sever_time',
  'sever_time_pay',
  'time_pay_kid',
  'pay_kid_purchas',
  'kid_purchas_make',
  'purchas_make_big',
  'make_big_issu',
  'big_issu_sole',
  'issu_sole_reason',
  'sole_reason_purchas',
  'reason_purchas_rel',
  'purchas_rel_small',
  'rel_small_pay',
  'small_pay_$',
  'pay_$_-',
  '$_-_day',
  '-_day_call',
  'day_call_work',
  'call_work_sound',
  'work_sound_like',
  'sound_like_hurri',
  'like_hurri_said',
  'hurri_said_found',
  'said_found_game',
  'found_game_devic',
  'game_devic_look',
  'devic_look_long',
  'look_long_want',
  'long_want_buy',
  'want_buy_oldest',
  'buy_oldest_son',
  'oldest_son_ask',
  'son_ask_told',
  'ask_told_short',
  'told_short_money',
  'short_money_need',
  'money_need_$',
  'need_$_ask',
  '$_ask_lend',
  'ask_lend_$',
  'lend_$_hesit',
  '$_hesit_agre',
  'hesit_agre_ask',
  'agre_ask_bank',
  'ask_bank_account',
  'bank_account_info',
  'account_info_could',
  'info_could_pull',
  'could_pull_money',
  'pull_money_refus',
  'money_refus_told',
  'refus_told_wait',
  'told_wait_til',
  'wait_til_get',
  'til_get_insist',
  'get_insist_said',
  'insist_said_hed',
  'said_hed_handl',
  'hed_handl_send',
  'handl_send_bank',
  'send_bank_account',
  'bank_account_info',
  'account_info_end',
  'info_end_call',
  'end_call_insist',
  'call_insist_made',
  'insist_made_uncomfort',
  'made_uncomfort_still',
  'uncomfort_still_said',
  'still_said_told',
  'said_told_either',
  'told_either_wait',
  'either_wait_pay',
  'wait_pay_got',
  'pay_got_mad',
  'got_mad_say',
  'mad_say_get',
  'say_get_act',
  'get_act_like',
  'act_like_got',
  'like_got_loud',
  'got_loud_hung',
  'loud_hung_found',
  'hung_found_sit',
  'found_sit_outsid',
  'sit_outsid_went',
  'outsid_went_home',
  'went_home_wait',
  'home_wait_extrem',
  'wait_extrem_upset',
  'extrem_upset_ask',
  'upset_ask_send',
  'ask_send_account',
  'send_account_info',
  'account_info_could',
  'info_could_pull',
  'could_pull_money',
  'pull_money_agre',
  'money_agre_told',
  'agre_told_feel',
  'told_feel_comfort',
  'feel_comfort_let',
  'comfort_let_anyon',
  'let_anyon_person',
  'anyon_person_info',
  'person_info_especi',
  'info_especi_come',
  'especi_come_financ',
  'come_financ_got',
  'financ_got_offend',
  'got_offend_said',
  'offend_said_im',
  'said_im_anyon',
  'im_anyon_im',
  'anyon_im_fing',
  'im_fing_partner',
  'fing_partner_went',
  'partner_went_rant',
  'went_rant_end',
  'rant_end_pay',
  'end_pay_game',
  'pay_game_devic',
  'game_devic_look',
  'devic_look_long',
  'look_long_kid',
  'long_kid_mad',
  'kid_mad_fault',
  'mad_fault_fight',
  'fault_fight_left',
  'fight_left_told',
  'left_told_id',
  'told_id_better',
  'id_better_apolog',
  'better_apolog_son',
  'apolog_son_next',
  'son_next_time',
  'next_time_call',
  'time_call_phone',
  'call_phone_call',
  'phone_call_yet',
  'call_yet_feel',
  'yet_feel_like',
  'feel_like_act',
  'like_act_stupidli',
  'act_stupidli_irrat',
  'stupidli_irrat_think',
  'irrat_think_given',
  'think_given_info',
  'given_info_ask',
  'info_ask_fori',
  'ask_fori_know',
  'fori_know_made',
  'know_made_right',
  'made_right_decis',
  'right_decis_*',
  'decis_*_*',
  '*_*_updat',
  '*_updat_*',
  'updat_*_*',
  '*_*_wow',
  '*_wow_ive',
  'wow_ive_left',
  'ive_left_thread',
  'left_thread_first',
  'thread_first_hour',
  'first_hour_got',
  'hour_got_back',
  'got_back_hundr',
  'back_hundr_peopl',
  'hundr_peopl_engagingwow',
  'peopl_engagingwow_im',
  'engagingwow_im_amaz',
  'im_amaz_sinc',
  'amaz_sinc_mani',
  'sinc_mani_want',
  'mani_want_know',
  'want_know_happen',
  'know_happen_ive',
  'happen_ive_went',
  'ive_went_place',
  'went_place_talk',
  'place_talk_oldest',
  'talk_oldest_son',
  'oldest_son_turn',
  'son_turn_game',
  'turn_game_devic',
  'game_devic_thing',
  'devic_thing_lie',
  'thing_lie_want',
  'lie_want_money',
  'want_money_someth',
  'money_someth_els',
  'someth_els_help',
  'els_help_pay',
  'help_pay_one',
  'pay_one_buddi',
  'one_buddi_car',
  'buddi_car_repair',
  'car_repair_shock',
  'repair_shock_confess',
  'shock_confess_said',
  'confess_said_lie',
  'said_lie_make',
  'lie_make_kid',
  'make_kid_get',
  'kid_get_lend',
  'get_lend_money',
  'lend_money_imagin',
  'money_imagin_reaction',
  'imagin_reaction_blew',
  'reaction_blew_left',
  'blew_left_without',
  'left_without_give',
  'without_give_chanc',
  'give_chanc_respond',
  'chanc_respond_tri',
  'respond_tri_call',
  'tri_call_phone',
  'call_phone_still',
  'phone_still_tri',
  'still_tri_decid',
  'tri_decid_want',
  'decid_want_space',
  'want_space_think',
  'space_think_happen',
  'think_happen_realli',
  'happen_realli_re-evalu',
  'realli_re-evalu_relationship',
  're-evalu_relationship_true',
  'relationship_true_pay',
  'true_pay_kid',
  'pay_kid_past',
  'kid_past_found',
  'past_found_put',
  'found_put_past',
  'put_past_$',
  'past_$_-',
  '$_-_purchas',
  '-_purchas_kid',
  'purchas_kid_seen',
  'kid_seen_stuff',
  'seen_stuff_said',
  'stuff_said_bought',
  'said_bought_im',
  'bought_im_need',
  'im_need_space',
  'need_space_quiet',
  'space_quiet_though',
  'quiet_though_im',
  'though_im_busi',
  'im_busi_work',
  'busi_work_best',
  'work_best_stay',
  'best_stay_focus',
  'stay_focus_quit',
  'focus_quit_frankli',
  'quit_frankli_longer',
  'frankli_longer_sure',
  'longer_sure_could',
  'sure_could_move',
  'could_move_past',
  'move_past_thisit',
  'past_thisit_unsettl',
  'thisit_unsettl_issu',
  'unsettl_issu_lie',
  'issu_lie_use',
  'lie_use_money',
  'use_money_like',
  'money_like_love',
  'like_love_kid',
  'love_kid_ador',
  'kid_ador_thrm',
  'ador_thrm_hurt',
  'thrm_hurt_im',
  'hurt_im_sure',
  'im_sure_could',
  'sure_could_come',
  'could_come_back',
  'come_back_might',
  'back_might_upset',
  'might_upset_right',
  'upset_right_need',
  'right_need_timei',
  'need_timei_knowyeahim',
  'timei_knowyeahim_go',
  'knowyeahim_go_lot',
  'go_lot_think',
  'lot_think_regard',
  'think_regard_situat',
  'regard_situat_see',
  'situat_see_happen',
  'see_happen_sorri',
  'happen_sorri_long',
  'sorri_long_text',
  'long_text_want',
  'text_want_let',
  'want_let_know',
  'let_know_situat',
  'know_situat_whole'],
 ['im',
  'love',
  'mom',
  'affair',
  'left',
  'us',
  'visit',
  'often',
  'could',
  'alway',
  'seem',
  'happi',
  'hate',
  'new',
  'famili',
  'stop',
  'visit',
  'honestli',
  'rare',
  'ever',
  'saw',
  'birthday',
  'event',
  'realli',
  'want',
  'us',
  'close',
  'want',
  'noth',
  'new',
  'husband',
  'ive',
  'kept',
  'distanc',
  'except',
  'feb',
  'th',
  'dad',
  'announc',
  'hed',
  'busi',
  'till',
  'th',
  'grandpar',
  'stuck',
  'visit',
  'rel',
  'itali',
  'realli',
  'nowher',
  'go',
  'mom',
  'jump',
  'chanc',
  'stay',
  'luck',
  'mom',
  'anniversari',
  'husband',
  'sunday',
  'good',
  'time',
  'stay',
  'room',
  'homework',
  'go',
  'friend',
  'avoid',
  'famili',
  'activ',
  'caus',
  'suck',
  'see',
  'lovey',
  'dovey',
  'husband',
  'seem',
  'like',
  'perfect',
  'famili',
  'daughter',
  'morn',
  'anniversari',
  'day',
  'came',
  'bed',
  'tri',
  'cuddl',
  'like',
  'left',
  'us',
  'made',
  'angri',
  'like',
  'cant',
  'go',
  'back',
  'time',
  'pretend',
  'pretend',
  'asleep',
  'stay',
  'curl',
  'frozen',
  'till',
  'left',
  'start',
  'cri',
  'caus',
  'felt',
  'angri',
  'snarki',
  'mom',
  'major',
  'literatur',
  'got',
  'copi',
  'anna',
  'karenina',
  'anniversari',
  'book',
  'ladi',
  'leav',
  'husband',
  'son',
  'lover',
  'ive',
  'never',
  'read',
  'watch',
  'movi',
  'girlfriend',
  'hate',
  'anniversari',
  'parti',
  'sunday',
  'everyon',
  'fun',
  'peopl',
  'gave',
  'gift',
  'gave',
  'mine',
  'mom',
  'saw',
  'seem',
  'shock',
  'said',
  'thank',
  'parti',
  'end',
  'like',
  'hour',
  'night',
  'room',
  'heard',
  'cri',
  'realli',
  'loudli',
  'kinda',
  'eavesdrop',
  'littl',
  'heard',
  'say',
  'stuff',
  'book',
  'husband',
  'tri',
  'calm',
  'next',
  'day',
  'breakfast',
  'left',
  'work',
  'earli',
  'woke',
  'husband',
  'straight',
  'call',
  'asshol',
  'stuff',
  'gift',
  'day',
  'mom',
  'bare',
  'talk',
  'honestli',
  'feel',
  'wrong',
  'made',
  'mom',
  'cri',
  'time',
  'want',
  'know',
  'realli',
  'asshol',
  'edit',
  'thank',
  'mod',
  'lock',
  'everyon',
  'keep',
  'dming',
  'fact',
  'read',
  '*',
  'gave',
  'mom',
  'book',
  'tri',
  'get',
  'across',
  'hate',
  'hous',
  'around',
  'famili',
  'hurt',
  'sympath',
  'son',
  'movi',
  'want',
  'train',
  'run',
  '-',
  'want',
  'happen',
  'mom',
  '*',
  'want',
  'dad',
  'get',
  'back',
  'togeth',
  'mom',
  'happi',
  'fiance',
  '*',
  'dad',
  'reason',
  'want',
  'go',
  'therapi',
  'protect',
  '*',
  'ye',
  'stop',
  'visit',
  'mom',
  'caus',
  'hate',
  'husband',
  'custodi',
  'weekend',
  'break',
  'couldv',
  'forc',
  'sinc',
  'make',
  'us',
  'whenev',
  'go',
  'import',
  'never',
  'tri',
  'anyth',
  'beyond',
  'bare',
  'minimum',
  'go',
  'big',
  'event',
  'edit',
  '--',
  'caus',
  'somebodi',
  'recommend',
  'avoid',
  'dm',
  'updat',
  'updat',
  'ive',
  'post',
  '[',
  'httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post',
  ']',
  'httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post',
  '[',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a',
  ']',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a',
  '[',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and',
  ']',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and',
  '[',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to',
  ']',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate_i_got_into_ap_english_and_my_mom_wants_to',
  'im_love',
  'love_mom',
  'mom_affair',
  'affair_left',
  'left_us',
  'us_visit',
  'visit_often',
  'often_could',
  'could_alway',
  'alway_seem',
  'seem_happi',
  'happi_hate',
  'hate_new',
  'new_famili',
  'famili_stop',
  'stop_visit',
  'visit_honestli',
  'honestli_rare',
  'rare_ever',
  'ever_saw',
  'saw_birthday',
  'birthday_event',
  'event_realli',
  'realli_want',
  'want_us',
  'us_close',
  'close_want',
  'want_noth',
  'noth_new',
  'new_husband',
  'husband_ive',
  'ive_kept',
  'kept_distanc',
  'distanc_except',
  'except_feb',
  'feb_th',
  'th_dad',
  'dad_announc',
  'announc_hed',
  'hed_busi',
  'busi_till',
  'till_th',
  'th_grandpar',
  'grandpar_stuck',
  'stuck_visit',
  'visit_rel',
  'rel_itali',
  'itali_realli',
  'realli_nowher',
  'nowher_go',
  'go_mom',
  'mom_jump',
  'jump_chanc',
  'chanc_stay',
  'stay_luck',
  'luck_mom',
  'mom_anniversari',
  'anniversari_husband',
  'husband_sunday',
  'sunday_good',
  'good_time',
  'time_stay',
  'stay_room',
  'room_homework',
  'homework_go',
  'go_friend',
  'friend_avoid',
  'avoid_famili',
  'famili_activ',
  'activ_caus',
  'caus_suck',
  'suck_see',
  'see_lovey',
  'lovey_dovey',
  'dovey_husband',
  'husband_seem',
  'seem_like',
  'like_perfect',
  'perfect_famili',
  'famili_daughter',
  'daughter_morn',
  'morn_anniversari',
  'anniversari_day',
  'day_came',
  'came_bed',
  'bed_tri',
  'tri_cuddl',
  'cuddl_like',
  'like_left',
  'left_us',
  'us_made',
  'made_angri',
  'angri_like',
  'like_cant',
  'cant_go',
  'go_back',
  'back_time',
  'time_pretend',
  'pretend_pretend',
  'pretend_asleep',
  'asleep_stay',
  'stay_curl',
  'curl_frozen',
  'frozen_till',
  'till_left',
  'left_start',
  'start_cri',
  'cri_caus',
  'caus_felt',
  'felt_angri',
  'angri_snarki',
  'snarki_mom',
  'mom_major',
  'major_literatur',
  'literatur_got',
  'got_copi',
  'copi_anna',
  'anna_karenina',
  'karenina_anniversari',
  'anniversari_book',
  'book_ladi',
  'ladi_leav',
  'leav_husband',
  'husband_son',
  'son_lover',
  'lover_ive',
  'ive_never',
  'never_read',
  'read_watch',
  'watch_movi',
  'movi_girlfriend',
  'girlfriend_hate',
  'hate_anniversari',
  'anniversari_parti',
  'parti_sunday',
  'sunday_everyon',
  'everyon_fun',
  'fun_peopl',
  'peopl_gave',
  'gave_gift',
  'gift_gave',
  'gave_mine',
  'mine_mom',
  'mom_saw',
  'saw_seem',
  'seem_shock',
  'shock_said',
  'said_thank',
  'thank_parti',
  'parti_end',
  'end_like',
  'like_hour',
  'hour_night',
  'night_room',
  'room_heard',
  'heard_cri',
  'cri_realli',
  'realli_loudli',
  'loudli_kinda',
  'kinda_eavesdrop',
  'eavesdrop_littl',
  'littl_heard',
  'heard_say',
  'say_stuff',
  'stuff_book',
  'book_husband',
  'husband_tri',
  'tri_calm',
  'calm_next',
  'next_day',
  'day_breakfast',
  'breakfast_left',
  'left_work',
  'work_earli',
  'earli_woke',
  'woke_husband',
  'husband_straight',
  'straight_call',
  'call_asshol',
  'asshol_stuff',
  'stuff_gift',
  'gift_day',
  'day_mom',
  'mom_bare',
  'bare_talk',
  'talk_honestli',
  'honestli_feel',
  'feel_wrong',
  'wrong_made',
  'made_mom',
  'mom_cri',
  'cri_time',
  'time_want',
  'want_know',
  'know_realli',
  'realli_asshol',
  'asshol_edit',
  'edit_thank',
  'thank_mod',
  'mod_lock',
  'lock_everyon',
  'everyon_keep',
  'keep_dming',
  'dming_fact',
  'fact_read',
  'read_*',
  '*_gave',
  'gave_mom',
  'mom_book',
  'book_tri',
  'tri_get',
  'get_across',
  'across_hate',
  'hate_hous',
  'hous_around',
  'around_famili',
  'famili_hurt',
  'hurt_sympath',
  'sympath_son',
  'son_movi',
  'movi_want',
  'want_train',
  'train_run',
  'run_-',
  '-_want',
  'want_happen',
  'happen_mom',
  'mom_*',
  '*_want',
  'want_dad',
  'dad_get',
  'get_back',
  'back_togeth',
  'togeth_mom',
  'mom_happi',
  'happi_fiance',
  'fiance_*',
  '*_dad',
  'dad_reason',
  'reason_want',
  'want_go',
  'go_therapi',
  'therapi_protect',
  'protect_*',
  '*_ye',
  'ye_stop',
  'stop_visit',
  'visit_mom',
  'mom_caus',
  'caus_hate',
  'hate_husband',
  'husband_custodi',
  'custodi_weekend',
  'weekend_break',
  'break_couldv',
  'couldv_forc',
  'forc_sinc',
  'sinc_make',
  'make_us',
  'us_whenev',
  'whenev_go',
  'go_import',
  'import_never',
  'never_tri',
  'tri_anyth',
  'anyth_beyond',
  'beyond_bare',
  'bare_minimum',
  'minimum_go',
  'go_big',
  'big_event',
  'event_edit',
  'edit_--',
  '--_caus',
  'caus_somebodi',
  'somebodi_recommend',
  'recommend_avoid',
  'avoid_dm',
  'dm_updat',
  'updat_updat',
  'updat_ive',
  'ive_post',
  'post_[',
  '[_httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post',
  'httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post_]',
  ']_httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post',
  'httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post_[',
  '[_httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a_]',
  ']_httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a_[',
  '[_httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and_]',
  ']_httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and_[',
  '[_httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to_]',
  ']_httpswwwredditcomuserigavethebookcommentsvhhhupdate_i_got_into_ap_english_and_my_mom_wants_to',
  'im_love_mom',
  'love_mom_affair',
  'mom_affair_left',
  'affair_left_us',
  'left_us_visit',
  'us_visit_often',
  'visit_often_could',
  'often_could_alway',
  'could_alway_seem',
  'alway_seem_happi',
  'seem_happi_hate',
  'happi_hate_new',
  'hate_new_famili',
  'new_famili_stop',
  'famili_stop_visit',
  'stop_visit_honestli',
  'visit_honestli_rare',
  'honestli_rare_ever',
  'rare_ever_saw',
  'ever_saw_birthday',
  'saw_birthday_event',
  'birthday_event_realli',
  'event_realli_want',
  'realli_want_us',
  'want_us_close',
  'us_close_want',
  'close_want_noth',
  'want_noth_new',
  'noth_new_husband',
  'new_husband_ive',
  'husband_ive_kept',
  'ive_kept_distanc',
  'kept_distanc_except',
  'distanc_except_feb',
  'except_feb_th',
  'feb_th_dad',
  'th_dad_announc',
  'dad_announc_hed',
  'announc_hed_busi',
  'hed_busi_till',
  'busi_till_th',
  'till_th_grandpar',
  'th_grandpar_stuck',
  'grandpar_stuck_visit',
  'stuck_visit_rel',
  'visit_rel_itali',
  'rel_itali_realli',
  'itali_realli_nowher',
  'realli_nowher_go',
  'nowher_go_mom',
  'go_mom_jump',
  'mom_jump_chanc',
  'jump_chanc_stay',
  'chanc_stay_luck',
  'stay_luck_mom',
  'luck_mom_anniversari',
  'mom_anniversari_husband',
  'anniversari_husband_sunday',
  'husband_sunday_good',
  'sunday_good_time',
  'good_time_stay',
  'time_stay_room',
  'stay_room_homework',
  'room_homework_go',
  'homework_go_friend',
  'go_friend_avoid',
  'friend_avoid_famili',
  'avoid_famili_activ',
  'famili_activ_caus',
  'activ_caus_suck',
  'caus_suck_see',
  'suck_see_lovey',
  'see_lovey_dovey',
  'lovey_dovey_husband',
  'dovey_husband_seem',
  'husband_seem_like',
  'seem_like_perfect',
  'like_perfect_famili',
  'perfect_famili_daughter',
  'famili_daughter_morn',
  'daughter_morn_anniversari',
  'morn_anniversari_day',
  'anniversari_day_came',
  'day_came_bed',
  'came_bed_tri',
  'bed_tri_cuddl',
  'tri_cuddl_like',
  'cuddl_like_left',
  'like_left_us',
  'left_us_made',
  'us_made_angri',
  'made_angri_like',
  'angri_like_cant',
  'like_cant_go',
  'cant_go_back',
  'go_back_time',
  'back_time_pretend',
  'time_pretend_pretend',
  'pretend_pretend_asleep',
  'pretend_asleep_stay',
  'asleep_stay_curl',
  'stay_curl_frozen',
  'curl_frozen_till',
  'frozen_till_left',
  'till_left_start',
  'left_start_cri',
  'start_cri_caus',
  'cri_caus_felt',
  'caus_felt_angri',
  'felt_angri_snarki',
  'angri_snarki_mom',
  'snarki_mom_major',
  'mom_major_literatur',
  'major_literatur_got',
  'literatur_got_copi',
  'got_copi_anna',
  'copi_anna_karenina',
  'anna_karenina_anniversari',
  'karenina_anniversari_book',
  'anniversari_book_ladi',
  'book_ladi_leav',
  'ladi_leav_husband',
  'leav_husband_son',
  'husband_son_lover',
  'son_lover_ive',
  'lover_ive_never',
  'ive_never_read',
  'never_read_watch',
  'read_watch_movi',
  'watch_movi_girlfriend',
  'movi_girlfriend_hate',
  'girlfriend_hate_anniversari',
  'hate_anniversari_parti',
  'anniversari_parti_sunday',
  'parti_sunday_everyon',
  'sunday_everyon_fun',
  'everyon_fun_peopl',
  'fun_peopl_gave',
  'peopl_gave_gift',
  'gave_gift_gave',
  'gift_gave_mine',
  'gave_mine_mom',
  'mine_mom_saw',
  'mom_saw_seem',
  'saw_seem_shock',
  'seem_shock_said',
  'shock_said_thank',
  'said_thank_parti',
  'thank_parti_end',
  'parti_end_like',
  'end_like_hour',
  'like_hour_night',
  'hour_night_room',
  'night_room_heard',
  'room_heard_cri',
  'heard_cri_realli',
  'cri_realli_loudli',
  'realli_loudli_kinda',
  'loudli_kinda_eavesdrop',
  'kinda_eavesdrop_littl',
  'eavesdrop_littl_heard',
  'littl_heard_say',
  'heard_say_stuff',
  'say_stuff_book',
  'stuff_book_husband',
  'book_husband_tri',
  'husband_tri_calm',
  'tri_calm_next',
  'calm_next_day',
  'next_day_breakfast',
  'day_breakfast_left',
  'breakfast_left_work',
  'left_work_earli',
  'work_earli_woke',
  'earli_woke_husband',
  'woke_husband_straight',
  'husband_straight_call',
  'straight_call_asshol',
  'call_asshol_stuff',
  'asshol_stuff_gift',
  'stuff_gift_day',
  'gift_day_mom',
  'day_mom_bare',
  'mom_bare_talk',
  'bare_talk_honestli',
  'talk_honestli_feel',
  'honestli_feel_wrong',
  'feel_wrong_made',
  'wrong_made_mom',
  'made_mom_cri',
  'mom_cri_time',
  'cri_time_want',
  'time_want_know',
  'want_know_realli',
  'know_realli_asshol',
  'realli_asshol_edit',
  'asshol_edit_thank',
  'edit_thank_mod',
  'thank_mod_lock',
  'mod_lock_everyon',
  'lock_everyon_keep',
  'everyon_keep_dming',
  'keep_dming_fact',
  'dming_fact_read',
  'fact_read_*',
  'read_*_gave',
  '*_gave_mom',
  'gave_mom_book',
  'mom_book_tri',
  'book_tri_get',
  'tri_get_across',
  'get_across_hate',
  'across_hate_hous',
  'hate_hous_around',
  'hous_around_famili',
  'around_famili_hurt',
  'famili_hurt_sympath',
  'hurt_sympath_son',
  'sympath_son_movi',
  'son_movi_want',
  'movi_want_train',
  'want_train_run',
  'train_run_-',
  'run_-_want',
  '-_want_happen',
  'want_happen_mom',
  'happen_mom_*',
  'mom_*_want',
  '*_want_dad',
  'want_dad_get',
  'dad_get_back',
  'get_back_togeth',
  'back_togeth_mom',
  'togeth_mom_happi',
  'mom_happi_fiance',
  'happi_fiance_*',
  'fiance_*_dad',
  '*_dad_reason',
  'dad_reason_want',
  'reason_want_go',
  'want_go_therapi',
  'go_therapi_protect',
  'therapi_protect_*',
  'protect_*_ye',
  '*_ye_stop',
  'ye_stop_visit',
  'stop_visit_mom',
  'visit_mom_caus',
  'mom_caus_hate',
  'caus_hate_husband',
  'hate_husband_custodi',
  'husband_custodi_weekend',
  'custodi_weekend_break',
  'weekend_break_couldv',
  'break_couldv_forc',
  'couldv_forc_sinc',
  'forc_sinc_make',
  'sinc_make_us',
  'make_us_whenev',
  'us_whenev_go',
  'whenev_go_import',
  'go_import_never',
  'import_never_tri',
  'never_tri_anyth',
  'tri_anyth_beyond',
  'anyth_beyond_bare',
  'beyond_bare_minimum',
  'bare_minimum_go',
  'minimum_go_big',
  'go_big_event',
  'big_event_edit',
  'event_edit_--',
  'edit_--_caus',
  '--_caus_somebodi',
  'caus_somebodi_recommend',
  'somebodi_recommend_avoid',
  'recommend_avoid_dm',
  'avoid_dm_updat',
  'dm_updat_updat',
  'updat_updat_ive',
  'updat_ive_post',
  'ive_post_[',
  'post_[_httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post',
  '[_httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post_]',
  'httpswwwredditcomuserigavethebookcommentstloyif\\_youre\\_going\\_to\\_dm\\_me\\_over\\_my\\_aita\\_post_]_httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post',
  ']_httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post_[',
  'httpswwwredditcomuserigavethebookcommentstloyif_youre_going_to_dm_me_over_my_aita_post_[_httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a',
  '[_httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a_]',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate\\_aita\\_for\\_gifting\\_my\\_mom\\_and\\_her\\_husband\\_a_]_httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a',
  ']_httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a_[',
  'httpswwwredditcomramitheassholecommentstfmkvfupdate_aita_for_gifting_my_mom_and_her_husband_a_[_httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and',
  '[_httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and_]',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate\\_how\\_things\\_have\\_been\\_going\\_between\\_me\\_and_]_httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and',
  ']_httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and_[',
  'httpswwwredditcomuserigavethebookcommentsulwmdupdate_how_things_have_been_going_between_me_and_[_httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to',
  '[_httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to_]',
  'httpswwwredditcomuserigavethebookcommentsvhhhupdate\\_i\\_got\\_into\\_ap\\_english\\_and\\_my\\_mom\\_wants\\_to_]_httpswwwredditcomuserigavethebookcommentsvhhhupdate_i_got_into_ap_english_and_my_mom_wants_to'],
 ['love',
  'wife',
  'weve',
  'marri',
  'year',
  'noth',
  'would',
  'chang',
  'except',
  'realli',
  'insecur',
  'nose',
  'get',
  'aggress',
  'tri',
  'comfort',
  'long',
  'rememb',
  'alway',
  'hate',
  'nose',
  'mention',
  'everyday',
  'would',
  'tri',
  'comfort',
  'tell',
  'beauti',
  'chang',
  'anyth',
  'would',
  'get',
  'aggress',
  'yell',
  'im',
  'liar',
  'week',
  'ago',
  'got',
  'rais',
  'job',
  'today',
  'suggest',
  'idea',
  'get',
  'nose',
  'job',
  'said',
  'insecur',
  'point',
  'affect',
  'mental',
  'health',
  'get',
  'done',
  'got',
  'extrem',
  'upset',
  'said',
  'said',
  'idea',
  'left',
  'hous',
  'go',
  'mother',
  'abl',
  'get',
  'touch',
  'sinc',
  'aita',
  'love_wife',
  'wife_weve',
  'weve_marri',
  'marri_year',
  'year_noth',
  'noth_would',
  'would_chang',
  'chang_except',
  'except_realli',
  'realli_insecur',
  'insecur_nose',
  'nose_get',
  'get_aggress',
  'aggress_tri',
  'tri_comfort',
  'comfort_long',
  'long_rememb',
  'rememb_alway',
  'alway_hate',
  'hate_nose',
  'nose_mention',
  'mention_everyday',
  'everyday_would',
  'would_tri',
  'tri_comfort',
  'comfort_tell',
  'tell_beauti',
  'beauti_chang',
  'chang_anyth',
  'anyth_would',
  'would_get',
  'get_aggress',
  'aggress_yell',
  'yell_im',
  'im_liar',
  'liar_week',
  'week_ago',
  'ago_got',
  'got_rais',
  'rais_job',
  'job_today',
  'today_suggest',
  'suggest_idea',
  'idea_get',
  'get_nose',
  'nose_job',
  'job_said',
  'said_insecur',
  'insecur_point',
  'point_affect',
  'affect_mental',
  'mental_health',
  'health_get',
  'get_done',
  'done_got',
  'got_extrem',
  'extrem_upset',
  'upset_said',
  'said_said',
  'said_idea',
  'idea_left',
  'left_hous',
  'hous_go',
  'go_mother',
  'mother_abl',
  'abl_get',
  'get_touch',
  'touch_sinc',
  'sinc_aita',
  'love_wife_weve',
  'wife_weve_marri',
  'weve_marri_year',
  'marri_year_noth',
  'year_noth_would',
  'noth_would_chang',
  'would_chang_except',
  'chang_except_realli',
  'except_realli_insecur',
  'realli_insecur_nose',
  'insecur_nose_get',
  'nose_get_aggress',
  'get_aggress_tri',
  'aggress_tri_comfort',
  'tri_comfort_long',
  'comfort_long_rememb',
  'long_rememb_alway',
  'rememb_alway_hate',
  'alway_hate_nose',
  'hate_nose_mention',
  'nose_mention_everyday',
  'mention_everyday_would',
  'everyday_would_tri',
  'would_tri_comfort',
  'tri_comfort_tell',
  'comfort_tell_beauti',
  'tell_beauti_chang',
  'beauti_chang_anyth',
  'chang_anyth_would',
  'anyth_would_get',
  'would_get_aggress',
  'get_aggress_yell',
  'aggress_yell_im',
  'yell_im_liar',
  'im_liar_week',
  'liar_week_ago',
  'week_ago_got',
  'ago_got_rais',
  'got_rais_job',
  'rais_job_today',
  'job_today_suggest',
  'today_suggest_idea',
  'suggest_idea_get',
  'idea_get_nose',
  'get_nose_job',
  'nose_job_said',
  'job_said_insecur',
  'said_insecur_point',
  'insecur_point_affect',
  'point_affect_mental',
  'affect_mental_health',
  'mental_health_get',
  'health_get_done',
  'get_done_got',
  'done_got_extrem',
  'got_extrem_upset',
  'extrem_upset_said',
  'upset_said_said',
  'said_said_idea',
  'said_idea_left',
  'idea_left_hous',
  'left_hous_go',
  'hous_go_mother',
  'go_mother_abl',
  'mother_abl_get',
  'abl_get_touch',
  'get_touch_sinc',
  'touch_sinc_aita'],
 ['fiance',
  'kid',
  'former',
  'marriag',
  'whilst',
  'former',
  'marriag',
  'well',
  'quit',
  'job',
  'start',
  'focus',
  'get',
  'degre',
  'becom',
  'breadwinn',
  'although',
  'still',
  'contribut',
  'save',
  'also',
  '%',
  'child-car',
  'chore',
  'long',
  'stori',
  'short',
  'want',
  'kid',
  'attend',
  'thanksgiv',
  'famili',
  'locat',
  'across',
  'countri',
  'suppos',
  'go',
  'yesterday',
  'ahead',
  'time',
  'get',
  'rental',
  'place',
  'bok',
  'ticket',
  'everyth',
  'later',
  'flight',
  'found',
  'kid',
  'put',
  'st',
  'class',
  'whilst',
  'kid',
  '&',
  'put',
  'economi',
  'stun',
  'act',
  'like',
  'big',
  'deal',
  'told',
  'us',
  'hour',
  'kid',
  'could',
  'hang',
  'littl',
  'ask',
  'could',
  'think',
  'accept',
  'got',
  'mad',
  'said',
  'one',
  'pay',
  'ticket',
  'go',
  'rule',
  'immedi',
  'turn',
  'around',
  'took',
  'kid',
  'made',
  'way',
  'airport',
  'start',
  'follow',
  'us',
  'scream',
  'go',
  'back',
  'refus',
  'told',
  'longer',
  'felt',
  'like',
  'spend',
  'thanksgiv',
  'folk',
  'youngest',
  'cri',
  'never',
  'flew',
  'without',
  'went',
  'kid',
  'kid',
  'home',
  'stop',
  'call',
  'tri',
  'berat',
  'even',
  'mom',
  'text',
  'need',
  'get',
  'stop',
  'teach',
  'kid',
  'spoil',
  'entitl',
  'said',
  'fact',
  'miss',
  'thanksgiv',
  'famili',
  'someth',
  'trivial',
  'show',
  'real',
  'charact',
  'perseon',
  'mindset',
  'lack',
  'thereof',
  'repli',
  'feel',
  'horribl',
  'aita',
  'let',
  'slide',
  'went',
  'case',
  'clear',
  'kid',
  'left',
  'familyhometown',
  'could',
  'go',
  'celebr',
  'famili',
  'hometown',
  'kid',
  'excit',
  'leav',
  'granpar',
  'week',
  '*',
  '*',
  'updat',
  'im',
  'current',
  'get',
  'kid',
  'pack',
  'go',
  'stay',
  'mother',
  'happen',
  'instanc',
  'kept',
  'think',
  'right',
  'invest',
  'much',
  'time',
  'effort',
  'relationship',
  'mayb',
  'get',
  'way',
  'id',
  'tri',
  'minim',
  'situat',
  'find',
  'kid',
  'put',
  'last',
  'tri',
  'give',
  'ultimatum',
  'regard',
  'get',
  'degre',
  'respons',
  'right',
  'kept',
  'make',
  'light',
  'let',
  'go',
  'probabl',
  'badmouth',
  'whole',
  'famili',
  'mom',
  'bless',
  'ef',
  'heartth',
  'kid',
  'leav',
  'hell',
  'come',
  'back',
  'empti',
  'homeexcept',
  'hell',
  'find',
  'compani',
  'engag',
  'ring',
  'took',
  'left',
  'nightstand',
  'distanc',
  're-evalu',
  'need',
  'right',
  'thank',
  'ypu',
  'reach',
  'help',
  'input',
  'prespect',
  'right',
  'kid',
  'come',
  'first',
  'keep',
  'tri',
  'hope',
  'ever',
  'fail',
  'thank',
  'much',
  'support',
  '*',
  '*',
  'fiance_kid',
  'kid_former',
  'former_marriag',
  'marriag_whilst',
  'whilst_former',
  'former_marriag',
  'marriag_well',
  'well_quit',
  'quit_job',
  'job_start',
  'start_focus',
  'focus_get',
  'get_degre',
  'degre_becom',
  'becom_breadwinn',
  'breadwinn_although',
  'although_still',
  'still_contribut',
  'contribut_save',
  'save_also',
  'also_%',
  '%_child-car',
  'child-car_chore',
  'chore_long',
  'long_stori',
  'stori_short',
  'short_want',
  'want_kid',
  'kid_attend',
  'attend_thanksgiv',
  'thanksgiv_famili',
  'famili_locat',
  'locat_across',
  'across_countri',
  'countri_suppos',
  'suppos_go',
  'go_yesterday',
  'yesterday_ahead',
  'ahead_time',
  'time_get',
  'get_rental',
  'rental_place',
  'place_bok',
  'bok_ticket',
  'ticket_everyth',
  'everyth_later',
  'later_flight',
  'flight_found',
  'found_kid',
  'kid_put',
  'put_st',
  'st_class',
  'class_whilst',
  'whilst_kid',
  'kid_&',
  '&_put',
  'put_economi',
  'economi_stun',
  'stun_act',
  'act_like',
  'like_big',
  'big_deal',
  'deal_told',
  'told_us',
  'us_hour',
  'hour_kid',
  'kid_could',
  'could_hang',
  'hang_littl',
  'littl_ask',
  'ask_could',
  'could_think',
  'think_accept',
  'accept_got',
  'got_mad',
  'mad_said',
  'said_one',
  'one_pay',
  'pay_ticket',
  'ticket_go',
  'go_rule',
  'rule_immedi',
  'immedi_turn',
  'turn_around',
  'around_took',
  'took_kid',
  'kid_made',
  'made_way',
  'way_airport',
  'airport_start',
  'start_follow',
  'follow_us',
  'us_scream',
  'scream_go',
  'go_back',
  'back_refus',
  'refus_told',
  'told_longer',
  'longer_felt',
  'felt_like',
  'like_spend',
  'spend_thanksgiv',
  'thanksgiv_folk',
  'folk_youngest',
  'youngest_cri',
  'cri_never',
  'never_flew',
  'flew_without',
  'without_went',
  'went_kid',
  'kid_kid',
  'kid_home',
  'home_stop',
  'stop_call',
  'call_tri',
  'tri_berat',
  'berat_even',
  'even_mom',
  'mom_text',
  'text_need',
  'need_get',
  'get_stop',
  'stop_teach',
  'teach_kid',
  'kid_spoil',
  'spoil_entitl',
  'entitl_said',
  'said_fact',
  'fact_miss',
  'miss_thanksgiv',
  'thanksgiv_famili',
  'famili_someth',
  'someth_trivial',
  'trivial_show',
  'show_real',
  'real_charact',
  'charact_perseon',
  'perseon_mindset',
  'mindset_lack',
  'lack_thereof',
  'thereof_repli',
  'repli_feel',
  'feel_horribl',
  'horribl_aita',
  'aita_let',
  'let_slide',
  'slide_went',
  'went_case',
  'case_clear',
  'clear_kid',
  'kid_left',
  'left_familyhometown',
  'familyhometown_could',
  'could_go',
  'go_celebr',
  'celebr_famili',
  'famili_hometown',
  'hometown_kid',
  'kid_excit',
  'excit_leav',
  'leav_granpar',
  'granpar_week',
  'week_*',
  '*_*',
  '*_updat',
  'updat_im',
  'im_current',
  'current_get',
  'get_kid',
  'kid_pack',
  'pack_go',
  'go_stay',
  'stay_mother',
  'mother_happen',
  'happen_instanc',
  'instanc_kept',
  'kept_think',
  'think_right',
  'right_invest',
  'invest_much',
  'much_time',
  'time_effort',
  'effort_relationship',
  'relationship_mayb',
  'mayb_get',
  'get_way',
  'way_id',
  'id_tri',
  'tri_minim',
  'minim_situat',
  'situat_find',
  'find_kid',
  'kid_put',
  'put_last',
  'last_tri',
  'tri_give',
  'give_ultimatum',
  'ultimatum_regard',
  'regard_get',
  'get_degre',
  'degre_respons',
  'respons_right',
  'right_kept',
  'kept_make',
  'make_light',
  'light_let',
  'let_go',
  'go_probabl',
  'probabl_badmouth',
  'badmouth_whole',
  'whole_famili',
  'famili_mom',
  'mom_bless',
  'bless_ef',
  'ef_heartth',
  'heartth_kid',
  'kid_leav',
  'leav_hell',
  'hell_come',
  'come_back',
  'back_empti',
  'empti_homeexcept',
  'homeexcept_hell',
  'hell_find',
  'find_compani',
  'compani_engag',
  'engag_ring',
  'ring_took',
  'took_left',
  'left_nightstand',
  'nightstand_distanc',
  'distanc_re-evalu',
  're-evalu_need',
  'need_right',
  'right_thank',
  'thank_ypu',
  'ypu_reach',
  'reach_help',
  'help_input',
  'input_prespect',
  'prespect_right',
  'right_kid',
  'kid_come',
  'come_first',
  'first_keep',
  'keep_tri',
  'tri_hope',
  'hope_ever',
  'ever_fail',
  'fail_thank',
  'thank_much',
  'much_support',
  'support_*',
  '*_*',
  'fiance_kid_former',
  'kid_former_marriag',
  'former_marriag_whilst',
  'marriag_whilst_former',
  'whilst_former_marriag',
  'former_marriag_well',
  'marriag_well_quit',
  'well_quit_job',
  'quit_job_start',
  'job_start_focus',
  'start_focus_get',
  'focus_get_degre',
  'get_degre_becom',
  'degre_becom_breadwinn',
  'becom_breadwinn_although',
  'breadwinn_although_still',
  'although_still_contribut',
  'still_contribut_save',
  'contribut_save_also',
  'save_also_%',
  'also_%_child-car',
  '%_child-car_chore',
  'child-car_chore_long',
  'chore_long_stori',
  'long_stori_short',
  'stori_short_want',
  'short_want_kid',
  'want_kid_attend',
  'kid_attend_thanksgiv',
  'attend_thanksgiv_famili',
  'thanksgiv_famili_locat',
  'famili_locat_across',
  'locat_across_countri',
  'across_countri_suppos',
  'countri_suppos_go',
  'suppos_go_yesterday',
  'go_yesterday_ahead',
  'yesterday_ahead_time',
  'ahead_time_get',
  'time_get_rental',
  'get_rental_place',
  'rental_place_bok',
  'place_bok_ticket',
  'bok_ticket_everyth',
  'ticket_everyth_later',
  'everyth_later_flight',
  'later_flight_found',
  'flight_found_kid',
  'found_kid_put',
  'kid_put_st',
  'put_st_class',
  'st_class_whilst',
  'class_whilst_kid',
  'whilst_kid_&',
  'kid_&_put',
  '&_put_economi',
  'put_economi_stun',
  'economi_stun_act',
  'stun_act_like',
  'act_like_big',
  'like_big_deal',
  'big_deal_told',
  'deal_told_us',
  'told_us_hour',
  'us_hour_kid',
  'hour_kid_could',
  'kid_could_hang',
  'could_hang_littl',
  'hang_littl_ask',
  'littl_ask_could',
  'ask_could_think',
  'could_think_accept',
  'think_accept_got',
  'accept_got_mad',
  'got_mad_said',
  'mad_said_one',
  'said_one_pay',
  'one_pay_ticket',
  'pay_ticket_go',
  'ticket_go_rule',
  'go_rule_immedi',
  'rule_immedi_turn',
  'immedi_turn_around',
  'turn_around_took',
  'around_took_kid',
  'took_kid_made',
  'kid_made_way',
  'made_way_airport',
  'way_airport_start',
  'airport_start_follow',
  'start_follow_us',
  'follow_us_scream',
  'us_scream_go',
  'scream_go_back',
  'go_back_refus',
  'back_refus_told',
  'refus_told_longer',
  'told_longer_felt',
  'longer_felt_like',
  'felt_like_spend',
  'like_spend_thanksgiv',
  'spend_thanksgiv_folk',
  'thanksgiv_folk_youngest',
  'folk_youngest_cri',
  'youngest_cri_never',
  'cri_never_flew',
  'never_flew_without',
  'flew_without_went',
  'without_went_kid',
  'went_kid_kid',
  'kid_kid_home',
  'kid_home_stop',
  'home_stop_call',
  'stop_call_tri',
  'call_tri_berat',
  'tri_berat_even',
  'berat_even_mom',
  'even_mom_text',
  'mom_text_need',
  'text_need_get',
  'need_get_stop',
  'get_stop_teach',
  'stop_teach_kid',
  'teach_kid_spoil',
  'kid_spoil_entitl',
  'spoil_entitl_said',
  'entitl_said_fact',
  'said_fact_miss',
  'fact_miss_thanksgiv',
  'miss_thanksgiv_famili',
  'thanksgiv_famili_someth',
  'famili_someth_trivial',
  'someth_trivial_show',
  'trivial_show_real',
  'show_real_charact',
  'real_charact_perseon',
  'charact_perseon_mindset',
  'perseon_mindset_lack',
  'mindset_lack_thereof',
  'lack_thereof_repli',
  'thereof_repli_feel',
  'repli_feel_horribl',
  'feel_horribl_aita',
  'horribl_aita_let',
  'aita_let_slide',
  'let_slide_went',
  'slide_went_case',
  'went_case_clear',
  'case_clear_kid',
  'clear_kid_left',
  'kid_left_familyhometown',
  'left_familyhometown_could',
  'familyhometown_could_go',
  'could_go_celebr',
  'go_celebr_famili',
  'celebr_famili_hometown',
  'famili_hometown_kid',
  'hometown_kid_excit',
  'kid_excit_leav',
  'excit_leav_granpar',
  'leav_granpar_week',
  'granpar_week_*',
  'week_*_*',
  '*_*_updat',
  '*_updat_im',
  'updat_im_current',
  'im_current_get',
  'current_get_kid',
  'get_kid_pack',
  'kid_pack_go',
  'pack_go_stay',
  'go_stay_mother',
  'stay_mother_happen',
  'mother_happen_instanc',
  'happen_instanc_kept',
  'instanc_kept_think',
  'kept_think_right',
  'think_right_invest',
  'right_invest_much',
  'invest_much_time',
  'much_time_effort',
  'time_effort_relationship',
  'effort_relationship_mayb',
  'relationship_mayb_get',
  'mayb_get_way',
  'get_way_id',
  'way_id_tri',
  'id_tri_minim',
  'tri_minim_situat',
  'minim_situat_find',
  'situat_find_kid',
  'find_kid_put',
  'kid_put_last',
  'put_last_tri',
  'last_tri_give',
  'tri_give_ultimatum',
  'give_ultimatum_regard',
  'ultimatum_regard_get',
  'regard_get_degre',
  'get_degre_respons',
  'degre_respons_right',
  'respons_right_kept',
  'right_kept_make',
  'kept_make_light',
  'make_light_let',
  'light_let_go',
  'let_go_probabl',
  'go_probabl_badmouth',
  'probabl_badmouth_whole',
  'badmouth_whole_famili',
  'whole_famili_mom',
  'famili_mom_bless',
  'mom_bless_ef',
  'bless_ef_heartth',
  'ef_heartth_kid',
  'heartth_kid_leav',
  'kid_leav_hell',
  'leav_hell_come',
  'hell_come_back',
  'come_back_empti',
  'back_empti_homeexcept',
  'empti_homeexcept_hell',
  'homeexcept_hell_find',
  'hell_find_compani',
  'find_compani_engag',
  'compani_engag_ring',
  'engag_ring_took',
  'ring_took_left',
  'took_left_nightstand',
  'left_nightstand_distanc',
  'nightstand_distanc_re-evalu',
  'distanc_re-evalu_need',
  're-evalu_need_right',
  'need_right_thank',
  'right_thank_ypu',
  'thank_ypu_reach',
  'ypu_reach_help',
  'reach_help_input',
  'help_input_prespect',
  'input_prespect_right',
  'prespect_right_kid',
  'right_kid_come',
  'kid_come_first',
  'come_first_keep',
  'first_keep_tri',
  'keep_tri_hope',
  'tri_hope_ever',
  'hope_ever_fail',
  'ever_fail_thank',
  'fail_thank_much',
  'thank_much_support',
  'much_support_*',
  'support_*_*'],
 ['use',
  'work',
  'sex',
  'worker',
  'earli',
  'mid',
  'proud',
  'choic',
  'get',
  'money',
  'abl',
  'keep',
  'sibl',
  'homeless',
  'met',
  'fianc',
  'martin',
  'year',
  'ago',
  'know',
  'everi',
  'singl',
  'detail',
  'life',
  'everyday',
  'tell',
  'love',
  'matter',
  'famili',
  'liter',
  'saint',
  'kind',
  'hit',
  'jackpot',
  'inlaw',
  'dept',
  'howev',
  'friendsnot',
  'much',
  'make',
  'comment',
  'past',
  'throw',
  'word',
  'find',
  'rather',
  'offens',
  'thought',
  'giiirl',
  'sensit',
  'let',
  'go',
  'last',
  'week',
  'went',
  'restaur',
  'celebr',
  'martin',
  'birthday',
  'friend',
  'famili',
  'one',
  'closest',
  'friend',
  'antonio',
  'habit',
  'make',
  'nasti',
  'joke',
  'laugh',
  'publicli',
  'martin',
  'talk',
  'friend',
  'talk',
  'mother',
  'inlaw',
  'talk',
  'antonio',
  'look',
  'around',
  'prais',
  'restaur',
  'atmespher',
  'parti',
  'martin',
  'nod',
  'antonio',
  'told',
  'lucki',
  'got',
  'birthday',
  'complain',
  'famili',
  'celebr',
  'upcom',
  'birthday',
  'told',
  'martin',
  'perhap',
  'borrow',
  'name',
  'bj',
  'upcom',
  'birthday',
  'appal',
  'turn',
  'see',
  'martin',
  'woupd',
  'react',
  'martin',
  'laugh',
  'said',
  'hahaha',
  'well',
  'much',
  'pay',
  'froze',
  'might',
  'overreact',
  'terribl',
  'look',
  'face',
  'look',
  'martin',
  'got',
  'gather',
  'stuff',
  'includ',
  'gift',
  'got',
  'start',
  'make',
  'way',
  'inlaw',
  'notic',
  'could',
  'hear',
  'martin',
  'yell',
  'follow',
  'outsid',
  'beg',
  'wait',
  'kept',
  'walk',
  'said',
  'joke',
  'buddi',
  'overreact',
  'reason',
  'start',
  'argu',
  'ok',
  'buddi',
  'humili',
  'play',
  'along',
  'god',
  'aw',
  'joke',
  'insist',
  'overreact',
  'oversenst',
  'got',
  'taxi',
  'went',
  'home',
  'came',
  'back',
  'start',
  'complain',
  'embarrass',
  'ruin',
  'celebr',
  'walk',
  'remind',
  'said',
  'joke',
  'one',
  'issu',
  'past',
  'seek',
  'therapi',
  'sensit',
  'damn',
  'time',
  'use_work',
  'work_sex',
  'sex_worker',
  'worker_earli',
  'earli_mid',
  'mid_proud',
  'proud_choic',
  'choic_get',
  'get_money',
  'money_abl',
  'abl_keep',
  'keep_sibl',
  'sibl_homeless',
  'homeless_met',
  'met_fianc',
  'fianc_martin',
  'martin_year',
  'year_ago',
  'ago_know',
  'know_everi',
  'everi_singl',
  'singl_detail',
  'detail_life',
  'life_everyday',
  'everyday_tell',
  'tell_love',
  'love_matter',
  'matter_famili',
  'famili_liter',
  'liter_saint',
  'saint_kind',
  'kind_hit',
  'hit_jackpot',
  'jackpot_inlaw',
  'inlaw_dept',
  'dept_howev',
  'howev_friendsnot',
  'friendsnot_much',
  'much_make',
  'make_comment',
  'comment_past',
  'past_throw',
  'throw_word',
  'word_find',
  'find_rather',
  'rather_offens',
  'offens_thought',
  'thought_giiirl',
  'giiirl_sensit',
  'sensit_let',
  'let_go',
  'go_last',
  'last_week',
  'week_went',
  'went_restaur',
  'restaur_celebr',
  'celebr_martin',
  'martin_birthday',
  'birthday_friend',
  'friend_famili',
  'famili_one',
  'one_closest',
  'closest_friend',
  'friend_antonio',
  'antonio_habit',
  'habit_make',
  'make_nasti',
  'nasti_joke',
  'joke_laugh',
  'laugh_publicli',
  'publicli_martin',
  'martin_talk',
  'talk_friend',
  'friend_talk',
  'talk_mother',
  'mother_inlaw',
  'inlaw_talk',
  'talk_antonio',
  'antonio_look',
  'look_around',
  'around_prais',
  'prais_restaur',
  'restaur_atmespher',
  'atmespher_parti',
  'parti_martin',
  'martin_nod',
  'nod_antonio',
  'antonio_told',
  'told_lucki',
  'lucki_got',
  'got_birthday',
  'birthday_complain',
  'complain_famili',
  'famili_celebr',
  'celebr_upcom',
  'upcom_birthday',
  'birthday_told',
  'told_martin',
  'martin_perhap',
  'perhap_borrow',
  'borrow_name',
  'name_bj',
  'bj_upcom',
  'upcom_birthday',
  'birthday_appal',
  'appal_turn',
  'turn_see',
  'see_martin',
  'martin_woupd',
  'woupd_react',
  'react_martin',
  'martin_laugh',
  'laugh_said',
  'said_hahaha',
  'hahaha_well',
  'well_much',
  'much_pay',
  'pay_froze',
  'froze_might',
  'might_overreact',
  'overreact_terribl',
  'terribl_look',
  'look_face',
  'face_look',
  'look_martin',
  'martin_got',
  'got_gather',
  'gather_stuff',
  'stuff_includ',
  'includ_gift',
  'gift_got',
  'got_start',
  'start_make',
  'make_way',
  'way_inlaw',
  'inlaw_notic',
  'notic_could',
  'could_hear',
  'hear_martin',
  'martin_yell',
  'yell_follow',
  'follow_outsid',
  'outsid_beg',
  'beg_wait',
  'wait_kept',
  'kept_walk',
  'walk_said',
  'said_joke',
  'joke_buddi',
  'buddi_overreact',
  'overreact_reason',
  'reason_start',
  'start_argu',
  'argu_ok',
  'ok_buddi',
  'buddi_humili',
  'humili_play',
  'play_along',
  'along_god',
  'god_aw',
  'aw_joke',
  'joke_insist',
  'insist_overreact',
  'overreact_oversenst',
  'oversenst_got',
  'got_taxi',
  'taxi_went',
  'went_home',
  'home_came',
  'came_back',
  'back_start',
  'start_complain',
  'complain_embarrass',
  'embarrass_ruin',
  'ruin_celebr',
  'celebr_walk',
  'walk_remind',
  'remind_said',
  'said_joke',
  'joke_one',
  'one_issu',
  'issu_past',
  'past_seek',
  'seek_therapi',
  'therapi_sensit',
  'sensit_damn',
  'damn_time',
  'use_work_sex',
  'work_sex_worker',
  'sex_worker_earli',
  'worker_earli_mid',
  'earli_mid_proud',
  'mid_proud_choic',
  'proud_choic_get',
  'choic_get_money',
  'get_money_abl',
  'money_abl_keep',
  'abl_keep_sibl',
  'keep_sibl_homeless',
  'sibl_homeless_met',
  'homeless_met_fianc',
  'met_fianc_martin',
  'fianc_martin_year',
  'martin_year_ago',
  'year_ago_know',
  'ago_know_everi',
  'know_everi_singl',
  'everi_singl_detail',
  'singl_detail_life',
  'detail_life_everyday',
  'life_everyday_tell',
  'everyday_tell_love',
  'tell_love_matter',
  'love_matter_famili',
  'matter_famili_liter',
  'famili_liter_saint',
  'liter_saint_kind',
  'saint_kind_hit',
  'kind_hit_jackpot',
  'hit_jackpot_inlaw',
  'jackpot_inlaw_dept',
  'inlaw_dept_howev',
  'dept_howev_friendsnot',
  'howev_friendsnot_much',
  'friendsnot_much_make',
  'much_make_comment',
  'make_comment_past',
  'comment_past_throw',
  'past_throw_word',
  'throw_word_find',
  'word_find_rather',
  'find_rather_offens',
  'rather_offens_thought',
  'offens_thought_giiirl',
  'thought_giiirl_sensit',
  'giiirl_sensit_let',
  'sensit_let_go',
  'let_go_last',
  'go_last_week',
  'last_week_went',
  'week_went_restaur',
  'went_restaur_celebr',
  'restaur_celebr_martin',
  'celebr_martin_birthday',
  'martin_birthday_friend',
  'birthday_friend_famili',
  'friend_famili_one',
  'famili_one_closest',
  'one_closest_friend',
  'closest_friend_antonio',
  'friend_antonio_habit',
  'antonio_habit_make',
  'habit_make_nasti',
  'make_nasti_joke',
  'nasti_joke_laugh',
  'joke_laugh_publicli',
  'laugh_publicli_martin',
  'publicli_martin_talk',
  'martin_talk_friend',
  'talk_friend_talk',
  'friend_talk_mother',
  'talk_mother_inlaw',
  'mother_inlaw_talk',
  'inlaw_talk_antonio',
  'talk_antonio_look',
  'antonio_look_around',
  'look_around_prais',
  'around_prais_restaur',
  'prais_restaur_atmespher',
  'restaur_atmespher_parti',
  'atmespher_parti_martin',
  'parti_martin_nod',
  'martin_nod_antonio',
  'nod_antonio_told',
  'antonio_told_lucki',
  'told_lucki_got',
  'lucki_got_birthday',
  'got_birthday_complain',
  'birthday_complain_famili',
  'complain_famili_celebr',
  'famili_celebr_upcom',
  'celebr_upcom_birthday',
  'upcom_birthday_told',
  'birthday_told_martin',
  'told_martin_perhap',
  'martin_perhap_borrow',
  'perhap_borrow_name',
  'borrow_name_bj',
  'name_bj_upcom',
  'bj_upcom_birthday',
  'upcom_birthday_appal',
  'birthday_appal_turn',
  'appal_turn_see',
  'turn_see_martin',
  'see_martin_woupd',
  'martin_woupd_react',
  'woupd_react_martin',
  'react_martin_laugh',
  'martin_laugh_said',
  'laugh_said_hahaha',
  'said_hahaha_well',
  'hahaha_well_much',
  'well_much_pay',
  'much_pay_froze',
  'pay_froze_might',
  'froze_might_overreact',
  'might_overreact_terribl',
  'overreact_terribl_look',
  'terribl_look_face',
  'look_face_look',
  'face_look_martin',
  'look_martin_got',
  'martin_got_gather',
  'got_gather_stuff',
  'gather_stuff_includ',
  'stuff_includ_gift',
  'includ_gift_got',
  'gift_got_start',
  'got_start_make',
  'start_make_way',
  'make_way_inlaw',
  'way_inlaw_notic',
  'inlaw_notic_could',
  'notic_could_hear',
  'could_hear_martin',
  'hear_martin_yell',
  'martin_yell_follow',
  'yell_follow_outsid',
  'follow_outsid_beg',
  'outsid_beg_wait',
  'beg_wait_kept',
  'wait_kept_walk',
  'kept_walk_said',
  'walk_said_joke',
  'said_joke_buddi',
  'joke_buddi_overreact',
  'buddi_overreact_reason',
  'overreact_reason_start',
  'reason_start_argu',
  'start_argu_ok',
  'argu_ok_buddi',
  'ok_buddi_humili',
  'buddi_humili_play',
  'humili_play_along',
  'play_along_god',
  'along_god_aw',
  'god_aw_joke',
  'aw_joke_insist',
  'joke_insist_overreact',
  'insist_overreact_oversenst',
  'overreact_oversenst_got',
  'oversenst_got_taxi',
  'got_taxi_went',
  'taxi_went_home',
  'went_home_came',
  'home_came_back',
  'came_back_start',
  'back_start_complain',
  'start_complain_embarrass',
  'complain_embarrass_ruin',
  'embarrass_ruin_celebr',
  'ruin_celebr_walk',
  'celebr_walk_remind',
  'walk_remind_said',
  'remind_said_joke',
  'said_joke_one',
  'joke_one_issu',
  'one_issu_past',
  'issu_past_seek',
  'past_seek_therapi',
  'seek_therapi_sensit',
  'therapi_sensit_damn',
  'sensit_damn_time'],
 ['husband',
  'got',
  'marri',
  'recent',
  'sister',
  'discuss',
  'wed',
  'return',
  'honeymoon',
  'fortun',
  'grown',
  'household',
  'parent',
  'made',
  'good',
  'money',
  'gener',
  'us',
  'rais',
  'sister',
  'hard-work',
  'depend',
  'adult',
  'sister',
  'well',
  'financi',
  'husband',
  'husband',
  'love',
  'job',
  'one',
  'ton',
  'earn',
  'potenti',
  'met',
  'colleg',
  'ive',
  'alway',
  'known',
  'plan',
  'happi',
  'setup',
  'discuss',
  'sister',
  'ask',
  'husband',
  'plan',
  'use',
  'wed',
  'gift',
  'money',
  'parent',
  'particular',
  'renov',
  'weve',
  'save',
  'confus',
  'gift',
  'extrem',
  'gener',
  'appreci',
  'nearli',
  'enough',
  'cover',
  'told',
  'much',
  'gift',
  'twice',
  'given',
  'stop',
  'think',
  'gotten',
  'less',
  'sister',
  'encourag',
  'ask',
  'call',
  'mom',
  'stop',
  'ask',
  'respons',
  'busi',
  'sinc',
  'ask',
  'sister',
  'chosen',
  'partner',
  'accommod',
  'lifestyl',
  'use',
  'theyv',
  'gift',
  'accordingli',
  'also',
  'gift',
  'accord',
  'lifestyl',
  'ive',
  'chosen',
  'entitl',
  'gift',
  'size',
  'life',
  'still',
  'cant',
  'help',
  'feel',
  'hurt',
  'parent',
  'feel',
  'husband',
  'less',
  'deserv',
  'sister',
  'husband',
  'base',
  'incom',
  'meanwhil',
  'parent',
  'angri',
  'sister',
  'discuss',
  'bring',
  'tldr',
  'sister',
  'accident',
  'reveal',
  'parent',
  'gave',
  'consider',
  'larger',
  'wed',
  'gift',
  'mad',
  'bring',
  'topic',
  'husband_got',
  'got_marri',
  'marri_recent',
  'recent_sister',
  'sister_discuss',
  'discuss_wed',
  'wed_return',
  'return_honeymoon',
  'honeymoon_fortun',
  'fortun_grown',
  'grown_household',
  'household_parent',
  'parent_made',
  'made_good',
  'good_money',
  'money_gener',
  'gener_us',
  'us_rais',
  'rais_sister',
  'sister_hard-work',
  'hard-work_depend',
  'depend_adult',
  'adult_sister',
  'sister_well',
  'well_financi',
  'financi_husband',
  'husband_husband',
  'husband_love',
  'love_job',
  'job_one',
  'one_ton',
  'ton_earn',
  'earn_potenti',
  'potenti_met',
  'met_colleg',
  'colleg_ive',
  'ive_alway',
  'alway_known',
  'known_plan',
  'plan_happi',
  'happi_setup',
  'setup_discuss',
  'discuss_sister',
  'sister_ask',
  'ask_husband',
  'husband_plan',
  'plan_use',
  'use_wed',
  'wed_gift',
  'gift_money',
  'money_parent',
  'parent_particular',
  'particular_renov',
  'renov_weve',
  'weve_save',
  'save_confus',
  'confus_gift',
  'gift_extrem',
  'extrem_gener',
  'gener_appreci',
  'appreci_nearli',
  'nearli_enough',
  'enough_cover',
  'cover_told',
  'told_much',
  'much_gift',
  'gift_twice',
  'twice_given',
  'given_stop',
  'stop_think',
  'think_gotten',
  'gotten_less',
  'less_sister',
  'sister_encourag',
  'encourag_ask',
  'ask_call',
  'call_mom',
  'mom_stop',
  'stop_ask',
  'ask_respons',
  'respons_busi',
  'busi_sinc',
  'sinc_ask',
  'ask_sister',
  'sister_chosen',
  'chosen_partner',
  'partner_accommod',
  'accommod_lifestyl',
  'lifestyl_use',
  'use_theyv',
  'theyv_gift',
  'gift_accordingli',
  'accordingli_also',
  'also_gift',
  'gift_accord',
  'accord_lifestyl',
  'lifestyl_ive',
  'ive_chosen',
  'chosen_entitl',
  'entitl_gift',
  'gift_size',
  'size_life',
  'life_still',
  'still_cant',
  'cant_help',
  'help_feel',
  'feel_hurt',
  'hurt_parent',
  'parent_feel',
  'feel_husband',
  'husband_less',
  'less_deserv',
  'deserv_sister',
  'sister_husband',
  'husband_base',
  'base_incom',
  'incom_meanwhil',
  'meanwhil_parent',
  'parent_angri',
  'angri_sister',
  'sister_discuss',
  'discuss_bring',
  'bring_tldr',
  'tldr_sister',
  'sister_accident',
  'accident_reveal',
  'reveal_parent',
  'parent_gave',
  'gave_consider',
  'consider_larger',
  'larger_wed',
  'wed_gift',
  'gift_mad',
  'mad_bring',
  'bring_topic',
  'husband_got_marri',
  'got_marri_recent',
  'marri_recent_sister',
  'recent_sister_discuss',
  'sister_discuss_wed',
  'discuss_wed_return',
  'wed_return_honeymoon',
  'return_honeymoon_fortun',
  'honeymoon_fortun_grown',
  'fortun_grown_household',
  'grown_household_parent',
  'household_parent_made',
  'parent_made_good',
  'made_good_money',
  'good_money_gener',
  'money_gener_us',
  'gener_us_rais',
  'us_rais_sister',
  'rais_sister_hard-work',
  'sister_hard-work_depend',
  'hard-work_depend_adult',
  'depend_adult_sister',
  'adult_sister_well',
  'sister_well_financi',
  'well_financi_husband',
  'financi_husband_husband',
  'husband_husband_love',
  'husband_love_job',
  'love_job_one',
  'job_one_ton',
  'one_ton_earn',
  'ton_earn_potenti',
  'earn_potenti_met',
  'potenti_met_colleg',
  'met_colleg_ive',
  'colleg_ive_alway',
  'ive_alway_known',
  'alway_known_plan',
  'known_plan_happi',
  'plan_happi_setup',
  'happi_setup_discuss',
  'setup_discuss_sister',
  'discuss_sister_ask',
  'sister_ask_husband',
  'ask_husband_plan',
  'husband_plan_use',
  'plan_use_wed',
  'use_wed_gift',
  'wed_gift_money',
  'gift_money_parent',
  'money_parent_particular',
  'parent_particular_renov',
  'particular_renov_weve',
  'renov_weve_save',
  'weve_save_confus',
  'save_confus_gift',
  'confus_gift_extrem',
  'gift_extrem_gener',
  'extrem_gener_appreci',
  'gener_appreci_nearli',
  'appreci_nearli_enough',
  'nearli_enough_cover',
  'enough_cover_told',
  'cover_told_much',
  'told_much_gift',
  'much_gift_twice',
  'gift_twice_given',
  'twice_given_stop',
  'given_stop_think',
  'stop_think_gotten',
  'think_gotten_less',
  'gotten_less_sister',
  'less_sister_encourag',
  'sister_encourag_ask',
  'encourag_ask_call',
  'ask_call_mom',
  'call_mom_stop',
  'mom_stop_ask',
  'stop_ask_respons',
  'ask_respons_busi',
  'respons_busi_sinc',
  'busi_sinc_ask',
  'sinc_ask_sister',
  'ask_sister_chosen',
  'sister_chosen_partner',
  'chosen_partner_accommod',
  'partner_accommod_lifestyl',
  'accommod_lifestyl_use',
  'lifestyl_use_theyv',
  'use_theyv_gift',
  'theyv_gift_accordingli',
  'gift_accordingli_also',
  'accordingli_also_gift',
  'also_gift_accord',
  'gift_accord_lifestyl',
  'accord_lifestyl_ive',
  'lifestyl_ive_chosen',
  'ive_chosen_entitl',
  'chosen_entitl_gift',
  'entitl_gift_size',
  'gift_size_life',
  'size_life_still',
  'life_still_cant',
  'still_cant_help',
  'cant_help_feel',
  'help_feel_hurt',
  'feel_hurt_parent',
  'hurt_parent_feel',
  'parent_feel_husband',
  'feel_husband_less',
  'husband_less_deserv',
  'less_deserv_sister',
  'deserv_sister_husband',
  'sister_husband_base',
  'husband_base_incom',
  'base_incom_meanwhil',
  'incom_meanwhil_parent',
  'meanwhil_parent_angri',
  'parent_angri_sister',
  'angri_sister_discuss',
  'sister_discuss_bring',
  'discuss_bring_tldr',
  'bring_tldr_sister',
  'tldr_sister_accident',
  'sister_accident_reveal',
  'accident_reveal_parent',
  'reveal_parent_gave',
  'parent_gave_consider',
  'gave_consider_larger',
  'consider_larger_wed',
  'larger_wed_gift',
  'wed_gift_mad',
  'gift_mad_bring',
  'mad_bring_topic'],
 ['throwaway',
  'account',
  'im',
  'awar',
  'rel',
  'use',
  'reddit',
  'recent',
  'got',
  'marri',
  'day',
  'ago',
  'tradit',
  'punjabi',
  'wed',
  'absolut',
  'blast',
  'context',
  'brother',
  'sister',
  'tradit',
  'indian',
  'wed',
  'certain',
  'ceremoni',
  'would',
  'need',
  'femal',
  'rel',
  'part',
  'sinc',
  'sister',
  'cousin',
  'step',
  'famili',
  'alway',
  'strain',
  'relationship',
  'one',
  'anoth',
  'alway',
  'due',
  'petti',
  'fight',
  'occur',
  'year',
  'ago',
  'rel',
  'cant',
  'let',
  'go',
  'cousin',
  'partak',
  'awar',
  'ridicul',
  'one',
  'cousin',
  'ill',
  'name',
  'extrem',
  'nice',
  'unfortun',
  'super',
  'shi',
  'timid',
  'alway',
  'like',
  'us',
  'grown',
  'protect',
  'especi',
  'sinc',
  'one',
  'youngest',
  'cousin',
  'one',
  'ceremoni',
  'insist',
  'cousin',
  'main',
  'part',
  'know',
  'would',
  'genuin',
  'enjoy',
  'would',
  'shi',
  'volunt',
  'ask',
  'one',
  'cousin',
  'fiancé',
  'howev',
  'quit',
  'opposit',
  'constantli',
  'like',
  'put',
  'middl',
  'everyth',
  'despit',
  'alreadi',
  'told',
  'given',
  'duti',
  'ceremoni',
  'part',
  'may',
  'asshol',
  'one',
  'ceremoni',
  'suppos',
  'one',
  'femal',
  'rel',
  'sit',
  'behind',
  'stage',
  'basic',
  'take',
  'care',
  'fix',
  'hair',
  'cloth',
  'etc',
  'specif',
  'told',
  'cousin',
  'would',
  'one',
  'howev',
  'day',
  'came',
  'cousin',
  'fiancé',
  'one',
  'took',
  'spot',
  'confus',
  'could',
  'much',
  'ceremoni',
  'found',
  'cousin',
  'explain',
  'fiance',
  'took',
  'spot',
  'basic',
  'scold',
  'yell',
  'say',
  'one',
  'sinc',
  'cousin',
  'still',
  'young',
  'know',
  'anyth',
  'told',
  'cousin',
  'go',
  'sit',
  'guest',
  'despit',
  'cousin',
  'xs',
  'protest',
  'cousin',
  'xs',
  'mother',
  'aunti',
  'absolut',
  'ador',
  'huge',
  'help',
  'wed',
  'quit',
  'upset',
  'want',
  'caus',
  'scene',
  'told',
  'cousin',
  'okay',
  'heard',
  'furiou',
  'fiancé',
  'took',
  'meant',
  'special',
  'moment',
  'made',
  'sat',
  'fiancé',
  'told',
  'right',
  'extrem',
  'upset',
  'appar',
  'upset',
  'convers',
  'refus',
  'come',
  'ceremoni',
  'next',
  'day',
  'fine',
  'gener',
  'like',
  'adult',
  'throw',
  'temper',
  'tantrum',
  'cousin',
  'say',
  'right',
  'speak',
  'fiancé',
  'like',
  'entir',
  'famili',
  'constantli',
  'say',
  'lot',
  'neg',
  'thing',
  'famili',
  'whole',
  'situat',
  'aita',
  'throwaway_account',
  'account_im',
  'im_awar',
  'awar_rel',
  'rel_use',
  'use_reddit',
  'reddit_recent',
  'recent_got',
  'got_marri',
  'marri_day',
  'day_ago',
  'ago_tradit',
  'tradit_punjabi',
  'punjabi_wed',
  'wed_absolut',
  'absolut_blast',
  'blast_context',
  'context_brother',
  'brother_sister',
  'sister_tradit',
  'tradit_indian',
  'indian_wed',
  'wed_certain',
  'certain_ceremoni',
  'ceremoni_would',
  'would_need',
  'need_femal',
  'femal_rel',
  'rel_part',
  'part_sinc',
  'sinc_sister',
  'sister_cousin',
  'cousin_step',
  'step_famili',
  'famili_alway',
  'alway_strain',
  'strain_relationship',
  'relationship_one',
  'one_anoth',
  'anoth_alway',
  'alway_due',
  'due_petti',
  'petti_fight',
  'fight_occur',
  'occur_year',
  'year_ago',
  'ago_rel',
  'rel_cant',
  'cant_let',
  'let_go',
  'go_cousin',
  'cousin_partak',
  'partak_awar',
  'awar_ridicul',
  'ridicul_one',
  'one_cousin',
  'cousin_ill',
  'ill_name',
  'name_extrem',
  'extrem_nice',
  'nice_unfortun',
  'unfortun_super',
  'super_shi',
  'shi_timid',
  'timid_alway',
  'alway_like',
  'like_us',
  'us_grown',
  'grown_protect',
  'protect_especi',
  'especi_sinc',
  'sinc_one',
  'one_youngest',
  'youngest_cousin',
  'cousin_one',
  'one_ceremoni',
  'ceremoni_insist',
  'insist_cousin',
  'cousin_main',
  'main_part',
  'part_know',
  'know_would',
  'would_genuin',
  'genuin_enjoy',
  'enjoy_would',
  'would_shi',
  'shi_volunt',
  'volunt_ask',
  'ask_one',
  'one_cousin',
  'cousin_fiancé',
  'fiancé_howev',
  'howev_quit',
  'quit_opposit',
  'opposit_constantli',
  'constantli_like',
  'like_put',
  'put_middl',
  'middl_everyth',
  'everyth_despit',
  'despit_alreadi',
  'alreadi_told',
  'told_given',
  'given_duti',
  'duti_ceremoni',
  'ceremoni_part',
  'part_may',
  'may_asshol',
  'asshol_one',
  'one_ceremoni',
  'ceremoni_suppos',
  'suppos_one',
  'one_femal',
  'femal_rel',
  'rel_sit',
  'sit_behind',
  'behind_stage',
  'stage_basic',
  'basic_take',
  'take_care',
  'care_fix',
  'fix_hair',
  'hair_cloth',
  'cloth_etc',
  'etc_specif',
  'specif_told',
  'told_cousin',
  'cousin_would',
  'would_one',
  'one_howev',
  'howev_day',
  'day_came',
  'came_cousin',
  'cousin_fiancé',
  'fiancé_one',
  'one_took',
  'took_spot',
  'spot_confus',
  'confus_could',
  'could_much',
  'much_ceremoni',
  'ceremoni_found',
  'found_cousin',
  'cousin_explain',
  'explain_fiance',
  'fiance_took',
  'took_spot',
  'spot_basic',
  'basic_scold',
  'scold_yell',
  'yell_say',
  'say_one',
  'one_sinc',
  'sinc_cousin',
  'cousin_still',
  'still_young',
  'young_know',
  'know_anyth',
  'anyth_told',
  'told_cousin',
  'cousin_go',
  'go_sit',
  'sit_guest',
  'guest_despit',
  'despit_cousin',
  'cousin_xs',
  'xs_protest',
  'protest_cousin',
  'cousin_xs',
  'xs_mother',
  'mother_aunti',
  'aunti_absolut',
  'absolut_ador',
  'ador_huge',
  'huge_help',
  'help_wed',
  'wed_quit',
  'quit_upset',
  'upset_want',
  'want_caus',
  'caus_scene',
  'scene_told',
  'told_cousin',
  'cousin_okay',
  'okay_heard',
  'heard_furiou',
  'furiou_fiancé',
  'fiancé_took',
  'took_meant',
  'meant_special',
  'special_moment',
  'moment_made',
  'made_sat',
  'sat_fiancé',
  'fiancé_told',
  'told_right',
  'right_extrem',
  'extrem_upset',
  'upset_appar',
  'appar_upset',
  'upset_convers',
  'convers_refus',
  'refus_come',
  'come_ceremoni',
  'ceremoni_next',
  'next_day',
  'day_fine',
  'fine_gener',
  'gener_like',
  'like_adult',
  'adult_throw',
  'throw_temper',
  'temper_tantrum',
  'tantrum_cousin',
  'cousin_say',
  'say_right',
  'right_speak',
  'speak_fiancé',
  'fiancé_like',
  'like_entir',
  'entir_famili',
  'famili_constantli',
  'constantli_say',
  'say_lot',
  'lot_neg',
  'neg_thing',
  'thing_famili',
  'famili_whole',
  'whole_situat',
  'situat_aita',
  'throwaway_account_im',
  'account_im_awar',
  'im_awar_rel',
  'awar_rel_use',
  'rel_use_reddit',
  'use_reddit_recent',
  'reddit_recent_got',
  'recent_got_marri',
  'got_marri_day',
  'marri_day_ago',
  'day_ago_tradit',
  'ago_tradit_punjabi',
  'tradit_punjabi_wed',
  'punjabi_wed_absolut',
  'wed_absolut_blast',
  'absolut_blast_context',
  'blast_context_brother',
  'context_brother_sister',
  'brother_sister_tradit',
  'sister_tradit_indian',
  'tradit_indian_wed',
  'indian_wed_certain',
  'wed_certain_ceremoni',
  'certain_ceremoni_would',
  'ceremoni_would_need',
  'would_need_femal',
  'need_femal_rel',
  'femal_rel_part',
  'rel_part_sinc',
  'part_sinc_sister',
  'sinc_sister_cousin',
  'sister_cousin_step',
  'cousin_step_famili',
  'step_famili_alway',
  'famili_alway_strain',
  'alway_strain_relationship',
  'strain_relationship_one',
  'relationship_one_anoth',
  'one_anoth_alway',
  'anoth_alway_due',
  'alway_due_petti',
  'due_petti_fight',
  'petti_fight_occur',
  'fight_occur_year',
  'occur_year_ago',
  'year_ago_rel',
  'ago_rel_cant',
  'rel_cant_let',
  'cant_let_go',
  'let_go_cousin',
  'go_cousin_partak',
  'cousin_partak_awar',
  'partak_awar_ridicul',
  'awar_ridicul_one',
  'ridicul_one_cousin',
  'one_cousin_ill',
  'cousin_ill_name',
  'ill_name_extrem',
  'name_extrem_nice',
  'extrem_nice_unfortun',
  'nice_unfortun_super',
  'unfortun_super_shi',
  'super_shi_timid',
  'shi_timid_alway',
  'timid_alway_like',
  'alway_like_us',
  'like_us_grown',
  'us_grown_protect',
  'grown_protect_especi',
  'protect_especi_sinc',
  'especi_sinc_one',
  'sinc_one_youngest',
  'one_youngest_cousin',
  'youngest_cousin_one',
  'cousin_one_ceremoni',
  'one_ceremoni_insist',
  'ceremoni_insist_cousin',
  'insist_cousin_main',
  'cousin_main_part',
  'main_part_know',
  'part_know_would',
  'know_would_genuin',
  'would_genuin_enjoy',
  'genuin_enjoy_would',
  'enjoy_would_shi',
  'would_shi_volunt',
  'shi_volunt_ask',
  'volunt_ask_one',
  'ask_one_cousin',
  'one_cousin_fiancé',
  'cousin_fiancé_howev',
  'fiancé_howev_quit',
  'howev_quit_opposit',
  'quit_opposit_constantli',
  'opposit_constantli_like',
  'constantli_like_put',
  'like_put_middl',
  'put_middl_everyth',
  'middl_everyth_despit',
  'everyth_despit_alreadi',
  'despit_alreadi_told',
  'alreadi_told_given',
  'told_given_duti',
  'given_duti_ceremoni',
  'duti_ceremoni_part',
  'ceremoni_part_may',
  'part_may_asshol',
  'may_asshol_one',
  'asshol_one_ceremoni',
  'one_ceremoni_suppos',
  'ceremoni_suppos_one',
  'suppos_one_femal',
  'one_femal_rel',
  'femal_rel_sit',
  'rel_sit_behind',
  'sit_behind_stage',
  'behind_stage_basic',
  'stage_basic_take',
  'basic_take_care',
  'take_care_fix',
  'care_fix_hair',
  'fix_hair_cloth',
  'hair_cloth_etc',
  'cloth_etc_specif',
  'etc_specif_told',
  'specif_told_cousin',
  'told_cousin_would',
  'cousin_would_one',
  'would_one_howev',
  'one_howev_day',
  'howev_day_came',
  'day_came_cousin',
  'came_cousin_fiancé',
  'cousin_fiancé_one',
  'fiancé_one_took',
  'one_took_spot',
  'took_spot_confus',
  'spot_confus_could',
  'confus_could_much',
  'could_much_ceremoni',
  'much_ceremoni_found',
  'ceremoni_found_cousin',
  'found_cousin_explain',
  'cousin_explain_fiance',
  'explain_fiance_took',
  'fiance_took_spot',
  'took_spot_basic',
  'spot_basic_scold',
  'basic_scold_yell',
  'scold_yell_say',
  'yell_say_one',
  'say_one_sinc',
  'one_sinc_cousin',
  'sinc_cousin_still',
  'cousin_still_young',
  'still_young_know',
  'young_know_anyth',
  'know_anyth_told',
  'anyth_told_cousin',
  'told_cousin_go',
  'cousin_go_sit',
  'go_sit_guest',
  'sit_guest_despit',
  'guest_despit_cousin',
  'despit_cousin_xs',
  'cousin_xs_protest',
  'xs_protest_cousin',
  'protest_cousin_xs',
  'cousin_xs_mother',
  'xs_mother_aunti',
  'mother_aunti_absolut',
  'aunti_absolut_ador',
  'absolut_ador_huge',
  'ador_huge_help',
  'huge_help_wed',
  'help_wed_quit',
  'wed_quit_upset',
  'quit_upset_want',
  'upset_want_caus',
  'want_caus_scene',
  'caus_scene_told',
  'scene_told_cousin',
  'told_cousin_okay',
  'cousin_okay_heard',
  'okay_heard_furiou',
  'heard_furiou_fiancé',
  'furiou_fiancé_took',
  'fiancé_took_meant',
  'took_meant_special',
  'meant_special_moment',
  'special_moment_made',
  'moment_made_sat',
  'made_sat_fiancé',
  'sat_fiancé_told',
  'fiancé_told_right',
  'told_right_extrem',
  'right_extrem_upset',
  'extrem_upset_appar',
  'upset_appar_upset',
  'appar_upset_convers',
  'upset_convers_refus',
  'convers_refus_come',
  'refus_come_ceremoni',
  'come_ceremoni_next',
  'ceremoni_next_day',
  'next_day_fine',
  'day_fine_gener',
  'fine_gener_like',
  'gener_like_adult',
  'like_adult_throw',
  'adult_throw_temper',
  'throw_temper_tantrum',
  'temper_tantrum_cousin',
  'tantrum_cousin_say',
  'cousin_say_right',
  'say_right_speak',
  'right_speak_fiancé',
  'speak_fiancé_like',
  'fiancé_like_entir',
  'like_entir_famili',
  'entir_famili_constantli',
  'famili_constantli_say',
  'constantli_say_lot',
  'say_lot_neg',
  'lot_neg_thing',
  'neg_thing_famili',
  'thing_famili_whole',
  'famili_whole_situat',
  'whole_situat_aita'],
 ['im',
  'marri',
  'wonder',
  'woman',
  'first',
  'got',
  'marri',
  'year',
  'ago',
  'make',
  '$',
  'make',
  '$',
  'fast',
  'foreward',
  'year',
  'welcom',
  'sweet',
  'babi',
  'girl',
  'matern',
  'leav',
  'took',
  'vacat',
  'stay',
  'babi',
  'well',
  'found',
  'dad',
  'take',
  'care',
  'hous',
  'time',
  'better',
  'work',
  'stress',
  'offic',
  'discuss',
  'becam',
  'full',
  'time',
  'sahd',
  'like',
  'sahd',
  'even',
  'enjoy',
  'keep',
  'hous',
  'clean',
  'cook',
  'take',
  'care',
  'kid',
  'involv',
  'mom',
  'group',
  'littl',
  'leagueetc',
  'person',
  'seem',
  'problem',
  'thing',
  'older',
  'brother',
  'know',
  'despit',
  'rais',
  'parent',
  'much',
  'champion',
  'equal',
  'right',
  'grew',
  'embodi',
  'man',
  'provid',
  'guid',
  'woman',
  'make',
  'home',
  'follow',
  'time',
  'divorce',
  'terribl',
  'relationship',
  'kid',
  'past',
  'year',
  'make',
  'joke',
  'tri',
  'empli',
  'less',
  'man',
  'wife',
  'earn',
  'money',
  'play',
  'littl',
  'wife',
  'ignor',
  'im',
  'mood',
  'shake',
  'head',
  'well',
  'wife',
  'drunk',
  'one',
  'time',
  'came',
  'bit',
  'naughti',
  'solut',
  'give',
  'major',
  'vibe',
  'prude',
  'casual',
  'homophob',
  'tbh',
  'made',
  'joke',
  'last',
  'sunday',
  'along',
  'line',
  'marri',
  'man',
  'would',
  '%',
  'bottom',
  'hit',
  'funni',
  'say',
  'bottom',
  'wife',
  'realli',
  'know',
  'gow',
  'use',
  'dildo',
  'har',
  'make',
  'man',
  'see',
  'start',
  'turn',
  'red',
  'everyon',
  'kind',
  'let',
  'shock',
  'laugh',
  'final',
  'shut',
  'said',
  'want',
  'hear',
  'wife',
  'bedroom',
  'said',
  'keep',
  'comment',
  'would',
  'reason',
  'share',
  'today',
  'mom',
  'call',
  'say',
  'refus',
  'attend',
  'sunday',
  'dinner',
  'unless',
  'apolog',
  'refus',
  'mom',
  'one',
  'feel',
  'bad',
  'aita',
  'im_marri',
  'marri_wonder',
  'wonder_woman',
  'woman_first',
  'first_got',
  'got_marri',
  'marri_year',
  'year_ago',
  'ago_make',
  'make_$',
  '$_make',
  'make_$',
  '$_fast',
  'fast_foreward',
  'foreward_year',
  'year_welcom',
  'welcom_sweet',
  'sweet_babi',
  'babi_girl',
  'girl_matern',
  'matern_leav',
  'leav_took',
  'took_vacat',
  'vacat_stay',
  'stay_babi',
  'babi_well',
  'well_found',
  'found_dad',
  'dad_take',
  'take_care',
  'care_hous',
  'hous_time',
  'time_better',
  'better_work',
  'work_stress',
  'stress_offic',
  'offic_discuss',
  'discuss_becam',
  'becam_full',
  'full_time',
  'time_sahd',
  'sahd_like',
  'like_sahd',
  'sahd_even',
  'even_enjoy',
  'enjoy_keep',
  'keep_hous',
  'hous_clean',
  'clean_cook',
  'cook_take',
  'take_care',
  'care_kid',
  'kid_involv',
  'involv_mom',
  'mom_group',
  'group_littl',
  'littl_leagueetc',
  'leagueetc_person',
  'person_seem',
  'seem_problem',
  'problem_thing',
  'thing_older',
  'older_brother',
  'brother_know',
  'know_despit',
  'despit_rais',
  'rais_parent',
  'parent_much',
  'much_champion',
  'champion_equal',
  'equal_right',
  'right_grew',
  'grew_embodi',
  'embodi_man',
  'man_provid',
  'provid_guid',
  'guid_woman',
  'woman_make',
  'make_home',
  'home_follow',
  'follow_time',
  'time_divorce',
  'divorce_terribl',
  'terribl_relationship',
  'relationship_kid',
  'kid_past',
  'past_year',
  'year_make',
  'make_joke',
  'joke_tri',
  'tri_empli',
  'empli_less',
  'less_man',
  'man_wife',
  'wife_earn',
  'earn_money',
  'money_play',
  'play_littl',
  'littl_wife',
  'wife_ignor',
  'ignor_im',
  'im_mood',
  'mood_shake',
  'shake_head',
  'head_well',
  'well_wife',
  'wife_drunk',
  'drunk_one',
  'one_time',
  'time_came',
  'came_bit',
  'bit_naughti',
  'naughti_solut',
  'solut_give',
  'give_major',
  'major_vibe',
  'vibe_prude',
  'prude_casual',
  'casual_homophob',
  'homophob_tbh',
  'tbh_made',
  'made_joke',
  'joke_last',
  'last_sunday',
  'sunday_along',
  'along_line',
  'line_marri',
  'marri_man',
  'man_would',
  'would_%',
  '%_bottom',
  'bottom_hit',
  'hit_funni',
  'funni_say',
  'say_bottom',
  'bottom_wife',
  'wife_realli',
  'realli_know',
  'know_gow',
  'gow_use',
  'use_dildo',
  'dildo_har',
  'har_make',
  'make_man',
  'man_see',
  'see_start',
  'start_turn',
  'turn_red',
  'red_everyon',
  'everyon_kind',
  'kind_let',
  'let_shock',
  'shock_laugh',
  'laugh_final',
  'final_shut',
  'shut_said',
  'said_want',
  'want_hear',
  'hear_wife',
  'wife_bedroom',
  'bedroom_said',
  'said_keep',
  'keep_comment',
  'comment_would',
  'would_reason',
  'reason_share',
  'share_today',
  'today_mom',
  'mom_call',
  'call_say',
  'say_refus',
  'refus_attend',
  'attend_sunday',
  'sunday_dinner',
  'dinner_unless',
  'unless_apolog',
  'apolog_refus',
  'refus_mom',
  'mom_one',
  'one_feel',
  'feel_bad',
  'bad_aita',
  'im_marri_wonder',
  'marri_wonder_woman',
  'wonder_woman_first',
  'woman_first_got',
  'first_got_marri',
  'got_marri_year',
  'marri_year_ago',
  'year_ago_make',
  'ago_make_$',
  'make_$_make',
  '$_make_$',
  'make_$_fast',
  '$_fast_foreward',
  'fast_foreward_year',
  'foreward_year_welcom',
  'year_welcom_sweet',
  'welcom_sweet_babi',
  'sweet_babi_girl',
  'babi_girl_matern',
  'girl_matern_leav',
  'matern_leav_took',
  'leav_took_vacat',
  'took_vacat_stay',
  'vacat_stay_babi',
  'stay_babi_well',
  'babi_well_found',
  'well_found_dad',
  'found_dad_take',
  'dad_take_care',
  'take_care_hous',
  'care_hous_time',
  'hous_time_better',
  'time_better_work',
  'better_work_stress',
  'work_stress_offic',
  'stress_offic_discuss',
  'offic_discuss_becam',
  'discuss_becam_full',
  'becam_full_time',
  'full_time_sahd',
  'time_sahd_like',
  'sahd_like_sahd',
  'like_sahd_even',
  'sahd_even_enjoy',
  'even_enjoy_keep',
  'enjoy_keep_hous',
  'keep_hous_clean',
  'hous_clean_cook',
  'clean_cook_take',
  'cook_take_care',
  'take_care_kid',
  'care_kid_involv',
  'kid_involv_mom',
  'involv_mom_group',
  'mom_group_littl',
  'group_littl_leagueetc',
  'littl_leagueetc_person',
  'leagueetc_person_seem',
  'person_seem_problem',
  'seem_problem_thing',
  'problem_thing_older',
  'thing_older_brother',
  'older_brother_know',
  'brother_know_despit',
  'know_despit_rais',
  'despit_rais_parent',
  'rais_parent_much',
  'parent_much_champion',
  'much_champion_equal',
  'champion_equal_right',
  'equal_right_grew',
  'right_grew_embodi',
  'grew_embodi_man',
  'embodi_man_provid',
  'man_provid_guid',
  'provid_guid_woman',
  'guid_woman_make',
  'woman_make_home',
  'make_home_follow',
  'home_follow_time',
  'follow_time_divorce',
  'time_divorce_terribl',
  'divorce_terribl_relationship',
  'terribl_relationship_kid',
  'relationship_kid_past',
  'kid_past_year',
  'past_year_make',
  'year_make_joke',
  'make_joke_tri',
  'joke_tri_empli',
  'tri_empli_less',
  'empli_less_man',
  'less_man_wife',
  'man_wife_earn',
  'wife_earn_money',
  'earn_money_play',
  'money_play_littl',
  'play_littl_wife',
  'littl_wife_ignor',
  'wife_ignor_im',
  'ignor_im_mood',
  'im_mood_shake',
  'mood_shake_head',
  'shake_head_well',
  'head_well_wife',
  'well_wife_drunk',
  'wife_drunk_one',
  'drunk_one_time',
  'one_time_came',
  'time_came_bit',
  'came_bit_naughti',
  'bit_naughti_solut',
  'naughti_solut_give',
  'solut_give_major',
  'give_major_vibe',
  'major_vibe_prude',
  'vibe_prude_casual',
  'prude_casual_homophob',
  'casual_homophob_tbh',
  'homophob_tbh_made',
  'tbh_made_joke',
  'made_joke_last',
  'joke_last_sunday',
  'last_sunday_along',
  'sunday_along_line',
  'along_line_marri',
  'line_marri_man',
  'marri_man_would',
  'man_would_%',
  'would_%_bottom',
  '%_bottom_hit',
  'bottom_hit_funni',
  'hit_funni_say',
  'funni_say_bottom',
  'say_bottom_wife',
  'bottom_wife_realli',
  'wife_realli_know',
  'realli_know_gow',
  'know_gow_use',
  'gow_use_dildo',
  'use_dildo_har',
  'dildo_har_make',
  'har_make_man',
  'make_man_see',
  'man_see_start',
  'see_start_turn',
  'start_turn_red',
  'turn_red_everyon',
  'red_everyon_kind',
  'everyon_kind_let',
  'kind_let_shock',
  'let_shock_laugh',
  'shock_laugh_final',
  'laugh_final_shut',
  'final_shut_said',
  'shut_said_want',
  'said_want_hear',
  'want_hear_wife',
  'hear_wife_bedroom',
  'wife_bedroom_said',
  'bedroom_said_keep',
  'said_keep_comment',
  'keep_comment_would',
  'comment_would_reason',
  'would_reason_share',
  'reason_share_today',
  'share_today_mom',
  'today_mom_call',
  'mom_call_say',
  'call_say_refus',
  'say_refus_attend',
  'refus_attend_sunday',
  'attend_sunday_dinner',
  'sunday_dinner_unless',
  'dinner_unless_apolog',
  'unless_apolog_refus',
  'apolog_refus_mom',
  'refus_mom_one',
  'mom_one_feel',
  'one_feel_bad',
  'feel_bad_aita'],
 ['fianc',
  'got',
  'engag',
  'sever',
  'day',
  'ago',
  'relev',
  'tall',
  'im',
  'categori',
  'pretti',
  'small',
  'compar',
  'famili',
  'ask',
  'wear',
  'high',
  'heel',
  'engag',
  'parti',
  'sinc',
  'go',
  'photo',
  'although',
  'comfort',
  'fan',
  'either',
  'high',
  'heel',
  'decid',
  'wear',
  'sake',
  'sinc',
  'beg',
  'plead',
  'also',
  'sinc',
  'promis',
  'would',
  'sit',
  'time',
  'parti',
  'stand',
  'hour',
  'welcom',
  'guest',
  'like',
  'guest',
  'got',
  'tire',
  'stand',
  'feet',
  'leg',
  'fire',
  'ask',
  'could',
  'sit',
  'mom',
  'said',
  'im',
  'fiance',
  'stand',
  'next',
  'partner',
  'sit',
  'like',
  'parti',
  'noth',
  'told',
  'fianc',
  'much',
  'pain',
  'said',
  'suck',
  'almost',
  'enough',
  'took',
  'heel',
  'let',
  'feet',
  'leg',
  'cool',
  'mom',
  'look',
  'utter',
  'confus',
  'sever',
  'famili',
  'guest',
  'saw',
  'barefoot',
  'well',
  'freak',
  'ask',
  'mom',
  'ask',
  'put',
  'heel',
  'said',
  'feet',
  'done',
  'anymor',
  'fianc',
  'beg',
  'stood',
  'til',
  'like',
  'want',
  'minut',
  'got',
  'car',
  'flip',
  'say',
  'embarrass',
  'infront',
  'famili',
  'friend',
  'stand',
  'barefoot',
  'refus',
  'put',
  'heel',
  'back',
  'even',
  'mom',
  'repeatedli',
  'ask',
  'remind',
  'said',
  'stand',
  'turn',
  'true',
  'argu',
  'someon',
  'height',
  'like',
  'mine',
  'wear',
  'high',
  'heel',
  'often',
  'said',
  'suck',
  'sake',
  'went',
  'upstair',
  'turn',
  'phone',
  'refus',
  'speak',
  'intent',
  'embarrass',
  'feel',
  'suck',
  'think',
  'truth',
  'long',
  'expect',
  'stand',
  'aita',
  'eta',
  'usual',
  'care',
  'wear',
  'high',
  'heel',
  'said',
  'start',
  'consid',
  'wear',
  'women',
  'wear',
  'heel',
  'big',
  'occas',
  'like',
  'wed',
  'engag',
  'parti',
  'fianc_got',
  'got_engag',
  'engag_sever',
  'sever_day',
  'day_ago',
  'ago_relev',
  'relev_tall',
  'tall_im',
  'im_categori',
  'categori_pretti',
  'pretti_small',
  'small_compar',
  'compar_famili',
  'famili_ask',
  'ask_wear',
  'wear_high',
  'high_heel',
  'heel_engag',
  'engag_parti',
  'parti_sinc',
  'sinc_go',
  'go_photo',
  'photo_although',
  'although_comfort',
  'comfort_fan',
  'fan_either',
  'either_high',
  'high_heel',
  'heel_decid',
  'decid_wear',
  'wear_sake',
  'sake_sinc',
  'sinc_beg',
  'beg_plead',
  'plead_also',
  'also_sinc',
  'sinc_promis',
  'promis_would',
  'would_sit',
  'sit_time',
  'time_parti',
  'parti_stand',
  'stand_hour',
  'hour_welcom',
  'welcom_guest',
  'guest_like',
  'like_guest',
  'guest_got',
  'got_tire',
  'tire_stand',
  'stand_feet',
  'feet_leg',
  'leg_fire',
  'fire_ask',
  'ask_could',
  'could_sit',
  'sit_mom',
  'mom_said',
  'said_im',
  'im_fiance',
  'fiance_stand',
  'stand_next',
  'next_partner',
  'partner_sit',
  'sit_like',
  'like_parti',
  'parti_noth',
  'noth_told',
  'told_fianc',
  'fianc_much',
  'much_pain',
  'pain_said',
  'said_suck',
  'suck_almost',
  'almost_enough',
  'enough_took',
  'took_heel',
  'heel_let',
  'let_feet',
  'feet_leg',
  'leg_cool',
  'cool_mom',
  'mom_look',
  'look_utter',
  'utter_confus',
  'confus_sever',
  'sever_famili',
  'famili_guest',
  'guest_saw',
  'saw_barefoot',
  'barefoot_well',
  'well_freak',
  'freak_ask',
  'ask_mom',
  'mom_ask',
  'ask_put',
  'put_heel',
  'heel_said',
  'said_feet',
  'feet_done',
  'done_anymor',
  'anymor_fianc',
  'fianc_beg',
  'beg_stood',
  'stood_til',
  'til_like',
  'like_want',
  'want_minut',
  'minut_got',
  'got_car',
  'car_flip',
  'flip_say',
  'say_embarrass',
  'embarrass_infront',
  'infront_famili',
  'famili_friend',
  'friend_stand',
  'stand_barefoot',
  'barefoot_refus',
  'refus_put',
  'put_heel',
  'heel_back',
  'back_even',
  'even_mom',
  'mom_repeatedli',
  'repeatedli_ask',
  'ask_remind',
  'remind_said',
  'said_stand',
  'stand_turn',
  'turn_true',
  'true_argu',
  'argu_someon',
  'someon_height',
  'height_like',
  'like_mine',
  'mine_wear',
  'wear_high',
  'high_heel',
  'heel_often',
  'often_said',
  'said_suck',
  'suck_sake',
  'sake_went',
  'went_upstair',
  'upstair_turn',
  'turn_phone',
  'phone_refus',
  'refus_speak',
  'speak_intent',
  'intent_embarrass',
  'embarrass_feel',
  'feel_suck',
  'suck_think',
  'think_truth',
  'truth_long',
  'long_expect',
  'expect_stand',
  'stand_aita',
  'aita_eta',
  'eta_usual',
  'usual_care',
  'care_wear',
  'wear_high',
  'high_heel',
  'heel_said',
  'said_start',
  'start_consid',
  'consid_wear',
  'wear_women',
  'women_wear',
  'wear_heel',
  'heel_big',
  'big_occas',
  'occas_like',
  'like_wed',
  'wed_engag',
  'engag_parti',
  'fianc_got_engag',
  'got_engag_sever',
  'engag_sever_day',
  'sever_day_ago',
  'day_ago_relev',
  'ago_relev_tall',
  'relev_tall_im',
  'tall_im_categori',
  'im_categori_pretti',
  'categori_pretti_small',
  'pretti_small_compar',
  'small_compar_famili',
  'compar_famili_ask',
  'famili_ask_wear',
  'ask_wear_high',
  'wear_high_heel',
  'high_heel_engag',
  'heel_engag_parti',
  'engag_parti_sinc',
  'parti_sinc_go',
  'sinc_go_photo',
  'go_photo_although',
  'photo_although_comfort',
  'although_comfort_fan',
  'comfort_fan_either',
  'fan_either_high',
  'either_high_heel',
  'high_heel_decid',
  'heel_decid_wear',
  'decid_wear_sake',
  'wear_sake_sinc',
  'sake_sinc_beg',
  'sinc_beg_plead',
  'beg_plead_also',
  'plead_also_sinc',
  'also_sinc_promis',
  'sinc_promis_would',
  'promis_would_sit',
  'would_sit_time',
  'sit_time_parti',
  'time_parti_stand',
  'parti_stand_hour',
  'stand_hour_welcom',
  'hour_welcom_guest',
  'welcom_guest_like',
  'guest_like_guest',
  'like_guest_got',
  'guest_got_tire',
  'got_tire_stand',
  'tire_stand_feet',
  'stand_feet_leg',
  'feet_leg_fire',
  'leg_fire_ask',
  'fire_ask_could',
  'ask_could_sit',
  'could_sit_mom',
  'sit_mom_said',
  'mom_said_im',
  'said_im_fiance',
  'im_fiance_stand',
  'fiance_stand_next',
  'stand_next_partner',
  'next_partner_sit',
  'partner_sit_like',
  'sit_like_parti',
  'like_parti_noth',
  'parti_noth_told',
  'noth_told_fianc',
  'told_fianc_much',
  'fianc_much_pain',
  'much_pain_said',
  'pain_said_suck',
  'said_suck_almost',
  'suck_almost_enough',
  'almost_enough_took',
  'enough_took_heel',
  'took_heel_let',
  'heel_let_feet',
  'let_feet_leg',
  'feet_leg_cool',
  'leg_cool_mom',
  'cool_mom_look',
  'mom_look_utter',
  'look_utter_confus',
  'utter_confus_sever',
  'confus_sever_famili',
  'sever_famili_guest',
  'famili_guest_saw',
  'guest_saw_barefoot',
  'saw_barefoot_well',
  'barefoot_well_freak',
  'well_freak_ask',
  'freak_ask_mom',
  'ask_mom_ask',
  'mom_ask_put',
  'ask_put_heel',
  'put_heel_said',
  'heel_said_feet',
  'said_feet_done',
  'feet_done_anymor',
  'done_anymor_fianc',
  'anymor_fianc_beg',
  'fianc_beg_stood',
  'beg_stood_til',
  'stood_til_like',
  'til_like_want',
  'like_want_minut',
  'want_minut_got',
  'minut_got_car',
  'got_car_flip',
  'car_flip_say',
  'flip_say_embarrass',
  'say_embarrass_infront',
  'embarrass_infront_famili',
  'infront_famili_friend',
  'famili_friend_stand',
  'friend_stand_barefoot',
  'stand_barefoot_refus',
  'barefoot_refus_put',
  'refus_put_heel',
  'put_heel_back',
  'heel_back_even',
  'back_even_mom',
  'even_mom_repeatedli',
  'mom_repeatedli_ask',
  'repeatedli_ask_remind',
  'ask_remind_said',
  'remind_said_stand',
  'said_stand_turn',
  'stand_turn_true',
  'turn_true_argu',
  'true_argu_someon',
  'argu_someon_height',
  'someon_height_like',
  'height_like_mine',
  'like_mine_wear',
  'mine_wear_high',
  'wear_high_heel',
  'high_heel_often',
  'heel_often_said',
  'often_said_suck',
  'said_suck_sake',
  'suck_sake_went',
  'sake_went_upstair',
  'went_upstair_turn',
  'upstair_turn_phone',
  'turn_phone_refus',
  'phone_refus_speak',
  'refus_speak_intent',
  'speak_intent_embarrass',
  'intent_embarrass_feel',
  'embarrass_feel_suck',
  'feel_suck_think',
  'suck_think_truth',
  'think_truth_long',
  'truth_long_expect',
  'long_expect_stand',
  'expect_stand_aita',
  'stand_aita_eta',
  'aita_eta_usual',
  'eta_usual_care',
  'usual_care_wear',
  'care_wear_high',
  'wear_high_heel',
  'high_heel_said',
  'heel_said_start',
  'said_start_consid',
  'start_consid_wear',
  'consid_wear_women',
  'wear_women_wear',
  'women_wear_heel',
  'wear_heel_big',
  'heel_big_occas',
  'big_occas_like',
  'occas_like_wed',
  'like_wed_engag',
  'wed_engag_parti'],
 ['husband',
  'sick',
  'day',
  'got',
  'sicm',
  'around',
  'time',
  'brother',
  'wed',
  'took',
  'care',
  'hr',
  'day',
  'med',
  'move',
  'go',
  'bathroom',
  'eat',
  'told',
  'go',
  'brother',
  'wed',
  'threw',
  'fit',
  'say',
  'leav',
  'alond',
  'sick',
  'told',
  'sick',
  'stomach',
  'get',
  'treatment',
  'suggest',
  'call',
  'sister',
  'come',
  'stay',
  'said',
  'told',
  'miss',
  'got',
  'upset',
  'bluntli',
  'said',
  'could',
  'surviv',
  'hour',
  'attend',
  'wed',
  'sulk',
  'leav',
  'said',
  'hope',
  'ever',
  'come',
  'back',
  'hurt',
  'feel',
  'know',
  'mad',
  'mean',
  'wed',
  'got',
  'text',
  'say',
  'lost',
  'balanc',
  'fell',
  'stair',
  'hurt',
  'back',
  'said',
  'lot',
  'pain',
  'threw',
  'move',
  'insist',
  'get',
  'home',
  'asap',
  'freak',
  'start',
  'call',
  'phone',
  'answer',
  'thought',
  'mustv',
  'pass',
  'freak',
  'even',
  'got',
  'car',
  'drove',
  'back',
  'hous',
  'immedi',
  'got',
  'home',
  'rush',
  'toward',
  'stair',
  'call',
  'name',
  'start',
  'realli',
  'freak',
  'rush',
  'bedroom',
  'found',
  'bed',
  'drink',
  'juic',
  'soon',
  'saw',
  'put',
  'phone',
  'instantli',
  'knew',
  'lie',
  'lost',
  'start',
  'yell',
  'say',
  'freak',
  'caus',
  'miss',
  'brother',
  'wed',
  'nothingabsolut',
  'noth',
  'said',
  'alreadi',
  'told',
  'leav',
  'alon',
  'hous',
  'scenario',
  'couldv',
  'happen',
  'stay',
  'longer',
  'yell',
  'call',
  'horribl',
  'made',
  'cri',
  'start',
  'cri',
  'throw',
  'juic',
  'place',
  'step',
  'call',
  'sister',
  'think',
  'shed',
  'come',
  'help',
  'came',
  'start',
  'cuss',
  'say',
  'lot',
  'nerv',
  'expect',
  'back',
  'carelessli',
  'left',
  'brother',
  'alon',
  'af',
  'hous',
  'state',
  'attend',
  'parti',
  'got',
  'argument',
  'went',
  'stag',
  'famili',
  'brother',
  'understood',
  'whrn',
  'explain',
  'situat',
  'husband',
  'seen',
  'sinc',
  'sister',
  'kept',
  'say',
  'right',
  'scream',
  'brother',
  'caus',
  'panic',
  'attack',
  'said',
  'least',
  'clear',
  'start',
  'chose',
  'dismiss',
  'dismiss',
  'edit',
  'im',
  'year',
  'old',
  'year',
  'old',
  'husband_sick',
  'sick_day',
  'day_got',
  'got_sicm',
  'sicm_around',
  'around_time',
  'time_brother',
  'brother_wed',
  'wed_took',
  'took_care',
  'care_hr',
  'hr_day',
  'day_med',
  'med_move',
  'move_go',
  'go_bathroom',
  'bathroom_eat',
  'eat_told',
  'told_go',
  'go_brother',
  'brother_wed',
  'wed_threw',
  'threw_fit',
  'fit_say',
  'say_leav',
  'leav_alond',
  'alond_sick',
  'sick_told',
  'told_sick',
  'sick_stomach',
  'stomach_get',
  'get_treatment',
  'treatment_suggest',
  'suggest_call',
  'call_sister',
  'sister_come',
  'come_stay',
  'stay_said',
  'said_told',
  'told_miss',
  'miss_got',
  'got_upset',
  'upset_bluntli',
  'bluntli_said',
  'said_could',
  'could_surviv',
  'surviv_hour',
  'hour_attend',
  'attend_wed',
  'wed_sulk',
  'sulk_leav',
  'leav_said',
  'said_hope',
  'hope_ever',
  'ever_come',
  'come_back',
  'back_hurt',
  'hurt_feel',
  'feel_know',
  'know_mad',
  'mad_mean',
  'mean_wed',
  'wed_got',
  'got_text',
  'text_say',
  'say_lost',
  'lost_balanc',
  'balanc_fell',
  'fell_stair',
  'stair_hurt',
  'hurt_back',
  'back_said',
  'said_lot',
  'lot_pain',
  'pain_threw',
  'threw_move',
  'move_insist',
  'insist_get',
  'get_home',
  'home_asap',
  'asap_freak',
  'freak_start',
  'start_call',
  'call_phone',
  'phone_answer',
  'answer_thought',
  'thought_mustv',
  'mustv_pass',
  'pass_freak',
  'freak_even',
  'even_got',
  'got_car',
  'car_drove',
  'drove_back',
  'back_hous',
  'hous_immedi',
  'immedi_got',
  'got_home',
  'home_rush',
  'rush_toward',
  'toward_stair',
  'stair_call',
  'call_name',
  'name_start',
  'start_realli',
  'realli_freak',
  'freak_rush',
  'rush_bedroom',
  'bedroom_found',
  'found_bed',
  'bed_drink',
  'drink_juic',
  'juic_soon',
  'soon_saw',
  'saw_put',
  'put_phone',
  'phone_instantli',
  'instantli_knew',
  'knew_lie',
  'lie_lost',
  'lost_start',
  'start_yell',
  'yell_say',
  'say_freak',
  'freak_caus',
  'caus_miss',
  'miss_brother',
  'brother_wed',
  'wed_nothingabsolut',
  'nothingabsolut_noth',
  'noth_said',
  'said_alreadi',
  'alreadi_told',
  'told_leav',
  'leav_alon',
  'alon_hous',
  'hous_scenario',
  'scenario_couldv',
  'couldv_happen',
  'happen_stay',
  'stay_longer',
  'longer_yell',
  'yell_call',
  'call_horribl',
  'horribl_made',
  'made_cri',
  'cri_start',
  'start_cri',
  'cri_throw',
  'throw_juic',
  'juic_place',
  'place_step',
  'step_call',
  'call_sister',
  'sister_think',
  'think_shed',
  'shed_come',
  'come_help',
  'help_came',
  'came_start',
  'start_cuss',
  'cuss_say',
  'say_lot',
  'lot_nerv',
  'nerv_expect',
  'expect_back',
  'back_carelessli',
  'carelessli_left',
  'left_brother',
  'brother_alon',
  'alon_af',
  'af_hous',
  'hous_state',
  'state_attend',
  'attend_parti',
  'parti_got',
  'got_argument',
  'argument_went',
  'went_stag',
  'stag_famili',
  'famili_brother',
  'brother_understood',
  'understood_whrn',
  'whrn_explain',
  'explain_situat',
  'situat_husband',
  'husband_seen',
  'seen_sinc',
  'sinc_sister',
  'sister_kept',
  'kept_say',
  'say_right',
  'right_scream',
  'scream_brother',
  'brother_caus',
  'caus_panic',
  'panic_attack',
  'attack_said',
  'said_least',
  'least_clear',
  'clear_start',
  'start_chose',
  'chose_dismiss',
  'dismiss_dismiss',
  'dismiss_edit',
  'edit_im',
  'im_year',
  'year_old',
  'old_year',
  'year_old',
  'husband_sick_day',
  'sick_day_got',
  'day_got_sicm',
  'got_sicm_around',
  'sicm_around_time',
  'around_time_brother',
  'time_brother_wed',
  'brother_wed_took',
  'wed_took_care',
  'took_care_hr',
  'care_hr_day',
  'hr_day_med',
  'day_med_move',
  'med_move_go',
  'move_go_bathroom',
  'go_bathroom_eat',
  'bathroom_eat_told',
  'eat_told_go',
  'told_go_brother',
  'go_brother_wed',
  'brother_wed_threw',
  'wed_threw_fit',
  'threw_fit_say',
  'fit_say_leav',
  'say_leav_alond',
  'leav_alond_sick',
  'alond_sick_told',
  'sick_told_sick',
  'told_sick_stomach',
  'sick_stomach_get',
  'stomach_get_treatment',
  'get_treatment_suggest',
  'treatment_suggest_call',
  'suggest_call_sister',
  'call_sister_come',
  'sister_come_stay',
  'come_stay_said',
  'stay_said_told',
  'said_told_miss',
  'told_miss_got',
  'miss_got_upset',
  'got_upset_bluntli',
  'upset_bluntli_said',
  'bluntli_said_could',
  'said_could_surviv',
  'could_surviv_hour',
  'surviv_hour_attend',
  'hour_attend_wed',
  'attend_wed_sulk',
  'wed_sulk_leav',
  'sulk_leav_said',
  'leav_said_hope',
  'said_hope_ever',
  'hope_ever_come',
  'ever_come_back',
  'come_back_hurt',
  'back_hurt_feel',
  'hurt_feel_know',
  'feel_know_mad',
  'know_mad_mean',
  'mad_mean_wed',
  'mean_wed_got',
  'wed_got_text',
  'got_text_say',
  'text_say_lost',
  'say_lost_balanc',
  'lost_balanc_fell',
  'balanc_fell_stair',
  'fell_stair_hurt',
  'stair_hurt_back',
  'hurt_back_said',
  'back_said_lot',
  'said_lot_pain',
  'lot_pain_threw',
  'pain_threw_move',
  'threw_move_insist',
  'move_insist_get',
  'insist_get_home',
  'get_home_asap',
  'home_asap_freak',
  'asap_freak_start',
  'freak_start_call',
  'start_call_phone',
  'call_phone_answer',
  'phone_answer_thought',
  'answer_thought_mustv',
  'thought_mustv_pass',
  'mustv_pass_freak',
  'pass_freak_even',
  'freak_even_got',
  'even_got_car',
  'got_car_drove',
  'car_drove_back',
  'drove_back_hous',
  'back_hous_immedi',
  'hous_immedi_got',
  'immedi_got_home',
  'got_home_rush',
  'home_rush_toward',
  'rush_toward_stair',
  'toward_stair_call',
  'stair_call_name',
  'call_name_start',
  'name_start_realli',
  'start_realli_freak',
  'realli_freak_rush',
  'freak_rush_bedroom',
  'rush_bedroom_found',
  'bedroom_found_bed',
  'found_bed_drink',
  'bed_drink_juic',
  'drink_juic_soon',
  'juic_soon_saw',
  'soon_saw_put',
  'saw_put_phone',
  'put_phone_instantli',
  'phone_instantli_knew',
  'instantli_knew_lie',
  'knew_lie_lost',
  'lie_lost_start',
  'lost_start_yell',
  'start_yell_say',
  'yell_say_freak',
  'say_freak_caus',
  'freak_caus_miss',
  'caus_miss_brother',
  'miss_brother_wed',
  'brother_wed_nothingabsolut',
  'wed_nothingabsolut_noth',
  'nothingabsolut_noth_said',
  'noth_said_alreadi',
  'said_alreadi_told',
  'alreadi_told_leav',
  'told_leav_alon',
  'leav_alon_hous',
  'alon_hous_scenario',
  'hous_scenario_couldv',
  'scenario_couldv_happen',
  'couldv_happen_stay',
  'happen_stay_longer',
  'stay_longer_yell',
  'longer_yell_call',
  'yell_call_horribl',
  'call_horribl_made',
  'horribl_made_cri',
  'made_cri_start',
  'cri_start_cri',
  'start_cri_throw',
  'cri_throw_juic',
  'throw_juic_place',
  'juic_place_step',
  'place_step_call',
  'step_call_sister',
  'call_sister_think',
  'sister_think_shed',
  'think_shed_come',
  'shed_come_help',
  'come_help_came',
  'help_came_start',
  'came_start_cuss',
  'start_cuss_say',
  'cuss_say_lot',
  'say_lot_nerv',
  'lot_nerv_expect',
  'nerv_expect_back',
  'expect_back_carelessli',
  'back_carelessli_left',
  'carelessli_left_brother',
  'left_brother_alon',
  'brother_alon_af',
  'alon_af_hous',
  'af_hous_state',
  'hous_state_attend',
  'state_attend_parti',
  'attend_parti_got',
  'parti_got_argument',
  'got_argument_went',
  'argument_went_stag',
  'went_stag_famili',
  'stag_famili_brother',
  'famili_brother_understood',
  'brother_understood_whrn',
  'understood_whrn_explain',
  'whrn_explain_situat',
  'explain_situat_husband',
  'situat_husband_seen',
  'husband_seen_sinc',
  'seen_sinc_sister',
  'sinc_sister_kept',
  'sister_kept_say',
  'kept_say_right',
  'say_right_scream',
  'right_scream_brother',
  'scream_brother_caus',
  'brother_caus_panic',
  'caus_panic_attack',
  'panic_attack_said',
  'attack_said_least',
  'said_least_clear',
  'least_clear_start',
  'clear_start_chose',
  'start_chose_dismiss',
  'chose_dismiss_dismiss',
  'dismiss_dismiss_edit',
  'dismiss_edit_im',
  'edit_im_year',
  'im_year_old',
  'year_old_year',
  'old_year_old'],
 ['develop',
  'interest',
  'piano',
  'meet',
  'late',
  'husband',
  'piano',
  'teacher',
  'year',
  'taught',
  'play',
  'help',
  'buy',
  'one',
  'use',
  'one',
  'still',
  'bit',
  'expens',
  'year',
  'ago',
  'play',
  'everyday',
  'pass',
  'month',
  'ago',
  'find',
  'comfort',
  'spend',
  'time',
  'play',
  'howev',
  'brother',
  'wife',
  'came',
  'stay',
  'month',
  'loos',
  'apart',
  'alway',
  'complain',
  'piano',
  'nois',
  'although',
  'play',
  'daytim',
  'sil',
  'start',
  'argu',
  'frequent',
  'brother',
  'told',
  'play',
  'theyr',
  'refus',
  'yesterday',
  'friend',
  'day',
  'came',
  'even',
  'found',
  'piano',
  'gone',
  'turn',
  'brother',
  'move',
  'friend',
  'garag',
  'know',
  'friend',
  'gone',
  'blew',
  'yell',
  'right',
  'touch',
  'move',
  'wife',
  'said',
  'last',
  'ditch',
  'effort',
  'get',
  'peac',
  'quiet',
  'hous',
  'brother',
  'reassur',
  'hell',
  'give',
  'back',
  'find',
  'place',
  'get',
  'live',
  'alon',
  'play',
  'piano',
  'day',
  'long',
  'sarcast',
  'last',
  'line',
  'take',
  'told',
  'pack',
  'leav',
  'hous',
  'longer',
  'welcom',
  'freak',
  'tri',
  'beg',
  'take',
  'easi',
  'ration',
  'threaten',
  'call',
  'polic',
  'refus',
  'leav',
  'took',
  'famili',
  'left',
  'piano',
  'still',
  'back',
  'theyr',
  'say',
  'theyd',
  'give',
  'back',
  'agre',
  'let',
  'move',
  'back',
  'basic',
  'want',
  'thing',
  'go',
  'back',
  'ghey',
  'complain',
  'nois',
  'believ',
  'happen',
  'misunderstand',
  'everyon',
  'us',
  'mishandl',
  'situat',
  'want',
  'start',
  'new',
  'lost',
  'told',
  'day',
  'return',
  'ill',
  'call',
  'cop',
  'mom',
  'pressur',
  'take',
  'back',
  'say',
  'fault',
  'consider',
  'guest',
  'begin',
  'refus',
  'take',
  'back',
  'put',
  'foot',
  'time-lin',
  'gave',
  'im',
  'call',
  'irrat',
  'cruel',
  'kick',
  'brother',
  'watch',
  'struggl',
  'refus',
  'let',
  'move',
  'back',
  'choos',
  'escal',
  'author',
  'could',
  'let',
  'move',
  'back',
  'get',
  'piano',
  'back',
  'develop_interest',
  'interest_piano',
  'piano_meet',
  'meet_late',
  'late_husband',
  'husband_piano',
  'piano_teacher',
  'teacher_year',
  'year_taught',
  'taught_play',
  'play_help',
  'help_buy',
  'buy_one',
  'one_use',
  'use_one',
  'one_still',
  'still_bit',
  'bit_expens',
  'expens_year',
  'year_ago',
  'ago_play',
  'play_everyday',
  'everyday_pass',
  'pass_month',
  'month_ago',
  'ago_find',
  'find_comfort',
  'comfort_spend',
  'spend_time',
  'time_play',
  'play_howev',
  'howev_brother',
  'brother_wife',
  'wife_came',
  'came_stay',
  'stay_month',
  'month_loos',
  'loos_apart',
  'apart_alway',
  'alway_complain',
  'complain_piano',
  'piano_nois',
  'nois_although',
  'although_play',
  'play_daytim',
  'daytim_sil',
  'sil_start',
  'start_argu',
  'argu_frequent',
  'frequent_brother',
  'brother_told',
  'told_play',
  'play_theyr',
  'theyr_refus',
  'refus_yesterday',
  'yesterday_friend',
  'friend_day',
  'day_came',
  'came_even',
  'even_found',
  'found_piano',
  'piano_gone',
  'gone_turn',
  'turn_brother',
  'brother_move',
  'move_friend',
  'friend_garag',
  'garag_know',
  'know_friend',
  'friend_gone',
  'gone_blew',
  'blew_yell',
  'yell_right',
  'right_touch',
  'touch_move',
  'move_wife',
  'wife_said',
  'said_last',
  'last_ditch',
  'ditch_effort',
  'effort_get',
  'get_peac',
  'peac_quiet',
  'quiet_hous',
  'hous_brother',
  'brother_reassur',
  'reassur_hell',
  'hell_give',
  'give_back',
  'back_find',
  'find_place',
  'place_get',
  'get_live',
  'live_alon',
  'alon_play',
  'play_piano',
  'piano_day',
  'day_long',
  'long_sarcast',
  'sarcast_last',
  'last_line',
  'line_take',
  'take_told',
  'told_pack',
  'pack_leav',
  'leav_hous',
  'hous_longer',
  'longer_welcom',
  'welcom_freak',
  'freak_tri',
  'tri_beg',
  'beg_take',
  'take_easi',
  'easi_ration',
  'ration_threaten',
  'threaten_call',
  'call_polic',
  'polic_refus',
  'refus_leav',
  'leav_took',
  'took_famili',
  'famili_left',
  'left_piano',
  'piano_still',
  'still_back',
  'back_theyr',
  'theyr_say',
  'say_theyd',
  'theyd_give',
  'give_back',
  'back_agre',
  'agre_let',
  'let_move',
  'move_back',
  'back_basic',
  'basic_want',
  'want_thing',
  'thing_go',
  'go_back',
  'back_ghey',
  'ghey_complain',
  'complain_nois',
  'nois_believ',
  'believ_happen',
  'happen_misunderstand',
  'misunderstand_everyon',
  'everyon_us',
  'us_mishandl',
  'mishandl_situat',
  'situat_want',
  'want_start',
  'start_new',
  'new_lost',
  'lost_told',
  'told_day',
  'day_return',
  'return_ill',
  'ill_call',
  'call_cop',
  'cop_mom',
  'mom_pressur',
  'pressur_take',
  'take_back',
  'back_say',
  'say_fault',
  'fault_consider',
  'consider_guest',
  'guest_begin',
  'begin_refus',
  'refus_take',
  'take_back',
  'back_put',
  'put_foot',
  'foot_time-lin',
  'time-lin_gave',
  'gave_im',
  'im_call',
  'call_irrat',
  'irrat_cruel',
  'cruel_kick',
  'kick_brother',
  'brother_watch',
  'watch_struggl',
  'struggl_refus',
  'refus_let',
  'let_move',
  'move_back',
  'back_choos',
  'choos_escal',
  'escal_author',
  'author_could',
  'could_let',
  'let_move',
  'move_back',
  'back_get',
  'get_piano',
  'piano_back',
  'develop_interest_piano',
  'interest_piano_meet',
  'piano_meet_late',
  'meet_late_husband',
  'late_husband_piano',
  'husband_piano_teacher',
  'piano_teacher_year',
  'teacher_year_taught',
  'year_taught_play',
  'taught_play_help',
  'play_help_buy',
  'help_buy_one',
  'buy_one_use',
  'one_use_one',
  'use_one_still',
  'one_still_bit',
  'still_bit_expens',
  'bit_expens_year',
  'expens_year_ago',
  'year_ago_play',
  'ago_play_everyday',
  'play_everyday_pass',
  'everyday_pass_month',
  'pass_month_ago',
  'month_ago_find',
  'ago_find_comfort',
  'find_comfort_spend',
  'comfort_spend_time',
  'spend_time_play',
  'time_play_howev',
  'play_howev_brother',
  'howev_brother_wife',
  'brother_wife_came',
  'wife_came_stay',
  'came_stay_month',
  'stay_month_loos',
  'month_loos_apart',
  'loos_apart_alway',
  'apart_alway_complain',
  'alway_complain_piano',
  'complain_piano_nois',
  'piano_nois_although',
  'nois_although_play',
  'although_play_daytim',
  'play_daytim_sil',
  'daytim_sil_start',
  'sil_start_argu',
  'start_argu_frequent',
  'argu_frequent_brother',
  'frequent_brother_told',
  'brother_told_play',
  'told_play_theyr',
  'play_theyr_refus',
  'theyr_refus_yesterday',
  'refus_yesterday_friend',
  'yesterday_friend_day',
  'friend_day_came',
  'day_came_even',
  'came_even_found',
  'even_found_piano',
  'found_piano_gone',
  'piano_gone_turn',
  'gone_turn_brother',
  'turn_brother_move',
  'brother_move_friend',
  'move_friend_garag',
  'friend_garag_know',
  'garag_know_friend',
  'know_friend_gone',
  'friend_gone_blew',
  'gone_blew_yell',
  'blew_yell_right',
  'yell_right_touch',
  'right_touch_move',
  'touch_move_wife',
  'move_wife_said',
  'wife_said_last',
  'said_last_ditch',
  'last_ditch_effort',
  'ditch_effort_get',
  'effort_get_peac',
  'get_peac_quiet',
  'peac_quiet_hous',
  'quiet_hous_brother',
  'hous_brother_reassur',
  'brother_reassur_hell',
  'reassur_hell_give',
  'hell_give_back',
  'give_back_find',
  'back_find_place',
  'find_place_get',
  'place_get_live',
  'get_live_alon',
  'live_alon_play',
  'alon_play_piano',
  'play_piano_day',
  'piano_day_long',
  'day_long_sarcast',
  'long_sarcast_last',
  'sarcast_last_line',
  'last_line_take',
  'line_take_told',
  'take_told_pack',
  'told_pack_leav',
  'pack_leav_hous',
  'leav_hous_longer',
  'hous_longer_welcom',
  'longer_welcom_freak',
  'welcom_freak_tri',
  'freak_tri_beg',
  'tri_beg_take',
  'beg_take_easi',
  'take_easi_ration',
  'easi_ration_threaten',
  'ration_threaten_call',
  'threaten_call_polic',
  'call_polic_refus',
  'polic_refus_leav',
  'refus_leav_took',
  'leav_took_famili',
  'took_famili_left',
  'famili_left_piano',
  'left_piano_still',
  'piano_still_back',
  'still_back_theyr',
  'back_theyr_say',
  'theyr_say_theyd',
  'say_theyd_give',
  'theyd_give_back',
  'give_back_agre',
  'back_agre_let',
  'agre_let_move',
  'let_move_back',
  'move_back_basic',
  'back_basic_want',
  'basic_want_thing',
  'want_thing_go',
  'thing_go_back',
  'go_back_ghey',
  'back_ghey_complain',
  'ghey_complain_nois',
  'complain_nois_believ',
  'nois_believ_happen',
  'believ_happen_misunderstand',
  'happen_misunderstand_everyon',
  'misunderstand_everyon_us',
  'everyon_us_mishandl',
  'us_mishandl_situat',
  'mishandl_situat_want',
  'situat_want_start',
  'want_start_new',
  'start_new_lost',
  'new_lost_told',
  'lost_told_day',
  'told_day_return',
  'day_return_ill',
  'return_ill_call',
  'ill_call_cop',
  'call_cop_mom',
  'cop_mom_pressur',
  'mom_pressur_take',
  'pressur_take_back',
  'take_back_say',
  'back_say_fault',
  'say_fault_consider',
  'fault_consider_guest',
  'consider_guest_begin',
  'guest_begin_refus',
  'begin_refus_take',
  'refus_take_back',
  'take_back_put',
  'back_put_foot',
  'put_foot_time-lin',
  'foot_time-lin_gave',
  'time-lin_gave_im',
  'gave_im_call',
  'im_call_irrat',
  'call_irrat_cruel',
  'irrat_cruel_kick',
  'cruel_kick_brother',
  'kick_brother_watch',
  'brother_watch_struggl',
  'watch_struggl_refus',
  'struggl_refus_let',
  'refus_let_move',
  'let_move_back',
  'move_back_choos',
  'back_choos_escal',
  'choos_escal_author',
  'escal_author_could',
  'author_could_let',
  'could_let_move',
  'let_move_back',
  'move_back_get',
  'back_get_piano',
  'get_piano_back'],
 ['three',
  'children',
  'ex',
  'traci',
  'michael',
  'linda',
  'victoria',
  'split',
  'traci',
  'affair',
  'stan',
  'marri',
  'never',
  'share',
  'kid',
  'reason',
  'divorc',
  'want',
  'blame',
  'either',
  'us',
  'backfir',
  'kid',
  'saw',
  'mom',
  'move',
  'hous',
  'small',
  'apart',
  'keep',
  'live',
  'hous',
  'remarri',
  'two',
  'year',
  'divorc',
  'saw',
  'bad',
  'guy',
  'stan',
  'traci',
  'let',
  'pretti',
  'much',
  'whatev',
  'want',
  'disciplinarian',
  'made',
  'sure',
  'homework',
  'done',
  'appoint',
  'made',
  'deadlin',
  'met',
  'two',
  'oldest',
  'eventu',
  'came',
  'realiz',
  'bad',
  'guy',
  'son',
  'found',
  'mother',
  'put',
  'noth',
  'away',
  'colleg',
  'outlin',
  'divorc',
  'decre',
  'told',
  'take',
  'loan',
  'daughter',
  'realiz',
  'grade',
  'go',
  'keep',
  'desir',
  'program',
  'school',
  'youngest',
  'never',
  'came',
  'around',
  'surpris',
  'boyfriend',
  'ask',
  'bless',
  'ask',
  'hand',
  'express',
  'think',
  'shed',
  'care',
  'bless',
  'said',
  'insist',
  'began',
  'spend',
  'time',
  'polit',
  'wife',
  'felt',
  'wonder',
  'daughter',
  'back',
  'went',
  'book',
  'venu',
  'theyll',
  'get',
  'marri',
  'next',
  'summer',
  'paid',
  'deposit',
  'first',
  'instal',
  'notic',
  'becom',
  'less',
  'commun',
  'recent',
  'ignor',
  'text',
  'give',
  'one',
  'word',
  'repli',
  'come',
  'much',
  'monday',
  'son',
  'sent',
  'post',
  'instagram',
  'youngest',
  'engag',
  'parti',
  'weekend',
  'invit',
  'one',
  'photo',
  'stan',
  'read',
  'anyon',
  'father',
  'take',
  'real',
  'man',
  'dad',
  'amaz',
  'guy',
  'dad',
  'year',
  'even',
  'though',
  'bless',
  'walk',
  'aisl',
  'next',
  'year',
  'daddysgirl',
  'futuremrsx',
  'kid',
  'want',
  'noth',
  'entir',
  'live',
  'never',
  'let',
  'go',
  'without',
  'even',
  'talk',
  'made',
  'sure',
  'need',
  'met',
  'text',
  'traci',
  'ask',
  'includ',
  'repli',
  'victoria',
  'want',
  'wife',
  'want',
  'drama',
  'free',
  'day',
  'wife',
  'liter',
  'never',
  'start',
  'drama',
  'life',
  'ask',
  'stan',
  'would',
  'walk',
  'aisl',
  'traci',
  'respond',
  'victoria',
  'call',
  'demand',
  'know',
  'problem',
  'repeat',
  'question',
  'repli',
  'stan',
  'dad',
  'would',
  'walk',
  'aisl',
  'told',
  'want',
  'would',
  'fine',
  'told',
  'let',
  'stan',
  'know',
  'next',
  'payment',
  'wed',
  'due',
  'novemb',
  'stan',
  'traci',
  'money',
  'wed',
  'think',
  'im',
  'asshol',
  'linda',
  'say',
  'victoria',
  'never',
  'speak',
  'michael',
  'side',
  'three_children',
  'children_ex',
  'ex_traci',
  'traci_michael',
  'michael_linda',
  'linda_victoria',
  'victoria_split',
  'split_traci',
  'traci_affair',
  'affair_stan',
  'stan_marri',
  'marri_never',
  'never_share',
  'share_kid',
  'kid_reason',
  'reason_divorc',
  'divorc_want',
  'want_blame',
  'blame_either',
  'either_us',
  'us_backfir',
  'backfir_kid',
  'kid_saw',
  'saw_mom',
  'mom_move',
  'move_hous',
  'hous_small',
  'small_apart',
  'apart_keep',
  'keep_live',
  'live_hous',
  'hous_remarri',
  'remarri_two',
  'two_year',
  'year_divorc',
  'divorc_saw',
  'saw_bad',
  'bad_guy',
  'guy_stan',
  'stan_traci',
  'traci_let',
  'let_pretti',
  'pretti_much',
  'much_whatev',
  'whatev_want',
  'want_disciplinarian',
  'disciplinarian_made',
  'made_sure',
  'sure_homework',
  'homework_done',
  'done_appoint',
  'appoint_made',
  'made_deadlin',
  'deadlin_met',
  'met_two',
  'two_oldest',
  'oldest_eventu',
  'eventu_came',
  'came_realiz',
  'realiz_bad',
  'bad_guy',
  'guy_son',
  'son_found',
  'found_mother',
  'mother_put',
  'put_noth',
  'noth_away',
  'away_colleg',
  'colleg_outlin',
  'outlin_divorc',
  'divorc_decre',
  'decre_told',
  'told_take',
  'take_loan',
  'loan_daughter',
  'daughter_realiz',
  'realiz_grade',
  'grade_go',
  'go_keep',
  'keep_desir',
  'desir_program',
  'program_school',
  'school_youngest',
  'youngest_never',
  'never_came',
  'came_around',
  'around_surpris',
  'surpris_boyfriend',
  'boyfriend_ask',
  'ask_bless',
  'bless_ask',
  'ask_hand',
  'hand_express',
  'express_think',
  'think_shed',
  'shed_care',
  'care_bless',
  'bless_said',
  'said_insist',
  'insist_began',
  'began_spend',
  'spend_time',
  'time_polit',
  'polit_wife',
  'wife_felt',
  'felt_wonder',
  'wonder_daughter',
  'daughter_back',
  'back_went',
  'went_book',
  'book_venu',
  'venu_theyll',
  'theyll_get',
  'get_marri',
  'marri_next',
  'next_summer',
  'summer_paid',
  'paid_deposit',
  'deposit_first',
  'first_instal',
  'instal_notic',
  'notic_becom',
  'becom_less',
  'less_commun',
  'commun_recent',
  'recent_ignor',
  'ignor_text',
  'text_give',
  'give_one',
  'one_word',
  'word_repli',
  'repli_come',
  'come_much',
  'much_monday',
  'monday_son',
  'son_sent',
  'sent_post',
  'post_instagram',
  'instagram_youngest',
  'youngest_engag',
  'engag_parti',
  'parti_weekend',
  'weekend_invit',
  'invit_one',
  'one_photo',
  'photo_stan',
  'stan_read',
  'read_anyon',
  'anyon_father',
  'father_take',
  'take_real',
  'real_man',
  'man_dad',
  'dad_amaz',
  'amaz_guy',
  'guy_dad',
  'dad_year',
  'year_even',
  'even_though',
  'though_bless',
  'bless_walk',
  'walk_aisl',
  'aisl_next',
  'next_year',
  'year_daddysgirl',
  'daddysgirl_futuremrsx',
  'futuremrsx_kid',
  'kid_want',
  'want_noth',
  'noth_entir',
  'entir_live',
  'live_never',
  'never_let',
  'let_go',
  'go_without',
  'without_even',
  'even_talk',
  'talk_made',
  'made_sure',
  'sure_need',
  'need_met',
  'met_text',
  'text_traci',
  'traci_ask',
  'ask_includ',
  'includ_repli',
  'repli_victoria',
  'victoria_want',
  'want_wife',
  'wife_want',
  'want_drama',
  'drama_free',
  'free_day',
  'day_wife',
  'wife_liter',
  'liter_never',
  'never_start',
  'start_drama',
  'drama_life',
  'life_ask',
  'ask_stan',
  'stan_would',
  'would_walk',
  'walk_aisl',
  'aisl_traci',
  'traci_respond',
  'respond_victoria',
  'victoria_call',
  'call_demand',
  'demand_know',
  'know_problem',
  'problem_repeat',
  'repeat_question',
  'question_repli',
  'repli_stan',
  'stan_dad',
  'dad_would',
  'would_walk',
  'walk_aisl',
  'aisl_told',
  'told_want',
  'want_would',
  'would_fine',
  'fine_told',
  'told_let',
  'let_stan',
  'stan_know',
  'know_next',
  'next_payment',
  'payment_wed',
  'wed_due',
  'due_novemb',
  'novemb_stan',
  'stan_traci',
  'traci_money',
  'money_wed',
  'wed_think',
  'think_im',
  'im_asshol',
  'asshol_linda',
  'linda_say',
  'say_victoria',
  'victoria_never',
  'never_speak',
  'speak_michael',
  'michael_side',
  'three_children_ex',
  'children_ex_traci',
  'ex_traci_michael',
  'traci_michael_linda',
  'michael_linda_victoria',
  'linda_victoria_split',
  'victoria_split_traci',
  'split_traci_affair',
  'traci_affair_stan',
  'affair_stan_marri',
  'stan_marri_never',
  'marri_never_share',
  'never_share_kid',
  'share_kid_reason',
  'kid_reason_divorc',
  'reason_divorc_want',
  'divorc_want_blame',
  'want_blame_either',
  'blame_either_us',
  'either_us_backfir',
  'us_backfir_kid',
  'backfir_kid_saw',
  'kid_saw_mom',
  'saw_mom_move',
  'mom_move_hous',
  'move_hous_small',
  'hous_small_apart',
  'small_apart_keep',
  'apart_keep_live',
  'keep_live_hous',
  'live_hous_remarri',
  'hous_remarri_two',
  'remarri_two_year',
  'two_year_divorc',
  'year_divorc_saw',
  'divorc_saw_bad',
  'saw_bad_guy',
  'bad_guy_stan',
  'guy_stan_traci',
  'stan_traci_let',
  'traci_let_pretti',
  'let_pretti_much',
  'pretti_much_whatev',
  'much_whatev_want',
  'whatev_want_disciplinarian',
  'want_disciplinarian_made',
  'disciplinarian_made_sure',
  'made_sure_homework',
  'sure_homework_done',
  'homework_done_appoint',
  'done_appoint_made',
  'appoint_made_deadlin',
  'made_deadlin_met',
  'deadlin_met_two',
  'met_two_oldest',
  'two_oldest_eventu',
  'oldest_eventu_came',
  'eventu_came_realiz',
  'came_realiz_bad',
  'realiz_bad_guy',
  'bad_guy_son',
  'guy_son_found',
  'son_found_mother',
  'found_mother_put',
  'mother_put_noth',
  'put_noth_away',
  'noth_away_colleg',
  'away_colleg_outlin',
  'colleg_outlin_divorc',
  'outlin_divorc_decre',
  'divorc_decre_told',
  'decre_told_take',
  'told_take_loan',
  'take_loan_daughter',
  'loan_daughter_realiz',
  'daughter_realiz_grade',
  'realiz_grade_go',
  'grade_go_keep',
  'go_keep_desir',
  'keep_desir_program',
  'desir_program_school',
  'program_school_youngest',
  'school_youngest_never',
  'youngest_never_came',
  'never_came_around',
  'came_around_surpris',
  'around_surpris_boyfriend',
  'surpris_boyfriend_ask',
  'boyfriend_ask_bless',
  'ask_bless_ask',
  'bless_ask_hand',
  'ask_hand_express',
  'hand_express_think',
  'express_think_shed',
  'think_shed_care',
  'shed_care_bless',
  'care_bless_said',
  'bless_said_insist',
  'said_insist_began',
  'insist_began_spend',
  'began_spend_time',
  'spend_time_polit',
  'time_polit_wife',
  'polit_wife_felt',
  'wife_felt_wonder',
  'felt_wonder_daughter',
  'wonder_daughter_back',
  'daughter_back_went',
  'back_went_book',
  'went_book_venu',
  'book_venu_theyll',
  'venu_theyll_get',
  'theyll_get_marri',
  'get_marri_next',
  'marri_next_summer',
  'next_summer_paid',
  'summer_paid_deposit',
  'paid_deposit_first',
  'deposit_first_instal',
  'first_instal_notic',
  'instal_notic_becom',
  'notic_becom_less',
  'becom_less_commun',
  'less_commun_recent',
  'commun_recent_ignor',
  'recent_ignor_text',
  'ignor_text_give',
  'text_give_one',
  'give_one_word',
  'one_word_repli',
  'word_repli_come',
  'repli_come_much',
  'come_much_monday',
  'much_monday_son',
  'monday_son_sent',
  'son_sent_post',
  'sent_post_instagram',
  'post_instagram_youngest',
  'instagram_youngest_engag',
  'youngest_engag_parti',
  'engag_parti_weekend',
  'parti_weekend_invit',
  'weekend_invit_one',
  'invit_one_photo',
  'one_photo_stan',
  'photo_stan_read',
  'stan_read_anyon',
  'read_anyon_father',
  'anyon_father_take',
  'father_take_real',
  'take_real_man',
  'real_man_dad',
  'man_dad_amaz',
  'dad_amaz_guy',
  'amaz_guy_dad',
  'guy_dad_year',
  'dad_year_even',
  'year_even_though',
  'even_though_bless',
  'though_bless_walk',
  'bless_walk_aisl',
  'walk_aisl_next',
  'aisl_next_year',
  'next_year_daddysgirl',
  'year_daddysgirl_futuremrsx',
  'daddysgirl_futuremrsx_kid',
  'futuremrsx_kid_want',
  'kid_want_noth',
  'want_noth_entir',
  'noth_entir_live',
  'entir_live_never',
  'live_never_let',
  'never_let_go',
  'let_go_without',
  'go_without_even',
  'without_even_talk',
  'even_talk_made',
  'talk_made_sure',
  'made_sure_need',
  'sure_need_met',
  'need_met_text',
  'met_text_traci',
  'text_traci_ask',
  'traci_ask_includ',
  'ask_includ_repli',
  'includ_repli_victoria',
  'repli_victoria_want',
  'victoria_want_wife',
  'want_wife_want',
  'wife_want_drama',
  'want_drama_free',
  'drama_free_day',
  'free_day_wife',
  'day_wife_liter',
  'wife_liter_never',
  'liter_never_start',
  'never_start_drama',
  'start_drama_life',
  'drama_life_ask',
  'life_ask_stan',
  'ask_stan_would',
  'stan_would_walk',
  'would_walk_aisl',
  'walk_aisl_traci',
  'aisl_traci_respond',
  'traci_respond_victoria',
  'respond_victoria_call',
  'victoria_call_demand',
  'call_demand_know',
  'demand_know_problem',
  'know_problem_repeat',
  'problem_repeat_question',
  'repeat_question_repli',
  'question_repli_stan',
  'repli_stan_dad',
  'stan_dad_would',
  'dad_would_walk',
  'would_walk_aisl',
  'walk_aisl_told',
  'aisl_told_want',
  'told_want_would',
  'want_would_fine',
  'would_fine_told',
  'fine_told_let',
  'told_let_stan',
  'let_stan_know',
  'stan_know_next',
  'know_next_payment',
  'next_payment_wed',
  'payment_wed_due',
  'wed_due_novemb',
  'due_novemb_stan',
  'novemb_stan_traci',
  'stan_traci_money',
  'traci_money_wed',
  'money_wed_think',
  'wed_think_im',
  'think_im_asshol',
  'im_asshol_linda',
  'asshol_linda_say',
  'linda_say_victoria',
  'say_victoria_never',
  'victoria_never_speak',
  'never_speak_michael',
  'speak_michael_side'],
 ['month',
  'pregnant',
  'drive',
  'suck',
  'mom',
  'drive',
  'around',
  'husband',
  'work',
  'huge',
  'hour',
  'get',
  'ahead',
  'babi',
  'come',
  'last',
  'month',
  'drove',
  'favorit',
  'chocol',
  'store',
  'stock',
  'favorit',
  'flavor',
  'store',
  'dozen',
  'flavor',
  'chocol',
  'individu',
  'wrap',
  'color',
  'foil',
  'tell',
  'flavor',
  'store',
  'hour',
  'drive',
  'away',
  'home',
  'husband',
  'know',
  'favorit',
  'flavor',
  'half',
  'bag',
  'origin',
  'flavor',
  'even',
  'came',
  'home',
  'work',
  'yesterday',
  'supper',
  'go',
  'sit',
  'watch',
  'tv',
  'waddl',
  'couch',
  'ask',
  'pleas',
  'bring',
  'two',
  'chocol',
  'grab',
  'problem',
  'came',
  'back',
  'couch',
  'chocol',
  'mouth',
  'kiss',
  'knew',
  'flavor',
  'took',
  'admit',
  'took',
  'stracciatella',
  'one',
  'favorit',
  'got',
  'kind',
  'upset',
  'said',
  'big',
  'deal',
  'could',
  'go',
  'mom',
  'get',
  'ye',
  'compani',
  'sell',
  'chocol',
  'everywher',
  'flavor',
  'ive',
  'ever',
  'seen',
  'flavor',
  'store',
  'ask',
  'eat',
  'flavor',
  'lot',
  'face',
  'told',
  'everyth',
  'need',
  'know',
  'yell',
  'like',
  'easi',
  'sit',
  'car',
  'two',
  'hour',
  'said',
  'would',
  'go',
  'right',
  'replac',
  'hit',
  'coupl',
  'drug',
  'store',
  'coupl',
  'groceri',
  'store',
  'told',
  'thing',
  'drove',
  'across',
  'town',
  'came',
  'back',
  'big',
  'bag',
  'flavor',
  'gone',
  'call',
  'mom',
  'said',
  'need',
  'calm',
  'hormon',
  'make',
  'crazi',
  'apolog',
  'husband',
  'still',
  'grumpi',
  'drove',
  'around',
  'hour',
  'get',
  'chocol',
  'think',
  'know',
  'better',
  'eat',
  'favorit',
  'flavor',
  'know',
  'big',
  'problem',
  'stuff',
  'edit',
  'husband',
  'wonder',
  'went',
  'look',
  'replac',
  'chocol',
  'find',
  'nearbi',
  'chose',
  'drive',
  'across',
  'town',
  'forc',
  'said',
  'made',
  'meant',
  'make',
  'happi',
  'sorri',
  'confus',
  'month_pregnant',
  'pregnant_drive',
  'drive_suck',
  'suck_mom',
  'mom_drive',
  'drive_around',
  'around_husband',
  'husband_work',
  'work_huge',
  'huge_hour',
  'hour_get',
  'get_ahead',
  'ahead_babi',
  'babi_come',
  'come_last',
  'last_month',
  'month_drove',
  'drove_favorit',
  'favorit_chocol',
  'chocol_store',
  'store_stock',
  'stock_favorit',
  'favorit_flavor',
  'flavor_store',
  'store_dozen',
  'dozen_flavor',
  'flavor_chocol',
  'chocol_individu',
  'individu_wrap',
  'wrap_color',
  'color_foil',
  'foil_tell',
  'tell_flavor',
  'flavor_store',
  'store_hour',
  'hour_drive',
  'drive_away',
  'away_home',
  'home_husband',
  'husband_know',
  'know_favorit',
  'favorit_flavor',
  'flavor_half',
  'half_bag',
  'bag_origin',
  'origin_flavor',
  'flavor_even',
  'even_came',
  'came_home',
  'home_work',
  'work_yesterday',
  'yesterday_supper',
  'supper_go',
  'go_sit',
  'sit_watch',
  'watch_tv',
  'tv_waddl',
  'waddl_couch',
  'couch_ask',
  'ask_pleas',
  'pleas_bring',
  'bring_two',
  'two_chocol',
  'chocol_grab',
  'grab_problem',
  'problem_came',
  'came_back',
  'back_couch',
  'couch_chocol',
  'chocol_mouth',
  'mouth_kiss',
  'kiss_knew',
  'knew_flavor',
  'flavor_took',
  'took_admit',
  'admit_took',
  'took_stracciatella',
  'stracciatella_one',
  'one_favorit',
  'favorit_got',
  'got_kind',
  'kind_upset',
  'upset_said',
  'said_big',
  'big_deal',
  'deal_could',
  'could_go',
  'go_mom',
  'mom_get',
  'get_ye',
  'ye_compani',
  'compani_sell',
  'sell_chocol',
  'chocol_everywher',
  'everywher_flavor',
  'flavor_ive',
  'ive_ever',
  'ever_seen',
  'seen_flavor',
  'flavor_store',
  'store_ask',
  'ask_eat',
  'eat_flavor',
  'flavor_lot',
  'lot_face',
  'face_told',
  'told_everyth',
  'everyth_need',
  'need_know',
  'know_yell',
  'yell_like',
  'like_easi',
  'easi_sit',
  'sit_car',
  'car_two',
  'two_hour',
  'hour_said',
  'said_would',
  'would_go',
  'go_right',
  'right_replac',
  'replac_hit',
  'hit_coupl',
  'coupl_drug',
  'drug_store',
  'store_coupl',
  'coupl_groceri',
  'groceri_store',
  'store_told',
  'told_thing',
  'thing_drove',
  'drove_across',
  'across_town',
  'town_came',
  'came_back',
  'back_big',
  'big_bag',
  'bag_flavor',
  'flavor_gone',
  'gone_call',
  'call_mom',
  'mom_said',
  'said_need',
  'need_calm',
  'calm_hormon',
  'hormon_make',
  'make_crazi',
  'crazi_apolog',
  'apolog_husband',
  'husband_still',
  'still_grumpi',
  'grumpi_drove',
  'drove_around',
  'around_hour',
  'hour_get',
  'get_chocol',
  'chocol_think',
  'think_know',
  'know_better',
  'better_eat',
  'eat_favorit',
  'favorit_flavor',
  'flavor_know',
  'know_big',
  'big_problem',
  'problem_stuff',
  'stuff_edit',
  'edit_husband',
  'husband_wonder',
  'wonder_went',
  'went_look',
  'look_replac',
  'replac_chocol',
  'chocol_find',
  'find_nearbi',
  'nearbi_chose',
  'chose_drive',
  'drive_across',
  'across_town',
  'town_forc',
  'forc_said',
  'said_made',
  'made_meant',
  'meant_make',
  'make_happi',
  'happi_sorri',
  'sorri_confus',
  'month_pregnant_drive',
  'pregnant_drive_suck',
  'drive_suck_mom',
  'suck_mom_drive',
  'mom_drive_around',
  'drive_around_husband',
  'around_husband_work',
  'husband_work_huge',
  'work_huge_hour',
  'huge_hour_get',
  'hour_get_ahead',
  'get_ahead_babi',
  'ahead_babi_come',
  'babi_come_last',
  'come_last_month',
  'last_month_drove',
  'month_drove_favorit',
  'drove_favorit_chocol',
  'favorit_chocol_store',
  'chocol_store_stock',
  'store_stock_favorit',
  'stock_favorit_flavor',
  'favorit_flavor_store',
  'flavor_store_dozen',
  'store_dozen_flavor',
  'dozen_flavor_chocol',
  'flavor_chocol_individu',
  'chocol_individu_wrap',
  'individu_wrap_color',
  'wrap_color_foil',
  'color_foil_tell',
  'foil_tell_flavor',
  'tell_flavor_store',
  'flavor_store_hour',
  'store_hour_drive',
  'hour_drive_away',
  'drive_away_home',
  'away_home_husband',
  'home_husband_know',
  'husband_know_favorit',
  'know_favorit_flavor',
  'favorit_flavor_half',
  'flavor_half_bag',
  'half_bag_origin',
  'bag_origin_flavor',
  'origin_flavor_even',
  'flavor_even_came',
  'even_came_home',
  'came_home_work',
  'home_work_yesterday',
  'work_yesterday_supper',
  'yesterday_supper_go',
  'supper_go_sit',
  'go_sit_watch',
  'sit_watch_tv',
  'watch_tv_waddl',
  'tv_waddl_couch',
  'waddl_couch_ask',
  'couch_ask_pleas',
  'ask_pleas_bring',
  'pleas_bring_two',
  'bring_two_chocol',
  'two_chocol_grab',
  'chocol_grab_problem',
  'grab_problem_came',
  'problem_came_back',
  'came_back_couch',
  'back_couch_chocol',
  'couch_chocol_mouth',
  'chocol_mouth_kiss',
  'mouth_kiss_knew',
  'kiss_knew_flavor',
  'knew_flavor_took',
  'flavor_took_admit',
  'took_admit_took',
  'admit_took_stracciatella',
  'took_stracciatella_one',
  'stracciatella_one_favorit',
  'one_favorit_got',
  'favorit_got_kind',
  'got_kind_upset',
  'kind_upset_said',
  'upset_said_big',
  'said_big_deal',
  'big_deal_could',
  'deal_could_go',
  'could_go_mom',
  'go_mom_get',
  'mom_get_ye',
  'get_ye_compani',
  'ye_compani_sell',
  'compani_sell_chocol',
  'sell_chocol_everywher',
  'chocol_everywher_flavor',
  'everywher_flavor_ive',
  'flavor_ive_ever',
  'ive_ever_seen',
  'ever_seen_flavor',
  'seen_flavor_store',
  'flavor_store_ask',
  'store_ask_eat',
  'ask_eat_flavor',
  'eat_flavor_lot',
  'flavor_lot_face',
  'lot_face_told',
  'face_told_everyth',
  'told_everyth_need',
  'everyth_need_know',
  'need_know_yell',
  'know_yell_like',
  'yell_like_easi',
  'like_easi_sit',
  'easi_sit_car',
  'sit_car_two',
  'car_two_hour',
  'two_hour_said',
  'hour_said_would',
  'said_would_go',
  'would_go_right',
  'go_right_replac',
  'right_replac_hit',
  'replac_hit_coupl',
  'hit_coupl_drug',
  'coupl_drug_store',
  'drug_store_coupl',
  'store_coupl_groceri',
  'coupl_groceri_store',
  'groceri_store_told',
  'store_told_thing',
  'told_thing_drove',
  'thing_drove_across',
  'drove_across_town',
  'across_town_came',
  'town_came_back',
  'came_back_big',
  'back_big_bag',
  'big_bag_flavor',
  'bag_flavor_gone',
  'flavor_gone_call',
  'gone_call_mom',
  'call_mom_said',
  'mom_said_need',
  'said_need_calm',
  'need_calm_hormon',
  'calm_hormon_make',
  'hormon_make_crazi',
  'make_crazi_apolog',
  'crazi_apolog_husband',
  'apolog_husband_still',
  'husband_still_grumpi',
  'still_grumpi_drove',
  'grumpi_drove_around',
  'drove_around_hour',
  'around_hour_get',
  'hour_get_chocol',
  'get_chocol_think',
  'chocol_think_know',
  'think_know_better',
  'know_better_eat',
  'better_eat_favorit',
  'eat_favorit_flavor',
  'favorit_flavor_know',
  'flavor_know_big',
  'know_big_problem',
  'big_problem_stuff',
  'problem_stuff_edit',
  'stuff_edit_husband',
  'edit_husband_wonder',
  'husband_wonder_went',
  'wonder_went_look',
  'went_look_replac',
  'look_replac_chocol',
  'replac_chocol_find',
  'chocol_find_nearbi',
  'find_nearbi_chose',
  'nearbi_chose_drive',
  'chose_drive_across',
  'drive_across_town',
  'across_town_forc',
  'town_forc_said',
  'forc_said_made',
  'said_made_meant',
  'made_meant_make',
  'meant_make_happi',
  'make_happi_sorri',
  'happi_sorri_confus'],
 ['boyfriend',
  'ryan',
  'like',
  'help',
  'type',
  'guy',
  'would',
  'give',
  'cowork',
  'money',
  'rent',
  'buy',
  'groceri',
  'neighbor',
  'howev',
  'take',
  'far',
  'time',
  'often',
  'tri',
  'help',
  'peopl',
  'without',
  'ask',
  'need',
  'want',
  'help',
  'everi',
  'year',
  'brother',
  'paul',
  'wife',
  'lili',
  'host',
  'holiday',
  'dinner',
  'year',
  'ryan',
  'attend',
  'first',
  'time',
  'left',
  'hous',
  'told',
  'ryan',
  'lili',
  'legal',
  'blind',
  'entir',
  'life',
  'knew',
  'could',
  'could',
  'told',
  'ryan',
  'help',
  'lili',
  'ask',
  'help',
  'arriv',
  'earli',
  'could',
  'help',
  'paul',
  'lili',
  'cook',
  'cook',
  'ryan',
  'kept',
  'tell',
  'lili',
  'thing',
  'like',
  'lili',
  'look',
  'salt',
  'right',
  'lili',
  'put',
  'close',
  'edg',
  'lili',
  'paul',
  'told',
  'commentari',
  'somewhat',
  'help',
  'complet',
  'unnecessari',
  'still',
  'ryan',
  'stop',
  'howev',
  'thing',
  'becam',
  'tens',
  'lili',
  'went',
  'go',
  'chop',
  'veget',
  'pull',
  'knife',
  'ryan',
  'stop',
  'ask',
  'could',
  'take',
  'want',
  'lili',
  'hurt',
  'lili',
  'said',
  'shed',
  'fine',
  'ryan',
  'insist',
  'give',
  'knife',
  'final',
  'paul',
  'got',
  'annoy',
  'told',
  'ryan',
  'stop',
  'ryan',
  'stop',
  'kept',
  'hover',
  'lili',
  'chop',
  'ask',
  'ryan',
  'sit',
  'dinner',
  'readi',
  'ryan',
  'insist',
  'want',
  'help',
  'final',
  'lili',
  'ask',
  'help',
  'set',
  'tabl',
  'greet',
  'peopl',
  'arriv',
  'thing',
  'still',
  'tens',
  'pull',
  'ryan',
  'side',
  'remind',
  'help',
  'lili',
  'ask',
  'agre',
  'could',
  'tell',
  'still',
  'upset',
  'everyth',
  'final',
  'boil',
  'dinner',
  'niec',
  '&',
  'game',
  'love',
  'play',
  'mother',
  'hand',
  'lili',
  'someth',
  'lili',
  'would',
  'guess',
  'lili',
  'would',
  'sometim',
  'make',
  'coupl',
  'clearli',
  'outrag',
  'guess',
  'like',
  'say',
  'egg',
  'eleph',
  'shoe',
  'make',
  'daughter',
  'laugh',
  'dinner',
  'eldest',
  'hand',
  'lili',
  'salt',
  'shaker',
  'lili',
  'guess',
  'phone',
  'ryan',
  'pipe',
  'said',
  'salt',
  'shaker',
  'lili',
  'laugh',
  'explain',
  'game',
  'ryan',
  'could',
  'see',
  'annoy',
  'niec',
  'hand',
  'lili',
  'coin',
  'lili',
  'guess',
  'incorrectli',
  'ryan',
  'loudli',
  'told',
  'lili',
  'coin',
  'appar',
  'last',
  'straw',
  'paul',
  'paul',
  'demand',
  'ryan',
  'leav',
  'sinc',
  'clearli',
  'respect',
  'lili',
  'ryan',
  'insist',
  'tri',
  'help',
  'howev',
  'lili',
  'said',
  'probabl',
  'best',
  'ryan',
  'left',
  'quickli',
  'gather',
  'thing',
  'manag',
  'convinc',
  'ryan',
  'leav',
  'ryan',
  'current',
  'piss',
  'said',
  'defend',
  'especi',
  'sinc',
  'knew',
  'help',
  'also',
  'insist',
  'stood',
  'paul',
  'overreact',
  'ryan',
  'word',
  'im',
  'wonder',
  'defend',
  'ryan',
  'aita',
  'boyfriend_ryan',
  'ryan_like',
  'like_help',
  'help_type',
  'type_guy',
  'guy_would',
  'would_give',
  'give_cowork',
  'cowork_money',
  'money_rent',
  'rent_buy',
  'buy_groceri',
  'groceri_neighbor',
  'neighbor_howev',
  'howev_take',
  'take_far',
  'far_time',
  'time_often',
  'often_tri',
  'tri_help',
  'help_peopl',
  'peopl_without',
  'without_ask',
  'ask_need',
  'need_want',
  'want_help',
  'help_everi',
  'everi_year',
  'year_brother',
  'brother_paul',
  'paul_wife',
  'wife_lili',
  'lili_host',
  'host_holiday',
  'holiday_dinner',
  'dinner_year',
  'year_ryan',
  'ryan_attend',
  'attend_first',
  'first_time',
  'time_left',
  'left_hous',
  'hous_told',
  'told_ryan',
  'ryan_lili',
  'lili_legal',
  'legal_blind',
  'blind_entir',
  'entir_life',
  'life_knew',
  'knew_could',
  'could_could',
  'could_told',
  'told_ryan',
  'ryan_help',
  'help_lili',
  'lili_ask',
  'ask_help',
  'help_arriv',
  'arriv_earli',
  'earli_could',
  'could_help',
  'help_paul',
  'paul_lili',
  'lili_cook',
  'cook_cook',
  'cook_ryan',
  'ryan_kept',
  'kept_tell',
  'tell_lili',
  'lili_thing',
  'thing_like',
  'like_lili',
  'lili_look',
  'look_salt',
  'salt_right',
  'right_lili',
  'lili_put',
  'put_close',
  'close_edg',
  'edg_lili',
  'lili_paul',
  'paul_told',
  'told_commentari',
  'commentari_somewhat',
  'somewhat_help',
  'help_complet',
  'complet_unnecessari',
  'unnecessari_still',
  'still_ryan',
  'ryan_stop',
  'stop_howev',
  'howev_thing',
  'thing_becam',
  'becam_tens',
  'tens_lili',
  'lili_went',
  'went_go',
  'go_chop',
  'chop_veget',
  'veget_pull',
  'pull_knife',
  'knife_ryan',
  'ryan_stop',
  'stop_ask',
  'ask_could',
  'could_take',
  'take_want',
  'want_lili',
  'lili_hurt',
  'hurt_lili',
  'lili_said',
  'said_shed',
  'shed_fine',
  'fine_ryan',
  'ryan_insist',
  'insist_give',
  'give_knife',
  'knife_final',
  'final_paul',
  'paul_got',
  'got_annoy',
  'annoy_told',
  'told_ryan',
  'ryan_stop',
  'stop_ryan',
  'ryan_stop',
  'stop_kept',
  'kept_hover',
  'hover_lili',
  'lili_chop',
  'chop_ask',
  'ask_ryan',
  'ryan_sit',
  'sit_dinner',
  'dinner_readi',
  'readi_ryan',
  'ryan_insist',
  'insist_want',
  'want_help',
  'help_final',
  'final_lili',
  'lili_ask',
  'ask_help',
  'help_set',
  'set_tabl',
  'tabl_greet',
  'greet_peopl',
  'peopl_arriv',
  'arriv_thing',
  'thing_still',
  'still_tens',
  'tens_pull',
  'pull_ryan',
  'ryan_side',
  'side_remind',
  'remind_help',
  'help_lili',
  'lili_ask',
  'ask_agre',
  'agre_could',
  'could_tell',
  'tell_still',
  'still_upset',
  'upset_everyth',
  'everyth_final',
  'final_boil',
  'boil_dinner',
  'dinner_niec',
  'niec_&',
  '&_game',
  'game_love',
  'love_play',
  'play_mother',
  'mother_hand',
  'hand_lili',
  'lili_someth',
  'someth_lili',
  'lili_would',
  'would_guess',
  'guess_lili',
  'lili_would',
  'would_sometim',
  'sometim_make',
  'make_coupl',
  'coupl_clearli',
  'clearli_outrag',
  'outrag_guess',
  'guess_like',
  'like_say',
  'say_egg',
  'egg_eleph',
  'eleph_shoe',
  'shoe_make',
  'make_daughter',
  'daughter_laugh',
  'laugh_dinner',
  'dinner_eldest',
  'eldest_hand',
  'hand_lili',
  'lili_salt',
  'salt_shaker',
  'shaker_lili',
  'lili_guess',
  'guess_phone',
  'phone_ryan',
  'ryan_pipe',
  'pipe_said',
  'said_salt',
  'salt_shaker',
  'shaker_lili',
  'lili_laugh',
  'laugh_explain',
  'explain_game',
  'game_ryan',
  'ryan_could',
  'could_see',
  'see_annoy',
  'annoy_niec',
  'niec_hand',
  'hand_lili',
  'lili_coin',
  'coin_lili',
  'lili_guess',
  'guess_incorrectli',
  'incorrectli_ryan',
  'ryan_loudli',
  'loudli_told',
  'told_lili',
  'lili_coin',
  'coin_appar',
  'appar_last',
  'last_straw',
  'straw_paul',
  'paul_paul',
  'paul_demand',
  'demand_ryan',
  'ryan_leav',
  'leav_sinc',
  'sinc_clearli',
  'clearli_respect',
  'respect_lili',
  'lili_ryan',
  'ryan_insist',
  'insist_tri',
  'tri_help',
  'help_howev',
  'howev_lili',
  'lili_said',
  'said_probabl',
  'probabl_best',
  'best_ryan',
  'ryan_left',
  'left_quickli',
  'quickli_gather',
  'gather_thing',
  'thing_manag',
  'manag_convinc',
  'convinc_ryan',
  'ryan_leav',
  'leav_ryan',
  'ryan_current',
  'current_piss',
  'piss_said',
  'said_defend',
  'defend_especi',
  'especi_sinc',
  'sinc_knew',
  'knew_help',
  'help_also',
  'also_insist',
  'insist_stood',
  'stood_paul',
  'paul_overreact',
  'overreact_ryan',
  'ryan_word',
  'word_im',
  'im_wonder',
  'wonder_defend',
  'defend_ryan',
  'ryan_aita',
  'boyfriend_ryan_like',
  'ryan_like_help',
  'like_help_type',
  'help_type_guy',
  'type_guy_would',
  'guy_would_give',
  'would_give_cowork',
  'give_cowork_money',
  'cowork_money_rent',
  'money_rent_buy',
  'rent_buy_groceri',
  'buy_groceri_neighbor',
  'groceri_neighbor_howev',
  'neighbor_howev_take',
  'howev_take_far',
  'take_far_time',
  'far_time_often',
  'time_often_tri',
  'often_tri_help',
  'tri_help_peopl',
  'help_peopl_without',
  'peopl_without_ask',
  'without_ask_need',
  'ask_need_want',
  'need_want_help',
  'want_help_everi',
  'help_everi_year',
  'everi_year_brother',
  'year_brother_paul',
  'brother_paul_wife',
  'paul_wife_lili',
  'wife_lili_host',
  'lili_host_holiday',
  'host_holiday_dinner',
  'holiday_dinner_year',
  'dinner_year_ryan',
  'year_ryan_attend',
  'ryan_attend_first',
  'attend_first_time',
  'first_time_left',
  'time_left_hous',
  'left_hous_told',
  'hous_told_ryan',
  'told_ryan_lili',
  'ryan_lili_legal',
  'lili_legal_blind',
  'legal_blind_entir',
  'blind_entir_life',
  'entir_life_knew',
  'life_knew_could',
  'knew_could_could',
  'could_could_told',
  'could_told_ryan',
  'told_ryan_help',
  'ryan_help_lili',
  'help_lili_ask',
  'lili_ask_help',
  'ask_help_arriv',
  'help_arriv_earli',
  'arriv_earli_could',
  'earli_could_help',
  'could_help_paul',
  'help_paul_lili',
  'paul_lili_cook',
  'lili_cook_cook',
  'cook_cook_ryan',
  'cook_ryan_kept',
  'ryan_kept_tell',
  'kept_tell_lili',
  'tell_lili_thing',
  'lili_thing_like',
  'thing_like_lili',
  'like_lili_look',
  'lili_look_salt',
  'look_salt_right',
  'salt_right_lili',
  'right_lili_put',
  'lili_put_close',
  'put_close_edg',
  'close_edg_lili',
  'edg_lili_paul',
  'lili_paul_told',
  'paul_told_commentari',
  'told_commentari_somewhat',
  'commentari_somewhat_help',
  'somewhat_help_complet',
  'help_complet_unnecessari',
  'complet_unnecessari_still',
  'unnecessari_still_ryan',
  'still_ryan_stop',
  'ryan_stop_howev',
  'stop_howev_thing',
  'howev_thing_becam',
  'thing_becam_tens',
  'becam_tens_lili',
  'tens_lili_went',
  'lili_went_go',
  'went_go_chop',
  'go_chop_veget',
  'chop_veget_pull',
  'veget_pull_knife',
  'pull_knife_ryan',
  'knife_ryan_stop',
  'ryan_stop_ask',
  'stop_ask_could',
  'ask_could_take',
  'could_take_want',
  'take_want_lili',
  'want_lili_hurt',
  'lili_hurt_lili',
  'hurt_lili_said',
  'lili_said_shed',
  'said_shed_fine',
  'shed_fine_ryan',
  'fine_ryan_insist',
  'ryan_insist_give',
  'insist_give_knife',
  'give_knife_final',
  'knife_final_paul',
  'final_paul_got',
  'paul_got_annoy',
  'got_annoy_told',
  'annoy_told_ryan',
  'told_ryan_stop',
  'ryan_stop_ryan',
  'stop_ryan_stop',
  'ryan_stop_kept',
  'stop_kept_hover',
  'kept_hover_lili',
  'hover_lili_chop',
  'lili_chop_ask',
  'chop_ask_ryan',
  'ask_ryan_sit',
  'ryan_sit_dinner',
  'sit_dinner_readi',
  'dinner_readi_ryan',
  'readi_ryan_insist',
  'ryan_insist_want',
  'insist_want_help',
  'want_help_final',
  'help_final_lili',
  'final_lili_ask',
  'lili_ask_help',
  'ask_help_set',
  'help_set_tabl',
  'set_tabl_greet',
  'tabl_greet_peopl',
  'greet_peopl_arriv',
  'peopl_arriv_thing',
  'arriv_thing_still',
  'thing_still_tens',
  'still_tens_pull',
  'tens_pull_ryan',
  'pull_ryan_side',
  'ryan_side_remind',
  'side_remind_help',
  'remind_help_lili',
  'help_lili_ask',
  'lili_ask_agre',
  'ask_agre_could',
  'agre_could_tell',
  'could_tell_still',
  'tell_still_upset',
  'still_upset_everyth',
  'upset_everyth_final',
  'everyth_final_boil',
  'final_boil_dinner',
  'boil_dinner_niec',
  'dinner_niec_&',
  'niec_&_game',
  '&_game_love',
  'game_love_play',
  'love_play_mother',
  'play_mother_hand',
  'mother_hand_lili',
  'hand_lili_someth',
  'lili_someth_lili',
  'someth_lili_would',
  'lili_would_guess',
  'would_guess_lili',
  'guess_lili_would',
  'lili_would_sometim',
  'would_sometim_make',
  'sometim_make_coupl',
  'make_coupl_clearli',
  'coupl_clearli_outrag',
  'clearli_outrag_guess',
  'outrag_guess_like',
  'guess_like_say',
  'like_say_egg',
  'say_egg_eleph',
  'egg_eleph_shoe',
  'eleph_shoe_make',
  'shoe_make_daughter',
  'make_daughter_laugh',
  'daughter_laugh_dinner',
  'laugh_dinner_eldest',
  'dinner_eldest_hand',
  'eldest_hand_lili',
  'hand_lili_salt',
  'lili_salt_shaker',
  'salt_shaker_lili',
  'shaker_lili_guess',
  'lili_guess_phone',
  'guess_phone_ryan',
  'phone_ryan_pipe',
  'ryan_pipe_said',
  'pipe_said_salt',
  'said_salt_shaker',
  'salt_shaker_lili',
  'shaker_lili_laugh',
  'lili_laugh_explain',
  'laugh_explain_game',
  'explain_game_ryan',
  'game_ryan_could',
  'ryan_could_see',
  'could_see_annoy',
  'see_annoy_niec',
  'annoy_niec_hand',
  'niec_hand_lili',
  'hand_lili_coin',
  'lili_coin_lili',
  'coin_lili_guess',
  'lili_guess_incorrectli',
  'guess_incorrectli_ryan',
  'incorrectli_ryan_loudli',
  'ryan_loudli_told',
  'loudli_told_lili',
  'told_lili_coin',
  'lili_coin_appar',
  'coin_appar_last',
  'appar_last_straw',
  'last_straw_paul',
  'straw_paul_paul',
  'paul_paul_demand',
  'paul_demand_ryan',
  'demand_ryan_leav',
  'ryan_leav_sinc',
  'leav_sinc_clearli',
  'sinc_clearli_respect',
  'clearli_respect_lili',
  'respect_lili_ryan',
  'lili_ryan_insist',
  'ryan_insist_tri',
  'insist_tri_help',
  'tri_help_howev',
  'help_howev_lili',
  'howev_lili_said',
  'lili_said_probabl',
  'said_probabl_best',
  'probabl_best_ryan',
  'best_ryan_left',
  'ryan_left_quickli',
  'left_quickli_gather',
  'quickli_gather_thing',
  'gather_thing_manag',
  'thing_manag_convinc',
  'manag_convinc_ryan',
  'convinc_ryan_leav',
  'ryan_leav_ryan',
  'leav_ryan_current',
  'ryan_current_piss',
  'current_piss_said',
  'piss_said_defend',
  'said_defend_especi',
  'defend_especi_sinc',
  'especi_sinc_knew',
  'sinc_knew_help',
  'knew_help_also',
  'help_also_insist',
  'also_insist_stood',
  'insist_stood_paul',
  'stood_paul_overreact',
  'paul_overreact_ryan',
  'overreact_ryan_word',
  'ryan_word_im',
  'word_im_wonder',
  'im_wonder_defend',
  'wonder_defend_ryan',
  'defend_ryan_aita'],
 ['im',
  'engag',
  'fianc',
  'yo',
  'daughter',
  'yo',
  'daughter',
  'come',
  'conserv',
  'famili',
  'move',
  'togeth',
  'til',
  'marriag',
  'far',
  'good',
  'term',
  'blend',
  'famili',
  'notic',
  'stepdaught',
  'act',
  'kind',
  'distant',
  'toward',
  'daughter',
  'everytim',
  'tri',
  'talk',
  'fianc',
  'hed',
  'tell',
  'give',
  'kid',
  'chanc',
  'bond',
  'warm',
  'stepdaught',
  'th',
  'birthday',
  'took',
  'place',
  'sunday',
  'sinc',
  'bake',
  'decid',
  'bake',
  'cupcak',
  'instead',
  'actual',
  'birthday',
  'cake',
  'daughter',
  'went',
  'fianc',
  'hous',
  'attend',
  'parti',
  'brought',
  'stepdaught',
  'gift',
  'iphon',
  'sat',
  'start',
  'serv',
  'everyon',
  'cupcak',
  'daughter',
  'turn',
  'bluntli',
  'said',
  'sorri',
  'save',
  'daughter',
  'felt',
  'confus',
  'ask',
  'made',
  'enough',
  'cupcak',
  'wether',
  'guest',
  'came',
  'uninvit',
  'said',
  'make',
  'one',
  'daughter',
  'ask',
  'refus',
  'say',
  'mad',
  'felt',
  'hurt',
  'daughter',
  'behalf',
  'got',
  'told',
  'fianc',
  'want',
  'leav',
  'fianc',
  'tri',
  'stop',
  'offer',
  'cupcak',
  'daughter',
  'refus',
  'take',
  'way',
  'grab',
  'gift',
  'brought',
  'stepdaught',
  'stood',
  'watch',
  'could',
  'hear',
  'yell',
  'dad',
  'took',
  'iphon',
  'walk',
  'daughter',
  'fianc',
  'tri',
  'get',
  'go',
  'back',
  'insid',
  'refus',
  'later',
  'came',
  'argument',
  'said',
  'overreact',
  'know',
  'teenag',
  'moodi',
  'random',
  'stuff',
  'without',
  'explan',
  'taken',
  'person',
  'said',
  'exclud',
  'daughter',
  'save',
  'cupcak',
  'said',
  'cupcak',
  'remind',
  'offer',
  'cupcak',
  'said',
  'accept',
  'call',
  'day',
  'said',
  'take',
  'iphon',
  '*',
  'suppos',
  'gift',
  '*',
  'back',
  'poor',
  'tast',
  'might',
  'hurt',
  'relationship',
  'daughter',
  'refus',
  'give',
  'could',
  'give',
  'sinc',
  'cri',
  'left',
  'mad',
  'talk',
  'sinc',
  'except',
  'via',
  'text',
  'edit',
  'want',
  'iphon',
  'sinc',
  'dad',
  'buy',
  'decid',
  'itd',
  'nice',
  'gift',
  'ask',
  'teenag',
  'could',
  'iphon',
  'im',
  'sorri',
  'uncommon',
  'live',
  'live',
  'iphon',
  'common',
  'phone',
  'also',
  'saw',
  'serv',
  'girlfriend',
  'whole',
  'plate',
  'cupcak',
  'like',
  'bake',
  'specif',
  'number',
  'im_engag',
  'engag_fianc',
  'fianc_yo',
  'yo_daughter',
  'daughter_yo',
  'yo_daughter',
  'daughter_come',
  'come_conserv',
  'conserv_famili',
  'famili_move',
  'move_togeth',
  'togeth_til',
  'til_marriag',
  'marriag_far',
  'far_good',
  'good_term',
  'term_blend',
  'blend_famili',
  'famili_notic',
  'notic_stepdaught',
  'stepdaught_act',
  'act_kind',
  'kind_distant',
  'distant_toward',
  'toward_daughter',
  'daughter_everytim',
  'everytim_tri',
  'tri_talk',
  'talk_fianc',
  'fianc_hed',
  'hed_tell',
  'tell_give',
  'give_kid',
  'kid_chanc',
  'chanc_bond',
  'bond_warm',
  'warm_stepdaught',
  'stepdaught_th',
  'th_birthday',
  'birthday_took',
  'took_place',
  'place_sunday',
  'sunday_sinc',
  'sinc_bake',
  'bake_decid',
  'decid_bake',
  'bake_cupcak',
  'cupcak_instead',
  'instead_actual',
  'actual_birthday',
  'birthday_cake',
  'cake_daughter',
  'daughter_went',
  'went_fianc',
  'fianc_hous',
  'hous_attend',
  'attend_parti',
  'parti_brought',
  'brought_stepdaught',
  'stepdaught_gift',
  'gift_iphon',
  'iphon_sat',
  'sat_start',
  'start_serv',
  'serv_everyon',
  'everyon_cupcak',
  'cupcak_daughter',
  'daughter_turn',
  'turn_bluntli',
  'bluntli_said',
  'said_sorri',
  'sorri_save',
  'save_daughter',
  'daughter_felt',
  'felt_confus',
  'confus_ask',
  'ask_made',
  'made_enough',
  'enough_cupcak',
  'cupcak_wether',
  'wether_guest',
  'guest_came',
  'came_uninvit',
  'uninvit_said',
  'said_make',
  'make_one',
  'one_daughter',
  'daughter_ask',
  'ask_refus',
  'refus_say',
  'say_mad',
  'mad_felt',
  'felt_hurt',
  'hurt_daughter',
  'daughter_behalf',
  'behalf_got',
  'got_told',
  'told_fianc',
  'fianc_want',
  'want_leav',
  'leav_fianc',
  'fianc_tri',
  'tri_stop',
  'stop_offer',
  'offer_cupcak',
  'cupcak_daughter',
  'daughter_refus',
  'refus_take',
  'take_way',
  'way_grab',
  'grab_gift',
  'gift_brought',
  'brought_stepdaught',
  'stepdaught_stood',
  'stood_watch',
  'watch_could',
  'could_hear',
  'hear_yell',
  'yell_dad',
  'dad_took',
  'took_iphon',
  'iphon_walk',
  'walk_daughter',
  'daughter_fianc',
  'fianc_tri',
  'tri_get',
  'get_go',
  'go_back',
  'back_insid',
  'insid_refus',
  'refus_later',
  'later_came',
  'came_argument',
  'argument_said',
  'said_overreact',
  'overreact_know',
  'know_teenag',
  'teenag_moodi',
  'moodi_random',
  'random_stuff',
  'stuff_without',
  'without_explan',
  'explan_taken',
  'taken_person',
  'person_said',
  'said_exclud',
  'exclud_daughter',
  'daughter_save',
  'save_cupcak',
  'cupcak_said',
  'said_cupcak',
  'cupcak_remind',
  'remind_offer',
  'offer_cupcak',
  'cupcak_said',
  'said_accept',
  'accept_call',
  'call_day',
  'day_said',
  'said_take',
  'take_iphon',
  'iphon_*',
  '*_suppos',
  'suppos_gift',
  'gift_*',
  '*_back',
  'back_poor',
  'poor_tast',
  'tast_might',
  'might_hurt',
  'hurt_relationship',
  'relationship_daughter',
  'daughter_refus',
  'refus_give',
  'give_could',
  'could_give',
  'give_sinc',
  'sinc_cri',
  'cri_left',
  'left_mad',
  'mad_talk',
  'talk_sinc',
  'sinc_except',
  'except_via',
  'via_text',
  'text_edit',
  'edit_want',
  'want_iphon',
  'iphon_sinc',
  'sinc_dad',
  'dad_buy',
  'buy_decid',
  'decid_itd',
  'itd_nice',
  'nice_gift',
  'gift_ask',
  'ask_teenag',
  'teenag_could',
  'could_iphon',
  'iphon_im',
  'im_sorri',
  'sorri_uncommon',
  'uncommon_live',
  'live_live',
  'live_iphon',
  'iphon_common',
  'common_phone',
  'phone_also',
  'also_saw',
  'saw_serv',
  'serv_girlfriend',
  'girlfriend_whole',
  'whole_plate',
  'plate_cupcak',
  'cupcak_like',
  'like_bake',
  'bake_specif',
  'specif_number',
  'im_engag_fianc',
  'engag_fianc_yo',
  'fianc_yo_daughter',
  'yo_daughter_yo',
  'daughter_yo_daughter',
  'yo_daughter_come',
  'daughter_come_conserv',
  'come_conserv_famili',
  'conserv_famili_move',
  'famili_move_togeth',
  'move_togeth_til',
  'togeth_til_marriag',
  'til_marriag_far',
  'marriag_far_good',
  'far_good_term',
  'good_term_blend',
  'term_blend_famili',
  'blend_famili_notic',
  'famili_notic_stepdaught',
  'notic_stepdaught_act',
  'stepdaught_act_kind',
  'act_kind_distant',
  'kind_distant_toward',
  'distant_toward_daughter',
  'toward_daughter_everytim',
  'daughter_everytim_tri',
  'everytim_tri_talk',
  'tri_talk_fianc',
  'talk_fianc_hed',
  'fianc_hed_tell',
  'hed_tell_give',
  'tell_give_kid',
  'give_kid_chanc',
  'kid_chanc_bond',
  'chanc_bond_warm',
  'bond_warm_stepdaught',
  'warm_stepdaught_th',
  'stepdaught_th_birthday',
  'th_birthday_took',
  'birthday_took_place',
  'took_place_sunday',
  'place_sunday_sinc',
  'sunday_sinc_bake',
  'sinc_bake_decid',
  'bake_decid_bake',
  'decid_bake_cupcak',
  'bake_cupcak_instead',
  'cupcak_instead_actual',
  'instead_actual_birthday',
  'actual_birthday_cake',
  'birthday_cake_daughter',
  'cake_daughter_went',
  'daughter_went_fianc',
  'went_fianc_hous',
  'fianc_hous_attend',
  'hous_attend_parti',
  'attend_parti_brought',
  'parti_brought_stepdaught',
  'brought_stepdaught_gift',
  'stepdaught_gift_iphon',
  'gift_iphon_sat',
  'iphon_sat_start',
  'sat_start_serv',
  'start_serv_everyon',
  'serv_everyon_cupcak',
  'everyon_cupcak_daughter',
  'cupcak_daughter_turn',
  'daughter_turn_bluntli',
  'turn_bluntli_said',
  'bluntli_said_sorri',
  'said_sorri_save',
  'sorri_save_daughter',
  'save_daughter_felt',
  'daughter_felt_confus',
  'felt_confus_ask',
  'confus_ask_made',
  'ask_made_enough',
  'made_enough_cupcak',
  'enough_cupcak_wether',
  'cupcak_wether_guest',
  'wether_guest_came',
  'guest_came_uninvit',
  'came_uninvit_said',
  'uninvit_said_make',
  'said_make_one',
  'make_one_daughter',
  'one_daughter_ask',
  'daughter_ask_refus',
  'ask_refus_say',
  'refus_say_mad',
  'say_mad_felt',
  'mad_felt_hurt',
  'felt_hurt_daughter',
  'hurt_daughter_behalf',
  'daughter_behalf_got',
  'behalf_got_told',
  'got_told_fianc',
  'told_fianc_want',
  'fianc_want_leav',
  'want_leav_fianc',
  'leav_fianc_tri',
  'fianc_tri_stop',
  'tri_stop_offer',
  'stop_offer_cupcak',
  'offer_cupcak_daughter',
  'cupcak_daughter_refus',
  'daughter_refus_take',
  'refus_take_way',
  'take_way_grab',
  'way_grab_gift',
  'grab_gift_brought',
  'gift_brought_stepdaught',
  'brought_stepdaught_stood',
  'stepdaught_stood_watch',
  'stood_watch_could',
  'watch_could_hear',
  'could_hear_yell',
  'hear_yell_dad',
  'yell_dad_took',
  'dad_took_iphon',
  'took_iphon_walk',
  'iphon_walk_daughter',
  'walk_daughter_fianc',
  'daughter_fianc_tri',
  'fianc_tri_get',
  'tri_get_go',
  'get_go_back',
  'go_back_insid',
  'back_insid_refus',
  'insid_refus_later',
  'refus_later_came',
  'later_came_argument',
  'came_argument_said',
  'argument_said_overreact',
  'said_overreact_know',
  'overreact_know_teenag',
  'know_teenag_moodi',
  'teenag_moodi_random',
  'moodi_random_stuff',
  'random_stuff_without',
  'stuff_without_explan',
  'without_explan_taken',
  'explan_taken_person',
  'taken_person_said',
  'person_said_exclud',
  'said_exclud_daughter',
  'exclud_daughter_save',
  'daughter_save_cupcak',
  'save_cupcak_said',
  'cupcak_said_cupcak',
  'said_cupcak_remind',
  'cupcak_remind_offer',
  'remind_offer_cupcak',
  'offer_cupcak_said',
  'cupcak_said_accept',
  'said_accept_call',
  'accept_call_day',
  'call_day_said',
  'day_said_take',
  'said_take_iphon',
  'take_iphon_*',
  'iphon_*_suppos',
  '*_suppos_gift',
  'suppos_gift_*',
  'gift_*_back',
  '*_back_poor',
  'back_poor_tast',
  'poor_tast_might',
  'tast_might_hurt',
  'might_hurt_relationship',
  'hurt_relationship_daughter',
  'relationship_daughter_refus',
  'daughter_refus_give',
  'refus_give_could',
  'give_could_give',
  'could_give_sinc',
  'give_sinc_cri',
  'sinc_cri_left',
  'cri_left_mad',
  'left_mad_talk',
  'mad_talk_sinc',
  'talk_sinc_except',
  'sinc_except_via',
  'except_via_text',
  'via_text_edit',
  'text_edit_want',
  'edit_want_iphon',
  'want_iphon_sinc',
  'iphon_sinc_dad',
  'sinc_dad_buy',
  'dad_buy_decid',
  'buy_decid_itd',
  'decid_itd_nice',
  'itd_nice_gift',
  'nice_gift_ask',
  'gift_ask_teenag',
  'ask_teenag_could',
  'teenag_could_iphon',
  'could_iphon_im',
  'iphon_im_sorri',
  'im_sorri_uncommon',
  'sorri_uncommon_live',
  'uncommon_live_live',
  'live_live_iphon',
  'live_iphon_common',
  'iphon_common_phone',
  'common_phone_also',
  'phone_also_saw',
  'also_saw_serv',
  'saw_serv_girlfriend',
  'serv_girlfriend_whole',
  'girlfriend_whole_plate',
  'whole_plate_cupcak',
  'plate_cupcak_like',
  'cupcak_like_bake',
  'like_bake_specif',
  'bake_specif_number'],
 ['husband',
  'mom',
  'move',
  'us',
  'week',
  'ago',
  'minut',
  'inform',
  'go',
  'move',
  'temporarili',
  'til',
  'hous',
  'get',
  'renov',
  'weve',
  'empti',
  'room',
  'specif',
  '-',
  'everyth',
  'bed',
  'frame',
  'curtain',
  'mount',
  'tv',
  'wardrob',
  'etc',
  'thrill',
  'love',
  'lot',
  'one',
  'day',
  'came',
  'home',
  'found',
  'bedroom',
  'sleep',
  'mine',
  'husband',
  'bed',
  'confus',
  'told',
  'took',
  'nap',
  'bed',
  'lost',
  'track',
  'time',
  'sinc',
  'start',
  'talk',
  'love',
  'nap',
  'start',
  'hint',
  'want',
  'take',
  'map',
  'bedroom',
  'kept',
  'ignor',
  'comment',
  'til',
  'husband',
  'sat',
  'told',
  'mom',
  'realli',
  'like',
  'got',
  'use',
  'nap',
  'bedroom',
  'let',
  'daili',
  'afternoon',
  'nap',
  'room',
  'said',
  'absolut',
  'start',
  'debat',
  'told',
  'mom',
  'ridicul',
  'whole',
  'room',
  'upstair',
  'nap',
  'got',
  'upset',
  'said',
  'make',
  'mom',
  'feel',
  'uncomfort',
  'unwelcom',
  'attitud',
  'said',
  'refus',
  'negoti',
  'call',
  'selfish',
  'mean',
  'say',
  'prevent',
  'mom',
  'feel',
  'comfort',
  'hous',
  'remind',
  'pay',
  'full',
  'mortgag',
  'hous',
  'blow',
  'money',
  'gadget',
  'consol',
  'accus',
  'bring',
  'old',
  'disagr',
  'current',
  'conflict',
  'use',
  'said',
  'stop',
  'push',
  'need',
  'room',
  'get',
  'home',
  'feel',
  'exhaust',
  'work',
  'feet',
  'refus',
  'speak',
  'til',
  'agre',
  'let',
  'mom',
  'nap',
  'aita',
  'choos',
  'hill',
  'die',
  'say',
  'difficult',
  'husband_mom',
  'mom_move',
  'move_us',
  'us_week',
  'week_ago',
  'ago_minut',
  'minut_inform',
  'inform_go',
  'go_move',
  'move_temporarili',
  'temporarili_til',
  'til_hous',
  'hous_get',
  'get_renov',
  'renov_weve',
  'weve_empti',
  'empti_room',
  'room_specif',
  'specif_-',
  '-_everyth',
  'everyth_bed',
  'bed_frame',
  'frame_curtain',
  'curtain_mount',
  'mount_tv',
  'tv_wardrob',
  'wardrob_etc',
  'etc_thrill',
  'thrill_love',
  'love_lot',
  'lot_one',
  'one_day',
  'day_came',
  'came_home',
  'home_found',
  'found_bedroom',
  'bedroom_sleep',
  'sleep_mine',
  'mine_husband',
  'husband_bed',
  'bed_confus',
  'confus_told',
  'told_took',
  'took_nap',
  'nap_bed',
  'bed_lost',
  'lost_track',
  'track_time',
  'time_sinc',
  'sinc_start',
  'start_talk',
  'talk_love',
  'love_nap',
  'nap_start',
  'start_hint',
  'hint_want',
  'want_take',
  'take_map',
  'map_bedroom',
  'bedroom_kept',
  'kept_ignor',
  'ignor_comment',
  'comment_til',
  'til_husband',
  'husband_sat',
  'sat_told',
  'told_mom',
  'mom_realli',
  'realli_like',
  'like_got',
  'got_use',
  'use_nap',
  'nap_bedroom',
  'bedroom_let',
  'let_daili',
  'daili_afternoon',
  'afternoon_nap',
  'nap_room',
  'room_said',
  'said_absolut',
  'absolut_start',
  'start_debat',
  'debat_told',
  'told_mom',
  'mom_ridicul',
  'ridicul_whole',
  'whole_room',
  'room_upstair',
  'upstair_nap',
  'nap_got',
  'got_upset',
  'upset_said',
  'said_make',
  'make_mom',
  'mom_feel',
  'feel_uncomfort',
  'uncomfort_unwelcom',
  'unwelcom_attitud',
  'attitud_said',
  'said_refus',
  'refus_negoti',
  'negoti_call',
  'call_selfish',
  'selfish_mean',
  'mean_say',
  'say_prevent',
  'prevent_mom',
  'mom_feel',
  'feel_comfort',
  'comfort_hous',
  'hous_remind',
  'remind_pay',
  'pay_full',
  'full_mortgag',
  'mortgag_hous',
  'hous_blow',
  'blow_money',
  'money_gadget',
  'gadget_consol',
  'consol_accus',
  'accus_bring',
  'bring_old',
  'old_disagr',
  'disagr_current',
  'current_conflict',
  'conflict_use',
  'use_said',
  'said_stop',
  'stop_push',
  'push_need',
  'need_room',
  'room_get',
  'get_home',
  'home_feel',
  'feel_exhaust',
  'exhaust_work',
  'work_feet',
  'feet_refus',
  'refus_speak',
  'speak_til',
  'til_agre',
  'agre_let',
  'let_mom',
  'mom_nap',
  'nap_aita',
  'aita_choos',
  'choos_hill',
  'hill_die',
  'die_say',
  'say_difficult',
  'husband_mom_move',
  'mom_move_us',
  'move_us_week',
  'us_week_ago',
  'week_ago_minut',
  'ago_minut_inform',
  'minut_inform_go',
  'inform_go_move',
  'go_move_temporarili',
  'move_temporarili_til',
  'temporarili_til_hous',
  'til_hous_get',
  'hous_get_renov',
  'get_renov_weve',
  'renov_weve_empti',
  'weve_empti_room',
  'empti_room_specif',
  'room_specif_-',
  'specif_-_everyth',
  '-_everyth_bed',
  'everyth_bed_frame',
  'bed_frame_curtain',
  'frame_curtain_mount',
  'curtain_mount_tv',
  'mount_tv_wardrob',
  'tv_wardrob_etc',
  'wardrob_etc_thrill',
  'etc_thrill_love',
  'thrill_love_lot',
  'love_lot_one',
  'lot_one_day',
  'one_day_came',
  'day_came_home',
  'came_home_found',
  'home_found_bedroom',
  'found_bedroom_sleep',
  'bedroom_sleep_mine',
  'sleep_mine_husband',
  'mine_husband_bed',
  'husband_bed_confus',
  'bed_confus_told',
  'confus_told_took',
  'told_took_nap',
  'took_nap_bed',
  'nap_bed_lost',
  'bed_lost_track',
  'lost_track_time',
  'track_time_sinc',
  'time_sinc_start',
  'sinc_start_talk',
  'start_talk_love',
  'talk_love_nap',
  'love_nap_start',
  'nap_start_hint',
  'start_hint_want',
  'hint_want_take',
  'want_take_map',
  'take_map_bedroom',
  'map_bedroom_kept',
  'bedroom_kept_ignor',
  'kept_ignor_comment',
  'ignor_comment_til',
  'comment_til_husband',
  'til_husband_sat',
  'husband_sat_told',
  'sat_told_mom',
  'told_mom_realli',
  'mom_realli_like',
  'realli_like_got',
  'like_got_use',
  'got_use_nap',
  'use_nap_bedroom',
  'nap_bedroom_let',
  'bedroom_let_daili',
  'let_daili_afternoon',
  'daili_afternoon_nap',
  'afternoon_nap_room',
  'nap_room_said',
  'room_said_absolut',
  'said_absolut_start',
  'absolut_start_debat',
  'start_debat_told',
  'debat_told_mom',
  'told_mom_ridicul',
  'mom_ridicul_whole',
  'ridicul_whole_room',
  'whole_room_upstair',
  'room_upstair_nap',
  'upstair_nap_got',
  'nap_got_upset',
  'got_upset_said',
  'upset_said_make',
  'said_make_mom',
  'make_mom_feel',
  'mom_feel_uncomfort',
  'feel_uncomfort_unwelcom',
  'uncomfort_unwelcom_attitud',
  'unwelcom_attitud_said',
  'attitud_said_refus',
  'said_refus_negoti',
  'refus_negoti_call',
  'negoti_call_selfish',
  'call_selfish_mean',
  'selfish_mean_say',
  'mean_say_prevent',
  'say_prevent_mom',
  'prevent_mom_feel',
  'mom_feel_comfort',
  'feel_comfort_hous',
  'comfort_hous_remind',
  'hous_remind_pay',
  'remind_pay_full',
  'pay_full_mortgag',
  'full_mortgag_hous',
  'mortgag_hous_blow',
  'hous_blow_money',
  'blow_money_gadget',
  'money_gadget_consol',
  'gadget_consol_accus',
  'consol_accus_bring',
  'accus_bring_old',
  'bring_old_disagr',
  'old_disagr_current',
  'disagr_current_conflict',
  'current_conflict_use',
  'conflict_use_said',
  'use_said_stop',
  'said_stop_push',
  'stop_push_need',
  'push_need_room',
  'need_room_get',
  'room_get_home',
  'get_home_feel',
  'home_feel_exhaust',
  'feel_exhaust_work',
  'exhaust_work_feet',
  'work_feet_refus',
  'feet_refus_speak',
  'refus_speak_til',
  'speak_til_agre',
  'til_agre_let',
  'agre_let_mom',
  'let_mom_nap',
  'mom_nap_aita',
  'nap_aita_choos',
  'aita_choos_hill',
  'choos_hill_die',
  'hill_die_say',
  'die_say_difficult'],
 ['job',
  'take',
  'care',
  'two',
  'kid',
  'dog',
  'light',
  'housework',
  'day',
  'week',
  'singl',
  'mom',
  'got',
  'contact',
  'info',
  'busi',
  'card',
  'post',
  'dad',
  'pediatr',
  'therapi',
  'offic',
  'ever',
  'sinc',
  'weather',
  'start',
  'get',
  'warmer',
  'dog',
  'shed',
  'like',
  'crazi',
  'like',
  'would',
  'vacuum',
  'couch',
  'next',
  'day',
  'would',
  'look',
  'like',
  'would',
  'lightli',
  'tug',
  'dog',
  'hair',
  'would',
  'pull',
  'huge',
  'tuft',
  'dog',
  'scratch',
  'time',
  'etc',
  'dad',
  'dog',
  'doubl',
  'coat',
  'like',
  'one',
  'morn',
  'leav',
  'work',
  'pack',
  'brush',
  'tool',
  'bag',
  'kid',
  'nap',
  'spent',
  'full',
  'hour',
  'outsid',
  'brush',
  'dog',
  'dog',
  'seem',
  'enjoy',
  'brush',
  'hour',
  'huge',
  'pile',
  'hair',
  'brush',
  'vacuum',
  'sent',
  'mom',
  'thought',
  'would',
  'funni',
  'text',
  'say',
  'brush',
  'whole',
  'new',
  'dog',
  '\\',
  '[',
  'dog\\',
  ']',
  'coat',
  'look',
  'back',
  'realiz',
  'mayb',
  'ask',
  'first',
  'time',
  'seem',
  'like',
  'someth',
  'within',
  'scope',
  'care',
  'dog',
  'mom',
  'went',
  'ballist',
  'call',
  'yell',
  'say',
  'brush',
  'dog',
  'let',
  'hair',
  'fall',
  'caus',
  'harm',
  'dog',
  'said',
  'idiot',
  'cant',
  'believ',
  'trust',
  'kid',
  'today',
  'last',
  'day',
  'extrem',
  'upset',
  'famili',
  'month',
  'never',
  'yell',
  'like',
  'left',
  'soon',
  'got',
  'home',
  'still',
  'fume',
  'immedi',
  'line',
  'job',
  'anoth',
  'famili',
  'suppos',
  'start',
  'monday',
  'mom',
  'yell',
  'call',
  'two',
  'day',
  'later',
  'say',
  'sorri',
  'misunderstand',
  'fire',
  'overreact',
  'told',
  'longer',
  'avail',
  'start',
  'cri',
  'hard',
  'find',
  'new',
  'sitter',
  'special',
  'need',
  'kid',
  'kid',
  'autist',
  'therapi',
  'dad',
  'offic',
  'stood',
  'firm',
  'start',
  'text',
  'dad',
  'ask',
  'someth',
  'dad',
  'annoy',
  'drag',
  'respect',
  'decis',
  'wish',
  'would',
  'keep',
  'watch',
  'kid',
  'short',
  'time',
  'keep',
  'peac',
  'hate',
  'put',
  'anyon',
  'awkward',
  'posit',
  'also',
  'want',
  'work',
  'someon',
  'like',
  'aita',
  'edit',
  'want',
  'keep',
  'clarifi',
  'dad',
  'aba',
  'therapist',
  'physic',
  'therapist',
  'job_take',
  'take_care',
  'care_two',
  'two_kid',
  'kid_dog',
  'dog_light',
  'light_housework',
  'housework_day',
  'day_week',
  'week_singl',
  'singl_mom',
  'mom_got',
  'got_contact',
  'contact_info',
  'info_busi',
  'busi_card',
  'card_post',
  'post_dad',
  'dad_pediatr',
  'pediatr_therapi',
  'therapi_offic',
  'offic_ever',
  'ever_sinc',
  'sinc_weather',
  'weather_start',
  'start_get',
  'get_warmer',
  'warmer_dog',
  'dog_shed',
  'shed_like',
  'like_crazi',
  'crazi_like',
  'like_would',
  'would_vacuum',
  'vacuum_couch',
  'couch_next',
  'next_day',
  'day_would',
  'would_look',
  'look_like',
  'like_would',
  'would_lightli',
  'lightli_tug',
  'tug_dog',
  'dog_hair',
  'hair_would',
  'would_pull',
  'pull_huge',
  'huge_tuft',
  'tuft_dog',
  'dog_scratch',
  'scratch_time',
  'time_etc',
  'etc_dad',
  'dad_dog',
  'dog_doubl',
  'doubl_coat',
  'coat_like',
  'like_one',
  'one_morn',
  'morn_leav',
  'leav_work',
  'work_pack',
  'pack_brush',
  'brush_tool',
  'tool_bag',
  'bag_kid',
  'kid_nap',
  'nap_spent',
  'spent_full',
  'full_hour',
  'hour_outsid',
  'outsid_brush',
  'brush_dog',
  'dog_dog',
  'dog_seem',
  'seem_enjoy',
  'enjoy_brush',
  'brush_hour',
  'hour_huge',
  'huge_pile',
  'pile_hair',
  'hair_brush',
  'brush_vacuum',
  'vacuum_sent',
  'sent_mom',
  'mom_thought',
  'thought_would',
  'would_funni',
  'funni_text',
  'text_say',
  'say_brush',
  'brush_whole',
  'whole_new',
  'new_dog',
  'dog_\\',
  '\\_[',
  '[_dog\\',
  'dog\\_]',
  ']_coat',
  'coat_look',
  'look_back',
  'back_realiz',
  'realiz_mayb',
  'mayb_ask',
  'ask_first',
  'first_time',
  'time_seem',
  'seem_like',
  'like_someth',
  'someth_within',
  'within_scope',
  'scope_care',
  'care_dog',
  'dog_mom',
  'mom_went',
  'went_ballist',
  'ballist_call',
  'call_yell',
  'yell_say',
  'say_brush',
  'brush_dog',
  'dog_let',
  'let_hair',
  'hair_fall',
  'fall_caus',
  'caus_harm',
  'harm_dog',
  'dog_said',
  'said_idiot',
  'idiot_cant',
  'cant_believ',
  'believ_trust',
  'trust_kid',
  'kid_today',
  'today_last',
  'last_day',
  'day_extrem',
  'extrem_upset',
  'upset_famili',
  'famili_month',
  'month_never',
  'never_yell',
  'yell_like',
  'like_left',
  'left_soon',
  'soon_got',
  'got_home',
  'home_still',
  'still_fume',
  'fume_immedi',
  'immedi_line',
  'line_job',
  'job_anoth',
  'anoth_famili',
  'famili_suppos',
  'suppos_start',
  'start_monday',
  'monday_mom',
  'mom_yell',
  'yell_call',
  'call_two',
  'two_day',
  'day_later',
  'later_say',
  'say_sorri',
  'sorri_misunderstand',
  'misunderstand_fire',
  'fire_overreact',
  'overreact_told',
  'told_longer',
  'longer_avail',
  'avail_start',
  'start_cri',
  'cri_hard',
  'hard_find',
  'find_new',
  'new_sitter',
  'sitter_special',
  'special_need',
  'need_kid',
  'kid_kid',
  'kid_autist',
  'autist_therapi',
  'therapi_dad',
  'dad_offic',
  'offic_stood',
  'stood_firm',
  'firm_start',
  'start_text',
  'text_dad',
  'dad_ask',
  'ask_someth',
  'someth_dad',
  'dad_annoy',
  'annoy_drag',
  'drag_respect',
  'respect_decis',
  'decis_wish',
  'wish_would',
  'would_keep',
  'keep_watch',
  'watch_kid',
  'kid_short',
  'short_time',
  'time_keep',
  'keep_peac',
  'peac_hate',
  'hate_put',
  'put_anyon',
  'anyon_awkward',
  'awkward_posit',
  'posit_also',
  'also_want',
  'want_work',
  'work_someon',
  'someon_like',
  'like_aita',
  'aita_edit',
  'edit_want',
  'want_keep',
  'keep_clarifi',
  'clarifi_dad',
  'dad_aba',
  'aba_therapist',
  'therapist_physic',
  'physic_therapist',
  'job_take_care',
  'take_care_two',
  'care_two_kid',
  'two_kid_dog',
  'kid_dog_light',
  'dog_light_housework',
  'light_housework_day',
  'housework_day_week',
  'day_week_singl',
  'week_singl_mom',
  'singl_mom_got',
  'mom_got_contact',
  'got_contact_info',
  'contact_info_busi',
  'info_busi_card',
  'busi_card_post',
  'card_post_dad',
  'post_dad_pediatr',
  'dad_pediatr_therapi',
  'pediatr_therapi_offic',
  'therapi_offic_ever',
  'offic_ever_sinc',
  'ever_sinc_weather',
  'sinc_weather_start',
  'weather_start_get',
  'start_get_warmer',
  'get_warmer_dog',
  'warmer_dog_shed',
  'dog_shed_like',
  'shed_like_crazi',
  'like_crazi_like',
  'crazi_like_would',
  'like_would_vacuum',
  'would_vacuum_couch',
  'vacuum_couch_next',
  'couch_next_day',
  'next_day_would',
  'day_would_look',
  'would_look_like',
  'look_like_would',
  'like_would_lightli',
  'would_lightli_tug',
  'lightli_tug_dog',
  'tug_dog_hair',
  'dog_hair_would',
  'hair_would_pull',
  'would_pull_huge',
  'pull_huge_tuft',
  'huge_tuft_dog',
  'tuft_dog_scratch',
  'dog_scratch_time',
  'scratch_time_etc',
  'time_etc_dad',
  'etc_dad_dog',
  'dad_dog_doubl',
  'dog_doubl_coat',
  'doubl_coat_like',
  'coat_like_one',
  'like_one_morn',
  'one_morn_leav',
  'morn_leav_work',
  'leav_work_pack',
  'work_pack_brush',
  'pack_brush_tool',
  'brush_tool_bag',
  'tool_bag_kid',
  'bag_kid_nap',
  'kid_nap_spent',
  'nap_spent_full',
  'spent_full_hour',
  'full_hour_outsid',
  'hour_outsid_brush',
  'outsid_brush_dog',
  'brush_dog_dog',
  'dog_dog_seem',
  'dog_seem_enjoy',
  'seem_enjoy_brush',
  'enjoy_brush_hour',
  'brush_hour_huge',
  'hour_huge_pile',
  'huge_pile_hair',
  'pile_hair_brush',
  'hair_brush_vacuum',
  'brush_vacuum_sent',
  'vacuum_sent_mom',
  'sent_mom_thought',
  'mom_thought_would',
  'thought_would_funni',
  'would_funni_text',
  'funni_text_say',
  'text_say_brush',
  'say_brush_whole',
  'brush_whole_new',
  'whole_new_dog',
  'new_dog_\\',
  'dog_\\_[',
  '\\_[_dog\\',
  '[_dog\\_]',
  'dog\\_]_coat',
  ']_coat_look',
  'coat_look_back',
  'look_back_realiz',
  'back_realiz_mayb',
  'realiz_mayb_ask',
  'mayb_ask_first',
  'ask_first_time',
  'first_time_seem',
  'time_seem_like',
  'seem_like_someth',
  'like_someth_within',
  'someth_within_scope',
  'within_scope_care',
  'scope_care_dog',
  'care_dog_mom',
  'dog_mom_went',
  'mom_went_ballist',
  'went_ballist_call',
  'ballist_call_yell',
  'call_yell_say',
  'yell_say_brush',
  'say_brush_dog',
  'brush_dog_let',
  'dog_let_hair',
  'let_hair_fall',
  'hair_fall_caus',
  'fall_caus_harm',
  'caus_harm_dog',
  'harm_dog_said',
  'dog_said_idiot',
  'said_idiot_cant',
  'idiot_cant_believ',
  'cant_believ_trust',
  'believ_trust_kid',
  'trust_kid_today',
  'kid_today_last',
  'today_last_day',
  'last_day_extrem',
  'day_extrem_upset',
  'extrem_upset_famili',
  'upset_famili_month',
  'famili_month_never',
  'month_never_yell',
  'never_yell_like',
  'yell_like_left',
  'like_left_soon',
  'left_soon_got',
  'soon_got_home',
  'got_home_still',
  'home_still_fume',
  'still_fume_immedi',
  'fume_immedi_line',
  'immedi_line_job',
  'line_job_anoth',
  'job_anoth_famili',
  'anoth_famili_suppos',
  'famili_suppos_start',
  'suppos_start_monday',
  'start_monday_mom',
  'monday_mom_yell',
  'mom_yell_call',
  'yell_call_two',
  'call_two_day',
  'two_day_later',
  'day_later_say',
  'later_say_sorri',
  'say_sorri_misunderstand',
  'sorri_misunderstand_fire',
  'misunderstand_fire_overreact',
  'fire_overreact_told',
  'overreact_told_longer',
  'told_longer_avail',
  'longer_avail_start',
  'avail_start_cri',
  'start_cri_hard',
  'cri_hard_find',
  'hard_find_new',
  'find_new_sitter',
  'new_sitter_special',
  'sitter_special_need',
  'special_need_kid',
  'need_kid_kid',
  'kid_kid_autist',
  'kid_autist_therapi',
  'autist_therapi_dad',
  'therapi_dad_offic',
  'dad_offic_stood',
  'offic_stood_firm',
  'stood_firm_start',
  'firm_start_text',
  'start_text_dad',
  'text_dad_ask',
  'dad_ask_someth',
  'ask_someth_dad',
  'someth_dad_annoy',
  'dad_annoy_drag',
  'annoy_drag_respect',
  'drag_respect_decis',
  'respect_decis_wish',
  'decis_wish_would',
  'wish_would_keep',
  'would_keep_watch',
  'keep_watch_kid',
  'watch_kid_short',
  'kid_short_time',
  'short_time_keep',
  'time_keep_peac',
  'keep_peac_hate',
  'peac_hate_put',
  'hate_put_anyon',
  'put_anyon_awkward',
  'anyon_awkward_posit',
  'awkward_posit_also',
  'posit_also_want',
  'also_want_work',
  'want_work_someon',
  'work_someon_like',
  'someon_like_aita',
  'like_aita_edit',
  'aita_edit_want',
  'edit_want_keep',
  'want_keep_clarifi',
  'keep_clarifi_dad',
  'clarifi_dad_aba',
  'dad_aba_therapist',
  'aba_therapist_physic',
  'therapist_physic_therapist'],
 ['throw',
  'away',
  'account',
  'wife',
  'work',
  'full',
  'time',
  'cna',
  'school',
  'becom',
  'autopsi',
  'technician',
  'work',
  'lot',
  'constantli',
  'pick',
  'extra',
  'shift',
  'work',
  'doubl',
  'even',
  'tripl',
  'top',
  'go',
  'school',
  'full',
  'time',
  'often',
  'take',
  'nap',
  'work',
  'well',
  'yesterday',
  'friend',
  'call',
  'wife',
  'get',
  'along',
  'make',
  'uncomfort',
  'prevent',
  'one',
  'see',
  'friend',
  'one',
  'us',
  'like',
  'friend',
  'mine',
  'wife',
  'hous',
  'play',
  'video',
  'game',
  'wife',
  'call',
  'tell',
  'way',
  'home',
  'work',
  'sound',
  'exhaust',
  'ask',
  'felt',
  'ok',
  'drive',
  'id',
  'come',
  'pick',
  'work',
  'go',
  'back',
  'togeth',
  'car',
  'later',
  'say',
  'fine',
  'drive',
  'shell',
  'see',
  'later',
  'said',
  'ok',
  'told',
  'love',
  'go',
  'back',
  'play',
  'video',
  'game',
  'worth',
  'mention',
  'tv',
  'wife',
  'bedroom',
  'lay',
  'bed',
  'play',
  'sit',
  'desk',
  'chair',
  'minut',
  'later',
  'hear',
  'wife',
  'come',
  'hous',
  'call',
  'let',
  'know',
  'home',
  'come',
  'live',
  'room',
  'give',
  'kiss',
  'collaps',
  'arm',
  'exhaust',
  'point',
  'even',
  'walk',
  'bedroom',
  'ask',
  'ok',
  'say',
  'yea',
  'long',
  'day',
  'work',
  'realli',
  'need',
  'nap',
  'nod',
  'told',
  'come',
  'lay',
  'bed',
  'get',
  'bedroom',
  'polit',
  'tell',
  'need',
  'leav',
  'wife',
  'exhaust',
  'could',
  'play',
  'later',
  'night',
  'ask',
  'need',
  'leav',
  'wife',
  'cant',
  'sleep',
  'keep',
  'play',
  'explain',
  'game',
  'wife',
  'need',
  'came',
  'first',
  'ask',
  'wife',
  'take',
  'nap',
  'live',
  'room',
  'couch',
  'told',
  'make',
  'sleep',
  'sofa',
  'want',
  'keep',
  'play',
  'get',
  'piss',
  'slam',
  'control',
  'dresser',
  'goe',
  'leav',
  'turn',
  'wife',
  'tell',
  'ill',
  'bet',
  'happi',
  'alway',
  'feel',
  'like',
  'pick',
  'anyon',
  'els',
  'leav',
  'slam',
  'door',
  'way',
  'wife',
  'turn',
  'start',
  'apolog',
  'say',
  'could',
  'slept',
  'couch',
  'tell',
  'tell',
  'get',
  'rest',
  'later',
  'night',
  'friend',
  'blow',
  'phone',
  'say',
  'thing',
  'along',
  'line',
  'bro',
  'hoe',
  'say',
  'rude',
  'kick',
  'wife',
  'could',
  'sleep',
  'marri',
  'friend',
  'howev',
  'side',
  'say',
  'wife',
  'need',
  'come',
  'first',
  'friend',
  'say',
  'speak',
  'apolog',
  'asshol',
  'throw_away',
  'away_account',
  'account_wife',
  'wife_work',
  'work_full',
  'full_time',
  'time_cna',
  'cna_school',
  'school_becom',
  'becom_autopsi',
  'autopsi_technician',
  'technician_work',
  'work_lot',
  'lot_constantli',
  'constantli_pick',
  'pick_extra',
  'extra_shift',
  'shift_work',
  'work_doubl',
  'doubl_even',
  'even_tripl',
  'tripl_top',
  'top_go',
  'go_school',
  'school_full',
  'full_time',
  'time_often',
  'often_take',
  'take_nap',
  'nap_work',
  'work_well',
  'well_yesterday',
  'yesterday_friend',
  'friend_call',
  'call_wife',
  'wife_get',
  'get_along',
  'along_make',
  'make_uncomfort',
  'uncomfort_prevent',
  'prevent_one',
  'one_see',
  'see_friend',
  'friend_one',
  'one_us',
  'us_like',
  'like_friend',
  'friend_mine',
  'mine_wife',
  'wife_hous',
  'hous_play',
  'play_video',
  'video_game',
  'game_wife',
  'wife_call',
  'call_tell',
  'tell_way',
  'way_home',
  'home_work',
  'work_sound',
  'sound_exhaust',
  'exhaust_ask',
  'ask_felt',
  'felt_ok',
  'ok_drive',
  'drive_id',
  'id_come',
  'come_pick',
  'pick_work',
  'work_go',
  'go_back',
  'back_togeth',
  'togeth_car',
  'car_later',
  'later_say',
  'say_fine',
  'fine_drive',
  'drive_shell',
  'shell_see',
  'see_later',
  'later_said',
  'said_ok',
  'ok_told',
  'told_love',
  'love_go',
  'go_back',
  'back_play',
  'play_video',
  'video_game',
  'game_worth',
  'worth_mention',
  'mention_tv',
  'tv_wife',
  'wife_bedroom',
  'bedroom_lay',
  'lay_bed',
  'bed_play',
  'play_sit',
  'sit_desk',
  'desk_chair',
  'chair_minut',
  'minut_later',
  'later_hear',
  'hear_wife',
  'wife_come',
  'come_hous',
  'hous_call',
  'call_let',
  'let_know',
  'know_home',
  'home_come',
  'come_live',
  'live_room',
  'room_give',
  'give_kiss',
  'kiss_collaps',
  'collaps_arm',
  'arm_exhaust',
  'exhaust_point',
  'point_even',
  'even_walk',
  'walk_bedroom',
  'bedroom_ask',
  'ask_ok',
  'ok_say',
  'say_yea',
  'yea_long',
  'long_day',
  'day_work',
  'work_realli',
  'realli_need',
  'need_nap',
  'nap_nod',
  'nod_told',
  'told_come',
  'come_lay',
  'lay_bed',
  'bed_get',
  'get_bedroom',
  'bedroom_polit',
  'polit_tell',
  'tell_need',
  'need_leav',
  'leav_wife',
  'wife_exhaust',
  'exhaust_could',
  'could_play',
  'play_later',
  'later_night',
  'night_ask',
  'ask_need',
  'need_leav',
  'leav_wife',
  'wife_cant',
  'cant_sleep',
  'sleep_keep',
  'keep_play',
  'play_explain',
  'explain_game',
  'game_wife',
  'wife_need',
  'need_came',
  'came_first',
  'first_ask',
  'ask_wife',
  'wife_take',
  'take_nap',
  'nap_live',
  'live_room',
  'room_couch',
  'couch_told',
  'told_make',
  'make_sleep',
  'sleep_sofa',
  'sofa_want',
  'want_keep',
  'keep_play',
  'play_get',
  'get_piss',
  'piss_slam',
  'slam_control',
  'control_dresser',
  'dresser_goe',
  'goe_leav',
  'leav_turn',
  'turn_wife',
  'wife_tell',
  'tell_ill',
  'ill_bet',
  'bet_happi',
  'happi_alway',
  'alway_feel',
  'feel_like',
  'like_pick',
  'pick_anyon',
  'anyon_els',
  'els_leav',
  'leav_slam',
  'slam_door',
  'door_way',
  'way_wife',
  'wife_turn',
  'turn_start',
  'start_apolog',
  'apolog_say',
  'say_could',
  'could_slept',
  'slept_couch',
  'couch_tell',
  'tell_tell',
  'tell_get',
  'get_rest',
  'rest_later',
  'later_night',
  'night_friend',
  'friend_blow',
  'blow_phone',
  'phone_say',
  'say_thing',
  'thing_along',
  'along_line',
  'line_bro',
  'bro_hoe',
  'hoe_say',
  'say_rude',
  'rude_kick',
  'kick_wife',
  'wife_could',
  'could_sleep',
  'sleep_marri',
  'marri_friend',
  'friend_howev',
  'howev_side',
  'side_say',
  'say_wife',
  'wife_need',
  'need_come',
  'come_first',
  'first_friend',
  'friend_say',
  'say_speak',
  'speak_apolog',
  'apolog_asshol',
  'throw_away_account',
  'away_account_wife',
  'account_wife_work',
  'wife_work_full',
  'work_full_time',
  'full_time_cna',
  'time_cna_school',
  'cna_school_becom',
  'school_becom_autopsi',
  'becom_autopsi_technician',
  'autopsi_technician_work',
  'technician_work_lot',
  'work_lot_constantli',
  'lot_constantli_pick',
  'constantli_pick_extra',
  'pick_extra_shift',
  'extra_shift_work',
  'shift_work_doubl',
  'work_doubl_even',
  'doubl_even_tripl',
  'even_tripl_top',
  'tripl_top_go',
  'top_go_school',
  'go_school_full',
  'school_full_time',
  'full_time_often',
  'time_often_take',
  'often_take_nap',
  'take_nap_work',
  'nap_work_well',
  'work_well_yesterday',
  'well_yesterday_friend',
  'yesterday_friend_call',
  'friend_call_wife',
  'call_wife_get',
  'wife_get_along',
  'get_along_make',
  'along_make_uncomfort',
  'make_uncomfort_prevent',
  'uncomfort_prevent_one',
  'prevent_one_see',
  'one_see_friend',
  'see_friend_one',
  'friend_one_us',
  'one_us_like',
  'us_like_friend',
  'like_friend_mine',
  'friend_mine_wife',
  'mine_wife_hous',
  'wife_hous_play',
  'hous_play_video',
  'play_video_game',
  'video_game_wife',
  'game_wife_call',
  'wife_call_tell',
  'call_tell_way',
  'tell_way_home',
  'way_home_work',
  'home_work_sound',
  'work_sound_exhaust',
  'sound_exhaust_ask',
  'exhaust_ask_felt',
  'ask_felt_ok',
  'felt_ok_drive',
  'ok_drive_id',
  'drive_id_come',
  'id_come_pick',
  'come_pick_work',
  'pick_work_go',
  'work_go_back',
  'go_back_togeth',
  'back_togeth_car',
  'togeth_car_later',
  'car_later_say',
  'later_say_fine',
  'say_fine_drive',
  'fine_drive_shell',
  'drive_shell_see',
  'shell_see_later',
  'see_later_said',
  'later_said_ok',
  'said_ok_told',
  'ok_told_love',
  'told_love_go',
  'love_go_back',
  'go_back_play',
  'back_play_video',
  'play_video_game',
  'video_game_worth',
  'game_worth_mention',
  'worth_mention_tv',
  'mention_tv_wife',
  'tv_wife_bedroom',
  'wife_bedroom_lay',
  'bedroom_lay_bed',
  'lay_bed_play',
  'bed_play_sit',
  'play_sit_desk',
  'sit_desk_chair',
  'desk_chair_minut',
  'chair_minut_later',
  'minut_later_hear',
  'later_hear_wife',
  'hear_wife_come',
  'wife_come_hous',
  'come_hous_call',
  'hous_call_let',
  'call_let_know',
  'let_know_home',
  'know_home_come',
  'home_come_live',
  'come_live_room',
  'live_room_give',
  'room_give_kiss',
  'give_kiss_collaps',
  'kiss_collaps_arm',
  'collaps_arm_exhaust',
  'arm_exhaust_point',
  'exhaust_point_even',
  'point_even_walk',
  'even_walk_bedroom',
  'walk_bedroom_ask',
  'bedroom_ask_ok',
  'ask_ok_say',
  'ok_say_yea',
  'say_yea_long',
  'yea_long_day',
  'long_day_work',
  'day_work_realli',
  'work_realli_need',
  'realli_need_nap',
  'need_nap_nod',
  'nap_nod_told',
  'nod_told_come',
  'told_come_lay',
  'come_lay_bed',
  'lay_bed_get',
  'bed_get_bedroom',
  'get_bedroom_polit',
  'bedroom_polit_tell',
  'polit_tell_need',
  'tell_need_leav',
  'need_leav_wife',
  'leav_wife_exhaust',
  'wife_exhaust_could',
  'exhaust_could_play',
  'could_play_later',
  'play_later_night',
  'later_night_ask',
  'night_ask_need',
  'ask_need_leav',
  'need_leav_wife',
  'leav_wife_cant',
  'wife_cant_sleep',
  'cant_sleep_keep',
  'sleep_keep_play',
  'keep_play_explain',
  'play_explain_game',
  'explain_game_wife',
  'game_wife_need',
  'wife_need_came',
  'need_came_first',
  'came_first_ask',
  'first_ask_wife',
  'ask_wife_take',
  'wife_take_nap',
  'take_nap_live',
  'nap_live_room',
  'live_room_couch',
  'room_couch_told',
  'couch_told_make',
  'told_make_sleep',
  'make_sleep_sofa',
  'sleep_sofa_want',
  'sofa_want_keep',
  'want_keep_play',
  'keep_play_get',
  'play_get_piss',
  'get_piss_slam',
  'piss_slam_control',
  'slam_control_dresser',
  'control_dresser_goe',
  'dresser_goe_leav',
  'goe_leav_turn',
  'leav_turn_wife',
  'turn_wife_tell',
  'wife_tell_ill',
  'tell_ill_bet',
  'ill_bet_happi',
  'bet_happi_alway',
  'happi_alway_feel',
  'alway_feel_like',
  'feel_like_pick',
  'like_pick_anyon',
  'pick_anyon_els',
  'anyon_els_leav',
  'els_leav_slam',
  'leav_slam_door',
  'slam_door_way',
  'door_way_wife',
  'way_wife_turn',
  'wife_turn_start',
  'turn_start_apolog',
  'start_apolog_say',
  'apolog_say_could',
  'say_could_slept',
  'could_slept_couch',
  'slept_couch_tell',
  'couch_tell_tell',
  'tell_tell_get',
  'tell_get_rest',
  'get_rest_later',
  'rest_later_night',
  'later_night_friend',
  'night_friend_blow',
  'friend_blow_phone',
  'blow_phone_say',
  'phone_say_thing',
  'say_thing_along',
  'thing_along_line',
  'along_line_bro',
  'line_bro_hoe',
  'bro_hoe_say',
  'hoe_say_rude',
  'say_rude_kick',
  'rude_kick_wife',
  'kick_wife_could',
  'wife_could_sleep',
  'could_sleep_marri',
  'sleep_marri_friend',
  'marri_friend_howev',
  'friend_howev_side',
  'howev_side_say',
  'side_say_wife',
  'say_wife_need',
  'wife_need_come',
  'need_come_first',
  'come_first_friend',
  'first_friend_say',
  'friend_say_speak',
  'say_speak_apolog',
  'speak_apolog_asshol'],
 ['husband',
  'got',
  'marri',
  'last',
  'friday',
  'plan',
  'dream',
  'wed',
  'dream',
  'cater',
  'compani',
  'wed',
  'beauti',
  'pictur',
  'head',
  'cocktail',
  'hour',
  'saw',
  'guest',
  'told',
  'wear',
  'dark',
  'color',
  'husband',
  'stood',
  'also',
  'ask',
  'guest',
  'wear',
  'minim',
  'makeup',
  'assum',
  'appli',
  'staff',
  'serverishf',
  'clearli',
  'much',
  'eyelin',
  'also',
  'diamond',
  'stud',
  'ear',
  'flashi',
  'ring',
  'one',
  'ugli',
  'nose',
  'stud',
  'staff',
  'uniform',
  'black',
  'long-sleev',
  'shirt',
  'low',
  'cut',
  'pant',
  'far',
  'tight',
  'super',
  'distract',
  'walk',
  'around',
  'serv',
  'drink',
  'talk',
  'guest',
  'ask',
  'anoth',
  'member',
  'staff',
  'speak',
  'boss',
  'boss',
  'came',
  'point',
  'server',
  'ask',
  'dealt',
  'caus',
  'super',
  'distract',
  'boss',
  'apolog',
  'call',
  'server',
  'back',
  'kitchen',
  'even',
  'hour',
  'later',
  'server',
  'back',
  'serv',
  'food',
  'dinner',
  'call',
  'boss',
  'ask',
  'server',
  'could',
  'work',
  'back',
  'go',
  'home',
  'boss',
  'said',
  'short-staf',
  'tonight',
  'would',
  'see',
  'done',
  'coupl',
  'hour',
  'see',
  'saw',
  'server',
  'behind',
  'bar',
  'call',
  'boss',
  'one',
  'last',
  'time',
  'told',
  'server',
  'leav',
  'would',
  'call',
  'cop',
  'boss',
  'final',
  'relent',
  'told',
  'girl',
  'go',
  'home',
  '&',
  'xb',
  'husband',
  'mother-in-law',
  'said',
  'act',
  'crazi',
  'probabl',
  'got',
  'poor',
  'colleg',
  'kid',
  'fire',
  'noth',
  'mother',
  'moh',
  'said',
  'wed',
  'pleas',
  'wed',
  'want',
  'someon',
  'over-shin',
  'server',
  'know',
  'work',
  'dress',
  'much',
  'feel',
  'kind',
  'bad',
  'pretti',
  'young',
  'ass',
  'husband_got',
  'got_marri',
  'marri_last',
  'last_friday',
  'friday_plan',
  'plan_dream',
  'dream_wed',
  'wed_dream',
  'dream_cater',
  'cater_compani',
  'compani_wed',
  'wed_beauti',
  'beauti_pictur',
  'pictur_head',
  'head_cocktail',
  'cocktail_hour',
  'hour_saw',
  'saw_guest',
  'guest_told',
  'told_wear',
  'wear_dark',
  'dark_color',
  'color_husband',
  'husband_stood',
  'stood_also',
  'also_ask',
  'ask_guest',
  'guest_wear',
  'wear_minim',
  'minim_makeup',
  'makeup_assum',
  'assum_appli',
  'appli_staff',
  'staff_serverishf',
  'serverishf_clearli',
  'clearli_much',
  'much_eyelin',
  'eyelin_also',
  'also_diamond',
  'diamond_stud',
  'stud_ear',
  'ear_flashi',
  'flashi_ring',
  'ring_one',
  'one_ugli',
  'ugli_nose',
  'nose_stud',
  'stud_staff',
  'staff_uniform',
  'uniform_black',
  'black_long-sleev',
  'long-sleev_shirt',
  'shirt_low',
  'low_cut',
  'cut_pant',
  'pant_far',
  'far_tight',
  'tight_super',
  'super_distract',
  'distract_walk',
  'walk_around',
  'around_serv',
  'serv_drink',
  'drink_talk',
  'talk_guest',
  'guest_ask',
  'ask_anoth',
  'anoth_member',
  'member_staff',
  'staff_speak',
  'speak_boss',
  'boss_boss',
  'boss_came',
  'came_point',
  'point_server',
  'server_ask',
  'ask_dealt',
  'dealt_caus',
  'caus_super',
  'super_distract',
  'distract_boss',
  'boss_apolog',
  'apolog_call',
  'call_server',
  'server_back',
  'back_kitchen',
  'kitchen_even',
  'even_hour',
  'hour_later',
  'later_server',
  'server_back',
  'back_serv',
  'serv_food',
  'food_dinner',
  'dinner_call',
  'call_boss',
  'boss_ask',
  'ask_server',
  'server_could',
  'could_work',
  'work_back',
  'back_go',
  'go_home',
  'home_boss',
  'boss_said',
  'said_short-staf',
  'short-staf_tonight',
  'tonight_would',
  'would_see',
  'see_done',
  'done_coupl',
  'coupl_hour',
  'hour_see',
  'see_saw',
  'saw_server',
  'server_behind',
  'behind_bar',
  'bar_call',
  'call_boss',
  'boss_one',
  'one_last',
  'last_time',
  'time_told',
  'told_server',
  'server_leav',
  'leav_would',
  'would_call',
  'call_cop',
  'cop_boss',
  'boss_final',
  'final_relent',
  'relent_told',
  'told_girl',
  'girl_go',
  'go_home',
  'home_&',
  '&_xb',
  'xb_husband',
  'husband_mother-in-law',
  'mother-in-law_said',
  'said_act',
  'act_crazi',
  'crazi_probabl',
  'probabl_got',
  'got_poor',
  'poor_colleg',
  'colleg_kid',
  'kid_fire',
  'fire_noth',
  'noth_mother',
  'mother_moh',
  'moh_said',
  'said_wed',
  'wed_pleas',
  'pleas_wed',
  'wed_want',
  'want_someon',
  'someon_over-shin',
  'over-shin_server',
  'server_know',
  'know_work',
  'work_dress',
  'dress_much',
  'much_feel',
  'feel_kind',
  'kind_bad',
  'bad_pretti',
  'pretti_young',
  'young_ass',
  'husband_got_marri',
  'got_marri_last',
  'marri_last_friday',
  'last_friday_plan',
  'friday_plan_dream',
  'plan_dream_wed',
  'dream_wed_dream',
  'wed_dream_cater',
  'dream_cater_compani',
  'cater_compani_wed',
  'compani_wed_beauti',
  'wed_beauti_pictur',
  'beauti_pictur_head',
  'pictur_head_cocktail',
  'head_cocktail_hour',
  'cocktail_hour_saw',
  'hour_saw_guest',
  'saw_guest_told',
  'guest_told_wear',
  'told_wear_dark',
  'wear_dark_color',
  'dark_color_husband',
  'color_husband_stood',
  'husband_stood_also',
  'stood_also_ask',
  'also_ask_guest',
  'ask_guest_wear',
  'guest_wear_minim',
  'wear_minim_makeup',
  'minim_makeup_assum',
  'makeup_assum_appli',
  'assum_appli_staff',
  'appli_staff_serverishf',
  'staff_serverishf_clearli',
  'serverishf_clearli_much',
  'clearli_much_eyelin',
  'much_eyelin_also',
  'eyelin_also_diamond',
  'also_diamond_stud',
  'diamond_stud_ear',
  'stud_ear_flashi',
  'ear_flashi_ring',
  'flashi_ring_one',
  'ring_one_ugli',
  'one_ugli_nose',
  'ugli_nose_stud',
  'nose_stud_staff',
  'stud_staff_uniform',
  'staff_uniform_black',
  'uniform_black_long-sleev',
  'black_long-sleev_shirt',
  'long-sleev_shirt_low',
  'shirt_low_cut',
  'low_cut_pant',
  'cut_pant_far',
  'pant_far_tight',
  'far_tight_super',
  'tight_super_distract',
  'super_distract_walk',
  'distract_walk_around',
  'walk_around_serv',
  'around_serv_drink',
  'serv_drink_talk',
  'drink_talk_guest',
  'talk_guest_ask',
  'guest_ask_anoth',
  'ask_anoth_member',
  'anoth_member_staff',
  'member_staff_speak',
  'staff_speak_boss',
  'speak_boss_boss',
  'boss_boss_came',
  'boss_came_point',
  'came_point_server',
  'point_server_ask',
  'server_ask_dealt',
  'ask_dealt_caus',
  'dealt_caus_super',
  'caus_super_distract',
  'super_distract_boss',
  'distract_boss_apolog',
  'boss_apolog_call',
  'apolog_call_server',
  'call_server_back',
  'server_back_kitchen',
  'back_kitchen_even',
  'kitchen_even_hour',
  'even_hour_later',
  'hour_later_server',
  'later_server_back',
  'server_back_serv',
  'back_serv_food',
  'serv_food_dinner',
  'food_dinner_call',
  'dinner_call_boss',
  'call_boss_ask',
  'boss_ask_server',
  'ask_server_could',
  'server_could_work',
  'could_work_back',
  'work_back_go',
  'back_go_home',
  'go_home_boss',
  'home_boss_said',
  'boss_said_short-staf',
  'said_short-staf_tonight',
  'short-staf_tonight_would',
  'tonight_would_see',
  'would_see_done',
  'see_done_coupl',
  'done_coupl_hour',
  'coupl_hour_see',
  'hour_see_saw',
  'see_saw_server',
  'saw_server_behind',
  'server_behind_bar',
  'behind_bar_call',
  'bar_call_boss',
  'call_boss_one',
  'boss_one_last',
  'one_last_time',
  'last_time_told',
  'time_told_server',
  'told_server_leav',
  'server_leav_would',
  'leav_would_call',
  'would_call_cop',
  'call_cop_boss',
  'cop_boss_final',
  'boss_final_relent',
  'final_relent_told',
  'relent_told_girl',
  'told_girl_go',
  'girl_go_home',
  'go_home_&',
  'home_&_xb',
  '&_xb_husband',
  'xb_husband_mother-in-law',
  'husband_mother-in-law_said',
  'mother-in-law_said_act',
  'said_act_crazi',
  'act_crazi_probabl',
  'crazi_probabl_got',
  'probabl_got_poor',
  'got_poor_colleg',
  'poor_colleg_kid',
  'colleg_kid_fire',
  'kid_fire_noth',
  'fire_noth_mother',
  'noth_mother_moh',
  'mother_moh_said',
  'moh_said_wed',
  'said_wed_pleas',
  'wed_pleas_wed',
  'pleas_wed_want',
  'wed_want_someon',
  'want_someon_over-shin',
  'someon_over-shin_server',
  'over-shin_server_know',
  'server_know_work',
  'know_work_dress',
  'work_dress_much',
  'dress_much_feel',
  'much_feel_kind',
  'feel_kind_bad',
  'kind_bad_pretti',
  'bad_pretti_young',
  'pretti_young_ass'],
 ['singl',
  'childfre',
  'two',
  'dog',
  'german',
  'shepherd',
  'mix',
  'well',
  'behav',
  'super',
  'nice',
  'nibl',
  'age',
  '-',
  'love',
  'sister',
  'kid',
  'total',
  'babysit',
  'lot',
  'work',
  'home',
  'pretti',
  'much',
  'alway',
  'avail',
  'watch',
  'older',
  'one',
  'sinc',
  'easili',
  'work',
  'appart',
  'need',
  'care',
  'littl',
  'one',
  'move',
  'schedul',
  'around',
  'bit',
  'yesterday',
  'nibl',
  'place',
  'age',
  'sibl',
  'one',
  'super',
  'strict',
  'rule',
  'hous',
  'chocol',
  'deadli',
  'dog',
  'like',
  'anyway',
  'kid',
  'easili',
  'go',
  'afternoon',
  'without',
  'yro',
  'obvious',
  'brought',
  'chocol',
  'share',
  'yro',
  'kitchen',
  'make',
  'drink',
  'live',
  'room',
  'dog',
  'sleep',
  'balconi',
  'came',
  'live',
  'room',
  'obvious',
  'chocol',
  'crumb',
  'everywher',
  'ask',
  'chocol',
  'yro',
  'admit',
  'mom',
  'gave',
  'alway',
  'usual',
  'eat',
  'secret',
  'sister',
  'came',
  'pick',
  'hour',
  'later',
  'told',
  'happen',
  'said',
  'kid',
  'big',
  'enough',
  'make',
  'chocol',
  'mess',
  'told',
  'im',
  'never',
  'babysittinv',
  'furiou',
  'say',
  'overreact',
  'anoth',
  'sister',
  'mine',
  'agre',
  'mother',
  'think',
  'wrong',
  'put',
  'dog',
  'children',
  'aita',
  'singl_childfre',
  'childfre_two',
  'two_dog',
  'dog_german',
  'german_shepherd',
  'shepherd_mix',
  'mix_well',
  'well_behav',
  'behav_super',
  'super_nice',
  'nice_nibl',
  'nibl_age',
  'age_-',
  '-_love',
  'love_sister',
  'sister_kid',
  'kid_total',
  'total_babysit',
  'babysit_lot',
  'lot_work',
  'work_home',
  'home_pretti',
  'pretti_much',
  'much_alway',
  'alway_avail',
  'avail_watch',
  'watch_older',
  'older_one',
  'one_sinc',
  'sinc_easili',
  'easili_work',
  'work_appart',
  'appart_need',
  'need_care',
  'care_littl',
  'littl_one',
  'one_move',
  'move_schedul',
  'schedul_around',
  'around_bit',
  'bit_yesterday',
  'yesterday_nibl',
  'nibl_place',
  'place_age',
  'age_sibl',
  'sibl_one',
  'one_super',
  'super_strict',
  'strict_rule',
  'rule_hous',
  'hous_chocol',
  'chocol_deadli',
  'deadli_dog',
  'dog_like',
  'like_anyway',
  'anyway_kid',
  'kid_easili',
  'easili_go',
  'go_afternoon',
  'afternoon_without',
  'without_yro',
  'yro_obvious',
  'obvious_brought',
  'brought_chocol',
  'chocol_share',
  'share_yro',
  'yro_kitchen',
  'kitchen_make',
  'make_drink',
  'drink_live',
  'live_room',
  'room_dog',
  'dog_sleep',
  'sleep_balconi',
  'balconi_came',
  'came_live',
  'live_room',
  'room_obvious',
  'obvious_chocol',
  'chocol_crumb',
  'crumb_everywher',
  'everywher_ask',
  'ask_chocol',
  'chocol_yro',
  'yro_admit',
  'admit_mom',
  'mom_gave',
  'gave_alway',
  'alway_usual',
  'usual_eat',
  'eat_secret',
  'secret_sister',
  'sister_came',
  'came_pick',
  'pick_hour',
  'hour_later',
  'later_told',
  'told_happen',
  'happen_said',
  'said_kid',
  'kid_big',
  'big_enough',
  'enough_make',
  'make_chocol',
  'chocol_mess',
  'mess_told',
  'told_im',
  'im_never',
  'never_babysittinv',
  'babysittinv_furiou',
  'furiou_say',
  'say_overreact',
  'overreact_anoth',
  'anoth_sister',
  'sister_mine',
  'mine_agre',
  'agre_mother',
  'mother_think',
  'think_wrong',
  'wrong_put',
  'put_dog',
  'dog_children',
  'children_aita',
  'singl_childfre_two',
  'childfre_two_dog',
  'two_dog_german',
  'dog_german_shepherd',
  'german_shepherd_mix',
  'shepherd_mix_well',
  'mix_well_behav',
  'well_behav_super',
  'behav_super_nice',
  'super_nice_nibl',
  'nice_nibl_age',
  'nibl_age_-',
  'age_-_love',
  '-_love_sister',
  'love_sister_kid',
  'sister_kid_total',
  'kid_total_babysit',
  'total_babysit_lot',
  'babysit_lot_work',
  'lot_work_home',
  'work_home_pretti',
  'home_pretti_much',
  'pretti_much_alway',
  'much_alway_avail',
  'alway_avail_watch',
  'avail_watch_older',
  'watch_older_one',
  'older_one_sinc',
  'one_sinc_easili',
  'sinc_easili_work',
  'easili_work_appart',
  'work_appart_need',
  'appart_need_care',
  'need_care_littl',
  'care_littl_one',
  'littl_one_move',
  'one_move_schedul',
  'move_schedul_around',
  'schedul_around_bit',
  'around_bit_yesterday',
  'bit_yesterday_nibl',
  'yesterday_nibl_place',
  'nibl_place_age',
  'place_age_sibl',
  'age_sibl_one',
  'sibl_one_super',
  'one_super_strict',
  'super_strict_rule',
  'strict_rule_hous',
  'rule_hous_chocol',
  'hous_chocol_deadli',
  'chocol_deadli_dog',
  'deadli_dog_like',
  'dog_like_anyway',
  'like_anyway_kid',
  'anyway_kid_easili',
  'kid_easili_go',
  'easili_go_afternoon',
  'go_afternoon_without',
  'afternoon_without_yro',
  'without_yro_obvious',
  'yro_obvious_brought',
  'obvious_brought_chocol',
  'brought_chocol_share',
  'chocol_share_yro',
  'share_yro_kitchen',
  'yro_kitchen_make',
  'kitchen_make_drink',
  'make_drink_live',
  'drink_live_room',
  'live_room_dog',
  'room_dog_sleep',
  'dog_sleep_balconi',
  'sleep_balconi_came',
  'balconi_came_live',
  'came_live_room',
  'live_room_obvious',
  'room_obvious_chocol',
  'obvious_chocol_crumb',
  'chocol_crumb_everywher',
  'crumb_everywher_ask',
  'everywher_ask_chocol',
  'ask_chocol_yro',
  'chocol_yro_admit',
  'yro_admit_mom',
  'admit_mom_gave',
  'mom_gave_alway',
  'gave_alway_usual',
  'alway_usual_eat',
  'usual_eat_secret',
  'eat_secret_sister',
  'secret_sister_came',
  'sister_came_pick',
  'came_pick_hour',
  'pick_hour_later',
  'hour_later_told',
  'later_told_happen',
  'told_happen_said',
  'happen_said_kid',
  'said_kid_big',
  'kid_big_enough',
  'big_enough_make',
  'enough_make_chocol',
  'make_chocol_mess',
  'chocol_mess_told',
  'mess_told_im',
  'told_im_never',
  'im_never_babysittinv',
  'never_babysittinv_furiou',
  'babysittinv_furiou_say',
  'furiou_say_overreact',
  'say_overreact_anoth',
  'overreact_anoth_sister',
  'anoth_sister_mine',
  'sister_mine_agre',
  'mine_agre_mother',
  'agre_mother_think',
  'mother_think_wrong',
  'think_wrong_put',
  'wrong_put_dog',
  'put_dog_children',
  'dog_children_aita'],
 ['titl',
  'sound',
  'bad',
  'know',
  'ill',
  'let',
  'decid',
  'wrong',
  'begin',
  'husband',
  'share',
  'financ',
  'like',
  'year',
  'marriag',
  'far',
  'weve',
  'well',
  'though',
  'hed',
  'sometim',
  'tri',
  'get',
  'pay',
  'want',
  'nice',
  'thing',
  'say',
  'invit',
  'restaur',
  'past',
  'week',
  'got',
  'bonu',
  'work',
  'overjoy',
  'inform',
  'entir',
  'famili',
  'plan',
  'go',
  'celebr',
  'us',
  'pick',
  'restaur',
  'meal',
  'drink',
  'etc',
  'natur',
  'thought',
  'go',
  'pay',
  'sinc',
  'happi',
  'celebr',
  'turn',
  'wrong',
  'time',
  'pay',
  'bill',
  'told',
  'take',
  'care',
  'said',
  'celebr',
  'mine',
  'insist',
  'pay',
  'hell',
  'explain',
  'later',
  'refus',
  'demand',
  'explan',
  'said',
  'ye',
  'one',
  'got',
  'bonu',
  'assum',
  'id',
  'want',
  'celebr',
  'offer',
  'cover',
  'bill',
  'talk',
  'ridicul',
  'assum',
  'id',
  'pay',
  'famili',
  'meal',
  'said',
  'happi',
  'instead',
  'visibl',
  'bitter',
  'said',
  'yet',
  'receiv',
  'bonu',
  'beg',
  'take',
  'care',
  'bill',
  'might',
  'consid',
  'pay',
  'back',
  'later',
  'refus',
  'paid',
  'consum',
  'famili',
  'start',
  'talk',
  'inappropri',
  'act',
  'took',
  'purs',
  'went',
  'home',
  'afterward',
  'caus',
  'much',
  'commot',
  'start',
  'argu',
  'go',
  'cover',
  'bill',
  'mom',
  'spam',
  'call',
  'hour',
  'went',
  'home',
  'say',
  'spoil',
  'celebr',
  'joy',
  'im',
  'feel',
  'bitter',
  'especi',
  'consid',
  'enough',
  'money',
  'cover',
  'bill',
  'right',
  'said',
  'oblig',
  'one',
  'came',
  'celebr',
  'idea',
  'argu',
  'role',
  'revers',
  'got',
  'bonu',
  'hed',
  'celebr',
  'achiev',
  'pay',
  'damn',
  'meal',
  'take',
  'famili',
  'casual',
  'said',
  'well',
  'got',
  'even',
  'piss',
  'said',
  'juvenil',
  'antic',
  'ever',
  'forget',
  'scene',
  'made',
  'restaur',
  'infront',
  'famili',
  'upset',
  'day',
  'updat',
  'wow',
  'mani',
  'respons',
  'guy',
  'im',
  'see',
  'varieti',
  'judgement',
  'know',
  'husband',
  'got',
  'home',
  'im',
  'go',
  'show',
  'respons',
  'right',
  'ill',
  'updat',
  'opinion',
  'soon',
  'thank',
  'updat',
  'got',
  'argument',
  'show',
  'post',
  'lost',
  'accept',
  'judgment',
  'saidand',
  'quot',
  'peopl',
  'idea',
  'said',
  'mention',
  'make',
  'money',
  'much',
  'think',
  'justifi',
  'paid',
  'bill',
  'past',
  'forgot',
  'wallet',
  'pay',
  'back',
  'pretti',
  'piss',
  'right',
  'though',
  'kept',
  'laugh',
  'sarcast',
  'read',
  'comment',
  'walk',
  'kitchen',
  'take',
  'phone',
  'call',
  'said',
  'hell',
  'back',
  'im',
  'still',
  'dog',
  'wait',
  'see',
  'goe',
  'ill',
  'updat',
  'new',
  'info',
  'titl_sound',
  'sound_bad',
  'bad_know',
  'know_ill',
  'ill_let',
  'let_decid',
  'decid_wrong',
  'wrong_begin',
  'begin_husband',
  'husband_share',
  'share_financ',
  'financ_like',
  'like_year',
  'year_marriag',
  'marriag_far',
  'far_weve',
  'weve_well',
  'well_though',
  'though_hed',
  'hed_sometim',
  'sometim_tri',
  'tri_get',
  'get_pay',
  'pay_want',
  'want_nice',
  'nice_thing',
  'thing_say',
  'say_invit',
  'invit_restaur',
  'restaur_past',
  'past_week',
  'week_got',
  'got_bonu',
  'bonu_work',
  'work_overjoy',
  'overjoy_inform',
  'inform_entir',
  'entir_famili',
  'famili_plan',
  'plan_go',
  'go_celebr',
  'celebr_us',
  'us_pick',
  'pick_restaur',
  'restaur_meal',
  'meal_drink',
  'drink_etc',
  'etc_natur',
  'natur_thought',
  'thought_go',
  'go_pay',
  'pay_sinc',
  'sinc_happi',
  'happi_celebr',
  'celebr_turn',
  'turn_wrong',
  'wrong_time',
  'time_pay',
  'pay_bill',
  'bill_told',
  'told_take',
  'take_care',
  'care_said',
  'said_celebr',
  'celebr_mine',
  'mine_insist',
  'insist_pay',
  'pay_hell',
  'hell_explain',
  'explain_later',
  'later_refus',
  'refus_demand',
  'demand_explan',
  'explan_said',
  'said_ye',
  'ye_one',
  'one_got',
  'got_bonu',
  'bonu_assum',
  'assum_id',
  'id_want',
  'want_celebr',
  'celebr_offer',
  'offer_cover',
  'cover_bill',
  'bill_talk',
  'talk_ridicul',
  'ridicul_assum',
  'assum_id',
  'id_pay',
  'pay_famili',
  'famili_meal',
  'meal_said',
  'said_happi',
  'happi_instead',
  'instead_visibl',
  'visibl_bitter',
  'bitter_said',
  'said_yet',
  'yet_receiv',
  'receiv_bonu',
  'bonu_beg',
  'beg_take',
  'take_care',
  'care_bill',
  'bill_might',
  'might_consid',
  'consid_pay',
  'pay_back',
  'back_later',
  'later_refus',
  'refus_paid',
  'paid_consum',
  'consum_famili',
  'famili_start',
  'start_talk',
  'talk_inappropri',
  'inappropri_act',
  'act_took',
  'took_purs',
  'purs_went',
  'went_home',
  'home_afterward',
  'afterward_caus',
  'caus_much',
  'much_commot',
  'commot_start',
  'start_argu',
  'argu_go',
  'go_cover',
  'cover_bill',
  'bill_mom',
  'mom_spam',
  'spam_call',
  'call_hour',
  'hour_went',
  'went_home',
  'home_say',
  'say_spoil',
  'spoil_celebr',
  'celebr_joy',
  'joy_im',
  'im_feel',
  'feel_bitter',
  'bitter_especi',
  'especi_consid',
  'consid_enough',
  'enough_money',
  'money_cover',
  'cover_bill',
  'bill_right',
  'right_said',
  'said_oblig',
  'oblig_one',
  'one_came',
  'came_celebr',
  'celebr_idea',
  'idea_argu',
  'argu_role',
  'role_revers',
  'revers_got',
  'got_bonu',
  'bonu_hed',
  'hed_celebr',
  'celebr_achiev',
  'achiev_pay',
  'pay_damn',
  'damn_meal',
  'meal_take',
  'take_famili',
  'famili_casual',
  'casual_said',
  'said_well',
  'well_got',
  'got_even',
  'even_piss',
  'piss_said',
  'said_juvenil',
  'juvenil_antic',
  'antic_ever',
  'ever_forget',
  'forget_scene',
  'scene_made',
  'made_restaur',
  'restaur_infront',
  'infront_famili',
  'famili_upset',
  'upset_day',
  'day_updat',
  'updat_wow',
  'wow_mani',
  'mani_respons',
  'respons_guy',
  'guy_im',
  'im_see',
  'see_varieti',
  'varieti_judgement',
  'judgement_know',
  'know_husband',
  'husband_got',
  'got_home',
  'home_im',
  'im_go',
  'go_show',
  'show_respons',
  'respons_right',
  'right_ill',
  'ill_updat',
  'updat_opinion',
  'opinion_soon',
  'soon_thank',
  'thank_updat',
  'updat_got',
  'got_argument',
  'argument_show',
  'show_post',
  'post_lost',
  'lost_accept',
  'accept_judgment',
  'judgment_saidand',
  'saidand_quot',
  'quot_peopl',
  'peopl_idea',
  'idea_said',
  'said_mention',
  'mention_make',
  'make_money',
  'money_much',
  'much_think',
  'think_justifi',
  'justifi_paid',
  'paid_bill',
  'bill_past',
  'past_forgot',
  'forgot_wallet',
  'wallet_pay',
  'pay_back',
  'back_pretti',
  'pretti_piss',
  'piss_right',
  'right_though',
  'though_kept',
  'kept_laugh',
  'laugh_sarcast',
  'sarcast_read',
  'read_comment',
  'comment_walk',
  'walk_kitchen',
  'kitchen_take',
  'take_phone',
  'phone_call',
  'call_said',
  'said_hell',
  'hell_back',
  'back_im',
  'im_still',
  'still_dog',
  'dog_wait',
  'wait_see',
  'see_goe',
  'goe_ill',
  'ill_updat',
  'updat_new',
  'new_info',
  'titl_sound_bad',
  'sound_bad_know',
  'bad_know_ill',
  'know_ill_let',
  'ill_let_decid',
  'let_decid_wrong',
  'decid_wrong_begin',
  'wrong_begin_husband',
  'begin_husband_share',
  'husband_share_financ',
  'share_financ_like',
  'financ_like_year',
  'like_year_marriag',
  'year_marriag_far',
  'marriag_far_weve',
  'far_weve_well',
  'weve_well_though',
  'well_though_hed',
  'though_hed_sometim',
  'hed_sometim_tri',
  'sometim_tri_get',
  'tri_get_pay',
  'get_pay_want',
  'pay_want_nice',
  'want_nice_thing',
  'nice_thing_say',
  'thing_say_invit',
  'say_invit_restaur',
  'invit_restaur_past',
  'restaur_past_week',
  'past_week_got',
  'week_got_bonu',
  'got_bonu_work',
  'bonu_work_overjoy',
  'work_overjoy_inform',
  'overjoy_inform_entir',
  'inform_entir_famili',
  'entir_famili_plan',
  'famili_plan_go',
  'plan_go_celebr',
  'go_celebr_us',
  'celebr_us_pick',
  'us_pick_restaur',
  'pick_restaur_meal',
  'restaur_meal_drink',
  'meal_drink_etc',
  'drink_etc_natur',
  'etc_natur_thought',
  'natur_thought_go',
  'thought_go_pay',
  'go_pay_sinc',
  'pay_sinc_happi',
  'sinc_happi_celebr',
  'happi_celebr_turn',
  'celebr_turn_wrong',
  'turn_wrong_time',
  'wrong_time_pay',
  'time_pay_bill',
  'pay_bill_told',
  'bill_told_take',
  'told_take_care',
  'take_care_said',
  'care_said_celebr',
  'said_celebr_mine',
  'celebr_mine_insist',
  'mine_insist_pay',
  'insist_pay_hell',
  'pay_hell_explain',
  'hell_explain_later',
  'explain_later_refus',
  'later_refus_demand',
  'refus_demand_explan',
  'demand_explan_said',
  'explan_said_ye',
  'said_ye_one',
  'ye_one_got',
  'one_got_bonu',
  'got_bonu_assum',
  'bonu_assum_id',
  'assum_id_want',
  'id_want_celebr',
  'want_celebr_offer',
  'celebr_offer_cover',
  'offer_cover_bill',
  'cover_bill_talk',
  'bill_talk_ridicul',
  'talk_ridicul_assum',
  'ridicul_assum_id',
  'assum_id_pay',
  'id_pay_famili',
  'pay_famili_meal',
  'famili_meal_said',
  'meal_said_happi',
  'said_happi_instead',
  'happi_instead_visibl',
  'instead_visibl_bitter',
  'visibl_bitter_said',
  'bitter_said_yet',
  'said_yet_receiv',
  'yet_receiv_bonu',
  'receiv_bonu_beg',
  'bonu_beg_take',
  'beg_take_care',
  'take_care_bill',
  'care_bill_might',
  'bill_might_consid',
  'might_consid_pay',
  'consid_pay_back',
  'pay_back_later',
  'back_later_refus',
  'later_refus_paid',
  'refus_paid_consum',
  'paid_consum_famili',
  'consum_famili_start',
  'famili_start_talk',
  'start_talk_inappropri',
  'talk_inappropri_act',
  'inappropri_act_took',
  'act_took_purs',
  'took_purs_went',
  'purs_went_home',
  'went_home_afterward',
  'home_afterward_caus',
  'afterward_caus_much',
  'caus_much_commot',
  'much_commot_start',
  'commot_start_argu',
  'start_argu_go',
  'argu_go_cover',
  'go_cover_bill',
  'cover_bill_mom',
  'bill_mom_spam',
  'mom_spam_call',
  'spam_call_hour',
  'call_hour_went',
  'hour_went_home',
  'went_home_say',
  'home_say_spoil',
  'say_spoil_celebr',
  'spoil_celebr_joy',
  'celebr_joy_im',
  'joy_im_feel',
  'im_feel_bitter',
  'feel_bitter_especi',
  'bitter_especi_consid',
  'especi_consid_enough',
  'consid_enough_money',
  'enough_money_cover',
  'money_cover_bill',
  'cover_bill_right',
  'bill_right_said',
  'right_said_oblig',
  'said_oblig_one',
  'oblig_one_came',
  'one_came_celebr',
  'came_celebr_idea',
  'celebr_idea_argu',
  'idea_argu_role',
  'argu_role_revers',
  'role_revers_got',
  'revers_got_bonu',
  'got_bonu_hed',
  'bonu_hed_celebr',
  'hed_celebr_achiev',
  'celebr_achiev_pay',
  'achiev_pay_damn',
  'pay_damn_meal',
  'damn_meal_take',
  'meal_take_famili',
  'take_famili_casual',
  'famili_casual_said',
  'casual_said_well',
  'said_well_got',
  'well_got_even',
  'got_even_piss',
  'even_piss_said',
  'piss_said_juvenil',
  'said_juvenil_antic',
  'juvenil_antic_ever',
  'antic_ever_forget',
  'ever_forget_scene',
  'forget_scene_made',
  'scene_made_restaur',
  'made_restaur_infront',
  'restaur_infront_famili',
  'infront_famili_upset',
  'famili_upset_day',
  'upset_day_updat',
  'day_updat_wow',
  'updat_wow_mani',
  'wow_mani_respons',
  'mani_respons_guy',
  'respons_guy_im',
  'guy_im_see',
  'im_see_varieti',
  'see_varieti_judgement',
  'varieti_judgement_know',
  'judgement_know_husband',
  'know_husband_got',
  'husband_got_home',
  'got_home_im',
  'home_im_go',
  'im_go_show',
  'go_show_respons',
  'show_respons_right',
  'respons_right_ill',
  'right_ill_updat',
  'ill_updat_opinion',
  'updat_opinion_soon',
  'opinion_soon_thank',
  'soon_thank_updat',
  'thank_updat_got',
  'updat_got_argument',
  'got_argument_show',
  'argument_show_post',
  'show_post_lost',
  'post_lost_accept',
  'lost_accept_judgment',
  'accept_judgment_saidand',
  'judgment_saidand_quot',
  'saidand_quot_peopl',
  'quot_peopl_idea',
  'peopl_idea_said',
  'idea_said_mention',
  'said_mention_make',
  'mention_make_money',
  'make_money_much',
  'money_much_think',
  'much_think_justifi',
  'think_justifi_paid',
  'justifi_paid_bill',
  'paid_bill_past',
  'bill_past_forgot',
  'past_forgot_wallet',
  'forgot_wallet_pay',
  'wallet_pay_back',
  'pay_back_pretti',
  'back_pretti_piss',
  'pretti_piss_right',
  'piss_right_though',
  'right_though_kept',
  'though_kept_laugh',
  'kept_laugh_sarcast',
  'laugh_sarcast_read',
  'sarcast_read_comment',
  'read_comment_walk',
  'comment_walk_kitchen',
  'walk_kitchen_take',
  'kitchen_take_phone',
  'take_phone_call',
  'phone_call_said',
  'call_said_hell',
  'said_hell_back',
  'hell_back_im',
  'back_im_still',
  'im_still_dog',
  'still_dog_wait',
  'dog_wait_see',
  'wait_see_goe',
  'see_goe_ill',
  'goe_ill_updat',
  'ill_updat_new',
  'updat_new_info'],
 ['parent',
  'divorc',
  'mom',
  'found',
  'dad',
  'cheat',
  'five',
  'year',
  'someon',
  'consid',
  'friend',
  'reveal',
  'affair',
  'came',
  'birthday',
  'parti',
  'celebr',
  'late',
  'dad',
  'made',
  'stori',
  'old',
  'friend',
  'die',
  'go',
  'funer',
  'actual',
  'ultrasound',
  'learn',
  'pregnant',
  'mom',
  'never',
  'got',
  'think',
  'made',
  'wors',
  'two',
  'peopl',
  'betray',
  'instead',
  'one',
  'friend',
  'hurt',
  'us',
  'like',
  'screw',
  'dad',
  'marri',
  'affair',
  'partner',
  'six',
  'children',
  'togeth',
  'mom',
  'stay',
  'away',
  'much',
  'humanli',
  'possibl',
  'told',
  'long',
  'time',
  'ago',
  'love',
  'want',
  'happi',
  'love',
  'distant',
  'would',
  'never',
  'abl',
  'play',
  'happi',
  'famili',
  'dad',
  'wife',
  'kid',
  'hurt',
  'deep',
  'pain',
  'move',
  'stay',
  'place',
  'order',
  'thing',
  'mom',
  'dad',
  'deterior',
  'dad',
  'ask',
  'mom',
  'would',
  'take',
  'six',
  'kid',
  'home',
  'sibl',
  'could',
  'see',
  'sinc',
  'wife',
  'frontlin',
  'worker',
  'plan',
  'send',
  'somewher',
  'limit',
  'exposur',
  'mom',
  'said',
  'hell',
  'piss',
  'hell',
  'dad',
  'ask',
  'dad',
  'piss',
  'hell',
  'forc',
  'go',
  'in-law',
  'spend',
  'time',
  'sibl',
  'legal',
  'allow',
  'meet',
  'thing',
  'mom',
  'suffer',
  'less',
  'financi',
  'pandem',
  'dad',
  'wife',
  'left',
  'job',
  'got',
  'much',
  'financi',
  'stabil',
  'took',
  'huge',
  'hit',
  'dad',
  'cant',
  'afford',
  'throw',
  'graduat',
  'parti',
  'fine',
  'famili',
  'welcom',
  'one',
  'mom',
  'host',
  'bitch',
  'miss',
  'celebr',
  'mom',
  'told',
  'affair',
  'mom',
  'one',
  'betray',
  'disrespect',
  'expect',
  'act',
  'like',
  'none',
  'happen',
  'could',
  'act',
  'like',
  'good',
  'guy',
  'told',
  'decad',
  'mom',
  'taken',
  'side',
  'told',
  'kept',
  'affair',
  'instead',
  'let',
  'come',
  'hear',
  'aita',
  'eta',
  'anoth',
  'element',
  'stori',
  'affair',
  'first',
  'start',
  'mom',
  'almost',
  'die',
  'lose',
  'sibl',
  'pregnanc',
  'went',
  'badli',
  'wrong',
  'almost',
  'took',
  'take',
  'chanc',
  'children',
  'husband',
  'friend',
  'get',
  'togeth',
  'behind',
  'back',
  'parent_divorc',
  'divorc_mom',
  'mom_found',
  'found_dad',
  'dad_cheat',
  'cheat_five',
  'five_year',
  'year_someon',
  'someon_consid',
  'consid_friend',
  'friend_reveal',
  'reveal_affair',
  'affair_came',
  'came_birthday',
  'birthday_parti',
  'parti_celebr',
  'celebr_late',
  'late_dad',
  'dad_made',
  'made_stori',
  'stori_old',
  'old_friend',
  'friend_die',
  'die_go',
  'go_funer',
  'funer_actual',
  'actual_ultrasound',
  'ultrasound_learn',
  'learn_pregnant',
  'pregnant_mom',
  'mom_never',
  'never_got',
  'got_think',
  'think_made',
  'made_wors',
  'wors_two',
  'two_peopl',
  'peopl_betray',
  'betray_instead',
  'instead_one',
  'one_friend',
  'friend_hurt',
  'hurt_us',
  'us_like',
  'like_screw',
  'screw_dad',
  'dad_marri',
  'marri_affair',
  'affair_partner',
  'partner_six',
  'six_children',
  'children_togeth',
  'togeth_mom',
  'mom_stay',
  'stay_away',
  'away_much',
  'much_humanli',
  'humanli_possibl',
  'possibl_told',
  'told_long',
  'long_time',
  'time_ago',
  'ago_love',
  'love_want',
  'want_happi',
  'happi_love',
  'love_distant',
  'distant_would',
  'would_never',
  'never_abl',
  'abl_play',
  'play_happi',
  'happi_famili',
  'famili_dad',
  'dad_wife',
  'wife_kid',
  'kid_hurt',
  'hurt_deep',
  'deep_pain',
  'pain_move',
  'move_stay',
  'stay_place',
  'place_order',
  'order_thing',
  'thing_mom',
  'mom_dad',
  'dad_deterior',
  'deterior_dad',
  'dad_ask',
  'ask_mom',
  'mom_would',
  'would_take',
  'take_six',
  'six_kid',
  'kid_home',
  'home_sibl',
  'sibl_could',
  'could_see',
  'see_sinc',
  'sinc_wife',
  'wife_frontlin',
  'frontlin_worker',
  'worker_plan',
  'plan_send',
  'send_somewher',
  'somewher_limit',
  'limit_exposur',
  'exposur_mom',
  'mom_said',
  'said_hell',
  'hell_piss',
  'piss_hell',
  'hell_dad',
  'dad_ask',
  'ask_dad',
  'dad_piss',
  'piss_hell',
  'hell_forc',
  'forc_go',
  'go_in-law',
  'in-law_spend',
  'spend_time',
  'time_sibl',
  'sibl_legal',
  'legal_allow',
  'allow_meet',
  'meet_thing',
  'thing_mom',
  'mom_suffer',
  'suffer_less',
  'less_financi',
  'financi_pandem',
  'pandem_dad',
  'dad_wife',
  'wife_left',
  'left_job',
  'job_got',
  'got_much',
  'much_financi',
  'financi_stabil',
  'stabil_took',
  'took_huge',
  'huge_hit',
  'hit_dad',
  'dad_cant',
  'cant_afford',
  'afford_throw',
  'throw_graduat',
  'graduat_parti',
  'parti_fine',
  'fine_famili',
  'famili_welcom',
  'welcom_one',
  'one_mom',
  'mom_host',
  'host_bitch',
  'bitch_miss',
  'miss_celebr',
  'celebr_mom',
  'mom_told',
  'told_affair',
  'affair_mom',
  'mom_one',
  'one_betray',
  'betray_disrespect',
  'disrespect_expect',
  'expect_act',
  'act_like',
  'like_none',
  'none_happen',
  'happen_could',
  'could_act',
  'act_like',
  'like_good',
  'good_guy',
  'guy_told',
  'told_decad',
  'decad_mom',
  'mom_taken',
  'taken_side',
  'side_told',
  'told_kept',
  'kept_affair',
  'affair_instead',
  'instead_let',
  'let_come',
  'come_hear',
  'hear_aita',
  'aita_eta',
  'eta_anoth',
  'anoth_element',
  'element_stori',
  'stori_affair',
  'affair_first',
  'first_start',
  'start_mom',
  'mom_almost',
  'almost_die',
  'die_lose',
  'lose_sibl',
  'sibl_pregnanc',
  'pregnanc_went',
  'went_badli',
  'badli_wrong',
  'wrong_almost',
  'almost_took',
  'took_take',
  'take_chanc',
  'chanc_children',
  'children_husband',
  'husband_friend',
  'friend_get',
  'get_togeth',
  'togeth_behind',
  'behind_back',
  'parent_divorc_mom',
  'divorc_mom_found',
  'mom_found_dad',
  'found_dad_cheat',
  'dad_cheat_five',
  'cheat_five_year',
  'five_year_someon',
  'year_someon_consid',
  'someon_consid_friend',
  'consid_friend_reveal',
  'friend_reveal_affair',
  'reveal_affair_came',
  'affair_came_birthday',
  'came_birthday_parti',
  'birthday_parti_celebr',
  'parti_celebr_late',
  'celebr_late_dad',
  'late_dad_made',
  'dad_made_stori',
  'made_stori_old',
  'stori_old_friend',
  'old_friend_die',
  'friend_die_go',
  'die_go_funer',
  'go_funer_actual',
  'funer_actual_ultrasound',
  'actual_ultrasound_learn',
  'ultrasound_learn_pregnant',
  'learn_pregnant_mom',
  'pregnant_mom_never',
  'mom_never_got',
  'never_got_think',
  'got_think_made',
  'think_made_wors',
  'made_wors_two',
  'wors_two_peopl',
  'two_peopl_betray',
  'peopl_betray_instead',
  'betray_instead_one',
  'instead_one_friend',
  'one_friend_hurt',
  'friend_hurt_us',
  'hurt_us_like',
  'us_like_screw',
  'like_screw_dad',
  'screw_dad_marri',
  'dad_marri_affair',
  'marri_affair_partner',
  'affair_partner_six',
  'partner_six_children',
  'six_children_togeth',
  'children_togeth_mom',
  'togeth_mom_stay',
  'mom_stay_away',
  'stay_away_much',
  'away_much_humanli',
  'much_humanli_possibl',
  'humanli_possibl_told',
  'possibl_told_long',
  'told_long_time',
  'long_time_ago',
  'time_ago_love',
  'ago_love_want',
  'love_want_happi',
  'want_happi_love',
  'happi_love_distant',
  'love_distant_would',
  'distant_would_never',
  'would_never_abl',
  'never_abl_play',
  'abl_play_happi',
  'play_happi_famili',
  'happi_famili_dad',
  'famili_dad_wife',
  'dad_wife_kid',
  'wife_kid_hurt',
  'kid_hurt_deep',
  'hurt_deep_pain',
  'deep_pain_move',
  'pain_move_stay',
  'move_stay_place',
  'stay_place_order',
  'place_order_thing',
  'order_thing_mom',
  'thing_mom_dad',
  'mom_dad_deterior',
  'dad_deterior_dad',
  'deterior_dad_ask',
  'dad_ask_mom',
  'ask_mom_would',
  'mom_would_take',
  'would_take_six',
  'take_six_kid',
  'six_kid_home',
  'kid_home_sibl',
  'home_sibl_could',
  'sibl_could_see',
  'could_see_sinc',
  'see_sinc_wife',
  'sinc_wife_frontlin',
  'wife_frontlin_worker',
  'frontlin_worker_plan',
  'worker_plan_send',
  'plan_send_somewher',
  'send_somewher_limit',
  'somewher_limit_exposur',
  'limit_exposur_mom',
  'exposur_mom_said',
  'mom_said_hell',
  'said_hell_piss',
  'hell_piss_hell',
  'piss_hell_dad',
  'hell_dad_ask',
  'dad_ask_dad',
  'ask_dad_piss',
  'dad_piss_hell',
  'piss_hell_forc',
  'hell_forc_go',
  'forc_go_in-law',
  'go_in-law_spend',
  'in-law_spend_time',
  'spend_time_sibl',
  'time_sibl_legal',
  'sibl_legal_allow',
  'legal_allow_meet',
  'allow_meet_thing',
  'meet_thing_mom',
  'thing_mom_suffer',
  'mom_suffer_less',
  'suffer_less_financi',
  'less_financi_pandem',
  'financi_pandem_dad',
  'pandem_dad_wife',
  'dad_wife_left',
  'wife_left_job',
  'left_job_got',
  'job_got_much',
  'got_much_financi',
  'much_financi_stabil',
  'financi_stabil_took',
  'stabil_took_huge',
  'took_huge_hit',
  'huge_hit_dad',
  'hit_dad_cant',
  'dad_cant_afford',
  'cant_afford_throw',
  'afford_throw_graduat',
  'throw_graduat_parti',
  'graduat_parti_fine',
  'parti_fine_famili',
  'fine_famili_welcom',
  'famili_welcom_one',
  'welcom_one_mom',
  'one_mom_host',
  'mom_host_bitch',
  'host_bitch_miss',
  'bitch_miss_celebr',
  'miss_celebr_mom',
  'celebr_mom_told',
  'mom_told_affair',
  'told_affair_mom',
  'affair_mom_one',
  'mom_one_betray',
  'one_betray_disrespect',
  'betray_disrespect_expect',
  'disrespect_expect_act',
  'expect_act_like',
  'act_like_none',
  'like_none_happen',
  'none_happen_could',
  'happen_could_act',
  'could_act_like',
  'act_like_good',
  'like_good_guy',
  'good_guy_told',
  'guy_told_decad',
  'told_decad_mom',
  'decad_mom_taken',
  'mom_taken_side',
  'taken_side_told',
  'side_told_kept',
  'told_kept_affair',
  'kept_affair_instead',
  'affair_instead_let',
  'instead_let_come',
  'let_come_hear',
  'come_hear_aita',
  'hear_aita_eta',
  'aita_eta_anoth',
  'eta_anoth_element',
  'anoth_element_stori',
  'element_stori_affair',
  'stori_affair_first',
  'affair_first_start',
  'first_start_mom',
  'start_mom_almost',
  'mom_almost_die',
  'almost_die_lose',
  'die_lose_sibl',
  'lose_sibl_pregnanc',
  'sibl_pregnanc_went',
  'pregnanc_went_badli',
  'went_badli_wrong',
  'badli_wrong_almost',
  'wrong_almost_took',
  'almost_took_take',
  'took_take_chanc',
  'take_chanc_children',
  'chanc_children_husband',
  'children_husband_friend',
  'husband_friend_get',
  'friend_get_togeth',
  'get_togeth_behind',
  'togeth_behind_back'],
 ['sister',
  'ask',
  'babysit',
  'kid',
  '&',
  'could',
  'go',
  'friend',
  'parti',
  'told',
  'cant',
  'day',
  'exam',
  '*',
  '*',
  'colleg',
  'follow',
  'class',
  'onlin',
  'occasion',
  'babysat',
  'listen',
  'lectur',
  'day',
  'need',
  'babysitt',
  'came',
  'answer',
  'door',
  'morn',
  '*',
  'freak',
  'kid',
  'doorstep',
  'sister',
  'drive',
  '*',
  'left',
  'said',
  'stay',
  'home',
  'day',
  'call',
  'friend',
  'small',
  'daycar',
  'told',
  'could',
  'drop',
  'thank',
  'god',
  'gave',
  'sister',
  'contact',
  'info',
  'told',
  'keep',
  'updat',
  'text',
  'sister',
  'happen',
  'gave',
  'address',
  'phone',
  'number',
  'pick',
  'kid',
  'daycar',
  'sinc',
  'sister',
  'answer',
  'phone',
  'fed',
  'pick',
  'ish',
  'pm',
  'absolut',
  'livid',
  'left',
  'stranger',
  'irrespons',
  'someth',
  'could',
  'happen',
  'etc',
  'told',
  'knew',
  'babysit',
  'day',
  'could',
  'pick',
  'comfort',
  'sinc',
  'text',
  'address',
  'told',
  'skip',
  'exam',
  'retak',
  'later',
  'thought',
  'reason',
  'thing',
  'someon',
  'leav',
  'kid',
  'doorstep',
  'without',
  'warn',
  'cant',
  'take',
  'care',
  'parent',
  'side',
  'mom',
  'told',
  'sister',
  'alreadi',
  'much',
  'plate',
  'help',
  'guess',
  'babysit',
  'least',
  'one',
  'day',
  'week',
  'free',
  'good',
  'enough',
  'aita',
  'edit',
  'friend',
  'went',
  'escap',
  'room',
  'someth',
  'regular',
  'parti',
  'parent',
  'home',
  'day',
  'babysit',
  '*',
  '*',
  'retak',
  'exam',
  'hassl',
  'mean',
  'fail',
  'cant',
  'retak',
  'clear',
  'thing',
  'im',
  'sorri',
  'post',
  'seem',
  'obviou',
  'sister',
  'parent',
  'say',
  'wrong',
  'made',
  'doubt',
  'sister_ask',
  'ask_babysit',
  'babysit_kid',
  'kid_&',
  '&_could',
  'could_go',
  'go_friend',
  'friend_parti',
  'parti_told',
  'told_cant',
  'cant_day',
  'day_exam',
  'exam_*',
  '*_*',
  '*_colleg',
  'colleg_follow',
  'follow_class',
  'class_onlin',
  'onlin_occasion',
  'occasion_babysat',
  'babysat_listen',
  'listen_lectur',
  'lectur_day',
  'day_need',
  'need_babysitt',
  'babysitt_came',
  'came_answer',
  'answer_door',
  'door_morn',
  'morn_*',
  '*_freak',
  'freak_kid',
  'kid_doorstep',
  'doorstep_sister',
  'sister_drive',
  'drive_*',
  '*_left',
  'left_said',
  'said_stay',
  'stay_home',
  'home_day',
  'day_call',
  'call_friend',
  'friend_small',
  'small_daycar',
  'daycar_told',
  'told_could',
  'could_drop',
  'drop_thank',
  'thank_god',
  'god_gave',
  'gave_sister',
  'sister_contact',
  'contact_info',
  'info_told',
  'told_keep',
  'keep_updat',
  'updat_text',
  'text_sister',
  'sister_happen',
  'happen_gave',
  'gave_address',
  'address_phone',
  'phone_number',
  'number_pick',
  'pick_kid',
  'kid_daycar',
  'daycar_sinc',
  'sinc_sister',
  'sister_answer',
  'answer_phone',
  'phone_fed',
  'fed_pick',
  'pick_ish',
  'ish_pm',
  'pm_absolut',
  'absolut_livid',
  'livid_left',
  'left_stranger',
  'stranger_irrespons',
  'irrespons_someth',
  'someth_could',
  'could_happen',
  'happen_etc',
  'etc_told',
  'told_knew',
  'knew_babysit',
  'babysit_day',
  'day_could',
  'could_pick',
  'pick_comfort',
  'comfort_sinc',
  'sinc_text',
  'text_address',
  'address_told',
  'told_skip',
  'skip_exam',
  'exam_retak',
  'retak_later',
  'later_thought',
  'thought_reason',
  'reason_thing',
  'thing_someon',
  'someon_leav',
  'leav_kid',
  'kid_doorstep',
  'doorstep_without',
  'without_warn',
  'warn_cant',
  'cant_take',
  'take_care',
  'care_parent',
  'parent_side',
  'side_mom',
  'mom_told',
  'told_sister',
  'sister_alreadi',
  'alreadi_much',
  'much_plate',
  'plate_help',
  'help_guess',
  'guess_babysit',
  'babysit_least',
  'least_one',
  'one_day',
  'day_week',
  'week_free',
  'free_good',
  'good_enough',
  'enough_aita',
  'aita_edit',
  'edit_friend',
  'friend_went',
  'went_escap',
  'escap_room',
  'room_someth',
  'someth_regular',
  'regular_parti',
  'parti_parent',
  'parent_home',
  'home_day',
  'day_babysit',
  'babysit_*',
  '*_*',
  '*_retak',
  'retak_exam',
  'exam_hassl',
  'hassl_mean',
  'mean_fail',
  'fail_cant',
  'cant_retak',
  'retak_clear',
  'clear_thing',
  'thing_im',
  'im_sorri',
  'sorri_post',
  'post_seem',
  'seem_obviou',
  'obviou_sister',
  'sister_parent',
  'parent_say',
  'say_wrong',
  'wrong_made',
  'made_doubt',
  'sister_ask_babysit',
  'ask_babysit_kid',
  'babysit_kid_&',
  'kid_&_could',
  '&_could_go',
  'could_go_friend',
  'go_friend_parti',
  'friend_parti_told',
  'parti_told_cant',
  'told_cant_day',
  'cant_day_exam',
  'day_exam_*',
  'exam_*_*',
  '*_*_colleg',
  '*_colleg_follow',
  'colleg_follow_class',
  'follow_class_onlin',
  'class_onlin_occasion',
  'onlin_occasion_babysat',
  'occasion_babysat_listen',
  'babysat_listen_lectur',
  'listen_lectur_day',
  'lectur_day_need',
  'day_need_babysitt',
  'need_babysitt_came',
  'babysitt_came_answer',
  'came_answer_door',
  'answer_door_morn',
  'door_morn_*',
  'morn_*_freak',
  '*_freak_kid',
  'freak_kid_doorstep',
  'kid_doorstep_sister',
  'doorstep_sister_drive',
  'sister_drive_*',
  'drive_*_left',
  '*_left_said',
  'left_said_stay',
  'said_stay_home',
  'stay_home_day',
  'home_day_call',
  'day_call_friend',
  'call_friend_small',
  'friend_small_daycar',
  'small_daycar_told',
  'daycar_told_could',
  'told_could_drop',
  'could_drop_thank',
  'drop_thank_god',
  'thank_god_gave',
  'god_gave_sister',
  'gave_sister_contact',
  'sister_contact_info',
  'contact_info_told',
  'info_told_keep',
  'told_keep_updat',
  'keep_updat_text',
  'updat_text_sister',
  'text_sister_happen',
  'sister_happen_gave',
  'happen_gave_address',
  'gave_address_phone',
  'address_phone_number',
  'phone_number_pick',
  'number_pick_kid',
  'pick_kid_daycar',
  'kid_daycar_sinc',
  'daycar_sinc_sister',
  'sinc_sister_answer',
  'sister_answer_phone',
  'answer_phone_fed',
  'phone_fed_pick',
  'fed_pick_ish',
  'pick_ish_pm',
  'ish_pm_absolut',
  'pm_absolut_livid',
  'absolut_livid_left',
  'livid_left_stranger',
  'left_stranger_irrespons',
  'stranger_irrespons_someth',
  'irrespons_someth_could',
  'someth_could_happen',
  'could_happen_etc',
  'happen_etc_told',
  'etc_told_knew',
  'told_knew_babysit',
  'knew_babysit_day',
  'babysit_day_could',
  'day_could_pick',
  'could_pick_comfort',
  'pick_comfort_sinc',
  'comfort_sinc_text',
  'sinc_text_address',
  'text_address_told',
  'address_told_skip',
  'told_skip_exam',
  'skip_exam_retak',
  'exam_retak_later',
  'retak_later_thought',
  'later_thought_reason',
  'thought_reason_thing',
  'reason_thing_someon',
  'thing_someon_leav',
  'someon_leav_kid',
  'leav_kid_doorstep',
  'kid_doorstep_without',
  'doorstep_without_warn',
  'without_warn_cant',
  'warn_cant_take',
  'cant_take_care',
  'take_care_parent',
  'care_parent_side',
  'parent_side_mom',
  'side_mom_told',
  'mom_told_sister',
  'told_sister_alreadi',
  'sister_alreadi_much',
  'alreadi_much_plate',
  'much_plate_help',
  'plate_help_guess',
  'help_guess_babysit',
  'guess_babysit_least',
  'babysit_least_one',
  'least_one_day',
  'one_day_week',
  'day_week_free',
  'week_free_good',
  'free_good_enough',
  'good_enough_aita',
  'enough_aita_edit',
  'aita_edit_friend',
  'edit_friend_went',
  'friend_went_escap',
  'went_escap_room',
  'escap_room_someth',
  'room_someth_regular',
  'someth_regular_parti',
  'regular_parti_parent',
  'parti_parent_home',
  'parent_home_day',
  'home_day_babysit',
  'day_babysit_*',
  'babysit_*_*',
  '*_*_retak',
  '*_retak_exam',
  'retak_exam_hassl',
  'exam_hassl_mean',
  'hassl_mean_fail',
  'mean_fail_cant',
  'fail_cant_retak',
  'cant_retak_clear',
  'retak_clear_thing',
  'clear_thing_im',
  'thing_im_sorri',
  'im_sorri_post',
  'sorri_post_seem',
  'post_seem_obviou',
  'seem_obviou_sister',
  'obviou_sister_parent',
  'sister_parent_say',
  'parent_say_wrong',
  'say_wrong_made',
  'wrong_made_doubt'],
 ['hey',
  'yall',
  'first',
  'want',
  'say',
  'grate',
  'comment',
  'reciev',
  'unabl',
  'repli',
  'appreci',
  'first',
  'thing',
  'first',
  'daughter',
  'okay',
  'talk',
  'although',
  'much',
  'back',
  'use',
  'commun',
  'devic',
  'though',
  'play',
  'therapi',
  'monday',
  'thing',
  'act',
  'minorli',
  'concern',
  'apologis',
  'go',
  'detail',
  'famili',
  'found',
  'acc',
  'im',
  'tri',
  'protect',
  'privaci',
  'start',
  'talk',
  'day',
  'immedi',
  'concern',
  'therapist',
  'convey',
  'second',
  'therapist',
  'see',
  'thursday',
  'happi',
  'say',
  'answer',
  'howev',
  'wednesday',
  'dad',
  'call',
  'feel',
  'guilti',
  'desper',
  'tri',
  'figur',
  'happen',
  'eventu',
  'convinc',
  'mom',
  'get',
  'sister',
  'point',
  'sister',
  'confirm',
  'guess',
  '-',
  'girl',
  'ask',
  'chocco',
  'pop',
  'got',
  'told',
  'yell',
  'bc',
  'sister',
  'frustrat',
  'food',
  'kiddo',
  'got',
  'scare',
  'realis',
  'go',
  'toilet',
  'point',
  'non',
  'verbal',
  'tri',
  'get',
  'sister',
  'attent',
  'assum',
  'cake',
  'pop',
  'yell',
  'last',
  'part',
  'littl',
  'messi',
  'one',
  'men',
  'yell',
  'effect',
  'scare',
  'wet',
  'point',
  'start',
  'cri',
  'cousin',
  'went',
  'found',
  'dad',
  'everyon',
  'present',
  'basic',
  'agre',
  'tell',
  'full',
  'truth',
  'go',
  'mad',
  'upset',
  'still',
  'open',
  'contact',
  'everyon',
  'although',
  'dad',
  'come',
  'see',
  'yesterday',
  'came',
  'therapi',
  'us',
  'think',
  'help',
  'therapi',
  'session',
  'essenti',
  'confirm',
  'said',
  'two',
  'therapi',
  'session',
  'therapist',
  'week',
  'still',
  'tri',
  'gage',
  'two',
  'play',
  'therapi',
  'session',
  'need',
  'mayb',
  'lengthen',
  'exist',
  'one',
  'still',
  'spoken',
  'sister',
  'believ',
  'would',
  'abl',
  'civil',
  'dad',
  'work',
  'rule',
  'famili',
  'member',
  'definit',
  'involv',
  'hope',
  'see',
  'someth',
  'therapist',
  'recommend',
  'hope',
  'updat',
  'satisfactori',
  'go',
  'wait',
  'complet',
  'figur',
  'could',
  'take',
  'month',
  'depend',
  'daughter',
  'deal',
  'thing',
  'thank',
  'comment',
  'advic',
  'suggest',
  'eta',
  'ask',
  'work',
  'mani',
  'peopl',
  'dad',
  'mom',
  'sister',
  'dad',
  'wife',
  'dad',
  'mom',
  'mom',
  'six',
  'kid',
  'includ',
  'five',
  'sibl',
  'one',
  'kid',
  'sister',
  'two',
  'half',
  'sister',
  'step',
  'sister',
  'two',
  'step',
  'brother',
  'sibl',
  'round',
  'partner',
  'present',
  'bar',
  'two',
  'twenti',
  'one',
  'adult',
  'amongst',
  'everyon',
  'daughter',
  'kid',
  'brother',
  'includ',
  'twenti',
  'nine',
  'kid',
  'round',
  'total',
  'count',
  'peopl',
  'fifti',
  'fifti',
  'one',
  'count',
  'lot',
  'peopl',
  'think',
  'got',
  'math',
  'right',
  'anywho',
  'take',
  'kid',
  'teen',
  'tri',
  'figur',
  'mayb',
  'one',
  'older',
  'boy',
  'yell',
  'theyr',
  'still',
  'keep',
  'secret',
  'hey_yall',
  'yall_first',
  'first_want',
  'want_say',
  'say_grate',
  'grate_comment',
  'comment_reciev',
  'reciev_unabl',
  'unabl_repli',
  'repli_appreci',
  'appreci_first',
  'first_thing',
  'thing_first',
  'first_daughter',
  'daughter_okay',
  'okay_talk',
  'talk_although',
  'although_much',
  'much_back',
  'back_use',
  'use_commun',
  'commun_devic',
  'devic_though',
  'though_play',
  'play_therapi',
  'therapi_monday',
  'monday_thing',
  'thing_act',
  'act_minorli',
  'minorli_concern',
  'concern_apologis',
  'apologis_go',
  'go_detail',
  'detail_famili',
  'famili_found',
  'found_acc',
  'acc_im',
  'im_tri',
  'tri_protect',
  'protect_privaci',
  'privaci_start',
  'start_talk',
  'talk_day',
  'day_immedi',
  'immedi_concern',
  'concern_therapist',
  'therapist_convey',
  'convey_second',
  'second_therapist',
  'therapist_see',
  'see_thursday',
  'thursday_happi',
  'happi_say',
  'say_answer',
  'answer_howev',
  'howev_wednesday',
  'wednesday_dad',
  'dad_call',
  'call_feel',
  'feel_guilti',
  'guilti_desper',
  'desper_tri',
  'tri_figur',
  'figur_happen',
  'happen_eventu',
  'eventu_convinc',
  'convinc_mom',
  'mom_get',
  'get_sister',
  'sister_point',
  'point_sister',
  'sister_confirm',
  'confirm_guess',
  'guess_-',
  '-_girl',
  'girl_ask',
  'ask_chocco',
  'chocco_pop',
  'pop_got',
  'got_told',
  'told_yell',
  'yell_bc',
  'bc_sister',
  'sister_frustrat',
  'frustrat_food',
  'food_kiddo',
  'kiddo_got',
  'got_scare',
  'scare_realis',
  'realis_go',
  'go_toilet',
  'toilet_point',
  'point_non',
  'non_verbal',
  'verbal_tri',
  'tri_get',
  'get_sister',
  'sister_attent',
  'attent_assum',
  'assum_cake',
  'cake_pop',
  'pop_yell',
  'yell_last',
  'last_part',
  'part_littl',
  'littl_messi',
  'messi_one',
  'one_men',
  'men_yell',
  'yell_effect',
  'effect_scare',
  'scare_wet',
  'wet_point',
  'point_start',
  'start_cri',
  'cri_cousin',
  'cousin_went',
  'went_found',
  'found_dad',
  'dad_everyon',
  'everyon_present',
  'present_basic',
  'basic_agre',
  'agre_tell',
  'tell_full',
  'full_truth',
  'truth_go',
  'go_mad',
  'mad_upset',
  'upset_still',
  'still_open',
  'open_contact',
  'contact_everyon',
  'everyon_although',
  'although_dad',
  'dad_come',
  'come_see',
  'see_yesterday',
  'yesterday_came',
  'came_therapi',
  'therapi_us',
  'us_think',
  'think_help',
  'help_therapi',
  'therapi_session',
  'session_essenti',
  'essenti_confirm',
  'confirm_said',
  'said_two',
  'two_therapi',
  'therapi_session',
  'session_therapist',
  'therapist_week',
  'week_still',
  'still_tri',
  'tri_gage',
  'gage_two',
  'two_play',
  'play_therapi',
  'therapi_session',
  'session_need',
  'need_mayb',
  'mayb_lengthen',
  'lengthen_exist',
  'exist_one',
  'one_still',
  'still_spoken',
  'spoken_sister',
  'sister_believ',
  'believ_would',
  'would_abl',
  'abl_civil',
  'civil_dad',
  'dad_work',
  'work_rule',
  'rule_famili',
  'famili_member',
  'member_definit',
  'definit_involv',
  'involv_hope',
  'hope_see',
  'see_someth',
  'someth_therapist',
  'therapist_recommend',
  'recommend_hope',
  'hope_updat',
  'updat_satisfactori',
  'satisfactori_go',
  'go_wait',
  'wait_complet',
  'complet_figur',
  'figur_could',
  'could_take',
  'take_month',
  'month_depend',
  'depend_daughter',
  'daughter_deal',
  'deal_thing',
  'thing_thank',
  'thank_comment',
  'comment_advic',
  'advic_suggest',
  'suggest_eta',
  'eta_ask',
  'ask_work',
  'work_mani',
  'mani_peopl',
  'peopl_dad',
  'dad_mom',
  'mom_sister',
  'sister_dad',
  'dad_wife',
  'wife_dad',
  'dad_mom',
  'mom_mom',
  'mom_six',
  'six_kid',
  'kid_includ',
  'includ_five',
  'five_sibl',
  'sibl_one',
  'one_kid',
  'kid_sister',
  'sister_two',
  'two_half',
  'half_sister',
  'sister_step',
  'step_sister',
  'sister_two',
  'two_step',
  'step_brother',
  'brother_sibl',
  'sibl_round',
  'round_partner',
  'partner_present',
  'present_bar',
  'bar_two',
  'two_twenti',
  'twenti_one',
  'one_adult',
  'adult_amongst',
  'amongst_everyon',
  'everyon_daughter',
  'daughter_kid',
  'kid_brother',
  'brother_includ',
  'includ_twenti',
  'twenti_nine',
  'nine_kid',
  'kid_round',
  'round_total',
  'total_count',
  'count_peopl',
  'peopl_fifti',
  'fifti_fifti',
  'fifti_one',
  'one_count',
  'count_lot',
  'lot_peopl',
  'peopl_think',
  'think_got',
  'got_math',
  'math_right',
  'right_anywho',
  'anywho_take',
  'take_kid',
  'kid_teen',
  'teen_tri',
  'tri_figur',
  'figur_mayb',
  'mayb_one',
  'one_older',
  'older_boy',
  'boy_yell',
  'yell_theyr',
  'theyr_still',
  'still_keep',
  'keep_secret',
  'hey_yall_first',
  'yall_first_want',
  'first_want_say',
  'want_say_grate',
  'say_grate_comment',
  'grate_comment_reciev',
  'comment_reciev_unabl',
  'reciev_unabl_repli',
  'unabl_repli_appreci',
  'repli_appreci_first',
  'appreci_first_thing',
  'first_thing_first',
  'thing_first_daughter',
  'first_daughter_okay',
  'daughter_okay_talk',
  'okay_talk_although',
  'talk_although_much',
  'although_much_back',
  'much_back_use',
  'back_use_commun',
  'use_commun_devic',
  'commun_devic_though',
  'devic_though_play',
  'though_play_therapi',
  'play_therapi_monday',
  'therapi_monday_thing',
  'monday_thing_act',
  'thing_act_minorli',
  'act_minorli_concern',
  'minorli_concern_apologis',
  'concern_apologis_go',
  'apologis_go_detail',
  'go_detail_famili',
  'detail_famili_found',
  'famili_found_acc',
  'found_acc_im',
  'acc_im_tri',
  'im_tri_protect',
  'tri_protect_privaci',
  'protect_privaci_start',
  'privaci_start_talk',
  'start_talk_day',
  'talk_day_immedi',
  'day_immedi_concern',
  'immedi_concern_therapist',
  'concern_therapist_convey',
  'therapist_convey_second',
  'convey_second_therapist',
  'second_therapist_see',
  'therapist_see_thursday',
  'see_thursday_happi',
  'thursday_happi_say',
  'happi_say_answer',
  'say_answer_howev',
  'answer_howev_wednesday',
  'howev_wednesday_dad',
  'wednesday_dad_call',
  'dad_call_feel',
  'call_feel_guilti',
  'feel_guilti_desper',
  'guilti_desper_tri',
  'desper_tri_figur',
  'tri_figur_happen',
  'figur_happen_eventu',
  'happen_eventu_convinc',
  'eventu_convinc_mom',
  'convinc_mom_get',
  'mom_get_sister',
  'get_sister_point',
  'sister_point_sister',
  'point_sister_confirm',
  'sister_confirm_guess',
  'confirm_guess_-',
  'guess_-_girl',
  '-_girl_ask',
  'girl_ask_chocco',
  'ask_chocco_pop',
  'chocco_pop_got',
  'pop_got_told',
  'got_told_yell',
  'told_yell_bc',
  'yell_bc_sister',
  'bc_sister_frustrat',
  'sister_frustrat_food',
  'frustrat_food_kiddo',
  'food_kiddo_got',
  'kiddo_got_scare',
  'got_scare_realis',
  'scare_realis_go',
  'realis_go_toilet',
  'go_toilet_point',
  'toilet_point_non',
  'point_non_verbal',
  'non_verbal_tri',
  'verbal_tri_get',
  'tri_get_sister',
  'get_sister_attent',
  'sister_attent_assum',
  'attent_assum_cake',
  'assum_cake_pop',
  'cake_pop_yell',
  'pop_yell_last',
  'yell_last_part',
  'last_part_littl',
  'part_littl_messi',
  'littl_messi_one',
  'messi_one_men',
  'one_men_yell',
  'men_yell_effect',
  'yell_effect_scare',
  'effect_scare_wet',
  'scare_wet_point',
  'wet_point_start',
  'point_start_cri',
  'start_cri_cousin',
  'cri_cousin_went',
  'cousin_went_found',
  'went_found_dad',
  'found_dad_everyon',
  'dad_everyon_present',
  'everyon_present_basic',
  'present_basic_agre',
  'basic_agre_tell',
  'agre_tell_full',
  'tell_full_truth',
  'full_truth_go',
  'truth_go_mad',
  'go_mad_upset',
  'mad_upset_still',
  'upset_still_open',
  'still_open_contact',
  'open_contact_everyon',
  'contact_everyon_although',
  'everyon_although_dad',
  'although_dad_come',
  'dad_come_see',
  'come_see_yesterday',
  'see_yesterday_came',
  'yesterday_came_therapi',
  'came_therapi_us',
  'therapi_us_think',
  'us_think_help',
  'think_help_therapi',
  'help_therapi_session',
  'therapi_session_essenti',
  'session_essenti_confirm',
  'essenti_confirm_said',
  'confirm_said_two',
  'said_two_therapi',
  'two_therapi_session',
  'therapi_session_therapist',
  'session_therapist_week',
  'therapist_week_still',
  'week_still_tri',
  'still_tri_gage',
  'tri_gage_two',
  'gage_two_play',
  'two_play_therapi',
  'play_therapi_session',
  'therapi_session_need',
  'session_need_mayb',
  'need_mayb_lengthen',
  'mayb_lengthen_exist',
  'lengthen_exist_one',
  'exist_one_still',
  'one_still_spoken',
  'still_spoken_sister',
  'spoken_sister_believ',
  'sister_believ_would',
  'believ_would_abl',
  'would_abl_civil',
  'abl_civil_dad',
  'civil_dad_work',
  'dad_work_rule',
  'work_rule_famili',
  'rule_famili_member',
  'famili_member_definit',
  'member_definit_involv',
  'definit_involv_hope',
  'involv_hope_see',
  'hope_see_someth',
  'see_someth_therapist',
  'someth_therapist_recommend',
  'therapist_recommend_hope',
  'recommend_hope_updat',
  'hope_updat_satisfactori',
  'updat_satisfactori_go',
  'satisfactori_go_wait',
  'go_wait_complet',
  'wait_complet_figur',
  'complet_figur_could',
  'figur_could_take',
  'could_take_month',
  'take_month_depend',
  'month_depend_daughter',
  'depend_daughter_deal',
  'daughter_deal_thing',
  'deal_thing_thank',
  'thing_thank_comment',
  'thank_comment_advic',
  'comment_advic_suggest',
  'advic_suggest_eta',
  'suggest_eta_ask',
  'eta_ask_work',
  'ask_work_mani',
  'work_mani_peopl',
  'mani_peopl_dad',
  'peopl_dad_mom',
  'dad_mom_sister',
  'mom_sister_dad',
  'sister_dad_wife',
  'dad_wife_dad',
  'wife_dad_mom',
  'dad_mom_mom',
  'mom_mom_six',
  'mom_six_kid',
  'six_kid_includ',
  'kid_includ_five',
  'includ_five_sibl',
  'five_sibl_one',
  'sibl_one_kid',
  'one_kid_sister',
  'kid_sister_two',
  'sister_two_half',
  'two_half_sister',
  'half_sister_step',
  'sister_step_sister',
  'step_sister_two',
  'sister_two_step',
  'two_step_brother',
  'step_brother_sibl',
  'brother_sibl_round',
  'sibl_round_partner',
  'round_partner_present',
  'partner_present_bar',
  'present_bar_two',
  'bar_two_twenti',
  'two_twenti_one',
  'twenti_one_adult',
  'one_adult_amongst',
  'adult_amongst_everyon',
  'amongst_everyon_daughter',
  'everyon_daughter_kid',
  'daughter_kid_brother',
  'kid_brother_includ',
  'brother_includ_twenti',
  'includ_twenti_nine',
  'twenti_nine_kid',
  'nine_kid_round',
  'kid_round_total',
  'round_total_count',
  'total_count_peopl',
  'count_peopl_fifti',
  'peopl_fifti_fifti',
  'fifti_fifti_one',
  'fifti_one_count',
  'one_count_lot',
  'count_lot_peopl',
  'lot_peopl_think',
  'peopl_think_got',
  'think_got_math',
  'got_math_right',
  'math_right_anywho',
  'right_anywho_take',
  'anywho_take_kid',
  'take_kid_teen',
  'kid_teen_tri',
  'teen_tri_figur',
  'tri_figur_mayb',
  'figur_mayb_one',
  'mayb_one_older',
  'one_older_boy',
  'older_boy_yell',
  'boy_yell_theyr',
  'yell_theyr_still',
  'theyr_still_keep',
  'still_keep_secret'],
 ['sever',
  'dog',
  'one',
  'american',
  'akita',
  'name',
  'yanke',
  'thought',
  'funni',
  'seem',
  'like',
  'name',
  'sister',
  'state',
  'past',
  'two',
  'year',
  'recent',
  'flew',
  'home',
  'boyfriend',
  'tow',
  'first',
  'time',
  'weve',
  'met',
  'yada',
  'yada',
  'guess',
  'never',
  'mention',
  'dog',
  'pretti',
  'surpris',
  'told',
  'dog',
  'name',
  'think',
  'much',
  '-',
  'pet',
  'peculiar',
  'name',
  'assum',
  'overal',
  'reaction',
  'left',
  'partner',
  'dinner',
  'part',
  'way',
  'food',
  'sister',
  'call',
  'ask',
  'id',
  'consid',
  'chang',
  'dog',
  'name',
  'kind',
  'thought',
  'kid',
  'reiter',
  'seriou',
  'name',
  'yanke',
  'upset',
  'boyfriend',
  'quit',
  'badli',
  'found',
  'offens',
  'basic',
  'told',
  'fuck',
  'tell',
  'grow',
  'go',
  'back',
  'food',
  'follow',
  'day',
  'liter',
  'show',
  'door',
  'kind',
  'taken',
  'aback',
  '-',
  'appar',
  'came',
  'tell',
  'name',
  'yanke',
  'aw',
  'discuss',
  'told',
  'essenti',
  'slur',
  'use',
  'american',
  'ask',
  'would',
  'ever',
  'name',
  'dog',
  'word',
  'kind',
  'laugh',
  'told',
  'nut',
  'seriou',
  'cant',
  'equat',
  'word',
  'yanke',
  'someth',
  'like',
  '-word',
  'told',
  'go',
  'chang',
  'dog',
  'name',
  '-',
  'know',
  'itd',
  'shit',
  'ton',
  'work',
  'person',
  'protect',
  'could',
  'even',
  'damag',
  'work',
  'thank',
  'left',
  'still',
  'seem',
  'pretti',
  'upset',
  'thinkinh',
  'back',
  'im',
  'pretti',
  'sure',
  'compani',
  'yanke',
  'name',
  'wonder',
  'mani',
  'letter',
  'complaint',
  'sent',
  'anyway',
  'messag',
  'american',
  'friend',
  'make',
  'sure',
  'prick',
  'agre',
  'stupid',
  'know',
  'us',
  'huge',
  'might',
  'region',
  'thing',
  'im',
  'still',
  'sure',
  'start',
  'feel',
  'kind',
  'asshole-ish',
  'take',
  'serious',
  'may',
  'genuin',
  'issu',
  'come',
  'reddit',
  'two',
  'bird',
  'one',
  'stone',
  'know',
  'larg',
  'amount',
  'american',
  'frequent',
  'subreddit',
  'asshol',
  'issu',
  'state',
  'apologis',
  'eta',
  'shower',
  'comment',
  'nearli',
  'thousand',
  'cant',
  'keep',
  'im',
  'sorri',
  '😭',
  'anyway',
  'think',
  'south',
  'sister',
  'tori',
  'like',
  'republican',
  'eta',
  'partner',
  'sinc',
  'post',
  'gain',
  'traction',
  'want',
  'play',
  'game',
  'current',
  'tri',
  'babi',
  '-',
  'potenti',
  'babi',
  'name',
  'could',
  'mention',
  'know',
  'upset',
  'littl',
  'alreadi',
  'name',
  'pick',
  'one',
  'els',
  'know',
  'sever_dog',
  'dog_one',
  'one_american',
  'american_akita',
  'akita_name',
  'name_yanke',
  'yanke_thought',
  'thought_funni',
  'funni_seem',
  'seem_like',
  'like_name',
  'name_sister',
  'sister_state',
  'state_past',
  'past_two',
  'two_year',
  'year_recent',
  'recent_flew',
  'flew_home',
  'home_boyfriend',
  'boyfriend_tow',
  'tow_first',
  'first_time',
  'time_weve',
  'weve_met',
  'met_yada',
  'yada_yada',
  'yada_guess',
  'guess_never',
  'never_mention',
  'mention_dog',
  'dog_pretti',
  'pretti_surpris',
  'surpris_told',
  'told_dog',
  'dog_name',
  'name_think',
  'think_much',
  'much_-',
  '-_pet',
  'pet_peculiar',
  'peculiar_name',
  'name_assum',
  'assum_overal',
  'overal_reaction',
  'reaction_left',
  'left_partner',
  'partner_dinner',
  'dinner_part',
  'part_way',
  'way_food',
  'food_sister',
  'sister_call',
  'call_ask',
  'ask_id',
  'id_consid',
  'consid_chang',
  'chang_dog',
  'dog_name',
  'name_kind',
  'kind_thought',
  'thought_kid',
  'kid_reiter',
  'reiter_seriou',
  'seriou_name',
  'name_yanke',
  'yanke_upset',
  'upset_boyfriend',
  'boyfriend_quit',
  'quit_badli',
  'badli_found',
  'found_offens',
  'offens_basic',
  'basic_told',
  'told_fuck',
  'fuck_tell',
  'tell_grow',
  'grow_go',
  'go_back',
  'back_food',
  'food_follow',
  'follow_day',
  'day_liter',
  'liter_show',
  'show_door',
  'door_kind',
  'kind_taken',
  'taken_aback',
  'aback_-',
  '-_appar',
  'appar_came',
  'came_tell',
  'tell_name',
  'name_yanke',
  'yanke_aw',
  'aw_discuss',
  'discuss_told',
  'told_essenti',
  'essenti_slur',
  'slur_use',
  'use_american',
  'american_ask',
  'ask_would',
  'would_ever',
  'ever_name',
  'name_dog',
  'dog_word',
  'word_kind',
  'kind_laugh',
  'laugh_told',
  'told_nut',
  'nut_seriou',
  'seriou_cant',
  'cant_equat',
  'equat_word',
  'word_yanke',
  'yanke_someth',
  'someth_like',
  'like_-word',
  '-word_told',
  'told_go',
  'go_chang',
  'chang_dog',
  'dog_name',
  'name_-',
  '-_know',
  'know_itd',
  'itd_shit',
  'shit_ton',
  'ton_work',
  'work_person',
  'person_protect',
  'protect_could',
  'could_even',
  'even_damag',
  'damag_work',
  'work_thank',
  'thank_left',
  'left_still',
  'still_seem',
  'seem_pretti',
  'pretti_upset',
  'upset_thinkinh',
  'thinkinh_back',
  'back_im',
  'im_pretti',
  'pretti_sure',
  'sure_compani',
  'compani_yanke',
  'yanke_name',
  'name_wonder',
  'wonder_mani',
  'mani_letter',
  'letter_complaint',
  'complaint_sent',
  'sent_anyway',
  'anyway_messag',
  'messag_american',
  'american_friend',
  'friend_make',
  'make_sure',
  'sure_prick',
  'prick_agre',
  'agre_stupid',
  'stupid_know',
  'know_us',
  'us_huge',
  'huge_might',
  'might_region',
  'region_thing',
  'thing_im',
  'im_still',
  'still_sure',
  'sure_start',
  'start_feel',
  'feel_kind',
  'kind_asshole-ish',
  'asshole-ish_take',
  'take_serious',
  'serious_may',
  'may_genuin',
  'genuin_issu',
  'issu_come',
  'come_reddit',
  'reddit_two',
  'two_bird',
  'bird_one',
  'one_stone',
  'stone_know',
  'know_larg',
  'larg_amount',
  'amount_american',
  'american_frequent',
  'frequent_subreddit',
  'subreddit_asshol',
  'asshol_issu',
  'issu_state',
  'state_apologis',
  'apologis_eta',
  'eta_shower',
  'shower_comment',
  'comment_nearli',
  'nearli_thousand',
  'thousand_cant',
  'cant_keep',
  'keep_im',
  'im_sorri',
  'sorri_😭',
  '😭_anyway',
  'anyway_think',
  'think_south',
  'south_sister',
  'sister_tori',
  'tori_like',
  'like_republican',
  'republican_eta',
  'eta_partner',
  'partner_sinc',
  'sinc_post',
  'post_gain',
  'gain_traction',
  'traction_want',
  'want_play',
  'play_game',
  'game_current',
  'current_tri',
  'tri_babi',
  'babi_-',
  '-_potenti',
  'potenti_babi',
  'babi_name',
  'name_could',
  'could_mention',
  'mention_know',
  'know_upset',
  'upset_littl',
  'littl_alreadi',
  'alreadi_name',
  'name_pick',
  'pick_one',
  'one_els',
  'els_know',
  'sever_dog_one',
  'dog_one_american',
  'one_american_akita',
  'american_akita_name',
  'akita_name_yanke',
  'name_yanke_thought',
  'yanke_thought_funni',
  'thought_funni_seem',
  'funni_seem_like',
  'seem_like_name',
  'like_name_sister',
  'name_sister_state',
  'sister_state_past',
  'state_past_two',
  'past_two_year',
  'two_year_recent',
  'year_recent_flew',
  'recent_flew_home',
  'flew_home_boyfriend',
  'home_boyfriend_tow',
  'boyfriend_tow_first',
  'tow_first_time',
  'first_time_weve',
  'time_weve_met',
  'weve_met_yada',
  'met_yada_yada',
  'yada_yada_guess',
  'yada_guess_never',
  'guess_never_mention',
  'never_mention_dog',
  'mention_dog_pretti',
  'dog_pretti_surpris',
  'pretti_surpris_told',
  'surpris_told_dog',
  'told_dog_name',
  'dog_name_think',
  'name_think_much',
  'think_much_-',
  'much_-_pet',
  '-_pet_peculiar',
  'pet_peculiar_name',
  'peculiar_name_assum',
  'name_assum_overal',
  'assum_overal_reaction',
  'overal_reaction_left',
  'reaction_left_partner',
  'left_partner_dinner',
  'partner_dinner_part',
  'dinner_part_way',
  'part_way_food',
  'way_food_sister',
  'food_sister_call',
  'sister_call_ask',
  'call_ask_id',
  'ask_id_consid',
  'id_consid_chang',
  'consid_chang_dog',
  'chang_dog_name',
  'dog_name_kind',
  'name_kind_thought',
  'kind_thought_kid',
  'thought_kid_reiter',
  'kid_reiter_seriou',
  'reiter_seriou_name',
  'seriou_name_yanke',
  'name_yanke_upset',
  'yanke_upset_boyfriend',
  'upset_boyfriend_quit',
  'boyfriend_quit_badli',
  'quit_badli_found',
  'badli_found_offens',
  'found_offens_basic',
  'offens_basic_told',
  'basic_told_fuck',
  'told_fuck_tell',
  'fuck_tell_grow',
  'tell_grow_go',
  'grow_go_back',
  'go_back_food',
  'back_food_follow',
  'food_follow_day',
  'follow_day_liter',
  'day_liter_show',
  'liter_show_door',
  'show_door_kind',
  'door_kind_taken',
  'kind_taken_aback',
  'taken_aback_-',
  'aback_-_appar',
  '-_appar_came',
  'appar_came_tell',
  'came_tell_name',
  'tell_name_yanke',
  'name_yanke_aw',
  'yanke_aw_discuss',
  'aw_discuss_told',
  'discuss_told_essenti',
  'told_essenti_slur',
  'essenti_slur_use',
  'slur_use_american',
  'use_american_ask',
  'american_ask_would',
  'ask_would_ever',
  'would_ever_name',
  'ever_name_dog',
  'name_dog_word',
  'dog_word_kind',
  'word_kind_laugh',
  'kind_laugh_told',
  'laugh_told_nut',
  'told_nut_seriou',
  'nut_seriou_cant',
  'seriou_cant_equat',
  'cant_equat_word',
  'equat_word_yanke',
  'word_yanke_someth',
  'yanke_someth_like',
  'someth_like_-word',
  'like_-word_told',
  '-word_told_go',
  'told_go_chang',
  'go_chang_dog',
  'chang_dog_name',
  'dog_name_-',
  'name_-_know',
  '-_know_itd',
  'know_itd_shit',
  'itd_shit_ton',
  'shit_ton_work',
  'ton_work_person',
  'work_person_protect',
  'person_protect_could',
  'protect_could_even',
  'could_even_damag',
  'even_damag_work',
  'damag_work_thank',
  'work_thank_left',
  'thank_left_still',
  'left_still_seem',
  'still_seem_pretti',
  'seem_pretti_upset',
  'pretti_upset_thinkinh',
  'upset_thinkinh_back',
  'thinkinh_back_im',
  'back_im_pretti',
  'im_pretti_sure',
  'pretti_sure_compani',
  'sure_compani_yanke',
  'compani_yanke_name',
  'yanke_name_wonder',
  'name_wonder_mani',
  'wonder_mani_letter',
  'mani_letter_complaint',
  'letter_complaint_sent',
  'complaint_sent_anyway',
  'sent_anyway_messag',
  'anyway_messag_american',
  'messag_american_friend',
  'american_friend_make',
  'friend_make_sure',
  'make_sure_prick',
  'sure_prick_agre',
  'prick_agre_stupid',
  'agre_stupid_know',
  'stupid_know_us',
  'know_us_huge',
  'us_huge_might',
  'huge_might_region',
  'might_region_thing',
  'region_thing_im',
  'thing_im_still',
  'im_still_sure',
  'still_sure_start',
  'sure_start_feel',
  'start_feel_kind',
  'feel_kind_asshole-ish',
  'kind_asshole-ish_take',
  'asshole-ish_take_serious',
  'take_serious_may',
  'serious_may_genuin',
  'may_genuin_issu',
  'genuin_issu_come',
  'issu_come_reddit',
  'come_reddit_two',
  'reddit_two_bird',
  'two_bird_one',
  'bird_one_stone',
  'one_stone_know',
  'stone_know_larg',
  'know_larg_amount',
  'larg_amount_american',
  'amount_american_frequent',
  'american_frequent_subreddit',
  'frequent_subreddit_asshol',
  'subreddit_asshol_issu',
  'asshol_issu_state',
  'issu_state_apologis',
  'state_apologis_eta',
  'apologis_eta_shower',
  'eta_shower_comment',
  'shower_comment_nearli',
  'comment_nearli_thousand',
  'nearli_thousand_cant',
  'thousand_cant_keep',
  'cant_keep_im',
  'keep_im_sorri',
  'im_sorri_😭',
  'sorri_😭_anyway',
  '😭_anyway_think',
  'anyway_think_south',
  'think_south_sister',
  'south_sister_tori',
  'sister_tori_like',
  'tori_like_republican',
  'like_republican_eta',
  'republican_eta_partner',
  'eta_partner_sinc',
  'partner_sinc_post',
  'sinc_post_gain',
  'post_gain_traction',
  'gain_traction_want',
  'traction_want_play',
  'want_play_game',
  'play_game_current',
  'game_current_tri',
  'current_tri_babi',
  'tri_babi_-',
  'babi_-_potenti',
  '-_potenti_babi',
  'potenti_babi_name',
  'babi_name_could',
  'name_could_mention',
  'could_mention_know',
  'mention_know_upset',
  'know_upset_littl',
  'upset_littl_alreadi',
  'littl_alreadi_name',
  'alreadi_name_pick',
  'name_pick_one',
  'pick_one_els',
  'one_els_know'],
 ['found',
  'pregnant',
  'recent',
  'plan',
  'husband',
  'tri',
  'make',
  'decis',
  'regard',
  'go',
  'pregnanc',
  'thing',
  'told',
  'tell',
  'anyon',
  'end',
  'tell',
  'mom',
  'made',
  'swear',
  'tell',
  'tell',
  'sure',
  'stay',
  'quiet',
  'well',
  'beg',
  'beg',
  'announc',
  'facebook',
  'guis',
  'use',
  'permiss',
  'said',
  'absolut',
  'lie',
  'said',
  'husband',
  'want',
  'announc',
  'later',
  'decid',
  'go',
  'day',
  'ago',
  'found',
  'log',
  'husband',
  'facebook',
  'account',
  'drop',
  'bomb',
  'made',
  'announc',
  'ye',
  'pretend',
  'husband',
  'behind',
  'back',
  'floor',
  'call',
  'said',
  'figur',
  'made',
  'announc',
  'use',
  'one',
  'social',
  'media',
  'account',
  'mind',
  'itd',
  'still',
  'look',
  'like',
  'made',
  'announc',
  'like',
  'state',
  'earlier',
  'still',
  'tri',
  'make',
  'decis',
  'lost',
  'temper',
  'yell',
  'made',
  'cri',
  'said',
  'overstep',
  'mess',
  'complet',
  'hung',
  'husband',
  'came',
  'room',
  'yell',
  'poor',
  'treatment',
  'abus',
  'toward',
  'mom',
  'told',
  'mom',
  'violat',
  'privaci',
  'put',
  'us',
  'pressur',
  'final',
  'make',
  'decis',
  'babi',
  'sinc',
  'famili',
  'call',
  'say',
  'congratul',
  'said',
  'fb',
  'none',
  'privaci',
  'violat',
  'yell',
  'hurt',
  'feel',
  'made',
  'cri',
  'matter',
  'period',
  'demand',
  'apolog',
  'well',
  'talk',
  'pregnanc',
  'later',
  'give',
  'answer',
  'refus',
  'tri',
  'forc',
  'go',
  'hous',
  'grovel',
  'apolog',
  'aita',
  'found_pregnant',
  'pregnant_recent',
  'recent_plan',
  'plan_husband',
  'husband_tri',
  'tri_make',
  'make_decis',
  'decis_regard',
  'regard_go',
  'go_pregnanc',
  'pregnanc_thing',
  'thing_told',
  'told_tell',
  'tell_anyon',
  'anyon_end',
  'end_tell',
  'tell_mom',
  'mom_made',
  'made_swear',
  'swear_tell',
  'tell_tell',
  'tell_sure',
  'sure_stay',
  'stay_quiet',
  'quiet_well',
  'well_beg',
  'beg_beg',
  'beg_announc',
  'announc_facebook',
  'facebook_guis',
  'guis_use',
  'use_permiss',
  'permiss_said',
  'said_absolut',
  'absolut_lie',
  'lie_said',
  'said_husband',
  'husband_want',
  'want_announc',
  'announc_later',
  'later_decid',
  'decid_go',
  'go_day',
  'day_ago',
  'ago_found',
  'found_log',
  'log_husband',
  'husband_facebook',
  'facebook_account',
  'account_drop',
  'drop_bomb',
  'bomb_made',
  'made_announc',
  'announc_ye',
  'ye_pretend',
  'pretend_husband',
  'husband_behind',
  'behind_back',
  'back_floor',
  'floor_call',
  'call_said',
  'said_figur',
  'figur_made',
  'made_announc',
  'announc_use',
  'use_one',
  'one_social',
  'social_media',
  'media_account',
  'account_mind',
  'mind_itd',
  'itd_still',
  'still_look',
  'look_like',
  'like_made',
  'made_announc',
  'announc_like',
  'like_state',
  'state_earlier',
  'earlier_still',
  'still_tri',
  'tri_make',
  'make_decis',
  'decis_lost',
  'lost_temper',
  'temper_yell',
  'yell_made',
  'made_cri',
  'cri_said',
  'said_overstep',
  'overstep_mess',
  'mess_complet',
  'complet_hung',
  'hung_husband',
  'husband_came',
  'came_room',
  'room_yell',
  'yell_poor',
  'poor_treatment',
  'treatment_abus',
  'abus_toward',
  'toward_mom',
  'mom_told',
  'told_mom',
  'mom_violat',
  'violat_privaci',
  'privaci_put',
  'put_us',
  'us_pressur',
  'pressur_final',
  'final_make',
  'make_decis',
  'decis_babi',
  'babi_sinc',
  'sinc_famili',
  'famili_call',
  'call_say',
  'say_congratul',
  'congratul_said',
  'said_fb',
  'fb_none',
  'none_privaci',
  'privaci_violat',
  'violat_yell',
  'yell_hurt',
  'hurt_feel',
  'feel_made',
  'made_cri',
  'cri_matter',
  'matter_period',
  'period_demand',
  'demand_apolog',
  'apolog_well',
  'well_talk',
  'talk_pregnanc',
  'pregnanc_later',
  'later_give',
  'give_answer',
  'answer_refus',
  'refus_tri',
  'tri_forc',
  'forc_go',
  'go_hous',
  'hous_grovel',
  'grovel_apolog',
  'apolog_aita',
  'found_pregnant_recent',
  'pregnant_recent_plan',
  'recent_plan_husband',
  'plan_husband_tri',
  'husband_tri_make',
  'tri_make_decis',
  'make_decis_regard',
  'decis_regard_go',
  'regard_go_pregnanc',
  'go_pregnanc_thing',
  'pregnanc_thing_told',
  'thing_told_tell',
  'told_tell_anyon',
  'tell_anyon_end',
  'anyon_end_tell',
  'end_tell_mom',
  'tell_mom_made',
  'mom_made_swear',
  'made_swear_tell',
  'swear_tell_tell',
  'tell_tell_sure',
  'tell_sure_stay',
  'sure_stay_quiet',
  'stay_quiet_well',
  'quiet_well_beg',
  'well_beg_beg',
  'beg_beg_announc',
  'beg_announc_facebook',
  'announc_facebook_guis',
  'facebook_guis_use',
  'guis_use_permiss',
  'use_permiss_said',
  'permiss_said_absolut',
  'said_absolut_lie',
  'absolut_lie_said',
  'lie_said_husband',
  'said_husband_want',
  'husband_want_announc',
  'want_announc_later',
  'announc_later_decid',
  'later_decid_go',
  'decid_go_day',
  'go_day_ago',
  'day_ago_found',
  'ago_found_log',
  'found_log_husband',
  'log_husband_facebook',
  'husband_facebook_account',
  'facebook_account_drop',
  'account_drop_bomb',
  'drop_bomb_made',
  'bomb_made_announc',
  'made_announc_ye',
  'announc_ye_pretend',
  'ye_pretend_husband',
  'pretend_husband_behind',
  'husband_behind_back',
  'behind_back_floor',
  'back_floor_call',
  'floor_call_said',
  'call_said_figur',
  'said_figur_made',
  'figur_made_announc',
  'made_announc_use',
  'announc_use_one',
  'use_one_social',
  'one_social_media',
  'social_media_account',
  'media_account_mind',
  'account_mind_itd',
  'mind_itd_still',
  'itd_still_look',
  'still_look_like',
  'look_like_made',
  'like_made_announc',
  'made_announc_like',
  'announc_like_state',
  'like_state_earlier',
  'state_earlier_still',
  'earlier_still_tri',
  'still_tri_make',
  'tri_make_decis',
  'make_decis_lost',
  'decis_lost_temper',
  'lost_temper_yell',
  'temper_yell_made',
  'yell_made_cri',
  'made_cri_said',
  'cri_said_overstep',
  'said_overstep_mess',
  'overstep_mess_complet',
  'mess_complet_hung',
  'complet_hung_husband',
  'hung_husband_came',
  'husband_came_room',
  'came_room_yell',
  'room_yell_poor',
  'yell_poor_treatment',
  'poor_treatment_abus',
  'treatment_abus_toward',
  'abus_toward_mom',
  'toward_mom_told',
  'mom_told_mom',
  'told_mom_violat',
  'mom_violat_privaci',
  'violat_privaci_put',
  'privaci_put_us',
  'put_us_pressur',
  'us_pressur_final',
  'pressur_final_make',
  'final_make_decis',
  'make_decis_babi',
  'decis_babi_sinc',
  'babi_sinc_famili',
  'sinc_famili_call',
  'famili_call_say',
  'call_say_congratul',
  'say_congratul_said',
  'congratul_said_fb',
  'said_fb_none',
  'fb_none_privaci',
  'none_privaci_violat',
  'privaci_violat_yell',
  'violat_yell_hurt',
  'yell_hurt_feel',
  'hurt_feel_made',
  'feel_made_cri',
  'made_cri_matter',
  'cri_matter_period',
  'matter_period_demand',
  'period_demand_apolog',
  'demand_apolog_well',
  'apolog_well_talk',
  'well_talk_pregnanc',
  'talk_pregnanc_later',
  'pregnanc_later_give',
  'later_give_answer',
  'give_answer_refus',
  'answer_refus_tri',
  'refus_tri_forc',
  'tri_forc_go',
  'forc_go_hous',
  'go_hous_grovel',
  'hous_grovel_apolog',
  'grovel_apolog_aita'],
 ['nurs',
  'busi',
  'schedul',
  'absolut',
  'crazi',
  'past',
  'coupl',
  'year',
  'husband',
  'work',
  'offic',
  'job',
  'family-ori',
  'type',
  'guy',
  'alway',
  'hang',
  'put',
  'famili',
  'famili',
  'live',
  'ranch',
  'middl',
  'liter',
  'nowher',
  'hassl',
  'go',
  'due',
  'work',
  'natur',
  'go',
  'function',
  'howev',
  'make',
  'sure',
  'attend',
  'big',
  'one',
  'last',
  'week',
  'famili',
  'want',
  'host',
  'bbq',
  'parti',
  'want',
  'go',
  'badli',
  'sinc',
  'brother',
  'bring',
  'wife',
  'sinc',
  'mock',
  'come',
  'alon',
  'past',
  'said',
  'sorri',
  'shift',
  'cover',
  'beg',
  'suggest',
  'swap',
  'shift',
  'nurs',
  'friend',
  'even',
  'call',
  'beg',
  'cover',
  'grew',
  'irrit',
  'told',
  'stop',
  'sulk',
  'whole',
  'day',
  'drop',
  'morn',
  'hour',
  'shift',
  'discov',
  'car',
  'tire',
  'air',
  'husband',
  'offer',
  'drive',
  'hospit',
  'pm',
  'agre',
  'got',
  'readi',
  'got',
  'car',
  'instead',
  'take',
  'hospit',
  'drove',
  'straight',
  'famili',
  'ranch',
  'dumbfound',
  'angri',
  'said',
  'trick',
  'attend',
  'bbq',
  'suck',
  'set',
  'shift',
  'mad',
  'know',
  'say',
  'got',
  'ranch',
  'sat',
  'outsid',
  'fume',
  'wait',
  'saw',
  'still',
  'time',
  'make',
  'hospit',
  'figur',
  'way',
  'get',
  'watch',
  'husband',
  'go',
  'insid',
  'leav',
  'keychain',
  'next',
  'right',
  'sit',
  'took',
  'rush',
  'back',
  'car',
  'park',
  'got',
  'car',
  'drove',
  'dad',
  'saw',
  'told',
  'start',
  'call',
  'phone',
  'relentlessli',
  'til',
  'turn',
  'got',
  'hospit',
  'time',
  'dare',
  'turn',
  'phone',
  'til',
  'past',
  'pm',
  'open',
  'saw',
  'ton',
  'angri',
  'messag',
  'berat',
  'call',
  'horribl',
  'manipul',
  'got',
  'phone',
  'yell',
  'aw',
  'stunt',
  'pull',
  'bail',
  'parti',
  'make',
  'look',
  'bad',
  'infront',
  'famili',
  'calm',
  'said',
  'know',
  'work',
  'import',
  'ever',
  'trust',
  'afteri',
  'basic',
  'stole',
  'car',
  'ran',
  'weve',
  'terribl',
  'term',
  'sinc',
  'famili',
  'also',
  'mad',
  'spoken',
  'yet',
  'calcifi',
  'anyth',
  'aita',
  'desper',
  'worri',
  'mess',
  'shift',
  'might',
  'cost',
  'job',
  'nurs_busi',
  'busi_schedul',
  'schedul_absolut',
  'absolut_crazi',
  'crazi_past',
  'past_coupl',
  'coupl_year',
  'year_husband',
  'husband_work',
  'work_offic',
  'offic_job',
  'job_family-ori',
  'family-ori_type',
  'type_guy',
  'guy_alway',
  'alway_hang',
  'hang_put',
  'put_famili',
  'famili_famili',
  'famili_live',
  'live_ranch',
  'ranch_middl',
  'middl_liter',
  'liter_nowher',
  'nowher_hassl',
  'hassl_go',
  'go_due',
  'due_work',
  'work_natur',
  'natur_go',
  'go_function',
  'function_howev',
  'howev_make',
  'make_sure',
  'sure_attend',
  'attend_big',
  'big_one',
  'one_last',
  'last_week',
  'week_famili',
  'famili_want',
  'want_host',
  'host_bbq',
  'bbq_parti',
  'parti_want',
  'want_go',
  'go_badli',
  'badli_sinc',
  'sinc_brother',
  'brother_bring',
  'bring_wife',
  'wife_sinc',
  'sinc_mock',
  'mock_come',
  'come_alon',
  'alon_past',
  'past_said',
  'said_sorri',
  'sorri_shift',
  'shift_cover',
  'cover_beg',
  'beg_suggest',
  'suggest_swap',
  'swap_shift',
  'shift_nurs',
  'nurs_friend',
  'friend_even',
  'even_call',
  'call_beg',
  'beg_cover',
  'cover_grew',
  'grew_irrit',
  'irrit_told',
  'told_stop',
  'stop_sulk',
  'sulk_whole',
  'whole_day',
  'day_drop',
  'drop_morn',
  'morn_hour',
  'hour_shift',
  'shift_discov',
  'discov_car',
  'car_tire',
  'tire_air',
  'air_husband',
  'husband_offer',
  'offer_drive',
  'drive_hospit',
  'hospit_pm',
  'pm_agre',
  'agre_got',
  'got_readi',
  'readi_got',
  'got_car',
  'car_instead',
  'instead_take',
  'take_hospit',
  'hospit_drove',
  'drove_straight',
  'straight_famili',
  'famili_ranch',
  'ranch_dumbfound',
  'dumbfound_angri',
  'angri_said',
  'said_trick',
  'trick_attend',
  'attend_bbq',
  'bbq_suck',
  'suck_set',
  'set_shift',
  'shift_mad',
  'mad_know',
  'know_say',
  'say_got',
  'got_ranch',
  'ranch_sat',
  'sat_outsid',
  'outsid_fume',
  'fume_wait',
  'wait_saw',
  'saw_still',
  'still_time',
  'time_make',
  'make_hospit',
  'hospit_figur',
  'figur_way',
  'way_get',
  'get_watch',
  'watch_husband',
  'husband_go',
  'go_insid',
  'insid_leav',
  'leav_keychain',
  'keychain_next',
  'next_right',
  'right_sit',
  'sit_took',
  'took_rush',
  'rush_back',
  'back_car',
  'car_park',
  'park_got',
  'got_car',
  'car_drove',
  'drove_dad',
  'dad_saw',
  'saw_told',
  'told_start',
  'start_call',
  'call_phone',
  'phone_relentlessli',
  'relentlessli_til',
  'til_turn',
  'turn_got',
  'got_hospit',
  'hospit_time',
  'time_dare',
  'dare_turn',
  'turn_phone',
  'phone_til',
  'til_past',
  'past_pm',
  'pm_open',
  'open_saw',
  'saw_ton',
  'ton_angri',
  'angri_messag',
  'messag_berat',
  'berat_call',
  'call_horribl',
  'horribl_manipul',
  'manipul_got',
  'got_phone',
  'phone_yell',
  'yell_aw',
  'aw_stunt',
  'stunt_pull',
  'pull_bail',
  'bail_parti',
  'parti_make',
  'make_look',
  'look_bad',
  'bad_infront',
  'infront_famili',
  'famili_calm',
  'calm_said',
  'said_know',
  'know_work',
  'work_import',
  'import_ever',
  'ever_trust',
  'trust_afteri',
  'afteri_basic',
  'basic_stole',
  'stole_car',
  'car_ran',
  'ran_weve',
  'weve_terribl',
  'terribl_term',
  'term_sinc',
  'sinc_famili',
  'famili_also',
  'also_mad',
  'mad_spoken',
  'spoken_yet',
  'yet_calcifi',
  'calcifi_anyth',
  'anyth_aita',
  'aita_desper',
  'desper_worri',
  'worri_mess',
  'mess_shift',
  'shift_might',
  'might_cost',
  'cost_job',
  'nurs_busi_schedul',
  'busi_schedul_absolut',
  'schedul_absolut_crazi',
  'absolut_crazi_past',
  'crazi_past_coupl',
  'past_coupl_year',
  'coupl_year_husband',
  'year_husband_work',
  'husband_work_offic',
  'work_offic_job',
  'offic_job_family-ori',
  'job_family-ori_type',
  'family-ori_type_guy',
  'type_guy_alway',
  'guy_alway_hang',
  'alway_hang_put',
  'hang_put_famili',
  'put_famili_famili',
  'famili_famili_live',
  'famili_live_ranch',
  'live_ranch_middl',
  'ranch_middl_liter',
  'middl_liter_nowher',
  'liter_nowher_hassl',
  'nowher_hassl_go',
  'hassl_go_due',
  'go_due_work',
  'due_work_natur',
  'work_natur_go',
  'natur_go_function',
  'go_function_howev',
  'function_howev_make',
  'howev_make_sure',
  'make_sure_attend',
  'sure_attend_big',
  'attend_big_one',
  'big_one_last',
  'one_last_week',
  'last_week_famili',
  'week_famili_want',
  'famili_want_host',
  'want_host_bbq',
  'host_bbq_parti',
  'bbq_parti_want',
  'parti_want_go',
  'want_go_badli',
  'go_badli_sinc',
  'badli_sinc_brother',
  'sinc_brother_bring',
  'brother_bring_wife',
  'bring_wife_sinc',
  'wife_sinc_mock',
  'sinc_mock_come',
  'mock_come_alon',
  'come_alon_past',
  'alon_past_said',
  'past_said_sorri',
  'said_sorri_shift',
  'sorri_shift_cover',
  'shift_cover_beg',
  'cover_beg_suggest',
  'beg_suggest_swap',
  'suggest_swap_shift',
  'swap_shift_nurs',
  'shift_nurs_friend',
  'nurs_friend_even',
  'friend_even_call',
  'even_call_beg',
  'call_beg_cover',
  'beg_cover_grew',
  'cover_grew_irrit',
  'grew_irrit_told',
  'irrit_told_stop',
  'told_stop_sulk',
  'stop_sulk_whole',
  'sulk_whole_day',
  'whole_day_drop',
  'day_drop_morn',
  'drop_morn_hour',
  'morn_hour_shift',
  'hour_shift_discov',
  'shift_discov_car',
  'discov_car_tire',
  'car_tire_air',
  'tire_air_husband',
  'air_husband_offer',
  'husband_offer_drive',
  'offer_drive_hospit',
  'drive_hospit_pm',
  'hospit_pm_agre',
  'pm_agre_got',
  'agre_got_readi',
  'got_readi_got',
  'readi_got_car',
  'got_car_instead',
  'car_instead_take',
  'instead_take_hospit',
  'take_hospit_drove',
  'hospit_drove_straight',
  'drove_straight_famili',
  'straight_famili_ranch',
  'famili_ranch_dumbfound',
  'ranch_dumbfound_angri',
  'dumbfound_angri_said',
  'angri_said_trick',
  'said_trick_attend',
  'trick_attend_bbq',
  'attend_bbq_suck',
  'bbq_suck_set',
  'suck_set_shift',
  'set_shift_mad',
  'shift_mad_know',
  'mad_know_say',
  'know_say_got',
  'say_got_ranch',
  'got_ranch_sat',
  'ranch_sat_outsid',
  'sat_outsid_fume',
  'outsid_fume_wait',
  'fume_wait_saw',
  'wait_saw_still',
  'saw_still_time',
  'still_time_make',
  'time_make_hospit',
  'make_hospit_figur',
  'hospit_figur_way',
  'figur_way_get',
  'way_get_watch',
  'get_watch_husband',
  'watch_husband_go',
  'husband_go_insid',
  'go_insid_leav',
  'insid_leav_keychain',
  'leav_keychain_next',
  'keychain_next_right',
  'next_right_sit',
  'right_sit_took',
  'sit_took_rush',
  'took_rush_back',
  'rush_back_car',
  'back_car_park',
  'car_park_got',
  'park_got_car',
  'got_car_drove',
  'car_drove_dad',
  'drove_dad_saw',
  'dad_saw_told',
  'saw_told_start',
  'told_start_call',
  'start_call_phone',
  'call_phone_relentlessli',
  'phone_relentlessli_til',
  'relentlessli_til_turn',
  'til_turn_got',
  'turn_got_hospit',
  'got_hospit_time',
  'hospit_time_dare',
  'time_dare_turn',
  'dare_turn_phone',
  'turn_phone_til',
  'phone_til_past',
  'til_past_pm',
  'past_pm_open',
  'pm_open_saw',
  'open_saw_ton',
  'saw_ton_angri',
  'ton_angri_messag',
  'angri_messag_berat',
  'messag_berat_call',
  'berat_call_horribl',
  'call_horribl_manipul',
  'horribl_manipul_got',
  'manipul_got_phone',
  'got_phone_yell',
  'phone_yell_aw',
  'yell_aw_stunt',
  'aw_stunt_pull',
  'stunt_pull_bail',
  'pull_bail_parti',
  'bail_parti_make',
  'parti_make_look',
  'make_look_bad',
  'look_bad_infront',
  'bad_infront_famili',
  'infront_famili_calm',
  'famili_calm_said',
  'calm_said_know',
  'said_know_work',
  'know_work_import',
  'work_import_ever',
  'import_ever_trust',
  'ever_trust_afteri',
  'trust_afteri_basic',
  'afteri_basic_stole',
  'basic_stole_car',
  'stole_car_ran',
  'car_ran_weve',
  'ran_weve_terribl',
  'weve_terribl_term',
  'terribl_term_sinc',
  'term_sinc_famili',
  'sinc_famili_also',
  'famili_also_mad',
  'also_mad_spoken',
  'mad_spoken_yet',
  'spoken_yet_calcifi',
  'yet_calcifi_anyth',
  'calcifi_anyth_aita',
  'anyth_aita_desper',
  'aita_desper_worri',
  'desper_worri_mess',
  'worri_mess_shift',
  'mess_shift_might',
  'shift_might_cost',
  'might_cost_job'],
 ['husband',
  'best',
  'friend',
  'nate',
  'got',
  'new',
  'girlfriend',
  'camilla',
  'half',
  'year',
  'ago',
  'move',
  'citi',
  'recent',
  'realli',
  'friend',
  'hang',
  'coupl',
  'time',
  'start',
  'get',
  'friendli',
  'context',
  'twenti',
  'husband',
  'nice',
  'job',
  'small',
  'flat',
  'play',
  'tenni',
  'hobbi',
  'camilla',
  'think',
  'rich',
  'peopl',
  'sport',
  'regularli',
  'travel',
  'find',
  '€',
  'plane',
  'ticket',
  'stay',
  'cheap',
  'hostel',
  '~',
  'night',
  'time',
  'point',
  'husband',
  'host',
  'littl',
  'get',
  'togeth',
  'nate',
  'camilla',
  'friend',
  'invit',
  'one',
  'point',
  'convers',
  'went',
  'topic',
  'like',
  'current',
  'level',
  'inflat',
  'lockdown',
  'effect',
  'peopl',
  'job',
  'hous',
  'market',
  'etc',
  'someth',
  'say',
  'agre',
  'camilla',
  'camilla',
  'cut',
  'said',
  'someth',
  'like',
  'haha',
  'offens',
  'way',
  'much',
  'spoil',
  'privileg',
  'girl',
  'understand',
  'thing',
  'like',
  'would',
  'need',
  'tragedi',
  'two',
  'life',
  'understand',
  'struggl',
  'love',
  'never',
  'experienc',
  'hardship',
  'life',
  'haha',
  'room',
  'went',
  'dead',
  'silent',
  'nobodi',
  'said',
  'anyth',
  'awkward',
  'silenc',
  'stood',
  'said',
  'well',
  'anybodi',
  'hungri',
  'shall',
  'eat',
  'never',
  'went',
  'back',
  'topic',
  'camilla',
  'messag',
  'next',
  'day',
  'ask',
  'could',
  'nate',
  'told',
  'afterward',
  'abus',
  'father',
  'fell',
  'ill',
  'teenag',
  'spent',
  'month',
  'hospit',
  'multipl',
  'life',
  'save',
  'surgeri',
  'took',
  'month',
  'learn',
  'walk',
  'camilla',
  'mad',
  'tell',
  'person',
  'thing',
  'make',
  'look',
  'terribl',
  'nate',
  'friend',
  'said',
  'even',
  'correct',
  'parti',
  'would',
  'better',
  'couldv',
  'apolog',
  'front',
  'everyon',
  'took',
  'chanc',
  'away',
  'never',
  'make',
  'friend',
  'honestli',
  'whole',
  'thing',
  'ridicul',
  'realli',
  'think',
  'im',
  'asshol',
  'never',
  'hurt',
  'ask',
  'mayb',
  'gentli',
  'correct',
  'said',
  'aita',
  'husband_best',
  'best_friend',
  'friend_nate',
  'nate_got',
  'got_new',
  'new_girlfriend',
  'girlfriend_camilla',
  'camilla_half',
  'half_year',
  'year_ago',
  'ago_move',
  'move_citi',
  'citi_recent',
  'recent_realli',
  'realli_friend',
  'friend_hang',
  'hang_coupl',
  'coupl_time',
  'time_start',
  'start_get',
  'get_friendli',
  'friendli_context',
  'context_twenti',
  'twenti_husband',
  'husband_nice',
  'nice_job',
  'job_small',
  'small_flat',
  'flat_play',
  'play_tenni',
  'tenni_hobbi',
  'hobbi_camilla',
  'camilla_think',
  'think_rich',
  'rich_peopl',
  'peopl_sport',
  'sport_regularli',
  'regularli_travel',
  'travel_find',
  'find_€',
  '€_plane',
  'plane_ticket',
  'ticket_stay',
  'stay_cheap',
  'cheap_hostel',
  'hostel_~',
  '~_night',
  'night_time',
  'time_point',
  'point_husband',
  'husband_host',
  'host_littl',
  'littl_get',
  'get_togeth',
  'togeth_nate',
  'nate_camilla',
  'camilla_friend',
  'friend_invit',
  'invit_one',
  'one_point',
  'point_convers',
  'convers_went',
  'went_topic',
  'topic_like',
  'like_current',
  'current_level',
  'level_inflat',
  'inflat_lockdown',
  'lockdown_effect',
  'effect_peopl',
  'peopl_job',
  'job_hous',
  'hous_market',
  'market_etc',
  'etc_someth',
  'someth_say',
  'say_agre',
  'agre_camilla',
  'camilla_camilla',
  'camilla_cut',
  'cut_said',
  'said_someth',
  'someth_like',
  'like_haha',
  'haha_offens',
  'offens_way',
  'way_much',
  'much_spoil',
  'spoil_privileg',
  'privileg_girl',
  'girl_understand',
  'understand_thing',
  'thing_like',
  'like_would',
  'would_need',
  'need_tragedi',
  'tragedi_two',
  'two_life',
  'life_understand',
  'understand_struggl',
  'struggl_love',
  'love_never',
  'never_experienc',
  'experienc_hardship',
  'hardship_life',
  'life_haha',
  'haha_room',
  'room_went',
  'went_dead',
  'dead_silent',
  'silent_nobodi',
  'nobodi_said',
  'said_anyth',
  'anyth_awkward',
  'awkward_silenc',
  'silenc_stood',
  'stood_said',
  'said_well',
  'well_anybodi',
  'anybodi_hungri',
  'hungri_shall',
  'shall_eat',
  'eat_never',
  'never_went',
  'went_back',
  'back_topic',
  'topic_camilla',
  'camilla_messag',
  'messag_next',
  'next_day',
  'day_ask',
  'ask_could',
  'could_nate',
  'nate_told',
  'told_afterward',
  'afterward_abus',
  'abus_father',
  'father_fell',
  'fell_ill',
  'ill_teenag',
  'teenag_spent',
  'spent_month',
  'month_hospit',
  'hospit_multipl',
  'multipl_life',
  'life_save',
  'save_surgeri',
  'surgeri_took',
  'took_month',
  'month_learn',
  'learn_walk',
  'walk_camilla',
  'camilla_mad',
  'mad_tell',
  'tell_person',
  'person_thing',
  'thing_make',
  'make_look',
  'look_terribl',
  'terribl_nate',
  'nate_friend',
  'friend_said',
  'said_even',
  'even_correct',
  'correct_parti',
  'parti_would',
  'would_better',
  'better_couldv',
  'couldv_apolog',
  'apolog_front',
  'front_everyon',
  'everyon_took',
  'took_chanc',
  'chanc_away',
  'away_never',
  'never_make',
  'make_friend',
  'friend_honestli',
  'honestli_whole',
  'whole_thing',
  'thing_ridicul',
  'ridicul_realli',
  'realli_think',
  'think_im',
  'im_asshol',
  'asshol_never',
  'never_hurt',
  'hurt_ask',
  'ask_mayb',
  'mayb_gentli',
  'gentli_correct',
  'correct_said',
  'said_aita',
  'husband_best_friend',
  'best_friend_nate',
  'friend_nate_got',
  'nate_got_new',
  'got_new_girlfriend',
  'new_girlfriend_camilla',
  'girlfriend_camilla_half',
  'camilla_half_year',
  'half_year_ago',
  'year_ago_move',
  'ago_move_citi',
  'move_citi_recent',
  'citi_recent_realli',
  'recent_realli_friend',
  'realli_friend_hang',
  'friend_hang_coupl',
  'hang_coupl_time',
  'coupl_time_start',
  'time_start_get',
  'start_get_friendli',
  'get_friendli_context',
  'friendli_context_twenti',
  'context_twenti_husband',
  'twenti_husband_nice',
  'husband_nice_job',
  'nice_job_small',
  'job_small_flat',
  'small_flat_play',
  'flat_play_tenni',
  'play_tenni_hobbi',
  'tenni_hobbi_camilla',
  'hobbi_camilla_think',
  'camilla_think_rich',
  'think_rich_peopl',
  'rich_peopl_sport',
  'peopl_sport_regularli',
  'sport_regularli_travel',
  'regularli_travel_find',
  'travel_find_€',
  'find_€_plane',
  '€_plane_ticket',
  'plane_ticket_stay',
  'ticket_stay_cheap',
  'stay_cheap_hostel',
  'cheap_hostel_~',
  'hostel_~_night',
  '~_night_time',
  'night_time_point',
  'time_point_husband',
  'point_husband_host',
  'husband_host_littl',
  'host_littl_get',
  'littl_get_togeth',
  'get_togeth_nate',
  'togeth_nate_camilla',
  'nate_camilla_friend',
  'camilla_friend_invit',
  'friend_invit_one',
  'invit_one_point',
  'one_point_convers',
  'point_convers_went',
  'convers_went_topic',
  'went_topic_like',
  'topic_like_current',
  'like_current_level',
  'current_level_inflat',
  'level_inflat_lockdown',
  'inflat_lockdown_effect',
  'lockdown_effect_peopl',
  'effect_peopl_job',
  'peopl_job_hous',
  'job_hous_market',
  'hous_market_etc',
  'market_etc_someth',
  'etc_someth_say',
  'someth_say_agre',
  'say_agre_camilla',
  'agre_camilla_camilla',
  'camilla_camilla_cut',
  'camilla_cut_said',
  'cut_said_someth',
  'said_someth_like',
  'someth_like_haha',
  'like_haha_offens',
  'haha_offens_way',
  'offens_way_much',
  'way_much_spoil',
  'much_spoil_privileg',
  'spoil_privileg_girl',
  'privileg_girl_understand',
  'girl_understand_thing',
  'understand_thing_like',
  'thing_like_would',
  'like_would_need',
  'would_need_tragedi',
  'need_tragedi_two',
  'tragedi_two_life',
  'two_life_understand',
  'life_understand_struggl',
  'understand_struggl_love',
  'struggl_love_never',
  'love_never_experienc',
  'never_experienc_hardship',
  'experienc_hardship_life',
  'hardship_life_haha',
  'life_haha_room',
  'haha_room_went',
  'room_went_dead',
  'went_dead_silent',
  'dead_silent_nobodi',
  'silent_nobodi_said',
  'nobodi_said_anyth',
  'said_anyth_awkward',
  'anyth_awkward_silenc',
  'awkward_silenc_stood',
  'silenc_stood_said',
  'stood_said_well',
  'said_well_anybodi',
  'well_anybodi_hungri',
  'anybodi_hungri_shall',
  'hungri_shall_eat',
  'shall_eat_never',
  'eat_never_went',
  'never_went_back',
  'went_back_topic',
  'back_topic_camilla',
  'topic_camilla_messag',
  'camilla_messag_next',
  'messag_next_day',
  'next_day_ask',
  'day_ask_could',
  'ask_could_nate',
  'could_nate_told',
  'nate_told_afterward',
  'told_afterward_abus',
  'afterward_abus_father',
  'abus_father_fell',
  'father_fell_ill',
  'fell_ill_teenag',
  'ill_teenag_spent',
  'teenag_spent_month',
  'spent_month_hospit',
  'month_hospit_multipl',
  'hospit_multipl_life',
  'multipl_life_save',
  'life_save_surgeri',
  'save_surgeri_took',
  'surgeri_took_month',
  'took_month_learn',
  'month_learn_walk',
  'learn_walk_camilla',
  'walk_camilla_mad',
  'camilla_mad_tell',
  'mad_tell_person',
  'tell_person_thing',
  'person_thing_make',
  'thing_make_look',
  'make_look_terribl',
  'look_terribl_nate',
  'terribl_nate_friend',
  'nate_friend_said',
  'friend_said_even',
  'said_even_correct',
  'even_correct_parti',
  'correct_parti_would',
  'parti_would_better',
  'would_better_couldv',
  'better_couldv_apolog',
  'couldv_apolog_front',
  'apolog_front_everyon',
  'front_everyon_took',
  'everyon_took_chanc',
  'took_chanc_away',
  'chanc_away_never',
  'away_never_make',
  'never_make_friend',
  'make_friend_honestli',
  'friend_honestli_whole',
  'honestli_whole_thing',
  'whole_thing_ridicul',
  'thing_ridicul_realli',
  'ridicul_realli_think',
  'realli_think_im',
  'think_im_asshol',
  'im_asshol_never',
  'asshol_never_hurt',
  'never_hurt_ask',
  'hurt_ask_mayb',
  'ask_mayb_gentli',
  'mayb_gentli_correct',
  'gentli_correct_said',
  'correct_said_aita'],
 ['two',
  'daughter',
  'vegetarian',
  'husband',
  'son',
  'im',
  'probabl',
  'would',
  'call',
  'flexitarian',
  'son',
  'husband',
  'alway',
  'turn',
  'nose',
  'tofu',
  'meat',
  'altern',
  '-',
  'say',
  'weird',
  'made',
  'resembl',
  'real',
  'meat',
  'realli',
  'concept',
  'tast',
  'allergi',
  'famili',
  'often',
  'make',
  'two',
  'version',
  'dinner',
  '-',
  'one',
  'meat',
  'one',
  'real',
  'twice',
  'amount',
  'pot',
  'pan',
  'equal',
  'distribut',
  'clean',
  'cook',
  'hous',
  'thank',
  'daughter',
  'fun',
  'prank',
  'idea',
  'make',
  'two',
  'pot',
  'spaghetti',
  'sauc',
  'pretens',
  'one',
  'meat',
  'soy',
  'ground',
  'beef',
  'goal',
  'see',
  'brother',
  'father',
  'actual',
  'hate',
  'meat',
  'see',
  'could',
  'mayb',
  'save',
  'dish',
  'time',
  'futur',
  'everyon',
  'love',
  'dinner',
  'husband',
  'son',
  'finish',
  'plate',
  'youngest',
  'hold',
  'anymor',
  'told',
  'got',
  'upset',
  'fed',
  'someth',
  'told',
  'reddit',
  'aita',
  'two_daughter',
  'daughter_vegetarian',
  'vegetarian_husband',
  'husband_son',
  'son_im',
  'im_probabl',
  'probabl_would',
  'would_call',
  'call_flexitarian',
  'flexitarian_son',
  'son_husband',
  'husband_alway',
  'alway_turn',
  'turn_nose',
  'nose_tofu',
  'tofu_meat',
  'meat_altern',
  'altern_-',
  '-_say',
  'say_weird',
  'weird_made',
  'made_resembl',
  'resembl_real',
  'real_meat',
  'meat_realli',
  'realli_concept',
  'concept_tast',
  'tast_allergi',
  'allergi_famili',
  'famili_often',
  'often_make',
  'make_two',
  'two_version',
  'version_dinner',
  'dinner_-',
  '-_one',
  'one_meat',
  'meat_one',
  'one_real',
  'real_twice',
  'twice_amount',
  'amount_pot',
  'pot_pan',
  'pan_equal',
  'equal_distribut',
  'distribut_clean',
  'clean_cook',
  'cook_hous',
  'hous_thank',
  'thank_daughter',
  'daughter_fun',
  'fun_prank',
  'prank_idea',
  'idea_make',
  'make_two',
  'two_pot',
  'pot_spaghetti',
  'spaghetti_sauc',
  'sauc_pretens',
  'pretens_one',
  'one_meat',
  'meat_soy',
  'soy_ground',
  'ground_beef',
  'beef_goal',
  'goal_see',
  'see_brother',
  'brother_father',
  'father_actual',
  'actual_hate',
  'hate_meat',
  'meat_see',
  'see_could',
  'could_mayb',
  'mayb_save',
  'save_dish',
  'dish_time',
  'time_futur',
  'futur_everyon',
  'everyon_love',
  'love_dinner',
  'dinner_husband',
  'husband_son',
  'son_finish',
  'finish_plate',
  'plate_youngest',
  'youngest_hold',
  'hold_anymor',
  'anymor_told',
  'told_got',
  'got_upset',
  'upset_fed',
  'fed_someth',
  'someth_told',
  'told_reddit',
  'reddit_aita',
  'two_daughter_vegetarian',
  'daughter_vegetarian_husband',
  'vegetarian_husband_son',
  'husband_son_im',
  'son_im_probabl',
  'im_probabl_would',
  'probabl_would_call',
  'would_call_flexitarian',
  'call_flexitarian_son',
  'flexitarian_son_husband',
  'son_husband_alway',
  'husband_alway_turn',
  'alway_turn_nose',
  'turn_nose_tofu',
  'nose_tofu_meat',
  'tofu_meat_altern',
  'meat_altern_-',
  'altern_-_say',
  '-_say_weird',
  'say_weird_made',
  'weird_made_resembl',
  'made_resembl_real',
  'resembl_real_meat',
  'real_meat_realli',
  'meat_realli_concept',
  'realli_concept_tast',
  'concept_tast_allergi',
  'tast_allergi_famili',
  'allergi_famili_often',
  'famili_often_make',
  'often_make_two',
  'make_two_version',
  'two_version_dinner',
  'version_dinner_-',
  'dinner_-_one',
  '-_one_meat',
  'one_meat_one',
  'meat_one_real',
  'one_real_twice',
  'real_twice_amount',
  'twice_amount_pot',
  'amount_pot_pan',
  'pot_pan_equal',
  'pan_equal_distribut',
  'equal_distribut_clean',
  'distribut_clean_cook',
  'clean_cook_hous',
  'cook_hous_thank',
  'hous_thank_daughter',
  'thank_daughter_fun',
  'daughter_fun_prank',
  'fun_prank_idea',
  'prank_idea_make',
  'idea_make_two',
  'make_two_pot',
  'two_pot_spaghetti',
  'pot_spaghetti_sauc',
  'spaghetti_sauc_pretens',
  'sauc_pretens_one',
  'pretens_one_meat',
  'one_meat_soy',
  'meat_soy_ground',
  'soy_ground_beef',
  'ground_beef_goal',
  'beef_goal_see',
  'goal_see_brother',
  'see_brother_father',
  'brother_father_actual',
  'father_actual_hate',
  'actual_hate_meat',
  'hate_meat_see',
  'meat_see_could',
  'see_could_mayb',
  'could_mayb_save',
  'mayb_save_dish',
  'save_dish_time',
  'dish_time_futur',
  'time_futur_everyon',
  'futur_everyon_love',
  'everyon_love_dinner',
  'love_dinner_husband',
  'dinner_husband_son',
  'husband_son_finish',
  'son_finish_plate',
  'finish_plate_youngest',
  'plate_youngest_hold',
  'youngest_hold_anymor',
  'hold_anymor_told',
  'anymor_told_got',
  'told_got_upset',
  'got_upset_fed',
  'upset_fed_someth',
  'fed_someth_told',
  'someth_told_reddit',
  'told_reddit_aita'],
 ['book',
  'airbnb',
  'retreat',
  'husband',
  'sil',
  'husband',
  'month',
  'ago',
  'airbnb',
  'dog',
  'friendli',
  'made',
  'perfectli',
  'clear',
  'sil',
  'think',
  'dog',
  'welcom',
  'everywher',
  'matter',
  'cost',
  'said',
  'would',
  'find',
  'dog',
  'sitter',
  'reason',
  'question',
  'airbnb',
  'state',
  'hour',
  'away',
  'realli',
  'nice',
  'beach',
  'tampa',
  'husband',
  'flew',
  'sil',
  'insist',
  'drive',
  'left',
  'roughli',
  'hour',
  'prior',
  'flight',
  'said',
  'cheaper',
  'drive',
  'fli',
  'husband',
  'arriv',
  'sil',
  'husband',
  'alreadi',
  'sit',
  'driveway',
  'saw',
  'pull',
  'ask',
  'got',
  'key',
  'yet',
  'met',
  'owner',
  'along',
  'way',
  'said',
  'oh',
  'good',
  'give',
  'quick',
  'get',
  'brute',
  'instead',
  'without',
  'seen',
  'stop',
  'dead',
  'track',
  'like',
  'fuck',
  'kid',
  'right',
  'kept',
  'say',
  'thing',
  'like',
  'find',
  'anyon',
  'watch',
  'fuck',
  'old',
  'hous',
  'broken',
  'know',
  'anyon',
  'would',
  'ignor',
  'enough',
  'say',
  'pet',
  'allow',
  'basic',
  'kept',
  'make',
  'excus',
  'right',
  'husband',
  'sit',
  'complet',
  'dumbfound',
  'shake',
  'head',
  'got',
  'back',
  'rental',
  'car',
  'left',
  'got',
  'refund',
  'airbnb',
  'drop',
  'key',
  'woman',
  'explain',
  'situat',
  'told',
  'could',
  'still',
  'stay',
  'ive',
  'honest',
  'told',
  'place',
  'big',
  'husband',
  'end',
  'stay',
  'significantli',
  'less',
  'expens',
  'hotel',
  'paid',
  'almost',
  '$',
  'week',
  'airbnb',
  'spent',
  '$',
  'week',
  'hotel',
  'whole',
  'time',
  'sil',
  'blow',
  'us',
  'say',
  'cant',
  'afford',
  'stay',
  'husband',
  'make',
  'lot',
  'sil',
  'husband',
  'agre',
  'pay',
  'everyth',
  'say',
  'bring',
  'anyth',
  'snack',
  'afford',
  'price',
  'shit',
  'whatev',
  'straight',
  'ignor',
  'eye',
  'tri',
  'ruin',
  'trip',
  '%',
  'paid',
  'mil',
  'throat',
  'say',
  'least',
  'could',
  'done',
  'give',
  'money',
  'food',
  'instead',
  'leav',
  'strand',
  'told',
  'nope',
  'drive',
  'back',
  'home',
  'get',
  'food',
  'aita',
  'book_airbnb',
  'airbnb_retreat',
  'retreat_husband',
  'husband_sil',
  'sil_husband',
  'husband_month',
  'month_ago',
  'ago_airbnb',
  'airbnb_dog',
  'dog_friendli',
  'friendli_made',
  'made_perfectli',
  'perfectli_clear',
  'clear_sil',
  'sil_think',
  'think_dog',
  'dog_welcom',
  'welcom_everywher',
  'everywher_matter',
  'matter_cost',
  'cost_said',
  'said_would',
  'would_find',
  'find_dog',
  'dog_sitter',
  'sitter_reason',
  'reason_question',
  'question_airbnb',
  'airbnb_state',
  'state_hour',
  'hour_away',
  'away_realli',
  'realli_nice',
  'nice_beach',
  'beach_tampa',
  'tampa_husband',
  'husband_flew',
  'flew_sil',
  'sil_insist',
  'insist_drive',
  'drive_left',
  'left_roughli',
  'roughli_hour',
  'hour_prior',
  'prior_flight',
  'flight_said',
  'said_cheaper',
  'cheaper_drive',
  'drive_fli',
  'fli_husband',
  'husband_arriv',
  'arriv_sil',
  'sil_husband',
  'husband_alreadi',
  'alreadi_sit',
  'sit_driveway',
  'driveway_saw',
  'saw_pull',
  'pull_ask',
  'ask_got',
  'got_key',
  'key_yet',
  'yet_met',
  'met_owner',
  'owner_along',
  'along_way',
  'way_said',
  'said_oh',
  'oh_good',
  'good_give',
  'give_quick',
  'quick_get',
  'get_brute',
  'brute_instead',
  'instead_without',
  'without_seen',
  'seen_stop',
  'stop_dead',
  'dead_track',
  'track_like',
  'like_fuck',
  'fuck_kid',
  'kid_right',
  'right_kept',
  'kept_say',
  'say_thing',
  'thing_like',
  'like_find',
  'find_anyon',
  'anyon_watch',
  'watch_fuck',
  'fuck_old',
  'old_hous',
  'hous_broken',
  'broken_know',
  'know_anyon',
  'anyon_would',
  'would_ignor',
  'ignor_enough',
  'enough_say',
  'say_pet',
  'pet_allow',
  'allow_basic',
  'basic_kept',
  'kept_make',
  'make_excus',
  'excus_right',
  'right_husband',
  'husband_sit',
  'sit_complet',
  'complet_dumbfound',
  'dumbfound_shake',
  'shake_head',
  'head_got',
  'got_back',
  'back_rental',
  'rental_car',
  'car_left',
  'left_got',
  'got_refund',
  'refund_airbnb',
  'airbnb_drop',
  'drop_key',
  'key_woman',
  'woman_explain',
  'explain_situat',
  'situat_told',
  'told_could',
  'could_still',
  'still_stay',
  'stay_ive',
  'ive_honest',
  'honest_told',
  'told_place',
  'place_big',
  'big_husband',
  'husband_end',
  'end_stay',
  'stay_significantli',
  'significantli_less',
  'less_expens',
  'expens_hotel',
  'hotel_paid',
  'paid_almost',
  'almost_$',
  '$_week',
  'week_airbnb',
  'airbnb_spent',
  'spent_$',
  '$_week',
  'week_hotel',
  'hotel_whole',
  'whole_time',
  'time_sil',
  'sil_blow',
  'blow_us',
  'us_say',
  'say_cant',
  'cant_afford',
  'afford_stay',
  'stay_husband',
  'husband_make',
  'make_lot',
  'lot_sil',
  'sil_husband',
  'husband_agre',
  'agre_pay',
  'pay_everyth',
  'everyth_say',
  'say_bring',
  'bring_anyth',
  'anyth_snack',
  'snack_afford',
  'afford_price',
  'price_shit',
  'shit_whatev',
  'whatev_straight',
  'straight_ignor',
  'ignor_eye',
  'eye_tri',
  'tri_ruin',
  'ruin_trip',
  'trip_%',
  '%_paid',
  'paid_mil',
  'mil_throat',
  'throat_say',
  'say_least',
  'least_could',
  'could_done',
  'done_give',
  'give_money',
  'money_food',
  'food_instead',
  'instead_leav',
  'leav_strand',
  'strand_told',
  'told_nope',
  'nope_drive',
  'drive_back',
  'back_home',
  'home_get',
  'get_food',
  'food_aita',
  'book_airbnb_retreat',
  'airbnb_retreat_husband',
  'retreat_husband_sil',
  'husband_sil_husband',
  'sil_husband_month',
  'husband_month_ago',
  'month_ago_airbnb',
  'ago_airbnb_dog',
  'airbnb_dog_friendli',
  'dog_friendli_made',
  'friendli_made_perfectli',
  'made_perfectli_clear',
  'perfectli_clear_sil',
  'clear_sil_think',
  'sil_think_dog',
  'think_dog_welcom',
  'dog_welcom_everywher',
  'welcom_everywher_matter',
  'everywher_matter_cost',
  'matter_cost_said',
  'cost_said_would',
  'said_would_find',
  'would_find_dog',
  'find_dog_sitter',
  'dog_sitter_reason',
  'sitter_reason_question',
  'reason_question_airbnb',
  'question_airbnb_state',
  'airbnb_state_hour',
  'state_hour_away',
  'hour_away_realli',
  'away_realli_nice',
  'realli_nice_beach',
  'nice_beach_tampa',
  'beach_tampa_husband',
  'tampa_husband_flew',
  'husband_flew_sil',
  'flew_sil_insist',
  'sil_insist_drive',
  'insist_drive_left',
  'drive_left_roughli',
  'left_roughli_hour',
  'roughli_hour_prior',
  'hour_prior_flight',
  'prior_flight_said',
  'flight_said_cheaper',
  'said_cheaper_drive',
  'cheaper_drive_fli',
  'drive_fli_husband',
  'fli_husband_arriv',
  'husband_arriv_sil',
  'arriv_sil_husband',
  'sil_husband_alreadi',
  'husband_alreadi_sit',
  'alreadi_sit_driveway',
  'sit_driveway_saw',
  'driveway_saw_pull',
  'saw_pull_ask',
  'pull_ask_got',
  'ask_got_key',
  'got_key_yet',
  'key_yet_met',
  'yet_met_owner',
  'met_owner_along',
  'owner_along_way',
  'along_way_said',
  'way_said_oh',
  'said_oh_good',
  'oh_good_give',
  'good_give_quick',
  'give_quick_get',
  'quick_get_brute',
  'get_brute_instead',
  'brute_instead_without',
  'instead_without_seen',
  'without_seen_stop',
  'seen_stop_dead',
  'stop_dead_track',
  'dead_track_like',
  'track_like_fuck',
  'like_fuck_kid',
  'fuck_kid_right',
  'kid_right_kept',
  'right_kept_say',
  'kept_say_thing',
  'say_thing_like',
  'thing_like_find',
  'like_find_anyon',
  'find_anyon_watch',
  'anyon_watch_fuck',
  'watch_fuck_old',
  'fuck_old_hous',
  'old_hous_broken',
  'hous_broken_know',
  'broken_know_anyon',
  'know_anyon_would',
  'anyon_would_ignor',
  'would_ignor_enough',
  'ignor_enough_say',
  'enough_say_pet',
  'say_pet_allow',
  'pet_allow_basic',
  'allow_basic_kept',
  'basic_kept_make',
  'kept_make_excus',
  'make_excus_right',
  'excus_right_husband',
  'right_husband_sit',
  'husband_sit_complet',
  'sit_complet_dumbfound',
  'complet_dumbfound_shake',
  'dumbfound_shake_head',
  'shake_head_got',
  'head_got_back',
  'got_back_rental',
  'back_rental_car',
  'rental_car_left',
  'car_left_got',
  'left_got_refund',
  'got_refund_airbnb',
  'refund_airbnb_drop',
  'airbnb_drop_key',
  'drop_key_woman',
  'key_woman_explain',
  'woman_explain_situat',
  'explain_situat_told',
  'situat_told_could',
  'told_could_still',
  'could_still_stay',
  'still_stay_ive',
  'stay_ive_honest',
  'ive_honest_told',
  'honest_told_place',
  'told_place_big',
  'place_big_husband',
  'big_husband_end',
  'husband_end_stay',
  'end_stay_significantli',
  'stay_significantli_less',
  'significantli_less_expens',
  'less_expens_hotel',
  'expens_hotel_paid',
  'hotel_paid_almost',
  'paid_almost_$',
  'almost_$_week',
  '$_week_airbnb',
  'week_airbnb_spent',
  'airbnb_spent_$',
  'spent_$_week',
  '$_week_hotel',
  'week_hotel_whole',
  'hotel_whole_time',
  'whole_time_sil',
  'time_sil_blow',
  'sil_blow_us',
  'blow_us_say',
  'us_say_cant',
  'say_cant_afford',
  'cant_afford_stay',
  'afford_stay_husband',
  'stay_husband_make',
  'husband_make_lot',
  'make_lot_sil',
  'lot_sil_husband',
  'sil_husband_agre',
  'husband_agre_pay',
  'agre_pay_everyth',
  'pay_everyth_say',
  'everyth_say_bring',
  'say_bring_anyth',
  'bring_anyth_snack',
  'anyth_snack_afford',
  'snack_afford_price',
  'afford_price_shit',
  'price_shit_whatev',
  'shit_whatev_straight',
  'whatev_straight_ignor',
  'straight_ignor_eye',
  'ignor_eye_tri',
  'eye_tri_ruin',
  'tri_ruin_trip',
  'ruin_trip_%',
  'trip_%_paid',
  '%_paid_mil',
  'paid_mil_throat',
  'mil_throat_say',
  'throat_say_least',
  'say_least_could',
  'least_could_done',
  'could_done_give',
  'done_give_money',
  'give_money_food',
  'money_food_instead',
  'food_instead_leav',
  'instead_leav_strand',
  'leav_strand_told',
  'strand_told_nope',
  'told_nope_drive',
  'nope_drive_back',
  'drive_back_home',
  'back_home_get',
  'home_get_food',
  'get_food_aita'],
 ['wife',
  'invit',
  'brother',
  'st',
  'birthday',
  'singl',
  'live',
  'alon',
  'apart',
  'give',
  'headsup',
  'wife',
  'get',
  'along',
  'well',
  'civil',
  'enough',
  'sit',
  'tabl',
  'went',
  'dinner',
  'talk',
  'everyth',
  'go',
  'well',
  'argument',
  'noth',
  'til',
  'wife',
  'went',
  'use',
  'bathroom',
  'later',
  'brother',
  'went',
  'use',
  'bathroom',
  'came',
  'back',
  'look',
  'piss',
  'kept',
  'give',
  'wife',
  'look',
  'know',
  'go',
  'til',
  'pull',
  'asid',
  'left',
  'told',
  'wife',
  'left',
  'use',
  'pad',
  'bathroom',
  'shock',
  'know',
  'say',
  'felt',
  'highli',
  'inappropri',
  'said',
  'appreci',
  'wife',
  'sign',
  'disrespect',
  'toward',
  'apolog',
  'profoundli',
  'said',
  'know',
  'ask',
  'speak',
  'welcom',
  'place',
  'anymor',
  'got',
  'car',
  'ask',
  'wife',
  'nonchantli',
  'said',
  'noth',
  'wrong',
  'brother',
  'ridicul',
  'kind',
  'flip',
  'told',
  'inappropri',
  'leav',
  'use',
  'pad',
  'place',
  'even',
  'bathroom',
  'trashcan',
  'made',
  'uncomfort',
  'yell',
  'ask',
  'supoos',
  'told',
  'couldv',
  'took',
  'threw',
  'outsid',
  'bathroom',
  '--',
  'brother',
  'place',
  'told',
  'felt',
  'yell',
  'call',
  'brother',
  'incel',
  'asshol',
  'get',
  'face',
  'said',
  'need',
  'use',
  'bathroom',
  'like',
  'pad',
  'vidibl',
  'sinc',
  'dump',
  'trashcan',
  'home',
  'still',
  'argu',
  'kept',
  'call',
  'brother',
  'name',
  'current',
  'speak',
  'avoid',
  'entir',
  'regardless',
  'feel',
  'like',
  'place',
  'get',
  'express',
  'make',
  'uncomfort',
  'edit',
  'cant',
  'give',
  'info',
  'expand',
  'seen',
  'tell',
  'trash',
  'lid',
  'like',
  'one',
  'trashcan',
  'lid',
  'top',
  'push',
  'want',
  'emphas',
  'fact',
  'guest',
  'respect',
  'peopl',
  'home',
  'argu',
  'make',
  'uncomfort',
  'said',
  'made',
  'uncomfort',
  'opinion',
  'acknowledg',
  'wife_invit',
  'invit_brother',
  'brother_st',
  'st_birthday',
  'birthday_singl',
  'singl_live',
  'live_alon',
  'alon_apart',
  'apart_give',
  'give_headsup',
  'headsup_wife',
  'wife_get',
  'get_along',
  'along_well',
  'well_civil',
  'civil_enough',
  'enough_sit',
  'sit_tabl',
  'tabl_went',
  'went_dinner',
  'dinner_talk',
  'talk_everyth',
  'everyth_go',
  'go_well',
  'well_argument',
  'argument_noth',
  'noth_til',
  'til_wife',
  'wife_went',
  'went_use',
  'use_bathroom',
  'bathroom_later',
  'later_brother',
  'brother_went',
  'went_use',
  'use_bathroom',
  'bathroom_came',
  'came_back',
  'back_look',
  'look_piss',
  'piss_kept',
  'kept_give',
  'give_wife',
  'wife_look',
  'look_know',
  'know_go',
  'go_til',
  'til_pull',
  'pull_asid',
  'asid_left',
  'left_told',
  'told_wife',
  'wife_left',
  'left_use',
  'use_pad',
  'pad_bathroom',
  'bathroom_shock',
  'shock_know',
  'know_say',
  'say_felt',
  'felt_highli',
  'highli_inappropri',
  'inappropri_said',
  'said_appreci',
  'appreci_wife',
  'wife_sign',
  'sign_disrespect',
  'disrespect_toward',
  'toward_apolog',
  'apolog_profoundli',
  'profoundli_said',
  'said_know',
  'know_ask',
  'ask_speak',
  'speak_welcom',
  'welcom_place',
  'place_anymor',
  'anymor_got',
  'got_car',
  'car_ask',
  'ask_wife',
  'wife_nonchantli',
  'nonchantli_said',
  'said_noth',
  'noth_wrong',
  'wrong_brother',
  'brother_ridicul',
  'ridicul_kind',
  'kind_flip',
  'flip_told',
  'told_inappropri',
  'inappropri_leav',
  'leav_use',
  'use_pad',
  'pad_place',
  'place_even',
  'even_bathroom',
  'bathroom_trashcan',
  'trashcan_made',
  'made_uncomfort',
  'uncomfort_yell',
  'yell_ask',
  'ask_supoos',
  'supoos_told',
  'told_couldv',
  'couldv_took',
  'took_threw',
  'threw_outsid',
  'outsid_bathroom',
  'bathroom_--',
  '--_brother',
  'brother_place',
  'place_told',
  'told_felt',
  'felt_yell',
  'yell_call',
  'call_brother',
  'brother_incel',
  'incel_asshol',
  'asshol_get',
  'get_face',
  'face_said',
  'said_need',
  'need_use',
  'use_bathroom',
  'bathroom_like',
  'like_pad',
  'pad_vidibl',
  'vidibl_sinc',
  'sinc_dump',
  'dump_trashcan',
  'trashcan_home',
  'home_still',
  'still_argu',
  'argu_kept',
  'kept_call',
  'call_brother',
  'brother_name',
  'name_current',
  'current_speak',
  'speak_avoid',
  'avoid_entir',
  'entir_regardless',
  'regardless_feel',
  'feel_like',
  'like_place',
  'place_get',
  'get_express',
  'express_make',
  'make_uncomfort',
  'uncomfort_edit',
  'edit_cant',
  'cant_give',
  'give_info',
  'info_expand',
  'expand_seen',
  'seen_tell',
  'tell_trash',
  'trash_lid',
  'lid_like',
  'like_one',
  'one_trashcan',
  'trashcan_lid',
  'lid_top',
  'top_push',
  'push_want',
  'want_emphas',
  'emphas_fact',
  'fact_guest',
  'guest_respect',
  'respect_peopl',
  'peopl_home',
  'home_argu',
  'argu_make',
  'make_uncomfort',
  'uncomfort_said',
  'said_made',
  'made_uncomfort',
  'uncomfort_opinion',
  'opinion_acknowledg',
  'wife_invit_brother',
  'invit_brother_st',
  'brother_st_birthday',
  'st_birthday_singl',
  'birthday_singl_live',
  'singl_live_alon',
  'live_alon_apart',
  'alon_apart_give',
  'apart_give_headsup',
  'give_headsup_wife',
  'headsup_wife_get',
  'wife_get_along',
  'get_along_well',
  'along_well_civil',
  'well_civil_enough',
  'civil_enough_sit',
  'enough_sit_tabl',
  'sit_tabl_went',
  'tabl_went_dinner',
  'went_dinner_talk',
  'dinner_talk_everyth',
  'talk_everyth_go',
  'everyth_go_well',
  'go_well_argument',
  'well_argument_noth',
  'argument_noth_til',
  'noth_til_wife',
  'til_wife_went',
  'wife_went_use',
  'went_use_bathroom',
  'use_bathroom_later',
  'bathroom_later_brother',
  'later_brother_went',
  'brother_went_use',
  'went_use_bathroom',
  'use_bathroom_came',
  'bathroom_came_back',
  'came_back_look',
  'back_look_piss',
  'look_piss_kept',
  'piss_kept_give',
  'kept_give_wife',
  'give_wife_look',
  'wife_look_know',
  'look_know_go',
  'know_go_til',
  'go_til_pull',
  'til_pull_asid',
  'pull_asid_left',
  'asid_left_told',
  'left_told_wife',
  'told_wife_left',
  'wife_left_use',
  'left_use_pad',
  'use_pad_bathroom',
  'pad_bathroom_shock',
  'bathroom_shock_know',
  'shock_know_say',
  'know_say_felt',
  'say_felt_highli',
  'felt_highli_inappropri',
  'highli_inappropri_said',
  'inappropri_said_appreci',
  'said_appreci_wife',
  'appreci_wife_sign',
  'wife_sign_disrespect',
  'sign_disrespect_toward',
  'disrespect_toward_apolog',
  'toward_apolog_profoundli',
  'apolog_profoundli_said',
  'profoundli_said_know',
  'said_know_ask',
  'know_ask_speak',
  'ask_speak_welcom',
  'speak_welcom_place',
  'welcom_place_anymor',
  'place_anymor_got',
  'anymor_got_car',
  'got_car_ask',
  'car_ask_wife',
  'ask_wife_nonchantli',
  'wife_nonchantli_said',
  'nonchantli_said_noth',
  'said_noth_wrong',
  'noth_wrong_brother',
  'wrong_brother_ridicul',
  'brother_ridicul_kind',
  'ridicul_kind_flip',
  'kind_flip_told',
  'flip_told_inappropri',
  'told_inappropri_leav',
  'inappropri_leav_use',
  'leav_use_pad',
  'use_pad_place',
  'pad_place_even',
  'place_even_bathroom',
  'even_bathroom_trashcan',
  'bathroom_trashcan_made',
  'trashcan_made_uncomfort',
  'made_uncomfort_yell',
  'uncomfort_yell_ask',
  'yell_ask_supoos',
  'ask_supoos_told',
  'supoos_told_couldv',
  'told_couldv_took',
  'couldv_took_threw',
  'took_threw_outsid',
  'threw_outsid_bathroom',
  'outsid_bathroom_--',
  'bathroom_--_brother',
  '--_brother_place',
  'brother_place_told',
  'place_told_felt',
  'told_felt_yell',
  'felt_yell_call',
  'yell_call_brother',
  'call_brother_incel',
  'brother_incel_asshol',
  'incel_asshol_get',
  'asshol_get_face',
  'get_face_said',
  'face_said_need',
  'said_need_use',
  'need_use_bathroom',
  'use_bathroom_like',
  'bathroom_like_pad',
  'like_pad_vidibl',
  'pad_vidibl_sinc',
  'vidibl_sinc_dump',
  'sinc_dump_trashcan',
  'dump_trashcan_home',
  'trashcan_home_still',
  'home_still_argu',
  'still_argu_kept',
  'argu_kept_call',
  'kept_call_brother',
  'call_brother_name',
  'brother_name_current',
  'name_current_speak',
  'current_speak_avoid',
  'speak_avoid_entir',
  'avoid_entir_regardless',
  'entir_regardless_feel',
  'regardless_feel_like',
  'feel_like_place',
  'like_place_get',
  'place_get_express',
  'get_express_make',
  'express_make_uncomfort',
  'make_uncomfort_edit',
  'uncomfort_edit_cant',
  'edit_cant_give',
  'cant_give_info',
  'give_info_expand',
  'info_expand_seen',
  'expand_seen_tell',
  'seen_tell_trash',
  'tell_trash_lid',
  'trash_lid_like',
  'lid_like_one',
  'like_one_trashcan',
  'one_trashcan_lid',
  'trashcan_lid_top',
  'lid_top_push',
  'top_push_want',
  'push_want_emphas',
  'want_emphas_fact',
  'emphas_fact_guest',
  'fact_guest_respect',
  'guest_respect_peopl',
  'respect_peopl_home',
  'peopl_home_argu',
  'home_argu_make',
  'argu_make_uncomfort',
  'make_uncomfort_said',
  'uncomfort_said_made',
  'said_made_uncomfort',
  'made_uncomfort_opinion',
  'uncomfort_opinion_acknowledg'],
 ['dad',
  'die',
  'mom',
  'wait',
  'long',
  'start',
  'move',
  'new',
  'partner',
  'month',
  'later',
  'dad',
  'left',
  'everyth',
  'even',
  'dime',
  'marri',
  'dad',
  'structur',
  'challeng',
  'attempt',
  'even',
  'ask',
  'pass',
  'one',
  'properti',
  'show',
  'new',
  'dad',
  'welcom',
  'even',
  'want',
  'dad',
  'specifi',
  'must',
  'access',
  'everyth',
  'left',
  'dude',
  'kid',
  'age',
  'mom',
  'priorit',
  'keep',
  'happi',
  'mean',
  'like',
  'ab\\',
  '*',
  'sive',
  'neglect',
  'tend',
  'favor',
  'went',
  'trip',
  'even',
  'tell',
  'go',
  'shed',
  'say',
  'someth',
  'line',
  'like',
  'go',
  'grandpar',
  'dad',
  'better',
  'mean',
  'im',
  'stupid',
  'know',
  'want',
  'turn',
  'ask',
  'leav',
  'hous',
  'kept',
  'fight',
  'dude',
  'also',
  'remind',
  'whose',
  'hous',
  'want',
  'play',
  'man',
  'hous',
  'also',
  'call',
  'john',
  'conroy',
  'grandpar',
  'told',
  'avoid',
  'confront',
  'went',
  'live',
  'mom',
  'would',
  'visit',
  'often',
  'tell',
  'much',
  'love',
  'need',
  'keep',
  'peac',
  'home',
  'colleg',
  'decid',
  'check',
  'properti',
  'also',
  'one',
  'mom',
  'live',
  'want',
  'renov',
  'rent',
  'sinc',
  'good',
  'one',
  'help',
  'afford',
  'master',
  'went',
  'inform',
  'mom',
  'one',
  'later',
  'found',
  'went',
  'vacat',
  'call',
  'answer',
  'proceed',
  'chang',
  'lock',
  'mainli',
  'offici',
  'take',
  'possess',
  'arriv',
  'yesterday',
  'could',
  'get',
  'cours',
  'call',
  'town',
  'went',
  'day',
  'renov',
  'work',
  'start',
  'week',
  'back',
  'yard',
  'mom',
  'came',
  'furiou',
  'yell',
  'say',
  'dare',
  'talk',
  'let',
  'know',
  'two',
  'week',
  'leav',
  'husband',
  'unemploy',
  'oh',
  'sorri',
  'self-employ',
  'furiou',
  'mom',
  'stepdaught',
  'start',
  'cri',
  'girl',
  'pregnant',
  'im',
  'sorri',
  'made',
  'mind',
  'mom',
  'famili',
  'shame',
  'id',
  'like',
  'know',
  'think',
  'im',
  'ta',
  'mom',
  'call',
  'today',
  'say',
  'talk',
  'edit',
  'im',
  'usa',
  'realli',
  'look',
  'legal',
  'advic',
  'guy',
  'life',
  'usa',
  'exist',
  'countri',
  'world',
  'dad_die',
  'die_mom',
  'mom_wait',
  'wait_long',
  'long_start',
  'start_move',
  'move_new',
  'new_partner',
  'partner_month',
  'month_later',
  'later_dad',
  'dad_left',
  'left_everyth',
  'everyth_even',
  'even_dime',
  'dime_marri',
  'marri_dad',
  'dad_structur',
  'structur_challeng',
  'challeng_attempt',
  'attempt_even',
  'even_ask',
  'ask_pass',
  'pass_one',
  'one_properti',
  'properti_show',
  'show_new',
  'new_dad',
  'dad_welcom',
  'welcom_even',
  'even_want',
  'want_dad',
  'dad_specifi',
  'specifi_must',
  'must_access',
  'access_everyth',
  'everyth_left',
  'left_dude',
  'dude_kid',
  'kid_age',
  'age_mom',
  'mom_priorit',
  'priorit_keep',
  'keep_happi',
  'happi_mean',
  'mean_like',
  'like_ab\\',
  'ab\\_*',
  '*_sive',
  'sive_neglect',
  'neglect_tend',
  'tend_favor',
  'favor_went',
  'went_trip',
  'trip_even',
  'even_tell',
  'tell_go',
  'go_shed',
  'shed_say',
  'say_someth',
  'someth_line',
  'line_like',
  'like_go',
  'go_grandpar',
  'grandpar_dad',
  'dad_better',
  'better_mean',
  'mean_im',
  'im_stupid',
  'stupid_know',
  'know_want',
  'want_turn',
  'turn_ask',
  'ask_leav',
  'leav_hous',
  'hous_kept',
  'kept_fight',
  'fight_dude',
  'dude_also',
  'also_remind',
  'remind_whose',
  'whose_hous',
  'hous_want',
  'want_play',
  'play_man',
  'man_hous',
  'hous_also',
  'also_call',
  'call_john',
  'john_conroy',
  'conroy_grandpar',
  'grandpar_told',
  'told_avoid',
  'avoid_confront',
  'confront_went',
  'went_live',
  'live_mom',
  'mom_would',
  'would_visit',
  'visit_often',
  'often_tell',
  'tell_much',
  'much_love',
  'love_need',
  'need_keep',
  'keep_peac',
  'peac_home',
  'home_colleg',
  'colleg_decid',
  'decid_check',
  'check_properti',
  'properti_also',
  'also_one',
  'one_mom',
  'mom_live',
  'live_want',
  'want_renov',
  'renov_rent',
  'rent_sinc',
  'sinc_good',
  'good_one',
  'one_help',
  'help_afford',
  'afford_master',
  'master_went',
  'went_inform',
  'inform_mom',
  'mom_one',
  'one_later',
  'later_found',
  'found_went',
  'went_vacat',
  'vacat_call',
  'call_answer',
  'answer_proceed',
  'proceed_chang',
  'chang_lock',
  'lock_mainli',
  'mainli_offici',
  'offici_take',
  'take_possess',
  'possess_arriv',
  'arriv_yesterday',
  'yesterday_could',
  'could_get',
  'get_cours',
  'cours_call',
  'call_town',
  'town_went',
  'went_day',
  'day_renov',
  'renov_work',
  'work_start',
  'start_week',
  'week_back',
  'back_yard',
  'yard_mom',
  'mom_came',
  'came_furiou',
  'furiou_yell',
  'yell_say',
  'say_dare',
  'dare_talk',
  'talk_let',
  'let_know',
  'know_two',
  'two_week',
  'week_leav',
  'leav_husband',
  'husband_unemploy',
  'unemploy_oh',
  'oh_sorri',
  'sorri_self-employ',
  'self-employ_furiou',
  'furiou_mom',
  'mom_stepdaught',
  'stepdaught_start',
  'start_cri',
  'cri_girl',
  'girl_pregnant',
  'pregnant_im',
  'im_sorri',
  'sorri_made',
  'made_mind',
  'mind_mom',
  'mom_famili',
  'famili_shame',
  'shame_id',
  'id_like',
  'like_know',
  'know_think',
  'think_im',
  'im_ta',
  'ta_mom',
  'mom_call',
  'call_today',
  'today_say',
  'say_talk',
  'talk_edit',
  'edit_im',
  'im_usa',
  'usa_realli',
  'realli_look',
  'look_legal',
  'legal_advic',
  'advic_guy',
  'guy_life',
  'life_usa',
  'usa_exist',
  'exist_countri',
  'countri_world',
  'dad_die_mom',
  'die_mom_wait',
  'mom_wait_long',
  'wait_long_start',
  'long_start_move',
  'start_move_new',
  'move_new_partner',
  'new_partner_month',
  'partner_month_later',
  'month_later_dad',
  'later_dad_left',
  'dad_left_everyth',
  'left_everyth_even',
  'everyth_even_dime',
  'even_dime_marri',
  'dime_marri_dad',
  'marri_dad_structur',
  'dad_structur_challeng',
  'structur_challeng_attempt',
  'challeng_attempt_even',
  'attempt_even_ask',
  'even_ask_pass',
  'ask_pass_one',
  'pass_one_properti',
  'one_properti_show',
  'properti_show_new',
  'show_new_dad',
  'new_dad_welcom',
  'dad_welcom_even',
  'welcom_even_want',
  'even_want_dad',
  'want_dad_specifi',
  'dad_specifi_must',
  'specifi_must_access',
  'must_access_everyth',
  'access_everyth_left',
  'everyth_left_dude',
  'left_dude_kid',
  'dude_kid_age',
  'kid_age_mom',
  'age_mom_priorit',
  'mom_priorit_keep',
  'priorit_keep_happi',
  'keep_happi_mean',
  'happi_mean_like',
  'mean_like_ab\\',
  'like_ab\\_*',
  'ab\\_*_sive',
  '*_sive_neglect',
  'sive_neglect_tend',
  'neglect_tend_favor',
  'tend_favor_went',
  'favor_went_trip',
  'went_trip_even',
  'trip_even_tell',
  'even_tell_go',
  'tell_go_shed',
  'go_shed_say',
  'shed_say_someth',
  'say_someth_line',
  'someth_line_like',
  'line_like_go',
  'like_go_grandpar',
  'go_grandpar_dad',
  'grandpar_dad_better',
  'dad_better_mean',
  'better_mean_im',
  'mean_im_stupid',
  'im_stupid_know',
  'stupid_know_want',
  'know_want_turn',
  'want_turn_ask',
  'turn_ask_leav',
  'ask_leav_hous',
  'leav_hous_kept',
  'hous_kept_fight',
  'kept_fight_dude',
  'fight_dude_also',
  'dude_also_remind',
  'also_remind_whose',
  'remind_whose_hous',
  'whose_hous_want',
  'hous_want_play',
  'want_play_man',
  'play_man_hous',
  'man_hous_also',
  'hous_also_call',
  'also_call_john',
  'call_john_conroy',
  'john_conroy_grandpar',
  'conroy_grandpar_told',
  'grandpar_told_avoid',
  'told_avoid_confront',
  'avoid_confront_went',
  'confront_went_live',
  'went_live_mom',
  'live_mom_would',
  'mom_would_visit',
  'would_visit_often',
  'visit_often_tell',
  'often_tell_much',
  'tell_much_love',
  'much_love_need',
  'love_need_keep',
  'need_keep_peac',
  'keep_peac_home',
  'peac_home_colleg',
  'home_colleg_decid',
  'colleg_decid_check',
  'decid_check_properti',
  'check_properti_also',
  'properti_also_one',
  'also_one_mom',
  'one_mom_live',
  'mom_live_want',
  'live_want_renov',
  'want_renov_rent',
  'renov_rent_sinc',
  'rent_sinc_good',
  'sinc_good_one',
  'good_one_help',
  'one_help_afford',
  'help_afford_master',
  'afford_master_went',
  'master_went_inform',
  'went_inform_mom',
  'inform_mom_one',
  'mom_one_later',
  'one_later_found',
  'later_found_went',
  'found_went_vacat',
  'went_vacat_call',
  'vacat_call_answer',
  'call_answer_proceed',
  'answer_proceed_chang',
  'proceed_chang_lock',
  'chang_lock_mainli',
  'lock_mainli_offici',
  'mainli_offici_take',
  'offici_take_possess',
  'take_possess_arriv',
  'possess_arriv_yesterday',
  'arriv_yesterday_could',
  'yesterday_could_get',
  'could_get_cours',
  'get_cours_call',
  'cours_call_town',
  'call_town_went',
  'town_went_day',
  'went_day_renov',
  'day_renov_work',
  'renov_work_start',
  'work_start_week',
  'start_week_back',
  'week_back_yard',
  'back_yard_mom',
  'yard_mom_came',
  'mom_came_furiou',
  'came_furiou_yell',
  'furiou_yell_say',
  'yell_say_dare',
  'say_dare_talk',
  'dare_talk_let',
  'talk_let_know',
  'let_know_two',
  'know_two_week',
  'two_week_leav',
  'week_leav_husband',
  'leav_husband_unemploy',
  'husband_unemploy_oh',
  'unemploy_oh_sorri',
  'oh_sorri_self-employ',
  'sorri_self-employ_furiou',
  'self-employ_furiou_mom',
  'furiou_mom_stepdaught',
  'mom_stepdaught_start',
  'stepdaught_start_cri',
  'start_cri_girl',
  'cri_girl_pregnant',
  'girl_pregnant_im',
  'pregnant_im_sorri',
  'im_sorri_made',
  'sorri_made_mind',
  'made_mind_mom',
  'mind_mom_famili',
  'mom_famili_shame',
  'famili_shame_id',
  'shame_id_like',
  'id_like_know',
  'like_know_think',
  'know_think_im',
  'think_im_ta',
  'im_ta_mom',
  'ta_mom_call',
  'mom_call_today',
  'call_today_say',
  'today_say_talk',
  'say_talk_edit',
  'talk_edit_im',
  'edit_im_usa',
  'im_usa_realli',
  'usa_realli_look',
  'realli_look_legal',
  'look_legal_advic',
  'legal_advic_guy',
  'advic_guy_life',
  'guy_life_usa',
  'life_usa_exist',
  'usa_exist_countri',
  'exist_countri_world'],
 ['long',
  'stori',
  'short',
  'husband',
  'one',
  'femal',
  'friend',
  'ill',
  'call',
  'sarah',
  'get',
  'along',
  'fine',
  'everi',
  'awhil',
  'shell',
  'make',
  'comment',
  'sit',
  'littl',
  'close',
  'touch',
  'lot',
  'compet',
  'close',
  'well',
  'know',
  'one',
  'big',
  'group',
  'friend',
  'ive',
  'talk',
  'husband',
  'sever',
  'time',
  'mani',
  'ad',
  'micro-act',
  'hard',
  'tell',
  'one',
  'singular',
  'thing',
  'without',
  'look',
  'crazi',
  'well',
  'past',
  'weekend',
  'group',
  'friend',
  'got',
  'togeth',
  'first',
  'time',
  'sinc',
  'boost',
  'husband',
  'elop',
  'week',
  'ago',
  'first',
  'time',
  'see',
  'us',
  'sinc',
  'sarah',
  'came',
  'right',
  'got',
  'face',
  'group',
  'congratul',
  'us',
  'tell',
  'husband',
  'disappoint',
  'tell',
  'ceremoni',
  'invit',
  'even',
  'send',
  'photo',
  'told',
  'nobodi',
  'except',
  'parent',
  'knew',
  'nobodi',
  'invit',
  'profession',
  'photo',
  'back',
  'girl',
  'start',
  'sob',
  'could',
  'want',
  'man',
  'honor',
  'get',
  'marri',
  'singl',
  'even',
  'invit',
  'friendship',
  'need',
  'seriou',
  'tlc',
  'recov',
  'front',
  'whole',
  'group',
  'take',
  'anymor',
  'said',
  'might',
  'best',
  'friend',
  'even',
  'consider',
  'frosti',
  'ooo',
  'crowd',
  'left',
  'hous',
  'crowd',
  'split',
  'husband',
  'friend',
  'came',
  'pictur',
  'think',
  'uncal',
  'let',
  'husband',
  'handl',
  'mad',
  'moment',
  'know',
  'far',
  'tldr',
  'told',
  'husband',
  'femal',
  'friend',
  'best',
  'friend',
  'embarrass',
  'front',
  'friend',
  'aita',
  'long_stori',
  'stori_short',
  'short_husband',
  'husband_one',
  'one_femal',
  'femal_friend',
  'friend_ill',
  'ill_call',
  'call_sarah',
  'sarah_get',
  'get_along',
  'along_fine',
  'fine_everi',
  'everi_awhil',
  'awhil_shell',
  'shell_make',
  'make_comment',
  'comment_sit',
  'sit_littl',
  'littl_close',
  'close_touch',
  'touch_lot',
  'lot_compet',
  'compet_close',
  'close_well',
  'well_know',
  'know_one',
  'one_big',
  'big_group',
  'group_friend',
  'friend_ive',
  'ive_talk',
  'talk_husband',
  'husband_sever',
  'sever_time',
  'time_mani',
  'mani_ad',
  'ad_micro-act',
  'micro-act_hard',
  'hard_tell',
  'tell_one',
  'one_singular',
  'singular_thing',
  'thing_without',
  'without_look',
  'look_crazi',
  'crazi_well',
  'well_past',
  'past_weekend',
  'weekend_group',
  'group_friend',
  'friend_got',
  'got_togeth',
  'togeth_first',
  'first_time',
  'time_sinc',
  'sinc_boost',
  'boost_husband',
  'husband_elop',
  'elop_week',
  'week_ago',
  'ago_first',
  'first_time',
  'time_see',
  'see_us',
  'us_sinc',
  'sinc_sarah',
  'sarah_came',
  'came_right',
  'right_got',
  'got_face',
  'face_group',
  'group_congratul',
  'congratul_us',
  'us_tell',
  'tell_husband',
  'husband_disappoint',
  'disappoint_tell',
  'tell_ceremoni',
  'ceremoni_invit',
  'invit_even',
  'even_send',
  'send_photo',
  'photo_told',
  'told_nobodi',
  'nobodi_except',
  'except_parent',
  'parent_knew',
  'knew_nobodi',
  'nobodi_invit',
  'invit_profession',
  'profession_photo',
  'photo_back',
  'back_girl',
  'girl_start',
  'start_sob',
  'sob_could',
  'could_want',
  'want_man',
  'man_honor',
  'honor_get',
  'get_marri',
  'marri_singl',
  'singl_even',
  'even_invit',
  'invit_friendship',
  'friendship_need',
  'need_seriou',
  'seriou_tlc',
  'tlc_recov',
  'recov_front',
  'front_whole',
  'whole_group',
  'group_take',
  'take_anymor',
  'anymor_said',
  'said_might',
  'might_best',
  'best_friend',
  'friend_even',
  'even_consider',
  'consider_frosti',
  'frosti_ooo',
  'ooo_crowd',
  'crowd_left',
  'left_hous',
  'hous_crowd',
  'crowd_split',
  'split_husband',
  'husband_friend',
  'friend_came',
  'came_pictur',
  'pictur_think',
  'think_uncal',
  'uncal_let',
  'let_husband',
  'husband_handl',
  'handl_mad',
  'mad_moment',
  'moment_know',
  'know_far',
  'far_tldr',
  'tldr_told',
  'told_husband',
  'husband_femal',
  'femal_friend',
  'friend_best',
  'best_friend',
  'friend_embarrass',
  'embarrass_front',
  'front_friend',
  'friend_aita',
  'long_stori_short',
  'stori_short_husband',
  'short_husband_one',
  'husband_one_femal',
  'one_femal_friend',
  'femal_friend_ill',
  'friend_ill_call',
  'ill_call_sarah',
  'call_sarah_get',
  'sarah_get_along',
  'get_along_fine',
  'along_fine_everi',
  'fine_everi_awhil',
  'everi_awhil_shell',
  'awhil_shell_make',
  'shell_make_comment',
  'make_comment_sit',
  'comment_sit_littl',
  'sit_littl_close',
  'littl_close_touch',
  'close_touch_lot',
  'touch_lot_compet',
  'lot_compet_close',
  'compet_close_well',
  'close_well_know',
  'well_know_one',
  'know_one_big',
  'one_big_group',
  'big_group_friend',
  'group_friend_ive',
  'friend_ive_talk',
  'ive_talk_husband',
  'talk_husband_sever',
  'husband_sever_time',
  'sever_time_mani',
  'time_mani_ad',
  'mani_ad_micro-act',
  'ad_micro-act_hard',
  'micro-act_hard_tell',
  'hard_tell_one',
  'tell_one_singular',
  'one_singular_thing',
  'singular_thing_without',
  'thing_without_look',
  'without_look_crazi',
  'look_crazi_well',
  'crazi_well_past',
  'well_past_weekend',
  'past_weekend_group',
  'weekend_group_friend',
  'group_friend_got',
  'friend_got_togeth',
  'got_togeth_first',
  'togeth_first_time',
  'first_time_sinc',
  'time_sinc_boost',
  'sinc_boost_husband',
  'boost_husband_elop',
  'husband_elop_week',
  'elop_week_ago',
  'week_ago_first',
  'ago_first_time',
  'first_time_see',
  'time_see_us',
  'see_us_sinc',
  'us_sinc_sarah',
  'sinc_sarah_came',
  'sarah_came_right',
  'came_right_got',
  'right_got_face',
  'got_face_group',
  'face_group_congratul',
  'group_congratul_us',
  'congratul_us_tell',
  'us_tell_husband',
  'tell_husband_disappoint',
  'husband_disappoint_tell',
  'disappoint_tell_ceremoni',
  'tell_ceremoni_invit',
  'ceremoni_invit_even',
  'invit_even_send',
  'even_send_photo',
  'send_photo_told',
  'photo_told_nobodi',
  'told_nobodi_except',
  'nobodi_except_parent',
  'except_parent_knew',
  'parent_knew_nobodi',
  'knew_nobodi_invit',
  'nobodi_invit_profession',
  'invit_profession_photo',
  'profession_photo_back',
  'photo_back_girl',
  'back_girl_start',
  'girl_start_sob',
  'start_sob_could',
  'sob_could_want',
  'could_want_man',
  'want_man_honor',
  'man_honor_get',
  'honor_get_marri',
  'get_marri_singl',
  'marri_singl_even',
  'singl_even_invit',
  'even_invit_friendship',
  'invit_friendship_need',
  'friendship_need_seriou',
  'need_seriou_tlc',
  'seriou_tlc_recov',
  'tlc_recov_front',
  'recov_front_whole',
  'front_whole_group',
  'whole_group_take',
  'group_take_anymor',
  'take_anymor_said',
  'anymor_said_might',
  'said_might_best',
  'might_best_friend',
  'best_friend_even',
  'friend_even_consider',
  'even_consider_frosti',
  'consider_frosti_ooo',
  'frosti_ooo_crowd',
  'ooo_crowd_left',
  'crowd_left_hous',
  'left_hous_crowd',
  'hous_crowd_split',
  'crowd_split_husband',
  'split_husband_friend',
  'husband_friend_came',
  'friend_came_pictur',
  'came_pictur_think',
  'pictur_think_uncal',
  'think_uncal_let',
  'uncal_let_husband',
  'let_husband_handl',
  'husband_handl_mad',
  'handl_mad_moment',
  'mad_moment_know',
  'moment_know_far',
  'know_far_tldr',
  'far_tldr_told',
  'tldr_told_husband',
  'told_husband_femal',
  'husband_femal_friend',
  'femal_friend_best',
  'friend_best_friend',
  'best_friend_embarrass',
  'friend_embarrass_front',
  'embarrass_front_friend',
  'front_friend_aita'],
 ['boyfriend',
  'current',
  'long-dist',
  'take',
  'turn',
  'visit',
  'came',
  'see',
  'almost',
  'two',
  'month',
  'see',
  'final',
  'make',
  'plan',
  'request',
  'five',
  'day',
  'approv',
  'job',
  'ive',
  'work',
  'six',
  'year',
  'im',
  'secur',
  'guard',
  'depart',
  'store',
  'shift',
  'head',
  'quickli',
  'pick',
  'bf',
  'airport',
  'clock',
  'say',
  'bye',
  'everyon',
  'new',
  'boss',
  'week',
  'stop',
  'ask',
  'could',
  'cover',
  'shift',
  'sinc',
  'one',
  'co-work',
  'call',
  'sick',
  'short-staf',
  'need',
  'stay',
  'coupl',
  'hour',
  '-hour',
  'shift',
  'exhaust',
  'respond',
  'im',
  'sorri',
  'im',
  'unabl',
  'cant',
  'stay',
  'late',
  'cover',
  'shift',
  'past',
  'mind',
  'somewher',
  'mention',
  'pick',
  'someon',
  'airport',
  'told',
  'could',
  'take',
  'uber',
  'boyfriend',
  'happi',
  'also',
  'key',
  'apart',
  'one',
  'els',
  'want',
  'stay',
  'third',
  'person',
  'ask',
  'said',
  'said',
  'sorri',
  'cant',
  'tonight',
  'anoth',
  'time',
  'call',
  'lousi',
  'worker',
  'im',
  'team',
  'player',
  'said',
  'guess',
  'im',
  'team',
  'player',
  'walk',
  'pass',
  'call',
  'ill',
  'see',
  'five',
  'day',
  'drive',
  'airport',
  'kept',
  'get',
  'call',
  'text',
  'got',
  'bad',
  'pull',
  'turn',
  'phone',
  'boss',
  'want',
  'come',
  'back',
  'work',
  'turn',
  'phone',
  'boyfriend',
  'could',
  'contact',
  'phone',
  'flood',
  'text',
  'messag',
  'ding',
  'ding',
  'think',
  'got',
  'close',
  'text',
  'block',
  'number',
  'happi',
  'see',
  'bf',
  'get',
  'email',
  'boss',
  'constantli',
  'suppos',
  'time',
  'respond',
  'rare',
  'take',
  'vacat',
  'one',
  'ask',
  'stuff',
  'know',
  'answer',
  'second',
  'even',
  'im',
  'tell',
  'know',
  'start',
  'get',
  'petti',
  'still',
  'fun',
  'boyfriend',
  'went',
  'work',
  'boss',
  'call',
  'offic',
  'blew',
  'unprofession',
  'still',
  'new',
  'job',
  'help',
  'least',
  'repli',
  'email',
  'respond',
  'peopl',
  'couldv',
  'help',
  'respons',
  'vacat',
  'time',
  'got',
  'first',
  'write-up',
  'ever',
  'someth',
  'im',
  'miss',
  'someth',
  'inher',
  'wrong',
  'im',
  'actual',
  'consid',
  'report',
  'still',
  'new',
  'job',
  'asshol',
  'edit',
  'im',
  'canadian',
  'live',
  'bc',
  'updat',
  'sent',
  'email',
  'hr',
  'email',
  'text',
  'call',
  'log',
  'evid',
  'job',
  'like',
  'callso',
  'understand',
  'bother',
  'age',
  'roughli',
  'happier',
  'note',
  'boyfriend',
  'plan',
  'move',
  'togeth',
  'edit',
  'im',
  'secur',
  'guard',
  'department',
  'store',
  'like',
  'job',
  'hr',
  'set',
  'meet',
  'tomorrow',
  'boss',
  'boss',
  'tri',
  'ask',
  'first',
  'week',
  'work',
  'told',
  'nice',
  'edit',
  'thank',
  'everyon',
  'support',
  'post',
  'thought',
  'littl',
  'dramat',
  'im',
  'glad',
  'im',
  'crazi',
  'one',
  'decid',
  'im',
  'gon',
  'na',
  'look',
  'new',
  'job',
  'still',
  'wan',
  'na',
  'secur',
  'work',
  'im',
  'gon',
  'na',
  'move',
  'worri',
  'im',
  'still',
  'go',
  'complain',
  'boss',
  'report',
  'final',
  'updat',
  'boss',
  'fire',
  'boyfriend_current',
  'current_long-dist',
  'long-dist_take',
  'take_turn',
  'turn_visit',
  'visit_came',
  'came_see',
  'see_almost',
  'almost_two',
  'two_month',
  'month_see',
  'see_final',
  'final_make',
  'make_plan',
  'plan_request',
  'request_five',
  'five_day',
  'day_approv',
  'approv_job',
  'job_ive',
  'ive_work',
  'work_six',
  'six_year',
  'year_im',
  'im_secur',
  'secur_guard',
  'guard_depart',
  'depart_store',
  'store_shift',
  'shift_head',
  'head_quickli',
  'quickli_pick',
  'pick_bf',
  'bf_airport',
  'airport_clock',
  'clock_say',
  'say_bye',
  'bye_everyon',
  'everyon_new',
  'new_boss',
  'boss_week',
  'week_stop',
  'stop_ask',
  'ask_could',
  'could_cover',
  'cover_shift',
  'shift_sinc',
  'sinc_one',
  'one_co-work',
  'co-work_call',
  'call_sick',
  'sick_short-staf',
  'short-staf_need',
  'need_stay',
  'stay_coupl',
  'coupl_hour',
  'hour_-hour',
  '-hour_shift',
  'shift_exhaust',
  'exhaust_respond',
  'respond_im',
  'im_sorri',
  'sorri_im',
  'im_unabl',
  'unabl_cant',
  'cant_stay',
  'stay_late',
  'late_cover',
  'cover_shift',
  'shift_past',
  'past_mind',
  'mind_somewher',
  'somewher_mention',
  'mention_pick',
  'pick_someon',
  'someon_airport',
  'airport_told',
  'told_could',
  'could_take',
  'take_uber',
  'uber_boyfriend',
  'boyfriend_happi',
  'happi_also',
  'also_key',
  'key_apart',
  'apart_one',
  'one_els',
  'els_want',
  'want_stay',
  'stay_third',
  'third_person',
  'person_ask',
  'ask_said',
  'said_said',
  'said_sorri',
  'sorri_cant',
  'cant_tonight',
  'tonight_anoth',
  'anoth_time',
  'time_call',
  'call_lousi',
  'lousi_worker',
  'worker_im',
  'im_team',
  'team_player',
  'player_said',
  'said_guess',
  'guess_im',
  'im_team',
  'team_player',
  'player_walk',
  'walk_pass',
  'pass_call',
  'call_ill',
  'ill_see',
  'see_five',
  'five_day',
  'day_drive',
  'drive_airport',
  'airport_kept',
  'kept_get',
  'get_call',
  'call_text',
  'text_got',
  'got_bad',
  'bad_pull',
  'pull_turn',
  'turn_phone',
  'phone_boss',
  'boss_want',
  'want_come',
  'come_back',
  'back_work',
  'work_turn',
  'turn_phone',
  'phone_boyfriend',
  'boyfriend_could',
  'could_contact',
  'contact_phone',
  'phone_flood',
  'flood_text',
  'text_messag',
  'messag_ding',
  'ding_ding',
  'ding_think',
  'think_got',
  'got_close',
  'close_text',
  'text_block',
  'block_number',
  'number_happi',
  'happi_see',
  'see_bf',
  'bf_get',
  'get_email',
  'email_boss',
  'boss_constantli',
  'constantli_suppos',
  'suppos_time',
  'time_respond',
  'respond_rare',
  'rare_take',
  'take_vacat',
  'vacat_one',
  'one_ask',
  'ask_stuff',
  'stuff_know',
  'know_answer',
  'answer_second',
  'second_even',
  'even_im',
  'im_tell',
  'tell_know',
  'know_start',
  'start_get',
  'get_petti',
  'petti_still',
  'still_fun',
  'fun_boyfriend',
  'boyfriend_went',
  'went_work',
  'work_boss',
  'boss_call',
  'call_offic',
  'offic_blew',
  'blew_unprofession',
  'unprofession_still',
  'still_new',
  'new_job',
  'job_help',
  'help_least',
  'least_repli',
  'repli_email',
  'email_respond',
  'respond_peopl',
  'peopl_couldv',
  'couldv_help',
  'help_respons',
  'respons_vacat',
  'vacat_time',
  'time_got',
  'got_first',
  'first_write-up',
  'write-up_ever',
  'ever_someth',
  'someth_im',
  'im_miss',
  'miss_someth',
  'someth_inher',
  'inher_wrong',
  'wrong_im',
  'im_actual',
  'actual_consid',
  'consid_report',
  'report_still',
  'still_new',
  'new_job',
  'job_asshol',
  'asshol_edit',
  'edit_im',
  'im_canadian',
  'canadian_live',
  'live_bc',
  'bc_updat',
  'updat_sent',
  'sent_email',
  'email_hr',
  'hr_email',
  'email_text',
  'text_call',
  'call_log',
  'log_evid',
  'evid_job',
  'job_like',
  'like_callso',
  'callso_understand',
  'understand_bother',
  'bother_age',
  'age_roughli',
  'roughli_happier',
  'happier_note',
  'note_boyfriend',
  'boyfriend_plan',
  'plan_move',
  'move_togeth',
  'togeth_edit',
  'edit_im',
  'im_secur',
  'secur_guard',
  'guard_department',
  'department_store',
  'store_like',
  'like_job',
  'job_hr',
  'hr_set',
  'set_meet',
  'meet_tomorrow',
  'tomorrow_boss',
  'boss_boss',
  'boss_tri',
  'tri_ask',
  'ask_first',
  'first_week',
  'week_work',
  'work_told',
  'told_nice',
  'nice_edit',
  'edit_thank',
  'thank_everyon',
  'everyon_support',
  'support_post',
  'post_thought',
  'thought_littl',
  'littl_dramat',
  'dramat_im',
  'im_glad',
  'glad_im',
  'im_crazi',
  'crazi_one',
  'one_decid',
  'decid_im',
  'im_gon',
  'gon_na',
  'na_look',
  'look_new',
  'new_job',
  'job_still',
  'still_wan',
  'wan_na',
  'na_secur',
  'secur_work',
  'work_im',
  'im_gon',
  'gon_na',
  'na_move',
  'move_worri',
  'worri_im',
  'im_still',
  'still_go',
  'go_complain',
  'complain_boss',
  'boss_report',
  'report_final',
  'final_updat',
  'updat_boss',
  'boss_fire',
  'boyfriend_current_long-dist',
  'current_long-dist_take',
  'long-dist_take_turn',
  'take_turn_visit',
  'turn_visit_came',
  'visit_came_see',
  'came_see_almost',
  'see_almost_two',
  'almost_two_month',
  'two_month_see',
  'month_see_final',
  'see_final_make',
  'final_make_plan',
  'make_plan_request',
  'plan_request_five',
  'request_five_day',
  'five_day_approv',
  'day_approv_job',
  'approv_job_ive',
  'job_ive_work',
  'ive_work_six',
  'work_six_year',
  'six_year_im',
  'year_im_secur',
  'im_secur_guard',
  'secur_guard_depart',
  'guard_depart_store',
  'depart_store_shift',
  'store_shift_head',
  'shift_head_quickli',
  'head_quickli_pick',
  'quickli_pick_bf',
  'pick_bf_airport',
  'bf_airport_clock',
  'airport_clock_say',
  'clock_say_bye',
  'say_bye_everyon',
  'bye_everyon_new',
  'everyon_new_boss',
  'new_boss_week',
  'boss_week_stop',
  'week_stop_ask',
  'stop_ask_could',
  'ask_could_cover',
  'could_cover_shift',
  'cover_shift_sinc',
  'shift_sinc_one',
  'sinc_one_co-work',
  'one_co-work_call',
  'co-work_call_sick',
  'call_sick_short-staf',
  'sick_short-staf_need',
  'short-staf_need_stay',
  'need_stay_coupl',
  'stay_coupl_hour',
  'coupl_hour_-hour',
  'hour_-hour_shift',
  '-hour_shift_exhaust',
  'shift_exhaust_respond',
  'exhaust_respond_im',
  'respond_im_sorri',
  'im_sorri_im',
  'sorri_im_unabl',
  'im_unabl_cant',
  'unabl_cant_stay',
  'cant_stay_late',
  'stay_late_cover',
  'late_cover_shift',
  'cover_shift_past',
  'shift_past_mind',
  'past_mind_somewher',
  'mind_somewher_mention',
  'somewher_mention_pick',
  'mention_pick_someon',
  'pick_someon_airport',
  'someon_airport_told',
  'airport_told_could',
  'told_could_take',
  'could_take_uber',
  'take_uber_boyfriend',
  'uber_boyfriend_happi',
  'boyfriend_happi_also',
  'happi_also_key',
  'also_key_apart',
  'key_apart_one',
  'apart_one_els',
  'one_els_want',
  'els_want_stay',
  'want_stay_third',
  'stay_third_person',
  'third_person_ask',
  'person_ask_said',
  'ask_said_said',
  'said_said_sorri',
  'said_sorri_cant',
  'sorri_cant_tonight',
  'cant_tonight_anoth',
  'tonight_anoth_time',
  'anoth_time_call',
  'time_call_lousi',
  'call_lousi_worker',
  'lousi_worker_im',
  'worker_im_team',
  'im_team_player',
  'team_player_said',
  'player_said_guess',
  'said_guess_im',
  'guess_im_team',
  'im_team_player',
  'team_player_walk',
  'player_walk_pass',
  'walk_pass_call',
  'pass_call_ill',
  'call_ill_see',
  'ill_see_five',
  'see_five_day',
  'five_day_drive',
  'day_drive_airport',
  'drive_airport_kept',
  'airport_kept_get',
  'kept_get_call',
  'get_call_text',
  'call_text_got',
  'text_got_bad',
  'got_bad_pull',
  'bad_pull_turn',
  'pull_turn_phone',
  'turn_phone_boss',
  'phone_boss_want',
  'boss_want_come',
  'want_come_back',
  'come_back_work',
  'back_work_turn',
  'work_turn_phone',
  'turn_phone_boyfriend',
  'phone_boyfriend_could',
  'boyfriend_could_contact',
  'could_contact_phone',
  'contact_phone_flood',
  'phone_flood_text',
  'flood_text_messag',
  'text_messag_ding',
  'messag_ding_ding',
  'ding_ding_think',
  'ding_think_got',
  'think_got_close',
  'got_close_text',
  'close_text_block',
  'text_block_number',
  'block_number_happi',
  'number_happi_see',
  'happi_see_bf',
  'see_bf_get',
  'bf_get_email',
  'get_email_boss',
  'email_boss_constantli',
  'boss_constantli_suppos',
  'constantli_suppos_time',
  'suppos_time_respond',
  'time_respond_rare',
  'respond_rare_take',
  'rare_take_vacat',
  'take_vacat_one',
  'vacat_one_ask',
  'one_ask_stuff',
  'ask_stuff_know',
  'stuff_know_answer',
  'know_answer_second',
  'answer_second_even',
  'second_even_im',
  'even_im_tell',
  'im_tell_know',
  'tell_know_start',
  'know_start_get',
  'start_get_petti',
  'get_petti_still',
  'petti_still_fun',
  'still_fun_boyfriend',
  'fun_boyfriend_went',
  'boyfriend_went_work',
  'went_work_boss',
  'work_boss_call',
  'boss_call_offic',
  'call_offic_blew',
  'offic_blew_unprofession',
  'blew_unprofession_still',
  'unprofession_still_new',
  'still_new_job',
  'new_job_help',
  'job_help_least',
  'help_least_repli',
  'least_repli_email',
  'repli_email_respond',
  'email_respond_peopl',
  'respond_peopl_couldv',
  'peopl_couldv_help',
  'couldv_help_respons',
  'help_respons_vacat',
  'respons_vacat_time',
  'vacat_time_got',
  'time_got_first',
  'got_first_write-up',
  'first_write-up_ever',
  'write-up_ever_someth',
  'ever_someth_im',
  'someth_im_miss',
  'im_miss_someth',
  'miss_someth_inher',
  'someth_inher_wrong',
  'inher_wrong_im',
  'wrong_im_actual',
  'im_actual_consid',
  'actual_consid_report',
  'consid_report_still',
  'report_still_new',
  'still_new_job',
  'new_job_asshol',
  'job_asshol_edit',
  'asshol_edit_im',
  'edit_im_canadian',
  'im_canadian_live',
  'canadian_live_bc',
  'live_bc_updat',
  'bc_updat_sent',
  'updat_sent_email',
  'sent_email_hr',
  'email_hr_email',
  'hr_email_text',
  'email_text_call',
  'text_call_log',
  'call_log_evid',
  'log_evid_job',
  'evid_job_like',
  'job_like_callso',
  'like_callso_understand',
  'callso_understand_bother',
  'understand_bother_age',
  'bother_age_roughli',
  'age_roughli_happier',
  'roughli_happier_note',
  'happier_note_boyfriend',
  'note_boyfriend_plan',
  'boyfriend_plan_move',
  'plan_move_togeth',
  'move_togeth_edit',
  'togeth_edit_im',
  'edit_im_secur',
  'im_secur_guard',
  'secur_guard_department',
  'guard_department_store',
  'department_store_like',
  'store_like_job',
  'like_job_hr',
  'job_hr_set',
  'hr_set_meet',
  'set_meet_tomorrow',
  'meet_tomorrow_boss',
  'tomorrow_boss_boss',
  'boss_boss_tri',
  'boss_tri_ask',
  'tri_ask_first',
  'ask_first_week',
  'first_week_work',
  'week_work_told',
  'work_told_nice',
  'told_nice_edit',
  'nice_edit_thank',
  'edit_thank_everyon',
  'thank_everyon_support',
  'everyon_support_post',
  'support_post_thought',
  'post_thought_littl',
  'thought_littl_dramat',
  'littl_dramat_im',
  'dramat_im_glad',
  'im_glad_im',
  'glad_im_crazi',
  'im_crazi_one',
  'crazi_one_decid',
  'one_decid_im',
  'decid_im_gon',
  'im_gon_na',
  'gon_na_look',
  'na_look_new',
  'look_new_job',
  'new_job_still',
  'job_still_wan',
  'still_wan_na',
  'wan_na_secur',
  'na_secur_work',
  'secur_work_im',
  'work_im_gon',
  'im_gon_na',
  'gon_na_move',
  'na_move_worri',
  'move_worri_im',
  'worri_im_still',
  'im_still_go',
  'still_go_complain',
  'go_complain_boss',
  'complain_boss_report',
  'boss_report_final',
  'report_final_updat',
  'final_updat_boss',
  'updat_boss_fire'],
 ['husband',
  'marri',
  'year',
  'husband',
  'nurs',
  'told',
  'want',
  'becom',
  'doctor',
  'fulli',
  'support',
  'first',
  'year',
  'medial',
  'school',
  'support',
  'us',
  'work',
  'school',
  'recent',
  'found',
  'rent',
  'rais',
  '$',
  'end',
  'contract',
  'april',
  'honestli',
  'last',
  'straw',
  'push',
  'us',
  'past',
  'financi',
  'comfort',
  'rais',
  'idea',
  'us',
  'buy',
  'home',
  'convers',
  'year',
  'husband',
  'alway',
  'said',
  'could',
  'paid',
  'school',
  'debt',
  'nurs',
  'paid',
  'earli',
  'ask',
  'mother',
  'real',
  'estat',
  'agent',
  'told',
  'wed',
  'pay',
  'would',
  'better',
  'money',
  'go',
  'toward',
  'mortgag',
  'repay',
  'rent',
  'brought',
  'husband',
  'shut',
  'almost',
  'immedi',
  'told',
  'agreement',
  'wait',
  'paid',
  'debt',
  'told',
  'nurs',
  'school',
  'year',
  'hundr',
  'thousand',
  'dollar',
  'worth',
  'debt',
  'doctor',
  'pay',
  'debt',
  '+',
  'year',
  'told',
  'support',
  'career',
  'chang',
  'financi',
  'support',
  'household',
  'best',
  'financi',
  'decis',
  'us',
  'also',
  'reliev',
  'financi',
  'burden',
  'brought',
  'save',
  'deposit',
  'could',
  'afford',
  'someth',
  'small',
  'modest',
  'within',
  'budget',
  'told',
  'interest',
  'use',
  'money',
  'pay',
  'loan',
  'ask',
  'realis',
  'financi',
  'burden',
  'would',
  'put',
  'said',
  'temporari',
  'eventu',
  'hed',
  'make',
  'would',
  'even',
  'id',
  'agre',
  'mother',
  'call',
  'ask',
  'go',
  'look',
  'buy',
  'hous',
  'told',
  'wed',
  'look',
  'somewher',
  'cheaper',
  'rent',
  'instead',
  'insist',
  'least',
  'consid',
  'made',
  'financi',
  'sens',
  'ask',
  'down-deposit',
  'told',
  'probabl',
  'go',
  'use',
  'pay',
  'husband',
  'debt',
  'want',
  'debt',
  'debt',
  'free',
  'student',
  'loan',
  'day',
  'later',
  'mother',
  'father',
  'came',
  'lunch',
  'told',
  'us',
  'news',
  'offer',
  'gift',
  'us',
  'down-deposit',
  'home',
  'moon',
  'shock',
  'offer',
  'left',
  'husband',
  'explod',
  'claim',
  'emascul',
  'made',
  'look',
  'bad',
  'front',
  'parent',
  'told',
  'never',
  'ask',
  'take',
  'privileg',
  'peopl',
  'get',
  'would',
  'reliev',
  'much',
  'financi',
  'burden',
  'refus',
  'talk',
  'parent',
  'apologis',
  'shamingemascul',
  'refus',
  'apologis',
  'told',
  'make',
  'parent',
  'theyd',
  'done',
  'noth',
  'wrong',
  'aita',
  'husband_marri',
  'marri_year',
  'year_husband',
  'husband_nurs',
  'nurs_told',
  'told_want',
  'want_becom',
  'becom_doctor',
  'doctor_fulli',
  'fulli_support',
  'support_first',
  'first_year',
  'year_medial',
  'medial_school',
  'school_support',
  'support_us',
  'us_work',
  'work_school',
  'school_recent',
  'recent_found',
  'found_rent',
  'rent_rais',
  'rais_$',
  '$_end',
  'end_contract',
  'contract_april',
  'april_honestli',
  'honestli_last',
  'last_straw',
  'straw_push',
  'push_us',
  'us_past',
  'past_financi',
  'financi_comfort',
  'comfort_rais',
  'rais_idea',
  'idea_us',
  'us_buy',
  'buy_home',
  'home_convers',
  'convers_year',
  'year_husband',
  'husband_alway',
  'alway_said',
  'said_could',
  'could_paid',
  'paid_school',
  'school_debt',
  'debt_nurs',
  'nurs_paid',
  'paid_earli',
  'earli_ask',
  'ask_mother',
  'mother_real',
  'real_estat',
  'estat_agent',
  'agent_told',
  'told_wed',
  'wed_pay',
  'pay_would',
  'would_better',
  'better_money',
  'money_go',
  'go_toward',
  'toward_mortgag',
  'mortgag_repay',
  'repay_rent',
  'rent_brought',
  'brought_husband',
  'husband_shut',
  'shut_almost',
  'almost_immedi',
  'immedi_told',
  'told_agreement',
  'agreement_wait',
  'wait_paid',
  'paid_debt',
  'debt_told',
  'told_nurs',
  'nurs_school',
  'school_year',
  'year_hundr',
  'hundr_thousand',
  'thousand_dollar',
  'dollar_worth',
  'worth_debt',
  'debt_doctor',
  'doctor_pay',
  'pay_debt',
  'debt_+',
  '+_year',
  'year_told',
  'told_support',
  'support_career',
  'career_chang',
  'chang_financi',
  'financi_support',
  'support_household',
  'household_best',
  'best_financi',
  'financi_decis',
  'decis_us',
  'us_also',
  'also_reliev',
  'reliev_financi',
  'financi_burden',
  'burden_brought',
  'brought_save',
  'save_deposit',
  'deposit_could',
  'could_afford',
  'afford_someth',
  'someth_small',
  'small_modest',
  'modest_within',
  'within_budget',
  'budget_told',
  'told_interest',
  'interest_use',
  'use_money',
  'money_pay',
  'pay_loan',
  'loan_ask',
  'ask_realis',
  'realis_financi',
  'financi_burden',
  'burden_would',
  'would_put',
  'put_said',
  'said_temporari',
  'temporari_eventu',
  'eventu_hed',
  'hed_make',
  'make_would',
  'would_even',
  'even_id',
  'id_agre',
  'agre_mother',
  'mother_call',
  'call_ask',
  'ask_go',
  'go_look',
  'look_buy',
  'buy_hous',
  'hous_told',
  'told_wed',
  'wed_look',
  'look_somewher',
  'somewher_cheaper',
  'cheaper_rent',
  'rent_instead',
  'instead_insist',
  'insist_least',
  'least_consid',
  'consid_made',
  'made_financi',
  'financi_sens',
  'sens_ask',
  'ask_down-deposit',
  'down-deposit_told',
  'told_probabl',
  'probabl_go',
  'go_use',
  'use_pay',
  'pay_husband',
  'husband_debt',
  'debt_want',
  'want_debt',
  'debt_debt',
  'debt_free',
  'free_student',
  'student_loan',
  'loan_day',
  'day_later',
  'later_mother',
  'mother_father',
  'father_came',
  'came_lunch',
  'lunch_told',
  'told_us',
  'us_news',
  'news_offer',
  'offer_gift',
  'gift_us',
  'us_down-deposit',
  'down-deposit_home',
  'home_moon',
  'moon_shock',
  'shock_offer',
  'offer_left',
  'left_husband',
  'husband_explod',
  'explod_claim',
  'claim_emascul',
  'emascul_made',
  'made_look',
  'look_bad',
  'bad_front',
  'front_parent',
  'parent_told',
  'told_never',
  'never_ask',
  'ask_take',
  'take_privileg',
  'privileg_peopl',
  'peopl_get',
  'get_would',
  'would_reliev',
  'reliev_much',
  'much_financi',
  'financi_burden',
  'burden_refus',
  'refus_talk',
  'talk_parent',
  'parent_apologis',
  'apologis_shamingemascul',
  'shamingemascul_refus',
  'refus_apologis',
  'apologis_told',
  'told_make',
  'make_parent',
  'parent_theyd',
  'theyd_done',
  'done_noth',
  'noth_wrong',
  'wrong_aita',
  'husband_marri_year',
  'marri_year_husband',
  'year_husband_nurs',
  'husband_nurs_told',
  'nurs_told_want',
  'told_want_becom',
  'want_becom_doctor',
  'becom_doctor_fulli',
  'doctor_fulli_support',
  'fulli_support_first',
  'support_first_year',
  'first_year_medial',
  'year_medial_school',
  'medial_school_support',
  'school_support_us',
  'support_us_work',
  'us_work_school',
  'work_school_recent',
  'school_recent_found',
  'recent_found_rent',
  'found_rent_rais',
  'rent_rais_$',
  'rais_$_end',
  '$_end_contract',
  'end_contract_april',
  'contract_april_honestli',
  'april_honestli_last',
  'honestli_last_straw',
  'last_straw_push',
  'straw_push_us',
  'push_us_past',
  'us_past_financi',
  'past_financi_comfort',
  'financi_comfort_rais',
  'comfort_rais_idea',
  'rais_idea_us',
  'idea_us_buy',
  'us_buy_home',
  'buy_home_convers',
  'home_convers_year',
  'convers_year_husband',
  'year_husband_alway',
  'husband_alway_said',
  'alway_said_could',
  'said_could_paid',
  'could_paid_school',
  'paid_school_debt',
  'school_debt_nurs',
  'debt_nurs_paid',
  'nurs_paid_earli',
  'paid_earli_ask',
  'earli_ask_mother',
  'ask_mother_real',
  'mother_real_estat',
  'real_estat_agent',
  'estat_agent_told',
  'agent_told_wed',
  'told_wed_pay',
  'wed_pay_would',
  'pay_would_better',
  'would_better_money',
  'better_money_go',
  'money_go_toward',
  'go_toward_mortgag',
  'toward_mortgag_repay',
  'mortgag_repay_rent',
  'repay_rent_brought',
  'rent_brought_husband',
  'brought_husband_shut',
  'husband_shut_almost',
  'shut_almost_immedi',
  'almost_immedi_told',
  'immedi_told_agreement',
  'told_agreement_wait',
  'agreement_wait_paid',
  'wait_paid_debt',
  'paid_debt_told',
  'debt_told_nurs',
  'told_nurs_school',
  'nurs_school_year',
  'school_year_hundr',
  'year_hundr_thousand',
  'hundr_thousand_dollar',
  'thousand_dollar_worth',
  'dollar_worth_debt',
  'worth_debt_doctor',
  'debt_doctor_pay',
  'doctor_pay_debt',
  'pay_debt_+',
  'debt_+_year',
  '+_year_told',
  'year_told_support',
  'told_support_career',
  'support_career_chang',
  'career_chang_financi',
  'chang_financi_support',
  'financi_support_household',
  'support_household_best',
  'household_best_financi',
  'best_financi_decis',
  'financi_decis_us',
  'decis_us_also',
  'us_also_reliev',
  'also_reliev_financi',
  'reliev_financi_burden',
  'financi_burden_brought',
  'burden_brought_save',
  'brought_save_deposit',
  'save_deposit_could',
  'deposit_could_afford',
  'could_afford_someth',
  'afford_someth_small',
  'someth_small_modest',
  'small_modest_within',
  'modest_within_budget',
  'within_budget_told',
  'budget_told_interest',
  'told_interest_use',
  'interest_use_money',
  'use_money_pay',
  'money_pay_loan',
  'pay_loan_ask',
  'loan_ask_realis',
  'ask_realis_financi',
  'realis_financi_burden',
  'financi_burden_would',
  'burden_would_put',
  'would_put_said',
  'put_said_temporari',
  'said_temporari_eventu',
  'temporari_eventu_hed',
  'eventu_hed_make',
  'hed_make_would',
  'make_would_even',
  'would_even_id',
  'even_id_agre',
  'id_agre_mother',
  'agre_mother_call',
  'mother_call_ask',
  'call_ask_go',
  'ask_go_look',
  'go_look_buy',
  'look_buy_hous',
  'buy_hous_told',
  'hous_told_wed',
  'told_wed_look',
  'wed_look_somewher',
  'look_somewher_cheaper',
  'somewher_cheaper_rent',
  'cheaper_rent_instead',
  'rent_instead_insist',
  'instead_insist_least',
  'insist_least_consid',
  'least_consid_made',
  'consid_made_financi',
  'made_financi_sens',
  'financi_sens_ask',
  'sens_ask_down-deposit',
  'ask_down-deposit_told',
  'down-deposit_told_probabl',
  'told_probabl_go',
  'probabl_go_use',
  'go_use_pay',
  'use_pay_husband',
  'pay_husband_debt',
  'husband_debt_want',
  'debt_want_debt',
  'want_debt_debt',
  'debt_debt_free',
  'debt_free_student',
  'free_student_loan',
  'student_loan_day',
  'loan_day_later',
  'day_later_mother',
  'later_mother_father',
  'mother_father_came',
  'father_came_lunch',
  'came_lunch_told',
  'lunch_told_us',
  'told_us_news',
  'us_news_offer',
  'news_offer_gift',
  'offer_gift_us',
  'gift_us_down-deposit',
  'us_down-deposit_home',
  'down-deposit_home_moon',
  'home_moon_shock',
  'moon_shock_offer',
  'shock_offer_left',
  'offer_left_husband',
  'left_husband_explod',
  'husband_explod_claim',
  'explod_claim_emascul',
  'claim_emascul_made',
  'emascul_made_look',
  'made_look_bad',
  'look_bad_front',
  'bad_front_parent',
  'front_parent_told',
  'parent_told_never',
  'told_never_ask',
  'never_ask_take',
  'ask_take_privileg',
  'take_privileg_peopl',
  'privileg_peopl_get',
  'peopl_get_would',
  'get_would_reliev',
  'would_reliev_much',
  'reliev_much_financi',
  'much_financi_burden',
  'financi_burden_refus',
  'burden_refus_talk',
  'refus_talk_parent',
  'talk_parent_apologis',
  'parent_apologis_shamingemascul',
  'apologis_shamingemascul_refus',
  'shamingemascul_refus_apologis',
  'refus_apologis_told',
  'apologis_told_make',
  'told_make_parent',
  'make_parent_theyd',
  'parent_theyd_done',
  'theyd_done_noth',
  'done_noth_wrong',
  'noth_wrong_aita'],
 ['husband',
  'hunter',
  'suffer',
  'fertil',
  'problem',
  'recent',
  'decid',
  'get',
  'surrog',
  'friend',
  'friend',
  'busi',
  'get',
  'everyth',
  'done',
  'legal',
  'alreadi',
  'contract',
  'place',
  'egg',
  'use',
  'worri',
  'regard',
  'plu',
  'surrog',
  'respect',
  'kind',
  'woman',
  'keep',
  'part',
  'contract',
  'tact',
  'hunter',
  'start',
  'act',
  'strang',
  'ive',
  'notic',
  'focus',
  'attent',
  'surrog',
  'like',
  'skip',
  'work',
  'visit',
  'get',
  'thing',
  'ask',
  'chat',
  'time',
  'social',
  'media',
  'also',
  'constantli',
  'offer',
  'thing',
  'like',
  'drive',
  'place',
  'sometim',
  'even',
  'invit',
  'offer',
  'repair',
  'stuff',
  'complain',
  'even',
  'told',
  'thing',
  'even',
  'know',
  'like',
  'bring',
  'gift',
  'tri',
  'speak',
  'look',
  'like',
  'said',
  'son',
  'still',
  'ask',
  'tone',
  'respect',
  'woman',
  'space',
  'got',
  'mad',
  'accus',
  'jealou',
  'woman',
  'carri',
  'child',
  'said',
  'make',
  'look',
  'bad',
  'said',
  'surrog',
  'one',
  'complain',
  'behavior',
  'said',
  'true',
  'appar',
  'made',
  'somewhat',
  'angri',
  'gave',
  'time',
  'cool',
  'bit',
  'yesterday',
  'surrog',
  'call',
  'say',
  'hunter',
  'came',
  'told',
  'guest',
  'leav',
  'ask',
  'said',
  'want',
  'show',
  'car',
  'bought',
  'shock',
  'said',
  'declin',
  'car',
  'ask',
  'leav',
  'start',
  'argu',
  'use',
  'public',
  'transport',
  'risk',
  'babi',
  'wellb',
  'fume',
  'call',
  'demand',
  'get',
  'home',
  'eventu',
  'got',
  'back',
  'pick',
  'fight',
  'yell',
  'say',
  'noth',
  'overstep',
  'disrespect',
  'inappropri',
  'toward',
  'surrog',
  'explain',
  'car',
  'ensur',
  'babi',
  'safe',
  'told',
  'stop',
  'disrespect',
  'woman',
  'stop',
  'use',
  'babi',
  'excus',
  'stomp',
  'boundari',
  'rant',
  'tri',
  'make',
  'work',
  'even',
  'accus',
  'love',
  'son',
  'much',
  'way',
  'put',
  'car',
  'without',
  'tell',
  'left',
  'hous',
  'came',
  'back',
  'refus',
  'speak',
  'mightv',
  'hard',
  'mightv',
  'oblivi',
  'im',
  'less',
  'sure',
  'see',
  'reaction',
  'husband_hunter',
  'hunter_suffer',
  'suffer_fertil',
  'fertil_problem',
  'problem_recent',
  'recent_decid',
  'decid_get',
  'get_surrog',
  'surrog_friend',
  'friend_friend',
  'friend_busi',
  'busi_get',
  'get_everyth',
  'everyth_done',
  'done_legal',
  'legal_alreadi',
  'alreadi_contract',
  'contract_place',
  'place_egg',
  'egg_use',
  'use_worri',
  'worri_regard',
  'regard_plu',
  'plu_surrog',
  'surrog_respect',
  'respect_kind',
  'kind_woman',
  'woman_keep',
  'keep_part',
  'part_contract',
  'contract_tact',
  'tact_hunter',
  'hunter_start',
  'start_act',
  'act_strang',
  'strang_ive',
  'ive_notic',
  'notic_focus',
  'focus_attent',
  'attent_surrog',
  'surrog_like',
  'like_skip',
  'skip_work',
  'work_visit',
  'visit_get',
  'get_thing',
  'thing_ask',
  'ask_chat',
  'chat_time',
  'time_social',
  'social_media',
  'media_also',
  'also_constantli',
  'constantli_offer',
  'offer_thing',
  'thing_like',
  'like_drive',
  'drive_place',
  'place_sometim',
  'sometim_even',
  'even_invit',
  'invit_offer',
  'offer_repair',
  'repair_stuff',
  'stuff_complain',
  'complain_even',
  'even_told',
  'told_thing',
  'thing_even',
  'even_know',
  'know_like',
  'like_bring',
  'bring_gift',
  'gift_tri',
  'tri_speak',
  'speak_look',
  'look_like',
  'like_said',
  'said_son',
  'son_still',
  'still_ask',
  'ask_tone',
  'tone_respect',
  'respect_woman',
  'woman_space',
  'space_got',
  'got_mad',
  'mad_accus',
  'accus_jealou',
  'jealou_woman',
  'woman_carri',
  'carri_child',
  'child_said',
  'said_make',
  'make_look',
  'look_bad',
  'bad_said',
  'said_surrog',
  'surrog_one',
  'one_complain',
  'complain_behavior',
  'behavior_said',
  'said_true',
  'true_appar',
  'appar_made',
  'made_somewhat',
  'somewhat_angri',
  'angri_gave',
  'gave_time',
  'time_cool',
  'cool_bit',
  'bit_yesterday',
  'yesterday_surrog',
  'surrog_call',
  'call_say',
  'say_hunter',
  'hunter_came',
  'came_told',
  'told_guest',
  'guest_leav',
  'leav_ask',
  'ask_said',
  'said_want',
  'want_show',
  'show_car',
  'car_bought',
  'bought_shock',
  'shock_said',
  'said_declin',
  'declin_car',
  'car_ask',
  'ask_leav',
  'leav_start',
  'start_argu',
  'argu_use',
  'use_public',
  'public_transport',
  'transport_risk',
  'risk_babi',
  'babi_wellb',
  'wellb_fume',
  'fume_call',
  'call_demand',
  'demand_get',
  'get_home',
  'home_eventu',
  'eventu_got',
  'got_back',
  'back_pick',
  'pick_fight',
  'fight_yell',
  'yell_say',
  'say_noth',
  'noth_overstep',
  'overstep_disrespect',
  'disrespect_inappropri',
  'inappropri_toward',
  'toward_surrog',
  'surrog_explain',
  'explain_car',
  'car_ensur',
  'ensur_babi',
  'babi_safe',
  'safe_told',
  'told_stop',
  'stop_disrespect',
  'disrespect_woman',
  'woman_stop',
  'stop_use',
  'use_babi',
  'babi_excus',
  'excus_stomp',
  'stomp_boundari',
  'boundari_rant',
  'rant_tri',
  'tri_make',
  'make_work',
  'work_even',
  'even_accus',
  'accus_love',
  'love_son',
  'son_much',
  'much_way',
  'way_put',
  'put_car',
  'car_without',
  'without_tell',
  'tell_left',
  'left_hous',
  'hous_came',
  'came_back',
  'back_refus',
  'refus_speak',
  'speak_mightv',
  'mightv_hard',
  'hard_mightv',
  'mightv_oblivi',
  'oblivi_im',
  'im_less',
  'less_sure',
  'sure_see',
  'see_reaction',
  'husband_hunter_suffer',
  'hunter_suffer_fertil',
  'suffer_fertil_problem',
  'fertil_problem_recent',
  'problem_recent_decid',
  'recent_decid_get',
  'decid_get_surrog',
  'get_surrog_friend',
  'surrog_friend_friend',
  'friend_friend_busi',
  'friend_busi_get',
  'busi_get_everyth',
  'get_everyth_done',
  'everyth_done_legal',
  'done_legal_alreadi',
  'legal_alreadi_contract',
  'alreadi_contract_place',
  'contract_place_egg',
  'place_egg_use',
  'egg_use_worri',
  'use_worri_regard',
  'worri_regard_plu',
  'regard_plu_surrog',
  'plu_surrog_respect',
  'surrog_respect_kind',
  'respect_kind_woman',
  'kind_woman_keep',
  'woman_keep_part',
  'keep_part_contract',
  'part_contract_tact',
  'contract_tact_hunter',
  'tact_hunter_start',
  'hunter_start_act',
  'start_act_strang',
  'act_strang_ive',
  'strang_ive_notic',
  'ive_notic_focus',
  'notic_focus_attent',
  'focus_attent_surrog',
  'attent_surrog_like',
  'surrog_like_skip',
  'like_skip_work',
  'skip_work_visit',
  'work_visit_get',
  'visit_get_thing',
  'get_thing_ask',
  'thing_ask_chat',
  'ask_chat_time',
  'chat_time_social',
  'time_social_media',
  'social_media_also',
  'media_also_constantli',
  'also_constantli_offer',
  'constantli_offer_thing',
  'offer_thing_like',
  'thing_like_drive',
  'like_drive_place',
  'drive_place_sometim',
  'place_sometim_even',
  'sometim_even_invit',
  'even_invit_offer',
  'invit_offer_repair',
  'offer_repair_stuff',
  'repair_stuff_complain',
  'stuff_complain_even',
  'complain_even_told',
  'even_told_thing',
  'told_thing_even',
  'thing_even_know',
  'even_know_like',
  'know_like_bring',
  'like_bring_gift',
  'bring_gift_tri',
  'gift_tri_speak',
  'tri_speak_look',
  'speak_look_like',
  'look_like_said',
  'like_said_son',
  'said_son_still',
  'son_still_ask',
  'still_ask_tone',
  'ask_tone_respect',
  'tone_respect_woman',
  'respect_woman_space',
  'woman_space_got',
  'space_got_mad',
  'got_mad_accus',
  'mad_accus_jealou',
  'accus_jealou_woman',
  'jealou_woman_carri',
  'woman_carri_child',
  'carri_child_said',
  'child_said_make',
  'said_make_look',
  'make_look_bad',
  'look_bad_said',
  'bad_said_surrog',
  'said_surrog_one',
  'surrog_one_complain',
  'one_complain_behavior',
  'complain_behavior_said',
  'behavior_said_true',
  'said_true_appar',
  'true_appar_made',
  'appar_made_somewhat',
  'made_somewhat_angri',
  'somewhat_angri_gave',
  'angri_gave_time',
  'gave_time_cool',
  'time_cool_bit',
  'cool_bit_yesterday',
  'bit_yesterday_surrog',
  'yesterday_surrog_call',
  'surrog_call_say',
  'call_say_hunter',
  'say_hunter_came',
  'hunter_came_told',
  'came_told_guest',
  'told_guest_leav',
  'guest_leav_ask',
  'leav_ask_said',
  'ask_said_want',
  'said_want_show',
  'want_show_car',
  'show_car_bought',
  'car_bought_shock',
  'bought_shock_said',
  'shock_said_declin',
  'said_declin_car',
  'declin_car_ask',
  'car_ask_leav',
  'ask_leav_start',
  'leav_start_argu',
  'start_argu_use',
  'argu_use_public',
  'use_public_transport',
  'public_transport_risk',
  'transport_risk_babi',
  'risk_babi_wellb',
  'babi_wellb_fume',
  'wellb_fume_call',
  'fume_call_demand',
  'call_demand_get',
  'demand_get_home',
  'get_home_eventu',
  'home_eventu_got',
  'eventu_got_back',
  'got_back_pick',
  'back_pick_fight',
  'pick_fight_yell',
  'fight_yell_say',
  'yell_say_noth',
  'say_noth_overstep',
  'noth_overstep_disrespect',
  'overstep_disrespect_inappropri',
  'disrespect_inappropri_toward',
  'inappropri_toward_surrog',
  'toward_surrog_explain',
  'surrog_explain_car',
  'explain_car_ensur',
  'car_ensur_babi',
  'ensur_babi_safe',
  'babi_safe_told',
  'safe_told_stop',
  'told_stop_disrespect',
  'stop_disrespect_woman',
  'disrespect_woman_stop',
  'woman_stop_use',
  'stop_use_babi',
  'use_babi_excus',
  'babi_excus_stomp',
  'excus_stomp_boundari',
  'stomp_boundari_rant',
  'boundari_rant_tri',
  'rant_tri_make',
  'tri_make_work',
  'make_work_even',
  'work_even_accus',
  'even_accus_love',
  'accus_love_son',
  'love_son_much',
  'son_much_way',
  'much_way_put',
  'way_put_car',
  'put_car_without',
  'car_without_tell',
  'without_tell_left',
  'tell_left_hous',
  'left_hous_came',
  'hous_came_back',
  'came_back_refus',
  'back_refus_speak',
  'refus_speak_mightv',
  'speak_mightv_hard',
  'mightv_hard_mightv',
  'hard_mightv_oblivi',
  'mightv_oblivi_im',
  'oblivi_im_less',
  'im_less_sure',
  'less_sure_see',
  'sure_see_reaction'],
 ['femal',
  'husband',
  'male',
  'daughter',
  'payton',
  'femal',
  'payton',
  'goe',
  'small',
  'school',
  'kid',
  'grade',
  'birthday',
  'parti',
  'next',
  'month',
  'sent',
  'invit',
  'friend',
  'school',
  'invit',
  'whole',
  'class',
  'except',
  'one',
  'student',
  'student',
  'invit',
  'bulli',
  'payton',
  'sever',
  'time',
  'weve',
  'meet',
  'school',
  'parent',
  'obvious',
  'payton',
  'want',
  'kid',
  'parti',
  'girl',
  'mother',
  'call',
  'talk',
  'say',
  'daughter',
  'cri',
  'kid',
  'invit',
  'everyon',
  'school',
  'talk',
  'parti',
  'payton',
  'parti',
  'known',
  'classmat',
  'top',
  'explain',
  'daughter',
  'nice',
  'daughter',
  'reason',
  'invit',
  'mother',
  'know',
  'mother',
  'said',
  'im',
  'teach',
  'child',
  'bulli',
  'use',
  'wealth',
  'make',
  'friend',
  'disagre',
  'mother',
  'ask',
  'daughter',
  'apolog',
  'write',
  'payton',
  'letter',
  'could',
  'reconsid',
  'told',
  'would',
  'becom',
  'big',
  'deal',
  'everi',
  'time',
  'see',
  'mom',
  'aita',
  'edit',
  'question',
  'invit',
  'hand',
  'classroom',
  'hand',
  'parent',
  'directli',
  'ive',
  'seen',
  'peopl',
  'ask',
  'exactli',
  'kind',
  'bulli',
  'occur',
  'ill',
  'give',
  'coupl',
  'exampl',
  'last',
  'year',
  'year',
  '-',
  'one',
  'time',
  'payton',
  'came',
  'home',
  'cri',
  'littl',
  'girl',
  'mean',
  'tell',
  'pretti',
  'chubbi',
  'etc',
  '-',
  'payton',
  'come',
  'home',
  'cri',
  'sever',
  'time',
  'girl',
  'told',
  'way',
  'cheerlead',
  'payton',
  'cheer',
  'weekend',
  'pretti',
  '-',
  'told',
  'payton',
  'play',
  'rest',
  'girl',
  'class',
  'play',
  'jump',
  'rope',
  'recess',
  'girl',
  'told',
  'let',
  'payton',
  'play',
  'payton',
  'turn',
  'girl',
  'purpos',
  'got',
  'swing',
  'rope',
  'nice',
  'teacher',
  'saw',
  'happen',
  '-',
  'call',
  'payton',
  'cri',
  'babi',
  'coupl',
  'incid',
  'happen',
  'updat',
  'payton',
  'parti',
  'today',
  'much',
  'fun',
  'student',
  'invit',
  'show',
  'make',
  'past',
  'commun',
  'gate',
  'neighborhood',
  'someon',
  'gate',
  'order',
  'peopl',
  'enter',
  'face',
  'paint',
  'balloon',
  'anim',
  'bounc',
  'hous',
  'obstacl',
  'cours',
  'magic',
  'show',
  'charact',
  'appear',
  'even',
  'life',
  'size',
  'barbi',
  'box',
  'pictur',
  'pink',
  'everyth',
  'activ',
  'kid',
  'everyth',
  'hit',
  'also',
  'thank',
  'comment',
  'suggest',
  'swag',
  'bag',
  'kid',
  'love',
  'femal_husband',
  'husband_male',
  'male_daughter',
  'daughter_payton',
  'payton_femal',
  'femal_payton',
  'payton_goe',
  'goe_small',
  'small_school',
  'school_kid',
  'kid_grade',
  'grade_birthday',
  'birthday_parti',
  'parti_next',
  'next_month',
  'month_sent',
  'sent_invit',
  'invit_friend',
  'friend_school',
  'school_invit',
  'invit_whole',
  'whole_class',
  'class_except',
  'except_one',
  'one_student',
  'student_student',
  'student_invit',
  'invit_bulli',
  'bulli_payton',
  'payton_sever',
  'sever_time',
  'time_weve',
  'weve_meet',
  'meet_school',
  'school_parent',
  'parent_obvious',
  'obvious_payton',
  'payton_want',
  'want_kid',
  'kid_parti',
  'parti_girl',
  'girl_mother',
  'mother_call',
  'call_talk',
  'talk_say',
  'say_daughter',
  'daughter_cri',
  'cri_kid',
  'kid_invit',
  'invit_everyon',
  'everyon_school',
  'school_talk',
  'talk_parti',
  'parti_payton',
  'payton_parti',
  'parti_known',
  'known_classmat',
  'classmat_top',
  'top_explain',
  'explain_daughter',
  'daughter_nice',
  'nice_daughter',
  'daughter_reason',
  'reason_invit',
  'invit_mother',
  'mother_know',
  'know_mother',
  'mother_said',
  'said_im',
  'im_teach',
  'teach_child',
  'child_bulli',
  'bulli_use',
  'use_wealth',
  'wealth_make',
  'make_friend',
  'friend_disagre',
  'disagre_mother',
  'mother_ask',
  'ask_daughter',
  'daughter_apolog',
  'apolog_write',
  'write_payton',
  'payton_letter',
  'letter_could',
  'could_reconsid',
  'reconsid_told',
  'told_would',
  'would_becom',
  'becom_big',
  'big_deal',
  'deal_everi',
  'everi_time',
  'time_see',
  'see_mom',
  'mom_aita',
  'aita_edit',
  'edit_question',
  'question_invit',
  'invit_hand',
  'hand_classroom',
  'classroom_hand',
  'hand_parent',
  'parent_directli',
  'directli_ive',
  'ive_seen',
  'seen_peopl',
  'peopl_ask',
  'ask_exactli',
  'exactli_kind',
  'kind_bulli',
  'bulli_occur',
  'occur_ill',
  'ill_give',
  'give_coupl',
  'coupl_exampl',
  'exampl_last',
  'last_year',
  'year_year',
  'year_-',
  '-_one',
  'one_time',
  'time_payton',
  'payton_came',
  'came_home',
  'home_cri',
  'cri_littl',
  'littl_girl',
  'girl_mean',
  'mean_tell',
  'tell_pretti',
  'pretti_chubbi',
  'chubbi_etc',
  'etc_-',
  '-_payton',
  'payton_come',
  'come_home',
  'home_cri',
  'cri_sever',
  'sever_time',
  'time_girl',
  'girl_told',
  'told_way',
  'way_cheerlead',
  'cheerlead_payton',
  'payton_cheer',
  'cheer_weekend',
  'weekend_pretti',
  'pretti_-',
  '-_told',
  'told_payton',
  'payton_play',
  'play_rest',
  'rest_girl',
  'girl_class',
  'class_play',
  'play_jump',
  'jump_rope',
  'rope_recess',
  'recess_girl',
  'girl_told',
  'told_let',
  'let_payton',
  'payton_play',
  'play_payton',
  'payton_turn',
  'turn_girl',
  'girl_purpos',
  'purpos_got',
  'got_swing',
  'swing_rope',
  'rope_nice',
  'nice_teacher',
  'teacher_saw',
  'saw_happen',
  'happen_-',
  '-_call',
  'call_payton',
  'payton_cri',
  'cri_babi',
  'babi_coupl',
  'coupl_incid',
  'incid_happen',
  'happen_updat',
  'updat_payton',
  'payton_parti',
  'parti_today',
  'today_much',
  'much_fun',
  'fun_student',
  'student_invit',
  'invit_show',
  'show_make',
  'make_past',
  'past_commun',
  'commun_gate',
  'gate_neighborhood',
  'neighborhood_someon',
  'someon_gate',
  'gate_order',
  'order_peopl',
  'peopl_enter',
  'enter_face',
  'face_paint',
  'paint_balloon',
  'balloon_anim',
  'anim_bounc',
  'bounc_hous',
  'hous_obstacl',
  'obstacl_cours',
  'cours_magic',
  'magic_show',
  'show_charact',
  'charact_appear',
  'appear_even',
  'even_life',
  'life_size',
  'size_barbi',
  'barbi_box',
  'box_pictur',
  'pictur_pink',
  'pink_everyth',
  'everyth_activ',
  'activ_kid',
  'kid_everyth',
  'everyth_hit',
  'hit_also',
  'also_thank',
  'thank_comment',
  'comment_suggest',
  'suggest_swag',
  'swag_bag',
  'bag_kid',
  'kid_love',
  'femal_husband_male',
  'husband_male_daughter',
  'male_daughter_payton',
  'daughter_payton_femal',
  'payton_femal_payton',
  'femal_payton_goe',
  'payton_goe_small',
  'goe_small_school',
  'small_school_kid',
  'school_kid_grade',
  'kid_grade_birthday',
  'grade_birthday_parti',
  'birthday_parti_next',
  'parti_next_month',
  'next_month_sent',
  'month_sent_invit',
  'sent_invit_friend',
  'invit_friend_school',
  'friend_school_invit',
  'school_invit_whole',
  'invit_whole_class',
  'whole_class_except',
  'class_except_one',
  'except_one_student',
  'one_student_student',
  'student_student_invit',
  'student_invit_bulli',
  'invit_bulli_payton',
  'bulli_payton_sever',
  'payton_sever_time',
  'sever_time_weve',
  'time_weve_meet',
  'weve_meet_school',
  'meet_school_parent',
  'school_parent_obvious',
  'parent_obvious_payton',
  'obvious_payton_want',
  'payton_want_kid',
  'want_kid_parti',
  'kid_parti_girl',
  'parti_girl_mother',
  'girl_mother_call',
  'mother_call_talk',
  'call_talk_say',
  'talk_say_daughter',
  'say_daughter_cri',
  'daughter_cri_kid',
  'cri_kid_invit',
  'kid_invit_everyon',
  'invit_everyon_school',
  'everyon_school_talk',
  'school_talk_parti',
  'talk_parti_payton',
  'parti_payton_parti',
  'payton_parti_known',
  'parti_known_classmat',
  'known_classmat_top',
  'classmat_top_explain',
  'top_explain_daughter',
  'explain_daughter_nice',
  'daughter_nice_daughter',
  'nice_daughter_reason',
  'daughter_reason_invit',
  'reason_invit_mother',
  'invit_mother_know',
  'mother_know_mother',
  'know_mother_said',
  'mother_said_im',
  'said_im_teach',
  'im_teach_child',
  'teach_child_bulli',
  'child_bulli_use',
  'bulli_use_wealth',
  'use_wealth_make',
  'wealth_make_friend',
  'make_friend_disagre',
  'friend_disagre_mother',
  'disagre_mother_ask',
  'mother_ask_daughter',
  'ask_daughter_apolog',
  'daughter_apolog_write',
  'apolog_write_payton',
  'write_payton_letter',
  'payton_letter_could',
  'letter_could_reconsid',
  'could_reconsid_told',
  'reconsid_told_would',
  'told_would_becom',
  'would_becom_big',
  'becom_big_deal',
  'big_deal_everi',
  'deal_everi_time',
  'everi_time_see',
  'time_see_mom',
  'see_mom_aita',
  'mom_aita_edit',
  'aita_edit_question',
  'edit_question_invit',
  'question_invit_hand',
  'invit_hand_classroom',
  'hand_classroom_hand',
  'classroom_hand_parent',
  'hand_parent_directli',
  'parent_directli_ive',
  'directli_ive_seen',
  'ive_seen_peopl',
  'seen_peopl_ask',
  'peopl_ask_exactli',
  'ask_exactli_kind',
  'exactli_kind_bulli',
  'kind_bulli_occur',
  'bulli_occur_ill',
  'occur_ill_give',
  'ill_give_coupl',
  'give_coupl_exampl',
  'coupl_exampl_last',
  'exampl_last_year',
  'last_year_year',
  'year_year_-',
  'year_-_one',
  '-_one_time',
  'one_time_payton',
  'time_payton_came',
  'payton_came_home',
  'came_home_cri',
  'home_cri_littl',
  'cri_littl_girl',
  'littl_girl_mean',
  'girl_mean_tell',
  'mean_tell_pretti',
  'tell_pretti_chubbi',
  'pretti_chubbi_etc',
  'chubbi_etc_-',
  'etc_-_payton',
  '-_payton_come',
  'payton_come_home',
  'come_home_cri',
  'home_cri_sever',
  'cri_sever_time',
  'sever_time_girl',
  'time_girl_told',
  'girl_told_way',
  'told_way_cheerlead',
  'way_cheerlead_payton',
  'cheerlead_payton_cheer',
  'payton_cheer_weekend',
  'cheer_weekend_pretti',
  'weekend_pretti_-',
  'pretti_-_told',
  '-_told_payton',
  'told_payton_play',
  'payton_play_rest',
  'play_rest_girl',
  'rest_girl_class',
  'girl_class_play',
  'class_play_jump',
  'play_jump_rope',
  'jump_rope_recess',
  'rope_recess_girl',
  'recess_girl_told',
  'girl_told_let',
  'told_let_payton',
  'let_payton_play',
  'payton_play_payton',
  'play_payton_turn',
  'payton_turn_girl',
  'turn_girl_purpos',
  'girl_purpos_got',
  'purpos_got_swing',
  'got_swing_rope',
  'swing_rope_nice',
  'rope_nice_teacher',
  'nice_teacher_saw',
  'teacher_saw_happen',
  'saw_happen_-',
  'happen_-_call',
  '-_call_payton',
  'call_payton_cri',
  'payton_cri_babi',
  'cri_babi_coupl',
  'babi_coupl_incid',
  'coupl_incid_happen',
  'incid_happen_updat',
  'happen_updat_payton',
  'updat_payton_parti',
  'payton_parti_today',
  'parti_today_much',
  'today_much_fun',
  'much_fun_student',
  'fun_student_invit',
  'student_invit_show',
  'invit_show_make',
  'show_make_past',
  'make_past_commun',
  'past_commun_gate',
  'commun_gate_neighborhood',
  'gate_neighborhood_someon',
  'neighborhood_someon_gate',
  'someon_gate_order',
  'gate_order_peopl',
  'order_peopl_enter',
  'peopl_enter_face',
  'enter_face_paint',
  'face_paint_balloon',
  'paint_balloon_anim',
  'balloon_anim_bounc',
  'anim_bounc_hous',
  'bounc_hous_obstacl',
  'hous_obstacl_cours',
  'obstacl_cours_magic',
  'cours_magic_show',
  'magic_show_charact',
  'show_charact_appear',
  'charact_appear_even',
  'appear_even_life',
  'even_life_size',
  'life_size_barbi',
  'size_barbi_box',
  'barbi_box_pictur',
  'box_pictur_pink',
  'pictur_pink_everyth',
  'pink_everyth_activ',
  'everyth_activ_kid',
  'activ_kid_everyth',
  'kid_everyth_hit',
  'everyth_hit_also',
  'hit_also_thank',
  'also_thank_comment',
  'thank_comment_suggest',
  'comment_suggest_swag',
  'suggest_swag_bag',
  'swag_bag_kid',
  'bag_kid_love'],
 ['stepson',
  'got',
  'new',
  'car',
  'bio',
  'mom',
  'famili',
  'well',
  'unlik',
  'could',
  'afford',
  'buy',
  'car',
  'im',
  'happi',
  'stepson',
  'son',
  'fact',
  'complain',
  'unfair',
  'husband',
  'let',
  'ex',
  'gift',
  'son',
  'car',
  'unreason',
  'know',
  'teenag',
  'year',
  'mostli',
  'hard',
  'even',
  'harder',
  'expect',
  'kid',
  'reason',
  'son',
  'want',
  'take',
  'part',
  'drive',
  'car',
  'compromis',
  'els',
  'would',
  'get',
  'rid',
  'sat',
  'explain',
  'car',
  'stepbroth',
  'properti',
  'expect',
  'drive',
  'unless',
  'given',
  'permiss',
  'non',
  'kept',
  'give',
  'us',
  'ultimatum',
  'say',
  'either',
  'share',
  'car',
  'stepbroth',
  'car',
  'goe',
  'husband',
  'confront',
  'son',
  'went',
  'done',
  'much',
  'damag',
  'car',
  'threw',
  'paint',
  'ruin',
  'light',
  'damag',
  'front',
  'complet',
  'stepson',
  'breakdown',
  'saw',
  'morn',
  'husband',
  'beyond',
  'livid',
  'see',
  'fottag',
  'driveway',
  'cam',
  'see',
  'son',
  'damag',
  'car',
  'husband',
  'confront',
  'son',
  'later',
  'son',
  'laugh',
  'give',
  'middl',
  'finger',
  'went',
  'take',
  'camp',
  'save',
  'summer',
  'pay',
  'damag',
  'gave',
  'husband',
  'son',
  'found',
  'went',
  'batshit',
  'everyon',
  'hous',
  'accus',
  'steal',
  'tri',
  'pleas',
  'husband',
  'sex',
  'told',
  'stepbroth',
  'warn',
  'blame',
  'also',
  'said',
  'fault',
  'get',
  'car',
  'get',
  'husband',
  'get',
  'car',
  'first',
  'place',
  'avoid',
  'favorit',
  'conflict',
  'spend',
  'major',
  'time',
  'room',
  'refus',
  'come',
  'eat',
  'anyth',
  'im',
  'worri',
  'eat',
  'end',
  'hospit',
  'low',
  'bp',
  'stepson_got',
  'got_new',
  'new_car',
  'car_bio',
  'bio_mom',
  'mom_famili',
  'famili_well',
  'well_unlik',
  'unlik_could',
  'could_afford',
  'afford_buy',
  'buy_car',
  'car_im',
  'im_happi',
  'happi_stepson',
  'stepson_son',
  'son_fact',
  'fact_complain',
  'complain_unfair',
  'unfair_husband',
  'husband_let',
  'let_ex',
  'ex_gift',
  'gift_son',
  'son_car',
  'car_unreason',
  'unreason_know',
  'know_teenag',
  'teenag_year',
  'year_mostli',
  'mostli_hard',
  'hard_even',
  'even_harder',
  'harder_expect',
  'expect_kid',
  'kid_reason',
  'reason_son',
  'son_want',
  'want_take',
  'take_part',
  'part_drive',
  'drive_car',
  'car_compromis',
  'compromis_els',
  'els_would',
  'would_get',
  'get_rid',
  'rid_sat',
  'sat_explain',
  'explain_car',
  'car_stepbroth',
  'stepbroth_properti',
  'properti_expect',
  'expect_drive',
  'drive_unless',
  'unless_given',
  'given_permiss',
  'permiss_non',
  'non_kept',
  'kept_give',
  'give_us',
  'us_ultimatum',
  'ultimatum_say',
  'say_either',
  'either_share',
  'share_car',
  'car_stepbroth',
  'stepbroth_car',
  'car_goe',
  'goe_husband',
  'husband_confront',
  'confront_son',
  'son_went',
  'went_done',
  'done_much',
  'much_damag',
  'damag_car',
  'car_threw',
  'threw_paint',
  'paint_ruin',
  'ruin_light',
  'light_damag',
  'damag_front',
  'front_complet',
  'complet_stepson',
  'stepson_breakdown',
  'breakdown_saw',
  'saw_morn',
  'morn_husband',
  'husband_beyond',
  'beyond_livid',
  'livid_see',
  'see_fottag',
  'fottag_driveway',
  'driveway_cam',
  'cam_see',
  'see_son',
  'son_damag',
  'damag_car',
  'car_husband',
  'husband_confront',
  'confront_son',
  'son_later',
  'later_son',
  'son_laugh',
  'laugh_give',
  'give_middl',
  'middl_finger',
  'finger_went',
  'went_take',
  'take_camp',
  'camp_save',
  'save_summer',
  'summer_pay',
  'pay_damag',
  'damag_gave',
  'gave_husband',
  'husband_son',
  'son_found',
  'found_went',
  'went_batshit',
  'batshit_everyon',
  'everyon_hous',
  'hous_accus',
  'accus_steal',
  'steal_tri',
  'tri_pleas',
  'pleas_husband',
  'husband_sex',
  'sex_told',
  'told_stepbroth',
  'stepbroth_warn',
  'warn_blame',
  'blame_also',
  'also_said',
  'said_fault',
  'fault_get',
  'get_car',
  'car_get',
  'get_husband',
  'husband_get',
  'get_car',
  'car_first',
  'first_place',
  'place_avoid',
  'avoid_favorit',
  'favorit_conflict',
  'conflict_spend',
  'spend_major',
  'major_time',
  'time_room',
  'room_refus',
  'refus_come',
  'come_eat',
  'eat_anyth',
  'anyth_im',
  'im_worri',
  'worri_eat',
  'eat_end',
  'end_hospit',
  'hospit_low',
  'low_bp',
  'stepson_got_new',
  'got_new_car',
  'new_car_bio',
  'car_bio_mom',
  'bio_mom_famili',
  'mom_famili_well',
  'famili_well_unlik',
  'well_unlik_could',
  'unlik_could_afford',
  'could_afford_buy',
  'afford_buy_car',
  'buy_car_im',
  'car_im_happi',
  'im_happi_stepson',
  'happi_stepson_son',
  'stepson_son_fact',
  'son_fact_complain',
  'fact_complain_unfair',
  'complain_unfair_husband',
  'unfair_husband_let',
  'husband_let_ex',
  'let_ex_gift',
  'ex_gift_son',
  'gift_son_car',
  'son_car_unreason',
  'car_unreason_know',
  'unreason_know_teenag',
  'know_teenag_year',
  'teenag_year_mostli',
  'year_mostli_hard',
  'mostli_hard_even',
  'hard_even_harder',
  'even_harder_expect',
  'harder_expect_kid',
  'expect_kid_reason',
  'kid_reason_son',
  'reason_son_want',
  'son_want_take',
  'want_take_part',
  'take_part_drive',
  'part_drive_car',
  'drive_car_compromis',
  'car_compromis_els',
  'compromis_els_would',
  'els_would_get',
  'would_get_rid',
  'get_rid_sat',
  'rid_sat_explain',
  'sat_explain_car',
  'explain_car_stepbroth',
  'car_stepbroth_properti',
  'stepbroth_properti_expect',
  'properti_expect_drive',
  'expect_drive_unless',
  'drive_unless_given',
  'unless_given_permiss',
  'given_permiss_non',
  'permiss_non_kept',
  'non_kept_give',
  'kept_give_us',
  'give_us_ultimatum',
  'us_ultimatum_say',
  'ultimatum_say_either',
  'say_either_share',
  'either_share_car',
  'share_car_stepbroth',
  'car_stepbroth_car',
  'stepbroth_car_goe',
  'car_goe_husband',
  'goe_husband_confront',
  'husband_confront_son',
  'confront_son_went',
  'son_went_done',
  'went_done_much',
  'done_much_damag',
  'much_damag_car',
  'damag_car_threw',
  'car_threw_paint',
  'threw_paint_ruin',
  'paint_ruin_light',
  'ruin_light_damag',
  'light_damag_front',
  'damag_front_complet',
  'front_complet_stepson',
  'complet_stepson_breakdown',
  'stepson_breakdown_saw',
  'breakdown_saw_morn',
  'saw_morn_husband',
  'morn_husband_beyond',
  'husband_beyond_livid',
  'beyond_livid_see',
  'livid_see_fottag',
  'see_fottag_driveway',
  'fottag_driveway_cam',
  'driveway_cam_see',
  'cam_see_son',
  'see_son_damag',
  'son_damag_car',
  'damag_car_husband',
  'car_husband_confront',
  'husband_confront_son',
  'confront_son_later',
  'son_later_son',
  'later_son_laugh',
  'son_laugh_give',
  'laugh_give_middl',
  'give_middl_finger',
  'middl_finger_went',
  'finger_went_take',
  'went_take_camp',
  'take_camp_save',
  'camp_save_summer',
  'save_summer_pay',
  'summer_pay_damag',
  'pay_damag_gave',
  'damag_gave_husband',
  'gave_husband_son',
  'husband_son_found',
  'son_found_went',
  'found_went_batshit',
  'went_batshit_everyon',
  'batshit_everyon_hous',
  'everyon_hous_accus',
  'hous_accus_steal',
  'accus_steal_tri',
  'steal_tri_pleas',
  'tri_pleas_husband',
  'pleas_husband_sex',
  'husband_sex_told',
  'sex_told_stepbroth',
  'told_stepbroth_warn',
  'stepbroth_warn_blame',
  'warn_blame_also',
  'blame_also_said',
  'also_said_fault',
  'said_fault_get',
  'fault_get_car',
  'get_car_get',
  'car_get_husband',
  'get_husband_get',
  'husband_get_car',
  'get_car_first',
  'car_first_place',
  'first_place_avoid',
  'place_avoid_favorit',
  'avoid_favorit_conflict',
  'favorit_conflict_spend',
  'conflict_spend_major',
  'spend_major_time',
  'major_time_room',
  'time_room_refus',
  'room_refus_come',
  'refus_come_eat',
  'come_eat_anyth',
  'eat_anyth_im',
  'anyth_im_worri',
  'im_worri_eat',
  'worri_eat_end',
  'eat_end_hospit',
  'end_hospit_low',
  'hospit_low_bp'],
 ['come',
  'sex-posit',
  'household',
  'parent',
  'taught',
  'sister',
  'sex',
  'sexual',
  'non-vanilla',
  'lifestyl',
  'young',
  'age',
  'affection',
  'touchi',
  'public',
  'still',
  'seem',
  'care',
  'opinion',
  'live',
  'very…',
  'non-convent',
  'lifestyl',
  'afraid',
  'flaunt',
  'one',
  'hand',
  'parent',
  'never',
  'treat',
  'sex',
  'shame',
  'subject',
  'therefor',
  'receiv',
  'comprehens',
  'inclus',
  'form',
  'sex',
  'educ',
  'hand',
  'think',
  'introduc',
  'mani',
  'topic',
  'young',
  'age',
  'mani',
  'way',
  'sister',
  'angi',
  'turn',
  'like',
  'parent',
  'proclaim',
  'sex-posit',
  'qualm',
  'openli',
  'discuss',
  'sex',
  'great',
  'detail',
  'everi',
  'opportun',
  'believ',
  'person',
  'uncomfort',
  'must',
  'conserv',
  'virginprud',
  'clearli',
  'hate',
  'form',
  'self-express',
  'word',
  'wife',
  'zara',
  'huge',
  'fan',
  'pda',
  'hand-hold',
  'occasion',
  'kiss',
  'cheek',
  'comfort',
  'much',
  'public',
  'also',
  'type',
  'peopl',
  'discuss',
  'sex-lif',
  'peopl',
  'much',
  'less',
  'famili',
  'angi',
  'like',
  'zara',
  'believ',
  'zara',
  'conservativeprudish',
  'famili',
  'often',
  'make',
  'fun',
  'zara',
  'look',
  'embarrass',
  'discuss',
  'excruci',
  'detail',
  'sex',
  'zara',
  'bare',
  'say',
  'anyth',
  'angi',
  'still',
  'manag',
  'make',
  'fun',
  'speak',
  'angi',
  'much',
  'recent',
  'zara',
  'brother',
  'pass',
  'away',
  'angi',
  'husband',
  'bill',
  'knew',
  'partner',
  'want',
  'pass',
  'condol',
  'zara',
  'angi',
  'bill',
  'want',
  'attend',
  'wake',
  'instead',
  'take',
  'separ',
  'car',
  'angi',
  'suggest',
  'go',
  'togeth',
  'honest',
  'huge',
  'fan',
  'idea',
  'two',
  'hour',
  'drive',
  'live',
  'destin',
  'also',
  'plan',
  'leav',
  'earli',
  'could',
  'help',
  'set',
  'plan',
  'leav',
  'late',
  'still',
  'manag',
  'first',
  'everyth',
  'alright',
  'understand',
  'one',
  'speak',
  'car',
  'quiet',
  'car',
  'peopl',
  'keep',
  'sleep',
  'midway',
  'drive',
  'angi',
  'bill',
  'start',
  'make',
  'backseat',
  'car',
  'say',
  'make',
  'mean',
  'full-on',
  'make',
  'push',
  'car',
  'door',
  'make',
  'sort',
  'nois',
  'zara',
  'extrem',
  'uncomfort',
  'pull',
  'start',
  'yell',
  'angi',
  'told',
  'disgust',
  'behaviour',
  'act',
  'like',
  'horni',
  'littl',
  'teenag',
  'angi',
  'said',
  'griev',
  'yell',
  'get',
  'car',
  'first',
  'protest',
  'angri',
  'tire',
  'alreadi',
  'told',
  'find',
  'way',
  'home',
  'parent',
  'think',
  'went',
  'far',
  'zara',
  'need',
  'loosen',
  'order',
  'part',
  'famili',
  'obvious',
  'angi',
  'bill',
  'still',
  'extrem',
  'piss',
  'edit',
  'initi',
  'pull',
  'pull',
  'small',
  'petrol',
  'station',
  'littl',
  'cafe',
  'say',
  'side',
  'road',
  'poor',
  'choic',
  'word',
  'apologis',
  'confus',
  'come_sex-posit',
  'sex-posit_household',
  'household_parent',
  'parent_taught',
  'taught_sister',
  'sister_sex',
  'sex_sexual',
  'sexual_non-vanilla',
  'non-vanilla_lifestyl',
  'lifestyl_young',
  'young_age',
  'age_affection',
  'affection_touchi',
  'touchi_public',
  'public_still',
  'still_seem',
  'seem_care',
  'care_opinion',
  'opinion_live',
  'live_very…',
  'very…_non-convent',
  'non-convent_lifestyl',
  'lifestyl_afraid',
  'afraid_flaunt',
  'flaunt_one',
  'one_hand',
  'hand_parent',
  'parent_never',
  'never_treat',
  'treat_sex',
  'sex_shame',
  'shame_subject',
  'subject_therefor',
  'therefor_receiv',
  'receiv_comprehens',
  'comprehens_inclus',
  'inclus_form',
  'form_sex',
  'sex_educ',
  'educ_hand',
  'hand_think',
  'think_introduc',
  'introduc_mani',
  'mani_topic',
  'topic_young',
  'young_age',
  'age_mani',
  'mani_way',
  'way_sister',
  'sister_angi',
  'angi_turn',
  'turn_like',
  'like_parent',
  'parent_proclaim',
  'proclaim_sex-posit',
  'sex-posit_qualm',
  'qualm_openli',
  'openli_discuss',
  'discuss_sex',
  'sex_great',
  'great_detail',
  'detail_everi',
  'everi_opportun',
  'opportun_believ',
  'believ_person',
  'person_uncomfort',
  'uncomfort_must',
  'must_conserv',
  'conserv_virginprud',
  'virginprud_clearli',
  'clearli_hate',
  'hate_form',
  'form_self-express',
  'self-express_word',
  'word_wife',
  'wife_zara',
  'zara_huge',
  'huge_fan',
  'fan_pda',
  'pda_hand-hold',
  'hand-hold_occasion',
  'occasion_kiss',
  'kiss_cheek',
  'cheek_comfort',
  'comfort_much',
  'much_public',
  'public_also',
  'also_type',
  'type_peopl',
  'peopl_discuss',
  'discuss_sex-lif',
  'sex-lif_peopl',
  'peopl_much',
  'much_less',
  'less_famili',
  'famili_angi',
  'angi_like',
  'like_zara',
  'zara_believ',
  'believ_zara',
  'zara_conservativeprudish',
  'conservativeprudish_famili',
  'famili_often',
  'often_make',
  'make_fun',
  'fun_zara',
  'zara_look',
  'look_embarrass',
  'embarrass_discuss',
  'discuss_excruci',
  'excruci_detail',
  'detail_sex',
  'sex_zara',
  'zara_bare',
  'bare_say',
  'say_anyth',
  'anyth_angi',
  'angi_still',
  'still_manag',
  'manag_make',
  'make_fun',
  'fun_speak',
  'speak_angi',
  'angi_much',
  'much_recent',
  'recent_zara',
  'zara_brother',
  'brother_pass',
  'pass_away',
  'away_angi',
  'angi_husband',
  'husband_bill',
  'bill_knew',
  'knew_partner',
  'partner_want',
  'want_pass',
  'pass_condol',
  'condol_zara',
  'zara_angi',
  'angi_bill',
  'bill_want',
  'want_attend',
  'attend_wake',
  'wake_instead',
  'instead_take',
  'take_separ',
  'separ_car',
  'car_angi',
  'angi_suggest',
  'suggest_go',
  'go_togeth',
  'togeth_honest',
  'honest_huge',
  'huge_fan',
  'fan_idea',
  'idea_two',
  'two_hour',
  'hour_drive',
  'drive_live',
  'live_destin',
  'destin_also',
  'also_plan',
  'plan_leav',
  'leav_earli',
  'earli_could',
  'could_help',
  'help_set',
  'set_plan',
  'plan_leav',
  'leav_late',
  'late_still',
  'still_manag',
  'manag_first',
  'first_everyth',
  'everyth_alright',
  'alright_understand',
  'understand_one',
  'one_speak',
  'speak_car',
  'car_quiet',
  'quiet_car',
  'car_peopl',
  'peopl_keep',
  'keep_sleep',
  'sleep_midway',
  'midway_drive',
  'drive_angi',
  'angi_bill',
  'bill_start',
  'start_make',
  'make_backseat',
  'backseat_car',
  'car_say',
  'say_make',
  'make_mean',
  'mean_full-on',
  'full-on_make',
  'make_push',
  'push_car',
  'car_door',
  'door_make',
  'make_sort',
  'sort_nois',
  'nois_zara',
  'zara_extrem',
  'extrem_uncomfort',
  'uncomfort_pull',
  'pull_start',
  'start_yell',
  'yell_angi',
  'angi_told',
  'told_disgust',
  'disgust_behaviour',
  'behaviour_act',
  'act_like',
  'like_horni',
  'horni_littl',
  'littl_teenag',
  'teenag_angi',
  'angi_said',
  'said_griev',
  'griev_yell',
  'yell_get',
  'get_car',
  'car_first',
  'first_protest',
  'protest_angri',
  'angri_tire',
  'tire_alreadi',
  'alreadi_told',
  'told_find',
  'find_way',
  'way_home',
  'home_parent',
  'parent_think',
  'think_went',
  'went_far',
  'far_zara',
  'zara_need',
  'need_loosen',
  'loosen_order',
  'order_part',
  'part_famili',
  'famili_obvious',
  'obvious_angi',
  'angi_bill',
  'bill_still',
  'still_extrem',
  'extrem_piss',
  'piss_edit',
  'edit_initi',
  'initi_pull',
  'pull_pull',
  'pull_small',
  'small_petrol',
  'petrol_station',
  'station_littl',
  'littl_cafe',
  'cafe_say',
  'say_side',
  'side_road',
  'road_poor',
  'poor_choic',
  'choic_word',
  'word_apologis',
  'apologis_confus',
  'come_sex-posit_household',
  'sex-posit_household_parent',
  'household_parent_taught',
  'parent_taught_sister',
  'taught_sister_sex',
  'sister_sex_sexual',
  'sex_sexual_non-vanilla',
  'sexual_non-vanilla_lifestyl',
  'non-vanilla_lifestyl_young',
  'lifestyl_young_age',
  'young_age_affection',
  'age_affection_touchi',
  'affection_touchi_public',
  'touchi_public_still',
  'public_still_seem',
  'still_seem_care',
  'seem_care_opinion',
  'care_opinion_live',
  'opinion_live_very…',
  'live_very…_non-convent',
  'very…_non-convent_lifestyl',
  'non-convent_lifestyl_afraid',
  'lifestyl_afraid_flaunt',
  'afraid_flaunt_one',
  'flaunt_one_hand',
  'one_hand_parent',
  'hand_parent_never',
  'parent_never_treat',
  'never_treat_sex',
  'treat_sex_shame',
  'sex_shame_subject',
  'shame_subject_therefor',
  'subject_therefor_receiv',
  'therefor_receiv_comprehens',
  'receiv_comprehens_inclus',
  'comprehens_inclus_form',
  'inclus_form_sex',
  'form_sex_educ',
  'sex_educ_hand',
  'educ_hand_think',
  'hand_think_introduc',
  'think_introduc_mani',
  'introduc_mani_topic',
  'mani_topic_young',
  'topic_young_age',
  'young_age_mani',
  'age_mani_way',
  'mani_way_sister',
  'way_sister_angi',
  'sister_angi_turn',
  'angi_turn_like',
  'turn_like_parent',
  'like_parent_proclaim',
  'parent_proclaim_sex-posit',
  'proclaim_sex-posit_qualm',
  'sex-posit_qualm_openli',
  'qualm_openli_discuss',
  'openli_discuss_sex',
  'discuss_sex_great',
  'sex_great_detail',
  'great_detail_everi',
  'detail_everi_opportun',
  'everi_opportun_believ',
  'opportun_believ_person',
  'believ_person_uncomfort',
  'person_uncomfort_must',
  'uncomfort_must_conserv',
  'must_conserv_virginprud',
  'conserv_virginprud_clearli',
  'virginprud_clearli_hate',
  'clearli_hate_form',
  'hate_form_self-express',
  'form_self-express_word',
  'self-express_word_wife',
  'word_wife_zara',
  'wife_zara_huge',
  'zara_huge_fan',
  'huge_fan_pda',
  'fan_pda_hand-hold',
  'pda_hand-hold_occasion',
  'hand-hold_occasion_kiss',
  'occasion_kiss_cheek',
  'kiss_cheek_comfort',
  'cheek_comfort_much',
  'comfort_much_public',
  'much_public_also',
  'public_also_type',
  'also_type_peopl',
  'type_peopl_discuss',
  'peopl_discuss_sex-lif',
  'discuss_sex-lif_peopl',
  'sex-lif_peopl_much',
  'peopl_much_less',
  'much_less_famili',
  'less_famili_angi',
  'famili_angi_like',
  'angi_like_zara',
  'like_zara_believ',
  'zara_believ_zara',
  'believ_zara_conservativeprudish',
  'zara_conservativeprudish_famili',
  'conservativeprudish_famili_often',
  'famili_often_make',
  'often_make_fun',
  'make_fun_zara',
  'fun_zara_look',
  'zara_look_embarrass',
  'look_embarrass_discuss',
  'embarrass_discuss_excruci',
  'discuss_excruci_detail',
  'excruci_detail_sex',
  'detail_sex_zara',
  'sex_zara_bare',
  'zara_bare_say',
  'bare_say_anyth',
  'say_anyth_angi',
  'anyth_angi_still',
  'angi_still_manag',
  'still_manag_make',
  'manag_make_fun',
  'make_fun_speak',
  'fun_speak_angi',
  'speak_angi_much',
  'angi_much_recent',
  'much_recent_zara',
  'recent_zara_brother',
  'zara_brother_pass',
  'brother_pass_away',
  'pass_away_angi',
  'away_angi_husband',
  'angi_husband_bill',
  'husband_bill_knew',
  'bill_knew_partner',
  'knew_partner_want',
  'partner_want_pass',
  'want_pass_condol',
  'pass_condol_zara',
  'condol_zara_angi',
  'zara_angi_bill',
  'angi_bill_want',
  'bill_want_attend',
  'want_attend_wake',
  'attend_wake_instead',
  'wake_instead_take',
  'instead_take_separ',
  'take_separ_car',
  'separ_car_angi',
  'car_angi_suggest',
  'angi_suggest_go',
  'suggest_go_togeth',
  'go_togeth_honest',
  'togeth_honest_huge',
  'honest_huge_fan',
  'huge_fan_idea',
  'fan_idea_two',
  'idea_two_hour',
  'two_hour_drive',
  'hour_drive_live',
  'drive_live_destin',
  'live_destin_also',
  'destin_also_plan',
  'also_plan_leav',
  'plan_leav_earli',
  'leav_earli_could',
  'earli_could_help',
  'could_help_set',
  'help_set_plan',
  'set_plan_leav',
  'plan_leav_late',
  'leav_late_still',
  'late_still_manag',
  'still_manag_first',
  'manag_first_everyth',
  'first_everyth_alright',
  'everyth_alright_understand',
  'alright_understand_one',
  'understand_one_speak',
  'one_speak_car',
  'speak_car_quiet',
  'car_quiet_car',
  'quiet_car_peopl',
  'car_peopl_keep',
  'peopl_keep_sleep',
  'keep_sleep_midway',
  'sleep_midway_drive',
  'midway_drive_angi',
  'drive_angi_bill',
  'angi_bill_start',
  'bill_start_make',
  'start_make_backseat',
  'make_backseat_car',
  'backseat_car_say',
  'car_say_make',
  'say_make_mean',
  'make_mean_full-on',
  'mean_full-on_make',
  'full-on_make_push',
  'make_push_car',
  'push_car_door',
  'car_door_make',
  'door_make_sort',
  'make_sort_nois',
  'sort_nois_zara',
  'nois_zara_extrem',
  'zara_extrem_uncomfort',
  'extrem_uncomfort_pull',
  'uncomfort_pull_start',
  'pull_start_yell',
  'start_yell_angi',
  'yell_angi_told',
  'angi_told_disgust',
  'told_disgust_behaviour',
  'disgust_behaviour_act',
  'behaviour_act_like',
  'act_like_horni',
  'like_horni_littl',
  'horni_littl_teenag',
  'littl_teenag_angi',
  'teenag_angi_said',
  'angi_said_griev',
  'said_griev_yell',
  'griev_yell_get',
  'yell_get_car',
  'get_car_first',
  'car_first_protest',
  'first_protest_angri',
  'protest_angri_tire',
  'angri_tire_alreadi',
  'tire_alreadi_told',
  'alreadi_told_find',
  'told_find_way',
  'find_way_home',
  'way_home_parent',
  'home_parent_think',
  'parent_think_went',
  'think_went_far',
  'went_far_zara',
  'far_zara_need',
  'zara_need_loosen',
  'need_loosen_order',
  'loosen_order_part',
  'order_part_famili',
  'part_famili_obvious',
  'famili_obvious_angi',
  'obvious_angi_bill',
  'angi_bill_still',
  'bill_still_extrem',
  'still_extrem_piss',
  'extrem_piss_edit',
  'piss_edit_initi',
  'edit_initi_pull',
  'initi_pull_pull',
  'pull_pull_small',
  'pull_small_petrol',
  'small_petrol_station',
  'petrol_station_littl',
  'station_littl_cafe',
  'littl_cafe_say',
  'cafe_say_side',
  'say_side_road',
  'side_road_poor',
  'road_poor_choic',
  'poor_choic_word',
  'choic_word_apologis',
  'word_apologis_confus'],
 ['met',
  'cousin',
  'husband',
  'last',
  'juli',
  'wed',
  'live',
  'sever',
  'state',
  'away',
  'addit',
  'meet',
  'first',
  'time',
  'also',
  'first',
  'time',
  'seen',
  'cousin',
  'year',
  'instantli',
  'got',
  'bad',
  'vibe',
  'made',
  'sever',
  'comment',
  'rub',
  'wrong',
  'way',
  'told',
  'seem',
  'like',
  'wild',
  'child',
  'said',
  'would',
  'bet',
  'im',
  'bad',
  'girl',
  'colleg',
  'sinc',
  'meet',
  'follow',
  'instagram',
  'sporad',
  'send',
  'reel',
  'open',
  'comment',
  'odd',
  'thing',
  'post',
  'like',
  'look',
  'good',
  'cousin',
  '👍',
  'even',
  'dmd',
  'hey',
  'ill',
  'state',
  'weekend',
  'business…lol',
  'never',
  'open',
  'either',
  'definit',
  'creep',
  'feel',
  'like',
  'could',
  'say',
  'anyth',
  'cousin',
  'close',
  'ive',
  'alway',
  'felt',
  'like',
  'look',
  'devout',
  'christian',
  'fast',
  'forward',
  'week',
  'one',
  'fake',
  'account',
  'instagram',
  'pop',
  'pictur',
  'ask',
  'money',
  '-rate',
  'pictur',
  'bio',
  'broken',
  'english',
  'pictur',
  'poorli',
  'crop',
  'screenshot',
  'two',
  'recent',
  'post',
  'cashapp',
  'random',
  'string',
  'number',
  'letter',
  'account',
  'look',
  'fake',
  'mani',
  'friend',
  'sent',
  'report',
  'account',
  'cours',
  'person',
  'appar',
  'fell',
  'cousin',
  'husband',
  'got',
  'long',
  'nasti',
  'dm',
  'cousin',
  'tell',
  'toler',
  'sin',
  'lifestyl',
  'whatev',
  'mean',
  'time',
  'gone',
  'far',
  'said',
  'care',
  'famili',
  'long',
  'pose',
  'threat',
  'marriag',
  'longer',
  'welcom',
  'live',
  'calmli',
  'polit',
  'respond',
  'account',
  'alreadi',
  'report',
  'account',
  'instagram',
  'taken',
  'apolog',
  'appar',
  'disrupt',
  'day',
  'respond',
  'believ',
  'said',
  'piti',
  'low',
  'self',
  'esteem',
  'would',
  'keep',
  'prayer',
  'lost',
  'point',
  'call',
  'stupid',
  'fall',
  'account',
  'obvious',
  'fake',
  'said',
  'husband',
  'blatant',
  'creep',
  'embarrass',
  'even',
  'marri',
  'sent',
  'screenshot',
  'month',
  'dm',
  'never',
  'respond',
  'conclud',
  'say',
  'marriag',
  'easili',
  'threaten',
  'get',
  'divorc',
  'take',
  'insecur',
  'shortli',
  'got',
  'angri',
  'phone',
  'call',
  'mom',
  'grandma',
  'say',
  'cousin',
  'made',
  'honest',
  'mistak',
  'respons',
  'cruel',
  'unjustifi',
  'appar',
  'cousin',
  'show',
  'everyon',
  'messag',
  'humili',
  'said',
  'mom',
  'worri',
  'relationship',
  'side',
  'famili',
  'perman',
  'damag',
  'may',
  'welcom',
  'futur',
  'famili',
  'gather',
  'grandmama',
  'want',
  'drama',
  'realli',
  'feel',
  'like',
  'respons',
  'line',
  'sinc',
  'one',
  'els',
  'agre',
  'im',
  'sure',
  'aita',
  'met_cousin',
  'cousin_husband',
  'husband_last',
  'last_juli',
  'juli_wed',
  'wed_live',
  'live_sever',
  'sever_state',
  'state_away',
  'away_addit',
  'addit_meet',
  'meet_first',
  'first_time',
  'time_also',
  'also_first',
  'first_time',
  'time_seen',
  'seen_cousin',
  'cousin_year',
  'year_instantli',
  'instantli_got',
  'got_bad',
  'bad_vibe',
  'vibe_made',
  'made_sever',
  'sever_comment',
  'comment_rub',
  'rub_wrong',
  'wrong_way',
  'way_told',
  'told_seem',
  'seem_like',
  'like_wild',
  'wild_child',
  'child_said',
  'said_would',
  'would_bet',
  'bet_im',
  'im_bad',
  'bad_girl',
  'girl_colleg',
  'colleg_sinc',
  'sinc_meet',
  'meet_follow',
  'follow_instagram',
  'instagram_sporad',
  'sporad_send',
  'send_reel',
  'reel_open',
  'open_comment',
  'comment_odd',
  'odd_thing',
  'thing_post',
  'post_like',
  'like_look',
  'look_good',
  'good_cousin',
  'cousin_👍',
  '👍_even',
  'even_dmd',
  'dmd_hey',
  'hey_ill',
  'ill_state',
  'state_weekend',
  'weekend_business…lol',
  'business…lol_never',
  'never_open',
  'open_either',
  'either_definit',
  'definit_creep',
  'creep_feel',
  'feel_like',
  'like_could',
  'could_say',
  'say_anyth',
  'anyth_cousin',
  'cousin_close',
  'close_ive',
  'ive_alway',
  'alway_felt',
  'felt_like',
  'like_look',
  'look_devout',
  'devout_christian',
  'christian_fast',
  'fast_forward',
  'forward_week',
  'week_one',
  'one_fake',
  'fake_account',
  'account_instagram',
  'instagram_pop',
  'pop_pictur',
  'pictur_ask',
  'ask_money',
  'money_-rate',
  '-rate_pictur',
  'pictur_bio',
  'bio_broken',
  'broken_english',
  'english_pictur',
  'pictur_poorli',
  'poorli_crop',
  'crop_screenshot',
  'screenshot_two',
  'two_recent',
  'recent_post',
  'post_cashapp',
  'cashapp_random',
  'random_string',
  'string_number',
  'number_letter',
  'letter_account',
  'account_look',
  'look_fake',
  'fake_mani',
  'mani_friend',
  'friend_sent',
  'sent_report',
  'report_account',
  'account_cours',
  'cours_person',
  'person_appar',
  'appar_fell',
  'fell_cousin',
  'cousin_husband',
  'husband_got',
  'got_long',
  'long_nasti',
  'nasti_dm',
  'dm_cousin',
  'cousin_tell',
  'tell_toler',
  'toler_sin',
  'sin_lifestyl',
  'lifestyl_whatev',
  'whatev_mean',
  'mean_time',
  'time_gone',
  'gone_far',
  'far_said',
  'said_care',
  'care_famili',
  'famili_long',
  'long_pose',
  'pose_threat',
  'threat_marriag',
  'marriag_longer',
  'longer_welcom',
  'welcom_live',
  'live_calmli',
  'calmli_polit',
  'polit_respond',
  'respond_account',
  'account_alreadi',
  'alreadi_report',
  'report_account',
  'account_instagram',
  'instagram_taken',
  'taken_apolog',
  'apolog_appar',
  'appar_disrupt',
  'disrupt_day',
  'day_respond',
  'respond_believ',
  'believ_said',
  'said_piti',
  'piti_low',
  'low_self',
  'self_esteem',
  'esteem_would',
  'would_keep',
  'keep_prayer',
  'prayer_lost',
  'lost_point',
  'point_call',
  'call_stupid',
  'stupid_fall',
  'fall_account',
  'account_obvious',
  'obvious_fake',
  'fake_said',
  'said_husband',
  'husband_blatant',
  'blatant_creep',
  'creep_embarrass',
  'embarrass_even',
  'even_marri',
  'marri_sent',
  'sent_screenshot',
  'screenshot_month',
  'month_dm',
  'dm_never',
  'never_respond',
  'respond_conclud',
  'conclud_say',
  'say_marriag',
  'marriag_easili',
  'easili_threaten',
  'threaten_get',
  'get_divorc',
  'divorc_take',
  'take_insecur',
  'insecur_shortli',
  'shortli_got',
  'got_angri',
  'angri_phone',
  'phone_call',
  'call_mom',
  'mom_grandma',
  'grandma_say',
  'say_cousin',
  'cousin_made',
  'made_honest',
  'honest_mistak',
  'mistak_respons',
  'respons_cruel',
  'cruel_unjustifi',
  'unjustifi_appar',
  'appar_cousin',
  'cousin_show',
  'show_everyon',
  'everyon_messag',
  'messag_humili',
  'humili_said',
  'said_mom',
  'mom_worri',
  'worri_relationship',
  'relationship_side',
  'side_famili',
  'famili_perman',
  'perman_damag',
  'damag_may',
  'may_welcom',
  'welcom_futur',
  'futur_famili',
  'famili_gather',
  'gather_grandmama',
  'grandmama_want',
  'want_drama',
  'drama_realli',
  'realli_feel',
  'feel_like',
  'like_respons',
  'respons_line',
  'line_sinc',
  'sinc_one',
  'one_els',
  'els_agre',
  'agre_im',
  'im_sure',
  'sure_aita',
  'met_cousin_husband',
  'cousin_husband_last',
  'husband_last_juli',
  'last_juli_wed',
  'juli_wed_live',
  'wed_live_sever',
  'live_sever_state',
  'sever_state_away',
  'state_away_addit',
  'away_addit_meet',
  'addit_meet_first',
  'meet_first_time',
  'first_time_also',
  'time_also_first',
  'also_first_time',
  'first_time_seen',
  'time_seen_cousin',
  'seen_cousin_year',
  'cousin_year_instantli',
  'year_instantli_got',
  'instantli_got_bad',
  'got_bad_vibe',
  'bad_vibe_made',
  'vibe_made_sever',
  'made_sever_comment',
  'sever_comment_rub',
  'comment_rub_wrong',
  'rub_wrong_way',
  'wrong_way_told',
  'way_told_seem',
  'told_seem_like',
  'seem_like_wild',
  'like_wild_child',
  'wild_child_said',
  'child_said_would',
  'said_would_bet',
  'would_bet_im',
  'bet_im_bad',
  'im_bad_girl',
  'bad_girl_colleg',
  'girl_colleg_sinc',
  'colleg_sinc_meet',
  'sinc_meet_follow',
  'meet_follow_instagram',
  'follow_instagram_sporad',
  'instagram_sporad_send',
  'sporad_send_reel',
  'send_reel_open',
  'reel_open_comment',
  'open_comment_odd',
  'comment_odd_thing',
  'odd_thing_post',
  'thing_post_like',
  'post_like_look',
  'like_look_good',
  'look_good_cousin',
  'good_cousin_👍',
  'cousin_👍_even',
  '👍_even_dmd',
  'even_dmd_hey',
  'dmd_hey_ill',
  'hey_ill_state',
  'ill_state_weekend',
  'state_weekend_business…lol',
  'weekend_business…lol_never',
  'business…lol_never_open',
  'never_open_either',
  'open_either_definit',
  'either_definit_creep',
  'definit_creep_feel',
  'creep_feel_like',
  'feel_like_could',
  'like_could_say',
  'could_say_anyth',
  'say_anyth_cousin',
  'anyth_cousin_close',
  'cousin_close_ive',
  'close_ive_alway',
  'ive_alway_felt',
  'alway_felt_like',
  'felt_like_look',
  'like_look_devout',
  'look_devout_christian',
  'devout_christian_fast',
  'christian_fast_forward',
  'fast_forward_week',
  'forward_week_one',
  'week_one_fake',
  'one_fake_account',
  'fake_account_instagram',
  'account_instagram_pop',
  'instagram_pop_pictur',
  'pop_pictur_ask',
  'pictur_ask_money',
  'ask_money_-rate',
  'money_-rate_pictur',
  '-rate_pictur_bio',
  'pictur_bio_broken',
  'bio_broken_english',
  'broken_english_pictur',
  'english_pictur_poorli',
  'pictur_poorli_crop',
  'poorli_crop_screenshot',
  'crop_screenshot_two',
  'screenshot_two_recent',
  'two_recent_post',
  'recent_post_cashapp',
  'post_cashapp_random',
  'cashapp_random_string',
  'random_string_number',
  'string_number_letter',
  'number_letter_account',
  'letter_account_look',
  'account_look_fake',
  'look_fake_mani',
  'fake_mani_friend',
  'mani_friend_sent',
  'friend_sent_report',
  'sent_report_account',
  'report_account_cours',
  'account_cours_person',
  'cours_person_appar',
  'person_appar_fell',
  'appar_fell_cousin',
  'fell_cousin_husband',
  'cousin_husband_got',
  'husband_got_long',
  'got_long_nasti',
  'long_nasti_dm',
  'nasti_dm_cousin',
  'dm_cousin_tell',
  'cousin_tell_toler',
  'tell_toler_sin',
  'toler_sin_lifestyl',
  'sin_lifestyl_whatev',
  'lifestyl_whatev_mean',
  'whatev_mean_time',
  'mean_time_gone',
  'time_gone_far',
  'gone_far_said',
  'far_said_care',
  'said_care_famili',
  'care_famili_long',
  'famili_long_pose',
  'long_pose_threat',
  'pose_threat_marriag',
  'threat_marriag_longer',
  'marriag_longer_welcom',
  'longer_welcom_live',
  'welcom_live_calmli',
  'live_calmli_polit',
  'calmli_polit_respond',
  'polit_respond_account',
  'respond_account_alreadi',
  'account_alreadi_report',
  'alreadi_report_account',
  'report_account_instagram',
  'account_instagram_taken',
  'instagram_taken_apolog',
  'taken_apolog_appar',
  'apolog_appar_disrupt',
  'appar_disrupt_day',
  'disrupt_day_respond',
  'day_respond_believ',
  'respond_believ_said',
  'believ_said_piti',
  'said_piti_low',
  'piti_low_self',
  'low_self_esteem',
  'self_esteem_would',
  'esteem_would_keep',
  'would_keep_prayer',
  'keep_prayer_lost',
  'prayer_lost_point',
  'lost_point_call',
  'point_call_stupid',
  'call_stupid_fall',
  'stupid_fall_account',
  'fall_account_obvious',
  'account_obvious_fake',
  'obvious_fake_said',
  'fake_said_husband',
  'said_husband_blatant',
  'husband_blatant_creep',
  'blatant_creep_embarrass',
  'creep_embarrass_even',
  'embarrass_even_marri',
  'even_marri_sent',
  'marri_sent_screenshot',
  'sent_screenshot_month',
  'screenshot_month_dm',
  'month_dm_never',
  'dm_never_respond',
  'never_respond_conclud',
  'respond_conclud_say',
  'conclud_say_marriag',
  'say_marriag_easili',
  'marriag_easili_threaten',
  'easili_threaten_get',
  'threaten_get_divorc',
  'get_divorc_take',
  'divorc_take_insecur',
  'take_insecur_shortli',
  'insecur_shortli_got',
  'shortli_got_angri',
  'got_angri_phone',
  'angri_phone_call',
  'phone_call_mom',
  'call_mom_grandma',
  'mom_grandma_say',
  'grandma_say_cousin',
  'say_cousin_made',
  'cousin_made_honest',
  'made_honest_mistak',
  'honest_mistak_respons',
  'mistak_respons_cruel',
  'respons_cruel_unjustifi',
  'cruel_unjustifi_appar',
  'unjustifi_appar_cousin',
  'appar_cousin_show',
  'cousin_show_everyon',
  'show_everyon_messag',
  'everyon_messag_humili',
  'messag_humili_said',
  'humili_said_mom',
  'said_mom_worri',
  'mom_worri_relationship',
  'worri_relationship_side',
  'relationship_side_famili',
  'side_famili_perman',
  'famili_perman_damag',
  'perman_damag_may',
  'damag_may_welcom',
  'may_welcom_futur',
  'welcom_futur_famili',
  'futur_famili_gather',
  'famili_gather_grandmama',
  'gather_grandmama_want',
  'grandmama_want_drama',
  'want_drama_realli',
  'drama_realli_feel',
  'realli_feel_like',
  'feel_like_respons',
  'like_respons_line',
  'respons_line_sinc',
  'line_sinc_one',
  'sinc_one_els',
  'one_els_agre',
  'els_agre_im',
  'agre_im_sure',
  'im_sure_aita'],
 ['-year-old',
  'male',
  'around',
  'nine',
  'dad',
  'start',
  'see',
  'friend',
  'mom',
  'cheat',
  'mom',
  'marri',
  'three',
  'kid',
  'togeth',
  'dad',
  'ask',
  'custodi',
  'grant',
  'weekend',
  'seem',
  'happi',
  'alway',
  'tri',
  'includ',
  'everyth',
  'kind',
  'weird',
  'frustrat',
  'even',
  'tri',
  'make',
  'call',
  'wife',
  'mom',
  'went',
  'full',
  'custodi',
  'sever',
  'time',
  'sinc',
  'wife',
  'make',
  'accept',
  'new',
  'famili',
  'import',
  'spend',
  'actual',
  'time',
  'alon',
  'stop',
  'go',
  'hous',
  'tri',
  'fight',
  'full',
  'custodi',
  'mom',
  'start',
  'date',
  'stepdad',
  'nice',
  'guy',
  'told',
  'stop',
  'reason',
  'stop',
  'go',
  'never',
  'told',
  'dad',
  'one',
  'wife',
  'hostil',
  'toward',
  'dad',
  'use',
  'pay',
  'attent',
  'think',
  'like',
  'way',
  'one',
  'day',
  'told',
  'behind',
  'dad',
  'back',
  'obstacl',
  'dad',
  'happi',
  'stay',
  'mom',
  'full',
  'time',
  'anniversari',
  'day',
  'ago',
  'want',
  'go',
  'call',
  'mom',
  'threaten',
  'go',
  'hed',
  'go',
  'court',
  'took',
  'four',
  'kid',
  'includ',
  'wife',
  'parent',
  'parents-in-law',
  'celebr',
  'nice',
  'restaur',
  'said',
  'ticket',
  'vacat',
  'say',
  'anyth',
  'look',
  'said',
  'one',
  'said',
  'thank',
  'im',
  'go',
  'seem',
  'angri',
  'said',
  'ok',
  'enough',
  'want',
  'go',
  'said',
  'ask',
  'question',
  'five',
  'time',
  'sixth',
  'time',
  'said',
  'hate',
  'wife',
  'start',
  'ask',
  'end',
  'tell',
  'mean',
  'thing',
  'said',
  'seemingli',
  'uncomfort',
  'told',
  'us',
  'finish',
  'meal',
  'one',
  'talk',
  'rest',
  'night',
  'finish',
  'ask',
  'stepdad',
  'pick',
  'spoken',
  'dad',
  'sinc',
  'sent',
  'messag',
  'ask',
  'chang',
  'mind',
  'trip',
  'said',
  'cousin',
  'told',
  'dad',
  'stay',
  'grandpar',
  'wife',
  'text',
  'yesterday',
  'call',
  'brat',
  'ask',
  'happi',
  'potenti',
  'destroy',
  'half-sibl',
  'home',
  'life',
  'ignor',
  'cousin',
  'say',
  'kid',
  'hurt',
  'cri',
  'dad',
  'home',
  'say',
  'said',
  'thing',
  'agre',
  'tell',
  'later',
  'go',
  'updat',
  'guy',
  '[',
  'httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac',
  ']',
  'httpswwwredditcomusertoldhim_thetruthcommentsvuuare_my_dad_and_i_in_a_better_plac',
  '-year-old_male',
  'male_around',
  'around_nine',
  'nine_dad',
  'dad_start',
  'start_see',
  'see_friend',
  'friend_mom',
  'mom_cheat',
  'cheat_mom',
  'mom_marri',
  'marri_three',
  'three_kid',
  'kid_togeth',
  'togeth_dad',
  'dad_ask',
  'ask_custodi',
  'custodi_grant',
  'grant_weekend',
  'weekend_seem',
  'seem_happi',
  'happi_alway',
  'alway_tri',
  'tri_includ',
  'includ_everyth',
  'everyth_kind',
  'kind_weird',
  'weird_frustrat',
  'frustrat_even',
  'even_tri',
  'tri_make',
  'make_call',
  'call_wife',
  'wife_mom',
  'mom_went',
  'went_full',
  'full_custodi',
  'custodi_sever',
  'sever_time',
  'time_sinc',
  'sinc_wife',
  'wife_make',
  'make_accept',
  'accept_new',
  'new_famili',
  'famili_import',
  'import_spend',
  'spend_actual',
  'actual_time',
  'time_alon',
  'alon_stop',
  'stop_go',
  'go_hous',
  'hous_tri',
  'tri_fight',
  'fight_full',
  'full_custodi',
  'custodi_mom',
  'mom_start',
  'start_date',
  'date_stepdad',
  'stepdad_nice',
  'nice_guy',
  'guy_told',
  'told_stop',
  'stop_reason',
  'reason_stop',
  'stop_go',
  'go_never',
  'never_told',
  'told_dad',
  'dad_one',
  'one_wife',
  'wife_hostil',
  'hostil_toward',
  'toward_dad',
  'dad_use',
  'use_pay',
  'pay_attent',
  'attent_think',
  'think_like',
  'like_way',
  'way_one',
  'one_day',
  'day_told',
  'told_behind',
  'behind_dad',
  'dad_back',
  'back_obstacl',
  'obstacl_dad',
  'dad_happi',
  'happi_stay',
  'stay_mom',
  'mom_full',
  'full_time',
  'time_anniversari',
  'anniversari_day',
  'day_ago',
  'ago_want',
  'want_go',
  'go_call',
  'call_mom',
  'mom_threaten',
  'threaten_go',
  'go_hed',
  'hed_go',
  'go_court',
  'court_took',
  'took_four',
  'four_kid',
  'kid_includ',
  'includ_wife',
  'wife_parent',
  'parent_parents-in-law',
  'parents-in-law_celebr',
  'celebr_nice',
  'nice_restaur',
  'restaur_said',
  'said_ticket',
  'ticket_vacat',
  'vacat_say',
  'say_anyth',
  'anyth_look',
  'look_said',
  'said_one',
  'one_said',
  'said_thank',
  'thank_im',
  'im_go',
  'go_seem',
  'seem_angri',
  'angri_said',
  'said_ok',
  'ok_enough',
  'enough_want',
  'want_go',
  'go_said',
  'said_ask',
  'ask_question',
  'question_five',
  'five_time',
  'time_sixth',
  'sixth_time',
  'time_said',
  'said_hate',
  'hate_wife',
  'wife_start',
  'start_ask',
  'ask_end',
  'end_tell',
  'tell_mean',
  'mean_thing',
  'thing_said',
  'said_seemingli',
  'seemingli_uncomfort',
  'uncomfort_told',
  'told_us',
  'us_finish',
  'finish_meal',
  'meal_one',
  'one_talk',
  'talk_rest',
  'rest_night',
  'night_finish',
  'finish_ask',
  'ask_stepdad',
  'stepdad_pick',
  'pick_spoken',
  'spoken_dad',
  'dad_sinc',
  'sinc_sent',
  'sent_messag',
  'messag_ask',
  'ask_chang',
  'chang_mind',
  'mind_trip',
  'trip_said',
  'said_cousin',
  'cousin_told',
  'told_dad',
  'dad_stay',
  'stay_grandpar',
  'grandpar_wife',
  'wife_text',
  'text_yesterday',
  'yesterday_call',
  'call_brat',
  'brat_ask',
  'ask_happi',
  'happi_potenti',
  'potenti_destroy',
  'destroy_half-sibl',
  'half-sibl_home',
  'home_life',
  'life_ignor',
  'ignor_cousin',
  'cousin_say',
  'say_kid',
  'kid_hurt',
  'hurt_cri',
  'cri_dad',
  'dad_home',
  'home_say',
  'say_said',
  'said_thing',
  'thing_agre',
  'agre_tell',
  'tell_later',
  'later_go',
  'go_updat',
  'updat_guy',
  'guy_[',
  '[_httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac',
  'httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac_]',
  ']_httpswwwredditcomusertoldhim_thetruthcommentsvuuare_my_dad_and_i_in_a_better_plac',
  '-year-old_male_around',
  'male_around_nine',
  'around_nine_dad',
  'nine_dad_start',
  'dad_start_see',
  'start_see_friend',
  'see_friend_mom',
  'friend_mom_cheat',
  'mom_cheat_mom',
  'cheat_mom_marri',
  'mom_marri_three',
  'marri_three_kid',
  'three_kid_togeth',
  'kid_togeth_dad',
  'togeth_dad_ask',
  'dad_ask_custodi',
  'ask_custodi_grant',
  'custodi_grant_weekend',
  'grant_weekend_seem',
  'weekend_seem_happi',
  'seem_happi_alway',
  'happi_alway_tri',
  'alway_tri_includ',
  'tri_includ_everyth',
  'includ_everyth_kind',
  'everyth_kind_weird',
  'kind_weird_frustrat',
  'weird_frustrat_even',
  'frustrat_even_tri',
  'even_tri_make',
  'tri_make_call',
  'make_call_wife',
  'call_wife_mom',
  'wife_mom_went',
  'mom_went_full',
  'went_full_custodi',
  'full_custodi_sever',
  'custodi_sever_time',
  'sever_time_sinc',
  'time_sinc_wife',
  'sinc_wife_make',
  'wife_make_accept',
  'make_accept_new',
  'accept_new_famili',
  'new_famili_import',
  'famili_import_spend',
  'import_spend_actual',
  'spend_actual_time',
  'actual_time_alon',
  'time_alon_stop',
  'alon_stop_go',
  'stop_go_hous',
  'go_hous_tri',
  'hous_tri_fight',
  'tri_fight_full',
  'fight_full_custodi',
  'full_custodi_mom',
  'custodi_mom_start',
  'mom_start_date',
  'start_date_stepdad',
  'date_stepdad_nice',
  'stepdad_nice_guy',
  'nice_guy_told',
  'guy_told_stop',
  'told_stop_reason',
  'stop_reason_stop',
  'reason_stop_go',
  'stop_go_never',
  'go_never_told',
  'never_told_dad',
  'told_dad_one',
  'dad_one_wife',
  'one_wife_hostil',
  'wife_hostil_toward',
  'hostil_toward_dad',
  'toward_dad_use',
  'dad_use_pay',
  'use_pay_attent',
  'pay_attent_think',
  'attent_think_like',
  'think_like_way',
  'like_way_one',
  'way_one_day',
  'one_day_told',
  'day_told_behind',
  'told_behind_dad',
  'behind_dad_back',
  'dad_back_obstacl',
  'back_obstacl_dad',
  'obstacl_dad_happi',
  'dad_happi_stay',
  'happi_stay_mom',
  'stay_mom_full',
  'mom_full_time',
  'full_time_anniversari',
  'time_anniversari_day',
  'anniversari_day_ago',
  'day_ago_want',
  'ago_want_go',
  'want_go_call',
  'go_call_mom',
  'call_mom_threaten',
  'mom_threaten_go',
  'threaten_go_hed',
  'go_hed_go',
  'hed_go_court',
  'go_court_took',
  'court_took_four',
  'took_four_kid',
  'four_kid_includ',
  'kid_includ_wife',
  'includ_wife_parent',
  'wife_parent_parents-in-law',
  'parent_parents-in-law_celebr',
  'parents-in-law_celebr_nice',
  'celebr_nice_restaur',
  'nice_restaur_said',
  'restaur_said_ticket',
  'said_ticket_vacat',
  'ticket_vacat_say',
  'vacat_say_anyth',
  'say_anyth_look',
  'anyth_look_said',
  'look_said_one',
  'said_one_said',
  'one_said_thank',
  'said_thank_im',
  'thank_im_go',
  'im_go_seem',
  'go_seem_angri',
  'seem_angri_said',
  'angri_said_ok',
  'said_ok_enough',
  'ok_enough_want',
  'enough_want_go',
  'want_go_said',
  'go_said_ask',
  'said_ask_question',
  'ask_question_five',
  'question_five_time',
  'five_time_sixth',
  'time_sixth_time',
  'sixth_time_said',
  'time_said_hate',
  'said_hate_wife',
  'hate_wife_start',
  'wife_start_ask',
  'start_ask_end',
  'ask_end_tell',
  'end_tell_mean',
  'tell_mean_thing',
  'mean_thing_said',
  'thing_said_seemingli',
  'said_seemingli_uncomfort',
  'seemingli_uncomfort_told',
  'uncomfort_told_us',
  'told_us_finish',
  'us_finish_meal',
  'finish_meal_one',
  'meal_one_talk',
  'one_talk_rest',
  'talk_rest_night',
  'rest_night_finish',
  'night_finish_ask',
  'finish_ask_stepdad',
  'ask_stepdad_pick',
  'stepdad_pick_spoken',
  'pick_spoken_dad',
  'spoken_dad_sinc',
  'dad_sinc_sent',
  'sinc_sent_messag',
  'sent_messag_ask',
  'messag_ask_chang',
  'ask_chang_mind',
  'chang_mind_trip',
  'mind_trip_said',
  'trip_said_cousin',
  'said_cousin_told',
  'cousin_told_dad',
  'told_dad_stay',
  'dad_stay_grandpar',
  'stay_grandpar_wife',
  'grandpar_wife_text',
  'wife_text_yesterday',
  'text_yesterday_call',
  'yesterday_call_brat',
  'call_brat_ask',
  'brat_ask_happi',
  'ask_happi_potenti',
  'happi_potenti_destroy',
  'potenti_destroy_half-sibl',
  'destroy_half-sibl_home',
  'half-sibl_home_life',
  'home_life_ignor',
  'life_ignor_cousin',
  'ignor_cousin_say',
  'cousin_say_kid',
  'say_kid_hurt',
  'kid_hurt_cri',
  'hurt_cri_dad',
  'cri_dad_home',
  'dad_home_say',
  'home_say_said',
  'say_said_thing',
  'said_thing_agre',
  'thing_agre_tell',
  'agre_tell_later',
  'tell_later_go',
  'later_go_updat',
  'go_updat_guy',
  'updat_guy_[',
  'guy_[_httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac',
  '[_httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac_]',
  'httpswwwredditcomusertoldhim\\_thetruthcommentsvuuare\\_my\\_dad\\_and\\_i\\_in\\_a\\_better\\_plac_]_httpswwwredditcomusertoldhim_thetruthcommentsvuuare_my_dad_and_i_in_a_better_plac'],
 ['hey',
  'boyfriend',
  'im',
  'weve',
  'togeth',
  'almost',
  'two',
  'year',
  'boyfriend',
  'extrem',
  'hygien',
  'way',
  'like',
  'shower',
  'twice',
  'day',
  'wash',
  'cloth',
  'everi',
  'singl',
  'wear',
  'leav',
  'singl',
  'dish',
  'sink',
  'dirti',
  'ask',
  'littl',
  'top',
  'clean',
  'everyth',
  'around',
  'hous',
  'need',
  'scrub',
  'bodi',
  'separ',
  'time',
  'one',
  'shower',
  'cycl',
  'make',
  'sure',
  'miss',
  'dirt',
  'shower',
  'easili',
  'hour',
  'day',
  'obvious',
  'good',
  'basic',
  'hygien',
  'skill',
  'much',
  'relax',
  'exampl',
  'wear',
  '-shirt',
  'twice',
  'wash',
  'long',
  'stain',
  'cover',
  'someth',
  'stinki',
  'might',
  'leav',
  'dish',
  'sink',
  'hour',
  'dinner',
  'get',
  'wash',
  'would',
  'prefer',
  'kept',
  'everyth',
  'right',
  'away',
  'yesterday',
  'night',
  'laundri',
  'alway',
  'air-dri',
  'cloth',
  'save',
  'money',
  'reduc',
  'fade',
  'shrink',
  'usual',
  'laundri',
  'person',
  'one',
  'happen',
  'one',
  'take',
  'cloth',
  'washer',
  'lay',
  'dri',
  'came',
  'across',
  'one',
  'pair',
  'panti',
  'specif',
  'wear',
  'time',
  'month',
  'im',
  'certain',
  'ladi',
  'understand',
  'keep',
  'panti',
  'separ',
  'period',
  'aka',
  'ugli',
  'mayb',
  'blood',
  'stain',
  'pair',
  'period',
  'cute',
  'well',
  'kempt',
  'one',
  'im',
  'period',
  'anyway',
  'upon',
  'see',
  'told',
  'need',
  'throw',
  'pair',
  'away',
  'disgust',
  'unhygien',
  'made',
  'quit',
  'comment',
  'gross',
  'despit',
  'clean',
  'blood',
  'stain',
  'previou',
  'periodspot',
  'situat',
  'attempt',
  'explain',
  'keep',
  'pair',
  'sole',
  'bleed',
  'common',
  'thing',
  'girl',
  'quickli',
  'stop',
  'could',
  'tell',
  'disagre',
  'told',
  'pretti',
  'sure',
  'girl',
  'made',
  'feel',
  'realli',
  'know',
  'gross',
  'ugli',
  'alien',
  'im',
  'realli',
  'sure',
  'definit',
  'made',
  'upset',
  'feel',
  'type',
  'way',
  'someth',
  'felt',
  'natur',
  'guess',
  'snap',
  'forget',
  'explan',
  'make',
  'feel',
  'like',
  'im',
  'gross',
  'small',
  'argument',
  'insu',
  'end',
  'go',
  'bed',
  'kind',
  'frustrst',
  'think',
  'im',
  'wrong',
  'aita',
  '*',
  'edit',
  '*',
  'add',
  'black',
  'panti',
  'exactli',
  'work',
  'iud',
  'period',
  'spot',
  'sporad',
  'could',
  'go',
  'month',
  'without',
  'period',
  'could',
  'two',
  'month',
  'row',
  'could',
  'random',
  'light',
  'spot',
  'full',
  'blown',
  'waterfal',
  'realli',
  'consist',
  'due',
  'iud',
  'cant',
  'exactli',
  'plan',
  'start',
  'wear',
  'specif',
  'black',
  'period',
  'panti',
  'hey_boyfriend',
  'boyfriend_im',
  'im_weve',
  'weve_togeth',
  'togeth_almost',
  'almost_two',
  'two_year',
  'year_boyfriend',
  'boyfriend_extrem',
  'extrem_hygien',
  'hygien_way',
  'way_like',
  'like_shower',
  'shower_twice',
  'twice_day',
  'day_wash',
  'wash_cloth',
  'cloth_everi',
  'everi_singl',
  'singl_wear',
  'wear_leav',
  'leav_singl',
  'singl_dish',
  'dish_sink',
  'sink_dirti',
  'dirti_ask',
  'ask_littl',
  'littl_top',
  'top_clean',
  'clean_everyth',
  'everyth_around',
  'around_hous',
  'hous_need',
  'need_scrub',
  'scrub_bodi',
  'bodi_separ',
  'separ_time',
  'time_one',
  'one_shower',
  'shower_cycl',
  'cycl_make',
  'make_sure',
  'sure_miss',
  'miss_dirt',
  'dirt_shower',
  'shower_easili',
  'easili_hour',
  'hour_day',
  'day_obvious',
  'obvious_good',
  'good_basic',
  'basic_hygien',
  'hygien_skill',
  'skill_much',
  'much_relax',
  'relax_exampl',
  'exampl_wear',
  'wear_-shirt',
  '-shirt_twice',
  'twice_wash',
  'wash_long',
  'long_stain',
  'stain_cover',
  'cover_someth',
  'someth_stinki',
  'stinki_might',
  'might_leav',
  'leav_dish',
  'dish_sink',
  'sink_hour',
  'hour_dinner',
  'dinner_get',
  'get_wash',
  'wash_would',
  'would_prefer',
  'prefer_kept',
  'kept_everyth',
  'everyth_right',
  'right_away',
  'away_yesterday',
  'yesterday_night',
  'night_laundri',
  'laundri_alway',
  'alway_air-dri',
  'air-dri_cloth',
  'cloth_save',
  'save_money',
  'money_reduc',
  'reduc_fade',
  'fade_shrink',
  'shrink_usual',
  'usual_laundri',
  'laundri_person',
  'person_one',
  'one_happen',
  'happen_one',
  'one_take',
  'take_cloth',
  'cloth_washer',
  'washer_lay',
  'lay_dri',
  'dri_came',
  'came_across',
  'across_one',
  'one_pair',
  'pair_panti',
  'panti_specif',
  'specif_wear',
  'wear_time',
  'time_month',
  'month_im',
  'im_certain',
  'certain_ladi',
  'ladi_understand',
  'understand_keep',
  'keep_panti',
  'panti_separ',
  'separ_period',
  'period_aka',
  'aka_ugli',
  'ugli_mayb',
  'mayb_blood',
  'blood_stain',
  'stain_pair',
  'pair_period',
  'period_cute',
  'cute_well',
  'well_kempt',
  'kempt_one',
  'one_im',
  'im_period',
  'period_anyway',
  'anyway_upon',
  'upon_see',
  'see_told',
  'told_need',
  'need_throw',
  'throw_pair',
  'pair_away',
  'away_disgust',
  'disgust_unhygien',
  'unhygien_made',
  'made_quit',
  'quit_comment',
  'comment_gross',
  'gross_despit',
  'despit_clean',
  'clean_blood',
  'blood_stain',
  'stain_previou',
  'previou_periodspot',
  'periodspot_situat',
  'situat_attempt',
  'attempt_explain',
  'explain_keep',
  'keep_pair',
  'pair_sole',
  'sole_bleed',
  'bleed_common',
  'common_thing',
  'thing_girl',
  'girl_quickli',
  'quickli_stop',
  'stop_could',
  'could_tell',
  'tell_disagre',
  'disagre_told',
  'told_pretti',
  'pretti_sure',
  'sure_girl',
  'girl_made',
  'made_feel',
  'feel_realli',
  'realli_know',
  'know_gross',
  'gross_ugli',
  'ugli_alien',
  'alien_im',
  'im_realli',
  'realli_sure',
  'sure_definit',
  'definit_made',
  'made_upset',
  'upset_feel',
  'feel_type',
  'type_way',
  'way_someth',
  'someth_felt',
  'felt_natur',
  'natur_guess',
  'guess_snap',
  'snap_forget',
  'forget_explan',
  'explan_make',
  'make_feel',
  'feel_like',
  'like_im',
  'im_gross',
  'gross_small',
  'small_argument',
  'argument_insu',
  'insu_end',
  'end_go',
  'go_bed',
  'bed_kind',
  'kind_frustrst',
  'frustrst_think',
  'think_im',
  'im_wrong',
  'wrong_aita',
  'aita_*',
  '*_edit',
  'edit_*',
  '*_add',
  'add_black',
  'black_panti',
  'panti_exactli',
  'exactli_work',
  'work_iud',
  'iud_period',
  'period_spot',
  'spot_sporad',
  'sporad_could',
  'could_go',
  'go_month',
  'month_without',
  'without_period',
  'period_could',
  'could_two',
  'two_month',
  'month_row',
  'row_could',
  'could_random',
  'random_light',
  'light_spot',
  'spot_full',
  'full_blown',
  'blown_waterfal',
  'waterfal_realli',
  'realli_consist',
  'consist_due',
  'due_iud',
  'iud_cant',
  'cant_exactli',
  'exactli_plan',
  'plan_start',
  'start_wear',
  'wear_specif',
  'specif_black',
  'black_period',
  'period_panti',
  'hey_boyfriend_im',
  'boyfriend_im_weve',
  'im_weve_togeth',
  'weve_togeth_almost',
  'togeth_almost_two',
  'almost_two_year',
  'two_year_boyfriend',
  'year_boyfriend_extrem',
  'boyfriend_extrem_hygien',
  'extrem_hygien_way',
  'hygien_way_like',
  'way_like_shower',
  'like_shower_twice',
  'shower_twice_day',
  'twice_day_wash',
  'day_wash_cloth',
  'wash_cloth_everi',
  'cloth_everi_singl',
  'everi_singl_wear',
  'singl_wear_leav',
  'wear_leav_singl',
  'leav_singl_dish',
  'singl_dish_sink',
  'dish_sink_dirti',
  'sink_dirti_ask',
  'dirti_ask_littl',
  'ask_littl_top',
  'littl_top_clean',
  'top_clean_everyth',
  'clean_everyth_around',
  'everyth_around_hous',
  'around_hous_need',
  'hous_need_scrub',
  'need_scrub_bodi',
  'scrub_bodi_separ',
  'bodi_separ_time',
  'separ_time_one',
  'time_one_shower',
  'one_shower_cycl',
  'shower_cycl_make',
  'cycl_make_sure',
  'make_sure_miss',
  'sure_miss_dirt',
  'miss_dirt_shower',
  'dirt_shower_easili',
  'shower_easili_hour',
  'easili_hour_day',
  'hour_day_obvious',
  'day_obvious_good',
  'obvious_good_basic',
  'good_basic_hygien',
  'basic_hygien_skill',
  'hygien_skill_much',
  'skill_much_relax',
  'much_relax_exampl',
  'relax_exampl_wear',
  'exampl_wear_-shirt',
  'wear_-shirt_twice',
  '-shirt_twice_wash',
  'twice_wash_long',
  'wash_long_stain',
  'long_stain_cover',
  'stain_cover_someth',
  'cover_someth_stinki',
  'someth_stinki_might',
  'stinki_might_leav',
  'might_leav_dish',
  'leav_dish_sink',
  'dish_sink_hour',
  'sink_hour_dinner',
  'hour_dinner_get',
  'dinner_get_wash',
  'get_wash_would',
  'wash_would_prefer',
  'would_prefer_kept',
  'prefer_kept_everyth',
  'kept_everyth_right',
  'everyth_right_away',
  'right_away_yesterday',
  'away_yesterday_night',
  'yesterday_night_laundri',
  'night_laundri_alway',
  'laundri_alway_air-dri',
  'alway_air-dri_cloth',
  'air-dri_cloth_save',
  'cloth_save_money',
  'save_money_reduc',
  'money_reduc_fade',
  'reduc_fade_shrink',
  'fade_shrink_usual',
  'shrink_usual_laundri',
  'usual_laundri_person',
  'laundri_person_one',
  'person_one_happen',
  'one_happen_one',
  'happen_one_take',
  'one_take_cloth',
  'take_cloth_washer',
  'cloth_washer_lay',
  'washer_lay_dri',
  'lay_dri_came',
  'dri_came_across',
  'came_across_one',
  'across_one_pair',
  'one_pair_panti',
  'pair_panti_specif',
  'panti_specif_wear',
  'specif_wear_time',
  'wear_time_month',
  'time_month_im',
  'month_im_certain',
  'im_certain_ladi',
  'certain_ladi_understand',
  'ladi_understand_keep',
  'understand_keep_panti',
  'keep_panti_separ',
  'panti_separ_period',
  'separ_period_aka',
  'period_aka_ugli',
  'aka_ugli_mayb',
  'ugli_mayb_blood',
  'mayb_blood_stain',
  'blood_stain_pair',
  'stain_pair_period',
  'pair_period_cute',
  'period_cute_well',
  'cute_well_kempt',
  'well_kempt_one',
  'kempt_one_im',
  'one_im_period',
  'im_period_anyway',
  'period_anyway_upon',
  'anyway_upon_see',
  'upon_see_told',
  'see_told_need',
  'told_need_throw',
  'need_throw_pair',
  'throw_pair_away',
  'pair_away_disgust',
  'away_disgust_unhygien',
  'disgust_unhygien_made',
  'unhygien_made_quit',
  'made_quit_comment',
  'quit_comment_gross',
  'comment_gross_despit',
  'gross_despit_clean',
  'despit_clean_blood',
  'clean_blood_stain',
  'blood_stain_previou',
  'stain_previou_periodspot',
  'previou_periodspot_situat',
  'periodspot_situat_attempt',
  'situat_attempt_explain',
  'attempt_explain_keep',
  'explain_keep_pair',
  'keep_pair_sole',
  'pair_sole_bleed',
  'sole_bleed_common',
  'bleed_common_thing',
  'common_thing_girl',
  'thing_girl_quickli',
  'girl_quickli_stop',
  'quickli_stop_could',
  'stop_could_tell',
  'could_tell_disagre',
  'tell_disagre_told',
  'disagre_told_pretti',
  'told_pretti_sure',
  'pretti_sure_girl',
  'sure_girl_made',
  'girl_made_feel',
  'made_feel_realli',
  'feel_realli_know',
  'realli_know_gross',
  'know_gross_ugli',
  'gross_ugli_alien',
  'ugli_alien_im',
  'alien_im_realli',
  'im_realli_sure',
  'realli_sure_definit',
  'sure_definit_made',
  'definit_made_upset',
  'made_upset_feel',
  'upset_feel_type',
  'feel_type_way',
  'type_way_someth',
  'way_someth_felt',
  'someth_felt_natur',
  'felt_natur_guess',
  'natur_guess_snap',
  'guess_snap_forget',
  'snap_forget_explan',
  'forget_explan_make',
  'explan_make_feel',
  'make_feel_like',
  'feel_like_im',
  'like_im_gross',
  'im_gross_small',
  'gross_small_argument',
  'small_argument_insu',
  'argument_insu_end',
  'insu_end_go',
  'end_go_bed',
  'go_bed_kind',
  'bed_kind_frustrst',
  'kind_frustrst_think',
  'frustrst_think_im',
  'think_im_wrong',
  'im_wrong_aita',
  'wrong_aita_*',
  'aita_*_edit',
  '*_edit_*',
  'edit_*_add',
  '*_add_black',
  'add_black_panti',
  'black_panti_exactli',
  'panti_exactli_work',
  'exactli_work_iud',
  'work_iud_period',
  'iud_period_spot',
  'period_spot_sporad',
  'spot_sporad_could',
  'sporad_could_go',
  'could_go_month',
  'go_month_without',
  'month_without_period',
  'without_period_could',
  'period_could_two',
  'could_two_month',
  'two_month_row',
  'month_row_could',
  'row_could_random',
  'could_random_light',
  'random_light_spot',
  'light_spot_full',
  'spot_full_blown',
  'full_blown_waterfal',
  'blown_waterfal_realli',
  'waterfal_realli_consist',
  'realli_consist_due',
  'consist_due_iud',
  'due_iud_cant',
  'iud_cant_exactli',
  'cant_exactli_plan',
  'exactli_plan_start',
  'plan_start_wear',
  'start_wear_specif',
  'wear_specif_black',
  'specif_black_period',
  'black_period_panti'],
 ['three',
  'sibl',
  'live',
  'home',
  'older',
  'brother',
  'work',
  'go',
  'school',
  'middl',
  'youngest',
  'brother',
  'middl',
  'high',
  'school',
  'take',
  'care',
  'six',
  'year',
  'parent',
  'work',
  'one',
  'clean',
  'make',
  'food',
  'take',
  'care',
  'dog',
  'access',
  'car',
  'share',
  'brother',
  'take',
  'go',
  'see',
  'friend',
  'hook',
  'tinder',
  'rando',
  'bring',
  'home',
  'groceri',
  'bu',
  'oh',
  'yeah',
  'also',
  'groceri',
  'shop',
  'tri',
  'talk',
  'parent',
  'say',
  'brother',
  'find',
  'younger',
  'one',
  'concentr',
  'school',
  'third',
  'year',
  'colleg',
  'wreck',
  'boyfriend',
  'talk',
  'parent',
  'let',
  'move',
  'apart',
  'garag',
  'pay',
  'rent',
  'apart',
  'live',
  'home',
  'rent',
  'free',
  'also',
  'graduat',
  'great',
  'job',
  'talk',
  'fair',
  'commit',
  'way',
  'young',
  'think',
  'move',
  'togeth',
  'get',
  'marri',
  'say',
  'young',
  'anyon',
  'els',
  'know',
  'want',
  'life',
  'get',
  'nurs',
  'degre',
  'get',
  'job',
  'readi',
  'parent',
  'went',
  'away',
  'weekend',
  'nascar',
  'vega',
  'third',
  'vacat',
  'year',
  'begrudg',
  'holiday',
  'work',
  'hard',
  'tire',
  'unpaid',
  'nannydog',
  'sitter',
  'grab',
  'laptop',
  'cloth',
  'thing',
  'gift',
  'wait',
  'older',
  'brother',
  'get',
  'home',
  'left',
  'told',
  'go',
  'milk',
  'boyfriend',
  'wait',
  'car',
  'around',
  'corner',
  'start',
  'text',
  'twenti',
  'minut',
  'later',
  'say',
  'need',
  'car',
  'take',
  'car',
  'left',
  'key',
  'counter',
  'even',
  'hous',
  'key',
  'grandpar',
  'pay',
  'educ',
  'liter',
  'noth',
  'parent',
  'hold',
  'let',
  'know',
  'come',
  'back',
  'let',
  'parent',
  'know',
  'last',
  'race',
  'left',
  'charg',
  'younger',
  'kid',
  'bail',
  'drove',
  'straight',
  'home',
  'instead',
  'spend',
  'night',
  'parti',
  'drive',
  'home',
  'today',
  'everyon',
  'mad',
  'immatur',
  'thoughtless',
  'care',
  'anymor',
  'talk',
  'grandfath',
  'say',
  'right',
  'brother',
  'look',
  'mom',
  'keep',
  'call',
  'complain',
  'hous',
  'mess',
  'gone',
  'hour',
  'got',
  'home',
  'brother',
  'pig',
  'older',
  'brother',
  'say',
  'asshol',
  'parent',
  'make',
  'everyth',
  'use',
  'find',
  'give',
  'shit',
  '&',
  'xb',
  'aita',
  'three_sibl',
  'sibl_live',
  'live_home',
  'home_older',
  'older_brother',
  'brother_work',
  'work_go',
  'go_school',
  'school_middl',
  'middl_youngest',
  'youngest_brother',
  'brother_middl',
  'middl_high',
  'high_school',
  'school_take',
  'take_care',
  'care_six',
  'six_year',
  'year_parent',
  'parent_work',
  'work_one',
  'one_clean',
  'clean_make',
  'make_food',
  'food_take',
  'take_care',
  'care_dog',
  'dog_access',
  'access_car',
  'car_share',
  'share_brother',
  'brother_take',
  'take_go',
  'go_see',
  'see_friend',
  'friend_hook',
  'hook_tinder',
  'tinder_rando',
  'rando_bring',
  'bring_home',
  'home_groceri',
  'groceri_bu',
  'bu_oh',
  'oh_yeah',
  'yeah_also',
  'also_groceri',
  'groceri_shop',
  'shop_tri',
  'tri_talk',
  'talk_parent',
  'parent_say',
  'say_brother',
  'brother_find',
  'find_younger',
  'younger_one',
  'one_concentr',
  'concentr_school',
  'school_third',
  'third_year',
  'year_colleg',
  'colleg_wreck',
  'wreck_boyfriend',
  'boyfriend_talk',
  'talk_parent',
  'parent_let',
  'let_move',
  'move_apart',
  'apart_garag',
  'garag_pay',
  'pay_rent',
  'rent_apart',
  'apart_live',
  'live_home',
  'home_rent',
  'rent_free',
  'free_also',
  'also_graduat',
  'graduat_great',
  'great_job',
  'job_talk',
  'talk_fair',
  'fair_commit',
  'commit_way',
  'way_young',
  'young_think',
  'think_move',
  'move_togeth',
  'togeth_get',
  'get_marri',
  'marri_say',
  'say_young',
  'young_anyon',
  'anyon_els',
  'els_know',
  'know_want',
  'want_life',
  'life_get',
  'get_nurs',
  'nurs_degre',
  'degre_get',
  'get_job',
  'job_readi',
  'readi_parent',
  'parent_went',
  'went_away',
  'away_weekend',
  'weekend_nascar',
  'nascar_vega',
  'vega_third',
  'third_vacat',
  'vacat_year',
  'year_begrudg',
  'begrudg_holiday',
  'holiday_work',
  'work_hard',
  'hard_tire',
  'tire_unpaid',
  'unpaid_nannydog',
  'nannydog_sitter',
  'sitter_grab',
  'grab_laptop',
  'laptop_cloth',
  'cloth_thing',
  'thing_gift',
  'gift_wait',
  'wait_older',
  'older_brother',
  'brother_get',
  'get_home',
  'home_left',
  'left_told',
  'told_go',
  'go_milk',
  'milk_boyfriend',
  'boyfriend_wait',
  'wait_car',
  'car_around',
  'around_corner',
  'corner_start',
  'start_text',
  'text_twenti',
  'twenti_minut',
  'minut_later',
  'later_say',
  'say_need',
  'need_car',
  'car_take',
  'take_car',
  'car_left',
  'left_key',
  'key_counter',
  'counter_even',
  'even_hous',
  'hous_key',
  'key_grandpar',
  'grandpar_pay',
  'pay_educ',
  'educ_liter',
  'liter_noth',
  'noth_parent',
  'parent_hold',
  'hold_let',
  'let_know',
  'know_come',
  'come_back',
  'back_let',
  'let_parent',
  'parent_know',
  'know_last',
  'last_race',
  'race_left',
  'left_charg',
  'charg_younger',
  'younger_kid',
  'kid_bail',
  'bail_drove',
  'drove_straight',
  'straight_home',
  'home_instead',
  'instead_spend',
  'spend_night',
  'night_parti',
  'parti_drive',
  'drive_home',
  'home_today',
  'today_everyon',
  'everyon_mad',
  'mad_immatur',
  'immatur_thoughtless',
  'thoughtless_care',
  'care_anymor',
  'anymor_talk',
  'talk_grandfath',
  'grandfath_say',
  'say_right',
  'right_brother',
  'brother_look',
  'look_mom',
  'mom_keep',
  'keep_call',
  'call_complain',
  'complain_hous',
  'hous_mess',
  'mess_gone',
  'gone_hour',
  'hour_got',
  'got_home',
  'home_brother',
  'brother_pig',
  'pig_older',
  'older_brother',
  'brother_say',
  'say_asshol',
  'asshol_parent',
  'parent_make',
  'make_everyth',
  'everyth_use',
  'use_find',
  'find_give',
  'give_shit',
  'shit_&',
  '&_xb',
  'xb_aita',
  'three_sibl_live',
  'sibl_live_home',
  'live_home_older',
  'home_older_brother',
  'older_brother_work',
  'brother_work_go',
  'work_go_school',
  'go_school_middl',
  'school_middl_youngest',
  'middl_youngest_brother',
  'youngest_brother_middl',
  'brother_middl_high',
  'middl_high_school',
  'high_school_take',
  'school_take_care',
  'take_care_six',
  'care_six_year',
  'six_year_parent',
  'year_parent_work',
  'parent_work_one',
  'work_one_clean',
  'one_clean_make',
  'clean_make_food',
  'make_food_take',
  'food_take_care',
  'take_care_dog',
  'care_dog_access',
  'dog_access_car',
  'access_car_share',
  'car_share_brother',
  'share_brother_take',
  'brother_take_go',
  'take_go_see',
  'go_see_friend',
  'see_friend_hook',
  'friend_hook_tinder',
  'hook_tinder_rando',
  'tinder_rando_bring',
  'rando_bring_home',
  'bring_home_groceri',
  'home_groceri_bu',
  'groceri_bu_oh',
  'bu_oh_yeah',
  'oh_yeah_also',
  'yeah_also_groceri',
  'also_groceri_shop',
  'groceri_shop_tri',
  'shop_tri_talk',
  'tri_talk_parent',
  'talk_parent_say',
  'parent_say_brother',
  'say_brother_find',
  'brother_find_younger',
  'find_younger_one',
  'younger_one_concentr',
  'one_concentr_school',
  'concentr_school_third',
  'school_third_year',
  'third_year_colleg',
  'year_colleg_wreck',
  'colleg_wreck_boyfriend',
  'wreck_boyfriend_talk',
  'boyfriend_talk_parent',
  'talk_parent_let',
  'parent_let_move',
  'let_move_apart',
  'move_apart_garag',
  'apart_garag_pay',
  'garag_pay_rent',
  'pay_rent_apart',
  'rent_apart_live',
  'apart_live_home',
  'live_home_rent',
  'home_rent_free',
  'rent_free_also',
  'free_also_graduat',
  'also_graduat_great',
  'graduat_great_job',
  'great_job_talk',
  'job_talk_fair',
  'talk_fair_commit',
  'fair_commit_way',
  'commit_way_young',
  'way_young_think',
  'young_think_move',
  'think_move_togeth',
  'move_togeth_get',
  'togeth_get_marri',
  'get_marri_say',
  'marri_say_young',
  'say_young_anyon',
  'young_anyon_els',
  'anyon_els_know',
  'els_know_want',
  'know_want_life',
  'want_life_get',
  'life_get_nurs',
  'get_nurs_degre',
  'nurs_degre_get',
  'degre_get_job',
  'get_job_readi',
  'job_readi_parent',
  'readi_parent_went',
  'parent_went_away',
  'went_away_weekend',
  'away_weekend_nascar',
  'weekend_nascar_vega',
  'nascar_vega_third',
  'vega_third_vacat',
  'third_vacat_year',
  'vacat_year_begrudg',
  'year_begrudg_holiday',
  'begrudg_holiday_work',
  'holiday_work_hard',
  'work_hard_tire',
  'hard_tire_unpaid',
  'tire_unpaid_nannydog',
  'unpaid_nannydog_sitter',
  'nannydog_sitter_grab',
  'sitter_grab_laptop',
  'grab_laptop_cloth',
  'laptop_cloth_thing',
  'cloth_thing_gift',
  'thing_gift_wait',
  'gift_wait_older',
  'wait_older_brother',
  'older_brother_get',
  'brother_get_home',
  'get_home_left',
  'home_left_told',
  'left_told_go',
  'told_go_milk',
  'go_milk_boyfriend',
  'milk_boyfriend_wait',
  'boyfriend_wait_car',
  'wait_car_around',
  'car_around_corner',
  'around_corner_start',
  'corner_start_text',
  'start_text_twenti',
  'text_twenti_minut',
  'twenti_minut_later',
  'minut_later_say',
  'later_say_need',
  'say_need_car',
  'need_car_take',
  'car_take_car',
  'take_car_left',
  'car_left_key',
  'left_key_counter',
  'key_counter_even',
  'counter_even_hous',
  'even_hous_key',
  'hous_key_grandpar',
  'key_grandpar_pay',
  'grandpar_pay_educ',
  'pay_educ_liter',
  'educ_liter_noth',
  'liter_noth_parent',
  'noth_parent_hold',
  'parent_hold_let',
  'hold_let_know',
  'let_know_come',
  'know_come_back',
  'come_back_let',
  'back_let_parent',
  'let_parent_know',
  'parent_know_last',
  'know_last_race',
  'last_race_left',
  'race_left_charg',
  'left_charg_younger',
  'charg_younger_kid',
  'younger_kid_bail',
  'kid_bail_drove',
  'bail_drove_straight',
  'drove_straight_home',
  'straight_home_instead',
  'home_instead_spend',
  'instead_spend_night',
  'spend_night_parti',
  'night_parti_drive',
  'parti_drive_home',
  'drive_home_today',
  'home_today_everyon',
  'today_everyon_mad',
  'everyon_mad_immatur',
  'mad_immatur_thoughtless',
  'immatur_thoughtless_care',
  'thoughtless_care_anymor',
  'care_anymor_talk',
  'anymor_talk_grandfath',
  'talk_grandfath_say',
  'grandfath_say_right',
  'say_right_brother',
  'right_brother_look',
  'brother_look_mom',
  'look_mom_keep',
  'mom_keep_call',
  'keep_call_complain',
  'call_complain_hous',
  'complain_hous_mess',
  'hous_mess_gone',
  'mess_gone_hour',
  'gone_hour_got',
  'hour_got_home',
  'got_home_brother',
  'home_brother_pig',
  'brother_pig_older',
  'pig_older_brother',
  'older_brother_say',
  'brother_say_asshol',
  'say_asshol_parent',
  'asshol_parent_make',
  'parent_make_everyth',
  'make_everyth_use',
  'everyth_use_find',
  'use_find_give',
  'find_give_shit',
  'give_shit_&',
  'shit_&_xb',
  '&_xb_aita'],
 ['start',
  'id',
  'like',
  'say',
  'im',
  'bit',
  'big',
  'girl',
  'shame',
  'love',
  'way',
  'live',
  'motto',
  'everybodi',
  'els',
  'taken',
  '😅',
  'mil',
  'dh',
  'mom',
  'alway',
  'made',
  'comment',
  'weight',
  'eversinc',
  'got',
  'pregnant',
  'start',
  'make',
  'comment',
  'low',
  'key',
  'shame',
  'eat',
  'whenev',
  'visit',
  'shed',
  'give',
  'smaller',
  'plate',
  'portion',
  'cup',
  'even',
  'spoon',
  'also',
  'buy',
  'small',
  'size',
  'cloth',
  'even',
  'though',
  'im',
  'nd',
  'trimest',
  'cloth',
  'fit',
  'sil',
  'decid',
  'throw',
  'babi',
  'shower',
  'dh',
  'deni',
  'sister',
  'offer',
  'throw',
  'one',
  'whole',
  'side',
  'inlaw',
  'invit',
  'mom',
  'refus',
  'come',
  'dh',
  'said',
  'sister',
  'anoth',
  'stori',
  'later',
  'got',
  'mil',
  'charg',
  'serv',
  'food',
  'guest',
  'serv',
  'cake',
  'juic',
  'got',
  'hungri',
  'talk',
  'got',
  'eat',
  'cake',
  'second',
  'put',
  'hand',
  'cake',
  'mil',
  'grab',
  'arm',
  'said',
  'id',
  'gain',
  'enough',
  'weight',
  'alreadi',
  'keep',
  'son',
  'happi',
  'live',
  'larg',
  'walru',
  'shock',
  'know',
  'react',
  'especi',
  'sinc',
  'said',
  'loud',
  'look',
  'sorry-not-sorri',
  'kind',
  'way',
  'put',
  'cake',
  'grab',
  'stuff',
  'start',
  'walk',
  'daughter',
  'stop',
  'say',
  'cant',
  'leav',
  'mid',
  'parti',
  'embarrass',
  'like',
  'told',
  'tell',
  'mom',
  'leav',
  'want',
  'stay',
  'went',
  'said',
  'crazi',
  'mom',
  'want',
  'kick',
  'infront',
  'everybodi',
  'turn',
  'around',
  'kept',
  'walk',
  'call',
  'mom',
  'come',
  'pick',
  'went',
  'home',
  'dh',
  'came',
  'home',
  'look',
  'furiou',
  'ask',
  'explain',
  'babi',
  'shower',
  'mention',
  'mom',
  'start',
  'rant',
  'fuck',
  'someth',
  'minor',
  'told',
  'minor',
  'opinion',
  'sinc',
  'liter',
  'cut',
  'food',
  'let',
  'eat',
  'hungri',
  'said',
  'mom',
  'meant',
  'well',
  'need',
  'get',
  'rid',
  'easili',
  'offend',
  'mindset',
  'immedietli',
  'pass',
  'son',
  'said',
  'cake',
  'essenti',
  'food',
  'good',
  'enough',
  'reason',
  'walk',
  'babi',
  'shower',
  'mom',
  'sister',
  'put',
  'ton',
  'money',
  'time',
  'effort',
  'said',
  'hour',
  'call',
  'fix',
  'thing',
  'refus',
  'went',
  'stay',
  'mom',
  'stop',
  'pressut',
  'call',
  'apolog',
  'happen',
  'kept',
  'talk',
  'piss',
  'let',
  'mom',
  'sister',
  'feel',
  'call',
  'ungrat',
  'spite',
  'overreact',
  'info',
  'lot',
  'ask',
  'dh',
  'said',
  'sister',
  'argument',
  'answer',
  'sister',
  'infertil',
  'year',
  'dh',
  'claim',
  'becon',
  'obssess',
  'babi',
  'simpli',
  'bought',
  'stuff',
  'babi',
  'gift',
  'want',
  'throw',
  'babi',
  'shower',
  'sister',
  'great',
  'person',
  'doubt',
  'great',
  'iswil',
  'aunt',
  'dh',
  'kept',
  'insist',
  'someth',
  'wrong',
  'led',
  'fight',
  'end',
  'call',
  'possess',
  '&',
  '$',
  '^',
  'mom',
  'kick',
  'sister',
  'cut',
  'contact',
  'issu',
  'got',
  'wors',
  'bil',
  'husband',
  'argu',
  'dh',
  'well',
  'start_id',
  'id_like',
  'like_say',
  'say_im',
  'im_bit',
  'bit_big',
  'big_girl',
  'girl_shame',
  'shame_love',
  'love_way',
  'way_live',
  'live_motto',
  'motto_everybodi',
  'everybodi_els',
  'els_taken',
  'taken_😅',
  '😅_mil',
  'mil_dh',
  'dh_mom',
  'mom_alway',
  'alway_made',
  'made_comment',
  'comment_weight',
  'weight_eversinc',
  'eversinc_got',
  'got_pregnant',
  'pregnant_start',
  'start_make',
  'make_comment',
  'comment_low',
  'low_key',
  'key_shame',
  'shame_eat',
  'eat_whenev',
  'whenev_visit',
  'visit_shed',
  'shed_give',
  'give_smaller',
  'smaller_plate',
  'plate_portion',
  'portion_cup',
  'cup_even',
  'even_spoon',
  'spoon_also',
  'also_buy',
  'buy_small',
  'small_size',
  'size_cloth',
  'cloth_even',
  'even_though',
  'though_im',
  'im_nd',
  'nd_trimest',
  'trimest_cloth',
  'cloth_fit',
  'fit_sil',
  'sil_decid',
  'decid_throw',
  'throw_babi',
  'babi_shower',
  'shower_dh',
  'dh_deni',
  'deni_sister',
  'sister_offer',
  'offer_throw',
  'throw_one',
  'one_whole',
  'whole_side',
  'side_inlaw',
  'inlaw_invit',
  'invit_mom',
  'mom_refus',
  'refus_come',
  'come_dh',
  'dh_said',
  'said_sister',
  'sister_anoth',
  'anoth_stori',
  'stori_later',
  'later_got',
  'got_mil',
  'mil_charg',
  'charg_serv',
  'serv_food',
  'food_guest',
  'guest_serv',
  'serv_cake',
  'cake_juic',
  'juic_got',
  'got_hungri',
  'hungri_talk',
  'talk_got',
  'got_eat',
  'eat_cake',
  'cake_second',
  'second_put',
  'put_hand',
  'hand_cake',
  'cake_mil',
  'mil_grab',
  'grab_arm',
  'arm_said',
  'said_id',
  'id_gain',
  'gain_enough',
  'enough_weight',
  'weight_alreadi',
  'alreadi_keep',
  'keep_son',
  'son_happi',
  'happi_live',
  'live_larg',
  'larg_walru',
  'walru_shock',
  'shock_know',
  'know_react',
  'react_especi',
  'especi_sinc',
  'sinc_said',
  'said_loud',
  'loud_look',
  'look_sorry-not-sorri',
  'sorry-not-sorri_kind',
  'kind_way',
  'way_put',
  'put_cake',
  'cake_grab',
  'grab_stuff',
  'stuff_start',
  'start_walk',
  'walk_daughter',
  'daughter_stop',
  'stop_say',
  'say_cant',
  'cant_leav',
  'leav_mid',
  'mid_parti',
  'parti_embarrass',
  'embarrass_like',
  'like_told',
  'told_tell',
  'tell_mom',
  'mom_leav',
  'leav_want',
  'want_stay',
  'stay_went',
  'went_said',
  'said_crazi',
  'crazi_mom',
  'mom_want',
  'want_kick',
  'kick_infront',
  'infront_everybodi',
  'everybodi_turn',
  'turn_around',
  'around_kept',
  'kept_walk',
  'walk_call',
  'call_mom',
  'mom_come',
  'come_pick',
  'pick_went',
  'went_home',
  'home_dh',
  'dh_came',
  'came_home',
  'home_look',
  'look_furiou',
  'furiou_ask',
  'ask_explain',
  'explain_babi',
  'babi_shower',
  'shower_mention',
  'mention_mom',
  'mom_start',
  'start_rant',
  'rant_fuck',
  'fuck_someth',
  'someth_minor',
  'minor_told',
  'told_minor',
  'minor_opinion',
  'opinion_sinc',
  'sinc_liter',
  'liter_cut',
  'cut_food',
  'food_let',
  'let_eat',
  'eat_hungri',
  'hungri_said',
  'said_mom',
  'mom_meant',
  'meant_well',
  'well_need',
  'need_get',
  'get_rid',
  'rid_easili',
  'easili_offend',
  'offend_mindset',
  'mindset_immedietli',
  'immedietli_pass',
  'pass_son',
  'son_said',
  'said_cake',
  'cake_essenti',
  'essenti_food',
  'food_good',
  'good_enough',
  'enough_reason',
  'reason_walk',
  'walk_babi',
  'babi_shower',
  'shower_mom',
  'mom_sister',
  'sister_put',
  'put_ton',
  'ton_money',
  'money_time',
  'time_effort',
  'effort_said',
  'said_hour',
  'hour_call',
  'call_fix',
  'fix_thing',
  'thing_refus',
  'refus_went',
  'went_stay',
  'stay_mom',
  'mom_stop',
  'stop_pressut',
  'pressut_call',
  'call_apolog',
  'apolog_happen',
  'happen_kept',
  'kept_talk',
  'talk_piss',
  'piss_let',
  'let_mom',
  'mom_sister',
  'sister_feel',
  'feel_call',
  'call_ungrat',
  'ungrat_spite',
  'spite_overreact',
  'overreact_info',
  'info_lot',
  'lot_ask',
  'ask_dh',
  'dh_said',
  'said_sister',
  'sister_argument',
  'argument_answer',
  'answer_sister',
  'sister_infertil',
  'infertil_year',
  'year_dh',
  'dh_claim',
  'claim_becon',
  'becon_obssess',
  'obssess_babi',
  'babi_simpli',
  'simpli_bought',
  'bought_stuff',
  'stuff_babi',
  'babi_gift',
  'gift_want',
  'want_throw',
  'throw_babi',
  'babi_shower',
  'shower_sister',
  'sister_great',
  'great_person',
  'person_doubt',
  'doubt_great',
  'great_iswil',
  'iswil_aunt',
  'aunt_dh',
  'dh_kept',
  'kept_insist',
  'insist_someth',
  'someth_wrong',
  'wrong_led',
  'led_fight',
  'fight_end',
  'end_call',
  'call_possess',
  'possess_&',
  '&_$',
  '$_^',
  '^_mom',
  'mom_kick',
  'kick_sister',
  'sister_cut',
  'cut_contact',
  'contact_issu',
  'issu_got',
  'got_wors',
  'wors_bil',
  'bil_husband',
  'husband_argu',
  'argu_dh',
  'dh_well',
  'start_id_like',
  'id_like_say',
  'like_say_im',
  'say_im_bit',
  'im_bit_big',
  'bit_big_girl',
  'big_girl_shame',
  'girl_shame_love',
  'shame_love_way',
  'love_way_live',
  'way_live_motto',
  'live_motto_everybodi',
  'motto_everybodi_els',
  'everybodi_els_taken',
  'els_taken_😅',
  'taken_😅_mil',
  '😅_mil_dh',
  'mil_dh_mom',
  'dh_mom_alway',
  'mom_alway_made',
  'alway_made_comment',
  'made_comment_weight',
  'comment_weight_eversinc',
  'weight_eversinc_got',
  'eversinc_got_pregnant',
  'got_pregnant_start',
  'pregnant_start_make',
  'start_make_comment',
  'make_comment_low',
  'comment_low_key',
  'low_key_shame',
  'key_shame_eat',
  'shame_eat_whenev',
  'eat_whenev_visit',
  'whenev_visit_shed',
  'visit_shed_give',
  'shed_give_smaller',
  'give_smaller_plate',
  'smaller_plate_portion',
  'plate_portion_cup',
  'portion_cup_even',
  'cup_even_spoon',
  'even_spoon_also',
  'spoon_also_buy',
  'also_buy_small',
  'buy_small_size',
  'small_size_cloth',
  'size_cloth_even',
  'cloth_even_though',
  'even_though_im',
  'though_im_nd',
  'im_nd_trimest',
  'nd_trimest_cloth',
  'trimest_cloth_fit',
  'cloth_fit_sil',
  'fit_sil_decid',
  'sil_decid_throw',
  'decid_throw_babi',
  'throw_babi_shower',
  'babi_shower_dh',
  'shower_dh_deni',
  'dh_deni_sister',
  'deni_sister_offer',
  'sister_offer_throw',
  'offer_throw_one',
  'throw_one_whole',
  'one_whole_side',
  'whole_side_inlaw',
  'side_inlaw_invit',
  'inlaw_invit_mom',
  'invit_mom_refus',
  'mom_refus_come',
  'refus_come_dh',
  'come_dh_said',
  'dh_said_sister',
  'said_sister_anoth',
  'sister_anoth_stori',
  'anoth_stori_later',
  'stori_later_got',
  'later_got_mil',
  'got_mil_charg',
  'mil_charg_serv',
  'charg_serv_food',
  'serv_food_guest',
  'food_guest_serv',
  'guest_serv_cake',
  'serv_cake_juic',
  'cake_juic_got',
  'juic_got_hungri',
  'got_hungri_talk',
  'hungri_talk_got',
  'talk_got_eat',
  'got_eat_cake',
  'eat_cake_second',
  'cake_second_put',
  'second_put_hand',
  'put_hand_cake',
  'hand_cake_mil',
  'cake_mil_grab',
  'mil_grab_arm',
  'grab_arm_said',
  'arm_said_id',
  'said_id_gain',
  'id_gain_enough',
  'gain_enough_weight',
  'enough_weight_alreadi',
  'weight_alreadi_keep',
  'alreadi_keep_son',
  'keep_son_happi',
  'son_happi_live',
  'happi_live_larg',
  'live_larg_walru',
  'larg_walru_shock',
  'walru_shock_know',
  'shock_know_react',
  'know_react_especi',
  'react_especi_sinc',
  'especi_sinc_said',
  'sinc_said_loud',
  'said_loud_look',
  'loud_look_sorry-not-sorri',
  'look_sorry-not-sorri_kind',
  'sorry-not-sorri_kind_way',
  'kind_way_put',
  'way_put_cake',
  'put_cake_grab',
  'cake_grab_stuff',
  'grab_stuff_start',
  'stuff_start_walk',
  'start_walk_daughter',
  'walk_daughter_stop',
  'daughter_stop_say',
  'stop_say_cant',
  'say_cant_leav',
  'cant_leav_mid',
  'leav_mid_parti',
  'mid_parti_embarrass',
  'parti_embarrass_like',
  'embarrass_like_told',
  'like_told_tell',
  'told_tell_mom',
  'tell_mom_leav',
  'mom_leav_want',
  'leav_want_stay',
  'want_stay_went',
  'stay_went_said',
  'went_said_crazi',
  'said_crazi_mom',
  'crazi_mom_want',
  'mom_want_kick',
  'want_kick_infront',
  'kick_infront_everybodi',
  'infront_everybodi_turn',
  'everybodi_turn_around',
  'turn_around_kept',
  'around_kept_walk',
  'kept_walk_call',
  'walk_call_mom',
  'call_mom_come',
  'mom_come_pick',
  'come_pick_went',
  'pick_went_home',
  'went_home_dh',
  'home_dh_came',
  'dh_came_home',
  'came_home_look',
  'home_look_furiou',
  'look_furiou_ask',
  'furiou_ask_explain',
  'ask_explain_babi',
  'explain_babi_shower',
  'babi_shower_mention',
  'shower_mention_mom',
  'mention_mom_start',
  'mom_start_rant',
  'start_rant_fuck',
  'rant_fuck_someth',
  'fuck_someth_minor',
  'someth_minor_told',
  'minor_told_minor',
  'told_minor_opinion',
  'minor_opinion_sinc',
  'opinion_sinc_liter',
  'sinc_liter_cut',
  'liter_cut_food',
  'cut_food_let',
  'food_let_eat',
  'let_eat_hungri',
  'eat_hungri_said',
  'hungri_said_mom',
  'said_mom_meant',
  'mom_meant_well',
  'meant_well_need',
  'well_need_get',
  'need_get_rid',
  'get_rid_easili',
  'rid_easili_offend',
  'easili_offend_mindset',
  'offend_mindset_immedietli',
  'mindset_immedietli_pass',
  'immedietli_pass_son',
  'pass_son_said',
  'son_said_cake',
  'said_cake_essenti',
  'cake_essenti_food',
  'essenti_food_good',
  'food_good_enough',
  'good_enough_reason',
  'enough_reason_walk',
  'reason_walk_babi',
  'walk_babi_shower',
  'babi_shower_mom',
  'shower_mom_sister',
  'mom_sister_put',
  'sister_put_ton',
  'put_ton_money',
  'ton_money_time',
  'money_time_effort',
  'time_effort_said',
  'effort_said_hour',
  'said_hour_call',
  'hour_call_fix',
  'call_fix_thing',
  'fix_thing_refus',
  'thing_refus_went',
  'refus_went_stay',
  'went_stay_mom',
  'stay_mom_stop',
  'mom_stop_pressut',
  'stop_pressut_call',
  'pressut_call_apolog',
  'call_apolog_happen',
  'apolog_happen_kept',
  'happen_kept_talk',
  'kept_talk_piss',
  'talk_piss_let',
  'piss_let_mom',
  'let_mom_sister',
  'mom_sister_feel',
  'sister_feel_call',
  'feel_call_ungrat',
  'call_ungrat_spite',
  'ungrat_spite_overreact',
  'spite_overreact_info',
  'overreact_info_lot',
  'info_lot_ask',
  'lot_ask_dh',
  'ask_dh_said',
  'dh_said_sister',
  'said_sister_argument',
  'sister_argument_answer',
  'argument_answer_sister',
  'answer_sister_infertil',
  'sister_infertil_year',
  'infertil_year_dh',
  'year_dh_claim',
  'dh_claim_becon',
  'claim_becon_obssess',
  'becon_obssess_babi',
  'obssess_babi_simpli',
  'babi_simpli_bought',
  'simpli_bought_stuff',
  'bought_stuff_babi',
  'stuff_babi_gift',
  'babi_gift_want',
  'gift_want_throw',
  'want_throw_babi',
  'throw_babi_shower',
  'babi_shower_sister',
  'shower_sister_great',
  'sister_great_person',
  'great_person_doubt',
  'person_doubt_great',
  'doubt_great_iswil',
  'great_iswil_aunt',
  'iswil_aunt_dh',
  'aunt_dh_kept',
  'dh_kept_insist',
  'kept_insist_someth',
  'insist_someth_wrong',
  'someth_wrong_led',
  'wrong_led_fight',
  'led_fight_end',
  'fight_end_call',
  'end_call_possess',
  'call_possess_&',
  'possess_&_$',
  '&_$_^',
  '$_^_mom',
  '^_mom_kick',
  'mom_kick_sister',
  'kick_sister_cut',
  'sister_cut_contact',
  'cut_contact_issu',
  'contact_issu_got',
  'issu_got_wors',
  'got_wors_bil',
  'wors_bil_husband',
  'bil_husband_argu',
  'husband_argu_dh',
  'argu_dh_well'],
 ['situat',
  'prettyfruatr',
  'say',
  'least',
  'let',
  'start',
  'context',
  'husband',
  'yearold',
  'daughter',
  'play',
  'piano',
  'particip',
  'sever',
  'play',
  'outsid',
  'school',
  'thing',
  'husband',
  'invit',
  'mom',
  'everi',
  'perform',
  'daughter',
  'say',
  '-',
  'mani',
  'time',
  'shed',
  'put',
  'daughter',
  'point',
  'mess',
  'need',
  'work',
  'hello',
  'even',
  'expert',
  'happen',
  'everi',
  'time',
  'daughter',
  'pick',
  'neg',
  'comment',
  'self',
  'esteem',
  'kept',
  'get',
  'low',
  'extens',
  'perform',
  'kept',
  'get',
  'low',
  'well',
  'told',
  'husband',
  'mom',
  'need',
  'either',
  'stop',
  'put',
  'daughter',
  'stop',
  'come',
  'play',
  'said',
  'mom',
  'grandmoth',
  'includ',
  'event',
  'support',
  'daughter',
  'perform',
  'past',
  'wednesday',
  'told',
  'husband',
  'mom',
  'sit',
  'one',
  'said',
  'late',
  'sent',
  'link',
  'date',
  'locat',
  'event',
  'sigh',
  'said',
  'noth',
  'mom',
  'arriv',
  'like',
  '-',
  'minut',
  'later',
  'sat',
  'next',
  'kept',
  'pull',
  'close',
  'whisper',
  'ear',
  'roll',
  'eye',
  'hard',
  'play',
  'got',
  'chanc',
  'see',
  'daughter',
  'look',
  'nervou',
  'shake',
  '-',
  'mother',
  'law',
  'look',
  'said',
  'let',
  'say',
  'today',
  'perform',
  'disappoint',
  'daughter',
  'shock',
  'floor',
  'complet',
  'daughter',
  'start',
  'cri',
  'rush',
  'away',
  'mother',
  'law',
  'casual',
  'said',
  'oh',
  'go',
  'appoint',
  'salon',
  'chloe',
  'granddaught',
  'birthday',
  'parti',
  'fume',
  'told',
  'said',
  'daughter',
  'okay',
  'made',
  'upset',
  'said',
  'someth',
  'along',
  'line',
  'tell',
  'left',
  'went',
  'home',
  'lost',
  'husband',
  'tell',
  'mom',
  'keep',
  'put',
  'daughter',
  'right',
  'said',
  'im',
  'overdramat',
  'mom',
  'construct',
  'critic',
  'told',
  'need',
  'stop',
  'invit',
  'daughter',
  'perform',
  'said',
  'ridicul',
  'expect',
  'mom',
  'exclud',
  'granddaught',
  'life',
  'like',
  'big',
  'argument',
  'daughter',
  'even',
  'interest',
  'play',
  'anymor',
  'husband',
  'said',
  'way',
  'line',
  'use',
  'daughter',
  'fight',
  'mom',
  'also',
  'call',
  'control',
  'viciou',
  'aita',
  'eta',
  '[',
  'sinc',
  'took',
  'peopl',
  'ask',
  'question',
  'id',
  'like',
  'add',
  'context',
  'bulletpoint',
  'form',
  ']',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'talk',
  'due',
  'past',
  'disagr',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'uncomfort',
  'concept',
  'play',
  'piano',
  'think',
  'daughter',
  'wast',
  'time',
  'get',
  'distract',
  'zero',
  'benefit',
  'sinc',
  'husband',
  'want',
  'becom',
  'doctor',
  'daughter',
  'wan',
  'na',
  'doctor',
  'argument',
  'anoth',
  'time',
  '*',
  '[',
  ']',
  'mother',
  'law',
  'think',
  'im',
  'wast',
  'husband',
  'money',
  'enrol',
  'daughter',
  'piano',
  'class',
  'sinc',
  '*',
  '[',
  ']',
  'husband',
  'told',
  'hell',
  'keep',
  'invit',
  'mom',
  'til',
  'learn',
  'stop',
  'use',
  'daughter',
  'tool',
  'fight',
  'mom',
  'believ',
  'im',
  'situat_prettyfruatr',
  'prettyfruatr_say',
  'say_least',
  'least_let',
  'let_start',
  'start_context',
  'context_husband',
  'husband_yearold',
  'yearold_daughter',
  'daughter_play',
  'play_piano',
  'piano_particip',
  'particip_sever',
  'sever_play',
  'play_outsid',
  'outsid_school',
  'school_thing',
  'thing_husband',
  'husband_invit',
  'invit_mom',
  'mom_everi',
  'everi_perform',
  'perform_daughter',
  'daughter_say',
  'say_-',
  '-_mani',
  'mani_time',
  'time_shed',
  'shed_put',
  'put_daughter',
  'daughter_point',
  'point_mess',
  'mess_need',
  'need_work',
  'work_hello',
  'hello_even',
  'even_expert',
  'expert_happen',
  'happen_everi',
  'everi_time',
  'time_daughter',
  'daughter_pick',
  'pick_neg',
  'neg_comment',
  'comment_self',
  'self_esteem',
  'esteem_kept',
  'kept_get',
  'get_low',
  'low_extens',
  'extens_perform',
  'perform_kept',
  'kept_get',
  'get_low',
  'low_well',
  'well_told',
  'told_husband',
  'husband_mom',
  'mom_need',
  'need_either',
  'either_stop',
  'stop_put',
  'put_daughter',
  'daughter_stop',
  'stop_come',
  'come_play',
  'play_said',
  'said_mom',
  'mom_grandmoth',
  'grandmoth_includ',
  'includ_event',
  'event_support',
  'support_daughter',
  'daughter_perform',
  'perform_past',
  'past_wednesday',
  'wednesday_told',
  'told_husband',
  'husband_mom',
  'mom_sit',
  'sit_one',
  'one_said',
  'said_late',
  'late_sent',
  'sent_link',
  'link_date',
  'date_locat',
  'locat_event',
  'event_sigh',
  'sigh_said',
  'said_noth',
  'noth_mom',
  'mom_arriv',
  'arriv_like',
  'like_-',
  '-_minut',
  'minut_later',
  'later_sat',
  'sat_next',
  'next_kept',
  'kept_pull',
  'pull_close',
  'close_whisper',
  'whisper_ear',
  'ear_roll',
  'roll_eye',
  'eye_hard',
  'hard_play',
  'play_got',
  'got_chanc',
  'chanc_see',
  'see_daughter',
  'daughter_look',
  'look_nervou',
  'nervou_shake',
  'shake_-',
  '-_mother',
  'mother_law',
  'law_look',
  'look_said',
  'said_let',
  'let_say',
  'say_today',
  'today_perform',
  'perform_disappoint',
  'disappoint_daughter',
  'daughter_shock',
  'shock_floor',
  'floor_complet',
  'complet_daughter',
  'daughter_start',
  'start_cri',
  'cri_rush',
  'rush_away',
  'away_mother',
  'mother_law',
  'law_casual',
  'casual_said',
  'said_oh',
  'oh_go',
  'go_appoint',
  'appoint_salon',
  'salon_chloe',
  'chloe_granddaught',
  'granddaught_birthday',
  'birthday_parti',
  'parti_fume',
  'fume_told',
  'told_said',
  'said_daughter',
  'daughter_okay',
  'okay_made',
  'made_upset',
  'upset_said',
  'said_someth',
  'someth_along',
  'along_line',
  'line_tell',
  'tell_left',
  'left_went',
  'went_home',
  'home_lost',
  'lost_husband',
  'husband_tell',
  'tell_mom',
  'mom_keep',
  'keep_put',
  'put_daughter',
  'daughter_right',
  'right_said',
  'said_im',
  'im_overdramat',
  'overdramat_mom',
  'mom_construct',
  'construct_critic',
  'critic_told',
  'told_need',
  'need_stop',
  'stop_invit',
  'invit_daughter',
  'daughter_perform',
  'perform_said',
  'said_ridicul',
  'ridicul_expect',
  'expect_mom',
  'mom_exclud',
  'exclud_granddaught',
  'granddaught_life',
  'life_like',
  'like_big',
  'big_argument',
  'argument_daughter',
  'daughter_even',
  'even_interest',
  'interest_play',
  'play_anymor',
  'anymor_husband',
  'husband_said',
  'said_way',
  'way_line',
  'line_use',
  'use_daughter',
  'daughter_fight',
  'fight_mom',
  'mom_also',
  'also_call',
  'call_control',
  'control_viciou',
  'viciou_aita',
  'aita_eta',
  'eta_[',
  '[_sinc',
  'sinc_took',
  'took_peopl',
  'peopl_ask',
  'ask_question',
  'question_id',
  'id_like',
  'like_add',
  'add_context',
  'context_bulletpoint',
  'bulletpoint_form',
  'form_]',
  ']_*',
  '*_[',
  '[_]',
  ']_mother',
  'mother_law',
  'law_talk',
  'talk_due',
  'due_past',
  'past_disagr',
  'disagr_*',
  '*_[',
  '[_]',
  ']_mother',
  'mother_law',
  'law_uncomfort',
  'uncomfort_concept',
  'concept_play',
  'play_piano',
  'piano_think',
  'think_daughter',
  'daughter_wast',
  'wast_time',
  'time_get',
  'get_distract',
  'distract_zero',
  'zero_benefit',
  'benefit_sinc',
  'sinc_husband',
  'husband_want',
  'want_becom',
  'becom_doctor',
  'doctor_daughter',
  'daughter_wan',
  'wan_na',
  'na_doctor',
  'doctor_argument',
  'argument_anoth',
  'anoth_time',
  'time_*',
  '*_[',
  '[_]',
  ']_mother',
  'mother_law',
  'law_think',
  'think_im',
  'im_wast',
  'wast_husband',
  'husband_money',
  'money_enrol',
  'enrol_daughter',
  'daughter_piano',
  'piano_class',
  'class_sinc',
  'sinc_*',
  '*_[',
  '[_]',
  ']_husband',
  'husband_told',
  'told_hell',
  'hell_keep',
  'keep_invit',
  'invit_mom',
  'mom_til',
  'til_learn',
  'learn_stop',
  'stop_use',
  'use_daughter',
  'daughter_tool',
  'tool_fight',
  'fight_mom',
  'mom_believ',
  'believ_im',
  'situat_prettyfruatr_say',
  'prettyfruatr_say_least',
  'say_least_let',
  'least_let_start',
  'let_start_context',
  'start_context_husband',
  'context_husband_yearold',
  'husband_yearold_daughter',
  'yearold_daughter_play',
  'daughter_play_piano',
  'play_piano_particip',
  'piano_particip_sever',
  'particip_sever_play',
  'sever_play_outsid',
  'play_outsid_school',
  'outsid_school_thing',
  'school_thing_husband',
  'thing_husband_invit',
  'husband_invit_mom',
  'invit_mom_everi',
  'mom_everi_perform',
  'everi_perform_daughter',
  'perform_daughter_say',
  'daughter_say_-',
  'say_-_mani',
  '-_mani_time',
  'mani_time_shed',
  'time_shed_put',
  'shed_put_daughter',
  'put_daughter_point',
  'daughter_point_mess',
  'point_mess_need',
  'mess_need_work',
  'need_work_hello',
  'work_hello_even',
  'hello_even_expert',
  'even_expert_happen',
  'expert_happen_everi',
  'happen_everi_time',
  'everi_time_daughter',
  'time_daughter_pick',
  'daughter_pick_neg',
  'pick_neg_comment',
  'neg_comment_self',
  'comment_self_esteem',
  'self_esteem_kept',
  'esteem_kept_get',
  'kept_get_low',
  'get_low_extens',
  'low_extens_perform',
  'extens_perform_kept',
  'perform_kept_get',
  'kept_get_low',
  'get_low_well',
  'low_well_told',
  'well_told_husband',
  'told_husband_mom',
  'husband_mom_need',
  'mom_need_either',
  'need_either_stop',
  'either_stop_put',
  'stop_put_daughter',
  'put_daughter_stop',
  'daughter_stop_come',
  'stop_come_play',
  'come_play_said',
  'play_said_mom',
  'said_mom_grandmoth',
  'mom_grandmoth_includ',
  'grandmoth_includ_event',
  'includ_event_support',
  'event_support_daughter',
  'support_daughter_perform',
  'daughter_perform_past',
  'perform_past_wednesday',
  'past_wednesday_told',
  'wednesday_told_husband',
  'told_husband_mom',
  'husband_mom_sit',
  'mom_sit_one',
  'sit_one_said',
  'one_said_late',
  'said_late_sent',
  'late_sent_link',
  'sent_link_date',
  'link_date_locat',
  'date_locat_event',
  'locat_event_sigh',
  'event_sigh_said',
  'sigh_said_noth',
  'said_noth_mom',
  'noth_mom_arriv',
  'mom_arriv_like',
  'arriv_like_-',
  'like_-_minut',
  '-_minut_later',
  'minut_later_sat',
  'later_sat_next',
  'sat_next_kept',
  'next_kept_pull',
  'kept_pull_close',
  'pull_close_whisper',
  'close_whisper_ear',
  'whisper_ear_roll',
  'ear_roll_eye',
  'roll_eye_hard',
  'eye_hard_play',
  'hard_play_got',
  'play_got_chanc',
  'got_chanc_see',
  'chanc_see_daughter',
  'see_daughter_look',
  'daughter_look_nervou',
  'look_nervou_shake',
  'nervou_shake_-',
  'shake_-_mother',
  '-_mother_law',
  'mother_law_look',
  'law_look_said',
  'look_said_let',
  'said_let_say',
  'let_say_today',
  'say_today_perform',
  'today_perform_disappoint',
  'perform_disappoint_daughter',
  'disappoint_daughter_shock',
  'daughter_shock_floor',
  'shock_floor_complet',
  'floor_complet_daughter',
  'complet_daughter_start',
  'daughter_start_cri',
  'start_cri_rush',
  'cri_rush_away',
  'rush_away_mother',
  'away_mother_law',
  'mother_law_casual',
  'law_casual_said',
  'casual_said_oh',
  'said_oh_go',
  'oh_go_appoint',
  'go_appoint_salon',
  'appoint_salon_chloe',
  'salon_chloe_granddaught',
  'chloe_granddaught_birthday',
  'granddaught_birthday_parti',
  'birthday_parti_fume',
  'parti_fume_told',
  'fume_told_said',
  'told_said_daughter',
  'said_daughter_okay',
  'daughter_okay_made',
  'okay_made_upset',
  'made_upset_said',
  'upset_said_someth',
  'said_someth_along',
  'someth_along_line',
  'along_line_tell',
  'line_tell_left',
  'tell_left_went',
  'left_went_home',
  'went_home_lost',
  'home_lost_husband',
  'lost_husband_tell',
  'husband_tell_mom',
  'tell_mom_keep',
  'mom_keep_put',
  'keep_put_daughter',
  'put_daughter_right',
  'daughter_right_said',
  'right_said_im',
  'said_im_overdramat',
  'im_overdramat_mom',
  'overdramat_mom_construct',
  'mom_construct_critic',
  'construct_critic_told',
  'critic_told_need',
  'told_need_stop',
  'need_stop_invit',
  'stop_invit_daughter',
  'invit_daughter_perform',
  'daughter_perform_said',
  'perform_said_ridicul',
  'said_ridicul_expect',
  'ridicul_expect_mom',
  'expect_mom_exclud',
  'mom_exclud_granddaught',
  'exclud_granddaught_life',
  'granddaught_life_like',
  'life_like_big',
  'like_big_argument',
  'big_argument_daughter',
  'argument_daughter_even',
  'daughter_even_interest',
  'even_interest_play',
  'interest_play_anymor',
  'play_anymor_husband',
  'anymor_husband_said',
  'husband_said_way',
  'said_way_line',
  'way_line_use',
  'line_use_daughter',
  'use_daughter_fight',
  'daughter_fight_mom',
  'fight_mom_also',
  'mom_also_call',
  'also_call_control',
  'call_control_viciou',
  'control_viciou_aita',
  'viciou_aita_eta',
  'aita_eta_[',
  'eta_[_sinc',
  '[_sinc_took',
  'sinc_took_peopl',
  'took_peopl_ask',
  'peopl_ask_question',
  'ask_question_id',
  'question_id_like',
  'id_like_add',
  'like_add_context',
  'add_context_bulletpoint',
  'context_bulletpoint_form',
  'bulletpoint_form_]',
  'form_]_*',
  ']_*_[',
  '*_[_]',
  '[_]_mother',
  ']_mother_law',
  'mother_law_talk',
  'law_talk_due',
  'talk_due_past',
  'due_past_disagr',
  'past_disagr_*',
  'disagr_*_[',
  '*_[_]',
  '[_]_mother',
  ']_mother_law',
  'mother_law_uncomfort',
  'law_uncomfort_concept',
  'uncomfort_concept_play',
  'concept_play_piano',
  'play_piano_think',
  'piano_think_daughter',
  'think_daughter_wast',
  'daughter_wast_time',
  'wast_time_get',
  'time_get_distract',
  'get_distract_zero',
  'distract_zero_benefit',
  'zero_benefit_sinc',
  'benefit_sinc_husband',
  'sinc_husband_want',
  'husband_want_becom',
  'want_becom_doctor',
  'becom_doctor_daughter',
  'doctor_daughter_wan',
  'daughter_wan_na',
  'wan_na_doctor',
  'na_doctor_argument',
  'doctor_argument_anoth',
  'argument_anoth_time',
  'anoth_time_*',
  'time_*_[',
  '*_[_]',
  '[_]_mother',
  ']_mother_law',
  'mother_law_think',
  'law_think_im',
  'think_im_wast',
  'im_wast_husband',
  'wast_husband_money',
  'husband_money_enrol',
  'money_enrol_daughter',
  'enrol_daughter_piano',
  'daughter_piano_class',
  'piano_class_sinc',
  'class_sinc_*',
  'sinc_*_[',
  '*_[_]',
  '[_]_husband',
  ']_husband_told',
  'husband_told_hell',
  'told_hell_keep',
  'hell_keep_invit',
  'keep_invit_mom',
  'invit_mom_til',
  'mom_til_learn',
  'til_learn_stop',
  'learn_stop_use',
  'stop_use_daughter',
  'use_daughter_tool',
  'daughter_tool_fight',
  'tool_fight_mom',
  'fight_mom_believ',
  'mom_believ_im'],
 ['im',
  'prefac',
  'say',
  'daughter',
  'sandi',
  'incred',
  'sensit',
  'person',
  'love',
  'help',
  'peopl',
  'come',
  'well',
  'background',
  'compar',
  'friend',
  'past',
  'month',
  'chariti',
  'work',
  'cut',
  'hair',
  'donat',
  'cancer',
  'patient',
  'pawn',
  'thing',
  'sold',
  'expens',
  'clothessho',
  'andor',
  'gave',
  'away',
  'help',
  'friend',
  'famili',
  'wear',
  'thrift',
  'shop',
  'cloth',
  'someth',
  'wife',
  'happi',
  'think',
  'sandi',
  'wasi',
  'paint',
  'bad',
  'pictur',
  'us',
  'neglect',
  'parent',
  'give',
  'fals',
  'impress',
  'peopl',
  'poor',
  'fact',
  'well',
  'financi',
  'admit',
  'wife',
  'appear',
  'recent',
  'start',
  'notic',
  'exclud',
  'sandi',
  'eventsgath',
  'dress',
  'talk',
  'said',
  'head',
  'last',
  'week',
  'wife',
  'birthday',
  'celebr',
  'restaur',
  'ask',
  'wife',
  'get',
  'sandi',
  'meet',
  'although',
  'first',
  'hint',
  'sandi',
  'refus',
  'dress',
  'properli',
  'bring',
  'told',
  'bring',
  'wed',
  'issu',
  'parti',
  'would',
  'call',
  'wait',
  'saw',
  'wife',
  'walk',
  'restaur',
  'mad',
  'im',
  'gon',
  'na',
  'lie',
  'ask',
  'sandi',
  'told',
  'feel',
  'like',
  'come',
  'even',
  'though',
  'talk',
  'excit',
  'parti',
  'gut',
  'feel',
  'wife',
  'lie',
  'text',
  'sandi',
  'sure',
  'enough',
  'wife',
  'gave',
  'ultimatuim',
  'say',
  'either',
  'wear',
  'someth',
  'match',
  'class',
  'allow',
  'come',
  'birthday',
  'friend',
  'famili',
  'gather',
  'went',
  'call',
  'sandi',
  'outsid',
  'cri',
  'furiou',
  'walk',
  'insid',
  'restaur',
  'pick',
  'argument',
  'wife',
  'told',
  'famili',
  'friend',
  'exactli',
  'sandi',
  'wife',
  'look',
  'shock',
  'start',
  'argu',
  'end',
  'call',
  'entir',
  'event',
  'everyon',
  'els',
  'leav',
  'earli',
  'wife',
  'liter',
  'start',
  'yell',
  'restaur',
  'took',
  'stuff',
  'went',
  'home',
  'got',
  'back',
  'kept',
  'yell',
  'ruin',
  'birthday',
  'make',
  'scene',
  'humili',
  'infront',
  'friend',
  'famili',
  'said',
  'sandi',
  'act',
  'stubborn',
  'told',
  'act',
  'unreason',
  'exclud',
  'like',
  'sandi',
  'cri',
  'felt',
  'like',
  'big',
  'look',
  'despit',
  'wife',
  'say',
  'bug',
  'deal',
  'ruin',
  'birthday',
  'reason',
  'went',
  'stay',
  'famili',
  'even',
  'repli',
  'text',
  'read',
  'respond',
  'probabl',
  'expect',
  'apolog',
  'happen',
  'aita',
  'go',
  'far',
  'im_prefac',
  'prefac_say',
  'say_daughter',
  'daughter_sandi',
  'sandi_incred',
  'incred_sensit',
  'sensit_person',
  'person_love',
  'love_help',
  'help_peopl',
  'peopl_come',
  'come_well',
  'well_background',
  'background_compar',
  'compar_friend',
  'friend_past',
  'past_month',
  'month_chariti',
  'chariti_work',
  'work_cut',
  'cut_hair',
  'hair_donat',
  'donat_cancer',
  'cancer_patient',
  'patient_pawn',
  'pawn_thing',
  'thing_sold',
  'sold_expens',
  'expens_clothessho',
  'clothessho_andor',
  'andor_gave',
  'gave_away',
  'away_help',
  'help_friend',
  'friend_famili',
  'famili_wear',
  'wear_thrift',
  'thrift_shop',
  'shop_cloth',
  'cloth_someth',
  'someth_wife',
  'wife_happi',
  'happi_think',
  'think_sandi',
  'sandi_wasi',
  'wasi_paint',
  'paint_bad',
  'bad_pictur',
  'pictur_us',
  'us_neglect',
  'neglect_parent',
  'parent_give',
  'give_fals',
  'fals_impress',
  'impress_peopl',
  'peopl_poor',
  'poor_fact',
  'fact_well',
  'well_financi',
  'financi_admit',
  'admit_wife',
  'wife_appear',
  'appear_recent',
  'recent_start',
  'start_notic',
  'notic_exclud',
  'exclud_sandi',
  'sandi_eventsgath',
  'eventsgath_dress',
  'dress_talk',
  'talk_said',
  'said_head',
  'head_last',
  'last_week',
  'week_wife',
  'wife_birthday',
  'birthday_celebr',
  'celebr_restaur',
  'restaur_ask',
  'ask_wife',
  'wife_get',
  'get_sandi',
  'sandi_meet',
  'meet_although',
  'although_first',
  'first_hint',
  'hint_sandi',
  'sandi_refus',
  'refus_dress',
  'dress_properli',
  'properli_bring',
  'bring_told',
  'told_bring',
  'bring_wed',
  'wed_issu',
  'issu_parti',
  'parti_would',
  'would_call',
  'call_wait',
  'wait_saw',
  'saw_wife',
  'wife_walk',
  'walk_restaur',
  'restaur_mad',
  'mad_im',
  'im_gon',
  'gon_na',
  'na_lie',
  'lie_ask',
  'ask_sandi',
  'sandi_told',
  'told_feel',
  'feel_like',
  'like_come',
  'come_even',
  'even_though',
  'though_talk',
  'talk_excit',
  'excit_parti',
  'parti_gut',
  'gut_feel',
  'feel_wife',
  'wife_lie',
  'lie_text',
  'text_sandi',
  'sandi_sure',
  'sure_enough',
  'enough_wife',
  'wife_gave',
  'gave_ultimatuim',
  'ultimatuim_say',
  'say_either',
  'either_wear',
  'wear_someth',
  'someth_match',
  'match_class',
  'class_allow',
  'allow_come',
  'come_birthday',
  'birthday_friend',
  'friend_famili',
  'famili_gather',
  'gather_went',
  'went_call',
  'call_sandi',
  'sandi_outsid',
  'outsid_cri',
  'cri_furiou',
  'furiou_walk',
  'walk_insid',
  'insid_restaur',
  'restaur_pick',
  'pick_argument',
  'argument_wife',
  'wife_told',
  'told_famili',
  'famili_friend',
  'friend_exactli',
  'exactli_sandi',
  'sandi_wife',
  'wife_look',
  'look_shock',
  'shock_start',
  'start_argu',
  'argu_end',
  'end_call',
  'call_entir',
  'entir_event',
  'event_everyon',
  'everyon_els',
  'els_leav',
  'leav_earli',
  'earli_wife',
  'wife_liter',
  'liter_start',
  'start_yell',
  'yell_restaur',
  'restaur_took',
  'took_stuff',
  'stuff_went',
  'went_home',
  'home_got',
  'got_back',
  'back_kept',
  'kept_yell',
  'yell_ruin',
  'ruin_birthday',
  'birthday_make',
  'make_scene',
  'scene_humili',
  'humili_infront',
  'infront_friend',
  'friend_famili',
  'famili_said',
  'said_sandi',
  'sandi_act',
  'act_stubborn',
  'stubborn_told',
  'told_act',
  'act_unreason',
  'unreason_exclud',
  'exclud_like',
  'like_sandi',
  'sandi_cri',
  'cri_felt',
  'felt_like',
  'like_big',
  'big_look',
  'look_despit',
  'despit_wife',
  'wife_say',
  'say_bug',
  'bug_deal',
  'deal_ruin',
  'ruin_birthday',
  'birthday_reason',
  'reason_went',
  'went_stay',
  'stay_famili',
  'famili_even',
  'even_repli',
  'repli_text',
  'text_read',
  'read_respond',
  'respond_probabl',
  'probabl_expect',
  'expect_apolog',
  'apolog_happen',
  'happen_aita',
  'aita_go',
  'go_far',
  'im_prefac_say',
  'prefac_say_daughter',
  'say_daughter_sandi',
  'daughter_sandi_incred',
  'sandi_incred_sensit',
  'incred_sensit_person',
  'sensit_person_love',
  'person_love_help',
  'love_help_peopl',
  'help_peopl_come',
  'peopl_come_well',
  'come_well_background',
  'well_background_compar',
  'background_compar_friend',
  'compar_friend_past',
  'friend_past_month',
  'past_month_chariti',
  'month_chariti_work',
  'chariti_work_cut',
  'work_cut_hair',
  'cut_hair_donat',
  'hair_donat_cancer',
  'donat_cancer_patient',
  'cancer_patient_pawn',
  'patient_pawn_thing',
  'pawn_thing_sold',
  'thing_sold_expens',
  'sold_expens_clothessho',
  'expens_clothessho_andor',
  'clothessho_andor_gave',
  'andor_gave_away',
  'gave_away_help',
  'away_help_friend',
  'help_friend_famili',
  'friend_famili_wear',
  'famili_wear_thrift',
  'wear_thrift_shop',
  'thrift_shop_cloth',
  'shop_cloth_someth',
  'cloth_someth_wife',
  'someth_wife_happi',
  'wife_happi_think',
  'happi_think_sandi',
  'think_sandi_wasi',
  'sandi_wasi_paint',
  'wasi_paint_bad',
  'paint_bad_pictur',
  'bad_pictur_us',
  'pictur_us_neglect',
  'us_neglect_parent',
  'neglect_parent_give',
  'parent_give_fals',
  'give_fals_impress',
  'fals_impress_peopl',
  'impress_peopl_poor',
  'peopl_poor_fact',
  'poor_fact_well',
  'fact_well_financi',
  'well_financi_admit',
  'financi_admit_wife',
  'admit_wife_appear',
  'wife_appear_recent',
  'appear_recent_start',
  'recent_start_notic',
  'start_notic_exclud',
  'notic_exclud_sandi',
  'exclud_sandi_eventsgath',
  'sandi_eventsgath_dress',
  'eventsgath_dress_talk',
  'dress_talk_said',
  'talk_said_head',
  'said_head_last',
  'head_last_week',
  'last_week_wife',
  'week_wife_birthday',
  'wife_birthday_celebr',
  'birthday_celebr_restaur',
  'celebr_restaur_ask',
  'restaur_ask_wife',
  'ask_wife_get',
  'wife_get_sandi',
  'get_sandi_meet',
  'sandi_meet_although',
  'meet_although_first',
  'although_first_hint',
  'first_hint_sandi',
  'hint_sandi_refus',
  'sandi_refus_dress',
  'refus_dress_properli',
  'dress_properli_bring',
  'properli_bring_told',
  'bring_told_bring',
  'told_bring_wed',
  'bring_wed_issu',
  'wed_issu_parti',
  'issu_parti_would',
  'parti_would_call',
  'would_call_wait',
  'call_wait_saw',
  'wait_saw_wife',
  'saw_wife_walk',
  'wife_walk_restaur',
  'walk_restaur_mad',
  'restaur_mad_im',
  'mad_im_gon',
  'im_gon_na',
  'gon_na_lie',
  'na_lie_ask',
  'lie_ask_sandi',
  'ask_sandi_told',
  'sandi_told_feel',
  'told_feel_like',
  'feel_like_come',
  'like_come_even',
  'come_even_though',
  'even_though_talk',
  'though_talk_excit',
  'talk_excit_parti',
  'excit_parti_gut',
  'parti_gut_feel',
  'gut_feel_wife',
  'feel_wife_lie',
  'wife_lie_text',
  'lie_text_sandi',
  'text_sandi_sure',
  'sandi_sure_enough',
  'sure_enough_wife',
  'enough_wife_gave',
  'wife_gave_ultimatuim',
  'gave_ultimatuim_say',
  'ultimatuim_say_either',
  'say_either_wear',
  'either_wear_someth',
  'wear_someth_match',
  'someth_match_class',
  'match_class_allow',
  'class_allow_come',
  'allow_come_birthday',
  'come_birthday_friend',
  'birthday_friend_famili',
  'friend_famili_gather',
  'famili_gather_went',
  'gather_went_call',
  'went_call_sandi',
  'call_sandi_outsid',
  'sandi_outsid_cri',
  'outsid_cri_furiou',
  'cri_furiou_walk',
  'furiou_walk_insid',
  'walk_insid_restaur',
  'insid_restaur_pick',
  'restaur_pick_argument',
  'pick_argument_wife',
  'argument_wife_told',
  'wife_told_famili',
  'told_famili_friend',
  'famili_friend_exactli',
  'friend_exactli_sandi',
  'exactli_sandi_wife',
  'sandi_wife_look',
  'wife_look_shock',
  'look_shock_start',
  'shock_start_argu',
  'start_argu_end',
  'argu_end_call',
  'end_call_entir',
  'call_entir_event',
  'entir_event_everyon',
  'event_everyon_els',
  'everyon_els_leav',
  'els_leav_earli',
  'leav_earli_wife',
  'earli_wife_liter',
  'wife_liter_start',
  'liter_start_yell',
  'start_yell_restaur',
  'yell_restaur_took',
  'restaur_took_stuff',
  'took_stuff_went',
  'stuff_went_home',
  'went_home_got',
  'home_got_back',
  'got_back_kept',
  'back_kept_yell',
  'kept_yell_ruin',
  'yell_ruin_birthday',
  'ruin_birthday_make',
  'birthday_make_scene',
  'make_scene_humili',
  'scene_humili_infront',
  'humili_infront_friend',
  'infront_friend_famili',
  'friend_famili_said',
  'famili_said_sandi',
  'said_sandi_act',
  'sandi_act_stubborn',
  'act_stubborn_told',
  'stubborn_told_act',
  'told_act_unreason',
  'act_unreason_exclud',
  'unreason_exclud_like',
  'exclud_like_sandi',
  'like_sandi_cri',
  'sandi_cri_felt',
  'cri_felt_like',
  'felt_like_big',
  'like_big_look',
  'big_look_despit',
  'look_despit_wife',
  'despit_wife_say',
  'wife_say_bug',
  'say_bug_deal',
  'bug_deal_ruin',
  'deal_ruin_birthday',
  'ruin_birthday_reason',
  'birthday_reason_went',
  'reason_went_stay',
  'went_stay_famili',
  'stay_famili_even',
  'famili_even_repli',
  'even_repli_text',
  'repli_text_read',
  'text_read_respond',
  'read_respond_probabl',
  'respond_probabl_expect',
  'probabl_expect_apolog',
  'expect_apolog_happen',
  'apolog_happen_aita',
  'happen_aita_go',
  'aita_go_far'],
 ['[',
  'fianc',
  '[',
  'got',
  'engag',
  'month',
  'ago',
  'hous',
  'current',
  'live',
  'move',
  'start',
  'help',
  'mortgag',
  'payment',
  'daughter',
  '[',
  'rubi',
  'ador',
  'anim',
  'pet',
  'far',
  'life',
  'unfortun',
  'dog',
  'tic',
  'pass',
  'away',
  'closest',
  'friend',
  'favorit',
  'pet',
  'devast',
  'well',
  'preciou',
  'way',
  'honor',
  'ive',
  'print',
  'middl',
  'size',
  'pictur',
  'rubi',
  'favorit',
  'put',
  'frame',
  'hang',
  'frame',
  'live',
  'room',
  'wall',
  'rubi',
  'happi',
  'especi',
  'sinc',
  'get',
  'see',
  'smile',
  'walk',
  'give',
  'comfort',
  'fianc',
  'saw',
  'got',
  'upset',
  'comment',
  'strang',
  'dog',
  'pictur',
  'wall',
  'much',
  'distract',
  'bring',
  'felt',
  'puzzl',
  'kind',
  'pictur',
  'hang',
  'wall',
  'suggest',
  'remov',
  'ignor',
  'one',
  'day',
  'got',
  'home',
  'saw',
  'taken',
  'rubi',
  'room',
  'cri',
  'hold',
  'pictur',
  'ask',
  'happen',
  'told',
  'fianc',
  'took',
  'pictur',
  'told',
  'allow',
  'hung',
  'also',
  'told',
  'keep',
  'room',
  'want',
  'lose',
  'good',
  'shock',
  'rush',
  'immedi',
  'start',
  'take',
  'certif',
  'wall',
  'doctor',
  'master',
  'bachelor',
  'degre',
  '-',
  'certif',
  'well',
  'took',
  'put',
  'bedroom',
  'discov',
  'snap',
  'said',
  'hous',
  'well',
  'respect',
  'input',
  'defens',
  'told',
  'sinc',
  'daughter',
  'keep',
  'room',
  'keep',
  'certif',
  'room',
  'accord',
  'logich',
  'yell',
  'demand',
  'stop',
  'nag',
  'act',
  'childishli',
  'spite',
  'want',
  'put',
  'back',
  'refus',
  'said',
  'tic',
  'pictur',
  'put',
  'back',
  'well',
  'yell',
  'disrespect',
  'achiev',
  'treat',
  'trash',
  'storm',
  'give',
  'rubi',
  'cold',
  'shoulder',
  'day',
  'say',
  'speak',
  'neither',
  'us',
  'til',
  'apolog',
  'put',
  'certif',
  'back',
  'wall',
  '[_fianc',
  'fianc_[',
  '[_got',
  'got_engag',
  'engag_month',
  'month_ago',
  'ago_hous',
  'hous_current',
  'current_live',
  'live_move',
  'move_start',
  'start_help',
  'help_mortgag',
  'mortgag_payment',
  'payment_daughter',
  'daughter_[',
  '[_rubi',
  'rubi_ador',
  'ador_anim',
  'anim_pet',
  'pet_far',
  'far_life',
  'life_unfortun',
  'unfortun_dog',
  'dog_tic',
  'tic_pass',
  'pass_away',
  'away_closest',
  'closest_friend',
  'friend_favorit',
  'favorit_pet',
  'pet_devast',
  'devast_well',
  'well_preciou',
  'preciou_way',
  'way_honor',
  'honor_ive',
  'ive_print',
  'print_middl',
  'middl_size',
  'size_pictur',
  'pictur_rubi',
  'rubi_favorit',
  'favorit_put',
  'put_frame',
  'frame_hang',
  'hang_frame',
  'frame_live',
  'live_room',
  'room_wall',
  'wall_rubi',
  'rubi_happi',
  'happi_especi',
  'especi_sinc',
  'sinc_get',
  'get_see',
  'see_smile',
  'smile_walk',
  'walk_give',
  'give_comfort',
  'comfort_fianc',
  'fianc_saw',
  'saw_got',
  'got_upset',
  'upset_comment',
  'comment_strang',
  'strang_dog',
  'dog_pictur',
  'pictur_wall',
  'wall_much',
  'much_distract',
  'distract_bring',
  'bring_felt',
  'felt_puzzl',
  'puzzl_kind',
  'kind_pictur',
  'pictur_hang',
  'hang_wall',
  'wall_suggest',
  'suggest_remov',
  'remov_ignor',
  'ignor_one',
  'one_day',
  'day_got',
  'got_home',
  'home_saw',
  'saw_taken',
  'taken_rubi',
  'rubi_room',
  'room_cri',
  'cri_hold',
  'hold_pictur',
  'pictur_ask',
  'ask_happen',
  'happen_told',
  'told_fianc',
  'fianc_took',
  'took_pictur',
  'pictur_told',
  'told_allow',
  'allow_hung',
  'hung_also',
  'also_told',
  'told_keep',
  'keep_room',
  'room_want',
  'want_lose',
  'lose_good',
  'good_shock',
  'shock_rush',
  'rush_immedi',
  'immedi_start',
  'start_take',
  'take_certif',
  'certif_wall',
  'wall_doctor',
  'doctor_master',
  'master_bachelor',
  'bachelor_degre',
  'degre_-',
  '-_certif',
  'certif_well',
  'well_took',
  'took_put',
  'put_bedroom',
  'bedroom_discov',
  'discov_snap',
  'snap_said',
  'said_hous',
  'hous_well',
  'well_respect',
  'respect_input',
  'input_defens',
  'defens_told',
  'told_sinc',
  'sinc_daughter',
  'daughter_keep',
  'keep_room',
  'room_keep',
  'keep_certif',
  'certif_room',
  'room_accord',
  'accord_logich',
  'logich_yell',
  'yell_demand',
  'demand_stop',
  'stop_nag',
  'nag_act',
  'act_childishli',
  'childishli_spite',
  'spite_want',
  'want_put',
  'put_back',
  'back_refus',
  'refus_said',
  'said_tic',
  'tic_pictur',
  'pictur_put',
  'put_back',
  'back_well',
  'well_yell',
  'yell_disrespect',
  'disrespect_achiev',
  'achiev_treat',
  'treat_trash',
  'trash_storm',
  'storm_give',
  'give_rubi',
  'rubi_cold',
  'cold_shoulder',
  'shoulder_day',
  'day_say',
  'say_speak',
  'speak_neither',
  'neither_us',
  'us_til',
  'til_apolog',
  'apolog_put',
  'put_certif',
  'certif_back',
  'back_wall',
  '[_fianc_[',
  'fianc_[_got',
  '[_got_engag',
  'got_engag_month',
  'engag_month_ago',
  'month_ago_hous',
  'ago_hous_current',
  'hous_current_live',
  'current_live_move',
  'live_move_start',
  'move_start_help',
  'start_help_mortgag',
  'help_mortgag_payment',
  'mortgag_payment_daughter',
  'payment_daughter_[',
  'daughter_[_rubi',
  '[_rubi_ador',
  'rubi_ador_anim',
  'ador_anim_pet',
  'anim_pet_far',
  'pet_far_life',
  'far_life_unfortun',
  'life_unfortun_dog',
  'unfortun_dog_tic',
  'dog_tic_pass',
  'tic_pass_away',
  'pass_away_closest',
  'away_closest_friend',
  'closest_friend_favorit',
  'friend_favorit_pet',
  'favorit_pet_devast',
  'pet_devast_well',
  'devast_well_preciou',
  'well_preciou_way',
  'preciou_way_honor',
  'way_honor_ive',
  'honor_ive_print',
  'ive_print_middl',
  'print_middl_size',
  'middl_size_pictur',
  'size_pictur_rubi',
  'pictur_rubi_favorit',
  'rubi_favorit_put',
  'favorit_put_frame',
  'put_frame_hang',
  'frame_hang_frame',
  'hang_frame_live',
  'frame_live_room',
  'live_room_wall',
  'room_wall_rubi',
  'wall_rubi_happi',
  'rubi_happi_especi',
  'happi_especi_sinc',
  'especi_sinc_get',
  'sinc_get_see',
  'get_see_smile',
  'see_smile_walk',
  'smile_walk_give',
  'walk_give_comfort',
  'give_comfort_fianc',
  'comfort_fianc_saw',
  'fianc_saw_got',
  'saw_got_upset',
  'got_upset_comment',
  'upset_comment_strang',
  'comment_strang_dog',
  'strang_dog_pictur',
  'dog_pictur_wall',
  'pictur_wall_much',
  'wall_much_distract',
  'much_distract_bring',
  'distract_bring_felt',
  'bring_felt_puzzl',
  'felt_puzzl_kind',
  'puzzl_kind_pictur',
  'kind_pictur_hang',
  'pictur_hang_wall',
  'hang_wall_suggest',
  'wall_suggest_remov',
  'suggest_remov_ignor',
  'remov_ignor_one',
  'ignor_one_day',
  'one_day_got',
  'day_got_home',
  'got_home_saw',
  'home_saw_taken',
  'saw_taken_rubi',
  'taken_rubi_room',
  'rubi_room_cri',
  'room_cri_hold',
  'cri_hold_pictur',
  'hold_pictur_ask',
  'pictur_ask_happen',
  'ask_happen_told',
  'happen_told_fianc',
  'told_fianc_took',
  'fianc_took_pictur',
  'took_pictur_told',
  'pictur_told_allow',
  'told_allow_hung',
  'allow_hung_also',
  'hung_also_told',
  'also_told_keep',
  'told_keep_room',
  'keep_room_want',
  'room_want_lose',
  'want_lose_good',
  'lose_good_shock',
  'good_shock_rush',
  'shock_rush_immedi',
  'rush_immedi_start',
  'immedi_start_take',
  'start_take_certif',
  'take_certif_wall',
  'certif_wall_doctor',
  'wall_doctor_master',
  'doctor_master_bachelor',
  'master_bachelor_degre',
  'bachelor_degre_-',
  'degre_-_certif',
  '-_certif_well',
  'certif_well_took',
  'well_took_put',
  'took_put_bedroom',
  'put_bedroom_discov',
  'bedroom_discov_snap',
  'discov_snap_said',
  'snap_said_hous',
  'said_hous_well',
  'hous_well_respect',
  'well_respect_input',
  'respect_input_defens',
  'input_defens_told',
  'defens_told_sinc',
  'told_sinc_daughter',
  'sinc_daughter_keep',
  'daughter_keep_room',
  'keep_room_keep',
  'room_keep_certif',
  'keep_certif_room',
  'certif_room_accord',
  'room_accord_logich',
  'accord_logich_yell',
  'logich_yell_demand',
  'yell_demand_stop',
  'demand_stop_nag',
  'stop_nag_act',
  'nag_act_childishli',
  'act_childishli_spite',
  'childishli_spite_want',
  'spite_want_put',
  'want_put_back',
  'put_back_refus',
  'back_refus_said',
  'refus_said_tic',
  'said_tic_pictur',
  'tic_pictur_put',
  'pictur_put_back',
  'put_back_well',
  'back_well_yell',
  'well_yell_disrespect',
  'yell_disrespect_achiev',
  'disrespect_achiev_treat',
  'achiev_treat_trash',
  'treat_trash_storm',
  'trash_storm_give',
  'storm_give_rubi',
  'give_rubi_cold',
  'rubi_cold_shoulder',
  'cold_shoulder_day',
  'shoulder_day_say',
  'day_say_speak',
  'say_speak_neither',
  'speak_neither_us',
  'neither_us_til',
  'us_til_apolog',
  'til_apolog_put',
  'apolog_put_certif',
  'put_certif_back',
  'certif_back_wall'],
 ['-',
  'daughter',
  '-',
  'love',
  'bake',
  'incred',
  'good',
  'passion',
  'sinc',
  'encourag',
  'follow',
  'discov',
  'way',
  'becom',
  'better',
  'even',
  'enrol',
  'class',
  'academi',
  'learn',
  'met',
  'fianc',
  '-',
  'half',
  'year',
  'ago',
  'get',
  'marri',
  'soon',
  'wed',
  'cake',
  'idea',
  'daughter',
  'bake',
  'cake',
  'decor',
  'us',
  'daughter',
  'agre',
  'excit',
  'fianc',
  'glanc',
  'heard',
  'alon',
  'snap',
  'said',
  'cant',
  'believ',
  'seriou',
  'told',
  'like',
  'huge',
  'formal',
  'wed',
  'mani',
  'guest',
  'small',
  'parti',
  'famili',
  'love',
  'one',
  'said',
  'fuck',
  'joke',
  'let',
  'child',
  'bake',
  'wed',
  'cake',
  'ton',
  'profession',
  'baker',
  'make',
  'much',
  'decent',
  'lookingtast',
  'one',
  'said',
  'understand',
  'problem',
  'thought',
  'love',
  'bake',
  'respond',
  'love',
  'bake',
  'let',
  'stick',
  'muffin',
  'browni',
  'told',
  'unreason',
  'word',
  'hurt',
  'daughter',
  'abil',
  'told',
  'realist',
  'think',
  'guest',
  'say',
  'said',
  'guest',
  'famili',
  'friend',
  'doubt',
  'theyd',
  'make',
  'neg',
  'comment',
  'cake',
  'know',
  'daughter',
  'made',
  'matter',
  'fact',
  'might',
  'even',
  'think',
  'sweet',
  'got',
  'mad',
  'said',
  'noth',
  'sweet',
  'get',
  'embarrass',
  '*',
  '*',
  'wed',
  'day',
  'argu',
  'hour',
  'go',
  'back',
  'forth',
  'issu',
  'later',
  'got',
  'call',
  'mother',
  'tell',
  'start',
  'ration',
  'look',
  'thing',
  'son',
  'prespect',
  'suggest',
  'get',
  'profession',
  'cake',
  'wed',
  'daughter',
  'mayb',
  'bake',
  'cupcak',
  'buffett',
  'someth',
  'convinc',
  'felt',
  'like',
  'theyr',
  'decid',
  'wed',
  'plan',
  'forc',
  'want',
  'care',
  'cake',
  'look',
  'sentiment',
  'care',
  '-_daughter',
  'daughter_-',
  '-_love',
  'love_bake',
  'bake_incred',
  'incred_good',
  'good_passion',
  'passion_sinc',
  'sinc_encourag',
  'encourag_follow',
  'follow_discov',
  'discov_way',
  'way_becom',
  'becom_better',
  'better_even',
  'even_enrol',
  'enrol_class',
  'class_academi',
  'academi_learn',
  'learn_met',
  'met_fianc',
  'fianc_-',
  '-_half',
  'half_year',
  'year_ago',
  'ago_get',
  'get_marri',
  'marri_soon',
  'soon_wed',
  'wed_cake',
  'cake_idea',
  'idea_daughter',
  'daughter_bake',
  'bake_cake',
  'cake_decor',
  'decor_us',
  'us_daughter',
  'daughter_agre',
  'agre_excit',
  'excit_fianc',
  'fianc_glanc',
  'glanc_heard',
  'heard_alon',
  'alon_snap',
  'snap_said',
  'said_cant',
  'cant_believ',
  'believ_seriou',
  'seriou_told',
  'told_like',
  'like_huge',
  'huge_formal',
  'formal_wed',
  'wed_mani',
  'mani_guest',
  'guest_small',
  'small_parti',
  'parti_famili',
  'famili_love',
  'love_one',
  'one_said',
  'said_fuck',
  'fuck_joke',
  'joke_let',
  'let_child',
  'child_bake',
  'bake_wed',
  'wed_cake',
  'cake_ton',
  'ton_profession',
  'profession_baker',
  'baker_make',
  'make_much',
  'much_decent',
  'decent_lookingtast',
  'lookingtast_one',
  'one_said',
  'said_understand',
  'understand_problem',
  'problem_thought',
  'thought_love',
  'love_bake',
  'bake_respond',
  'respond_love',
  'love_bake',
  'bake_let',
  'let_stick',
  'stick_muffin',
  'muffin_browni',
  'browni_told',
  'told_unreason',
  'unreason_word',
  'word_hurt',
  'hurt_daughter',
  'daughter_abil',
  'abil_told',
  'told_realist',
  'realist_think',
  'think_guest',
  'guest_say',
  'say_said',
  'said_guest',
  'guest_famili',
  'famili_friend',
  'friend_doubt',
  'doubt_theyd',
  'theyd_make',
  'make_neg',
  'neg_comment',
  'comment_cake',
  'cake_know',
  'know_daughter',
  'daughter_made',
  'made_matter',
  'matter_fact',
  'fact_might',
  'might_even',
  'even_think',
  'think_sweet',
  'sweet_got',
  'got_mad',
  'mad_said',
  'said_noth',
  'noth_sweet',
  'sweet_get',
  'get_embarrass',
  'embarrass_*',
  '*_*',
  '*_wed',
  'wed_day',
  'day_argu',
  'argu_hour',
  'hour_go',
  'go_back',
  'back_forth',
  'forth_issu',
  'issu_later',
  'later_got',
  'got_call',
  'call_mother',
  'mother_tell',
  'tell_start',
  'start_ration',
  'ration_look',
  'look_thing',
  'thing_son',
  'son_prespect',
  'prespect_suggest',
  'suggest_get',
  'get_profession',
  'profession_cake',
  'cake_wed',
  'wed_daughter',
  'daughter_mayb',
  'mayb_bake',
  'bake_cupcak',
  'cupcak_buffett',
  'buffett_someth',
  'someth_convinc',
  'convinc_felt',
  'felt_like',
  'like_theyr',
  'theyr_decid',
  'decid_wed',
  'wed_plan',
  'plan_forc',
  'forc_want',
  'want_care',
  'care_cake',
  'cake_look',
  'look_sentiment',
  'sentiment_care',
  '-_daughter_-',
  'daughter_-_love',
  '-_love_bake',
  'love_bake_incred',
  'bake_incred_good',
  'incred_good_passion',
  'good_passion_sinc',
  'passion_sinc_encourag',
  'sinc_encourag_follow',
  'encourag_follow_discov',
  'follow_discov_way',
  'discov_way_becom',
  'way_becom_better',
  'becom_better_even',
  'better_even_enrol',
  'even_enrol_class',
  'enrol_class_academi',
  'class_academi_learn',
  'academi_learn_met',
  'learn_met_fianc',
  'met_fianc_-',
  'fianc_-_half',
  '-_half_year',
  'half_year_ago',
  'year_ago_get',
  'ago_get_marri',
  'get_marri_soon',
  'marri_soon_wed',
  'soon_wed_cake',
  'wed_cake_idea',
  'cake_idea_daughter',
  'idea_daughter_bake',
  'daughter_bake_cake',
  'bake_cake_decor',
  'cake_decor_us',
  'decor_us_daughter',
  'us_daughter_agre',
  'daughter_agre_excit',
  'agre_excit_fianc',
  'excit_fianc_glanc',
  'fianc_glanc_heard',
  'glanc_heard_alon',
  'heard_alon_snap',
  'alon_snap_said',
  'snap_said_cant',
  'said_cant_believ',
  'cant_believ_seriou',
  'believ_seriou_told',
  'seriou_told_like',
  'told_like_huge',
  'like_huge_formal',
  'huge_formal_wed',
  'formal_wed_mani',
  'wed_mani_guest',
  'mani_guest_small',
  'guest_small_parti',
  'small_parti_famili',
  'parti_famili_love',
  'famili_love_one',
  'love_one_said',
  'one_said_fuck',
  'said_fuck_joke',
  'fuck_joke_let',
  'joke_let_child',
  'let_child_bake',
  'child_bake_wed',
  'bake_wed_cake',
  'wed_cake_ton',
  'cake_ton_profession',
  'ton_profession_baker',
  'profession_baker_make',
  'baker_make_much',
  'make_much_decent',
  'much_decent_lookingtast',
  'decent_lookingtast_one',
  'lookingtast_one_said',
  'one_said_understand',
  'said_understand_problem',
  'understand_problem_thought',
  'problem_thought_love',
  'thought_love_bake',
  'love_bake_respond',
  'bake_respond_love',
  'respond_love_bake',
  'love_bake_let',
  'bake_let_stick',
  'let_stick_muffin',
  'stick_muffin_browni',
  'muffin_browni_told',
  'browni_told_unreason',
  'told_unreason_word',
  'unreason_word_hurt',
  'word_hurt_daughter',
  'hurt_daughter_abil',
  'daughter_abil_told',
  'abil_told_realist',
  'told_realist_think',
  'realist_think_guest',
  'think_guest_say',
  'guest_say_said',
  'say_said_guest',
  'said_guest_famili',
  'guest_famili_friend',
  'famili_friend_doubt',
  'friend_doubt_theyd',
  'doubt_theyd_make',
  'theyd_make_neg',
  'make_neg_comment',
  'neg_comment_cake',
  'comment_cake_know',
  'cake_know_daughter',
  'know_daughter_made',
  'daughter_made_matter',
  'made_matter_fact',
  'matter_fact_might',
  'fact_might_even',
  'might_even_think',
  'even_think_sweet',
  'think_sweet_got',
  'sweet_got_mad',
  'got_mad_said',
  'mad_said_noth',
  'said_noth_sweet',
  'noth_sweet_get',
  'sweet_get_embarrass',
  'get_embarrass_*',
  'embarrass_*_*',
  '*_*_wed',
  '*_wed_day',
  'wed_day_argu',
  'day_argu_hour',
  'argu_hour_go',
  'hour_go_back',
  'go_back_forth',
  'back_forth_issu',
  'forth_issu_later',
  'issu_later_got',
  'later_got_call',
  'got_call_mother',
  'call_mother_tell',
  'mother_tell_start',
  'tell_start_ration',
  'start_ration_look',
  'ration_look_thing',
  'look_thing_son',
  'thing_son_prespect',
  'son_prespect_suggest',
  'prespect_suggest_get',
  'suggest_get_profession',
  'get_profession_cake',
  'profession_cake_wed',
  'cake_wed_daughter',
  'wed_daughter_mayb',
  'daughter_mayb_bake',
  'mayb_bake_cupcak',
  'bake_cupcak_buffett',
  'cupcak_buffett_someth',
  'buffett_someth_convinc',
  'someth_convinc_felt',
  'convinc_felt_like',
  'felt_like_theyr',
  'like_theyr_decid',
  'theyr_decid_wed',
  'decid_wed_plan',
  'wed_plan_forc',
  'plan_forc_want',
  'forc_want_care',
  'want_care_cake',
  'care_cake_look',
  'cake_look_sentiment',
  'look_sentiment_care'],
 ['famili',
  'tradit',
  'goe',
  'back',
  'gener',
  'oldest',
  'famili',
  'join',
  'militari',
  'main',
  'branch',
  'mom',
  'armi',
  'retir',
  'major',
  'grandpa',
  'air',
  'forc',
  'retir',
  'colonel',
  'believ',
  'great',
  'grandpa',
  'navi',
  'great',
  'great',
  'grandfath',
  'marin',
  'great',
  'grandfath',
  'also',
  'marin',
  'famili',
  'proud',
  'fact',
  'throw',
  'face',
  'sinc',
  'fresh',
  'cooter',
  'school',
  'year',
  'come',
  'end',
  'turn',
  'last',
  'month',
  'mom',
  'forc',
  'fit',
  'cours',
  'buy',
  'textbook',
  'help',
  'studi',
  'asvab',
  'would',
  'rebel',
  'awhil',
  'ago',
  'sadli',
  'younger',
  'brother',
  'past',
  'away',
  'year',
  'ago',
  'realli',
  'hard',
  'parent',
  'ive',
  'go',
  'along',
  'last',
  'week',
  'overheard',
  'mom',
  'talk',
  'phone',
  'recruit',
  'talk',
  'option',
  'possibl',
  'becom',
  'offic',
  'guess',
  'realiz',
  'final',
  'hit',
  'told',
  'mom',
  'im',
  'join',
  'day',
  'ago',
  'huge',
  'fight',
  'happen',
  'basic',
  'wast',
  'time',
  'call',
  'disappoint',
  'think',
  'right',
  'choos',
  'aita',
  'famili_tradit',
  'tradit_goe',
  'goe_back',
  'back_gener',
  'gener_oldest',
  'oldest_famili',
  'famili_join',
  'join_militari',
  'militari_main',
  'main_branch',
  'branch_mom',
  'mom_armi',
  'armi_retir',
  'retir_major',
  'major_grandpa',
  'grandpa_air',
  'air_forc',
  'forc_retir',
  'retir_colonel',
  'colonel_believ',
  'believ_great',
  'great_grandpa',
  'grandpa_navi',
  'navi_great',
  'great_great',
  'great_grandfath',
  'grandfath_marin',
  'marin_great',
  'great_grandfath',
  'grandfath_also',
  'also_marin',
  'marin_famili',
  'famili_proud',
  'proud_fact',
  'fact_throw',
  'throw_face',
  'face_sinc',
  'sinc_fresh',
  'fresh_cooter',
  'cooter_school',
  'school_year',
  'year_come',
  'come_end',
  'end_turn',
  'turn_last',
  'last_month',
  'month_mom',
  'mom_forc',
  'forc_fit',
  'fit_cours',
  'cours_buy',
  'buy_textbook',
  'textbook_help',
  'help_studi',
  'studi_asvab',
  'asvab_would',
  'would_rebel',
  'rebel_awhil',
  'awhil_ago',
  'ago_sadli',
  'sadli_younger',
  'younger_brother',
  'brother_past',
  'past_away',
  'away_year',
  'year_ago',
  'ago_realli',
  'realli_hard',
  'hard_parent',
  'parent_ive',
  'ive_go',
  'go_along',
  'along_last',
  'last_week',
  'week_overheard',
  'overheard_mom',
  'mom_talk',
  'talk_phone',
  'phone_recruit',
  'recruit_talk',
  'talk_option',
  'option_possibl',
  'possibl_becom',
  'becom_offic',
  'offic_guess',
  'guess_realiz',
  'realiz_final',
  'final_hit',
  'hit_told',
  'told_mom',
  'mom_im',
  'im_join',
  'join_day',
  'day_ago',
  'ago_huge',
  'huge_fight',
  'fight_happen',
  'happen_basic',
  'basic_wast',
  'wast_time',
  'time_call',
  'call_disappoint',
  'disappoint_think',
  'think_right',
  'right_choos',
  'choos_aita',
  'famili_tradit_goe',
  'tradit_goe_back',
  'goe_back_gener',
  'back_gener_oldest',
  'gener_oldest_famili',
  'oldest_famili_join',
  'famili_join_militari',
  'join_militari_main',
  'militari_main_branch',
  'main_branch_mom',
  'branch_mom_armi',
  'mom_armi_retir',
  'armi_retir_major',
  'retir_major_grandpa',
  'major_grandpa_air',
  'grandpa_air_forc',
  'air_forc_retir',
  'forc_retir_colonel',
  'retir_colonel_believ',
  'colonel_believ_great',
  'believ_great_grandpa',
  'great_grandpa_navi',
  'grandpa_navi_great',
  'navi_great_great',
  'great_great_grandfath',
  'great_grandfath_marin',
  'grandfath_marin_great',
  'marin_great_grandfath',
  'great_grandfath_also',
  'grandfath_also_marin',
  'also_marin_famili',
  'marin_famili_proud',
  'famili_proud_fact',
  'proud_fact_throw',
  'fact_throw_face',
  'throw_face_sinc',
  'face_sinc_fresh',
  'sinc_fresh_cooter',
  'fresh_cooter_school',
  'cooter_school_year',
  'school_year_come',
  'year_come_end',
  'come_end_turn',
  'end_turn_last',
  'turn_last_month',
  'last_month_mom',
  'month_mom_forc',
  'mom_forc_fit',
  'forc_fit_cours',
  'fit_cours_buy',
  'cours_buy_textbook',
  'buy_textbook_help',
  'textbook_help_studi',
  'help_studi_asvab',
  'studi_asvab_would',
  'asvab_would_rebel',
  'would_rebel_awhil',
  'rebel_awhil_ago',
  'awhil_ago_sadli',
  'ago_sadli_younger',
  'sadli_younger_brother',
  'younger_brother_past',
  'brother_past_away',
  'past_away_year',
  'away_year_ago',
  'year_ago_realli',
  'ago_realli_hard',
  'realli_hard_parent',
  'hard_parent_ive',
  'parent_ive_go',
  'ive_go_along',
  'go_along_last',
  'along_last_week',
  'last_week_overheard',
  'week_overheard_mom',
  'overheard_mom_talk',
  'mom_talk_phone',
  'talk_phone_recruit',
  'phone_recruit_talk',
  'recruit_talk_option',
  'talk_option_possibl',
  'option_possibl_becom',
  'possibl_becom_offic',
  'becom_offic_guess',
  'offic_guess_realiz',
  'guess_realiz_final',
  'realiz_final_hit',
  'final_hit_told',
  'hit_told_mom',
  'told_mom_im',
  'mom_im_join',
  'im_join_day',
  'join_day_ago',
  'day_ago_huge',
  'ago_huge_fight',
  'huge_fight_happen',
  'fight_happen_basic',
  'happen_basic_wast',
  'basic_wast_time',
  'wast_time_call',
  'time_call_disappoint',
  'call_disappoint_think',
  'disappoint_think_right',
  'think_right_choos',
  'right_choos_aita'],
 ['husband',
  'expect',
  'fir',
  'babi',
  'yei',
  'weve',
  'parent',
  'understand',
  'boundari',
  'overal',
  'realli',
  'good',
  'context',
  'come',
  'abus',
  'home',
  'cant',
  'stand',
  'touch',
  'get',
  'pregnant',
  'problem',
  'in-law',
  'im',
  'carri',
  'babi',
  'aw',
  'mil',
  'sil',
  'think',
  'touch',
  'belli',
  'whenev',
  'want',
  'husband',
  'talk',
  'said',
  'would',
  'rather',
  'touch',
  'understand',
  'big',
  'thing',
  'famili',
  'would',
  'simpli',
  'like',
  'ask',
  'instead',
  'feel',
  'hand',
  'random',
  'time',
  'rare',
  'move',
  'touch',
  'onto',
  'subject',
  'week',
  'ago',
  'best',
  'friend',
  'threw',
  'babi',
  'shower',
  'invit',
  'in-law',
  'sinc',
  'blood',
  'famili',
  'left',
  'let',
  'invit',
  'peopl',
  'includ',
  'aunts-cousin',
  'husband',
  'grandpar',
  'overal',
  'love',
  'moment',
  'one',
  'time',
  'sit',
  'eat',
  'cake',
  'mil',
  'talk',
  'fil',
  'sister',
  'tell',
  'someth',
  'babi',
  'put',
  'hand',
  'belli',
  'idk',
  'like',
  'took',
  'hand',
  'remov',
  'said',
  'know',
  'ive',
  'told',
  'touch',
  'without',
  'ask',
  'fir',
  'know',
  'ask',
  'first',
  'easi',
  'condescend',
  'voic',
  'mil',
  'fil',
  'sister',
  'look',
  'shock',
  'fil',
  'sister',
  'laugh',
  'mil',
  'got',
  'red',
  'face',
  'done',
  'mil',
  'approach',
  'said',
  'nice',
  'slip',
  'treat',
  'like',
  'kid',
  'smile',
  'said',
  'touch',
  'ask',
  'million',
  'time',
  'kid',
  'behavior',
  'call',
  'left',
  'sad',
  'got',
  'home',
  'fil',
  'call',
  'husband',
  'said',
  'would',
  'love',
  'us',
  'apolog',
  'said',
  'call',
  'ah',
  'husband_expect',
  'expect_fir',
  'fir_babi',
  'babi_yei',
  'yei_weve',
  'weve_parent',
  'parent_understand',
  'understand_boundari',
  'boundari_overal',
  'overal_realli',
  'realli_good',
  'good_context',
  'context_come',
  'come_abus',
  'abus_home',
  'home_cant',
  'cant_stand',
  'stand_touch',
  'touch_get',
  'get_pregnant',
  'pregnant_problem',
  'problem_in-law',
  'in-law_im',
  'im_carri',
  'carri_babi',
  'babi_aw',
  'aw_mil',
  'mil_sil',
  'sil_think',
  'think_touch',
  'touch_belli',
  'belli_whenev',
  'whenev_want',
  'want_husband',
  'husband_talk',
  'talk_said',
  'said_would',
  'would_rather',
  'rather_touch',
  'touch_understand',
  'understand_big',
  'big_thing',
  'thing_famili',
  'famili_would',
  'would_simpli',
  'simpli_like',
  'like_ask',
  'ask_instead',
  'instead_feel',
  'feel_hand',
  'hand_random',
  'random_time',
  'time_rare',
  'rare_move',
  'move_touch',
  'touch_onto',
  'onto_subject',
  'subject_week',
  'week_ago',
  'ago_best',
  'best_friend',
  'friend_threw',
  'threw_babi',
  'babi_shower',
  'shower_invit',
  'invit_in-law',
  'in-law_sinc',
  'sinc_blood',
  'blood_famili',
  'famili_left',
  'left_let',
  'let_invit',
  'invit_peopl',
  'peopl_includ',
  'includ_aunts-cousin',
  'aunts-cousin_husband',
  'husband_grandpar',
  'grandpar_overal',
  'overal_love',
  'love_moment',
  'moment_one',
  'one_time',
  'time_sit',
  'sit_eat',
  'eat_cake',
  'cake_mil',
  'mil_talk',
  'talk_fil',
  'fil_sister',
  'sister_tell',
  'tell_someth',
  'someth_babi',
  'babi_put',
  'put_hand',
  'hand_belli',
  'belli_idk',
  'idk_like',
  'like_took',
  'took_hand',
  'hand_remov',
  'remov_said',
  'said_know',
  'know_ive',
  'ive_told',
  'told_touch',
  'touch_without',
  'without_ask',
  'ask_fir',
  'fir_know',
  'know_ask',
  'ask_first',
  'first_easi',
  'easi_condescend',
  'condescend_voic',
  'voic_mil',
  'mil_fil',
  'fil_sister',
  'sister_look',
  'look_shock',
  'shock_fil',
  'fil_sister',
  'sister_laugh',
  'laugh_mil',
  'mil_got',
  'got_red',
  'red_face',
  'face_done',
  'done_mil',
  'mil_approach',
  'approach_said',
  'said_nice',
  'nice_slip',
  'slip_treat',
  'treat_like',
  'like_kid',
  'kid_smile',
  'smile_said',
  'said_touch',
  'touch_ask',
  'ask_million',
  'million_time',
  'time_kid',
  'kid_behavior',
  'behavior_call',
  'call_left',
  'left_sad',
  'sad_got',
  'got_home',
  'home_fil',
  'fil_call',
  'call_husband',
  'husband_said',
  'said_would',
  'would_love',
  'love_us',
  'us_apolog',
  'apolog_said',
  'said_call',
  'call_ah',
  'husband_expect_fir',
  'expect_fir_babi',
  'fir_babi_yei',
  'babi_yei_weve',
  'yei_weve_parent',
  'weve_parent_understand',
  'parent_understand_boundari',
  'understand_boundari_overal',
  'boundari_overal_realli',
  'overal_realli_good',
  'realli_good_context',
  'good_context_come',
  'context_come_abus',
  'come_abus_home',
  'abus_home_cant',
  'home_cant_stand',
  'cant_stand_touch',
  'stand_touch_get',
  'touch_get_pregnant',
  'get_pregnant_problem',
  'pregnant_problem_in-law',
  'problem_in-law_im',
  'in-law_im_carri',
  'im_carri_babi',
  'carri_babi_aw',
  'babi_aw_mil',
  'aw_mil_sil',
  'mil_sil_think',
  'sil_think_touch',
  'think_touch_belli',
  'touch_belli_whenev',
  'belli_whenev_want',
  'whenev_want_husband',
  'want_husband_talk',
  'husband_talk_said',
  'talk_said_would',
  'said_would_rather',
  'would_rather_touch',
  'rather_touch_understand',
  'touch_understand_big',
  'understand_big_thing',
  'big_thing_famili',
  'thing_famili_would',
  'famili_would_simpli',
  'would_simpli_like',
  'simpli_like_ask',
  'like_ask_instead',
  'ask_instead_feel',
  'instead_feel_hand',
  'feel_hand_random',
  'hand_random_time',
  'random_time_rare',
  'time_rare_move',
  'rare_move_touch',
  'move_touch_onto',
  'touch_onto_subject',
  'onto_subject_week',
  'subject_week_ago',
  'week_ago_best',
  'ago_best_friend',
  'best_friend_threw',
  'friend_threw_babi',
  'threw_babi_shower',
  'babi_shower_invit',
  'shower_invit_in-law',
  'invit_in-law_sinc',
  'in-law_sinc_blood',
  'sinc_blood_famili',
  'blood_famili_left',
  'famili_left_let',
  'left_let_invit',
  'let_invit_peopl',
  'invit_peopl_includ',
  'peopl_includ_aunts-cousin',
  'includ_aunts-cousin_husband',
  'aunts-cousin_husband_grandpar',
  'husband_grandpar_overal',
  'grandpar_overal_love',
  'overal_love_moment',
  'love_moment_one',
  'moment_one_time',
  'one_time_sit',
  'time_sit_eat',
  'sit_eat_cake',
  'eat_cake_mil',
  'cake_mil_talk',
  'mil_talk_fil',
  'talk_fil_sister',
  'fil_sister_tell',
  'sister_tell_someth',
  'tell_someth_babi',
  'someth_babi_put',
  'babi_put_hand',
  'put_hand_belli',
  'hand_belli_idk',
  'belli_idk_like',
  'idk_like_took',
  'like_took_hand',
  'took_hand_remov',
  'hand_remov_said',
  'remov_said_know',
  'said_know_ive',
  'know_ive_told',
  'ive_told_touch',
  'told_touch_without',
  'touch_without_ask',
  'without_ask_fir',
  'ask_fir_know',
  'fir_know_ask',
  'know_ask_first',
  'ask_first_easi',
  'first_easi_condescend',
  'easi_condescend_voic',
  'condescend_voic_mil',
  'voic_mil_fil',
  'mil_fil_sister',
  'fil_sister_look',
  'sister_look_shock',
  'look_shock_fil',
  'shock_fil_sister',
  'fil_sister_laugh',
  'sister_laugh_mil',
  'laugh_mil_got',
  'mil_got_red',
  'got_red_face',
  'red_face_done',
  'face_done_mil',
  'done_mil_approach',
  'mil_approach_said',
  'approach_said_nice',
  'said_nice_slip',
  'nice_slip_treat',
  'slip_treat_like',
  'treat_like_kid',
  'like_kid_smile',
  'kid_smile_said',
  'smile_said_touch',
  'said_touch_ask',
  'touch_ask_million',
  'ask_million_time',
  'million_time_kid',
  'time_kid_behavior',
  'kid_behavior_call',
  'behavior_call_left',
  'call_left_sad',
  'left_sad_got',
  'sad_got_home',
  'got_home_fil',
  'home_fil_call',
  'fil_call_husband',
  'call_husband_said',
  'husband_said_would',
  'said_would_love',
  'would_love_us',
  'love_us_apolog',
  'us_apolog_said',
  'apolog_said_call',
  'said_call_ah'],
 ['recent',
  'admit',
  'hospit',
  'night',
  'due',
  'seriou',
  'life-threaten',
  'ill',
  'complet',
  'sever',
  'day',
  'horribl',
  'pain',
  'roommat',
  'convinc',
  'get',
  'medic',
  'help',
  'took',
  'work',
  'stay',
  'hospit',
  'express',
  'much',
  'support',
  'help',
  'famili',
  'live',
  'far',
  'away',
  'ive',
  'date',
  'sam',
  'nine',
  'month',
  'knew',
  'sick',
  'text',
  'first',
  'go',
  'hospit',
  'updat',
  'sinc',
  'work',
  'read',
  'messag',
  'much',
  'later',
  'sent',
  'around',
  'text',
  'updat',
  'nurs',
  'say',
  'includ',
  'photo',
  'iv',
  'give',
  'thumb',
  'first',
  'time',
  'ever',
  'hospit',
  'want',
  'keep',
  'shitti',
  'situat',
  'light-heart',
  'possibl',
  'respond',
  'hour',
  'later',
  'thumb',
  'ask',
  'everyth',
  'right',
  'said',
  'yeah',
  'hospit',
  'give',
  'lot',
  'anxieti',
  'id',
  'rather',
  'see',
  'look',
  'like',
  'told',
  'okay',
  'messag',
  'rest',
  'night',
  'think',
  'much',
  'next',
  'afternoon',
  'mom',
  'call',
  'ask',
  'okay',
  'impress',
  'sent',
  'hospit',
  'photo',
  'told',
  'share',
  'inform',
  'disrespect',
  'request',
  'remind',
  'grandfath',
  'die',
  'year',
  'earlier',
  'sam',
  'spend',
  'lot',
  'time',
  'hospit',
  'updat',
  'make',
  'griev',
  'apolog',
  'sent',
  'text',
  'say',
  'mean',
  'hurt',
  'feel',
  'left',
  'read',
  'roommat',
  'think',
  'anyth',
  'wrong',
  'sensitiveimmatur',
  'involv',
  'mom',
  'person',
  'think',
  'bit',
  'unfair',
  'realli',
  'close',
  'grandfath',
  'struggl',
  'anxieti',
  'feel',
  'realli',
  'realli',
  'guilti',
  'know',
  'mental',
  'health',
  'never',
  'want',
  'suffer',
  'aita',
  'updat',
  'morn',
  'woke',
  'text',
  'sam',
  'ask',
  'break',
  'told',
  'need',
  'focu',
  'much',
  'drama',
  'relationship',
  'agre',
  'ive',
  'sam',
  'anxieti',
  'attack',
  'hold',
  'cri',
  'arm',
  'time',
  'count',
  'never',
  'done',
  'ive',
  'made',
  'excus',
  'behavior',
  'ive',
  'beg',
  'go',
  'therapi',
  'alway',
  'refus',
  'hospit',
  'stay',
  'comment',
  'eye-open',
  'oh',
  'mom',
  'remind',
  'let',
  'go',
  'feel',
  'best',
  'im',
  'start',
  'therapi',
  'bc',
  'ill',
  'need',
  'support',
  'gone',
  'actual',
  'laugh',
  'loud',
  'one',
  'reach',
  'yet',
  'hope',
  'never',
  'roommat',
  'figur',
  'end',
  'thing',
  'yep',
  'feel',
  'lot',
  'emot',
  'know',
  'best',
  'also',
  'thank',
  'much',
  'love',
  'redditor',
  'given',
  'advic',
  'wish',
  'well',
  'im',
  'much',
  'better',
  'appreci',
  'ton',
  'recent_admit',
  'admit_hospit',
  'hospit_night',
  'night_due',
  'due_seriou',
  'seriou_life-threaten',
  'life-threaten_ill',
  'ill_complet',
  'complet_sever',
  'sever_day',
  'day_horribl',
  'horribl_pain',
  'pain_roommat',
  'roommat_convinc',
  'convinc_get',
  'get_medic',
  'medic_help',
  'help_took',
  'took_work',
  'work_stay',
  'stay_hospit',
  'hospit_express',
  'express_much',
  'much_support',
  'support_help',
  'help_famili',
  'famili_live',
  'live_far',
  'far_away',
  'away_ive',
  'ive_date',
  'date_sam',
  'sam_nine',
  'nine_month',
  'month_knew',
  'knew_sick',
  'sick_text',
  'text_first',
  'first_go',
  'go_hospit',
  'hospit_updat',
  'updat_sinc',
  'sinc_work',
  'work_read',
  'read_messag',
  'messag_much',
  'much_later',
  'later_sent',
  'sent_around',
  'around_text',
  'text_updat',
  'updat_nurs',
  'nurs_say',
  'say_includ',
  'includ_photo',
  'photo_iv',
  'iv_give',
  'give_thumb',
  'thumb_first',
  'first_time',
  'time_ever',
  'ever_hospit',
  'hospit_want',
  'want_keep',
  'keep_shitti',
  'shitti_situat',
  'situat_light-heart',
  'light-heart_possibl',
  'possibl_respond',
  'respond_hour',
  'hour_later',
  'later_thumb',
  'thumb_ask',
  'ask_everyth',
  'everyth_right',
  'right_said',
  'said_yeah',
  'yeah_hospit',
  'hospit_give',
  'give_lot',
  'lot_anxieti',
  'anxieti_id',
  'id_rather',
  'rather_see',
  'see_look',
  'look_like',
  'like_told',
  'told_okay',
  'okay_messag',
  'messag_rest',
  'rest_night',
  'night_think',
  'think_much',
  'much_next',
  'next_afternoon',
  'afternoon_mom',
  'mom_call',
  'call_ask',
  'ask_okay',
  'okay_impress',
  'impress_sent',
  'sent_hospit',
  'hospit_photo',
  'photo_told',
  'told_share',
  'share_inform',
  'inform_disrespect',
  'disrespect_request',
  'request_remind',
  'remind_grandfath',
  'grandfath_die',
  'die_year',
  'year_earlier',
  'earlier_sam',
  'sam_spend',
  'spend_lot',
  'lot_time',
  'time_hospit',
  'hospit_updat',
  'updat_make',
  'make_griev',
  'griev_apolog',
  'apolog_sent',
  'sent_text',
  'text_say',
  'say_mean',
  'mean_hurt',
  'hurt_feel',
  'feel_left',
  'left_read',
  'read_roommat',
  'roommat_think',
  'think_anyth',
  'anyth_wrong',
  'wrong_sensitiveimmatur',
  'sensitiveimmatur_involv',
  'involv_mom',
  'mom_person',
  'person_think',
  'think_bit',
  'bit_unfair',
  'unfair_realli',
  'realli_close',
  'close_grandfath',
  'grandfath_struggl',
  'struggl_anxieti',
  'anxieti_feel',
  'feel_realli',
  'realli_realli',
  'realli_guilti',
  'guilti_know',
  'know_mental',
  'mental_health',
  'health_never',
  'never_want',
  'want_suffer',
  'suffer_aita',
  'aita_updat',
  'updat_morn',
  'morn_woke',
  'woke_text',
  'text_sam',
  'sam_ask',
  'ask_break',
  'break_told',
  'told_need',
  'need_focu',
  'focu_much',
  'much_drama',
  'drama_relationship',
  'relationship_agre',
  'agre_ive',
  'ive_sam',
  'sam_anxieti',
  'anxieti_attack',
  'attack_hold',
  'hold_cri',
  'cri_arm',
  'arm_time',
  'time_count',
  'count_never',
  'never_done',
  'done_ive',
  'ive_made',
  'made_excus',
  'excus_behavior',
  'behavior_ive',
  'ive_beg',
  'beg_go',
  'go_therapi',
  'therapi_alway',
  'alway_refus',
  'refus_hospit',
  'hospit_stay',
  'stay_comment',
  'comment_eye-open',
  'eye-open_oh',
  'oh_mom',
  'mom_remind',
  'remind_let',
  'let_go',
  'go_feel',
  'feel_best',
  'best_im',
  'im_start',
  'start_therapi',
  'therapi_bc',
  'bc_ill',
  'ill_need',
  'need_support',
  'support_gone',
  'gone_actual',
  'actual_laugh',
  'laugh_loud',
  'loud_one',
  'one_reach',
  'reach_yet',
  'yet_hope',
  'hope_never',
  'never_roommat',
  'roommat_figur',
  'figur_end',
  'end_thing',
  'thing_yep',
  'yep_feel',
  'feel_lot',
  'lot_emot',
  'emot_know',
  'know_best',
  'best_also',
  'also_thank',
  'thank_much',
  'much_love',
  'love_redditor',
  'redditor_given',
  'given_advic',
  'advic_wish',
  'wish_well',
  'well_im',
  'im_much',
  'much_better',
  'better_appreci',
  'appreci_ton',
  'recent_admit_hospit',
  'admit_hospit_night',
  'hospit_night_due',
  'night_due_seriou',
  'due_seriou_life-threaten',
  'seriou_life-threaten_ill',
  'life-threaten_ill_complet',
  'ill_complet_sever',
  'complet_sever_day',
  'sever_day_horribl',
  'day_horribl_pain',
  'horribl_pain_roommat',
  'pain_roommat_convinc',
  'roommat_convinc_get',
  'convinc_get_medic',
  'get_medic_help',
  'medic_help_took',
  'help_took_work',
  'took_work_stay',
  'work_stay_hospit',
  'stay_hospit_express',
  'hospit_express_much',
  'express_much_support',
  'much_support_help',
  'support_help_famili',
  'help_famili_live',
  'famili_live_far',
  'live_far_away',
  'far_away_ive',
  'away_ive_date',
  'ive_date_sam',
  'date_sam_nine',
  'sam_nine_month',
  'nine_month_knew',
  'month_knew_sick',
  'knew_sick_text',
  'sick_text_first',
  'text_first_go',
  'first_go_hospit',
  'go_hospit_updat',
  'hospit_updat_sinc',
  'updat_sinc_work',
  'sinc_work_read',
  'work_read_messag',
  'read_messag_much',
  'messag_much_later',
  'much_later_sent',
  'later_sent_around',
  'sent_around_text',
  'around_text_updat',
  'text_updat_nurs',
  'updat_nurs_say',
  'nurs_say_includ',
  'say_includ_photo',
  'includ_photo_iv',
  'photo_iv_give',
  'iv_give_thumb',
  'give_thumb_first',
  'thumb_first_time',
  'first_time_ever',
  'time_ever_hospit',
  'ever_hospit_want',
  'hospit_want_keep',
  'want_keep_shitti',
  'keep_shitti_situat',
  'shitti_situat_light-heart',
  'situat_light-heart_possibl',
  'light-heart_possibl_respond',
  'possibl_respond_hour',
  'respond_hour_later',
  'hour_later_thumb',
  'later_thumb_ask',
  'thumb_ask_everyth',
  'ask_everyth_right',
  'everyth_right_said',
  'right_said_yeah',
  'said_yeah_hospit',
  'yeah_hospit_give',
  'hospit_give_lot',
  'give_lot_anxieti',
  'lot_anxieti_id',
  'anxieti_id_rather',
  'id_rather_see',
  'rather_see_look',
  'see_look_like',
  'look_like_told',
  'like_told_okay',
  'told_okay_messag',
  'okay_messag_rest',
  'messag_rest_night',
  'rest_night_think',
  'night_think_much',
  'think_much_next',
  'much_next_afternoon',
  'next_afternoon_mom',
  'afternoon_mom_call',
  'mom_call_ask',
  'call_ask_okay',
  'ask_okay_impress',
  'okay_impress_sent',
  'impress_sent_hospit',
  'sent_hospit_photo',
  'hospit_photo_told',
  'photo_told_share',
  'told_share_inform',
  'share_inform_disrespect',
  'inform_disrespect_request',
  'disrespect_request_remind',
  'request_remind_grandfath',
  'remind_grandfath_die',
  'grandfath_die_year',
  'die_year_earlier',
  'year_earlier_sam',
  'earlier_sam_spend',
  'sam_spend_lot',
  'spend_lot_time',
  'lot_time_hospit',
  'time_hospit_updat',
  'hospit_updat_make',
  'updat_make_griev',
  'make_griev_apolog',
  'griev_apolog_sent',
  'apolog_sent_text',
  'sent_text_say',
  'text_say_mean',
  'say_mean_hurt',
  'mean_hurt_feel',
  'hurt_feel_left',
  'feel_left_read',
  'left_read_roommat',
  'read_roommat_think',
  'roommat_think_anyth',
  'think_anyth_wrong',
  'anyth_wrong_sensitiveimmatur',
  'wrong_sensitiveimmatur_involv',
  'sensitiveimmatur_involv_mom',
  'involv_mom_person',
  'mom_person_think',
  'person_think_bit',
  'think_bit_unfair',
  'bit_unfair_realli',
  'unfair_realli_close',
  'realli_close_grandfath',
  'close_grandfath_struggl',
  'grandfath_struggl_anxieti',
  'struggl_anxieti_feel',
  'anxieti_feel_realli',
  'feel_realli_realli',
  'realli_realli_guilti',
  'realli_guilti_know',
  'guilti_know_mental',
  'know_mental_health',
  'mental_health_never',
  'health_never_want',
  'never_want_suffer',
  'want_suffer_aita',
  'suffer_aita_updat',
  'aita_updat_morn',
  'updat_morn_woke',
  'morn_woke_text',
  'woke_text_sam',
  'text_sam_ask',
  'sam_ask_break',
  'ask_break_told',
  'break_told_need',
  'told_need_focu',
  'need_focu_much',
  'focu_much_drama',
  'much_drama_relationship',
  'drama_relationship_agre',
  'relationship_agre_ive',
  'agre_ive_sam',
  'ive_sam_anxieti',
  'sam_anxieti_attack',
  'anxieti_attack_hold',
  'attack_hold_cri',
  'hold_cri_arm',
  'cri_arm_time',
  'arm_time_count',
  'time_count_never',
  'count_never_done',
  'never_done_ive',
  'done_ive_made',
  'ive_made_excus',
  'made_excus_behavior',
  'excus_behavior_ive',
  'behavior_ive_beg',
  'ive_beg_go',
  'beg_go_therapi',
  'go_therapi_alway',
  'therapi_alway_refus',
  'alway_refus_hospit',
  'refus_hospit_stay',
  'hospit_stay_comment',
  'stay_comment_eye-open',
  'comment_eye-open_oh',
  'eye-open_oh_mom',
  'oh_mom_remind',
  'mom_remind_let',
  'remind_let_go',
  'let_go_feel',
  'go_feel_best',
  'feel_best_im',
  'best_im_start',
  'im_start_therapi',
  'start_therapi_bc',
  'therapi_bc_ill',
  'bc_ill_need',
  'ill_need_support',
  'need_support_gone',
  'support_gone_actual',
  'gone_actual_laugh',
  'actual_laugh_loud',
  'laugh_loud_one',
  'loud_one_reach',
  'one_reach_yet',
  'reach_yet_hope',
  'yet_hope_never',
  'hope_never_roommat',
  'never_roommat_figur',
  'roommat_figur_end',
  'figur_end_thing',
  'end_thing_yep',
  'thing_yep_feel',
  'yep_feel_lot',
  'feel_lot_emot',
  'lot_emot_know',
  'emot_know_best',
  'know_best_also',
  'best_also_thank',
  'also_thank_much',
  'thank_much_love',
  'much_love_redditor',
  'love_redditor_given',
  'redditor_given_advic',
  'given_advic_wish',
  'advic_wish_well',
  'wish_well_im',
  'well_im_much',
  'im_much_better',
  'much_better_appreci',
  'better_appreci_ton'],
 ['ill',
  'prefac',
  'say',
  'husband',
  'famili',
  'get',
  'along',
  'like',
  'rare',
  'ever',
  'good',
  'term',
  'mental',
  'health',
  'decid',
  'put',
  'distanc',
  'us',
  'especi',
  'blame',
  'recent',
  'miscarriag',
  'happen',
  'month',
  'ago',
  'husband',
  'still',
  'see',
  'visit',
  'whenev',
  'want',
  'attend',
  'event',
  'even',
  'thanksgiv',
  'christma',
  'husband',
  'th',
  'birthday',
  'day',
  'ago',
  'plan',
  'celebr',
  'bought',
  'cake',
  'gift',
  'said',
  'famili',
  'invit',
  'celebr',
  'birthday',
  '*',
  'realli',
  'realli',
  'realli',
  '*',
  'want',
  'go',
  'birthday',
  'parti',
  'famili',
  'throw',
  'like',
  'argument',
  'told',
  'wait',
  'til',
  'finish',
  'celebr',
  'famili',
  'could',
  'celebr',
  'togeth',
  'home',
  'eat',
  'cake',
  'left',
  'felt',
  'terribl',
  'call',
  'turn',
  'phone',
  'mad',
  'took',
  'cake',
  'brought',
  'live',
  'room',
  'start',
  'eat',
  'ate',
  'whole',
  'thing',
  'save',
  'singl',
  'piec',
  'guess',
  'angri',
  'made',
  'hungri',
  'came',
  'home',
  'saw',
  'blew',
  'say',
  'spite',
  'punish',
  'ditch',
  'famili',
  'birthday',
  'like',
  'want',
  'remind',
  'paid',
  'cake',
  'call',
  'petti',
  'nut',
  'rant',
  'rant',
  'said',
  'get',
  'eat',
  'cake',
  'parent',
  'hous',
  'lot',
  'kid',
  'get',
  'enough',
  'cake',
  'time',
  'wors',
  'upset',
  'ever',
  'sinc',
  'aita',
  'ill_prefac',
  'prefac_say',
  'say_husband',
  'husband_famili',
  'famili_get',
  'get_along',
  'along_like',
  'like_rare',
  'rare_ever',
  'ever_good',
  'good_term',
  'term_mental',
  'mental_health',
  'health_decid',
  'decid_put',
  'put_distanc',
  'distanc_us',
  'us_especi',
  'especi_blame',
  'blame_recent',
  'recent_miscarriag',
  'miscarriag_happen',
  'happen_month',
  'month_ago',
  'ago_husband',
  'husband_still',
  'still_see',
  'see_visit',
  'visit_whenev',
  'whenev_want',
  'want_attend',
  'attend_event',
  'event_even',
  'even_thanksgiv',
  'thanksgiv_christma',
  'christma_husband',
  'husband_th',
  'th_birthday',
  'birthday_day',
  'day_ago',
  'ago_plan',
  'plan_celebr',
  'celebr_bought',
  'bought_cake',
  'cake_gift',
  'gift_said',
  'said_famili',
  'famili_invit',
  'invit_celebr',
  'celebr_birthday',
  'birthday_*',
  '*_realli',
  'realli_realli',
  'realli_realli',
  'realli_*',
  '*_want',
  'want_go',
  'go_birthday',
  'birthday_parti',
  'parti_famili',
  'famili_throw',
  'throw_like',
  'like_argument',
  'argument_told',
  'told_wait',
  'wait_til',
  'til_finish',
  'finish_celebr',
  'celebr_famili',
  'famili_could',
  'could_celebr',
  'celebr_togeth',
  'togeth_home',
  'home_eat',
  'eat_cake',
  'cake_left',
  'left_felt',
  'felt_terribl',
  'terribl_call',
  'call_turn',
  'turn_phone',
  'phone_mad',
  'mad_took',
  'took_cake',
  'cake_brought',
  'brought_live',
  'live_room',
  'room_start',
  'start_eat',
  'eat_ate',
  'ate_whole',
  'whole_thing',
  'thing_save',
  'save_singl',
  'singl_piec',
  'piec_guess',
  'guess_angri',
  'angri_made',
  'made_hungri',
  'hungri_came',
  'came_home',
  'home_saw',
  'saw_blew',
  'blew_say',
  'say_spite',
  'spite_punish',
  'punish_ditch',
  'ditch_famili',
  'famili_birthday',
  'birthday_like',
  'like_want',
  'want_remind',
  'remind_paid',
  'paid_cake',
  'cake_call',
  'call_petti',
  'petti_nut',
  'nut_rant',
  'rant_rant',
  'rant_said',
  'said_get',
  'get_eat',
  'eat_cake',
  'cake_parent',
  'parent_hous',
  'hous_lot',
  'lot_kid',
  'kid_get',
  'get_enough',
  'enough_cake',
  'cake_time',
  'time_wors',
  'wors_upset',
  'upset_ever',
  'ever_sinc',
  'sinc_aita',
  'ill_prefac_say',
  'prefac_say_husband',
  'say_husband_famili',
  'husband_famili_get',
  'famili_get_along',
  'get_along_like',
  'along_like_rare',
  'like_rare_ever',
  'rare_ever_good',
  'ever_good_term',
  'good_term_mental',
  'term_mental_health',
  'mental_health_decid',
  'health_decid_put',
  'decid_put_distanc',
  'put_distanc_us',
  'distanc_us_especi',
  'us_especi_blame',
  'especi_blame_recent',
  'blame_recent_miscarriag',
  'recent_miscarriag_happen',
  'miscarriag_happen_month',
  'happen_month_ago',
  'month_ago_husband',
  'ago_husband_still',
  'husband_still_see',
  'still_see_visit',
  'see_visit_whenev',
  'visit_whenev_want',
  'whenev_want_attend',
  'want_attend_event',
  'attend_event_even',
  'event_even_thanksgiv',
  'even_thanksgiv_christma',
  'thanksgiv_christma_husband',
  'christma_husband_th',
  'husband_th_birthday',
  'th_birthday_day',
  'birthday_day_ago',
  'day_ago_plan',
  'ago_plan_celebr',
  'plan_celebr_bought',
  'celebr_bought_cake',
  'bought_cake_gift',
  'cake_gift_said',
  'gift_said_famili',
  'said_famili_invit',
  'famili_invit_celebr',
  'invit_celebr_birthday',
  'celebr_birthday_*',
  'birthday_*_realli',
  '*_realli_realli',
  'realli_realli_realli',
  'realli_realli_*',
  'realli_*_want',
  '*_want_go',
  'want_go_birthday',
  'go_birthday_parti',
  'birthday_parti_famili',
  'parti_famili_throw',
  'famili_throw_like',
  'throw_like_argument',
  'like_argument_told',
  'argument_told_wait',
  'told_wait_til',
  'wait_til_finish',
  'til_finish_celebr',
  'finish_celebr_famili',
  'celebr_famili_could',
  'famili_could_celebr',
  'could_celebr_togeth',
  'celebr_togeth_home',
  'togeth_home_eat',
  'home_eat_cake',
  'eat_cake_left',
  'cake_left_felt',
  'left_felt_terribl',
  'felt_terribl_call',
  'terribl_call_turn',
  'call_turn_phone',
  'turn_phone_mad',
  'phone_mad_took',
  'mad_took_cake',
  'took_cake_brought',
  'cake_brought_live',
  'brought_live_room',
  'live_room_start',
  'room_start_eat',
  'start_eat_ate',
  'eat_ate_whole',
  'ate_whole_thing',
  'whole_thing_save',
  'thing_save_singl',
  'save_singl_piec',
  'singl_piec_guess',
  'piec_guess_angri',
  'guess_angri_made',
  'angri_made_hungri',
  'made_hungri_came',
  'hungri_came_home',
  'came_home_saw',
  'home_saw_blew',
  'saw_blew_say',
  'blew_say_spite',
  'say_spite_punish',
  'spite_punish_ditch',
  'punish_ditch_famili',
  'ditch_famili_birthday',
  'famili_birthday_like',
  'birthday_like_want',
  'like_want_remind',
  'want_remind_paid',
  'remind_paid_cake',
  'paid_cake_call',
  'cake_call_petti',
  'call_petti_nut',
  'petti_nut_rant',
  'nut_rant_rant',
  'rant_rant_said',
  'rant_said_get',
  'said_get_eat',
  'get_eat_cake',
  'eat_cake_parent',
  'cake_parent_hous',
  'parent_hous_lot',
  'hous_lot_kid',
  'lot_kid_get',
  'kid_get_enough',
  'get_enough_cake',
  'enough_cake_time',
  'cake_time_wors',
  'time_wors_upset',
  'wors_upset_ever',
  'upset_ever_sinc',
  'ever_sinc_aita'],
 ['diabet',
  'keep',
  'packag',
  'snack',
  'near',
  'essenti',
  'often',
  'time',
  'get',
  'low',
  'blood',
  'suger',
  'due',
  'issu',
  'appetit',
  'eat',
  'lunch',
  'dinner',
  'properli',
  'brother',
  'law',
  'pregnant',
  'wife',
  'move',
  'us',
  'month',
  'ago',
  'issu',
  'began',
  'sil',
  'start',
  'eat',
  'snack',
  'usual',
  'keep',
  'insid',
  'fridg',
  'tri',
  'buy',
  'snack',
  'sometim',
  'run',
  'end',
  'drink',
  'water',
  'mix',
  'sugar',
  'middl',
  'night',
  'anyth',
  'els',
  'eat',
  'husband',
  'go',
  'store',
  'get',
  'anyth',
  'told',
  'husband',
  'told',
  'patient',
  'brother',
  'wife',
  'pregnant',
  'consid',
  'sort',
  'sick',
  'need',
  'cut',
  'slack',
  'honest',
  'move',
  'snack',
  'bedroom',
  'insid',
  'box',
  'keep',
  'safe',
  'sil',
  'said',
  'strang',
  'longer',
  'buy',
  'snack',
  'told',
  'actual',
  'still',
  'keep',
  'safe',
  'room',
  'one',
  'touch',
  'side-ey',
  'argument',
  'ensu',
  'husband',
  'brother',
  'came',
  'home',
  'husband',
  'berat',
  'rude',
  'sil',
  'childish',
  'move',
  'snack',
  'keep',
  'bedroom',
  'told',
  'though',
  'know',
  'said',
  'overreact',
  'harm',
  'share',
  'demand',
  'put',
  'whatev',
  'snack',
  'back',
  'fridg',
  'stop',
  'act',
  'like',
  'child',
  'said',
  'sil',
  'husband',
  'get',
  'upset',
  'need',
  'understand',
  'im',
  'diabet',
  'need',
  'snack',
  'essenti',
  'yell',
  'face',
  'call',
  'childish',
  'walk',
  'bil',
  'sil',
  'cold',
  'shoulder',
  'husband',
  'keep',
  'push',
  'put',
  'snack',
  'back',
  'fridg',
  'belong',
  'speak',
  'well',
  'aita',
  'diabet_keep',
  'keep_packag',
  'packag_snack',
  'snack_near',
  'near_essenti',
  'essenti_often',
  'often_time',
  'time_get',
  'get_low',
  'low_blood',
  'blood_suger',
  'suger_due',
  'due_issu',
  'issu_appetit',
  'appetit_eat',
  'eat_lunch',
  'lunch_dinner',
  'dinner_properli',
  'properli_brother',
  'brother_law',
  'law_pregnant',
  'pregnant_wife',
  'wife_move',
  'move_us',
  'us_month',
  'month_ago',
  'ago_issu',
  'issu_began',
  'began_sil',
  'sil_start',
  'start_eat',
  'eat_snack',
  'snack_usual',
  'usual_keep',
  'keep_insid',
  'insid_fridg',
  'fridg_tri',
  'tri_buy',
  'buy_snack',
  'snack_sometim',
  'sometim_run',
  'run_end',
  'end_drink',
  'drink_water',
  'water_mix',
  'mix_sugar',
  'sugar_middl',
  'middl_night',
  'night_anyth',
  'anyth_els',
  'els_eat',
  'eat_husband',
  'husband_go',
  'go_store',
  'store_get',
  'get_anyth',
  'anyth_told',
  'told_husband',
  'husband_told',
  'told_patient',
  'patient_brother',
  'brother_wife',
  'wife_pregnant',
  'pregnant_consid',
  'consid_sort',
  'sort_sick',
  'sick_need',
  'need_cut',
  'cut_slack',
  'slack_honest',
  'honest_move',
  'move_snack',
  'snack_bedroom',
  'bedroom_insid',
  'insid_box',
  'box_keep',
  'keep_safe',
  'safe_sil',
  'sil_said',
  'said_strang',
  'strang_longer',
  'longer_buy',
  'buy_snack',
  'snack_told',
  'told_actual',
  'actual_still',
  'still_keep',
  'keep_safe',
  'safe_room',
  'room_one',
  'one_touch',
  'touch_side-ey',
  'side-ey_argument',
  'argument_ensu',
  'ensu_husband',
  'husband_brother',
  'brother_came',
  'came_home',
  'home_husband',
  'husband_berat',
  'berat_rude',
  'rude_sil',
  'sil_childish',
  'childish_move',
  'move_snack',
  'snack_keep',
  'keep_bedroom',
  'bedroom_told',
  'told_though',
  'though_know',
  'know_said',
  'said_overreact',
  'overreact_harm',
  'harm_share',
  'share_demand',
  'demand_put',
  'put_whatev',
  'whatev_snack',
  'snack_back',
  'back_fridg',
  'fridg_stop',
  'stop_act',
  'act_like',
  'like_child',
  'child_said',
  'said_sil',
  'sil_husband',
  'husband_get',
  'get_upset',
  'upset_need',
  'need_understand',
  'understand_im',
  'im_diabet',
  'diabet_need',
  'need_snack',
  'snack_essenti',
  'essenti_yell',
  'yell_face',
  'face_call',
  'call_childish',
  'childish_walk',
  'walk_bil',
  'bil_sil',
  'sil_cold',
  'cold_shoulder',
  'shoulder_husband',
  'husband_keep',
  'keep_push',
  'push_put',
  'put_snack',
  'snack_back',
  'back_fridg',
  'fridg_belong',
  'belong_speak',
  'speak_well',
  'well_aita',
  'diabet_keep_packag',
  'keep_packag_snack',
  'packag_snack_near',
  'snack_near_essenti',
  'near_essenti_often',
  'essenti_often_time',
  'often_time_get',
  'time_get_low',
  'get_low_blood',
  'low_blood_suger',
  'blood_suger_due',
  'suger_due_issu',
  'due_issu_appetit',
  'issu_appetit_eat',
  'appetit_eat_lunch',
  'eat_lunch_dinner',
  'lunch_dinner_properli',
  'dinner_properli_brother',
  'properli_brother_law',
  'brother_law_pregnant',
  'law_pregnant_wife',
  'pregnant_wife_move',
  'wife_move_us',
  'move_us_month',
  'us_month_ago',
  'month_ago_issu',
  'ago_issu_began',
  'issu_began_sil',
  'began_sil_start',
  'sil_start_eat',
  'start_eat_snack',
  'eat_snack_usual',
  'snack_usual_keep',
  'usual_keep_insid',
  'keep_insid_fridg',
  'insid_fridg_tri',
  'fridg_tri_buy',
  'tri_buy_snack',
  'buy_snack_sometim',
  'snack_sometim_run',
  'sometim_run_end',
  'run_end_drink',
  'end_drink_water',
  'drink_water_mix',
  'water_mix_sugar',
  'mix_sugar_middl',
  'sugar_middl_night',
  'middl_night_anyth',
  'night_anyth_els',
  'anyth_els_eat',
  'els_eat_husband',
  'eat_husband_go',
  'husband_go_store',
  'go_store_get',
  'store_get_anyth',
  'get_anyth_told',
  'anyth_told_husband',
  'told_husband_told',
  'husband_told_patient',
  'told_patient_brother',
  'patient_brother_wife',
  'brother_wife_pregnant',
  'wife_pregnant_consid',
  'pregnant_consid_sort',
  'consid_sort_sick',
  'sort_sick_need',
  'sick_need_cut',
  'need_cut_slack',
  'cut_slack_honest',
  'slack_honest_move',
  'honest_move_snack',
  'move_snack_bedroom',
  'snack_bedroom_insid',
  'bedroom_insid_box',
  'insid_box_keep',
  'box_keep_safe',
  'keep_safe_sil',
  'safe_sil_said',
  'sil_said_strang',
  'said_strang_longer',
  'strang_longer_buy',
  'longer_buy_snack',
  'buy_snack_told',
  'snack_told_actual',
  'told_actual_still',
  'actual_still_keep',
  'still_keep_safe',
  'keep_safe_room',
  'safe_room_one',
  'room_one_touch',
  'one_touch_side-ey',
  'touch_side-ey_argument',
  'side-ey_argument_ensu',
  'argument_ensu_husband',
  'ensu_husband_brother',
  'husband_brother_came',
  'brother_came_home',
  'came_home_husband',
  'home_husband_berat',
  'husband_berat_rude',
  'berat_rude_sil',
  'rude_sil_childish',
  'sil_childish_move',
  'childish_move_snack',
  'move_snack_keep',
  'snack_keep_bedroom',
  'keep_bedroom_told',
  'bedroom_told_though',
  'told_though_know',
  'though_know_said',
  'know_said_overreact',
  'said_overreact_harm',
  'overreact_harm_share',
  'harm_share_demand',
  'share_demand_put',
  'demand_put_whatev',
  'put_whatev_snack',
  'whatev_snack_back',
  'snack_back_fridg',
  'back_fridg_stop',
  'fridg_stop_act',
  'stop_act_like',
  'act_like_child',
  'like_child_said',
  'child_said_sil',
  'said_sil_husband',
  'sil_husband_get',
  'husband_get_upset',
  'get_upset_need',
  'upset_need_understand',
  'need_understand_im',
  'understand_im_diabet',
  'im_diabet_need',
  'diabet_need_snack',
  'need_snack_essenti',
  'snack_essenti_yell',
  'essenti_yell_face',
  'yell_face_call',
  'face_call_childish',
  'call_childish_walk',
  'childish_walk_bil',
  'walk_bil_sil',
  'bil_sil_cold',
  'sil_cold_shoulder',
  'cold_shoulder_husband',
  'shoulder_husband_keep',
  'husband_keep_push',
  'keep_push_put',
  'push_put_snack',
  'put_snack_back',
  'snack_back_fridg',
  'back_fridg_belong',
  'fridg_belong_speak',
  'belong_speak_well',
  'speak_well_aita'],
 ['im',
  'turn',
  'forti',
  'last',
  'week',
  'im',
  'divorc',
  'teenag',
  'kid',
  'ex',
  'wife',
  'whole',
  'famili',
  'came',
  'gf',
  'appart',
  'last',
  'saturday',
  'birthday',
  'parti',
  'parent',
  'aunt',
  'uncl',
  'cousin',
  'brother',
  'famili',
  'two',
  'kid',
  'gf',
  'yro',
  'son',
  'live',
  'us',
  'recov',
  'alcohol',
  'ive',
  'sober',
  'year',
  'alcohol',
  'absolut',
  'ruin',
  'life',
  'destroy',
  'marriag',
  'nuke',
  'relationship',
  'kid',
  'year',
  'allow',
  'alcohol',
  'home',
  'anyon',
  'serv',
  'toler',
  'entir',
  'famili',
  'know',
  'well',
  'know',
  'entir',
  'histori',
  'alcohol',
  'th',
  'brother',
  'bought',
  'expens',
  'bottl',
  'whiskey',
  'write',
  'heavi',
  'bottl',
  'old',
  'whiskey',
  'probabl',
  'cost',
  'coupl',
  'hundr',
  'buck',
  'gave',
  'bottl',
  'shock',
  'said',
  'drink',
  'thank',
  'gift',
  'open',
  'bottl',
  'start',
  'pour',
  'shot',
  'plastic',
  'cup',
  'everyon',
  'daughter',
  'panic',
  'attack',
  'smell',
  'alcohol',
  'pain',
  'awar',
  'fault',
  'never',
  'forgiv',
  'told',
  'brother',
  'take',
  'alcohol',
  'balconi',
  'leav',
  'took',
  'shot',
  'whiskey',
  'told',
  'serious',
  'stop',
  'proceed',
  'pour',
  'whiskey',
  'said',
  'act',
  'like',
  'sober',
  'saint',
  'ruin',
  'everyon',
  'birthday',
  'year',
  'drink',
  'told',
  'come',
  'hallway',
  'talk',
  'refus',
  'put',
  'glass',
  'whiskey',
  'hand',
  'took',
  'trash',
  'threw',
  'whiskey',
  'bottl',
  'plastic',
  'cup',
  'took',
  'trash',
  'brother',
  'storm',
  'mom',
  'follow',
  'later',
  'call',
  'demand',
  'apolog',
  'disrespect',
  'brother',
  'like',
  'dad',
  'said',
  'overli',
  'sensit',
  'famili',
  'member',
  'also',
  'agre',
  'aita',
  'im_turn',
  'turn_forti',
  'forti_last',
  'last_week',
  'week_im',
  'im_divorc',
  'divorc_teenag',
  'teenag_kid',
  'kid_ex',
  'ex_wife',
  'wife_whole',
  'whole_famili',
  'famili_came',
  'came_gf',
  'gf_appart',
  'appart_last',
  'last_saturday',
  'saturday_birthday',
  'birthday_parti',
  'parti_parent',
  'parent_aunt',
  'aunt_uncl',
  'uncl_cousin',
  'cousin_brother',
  'brother_famili',
  'famili_two',
  'two_kid',
  'kid_gf',
  'gf_yro',
  'yro_son',
  'son_live',
  'live_us',
  'us_recov',
  'recov_alcohol',
  'alcohol_ive',
  'ive_sober',
  'sober_year',
  'year_alcohol',
  'alcohol_absolut',
  'absolut_ruin',
  'ruin_life',
  'life_destroy',
  'destroy_marriag',
  'marriag_nuke',
  'nuke_relationship',
  'relationship_kid',
  'kid_year',
  'year_allow',
  'allow_alcohol',
  'alcohol_home',
  'home_anyon',
  'anyon_serv',
  'serv_toler',
  'toler_entir',
  'entir_famili',
  'famili_know',
  'know_well',
  'well_know',
  'know_entir',
  'entir_histori',
  'histori_alcohol',
  'alcohol_th',
  'th_brother',
  'brother_bought',
  'bought_expens',
  'expens_bottl',
  'bottl_whiskey',
  'whiskey_write',
  'write_heavi',
  'heavi_bottl',
  'bottl_old',
  'old_whiskey',
  'whiskey_probabl',
  'probabl_cost',
  'cost_coupl',
  'coupl_hundr',
  'hundr_buck',
  'buck_gave',
  'gave_bottl',
  'bottl_shock',
  'shock_said',
  'said_drink',
  'drink_thank',
  'thank_gift',
  'gift_open',
  'open_bottl',
  'bottl_start',
  'start_pour',
  'pour_shot',
  'shot_plastic',
  'plastic_cup',
  'cup_everyon',
  'everyon_daughter',
  'daughter_panic',
  'panic_attack',
  'attack_smell',
  'smell_alcohol',
  'alcohol_pain',
  'pain_awar',
  'awar_fault',
  'fault_never',
  'never_forgiv',
  'forgiv_told',
  'told_brother',
  'brother_take',
  'take_alcohol',
  'alcohol_balconi',
  'balconi_leav',
  'leav_took',
  'took_shot',
  'shot_whiskey',
  'whiskey_told',
  'told_serious',
  'serious_stop',
  'stop_proceed',
  'proceed_pour',
  'pour_whiskey',
  'whiskey_said',
  'said_act',
  'act_like',
  'like_sober',
  'sober_saint',
  'saint_ruin',
  'ruin_everyon',
  'everyon_birthday',
  'birthday_year',
  'year_drink',
  'drink_told',
  'told_come',
  'come_hallway',
  'hallway_talk',
  'talk_refus',
  'refus_put',
  'put_glass',
  'glass_whiskey',
  'whiskey_hand',
  'hand_took',
  'took_trash',
  'trash_threw',
  'threw_whiskey',
  'whiskey_bottl',
  'bottl_plastic',
  'plastic_cup',
  'cup_took',
  'took_trash',
  'trash_brother',
  'brother_storm',
  'storm_mom',
  'mom_follow',
  'follow_later',
  'later_call',
  'call_demand',
  'demand_apolog',
  'apolog_disrespect',
  'disrespect_brother',
  'brother_like',
  'like_dad',
  'dad_said',
  'said_overli',
  'overli_sensit',
  'sensit_famili',
  'famili_member',
  'member_also',
  'also_agre',
  'agre_aita',
  'im_turn_forti',
  'turn_forti_last',
  'forti_last_week',
  'last_week_im',
  'week_im_divorc',
  'im_divorc_teenag',
  'divorc_teenag_kid',
  'teenag_kid_ex',
  'kid_ex_wife',
  'ex_wife_whole',
  'wife_whole_famili',
  'whole_famili_came',
  'famili_came_gf',
  'came_gf_appart',
  'gf_appart_last',
  'appart_last_saturday',
  'last_saturday_birthday',
  'saturday_birthday_parti',
  'birthday_parti_parent',
  'parti_parent_aunt',
  'parent_aunt_uncl',
  'aunt_uncl_cousin',
  'uncl_cousin_brother',
  'cousin_brother_famili',
  'brother_famili_two',
  'famili_two_kid',
  'two_kid_gf',
  'kid_gf_yro',
  'gf_yro_son',
  'yro_son_live',
  'son_live_us',
  'live_us_recov',
  'us_recov_alcohol',
  'recov_alcohol_ive',
  'alcohol_ive_sober',
  'ive_sober_year',
  'sober_year_alcohol',
  'year_alcohol_absolut',
  'alcohol_absolut_ruin',
  'absolut_ruin_life',
  'ruin_life_destroy',
  'life_destroy_marriag',
  'destroy_marriag_nuke',
  'marriag_nuke_relationship',
  'nuke_relationship_kid',
  'relationship_kid_year',
  'kid_year_allow',
  'year_allow_alcohol',
  'allow_alcohol_home',
  'alcohol_home_anyon',
  'home_anyon_serv',
  'anyon_serv_toler',
  'serv_toler_entir',
  'toler_entir_famili',
  'entir_famili_know',
  'famili_know_well',
  'know_well_know',
  'well_know_entir',
  'know_entir_histori',
  'entir_histori_alcohol',
  'histori_alcohol_th',
  'alcohol_th_brother',
  'th_brother_bought',
  'brother_bought_expens',
  'bought_expens_bottl',
  'expens_bottl_whiskey',
  'bottl_whiskey_write',
  'whiskey_write_heavi',
  'write_heavi_bottl',
  'heavi_bottl_old',
  'bottl_old_whiskey',
  'old_whiskey_probabl',
  'whiskey_probabl_cost',
  'probabl_cost_coupl',
  'cost_coupl_hundr',
  'coupl_hundr_buck',
  'hundr_buck_gave',
  'buck_gave_bottl',
  'gave_bottl_shock',
  'bottl_shock_said',
  'shock_said_drink',
  'said_drink_thank',
  'drink_thank_gift',
  'thank_gift_open',
  'gift_open_bottl',
  'open_bottl_start',
  'bottl_start_pour',
  'start_pour_shot',
  'pour_shot_plastic',
  'shot_plastic_cup',
  'plastic_cup_everyon',
  'cup_everyon_daughter',
  'everyon_daughter_panic',
  'daughter_panic_attack',
  'panic_attack_smell',
  'attack_smell_alcohol',
  'smell_alcohol_pain',
  'alcohol_pain_awar',
  'pain_awar_fault',
  'awar_fault_never',
  'fault_never_forgiv',
  'never_forgiv_told',
  'forgiv_told_brother',
  'told_brother_take',
  'brother_take_alcohol',
  'take_alcohol_balconi',
  'alcohol_balconi_leav',
  'balconi_leav_took',
  'leav_took_shot',
  'took_shot_whiskey',
  'shot_whiskey_told',
  'whiskey_told_serious',
  'told_serious_stop',
  'serious_stop_proceed',
  'stop_proceed_pour',
  'proceed_pour_whiskey',
  'pour_whiskey_said',
  'whiskey_said_act',
  'said_act_like',
  'act_like_sober',
  'like_sober_saint',
  'sober_saint_ruin',
  'saint_ruin_everyon',
  'ruin_everyon_birthday',
  'everyon_birthday_year',
  'birthday_year_drink',
  'year_drink_told',
  'drink_told_come',
  'told_come_hallway',
  'come_hallway_talk',
  'hallway_talk_refus',
  'talk_refus_put',
  'refus_put_glass',
  'put_glass_whiskey',
  'glass_whiskey_hand',
  'whiskey_hand_took',
  'hand_took_trash',
  'took_trash_threw',
  'trash_threw_whiskey',
  'threw_whiskey_bottl',
  'whiskey_bottl_plastic',
  'bottl_plastic_cup',
  'plastic_cup_took',
  'cup_took_trash',
  'took_trash_brother',
  'trash_brother_storm',
  'brother_storm_mom',
  'storm_mom_follow',
  'mom_follow_later',
  'follow_later_call',
  'later_call_demand',
  'call_demand_apolog',
  'demand_apolog_disrespect',
  'apolog_disrespect_brother',
  'disrespect_brother_like',
  'brother_like_dad',
  'like_dad_said',
  'dad_said_overli',
  'said_overli_sensit',
  'overli_sensit_famili',
  'sensit_famili_member',
  'famili_member_also',
  'member_also_agre',
  'also_agre_aita'],
 ['husband',
  'first',
  'time',
  'parent',
  '-month-old',
  'son',
  'jack',
  'ive',
  'struggl',
  'sinc',
  'born',
  'difficult',
  'pregnanc',
  'son',
  'colic',
  'matern',
  'leav',
  'short',
  'diagnos',
  'ppd',
  'get',
  'treatment',
  'husband',
  'demand',
  'job',
  'id',
  'love',
  'quit',
  'cant',
  'afford',
  'right',
  'mani',
  'friend',
  'state',
  'live',
  'im',
  'lone',
  'mil',
  'poor',
  'health',
  'husband',
  'gone',
  'per',
  'week',
  'help',
  'day',
  'even',
  'sinc',
  'jack',
  'born',
  'plu',
  'home',
  'flood',
  'broken',
  'pipe',
  'month',
  'ago',
  'handl',
  'cleanup',
  'nightmar',
  'mom',
  'live',
  'hour',
  'away',
  'never',
  'offer',
  'help',
  'anyth',
  'weve',
  'alway',
  'pretti',
  'good',
  'relationship',
  'stay-at-hom',
  'mom',
  'love',
  'devot',
  'brother',
  'sister',
  'empti',
  'nester',
  'spend',
  'day',
  'yoga',
  'see',
  'friend',
  'mom',
  'want',
  'see',
  'babi',
  'low',
  'effort',
  'ask',
  'time',
  'could',
  'babysit',
  'run',
  'errand',
  'alway',
  'say',
  'call',
  'height',
  'ppd',
  'sob',
  'say',
  'scare',
  'alon',
  'could',
  'come',
  'brunch',
  'plan',
  'stop',
  'ask',
  'anyth',
  'today…',
  'best',
  'friend',
  '+',
  'year',
  'get',
  'marri',
  'next',
  'weekend',
  'state',
  'hour',
  'away',
  'plane',
  'im',
  'maid',
  'honor',
  'husband',
  'offici',
  'children',
  'invit',
  'venu',
  'unsaf',
  'month',
  'ago',
  'start',
  'look',
  'someon',
  'watch',
  'jack',
  'call',
  'everyon',
  'could',
  'think',
  'month',
  'search',
  'final',
  'found',
  'babysitt',
  'state',
  'friend',
  'friend',
  'well',
  'babysitt',
  'call',
  'friday',
  'cancel',
  'ive',
  'spent',
  'past',
  'day',
  'call',
  'childcar',
  'agenc',
  'zero',
  'luck',
  'final',
  'explain',
  'desper',
  'mom',
  'ask',
  'could',
  'watch',
  'jack',
  'hour',
  'offer',
  'fli',
  'mom',
  'state',
  'us',
  'get',
  'hotel',
  'room',
  'shed',
  'need',
  'watch',
  'hour',
  'tear',
  'beg',
  'mom',
  'said',
  'yoga',
  'class',
  'want',
  'cancel',
  'straw',
  'broke',
  'camel',
  'back',
  'month',
  'empathi',
  'flounder',
  'ppd',
  'told',
  'mom',
  'sinc',
  'never',
  'help',
  'ever',
  'cut',
  'contact',
  'get',
  'see',
  'grandson',
  'know',
  'mom',
  'oblig',
  'help',
  'us',
  'expect',
  'see',
  'son',
  'aita',
  'deni',
  'mom',
  'relationship',
  'grandson',
  'never',
  'offer',
  'help',
  'husband_first',
  'first_time',
  'time_parent',
  'parent_-month-old',
  '-month-old_son',
  'son_jack',
  'jack_ive',
  'ive_struggl',
  'struggl_sinc',
  'sinc_born',
  'born_difficult',
  'difficult_pregnanc',
  'pregnanc_son',
  'son_colic',
  'colic_matern',
  'matern_leav',
  'leav_short',
  'short_diagnos',
  'diagnos_ppd',
  'ppd_get',
  'get_treatment',
  'treatment_husband',
  'husband_demand',
  'demand_job',
  'job_id',
  'id_love',
  'love_quit',
  'quit_cant',
  'cant_afford',
  'afford_right',
  'right_mani',
  'mani_friend',
  'friend_state',
  'state_live',
  'live_im',
  'im_lone',
  'lone_mil',
  'mil_poor',
  'poor_health',
  'health_husband',
  'husband_gone',
  'gone_per',
  'per_week',
  'week_help',
  'help_day',
  'day_even',
  'even_sinc',
  'sinc_jack',
  'jack_born',
  'born_plu',
  'plu_home',
  'home_flood',
  'flood_broken',
  'broken_pipe',
  'pipe_month',
  'month_ago',
  'ago_handl',
  'handl_cleanup',
  'cleanup_nightmar',
  'nightmar_mom',
  'mom_live',
  'live_hour',
  'hour_away',
  'away_never',
  'never_offer',
  'offer_help',
  'help_anyth',
  'anyth_weve',
  'weve_alway',
  'alway_pretti',
  'pretti_good',
  'good_relationship',
  'relationship_stay-at-hom',
  'stay-at-hom_mom',
  'mom_love',
  'love_devot',
  'devot_brother',
  'brother_sister',
  'sister_empti',
  'empti_nester',
  'nester_spend',
  'spend_day',
  'day_yoga',
  'yoga_see',
  'see_friend',
  'friend_mom',
  'mom_want',
  'want_see',
  'see_babi',
  'babi_low',
  'low_effort',
  'effort_ask',
  'ask_time',
  'time_could',
  'could_babysit',
  'babysit_run',
  'run_errand',
  'errand_alway',
  'alway_say',
  'say_call',
  'call_height',
  'height_ppd',
  'ppd_sob',
  'sob_say',
  'say_scare',
  'scare_alon',
  'alon_could',
  'could_come',
  'come_brunch',
  'brunch_plan',
  'plan_stop',
  'stop_ask',
  'ask_anyth',
  'anyth_today…',
  'today…_best',
  'best_friend',
  'friend_+',
  '+_year',
  'year_get',
  'get_marri',
  'marri_next',
  'next_weekend',
  'weekend_state',
  'state_hour',
  'hour_away',
  'away_plane',
  'plane_im',
  'im_maid',
  'maid_honor',
  'honor_husband',
  'husband_offici',
  'offici_children',
  'children_invit',
  'invit_venu',
  'venu_unsaf',
  'unsaf_month',
  'month_ago',
  'ago_start',
  'start_look',
  'look_someon',
  'someon_watch',
  'watch_jack',
  'jack_call',
  'call_everyon',
  'everyon_could',
  'could_think',
  'think_month',
  'month_search',
  'search_final',
  'final_found',
  'found_babysitt',
  'babysitt_state',
  'state_friend',
  'friend_friend',
  'friend_well',
  'well_babysitt',
  'babysitt_call',
  'call_friday',
  'friday_cancel',
  'cancel_ive',
  'ive_spent',
  'spent_past',
  'past_day',
  'day_call',
  'call_childcar',
  'childcar_agenc',
  'agenc_zero',
  'zero_luck',
  'luck_final',
  'final_explain',
  'explain_desper',
  'desper_mom',
  'mom_ask',
  'ask_could',
  'could_watch',
  'watch_jack',
  'jack_hour',
  'hour_offer',
  'offer_fli',
  'fli_mom',
  'mom_state',
  'state_us',
  'us_get',
  'get_hotel',
  'hotel_room',
  'room_shed',
  'shed_need',
  'need_watch',
  'watch_hour',
  'hour_tear',
  'tear_beg',
  'beg_mom',
  'mom_said',
  'said_yoga',
  'yoga_class',
  'class_want',
  'want_cancel',
  'cancel_straw',
  'straw_broke',
  'broke_camel',
  'camel_back',
  'back_month',
  'month_empathi',
  'empathi_flounder',
  'flounder_ppd',
  'ppd_told',
  'told_mom',
  'mom_sinc',
  'sinc_never',
  'never_help',
  'help_ever',
  'ever_cut',
  'cut_contact',
  'contact_get',
  'get_see',
  'see_grandson',
  'grandson_know',
  'know_mom',
  'mom_oblig',
  'oblig_help',
  'help_us',
  'us_expect',
  'expect_see',
  'see_son',
  'son_aita',
  'aita_deni',
  'deni_mom',
  'mom_relationship',
  'relationship_grandson',
  'grandson_never',
  'never_offer',
  'offer_help',
  'husband_first_time',
  'first_time_parent',
  'time_parent_-month-old',
  'parent_-month-old_son',
  '-month-old_son_jack',
  'son_jack_ive',
  'jack_ive_struggl',
  'ive_struggl_sinc',
  'struggl_sinc_born',
  'sinc_born_difficult',
  'born_difficult_pregnanc',
  'difficult_pregnanc_son',
  'pregnanc_son_colic',
  'son_colic_matern',
  'colic_matern_leav',
  'matern_leav_short',
  'leav_short_diagnos',
  'short_diagnos_ppd',
  'diagnos_ppd_get',
  'ppd_get_treatment',
  'get_treatment_husband',
  'treatment_husband_demand',
  'husband_demand_job',
  'demand_job_id',
  'job_id_love',
  'id_love_quit',
  'love_quit_cant',
  'quit_cant_afford',
  'cant_afford_right',
  'afford_right_mani',
  'right_mani_friend',
  'mani_friend_state',
  'friend_state_live',
  'state_live_im',
  'live_im_lone',
  'im_lone_mil',
  'lone_mil_poor',
  'mil_poor_health',
  'poor_health_husband',
  'health_husband_gone',
  'husband_gone_per',
  'gone_per_week',
  'per_week_help',
  'week_help_day',
  'help_day_even',
  'day_even_sinc',
  'even_sinc_jack',
  'sinc_jack_born',
  'jack_born_plu',
  'born_plu_home',
  'plu_home_flood',
  'home_flood_broken',
  'flood_broken_pipe',
  'broken_pipe_month',
  'pipe_month_ago',
  'month_ago_handl',
  'ago_handl_cleanup',
  'handl_cleanup_nightmar',
  'cleanup_nightmar_mom',
  'nightmar_mom_live',
  'mom_live_hour',
  'live_hour_away',
  'hour_away_never',
  'away_never_offer',
  'never_offer_help',
  'offer_help_anyth',
  'help_anyth_weve',
  'anyth_weve_alway',
  'weve_alway_pretti',
  'alway_pretti_good',
  'pretti_good_relationship',
  'good_relationship_stay-at-hom',
  'relationship_stay-at-hom_mom',
  'stay-at-hom_mom_love',
  'mom_love_devot',
  'love_devot_brother',
  'devot_brother_sister',
  'brother_sister_empti',
  'sister_empti_nester',
  'empti_nester_spend',
  'nester_spend_day',
  'spend_day_yoga',
  'day_yoga_see',
  'yoga_see_friend',
  'see_friend_mom',
  'friend_mom_want',
  'mom_want_see',
  'want_see_babi',
  'see_babi_low',
  'babi_low_effort',
  'low_effort_ask',
  'effort_ask_time',
  'ask_time_could',
  'time_could_babysit',
  'could_babysit_run',
  'babysit_run_errand',
  'run_errand_alway',
  'errand_alway_say',
  'alway_say_call',
  'say_call_height',
  'call_height_ppd',
  'height_ppd_sob',
  'ppd_sob_say',
  'sob_say_scare',
  'say_scare_alon',
  'scare_alon_could',
  'alon_could_come',
  'could_come_brunch',
  'come_brunch_plan',
  'brunch_plan_stop',
  'plan_stop_ask',
  'stop_ask_anyth',
  'ask_anyth_today…',
  'anyth_today…_best',
  'today…_best_friend',
  'best_friend_+',
  'friend_+_year',
  '+_year_get',
  'year_get_marri',
  'get_marri_next',
  'marri_next_weekend',
  'next_weekend_state',
  'weekend_state_hour',
  'state_hour_away',
  'hour_away_plane',
  'away_plane_im',
  'plane_im_maid',
  'im_maid_honor',
  'maid_honor_husband',
  'honor_husband_offici',
  'husband_offici_children',
  'offici_children_invit',
  'children_invit_venu',
  'invit_venu_unsaf',
  'venu_unsaf_month',
  'unsaf_month_ago',
  'month_ago_start',
  'ago_start_look',
  'start_look_someon',
  'look_someon_watch',
  'someon_watch_jack',
  'watch_jack_call',
  'jack_call_everyon',
  'call_everyon_could',
  'everyon_could_think',
  'could_think_month',
  'think_month_search',
  'month_search_final',
  'search_final_found',
  'final_found_babysitt',
  'found_babysitt_state',
  'babysitt_state_friend',
  'state_friend_friend',
  'friend_friend_well',
  'friend_well_babysitt',
  'well_babysitt_call',
  'babysitt_call_friday',
  'call_friday_cancel',
  'friday_cancel_ive',
  'cancel_ive_spent',
  'ive_spent_past',
  'spent_past_day',
  'past_day_call',
  'day_call_childcar',
  'call_childcar_agenc',
  'childcar_agenc_zero',
  'agenc_zero_luck',
  'zero_luck_final',
  'luck_final_explain',
  'final_explain_desper',
  'explain_desper_mom',
  'desper_mom_ask',
  'mom_ask_could',
  'ask_could_watch',
  'could_watch_jack',
  'watch_jack_hour',
  'jack_hour_offer',
  'hour_offer_fli',
  'offer_fli_mom',
  'fli_mom_state',
  'mom_state_us',
  'state_us_get',
  'us_get_hotel',
  'get_hotel_room',
  'hotel_room_shed',
  'room_shed_need',
  'shed_need_watch',
  'need_watch_hour',
  'watch_hour_tear',
  'hour_tear_beg',
  'tear_beg_mom',
  'beg_mom_said',
  'mom_said_yoga',
  'said_yoga_class',
  'yoga_class_want',
  'class_want_cancel',
  'want_cancel_straw',
  'cancel_straw_broke',
  'straw_broke_camel',
  'broke_camel_back',
  'camel_back_month',
  'back_month_empathi',
  'month_empathi_flounder',
  'empathi_flounder_ppd',
  'flounder_ppd_told',
  'ppd_told_mom',
  'told_mom_sinc',
  'mom_sinc_never',
  'sinc_never_help',
  'never_help_ever',
  'help_ever_cut',
  'ever_cut_contact',
  'cut_contact_get',
  'contact_get_see',
  'get_see_grandson',
  'see_grandson_know',
  'grandson_know_mom',
  'know_mom_oblig',
  'mom_oblig_help',
  'oblig_help_us',
  'help_us_expect',
  'us_expect_see',
  'expect_see_son',
  'see_son_aita',
  'son_aita_deni',
  'aita_deni_mom',
  'deni_mom_relationship',
  'mom_relationship_grandson',
  'relationship_grandson_never',
  'grandson_never_offer',
  'never_offer_help'],
 ['happen',
  'last',
  'night',
  'im',
  'still',
  'hella',
  'confus',
  'whole',
  'thing',
  'date',
  'boyfriend',
  'month',
  'famili',
  'italian',
  'origin',
  'take',
  'lot',
  'pride',
  'invit',
  'hous',
  'sever',
  'time',
  'last',
  'night',
  'parent',
  'came',
  'apt',
  'first',
  'time',
  'said',
  'visit',
  'friend',
  'decid',
  'stop',
  'dinner',
  'freak',
  'said',
  'dinner',
  'late',
  'work',
  'time',
  'cook',
  'order',
  'pizza',
  'us',
  'second',
  'parent',
  'saw',
  'pizza',
  'got',
  'piss',
  'dad',
  'gave',
  'nasti',
  'stare',
  'said',
  'intent',
  'serv',
  'pizza',
  'italian',
  'word',
  'claim',
  'mock',
  'food',
  'assum',
  'caus',
  'theyr',
  'italian',
  'theyd',
  'eat',
  'italian',
  'food',
  'call',
  'racist',
  'confus',
  'said',
  'think',
  'interepret',
  'way',
  'said',
  'asian',
  'guest',
  'serv',
  'susi',
  'would',
  'like',
  'serv',
  'macdonald',
  'fri',
  'everi',
  'time',
  'visit',
  'sinc',
  'american',
  'eat',
  'stun',
  'word',
  'basic',
  'say',
  'theyr',
  'italian',
  'assum',
  'theyd',
  'like',
  'pizza',
  'butwho',
  'like',
  'pizza',
  'boyfriend',
  'mom',
  'got',
  'said',
  'want',
  'leav',
  'boyfriend',
  'tri',
  'get',
  'stay',
  'take',
  'easi',
  'left',
  'eventu',
  'blew',
  'say',
  'mess',
  'serv',
  'pizza',
  'insult',
  'indirectli',
  'told',
  'call',
  'apolog',
  'said',
  'time',
  'cook',
  'anyth',
  'show',
  'unexpectedli',
  'got',
  'upset',
  'ask',
  'parent',
  'need',
  'permiss',
  'visit',
  '*',
  '*',
  'back',
  'think',
  'hed',
  'call',
  'nut',
  'kept',
  'say',
  'insult',
  'parent',
  'need',
  'apolog',
  'im',
  'utterli',
  'genuinli',
  'confus',
  'aita',
  'happen_last',
  'last_night',
  'night_im',
  'im_still',
  'still_hella',
  'hella_confus',
  'confus_whole',
  'whole_thing',
  'thing_date',
  'date_boyfriend',
  'boyfriend_month',
  'month_famili',
  'famili_italian',
  'italian_origin',
  'origin_take',
  'take_lot',
  'lot_pride',
  'pride_invit',
  'invit_hous',
  'hous_sever',
  'sever_time',
  'time_last',
  'last_night',
  'night_parent',
  'parent_came',
  'came_apt',
  'apt_first',
  'first_time',
  'time_said',
  'said_visit',
  'visit_friend',
  'friend_decid',
  'decid_stop',
  'stop_dinner',
  'dinner_freak',
  'freak_said',
  'said_dinner',
  'dinner_late',
  'late_work',
  'work_time',
  'time_cook',
  'cook_order',
  'order_pizza',
  'pizza_us',
  'us_second',
  'second_parent',
  'parent_saw',
  'saw_pizza',
  'pizza_got',
  'got_piss',
  'piss_dad',
  'dad_gave',
  'gave_nasti',
  'nasti_stare',
  'stare_said',
  'said_intent',
  'intent_serv',
  'serv_pizza',
  'pizza_italian',
  'italian_word',
  'word_claim',
  'claim_mock',
  'mock_food',
  'food_assum',
  'assum_caus',
  'caus_theyr',
  'theyr_italian',
  'italian_theyd',
  'theyd_eat',
  'eat_italian',
  'italian_food',
  'food_call',
  'call_racist',
  'racist_confus',
  'confus_said',
  'said_think',
  'think_interepret',
  'interepret_way',
  'way_said',
  'said_asian',
  'asian_guest',
  'guest_serv',
  'serv_susi',
  'susi_would',
  'would_like',
  'like_serv',
  'serv_macdonald',
  'macdonald_fri',
  'fri_everi',
  'everi_time',
  'time_visit',
  'visit_sinc',
  'sinc_american',
  'american_eat',
  'eat_stun',
  'stun_word',
  'word_basic',
  'basic_say',
  'say_theyr',
  'theyr_italian',
  'italian_assum',
  'assum_theyd',
  'theyd_like',
  'like_pizza',
  'pizza_butwho',
  'butwho_like',
  'like_pizza',
  'pizza_boyfriend',
  'boyfriend_mom',
  'mom_got',
  'got_said',
  'said_want',
  'want_leav',
  'leav_boyfriend',
  'boyfriend_tri',
  'tri_get',
  'get_stay',
  'stay_take',
  'take_easi',
  'easi_left',
  'left_eventu',
  'eventu_blew',
  'blew_say',
  'say_mess',
  'mess_serv',
  'serv_pizza',
  'pizza_insult',
  'insult_indirectli',
  'indirectli_told',
  'told_call',
  'call_apolog',
  'apolog_said',
  'said_time',
  'time_cook',
  'cook_anyth',
  'anyth_show',
  'show_unexpectedli',
  'unexpectedli_got',
  'got_upset',
  'upset_ask',
  'ask_parent',
  'parent_need',
  'need_permiss',
  'permiss_visit',
  'visit_*',
  '*_*',
  '*_back',
  'back_think',
  'think_hed',
  'hed_call',
  'call_nut',
  'nut_kept',
  'kept_say',
  'say_insult',
  'insult_parent',
  'parent_need',
  'need_apolog',
  'apolog_im',
  'im_utterli',
  'utterli_genuinli',
  'genuinli_confus',
  'confus_aita',
  'happen_last_night',
  'last_night_im',
  'night_im_still',
  'im_still_hella',
  'still_hella_confus',
  'hella_confus_whole',
  'confus_whole_thing',
  'whole_thing_date',
  'thing_date_boyfriend',
  'date_boyfriend_month',
  'boyfriend_month_famili',
  'month_famili_italian',
  'famili_italian_origin',
  'italian_origin_take',
  'origin_take_lot',
  'take_lot_pride',
  'lot_pride_invit',
  'pride_invit_hous',
  'invit_hous_sever',
  'hous_sever_time',
  'sever_time_last',
  'time_last_night',
  'last_night_parent',
  'night_parent_came',
  'parent_came_apt',
  'came_apt_first',
  'apt_first_time',
  'first_time_said',
  'time_said_visit',
  'said_visit_friend',
  'visit_friend_decid',
  'friend_decid_stop',
  'decid_stop_dinner',
  'stop_dinner_freak',
  'dinner_freak_said',
  'freak_said_dinner',
  'said_dinner_late',
  'dinner_late_work',
  'late_work_time',
  'work_time_cook',
  'time_cook_order',
  'cook_order_pizza',
  'order_pizza_us',
  'pizza_us_second',
  'us_second_parent',
  'second_parent_saw',
  'parent_saw_pizza',
  'saw_pizza_got',
  'pizza_got_piss',
  'got_piss_dad',
  'piss_dad_gave',
  'dad_gave_nasti',
  'gave_nasti_stare',
  'nasti_stare_said',
  'stare_said_intent',
  'said_intent_serv',
  'intent_serv_pizza',
  'serv_pizza_italian',
  'pizza_italian_word',
  'italian_word_claim',
  'word_claim_mock',
  'claim_mock_food',
  'mock_food_assum',
  'food_assum_caus',
  'assum_caus_theyr',
  'caus_theyr_italian',
  'theyr_italian_theyd',
  'italian_theyd_eat',
  'theyd_eat_italian',
  'eat_italian_food',
  'italian_food_call',
  'food_call_racist',
  'call_racist_confus',
  'racist_confus_said',
  'confus_said_think',
  'said_think_interepret',
  'think_interepret_way',
  'interepret_way_said',
  'way_said_asian',
  'said_asian_guest',
  'asian_guest_serv',
  'guest_serv_susi',
  'serv_susi_would',
  'susi_would_like',
  'would_like_serv',
  'like_serv_macdonald',
  'serv_macdonald_fri',
  'macdonald_fri_everi',
  'fri_everi_time',
  'everi_time_visit',
  'time_visit_sinc',
  'visit_sinc_american',
  'sinc_american_eat',
  'american_eat_stun',
  'eat_stun_word',
  'stun_word_basic',
  'word_basic_say',
  'basic_say_theyr',
  'say_theyr_italian',
  'theyr_italian_assum',
  'italian_assum_theyd',
  'assum_theyd_like',
  'theyd_like_pizza',
  'like_pizza_butwho',
  'pizza_butwho_like',
  'butwho_like_pizza',
  'like_pizza_boyfriend',
  'pizza_boyfriend_mom',
  'boyfriend_mom_got',
  'mom_got_said',
  'got_said_want',
  'said_want_leav',
  'want_leav_boyfriend',
  'leav_boyfriend_tri',
  'boyfriend_tri_get',
  'tri_get_stay',
  'get_stay_take',
  'stay_take_easi',
  'take_easi_left',
  'easi_left_eventu',
  'left_eventu_blew',
  'eventu_blew_say',
  'blew_say_mess',
  'say_mess_serv',
  'mess_serv_pizza',
  'serv_pizza_insult',
  'pizza_insult_indirectli',
  'insult_indirectli_told',
  'indirectli_told_call',
  'told_call_apolog',
  'call_apolog_said',
  'apolog_said_time',
  'said_time_cook',
  'time_cook_anyth',
  'cook_anyth_show',
  'anyth_show_unexpectedli',
  'show_unexpectedli_got',
  'unexpectedli_got_upset',
  'got_upset_ask',
  'upset_ask_parent',
  'ask_parent_need',
  'parent_need_permiss',
  'need_permiss_visit',
  'permiss_visit_*',
  'visit_*_*',
  '*_*_back',
  '*_back_think',
  'back_think_hed',
  'think_hed_call',
  'hed_call_nut',
  'call_nut_kept',
  'nut_kept_say',
  'kept_say_insult',
  'say_insult_parent',
  'insult_parent_need',
  'parent_need_apolog',
  'need_apolog_im',
  'apolog_im_utterli',
  'im_utterli_genuinli',
  'utterli_genuinli_confus',
  'genuinli_confus_aita'],
 ['littl',
  'girl',
  'mia',
  'start',
  'new',
  'school',
  'recent',
  'move',
  'start',
  'start',
  'new',
  'school',
  'got',
  'list',
  'suppli',
  'teacher',
  'requir',
  'plu',
  'extra',
  'like',
  'extra',
  'pack',
  'crayon',
  'etc',
  'know',
  'deal',
  'necessarili',
  'agre',
  'hill',
  'die',
  'got',
  'everyth',
  'list',
  'howev',
  'also',
  'got',
  'child',
  'suppli',
  'list',
  'say',
  'label',
  'mia',
  'particular',
  'type',
  'stationeri',
  'like',
  'ive',
  'heard',
  'horror',
  'stori',
  'kid',
  'stuff',
  'redistrubut',
  'end',
  'crappi',
  'suppli',
  'sat',
  'mia',
  'got',
  'personalis',
  'binder',
  'notebook',
  'pencil',
  'name',
  'etsi',
  'part',
  'item',
  'cant',
  'remov',
  'given',
  'anoth',
  'kid',
  'like',
  'said',
  'request',
  'bought',
  'extra',
  'binder',
  'etc',
  'turn',
  'right',
  'mia',
  'got',
  'home',
  'brought',
  'passiv',
  'aggress',
  'note',
  'teacher',
  'mia',
  'suppli',
  'appar',
  'tri',
  'gather',
  'suppli',
  'kid',
  'pick',
  'anoth',
  'one',
  'request',
  'switch',
  'mia',
  'suppli',
  'gener',
  'one',
  'im',
  'refus',
  'teacher',
  'request',
  'stop',
  'chat',
  'regard',
  'mia',
  'suppli',
  'post',
  'local',
  'fb',
  'group',
  'parent',
  'divid',
  'need',
  'anoth',
  'opinion',
  'go',
  'meet',
  'mia',
  'teacher',
  'asshol',
  'buy',
  'child',
  'person',
  'stationeri',
  'taken',
  'away',
  'littl_girl',
  'girl_mia',
  'mia_start',
  'start_new',
  'new_school',
  'school_recent',
  'recent_move',
  'move_start',
  'start_start',
  'start_new',
  'new_school',
  'school_got',
  'got_list',
  'list_suppli',
  'suppli_teacher',
  'teacher_requir',
  'requir_plu',
  'plu_extra',
  'extra_like',
  'like_extra',
  'extra_pack',
  'pack_crayon',
  'crayon_etc',
  'etc_know',
  'know_deal',
  'deal_necessarili',
  'necessarili_agre',
  'agre_hill',
  'hill_die',
  'die_got',
  'got_everyth',
  'everyth_list',
  'list_howev',
  'howev_also',
  'also_got',
  'got_child',
  'child_suppli',
  'suppli_list',
  'list_say',
  'say_label',
  'label_mia',
  'mia_particular',
  'particular_type',
  'type_stationeri',
  'stationeri_like',
  'like_ive',
  'ive_heard',
  'heard_horror',
  'horror_stori',
  'stori_kid',
  'kid_stuff',
  'stuff_redistrubut',
  'redistrubut_end',
  'end_crappi',
  'crappi_suppli',
  'suppli_sat',
  'sat_mia',
  'mia_got',
  'got_personalis',
  'personalis_binder',
  'binder_notebook',
  'notebook_pencil',
  'pencil_name',
  'name_etsi',
  'etsi_part',
  'part_item',
  'item_cant',
  'cant_remov',
  'remov_given',
  'given_anoth',
  'anoth_kid',
  'kid_like',
  'like_said',
  'said_request',
  'request_bought',
  'bought_extra',
  'extra_binder',
  'binder_etc',
  'etc_turn',
  'turn_right',
  'right_mia',
  'mia_got',
  'got_home',
  'home_brought',
  'brought_passiv',
  'passiv_aggress',
  'aggress_note',
  'note_teacher',
  'teacher_mia',
  'mia_suppli',
  'suppli_appar',
  'appar_tri',
  'tri_gather',
  'gather_suppli',
  'suppli_kid',
  'kid_pick',
  'pick_anoth',
  'anoth_one',
  'one_request',
  'request_switch',
  'switch_mia',
  'mia_suppli',
  'suppli_gener',
  'gener_one',
  'one_im',
  'im_refus',
  'refus_teacher',
  'teacher_request',
  'request_stop',
  'stop_chat',
  'chat_regard',
  'regard_mia',
  'mia_suppli',
  'suppli_post',
  'post_local',
  'local_fb',
  'fb_group',
  'group_parent',
  'parent_divid',
  'divid_need',
  'need_anoth',
  'anoth_opinion',
  'opinion_go',
  'go_meet',
  'meet_mia',
  'mia_teacher',
  'teacher_asshol',
  'asshol_buy',
  'buy_child',
  'child_person',
  'person_stationeri',
  'stationeri_taken',
  'taken_away',
  'littl_girl_mia',
  'girl_mia_start',
  'mia_start_new',
  'start_new_school',
  'new_school_recent',
  'school_recent_move',
  'recent_move_start',
  'move_start_start',
  'start_start_new',
  'start_new_school',
  'new_school_got',
  'school_got_list',
  'got_list_suppli',
  'list_suppli_teacher',
  'suppli_teacher_requir',
  'teacher_requir_plu',
  'requir_plu_extra',
  'plu_extra_like',
  'extra_like_extra',
  'like_extra_pack',
  'extra_pack_crayon',
  'pack_crayon_etc',
  'crayon_etc_know',
  'etc_know_deal',
  'know_deal_necessarili',
  'deal_necessarili_agre',
  'necessarili_agre_hill',
  'agre_hill_die',
  'hill_die_got',
  'die_got_everyth',
  'got_everyth_list',
  'everyth_list_howev',
  'list_howev_also',
  'howev_also_got',
  'also_got_child',
  'got_child_suppli',
  'child_suppli_list',
  'suppli_list_say',
  'list_say_label',
  'say_label_mia',
  'label_mia_particular',
  'mia_particular_type',
  'particular_type_stationeri',
  'type_stationeri_like',
  'stationeri_like_ive',
  'like_ive_heard',
  'ive_heard_horror',
  'heard_horror_stori',
  'horror_stori_kid',
  'stori_kid_stuff',
  'kid_stuff_redistrubut',
  'stuff_redistrubut_end',
  'redistrubut_end_crappi',
  'end_crappi_suppli',
  'crappi_suppli_sat',
  'suppli_sat_mia',
  'sat_mia_got',
  'mia_got_personalis',
  'got_personalis_binder',
  'personalis_binder_notebook',
  'binder_notebook_pencil',
  'notebook_pencil_name',
  'pencil_name_etsi',
  'name_etsi_part',
  'etsi_part_item',
  'part_item_cant',
  'item_cant_remov',
  'cant_remov_given',
  'remov_given_anoth',
  'given_anoth_kid',
  'anoth_kid_like',
  'kid_like_said',
  'like_said_request',
  'said_request_bought',
  'request_bought_extra',
  'bought_extra_binder',
  'extra_binder_etc',
  'binder_etc_turn',
  'etc_turn_right',
  'turn_right_mia',
  'right_mia_got',
  'mia_got_home',
  'got_home_brought',
  'home_brought_passiv',
  'brought_passiv_aggress',
  'passiv_aggress_note',
  'aggress_note_teacher',
  'note_teacher_mia',
  'teacher_mia_suppli',
  'mia_suppli_appar',
  'suppli_appar_tri',
  'appar_tri_gather',
  'tri_gather_suppli',
  'gather_suppli_kid',
  'suppli_kid_pick',
  'kid_pick_anoth',
  'pick_anoth_one',
  'anoth_one_request',
  'one_request_switch',
  'request_switch_mia',
  'switch_mia_suppli',
  'mia_suppli_gener',
  'suppli_gener_one',
  'gener_one_im',
  'one_im_refus',
  'im_refus_teacher',
  'refus_teacher_request',
  'teacher_request_stop',
  'request_stop_chat',
  'stop_chat_regard',
  'chat_regard_mia',
  'regard_mia_suppli',
  'mia_suppli_post',
  'suppli_post_local',
  'post_local_fb',
  'local_fb_group',
  'fb_group_parent',
  'group_parent_divid',
  'parent_divid_need',
  'divid_need_anoth',
  'need_anoth_opinion',
  'anoth_opinion_go',
  'opinion_go_meet',
  'go_meet_mia',
  'meet_mia_teacher',
  'mia_teacher_asshol',
  'teacher_asshol_buy',
  'asshol_buy_child',
  'buy_child_person',
  'child_person_stationeri',
  'person_stationeri_taken',
  'stationeri_taken_away'],
 ['begin',
  'love',
  'son',
  'heart',
  'blew',
  'marriag',
  'cheat',
  'move',
  'back',
  'home',
  'three',
  'children',
  'oldest',
  'daughter',
  'twin',
  'mf',
  'oldest',
  'got',
  'marri',
  'wonder',
  'man',
  'younger',
  'daughter',
  'go',
  'grad',
  'school',
  'oversea',
  'leav',
  'son',
  'let',
  'call',
  'carlo',
  'alway',
  'hand',
  'got',
  'marri',
  'ex',
  'wife',
  'three',
  'year',
  'old',
  'daughter',
  'love',
  'matter',
  'grandmoth',
  'child',
  'togeth',
  'grandchild',
  'two',
  'covid',
  'caus',
  'lot',
  'stress',
  'life',
  'work',
  'fli',
  'fli',
  'camp',
  'job',
  'gone',
  'two',
  'week',
  'time',
  'home',
  'two',
  'week',
  'make',
  'good',
  'money',
  'enjoy',
  'spend',
  'mayb',
  'littl',
  'bit',
  'much',
  'carlo',
  'cheat',
  'wife',
  'cowork',
  'judg',
  'perfect',
  'chose',
  'leav',
  'wife',
  'children',
  'move',
  'back',
  'home',
  'realli',
  'make',
  'sens',
  'rent',
  'apart',
  'someth',
  'day',
  'month',
  'home',
  'allow',
  'decid',
  'ass',
  'opinion',
  'bring',
  'dog',
  'grandbabi',
  'love',
  'dog',
  'tri',
  'punish',
  'ex',
  'tell',
  'leav',
  'beauti',
  'border',
  'colli',
  'perfect',
  'dog',
  'home',
  'huge',
  'yard',
  'lot',
  'walk',
  'trail',
  'nearbi',
  'even',
  'leash',
  'park',
  'ten',
  'minut',
  'drive',
  'away',
  'live',
  'apart',
  'downtown',
  'allow',
  'dog',
  'one',
  'would',
  'someth',
  'sedat',
  'non',
  'shed',
  'like',
  'maltes',
  'swear',
  'tri',
  'watch',
  'dog',
  'son',
  'irrespons',
  'walk',
  'much',
  'brush',
  'dog',
  'hold',
  'dog',
  'lever',
  'way',
  'ex',
  'life',
  'last',
  'straw',
  'last',
  'time',
  'work',
  'away',
  'two',
  'week',
  'nd',
  'came',
  'home',
  'one',
  'day',
  'fli',
  'unit',
  'state',
  'vacat',
  'new',
  'girlfriend',
  'call',
  'dil',
  'check',
  'want',
  'pup',
  'back',
  'almost',
  'cri',
  'joy',
  'pack',
  'everyth',
  'belong',
  'dog',
  'took',
  'grandchildren',
  'ecstat',
  'son',
  'came',
  'home',
  'three',
  'day',
  'leav',
  'work',
  'ask',
  'dog',
  'told',
  'truth',
  'call',
  'asshol',
  'give',
  'away',
  'pet',
  'also',
  'said',
  'tri',
  'go',
  'get',
  'dog',
  'bring',
  'back',
  'welcom',
  'home',
  'aita',
  'begin_love',
  'love_son',
  'son_heart',
  'heart_blew',
  'blew_marriag',
  'marriag_cheat',
  'cheat_move',
  'move_back',
  'back_home',
  'home_three',
  'three_children',
  'children_oldest',
  'oldest_daughter',
  'daughter_twin',
  'twin_mf',
  'mf_oldest',
  'oldest_got',
  'got_marri',
  'marri_wonder',
  'wonder_man',
  'man_younger',
  'younger_daughter',
  'daughter_go',
  'go_grad',
  'grad_school',
  'school_oversea',
  'oversea_leav',
  'leav_son',
  'son_let',
  'let_call',
  'call_carlo',
  'carlo_alway',
  'alway_hand',
  'hand_got',
  'got_marri',
  'marri_ex',
  'ex_wife',
  'wife_three',
  'three_year',
  'year_old',
  'old_daughter',
  'daughter_love',
  'love_matter',
  'matter_grandmoth',
  'grandmoth_child',
  'child_togeth',
  'togeth_grandchild',
  'grandchild_two',
  'two_covid',
  'covid_caus',
  'caus_lot',
  'lot_stress',
  'stress_life',
  'life_work',
  'work_fli',
  'fli_fli',
  'fli_camp',
  'camp_job',
  'job_gone',
  'gone_two',
  'two_week',
  'week_time',
  'time_home',
  'home_two',
  'two_week',
  'week_make',
  'make_good',
  'good_money',
  'money_enjoy',
  'enjoy_spend',
  'spend_mayb',
  'mayb_littl',
  'littl_bit',
  'bit_much',
  'much_carlo',
  'carlo_cheat',
  'cheat_wife',
  'wife_cowork',
  'cowork_judg',
  'judg_perfect',
  'perfect_chose',
  'chose_leav',
  'leav_wife',
  'wife_children',
  'children_move',
  'move_back',
  'back_home',
  'home_realli',
  'realli_make',
  'make_sens',
  'sens_rent',
  'rent_apart',
  'apart_someth',
  'someth_day',
  'day_month',
  'month_home',
  'home_allow',
  'allow_decid',
  'decid_ass',
  'ass_opinion',
  'opinion_bring',
  'bring_dog',
  'dog_grandbabi',
  'grandbabi_love',
  'love_dog',
  'dog_tri',
  'tri_punish',
  'punish_ex',
  'ex_tell',
  'tell_leav',
  'leav_beauti',
  'beauti_border',
  'border_colli',
  'colli_perfect',
  'perfect_dog',
  'dog_home',
  'home_huge',
  'huge_yard',
  'yard_lot',
  'lot_walk',
  'walk_trail',
  'trail_nearbi',
  'nearbi_even',
  'even_leash',
  'leash_park',
  'park_ten',
  'ten_minut',
  'minut_drive',
  'drive_away',
  'away_live',
  'live_apart',
  'apart_downtown',
  'downtown_allow',
  'allow_dog',
  'dog_one',
  'one_would',
  'would_someth',
  'someth_sedat',
  'sedat_non',
  'non_shed',
  'shed_like',
  'like_maltes',
  'maltes_swear',
  'swear_tri',
  'tri_watch',
  'watch_dog',
  'dog_son',
  'son_irrespons',
  'irrespons_walk',
  'walk_much',
  'much_brush',
  'brush_dog',
  'dog_hold',
  'hold_dog',
  'dog_lever',
  'lever_way',
  'way_ex',
  'ex_life',
  'life_last',
  'last_straw',
  'straw_last',
  'last_time',
  'time_work',
  'work_away',
  'away_two',
  'two_week',
  'week_nd',
  'nd_came',
  'came_home',
  'home_one',
  'one_day',
  'day_fli',
  'fli_unit',
  'unit_state',
  'state_vacat',
  'vacat_new',
  'new_girlfriend',
  'girlfriend_call',
  'call_dil',
  'dil_check',
  'check_want',
  'want_pup',
  'pup_back',
  'back_almost',
  'almost_cri',
  'cri_joy',
  'joy_pack',
  'pack_everyth',
  'everyth_belong',
  'belong_dog',
  'dog_took',
  'took_grandchildren',
  'grandchildren_ecstat',
  'ecstat_son',
  'son_came',
  'came_home',
  'home_three',
  'three_day',
  'day_leav',
  'leav_work',
  'work_ask',
  'ask_dog',
  'dog_told',
  'told_truth',
  'truth_call',
  'call_asshol',
  'asshol_give',
  'give_away',
  'away_pet',
  'pet_also',
  'also_said',
  'said_tri',
  'tri_go',
  'go_get',
  'get_dog',
  'dog_bring',
  'bring_back',
  'back_welcom',
  'welcom_home',
  'home_aita',
  'begin_love_son',
  'love_son_heart',
  'son_heart_blew',
  'heart_blew_marriag',
  'blew_marriag_cheat',
  'marriag_cheat_move',
  'cheat_move_back',
  'move_back_home',
  'back_home_three',
  'home_three_children',
  'three_children_oldest',
  'children_oldest_daughter',
  'oldest_daughter_twin',
  'daughter_twin_mf',
  'twin_mf_oldest',
  'mf_oldest_got',
  'oldest_got_marri',
  'got_marri_wonder',
  'marri_wonder_man',
  'wonder_man_younger',
  'man_younger_daughter',
  'younger_daughter_go',
  'daughter_go_grad',
  'go_grad_school',
  'grad_school_oversea',
  'school_oversea_leav',
  'oversea_leav_son',
  'leav_son_let',
  'son_let_call',
  'let_call_carlo',
  'call_carlo_alway',
  'carlo_alway_hand',
  'alway_hand_got',
  'hand_got_marri',
  'got_marri_ex',
  'marri_ex_wife',
  'ex_wife_three',
  'wife_three_year',
  'three_year_old',
  'year_old_daughter',
  'old_daughter_love',
  'daughter_love_matter',
  'love_matter_grandmoth',
  'matter_grandmoth_child',
  'grandmoth_child_togeth',
  'child_togeth_grandchild',
  'togeth_grandchild_two',
  'grandchild_two_covid',
  'two_covid_caus',
  'covid_caus_lot',
  'caus_lot_stress',
  'lot_stress_life',
  'stress_life_work',
  'life_work_fli',
  'work_fli_fli',
  'fli_fli_camp',
  'fli_camp_job',
  'camp_job_gone',
  'job_gone_two',
  'gone_two_week',
  'two_week_time',
  'week_time_home',
  'time_home_two',
  'home_two_week',
  'two_week_make',
  'week_make_good',
  'make_good_money',
  'good_money_enjoy',
  'money_enjoy_spend',
  'enjoy_spend_mayb',
  'spend_mayb_littl',
  'mayb_littl_bit',
  'littl_bit_much',
  'bit_much_carlo',
  'much_carlo_cheat',
  'carlo_cheat_wife',
  'cheat_wife_cowork',
  'wife_cowork_judg',
  'cowork_judg_perfect',
  'judg_perfect_chose',
  'perfect_chose_leav',
  'chose_leav_wife',
  'leav_wife_children',
  'wife_children_move',
  'children_move_back',
  'move_back_home',
  'back_home_realli',
  'home_realli_make',
  'realli_make_sens',
  'make_sens_rent',
  'sens_rent_apart',
  'rent_apart_someth',
  'apart_someth_day',
  'someth_day_month',
  'day_month_home',
  'month_home_allow',
  'home_allow_decid',
  'allow_decid_ass',
  'decid_ass_opinion',
  'ass_opinion_bring',
  'opinion_bring_dog',
  'bring_dog_grandbabi',
  'dog_grandbabi_love',
  'grandbabi_love_dog',
  'love_dog_tri',
  'dog_tri_punish',
  'tri_punish_ex',
  'punish_ex_tell',
  'ex_tell_leav',
  'tell_leav_beauti',
  'leav_beauti_border',
  'beauti_border_colli',
  'border_colli_perfect',
  'colli_perfect_dog',
  'perfect_dog_home',
  'dog_home_huge',
  'home_huge_yard',
  'huge_yard_lot',
  'yard_lot_walk',
  'lot_walk_trail',
  'walk_trail_nearbi',
  'trail_nearbi_even',
  'nearbi_even_leash',
  'even_leash_park',
  'leash_park_ten',
  'park_ten_minut',
  'ten_minut_drive',
  'minut_drive_away',
  'drive_away_live',
  'away_live_apart',
  'live_apart_downtown',
  'apart_downtown_allow',
  'downtown_allow_dog',
  'allow_dog_one',
  'dog_one_would',
  'one_would_someth',
  'would_someth_sedat',
  'someth_sedat_non',
  'sedat_non_shed',
  'non_shed_like',
  'shed_like_maltes',
  'like_maltes_swear',
  'maltes_swear_tri',
  'swear_tri_watch',
  'tri_watch_dog',
  'watch_dog_son',
  'dog_son_irrespons',
  'son_irrespons_walk',
  'irrespons_walk_much',
  'walk_much_brush',
  'much_brush_dog',
  'brush_dog_hold',
  'dog_hold_dog',
  'hold_dog_lever',
  'dog_lever_way',
  'lever_way_ex',
  'way_ex_life',
  'ex_life_last',
  'life_last_straw',
  'last_straw_last',
  'straw_last_time',
  'last_time_work',
  'time_work_away',
  'work_away_two',
  'away_two_week',
  'two_week_nd',
  'week_nd_came',
  'nd_came_home',
  'came_home_one',
  'home_one_day',
  'one_day_fli',
  'day_fli_unit',
  'fli_unit_state',
  'unit_state_vacat',
  'state_vacat_new',
  'vacat_new_girlfriend',
  'new_girlfriend_call',
  'girlfriend_call_dil',
  'call_dil_check',
  'dil_check_want',
  'check_want_pup',
  'want_pup_back',
  'pup_back_almost',
  'back_almost_cri',
  'almost_cri_joy',
  'cri_joy_pack',
  'joy_pack_everyth',
  'pack_everyth_belong',
  'everyth_belong_dog',
  'belong_dog_took',
  'dog_took_grandchildren',
  'took_grandchildren_ecstat',
  'grandchildren_ecstat_son',
  'ecstat_son_came',
  'son_came_home',
  'came_home_three',
  'home_three_day',
  'three_day_leav',
  'day_leav_work',
  'leav_work_ask',
  'work_ask_dog',
  'ask_dog_told',
  'dog_told_truth',
  'told_truth_call',
  'truth_call_asshol',
  'call_asshol_give',
  'asshol_give_away',
  'give_away_pet',
  'away_pet_also',
  'pet_also_said',
  'also_said_tri',
  'said_tri_go',
  'tri_go_get',
  'go_get_dog',
  'get_dog_bring',
  'dog_bring_back',
  'bring_back_welcom',
  'back_welcom_home',
  'welcom_home_aita'],
 ['weve',
  'togeth',
  'year',
  'live',
  'togeth',
  'first',
  'date',
  'ask',
  'pursu',
  'higher',
  'educ',
  'high',
  'school',
  'explain',
  'fail',
  'high',
  'school',
  'believ',
  'high',
  'achiev',
  'possibl',
  'understand',
  'somebodi',
  'could',
  'fail',
  'high',
  'school',
  'find',
  'amus',
  'teas',
  'truth',
  'bother',
  'good',
  'job',
  'ive',
  'done',
  'great',
  'thing',
  'despit',
  'tradit',
  'educ',
  'worst',
  'littl',
  'annoy',
  'refus',
  'lose',
  'sleep',
  'tonight',
  'friend',
  'convers',
  'turn',
  'toward',
  'high',
  'school',
  'subject',
  'list',
  'studi',
  'final',
  'year',
  'began',
  'laugh',
  'say',
  'matter',
  'fail',
  'anyway',
  'sinc',
  'hed',
  'much',
  'drink',
  'took',
  'littl',
  'far',
  'start',
  'poke',
  'fun',
  'idiot',
  'fail',
  'high',
  'school',
  'tri',
  'play',
  'alcohol',
  'got',
  'better',
  'well',
  'snap',
  'respond',
  'earn',
  '$',
  'per',
  'hour',
  'earn',
  '$',
  'right',
  'well',
  'high',
  'school',
  'set',
  'success',
  'one',
  'friend',
  'said',
  'id',
  'ruin',
  'night',
  'coupl',
  'friend',
  'said',
  'come',
  'weve_togeth',
  'togeth_year',
  'year_live',
  'live_togeth',
  'togeth_first',
  'first_date',
  'date_ask',
  'ask_pursu',
  'pursu_higher',
  'higher_educ',
  'educ_high',
  'high_school',
  'school_explain',
  'explain_fail',
  'fail_high',
  'high_school',
  'school_believ',
  'believ_high',
  'high_achiev',
  'achiev_possibl',
  'possibl_understand',
  'understand_somebodi',
  'somebodi_could',
  'could_fail',
  'fail_high',
  'high_school',
  'school_find',
  'find_amus',
  'amus_teas',
  'teas_truth',
  'truth_bother',
  'bother_good',
  'good_job',
  'job_ive',
  'ive_done',
  'done_great',
  'great_thing',
  'thing_despit',
  'despit_tradit',
  'tradit_educ',
  'educ_worst',
  'worst_littl',
  'littl_annoy',
  'annoy_refus',
  'refus_lose',
  'lose_sleep',
  'sleep_tonight',
  'tonight_friend',
  'friend_convers',
  'convers_turn',
  'turn_toward',
  'toward_high',
  'high_school',
  'school_subject',
  'subject_list',
  'list_studi',
  'studi_final',
  'final_year',
  'year_began',
  'began_laugh',
  'laugh_say',
  'say_matter',
  'matter_fail',
  'fail_anyway',
  'anyway_sinc',
  'sinc_hed',
  'hed_much',
  'much_drink',
  'drink_took',
  'took_littl',
  'littl_far',
  'far_start',
  'start_poke',
  'poke_fun',
  'fun_idiot',
  'idiot_fail',
  'fail_high',
  'high_school',
  'school_tri',
  'tri_play',
  'play_alcohol',
  'alcohol_got',
  'got_better',
  'better_well',
  'well_snap',
  'snap_respond',
  'respond_earn',
  'earn_$',
  '$_per',
  'per_hour',
  'hour_earn',
  'earn_$',
  '$_right',
  'right_well',
  'well_high',
  'high_school',
  'school_set',
  'set_success',
  'success_one',
  'one_friend',
  'friend_said',
  'said_id',
  'id_ruin',
  'ruin_night',
  'night_coupl',
  'coupl_friend',
  'friend_said',
  'said_come',
  'weve_togeth_year',
  'togeth_year_live',
  'year_live_togeth',
  'live_togeth_first',
  'togeth_first_date',
  'first_date_ask',
  'date_ask_pursu',
  'ask_pursu_higher',
  'pursu_higher_educ',
  'higher_educ_high',
  'educ_high_school',
  'high_school_explain',
  'school_explain_fail',
  'explain_fail_high',
  'fail_high_school',
  'high_school_believ',
  'school_believ_high',
  'believ_high_achiev',
  'high_achiev_possibl',
  'achiev_possibl_understand',
  'possibl_understand_somebodi',
  'understand_somebodi_could',
  'somebodi_could_fail',
  'could_fail_high',
  'fail_high_school',
  'high_school_find',
  'school_find_amus',
  'find_amus_teas',
  'amus_teas_truth',
  'teas_truth_bother',
  'truth_bother_good',
  'bother_good_job',
  'good_job_ive',
  'job_ive_done',
  'ive_done_great',
  'done_great_thing',
  'great_thing_despit',
  'thing_despit_tradit',
  'despit_tradit_educ',
  'tradit_educ_worst',
  'educ_worst_littl',
  'worst_littl_annoy',
  'littl_annoy_refus',
  'annoy_refus_lose',
  'refus_lose_sleep',
  'lose_sleep_tonight',
  'sleep_tonight_friend',
  'tonight_friend_convers',
  'friend_convers_turn',
  'convers_turn_toward',
  'turn_toward_high',
  'toward_high_school',
  'high_school_subject',
  'school_subject_list',
  'subject_list_studi',
  'list_studi_final',
  'studi_final_year',
  'final_year_began',
  'year_began_laugh',
  'began_laugh_say',
  'laugh_say_matter',
  'say_matter_fail',
  'matter_fail_anyway',
  'fail_anyway_sinc',
  'anyway_sinc_hed',
  'sinc_hed_much',
  'hed_much_drink',
  'much_drink_took',
  'drink_took_littl',
  'took_littl_far',
  'littl_far_start',
  'far_start_poke',
  'start_poke_fun',
  'poke_fun_idiot',
  'fun_idiot_fail',
  'idiot_fail_high',
  'fail_high_school',
  'high_school_tri',
  'school_tri_play',
  'tri_play_alcohol',
  'play_alcohol_got',
  'alcohol_got_better',
  'got_better_well',
  'better_well_snap',
  'well_snap_respond',
  'snap_respond_earn',
  'respond_earn_$',
  'earn_$_per',
  '$_per_hour',
  'per_hour_earn',
  'hour_earn_$',
  'earn_$_right',
  '$_right_well',
  'right_well_high',
  'well_high_school',
  'high_school_set',
  'school_set_success',
  'set_success_one',
  'success_one_friend',
  'one_friend_said',
  'friend_said_id',
  'said_id_ruin',
  'id_ruin_night',
  'ruin_night_coupl',
  'night_coupl_friend',
  'coupl_friend_said',
  'friend_said_come'],
 ['background',
  'wife',
  'two',
  'kid',
  'live',
  'vhcol',
  'citi',
  'made',
  'much',
  'wife',
  'pretti',
  'well',
  'incom',
  'wife',
  'would',
  'abl',
  'afford',
  'live',
  'citi',
  'job',
  'pretti',
  'low',
  'stress',
  'ish',
  'hour',
  'week',
  'requir',
  'call',
  'week',
  'month',
  'normal',
  'noth',
  'ever',
  'happen',
  'usual',
  'routin',
  'understand',
  'wife',
  'need',
  'drop',
  'whatev',
  'work',
  'work',
  'issu',
  'resolv',
  'ever',
  'happen',
  'everi',
  'quarter',
  'last',
  'hour',
  'wife',
  'hand',
  'much',
  'stress',
  'job',
  'boss',
  'incred',
  'demand',
  'often',
  'demand',
  'random',
  'inan',
  'thing',
  'power',
  'play',
  'subordin',
  'usual',
  'work',
  '-',
  'hour',
  'week',
  'result',
  'take',
  'care',
  'home',
  'stuff',
  'drop',
  'pick',
  'kid',
  'daycar',
  'cook',
  'meal',
  'gener',
  'keep',
  'hous',
  'clean',
  'aita',
  'incid',
  'on-cal',
  'week',
  'work',
  'hour',
  'wife',
  'got',
  'text',
  'boss',
  'fulfil',
  'emerg',
  'request',
  'client',
  'wife',
  'complain',
  'request',
  'realli',
  'could',
  'wait',
  'tomorrow',
  'would',
  'rather',
  'get',
  'done',
  'listen',
  'boss',
  'bitch',
  'morn',
  'done',
  'problem',
  'remind',
  'on-cal',
  'might',
  'need',
  'switch',
  'someth',
  'came',
  'made',
  'grunt',
  'acknowledg',
  'noth',
  'beyond',
  'hour',
  'later',
  'get',
  'all-hand',
  'call',
  'immedi',
  'come',
  'offic',
  'normal',
  'resolv',
  'issu',
  'remot',
  'issu',
  'prevent',
  'us',
  'remot',
  'rush',
  'upstair',
  'told',
  'wife',
  'leav',
  'turn',
  'around',
  'say',
  'sorri',
  'issu',
  'came',
  'first',
  'go',
  'tell',
  'work',
  'cant',
  'taken',
  'aback',
  'told',
  'issu',
  'someth',
  'skip',
  'anyth',
  'short',
  'physic',
  'hospit',
  'cant',
  'come',
  'got',
  'increasingli',
  'angri',
  'start',
  'rant',
  'told',
  'time',
  'leav',
  'get',
  'back',
  'discuss',
  'start',
  'cri',
  'time',
  'left',
  'offic',
  'way',
  'call',
  'continu',
  'argument',
  'heat',
  'moment',
  'said',
  'look',
  'respect',
  'put',
  'lot',
  'time',
  'energi',
  'work',
  'afford',
  'hous',
  'lifestyl',
  'without',
  'job',
  'push',
  'come',
  'shove',
  'job',
  'come',
  'first',
  'otherwis',
  'go',
  'street',
  'hung',
  'got',
  'home',
  'hour',
  'later',
  'around',
  'pm',
  'kid',
  'crash',
  'live',
  'room',
  'couch',
  'sever',
  'bowl',
  'cereal',
  'spill',
  'around',
  'went',
  'upstair',
  'wife',
  'lock',
  'bedroom',
  'refus',
  'talk',
  'morn',
  'found',
  'kid',
  'spent',
  'night',
  'cri',
  'room',
  'feed',
  'dinner',
  'tuck',
  'made',
  'cereal',
  'sleepov',
  'live',
  'room',
  'background_wife',
  'wife_two',
  'two_kid',
  'kid_live',
  'live_vhcol',
  'vhcol_citi',
  'citi_made',
  'made_much',
  'much_wife',
  'wife_pretti',
  'pretti_well',
  'well_incom',
  'incom_wife',
  'wife_would',
  'would_abl',
  'abl_afford',
  'afford_live',
  'live_citi',
  'citi_job',
  'job_pretti',
  'pretti_low',
  'low_stress',
  'stress_ish',
  'ish_hour',
  'hour_week',
  'week_requir',
  'requir_call',
  'call_week',
  'week_month',
  'month_normal',
  'normal_noth',
  'noth_ever',
  'ever_happen',
  'happen_usual',
  'usual_routin',
  'routin_understand',
  'understand_wife',
  'wife_need',
  'need_drop',
  'drop_whatev',
  'whatev_work',
  'work_work',
  'work_issu',
  'issu_resolv',
  'resolv_ever',
  'ever_happen',
  'happen_everi',
  'everi_quarter',
  'quarter_last',
  'last_hour',
  'hour_wife',
  'wife_hand',
  'hand_much',
  'much_stress',
  'stress_job',
  'job_boss',
  'boss_incred',
  'incred_demand',
  'demand_often',
  'often_demand',
  'demand_random',
  'random_inan',
  'inan_thing',
  'thing_power',
  'power_play',
  'play_subordin',
  'subordin_usual',
  'usual_work',
  'work_-',
  '-_hour',
  'hour_week',
  'week_result',
  'result_take',
  'take_care',
  'care_home',
  'home_stuff',
  'stuff_drop',
  'drop_pick',
  'pick_kid',
  'kid_daycar',
  'daycar_cook',
  'cook_meal',
  'meal_gener',
  'gener_keep',
  'keep_hous',
  'hous_clean',
  'clean_aita',
  'aita_incid',
  'incid_on-cal',
  'on-cal_week',
  'week_work',
  'work_hour',
  'hour_wife',
  'wife_got',
  'got_text',
  'text_boss',
  'boss_fulfil',
  'fulfil_emerg',
  'emerg_request',
  'request_client',
  'client_wife',
  'wife_complain',
  'complain_request',
  'request_realli',
  'realli_could',
  'could_wait',
  'wait_tomorrow',
  'tomorrow_would',
  'would_rather',
  'rather_get',
  'get_done',
  'done_listen',
  'listen_boss',
  'boss_bitch',
  'bitch_morn',
  'morn_done',
  'done_problem',
  'problem_remind',
  'remind_on-cal',
  'on-cal_might',
  'might_need',
  'need_switch',
  'switch_someth',
  'someth_came',
  'came_made',
  'made_grunt',
  'grunt_acknowledg',
  'acknowledg_noth',
  'noth_beyond',
  'beyond_hour',
  'hour_later',
  'later_get',
  'get_all-hand',
  'all-hand_call',
  'call_immedi',
  'immedi_come',
  'come_offic',
  'offic_normal',
  'normal_resolv',
  'resolv_issu',
  'issu_remot',
  'remot_issu',
  'issu_prevent',
  'prevent_us',
  'us_remot',
  'remot_rush',
  'rush_upstair',
  'upstair_told',
  'told_wife',
  'wife_leav',
  'leav_turn',
  'turn_around',
  'around_say',
  'say_sorri',
  'sorri_issu',
  'issu_came',
  'came_first',
  'first_go',
  'go_tell',
  'tell_work',
  'work_cant',
  'cant_taken',
  'taken_aback',
  'aback_told',
  'told_issu',
  'issu_someth',
  'someth_skip',
  'skip_anyth',
  'anyth_short',
  'short_physic',
  'physic_hospit',
  'hospit_cant',
  'cant_come',
  'come_got',
  'got_increasingli',
  'increasingli_angri',
  'angri_start',
  'start_rant',
  'rant_told',
  'told_time',
  'time_leav',
  'leav_get',
  'get_back',
  'back_discuss',
  'discuss_start',
  'start_cri',
  'cri_time',
  'time_left',
  'left_offic',
  'offic_way',
  'way_call',
  'call_continu',
  'continu_argument',
  'argument_heat',
  'heat_moment',
  'moment_said',
  'said_look',
  'look_respect',
  'respect_put',
  'put_lot',
  'lot_time',
  'time_energi',
  'energi_work',
  'work_afford',
  'afford_hous',
  'hous_lifestyl',
  'lifestyl_without',
  'without_job',
  'job_push',
  'push_come',
  'come_shove',
  'shove_job',
  'job_come',
  'come_first',
  'first_otherwis',
  'otherwis_go',
  'go_street',
  'street_hung',
  'hung_got',
  'got_home',
  'home_hour',
  'hour_later',
  'later_around',
  'around_pm',
  'pm_kid',
  'kid_crash',
  'crash_live',
  'live_room',
  'room_couch',
  'couch_sever',
  'sever_bowl',
  'bowl_cereal',
  'cereal_spill',
  'spill_around',
  'around_went',
  'went_upstair',
  'upstair_wife',
  'wife_lock',
  'lock_bedroom',
  'bedroom_refus',
  'refus_talk',
  'talk_morn',
  'morn_found',
  'found_kid',
  'kid_spent',
  'spent_night',
  'night_cri',
  'cri_room',
  'room_feed',
  'feed_dinner',
  'dinner_tuck',
  'tuck_made',
  'made_cereal',
  'cereal_sleepov',
  'sleepov_live',
  'live_room',
  'background_wife_two',
  'wife_two_kid',
  'two_kid_live',
  'kid_live_vhcol',
  'live_vhcol_citi',
  'vhcol_citi_made',
  'citi_made_much',
  'made_much_wife',
  'much_wife_pretti',
  'wife_pretti_well',
  'pretti_well_incom',
  'well_incom_wife',
  'incom_wife_would',
  'wife_would_abl',
  'would_abl_afford',
  'abl_afford_live',
  'afford_live_citi',
  'live_citi_job',
  'citi_job_pretti',
  'job_pretti_low',
  'pretti_low_stress',
  'low_stress_ish',
  'stress_ish_hour',
  'ish_hour_week',
  'hour_week_requir',
  'week_requir_call',
  'requir_call_week',
  'call_week_month',
  'week_month_normal',
  'month_normal_noth',
  'normal_noth_ever',
  'noth_ever_happen',
  'ever_happen_usual',
  'happen_usual_routin',
  'usual_routin_understand',
  'routin_understand_wife',
  'understand_wife_need',
  'wife_need_drop',
  'need_drop_whatev',
  'drop_whatev_work',
  'whatev_work_work',
  'work_work_issu',
  'work_issu_resolv',
  'issu_resolv_ever',
  'resolv_ever_happen',
  'ever_happen_everi',
  'happen_everi_quarter',
  'everi_quarter_last',
  'quarter_last_hour',
  'last_hour_wife',
  'hour_wife_hand',
  'wife_hand_much',
  'hand_much_stress',
  'much_stress_job',
  'stress_job_boss',
  'job_boss_incred',
  'boss_incred_demand',
  'incred_demand_often',
  'demand_often_demand',
  'often_demand_random',
  'demand_random_inan',
  'random_inan_thing',
  'inan_thing_power',
  'thing_power_play',
  'power_play_subordin',
  'play_subordin_usual',
  'subordin_usual_work',
  'usual_work_-',
  'work_-_hour',
  '-_hour_week',
  'hour_week_result',
  'week_result_take',
  'result_take_care',
  'take_care_home',
  'care_home_stuff',
  'home_stuff_drop',
  'stuff_drop_pick',
  'drop_pick_kid',
  'pick_kid_daycar',
  'kid_daycar_cook',
  'daycar_cook_meal',
  'cook_meal_gener',
  'meal_gener_keep',
  'gener_keep_hous',
  'keep_hous_clean',
  'hous_clean_aita',
  'clean_aita_incid',
  'aita_incid_on-cal',
  'incid_on-cal_week',
  'on-cal_week_work',
  'week_work_hour',
  'work_hour_wife',
  'hour_wife_got',
  'wife_got_text',
  'got_text_boss',
  'text_boss_fulfil',
  'boss_fulfil_emerg',
  'fulfil_emerg_request',
  'emerg_request_client',
  'request_client_wife',
  'client_wife_complain',
  'wife_complain_request',
  'complain_request_realli',
  'request_realli_could',
  'realli_could_wait',
  'could_wait_tomorrow',
  'wait_tomorrow_would',
  'tomorrow_would_rather',
  'would_rather_get',
  'rather_get_done',
  'get_done_listen',
  'done_listen_boss',
  'listen_boss_bitch',
  'boss_bitch_morn',
  'bitch_morn_done',
  'morn_done_problem',
  'done_problem_remind',
  'problem_remind_on-cal',
  'remind_on-cal_might',
  'on-cal_might_need',
  'might_need_switch',
  'need_switch_someth',
  'switch_someth_came',
  'someth_came_made',
  'came_made_grunt',
  'made_grunt_acknowledg',
  'grunt_acknowledg_noth',
  'acknowledg_noth_beyond',
  'noth_beyond_hour',
  'beyond_hour_later',
  'hour_later_get',
  'later_get_all-hand',
  'get_all-hand_call',
  'all-hand_call_immedi',
  'call_immedi_come',
  'immedi_come_offic',
  'come_offic_normal',
  'offic_normal_resolv',
  'normal_resolv_issu',
  'resolv_issu_remot',
  'issu_remot_issu',
  'remot_issu_prevent',
  'issu_prevent_us',
  'prevent_us_remot',
  'us_remot_rush',
  'remot_rush_upstair',
  'rush_upstair_told',
  'upstair_told_wife',
  'told_wife_leav',
  'wife_leav_turn',
  'leav_turn_around',
  'turn_around_say',
  'around_say_sorri',
  'say_sorri_issu',
  'sorri_issu_came',
  'issu_came_first',
  'came_first_go',
  'first_go_tell',
  'go_tell_work',
  'tell_work_cant',
  'work_cant_taken',
  'cant_taken_aback',
  'taken_aback_told',
  'aback_told_issu',
  'told_issu_someth',
  'issu_someth_skip',
  'someth_skip_anyth',
  'skip_anyth_short',
  'anyth_short_physic',
  'short_physic_hospit',
  'physic_hospit_cant',
  'hospit_cant_come',
  'cant_come_got',
  'come_got_increasingli',
  'got_increasingli_angri',
  'increasingli_angri_start',
  'angri_start_rant',
  'start_rant_told',
  'rant_told_time',
  'told_time_leav',
  'time_leav_get',
  'leav_get_back',
  'get_back_discuss',
  'back_discuss_start',
  'discuss_start_cri',
  'start_cri_time',
  'cri_time_left',
  'time_left_offic',
  'left_offic_way',
  'offic_way_call',
  'way_call_continu',
  'call_continu_argument',
  'continu_argument_heat',
  'argument_heat_moment',
  'heat_moment_said',
  'moment_said_look',
  'said_look_respect',
  'look_respect_put',
  'respect_put_lot',
  'put_lot_time',
  'lot_time_energi',
  'time_energi_work',
  'energi_work_afford',
  'work_afford_hous',
  'afford_hous_lifestyl',
  'hous_lifestyl_without',
  'lifestyl_without_job',
  'without_job_push',
  'job_push_come',
  'push_come_shove',
  'come_shove_job',
  'shove_job_come',
  'job_come_first',
  'come_first_otherwis',
  'first_otherwis_go',
  'otherwis_go_street',
  'go_street_hung',
  'street_hung_got',
  'hung_got_home',
  'got_home_hour',
  'home_hour_later',
  'hour_later_around',
  'later_around_pm',
  'around_pm_kid',
  'pm_kid_crash',
  'kid_crash_live',
  'crash_live_room',
  'live_room_couch',
  'room_couch_sever',
  'couch_sever_bowl',
  'sever_bowl_cereal',
  'bowl_cereal_spill',
  'cereal_spill_around',
  'spill_around_went',
  'around_went_upstair',
  'went_upstair_wife',
  'upstair_wife_lock',
  'wife_lock_bedroom',
  'lock_bedroom_refus',
  'bedroom_refus_talk',
  'refus_talk_morn',
  'talk_morn_found',
  'morn_found_kid',
  'found_kid_spent',
  'kid_spent_night',
  'spent_night_cri',
  'night_cri_room',
  'cri_room_feed',
  'room_feed_dinner',
  'feed_dinner_tuck',
  'dinner_tuck_made',
  'tuck_made_cereal',
  'made_cereal_sleepov',
  'cereal_sleepov_live',
  'sleepov_live_room'],
 ['mobil',
  'sorri',
  'bad',
  'format',
  'context',
  'inherit',
  'holiday',
  'home',
  'grandma',
  'time',
  'ago',
  'never',
  'realli',
  'use',
  'roughli',
  'hour',
  'drive',
  'london',
  'live',
  'relev',
  'stori',
  '-the',
  'key',
  'holiday',
  'home',
  'rack',
  'liter',
  'everi',
  'key',
  'anyth',
  'boyfriend',
  '-the',
  'holiday',
  'hous',
  'secur',
  'system',
  'hook',
  'phone',
  'detect',
  'someon',
  'properti',
  'camera',
  'turn',
  'see',
  'boyfriend',
  'brother',
  'recent',
  'th',
  'child',
  'wife',
  'current',
  'live',
  'bedroom',
  'apart',
  'three',
  'day',
  'ago',
  'mine',
  'boyfriend',
  'hous',
  'kid',
  'talk',
  'anyth',
  'everyth',
  'hold',
  'babi',
  'boyfriend',
  'brother',
  'eventu',
  'mention',
  'holiday',
  'home',
  'enough',
  'space',
  'wife',
  'rais',
  'kid',
  'exact',
  'respons',
  'yeah',
  'im',
  'gon',
  'na',
  'let',
  'live',
  'went',
  'quiet',
  'wife',
  'start',
  'collect',
  'kid',
  'thing',
  'left',
  'minut',
  'boyfriend',
  'said',
  'anyth',
  'convers',
  'yet',
  'im',
  'feel',
  'bad',
  'respons',
  'know',
  'realli',
  'need',
  'space',
  'fast',
  'forward',
  'yesterday',
  'wake',
  'work',
  'realis',
  'boyfriend',
  'bed',
  'noth',
  'ordinari',
  'work',
  'im',
  'final',
  'walk',
  'door',
  'go',
  'grab',
  'key',
  'notic',
  'holiday',
  'home',
  'key',
  'gone',
  'look',
  'around',
  'cant',
  'find',
  'call',
  'boyfriend',
  'first',
  'time',
  'answer',
  'second',
  'time',
  'answer',
  'third',
  'time',
  'convers',
  'went',
  'hey',
  'seen',
  'hous',
  'key',
  'ye',
  'cool',
  'whyve',
  'got',
  'though',
  'grab',
  'accid',
  'ill',
  'return',
  'im',
  'back',
  'work',
  'thought',
  'everyth',
  'would',
  'fine',
  'continu',
  'day',
  'went',
  'work',
  'midway',
  'work',
  'day',
  'get',
  'notif',
  'hous',
  'secur',
  'system',
  'open',
  'find',
  'boyfriend',
  'brother',
  'famili',
  'outsid',
  'door',
  'move',
  'van',
  'back',
  'fume',
  'got',
  'home',
  'boyfriend',
  'alreadi',
  'act',
  'everyth',
  'normal',
  'start',
  'scream',
  'ask',
  'hell',
  'hed',
  'move',
  'famili',
  'hous',
  'without',
  'permiss',
  'tri',
  'justifi',
  'say',
  'help',
  'famili',
  'honestli',
  'made',
  'angri',
  'told',
  'day',
  'get',
  'brother',
  'famili',
  'hous',
  'would',
  'call',
  'polic',
  'trespass',
  'happen',
  'around',
  'yesterday',
  'hour',
  'ago',
  'call',
  'anyth',
  'fulli',
  'intend',
  'go',
  'threat',
  'know',
  'theyr',
  'struggl',
  'right',
  'wibta',
  'call',
  'polic',
  'edit',
  'thank',
  'advic',
  'search',
  'uk',
  'govern',
  'websit',
  'ive',
  'manag',
  'figur',
  'legal',
  'ive',
  'also',
  'call',
  'polic',
  'alreadi',
  'reciev',
  'updat',
  'yet',
  'ill',
  'share',
  'edit',
  'call',
  'polic',
  'small',
  'ago',
  'minut',
  'ago',
  'came',
  'return',
  'key',
  'let',
  'know',
  'famili',
  'told',
  'leav',
  'first',
  'refus',
  'eventu',
  'pack',
  'thing',
  'went',
  'ex',
  'boyfriend',
  'brother',
  'brother',
  'wife',
  'blow',
  'phone',
  'ask',
  'hell',
  'id',
  'put',
  'children',
  'ive',
  'block',
  'feel',
  'absolut',
  'terribl',
  'know',
  'probabl',
  'better',
  'way',
  'handl',
  'situat',
  'even',
  'consid',
  'let',
  'stay',
  'im',
  'sure',
  'would',
  'pay',
  'rent',
  'anyth',
  'futur',
  'plan',
  'rent',
  'home',
  'mani',
  'suggest',
  'im',
  'sure',
  'ex-boyfriend',
  'famili',
  'would',
  'take',
  'edit',
  'ive',
  'better',
  'secur',
  'system',
  'instal',
  'hous',
  'lock',
  'chang',
  'thank',
  'everyon',
  'gave',
  'advic',
  'time',
  'help',
  'get',
  'mental',
  'thank',
  'everyon',
  'mobil_sorri',
  'sorri_bad',
  'bad_format',
  'format_context',
  'context_inherit',
  'inherit_holiday',
  'holiday_home',
  'home_grandma',
  'grandma_time',
  'time_ago',
  'ago_never',
  'never_realli',
  'realli_use',
  'use_roughli',
  'roughli_hour',
  'hour_drive',
  'drive_london',
  'london_live',
  'live_relev',
  'relev_stori',
  'stori_-the',
  '-the_key',
  'key_holiday',
  'holiday_home',
  'home_rack',
  'rack_liter',
  'liter_everi',
  'everi_key',
  'key_anyth',
  'anyth_boyfriend',
  'boyfriend_-the',
  '-the_holiday',
  'holiday_hous',
  'hous_secur',
  'secur_system',
  'system_hook',
  'hook_phone',
  'phone_detect',
  'detect_someon',
  'someon_properti',
  'properti_camera',
  'camera_turn',
  'turn_see',
  'see_boyfriend',
  'boyfriend_brother',
  'brother_recent',
  'recent_th',
  'th_child',
  'child_wife',
  'wife_current',
  'current_live',
  'live_bedroom',
  'bedroom_apart',
  'apart_three',
  'three_day',
  'day_ago',
  'ago_mine',
  'mine_boyfriend',
  'boyfriend_hous',
  'hous_kid',
  'kid_talk',
  'talk_anyth',
  'anyth_everyth',
  'everyth_hold',
  'hold_babi',
  'babi_boyfriend',
  'boyfriend_brother',
  'brother_eventu',
  'eventu_mention',
  'mention_holiday',
  'holiday_home',
  'home_enough',
  'enough_space',
  'space_wife',
  'wife_rais',
  'rais_kid',
  'kid_exact',
  'exact_respons',
  'respons_yeah',
  'yeah_im',
  'im_gon',
  'gon_na',
  'na_let',
  'let_live',
  'live_went',
  'went_quiet',
  'quiet_wife',
  'wife_start',
  'start_collect',
  'collect_kid',
  'kid_thing',
  'thing_left',
  'left_minut',
  'minut_boyfriend',
  'boyfriend_said',
  'said_anyth',
  'anyth_convers',
  'convers_yet',
  'yet_im',
  'im_feel',
  'feel_bad',
  'bad_respons',
  'respons_know',
  'know_realli',
  'realli_need',
  'need_space',
  'space_fast',
  'fast_forward',
  'forward_yesterday',
  'yesterday_wake',
  'wake_work',
  'work_realis',
  'realis_boyfriend',
  'boyfriend_bed',
  'bed_noth',
  'noth_ordinari',
  'ordinari_work',
  'work_im',
  'im_final',
  'final_walk',
  'walk_door',
  'door_go',
  'go_grab',
  'grab_key',
  'key_notic',
  'notic_holiday',
  'holiday_home',
  'home_key',
  'key_gone',
  'gone_look',
  'look_around',
  'around_cant',
  'cant_find',
  'find_call',
  'call_boyfriend',
  'boyfriend_first',
  'first_time',
  'time_answer',
  'answer_second',
  'second_time',
  'time_answer',
  'answer_third',
  'third_time',
  'time_convers',
  'convers_went',
  'went_hey',
  'hey_seen',
  'seen_hous',
  'hous_key',
  'key_ye',
  'ye_cool',
  'cool_whyve',
  'whyve_got',
  'got_though',
  'though_grab',
  'grab_accid',
  'accid_ill',
  'ill_return',
  'return_im',
  'im_back',
  'back_work',
  'work_thought',
  'thought_everyth',
  'everyth_would',
  'would_fine',
  'fine_continu',
  'continu_day',
  'day_went',
  'went_work',
  'work_midway',
  'midway_work',
  'work_day',
  'day_get',
  'get_notif',
  'notif_hous',
  'hous_secur',
  'secur_system',
  'system_open',
  'open_find',
  'find_boyfriend',
  'boyfriend_brother',
  'brother_famili',
  'famili_outsid',
  'outsid_door',
  'door_move',
  'move_van',
  'van_back',
  'back_fume',
  'fume_got',
  'got_home',
  'home_boyfriend',
  'boyfriend_alreadi',
  'alreadi_act',
  'act_everyth',
  'everyth_normal',
  'normal_start',
  'start_scream',
  'scream_ask',
  'ask_hell',
  'hell_hed',
  'hed_move',
  'move_famili',
  'famili_hous',
  'hous_without',
  'without_permiss',
  'permiss_tri',
  'tri_justifi',
  'justifi_say',
  'say_help',
  'help_famili',
  'famili_honestli',
  'honestli_made',
  'made_angri',
  'angri_told',
  'told_day',
  'day_get',
  'get_brother',
  'brother_famili',
  'famili_hous',
  'hous_would',
  'would_call',
  'call_polic',
  'polic_trespass',
  'trespass_happen',
  'happen_around',
  'around_yesterday',
  'yesterday_hour',
  'hour_ago',
  'ago_call',
  'call_anyth',
  'anyth_fulli',
  'fulli_intend',
  'intend_go',
  'go_threat',
  'threat_know',
  'know_theyr',
  'theyr_struggl',
  'struggl_right',
  'right_wibta',
  'wibta_call',
  'call_polic',
  'polic_edit',
  'edit_thank',
  'thank_advic',
  'advic_search',
  'search_uk',
  'uk_govern',
  'govern_websit',
  'websit_ive',
  'ive_manag',
  'manag_figur',
  'figur_legal',
  'legal_ive',
  'ive_also',
  'also_call',
  'call_polic',
  'polic_alreadi',
  'alreadi_reciev',
  'reciev_updat',
  'updat_yet',
  'yet_ill',
  'ill_share',
  'share_edit',
  'edit_call',
  'call_polic',
  'polic_small',
  'small_ago',
  'ago_minut',
  'minut_ago',
  'ago_came',
  'came_return',
  'return_key',
  'key_let',
  'let_know',
  'know_famili',
  'famili_told',
  'told_leav',
  'leav_first',
  'first_refus',
  'refus_eventu',
  'eventu_pack',
  'pack_thing',
  'thing_went',
  'went_ex',
  'ex_boyfriend',
  'boyfriend_brother',
  'brother_brother',
  'brother_wife',
  'wife_blow',
  'blow_phone',
  'phone_ask',
  'ask_hell',
  'hell_id',
  'id_put',
  'put_children',
  'children_ive',
  'ive_block',
  'block_feel',
  'feel_absolut',
  'absolut_terribl',
  'terribl_know',
  'know_probabl',
  'probabl_better',
  'better_way',
  'way_handl',
  'handl_situat',
  'situat_even',
  'even_consid',
  'consid_let',
  'let_stay',
  'stay_im',
  'im_sure',
  'sure_would',
  'would_pay',
  'pay_rent',
  'rent_anyth',
  'anyth_futur',
  'futur_plan',
  'plan_rent',
  'rent_home',
  'home_mani',
  'mani_suggest',
  'suggest_im',
  'im_sure',
  'sure_ex-boyfriend',
  'ex-boyfriend_famili',
  'famili_would',
  'would_take',
  'take_edit',
  'edit_ive',
  'ive_better',
  'better_secur',
  'secur_system',
  'system_instal',
  'instal_hous',
  'hous_lock',
  'lock_chang',
  'chang_thank',
  'thank_everyon',
  'everyon_gave',
  'gave_advic',
  'advic_time',
  'time_help',
  'help_get',
  'get_mental',
  'mental_thank',
  'thank_everyon',
  'mobil_sorri_bad',
  'sorri_bad_format',
  'bad_format_context',
  'format_context_inherit',
  'context_inherit_holiday',
  'inherit_holiday_home',
  'holiday_home_grandma',
  'home_grandma_time',
  'grandma_time_ago',
  'time_ago_never',
  'ago_never_realli',
  'never_realli_use',
  'realli_use_roughli',
  'use_roughli_hour',
  'roughli_hour_drive',
  'hour_drive_london',
  'drive_london_live',
  'london_live_relev',
  'live_relev_stori',
  'relev_stori_-the',
  'stori_-the_key',
  '-the_key_holiday',
  'key_holiday_home',
  'holiday_home_rack',
  'home_rack_liter',
  'rack_liter_everi',
  'liter_everi_key',
  'everi_key_anyth',
  'key_anyth_boyfriend',
  'anyth_boyfriend_-the',
  'boyfriend_-the_holiday',
  '-the_holiday_hous',
  'holiday_hous_secur',
  'hous_secur_system',
  'secur_system_hook',
  'system_hook_phone',
  'hook_phone_detect',
  'phone_detect_someon',
  'detect_someon_properti',
  'someon_properti_camera',
  'properti_camera_turn',
  'camera_turn_see',
  'turn_see_boyfriend',
  'see_boyfriend_brother',
  'boyfriend_brother_recent',
  'brother_recent_th',
  'recent_th_child',
  'th_child_wife',
  'child_wife_current',
  'wife_current_live',
  'current_live_bedroom',
  'live_bedroom_apart',
  'bedroom_apart_three',
  'apart_three_day',
  'three_day_ago',
  'day_ago_mine',
  'ago_mine_boyfriend',
  'mine_boyfriend_hous',
  'boyfriend_hous_kid',
  'hous_kid_talk',
  'kid_talk_anyth',
  'talk_anyth_everyth',
  'anyth_everyth_hold',
  'everyth_hold_babi',
  'hold_babi_boyfriend',
  'babi_boyfriend_brother',
  'boyfriend_brother_eventu',
  'brother_eventu_mention',
  'eventu_mention_holiday',
  'mention_holiday_home',
  'holiday_home_enough',
  'home_enough_space',
  'enough_space_wife',
  'space_wife_rais',
  'wife_rais_kid',
  'rais_kid_exact',
  'kid_exact_respons',
  'exact_respons_yeah',
  'respons_yeah_im',
  'yeah_im_gon',
  'im_gon_na',
  'gon_na_let',
  'na_let_live',
  'let_live_went',
  'live_went_quiet',
  'went_quiet_wife',
  'quiet_wife_start',
  'wife_start_collect',
  'start_collect_kid',
  'collect_kid_thing',
  'kid_thing_left',
  'thing_left_minut',
  'left_minut_boyfriend',
  'minut_boyfriend_said',
  'boyfriend_said_anyth',
  'said_anyth_convers',
  'anyth_convers_yet',
  'convers_yet_im',
  'yet_im_feel',
  'im_feel_bad',
  'feel_bad_respons',
  'bad_respons_know',
  'respons_know_realli',
  'know_realli_need',
  'realli_need_space',
  'need_space_fast',
  'space_fast_forward',
  'fast_forward_yesterday',
  'forward_yesterday_wake',
  'yesterday_wake_work',
  'wake_work_realis',
  'work_realis_boyfriend',
  'realis_boyfriend_bed',
  'boyfriend_bed_noth',
  'bed_noth_ordinari',
  'noth_ordinari_work',
  'ordinari_work_im',
  'work_im_final',
  'im_final_walk',
  'final_walk_door',
  'walk_door_go',
  'door_go_grab',
  'go_grab_key',
  'grab_key_notic',
  'key_notic_holiday',
  'notic_holiday_home',
  'holiday_home_key',
  'home_key_gone',
  'key_gone_look',
  'gone_look_around',
  'look_around_cant',
  'around_cant_find',
  'cant_find_call',
  'find_call_boyfriend',
  'call_boyfriend_first',
  'boyfriend_first_time',
  'first_time_answer',
  'time_answer_second',
  'answer_second_time',
  'second_time_answer',
  'time_answer_third',
  'answer_third_time',
  'third_time_convers',
  'time_convers_went',
  'convers_went_hey',
  'went_hey_seen',
  'hey_seen_hous',
  'seen_hous_key',
  'hous_key_ye',
  'key_ye_cool',
  'ye_cool_whyve',
  'cool_whyve_got',
  'whyve_got_though',
  'got_though_grab',
  'though_grab_accid',
  'grab_accid_ill',
  'accid_ill_return',
  'ill_return_im',
  'return_im_back',
  'im_back_work',
  'back_work_thought',
  'work_thought_everyth',
  'thought_everyth_would',
  'everyth_would_fine',
  'would_fine_continu',
  'fine_continu_day',
  'continu_day_went',
  'day_went_work',
  'went_work_midway',
  'work_midway_work',
  'midway_work_day',
  'work_day_get',
  'day_get_notif',
  'get_notif_hous',
  'notif_hous_secur',
  'hous_secur_system',
  'secur_system_open',
  'system_open_find',
  'open_find_boyfriend',
  'find_boyfriend_brother',
  'boyfriend_brother_famili',
  'brother_famili_outsid',
  'famili_outsid_door',
  'outsid_door_move',
  'door_move_van',
  'move_van_back',
  'van_back_fume',
  'back_fume_got',
  'fume_got_home',
  'got_home_boyfriend',
  'home_boyfriend_alreadi',
  'boyfriend_alreadi_act',
  'alreadi_act_everyth',
  'act_everyth_normal',
  'everyth_normal_start',
  'normal_start_scream',
  'start_scream_ask',
  'scream_ask_hell',
  'ask_hell_hed',
  'hell_hed_move',
  'hed_move_famili',
  'move_famili_hous',
  'famili_hous_without',
  'hous_without_permiss',
  'without_permiss_tri',
  'permiss_tri_justifi',
  'tri_justifi_say',
  'justifi_say_help',
  'say_help_famili',
  'help_famili_honestli',
  'famili_honestli_made',
  'honestli_made_angri',
  'made_angri_told',
  'angri_told_day',
  'told_day_get',
  'day_get_brother',
  'get_brother_famili',
  'brother_famili_hous',
  'famili_hous_would',
  'hous_would_call',
  'would_call_polic',
  'call_polic_trespass',
  'polic_trespass_happen',
  'trespass_happen_around',
  'happen_around_yesterday',
  'around_yesterday_hour',
  'yesterday_hour_ago',
  'hour_ago_call',
  'ago_call_anyth',
  'call_anyth_fulli',
  'anyth_fulli_intend',
  'fulli_intend_go',
  'intend_go_threat',
  'go_threat_know',
  'threat_know_theyr',
  'know_theyr_struggl',
  'theyr_struggl_right',
  'struggl_right_wibta',
  'right_wibta_call',
  'wibta_call_polic',
  'call_polic_edit',
  'polic_edit_thank',
  'edit_thank_advic',
  'thank_advic_search',
  'advic_search_uk',
  'search_uk_govern',
  'uk_govern_websit',
  'govern_websit_ive',
  'websit_ive_manag',
  'ive_manag_figur',
  'manag_figur_legal',
  'figur_legal_ive',
  'legal_ive_also',
  'ive_also_call',
  'also_call_polic',
  'call_polic_alreadi',
  'polic_alreadi_reciev',
  'alreadi_reciev_updat',
  'reciev_updat_yet',
  'updat_yet_ill',
  'yet_ill_share',
  'ill_share_edit',
  'share_edit_call',
  'edit_call_polic',
  'call_polic_small',
  'polic_small_ago',
  'small_ago_minut',
  'ago_minut_ago',
  'minut_ago_came',
  'ago_came_return',
  'came_return_key',
  'return_key_let',
  'key_let_know',
  'let_know_famili',
  'know_famili_told',
  'famili_told_leav',
  'told_leav_first',
  'leav_first_refus',
  'first_refus_eventu',
  'refus_eventu_pack',
  'eventu_pack_thing',
  'pack_thing_went',
  'thing_went_ex',
  'went_ex_boyfriend',
  'ex_boyfriend_brother',
  'boyfriend_brother_brother',
  'brother_brother_wife',
  'brother_wife_blow',
  'wife_blow_phone',
  'blow_phone_ask',
  'phone_ask_hell',
  'ask_hell_id',
  'hell_id_put',
  'id_put_children',
  'put_children_ive',
  'children_ive_block',
  'ive_block_feel',
  'block_feel_absolut',
  'feel_absolut_terribl',
  'absolut_terribl_know',
  'terribl_know_probabl',
  'know_probabl_better',
  'probabl_better_way',
  'better_way_handl',
  'way_handl_situat',
  ...],
 ['mom',
  'marri',
  'step',
  'father',
  'year',
  'old',
  'son',
  'daughter',
  'year',
  'later',
  'togeth',
  'step',
  'brother',
  'half',
  'sister',
  'step',
  'father',
  'father',
  'figur',
  'know',
  'ive',
  'alway',
  'call',
  'dad',
  'actual',
  'dad',
  'life',
  'grow',
  'alway',
  'notic',
  'treat',
  'differ',
  'never',
  'mistreat',
  'alway',
  'interest',
  'children',
  'fact',
  'alway',
  'show',
  'littl',
  'interest',
  'ive',
  'alway',
  'felt',
  'like',
  'second',
  'class',
  'famili',
  'member',
  'mom',
  'treat',
  'step',
  'brother',
  'exactli',
  'like',
  'step',
  'father',
  'anyway',
  'last',
  'coupl',
  'year',
  'difficult',
  'step',
  'father',
  'start',
  'stuff',
  'sibl',
  'like',
  'go',
  'trip',
  'go',
  'fish',
  'hike',
  'father-children',
  'bond',
  'moment',
  'call',
  'never',
  'taken',
  'despit',
  'ask',
  'go',
  'initi',
  'alway',
  'said',
  'mayb',
  'next',
  'time',
  'call',
  'last',
  'week',
  'took',
  'asid',
  'explain',
  'children',
  'im',
  'child',
  'like',
  'said',
  'love',
  'differ',
  'cant',
  'dilut',
  'experi',
  'bring',
  'well',
  'said',
  'mom',
  'spend',
  'mother-child',
  'moment',
  'sister',
  'want',
  'well',
  'would',
  'good',
  'us',
  'us',
  'convers',
  'happen',
  'friday',
  'went',
  'weekend',
  'trip',
  'mom',
  'told',
  'feel',
  'cant',
  'chang',
  'made',
  'sure',
  'im',
  'alway',
  'treat',
  'equal',
  'come',
  'money',
  'true',
  'cant',
  'chang',
  'way',
  'feel',
  'need',
  'accept',
  'ive',
  'think',
  'weekend',
  'clear',
  'see',
  'son',
  'wrong',
  'see',
  'dad',
  'decid',
  'im',
  'step',
  'child',
  'toler',
  'mom',
  'im',
  'go',
  'pretend',
  'like',
  'anyth',
  'decid',
  'stop',
  'call',
  'dad',
  'go',
  'first',
  'name',
  'sunday',
  'night',
  'return',
  'said',
  'tom',
  'surpris',
  'say',
  'anyth',
  'dinner',
  'ask',
  'explain',
  'want',
  'dilut',
  'experi',
  'real',
  'children',
  'call',
  'dad',
  'clearli',
  'im',
  'son',
  'someth',
  'kept',
  'actual',
  'children',
  'told',
  'go',
  'room',
  'mom',
  'later',
  'came',
  'said',
  'hurt',
  'apolog',
  'said',
  'im',
  'follow',
  'lead',
  'treat',
  'exactli',
  'like',
  'want',
  'treat',
  'action',
  'hurt',
  'look',
  'mirror',
  'action',
  'mom',
  'told',
  'end',
  'man',
  'rais',
  'life',
  'need',
  'apolog',
  'show',
  'remors',
  'say',
  '%',
  'way',
  'dad',
  'ignor',
  'focu',
  'miss',
  '%',
  'reject',
  'entir',
  'declin',
  'said',
  'one',
  'need',
  'apolog',
  'want',
  'thing',
  'chang',
  'us',
  'asshol',
  'situat',
  'mom_marri',
  'marri_step',
  'step_father',
  'father_year',
  'year_old',
  'old_son',
  'son_daughter',
  'daughter_year',
  'year_later',
  'later_togeth',
  'togeth_step',
  'step_brother',
  'brother_half',
  'half_sister',
  'sister_step',
  'step_father',
  'father_father',
  'father_figur',
  'figur_know',
  'know_ive',
  'ive_alway',
  'alway_call',
  'call_dad',
  'dad_actual',
  'actual_dad',
  'dad_life',
  'life_grow',
  'grow_alway',
  'alway_notic',
  'notic_treat',
  'treat_differ',
  'differ_never',
  'never_mistreat',
  'mistreat_alway',
  'alway_interest',
  'interest_children',
  'children_fact',
  'fact_alway',
  'alway_show',
  'show_littl',
  'littl_interest',
  'interest_ive',
  'ive_alway',
  'alway_felt',
  'felt_like',
  'like_second',
  'second_class',
  'class_famili',
  'famili_member',
  'member_mom',
  'mom_treat',
  'treat_step',
  'step_brother',
  'brother_exactli',
  'exactli_like',
  'like_step',
  'step_father',
  'father_anyway',
  'anyway_last',
  'last_coupl',
  'coupl_year',
  'year_difficult',
  'difficult_step',
  'step_father',
  'father_start',
  'start_stuff',
  'stuff_sibl',
  'sibl_like',
  'like_go',
  'go_trip',
  'trip_go',
  'go_fish',
  'fish_hike',
  'hike_father-children',
  'father-children_bond',
  'bond_moment',
  'moment_call',
  'call_never',
  'never_taken',
  'taken_despit',
  'despit_ask',
  'ask_go',
  'go_initi',
  'initi_alway',
  'alway_said',
  'said_mayb',
  'mayb_next',
  'next_time',
  'time_call',
  'call_last',
  'last_week',
  'week_took',
  'took_asid',
  'asid_explain',
  'explain_children',
  'children_im',
  'im_child',
  'child_like',
  'like_said',
  'said_love',
  'love_differ',
  'differ_cant',
  'cant_dilut',
  'dilut_experi',
  'experi_bring',
  'bring_well',
  'well_said',
  'said_mom',
  'mom_spend',
  'spend_mother-child',
  'mother-child_moment',
  'moment_sister',
  'sister_want',
  'want_well',
  'well_would',
  'would_good',
  'good_us',
  'us_us',
  'us_convers',
  'convers_happen',
  'happen_friday',
  'friday_went',
  'went_weekend',
  'weekend_trip',
  'trip_mom',
  'mom_told',
  'told_feel',
  'feel_cant',
  'cant_chang',
  'chang_made',
  'made_sure',
  'sure_im',
  'im_alway',
  'alway_treat',
  'treat_equal',
  'equal_come',
  'come_money',
  'money_true',
  'true_cant',
  'cant_chang',
  'chang_way',
  'way_feel',
  'feel_need',
  'need_accept',
  'accept_ive',
  'ive_think',
  'think_weekend',
  'weekend_clear',
  'clear_see',
  'see_son',
  'son_wrong',
  'wrong_see',
  'see_dad',
  'dad_decid',
  'decid_im',
  'im_step',
  'step_child',
  'child_toler',
  'toler_mom',
  'mom_im',
  'im_go',
  'go_pretend',
  'pretend_like',
  'like_anyth',
  'anyth_decid',
  'decid_stop',
  'stop_call',
  'call_dad',
  'dad_go',
  'go_first',
  'first_name',
  'name_sunday',
  'sunday_night',
  'night_return',
  'return_said',
  'said_tom',
  'tom_surpris',
  'surpris_say',
  'say_anyth',
  'anyth_dinner',
  'dinner_ask',
  'ask_explain',
  'explain_want',
  'want_dilut',
  'dilut_experi',
  'experi_real',
  'real_children',
  'children_call',
  'call_dad',
  'dad_clearli',
  'clearli_im',
  'im_son',
  'son_someth',
  'someth_kept',
  'kept_actual',
  'actual_children',
  'children_told',
  'told_go',
  'go_room',
  'room_mom',
  'mom_later',
  'later_came',
  'came_said',
  'said_hurt',
  'hurt_apolog',
  'apolog_said',
  'said_im',
  'im_follow',
  'follow_lead',
  'lead_treat',
  'treat_exactli',
  'exactli_like',
  'like_want',
  'want_treat',
  'treat_action',
  'action_hurt',
  'hurt_look',
  'look_mirror',
  'mirror_action',
  'action_mom',
  'mom_told',
  'told_end',
  'end_man',
  'man_rais',
  'rais_life',
  'life_need',
  'need_apolog',
  'apolog_show',
  'show_remors',
  'remors_say',
  'say_%',
  '%_way',
  'way_dad',
  'dad_ignor',
  'ignor_focu',
  'focu_miss',
  'miss_%',
  '%_reject',
  'reject_entir',
  'entir_declin',
  'declin_said',
  'said_one',
  'one_need',
  'need_apolog',
  'apolog_want',
  'want_thing',
  'thing_chang',
  'chang_us',
  'us_asshol',
  'asshol_situat',
  'mom_marri_step',
  'marri_step_father',
  'step_father_year',
  'father_year_old',
  'year_old_son',
  'old_son_daughter',
  'son_daughter_year',
  'daughter_year_later',
  'year_later_togeth',
  'later_togeth_step',
  'togeth_step_brother',
  'step_brother_half',
  'brother_half_sister',
  'half_sister_step',
  'sister_step_father',
  'step_father_father',
  'father_father_figur',
  'father_figur_know',
  'figur_know_ive',
  'know_ive_alway',
  'ive_alway_call',
  'alway_call_dad',
  'call_dad_actual',
  'dad_actual_dad',
  'actual_dad_life',
  'dad_life_grow',
  'life_grow_alway',
  'grow_alway_notic',
  'alway_notic_treat',
  'notic_treat_differ',
  'treat_differ_never',
  'differ_never_mistreat',
  'never_mistreat_alway',
  'mistreat_alway_interest',
  'alway_interest_children',
  'interest_children_fact',
  'children_fact_alway',
  'fact_alway_show',
  'alway_show_littl',
  'show_littl_interest',
  'littl_interest_ive',
  'interest_ive_alway',
  'ive_alway_felt',
  'alway_felt_like',
  'felt_like_second',
  'like_second_class',
  'second_class_famili',
  'class_famili_member',
  'famili_member_mom',
  'member_mom_treat',
  'mom_treat_step',
  'treat_step_brother',
  'step_brother_exactli',
  'brother_exactli_like',
  'exactli_like_step',
  'like_step_father',
  'step_father_anyway',
  'father_anyway_last',
  'anyway_last_coupl',
  'last_coupl_year',
  'coupl_year_difficult',
  'year_difficult_step',
  'difficult_step_father',
  'step_father_start',
  'father_start_stuff',
  'start_stuff_sibl',
  'stuff_sibl_like',
  'sibl_like_go',
  'like_go_trip',
  'go_trip_go',
  'trip_go_fish',
  'go_fish_hike',
  'fish_hike_father-children',
  'hike_father-children_bond',
  'father-children_bond_moment',
  'bond_moment_call',
  'moment_call_never',
  'call_never_taken',
  'never_taken_despit',
  'taken_despit_ask',
  'despit_ask_go',
  'ask_go_initi',
  'go_initi_alway',
  'initi_alway_said',
  'alway_said_mayb',
  'said_mayb_next',
  'mayb_next_time',
  'next_time_call',
  'time_call_last',
  'call_last_week',
  'last_week_took',
  'week_took_asid',
  'took_asid_explain',
  'asid_explain_children',
  'explain_children_im',
  'children_im_child',
  'im_child_like',
  'child_like_said',
  'like_said_love',
  'said_love_differ',
  'love_differ_cant',
  'differ_cant_dilut',
  'cant_dilut_experi',
  'dilut_experi_bring',
  'experi_bring_well',
  'bring_well_said',
  'well_said_mom',
  'said_mom_spend',
  'mom_spend_mother-child',
  'spend_mother-child_moment',
  'mother-child_moment_sister',
  'moment_sister_want',
  'sister_want_well',
  'want_well_would',
  'well_would_good',
  'would_good_us',
  'good_us_us',
  'us_us_convers',
  'us_convers_happen',
  'convers_happen_friday',
  'happen_friday_went',
  'friday_went_weekend',
  'went_weekend_trip',
  'weekend_trip_mom',
  'trip_mom_told',
  'mom_told_feel',
  'told_feel_cant',
  'feel_cant_chang',
  'cant_chang_made',
  'chang_made_sure',
  'made_sure_im',
  'sure_im_alway',
  'im_alway_treat',
  'alway_treat_equal',
  'treat_equal_come',
  'equal_come_money',
  'come_money_true',
  'money_true_cant',
  'true_cant_chang',
  'cant_chang_way',
  'chang_way_feel',
  'way_feel_need',
  'feel_need_accept',
  'need_accept_ive',
  'accept_ive_think',
  'ive_think_weekend',
  'think_weekend_clear',
  'weekend_clear_see',
  'clear_see_son',
  'see_son_wrong',
  'son_wrong_see',
  'wrong_see_dad',
  'see_dad_decid',
  'dad_decid_im',
  'decid_im_step',
  'im_step_child',
  'step_child_toler',
  'child_toler_mom',
  'toler_mom_im',
  'mom_im_go',
  'im_go_pretend',
  'go_pretend_like',
  'pretend_like_anyth',
  'like_anyth_decid',
  'anyth_decid_stop',
  'decid_stop_call',
  'stop_call_dad',
  'call_dad_go',
  'dad_go_first',
  'go_first_name',
  'first_name_sunday',
  'name_sunday_night',
  'sunday_night_return',
  'night_return_said',
  'return_said_tom',
  'said_tom_surpris',
  'tom_surpris_say',
  'surpris_say_anyth',
  'say_anyth_dinner',
  'anyth_dinner_ask',
  'dinner_ask_explain',
  'ask_explain_want',
  'explain_want_dilut',
  'want_dilut_experi',
  'dilut_experi_real',
  'experi_real_children',
  'real_children_call',
  'children_call_dad',
  'call_dad_clearli',
  'dad_clearli_im',
  'clearli_im_son',
  'im_son_someth',
  'son_someth_kept',
  'someth_kept_actual',
  'kept_actual_children',
  'actual_children_told',
  'children_told_go',
  'told_go_room',
  'go_room_mom',
  'room_mom_later',
  'mom_later_came',
  'later_came_said',
  'came_said_hurt',
  'said_hurt_apolog',
  'hurt_apolog_said',
  'apolog_said_im',
  'said_im_follow',
  'im_follow_lead',
  'follow_lead_treat',
  'lead_treat_exactli',
  'treat_exactli_like',
  'exactli_like_want',
  'like_want_treat',
  'want_treat_action',
  'treat_action_hurt',
  'action_hurt_look',
  'hurt_look_mirror',
  'look_mirror_action',
  'mirror_action_mom',
  'action_mom_told',
  'mom_told_end',
  'told_end_man',
  'end_man_rais',
  'man_rais_life',
  'rais_life_need',
  'life_need_apolog',
  'need_apolog_show',
  'apolog_show_remors',
  'show_remors_say',
  'remors_say_%',
  'say_%_way',
  '%_way_dad',
  'way_dad_ignor',
  'dad_ignor_focu',
  'ignor_focu_miss',
  'focu_miss_%',
  'miss_%_reject',
  '%_reject_entir',
  'reject_entir_declin',
  'entir_declin_said',
  'declin_said_one',
  'said_one_need',
  'one_need_apolog',
  'need_apolog_want',
  'apolog_want_thing',
  'want_thing_chang',
  'thing_chang_us',
  'chang_us_asshol',
  'us_asshol_situat'],
 ['daughter',
  'die',
  'week',
  'ago',
  'sid',
  'day',
  'old',
  'imagin',
  'devast',
  'entir',
  'famili',
  'ive',
  'plan',
  'funer',
  'even',
  'babi',
  'quit',
  'expens',
  'mother',
  'hound',
  'get',
  'done',
  'cultur',
  'peopl',
  'funer',
  'happen',
  'day',
  'death',
  'ive',
  'save',
  'past',
  'week',
  'give',
  'babi',
  'funer',
  'deserv',
  'particularli',
  'urn',
  'would',
  'like',
  'final',
  'snap',
  'yesterday',
  'said',
  'sinc',
  'concern',
  'speed',
  'process',
  'pay',
  'fuck',
  'thing',
  'got',
  'upset',
  'sinc',
  'tri',
  'honor',
  'cultur',
  'dad',
  'think',
  'bit',
  'ass',
  'snap',
  'mostli',
  'suggest',
  'pay',
  'aita',
  'daughter_die',
  'die_week',
  'week_ago',
  'ago_sid',
  'sid_day',
  'day_old',
  'old_imagin',
  'imagin_devast',
  'devast_entir',
  'entir_famili',
  'famili_ive',
  'ive_plan',
  'plan_funer',
  'funer_even',
  'even_babi',
  'babi_quit',
  'quit_expens',
  'expens_mother',
  'mother_hound',
  'hound_get',
  'get_done',
  'done_cultur',
  'cultur_peopl',
  'peopl_funer',
  'funer_happen',
  'happen_day',
  'day_death',
  'death_ive',
  'ive_save',
  'save_past',
  'past_week',
  'week_give',
  'give_babi',
  'babi_funer',
  'funer_deserv',
  'deserv_particularli',
  'particularli_urn',
  'urn_would',
  'would_like',
  'like_final',
  'final_snap',
  'snap_yesterday',
  'yesterday_said',
  'said_sinc',
  'sinc_concern',
  'concern_speed',
  'speed_process',
  'process_pay',
  'pay_fuck',
  'fuck_thing',
  'thing_got',
  'got_upset',
  'upset_sinc',
  'sinc_tri',
  'tri_honor',
  'honor_cultur',
  'cultur_dad',
  'dad_think',
  'think_bit',
  'bit_ass',
  'ass_snap',
  'snap_mostli',
  'mostli_suggest',
  'suggest_pay',
  'pay_aita',
  'daughter_die_week',
  'die_week_ago',
  'week_ago_sid',
  'ago_sid_day',
  'sid_day_old',
  'day_old_imagin',
  'old_imagin_devast',
  'imagin_devast_entir',
  'devast_entir_famili',
  'entir_famili_ive',
  'famili_ive_plan',
  'ive_plan_funer',
  'plan_funer_even',
  'funer_even_babi',
  'even_babi_quit',
  'babi_quit_expens',
  'quit_expens_mother',
  'expens_mother_hound',
  'mother_hound_get',
  'hound_get_done',
  'get_done_cultur',
  'done_cultur_peopl',
  'cultur_peopl_funer',
  'peopl_funer_happen',
  'funer_happen_day',
  'happen_day_death',
  'day_death_ive',
  'death_ive_save',
  'ive_save_past',
  'save_past_week',
  'past_week_give',
  'week_give_babi',
  'give_babi_funer',
  'babi_funer_deserv',
  'funer_deserv_particularli',
  'deserv_particularli_urn',
  'particularli_urn_would',
  'urn_would_like',
  'would_like_final',
  'like_final_snap',
  'final_snap_yesterday',
  'snap_yesterday_said',
  'yesterday_said_sinc',
  'said_sinc_concern',
  'sinc_concern_speed',
  'concern_speed_process',
  'speed_process_pay',
  'process_pay_fuck',
  'pay_fuck_thing',
  'fuck_thing_got',
  'thing_got_upset',
  'got_upset_sinc',
  'upset_sinc_tri',
  'sinc_tri_honor',
  'tri_honor_cultur',
  'honor_cultur_dad',
  'cultur_dad_think',
  'dad_think_bit',
  'think_bit_ass',
  'bit_ass_snap',
  'ass_snap_mostli',
  'snap_mostli_suggest',
  'mostli_suggest_pay',
  'suggest_pay_aita'],
 ['marri',
  'man',
  'year',
  'son',
  'son',
  'kill',
  'drunk',
  'driver',
  'support',
  'divorc',
  'year',
  'ago',
  'move',
  'differ',
  'state',
  'spoken',
  'sinc',
  'month',
  'ago',
  'contact',
  'executor',
  'inform',
  'death',
  'latest',
  'written',
  'year',
  'ago',
  'went',
  'inform',
  'left',
  'everyth',
  'except',
  '$',
  'left',
  'girlfriend',
  'togeth',
  'year',
  'live',
  'hous',
  'girlfriend',
  'demand',
  'surrend',
  'inherit',
  'say',
  'one',
  'drown',
  'grief',
  'move',
  'still',
  'feel',
  'guilt',
  'death',
  'son',
  'refus',
  'far',
  'still',
  'feel',
  'bit',
  'guilti',
  'sinc',
  'plan',
  'sell',
  'hous',
  'marit',
  'hous',
  'bear',
  'stay',
  'son',
  'death',
  'look',
  'hous',
  'cant',
  'afford',
  'job',
  'also',
  'make',
  'good',
  'live',
  'hous',
  'outright',
  'inherit',
  'parent',
  'aita',
  'edit',
  'sinc',
  'seem',
  'like',
  'frequent',
  'question',
  'offer',
  'stay',
  'hous',
  'free',
  'charg',
  'next',
  'month',
  'put',
  'market',
  'also',
  'offer',
  'choic',
  'whatev',
  'want',
  'take',
  'ex',
  'person',
  'affect',
  'hous',
  'furnitur',
  'want',
  'take',
  'continu',
  'use',
  'car',
  'marri_man',
  'man_year',
  'year_son',
  'son_son',
  'son_kill',
  'kill_drunk',
  'drunk_driver',
  'driver_support',
  'support_divorc',
  'divorc_year',
  'year_ago',
  'ago_move',
  'move_differ',
  'differ_state',
  'state_spoken',
  'spoken_sinc',
  'sinc_month',
  'month_ago',
  'ago_contact',
  'contact_executor',
  'executor_inform',
  'inform_death',
  'death_latest',
  'latest_written',
  'written_year',
  'year_ago',
  'ago_went',
  'went_inform',
  'inform_left',
  'left_everyth',
  'everyth_except',
  'except_$',
  '$_left',
  'left_girlfriend',
  'girlfriend_togeth',
  'togeth_year',
  'year_live',
  'live_hous',
  'hous_girlfriend',
  'girlfriend_demand',
  'demand_surrend',
  'surrend_inherit',
  'inherit_say',
  'say_one',
  'one_drown',
  'drown_grief',
  'grief_move',
  'move_still',
  'still_feel',
  'feel_guilt',
  'guilt_death',
  'death_son',
  'son_refus',
  'refus_far',
  'far_still',
  'still_feel',
  'feel_bit',
  'bit_guilti',
  'guilti_sinc',
  'sinc_plan',
  'plan_sell',
  'sell_hous',
  'hous_marit',
  'marit_hous',
  'hous_bear',
  'bear_stay',
  'stay_son',
  'son_death',
  'death_look',
  'look_hous',
  'hous_cant',
  'cant_afford',
  'afford_job',
  'job_also',
  'also_make',
  'make_good',
  'good_live',
  'live_hous',
  'hous_outright',
  'outright_inherit',
  'inherit_parent',
  'parent_aita',
  'aita_edit',
  'edit_sinc',
  'sinc_seem',
  'seem_like',
  'like_frequent',
  'frequent_question',
  'question_offer',
  'offer_stay',
  'stay_hous',
  'hous_free',
  'free_charg',
  'charg_next',
  'next_month',
  'month_put',
  'put_market',
  'market_also',
  'also_offer',
  'offer_choic',
  'choic_whatev',
  'whatev_want',
  'want_take',
  'take_ex',
  'ex_person',
  'person_affect',
  'affect_hous',
  'hous_furnitur',
  'furnitur_want',
  'want_take',
  'take_continu',
  'continu_use',
  'use_car',
  'marri_man_year',
  'man_year_son',
  'year_son_son',
  'son_son_kill',
  'son_kill_drunk',
  'kill_drunk_driver',
  'drunk_driver_support',
  'driver_support_divorc',
  'support_divorc_year',
  'divorc_year_ago',
  'year_ago_move',
  'ago_move_differ',
  'move_differ_state',
  'differ_state_spoken',
  'state_spoken_sinc',
  'spoken_sinc_month',
  'sinc_month_ago',
  'month_ago_contact',
  'ago_contact_executor',
  'contact_executor_inform',
  'executor_inform_death',
  'inform_death_latest',
  'death_latest_written',
  'latest_written_year',
  'written_year_ago',
  'year_ago_went',
  'ago_went_inform',
  'went_inform_left',
  'inform_left_everyth',
  'left_everyth_except',
  'everyth_except_$',
  'except_$_left',
  '$_left_girlfriend',
  'left_girlfriend_togeth',
  'girlfriend_togeth_year',
  'togeth_year_live',
  'year_live_hous',
  'live_hous_girlfriend',
  'hous_girlfriend_demand',
  'girlfriend_demand_surrend',
  'demand_surrend_inherit',
  'surrend_inherit_say',
  'inherit_say_one',
  'say_one_drown',
  'one_drown_grief',
  'drown_grief_move',
  'grief_move_still',
  'move_still_feel',
  'still_feel_guilt',
  'feel_guilt_death',
  'guilt_death_son',
  'death_son_refus',
  'son_refus_far',
  'refus_far_still',
  'far_still_feel',
  'still_feel_bit',
  'feel_bit_guilti',
  'bit_guilti_sinc',
  'guilti_sinc_plan',
  'sinc_plan_sell',
  'plan_sell_hous',
  'sell_hous_marit',
  'hous_marit_hous',
  'marit_hous_bear',
  'hous_bear_stay',
  'bear_stay_son',
  'stay_son_death',
  'son_death_look',
  'death_look_hous',
  'look_hous_cant',
  'hous_cant_afford',
  'cant_afford_job',
  'afford_job_also',
  'job_also_make',
  'also_make_good',
  'make_good_live',
  'good_live_hous',
  'live_hous_outright',
  'hous_outright_inherit',
  'outright_inherit_parent',
  'inherit_parent_aita',
  'parent_aita_edit',
  'aita_edit_sinc',
  'edit_sinc_seem',
  'sinc_seem_like',
  'seem_like_frequent',
  'like_frequent_question',
  'frequent_question_offer',
  'question_offer_stay',
  'offer_stay_hous',
  'stay_hous_free',
  'hous_free_charg',
  'free_charg_next',
  'charg_next_month',
  'next_month_put',
  'month_put_market',
  'put_market_also',
  'market_also_offer',
  'also_offer_choic',
  'offer_choic_whatev',
  'choic_whatev_want',
  'whatev_want_take',
  'want_take_ex',
  'take_ex_person',
  'ex_person_affect',
  'person_affect_hous',
  'affect_hous_furnitur',
  'hous_furnitur_want',
  'furnitur_want_take',
  'want_take_continu',
  'take_continu_use',
  'continu_use_car'],
 ['husband',
  'pass',
  'away',
  'week',
  'ago',
  'use',
  'work',
  'compani',
  'year',
  'hed',
  'known',
  'lot',
  'peopl',
  'made',
  'mani',
  'friend',
  'day',
  'kept',
  'get',
  'text',
  'colleagu',
  'ted',
  'know',
  'person',
  'idea',
  'even',
  'got',
  'number',
  'first',
  'text',
  'text',
  'get',
  'number',
  'repli',
  'say',
  'got',
  'husband',
  'first',
  'felt',
  'annoy',
  'start',
  'get',
  'flirti',
  'text',
  'start',
  'get',
  'inappropri',
  'warn',
  'stop',
  'sent',
  'pic',
  'one',
  'night',
  'ask',
  'need',
  'compani',
  'sinc',
  'knew',
  'lone',
  'appal',
  'enrag',
  'even',
  'sleep',
  'night',
  'wait',
  'til',
  'earli',
  'morn',
  'go',
  'compani',
  'straight',
  'boss',
  'file',
  'report',
  'explain',
  'detail',
  'behavior',
  'end',
  'get',
  'fire',
  'colleagu',
  'said',
  'husband',
  'wrong',
  'disrespect',
  'memori',
  'start',
  'argu',
  'low',
  'come',
  'work',
  'hope',
  'ruin',
  'livelihood',
  'kept',
  'say',
  'work',
  'place',
  'noth',
  'told',
  'ive',
  'known',
  'husband',
  'colleagu',
  'colleagu',
  'friend',
  'said',
  'aim',
  'get',
  'fire',
  'noth',
  'wrong',
  'couldv',
  'talk',
  'instead',
  'mom',
  'call',
  'po',
  'husband',
  'also',
  'said',
  'point',
  'come',
  'livelihood',
  'sinc',
  'guy',
  'kid',
  'provid',
  'felt',
  'bed',
  'whole',
  'thing',
  'feel',
  'like',
  'made',
  'thing',
  'wors',
  'act',
  'emot',
  'husband_pass',
  'pass_away',
  'away_week',
  'week_ago',
  'ago_use',
  'use_work',
  'work_compani',
  'compani_year',
  'year_hed',
  'hed_known',
  'known_lot',
  'lot_peopl',
  'peopl_made',
  'made_mani',
  'mani_friend',
  'friend_day',
  'day_kept',
  'kept_get',
  'get_text',
  'text_colleagu',
  'colleagu_ted',
  'ted_know',
  'know_person',
  'person_idea',
  'idea_even',
  'even_got',
  'got_number',
  'number_first',
  'first_text',
  'text_text',
  'text_get',
  'get_number',
  'number_repli',
  'repli_say',
  'say_got',
  'got_husband',
  'husband_first',
  'first_felt',
  'felt_annoy',
  'annoy_start',
  'start_get',
  'get_flirti',
  'flirti_text',
  'text_start',
  'start_get',
  'get_inappropri',
  'inappropri_warn',
  'warn_stop',
  'stop_sent',
  'sent_pic',
  'pic_one',
  'one_night',
  'night_ask',
  'ask_need',
  'need_compani',
  'compani_sinc',
  'sinc_knew',
  'knew_lone',
  'lone_appal',
  'appal_enrag',
  'enrag_even',
  'even_sleep',
  'sleep_night',
  'night_wait',
  'wait_til',
  'til_earli',
  'earli_morn',
  'morn_go',
  'go_compani',
  'compani_straight',
  'straight_boss',
  'boss_file',
  'file_report',
  'report_explain',
  'explain_detail',
  'detail_behavior',
  'behavior_end',
  'end_get',
  'get_fire',
  'fire_colleagu',
  'colleagu_said',
  'said_husband',
  'husband_wrong',
  'wrong_disrespect',
  'disrespect_memori',
  'memori_start',
  'start_argu',
  'argu_low',
  'low_come',
  'come_work',
  'work_hope',
  'hope_ruin',
  'ruin_livelihood',
  'livelihood_kept',
  'kept_say',
  'say_work',
  'work_place',
  'place_noth',
  'noth_told',
  'told_ive',
  'ive_known',
  'known_husband',
  'husband_colleagu',
  'colleagu_colleagu',
  'colleagu_friend',
  'friend_said',
  'said_aim',
  'aim_get',
  'get_fire',
  'fire_noth',
  'noth_wrong',
  'wrong_couldv',
  'couldv_talk',
  'talk_instead',
  'instead_mom',
  'mom_call',
  'call_po',
  'po_husband',
  'husband_also',
  'also_said',
  'said_point',
  'point_come',
  'come_livelihood',
  'livelihood_sinc',
  'sinc_guy',
  'guy_kid',
  'kid_provid',
  'provid_felt',
  'felt_bed',
  'bed_whole',
  'whole_thing',
  'thing_feel',
  'feel_like',
  'like_made',
  'made_thing',
  'thing_wors',
  'wors_act',
  'act_emot',
  'husband_pass_away',
  'pass_away_week',
  'away_week_ago',
  'week_ago_use',
  'ago_use_work',
  'use_work_compani',
  'work_compani_year',
  'compani_year_hed',
  'year_hed_known',
  'hed_known_lot',
  'known_lot_peopl',
  'lot_peopl_made',
  'peopl_made_mani',
  'made_mani_friend',
  'mani_friend_day',
  'friend_day_kept',
  'day_kept_get',
  'kept_get_text',
  'get_text_colleagu',
  'text_colleagu_ted',
  'colleagu_ted_know',
  'ted_know_person',
  'know_person_idea',
  'person_idea_even',
  'idea_even_got',
  'even_got_number',
  'got_number_first',
  'number_first_text',
  'first_text_text',
  'text_text_get',
  'text_get_number',
  'get_number_repli',
  'number_repli_say',
  'repli_say_got',
  'say_got_husband',
  'got_husband_first',
  'husband_first_felt',
  'first_felt_annoy',
  'felt_annoy_start',
  'annoy_start_get',
  'start_get_flirti',
  'get_flirti_text',
  'flirti_text_start',
  'text_start_get',
  'start_get_inappropri',
  'get_inappropri_warn',
  'inappropri_warn_stop',
  'warn_stop_sent',
  'stop_sent_pic',
  'sent_pic_one',
  'pic_one_night',
  'one_night_ask',
  'night_ask_need',
  'ask_need_compani',
  'need_compani_sinc',
  'compani_sinc_knew',
  'sinc_knew_lone',
  'knew_lone_appal',
  'lone_appal_enrag',
  'appal_enrag_even',
  'enrag_even_sleep',
  'even_sleep_night',
  'sleep_night_wait',
  'night_wait_til',
  'wait_til_earli',
  'til_earli_morn',
  'earli_morn_go',
  'morn_go_compani',
  'go_compani_straight',
  'compani_straight_boss',
  'straight_boss_file',
  'boss_file_report',
  'file_report_explain',
  'report_explain_detail',
  'explain_detail_behavior',
  'detail_behavior_end',
  'behavior_end_get',
  'end_get_fire',
  'get_fire_colleagu',
  'fire_colleagu_said',
  'colleagu_said_husband',
  'said_husband_wrong',
  'husband_wrong_disrespect',
  'wrong_disrespect_memori',
  'disrespect_memori_start',
  'memori_start_argu',
  'start_argu_low',
  'argu_low_come',
  'low_come_work',
  'come_work_hope',
  'work_hope_ruin',
  'hope_ruin_livelihood',
  'ruin_livelihood_kept',
  'livelihood_kept_say',
  'kept_say_work',
  'say_work_place',
  'work_place_noth',
  'place_noth_told',
  'noth_told_ive',
  'told_ive_known',
  'ive_known_husband',
  'known_husband_colleagu',
  'husband_colleagu_colleagu',
  'colleagu_colleagu_friend',
  'colleagu_friend_said',
  'friend_said_aim',
  'said_aim_get',
  'aim_get_fire',
  'get_fire_noth',
  'fire_noth_wrong',
  'noth_wrong_couldv',
  'wrong_couldv_talk',
  'couldv_talk_instead',
  'talk_instead_mom',
  'instead_mom_call',
  'mom_call_po',
  'call_po_husband',
  'po_husband_also',
  'husband_also_said',
  'also_said_point',
  'said_point_come',
  'point_come_livelihood',
  'come_livelihood_sinc',
  'livelihood_sinc_guy',
  'sinc_guy_kid',
  'guy_kid_provid',
  'kid_provid_felt',
  'provid_felt_bed',
  'felt_bed_whole',
  'bed_whole_thing',
  'whole_thing_feel',
  'thing_feel_like',
  'feel_like_made',
  'like_made_thing',
  'made_thing_wors',
  'thing_wors_act',
  'wors_act_emot'],
 ['ask',
  'play',
  'harp',
  'friend',
  'father',
  'wed',
  'normal',
  'would',
  'ask',
  'payment',
  'beforehand',
  'sinc',
  'famili',
  'friend',
  'ask',
  'could',
  'pay',
  'recept',
  'told',
  'ye',
  'date',
  'work',
  'set',
  'church',
  'hour',
  'hous',
  'show',
  'dress',
  'plan',
  'wear',
  'bride',
  'went',
  'music',
  'want',
  'rehears',
  'hanger',
  'look',
  'like',
  'would',
  'ugli',
  'hanger',
  'navi',
  'blue',
  'long',
  'sleev',
  'floor',
  'length',
  'surprisingli',
  'pretti',
  'got',
  'venu',
  'hour',
  'earli',
  'harp',
  'would',
  'time',
  'acclim',
  'room',
  'got',
  'bride',
  'mother',
  'came',
  'give',
  'corsag',
  'saw',
  'demand',
  'chang',
  'dress',
  'laugh',
  'ive',
  'known',
  'year',
  'realiz',
  'joke',
  'ask',
  'wrong',
  'said',
  'bride',
  'went',
  'non',
  'tradit',
  'dress',
  'also',
  'navi',
  'blue',
  'panick',
  'littl',
  'wed',
  'felt',
  'realli',
  'bad',
  'groom',
  'approv',
  'twice',
  'told',
  'mother',
  'ask',
  'color',
  'could',
  'chang',
  'bring',
  'extra',
  'dress',
  'unless',
  'dress',
  'somehow',
  'get',
  'approv',
  'beforehand',
  'told',
  'go',
  'bridal',
  'shop',
  'minut',
  'away',
  'buy',
  'new',
  'dress',
  'refus',
  'dress',
  'would',
  'cost',
  'get',
  'paid',
  'wed',
  'told',
  'afford',
  'felt',
  'bad',
  'begrudgingli',
  'walk',
  'away',
  'actual',
  'wed',
  'went',
  'smoothli',
  'everyon',
  'els',
  'left',
  'church',
  'congratul',
  'bride',
  'stop',
  'talk',
  'explain',
  'mother',
  'law',
  'said',
  'said',
  'fine',
  'think',
  'approv',
  'dress',
  'recept',
  'talk',
  'mother',
  'law',
  'payment',
  'refus',
  'pay',
  'want',
  'caus',
  'scene',
  'bride',
  'came',
  'heard',
  'us',
  'talk',
  'time',
  'also',
  'upset',
  'also',
  'refus',
  'pay',
  'know',
  'parent',
  'busi',
  'attend',
  'wed',
  'anyon',
  'back',
  'lot',
  'peopl',
  'assum',
  'harpist',
  'come',
  'lot',
  'money',
  'expens',
  'harp',
  'ive',
  'rent',
  'harp',
  'sinc',
  'th',
  'grade',
  'teacher',
  'pass',
  'bought',
  'amaz',
  'deal',
  'also',
  'charg',
  'lot',
  'less',
  'musician',
  'would',
  'colleg',
  'payment',
  'due',
  'day',
  'cant',
  'afford',
  'got',
  'parent',
  'involv',
  'got',
  'home',
  'dad',
  'talk',
  'friend',
  'father',
  'groom',
  'approv',
  'dress',
  'got',
  'payment',
  'still',
  'feel',
  'realli',
  'bad',
  'think',
  'anyth',
  'could',
  'done',
  'suck',
  'bought',
  'new',
  'dress',
  'aita',
  'ask_play',
  'play_harp',
  'harp_friend',
  'friend_father',
  'father_wed',
  'wed_normal',
  'normal_would',
  'would_ask',
  'ask_payment',
  'payment_beforehand',
  'beforehand_sinc',
  'sinc_famili',
  'famili_friend',
  'friend_ask',
  'ask_could',
  'could_pay',
  'pay_recept',
  'recept_told',
  'told_ye',
  'ye_date',
  'date_work',
  'work_set',
  'set_church',
  'church_hour',
  'hour_hous',
  'hous_show',
  'show_dress',
  'dress_plan',
  'plan_wear',
  'wear_bride',
  'bride_went',
  'went_music',
  'music_want',
  'want_rehears',
  'rehears_hanger',
  'hanger_look',
  'look_like',
  'like_would',
  'would_ugli',
  'ugli_hanger',
  'hanger_navi',
  'navi_blue',
  'blue_long',
  'long_sleev',
  'sleev_floor',
  'floor_length',
  'length_surprisingli',
  'surprisingli_pretti',
  'pretti_got',
  'got_venu',
  'venu_hour',
  'hour_earli',
  'earli_harp',
  'harp_would',
  'would_time',
  'time_acclim',
  'acclim_room',
  'room_got',
  'got_bride',
  'bride_mother',
  'mother_came',
  'came_give',
  'give_corsag',
  'corsag_saw',
  'saw_demand',
  'demand_chang',
  'chang_dress',
  'dress_laugh',
  'laugh_ive',
  'ive_known',
  'known_year',
  'year_realiz',
  'realiz_joke',
  'joke_ask',
  'ask_wrong',
  'wrong_said',
  'said_bride',
  'bride_went',
  'went_non',
  'non_tradit',
  'tradit_dress',
  'dress_also',
  'also_navi',
  'navi_blue',
  'blue_panick',
  'panick_littl',
  'littl_wed',
  'wed_felt',
  'felt_realli',
  'realli_bad',
  'bad_groom',
  'groom_approv',
  'approv_twice',
  'twice_told',
  'told_mother',
  'mother_ask',
  'ask_color',
  'color_could',
  'could_chang',
  'chang_bring',
  'bring_extra',
  'extra_dress',
  'dress_unless',
  'unless_dress',
  'dress_somehow',
  'somehow_get',
  'get_approv',
  'approv_beforehand',
  'beforehand_told',
  'told_go',
  'go_bridal',
  'bridal_shop',
  'shop_minut',
  'minut_away',
  'away_buy',
  'buy_new',
  'new_dress',
  'dress_refus',
  'refus_dress',
  'dress_would',
  'would_cost',
  'cost_get',
  'get_paid',
  'paid_wed',
  'wed_told',
  'told_afford',
  'afford_felt',
  'felt_bad',
  'bad_begrudgingli',
  'begrudgingli_walk',
  'walk_away',
  'away_actual',
  'actual_wed',
  'wed_went',
  'went_smoothli',
  'smoothli_everyon',
  'everyon_els',
  'els_left',
  'left_church',
  'church_congratul',
  'congratul_bride',
  'bride_stop',
  'stop_talk',
  'talk_explain',
  'explain_mother',
  'mother_law',
  'law_said',
  'said_said',
  'said_fine',
  'fine_think',
  'think_approv',
  'approv_dress',
  'dress_recept',
  'recept_talk',
  'talk_mother',
  'mother_law',
  'law_payment',
  'payment_refus',
  'refus_pay',
  'pay_want',
  'want_caus',
  'caus_scene',
  'scene_bride',
  'bride_came',
  'came_heard',
  'heard_us',
  'us_talk',
  'talk_time',
  'time_also',
  'also_upset',
  'upset_also',
  'also_refus',
  'refus_pay',
  'pay_know',
  'know_parent',
  'parent_busi',
  'busi_attend',
  'attend_wed',
  'wed_anyon',
  'anyon_back',
  'back_lot',
  'lot_peopl',
  'peopl_assum',
  'assum_harpist',
  'harpist_come',
  'come_lot',
  'lot_money',
  'money_expens',
  'expens_harp',
  'harp_ive',
  'ive_rent',
  'rent_harp',
  'harp_sinc',
  'sinc_th',
  'th_grade',
  'grade_teacher',
  'teacher_pass',
  'pass_bought',
  'bought_amaz',
  'amaz_deal',
  'deal_also',
  'also_charg',
  'charg_lot',
  'lot_less',
  'less_musician',
  'musician_would',
  'would_colleg',
  'colleg_payment',
  'payment_due',
  'due_day',
  'day_cant',
  'cant_afford',
  'afford_got',
  'got_parent',
  'parent_involv',
  'involv_got',
  'got_home',
  'home_dad',
  'dad_talk',
  'talk_friend',
  'friend_father',
  'father_groom',
  'groom_approv',
  'approv_dress',
  'dress_got',
  'got_payment',
  'payment_still',
  'still_feel',
  'feel_realli',
  'realli_bad',
  'bad_think',
  'think_anyth',
  'anyth_could',
  'could_done',
  'done_suck',
  'suck_bought',
  'bought_new',
  'new_dress',
  'dress_aita',
  'ask_play_harp',
  'play_harp_friend',
  'harp_friend_father',
  'friend_father_wed',
  'father_wed_normal',
  'wed_normal_would',
  'normal_would_ask',
  'would_ask_payment',
  'ask_payment_beforehand',
  'payment_beforehand_sinc',
  'beforehand_sinc_famili',
  'sinc_famili_friend',
  'famili_friend_ask',
  'friend_ask_could',
  'ask_could_pay',
  'could_pay_recept',
  'pay_recept_told',
  'recept_told_ye',
  'told_ye_date',
  'ye_date_work',
  'date_work_set',
  'work_set_church',
  'set_church_hour',
  'church_hour_hous',
  'hour_hous_show',
  'hous_show_dress',
  'show_dress_plan',
  'dress_plan_wear',
  'plan_wear_bride',
  'wear_bride_went',
  'bride_went_music',
  'went_music_want',
  'music_want_rehears',
  'want_rehears_hanger',
  'rehears_hanger_look',
  'hanger_look_like',
  'look_like_would',
  'like_would_ugli',
  'would_ugli_hanger',
  'ugli_hanger_navi',
  'hanger_navi_blue',
  'navi_blue_long',
  'blue_long_sleev',
  'long_sleev_floor',
  'sleev_floor_length',
  'floor_length_surprisingli',
  'length_surprisingli_pretti',
  'surprisingli_pretti_got',
  'pretti_got_venu',
  'got_venu_hour',
  'venu_hour_earli',
  'hour_earli_harp',
  'earli_harp_would',
  'harp_would_time',
  'would_time_acclim',
  'time_acclim_room',
  'acclim_room_got',
  'room_got_bride',
  'got_bride_mother',
  'bride_mother_came',
  'mother_came_give',
  'came_give_corsag',
  'give_corsag_saw',
  'corsag_saw_demand',
  'saw_demand_chang',
  'demand_chang_dress',
  'chang_dress_laugh',
  'dress_laugh_ive',
  'laugh_ive_known',
  'ive_known_year',
  'known_year_realiz',
  'year_realiz_joke',
  'realiz_joke_ask',
  'joke_ask_wrong',
  'ask_wrong_said',
  'wrong_said_bride',
  'said_bride_went',
  'bride_went_non',
  'went_non_tradit',
  'non_tradit_dress',
  'tradit_dress_also',
  'dress_also_navi',
  'also_navi_blue',
  'navi_blue_panick',
  'blue_panick_littl',
  'panick_littl_wed',
  'littl_wed_felt',
  'wed_felt_realli',
  'felt_realli_bad',
  'realli_bad_groom',
  'bad_groom_approv',
  'groom_approv_twice',
  'approv_twice_told',
  'twice_told_mother',
  'told_mother_ask',
  'mother_ask_color',
  'ask_color_could',
  'color_could_chang',
  'could_chang_bring',
  'chang_bring_extra',
  'bring_extra_dress',
  'extra_dress_unless',
  'dress_unless_dress',
  'unless_dress_somehow',
  'dress_somehow_get',
  'somehow_get_approv',
  'get_approv_beforehand',
  'approv_beforehand_told',
  'beforehand_told_go',
  'told_go_bridal',
  'go_bridal_shop',
  'bridal_shop_minut',
  'shop_minut_away',
  'minut_away_buy',
  'away_buy_new',
  'buy_new_dress',
  'new_dress_refus',
  'dress_refus_dress',
  'refus_dress_would',
  'dress_would_cost',
  'would_cost_get',
  'cost_get_paid',
  'get_paid_wed',
  'paid_wed_told',
  'wed_told_afford',
  'told_afford_felt',
  'afford_felt_bad',
  'felt_bad_begrudgingli',
  'bad_begrudgingli_walk',
  'begrudgingli_walk_away',
  'walk_away_actual',
  'away_actual_wed',
  'actual_wed_went',
  'wed_went_smoothli',
  'went_smoothli_everyon',
  'smoothli_everyon_els',
  'everyon_els_left',
  'els_left_church',
  'left_church_congratul',
  'church_congratul_bride',
  'congratul_bride_stop',
  'bride_stop_talk',
  'stop_talk_explain',
  'talk_explain_mother',
  'explain_mother_law',
  'mother_law_said',
  'law_said_said',
  'said_said_fine',
  'said_fine_think',
  'fine_think_approv',
  'think_approv_dress',
  'approv_dress_recept',
  'dress_recept_talk',
  'recept_talk_mother',
  'talk_mother_law',
  'mother_law_payment',
  'law_payment_refus',
  'payment_refus_pay',
  'refus_pay_want',
  'pay_want_caus',
  'want_caus_scene',
  'caus_scene_bride',
  'scene_bride_came',
  'bride_came_heard',
  'came_heard_us',
  'heard_us_talk',
  'us_talk_time',
  'talk_time_also',
  'time_also_upset',
  'also_upset_also',
  'upset_also_refus',
  'also_refus_pay',
  'refus_pay_know',
  'pay_know_parent',
  'know_parent_busi',
  'parent_busi_attend',
  'busi_attend_wed',
  'attend_wed_anyon',
  'wed_anyon_back',
  'anyon_back_lot',
  'back_lot_peopl',
  'lot_peopl_assum',
  'peopl_assum_harpist',
  'assum_harpist_come',
  'harpist_come_lot',
  'come_lot_money',
  'lot_money_expens',
  'money_expens_harp',
  'expens_harp_ive',
  'harp_ive_rent',
  'ive_rent_harp',
  'rent_harp_sinc',
  'harp_sinc_th',
  'sinc_th_grade',
  'th_grade_teacher',
  'grade_teacher_pass',
  'teacher_pass_bought',
  'pass_bought_amaz',
  'bought_amaz_deal',
  'amaz_deal_also',
  'deal_also_charg',
  'also_charg_lot',
  'charg_lot_less',
  'lot_less_musician',
  'less_musician_would',
  'musician_would_colleg',
  'would_colleg_payment',
  'colleg_payment_due',
  'payment_due_day',
  'due_day_cant',
  'day_cant_afford',
  'cant_afford_got',
  'afford_got_parent',
  'got_parent_involv',
  'parent_involv_got',
  'involv_got_home',
  'got_home_dad',
  'home_dad_talk',
  'dad_talk_friend',
  'talk_friend_father',
  'friend_father_groom',
  'father_groom_approv',
  'groom_approv_dress',
  'approv_dress_got',
  'dress_got_payment',
  'got_payment_still',
  'payment_still_feel',
  'still_feel_realli',
  'feel_realli_bad',
  'realli_bad_think',
  'bad_think_anyth',
  'think_anyth_could',
  'anyth_could_done',
  'could_done_suck',
  'done_suck_bought',
  'suck_bought_new',
  'bought_new_dress',
  'new_dress_aita'],
 ['husband',
  'marri',
  'year',
  'thing',
  'rockier',
  'good',
  'job',
  'make',
  'decent',
  'amount',
  'money',
  'wherea',
  'husband',
  'made',
  'much',
  'due',
  'fact',
  'still',
  'live',
  'parent',
  'got',
  'marri',
  'decid',
  'would',
  'move',
  'would',
  'continu',
  'pay',
  'rent',
  'bill',
  'long',
  'put',
  'money',
  'toward',
  'thing',
  'may',
  'need',
  'coupl',
  'name',
  'one',
  'leas',
  'howev',
  'got',
  'marri',
  'start',
  'cut',
  'work',
  'hour',
  'without',
  'say',
  'anyth',
  'first',
  'gave',
  'explan',
  'made',
  'plenti',
  'money',
  'us',
  'could',
  'work',
  'part',
  'time',
  'work',
  'around',
  'hous',
  'main',
  'breadwinn',
  'fine',
  'littl',
  'upset',
  'assum',
  'would',
  'okay',
  'say',
  'anyth',
  'felt',
  'fair',
  'work',
  'around',
  'hous',
  'initi',
  'spent',
  'major',
  'time',
  'go',
  'bar',
  'play',
  'video',
  'game',
  'etc',
  'point',
  'one',
  'work',
  '*',
  '*',
  'cook',
  'clean',
  'household',
  'chore',
  'husband',
  'told',
  'laid',
  'two',
  'month',
  'ago',
  'reason',
  'control',
  'assum',
  'time',
  'would',
  'begin',
  'job',
  'hunt',
  'began',
  'pay',
  'everyth',
  'earn',
  'decent',
  'amount',
  'money',
  'point',
  'pay',
  'rent',
  'bill',
  'groceri',
  'insur',
  'contribut',
  'emerg',
  'save',
  'financ',
  'lifestyl',
  'husband',
  'start',
  'indulg',
  'began',
  'pay',
  'night',
  'sub',
  'money',
  'trip',
  'look',
  'work',
  'etc',
  'assumpt',
  'would',
  'search',
  'new',
  'job',
  'least',
  'financ',
  'hobbi',
  'week',
  'ago',
  'ask',
  'job',
  'hunt',
  'go',
  'told',
  'feel',
  'like',
  'worth',
  'said',
  'comfort',
  'happi',
  'say',
  'least',
  'confront',
  'everyth',
  'financ',
  'take',
  'care',
  'household',
  'sat',
  'around',
  'play',
  'video',
  'game',
  'ass',
  'ill',
  'admit',
  'argument',
  'let',
  'slip',
  'actual',
  'quit',
  'never',
  'look',
  'anoth',
  'job',
  'furiou',
  'lie',
  'told',
  'want',
  'home',
  'right',
  'fast',
  'forward',
  'in-law',
  'understand',
  'extent',
  'call',
  'asshol',
  'want',
  'come',
  'back',
  'home',
  'get',
  'job',
  'seen',
  'husband',
  'time',
  'never',
  'home',
  'alway',
  'somewher',
  'longer',
  'pay',
  'everyth',
  'attitud',
  'toward',
  'make',
  'question',
  'entir',
  'relationship',
  'call',
  'asshol',
  'im',
  'begin',
  'think',
  'right',
  'asshol',
  'husband_marri',
  'marri_year',
  'year_thing',
  'thing_rockier',
  'rockier_good',
  'good_job',
  'job_make',
  'make_decent',
  'decent_amount',
  'amount_money',
  'money_wherea',
  'wherea_husband',
  'husband_made',
  'made_much',
  'much_due',
  'due_fact',
  'fact_still',
  'still_live',
  'live_parent',
  'parent_got',
  'got_marri',
  'marri_decid',
  'decid_would',
  'would_move',
  'move_would',
  'would_continu',
  'continu_pay',
  'pay_rent',
  'rent_bill',
  'bill_long',
  'long_put',
  'put_money',
  'money_toward',
  'toward_thing',
  'thing_may',
  'may_need',
  'need_coupl',
  'coupl_name',
  'name_one',
  'one_leas',
  'leas_howev',
  'howev_got',
  'got_marri',
  'marri_start',
  'start_cut',
  'cut_work',
  'work_hour',
  'hour_without',
  'without_say',
  'say_anyth',
  'anyth_first',
  'first_gave',
  'gave_explan',
  'explan_made',
  'made_plenti',
  'plenti_money',
  'money_us',
  'us_could',
  'could_work',
  'work_part',
  'part_time',
  'time_work',
  'work_around',
  'around_hous',
  'hous_main',
  'main_breadwinn',
  'breadwinn_fine',
  'fine_littl',
  'littl_upset',
  'upset_assum',
  'assum_would',
  'would_okay',
  'okay_say',
  'say_anyth',
  'anyth_felt',
  'felt_fair',
  'fair_work',
  'work_around',
  'around_hous',
  'hous_initi',
  'initi_spent',
  'spent_major',
  'major_time',
  'time_go',
  'go_bar',
  'bar_play',
  'play_video',
  'video_game',
  'game_etc',
  'etc_point',
  'point_one',
  'one_work',
  'work_*',
  '*_*',
  '*_cook',
  'cook_clean',
  'clean_household',
  'household_chore',
  'chore_husband',
  'husband_told',
  'told_laid',
  'laid_two',
  'two_month',
  'month_ago',
  'ago_reason',
  'reason_control',
  'control_assum',
  'assum_time',
  'time_would',
  'would_begin',
  'begin_job',
  'job_hunt',
  'hunt_began',
  'began_pay',
  'pay_everyth',
  'everyth_earn',
  'earn_decent',
  'decent_amount',
  'amount_money',
  'money_point',
  'point_pay',
  'pay_rent',
  'rent_bill',
  'bill_groceri',
  'groceri_insur',
  'insur_contribut',
  'contribut_emerg',
  'emerg_save',
  'save_financ',
  'financ_lifestyl',
  'lifestyl_husband',
  'husband_start',
  'start_indulg',
  'indulg_began',
  'began_pay',
  'pay_night',
  'night_sub',
  'sub_money',
  'money_trip',
  'trip_look',
  'look_work',
  'work_etc',
  'etc_assumpt',
  'assumpt_would',
  'would_search',
  'search_new',
  'new_job',
  'job_least',
  'least_financ',
  'financ_hobbi',
  'hobbi_week',
  'week_ago',
  'ago_ask',
  'ask_job',
  'job_hunt',
  'hunt_go',
  'go_told',
  'told_feel',
  'feel_like',
  'like_worth',
  'worth_said',
  'said_comfort',
  'comfort_happi',
  'happi_say',
  'say_least',
  'least_confront',
  'confront_everyth',
  'everyth_financ',
  'financ_take',
  'take_care',
  'care_household',
  'household_sat',
  'sat_around',
  'around_play',
  'play_video',
  'video_game',
  'game_ass',
  'ass_ill',
  'ill_admit',
  'admit_argument',
  'argument_let',
  'let_slip',
  'slip_actual',
  'actual_quit',
  'quit_never',
  'never_look',
  'look_anoth',
  'anoth_job',
  'job_furiou',
  'furiou_lie',
  'lie_told',
  'told_want',
  'want_home',
  'home_right',
  'right_fast',
  'fast_forward',
  'forward_in-law',
  'in-law_understand',
  'understand_extent',
  'extent_call',
  'call_asshol',
  'asshol_want',
  'want_come',
  'come_back',
  'back_home',
  'home_get',
  'get_job',
  'job_seen',
  'seen_husband',
  'husband_time',
  'time_never',
  'never_home',
  'home_alway',
  'alway_somewher',
  'somewher_longer',
  'longer_pay',
  'pay_everyth',
  'everyth_attitud',
  'attitud_toward',
  'toward_make',
  'make_question',
  'question_entir',
  'entir_relationship',
  'relationship_call',
  'call_asshol',
  'asshol_im',
  'im_begin',
  'begin_think',
  'think_right',
  'right_asshol',
  'husband_marri_year',
  'marri_year_thing',
  'year_thing_rockier',
  'thing_rockier_good',
  'rockier_good_job',
  'good_job_make',
  'job_make_decent',
  'make_decent_amount',
  'decent_amount_money',
  'amount_money_wherea',
  'money_wherea_husband',
  'wherea_husband_made',
  'husband_made_much',
  'made_much_due',
  'much_due_fact',
  'due_fact_still',
  'fact_still_live',
  'still_live_parent',
  'live_parent_got',
  'parent_got_marri',
  'got_marri_decid',
  'marri_decid_would',
  'decid_would_move',
  'would_move_would',
  'move_would_continu',
  'would_continu_pay',
  'continu_pay_rent',
  'pay_rent_bill',
  'rent_bill_long',
  'bill_long_put',
  'long_put_money',
  'put_money_toward',
  'money_toward_thing',
  'toward_thing_may',
  'thing_may_need',
  'may_need_coupl',
  'need_coupl_name',
  'coupl_name_one',
  'name_one_leas',
  'one_leas_howev',
  'leas_howev_got',
  'howev_got_marri',
  'got_marri_start',
  'marri_start_cut',
  'start_cut_work',
  'cut_work_hour',
  'work_hour_without',
  'hour_without_say',
  'without_say_anyth',
  'say_anyth_first',
  'anyth_first_gave',
  'first_gave_explan',
  'gave_explan_made',
  'explan_made_plenti',
  'made_plenti_money',
  'plenti_money_us',
  'money_us_could',
  'us_could_work',
  'could_work_part',
  'work_part_time',
  'part_time_work',
  'time_work_around',
  'work_around_hous',
  'around_hous_main',
  'hous_main_breadwinn',
  'main_breadwinn_fine',
  'breadwinn_fine_littl',
  'fine_littl_upset',
  'littl_upset_assum',
  'upset_assum_would',
  'assum_would_okay',
  'would_okay_say',
  'okay_say_anyth',
  'say_anyth_felt',
  'anyth_felt_fair',
  'felt_fair_work',
  'fair_work_around',
  'work_around_hous',
  'around_hous_initi',
  'hous_initi_spent',
  'initi_spent_major',
  'spent_major_time',
  'major_time_go',
  'time_go_bar',
  'go_bar_play',
  'bar_play_video',
  'play_video_game',
  'video_game_etc',
  'game_etc_point',
  'etc_point_one',
  'point_one_work',
  'one_work_*',
  'work_*_*',
  '*_*_cook',
  '*_cook_clean',
  'cook_clean_household',
  'clean_household_chore',
  'household_chore_husband',
  'chore_husband_told',
  'husband_told_laid',
  'told_laid_two',
  'laid_two_month',
  'two_month_ago',
  'month_ago_reason',
  'ago_reason_control',
  'reason_control_assum',
  'control_assum_time',
  'assum_time_would',
  'time_would_begin',
  'would_begin_job',
  'begin_job_hunt',
  'job_hunt_began',
  'hunt_began_pay',
  'began_pay_everyth',
  'pay_everyth_earn',
  'everyth_earn_decent',
  'earn_decent_amount',
  'decent_amount_money',
  'amount_money_point',
  'money_point_pay',
  'point_pay_rent',
  'pay_rent_bill',
  'rent_bill_groceri',
  'bill_groceri_insur',
  'groceri_insur_contribut',
  'insur_contribut_emerg',
  'contribut_emerg_save',
  'emerg_save_financ',
  'save_financ_lifestyl',
  'financ_lifestyl_husband',
  'lifestyl_husband_start',
  'husband_start_indulg',
  'start_indulg_began',
  'indulg_began_pay',
  'began_pay_night',
  'pay_night_sub',
  'night_sub_money',
  'sub_money_trip',
  'money_trip_look',
  'trip_look_work',
  'look_work_etc',
  'work_etc_assumpt',
  'etc_assumpt_would',
  'assumpt_would_search',
  'would_search_new',
  'search_new_job',
  'new_job_least',
  'job_least_financ',
  'least_financ_hobbi',
  'financ_hobbi_week',
  'hobbi_week_ago',
  'week_ago_ask',
  'ago_ask_job',
  'ask_job_hunt',
  'job_hunt_go',
  'hunt_go_told',
  'go_told_feel',
  'told_feel_like',
  'feel_like_worth',
  'like_worth_said',
  'worth_said_comfort',
  'said_comfort_happi',
  'comfort_happi_say',
  'happi_say_least',
  'say_least_confront',
  'least_confront_everyth',
  'confront_everyth_financ',
  'everyth_financ_take',
  'financ_take_care',
  'take_care_household',
  'care_household_sat',
  'household_sat_around',
  'sat_around_play',
  'around_play_video',
  'play_video_game',
  'video_game_ass',
  'game_ass_ill',
  'ass_ill_admit',
  'ill_admit_argument',
  'admit_argument_let',
  'argument_let_slip',
  'let_slip_actual',
  'slip_actual_quit',
  'actual_quit_never',
  'quit_never_look',
  'never_look_anoth',
  'look_anoth_job',
  'anoth_job_furiou',
  'job_furiou_lie',
  'furiou_lie_told',
  'lie_told_want',
  'told_want_home',
  'want_home_right',
  'home_right_fast',
  'right_fast_forward',
  'fast_forward_in-law',
  'forward_in-law_understand',
  'in-law_understand_extent',
  'understand_extent_call',
  'extent_call_asshol',
  'call_asshol_want',
  'asshol_want_come',
  'want_come_back',
  'come_back_home',
  'back_home_get',
  'home_get_job',
  'get_job_seen',
  'job_seen_husband',
  'seen_husband_time',
  'husband_time_never',
  'time_never_home',
  'never_home_alway',
  'home_alway_somewher',
  'alway_somewher_longer',
  'somewher_longer_pay',
  'longer_pay_everyth',
  'pay_everyth_attitud',
  'everyth_attitud_toward',
  'attitud_toward_make',
  'toward_make_question',
  'make_question_entir',
  'question_entir_relationship',
  'entir_relationship_call',
  'relationship_call_asshol',
  'call_asshol_im',
  'asshol_im_begin',
  'im_begin_think',
  'begin_think_right',
  'think_right_asshol'],
 ['im',
  'stay',
  'home',
  'mom',
  'kid',
  'husband',
  'work',
  'full',
  'time',
  'get',
  'okay-',
  'salari',
  'tighten',
  'grip',
  'spend',
  'past',
  'month',
  'abl',
  'save',
  'go',
  'watch',
  'footbal',
  'event',
  'oversea',
  'liter',
  'obssess',
  'anyth',
  'footbal',
  'said',
  'rare',
  'ever',
  'get',
  'want',
  'want',
  'judg',
  'sinc',
  'money',
  'eventu',
  'discuss',
  'plan',
  'christma',
  'told',
  'handl',
  'everyth',
  'sinc',
  'back',
  'til',
  'dec',
  'th',
  'told',
  'put',
  'asid',
  'money',
  'christma',
  'decor',
  'food',
  'gift',
  'kid',
  'need',
  'etc',
  'money',
  'total',
  '$',
  'complet',
  'shock',
  'told',
  '$',
  'entir',
  'famili',
  'christma',
  'celebr',
  'ridicul',
  'enough',
  'shrug',
  'say',
  'got',
  'point',
  'pay',
  'friend',
  'girlfriend',
  'travel',
  'expens',
  'told',
  'take',
  'said',
  'decid',
  'leav',
  'buck',
  'anyth',
  'christma',
  'lot',
  'argument',
  'get',
  'resolv',
  'qatar',
  'left',
  'day',
  'ago',
  'yesterday',
  'clean',
  'found',
  'envelop',
  '$',
  'note',
  'tell',
  'make',
  'work',
  'sent',
  'messag',
  'ive',
  'decid',
  'anyth',
  'christma',
  'littl',
  'money',
  'period',
  'livid',
  'kept',
  'send',
  'angri',
  'messag',
  'anoth',
  'call',
  'spoil',
  'tell',
  'stop',
  'expect',
  'live',
  'like',
  'still',
  'live',
  'parent',
  'hous',
  'stop',
  'tri',
  'rob',
  'kid',
  'enjoy',
  'holiday',
  'like',
  'kid',
  'repli',
  'livid',
  'say',
  'im',
  'punish',
  'go',
  'tri',
  'guilt',
  'use',
  'money',
  'im_stay',
  'stay_home',
  'home_mom',
  'mom_kid',
  'kid_husband',
  'husband_work',
  'work_full',
  'full_time',
  'time_get',
  'get_okay-',
  'okay-_salari',
  'salari_tighten',
  'tighten_grip',
  'grip_spend',
  'spend_past',
  'past_month',
  'month_abl',
  'abl_save',
  'save_go',
  'go_watch',
  'watch_footbal',
  'footbal_event',
  'event_oversea',
  'oversea_liter',
  'liter_obssess',
  'obssess_anyth',
  'anyth_footbal',
  'footbal_said',
  'said_rare',
  'rare_ever',
  'ever_get',
  'get_want',
  'want_want',
  'want_judg',
  'judg_sinc',
  'sinc_money',
  'money_eventu',
  'eventu_discuss',
  'discuss_plan',
  'plan_christma',
  'christma_told',
  'told_handl',
  'handl_everyth',
  'everyth_sinc',
  'sinc_back',
  'back_til',
  'til_dec',
  'dec_th',
  'th_told',
  'told_put',
  'put_asid',
  'asid_money',
  'money_christma',
  'christma_decor',
  'decor_food',
  'food_gift',
  'gift_kid',
  'kid_need',
  'need_etc',
  'etc_money',
  'money_total',
  'total_$',
  '$_complet',
  'complet_shock',
  'shock_told',
  'told_$',
  '$_entir',
  'entir_famili',
  'famili_christma',
  'christma_celebr',
  'celebr_ridicul',
  'ridicul_enough',
  'enough_shrug',
  'shrug_say',
  'say_got',
  'got_point',
  'point_pay',
  'pay_friend',
  'friend_girlfriend',
  'girlfriend_travel',
  'travel_expens',
  'expens_told',
  'told_take',
  'take_said',
  'said_decid',
  'decid_leav',
  'leav_buck',
  'buck_anyth',
  'anyth_christma',
  'christma_lot',
  'lot_argument',
  'argument_get',
  'get_resolv',
  'resolv_qatar',
  'qatar_left',
  'left_day',
  'day_ago',
  'ago_yesterday',
  'yesterday_clean',
  'clean_found',
  'found_envelop',
  'envelop_$',
  '$_note',
  'note_tell',
  'tell_make',
  'make_work',
  'work_sent',
  'sent_messag',
  'messag_ive',
  'ive_decid',
  'decid_anyth',
  'anyth_christma',
  'christma_littl',
  'littl_money',
  'money_period',
  'period_livid',
  'livid_kept',
  'kept_send',
  'send_angri',
  'angri_messag',
  'messag_anoth',
  'anoth_call',
  'call_spoil',
  'spoil_tell',
  'tell_stop',
  'stop_expect',
  'expect_live',
  'live_like',
  'like_still',
  'still_live',
  'live_parent',
  'parent_hous',
  'hous_stop',
  'stop_tri',
  'tri_rob',
  'rob_kid',
  'kid_enjoy',
  'enjoy_holiday',
  'holiday_like',
  'like_kid',
  'kid_repli',
  'repli_livid',
  'livid_say',
  'say_im',
  'im_punish',
  'punish_go',
  'go_tri',
  'tri_guilt',
  'guilt_use',
  'use_money',
  'im_stay_home',
  'stay_home_mom',
  'home_mom_kid',
  'mom_kid_husband',
  'kid_husband_work',
  'husband_work_full',
  'work_full_time',
  'full_time_get',
  'time_get_okay-',
  'get_okay-_salari',
  'okay-_salari_tighten',
  'salari_tighten_grip',
  'tighten_grip_spend',
  'grip_spend_past',
  'spend_past_month',
  'past_month_abl',
  'month_abl_save',
  'abl_save_go',
  'save_go_watch',
  'go_watch_footbal',
  'watch_footbal_event',
  'footbal_event_oversea',
  'event_oversea_liter',
  'oversea_liter_obssess',
  'liter_obssess_anyth',
  'obssess_anyth_footbal',
  'anyth_footbal_said',
  'footbal_said_rare',
  'said_rare_ever',
  'rare_ever_get',
  'ever_get_want',
  'get_want_want',
  'want_want_judg',
  'want_judg_sinc',
  'judg_sinc_money',
  'sinc_money_eventu',
  'money_eventu_discuss',
  'eventu_discuss_plan',
  'discuss_plan_christma',
  'plan_christma_told',
  'christma_told_handl',
  'told_handl_everyth',
  'handl_everyth_sinc',
  'everyth_sinc_back',
  'sinc_back_til',
  'back_til_dec',
  'til_dec_th',
  'dec_th_told',
  'th_told_put',
  'told_put_asid',
  'put_asid_money',
  'asid_money_christma',
  'money_christma_decor',
  'christma_decor_food',
  'decor_food_gift',
  'food_gift_kid',
  'gift_kid_need',
  'kid_need_etc',
  'need_etc_money',
  'etc_money_total',
  'money_total_$',
  'total_$_complet',
  '$_complet_shock',
  'complet_shock_told',
  'shock_told_$',
  'told_$_entir',
  '$_entir_famili',
  'entir_famili_christma',
  'famili_christma_celebr',
  'christma_celebr_ridicul',
  'celebr_ridicul_enough',
  'ridicul_enough_shrug',
  'enough_shrug_say',
  'shrug_say_got',
  'say_got_point',
  'got_point_pay',
  'point_pay_friend',
  'pay_friend_girlfriend',
  'friend_girlfriend_travel',
  'girlfriend_travel_expens',
  'travel_expens_told',
  'expens_told_take',
  'told_take_said',
  'take_said_decid',
  'said_decid_leav',
  'decid_leav_buck',
  'leav_buck_anyth',
  'buck_anyth_christma',
  'anyth_christma_lot',
  'christma_lot_argument',
  'lot_argument_get',
  'argument_get_resolv',
  'get_resolv_qatar',
  'resolv_qatar_left',
  'qatar_left_day',
  'left_day_ago',
  'day_ago_yesterday',
  'ago_yesterday_clean',
  'yesterday_clean_found',
  'clean_found_envelop',
  'found_envelop_$',
  'envelop_$_note',
  '$_note_tell',
  'note_tell_make',
  'tell_make_work',
  'make_work_sent',
  'work_sent_messag',
  'sent_messag_ive',
  'messag_ive_decid',
  'ive_decid_anyth',
  'decid_anyth_christma',
  'anyth_christma_littl',
  'christma_littl_money',
  'littl_money_period',
  'money_period_livid',
  'period_livid_kept',
  'livid_kept_send',
  'kept_send_angri',
  'send_angri_messag',
  'angri_messag_anoth',
  'messag_anoth_call',
  'anoth_call_spoil',
  'call_spoil_tell',
  'spoil_tell_stop',
  'tell_stop_expect',
  'stop_expect_live',
  'expect_live_like',
  'live_like_still',
  'like_still_live',
  'still_live_parent',
  'live_parent_hous',
  'parent_hous_stop',
  'hous_stop_tri',
  'stop_tri_rob',
  'tri_rob_kid',
  'rob_kid_enjoy',
  'kid_enjoy_holiday',
  'enjoy_holiday_like',
  'holiday_like_kid',
  'like_kid_repli',
  'kid_repli_livid',
  'repli_livid_say',
  'livid_say_im',
  'say_im_punish',
  'im_punish_go',
  'punish_go_tri',
  'go_tri_guilt',
  'tri_guilt_use',
  'guilt_use_money'],
 ['hello',
  'everyon',
  'happen',
  'hour',
  'ago',
  'mind',
  'boggl',
  'mef',
  'fiancem',
  'went',
  'bestfriend',
  'alexm',
  'now-fiance',
  'nellf',
  'engag',
  'parti',
  'today',
  'essenti',
  'engag',
  'parti',
  'talk',
  'older',
  'ladi',
  'spot',
  'iron',
  'ring',
  'wear',
  'one',
  'well',
  'iron',
  'ring',
  'present',
  'engin',
  'canada',
  'graduat',
  'ask',
  'whole',
  'bunch',
  'question',
  'career',
  'field',
  'engin',
  'etc',
  'turn',
  'nell',
  'futur',
  'mil',
  'sister',
  'nell',
  'alex',
  'came',
  'say',
  'congratul',
  'nell',
  'mil',
  'sister',
  'continu',
  'convers',
  'nell',
  'spoke',
  'said',
  'uhm',
  'lie',
  'engin',
  'work',
  'victoria',
  'secret',
  'someth',
  'like',
  'yeah',
  'use',
  'work',
  'victoria',
  'secret',
  'uni',
  'work',
  'softwar',
  'engin',
  'nell',
  'start',
  'laugh',
  'bit',
  'said',
  'stop',
  'lie',
  'everyon',
  'visibl',
  'got',
  'realli',
  'awkward',
  'fiance',
  'came',
  'greet',
  'everyon',
  'nell',
  'continu',
  'berat',
  'front',
  'everyon',
  'say',
  'lie',
  'job',
  'fianc',
  'enabl',
  'lie',
  'everyon',
  'say',
  'im',
  'engin',
  'told',
  'stop',
  'stood',
  'ground',
  'said',
  'ever',
  'lie',
  'job',
  'work',
  'realli',
  'hard',
  'get',
  'nell',
  'got',
  'extrem',
  'upset',
  'start',
  'say',
  'im',
  'ruin',
  'engag',
  'parti',
  'im',
  'make',
  'everyth',
  'someon',
  'like',
  'field',
  'work',
  'fianc',
  'got',
  'upset',
  'ask',
  'alex',
  'nell',
  'drunk',
  'say',
  'line',
  'right',
  'whatsoev',
  'speak',
  'like',
  'left',
  'earli',
  'keep',
  'get',
  'call',
  'text',
  'friend',
  'call',
  '\\',
  '*',
  'tch',
  'stand-offish',
  'fianc',
  'got',
  'call',
  'alex',
  'ask',
  'us',
  'make',
  'big',
  'deal',
  'fianc',
  'told',
  'go',
  'commun',
  'nell',
  'apolog',
  'edit',
  'im',
  'post',
  'updatetri',
  'figur',
  'bare',
  'pleas',
  'edit',
  'post',
  'updat',
  'profil',
  'httpswwwredditcomusersailorangelxocommentsucdwqupdate_aitaf_for_not_lying_about_my_profess',
  'hello_everyon',
  'everyon_happen',
  'happen_hour',
  'hour_ago',
  'ago_mind',
  'mind_boggl',
  'boggl_mef',
  'mef_fiancem',
  'fiancem_went',
  'went_bestfriend',
  'bestfriend_alexm',
  'alexm_now-fiance',
  'now-fiance_nellf',
  'nellf_engag',
  'engag_parti',
  'parti_today',
  'today_essenti',
  'essenti_engag',
  'engag_parti',
  'parti_talk',
  'talk_older',
  'older_ladi',
  'ladi_spot',
  'spot_iron',
  'iron_ring',
  'ring_wear',
  'wear_one',
  'one_well',
  'well_iron',
  'iron_ring',
  'ring_present',
  'present_engin',
  'engin_canada',
  'canada_graduat',
  'graduat_ask',
  'ask_whole',
  'whole_bunch',
  'bunch_question',
  'question_career',
  'career_field',
  'field_engin',
  'engin_etc',
  'etc_turn',
  'turn_nell',
  'nell_futur',
  'futur_mil',
  'mil_sister',
  'sister_nell',
  'nell_alex',
  'alex_came',
  'came_say',
  'say_congratul',
  'congratul_nell',
  'nell_mil',
  'mil_sister',
  'sister_continu',
  'continu_convers',
  'convers_nell',
  'nell_spoke',
  'spoke_said',
  'said_uhm',
  'uhm_lie',
  'lie_engin',
  'engin_work',
  'work_victoria',
  'victoria_secret',
  'secret_someth',
  'someth_like',
  'like_yeah',
  'yeah_use',
  'use_work',
  'work_victoria',
  'victoria_secret',
  'secret_uni',
  'uni_work',
  'work_softwar',
  'softwar_engin',
  'engin_nell',
  'nell_start',
  'start_laugh',
  'laugh_bit',
  'bit_said',
  'said_stop',
  'stop_lie',
  'lie_everyon',
  'everyon_visibl',
  'visibl_got',
  'got_realli',
  'realli_awkward',
  'awkward_fiance',
  'fiance_came',
  'came_greet',
  'greet_everyon',
  'everyon_nell',
  'nell_continu',
  'continu_berat',
  'berat_front',
  'front_everyon',
  'everyon_say',
  'say_lie',
  'lie_job',
  'job_fianc',
  'fianc_enabl',
  'enabl_lie',
  'lie_everyon',
  'everyon_say',
  'say_im',
  'im_engin',
  'engin_told',
  'told_stop',
  'stop_stood',
  'stood_ground',
  'ground_said',
  'said_ever',
  'ever_lie',
  'lie_job',
  'job_work',
  'work_realli',
  'realli_hard',
  'hard_get',
  'get_nell',
  'nell_got',
  'got_extrem',
  'extrem_upset',
  'upset_start',
  'start_say',
  'say_im',
  'im_ruin',
  'ruin_engag',
  'engag_parti',
  'parti_im',
  'im_make',
  'make_everyth',
  'everyth_someon',
  'someon_like',
  'like_field',
  'field_work',
  'work_fianc',
  'fianc_got',
  'got_upset',
  'upset_ask',
  'ask_alex',
  'alex_nell',
  'nell_drunk',
  'drunk_say',
  'say_line',
  'line_right',
  'right_whatsoev',
  'whatsoev_speak',
  'speak_like',
  'like_left',
  'left_earli',
  'earli_keep',
  'keep_get',
  'get_call',
  'call_text',
  'text_friend',
  'friend_call',
  'call_\\',
  '\\_*',
  '*_tch',
  'tch_stand-offish',
  'stand-offish_fianc',
  'fianc_got',
  'got_call',
  'call_alex',
  'alex_ask',
  'ask_us',
  'us_make',
  'make_big',
  'big_deal',
  'deal_fianc',
  'fianc_told',
  'told_go',
  'go_commun',
  'commun_nell',
  'nell_apolog',
  'apolog_edit',
  'edit_im',
  'im_post',
  'post_updatetri',
  'updatetri_figur',
  'figur_bare',
  'bare_pleas',
  'pleas_edit',
  'edit_post',
  'post_updat',
  'updat_profil',
  'profil_httpswwwredditcomusersailorangelxocommentsucdwqupdate_aitaf_for_not_lying_about_my_profess',
  'hello_everyon_happen',
  'everyon_happen_hour',
  'happen_hour_ago',
  'hour_ago_mind',
  'ago_mind_boggl',
  'mind_boggl_mef',
  'boggl_mef_fiancem',
  'mef_fiancem_went',
  'fiancem_went_bestfriend',
  'went_bestfriend_alexm',
  'bestfriend_alexm_now-fiance',
  'alexm_now-fiance_nellf',
  'now-fiance_nellf_engag',
  'nellf_engag_parti',
  'engag_parti_today',
  'parti_today_essenti',
  'today_essenti_engag',
  'essenti_engag_parti',
  'engag_parti_talk',
  'parti_talk_older',
  'talk_older_ladi',
  'older_ladi_spot',
  'ladi_spot_iron',
  'spot_iron_ring',
  'iron_ring_wear',
  'ring_wear_one',
  'wear_one_well',
  'one_well_iron',
  'well_iron_ring',
  'iron_ring_present',
  'ring_present_engin',
  'present_engin_canada',
  'engin_canada_graduat',
  'canada_graduat_ask',
  'graduat_ask_whole',
  'ask_whole_bunch',
  'whole_bunch_question',
  'bunch_question_career',
  'question_career_field',
  'career_field_engin',
  'field_engin_etc',
  'engin_etc_turn',
  'etc_turn_nell',
  'turn_nell_futur',
  'nell_futur_mil',
  'futur_mil_sister',
  'mil_sister_nell',
  'sister_nell_alex',
  'nell_alex_came',
  'alex_came_say',
  'came_say_congratul',
  'say_congratul_nell',
  'congratul_nell_mil',
  'nell_mil_sister',
  'mil_sister_continu',
  'sister_continu_convers',
  'continu_convers_nell',
  'convers_nell_spoke',
  'nell_spoke_said',
  'spoke_said_uhm',
  'said_uhm_lie',
  'uhm_lie_engin',
  'lie_engin_work',
  'engin_work_victoria',
  'work_victoria_secret',
  'victoria_secret_someth',
  'secret_someth_like',
  'someth_like_yeah',
  'like_yeah_use',
  'yeah_use_work',
  'use_work_victoria',
  'work_victoria_secret',
  'victoria_secret_uni',
  'secret_uni_work',
  'uni_work_softwar',
  'work_softwar_engin',
  'softwar_engin_nell',
  'engin_nell_start',
  'nell_start_laugh',
  'start_laugh_bit',
  'laugh_bit_said',
  'bit_said_stop',
  'said_stop_lie',
  'stop_lie_everyon',
  'lie_everyon_visibl',
  'everyon_visibl_got',
  'visibl_got_realli',
  'got_realli_awkward',
  'realli_awkward_fiance',
  'awkward_fiance_came',
  'fiance_came_greet',
  'came_greet_everyon',
  'greet_everyon_nell',
  'everyon_nell_continu',
  'nell_continu_berat',
  'continu_berat_front',
  'berat_front_everyon',
  'front_everyon_say',
  'everyon_say_lie',
  'say_lie_job',
  'lie_job_fianc',
  'job_fianc_enabl',
  'fianc_enabl_lie',
  'enabl_lie_everyon',
  'lie_everyon_say',
  'everyon_say_im',
  'say_im_engin',
  'im_engin_told',
  'engin_told_stop',
  'told_stop_stood',
  'stop_stood_ground',
  'stood_ground_said',
  'ground_said_ever',
  'said_ever_lie',
  'ever_lie_job',
  'lie_job_work',
  'job_work_realli',
  'work_realli_hard',
  'realli_hard_get',
  'hard_get_nell',
  'get_nell_got',
  'nell_got_extrem',
  'got_extrem_upset',
  'extrem_upset_start',
  'upset_start_say',
  'start_say_im',
  'say_im_ruin',
  'im_ruin_engag',
  'ruin_engag_parti',
  'engag_parti_im',
  'parti_im_make',
  'im_make_everyth',
  'make_everyth_someon',
  'everyth_someon_like',
  'someon_like_field',
  'like_field_work',
  'field_work_fianc',
  'work_fianc_got',
  'fianc_got_upset',
  'got_upset_ask',
  'upset_ask_alex',
  'ask_alex_nell',
  'alex_nell_drunk',
  'nell_drunk_say',
  'drunk_say_line',
  'say_line_right',
  'line_right_whatsoev',
  'right_whatsoev_speak',
  'whatsoev_speak_like',
  'speak_like_left',
  'like_left_earli',
  'left_earli_keep',
  'earli_keep_get',
  'keep_get_call',
  'get_call_text',
  'call_text_friend',
  'text_friend_call',
  'friend_call_\\',
  'call_\\_*',
  '\\_*_tch',
  '*_tch_stand-offish',
  'tch_stand-offish_fianc',
  'stand-offish_fianc_got',
  'fianc_got_call',
  'got_call_alex',
  'call_alex_ask',
  'alex_ask_us',
  'ask_us_make',
  'us_make_big',
  'make_big_deal',
  'big_deal_fianc',
  'deal_fianc_told',
  'fianc_told_go',
  'told_go_commun',
  'go_commun_nell',
  'commun_nell_apolog',
  'nell_apolog_edit',
  'apolog_edit_im',
  'edit_im_post',
  'im_post_updatetri',
  'post_updatetri_figur',
  'updatetri_figur_bare',
  'figur_bare_pleas',
  'bare_pleas_edit',
  'pleas_edit_post',
  'edit_post_updat',
  'post_updat_profil',
  'updat_profil_httpswwwredditcomusersailorangelxocommentsucdwqupdate_aitaf_for_not_lying_about_my_profess'],
 ['throwaway',
  'account',
  'purpos',
  'privaci',
  'live',
  'bfm',
  'year',
  'first',
  'stay',
  'night',
  'overslept',
  'woke',
  'woke',
  'bad',
  'mood',
  'big',
  'fight',
  'made',
  'absolut',
  'clear',
  'wake',
  'even',
  'knew',
  'would',
  'late',
  'meet',
  'pope',
  'word',
  'calm',
  'wrote',
  'contract',
  'said',
  'would',
  'never',
  'wake',
  'circumst',
  'short',
  'emerg',
  'long',
  'never',
  'blame',
  'oversleep',
  'laugh',
  'sign',
  'kept',
  'import',
  'document',
  'daughter',
  'two',
  'lawyer',
  'get',
  'everyth',
  'write',
  'sign',
  'anyth',
  'unless',
  'lawyer',
  'read',
  'rule',
  'live',
  'fast',
  'forward',
  'yesterday',
  'start',
  'new',
  'job',
  'celebr',
  'night',
  'play',
  'guy',
  'onlin',
  'wake',
  'woke',
  'like',
  'usual',
  'stuff',
  'time',
  'wake',
  'left',
  'hous',
  'still',
  'asleep',
  'got',
  'back',
  'angri',
  'start',
  'shout',
  'blame',
  'late',
  'said',
  'woken',
  'notic',
  'overslept',
  'stay',
  'silent',
  'stop',
  'shout',
  'show',
  'paper',
  'sign',
  'said',
  'never',
  'woke',
  'never',
  'adult',
  'set',
  'alarm',
  'like',
  'rest',
  'us',
  'also',
  'late',
  'problem',
  'part',
  'say',
  'ah',
  'know',
  'old',
  'rule',
  'appli',
  'sinc',
  'longer',
  'work',
  'friend',
  'lax',
  'time',
  'still',
  'think',
  'noth',
  'wrong',
  'aita',
  'throwaway_account',
  'account_purpos',
  'purpos_privaci',
  'privaci_live',
  'live_bfm',
  'bfm_year',
  'year_first',
  'first_stay',
  'stay_night',
  'night_overslept',
  'overslept_woke',
  'woke_woke',
  'woke_bad',
  'bad_mood',
  'mood_big',
  'big_fight',
  'fight_made',
  'made_absolut',
  'absolut_clear',
  'clear_wake',
  'wake_even',
  'even_knew',
  'knew_would',
  'would_late',
  'late_meet',
  'meet_pope',
  'pope_word',
  'word_calm',
  'calm_wrote',
  'wrote_contract',
  'contract_said',
  'said_would',
  'would_never',
  'never_wake',
  'wake_circumst',
  'circumst_short',
  'short_emerg',
  'emerg_long',
  'long_never',
  'never_blame',
  'blame_oversleep',
  'oversleep_laugh',
  'laugh_sign',
  'sign_kept',
  'kept_import',
  'import_document',
  'document_daughter',
  'daughter_two',
  'two_lawyer',
  'lawyer_get',
  'get_everyth',
  'everyth_write',
  'write_sign',
  'sign_anyth',
  'anyth_unless',
  'unless_lawyer',
  'lawyer_read',
  'read_rule',
  'rule_live',
  'live_fast',
  'fast_forward',
  'forward_yesterday',
  'yesterday_start',
  'start_new',
  'new_job',
  'job_celebr',
  'celebr_night',
  'night_play',
  'play_guy',
  'guy_onlin',
  'onlin_wake',
  'wake_woke',
  'woke_like',
  'like_usual',
  'usual_stuff',
  'stuff_time',
  'time_wake',
  'wake_left',
  'left_hous',
  'hous_still',
  'still_asleep',
  'asleep_got',
  'got_back',
  'back_angri',
  'angri_start',
  'start_shout',
  'shout_blame',
  'blame_late',
  'late_said',
  'said_woken',
  'woken_notic',
  'notic_overslept',
  'overslept_stay',
  'stay_silent',
  'silent_stop',
  'stop_shout',
  'shout_show',
  'show_paper',
  'paper_sign',
  'sign_said',
  'said_never',
  'never_woke',
  'woke_never',
  'never_adult',
  'adult_set',
  'set_alarm',
  'alarm_like',
  'like_rest',
  'rest_us',
  'us_also',
  'also_late',
  'late_problem',
  'problem_part',
  'part_say',
  'say_ah',
  'ah_know',
  'know_old',
  'old_rule',
  'rule_appli',
  'appli_sinc',
  'sinc_longer',
  'longer_work',
  'work_friend',
  'friend_lax',
  'lax_time',
  'time_still',
  'still_think',
  'think_noth',
  'noth_wrong',
  'wrong_aita',
  'throwaway_account_purpos',
  'account_purpos_privaci',
  'purpos_privaci_live',
  'privaci_live_bfm',
  'live_bfm_year',
  'bfm_year_first',
  'year_first_stay',
  'first_stay_night',
  'stay_night_overslept',
  'night_overslept_woke',
  'overslept_woke_woke',
  'woke_woke_bad',
  'woke_bad_mood',
  'bad_mood_big',
  'mood_big_fight',
  'big_fight_made',
  'fight_made_absolut',
  'made_absolut_clear',
  'absolut_clear_wake',
  'clear_wake_even',
  'wake_even_knew',
  'even_knew_would',
  'knew_would_late',
  'would_late_meet',
  'late_meet_pope',
  'meet_pope_word',
  'pope_word_calm',
  'word_calm_wrote',
  'calm_wrote_contract',
  'wrote_contract_said',
  'contract_said_would',
  'said_would_never',
  'would_never_wake',
  'never_wake_circumst',
  'wake_circumst_short',
  'circumst_short_emerg',
  'short_emerg_long',
  'emerg_long_never',
  'long_never_blame',
  'never_blame_oversleep',
  'blame_oversleep_laugh',
  'oversleep_laugh_sign',
  'laugh_sign_kept',
  'sign_kept_import',
  'kept_import_document',
  'import_document_daughter',
  'document_daughter_two',
  'daughter_two_lawyer',
  'two_lawyer_get',
  'lawyer_get_everyth',
  'get_everyth_write',
  'everyth_write_sign',
  'write_sign_anyth',
  'sign_anyth_unless',
  'anyth_unless_lawyer',
  'unless_lawyer_read',
  'lawyer_read_rule',
  'read_rule_live',
  'rule_live_fast',
  'live_fast_forward',
  'fast_forward_yesterday',
  'forward_yesterday_start',
  'yesterday_start_new',
  'start_new_job',
  'new_job_celebr',
  'job_celebr_night',
  'celebr_night_play',
  'night_play_guy',
  'play_guy_onlin',
  'guy_onlin_wake',
  'onlin_wake_woke',
  'wake_woke_like',
  'woke_like_usual',
  'like_usual_stuff',
  'usual_stuff_time',
  'stuff_time_wake',
  'time_wake_left',
  'wake_left_hous',
  'left_hous_still',
  'hous_still_asleep',
  'still_asleep_got',
  'asleep_got_back',
  'got_back_angri',
  'back_angri_start',
  'angri_start_shout',
  'start_shout_blame',
  'shout_blame_late',
  'blame_late_said',
  'late_said_woken',
  'said_woken_notic',
  'woken_notic_overslept',
  'notic_overslept_stay',
  'overslept_stay_silent',
  'stay_silent_stop',
  'silent_stop_shout',
  'stop_shout_show',
  'shout_show_paper',
  'show_paper_sign',
  'paper_sign_said',
  'sign_said_never',
  'said_never_woke',
  'never_woke_never',
  'woke_never_adult',
  'never_adult_set',
  'adult_set_alarm',
  'set_alarm_like',
  'alarm_like_rest',
  'like_rest_us',
  'rest_us_also',
  'us_also_late',
  'also_late_problem',
  'late_problem_part',
  'problem_part_say',
  'part_say_ah',
  'say_ah_know',
  'ah_know_old',
  'know_old_rule',
  'old_rule_appli',
  'rule_appli_sinc',
  'appli_sinc_longer',
  'sinc_longer_work',
  'longer_work_friend',
  'work_friend_lax',
  'friend_lax_time',
  'lax_time_still',
  'time_still_think',
  'still_think_noth',
  'think_noth_wrong',
  'noth_wrong_aita'],
 ['husband',
  'took',
  'nephew',
  'dad',
  'husband',
  'brother',
  'diagnos',
  'cancer',
  'told',
  'nephew',
  'would',
  'stay',
  'us',
  'til',
  'dad',
  'complet',
  'chemo',
  'treatment',
  'agre',
  'although',
  'consult',
  'first',
  'told',
  'hell',
  'responsibilti',
  'mine',
  'ask',
  'explain',
  'told',
  'consult',
  'take',
  'nephew',
  'im',
  'equip',
  'experienc',
  'take',
  'careb',
  'commit',
  'child',
  'care',
  'still',
  'cook',
  'clean',
  'obvious',
  'said',
  'fine',
  'hed',
  'take',
  'care',
  'day',
  'call',
  'afternoon',
  'say',
  'stuck',
  'hr',
  'meet',
  'ask',
  'could',
  'go',
  'pick',
  'nephew',
  'school',
  'said',
  'lunch',
  'mom',
  'discuss',
  'famili',
  'issu',
  'insist',
  'remind',
  'said',
  'hed',
  'take',
  'care',
  'nephew',
  'includ',
  'school',
  'pickupdropoff',
  'suggest',
  'tri',
  'get',
  'work',
  'call',
  'famili',
  'member',
  'go',
  'pick',
  'tri',
  'argu',
  'hung',
  'went',
  'home',
  'surprisinglyfound',
  'husband',
  'angri',
  'start',
  'yell',
  'call',
  'selfish',
  'unfeel',
  'told',
  'lack',
  'mamag',
  'fault',
  'yell',
  'say',
  'lunch',
  'mom',
  'couldv',
  'fuck',
  'wait',
  'chose',
  'fuck',
  'petti',
  'prove',
  'point',
  'said',
  'true',
  'told',
  'get',
  'stop',
  'act',
  'like',
  'victim',
  'put',
  'situat',
  'know',
  'commit',
  'yell',
  'ge',
  'tri',
  'help',
  'brother',
  'play',
  'victim',
  'refus',
  'help',
  'argu',
  'end',
  'go',
  'stay',
  'mom',
  'night',
  'text',
  'choic',
  'word',
  'turn',
  'phone',
  'still',
  'argu',
  'husband_took',
  'took_nephew',
  'nephew_dad',
  'dad_husband',
  'husband_brother',
  'brother_diagnos',
  'diagnos_cancer',
  'cancer_told',
  'told_nephew',
  'nephew_would',
  'would_stay',
  'stay_us',
  'us_til',
  'til_dad',
  'dad_complet',
  'complet_chemo',
  'chemo_treatment',
  'treatment_agre',
  'agre_although',
  'although_consult',
  'consult_first',
  'first_told',
  'told_hell',
  'hell_responsibilti',
  'responsibilti_mine',
  'mine_ask',
  'ask_explain',
  'explain_told',
  'told_consult',
  'consult_take',
  'take_nephew',
  'nephew_im',
  'im_equip',
  'equip_experienc',
  'experienc_take',
  'take_careb',
  'careb_commit',
  'commit_child',
  'child_care',
  'care_still',
  'still_cook',
  'cook_clean',
  'clean_obvious',
  'obvious_said',
  'said_fine',
  'fine_hed',
  'hed_take',
  'take_care',
  'care_day',
  'day_call',
  'call_afternoon',
  'afternoon_say',
  'say_stuck',
  'stuck_hr',
  'hr_meet',
  'meet_ask',
  'ask_could',
  'could_go',
  'go_pick',
  'pick_nephew',
  'nephew_school',
  'school_said',
  'said_lunch',
  'lunch_mom',
  'mom_discuss',
  'discuss_famili',
  'famili_issu',
  'issu_insist',
  'insist_remind',
  'remind_said',
  'said_hed',
  'hed_take',
  'take_care',
  'care_nephew',
  'nephew_includ',
  'includ_school',
  'school_pickupdropoff',
  'pickupdropoff_suggest',
  'suggest_tri',
  'tri_get',
  'get_work',
  'work_call',
  'call_famili',
  'famili_member',
  'member_go',
  'go_pick',
  'pick_tri',
  'tri_argu',
  'argu_hung',
  'hung_went',
  'went_home',
  'home_surprisinglyfound',
  'surprisinglyfound_husband',
  'husband_angri',
  'angri_start',
  'start_yell',
  'yell_call',
  'call_selfish',
  'selfish_unfeel',
  'unfeel_told',
  'told_lack',
  'lack_mamag',
  'mamag_fault',
  'fault_yell',
  'yell_say',
  'say_lunch',
  'lunch_mom',
  'mom_couldv',
  'couldv_fuck',
  'fuck_wait',
  'wait_chose',
  'chose_fuck',
  'fuck_petti',
  'petti_prove',
  'prove_point',
  'point_said',
  'said_true',
  'true_told',
  'told_get',
  'get_stop',
  'stop_act',
  'act_like',
  'like_victim',
  'victim_put',
  'put_situat',
  'situat_know',
  'know_commit',
  'commit_yell',
  'yell_ge',
  'ge_tri',
  'tri_help',
  'help_brother',
  'brother_play',
  'play_victim',
  'victim_refus',
  'refus_help',
  'help_argu',
  'argu_end',
  'end_go',
  'go_stay',
  'stay_mom',
  'mom_night',
  'night_text',
  'text_choic',
  'choic_word',
  'word_turn',
  'turn_phone',
  'phone_still',
  'still_argu',
  'husband_took_nephew',
  'took_nephew_dad',
  'nephew_dad_husband',
  'dad_husband_brother',
  'husband_brother_diagnos',
  'brother_diagnos_cancer',
  'diagnos_cancer_told',
  'cancer_told_nephew',
  'told_nephew_would',
  'nephew_would_stay',
  'would_stay_us',
  'stay_us_til',
  'us_til_dad',
  'til_dad_complet',
  'dad_complet_chemo',
  'complet_chemo_treatment',
  'chemo_treatment_agre',
  'treatment_agre_although',
  'agre_although_consult',
  'although_consult_first',
  'consult_first_told',
  'first_told_hell',
  'told_hell_responsibilti',
  'hell_responsibilti_mine',
  'responsibilti_mine_ask',
  'mine_ask_explain',
  'ask_explain_told',
  'explain_told_consult',
  'told_consult_take',
  'consult_take_nephew',
  'take_nephew_im',
  'nephew_im_equip',
  'im_equip_experienc',
  'equip_experienc_take',
  'experienc_take_careb',
  'take_careb_commit',
  'careb_commit_child',
  'commit_child_care',
  'child_care_still',
  'care_still_cook',
  'still_cook_clean',
  'cook_clean_obvious',
  'clean_obvious_said',
  'obvious_said_fine',
  'said_fine_hed',
  'fine_hed_take',
  'hed_take_care',
  'take_care_day',
  'care_day_call',
  'day_call_afternoon',
  'call_afternoon_say',
  'afternoon_say_stuck',
  'say_stuck_hr',
  'stuck_hr_meet',
  'hr_meet_ask',
  'meet_ask_could',
  'ask_could_go',
  'could_go_pick',
  'go_pick_nephew',
  'pick_nephew_school',
  'nephew_school_said',
  'school_said_lunch',
  'said_lunch_mom',
  'lunch_mom_discuss',
  'mom_discuss_famili',
  'discuss_famili_issu',
  'famili_issu_insist',
  'issu_insist_remind',
  'insist_remind_said',
  'remind_said_hed',
  'said_hed_take',
  'hed_take_care',
  'take_care_nephew',
  'care_nephew_includ',
  'nephew_includ_school',
  'includ_school_pickupdropoff',
  'school_pickupdropoff_suggest',
  'pickupdropoff_suggest_tri',
  'suggest_tri_get',
  'tri_get_work',
  'get_work_call',
  'work_call_famili',
  'call_famili_member',
  'famili_member_go',
  'member_go_pick',
  'go_pick_tri',
  'pick_tri_argu',
  'tri_argu_hung',
  'argu_hung_went',
  'hung_went_home',
  'went_home_surprisinglyfound',
  'home_surprisinglyfound_husband',
  'surprisinglyfound_husband_angri',
  'husband_angri_start',
  'angri_start_yell',
  'start_yell_call',
  'yell_call_selfish',
  'call_selfish_unfeel',
  'selfish_unfeel_told',
  'unfeel_told_lack',
  'told_lack_mamag',
  'lack_mamag_fault',
  'mamag_fault_yell',
  'fault_yell_say',
  'yell_say_lunch',
  'say_lunch_mom',
  'lunch_mom_couldv',
  'mom_couldv_fuck',
  'couldv_fuck_wait',
  'fuck_wait_chose',
  'wait_chose_fuck',
  'chose_fuck_petti',
  'fuck_petti_prove',
  'petti_prove_point',
  'prove_point_said',
  'point_said_true',
  'said_true_told',
  'true_told_get',
  'told_get_stop',
  'get_stop_act',
  'stop_act_like',
  'act_like_victim',
  'like_victim_put',
  'victim_put_situat',
  'put_situat_know',
  'situat_know_commit',
  'know_commit_yell',
  'commit_yell_ge',
  'yell_ge_tri',
  'ge_tri_help',
  'tri_help_brother',
  'help_brother_play',
  'brother_play_victim',
  'play_victim_refus',
  'victim_refus_help',
  'refus_help_argu',
  'help_argu_end',
  'argu_end_go',
  'end_go_stay',
  'go_stay_mom',
  'stay_mom_night',
  'mom_night_text',
  'night_text_choic',
  'text_choic_word',
  'choic_word_turn',
  'word_turn_phone',
  'turn_phone_still',
  'phone_still_argu'],
 ['throw',
  'away',
  'wife',
  'two',
  'children',
  'work',
  'manag',
  'care',
  'home',
  'wife',
  'bakeri',
  'mum',
  'wife',
  'cook',
  'time',
  'much',
  'better',
  'cook',
  'cook',
  'sometim',
  'one',
  'take',
  'care',
  'hous',
  'kid',
  'chore',
  'yesterday',
  'came',
  'back',
  'work',
  'dinner',
  'readi',
  'plate',
  'everyon',
  'wife',
  'wash',
  'hand',
  'kid',
  'like',
  'food',
  'cut',
  'cut',
  'chicken',
  'piec',
  'look',
  'bit',
  'pink',
  'told',
  'wife',
  'look',
  'said',
  'littl',
  'pink',
  'fine',
  'told',
  'im',
  'let',
  'eat',
  'pink',
  'told',
  'stop',
  'babi',
  'kill',
  'kept',
  'tell',
  'pink',
  'middl',
  'eat',
  'get',
  'food',
  'poison',
  'danger',
  'told',
  'want',
  'eat',
  'cook',
  'dinner',
  'made',
  'chees',
  'ham',
  'toasti',
  'also',
  'made',
  'one',
  'eat',
  'told',
  'talk',
  'think',
  'cook',
  'horribl',
  'think',
  'horribl',
  'want',
  'kid',
  'eat',
  'told',
  'stop',
  'think',
  'right',
  'aita',
  'throw_away',
  'away_wife',
  'wife_two',
  'two_children',
  'children_work',
  'work_manag',
  'manag_care',
  'care_home',
  'home_wife',
  'wife_bakeri',
  'bakeri_mum',
  'mum_wife',
  'wife_cook',
  'cook_time',
  'time_much',
  'much_better',
  'better_cook',
  'cook_cook',
  'cook_sometim',
  'sometim_one',
  'one_take',
  'take_care',
  'care_hous',
  'hous_kid',
  'kid_chore',
  'chore_yesterday',
  'yesterday_came',
  'came_back',
  'back_work',
  'work_dinner',
  'dinner_readi',
  'readi_plate',
  'plate_everyon',
  'everyon_wife',
  'wife_wash',
  'wash_hand',
  'hand_kid',
  'kid_like',
  'like_food',
  'food_cut',
  'cut_cut',
  'cut_chicken',
  'chicken_piec',
  'piec_look',
  'look_bit',
  'bit_pink',
  'pink_told',
  'told_wife',
  'wife_look',
  'look_said',
  'said_littl',
  'littl_pink',
  'pink_fine',
  'fine_told',
  'told_im',
  'im_let',
  'let_eat',
  'eat_pink',
  'pink_told',
  'told_stop',
  'stop_babi',
  'babi_kill',
  'kill_kept',
  'kept_tell',
  'tell_pink',
  'pink_middl',
  'middl_eat',
  'eat_get',
  'get_food',
  'food_poison',
  'poison_danger',
  'danger_told',
  'told_want',
  'want_eat',
  'eat_cook',
  'cook_dinner',
  'dinner_made',
  'made_chees',
  'chees_ham',
  'ham_toasti',
  'toasti_also',
  'also_made',
  'made_one',
  'one_eat',
  'eat_told',
  'told_talk',
  'talk_think',
  'think_cook',
  'cook_horribl',
  'horribl_think',
  'think_horribl',
  'horribl_want',
  'want_kid',
  'kid_eat',
  'eat_told',
  'told_stop',
  'stop_think',
  'think_right',
  'right_aita',
  'throw_away_wife',
  'away_wife_two',
  'wife_two_children',
  'two_children_work',
  'children_work_manag',
  'work_manag_care',
  'manag_care_home',
  'care_home_wife',
  'home_wife_bakeri',
  'wife_bakeri_mum',
  'bakeri_mum_wife',
  'mum_wife_cook',
  'wife_cook_time',
  'cook_time_much',
  'time_much_better',
  'much_better_cook',
  'better_cook_cook',
  'cook_cook_sometim',
  'cook_sometim_one',
  'sometim_one_take',
  'one_take_care',
  'take_care_hous',
  'care_hous_kid',
  'hous_kid_chore',
  'kid_chore_yesterday',
  'chore_yesterday_came',
  'yesterday_came_back',
  'came_back_work',
  'back_work_dinner',
  'work_dinner_readi',
  'dinner_readi_plate',
  'readi_plate_everyon',
  'plate_everyon_wife',
  'everyon_wife_wash',
  'wife_wash_hand',
  'wash_hand_kid',
  'hand_kid_like',
  'kid_like_food',
  'like_food_cut',
  'food_cut_cut',
  'cut_cut_chicken',
  'cut_chicken_piec',
  'chicken_piec_look',
  'piec_look_bit',
  'look_bit_pink',
  'bit_pink_told',
  'pink_told_wife',
  'told_wife_look',
  'wife_look_said',
  'look_said_littl',
  'said_littl_pink',
  'littl_pink_fine',
  'pink_fine_told',
  'fine_told_im',
  'told_im_let',
  'im_let_eat',
  'let_eat_pink',
  'eat_pink_told',
  'pink_told_stop',
  'told_stop_babi',
  'stop_babi_kill',
  'babi_kill_kept',
  'kill_kept_tell',
  'kept_tell_pink',
  'tell_pink_middl',
  'pink_middl_eat',
  'middl_eat_get',
  'eat_get_food',
  'get_food_poison',
  'food_poison_danger',
  'poison_danger_told',
  'danger_told_want',
  'told_want_eat',
  'want_eat_cook',
  'eat_cook_dinner',
  'cook_dinner_made',
  'dinner_made_chees',
  'made_chees_ham',
  'chees_ham_toasti',
  'ham_toasti_also',
  'toasti_also_made',
  'also_made_one',
  'made_one_eat',
  'one_eat_told',
  'eat_told_talk',
  'told_talk_think',
  'talk_think_cook',
  'think_cook_horribl',
  'cook_horribl_think',
  'horribl_think_horribl',
  'think_horribl_want',
  'horribl_want_kid',
  'want_kid_eat',
  'kid_eat_told',
  'eat_told_stop',
  'told_stop_think',
  'stop_think_right',
  'think_right_aita'],
 ['husband',
  'mike',
  'eldest',
  'famili',
  'pretti',
  'close',
  'sister',
  'beth',
  'spend',
  'almost',
  'week',
  'togeth',
  'beth',
  'issu',
  'father',
  'grow',
  'went',
  'contact',
  'took',
  'first',
  'car',
  'damag',
  'remain',
  'contact',
  'mike',
  'sinc',
  'everybodi',
  'els',
  'judg',
  'go',
  'contact',
  'get',
  'marri',
  'fianc',
  'year',
  'understand',
  'dad',
  'slowli',
  'get',
  'reconcil',
  'made',
  'clear',
  'want',
  'take',
  'part',
  'wed',
  'ask',
  'mike',
  'could',
  'walk',
  'aisl',
  'agre',
  'say',
  'taken',
  'aback',
  'felt',
  'bit',
  'odd',
  'dad',
  'aliv',
  'theyr',
  'speak',
  'term',
  'gon',
  'na',
  'wed',
  'logic',
  'thing',
  'walk',
  'aisl',
  'role',
  'older',
  'brother',
  'father',
  'mention',
  'fil',
  'feel',
  'brought',
  'beth',
  'attitud',
  'impli',
  'say',
  'object',
  'feel',
  'situat',
  'tradit',
  'practic',
  'got',
  'argument',
  'went',
  'home',
  'mike',
  'think',
  'im',
  'unreason',
  'possibl',
  'caus',
  'miss',
  'someth',
  'sentiment',
  'anyth',
  'feel',
  'honor',
  'ask',
  'said',
  'stop',
  'worri',
  'might',
  'say',
  'conflict',
  'us',
  'seem',
  'reach',
  'solut',
  'husband_mike',
  'mike_eldest',
  'eldest_famili',
  'famili_pretti',
  'pretti_close',
  'close_sister',
  'sister_beth',
  'beth_spend',
  'spend_almost',
  'almost_week',
  'week_togeth',
  'togeth_beth',
  'beth_issu',
  'issu_father',
  'father_grow',
  'grow_went',
  'went_contact',
  'contact_took',
  'took_first',
  'first_car',
  'car_damag',
  'damag_remain',
  'remain_contact',
  'contact_mike',
  'mike_sinc',
  'sinc_everybodi',
  'everybodi_els',
  'els_judg',
  'judg_go',
  'go_contact',
  'contact_get',
  'get_marri',
  'marri_fianc',
  'fianc_year',
  'year_understand',
  'understand_dad',
  'dad_slowli',
  'slowli_get',
  'get_reconcil',
  'reconcil_made',
  'made_clear',
  'clear_want',
  'want_take',
  'take_part',
  'part_wed',
  'wed_ask',
  'ask_mike',
  'mike_could',
  'could_walk',
  'walk_aisl',
  'aisl_agre',
  'agre_say',
  'say_taken',
  'taken_aback',
  'aback_felt',
  'felt_bit',
  'bit_odd',
  'odd_dad',
  'dad_aliv',
  'aliv_theyr',
  'theyr_speak',
  'speak_term',
  'term_gon',
  'gon_na',
  'na_wed',
  'wed_logic',
  'logic_thing',
  'thing_walk',
  'walk_aisl',
  'aisl_role',
  'role_older',
  'older_brother',
  'brother_father',
  'father_mention',
  'mention_fil',
  'fil_feel',
  'feel_brought',
  'brought_beth',
  'beth_attitud',
  'attitud_impli',
  'impli_say',
  'say_object',
  'object_feel',
  'feel_situat',
  'situat_tradit',
  'tradit_practic',
  'practic_got',
  'got_argument',
  'argument_went',
  'went_home',
  'home_mike',
  'mike_think',
  'think_im',
  'im_unreason',
  'unreason_possibl',
  'possibl_caus',
  'caus_miss',
  'miss_someth',
  'someth_sentiment',
  'sentiment_anyth',
  'anyth_feel',
  'feel_honor',
  'honor_ask',
  'ask_said',
  'said_stop',
  'stop_worri',
  'worri_might',
  'might_say',
  'say_conflict',
  'conflict_us',
  'us_seem',
  'seem_reach',
  'reach_solut',
  'husband_mike_eldest',
  'mike_eldest_famili',
  'eldest_famili_pretti',
  'famili_pretti_close',
  'pretti_close_sister',
  'close_sister_beth',
  'sister_beth_spend',
  'beth_spend_almost',
  'spend_almost_week',
  'almost_week_togeth',
  'week_togeth_beth',
  'togeth_beth_issu',
  'beth_issu_father',
  'issu_father_grow',
  'father_grow_went',
  'grow_went_contact',
  'went_contact_took',
  'contact_took_first',
  'took_first_car',
  'first_car_damag',
  'car_damag_remain',
  'damag_remain_contact',
  'remain_contact_mike',
  'contact_mike_sinc',
  'mike_sinc_everybodi',
  'sinc_everybodi_els',
  'everybodi_els_judg',
  'els_judg_go',
  'judg_go_contact',
  'go_contact_get',
  'contact_get_marri',
  'get_marri_fianc',
  'marri_fianc_year',
  'fianc_year_understand',
  'year_understand_dad',
  'understand_dad_slowli',
  'dad_slowli_get',
  'slowli_get_reconcil',
  'get_reconcil_made',
  'reconcil_made_clear',
  'made_clear_want',
  'clear_want_take',
  'want_take_part',
  'take_part_wed',
  'part_wed_ask',
  'wed_ask_mike',
  'ask_mike_could',
  'mike_could_walk',
  'could_walk_aisl',
  'walk_aisl_agre',
  'aisl_agre_say',
  'agre_say_taken',
  'say_taken_aback',
  'taken_aback_felt',
  'aback_felt_bit',
  'felt_bit_odd',
  'bit_odd_dad',
  'odd_dad_aliv',
  'dad_aliv_theyr',
  'aliv_theyr_speak',
  'theyr_speak_term',
  'speak_term_gon',
  'term_gon_na',
  'gon_na_wed',
  'na_wed_logic',
  'wed_logic_thing',
  'logic_thing_walk',
  'thing_walk_aisl',
  'walk_aisl_role',
  'aisl_role_older',
  'role_older_brother',
  'older_brother_father',
  'brother_father_mention',
  'father_mention_fil',
  'mention_fil_feel',
  'fil_feel_brought',
  'feel_brought_beth',
  'brought_beth_attitud',
  'beth_attitud_impli',
  'attitud_impli_say',
  'impli_say_object',
  'say_object_feel',
  'object_feel_situat',
  'feel_situat_tradit',
  'situat_tradit_practic',
  'tradit_practic_got',
  'practic_got_argument',
  'got_argument_went',
  'argument_went_home',
  'went_home_mike',
  'home_mike_think',
  'mike_think_im',
  'think_im_unreason',
  'im_unreason_possibl',
  'unreason_possibl_caus',
  'possibl_caus_miss',
  'caus_miss_someth',
  'miss_someth_sentiment',
  'someth_sentiment_anyth',
  'sentiment_anyth_feel',
  'anyth_feel_honor',
  'feel_honor_ask',
  'honor_ask_said',
  'ask_said_stop',
  'said_stop_worri',
  'stop_worri_might',
  'worri_might_say',
  'might_say_conflict',
  'say_conflict_us',
  'conflict_us_seem',
  'us_seem_reach',
  'seem_reach_solut'],
 ['pretti',
  'sure',
  'asshol',
  'well',
  'see',
  'month',
  'pregnant',
  'take',
  'public',
  'transport',
  'work',
  'daili',
  'im',
  'alway',
  'exhaust',
  'caus',
  'work',
  'extra',
  'time',
  'abl',
  'afford',
  'basic',
  'necess',
  'take',
  'bu',
  'work',
  'everyday',
  'often',
  'time',
  'pack',
  'get',
  'lucki',
  'enough',
  'decent',
  'folk',
  'volunt',
  'seat',
  'mention',
  'use',
  'pregnanc',
  'excus',
  'get',
  'want',
  'peopl',
  'offer',
  'place',
  'kind',
  'sweet',
  'wednesday',
  'get',
  'bu',
  'like',
  'usual',
  'time',
  'one',
  'empti',
  'seat',
  'go',
  'sit',
  'find',
  'guy',
  'busi',
  'attir',
  'sit',
  'hand',
  'empti',
  'seat',
  'sort',
  'like',
  'rest',
  'say',
  'excus',
  'ask',
  'remov',
  'hand',
  'could',
  'sit',
  'tell',
  'seat',
  'taken',
  'ask',
  'say',
  'hand',
  'ngli',
  'laugh',
  'littl',
  'feel',
  'well',
  'ask',
  'remov',
  'could',
  'sit',
  'refus',
  'folk',
  'start',
  'stare',
  'tell',
  'im',
  'tire',
  'need',
  'sit',
  'repli',
  'say',
  'pregnanc',
  'problem',
  'enough',
  'point',
  'leg',
  'burn',
  'back',
  'hurt',
  'go',
  'ahead',
  'sit',
  'hand',
  'freak',
  'tri',
  'remov',
  'quickli',
  'shout',
  'start',
  'argu',
  'disrespect',
  'inappropri',
  'thing',
  'public',
  'less',
  'argu',
  'back',
  'ngl',
  'get',
  'say',
  'inappropri',
  'disrespect',
  'everyon',
  'stare',
  'sit',
  'feel',
  'bit',
  'shame',
  'happen',
  'tell',
  'husband',
  'incid',
  'wtfd',
  'entir',
  'time',
  'say',
  'inde',
  'act',
  'inappropri',
  'made',
  'guy',
  'uncomfort',
  'sit',
  'hand',
  'like',
  'tell',
  'fuck',
  'total',
  'inappropri',
  'despit',
  'say',
  'tire',
  'stand',
  'desper',
  'need',
  'sit',
  'aita',
  'eta',
  'sever',
  'points-',
  'like',
  'said',
  'get',
  'offer',
  'seat',
  'im',
  'treat',
  'well',
  'time',
  'unfortun',
  'run',
  'peopl',
  'guy',
  'seem',
  'upset',
  'someth',
  'argument',
  'probabl',
  'made',
  'wors',
  'couldv',
  'de-escal',
  'mayb',
  'talk',
  'driver',
  'ever',
  'im',
  'pretti',
  'sure',
  'pay',
  'seat',
  'put',
  'hand',
  'also',
  'passeng',
  'younger',
  'folk',
  'day',
  'normal',
  'would',
  'get',
  'seat',
  'older',
  'folk',
  'pretti_sure',
  'sure_asshol',
  'asshol_well',
  'well_see',
  'see_month',
  'month_pregnant',
  'pregnant_take',
  'take_public',
  'public_transport',
  'transport_work',
  'work_daili',
  'daili_im',
  'im_alway',
  'alway_exhaust',
  'exhaust_caus',
  'caus_work',
  'work_extra',
  'extra_time',
  'time_abl',
  'abl_afford',
  'afford_basic',
  'basic_necess',
  'necess_take',
  'take_bu',
  'bu_work',
  'work_everyday',
  'everyday_often',
  'often_time',
  'time_pack',
  'pack_get',
  'get_lucki',
  'lucki_enough',
  'enough_decent',
  'decent_folk',
  'folk_volunt',
  'volunt_seat',
  'seat_mention',
  'mention_use',
  'use_pregnanc',
  'pregnanc_excus',
  'excus_get',
  'get_want',
  'want_peopl',
  'peopl_offer',
  'offer_place',
  'place_kind',
  'kind_sweet',
  'sweet_wednesday',
  'wednesday_get',
  'get_bu',
  'bu_like',
  'like_usual',
  'usual_time',
  'time_one',
  'one_empti',
  'empti_seat',
  'seat_go',
  'go_sit',
  'sit_find',
  'find_guy',
  'guy_busi',
  'busi_attir',
  'attir_sit',
  'sit_hand',
  'hand_empti',
  'empti_seat',
  'seat_sort',
  'sort_like',
  'like_rest',
  'rest_say',
  'say_excus',
  'excus_ask',
  'ask_remov',
  'remov_hand',
  'hand_could',
  'could_sit',
  'sit_tell',
  'tell_seat',
  'seat_taken',
  'taken_ask',
  'ask_say',
  'say_hand',
  'hand_ngli',
  'ngli_laugh',
  'laugh_littl',
  'littl_feel',
  'feel_well',
  'well_ask',
  'ask_remov',
  'remov_could',
  'could_sit',
  'sit_refus',
  'refus_folk',
  'folk_start',
  'start_stare',
  'stare_tell',
  'tell_im',
  'im_tire',
  'tire_need',
  'need_sit',
  'sit_repli',
  'repli_say',
  'say_pregnanc',
  'pregnanc_problem',
  'problem_enough',
  'enough_point',
  'point_leg',
  'leg_burn',
  'burn_back',
  'back_hurt',
  'hurt_go',
  'go_ahead',
  'ahead_sit',
  'sit_hand',
  'hand_freak',
  'freak_tri',
  'tri_remov',
  'remov_quickli',
  'quickli_shout',
  'shout_start',
  'start_argu',
  'argu_disrespect',
  'disrespect_inappropri',
  'inappropri_thing',
  'thing_public',
  'public_less',
  'less_argu',
  'argu_back',
  'back_ngl',
  'ngl_get',
  'get_say',
  'say_inappropri',
  'inappropri_disrespect',
  'disrespect_everyon',
  'everyon_stare',
  'stare_sit',
  'sit_feel',
  'feel_bit',
  'bit_shame',
  'shame_happen',
  'happen_tell',
  'tell_husband',
  'husband_incid',
  'incid_wtfd',
  'wtfd_entir',
  'entir_time',
  'time_say',
  'say_inde',
  'inde_act',
  'act_inappropri',
  'inappropri_made',
  'made_guy',
  'guy_uncomfort',
  'uncomfort_sit',
  'sit_hand',
  'hand_like',
  'like_tell',
  'tell_fuck',
  'fuck_total',
  'total_inappropri',
  'inappropri_despit',
  'despit_say',
  'say_tire',
  'tire_stand',
  'stand_desper',
  'desper_need',
  'need_sit',
  'sit_aita',
  'aita_eta',
  'eta_sever',
  'sever_points-',
  'points-_like',
  'like_said',
  'said_get',
  'get_offer',
  'offer_seat',
  'seat_im',
  'im_treat',
  'treat_well',
  'well_time',
  'time_unfortun',
  'unfortun_run',
  'run_peopl',
  'peopl_guy',
  'guy_seem',
  'seem_upset',
  'upset_someth',
  'someth_argument',
  'argument_probabl',
  'probabl_made',
  'made_wors',
  'wors_couldv',
  'couldv_de-escal',
  'de-escal_mayb',
  'mayb_talk',
  'talk_driver',
  'driver_ever',
  'ever_im',
  'im_pretti',
  'pretti_sure',
  'sure_pay',
  'pay_seat',
  'seat_put',
  'put_hand',
  'hand_also',
  'also_passeng',
  'passeng_younger',
  'younger_folk',
  'folk_day',
  'day_normal',
  'normal_would',
  'would_get',
  'get_seat',
  'seat_older',
  'older_folk',
  'pretti_sure_asshol',
  'sure_asshol_well',
  'asshol_well_see',
  'well_see_month',
  'see_month_pregnant',
  'month_pregnant_take',
  'pregnant_take_public',
  'take_public_transport',
  'public_transport_work',
  'transport_work_daili',
  'work_daili_im',
  'daili_im_alway',
  'im_alway_exhaust',
  'alway_exhaust_caus',
  'exhaust_caus_work',
  'caus_work_extra',
  'work_extra_time',
  'extra_time_abl',
  'time_abl_afford',
  'abl_afford_basic',
  'afford_basic_necess',
  'basic_necess_take',
  'necess_take_bu',
  'take_bu_work',
  'bu_work_everyday',
  'work_everyday_often',
  'everyday_often_time',
  'often_time_pack',
  'time_pack_get',
  'pack_get_lucki',
  'get_lucki_enough',
  'lucki_enough_decent',
  'enough_decent_folk',
  'decent_folk_volunt',
  'folk_volunt_seat',
  'volunt_seat_mention',
  'seat_mention_use',
  'mention_use_pregnanc',
  'use_pregnanc_excus',
  'pregnanc_excus_get',
  'excus_get_want',
  'get_want_peopl',
  'want_peopl_offer',
  'peopl_offer_place',
  'offer_place_kind',
  'place_kind_sweet',
  'kind_sweet_wednesday',
  'sweet_wednesday_get',
  'wednesday_get_bu',
  'get_bu_like',
  'bu_like_usual',
  'like_usual_time',
  'usual_time_one',
  'time_one_empti',
  'one_empti_seat',
  'empti_seat_go',
  'seat_go_sit',
  'go_sit_find',
  'sit_find_guy',
  'find_guy_busi',
  'guy_busi_attir',
  'busi_attir_sit',
  'attir_sit_hand',
  'sit_hand_empti',
  'hand_empti_seat',
  'empti_seat_sort',
  'seat_sort_like',
  'sort_like_rest',
  'like_rest_say',
  'rest_say_excus',
  'say_excus_ask',
  'excus_ask_remov',
  'ask_remov_hand',
  'remov_hand_could',
  'hand_could_sit',
  'could_sit_tell',
  'sit_tell_seat',
  'tell_seat_taken',
  'seat_taken_ask',
  'taken_ask_say',
  'ask_say_hand',
  'say_hand_ngli',
  'hand_ngli_laugh',
  'ngli_laugh_littl',
  'laugh_littl_feel',
  'littl_feel_well',
  'feel_well_ask',
  'well_ask_remov',
  'ask_remov_could',
  'remov_could_sit',
  'could_sit_refus',
  'sit_refus_folk',
  'refus_folk_start',
  'folk_start_stare',
  'start_stare_tell',
  'stare_tell_im',
  'tell_im_tire',
  'im_tire_need',
  'tire_need_sit',
  'need_sit_repli',
  'sit_repli_say',
  'repli_say_pregnanc',
  'say_pregnanc_problem',
  'pregnanc_problem_enough',
  'problem_enough_point',
  'enough_point_leg',
  'point_leg_burn',
  'leg_burn_back',
  'burn_back_hurt',
  'back_hurt_go',
  'hurt_go_ahead',
  'go_ahead_sit',
  'ahead_sit_hand',
  'sit_hand_freak',
  'hand_freak_tri',
  'freak_tri_remov',
  'tri_remov_quickli',
  'remov_quickli_shout',
  'quickli_shout_start',
  'shout_start_argu',
  'start_argu_disrespect',
  'argu_disrespect_inappropri',
  'disrespect_inappropri_thing',
  'inappropri_thing_public',
  'thing_public_less',
  'public_less_argu',
  'less_argu_back',
  'argu_back_ngl',
  'back_ngl_get',
  'ngl_get_say',
  'get_say_inappropri',
  'say_inappropri_disrespect',
  'inappropri_disrespect_everyon',
  'disrespect_everyon_stare',
  'everyon_stare_sit',
  'stare_sit_feel',
  'sit_feel_bit',
  'feel_bit_shame',
  'bit_shame_happen',
  'shame_happen_tell',
  'happen_tell_husband',
  'tell_husband_incid',
  'husband_incid_wtfd',
  'incid_wtfd_entir',
  'wtfd_entir_time',
  'entir_time_say',
  'time_say_inde',
  'say_inde_act',
  'inde_act_inappropri',
  'act_inappropri_made',
  'inappropri_made_guy',
  'made_guy_uncomfort',
  'guy_uncomfort_sit',
  'uncomfort_sit_hand',
  'sit_hand_like',
  'hand_like_tell',
  'like_tell_fuck',
  'tell_fuck_total',
  'fuck_total_inappropri',
  'total_inappropri_despit',
  'inappropri_despit_say',
  'despit_say_tire',
  'say_tire_stand',
  'tire_stand_desper',
  'stand_desper_need',
  'desper_need_sit',
  'need_sit_aita',
  'sit_aita_eta',
  'aita_eta_sever',
  'eta_sever_points-',
  'sever_points-_like',
  'points-_like_said',
  'like_said_get',
  'said_get_offer',
  'get_offer_seat',
  'offer_seat_im',
  'seat_im_treat',
  'im_treat_well',
  'treat_well_time',
  'well_time_unfortun',
  'time_unfortun_run',
  'unfortun_run_peopl',
  'run_peopl_guy',
  'peopl_guy_seem',
  'guy_seem_upset',
  'seem_upset_someth',
  'upset_someth_argument',
  'someth_argument_probabl',
  'argument_probabl_made',
  'probabl_made_wors',
  'made_wors_couldv',
  'wors_couldv_de-escal',
  'couldv_de-escal_mayb',
  'de-escal_mayb_talk',
  'mayb_talk_driver',
  'talk_driver_ever',
  'driver_ever_im',
  'ever_im_pretti',
  'im_pretti_sure',
  'pretti_sure_pay',
  'sure_pay_seat',
  'pay_seat_put',
  'seat_put_hand',
  'put_hand_also',
  'hand_also_passeng',
  'also_passeng_younger',
  'passeng_younger_folk',
  'younger_folk_day',
  'folk_day_normal',
  'day_normal_would',
  'normal_would_get',
  'would_get_seat',
  'get_seat_older',
  'seat_older_folk'],
 ['parent',
  'divorc',
  'ten',
  'year',
  'ago',
  'dad',
  'cheat',
  'mom',
  'marri',
  'woman',
  'kid',
  'step-sist',
  'juliaf',
  'step-broth',
  'josh',
  'dad',
  'cheat',
  'mom',
  'dad',
  'alreadi',
  'pass',
  'away',
  'total',
  'daddi',
  'girl',
  'ador',
  'glu',
  'hip',
  'mom',
  'encourag',
  'keep',
  'relationship',
  'split',
  'new',
  'wife',
  'famili',
  'never',
  'paid',
  'much',
  'attent',
  'mean',
  'good',
  'first',
  'alway',
  'share',
  'dad',
  'whenev',
  'visit',
  'went',
  'hike',
  'fish',
  'come',
  'went',
  'movi',
  'dinner',
  'outsid',
  'anyth',
  'come',
  'rememb',
  'use',
  'cri',
  'night',
  'understand',
  'stop',
  'turn',
  'want',
  'someth',
  'special',
  'dad',
  'said',
  'invit',
  'stepbroth',
  'broke',
  'cri',
  'ask',
  'never',
  'want',
  'spend',
  'time',
  'alon',
  'long',
  'talk',
  'got',
  'vent',
  'aw',
  'felt',
  'sit',
  'wait',
  'turn',
  'head',
  'notic',
  'tri',
  'talk',
  'attent',
  'would',
  'get',
  'middl',
  'ignor',
  'apolog',
  'would',
  'spend',
  'time',
  '-',
  'instanc',
  'lie',
  'realli',
  'enjoy',
  'could',
  'realli',
  'talk',
  'dad',
  'fun',
  'stuff',
  'around',
  'without',
  'wait',
  'stepbroth',
  'stop',
  'talk',
  'anyth',
  'julia',
  'ill',
  'graduat',
  'summer',
  'got',
  'earli',
  'accept',
  'colleg',
  'choic',
  'told',
  'parent',
  'decid',
  'someth',
  'celebr',
  'mom',
  'getaway',
  'weekend',
  'spa',
  'dad',
  'said',
  'would',
  'take',
  'beach',
  'honestli',
  'realli',
  'excit',
  'offer',
  'pay',
  'hotel',
  'reserv',
  'want',
  'feel',
  'matur',
  'lo',
  'dad',
  'said',
  'bunch',
  'time',
  'end',
  'convinc',
  'suppos',
  'leav',
  'today',
  'came',
  'pick',
  'step-sist',
  'said',
  'surpris',
  'sinc',
  'girl',
  'graduat',
  'appar',
  'beg',
  'come',
  'us',
  'agre',
  'say',
  'could',
  'get',
  'bed',
  'hell',
  'sleep',
  'floor',
  'us',
  'could',
  'feel',
  'eye',
  'burn',
  'told',
  'deal',
  'tri',
  'convinc',
  'end',
  'leav',
  'rage',
  'call',
  'hotel',
  'cancel',
  'room',
  'told',
  'dad',
  'arriv',
  'tri',
  'check',
  'call',
  'said',
  'yeah',
  'cancel',
  'hung',
  'sent',
  'long',
  'text',
  'apolog',
  'mom',
  'said',
  'okay',
  'owe',
  'apolog',
  'appar',
  'theyr',
  'way',
  'back',
  'find',
  'hotel',
  'eta',
  'someon',
  'suggest',
  'im',
  'ad',
  'trip',
  'dad',
  'spa',
  'getaway',
  'mom',
  'got',
  'earli',
  'accept',
  'graduat',
  'high',
  'school',
  'julia',
  'busi',
  'dad',
  'ask',
  'invit',
  'said',
  'also',
  'inform',
  'dad',
  'sinc',
  'keep',
  'hurt',
  'put',
  'famili',
  'explicitli',
  'ask',
  'would',
  'rather',
  'go',
  'nc',
  'current',
  'uninvit',
  'graduat',
  'last',
  'time',
  'still',
  'love',
  'hurt',
  'heart',
  'come',
  'cant',
  'keep',
  'anymor',
  'ask',
  'contact',
  'block',
  'mom',
  'explain',
  'everyth',
  'much',
  'cri',
  'part',
  'apolog',
  'hug',
  'know',
  'support',
  'decis',
  'parent_divorc',
  'divorc_ten',
  'ten_year',
  'year_ago',
  'ago_dad',
  'dad_cheat',
  'cheat_mom',
  'mom_marri',
  'marri_woman',
  'woman_kid',
  'kid_step-sist',
  'step-sist_juliaf',
  'juliaf_step-broth',
  'step-broth_josh',
  'josh_dad',
  'dad_cheat',
  'cheat_mom',
  'mom_dad',
  'dad_alreadi',
  'alreadi_pass',
  'pass_away',
  'away_total',
  'total_daddi',
  'daddi_girl',
  'girl_ador',
  'ador_glu',
  'glu_hip',
  'hip_mom',
  'mom_encourag',
  'encourag_keep',
  'keep_relationship',
  'relationship_split',
  'split_new',
  'new_wife',
  'wife_famili',
  'famili_never',
  'never_paid',
  'paid_much',
  'much_attent',
  'attent_mean',
  'mean_good',
  'good_first',
  'first_alway',
  'alway_share',
  'share_dad',
  'dad_whenev',
  'whenev_visit',
  'visit_went',
  'went_hike',
  'hike_fish',
  'fish_come',
  'come_went',
  'went_movi',
  'movi_dinner',
  'dinner_outsid',
  'outsid_anyth',
  'anyth_come',
  'come_rememb',
  'rememb_use',
  'use_cri',
  'cri_night',
  'night_understand',
  'understand_stop',
  'stop_turn',
  'turn_want',
  'want_someth',
  'someth_special',
  'special_dad',
  'dad_said',
  'said_invit',
  'invit_stepbroth',
  'stepbroth_broke',
  'broke_cri',
  'cri_ask',
  'ask_never',
  'never_want',
  'want_spend',
  'spend_time',
  'time_alon',
  'alon_long',
  'long_talk',
  'talk_got',
  'got_vent',
  'vent_aw',
  'aw_felt',
  'felt_sit',
  'sit_wait',
  'wait_turn',
  'turn_head',
  'head_notic',
  'notic_tri',
  'tri_talk',
  'talk_attent',
  'attent_would',
  'would_get',
  'get_middl',
  'middl_ignor',
  'ignor_apolog',
  'apolog_would',
  'would_spend',
  'spend_time',
  'time_-',
  '-_instanc',
  'instanc_lie',
  'lie_realli',
  'realli_enjoy',
  'enjoy_could',
  'could_realli',
  'realli_talk',
  'talk_dad',
  'dad_fun',
  'fun_stuff',
  'stuff_around',
  'around_without',
  'without_wait',
  'wait_stepbroth',
  'stepbroth_stop',
  'stop_talk',
  'talk_anyth',
  'anyth_julia',
  'julia_ill',
  'ill_graduat',
  'graduat_summer',
  'summer_got',
  'got_earli',
  'earli_accept',
  'accept_colleg',
  'colleg_choic',
  'choic_told',
  'told_parent',
  'parent_decid',
  'decid_someth',
  'someth_celebr',
  'celebr_mom',
  'mom_getaway',
  'getaway_weekend',
  'weekend_spa',
  'spa_dad',
  'dad_said',
  'said_would',
  'would_take',
  'take_beach',
  'beach_honestli',
  'honestli_realli',
  'realli_excit',
  'excit_offer',
  'offer_pay',
  'pay_hotel',
  'hotel_reserv',
  'reserv_want',
  'want_feel',
  'feel_matur',
  'matur_lo',
  'lo_dad',
  'dad_said',
  'said_bunch',
  'bunch_time',
  'time_end',
  'end_convinc',
  'convinc_suppos',
  'suppos_leav',
  'leav_today',
  'today_came',
  'came_pick',
  'pick_step-sist',
  'step-sist_said',
  'said_surpris',
  'surpris_sinc',
  'sinc_girl',
  'girl_graduat',
  'graduat_appar',
  'appar_beg',
  'beg_come',
  'come_us',
  'us_agre',
  'agre_say',
  'say_could',
  'could_get',
  'get_bed',
  'bed_hell',
  'hell_sleep',
  'sleep_floor',
  'floor_us',
  'us_could',
  'could_feel',
  'feel_eye',
  'eye_burn',
  'burn_told',
  'told_deal',
  'deal_tri',
  'tri_convinc',
  'convinc_end',
  'end_leav',
  'leav_rage',
  'rage_call',
  'call_hotel',
  'hotel_cancel',
  'cancel_room',
  'room_told',
  'told_dad',
  'dad_arriv',
  'arriv_tri',
  'tri_check',
  'check_call',
  'call_said',
  'said_yeah',
  'yeah_cancel',
  'cancel_hung',
  'hung_sent',
  'sent_long',
  'long_text',
  'text_apolog',
  'apolog_mom',
  'mom_said',
  'said_okay',
  'okay_owe',
  'owe_apolog',
  'apolog_appar',
  'appar_theyr',
  'theyr_way',
  'way_back',
  'back_find',
  'find_hotel',
  'hotel_eta',
  'eta_someon',
  'someon_suggest',
  'suggest_im',
  'im_ad',
  'ad_trip',
  'trip_dad',
  'dad_spa',
  'spa_getaway',
  'getaway_mom',
  'mom_got',
  'got_earli',
  'earli_accept',
  'accept_graduat',
  'graduat_high',
  'high_school',
  'school_julia',
  'julia_busi',
  'busi_dad',
  'dad_ask',
  'ask_invit',
  'invit_said',
  'said_also',
  'also_inform',
  'inform_dad',
  'dad_sinc',
  'sinc_keep',
  'keep_hurt',
  'hurt_put',
  'put_famili',
  'famili_explicitli',
  'explicitli_ask',
  'ask_would',
  'would_rather',
  'rather_go',
  'go_nc',
  'nc_current',
  'current_uninvit',
  'uninvit_graduat',
  'graduat_last',
  'last_time',
  'time_still',
  'still_love',
  'love_hurt',
  'hurt_heart',
  'heart_come',
  'come_cant',
  'cant_keep',
  'keep_anymor',
  'anymor_ask',
  'ask_contact',
  'contact_block',
  'block_mom',
  'mom_explain',
  'explain_everyth',
  'everyth_much',
  'much_cri',
  'cri_part',
  'part_apolog',
  'apolog_hug',
  'hug_know',
  'know_support',
  'support_decis',
  'parent_divorc_ten',
  'divorc_ten_year',
  'ten_year_ago',
  'year_ago_dad',
  'ago_dad_cheat',
  'dad_cheat_mom',
  'cheat_mom_marri',
  'mom_marri_woman',
  'marri_woman_kid',
  'woman_kid_step-sist',
  'kid_step-sist_juliaf',
  'step-sist_juliaf_step-broth',
  'juliaf_step-broth_josh',
  'step-broth_josh_dad',
  'josh_dad_cheat',
  'dad_cheat_mom',
  'cheat_mom_dad',
  'mom_dad_alreadi',
  'dad_alreadi_pass',
  'alreadi_pass_away',
  'pass_away_total',
  'away_total_daddi',
  'total_daddi_girl',
  'daddi_girl_ador',
  'girl_ador_glu',
  'ador_glu_hip',
  'glu_hip_mom',
  'hip_mom_encourag',
  'mom_encourag_keep',
  'encourag_keep_relationship',
  'keep_relationship_split',
  'relationship_split_new',
  'split_new_wife',
  'new_wife_famili',
  'wife_famili_never',
  'famili_never_paid',
  'never_paid_much',
  'paid_much_attent',
  'much_attent_mean',
  'attent_mean_good',
  'mean_good_first',
  'good_first_alway',
  'first_alway_share',
  'alway_share_dad',
  'share_dad_whenev',
  'dad_whenev_visit',
  'whenev_visit_went',
  'visit_went_hike',
  'went_hike_fish',
  'hike_fish_come',
  'fish_come_went',
  'come_went_movi',
  'went_movi_dinner',
  'movi_dinner_outsid',
  'dinner_outsid_anyth',
  'outsid_anyth_come',
  'anyth_come_rememb',
  'come_rememb_use',
  'rememb_use_cri',
  'use_cri_night',
  'cri_night_understand',
  'night_understand_stop',
  'understand_stop_turn',
  'stop_turn_want',
  'turn_want_someth',
  'want_someth_special',
  'someth_special_dad',
  'special_dad_said',
  'dad_said_invit',
  'said_invit_stepbroth',
  'invit_stepbroth_broke',
  'stepbroth_broke_cri',
  'broke_cri_ask',
  'cri_ask_never',
  'ask_never_want',
  'never_want_spend',
  'want_spend_time',
  'spend_time_alon',
  'time_alon_long',
  'alon_long_talk',
  'long_talk_got',
  'talk_got_vent',
  'got_vent_aw',
  'vent_aw_felt',
  'aw_felt_sit',
  'felt_sit_wait',
  'sit_wait_turn',
  'wait_turn_head',
  'turn_head_notic',
  'head_notic_tri',
  'notic_tri_talk',
  'tri_talk_attent',
  'talk_attent_would',
  'attent_would_get',
  'would_get_middl',
  'get_middl_ignor',
  'middl_ignor_apolog',
  'ignor_apolog_would',
  'apolog_would_spend',
  'would_spend_time',
  'spend_time_-',
  'time_-_instanc',
  '-_instanc_lie',
  'instanc_lie_realli',
  'lie_realli_enjoy',
  'realli_enjoy_could',
  'enjoy_could_realli',
  'could_realli_talk',
  'realli_talk_dad',
  'talk_dad_fun',
  'dad_fun_stuff',
  'fun_stuff_around',
  'stuff_around_without',
  'around_without_wait',
  'without_wait_stepbroth',
  'wait_stepbroth_stop',
  'stepbroth_stop_talk',
  'stop_talk_anyth',
  'talk_anyth_julia',
  'anyth_julia_ill',
  'julia_ill_graduat',
  'ill_graduat_summer',
  'graduat_summer_got',
  'summer_got_earli',
  'got_earli_accept',
  'earli_accept_colleg',
  'accept_colleg_choic',
  'colleg_choic_told',
  'choic_told_parent',
  'told_parent_decid',
  'parent_decid_someth',
  'decid_someth_celebr',
  'someth_celebr_mom',
  'celebr_mom_getaway',
  'mom_getaway_weekend',
  'getaway_weekend_spa',
  'weekend_spa_dad',
  'spa_dad_said',
  'dad_said_would',
  'said_would_take',
  'would_take_beach',
  'take_beach_honestli',
  'beach_honestli_realli',
  'honestli_realli_excit',
  'realli_excit_offer',
  'excit_offer_pay',
  'offer_pay_hotel',
  'pay_hotel_reserv',
  'hotel_reserv_want',
  'reserv_want_feel',
  'want_feel_matur',
  'feel_matur_lo',
  'matur_lo_dad',
  'lo_dad_said',
  'dad_said_bunch',
  'said_bunch_time',
  'bunch_time_end',
  'time_end_convinc',
  'end_convinc_suppos',
  'convinc_suppos_leav',
  'suppos_leav_today',
  'leav_today_came',
  'today_came_pick',
  'came_pick_step-sist',
  'pick_step-sist_said',
  'step-sist_said_surpris',
  'said_surpris_sinc',
  'surpris_sinc_girl',
  'sinc_girl_graduat',
  'girl_graduat_appar',
  'graduat_appar_beg',
  'appar_beg_come',
  'beg_come_us',
  'come_us_agre',
  'us_agre_say',
  'agre_say_could',
  'say_could_get',
  'could_get_bed',
  'get_bed_hell',
  'bed_hell_sleep',
  'hell_sleep_floor',
  'sleep_floor_us',
  'floor_us_could',
  'us_could_feel',
  'could_feel_eye',
  'feel_eye_burn',
  'eye_burn_told',
  'burn_told_deal',
  'told_deal_tri',
  'deal_tri_convinc',
  'tri_convinc_end',
  'convinc_end_leav',
  'end_leav_rage',
  'leav_rage_call',
  'rage_call_hotel',
  'call_hotel_cancel',
  'hotel_cancel_room',
  'cancel_room_told',
  'room_told_dad',
  'told_dad_arriv',
  'dad_arriv_tri',
  'arriv_tri_check',
  'tri_check_call',
  'check_call_said',
  'call_said_yeah',
  'said_yeah_cancel',
  'yeah_cancel_hung',
  'cancel_hung_sent',
  'hung_sent_long',
  'sent_long_text',
  'long_text_apolog',
  'text_apolog_mom',
  'apolog_mom_said',
  'mom_said_okay',
  'said_okay_owe',
  'okay_owe_apolog',
  'owe_apolog_appar',
  'apolog_appar_theyr',
  'appar_theyr_way',
  'theyr_way_back',
  'way_back_find',
  'back_find_hotel',
  'find_hotel_eta',
  'hotel_eta_someon',
  'eta_someon_suggest',
  'someon_suggest_im',
  'suggest_im_ad',
  'im_ad_trip',
  'ad_trip_dad',
  'trip_dad_spa',
  'dad_spa_getaway',
  'spa_getaway_mom',
  'getaway_mom_got',
  'mom_got_earli',
  'got_earli_accept',
  'earli_accept_graduat',
  'accept_graduat_high',
  'graduat_high_school',
  'high_school_julia',
  'school_julia_busi',
  'julia_busi_dad',
  'busi_dad_ask',
  'dad_ask_invit',
  'ask_invit_said',
  'invit_said_also',
  'said_also_inform',
  'also_inform_dad',
  'inform_dad_sinc',
  'dad_sinc_keep',
  'sinc_keep_hurt',
  'keep_hurt_put',
  'hurt_put_famili',
  'put_famili_explicitli',
  'famili_explicitli_ask',
  'explicitli_ask_would',
  'ask_would_rather',
  'would_rather_go',
  'rather_go_nc',
  'go_nc_current',
  'nc_current_uninvit',
  'current_uninvit_graduat',
  'uninvit_graduat_last',
  'graduat_last_time',
  'last_time_still',
  'time_still_love',
  'still_love_hurt',
  'love_hurt_heart',
  'hurt_heart_come',
  'heart_come_cant',
  'come_cant_keep',
  'cant_keep_anymor',
  'keep_anymor_ask',
  'anymor_ask_contact',
  'ask_contact_block',
  'contact_block_mom',
  'block_mom_explain',
  'mom_explain_everyth',
  'explain_everyth_much',
  'everyth_much_cri',
  'much_cri_part',
  'cri_part_apolog',
  'part_apolog_hug',
  'apolog_hug_know',
  'hug_know_support',
  'know_support_decis'],
 ['live',
  'parent',
  'ive',
  'pay',
  'rent',
  'sinc',
  'sinc',
  'parent',
  'would',
  'financi',
  'fuck',
  'help',
  'parent',
  'told',
  'see',
  'someon',
  'relationship',
  'open',
  'give',
  'shit',
  'sinc',
  'affect',
  'guy',
  'see',
  'start',
  'stay',
  'night',
  'treat',
  'place',
  'like',
  'tri',
  'tell',
  'eat',
  'food',
  'tri',
  'talk',
  'parent',
  'said',
  'hous',
  'want',
  'realli',
  'tri',
  'put',
  'guy',
  'tri',
  'disciplin',
  'dog',
  'flip',
  'shit',
  'certainli',
  'way',
  'disciplin',
  'dog',
  'im',
  'alreadi',
  'sick',
  'shit',
  'yell',
  'hous',
  'call',
  'sort',
  'like',
  'dumb',
  '\\',
  '*',
  'nt',
  'piec',
  'shit',
  'free',
  'loader',
  'vile',
  'shit',
  'probabl',
  'way',
  'fuck',
  'say',
  'parent',
  'rush',
  'see',
  'go',
  'tell',
  'instead',
  'told',
  'call',
  'terribl',
  'parent',
  'shove',
  'hous',
  'ass',
  'im',
  'go',
  'pay',
  'rent',
  'live',
  'hous',
  'say',
  'dumb',
  '\\',
  '*',
  'nt',
  'cover',
  'rent',
  'ive',
  'sinc',
  'stay',
  'boyfriend',
  'parent',
  'recent',
  'text',
  'ask',
  'rent',
  'told',
  'fuck',
  'remind',
  'said',
  'feel',
  'like',
  'im',
  'wrong',
  'pay',
  'rent',
  'anymor',
  'went',
  'overboard',
  'word',
  'aita',
  'live_parent',
  'parent_ive',
  'ive_pay',
  'pay_rent',
  'rent_sinc',
  'sinc_sinc',
  'sinc_parent',
  'parent_would',
  'would_financi',
  'financi_fuck',
  'fuck_help',
  'help_parent',
  'parent_told',
  'told_see',
  'see_someon',
  'someon_relationship',
  'relationship_open',
  'open_give',
  'give_shit',
  'shit_sinc',
  'sinc_affect',
  'affect_guy',
  'guy_see',
  'see_start',
  'start_stay',
  'stay_night',
  'night_treat',
  'treat_place',
  'place_like',
  'like_tri',
  'tri_tell',
  'tell_eat',
  'eat_food',
  'food_tri',
  'tri_talk',
  'talk_parent',
  'parent_said',
  'said_hous',
  'hous_want',
  'want_realli',
  'realli_tri',
  'tri_put',
  'put_guy',
  'guy_tri',
  'tri_disciplin',
  'disciplin_dog',
  'dog_flip',
  'flip_shit',
  'shit_certainli',
  'certainli_way',
  'way_disciplin',
  'disciplin_dog',
  'dog_im',
  'im_alreadi',
  'alreadi_sick',
  'sick_shit',
  'shit_yell',
  'yell_hous',
  'hous_call',
  'call_sort',
  'sort_like',
  'like_dumb',
  'dumb_\\',
  '\\_*',
  '*_nt',
  'nt_piec',
  'piec_shit',
  'shit_free',
  'free_loader',
  'loader_vile',
  'vile_shit',
  'shit_probabl',
  'probabl_way',
  'way_fuck',
  'fuck_say',
  'say_parent',
  'parent_rush',
  'rush_see',
  'see_go',
  'go_tell',
  'tell_instead',
  'instead_told',
  'told_call',
  'call_terribl',
  'terribl_parent',
  'parent_shove',
  'shove_hous',
  'hous_ass',
  'ass_im',
  'im_go',
  'go_pay',
  'pay_rent',
  'rent_live',
  'live_hous',
  'hous_say',
  'say_dumb',
  'dumb_\\',
  '\\_*',
  '*_nt',
  'nt_cover',
  'cover_rent',
  'rent_ive',
  'ive_sinc',
  'sinc_stay',
  'stay_boyfriend',
  'boyfriend_parent',
  'parent_recent',
  'recent_text',
  'text_ask',
  'ask_rent',
  'rent_told',
  'told_fuck',
  'fuck_remind',
  'remind_said',
  'said_feel',
  'feel_like',
  'like_im',
  'im_wrong',
  'wrong_pay',
  'pay_rent',
  'rent_anymor',
  'anymor_went',
  'went_overboard',
  'overboard_word',
  'word_aita',
  'live_parent_ive',
  'parent_ive_pay',
  'ive_pay_rent',
  'pay_rent_sinc',
  'rent_sinc_sinc',
  'sinc_sinc_parent',
  'sinc_parent_would',
  'parent_would_financi',
  'would_financi_fuck',
  'financi_fuck_help',
  'fuck_help_parent',
  'help_parent_told',
  'parent_told_see',
  'told_see_someon',
  'see_someon_relationship',
  'someon_relationship_open',
  'relationship_open_give',
  'open_give_shit',
  'give_shit_sinc',
  'shit_sinc_affect',
  'sinc_affect_guy',
  'affect_guy_see',
  'guy_see_start',
  'see_start_stay',
  'start_stay_night',
  'stay_night_treat',
  'night_treat_place',
  'treat_place_like',
  'place_like_tri',
  'like_tri_tell',
  'tri_tell_eat',
  'tell_eat_food',
  'eat_food_tri',
  'food_tri_talk',
  'tri_talk_parent',
  'talk_parent_said',
  'parent_said_hous',
  'said_hous_want',
  'hous_want_realli',
  'want_realli_tri',
  'realli_tri_put',
  'tri_put_guy',
  'put_guy_tri',
  'guy_tri_disciplin',
  'tri_disciplin_dog',
  'disciplin_dog_flip',
  'dog_flip_shit',
  'flip_shit_certainli',
  'shit_certainli_way',
  'certainli_way_disciplin',
  'way_disciplin_dog',
  'disciplin_dog_im',
  'dog_im_alreadi',
  'im_alreadi_sick',
  'alreadi_sick_shit',
  'sick_shit_yell',
  'shit_yell_hous',
  'yell_hous_call',
  'hous_call_sort',
  'call_sort_like',
  'sort_like_dumb',
  'like_dumb_\\',
  'dumb_\\_*',
  '\\_*_nt',
  '*_nt_piec',
  'nt_piec_shit',
  'piec_shit_free',
  'shit_free_loader',
  'free_loader_vile',
  'loader_vile_shit',
  'vile_shit_probabl',
  'shit_probabl_way',
  'probabl_way_fuck',
  'way_fuck_say',
  'fuck_say_parent',
  'say_parent_rush',
  'parent_rush_see',
  'rush_see_go',
  'see_go_tell',
  'go_tell_instead',
  'tell_instead_told',
  'instead_told_call',
  'told_call_terribl',
  'call_terribl_parent',
  'terribl_parent_shove',
  'parent_shove_hous',
  'shove_hous_ass',
  'hous_ass_im',
  'ass_im_go',
  'im_go_pay',
  'go_pay_rent',
  'pay_rent_live',
  'rent_live_hous',
  'live_hous_say',
  'hous_say_dumb',
  'say_dumb_\\',
  'dumb_\\_*',
  '\\_*_nt',
  '*_nt_cover',
  'nt_cover_rent',
  'cover_rent_ive',
  'rent_ive_sinc',
  'ive_sinc_stay',
  'sinc_stay_boyfriend',
  'stay_boyfriend_parent',
  'boyfriend_parent_recent',
  'parent_recent_text',
  'recent_text_ask',
  'text_ask_rent',
  'ask_rent_told',
  'rent_told_fuck',
  'told_fuck_remind',
  'fuck_remind_said',
  'remind_said_feel',
  'said_feel_like',
  'feel_like_im',
  'like_im_wrong',
  'im_wrong_pay',
  'wrong_pay_rent',
  'pay_rent_anymor',
  'rent_anymor_went',
  'anymor_went_overboard',
  'went_overboard_word',
  'overboard_word_aita'],
 ['plan',
  'famili',
  'vacat',
  'older',
  'brother',
  'wife',
  'two',
  'niec',
  'parent',
  'everyon',
  'pay',
  'ticket',
  'vacat',
  'book',
  'februari',
  'discuss',
  'room',
  'arrang',
  'knew',
  'room',
  'wed',
  'stay',
  'would',
  'three',
  'bedroom',
  'discuss',
  'room',
  'arrang',
  'yesterday',
  'brother',
  'parent',
  'kind',
  'assum',
  'mind',
  'share',
  'room',
  'niec',
  'whilst',
  'brother',
  'wife',
  'parent',
  'get',
  'room',
  'said',
  'want',
  'share',
  'room',
  'said',
  'sleep',
  'brother',
  'sil',
  'room',
  'sinc',
  'theyr',
  'parent',
  'parent',
  'call',
  'dramat',
  'said',
  'big',
  'deal',
  'said',
  'niec',
  'give',
  'troubl',
  'told',
  'care',
  'said',
  'im',
  'bad',
  'aunt',
  'told',
  'grow',
  'told',
  'get',
  'room',
  'ill',
  'cancel',
  'ticket',
  'would',
  'result',
  'everyon',
  'els',
  'pay',
  'find',
  'someon',
  'els',
  'go',
  'place',
  'got',
  'group',
  'discount',
  'resort',
  'brother',
  'said',
  'im',
  'whini',
  'asshol',
  'accus',
  'narcissist',
  'plan_famili',
  'famili_vacat',
  'vacat_older',
  'older_brother',
  'brother_wife',
  'wife_two',
  'two_niec',
  'niec_parent',
  'parent_everyon',
  'everyon_pay',
  'pay_ticket',
  'ticket_vacat',
  'vacat_book',
  'book_februari',
  'februari_discuss',
  'discuss_room',
  'room_arrang',
  'arrang_knew',
  'knew_room',
  'room_wed',
  'wed_stay',
  'stay_would',
  'would_three',
  'three_bedroom',
  'bedroom_discuss',
  'discuss_room',
  'room_arrang',
  'arrang_yesterday',
  'yesterday_brother',
  'brother_parent',
  'parent_kind',
  'kind_assum',
  'assum_mind',
  'mind_share',
  'share_room',
  'room_niec',
  'niec_whilst',
  'whilst_brother',
  'brother_wife',
  'wife_parent',
  'parent_get',
  'get_room',
  'room_said',
  'said_want',
  'want_share',
  'share_room',
  'room_said',
  'said_sleep',
  'sleep_brother',
  'brother_sil',
  'sil_room',
  'room_sinc',
  'sinc_theyr',
  'theyr_parent',
  'parent_parent',
  'parent_call',
  'call_dramat',
  'dramat_said',
  'said_big',
  'big_deal',
  'deal_said',
  'said_niec',
  'niec_give',
  'give_troubl',
  'troubl_told',
  'told_care',
  'care_said',
  'said_im',
  'im_bad',
  'bad_aunt',
  'aunt_told',
  'told_grow',
  'grow_told',
  'told_get',
  'get_room',
  'room_ill',
  'ill_cancel',
  'cancel_ticket',
  'ticket_would',
  'would_result',
  'result_everyon',
  'everyon_els',
  'els_pay',
  'pay_find',
  'find_someon',
  'someon_els',
  'els_go',
  'go_place',
  'place_got',
  'got_group',
  'group_discount',
  'discount_resort',
  'resort_brother',
  'brother_said',
  'said_im',
  'im_whini',
  'whini_asshol',
  'asshol_accus',
  'accus_narcissist',
  'plan_famili_vacat',
  'famili_vacat_older',
  'vacat_older_brother',
  'older_brother_wife',
  'brother_wife_two',
  'wife_two_niec',
  'two_niec_parent',
  'niec_parent_everyon',
  'parent_everyon_pay',
  'everyon_pay_ticket',
  'pay_ticket_vacat',
  'ticket_vacat_book',
  'vacat_book_februari',
  'book_februari_discuss',
  'februari_discuss_room',
  'discuss_room_arrang',
  'room_arrang_knew',
  'arrang_knew_room',
  'knew_room_wed',
  'room_wed_stay',
  'wed_stay_would',
  'stay_would_three',
  'would_three_bedroom',
  'three_bedroom_discuss',
  'bedroom_discuss_room',
  'discuss_room_arrang',
  'room_arrang_yesterday',
  'arrang_yesterday_brother',
  'yesterday_brother_parent',
  'brother_parent_kind',
  'parent_kind_assum',
  'kind_assum_mind',
  'assum_mind_share',
  'mind_share_room',
  'share_room_niec',
  'room_niec_whilst',
  'niec_whilst_brother',
  'whilst_brother_wife',
  'brother_wife_parent',
  'wife_parent_get',
  'parent_get_room',
  'get_room_said',
  'room_said_want',
  'said_want_share',
  'want_share_room',
  'share_room_said',
  'room_said_sleep',
  'said_sleep_brother',
  'sleep_brother_sil',
  'brother_sil_room',
  'sil_room_sinc',
  'room_sinc_theyr',
  'sinc_theyr_parent',
  'theyr_parent_parent',
  'parent_parent_call',
  'parent_call_dramat',
  'call_dramat_said',
  'dramat_said_big',
  'said_big_deal',
  'big_deal_said',
  'deal_said_niec',
  'said_niec_give',
  'niec_give_troubl',
  'give_troubl_told',
  'troubl_told_care',
  'told_care_said',
  'care_said_im',
  'said_im_bad',
  'im_bad_aunt',
  'bad_aunt_told',
  'aunt_told_grow',
  'told_grow_told',
  'grow_told_get',
  'told_get_room',
  'get_room_ill',
  'room_ill_cancel',
  'ill_cancel_ticket',
  'cancel_ticket_would',
  'ticket_would_result',
  'would_result_everyon',
  'result_everyon_els',
  'everyon_els_pay',
  'els_pay_find',
  'pay_find_someon',
  'find_someon_els',
  'someon_els_go',
  'els_go_place',
  'go_place_got',
  'place_got_group',
  'got_group_discount',
  'group_discount_resort',
  'discount_resort_brother',
  'resort_brother_said',
  'brother_said_im',
  'said_im_whini',
  'im_whini_asshol',
  'whini_asshol_accus',
  'asshol_accus_narcissist'],
 ['im',
  'still',
  'pretti',
  'mad',
  'whole',
  'ordeal',
  'hubsand',
  'cowork',
  'wife',
  'mad',
  'us',
  'think',
  'humili',
  'think',
  'lack',
  'common',
  'sens',
  '&',
  'xb',
  'husband',
  'recent',
  'host',
  'cookout',
  'hous',
  'cowork',
  'get',
  'along',
  'pretti',
  'well',
  'enjoy',
  'host',
  'cowork',
  'wife',
  'julia',
  'goe',
  'hallway',
  'bathroom',
  'come',
  'back',
  'end',
  'go',
  'notic',
  'toilet',
  'clog',
  'start',
  'overflow',
  'someth',
  'larg',
  'white',
  'stuck',
  'use',
  'plunger',
  'unclog',
  'lo',
  'behold',
  'larg',
  'bloodi',
  'maxi',
  'pad',
  'julia',
  'last',
  'person',
  'use',
  'bathroom',
  'come',
  'ask',
  'tri',
  'flush',
  'pad',
  'toilet',
  'got',
  'embarrass',
  'said',
  'ye',
  'told',
  'need',
  'go',
  'clean',
  'mess',
  'made',
  'water',
  'floor',
  'particl',
  'pad',
  'blood',
  'everywher',
  'ask',
  'one',
  'ever',
  'taught',
  'flush',
  'pad',
  'septic',
  'tank',
  'cost',
  'thousand',
  'repair',
  'flush',
  'pad',
  'especi',
  'extra',
  'larg',
  'one',
  'like',
  'tri',
  'flush',
  'panti',
  'liner',
  'someth',
  '&',
  'xb',
  'julia',
  'cri',
  'husband',
  'yell',
  'especi',
  'someon',
  'els',
  'hous',
  'husband',
  'two',
  'femal',
  'cowork',
  'came',
  'defens',
  'pretti',
  'much',
  'said',
  'stupid',
  'julia',
  'half',
  'ass',
  'clean',
  'mess',
  'husband',
  'quickli',
  'left',
  'cowork',
  'think',
  'julia',
  'done',
  'husband',
  'cowork',
  'whole',
  'feud',
  'aita',
  'call',
  'husband',
  'cowork',
  'wife',
  'tri',
  'flush',
  'maxi',
  'pad',
  'toilet',
  '&',
  'xb',
  'edit',
  'septic',
  'tank',
  'septic',
  'tank',
  'repair',
  'easili',
  'go',
  'around',
  '$',
  'julia',
  'septic',
  'tank',
  'julia',
  'know',
  'better',
  'ask',
  'would',
  'flush',
  'pad',
  'home',
  'said',
  'julia',
  'said',
  'trashcan',
  'want',
  'walk',
  'pad',
  'differ',
  'trashcan',
  'trashcan',
  'bathroom',
  'outsid',
  'wash',
  'differ',
  'cowork',
  'got',
  'vomit',
  'think',
  'save',
  'embarrass',
  'would',
  'worth',
  'pay',
  'thousand',
  'dollar',
  'repair',
  'also',
  'saw',
  'toilet',
  'clog',
  'decid',
  'walk',
  'leav',
  'someon',
  'els',
  'im_still',
  'still_pretti',
  'pretti_mad',
  'mad_whole',
  'whole_ordeal',
  'ordeal_hubsand',
  'hubsand_cowork',
  'cowork_wife',
  'wife_mad',
  'mad_us',
  'us_think',
  'think_humili',
  'humili_think',
  'think_lack',
  'lack_common',
  'common_sens',
  'sens_&',
  '&_xb',
  'xb_husband',
  'husband_recent',
  'recent_host',
  'host_cookout',
  'cookout_hous',
  'hous_cowork',
  'cowork_get',
  'get_along',
  'along_pretti',
  'pretti_well',
  'well_enjoy',
  'enjoy_host',
  'host_cowork',
  'cowork_wife',
  'wife_julia',
  'julia_goe',
  'goe_hallway',
  'hallway_bathroom',
  'bathroom_come',
  'come_back',
  'back_end',
  'end_go',
  'go_notic',
  'notic_toilet',
  'toilet_clog',
  'clog_start',
  'start_overflow',
  'overflow_someth',
  'someth_larg',
  'larg_white',
  'white_stuck',
  'stuck_use',
  'use_plunger',
  'plunger_unclog',
  'unclog_lo',
  'lo_behold',
  'behold_larg',
  'larg_bloodi',
  'bloodi_maxi',
  'maxi_pad',
  'pad_julia',
  'julia_last',
  'last_person',
  'person_use',
  'use_bathroom',
  'bathroom_come',
  'come_ask',
  'ask_tri',
  'tri_flush',
  'flush_pad',
  'pad_toilet',
  'toilet_got',
  'got_embarrass',
  'embarrass_said',
  'said_ye',
  'ye_told',
  'told_need',
  'need_go',
  'go_clean',
  'clean_mess',
  'mess_made',
  'made_water',
  'water_floor',
  'floor_particl',
  'particl_pad',
  'pad_blood',
  'blood_everywher',
  'everywher_ask',
  'ask_one',
  'one_ever',
  'ever_taught',
  'taught_flush',
  'flush_pad',
  'pad_septic',
  'septic_tank',
  'tank_cost',
  'cost_thousand',
  'thousand_repair',
  'repair_flush',
  'flush_pad',
  'pad_especi',
  'especi_extra',
  'extra_larg',
  'larg_one',
  'one_like',
  'like_tri',
  'tri_flush',
  'flush_panti',
  'panti_liner',
  'liner_someth',
  'someth_&',
  '&_xb',
  'xb_julia',
  'julia_cri',
  'cri_husband',
  'husband_yell',
  'yell_especi',
  'especi_someon',
  'someon_els',
  'els_hous',
  'hous_husband',
  'husband_two',
  'two_femal',
  'femal_cowork',
  'cowork_came',
  'came_defens',
  'defens_pretti',
  'pretti_much',
  'much_said',
  'said_stupid',
  'stupid_julia',
  'julia_half',
  'half_ass',
  'ass_clean',
  'clean_mess',
  'mess_husband',
  'husband_quickli',
  'quickli_left',
  'left_cowork',
  'cowork_think',
  'think_julia',
  'julia_done',
  'done_husband',
  'husband_cowork',
  'cowork_whole',
  'whole_feud',
  'feud_aita',
  'aita_call',
  'call_husband',
  'husband_cowork',
  'cowork_wife',
  'wife_tri',
  'tri_flush',
  'flush_maxi',
  'maxi_pad',
  'pad_toilet',
  'toilet_&',
  '&_xb',
  'xb_edit',
  'edit_septic',
  'septic_tank',
  'tank_septic',
  'septic_tank',
  'tank_repair',
  'repair_easili',
  'easili_go',
  'go_around',
  'around_$',
  '$_julia',
  'julia_septic',
  'septic_tank',
  'tank_julia',
  'julia_know',
  'know_better',
  'better_ask',
  'ask_would',
  'would_flush',
  'flush_pad',
  'pad_home',
  'home_said',
  'said_julia',
  'julia_said',
  'said_trashcan',
  'trashcan_want',
  'want_walk',
  'walk_pad',
  'pad_differ',
  'differ_trashcan',
  'trashcan_trashcan',
  'trashcan_bathroom',
  'bathroom_outsid',
  'outsid_wash',
  'wash_differ',
  'differ_cowork',
  'cowork_got',
  'got_vomit',
  'vomit_think',
  'think_save',
  'save_embarrass',
  'embarrass_would',
  'would_worth',
  'worth_pay',
  'pay_thousand',
  'thousand_dollar',
  'dollar_repair',
  'repair_also',
  'also_saw',
  'saw_toilet',
  'toilet_clog',
  'clog_decid',
  'decid_walk',
  'walk_leav',
  'leav_someon',
  'someon_els',
  'im_still_pretti',
  'still_pretti_mad',
  'pretti_mad_whole',
  'mad_whole_ordeal',
  'whole_ordeal_hubsand',
  'ordeal_hubsand_cowork',
  'hubsand_cowork_wife',
  'cowork_wife_mad',
  'wife_mad_us',
  'mad_us_think',
  'us_think_humili',
  'think_humili_think',
  'humili_think_lack',
  'think_lack_common',
  'lack_common_sens',
  'common_sens_&',
  'sens_&_xb',
  '&_xb_husband',
  'xb_husband_recent',
  'husband_recent_host',
  'recent_host_cookout',
  'host_cookout_hous',
  'cookout_hous_cowork',
  'hous_cowork_get',
  'cowork_get_along',
  'get_along_pretti',
  'along_pretti_well',
  'pretti_well_enjoy',
  'well_enjoy_host',
  'enjoy_host_cowork',
  'host_cowork_wife',
  'cowork_wife_julia',
  'wife_julia_goe',
  'julia_goe_hallway',
  'goe_hallway_bathroom',
  'hallway_bathroom_come',
  'bathroom_come_back',
  'come_back_end',
  'back_end_go',
  'end_go_notic',
  'go_notic_toilet',
  'notic_toilet_clog',
  'toilet_clog_start',
  'clog_start_overflow',
  'start_overflow_someth',
  'overflow_someth_larg',
  'someth_larg_white',
  'larg_white_stuck',
  'white_stuck_use',
  'stuck_use_plunger',
  'use_plunger_unclog',
  'plunger_unclog_lo',
  'unclog_lo_behold',
  'lo_behold_larg',
  'behold_larg_bloodi',
  'larg_bloodi_maxi',
  'bloodi_maxi_pad',
  'maxi_pad_julia',
  'pad_julia_last',
  'julia_last_person',
  'last_person_use',
  'person_use_bathroom',
  'use_bathroom_come',
  'bathroom_come_ask',
  'come_ask_tri',
  'ask_tri_flush',
  'tri_flush_pad',
  'flush_pad_toilet',
  'pad_toilet_got',
  'toilet_got_embarrass',
  'got_embarrass_said',
  'embarrass_said_ye',
  'said_ye_told',
  'ye_told_need',
  'told_need_go',
  'need_go_clean',
  'go_clean_mess',
  'clean_mess_made',
  'mess_made_water',
  'made_water_floor',
  'water_floor_particl',
  'floor_particl_pad',
  'particl_pad_blood',
  'pad_blood_everywher',
  'blood_everywher_ask',
  'everywher_ask_one',
  'ask_one_ever',
  'one_ever_taught',
  'ever_taught_flush',
  'taught_flush_pad',
  'flush_pad_septic',
  'pad_septic_tank',
  'septic_tank_cost',
  'tank_cost_thousand',
  'cost_thousand_repair',
  'thousand_repair_flush',
  'repair_flush_pad',
  'flush_pad_especi',
  'pad_especi_extra',
  'especi_extra_larg',
  'extra_larg_one',
  'larg_one_like',
  'one_like_tri',
  'like_tri_flush',
  'tri_flush_panti',
  'flush_panti_liner',
  'panti_liner_someth',
  'liner_someth_&',
  'someth_&_xb',
  '&_xb_julia',
  'xb_julia_cri',
  'julia_cri_husband',
  'cri_husband_yell',
  'husband_yell_especi',
  'yell_especi_someon',
  'especi_someon_els',
  'someon_els_hous',
  'els_hous_husband',
  'hous_husband_two',
  'husband_two_femal',
  'two_femal_cowork',
  'femal_cowork_came',
  'cowork_came_defens',
  'came_defens_pretti',
  'defens_pretti_much',
  'pretti_much_said',
  'much_said_stupid',
  'said_stupid_julia',
  'stupid_julia_half',
  'julia_half_ass',
  'half_ass_clean',
  'ass_clean_mess',
  'clean_mess_husband',
  'mess_husband_quickli',
  'husband_quickli_left',
  'quickli_left_cowork',
  'left_cowork_think',
  'cowork_think_julia',
  'think_julia_done',
  'julia_done_husband',
  'done_husband_cowork',
  'husband_cowork_whole',
  'cowork_whole_feud',
  'whole_feud_aita',
  'feud_aita_call',
  'aita_call_husband',
  'call_husband_cowork',
  'husband_cowork_wife',
  'cowork_wife_tri',
  'wife_tri_flush',
  'tri_flush_maxi',
  'flush_maxi_pad',
  'maxi_pad_toilet',
  'pad_toilet_&',
  'toilet_&_xb',
  '&_xb_edit',
  'xb_edit_septic',
  'edit_septic_tank',
  'septic_tank_septic',
  'tank_septic_tank',
  'septic_tank_repair',
  'tank_repair_easili',
  'repair_easili_go',
  'easili_go_around',
  'go_around_$',
  'around_$_julia',
  '$_julia_septic',
  'julia_septic_tank',
  'septic_tank_julia',
  'tank_julia_know',
  'julia_know_better',
  'know_better_ask',
  'better_ask_would',
  'ask_would_flush',
  'would_flush_pad',
  'flush_pad_home',
  'pad_home_said',
  'home_said_julia',
  'said_julia_said',
  'julia_said_trashcan',
  'said_trashcan_want',
  'trashcan_want_walk',
  'want_walk_pad',
  'walk_pad_differ',
  'pad_differ_trashcan',
  'differ_trashcan_trashcan',
  'trashcan_trashcan_bathroom',
  'trashcan_bathroom_outsid',
  'bathroom_outsid_wash',
  'outsid_wash_differ',
  'wash_differ_cowork',
  'differ_cowork_got',
  'cowork_got_vomit',
  'got_vomit_think',
  'vomit_think_save',
  'think_save_embarrass',
  'save_embarrass_would',
  'embarrass_would_worth',
  'would_worth_pay',
  'worth_pay_thousand',
  'pay_thousand_dollar',
  'thousand_dollar_repair',
  'dollar_repair_also',
  'repair_also_saw',
  'also_saw_toilet',
  'saw_toilet_clog',
  'toilet_clog_decid',
  'clog_decid_walk',
  'decid_walk_leav',
  'walk_leav_someon',
  'leav_someon_els'],
 ['four',
  'kid',
  'eldest',
  'izzi',
  'doll',
  'son',
  'luke',
  'autism',
  'adhd',
  'lovabl',
  'bit',
  'hand',
  'time',
  'therefor',
  'izzi',
  'wit',
  'fun',
  'not-so-fun',
  'part',
  'neurodivers',
  'develop',
  'saintli',
  'patienc',
  'knack',
  'help',
  'special',
  'need',
  'kid',
  'sens',
  'matur',
  'beyond',
  'year',
  'particulari',
  'notabl',
  'kind',
  'maisi',
  'girl',
  'class',
  'autism',
  'sever',
  'anxieti',
  'worsen',
  'result',
  'tumult',
  'last',
  'year',
  'izzi',
  'help',
  'maisi',
  'bought',
  'attent',
  'super',
  'proud',
  'mama',
  'next',
  'weekend',
  'school',
  'take',
  'daughter',
  'class',
  'trip',
  'thursday',
  'izzi',
  'teacher',
  'ask',
  'room',
  'maisi',
  'say',
  'would',
  'make',
  'maisi',
  'happi',
  'maisi',
  'intens',
  'separ',
  'anxieti',
  'never',
  'away',
  'home',
  'frame',
  'choic',
  'alway',
  'obedi',
  'want',
  'good',
  'teacher',
  'izzi',
  'agre',
  'came',
  'home',
  'cri',
  'say',
  'want',
  'maisi',
  'want',
  'break',
  'stress',
  'happi',
  'made',
  'heart',
  'break',
  'know',
  'anyon',
  'daughter',
  'deserv',
  'chanc',
  'kid',
  'lockdown',
  'usual',
  'outlet',
  'sport',
  'club',
  'spend',
  'lot',
  'time',
  'cranki',
  'luke',
  'whose',
  'routin',
  'destroy',
  'toddler',
  'excit',
  'big',
  'si',
  'home',
  'husband',
  'alway',
  'tri',
  'activ',
  'admittedli',
  'got',
  'harder',
  'furlough',
  'end',
  'unexpectedli',
  'got',
  'pregnant',
  'youngest',
  'luke',
  'also',
  'found',
  'babi',
  'difficult',
  'sensory-wis',
  'whichev',
  'parent',
  'tend',
  'babi',
  'often',
  'elsewher',
  'luke',
  'mean',
  'much',
  'attent',
  'izzi',
  'would',
  'like',
  'feel',
  'bad',
  'daughter',
  'rough',
  'ride',
  'frankli',
  'want',
  'give',
  'chanc',
  'littl',
  'girl',
  'instead',
  'adult',
  'contact',
  'teacher',
  'awar',
  'situat',
  'luke',
  'agre',
  'let',
  'izzi',
  'break',
  'would',
  'good',
  'thing',
  'today',
  'school',
  'spoke',
  'maisi',
  'mum',
  'inform',
  'maisi',
  'room',
  'trip',
  'know',
  'girl',
  'room',
  'love',
  'clearli',
  'unhappi',
  'ask',
  'ask',
  'izzi',
  'said',
  'choic',
  'respect',
  'sent',
  'trade',
  'bring',
  'izzi',
  'intoler',
  'maisi',
  'feel',
  'izzi',
  'abandon',
  'would',
  'feel',
  'son',
  'consid',
  'pull',
  'maisi',
  'trip',
  'feel',
  'would',
  'cope',
  'separ',
  'anxieti',
  'without',
  'izzi',
  'husband',
  'think',
  'school',
  'maisi',
  'mum',
  'job',
  'izzi',
  'accommod',
  'comment',
  'ring',
  'head',
  'izzi',
  'mum',
  'also',
  'luke',
  'much',
  'worri',
  'miss',
  'worri',
  'isol',
  'know',
  'exactli',
  'maisi',
  'mum',
  'feel',
  'much',
  'suck',
  'yet',
  'one',
  'thing',
  'allevi',
  'pain',
  'aita',
  'four_kid',
  'kid_eldest',
  'eldest_izzi',
  'izzi_doll',
  'doll_son',
  'son_luke',
  'luke_autism',
  'autism_adhd',
  'adhd_lovabl',
  'lovabl_bit',
  'bit_hand',
  'hand_time',
  'time_therefor',
  'therefor_izzi',
  'izzi_wit',
  'wit_fun',
  'fun_not-so-fun',
  'not-so-fun_part',
  'part_neurodivers',
  'neurodivers_develop',
  'develop_saintli',
  'saintli_patienc',
  'patienc_knack',
  'knack_help',
  'help_special',
  'special_need',
  'need_kid',
  'kid_sens',
  'sens_matur',
  'matur_beyond',
  'beyond_year',
  'year_particulari',
  'particulari_notabl',
  'notabl_kind',
  'kind_maisi',
  'maisi_girl',
  'girl_class',
  'class_autism',
  'autism_sever',
  'sever_anxieti',
  'anxieti_worsen',
  'worsen_result',
  'result_tumult',
  'tumult_last',
  'last_year',
  'year_izzi',
  'izzi_help',
  'help_maisi',
  'maisi_bought',
  'bought_attent',
  'attent_super',
  'super_proud',
  'proud_mama',
  'mama_next',
  'next_weekend',
  'weekend_school',
  'school_take',
  'take_daughter',
  'daughter_class',
  'class_trip',
  'trip_thursday',
  'thursday_izzi',
  'izzi_teacher',
  'teacher_ask',
  'ask_room',
  'room_maisi',
  'maisi_say',
  'say_would',
  'would_make',
  'make_maisi',
  'maisi_happi',
  'happi_maisi',
  'maisi_intens',
  'intens_separ',
  'separ_anxieti',
  'anxieti_never',
  'never_away',
  'away_home',
  'home_frame',
  'frame_choic',
  'choic_alway',
  'alway_obedi',
  'obedi_want',
  'want_good',
  'good_teacher',
  'teacher_izzi',
  'izzi_agre',
  'agre_came',
  'came_home',
  'home_cri',
  'cri_say',
  'say_want',
  'want_maisi',
  'maisi_want',
  'want_break',
  'break_stress',
  'stress_happi',
  'happi_made',
  'made_heart',
  'heart_break',
  'break_know',
  'know_anyon',
  'anyon_daughter',
  'daughter_deserv',
  'deserv_chanc',
  'chanc_kid',
  'kid_lockdown',
  'lockdown_usual',
  'usual_outlet',
  'outlet_sport',
  'sport_club',
  'club_spend',
  'spend_lot',
  'lot_time',
  'time_cranki',
  'cranki_luke',
  'luke_whose',
  'whose_routin',
  'routin_destroy',
  'destroy_toddler',
  'toddler_excit',
  'excit_big',
  'big_si',
  'si_home',
  'home_husband',
  'husband_alway',
  'alway_tri',
  'tri_activ',
  'activ_admittedli',
  'admittedli_got',
  'got_harder',
  'harder_furlough',
  'furlough_end',
  'end_unexpectedli',
  'unexpectedli_got',
  'got_pregnant',
  'pregnant_youngest',
  'youngest_luke',
  'luke_also',
  'also_found',
  'found_babi',
  'babi_difficult',
  'difficult_sensory-wis',
  'sensory-wis_whichev',
  'whichev_parent',
  'parent_tend',
  'tend_babi',
  'babi_often',
  'often_elsewher',
  'elsewher_luke',
  'luke_mean',
  'mean_much',
  'much_attent',
  'attent_izzi',
  'izzi_would',
  'would_like',
  'like_feel',
  'feel_bad',
  'bad_daughter',
  'daughter_rough',
  'rough_ride',
  'ride_frankli',
  'frankli_want',
  'want_give',
  'give_chanc',
  'chanc_littl',
  'littl_girl',
  'girl_instead',
  'instead_adult',
  'adult_contact',
  'contact_teacher',
  'teacher_awar',
  'awar_situat',
  'situat_luke',
  'luke_agre',
  'agre_let',
  'let_izzi',
  'izzi_break',
  'break_would',
  'would_good',
  'good_thing',
  'thing_today',
  'today_school',
  'school_spoke',
  'spoke_maisi',
  'maisi_mum',
  'mum_inform',
  'inform_maisi',
  'maisi_room',
  'room_trip',
  'trip_know',
  'know_girl',
  'girl_room',
  'room_love',
  'love_clearli',
  'clearli_unhappi',
  'unhappi_ask',
  'ask_ask',
  'ask_izzi',
  'izzi_said',
  'said_choic',
  'choic_respect',
  'respect_sent',
  'sent_trade',
  'trade_bring',
  'bring_izzi',
  'izzi_intoler',
  'intoler_maisi',
  'maisi_feel',
  'feel_izzi',
  'izzi_abandon',
  'abandon_would',
  'would_feel',
  'feel_son',
  'son_consid',
  'consid_pull',
  'pull_maisi',
  'maisi_trip',
  'trip_feel',
  'feel_would',
  'would_cope',
  'cope_separ',
  'separ_anxieti',
  'anxieti_without',
  'without_izzi',
  'izzi_husband',
  'husband_think',
  'think_school',
  'school_maisi',
  'maisi_mum',
  'mum_job',
  'job_izzi',
  'izzi_accommod',
  'accommod_comment',
  'comment_ring',
  'ring_head',
  'head_izzi',
  'izzi_mum',
  'mum_also',
  'also_luke',
  'luke_much',
  'much_worri',
  'worri_miss',
  'miss_worri',
  'worri_isol',
  'isol_know',
  'know_exactli',
  'exactli_maisi',
  'maisi_mum',
  'mum_feel',
  'feel_much',
  'much_suck',
  'suck_yet',
  'yet_one',
  'one_thing',
  'thing_allevi',
  'allevi_pain',
  'pain_aita',
  'four_kid_eldest',
  'kid_eldest_izzi',
  'eldest_izzi_doll',
  'izzi_doll_son',
  'doll_son_luke',
  'son_luke_autism',
  'luke_autism_adhd',
  'autism_adhd_lovabl',
  'adhd_lovabl_bit',
  'lovabl_bit_hand',
  'bit_hand_time',
  'hand_time_therefor',
  'time_therefor_izzi',
  'therefor_izzi_wit',
  'izzi_wit_fun',
  'wit_fun_not-so-fun',
  'fun_not-so-fun_part',
  'not-so-fun_part_neurodivers',
  'part_neurodivers_develop',
  'neurodivers_develop_saintli',
  'develop_saintli_patienc',
  'saintli_patienc_knack',
  'patienc_knack_help',
  'knack_help_special',
  'help_special_need',
  'special_need_kid',
  'need_kid_sens',
  'kid_sens_matur',
  'sens_matur_beyond',
  'matur_beyond_year',
  'beyond_year_particulari',
  'year_particulari_notabl',
  'particulari_notabl_kind',
  'notabl_kind_maisi',
  'kind_maisi_girl',
  'maisi_girl_class',
  'girl_class_autism',
  'class_autism_sever',
  'autism_sever_anxieti',
  'sever_anxieti_worsen',
  'anxieti_worsen_result',
  'worsen_result_tumult',
  'result_tumult_last',
  'tumult_last_year',
  'last_year_izzi',
  'year_izzi_help',
  'izzi_help_maisi',
  'help_maisi_bought',
  'maisi_bought_attent',
  'bought_attent_super',
  'attent_super_proud',
  'super_proud_mama',
  'proud_mama_next',
  'mama_next_weekend',
  'next_weekend_school',
  'weekend_school_take',
  'school_take_daughter',
  'take_daughter_class',
  'daughter_class_trip',
  'class_trip_thursday',
  'trip_thursday_izzi',
  'thursday_izzi_teacher',
  'izzi_teacher_ask',
  'teacher_ask_room',
  'ask_room_maisi',
  'room_maisi_say',
  'maisi_say_would',
  'say_would_make',
  'would_make_maisi',
  'make_maisi_happi',
  'maisi_happi_maisi',
  'happi_maisi_intens',
  'maisi_intens_separ',
  'intens_separ_anxieti',
  'separ_anxieti_never',
  'anxieti_never_away',
  'never_away_home',
  'away_home_frame',
  'home_frame_choic',
  'frame_choic_alway',
  'choic_alway_obedi',
  'alway_obedi_want',
  'obedi_want_good',
  'want_good_teacher',
  'good_teacher_izzi',
  'teacher_izzi_agre',
  'izzi_agre_came',
  'agre_came_home',
  'came_home_cri',
  'home_cri_say',
  'cri_say_want',
  'say_want_maisi',
  'want_maisi_want',
  'maisi_want_break',
  'want_break_stress',
  'break_stress_happi',
  'stress_happi_made',
  'happi_made_heart',
  'made_heart_break',
  'heart_break_know',
  'break_know_anyon',
  'know_anyon_daughter',
  'anyon_daughter_deserv',
  'daughter_deserv_chanc',
  'deserv_chanc_kid',
  'chanc_kid_lockdown',
  'kid_lockdown_usual',
  'lockdown_usual_outlet',
  'usual_outlet_sport',
  'outlet_sport_club',
  'sport_club_spend',
  'club_spend_lot',
  'spend_lot_time',
  'lot_time_cranki',
  'time_cranki_luke',
  'cranki_luke_whose',
  'luke_whose_routin',
  'whose_routin_destroy',
  'routin_destroy_toddler',
  'destroy_toddler_excit',
  'toddler_excit_big',
  'excit_big_si',
  'big_si_home',
  'si_home_husband',
  'home_husband_alway',
  'husband_alway_tri',
  'alway_tri_activ',
  'tri_activ_admittedli',
  'activ_admittedli_got',
  'admittedli_got_harder',
  'got_harder_furlough',
  'harder_furlough_end',
  'furlough_end_unexpectedli',
  'end_unexpectedli_got',
  'unexpectedli_got_pregnant',
  'got_pregnant_youngest',
  'pregnant_youngest_luke',
  'youngest_luke_also',
  'luke_also_found',
  'also_found_babi',
  'found_babi_difficult',
  'babi_difficult_sensory-wis',
  'difficult_sensory-wis_whichev',
  'sensory-wis_whichev_parent',
  'whichev_parent_tend',
  'parent_tend_babi',
  'tend_babi_often',
  'babi_often_elsewher',
  'often_elsewher_luke',
  'elsewher_luke_mean',
  'luke_mean_much',
  'mean_much_attent',
  'much_attent_izzi',
  'attent_izzi_would',
  'izzi_would_like',
  'would_like_feel',
  'like_feel_bad',
  'feel_bad_daughter',
  'bad_daughter_rough',
  'daughter_rough_ride',
  'rough_ride_frankli',
  'ride_frankli_want',
  'frankli_want_give',
  'want_give_chanc',
  'give_chanc_littl',
  'chanc_littl_girl',
  'littl_girl_instead',
  'girl_instead_adult',
  'instead_adult_contact',
  'adult_contact_teacher',
  'contact_teacher_awar',
  'teacher_awar_situat',
  'awar_situat_luke',
  'situat_luke_agre',
  'luke_agre_let',
  'agre_let_izzi',
  'let_izzi_break',
  'izzi_break_would',
  'break_would_good',
  'would_good_thing',
  'good_thing_today',
  'thing_today_school',
  'today_school_spoke',
  'school_spoke_maisi',
  'spoke_maisi_mum',
  'maisi_mum_inform',
  'mum_inform_maisi',
  'inform_maisi_room',
  'maisi_room_trip',
  'room_trip_know',
  'trip_know_girl',
  'know_girl_room',
  'girl_room_love',
  'room_love_clearli',
  'love_clearli_unhappi',
  'clearli_unhappi_ask',
  'unhappi_ask_ask',
  'ask_ask_izzi',
  'ask_izzi_said',
  'izzi_said_choic',
  'said_choic_respect',
  'choic_respect_sent',
  'respect_sent_trade',
  'sent_trade_bring',
  'trade_bring_izzi',
  'bring_izzi_intoler',
  'izzi_intoler_maisi',
  'intoler_maisi_feel',
  'maisi_feel_izzi',
  'feel_izzi_abandon',
  'izzi_abandon_would',
  'abandon_would_feel',
  'would_feel_son',
  'feel_son_consid',
  'son_consid_pull',
  'consid_pull_maisi',
  'pull_maisi_trip',
  'maisi_trip_feel',
  'trip_feel_would',
  'feel_would_cope',
  'would_cope_separ',
  'cope_separ_anxieti',
  'separ_anxieti_without',
  'anxieti_without_izzi',
  'without_izzi_husband',
  'izzi_husband_think',
  'husband_think_school',
  'think_school_maisi',
  'school_maisi_mum',
  'maisi_mum_job',
  'mum_job_izzi',
  'job_izzi_accommod',
  'izzi_accommod_comment',
  'accommod_comment_ring',
  'comment_ring_head',
  'ring_head_izzi',
  'head_izzi_mum',
  'izzi_mum_also',
  'mum_also_luke',
  'also_luke_much',
  'luke_much_worri',
  'much_worri_miss',
  'worri_miss_worri',
  'miss_worri_isol',
  'worri_isol_know',
  'isol_know_exactli',
  'know_exactli_maisi',
  'exactli_maisi_mum',
  'maisi_mum_feel',
  'mum_feel_much',
  'feel_much_suck',
  'much_suck_yet',
  'suck_yet_one',
  'yet_one_thing',
  'one_thing_allevi',
  'thing_allevi_pain',
  'allevi_pain_aita'],
 ['serious',
  'cant',
  'believ',
  'thing',
  'parent',
  'realli',
  'upset',
  'sister',
  'grew',
  'togeth',
  'close',
  'realli',
  'drama',
  'big',
  'fight',
  'caus',
  'distanc',
  'rather',
  'opposit',
  'person',
  'interest',
  'describ',
  'attitud',
  'toward',
  'sister',
  'would',
  'apathet',
  'love',
  'like',
  'sister',
  'want',
  'healthi',
  'happi',
  'unfortun',
  'hang',
  'call',
  'chat',
  'etc',
  'recent',
  'receiv',
  'opportun',
  'interview',
  'job',
  'near',
  'hometown',
  'reach',
  'see',
  'could',
  'stay',
  'week',
  'mother',
  'ecstat',
  'sister',
  'might',
  'come',
  'home',
  'final',
  'move',
  'across',
  'counti',
  'right',
  'colleg',
  'back',
  'almost',
  'year',
  'except',
  'christma',
  'spend',
  'thanksgiv',
  'in-law',
  'one',
  'birthdaybusi',
  'tripvac',
  'happi',
  'open',
  'home',
  'think',
  'could',
  'mayb',
  'bond',
  'deepen',
  'relationship',
  'kind',
  'awkward',
  'noth',
  'horribl',
  'third',
  'night',
  'came',
  'home',
  'drink',
  'friend',
  'around',
  'pm',
  'went',
  'kitchen',
  'snack',
  'realiz',
  'almost',
  'food',
  'gone',
  'im',
  'even',
  'exagger',
  'swear',
  '%',
  'pantri',
  'gone',
  'ask',
  'sister',
  'told',
  'shock',
  'ate',
  'anyth',
  'preserv',
  'unnatur',
  'poison',
  'bodi',
  'took',
  'upon',
  'throw',
  'away',
  'everyth',
  'deem',
  'unhealthi',
  'guy',
  'im',
  'talk',
  'much',
  'food',
  'packag',
  'unpackag',
  'even',
  'thing',
  'like',
  'spice',
  'fresh',
  'toss',
  'like',
  'someon',
  'rob',
  'kitchen',
  'demand',
  'pay',
  'replac',
  'everyth',
  'dug',
  'heel',
  'said',
  'favor',
  'way',
  'ate',
  'disgust',
  'liter',
  'word',
  'know',
  'im',
  'bias',
  'diet',
  'even',
  'crazi',
  'pretti',
  'much',
  'standard',
  'food',
  'find',
  'groceri',
  'store',
  'upset',
  'made',
  'pack',
  'leav',
  'end',
  'take',
  'cab',
  'minut',
  'away',
  'stay',
  'parent',
  'mom',
  'absolut',
  'devast',
  'fight',
  'insist',
  'apolog',
  'order',
  'keep',
  'peac',
  'realli',
  'hope',
  'sister',
  'take',
  'job',
  'move',
  'back',
  'told',
  'mom',
  'want',
  'lose',
  'one',
  'daughter',
  'shed',
  'keep',
  'push',
  'apolog',
  'someth',
  'feel',
  'right',
  'upset',
  'dad',
  'say',
  'cri',
  'everi',
  'night',
  'though',
  'love',
  'mom',
  'much',
  'feel',
  'like',
  'huge',
  'ah',
  'stubborn',
  'situat',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'answer',
  'question',
  'askeddmd',
  'ye',
  'invit',
  'sister',
  'drink',
  'declin',
  'say',
  'like',
  'go',
  'dive',
  'bar',
  'want',
  'stay',
  'sober',
  'work',
  'trip',
  'respect',
  'decis',
  'alreadi',
  'plan',
  'go',
  'girlfriend',
  'birthday',
  'math',
  'threw',
  'away',
  'close',
  'thousand',
  'dollar',
  'worth',
  'food',
  'list',
  'item',
  'comment',
  'includ',
  'dri',
  'pasta',
  'ground',
  'beef',
  'pre-cut',
  'veggi',
  'contain',
  'juic',
  'soup',
  'rice',
  'chicken',
  'broth',
  'leftov',
  'even',
  'bread',
  'white',
  'even',
  'close',
  'start',
  'list',
  'serious_cant',
  'cant_believ',
  'believ_thing',
  'thing_parent',
  'parent_realli',
  'realli_upset',
  'upset_sister',
  'sister_grew',
  'grew_togeth',
  'togeth_close',
  'close_realli',
  'realli_drama',
  'drama_big',
  'big_fight',
  'fight_caus',
  'caus_distanc',
  'distanc_rather',
  'rather_opposit',
  'opposit_person',
  'person_interest',
  'interest_describ',
  'describ_attitud',
  'attitud_toward',
  'toward_sister',
  'sister_would',
  'would_apathet',
  'apathet_love',
  'love_like',
  'like_sister',
  'sister_want',
  'want_healthi',
  'healthi_happi',
  'happi_unfortun',
  'unfortun_hang',
  'hang_call',
  'call_chat',
  'chat_etc',
  'etc_recent',
  'recent_receiv',
  'receiv_opportun',
  'opportun_interview',
  'interview_job',
  'job_near',
  'near_hometown',
  'hometown_reach',
  'reach_see',
  'see_could',
  'could_stay',
  'stay_week',
  'week_mother',
  'mother_ecstat',
  'ecstat_sister',
  'sister_might',
  'might_come',
  'come_home',
  'home_final',
  'final_move',
  'move_across',
  'across_counti',
  'counti_right',
  'right_colleg',
  'colleg_back',
  'back_almost',
  'almost_year',
  'year_except',
  'except_christma',
  'christma_spend',
  'spend_thanksgiv',
  'thanksgiv_in-law',
  'in-law_one',
  'one_birthdaybusi',
  'birthdaybusi_tripvac',
  'tripvac_happi',
  'happi_open',
  'open_home',
  'home_think',
  'think_could',
  'could_mayb',
  'mayb_bond',
  'bond_deepen',
  'deepen_relationship',
  'relationship_kind',
  'kind_awkward',
  'awkward_noth',
  'noth_horribl',
  'horribl_third',
  'third_night',
  'night_came',
  'came_home',
  'home_drink',
  'drink_friend',
  'friend_around',
  'around_pm',
  'pm_went',
  'went_kitchen',
  'kitchen_snack',
  'snack_realiz',
  'realiz_almost',
  'almost_food',
  'food_gone',
  'gone_im',
  'im_even',
  'even_exagger',
  'exagger_swear',
  'swear_%',
  '%_pantri',
  'pantri_gone',
  'gone_ask',
  'ask_sister',
  'sister_told',
  'told_shock',
  'shock_ate',
  'ate_anyth',
  'anyth_preserv',
  'preserv_unnatur',
  'unnatur_poison',
  'poison_bodi',
  'bodi_took',
  'took_upon',
  'upon_throw',
  'throw_away',
  'away_everyth',
  'everyth_deem',
  'deem_unhealthi',
  'unhealthi_guy',
  'guy_im',
  'im_talk',
  'talk_much',
  'much_food',
  'food_packag',
  'packag_unpackag',
  'unpackag_even',
  'even_thing',
  'thing_like',
  'like_spice',
  'spice_fresh',
  'fresh_toss',
  'toss_like',
  'like_someon',
  'someon_rob',
  'rob_kitchen',
  'kitchen_demand',
  'demand_pay',
  'pay_replac',
  'replac_everyth',
  'everyth_dug',
  'dug_heel',
  'heel_said',
  'said_favor',
  'favor_way',
  'way_ate',
  'ate_disgust',
  'disgust_liter',
  'liter_word',
  'word_know',
  'know_im',
  'im_bias',
  'bias_diet',
  'diet_even',
  'even_crazi',
  'crazi_pretti',
  'pretti_much',
  'much_standard',
  'standard_food',
  'food_find',
  'find_groceri',
  'groceri_store',
  'store_upset',
  'upset_made',
  'made_pack',
  'pack_leav',
  'leav_end',
  'end_take',
  'take_cab',
  'cab_minut',
  'minut_away',
  'away_stay',
  'stay_parent',
  'parent_mom',
  'mom_absolut',
  'absolut_devast',
  'devast_fight',
  'fight_insist',
  'insist_apolog',
  'apolog_order',
  'order_keep',
  'keep_peac',
  'peac_realli',
  'realli_hope',
  'hope_sister',
  'sister_take',
  'take_job',
  'job_move',
  'move_back',
  'back_told',
  'told_mom',
  'mom_want',
  'want_lose',
  'lose_one',
  'one_daughter',
  'daughter_shed',
  'shed_keep',
  'keep_push',
  'push_apolog',
  'apolog_someth',
  'someth_feel',
  'feel_right',
  'right_upset',
  'upset_dad',
  'dad_say',
  'say_cri',
  'cri_everi',
  'everi_night',
  'night_though',
  'though_love',
  'love_mom',
  'mom_much',
  'much_feel',
  'feel_like',
  'like_huge',
  'huge_ah',
  'ah_stubborn',
  'stubborn_situat',
  'situat_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_answer',
  'answer_question',
  'question_askeddmd',
  'askeddmd_ye',
  'ye_invit',
  'invit_sister',
  'sister_drink',
  'drink_declin',
  'declin_say',
  'say_like',
  'like_go',
  'go_dive',
  'dive_bar',
  'bar_want',
  'want_stay',
  'stay_sober',
  'sober_work',
  'work_trip',
  'trip_respect',
  'respect_decis',
  'decis_alreadi',
  'alreadi_plan',
  'plan_go',
  'go_girlfriend',
  'girlfriend_birthday',
  'birthday_math',
  'math_threw',
  'threw_away',
  'away_close',
  'close_thousand',
  'thousand_dollar',
  'dollar_worth',
  'worth_food',
  'food_list',
  'list_item',
  'item_comment',
  'comment_includ',
  'includ_dri',
  'dri_pasta',
  'pasta_ground',
  'ground_beef',
  'beef_pre-cut',
  'pre-cut_veggi',
  'veggi_contain',
  'contain_juic',
  'juic_soup',
  'soup_rice',
  'rice_chicken',
  'chicken_broth',
  'broth_leftov',
  'leftov_even',
  'even_bread',
  'bread_white',
  'white_even',
  'even_close',
  'close_start',
  'start_list',
  'serious_cant_believ',
  'cant_believ_thing',
  'believ_thing_parent',
  'thing_parent_realli',
  'parent_realli_upset',
  'realli_upset_sister',
  'upset_sister_grew',
  'sister_grew_togeth',
  'grew_togeth_close',
  'togeth_close_realli',
  'close_realli_drama',
  'realli_drama_big',
  'drama_big_fight',
  'big_fight_caus',
  'fight_caus_distanc',
  'caus_distanc_rather',
  'distanc_rather_opposit',
  'rather_opposit_person',
  'opposit_person_interest',
  'person_interest_describ',
  'interest_describ_attitud',
  'describ_attitud_toward',
  'attitud_toward_sister',
  'toward_sister_would',
  'sister_would_apathet',
  'would_apathet_love',
  'apathet_love_like',
  'love_like_sister',
  'like_sister_want',
  'sister_want_healthi',
  'want_healthi_happi',
  'healthi_happi_unfortun',
  'happi_unfortun_hang',
  'unfortun_hang_call',
  'hang_call_chat',
  'call_chat_etc',
  'chat_etc_recent',
  'etc_recent_receiv',
  'recent_receiv_opportun',
  'receiv_opportun_interview',
  'opportun_interview_job',
  'interview_job_near',
  'job_near_hometown',
  'near_hometown_reach',
  'hometown_reach_see',
  'reach_see_could',
  'see_could_stay',
  'could_stay_week',
  'stay_week_mother',
  'week_mother_ecstat',
  'mother_ecstat_sister',
  'ecstat_sister_might',
  'sister_might_come',
  'might_come_home',
  'come_home_final',
  'home_final_move',
  'final_move_across',
  'move_across_counti',
  'across_counti_right',
  'counti_right_colleg',
  'right_colleg_back',
  'colleg_back_almost',
  'back_almost_year',
  'almost_year_except',
  'year_except_christma',
  'except_christma_spend',
  'christma_spend_thanksgiv',
  'spend_thanksgiv_in-law',
  'thanksgiv_in-law_one',
  'in-law_one_birthdaybusi',
  'one_birthdaybusi_tripvac',
  'birthdaybusi_tripvac_happi',
  'tripvac_happi_open',
  'happi_open_home',
  'open_home_think',
  'home_think_could',
  'think_could_mayb',
  'could_mayb_bond',
  'mayb_bond_deepen',
  'bond_deepen_relationship',
  'deepen_relationship_kind',
  'relationship_kind_awkward',
  'kind_awkward_noth',
  'awkward_noth_horribl',
  'noth_horribl_third',
  'horribl_third_night',
  'third_night_came',
  'night_came_home',
  'came_home_drink',
  'home_drink_friend',
  'drink_friend_around',
  'friend_around_pm',
  'around_pm_went',
  'pm_went_kitchen',
  'went_kitchen_snack',
  'kitchen_snack_realiz',
  'snack_realiz_almost',
  'realiz_almost_food',
  'almost_food_gone',
  'food_gone_im',
  'gone_im_even',
  'im_even_exagger',
  'even_exagger_swear',
  'exagger_swear_%',
  'swear_%_pantri',
  '%_pantri_gone',
  'pantri_gone_ask',
  'gone_ask_sister',
  'ask_sister_told',
  'sister_told_shock',
  'told_shock_ate',
  'shock_ate_anyth',
  'ate_anyth_preserv',
  'anyth_preserv_unnatur',
  'preserv_unnatur_poison',
  'unnatur_poison_bodi',
  'poison_bodi_took',
  'bodi_took_upon',
  'took_upon_throw',
  'upon_throw_away',
  'throw_away_everyth',
  'away_everyth_deem',
  'everyth_deem_unhealthi',
  'deem_unhealthi_guy',
  'unhealthi_guy_im',
  'guy_im_talk',
  'im_talk_much',
  'talk_much_food',
  'much_food_packag',
  'food_packag_unpackag',
  'packag_unpackag_even',
  'unpackag_even_thing',
  'even_thing_like',
  'thing_like_spice',
  'like_spice_fresh',
  'spice_fresh_toss',
  'fresh_toss_like',
  'toss_like_someon',
  'like_someon_rob',
  'someon_rob_kitchen',
  'rob_kitchen_demand',
  'kitchen_demand_pay',
  'demand_pay_replac',
  'pay_replac_everyth',
  'replac_everyth_dug',
  'everyth_dug_heel',
  'dug_heel_said',
  'heel_said_favor',
  'said_favor_way',
  'favor_way_ate',
  'way_ate_disgust',
  'ate_disgust_liter',
  'disgust_liter_word',
  'liter_word_know',
  'word_know_im',
  'know_im_bias',
  'im_bias_diet',
  'bias_diet_even',
  'diet_even_crazi',
  'even_crazi_pretti',
  'crazi_pretti_much',
  'pretti_much_standard',
  'much_standard_food',
  'standard_food_find',
  'food_find_groceri',
  'find_groceri_store',
  'groceri_store_upset',
  'store_upset_made',
  'upset_made_pack',
  'made_pack_leav',
  'pack_leav_end',
  'leav_end_take',
  'end_take_cab',
  'take_cab_minut',
  'cab_minut_away',
  'minut_away_stay',
  'away_stay_parent',
  'stay_parent_mom',
  'parent_mom_absolut',
  'mom_absolut_devast',
  'absolut_devast_fight',
  'devast_fight_insist',
  'fight_insist_apolog',
  'insist_apolog_order',
  'apolog_order_keep',
  'order_keep_peac',
  'keep_peac_realli',
  'peac_realli_hope',
  'realli_hope_sister',
  'hope_sister_take',
  'sister_take_job',
  'take_job_move',
  'job_move_back',
  'move_back_told',
  'back_told_mom',
  'told_mom_want',
  'mom_want_lose',
  'want_lose_one',
  'lose_one_daughter',
  'one_daughter_shed',
  'daughter_shed_keep',
  'shed_keep_push',
  'keep_push_apolog',
  'push_apolog_someth',
  'apolog_someth_feel',
  'someth_feel_right',
  'feel_right_upset',
  'right_upset_dad',
  'upset_dad_say',
  'dad_say_cri',
  'say_cri_everi',
  'cri_everi_night',
  'everi_night_though',
  'night_though_love',
  'though_love_mom',
  'love_mom_much',
  'mom_much_feel',
  'much_feel_like',
  'feel_like_huge',
  'like_huge_ah',
  'huge_ah_stubborn',
  'ah_stubborn_situat',
  'stubborn_situat_*',
  'situat_*_*',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_answer',
  '*_answer_question',
  'answer_question_askeddmd',
  'question_askeddmd_ye',
  'askeddmd_ye_invit',
  'ye_invit_sister',
  'invit_sister_drink',
  'sister_drink_declin',
  'drink_declin_say',
  'declin_say_like',
  'say_like_go',
  'like_go_dive',
  'go_dive_bar',
  'dive_bar_want',
  'bar_want_stay',
  'want_stay_sober',
  'stay_sober_work',
  'sober_work_trip',
  'work_trip_respect',
  'trip_respect_decis',
  'respect_decis_alreadi',
  'decis_alreadi_plan',
  'alreadi_plan_go',
  'plan_go_girlfriend',
  'go_girlfriend_birthday',
  'girlfriend_birthday_math',
  'birthday_math_threw',
  'math_threw_away',
  'threw_away_close',
  'away_close_thousand',
  'close_thousand_dollar',
  'thousand_dollar_worth',
  'dollar_worth_food',
  'worth_food_list',
  'food_list_item',
  'list_item_comment',
  'item_comment_includ',
  'comment_includ_dri',
  'includ_dri_pasta',
  'dri_pasta_ground',
  'pasta_ground_beef',
  'ground_beef_pre-cut',
  'beef_pre-cut_veggi',
  'pre-cut_veggi_contain',
  'veggi_contain_juic',
  'contain_juic_soup',
  'juic_soup_rice',
  'soup_rice_chicken',
  'rice_chicken_broth',
  'chicken_broth_leftov',
  'broth_leftov_even',
  'leftov_even_bread',
  'even_bread_white',
  'bread_white_even',
  'white_even_close',
  'even_close_start',
  'close_start_list'],
 ['two',
  'year',
  'ago',
  'unexpectedli',
  'got',
  'pregnant',
  'beauti',
  'month',
  'old',
  'daughter',
  'ciara',
  'time',
  'friend',
  'circl',
  'got',
  'consider',
  'smaller',
  'best',
  'friend',
  'remain',
  'mia',
  'mia',
  'kid',
  'want',
  'kid',
  'brilliant',
  'ciara',
  'im',
  'sahm',
  'obvious',
  'much',
  'time',
  'hang',
  'previous',
  'mia',
  'live',
  'street',
  'manchest',
  'england',
  'walk',
  'distanc',
  'hous',
  'ive',
  'told',
  'mia',
  'numer',
  'time',
  'pop',
  'whenev',
  'want',
  'work',
  'home',
  'rare',
  'begin',
  'happen',
  'less',
  'less',
  'instead',
  'keep',
  'suggest',
  'go',
  'coffe',
  'pizza',
  'even',
  'drink',
  'time',
  'alway',
  'tell',
  'come',
  'well',
  'coffe',
  'place',
  'ask',
  'want',
  'go',
  'friend',
  'drink',
  'last',
  'weekend',
  'said',
  'welcom',
  'come',
  'well',
  'drink',
  'mine',
  'said',
  'alreadi',
  'plan',
  'felt',
  'weird',
  'drink',
  'know',
  'child',
  'around',
  'honestli',
  'feel',
  'neglect',
  'feel',
  'like',
  'put',
  'back',
  'burner',
  'want',
  'friend',
  'anymor',
  'im',
  'alway',
  'avail',
  'rare',
  'come',
  'think',
  'fair',
  'today',
  'saw',
  'photo',
  'saturday',
  'night',
  'fume',
  'ditch',
  'could',
  'go',
  'drink',
  'like',
  'felt',
  'reject',
  'horribl',
  'thought',
  'best',
  'friend',
  'clearli',
  'valu',
  'even',
  'drink',
  'hous',
  'finish',
  'work',
  'call',
  'ask',
  'fanci',
  'go',
  'coffe',
  'town',
  'ask',
  'come',
  'said',
  'ye',
  'disconnect',
  'heard',
  'mumbl',
  'like',
  'alway',
  'realli',
  'annoy',
  'came',
  'decid',
  'open',
  'everyth',
  'proudest',
  'matur',
  'moment',
  'shout',
  'aw',
  'friend',
  'bare',
  'come',
  'want',
  'spend',
  'time',
  'say',
  'stop',
  'play',
  'around',
  'said',
  'alway',
  'accommod',
  'year',
  'want',
  'spend',
  'time',
  'alway',
  'kid',
  'especi',
  'watch',
  'languag',
  'mia',
  'like',
  'swear',
  'said',
  'knew',
  'child',
  'respons',
  'said',
  'tom',
  'partner',
  'could',
  'take',
  'care',
  'ciara',
  'could',
  'time',
  'felt',
  'realli',
  'intrus',
  'told',
  'mind',
  'busi',
  'meddl',
  'marriag',
  'realli',
  'angri',
  'kick',
  'call',
  'selfish',
  'asshol',
  'way',
  'normal',
  'would',
  'expect',
  'call',
  'apolog',
  'done',
  'im',
  'start',
  'wonder',
  'asshol',
  'perhap',
  'harsh',
  'care',
  'discuss',
  'two_year',
  'year_ago',
  'ago_unexpectedli',
  'unexpectedli_got',
  'got_pregnant',
  'pregnant_beauti',
  'beauti_month',
  'month_old',
  'old_daughter',
  'daughter_ciara',
  'ciara_time',
  'time_friend',
  'friend_circl',
  'circl_got',
  'got_consider',
  'consider_smaller',
  'smaller_best',
  'best_friend',
  'friend_remain',
  'remain_mia',
  'mia_mia',
  'mia_kid',
  'kid_want',
  'want_kid',
  'kid_brilliant',
  'brilliant_ciara',
  'ciara_im',
  'im_sahm',
  'sahm_obvious',
  'obvious_much',
  'much_time',
  'time_hang',
  'hang_previous',
  'previous_mia',
  'mia_live',
  'live_street',
  'street_manchest',
  'manchest_england',
  'england_walk',
  'walk_distanc',
  'distanc_hous',
  'hous_ive',
  'ive_told',
  'told_mia',
  'mia_numer',
  'numer_time',
  'time_pop',
  'pop_whenev',
  'whenev_want',
  'want_work',
  'work_home',
  'home_rare',
  'rare_begin',
  'begin_happen',
  'happen_less',
  'less_less',
  'less_instead',
  'instead_keep',
  'keep_suggest',
  'suggest_go',
  'go_coffe',
  'coffe_pizza',
  'pizza_even',
  'even_drink',
  'drink_time',
  'time_alway',
  'alway_tell',
  'tell_come',
  'come_well',
  'well_coffe',
  'coffe_place',
  'place_ask',
  'ask_want',
  'want_go',
  'go_friend',
  'friend_drink',
  'drink_last',
  'last_weekend',
  'weekend_said',
  'said_welcom',
  'welcom_come',
  'come_well',
  'well_drink',
  'drink_mine',
  'mine_said',
  'said_alreadi',
  'alreadi_plan',
  'plan_felt',
  'felt_weird',
  'weird_drink',
  'drink_know',
  'know_child',
  'child_around',
  'around_honestli',
  'honestli_feel',
  'feel_neglect',
  'neglect_feel',
  'feel_like',
  'like_put',
  'put_back',
  'back_burner',
  'burner_want',
  'want_friend',
  'friend_anymor',
  'anymor_im',
  'im_alway',
  'alway_avail',
  'avail_rare',
  'rare_come',
  'come_think',
  'think_fair',
  'fair_today',
  'today_saw',
  'saw_photo',
  'photo_saturday',
  'saturday_night',
  'night_fume',
  'fume_ditch',
  'ditch_could',
  'could_go',
  'go_drink',
  'drink_like',
  'like_felt',
  'felt_reject',
  'reject_horribl',
  'horribl_thought',
  'thought_best',
  'best_friend',
  'friend_clearli',
  'clearli_valu',
  'valu_even',
  'even_drink',
  'drink_hous',
  'hous_finish',
  'finish_work',
  'work_call',
  'call_ask',
  'ask_fanci',
  'fanci_go',
  'go_coffe',
  'coffe_town',
  'town_ask',
  'ask_come',
  'come_said',
  'said_ye',
  'ye_disconnect',
  'disconnect_heard',
  'heard_mumbl',
  'mumbl_like',
  'like_alway',
  'alway_realli',
  'realli_annoy',
  'annoy_came',
  'came_decid',
  'decid_open',
  'open_everyth',
  'everyth_proudest',
  'proudest_matur',
  'matur_moment',
  'moment_shout',
  'shout_aw',
  'aw_friend',
  'friend_bare',
  'bare_come',
  'come_want',
  'want_spend',
  'spend_time',
  'time_say',
  'say_stop',
  'stop_play',
  'play_around',
  'around_said',
  'said_alway',
  'alway_accommod',
  'accommod_year',
  'year_want',
  'want_spend',
  'spend_time',
  'time_alway',
  'alway_kid',
  'kid_especi',
  'especi_watch',
  'watch_languag',
  'languag_mia',
  'mia_like',
  'like_swear',
  'swear_said',
  'said_knew',
  'knew_child',
  'child_respons',
  'respons_said',
  'said_tom',
  'tom_partner',
  'partner_could',
  'could_take',
  'take_care',
  'care_ciara',
  'ciara_could',
  'could_time',
  'time_felt',
  'felt_realli',
  'realli_intrus',
  'intrus_told',
  'told_mind',
  'mind_busi',
  'busi_meddl',
  'meddl_marriag',
  'marriag_realli',
  'realli_angri',
  'angri_kick',
  'kick_call',
  'call_selfish',
  'selfish_asshol',
  'asshol_way',
  'way_normal',
  'normal_would',
  'would_expect',
  'expect_call',
  'call_apolog',
  'apolog_done',
  'done_im',
  'im_start',
  'start_wonder',
  'wonder_asshol',
  'asshol_perhap',
  'perhap_harsh',
  'harsh_care',
  'care_discuss',
  'two_year_ago',
  'year_ago_unexpectedli',
  'ago_unexpectedli_got',
  'unexpectedli_got_pregnant',
  'got_pregnant_beauti',
  'pregnant_beauti_month',
  'beauti_month_old',
  'month_old_daughter',
  'old_daughter_ciara',
  'daughter_ciara_time',
  'ciara_time_friend',
  'time_friend_circl',
  'friend_circl_got',
  'circl_got_consider',
  'got_consider_smaller',
  'consider_smaller_best',
  'smaller_best_friend',
  'best_friend_remain',
  'friend_remain_mia',
  'remain_mia_mia',
  'mia_mia_kid',
  'mia_kid_want',
  'kid_want_kid',
  'want_kid_brilliant',
  'kid_brilliant_ciara',
  'brilliant_ciara_im',
  'ciara_im_sahm',
  'im_sahm_obvious',
  'sahm_obvious_much',
  'obvious_much_time',
  'much_time_hang',
  'time_hang_previous',
  'hang_previous_mia',
  'previous_mia_live',
  'mia_live_street',
  'live_street_manchest',
  'street_manchest_england',
  'manchest_england_walk',
  'england_walk_distanc',
  'walk_distanc_hous',
  'distanc_hous_ive',
  'hous_ive_told',
  'ive_told_mia',
  'told_mia_numer',
  'mia_numer_time',
  'numer_time_pop',
  'time_pop_whenev',
  'pop_whenev_want',
  'whenev_want_work',
  'want_work_home',
  'work_home_rare',
  'home_rare_begin',
  'rare_begin_happen',
  'begin_happen_less',
  'happen_less_less',
  'less_less_instead',
  'less_instead_keep',
  'instead_keep_suggest',
  'keep_suggest_go',
  'suggest_go_coffe',
  'go_coffe_pizza',
  'coffe_pizza_even',
  'pizza_even_drink',
  'even_drink_time',
  'drink_time_alway',
  'time_alway_tell',
  'alway_tell_come',
  'tell_come_well',
  'come_well_coffe',
  'well_coffe_place',
  'coffe_place_ask',
  'place_ask_want',
  'ask_want_go',
  'want_go_friend',
  'go_friend_drink',
  'friend_drink_last',
  'drink_last_weekend',
  'last_weekend_said',
  'weekend_said_welcom',
  'said_welcom_come',
  'welcom_come_well',
  'come_well_drink',
  'well_drink_mine',
  'drink_mine_said',
  'mine_said_alreadi',
  'said_alreadi_plan',
  'alreadi_plan_felt',
  'plan_felt_weird',
  'felt_weird_drink',
  'weird_drink_know',
  'drink_know_child',
  'know_child_around',
  'child_around_honestli',
  'around_honestli_feel',
  'honestli_feel_neglect',
  'feel_neglect_feel',
  'neglect_feel_like',
  'feel_like_put',
  'like_put_back',
  'put_back_burner',
  'back_burner_want',
  'burner_want_friend',
  'want_friend_anymor',
  'friend_anymor_im',
  'anymor_im_alway',
  'im_alway_avail',
  'alway_avail_rare',
  'avail_rare_come',
  'rare_come_think',
  'come_think_fair',
  'think_fair_today',
  'fair_today_saw',
  'today_saw_photo',
  'saw_photo_saturday',
  'photo_saturday_night',
  'saturday_night_fume',
  'night_fume_ditch',
  'fume_ditch_could',
  'ditch_could_go',
  'could_go_drink',
  'go_drink_like',
  'drink_like_felt',
  'like_felt_reject',
  'felt_reject_horribl',
  'reject_horribl_thought',
  'horribl_thought_best',
  'thought_best_friend',
  'best_friend_clearli',
  'friend_clearli_valu',
  'clearli_valu_even',
  'valu_even_drink',
  'even_drink_hous',
  'drink_hous_finish',
  'hous_finish_work',
  'finish_work_call',
  'work_call_ask',
  'call_ask_fanci',
  'ask_fanci_go',
  'fanci_go_coffe',
  'go_coffe_town',
  'coffe_town_ask',
  'town_ask_come',
  'ask_come_said',
  'come_said_ye',
  'said_ye_disconnect',
  'ye_disconnect_heard',
  'disconnect_heard_mumbl',
  'heard_mumbl_like',
  'mumbl_like_alway',
  'like_alway_realli',
  'alway_realli_annoy',
  'realli_annoy_came',
  'annoy_came_decid',
  'came_decid_open',
  'decid_open_everyth',
  'open_everyth_proudest',
  'everyth_proudest_matur',
  'proudest_matur_moment',
  'matur_moment_shout',
  'moment_shout_aw',
  'shout_aw_friend',
  'aw_friend_bare',
  'friend_bare_come',
  'bare_come_want',
  'come_want_spend',
  'want_spend_time',
  'spend_time_say',
  'time_say_stop',
  'say_stop_play',
  'stop_play_around',
  'play_around_said',
  'around_said_alway',
  'said_alway_accommod',
  'alway_accommod_year',
  'accommod_year_want',
  'year_want_spend',
  'want_spend_time',
  'spend_time_alway',
  'time_alway_kid',
  'alway_kid_especi',
  'kid_especi_watch',
  'especi_watch_languag',
  'watch_languag_mia',
  'languag_mia_like',
  'mia_like_swear',
  'like_swear_said',
  'swear_said_knew',
  'said_knew_child',
  'knew_child_respons',
  'child_respons_said',
  'respons_said_tom',
  'said_tom_partner',
  'tom_partner_could',
  'partner_could_take',
  'could_take_care',
  'take_care_ciara',
  'care_ciara_could',
  'ciara_could_time',
  'could_time_felt',
  'time_felt_realli',
  'felt_realli_intrus',
  'realli_intrus_told',
  'intrus_told_mind',
  'told_mind_busi',
  'mind_busi_meddl',
  'busi_meddl_marriag',
  'meddl_marriag_realli',
  'marriag_realli_angri',
  'realli_angri_kick',
  'angri_kick_call',
  'kick_call_selfish',
  'call_selfish_asshol',
  'selfish_asshol_way',
  'asshol_way_normal',
  'way_normal_would',
  'normal_would_expect',
  'would_expect_call',
  'expect_call_apolog',
  'call_apolog_done',
  'apolog_done_im',
  'done_im_start',
  'im_start_wonder',
  'start_wonder_asshol',
  'wonder_asshol_perhap',
  'asshol_perhap_harsh',
  'perhap_harsh_care',
  'harsh_care_discuss'],
 ['parent',
  'divorc',
  'sister',
  'year',
  'old',
  'met',
  'husband',
  'three',
  'year',
  'later',
  'widow',
  'month',
  'old',
  'son',
  'think',
  'month',
  'old',
  'met',
  'instantli',
  'move',
  'start',
  'claim',
  'son',
  'rais',
  'like',
  'us',
  'got',
  'engag',
  'week',
  'wed',
  'dad',
  'die',
  'point',
  'mom',
  'becom',
  'estrang',
  'entir',
  'extend',
  'famili',
  'told',
  'dad',
  'parent',
  'want',
  'see',
  'us',
  'soon',
  'would',
  'need',
  'come',
  'wed',
  'watch',
  'three',
  'us',
  'includ',
  'stepbroth',
  'told',
  'wed',
  'go',
  'forward',
  'want',
  'see',
  'us',
  'spend',
  'time',
  'us',
  'includ',
  'want',
  'tri',
  'argu',
  'time',
  'us',
  'offer',
  'pay',
  '%',
  'mom',
  'said',
  'said',
  'need',
  'come',
  'hous',
  'make',
  'effort',
  'three',
  'take',
  'two',
  'sister',
  'would',
  'argu',
  'mom',
  'one',
  'day',
  'particular',
  'dad',
  'birthday',
  'celebr',
  'everi',
  'year',
  'dad',
  'famili',
  'die',
  'even',
  'let',
  'day',
  'us',
  'stepbroth',
  'said',
  'get',
  'famili',
  'see',
  'less',
  'deserv',
  'present',
  'dad',
  'kid',
  'never',
  'met',
  'deserv',
  'never',
  'got',
  'call',
  'us',
  'selfish',
  'mindset',
  'last',
  'year',
  'turn',
  'move',
  'girlfriend',
  'left',
  'home',
  'stepbroth',
  'longer',
  'invit',
  'anyth',
  'dad',
  'famili',
  'longer',
  'saw',
  'sister',
  'also',
  'stop',
  'spend',
  'time',
  'mom',
  'hous',
  'stop',
  'speak',
  'quiet',
  'sever',
  'month',
  'last',
  'week',
  'mom',
  'show',
  'work',
  'demand',
  'talk',
  'told',
  'tire',
  'one',
  'kid',
  'left',
  'sick',
  'discard',
  'way',
  'sister',
  'advoc',
  'told',
  'one',
  'kid',
  'stepson',
  'sister',
  'longer',
  'kid',
  'famili',
  'longer',
  'forc',
  'includ',
  'see',
  'us',
  'fault',
  'forc',
  'first',
  'place',
  'wish',
  'luck',
  'kinda',
  'sarcast',
  'gon',
  'na',
  'lie',
  'ask',
  'leav',
  'text',
  'later',
  'night',
  'say',
  'good',
  'mom',
  'three',
  'us',
  'say',
  'one',
  'kid',
  'low',
  'aita',
  'parent_divorc',
  'divorc_sister',
  'sister_year',
  'year_old',
  'old_met',
  'met_husband',
  'husband_three',
  'three_year',
  'year_later',
  'later_widow',
  'widow_month',
  'month_old',
  'old_son',
  'son_think',
  'think_month',
  'month_old',
  'old_met',
  'met_instantli',
  'instantli_move',
  'move_start',
  'start_claim',
  'claim_son',
  'son_rais',
  'rais_like',
  'like_us',
  'us_got',
  'got_engag',
  'engag_week',
  'week_wed',
  'wed_dad',
  'dad_die',
  'die_point',
  'point_mom',
  'mom_becom',
  'becom_estrang',
  'estrang_entir',
  'entir_extend',
  'extend_famili',
  'famili_told',
  'told_dad',
  'dad_parent',
  'parent_want',
  'want_see',
  'see_us',
  'us_soon',
  'soon_would',
  'would_need',
  'need_come',
  'come_wed',
  'wed_watch',
  'watch_three',
  'three_us',
  'us_includ',
  'includ_stepbroth',
  'stepbroth_told',
  'told_wed',
  'wed_go',
  'go_forward',
  'forward_want',
  'want_see',
  'see_us',
  'us_spend',
  'spend_time',
  'time_us',
  'us_includ',
  'includ_want',
  'want_tri',
  'tri_argu',
  'argu_time',
  'time_us',
  'us_offer',
  'offer_pay',
  'pay_%',
  '%_mom',
  'mom_said',
  'said_said',
  'said_need',
  'need_come',
  'come_hous',
  'hous_make',
  'make_effort',
  'effort_three',
  'three_take',
  'take_two',
  'two_sister',
  'sister_would',
  'would_argu',
  'argu_mom',
  'mom_one',
  'one_day',
  'day_particular',
  'particular_dad',
  'dad_birthday',
  'birthday_celebr',
  'celebr_everi',
  'everi_year',
  'year_dad',
  'dad_famili',
  'famili_die',
  'die_even',
  'even_let',
  'let_day',
  'day_us',
  'us_stepbroth',
  'stepbroth_said',
  'said_get',
  'get_famili',
  'famili_see',
  'see_less',
  'less_deserv',
  'deserv_present',
  'present_dad',
  'dad_kid',
  'kid_never',
  'never_met',
  'met_deserv',
  'deserv_never',
  'never_got',
  'got_call',
  'call_us',
  'us_selfish',
  'selfish_mindset',
  'mindset_last',
  'last_year',
  'year_turn',
  'turn_move',
  'move_girlfriend',
  'girlfriend_left',
  'left_home',
  'home_stepbroth',
  'stepbroth_longer',
  'longer_invit',
  'invit_anyth',
  'anyth_dad',
  'dad_famili',
  'famili_longer',
  'longer_saw',
  'saw_sister',
  'sister_also',
  'also_stop',
  'stop_spend',
  'spend_time',
  'time_mom',
  'mom_hous',
  'hous_stop',
  'stop_speak',
  'speak_quiet',
  'quiet_sever',
  'sever_month',
  'month_last',
  'last_week',
  'week_mom',
  'mom_show',
  'show_work',
  'work_demand',
  'demand_talk',
  'talk_told',
  'told_tire',
  'tire_one',
  'one_kid',
  'kid_left',
  'left_sick',
  'sick_discard',
  'discard_way',
  'way_sister',
  'sister_advoc',
  'advoc_told',
  'told_one',
  'one_kid',
  'kid_stepson',
  'stepson_sister',
  'sister_longer',
  'longer_kid',
  'kid_famili',
  'famili_longer',
  'longer_forc',
  'forc_includ',
  'includ_see',
  'see_us',
  'us_fault',
  'fault_forc',
  'forc_first',
  'first_place',
  'place_wish',
  'wish_luck',
  'luck_kinda',
  'kinda_sarcast',
  'sarcast_gon',
  'gon_na',
  'na_lie',
  'lie_ask',
  'ask_leav',
  'leav_text',
  'text_later',
  'later_night',
  'night_say',
  'say_good',
  'good_mom',
  'mom_three',
  'three_us',
  'us_say',
  'say_one',
  'one_kid',
  'kid_low',
  'low_aita',
  'parent_divorc_sister',
  'divorc_sister_year',
  'sister_year_old',
  'year_old_met',
  'old_met_husband',
  'met_husband_three',
  'husband_three_year',
  'three_year_later',
  'year_later_widow',
  'later_widow_month',
  'widow_month_old',
  'month_old_son',
  'old_son_think',
  'son_think_month',
  'think_month_old',
  'month_old_met',
  'old_met_instantli',
  'met_instantli_move',
  'instantli_move_start',
  'move_start_claim',
  'start_claim_son',
  'claim_son_rais',
  'son_rais_like',
  'rais_like_us',
  'like_us_got',
  'us_got_engag',
  'got_engag_week',
  'engag_week_wed',
  'week_wed_dad',
  'wed_dad_die',
  'dad_die_point',
  'die_point_mom',
  'point_mom_becom',
  'mom_becom_estrang',
  'becom_estrang_entir',
  'estrang_entir_extend',
  'entir_extend_famili',
  'extend_famili_told',
  'famili_told_dad',
  'told_dad_parent',
  'dad_parent_want',
  'parent_want_see',
  'want_see_us',
  'see_us_soon',
  'us_soon_would',
  'soon_would_need',
  'would_need_come',
  'need_come_wed',
  'come_wed_watch',
  'wed_watch_three',
  'watch_three_us',
  'three_us_includ',
  'us_includ_stepbroth',
  'includ_stepbroth_told',
  'stepbroth_told_wed',
  'told_wed_go',
  'wed_go_forward',
  'go_forward_want',
  'forward_want_see',
  'want_see_us',
  'see_us_spend',
  'us_spend_time',
  'spend_time_us',
  'time_us_includ',
  'us_includ_want',
  'includ_want_tri',
  'want_tri_argu',
  'tri_argu_time',
  'argu_time_us',
  'time_us_offer',
  'us_offer_pay',
  'offer_pay_%',
  'pay_%_mom',
  '%_mom_said',
  'mom_said_said',
  'said_said_need',
  'said_need_come',
  'need_come_hous',
  'come_hous_make',
  'hous_make_effort',
  'make_effort_three',
  'effort_three_take',
  'three_take_two',
  'take_two_sister',
  'two_sister_would',
  'sister_would_argu',
  'would_argu_mom',
  'argu_mom_one',
  'mom_one_day',
  'one_day_particular',
  'day_particular_dad',
  'particular_dad_birthday',
  'dad_birthday_celebr',
  'birthday_celebr_everi',
  'celebr_everi_year',
  'everi_year_dad',
  'year_dad_famili',
  'dad_famili_die',
  'famili_die_even',
  'die_even_let',
  'even_let_day',
  'let_day_us',
  'day_us_stepbroth',
  'us_stepbroth_said',
  'stepbroth_said_get',
  'said_get_famili',
  'get_famili_see',
  'famili_see_less',
  'see_less_deserv',
  'less_deserv_present',
  'deserv_present_dad',
  'present_dad_kid',
  'dad_kid_never',
  'kid_never_met',
  'never_met_deserv',
  'met_deserv_never',
  'deserv_never_got',
  'never_got_call',
  'got_call_us',
  'call_us_selfish',
  'us_selfish_mindset',
  'selfish_mindset_last',
  'mindset_last_year',
  'last_year_turn',
  'year_turn_move',
  'turn_move_girlfriend',
  'move_girlfriend_left',
  'girlfriend_left_home',
  'left_home_stepbroth',
  'home_stepbroth_longer',
  'stepbroth_longer_invit',
  'longer_invit_anyth',
  'invit_anyth_dad',
  'anyth_dad_famili',
  'dad_famili_longer',
  'famili_longer_saw',
  'longer_saw_sister',
  'saw_sister_also',
  'sister_also_stop',
  'also_stop_spend',
  'stop_spend_time',
  'spend_time_mom',
  'time_mom_hous',
  'mom_hous_stop',
  'hous_stop_speak',
  'stop_speak_quiet',
  'speak_quiet_sever',
  'quiet_sever_month',
  'sever_month_last',
  'month_last_week',
  'last_week_mom',
  'week_mom_show',
  'mom_show_work',
  'show_work_demand',
  'work_demand_talk',
  'demand_talk_told',
  'talk_told_tire',
  'told_tire_one',
  'tire_one_kid',
  'one_kid_left',
  'kid_left_sick',
  'left_sick_discard',
  'sick_discard_way',
  'discard_way_sister',
  'way_sister_advoc',
  'sister_advoc_told',
  'advoc_told_one',
  'told_one_kid',
  'one_kid_stepson',
  'kid_stepson_sister',
  'stepson_sister_longer',
  'sister_longer_kid',
  'longer_kid_famili',
  'kid_famili_longer',
  'famili_longer_forc',
  'longer_forc_includ',
  'forc_includ_see',
  'includ_see_us',
  'see_us_fault',
  'us_fault_forc',
  'fault_forc_first',
  'forc_first_place',
  'first_place_wish',
  'place_wish_luck',
  'wish_luck_kinda',
  'luck_kinda_sarcast',
  'kinda_sarcast_gon',
  'sarcast_gon_na',
  'gon_na_lie',
  'na_lie_ask',
  'lie_ask_leav',
  'ask_leav_text',
  'leav_text_later',
  'text_later_night',
  'later_night_say',
  'night_say_good',
  'say_good_mom',
  'good_mom_three',
  'mom_three_us',
  'three_us_say',
  'us_say_one',
  'say_one_kid',
  'one_kid_low',
  'kid_low_aita'],
 ['boyfriend',
  'live',
  'togeth',
  'year',
  'alway',
  'bit',
  'money',
  'struggl',
  'use',
  'make',
  'usual',
  'pick',
  'slack',
  'hous',
  'hold',
  'howev',
  'start',
  'new',
  'job',
  'earn',
  'lot',
  'less',
  'ive',
  'start',
  'cautiou',
  'amount',
  'spend',
  'relationship',
  'would',
  'usual',
  'buy',
  'toiletri',
  'household',
  'product',
  'told',
  'would',
  'anymor',
  'need',
  'cut',
  'spend',
  'also',
  'work',
  'capabl',
  'buy',
  'thing',
  'thought',
  'agre',
  'time',
  'gone',
  'ive',
  'notic',
  'expens',
  'skin',
  'care',
  'even',
  'deodor',
  'use',
  'realli',
  'quickli',
  'ask',
  'multipl',
  'time',
  'pleas',
  'use',
  'stuff',
  'even',
  'bought',
  'skin',
  'care',
  'could',
  'thing',
  'thing',
  'set',
  'bought',
  '$',
  'dollar',
  'face',
  'wash',
  'suppos',
  'use',
  'sparingli',
  'horribl',
  'ezcema',
  'prescript',
  'product',
  'buy',
  'specif',
  'ezcema',
  'use',
  'pick',
  'bottl',
  'empti',
  'laugh',
  'said',
  'would',
  'replac',
  'refus',
  'learnt',
  'price',
  'took',
  'inventori',
  'everyth',
  'els',
  'found',
  'use',
  '$',
  'worth',
  'product',
  'around',
  'month',
  'know',
  'naiv',
  'tell',
  'price',
  'everyth',
  'get',
  'tell',
  'use',
  'end',
  'buy',
  'safe',
  'put',
  'sink',
  'put',
  'everyth',
  'left',
  'insid',
  'hid',
  'key',
  'go',
  'shower',
  'get',
  'readi',
  'use',
  'thing',
  'worri',
  'afford',
  'keep',
  'skin',
  'check',
  'found',
  'lost',
  'said',
  'overreact',
  'trust',
  'turn',
  'massiv',
  'deal',
  'friend',
  'think',
  'im',
  'harsh',
  'simpli',
  'afford',
  'keep',
  'buy',
  'skincar',
  'ive',
  'even',
  'hospitalis',
  'year',
  'due',
  'huge',
  'flare',
  'run',
  'product',
  'take',
  'serious',
  'know',
  'els',
  'ive',
  'alreadi',
  'tri',
  'ask',
  'asshol',
  'updat',
  'wow',
  'think',
  'go',
  'get',
  'much',
  'respons',
  'thank',
  'guy',
  'shatter',
  'rose',
  'tint',
  'glass',
  'talk',
  'one',
  'friend',
  'said',
  'idea',
  'take',
  '$',
  'product',
  'explain',
  'thought',
  'harsh',
  'unfortun',
  'share',
  'friend',
  'group',
  'break',
  'look',
  'realli',
  'hard',
  'sat',
  'talk',
  'tri',
  'convey',
  'trust',
  'anymor',
  'import',
  'skin',
  'care',
  'convers',
  'went',
  'time',
  'actual',
  'thought',
  'may',
  'turn',
  'new',
  'leaf',
  'told',
  'first',
  'year',
  'togeth',
  'coupl',
  'flare',
  'find',
  'good',
  'product',
  'work',
  'take',
  'oral',
  'steroid',
  'prescrib',
  'think',
  'would',
  'make',
  'buff',
  'gym',
  'whole',
  'year',
  'battl',
  'insecur',
  'unbear',
  'pain',
  'abl',
  'overcom',
  'flare',
  'honestli',
  'thing',
  'snap',
  'complet',
  'im',
  'stay',
  'friend',
  'hous',
  'week',
  'let',
  'pack',
  'thing',
  'figur',
  'place',
  'go',
  'thank',
  'everyon',
  'kind',
  'help',
  'realis',
  'stupid',
  '❤️',
  'boyfriend_live',
  'live_togeth',
  'togeth_year',
  'year_alway',
  'alway_bit',
  'bit_money',
  'money_struggl',
  'struggl_use',
  'use_make',
  'make_usual',
  'usual_pick',
  'pick_slack',
  'slack_hous',
  'hous_hold',
  'hold_howev',
  'howev_start',
  'start_new',
  'new_job',
  'job_earn',
  'earn_lot',
  'lot_less',
  'less_ive',
  'ive_start',
  'start_cautiou',
  'cautiou_amount',
  'amount_spend',
  'spend_relationship',
  'relationship_would',
  'would_usual',
  'usual_buy',
  'buy_toiletri',
  'toiletri_household',
  'household_product',
  'product_told',
  'told_would',
  'would_anymor',
  'anymor_need',
  'need_cut',
  'cut_spend',
  'spend_also',
  'also_work',
  'work_capabl',
  'capabl_buy',
  'buy_thing',
  'thing_thought',
  'thought_agre',
  'agre_time',
  'time_gone',
  'gone_ive',
  'ive_notic',
  'notic_expens',
  'expens_skin',
  'skin_care',
  'care_even',
  'even_deodor',
  'deodor_use',
  'use_realli',
  'realli_quickli',
  'quickli_ask',
  'ask_multipl',
  'multipl_time',
  'time_pleas',
  'pleas_use',
  'use_stuff',
  'stuff_even',
  'even_bought',
  'bought_skin',
  'skin_care',
  'care_could',
  'could_thing',
  'thing_thing',
  'thing_set',
  'set_bought',
  'bought_$',
  '$_dollar',
  'dollar_face',
  'face_wash',
  'wash_suppos',
  'suppos_use',
  'use_sparingli',
  'sparingli_horribl',
  'horribl_ezcema',
  'ezcema_prescript',
  'prescript_product',
  'product_buy',
  'buy_specif',
  'specif_ezcema',
  'ezcema_use',
  'use_pick',
  'pick_bottl',
  'bottl_empti',
  'empti_laugh',
  'laugh_said',
  'said_would',
  'would_replac',
  'replac_refus',
  'refus_learnt',
  'learnt_price',
  'price_took',
  'took_inventori',
  'inventori_everyth',
  'everyth_els',
  'els_found',
  'found_use',
  'use_$',
  '$_worth',
  'worth_product',
  'product_around',
  'around_month',
  'month_know',
  'know_naiv',
  'naiv_tell',
  'tell_price',
  'price_everyth',
  'everyth_get',
  'get_tell',
  'tell_use',
  'use_end',
  'end_buy',
  'buy_safe',
  'safe_put',
  'put_sink',
  'sink_put',
  'put_everyth',
  'everyth_left',
  'left_insid',
  'insid_hid',
  'hid_key',
  'key_go',
  'go_shower',
  'shower_get',
  'get_readi',
  'readi_use',
  'use_thing',
  'thing_worri',
  'worri_afford',
  'afford_keep',
  'keep_skin',
  'skin_check',
  'check_found',
  'found_lost',
  'lost_said',
  'said_overreact',
  'overreact_trust',
  'trust_turn',
  'turn_massiv',
  'massiv_deal',
  'deal_friend',
  'friend_think',
  'think_im',
  'im_harsh',
  'harsh_simpli',
  'simpli_afford',
  'afford_keep',
  'keep_buy',
  'buy_skincar',
  'skincar_ive',
  'ive_even',
  'even_hospitalis',
  'hospitalis_year',
  'year_due',
  'due_huge',
  'huge_flare',
  'flare_run',
  'run_product',
  'product_take',
  'take_serious',
  'serious_know',
  'know_els',
  'els_ive',
  'ive_alreadi',
  'alreadi_tri',
  'tri_ask',
  'ask_asshol',
  'asshol_updat',
  'updat_wow',
  'wow_think',
  'think_go',
  'go_get',
  'get_much',
  'much_respons',
  'respons_thank',
  'thank_guy',
  'guy_shatter',
  'shatter_rose',
  'rose_tint',
  'tint_glass',
  'glass_talk',
  'talk_one',
  'one_friend',
  'friend_said',
  'said_idea',
  'idea_take',
  'take_$',
  '$_product',
  'product_explain',
  'explain_thought',
  'thought_harsh',
  'harsh_unfortun',
  'unfortun_share',
  'share_friend',
  'friend_group',
  'group_break',
  'break_look',
  'look_realli',
  'realli_hard',
  'hard_sat',
  'sat_talk',
  'talk_tri',
  'tri_convey',
  'convey_trust',
  'trust_anymor',
  'anymor_import',
  'import_skin',
  'skin_care',
  'care_convers',
  'convers_went',
  'went_time',
  'time_actual',
  'actual_thought',
  'thought_may',
  'may_turn',
  'turn_new',
  'new_leaf',
  'leaf_told',
  'told_first',
  'first_year',
  'year_togeth',
  'togeth_coupl',
  'coupl_flare',
  'flare_find',
  'find_good',
  'good_product',
  'product_work',
  'work_take',
  'take_oral',
  'oral_steroid',
  'steroid_prescrib',
  'prescrib_think',
  'think_would',
  'would_make',
  'make_buff',
  'buff_gym',
  'gym_whole',
  'whole_year',
  'year_battl',
  'battl_insecur',
  'insecur_unbear',
  'unbear_pain',
  'pain_abl',
  'abl_overcom',
  'overcom_flare',
  'flare_honestli',
  'honestli_thing',
  'thing_snap',
  'snap_complet',
  'complet_im',
  'im_stay',
  'stay_friend',
  'friend_hous',
  'hous_week',
  'week_let',
  'let_pack',
  'pack_thing',
  'thing_figur',
  'figur_place',
  'place_go',
  'go_thank',
  'thank_everyon',
  'everyon_kind',
  'kind_help',
  'help_realis',
  'realis_stupid',
  'stupid_❤️',
  'boyfriend_live_togeth',
  'live_togeth_year',
  'togeth_year_alway',
  'year_alway_bit',
  'alway_bit_money',
  'bit_money_struggl',
  'money_struggl_use',
  'struggl_use_make',
  'use_make_usual',
  'make_usual_pick',
  'usual_pick_slack',
  'pick_slack_hous',
  'slack_hous_hold',
  'hous_hold_howev',
  'hold_howev_start',
  'howev_start_new',
  'start_new_job',
  'new_job_earn',
  'job_earn_lot',
  'earn_lot_less',
  'lot_less_ive',
  'less_ive_start',
  'ive_start_cautiou',
  'start_cautiou_amount',
  'cautiou_amount_spend',
  'amount_spend_relationship',
  'spend_relationship_would',
  'relationship_would_usual',
  'would_usual_buy',
  'usual_buy_toiletri',
  'buy_toiletri_household',
  'toiletri_household_product',
  'household_product_told',
  'product_told_would',
  'told_would_anymor',
  'would_anymor_need',
  'anymor_need_cut',
  'need_cut_spend',
  'cut_spend_also',
  'spend_also_work',
  'also_work_capabl',
  'work_capabl_buy',
  'capabl_buy_thing',
  'buy_thing_thought',
  'thing_thought_agre',
  'thought_agre_time',
  'agre_time_gone',
  'time_gone_ive',
  'gone_ive_notic',
  'ive_notic_expens',
  'notic_expens_skin',
  'expens_skin_care',
  'skin_care_even',
  'care_even_deodor',
  'even_deodor_use',
  'deodor_use_realli',
  'use_realli_quickli',
  'realli_quickli_ask',
  'quickli_ask_multipl',
  'ask_multipl_time',
  'multipl_time_pleas',
  'time_pleas_use',
  'pleas_use_stuff',
  'use_stuff_even',
  'stuff_even_bought',
  'even_bought_skin',
  'bought_skin_care',
  'skin_care_could',
  'care_could_thing',
  'could_thing_thing',
  'thing_thing_set',
  'thing_set_bought',
  'set_bought_$',
  'bought_$_dollar',
  '$_dollar_face',
  'dollar_face_wash',
  'face_wash_suppos',
  'wash_suppos_use',
  'suppos_use_sparingli',
  'use_sparingli_horribl',
  'sparingli_horribl_ezcema',
  'horribl_ezcema_prescript',
  'ezcema_prescript_product',
  'prescript_product_buy',
  'product_buy_specif',
  'buy_specif_ezcema',
  'specif_ezcema_use',
  'ezcema_use_pick',
  'use_pick_bottl',
  'pick_bottl_empti',
  'bottl_empti_laugh',
  'empti_laugh_said',
  'laugh_said_would',
  'said_would_replac',
  'would_replac_refus',
  'replac_refus_learnt',
  'refus_learnt_price',
  'learnt_price_took',
  'price_took_inventori',
  'took_inventori_everyth',
  'inventori_everyth_els',
  'everyth_els_found',
  'els_found_use',
  'found_use_$',
  'use_$_worth',
  '$_worth_product',
  'worth_product_around',
  'product_around_month',
  'around_month_know',
  'month_know_naiv',
  'know_naiv_tell',
  'naiv_tell_price',
  'tell_price_everyth',
  'price_everyth_get',
  'everyth_get_tell',
  'get_tell_use',
  'tell_use_end',
  'use_end_buy',
  'end_buy_safe',
  'buy_safe_put',
  'safe_put_sink',
  'put_sink_put',
  'sink_put_everyth',
  'put_everyth_left',
  'everyth_left_insid',
  'left_insid_hid',
  'insid_hid_key',
  'hid_key_go',
  'key_go_shower',
  'go_shower_get',
  'shower_get_readi',
  'get_readi_use',
  'readi_use_thing',
  'use_thing_worri',
  'thing_worri_afford',
  'worri_afford_keep',
  'afford_keep_skin',
  'keep_skin_check',
  'skin_check_found',
  'check_found_lost',
  'found_lost_said',
  'lost_said_overreact',
  'said_overreact_trust',
  'overreact_trust_turn',
  'trust_turn_massiv',
  'turn_massiv_deal',
  'massiv_deal_friend',
  'deal_friend_think',
  'friend_think_im',
  'think_im_harsh',
  'im_harsh_simpli',
  'harsh_simpli_afford',
  'simpli_afford_keep',
  'afford_keep_buy',
  'keep_buy_skincar',
  'buy_skincar_ive',
  'skincar_ive_even',
  'ive_even_hospitalis',
  'even_hospitalis_year',
  'hospitalis_year_due',
  'year_due_huge',
  'due_huge_flare',
  'huge_flare_run',
  'flare_run_product',
  'run_product_take',
  'product_take_serious',
  'take_serious_know',
  'serious_know_els',
  'know_els_ive',
  'els_ive_alreadi',
  'ive_alreadi_tri',
  'alreadi_tri_ask',
  'tri_ask_asshol',
  'ask_asshol_updat',
  'asshol_updat_wow',
  'updat_wow_think',
  'wow_think_go',
  'think_go_get',
  'go_get_much',
  'get_much_respons',
  'much_respons_thank',
  'respons_thank_guy',
  'thank_guy_shatter',
  'guy_shatter_rose',
  'shatter_rose_tint',
  'rose_tint_glass',
  'tint_glass_talk',
  'glass_talk_one',
  'talk_one_friend',
  'one_friend_said',
  'friend_said_idea',
  'said_idea_take',
  'idea_take_$',
  'take_$_product',
  '$_product_explain',
  'product_explain_thought',
  'explain_thought_harsh',
  'thought_harsh_unfortun',
  'harsh_unfortun_share',
  'unfortun_share_friend',
  'share_friend_group',
  'friend_group_break',
  'group_break_look',
  'break_look_realli',
  'look_realli_hard',
  'realli_hard_sat',
  'hard_sat_talk',
  'sat_talk_tri',
  'talk_tri_convey',
  'tri_convey_trust',
  'convey_trust_anymor',
  'trust_anymor_import',
  'anymor_import_skin',
  'import_skin_care',
  'skin_care_convers',
  'care_convers_went',
  'convers_went_time',
  'went_time_actual',
  'time_actual_thought',
  'actual_thought_may',
  'thought_may_turn',
  'may_turn_new',
  'turn_new_leaf',
  'new_leaf_told',
  'leaf_told_first',
  'told_first_year',
  'first_year_togeth',
  'year_togeth_coupl',
  'togeth_coupl_flare',
  'coupl_flare_find',
  'flare_find_good',
  'find_good_product',
  'good_product_work',
  'product_work_take',
  'work_take_oral',
  'take_oral_steroid',
  'oral_steroid_prescrib',
  'steroid_prescrib_think',
  'prescrib_think_would',
  'think_would_make',
  'would_make_buff',
  'make_buff_gym',
  'buff_gym_whole',
  'gym_whole_year',
  'whole_year_battl',
  'year_battl_insecur',
  'battl_insecur_unbear',
  'insecur_unbear_pain',
  'unbear_pain_abl',
  'pain_abl_overcom',
  'abl_overcom_flare',
  'overcom_flare_honestli',
  'flare_honestli_thing',
  'honestli_thing_snap',
  'thing_snap_complet',
  'snap_complet_im',
  'complet_im_stay',
  'im_stay_friend',
  'stay_friend_hous',
  'friend_hous_week',
  'hous_week_let',
  'week_let_pack',
  'let_pack_thing',
  'pack_thing_figur',
  'thing_figur_place',
  'figur_place_go',
  'place_go_thank',
  'go_thank_everyon',
  'thank_everyon_kind',
  'everyon_kind_help',
  'kind_help_realis',
  'help_realis_stupid',
  'realis_stupid_❤️'],
 ['name',
  'rynn',
  'rynn',
  'katherin',
  'ever',
  'sinc',
  'il',
  'met',
  'gotten',
  'idea',
  'actual',
  'name',
  'katherin',
  'rynn',
  'nicknam',
  'ask',
  'introduc',
  'tell',
  'peopl',
  'name',
  'alway',
  'go',
  'back',
  'husband',
  'took',
  'small',
  'break',
  'continu',
  'apolog',
  'seem',
  'better',
  'mil',
  'birthday',
  'invit',
  'celebr',
  'coupl',
  'friend',
  'came',
  'ask',
  'katherin',
  'said',
  'mil',
  'talk',
  'decid',
  'get',
  'littl',
  'bit',
  'jokey',
  'instead',
  'annoy',
  'play',
  'say',
  'mil',
  'forget',
  'sorri',
  'told',
  'wrong',
  'name',
  'ill',
  'need',
  'write',
  'name',
  'everyth',
  'forget',
  'friend',
  'found',
  'funni',
  'told',
  'weird',
  'gave',
  'wrong',
  'name',
  'fil',
  'came',
  'close',
  'end',
  'parti',
  'told',
  'stop',
  'tell',
  'peopl',
  'name',
  'katherin',
  'need',
  'accept',
  'name',
  'claim',
  'rude',
  'aw',
  'tri',
  'embarrass',
  'front',
  'friend',
  'joke',
  'mil',
  'friend',
  'husband',
  'told',
  'listen',
  'say',
  'took',
  'far',
  'mayb',
  'aita',
  'name_rynn',
  'rynn_rynn',
  'rynn_katherin',
  'katherin_ever',
  'ever_sinc',
  'sinc_il',
  'il_met',
  'met_gotten',
  'gotten_idea',
  'idea_actual',
  'actual_name',
  'name_katherin',
  'katherin_rynn',
  'rynn_nicknam',
  'nicknam_ask',
  'ask_introduc',
  'introduc_tell',
  'tell_peopl',
  'peopl_name',
  'name_alway',
  'alway_go',
  'go_back',
  'back_husband',
  'husband_took',
  'took_small',
  'small_break',
  'break_continu',
  'continu_apolog',
  'apolog_seem',
  'seem_better',
  'better_mil',
  'mil_birthday',
  'birthday_invit',
  'invit_celebr',
  'celebr_coupl',
  'coupl_friend',
  'friend_came',
  'came_ask',
  'ask_katherin',
  'katherin_said',
  'said_mil',
  'mil_talk',
  'talk_decid',
  'decid_get',
  'get_littl',
  'littl_bit',
  'bit_jokey',
  'jokey_instead',
  'instead_annoy',
  'annoy_play',
  'play_say',
  'say_mil',
  'mil_forget',
  'forget_sorri',
  'sorri_told',
  'told_wrong',
  'wrong_name',
  'name_ill',
  'ill_need',
  'need_write',
  'write_name',
  'name_everyth',
  'everyth_forget',
  'forget_friend',
  'friend_found',
  'found_funni',
  'funni_told',
  'told_weird',
  'weird_gave',
  'gave_wrong',
  'wrong_name',
  'name_fil',
  'fil_came',
  'came_close',
  'close_end',
  'end_parti',
  'parti_told',
  'told_stop',
  'stop_tell',
  'tell_peopl',
  'peopl_name',
  'name_katherin',
  'katherin_need',
  'need_accept',
  'accept_name',
  'name_claim',
  'claim_rude',
  'rude_aw',
  'aw_tri',
  'tri_embarrass',
  'embarrass_front',
  'front_friend',
  'friend_joke',
  'joke_mil',
  'mil_friend',
  'friend_husband',
  'husband_told',
  'told_listen',
  'listen_say',
  'say_took',
  'took_far',
  'far_mayb',
  'mayb_aita',
  'name_rynn_rynn',
  'rynn_rynn_katherin',
  'rynn_katherin_ever',
  'katherin_ever_sinc',
  'ever_sinc_il',
  'sinc_il_met',
  'il_met_gotten',
  'met_gotten_idea',
  'gotten_idea_actual',
  'idea_actual_name',
  'actual_name_katherin',
  'name_katherin_rynn',
  'katherin_rynn_nicknam',
  'rynn_nicknam_ask',
  'nicknam_ask_introduc',
  'ask_introduc_tell',
  'introduc_tell_peopl',
  'tell_peopl_name',
  'peopl_name_alway',
  'name_alway_go',
  'alway_go_back',
  'go_back_husband',
  'back_husband_took',
  'husband_took_small',
  'took_small_break',
  'small_break_continu',
  'break_continu_apolog',
  'continu_apolog_seem',
  'apolog_seem_better',
  'seem_better_mil',
  'better_mil_birthday',
  'mil_birthday_invit',
  'birthday_invit_celebr',
  'invit_celebr_coupl',
  'celebr_coupl_friend',
  'coupl_friend_came',
  'friend_came_ask',
  'came_ask_katherin',
  'ask_katherin_said',
  'katherin_said_mil',
  'said_mil_talk',
  'mil_talk_decid',
  'talk_decid_get',
  'decid_get_littl',
  'get_littl_bit',
  'littl_bit_jokey',
  'bit_jokey_instead',
  'jokey_instead_annoy',
  'instead_annoy_play',
  'annoy_play_say',
  'play_say_mil',
  'say_mil_forget',
  'mil_forget_sorri',
  'forget_sorri_told',
  'sorri_told_wrong',
  'told_wrong_name',
  'wrong_name_ill',
  'name_ill_need',
  'ill_need_write',
  'need_write_name',
  'write_name_everyth',
  'name_everyth_forget',
  'everyth_forget_friend',
  'forget_friend_found',
  'friend_found_funni',
  'found_funni_told',
  'funni_told_weird',
  'told_weird_gave',
  'weird_gave_wrong',
  'gave_wrong_name',
  'wrong_name_fil',
  'name_fil_came',
  'fil_came_close',
  'came_close_end',
  'close_end_parti',
  'end_parti_told',
  'parti_told_stop',
  'told_stop_tell',
  'stop_tell_peopl',
  'tell_peopl_name',
  'peopl_name_katherin',
  'name_katherin_need',
  'katherin_need_accept',
  'need_accept_name',
  'accept_name_claim',
  'name_claim_rude',
  'claim_rude_aw',
  'rude_aw_tri',
  'aw_tri_embarrass',
  'tri_embarrass_front',
  'embarrass_front_friend',
  'front_friend_joke',
  'friend_joke_mil',
  'joke_mil_friend',
  'mil_friend_husband',
  'friend_husband_told',
  'husband_told_listen',
  'told_listen_say',
  'listen_say_took',
  'say_took_far',
  'took_far_mayb',
  'far_mayb_aita'],
 ['wife',
  'nina',
  'becam',
  'pregnant',
  'son',
  'jason',
  'twenti',
  'admit',
  'unplan',
  'pregnanc',
  'love',
  'son',
  'kept',
  'best',
  'rais',
  'jason',
  'kind',
  'respect',
  'treat',
  'well',
  'thought',
  'succeed',
  'jason',
  'work',
  'hard',
  'attend',
  'elit',
  'univers',
  'jason',
  'first',
  'wife',
  'sara',
  'daughter',
  'simon',
  'unfortun',
  'sara',
  'pass',
  'car',
  'accid',
  'simon',
  'third',
  'birthday',
  'jason',
  'rais',
  'simon',
  'simon',
  'four',
  'time',
  'met',
  'second',
  'wife',
  'move',
  'two',
  'hour',
  'away',
  'simon',
  'live',
  'us',
  'jason',
  'visit',
  'everi',
  'two',
  'month',
  'best',
  'wife',
  'would',
  'stay',
  'day',
  'buy',
  'simon',
  'present',
  'jason',
  'would',
  'say',
  'time',
  'leav',
  'nina',
  'suspect',
  'visit',
  'buy',
  'simon',
  'present',
  'wife',
  'make',
  'wife',
  'iri',
  'love',
  'ladi',
  'insist',
  'simon',
  'move',
  'move',
  'closer',
  'us',
  'want',
  'simon',
  'stepmom',
  'spend',
  'time',
  'jason',
  'shot',
  'idea',
  'say',
  'simon',
  'move',
  'move',
  'would',
  'hurt',
  'career',
  'best',
  'simon',
  'stay',
  'nina',
  'simon',
  'eleven',
  'ador',
  'jason',
  'make',
  'draw',
  'card',
  'constantli',
  'bake',
  'treat',
  'send',
  'devast',
  'daddi',
  'hero',
  'want',
  'spend',
  'time',
  'birthday',
  'juli',
  'cri',
  'jason',
  'call',
  'wish',
  'happi',
  'birthday',
  'iri',
  'tri',
  'lie',
  'simon',
  'make',
  'feel',
  'better',
  'phone',
  'line',
  'went',
  'jason',
  'forget',
  'simon',
  'believ',
  'simon',
  'summer',
  'camp',
  'week',
  'jason',
  'invit',
  'us',
  'parti',
  'celebr',
  'receiv',
  'promot',
  'parti',
  'jason',
  'told',
  'much',
  'money',
  'make',
  'promot',
  'job',
  'titl',
  'ask',
  'proud',
  'old',
  'man',
  'job',
  'titl',
  'elit',
  'univers',
  'alumni',
  'sigh',
  'told',
  'jason',
  'honestli',
  'proud',
  'late',
  'may',
  'well-pay',
  'job',
  'treat',
  'beauti',
  'daughter',
  'matter',
  'simon',
  'littl',
  'girl',
  'love',
  'much',
  'even',
  'seem',
  'care',
  'nina',
  'came',
  'back',
  'drink',
  'jason',
  'told',
  'said',
  'nina',
  'told',
  'agre',
  'treat',
  'simon',
  'right',
  'famili',
  'say',
  'nina',
  'wrong',
  'tell',
  'jason',
  'proud',
  'said',
  'know',
  'much',
  'statement',
  'hurt',
  'age',
  'never',
  'good',
  'enough',
  'father',
  'eye',
  'said',
  'jason',
  'probabl',
  'focus',
  'stabil',
  'career',
  'simon',
  'move',
  'also',
  'said',
  'jason',
  'promot',
  'parti',
  'time',
  'place',
  'call',
  'could',
  'congratul',
  'jason',
  'work',
  'hard',
  'save',
  'drama',
  'anoth',
  'day',
  'feel',
  'said',
  'need',
  'said',
  'famili',
  'disagre',
  'nina',
  'aita',
  'mani',
  'peopl',
  'ask',
  'jason',
  'pay',
  'child',
  'support',
  'believ',
  'pay',
  'child',
  'support',
  'respons',
  'met',
  'jason',
  'told',
  'us',
  'attend',
  'therapi',
  'begin',
  'learn',
  'later',
  'untruth',
  'simon',
  'see',
  'child',
  'psychologist',
  'seem',
  'talk',
  'psychologist',
  'school',
  'friend',
  'rather',
  'jason',
  'mani',
  'comment',
  'also',
  'suggest',
  'simon',
  'could',
  'resembl',
  'sara',
  'caus',
  'mani',
  'bad',
  'memori',
  'jason',
  'could',
  'possibl',
  'simon',
  'also',
  'resembl',
  'sara',
  'simon',
  'look',
  'like',
  'young',
  'version',
  'nina',
  'lighter',
  'skin',
  'slightli',
  'thicker',
  'hair',
  'issu',
  'seem',
  'jason',
  'want',
  'parent',
  'simon',
  'wife_nina',
  'nina_becam',
  'becam_pregnant',
  'pregnant_son',
  'son_jason',
  'jason_twenti',
  'twenti_admit',
  'admit_unplan',
  'unplan_pregnanc',
  'pregnanc_love',
  'love_son',
  'son_kept',
  'kept_best',
  'best_rais',
  'rais_jason',
  'jason_kind',
  'kind_respect',
  'respect_treat',
  'treat_well',
  'well_thought',
  'thought_succeed',
  'succeed_jason',
  'jason_work',
  'work_hard',
  'hard_attend',
  'attend_elit',
  'elit_univers',
  'univers_jason',
  'jason_first',
  'first_wife',
  'wife_sara',
  'sara_daughter',
  'daughter_simon',
  'simon_unfortun',
  'unfortun_sara',
  'sara_pass',
  'pass_car',
  'car_accid',
  'accid_simon',
  'simon_third',
  'third_birthday',
  'birthday_jason',
  'jason_rais',
  'rais_simon',
  'simon_simon',
  'simon_four',
  'four_time',
  'time_met',
  'met_second',
  'second_wife',
  'wife_move',
  'move_two',
  'two_hour',
  'hour_away',
  'away_simon',
  'simon_live',
  'live_us',
  'us_jason',
  'jason_visit',
  'visit_everi',
  'everi_two',
  'two_month',
  'month_best',
  'best_wife',
  'wife_would',
  'would_stay',
  'stay_day',
  'day_buy',
  'buy_simon',
  'simon_present',
  'present_jason',
  'jason_would',
  'would_say',
  'say_time',
  'time_leav',
  'leav_nina',
  'nina_suspect',
  'suspect_visit',
  'visit_buy',
  'buy_simon',
  'simon_present',
  'present_wife',
  'wife_make',
  'make_wife',
  'wife_iri',
  'iri_love',
  'love_ladi',
  'ladi_insist',
  'insist_simon',
  'simon_move',
  'move_move',
  'move_closer',
  'closer_us',
  'us_want',
  'want_simon',
  'simon_stepmom',
  'stepmom_spend',
  'spend_time',
  'time_jason',
  'jason_shot',
  'shot_idea',
  'idea_say',
  'say_simon',
  'simon_move',
  'move_move',
  'move_would',
  'would_hurt',
  'hurt_career',
  'career_best',
  'best_simon',
  'simon_stay',
  'stay_nina',
  'nina_simon',
  'simon_eleven',
  'eleven_ador',
  'ador_jason',
  'jason_make',
  'make_draw',
  'draw_card',
  'card_constantli',
  'constantli_bake',
  'bake_treat',
  'treat_send',
  'send_devast',
  'devast_daddi',
  'daddi_hero',
  'hero_want',
  'want_spend',
  'spend_time',
  'time_birthday',
  'birthday_juli',
  'juli_cri',
  'cri_jason',
  'jason_call',
  'call_wish',
  'wish_happi',
  'happi_birthday',
  'birthday_iri',
  'iri_tri',
  'tri_lie',
  'lie_simon',
  'simon_make',
  'make_feel',
  'feel_better',
  'better_phone',
  'phone_line',
  'line_went',
  'went_jason',
  'jason_forget',
  'forget_simon',
  'simon_believ',
  'believ_simon',
  'simon_summer',
  'summer_camp',
  'camp_week',
  'week_jason',
  'jason_invit',
  'invit_us',
  'us_parti',
  'parti_celebr',
  'celebr_receiv',
  'receiv_promot',
  'promot_parti',
  'parti_jason',
  'jason_told',
  'told_much',
  'much_money',
  'money_make',
  'make_promot',
  'promot_job',
  'job_titl',
  'titl_ask',
  'ask_proud',
  'proud_old',
  'old_man',
  'man_job',
  'job_titl',
  'titl_elit',
  'elit_univers',
  'univers_alumni',
  'alumni_sigh',
  'sigh_told',
  'told_jason',
  'jason_honestli',
  'honestli_proud',
  'proud_late',
  'late_may',
  'may_well-pay',
  'well-pay_job',
  'job_treat',
  'treat_beauti',
  'beauti_daughter',
  'daughter_matter',
  'matter_simon',
  'simon_littl',
  'littl_girl',
  'girl_love',
  'love_much',
  'much_even',
  'even_seem',
  'seem_care',
  'care_nina',
  'nina_came',
  'came_back',
  'back_drink',
  'drink_jason',
  'jason_told',
  'told_said',
  'said_nina',
  'nina_told',
  'told_agre',
  'agre_treat',
  'treat_simon',
  'simon_right',
  'right_famili',
  'famili_say',
  'say_nina',
  'nina_wrong',
  'wrong_tell',
  'tell_jason',
  'jason_proud',
  'proud_said',
  'said_know',
  'know_much',
  'much_statement',
  'statement_hurt',
  'hurt_age',
  'age_never',
  'never_good',
  'good_enough',
  'enough_father',
  'father_eye',
  'eye_said',
  'said_jason',
  'jason_probabl',
  'probabl_focus',
  'focus_stabil',
  'stabil_career',
  'career_simon',
  'simon_move',
  'move_also',
  'also_said',
  'said_jason',
  'jason_promot',
  'promot_parti',
  'parti_time',
  'time_place',
  'place_call',
  'call_could',
  'could_congratul',
  'congratul_jason',
  'jason_work',
  'work_hard',
  'hard_save',
  'save_drama',
  'drama_anoth',
  'anoth_day',
  'day_feel',
  'feel_said',
  'said_need',
  'need_said',
  'said_famili',
  'famili_disagre',
  'disagre_nina',
  'nina_aita',
  'aita_mani',
  'mani_peopl',
  'peopl_ask',
  'ask_jason',
  'jason_pay',
  'pay_child',
  'child_support',
  'support_believ',
  'believ_pay',
  'pay_child',
  'child_support',
  'support_respons',
  'respons_met',
  'met_jason',
  'jason_told',
  'told_us',
  'us_attend',
  'attend_therapi',
  'therapi_begin',
  'begin_learn',
  'learn_later',
  'later_untruth',
  'untruth_simon',
  'simon_see',
  'see_child',
  'child_psychologist',
  'psychologist_seem',
  'seem_talk',
  'talk_psychologist',
  'psychologist_school',
  'school_friend',
  'friend_rather',
  'rather_jason',
  'jason_mani',
  'mani_comment',
  'comment_also',
  'also_suggest',
  'suggest_simon',
  'simon_could',
  'could_resembl',
  'resembl_sara',
  'sara_caus',
  'caus_mani',
  'mani_bad',
  'bad_memori',
  'memori_jason',
  'jason_could',
  'could_possibl',
  'possibl_simon',
  'simon_also',
  'also_resembl',
  'resembl_sara',
  'sara_simon',
  'simon_look',
  'look_like',
  'like_young',
  'young_version',
  'version_nina',
  'nina_lighter',
  'lighter_skin',
  'skin_slightli',
  'slightli_thicker',
  'thicker_hair',
  'hair_issu',
  'issu_seem',
  'seem_jason',
  'jason_want',
  'want_parent',
  'parent_simon',
  'wife_nina_becam',
  'nina_becam_pregnant',
  'becam_pregnant_son',
  'pregnant_son_jason',
  'son_jason_twenti',
  'jason_twenti_admit',
  'twenti_admit_unplan',
  'admit_unplan_pregnanc',
  'unplan_pregnanc_love',
  'pregnanc_love_son',
  'love_son_kept',
  'son_kept_best',
  'kept_best_rais',
  'best_rais_jason',
  'rais_jason_kind',
  'jason_kind_respect',
  'kind_respect_treat',
  'respect_treat_well',
  'treat_well_thought',
  'well_thought_succeed',
  'thought_succeed_jason',
  'succeed_jason_work',
  'jason_work_hard',
  'work_hard_attend',
  'hard_attend_elit',
  'attend_elit_univers',
  'elit_univers_jason',
  'univers_jason_first',
  'jason_first_wife',
  'first_wife_sara',
  'wife_sara_daughter',
  'sara_daughter_simon',
  'daughter_simon_unfortun',
  'simon_unfortun_sara',
  'unfortun_sara_pass',
  'sara_pass_car',
  'pass_car_accid',
  'car_accid_simon',
  'accid_simon_third',
  'simon_third_birthday',
  'third_birthday_jason',
  'birthday_jason_rais',
  'jason_rais_simon',
  'rais_simon_simon',
  'simon_simon_four',
  'simon_four_time',
  'four_time_met',
  'time_met_second',
  'met_second_wife',
  'second_wife_move',
  'wife_move_two',
  'move_two_hour',
  'two_hour_away',
  'hour_away_simon',
  'away_simon_live',
  'simon_live_us',
  'live_us_jason',
  'us_jason_visit',
  'jason_visit_everi',
  'visit_everi_two',
  'everi_two_month',
  'two_month_best',
  'month_best_wife',
  'best_wife_would',
  'wife_would_stay',
  'would_stay_day',
  'stay_day_buy',
  'day_buy_simon',
  'buy_simon_present',
  'simon_present_jason',
  'present_jason_would',
  'jason_would_say',
  'would_say_time',
  'say_time_leav',
  'time_leav_nina',
  'leav_nina_suspect',
  'nina_suspect_visit',
  'suspect_visit_buy',
  'visit_buy_simon',
  'buy_simon_present',
  'simon_present_wife',
  'present_wife_make',
  'wife_make_wife',
  'make_wife_iri',
  'wife_iri_love',
  'iri_love_ladi',
  'love_ladi_insist',
  'ladi_insist_simon',
  'insist_simon_move',
  'simon_move_move',
  'move_move_closer',
  'move_closer_us',
  'closer_us_want',
  'us_want_simon',
  'want_simon_stepmom',
  'simon_stepmom_spend',
  'stepmom_spend_time',
  'spend_time_jason',
  'time_jason_shot',
  'jason_shot_idea',
  'shot_idea_say',
  'idea_say_simon',
  'say_simon_move',
  'simon_move_move',
  'move_move_would',
  'move_would_hurt',
  'would_hurt_career',
  'hurt_career_best',
  'career_best_simon',
  'best_simon_stay',
  'simon_stay_nina',
  'stay_nina_simon',
  'nina_simon_eleven',
  'simon_eleven_ador',
  'eleven_ador_jason',
  'ador_jason_make',
  'jason_make_draw',
  'make_draw_card',
  'draw_card_constantli',
  'card_constantli_bake',
  'constantli_bake_treat',
  'bake_treat_send',
  'treat_send_devast',
  'send_devast_daddi',
  'devast_daddi_hero',
  'daddi_hero_want',
  'hero_want_spend',
  'want_spend_time',
  'spend_time_birthday',
  'time_birthday_juli',
  'birthday_juli_cri',
  'juli_cri_jason',
  'cri_jason_call',
  'jason_call_wish',
  'call_wish_happi',
  'wish_happi_birthday',
  'happi_birthday_iri',
  'birthday_iri_tri',
  'iri_tri_lie',
  'tri_lie_simon',
  'lie_simon_make',
  'simon_make_feel',
  'make_feel_better',
  'feel_better_phone',
  'better_phone_line',
  'phone_line_went',
  'line_went_jason',
  'went_jason_forget',
  'jason_forget_simon',
  'forget_simon_believ',
  'simon_believ_simon',
  'believ_simon_summer',
  'simon_summer_camp',
  'summer_camp_week',
  'camp_week_jason',
  'week_jason_invit',
  'jason_invit_us',
  'invit_us_parti',
  'us_parti_celebr',
  'parti_celebr_receiv',
  'celebr_receiv_promot',
  'receiv_promot_parti',
  'promot_parti_jason',
  'parti_jason_told',
  'jason_told_much',
  'told_much_money',
  'much_money_make',
  'money_make_promot',
  'make_promot_job',
  'promot_job_titl',
  'job_titl_ask',
  'titl_ask_proud',
  'ask_proud_old',
  'proud_old_man',
  'old_man_job',
  'man_job_titl',
  'job_titl_elit',
  'titl_elit_univers',
  'elit_univers_alumni',
  'univers_alumni_sigh',
  'alumni_sigh_told',
  'sigh_told_jason',
  'told_jason_honestli',
  'jason_honestli_proud',
  'honestli_proud_late',
  'proud_late_may',
  'late_may_well-pay',
  'may_well-pay_job',
  'well-pay_job_treat',
  'job_treat_beauti',
  'treat_beauti_daughter',
  'beauti_daughter_matter',
  'daughter_matter_simon',
  'matter_simon_littl',
  'simon_littl_girl',
  'littl_girl_love',
  'girl_love_much',
  'love_much_even',
  'much_even_seem',
  'even_seem_care',
  'seem_care_nina',
  'care_nina_came',
  'nina_came_back',
  'came_back_drink',
  'back_drink_jason',
  'drink_jason_told',
  'jason_told_said',
  'told_said_nina',
  'said_nina_told',
  'nina_told_agre',
  'told_agre_treat',
  'agre_treat_simon',
  'treat_simon_right',
  'simon_right_famili',
  'right_famili_say',
  'famili_say_nina',
  'say_nina_wrong',
  'nina_wrong_tell',
  'wrong_tell_jason',
  'tell_jason_proud',
  'jason_proud_said',
  'proud_said_know',
  'said_know_much',
  'know_much_statement',
  'much_statement_hurt',
  'statement_hurt_age',
  'hurt_age_never',
  'age_never_good',
  'never_good_enough',
  'good_enough_father',
  'enough_father_eye',
  'father_eye_said',
  'eye_said_jason',
  'said_jason_probabl',
  'jason_probabl_focus',
  'probabl_focus_stabil',
  'focus_stabil_career',
  'stabil_career_simon',
  'career_simon_move',
  'simon_move_also',
  'move_also_said',
  'also_said_jason',
  'said_jason_promot',
  'jason_promot_parti',
  'promot_parti_time',
  'parti_time_place',
  'time_place_call',
  'place_call_could',
  'call_could_congratul',
  'could_congratul_jason',
  'congratul_jason_work',
  'jason_work_hard',
  'work_hard_save',
  'hard_save_drama',
  'save_drama_anoth',
  'drama_anoth_day',
  'anoth_day_feel',
  'day_feel_said',
  'feel_said_need',
  'said_need_said',
  'need_said_famili',
  'said_famili_disagre',
  'famili_disagre_nina',
  'disagre_nina_aita',
  'nina_aita_mani',
  'aita_mani_peopl',
  'mani_peopl_ask',
  'peopl_ask_jason',
  'ask_jason_pay',
  'jason_pay_child',
  'pay_child_support',
  'child_support_believ',
  'support_believ_pay',
  'believ_pay_child',
  'pay_child_support',
  'child_support_respons',
  'support_respons_met',
  'respons_met_jason',
  'met_jason_told',
  'jason_told_us',
  'told_us_attend',
  'us_attend_therapi',
  'attend_therapi_begin',
  'therapi_begin_learn',
  'begin_learn_later',
  'learn_later_untruth',
  'later_untruth_simon',
  'untruth_simon_see',
  'simon_see_child',
  'see_child_psychologist',
  'child_psychologist_seem',
  'psychologist_seem_talk',
  'seem_talk_psychologist',
  'talk_psychologist_school',
  'psychologist_school_friend',
  'school_friend_rather',
  'friend_rather_jason',
  'rather_jason_mani',
  'jason_mani_comment',
  'mani_comment_also',
  'comment_also_suggest',
  'also_suggest_simon',
  'suggest_simon_could',
  'simon_could_resembl',
  'could_resembl_sara',
  'resembl_sara_caus',
  'sara_caus_mani',
  'caus_mani_bad',
  'mani_bad_memori',
  'bad_memori_jason',
  'memori_jason_could',
  'jason_could_possibl',
  'could_possibl_simon',
  'possibl_simon_also',
  'simon_also_resembl',
  'also_resembl_sara',
  'resembl_sara_simon',
  'sara_simon_look',
  'simon_look_like',
  'look_like_young',
  'like_young_version',
  'young_version_nina',
  'version_nina_lighter',
  'nina_lighter_skin',
  'lighter_skin_slightli',
  'skin_slightli_thicker',
  'slightli_thicker_hair',
  'thicker_hair_issu',
  'hair_issu_seem',
  'issu_seem_jason',
  'seem_jason_want',
  ...],
 ['stbh',
  'get',
  'marri',
  'soon',
  'wed',
  'plan',
  'far',
  'go',
  'alright',
  'except',
  'thing',
  'argu',
  'like',
  'venu',
  'flower',
  'girl',
  'weve',
  'argu',
  'wed',
  'dress',
  'might',
  'sound',
  'clichè',
  'eversinc',
  'young',
  'dream',
  'beauti',
  'wed',
  'dress',
  'afford',
  'stbh',
  'think',
  'okay',
  'wast',
  'coupl',
  'thousand',
  'dress',
  'im',
  'go',
  'wear',
  '--',
  'ye',
  'might',
  'point',
  'one',
  'typic',
  'price',
  'wed',
  'dress',
  'two',
  'life',
  'time',
  'thing',
  'make',
  'sure',
  'special',
  'stbh',
  'still',
  'convinc',
  'suggest',
  'rent',
  'dress',
  'instead',
  'buy',
  'one',
  'start',
  'say',
  'im',
  'irrispons',
  'money',
  'brought',
  'much',
  'money',
  'ive',
  'alreadi',
  'put',
  'asid',
  'rent',
  'face',
  'mean',
  'makeup',
  'wear',
  'fake',
  'hair',
  'mean',
  'extens',
  'vision',
  'want',
  'tolook',
  'like',
  'sort',
  'speak',
  'wed',
  'think',
  'right',
  'bride',
  'went',
  'ahead',
  'purchas',
  'dress',
  'day',
  'later',
  'found',
  'miss',
  'closet',
  'freak',
  'told',
  'return',
  'got',
  'money',
  'back',
  'shock',
  'ask',
  'said',
  'thought',
  'dress',
  'ridicul',
  'expens',
  'wast',
  'money',
  'suggest',
  'go',
  'rent',
  'one',
  'blew',
  'went',
  'ive',
  'never',
  'done',
  'liter',
  'took',
  'step',
  'back',
  'told',
  'calm',
  'said',
  'right',
  'im',
  'one',
  'pay',
  'damn',
  'dress',
  'got',
  'upset',
  'said',
  'im',
  'pay',
  'marriag',
  'attitud',
  'set',
  'tone',
  'type',
  'dynam',
  'well',
  'marriag',
  'kept',
  'must',
  'expect',
  'pay',
  'everyth',
  'keep',
  'money',
  'spend',
  'irrespons',
  'never',
  'tell',
  'spend',
  'money',
  'respond',
  'get',
  'zero',
  'say',
  'spend',
  'money',
  'whatsoev',
  'told',
  'grow',
  'stop',
  'dream',
  'wed',
  'dress',
  'clichè',
  'storm',
  'call',
  'mom',
  'chew',
  'say',
  'let',
  'ruin',
  'son',
  'financi',
  'stabil',
  'deal',
  'money',
  'gener',
  'urg',
  'rent',
  'dress',
  'buy',
  'cheaper',
  'one',
  'way',
  'cheaper',
  'one',
  'pick',
  'move',
  'declin',
  'eta',
  'repeat',
  'question',
  'ye',
  'still',
  'money',
  'said',
  'hell',
  'give',
  'back',
  'agre',
  'solut',
  'stbh_get',
  'get_marri',
  'marri_soon',
  'soon_wed',
  'wed_plan',
  'plan_far',
  'far_go',
  'go_alright',
  'alright_except',
  'except_thing',
  'thing_argu',
  'argu_like',
  'like_venu',
  'venu_flower',
  'flower_girl',
  'girl_weve',
  'weve_argu',
  'argu_wed',
  'wed_dress',
  'dress_might',
  'might_sound',
  'sound_clichè',
  'clichè_eversinc',
  'eversinc_young',
  'young_dream',
  'dream_beauti',
  'beauti_wed',
  'wed_dress',
  'dress_afford',
  'afford_stbh',
  'stbh_think',
  'think_okay',
  'okay_wast',
  'wast_coupl',
  'coupl_thousand',
  'thousand_dress',
  'dress_im',
  'im_go',
  'go_wear',
  'wear_--',
  '--_ye',
  'ye_might',
  'might_point',
  'point_one',
  'one_typic',
  'typic_price',
  'price_wed',
  'wed_dress',
  'dress_two',
  'two_life',
  'life_time',
  'time_thing',
  'thing_make',
  'make_sure',
  'sure_special',
  'special_stbh',
  'stbh_still',
  'still_convinc',
  'convinc_suggest',
  'suggest_rent',
  'rent_dress',
  'dress_instead',
  'instead_buy',
  'buy_one',
  'one_start',
  'start_say',
  'say_im',
  'im_irrispons',
  'irrispons_money',
  'money_brought',
  'brought_much',
  'much_money',
  'money_ive',
  'ive_alreadi',
  'alreadi_put',
  'put_asid',
  'asid_rent',
  'rent_face',
  'face_mean',
  'mean_makeup',
  'makeup_wear',
  'wear_fake',
  'fake_hair',
  'hair_mean',
  'mean_extens',
  'extens_vision',
  'vision_want',
  'want_tolook',
  'tolook_like',
  'like_sort',
  'sort_speak',
  'speak_wed',
  'wed_think',
  'think_right',
  'right_bride',
  'bride_went',
  'went_ahead',
  'ahead_purchas',
  'purchas_dress',
  'dress_day',
  'day_later',
  'later_found',
  'found_miss',
  'miss_closet',
  'closet_freak',
  'freak_told',
  'told_return',
  'return_got',
  'got_money',
  'money_back',
  'back_shock',
  'shock_ask',
  'ask_said',
  'said_thought',
  'thought_dress',
  'dress_ridicul',
  'ridicul_expens',
  'expens_wast',
  'wast_money',
  'money_suggest',
  'suggest_go',
  'go_rent',
  'rent_one',
  'one_blew',
  'blew_went',
  'went_ive',
  'ive_never',
  'never_done',
  'done_liter',
  'liter_took',
  'took_step',
  'step_back',
  'back_told',
  'told_calm',
  'calm_said',
  'said_right',
  'right_im',
  'im_one',
  'one_pay',
  'pay_damn',
  'damn_dress',
  'dress_got',
  'got_upset',
  'upset_said',
  'said_im',
  'im_pay',
  'pay_marriag',
  'marriag_attitud',
  'attitud_set',
  'set_tone',
  'tone_type',
  'type_dynam',
  'dynam_well',
  'well_marriag',
  'marriag_kept',
  'kept_must',
  'must_expect',
  'expect_pay',
  'pay_everyth',
  'everyth_keep',
  'keep_money',
  'money_spend',
  'spend_irrespons',
  'irrespons_never',
  'never_tell',
  'tell_spend',
  'spend_money',
  'money_respond',
  'respond_get',
  'get_zero',
  'zero_say',
  'say_spend',
  'spend_money',
  'money_whatsoev',
  'whatsoev_told',
  'told_grow',
  'grow_stop',
  'stop_dream',
  'dream_wed',
  'wed_dress',
  'dress_clichè',
  'clichè_storm',
  'storm_call',
  'call_mom',
  'mom_chew',
  'chew_say',
  'say_let',
  'let_ruin',
  'ruin_son',
  'son_financi',
  'financi_stabil',
  'stabil_deal',
  'deal_money',
  'money_gener',
  'gener_urg',
  'urg_rent',
  'rent_dress',
  'dress_buy',
  'buy_cheaper',
  'cheaper_one',
  'one_way',
  'way_cheaper',
  'cheaper_one',
  'one_pick',
  'pick_move',
  'move_declin',
  'declin_eta',
  'eta_repeat',
  'repeat_question',
  'question_ye',
  'ye_still',
  'still_money',
  'money_said',
  'said_hell',
  'hell_give',
  'give_back',
  'back_agre',
  'agre_solut',
  'stbh_get_marri',
  'get_marri_soon',
  'marri_soon_wed',
  'soon_wed_plan',
  'wed_plan_far',
  'plan_far_go',
  'far_go_alright',
  'go_alright_except',
  'alright_except_thing',
  'except_thing_argu',
  'thing_argu_like',
  'argu_like_venu',
  'like_venu_flower',
  'venu_flower_girl',
  'flower_girl_weve',
  'girl_weve_argu',
  'weve_argu_wed',
  'argu_wed_dress',
  'wed_dress_might',
  'dress_might_sound',
  'might_sound_clichè',
  'sound_clichè_eversinc',
  'clichè_eversinc_young',
  'eversinc_young_dream',
  'young_dream_beauti',
  'dream_beauti_wed',
  'beauti_wed_dress',
  'wed_dress_afford',
  'dress_afford_stbh',
  'afford_stbh_think',
  'stbh_think_okay',
  'think_okay_wast',
  'okay_wast_coupl',
  'wast_coupl_thousand',
  'coupl_thousand_dress',
  'thousand_dress_im',
  'dress_im_go',
  'im_go_wear',
  'go_wear_--',
  'wear_--_ye',
  '--_ye_might',
  'ye_might_point',
  'might_point_one',
  'point_one_typic',
  'one_typic_price',
  'typic_price_wed',
  'price_wed_dress',
  'wed_dress_two',
  'dress_two_life',
  'two_life_time',
  'life_time_thing',
  'time_thing_make',
  'thing_make_sure',
  'make_sure_special',
  'sure_special_stbh',
  'special_stbh_still',
  'stbh_still_convinc',
  'still_convinc_suggest',
  'convinc_suggest_rent',
  'suggest_rent_dress',
  'rent_dress_instead',
  'dress_instead_buy',
  'instead_buy_one',
  'buy_one_start',
  'one_start_say',
  'start_say_im',
  'say_im_irrispons',
  'im_irrispons_money',
  'irrispons_money_brought',
  'money_brought_much',
  'brought_much_money',
  'much_money_ive',
  'money_ive_alreadi',
  'ive_alreadi_put',
  'alreadi_put_asid',
  'put_asid_rent',
  'asid_rent_face',
  'rent_face_mean',
  'face_mean_makeup',
  'mean_makeup_wear',
  'makeup_wear_fake',
  'wear_fake_hair',
  'fake_hair_mean',
  'hair_mean_extens',
  'mean_extens_vision',
  'extens_vision_want',
  'vision_want_tolook',
  'want_tolook_like',
  'tolook_like_sort',
  'like_sort_speak',
  'sort_speak_wed',
  'speak_wed_think',
  'wed_think_right',
  'think_right_bride',
  'right_bride_went',
  'bride_went_ahead',
  'went_ahead_purchas',
  'ahead_purchas_dress',
  'purchas_dress_day',
  'dress_day_later',
  'day_later_found',
  'later_found_miss',
  'found_miss_closet',
  'miss_closet_freak',
  'closet_freak_told',
  'freak_told_return',
  'told_return_got',
  'return_got_money',
  'got_money_back',
  'money_back_shock',
  'back_shock_ask',
  'shock_ask_said',
  'ask_said_thought',
  'said_thought_dress',
  'thought_dress_ridicul',
  'dress_ridicul_expens',
  'ridicul_expens_wast',
  'expens_wast_money',
  'wast_money_suggest',
  'money_suggest_go',
  'suggest_go_rent',
  'go_rent_one',
  'rent_one_blew',
  'one_blew_went',
  'blew_went_ive',
  'went_ive_never',
  'ive_never_done',
  'never_done_liter',
  'done_liter_took',
  'liter_took_step',
  'took_step_back',
  'step_back_told',
  'back_told_calm',
  'told_calm_said',
  'calm_said_right',
  'said_right_im',
  'right_im_one',
  'im_one_pay',
  'one_pay_damn',
  'pay_damn_dress',
  'damn_dress_got',
  'dress_got_upset',
  'got_upset_said',
  'upset_said_im',
  'said_im_pay',
  'im_pay_marriag',
  'pay_marriag_attitud',
  'marriag_attitud_set',
  'attitud_set_tone',
  'set_tone_type',
  'tone_type_dynam',
  'type_dynam_well',
  'dynam_well_marriag',
  'well_marriag_kept',
  'marriag_kept_must',
  'kept_must_expect',
  'must_expect_pay',
  'expect_pay_everyth',
  'pay_everyth_keep',
  'everyth_keep_money',
  'keep_money_spend',
  'money_spend_irrespons',
  'spend_irrespons_never',
  'irrespons_never_tell',
  'never_tell_spend',
  'tell_spend_money',
  'spend_money_respond',
  'money_respond_get',
  'respond_get_zero',
  'get_zero_say',
  'zero_say_spend',
  'say_spend_money',
  'spend_money_whatsoev',
  'money_whatsoev_told',
  'whatsoev_told_grow',
  'told_grow_stop',
  'grow_stop_dream',
  'stop_dream_wed',
  'dream_wed_dress',
  'wed_dress_clichè',
  'dress_clichè_storm',
  'clichè_storm_call',
  'storm_call_mom',
  'call_mom_chew',
  'mom_chew_say',
  'chew_say_let',
  'say_let_ruin',
  'let_ruin_son',
  'ruin_son_financi',
  'son_financi_stabil',
  'financi_stabil_deal',
  'stabil_deal_money',
  'deal_money_gener',
  'money_gener_urg',
  'gener_urg_rent',
  'urg_rent_dress',
  'rent_dress_buy',
  'dress_buy_cheaper',
  'buy_cheaper_one',
  'cheaper_one_way',
  'one_way_cheaper',
  'way_cheaper_one',
  'cheaper_one_pick',
  'one_pick_move',
  'pick_move_declin',
  'move_declin_eta',
  'declin_eta_repeat',
  'eta_repeat_question',
  'repeat_question_ye',
  'question_ye_still',
  'ye_still_money',
  'still_money_said',
  'money_said_hell',
  'said_hell_give',
  'hell_give_back',
  'give_back_agre',
  'back_agre_solut'],
 ['im',
  'new',
  'reddit',
  'husband',
  'advis',
  'post',
  'help',
  'write',
  'mother',
  '-year-old',
  'daughter',
  'junior',
  'colleg',
  'attend',
  'school',
  'citi',
  'live',
  'daughter',
  'two',
  'friend',
  'live',
  'condominium',
  'friend',
  'pay',
  'below-market',
  'rent',
  'daughter',
  'condo',
  'inherit',
  'parent',
  'intent',
  'would',
  'pass',
  'ownership',
  'daughter',
  'matur',
  'enough',
  'place',
  'daughter',
  'husband',
  'agreement',
  'take',
  'ownership',
  'condo',
  'school',
  'financi',
  'independ',
  'earlier',
  'week',
  'daughter',
  'mention',
  'run',
  'household',
  'suppli',
  'would',
  'set',
  'asid',
  'time',
  'go',
  'shop',
  'end',
  'week',
  'daughter',
  'schedul',
  'especi',
  'rough',
  'late',
  'pick',
  'extra',
  'shift',
  'part',
  'time',
  'job',
  'due',
  'short',
  'staf',
  'want',
  'help',
  'offer',
  'pick',
  'suppli',
  'drop',
  'place',
  'accept',
  'next',
  'day',
  'pick',
  'suppli',
  'took',
  'condo',
  'knew',
  'daughter',
  'class',
  'knock',
  'one',
  'answer',
  'let',
  'front',
  'door',
  'open',
  'live',
  'room',
  'enter',
  'found',
  'one',
  'daughter',
  'roommat',
  'intim',
  'man',
  'live',
  'room',
  'couch',
  'obvious',
  'mortifi',
  'left',
  'suppli',
  'door',
  'left',
  'right',
  'away',
  'say',
  'anyth',
  'daughter',
  'happen',
  'want',
  'put',
  'uncomfort',
  'posit',
  'let',
  'know',
  'drop',
  'suppli',
  'friday',
  'got',
  'angri',
  'email',
  'roommat',
  'parent',
  'im',
  'sure',
  'exactli',
  'told',
  'email',
  'lambast',
  'invad',
  'daughter',
  'privaci',
  'said',
  'wrong',
  'im',
  'daughter',
  'landlord',
  'enter',
  'condo',
  'without',
  'give',
  '-hour',
  'notic',
  'theyr',
  'threaten',
  'take',
  'legal',
  'action',
  'vagu',
  'familiar',
  'requir',
  'think',
  'applic',
  'asshol',
  'situat',
  'feel',
  'bad',
  'happen',
  'also',
  'feel',
  'like',
  'line',
  'edit',
  'daughter',
  'awar',
  'come',
  'drop',
  'suppli',
  'ask',
  'leav',
  'kitchen',
  'adjac',
  'live',
  'room',
  'edit',
  'ask',
  'judgment',
  'whether',
  'violat',
  'law',
  'check',
  'friend',
  'lawyer',
  'think',
  'daughter',
  'gave',
  'explicit',
  'permiss',
  'enter',
  'home',
  'drop',
  'suppli',
  'im',
  'clear',
  'ask',
  'whether',
  'asshol',
  '&',
  'xb',
  'updat',
  'call',
  'text',
  'daughter',
  'ask',
  'discuss',
  'situat',
  'cant',
  'speak',
  'right',
  'roommat',
  'fight',
  'mediat',
  'awar',
  'situat',
  'sent',
  'quick',
  'explan',
  'daughter',
  'notifi',
  'roommat',
  'come',
  'roommat',
  'appar',
  'forgot',
  'man',
  'roommat',
  'boyfriend',
  'freak',
  'contact',
  'parent',
  'scare',
  'would',
  'spill',
  'bean',
  'still',
  'know',
  'exactli',
  'told',
  'parent',
  'assum',
  'full',
  'stori',
  'never',
  'met',
  'roommat',
  'boyfriend',
  'know',
  'roommat',
  'roommat',
  'fight',
  'needless',
  'say',
  'roommat',
  'move',
  'write',
  'comprehens',
  'formal',
  'leas',
  'roommat',
  'protect',
  'honesti',
  'roommat',
  'wonder',
  'anticip',
  'problem',
  'im_new',
  'new_reddit',
  'reddit_husband',
  'husband_advis',
  'advis_post',
  'post_help',
  'help_write',
  'write_mother',
  'mother_-year-old',
  '-year-old_daughter',
  'daughter_junior',
  'junior_colleg',
  'colleg_attend',
  'attend_school',
  'school_citi',
  'citi_live',
  'live_daughter',
  'daughter_two',
  'two_friend',
  'friend_live',
  'live_condominium',
  'condominium_friend',
  'friend_pay',
  'pay_below-market',
  'below-market_rent',
  'rent_daughter',
  'daughter_condo',
  'condo_inherit',
  'inherit_parent',
  'parent_intent',
  'intent_would',
  'would_pass',
  'pass_ownership',
  'ownership_daughter',
  'daughter_matur',
  'matur_enough',
  'enough_place',
  'place_daughter',
  'daughter_husband',
  'husband_agreement',
  'agreement_take',
  'take_ownership',
  'ownership_condo',
  'condo_school',
  'school_financi',
  'financi_independ',
  'independ_earlier',
  'earlier_week',
  'week_daughter',
  'daughter_mention',
  'mention_run',
  'run_household',
  'household_suppli',
  'suppli_would',
  'would_set',
  'set_asid',
  'asid_time',
  'time_go',
  'go_shop',
  'shop_end',
  'end_week',
  'week_daughter',
  'daughter_schedul',
  'schedul_especi',
  'especi_rough',
  'rough_late',
  'late_pick',
  'pick_extra',
  'extra_shift',
  'shift_part',
  'part_time',
  'time_job',
  'job_due',
  'due_short',
  'short_staf',
  'staf_want',
  'want_help',
  'help_offer',
  'offer_pick',
  'pick_suppli',
  'suppli_drop',
  'drop_place',
  'place_accept',
  'accept_next',
  'next_day',
  'day_pick',
  'pick_suppli',
  'suppli_took',
  'took_condo',
  'condo_knew',
  'knew_daughter',
  'daughter_class',
  'class_knock',
  'knock_one',
  'one_answer',
  'answer_let',
  'let_front',
  'front_door',
  'door_open',
  'open_live',
  'live_room',
  'room_enter',
  'enter_found',
  'found_one',
  'one_daughter',
  'daughter_roommat',
  'roommat_intim',
  'intim_man',
  'man_live',
  'live_room',
  'room_couch',
  'couch_obvious',
  'obvious_mortifi',
  'mortifi_left',
  'left_suppli',
  'suppli_door',
  'door_left',
  'left_right',
  'right_away',
  'away_say',
  'say_anyth',
  'anyth_daughter',
  'daughter_happen',
  'happen_want',
  'want_put',
  'put_uncomfort',
  'uncomfort_posit',
  'posit_let',
  'let_know',
  'know_drop',
  'drop_suppli',
  'suppli_friday',
  'friday_got',
  'got_angri',
  'angri_email',
  'email_roommat',
  'roommat_parent',
  'parent_im',
  'im_sure',
  'sure_exactli',
  'exactli_told',
  'told_email',
  'email_lambast',
  'lambast_invad',
  'invad_daughter',
  'daughter_privaci',
  'privaci_said',
  'said_wrong',
  'wrong_im',
  'im_daughter',
  'daughter_landlord',
  'landlord_enter',
  'enter_condo',
  'condo_without',
  'without_give',
  'give_-hour',
  '-hour_notic',
  'notic_theyr',
  'theyr_threaten',
  'threaten_take',
  'take_legal',
  'legal_action',
  'action_vagu',
  'vagu_familiar',
  'familiar_requir',
  'requir_think',
  'think_applic',
  'applic_asshol',
  'asshol_situat',
  'situat_feel',
  'feel_bad',
  'bad_happen',
  'happen_also',
  'also_feel',
  'feel_like',
  'like_line',
  'line_edit',
  'edit_daughter',
  'daughter_awar',
  'awar_come',
  'come_drop',
  'drop_suppli',
  'suppli_ask',
  'ask_leav',
  'leav_kitchen',
  'kitchen_adjac',
  'adjac_live',
  'live_room',
  'room_edit',
  'edit_ask',
  'ask_judgment',
  'judgment_whether',
  'whether_violat',
  'violat_law',
  'law_check',
  'check_friend',
  'friend_lawyer',
  'lawyer_think',
  'think_daughter',
  'daughter_gave',
  'gave_explicit',
  'explicit_permiss',
  'permiss_enter',
  'enter_home',
  'home_drop',
  'drop_suppli',
  'suppli_im',
  'im_clear',
  'clear_ask',
  'ask_whether',
  'whether_asshol',
  'asshol_&',
  '&_xb',
  'xb_updat',
  'updat_call',
  'call_text',
  'text_daughter',
  'daughter_ask',
  'ask_discuss',
  'discuss_situat',
  'situat_cant',
  'cant_speak',
  'speak_right',
  'right_roommat',
  'roommat_fight',
  'fight_mediat',
  'mediat_awar',
  'awar_situat',
  'situat_sent',
  'sent_quick',
  'quick_explan',
  'explan_daughter',
  'daughter_notifi',
  'notifi_roommat',
  'roommat_come',
  'come_roommat',
  'roommat_appar',
  'appar_forgot',
  'forgot_man',
  'man_roommat',
  'roommat_boyfriend',
  'boyfriend_freak',
  'freak_contact',
  'contact_parent',
  'parent_scare',
  'scare_would',
  'would_spill',
  'spill_bean',
  'bean_still',
  'still_know',
  'know_exactli',
  'exactli_told',
  'told_parent',
  'parent_assum',
  'assum_full',
  'full_stori',
  'stori_never',
  'never_met',
  'met_roommat',
  'roommat_boyfriend',
  'boyfriend_know',
  'know_roommat',
  'roommat_roommat',
  'roommat_fight',
  'fight_needless',
  'needless_say',
  'say_roommat',
  'roommat_move',
  'move_write',
  'write_comprehens',
  'comprehens_formal',
  'formal_leas',
  'leas_roommat',
  'roommat_protect',
  'protect_honesti',
  'honesti_roommat',
  'roommat_wonder',
  'wonder_anticip',
  'anticip_problem',
  'im_new_reddit',
  'new_reddit_husband',
  'reddit_husband_advis',
  'husband_advis_post',
  'advis_post_help',
  'post_help_write',
  'help_write_mother',
  'write_mother_-year-old',
  'mother_-year-old_daughter',
  '-year-old_daughter_junior',
  'daughter_junior_colleg',
  'junior_colleg_attend',
  'colleg_attend_school',
  'attend_school_citi',
  'school_citi_live',
  'citi_live_daughter',
  'live_daughter_two',
  'daughter_two_friend',
  'two_friend_live',
  'friend_live_condominium',
  'live_condominium_friend',
  'condominium_friend_pay',
  'friend_pay_below-market',
  'pay_below-market_rent',
  'below-market_rent_daughter',
  'rent_daughter_condo',
  'daughter_condo_inherit',
  'condo_inherit_parent',
  'inherit_parent_intent',
  'parent_intent_would',
  'intent_would_pass',
  'would_pass_ownership',
  'pass_ownership_daughter',
  'ownership_daughter_matur',
  'daughter_matur_enough',
  'matur_enough_place',
  'enough_place_daughter',
  'place_daughter_husband',
  'daughter_husband_agreement',
  'husband_agreement_take',
  'agreement_take_ownership',
  'take_ownership_condo',
  'ownership_condo_school',
  'condo_school_financi',
  'school_financi_independ',
  'financi_independ_earlier',
  'independ_earlier_week',
  'earlier_week_daughter',
  'week_daughter_mention',
  'daughter_mention_run',
  'mention_run_household',
  'run_household_suppli',
  'household_suppli_would',
  'suppli_would_set',
  'would_set_asid',
  'set_asid_time',
  'asid_time_go',
  'time_go_shop',
  'go_shop_end',
  'shop_end_week',
  'end_week_daughter',
  'week_daughter_schedul',
  'daughter_schedul_especi',
  'schedul_especi_rough',
  'especi_rough_late',
  'rough_late_pick',
  'late_pick_extra',
  'pick_extra_shift',
  'extra_shift_part',
  'shift_part_time',
  'part_time_job',
  'time_job_due',
  'job_due_short',
  'due_short_staf',
  'short_staf_want',
  'staf_want_help',
  'want_help_offer',
  'help_offer_pick',
  'offer_pick_suppli',
  'pick_suppli_drop',
  'suppli_drop_place',
  'drop_place_accept',
  'place_accept_next',
  'accept_next_day',
  'next_day_pick',
  'day_pick_suppli',
  'pick_suppli_took',
  'suppli_took_condo',
  'took_condo_knew',
  'condo_knew_daughter',
  'knew_daughter_class',
  'daughter_class_knock',
  'class_knock_one',
  'knock_one_answer',
  'one_answer_let',
  'answer_let_front',
  'let_front_door',
  'front_door_open',
  'door_open_live',
  'open_live_room',
  'live_room_enter',
  'room_enter_found',
  'enter_found_one',
  'found_one_daughter',
  'one_daughter_roommat',
  'daughter_roommat_intim',
  'roommat_intim_man',
  'intim_man_live',
  'man_live_room',
  'live_room_couch',
  'room_couch_obvious',
  'couch_obvious_mortifi',
  'obvious_mortifi_left',
  'mortifi_left_suppli',
  'left_suppli_door',
  'suppli_door_left',
  'door_left_right',
  'left_right_away',
  'right_away_say',
  'away_say_anyth',
  'say_anyth_daughter',
  'anyth_daughter_happen',
  'daughter_happen_want',
  'happen_want_put',
  'want_put_uncomfort',
  'put_uncomfort_posit',
  'uncomfort_posit_let',
  'posit_let_know',
  'let_know_drop',
  'know_drop_suppli',
  'drop_suppli_friday',
  'suppli_friday_got',
  'friday_got_angri',
  'got_angri_email',
  'angri_email_roommat',
  'email_roommat_parent',
  'roommat_parent_im',
  'parent_im_sure',
  'im_sure_exactli',
  'sure_exactli_told',
  'exactli_told_email',
  'told_email_lambast',
  'email_lambast_invad',
  'lambast_invad_daughter',
  'invad_daughter_privaci',
  'daughter_privaci_said',
  'privaci_said_wrong',
  'said_wrong_im',
  'wrong_im_daughter',
  'im_daughter_landlord',
  'daughter_landlord_enter',
  'landlord_enter_condo',
  'enter_condo_without',
  'condo_without_give',
  'without_give_-hour',
  'give_-hour_notic',
  '-hour_notic_theyr',
  'notic_theyr_threaten',
  'theyr_threaten_take',
  'threaten_take_legal',
  'take_legal_action',
  'legal_action_vagu',
  'action_vagu_familiar',
  'vagu_familiar_requir',
  'familiar_requir_think',
  'requir_think_applic',
  'think_applic_asshol',
  'applic_asshol_situat',
  'asshol_situat_feel',
  'situat_feel_bad',
  'feel_bad_happen',
  'bad_happen_also',
  'happen_also_feel',
  'also_feel_like',
  'feel_like_line',
  'like_line_edit',
  'line_edit_daughter',
  'edit_daughter_awar',
  'daughter_awar_come',
  'awar_come_drop',
  'come_drop_suppli',
  'drop_suppli_ask',
  'suppli_ask_leav',
  'ask_leav_kitchen',
  'leav_kitchen_adjac',
  'kitchen_adjac_live',
  'adjac_live_room',
  'live_room_edit',
  'room_edit_ask',
  'edit_ask_judgment',
  'ask_judgment_whether',
  'judgment_whether_violat',
  'whether_violat_law',
  'violat_law_check',
  'law_check_friend',
  'check_friend_lawyer',
  'friend_lawyer_think',
  'lawyer_think_daughter',
  'think_daughter_gave',
  'daughter_gave_explicit',
  'gave_explicit_permiss',
  'explicit_permiss_enter',
  'permiss_enter_home',
  'enter_home_drop',
  'home_drop_suppli',
  'drop_suppli_im',
  'suppli_im_clear',
  'im_clear_ask',
  'clear_ask_whether',
  'ask_whether_asshol',
  'whether_asshol_&',
  'asshol_&_xb',
  '&_xb_updat',
  'xb_updat_call',
  'updat_call_text',
  'call_text_daughter',
  'text_daughter_ask',
  'daughter_ask_discuss',
  'ask_discuss_situat',
  'discuss_situat_cant',
  'situat_cant_speak',
  'cant_speak_right',
  'speak_right_roommat',
  'right_roommat_fight',
  'roommat_fight_mediat',
  'fight_mediat_awar',
  'mediat_awar_situat',
  'awar_situat_sent',
  'situat_sent_quick',
  'sent_quick_explan',
  'quick_explan_daughter',
  'explan_daughter_notifi',
  'daughter_notifi_roommat',
  'notifi_roommat_come',
  'roommat_come_roommat',
  'come_roommat_appar',
  'roommat_appar_forgot',
  'appar_forgot_man',
  'forgot_man_roommat',
  'man_roommat_boyfriend',
  'roommat_boyfriend_freak',
  'boyfriend_freak_contact',
  'freak_contact_parent',
  'contact_parent_scare',
  'parent_scare_would',
  'scare_would_spill',
  'would_spill_bean',
  'spill_bean_still',
  'bean_still_know',
  'still_know_exactli',
  'know_exactli_told',
  'exactli_told_parent',
  'told_parent_assum',
  'parent_assum_full',
  'assum_full_stori',
  'full_stori_never',
  'stori_never_met',
  'never_met_roommat',
  'met_roommat_boyfriend',
  'roommat_boyfriend_know',
  'boyfriend_know_roommat',
  'know_roommat_roommat',
  'roommat_roommat_fight',
  'roommat_fight_needless',
  'fight_needless_say',
  'needless_say_roommat',
  'say_roommat_move',
  'roommat_move_write',
  'move_write_comprehens',
  'write_comprehens_formal',
  'comprehens_formal_leas',
  'formal_leas_roommat',
  'leas_roommat_protect',
  'roommat_protect_honesti',
  'protect_honesti_roommat',
  'honesti_roommat_wonder',
  'roommat_wonder_anticip',
  'wonder_anticip_problem'],
 ['everi',
  'year',
  'famili',
  'spend',
  'christma',
  'hawaii',
  'weve',
  'done',
  'everi',
  'year',
  'sinc',
  'rememb',
  'fun',
  'famili',
  'tradit',
  'husband',
  'kid',
  'reorgan',
  'famili',
  'christma',
  'plan',
  'parent',
  'want',
  'see',
  'kid',
  'christma',
  'decid',
  'would',
  'celebr',
  'christma',
  'parent',
  'new',
  'year',
  'go',
  'hawaii',
  'actual',
  'christma',
  'system',
  'work',
  'us',
  'last',
  'year',
  'last',
  'year',
  'dad',
  'pass',
  'away',
  'around',
  'time',
  'year',
  'hit',
  'mom',
  'hard',
  'obviou',
  'reason',
  'go',
  'hawaii',
  'year',
  'plan',
  'wed',
  'holiday',
  'earli',
  'wed',
  'thanksgiv',
  'mom',
  'wed',
  'christma',
  'hawaii',
  'sinc',
  'kid',
  'miss',
  'last',
  'year',
  'thing',
  'go',
  'well',
  'right',
  'flight',
  'week',
  'said',
  'unsur',
  'said',
  'think',
  'might',
  'better',
  'stay',
  'said',
  'realli',
  'want',
  'spend',
  'christma',
  'famili',
  'felt',
  'like',
  'mom',
  'realli',
  'need',
  'unhappi',
  'made',
  'plan',
  'saw',
  'last',
  'month',
  'alreadi',
  'dad',
  'buy',
  'ticket',
  'hotel',
  'would',
  'incred',
  'unfair',
  'kid',
  'us',
  'go',
  'mom',
  'wed',
  'see',
  'day',
  'got',
  'back',
  'anyway',
  'got',
  'argument',
  'propos',
  'kid',
  'go',
  'hawaii',
  'stay',
  'mom',
  'decid',
  'clearli',
  'upset',
  'go',
  'forgo',
  'famili',
  'christma',
  'tradit',
  'see',
  'famili',
  'mom',
  'im',
  'hawaii',
  'watch',
  'rangl',
  'kid',
  'home',
  'alon',
  'said',
  'text',
  'respond',
  'much',
  'call',
  'talk',
  'minut',
  'want',
  'get',
  'phone',
  'talk',
  'girl',
  'aita',
  'everi_year',
  'year_famili',
  'famili_spend',
  'spend_christma',
  'christma_hawaii',
  'hawaii_weve',
  'weve_done',
  'done_everi',
  'everi_year',
  'year_sinc',
  'sinc_rememb',
  'rememb_fun',
  'fun_famili',
  'famili_tradit',
  'tradit_husband',
  'husband_kid',
  'kid_reorgan',
  'reorgan_famili',
  'famili_christma',
  'christma_plan',
  'plan_parent',
  'parent_want',
  'want_see',
  'see_kid',
  'kid_christma',
  'christma_decid',
  'decid_would',
  'would_celebr',
  'celebr_christma',
  'christma_parent',
  'parent_new',
  'new_year',
  'year_go',
  'go_hawaii',
  'hawaii_actual',
  'actual_christma',
  'christma_system',
  'system_work',
  'work_us',
  'us_last',
  'last_year',
  'year_last',
  'last_year',
  'year_dad',
  'dad_pass',
  'pass_away',
  'away_around',
  'around_time',
  'time_year',
  'year_hit',
  'hit_mom',
  'mom_hard',
  'hard_obviou',
  'obviou_reason',
  'reason_go',
  'go_hawaii',
  'hawaii_year',
  'year_plan',
  'plan_wed',
  'wed_holiday',
  'holiday_earli',
  'earli_wed',
  'wed_thanksgiv',
  'thanksgiv_mom',
  'mom_wed',
  'wed_christma',
  'christma_hawaii',
  'hawaii_sinc',
  'sinc_kid',
  'kid_miss',
  'miss_last',
  'last_year',
  'year_thing',
  'thing_go',
  'go_well',
  'well_right',
  'right_flight',
  'flight_week',
  'week_said',
  'said_unsur',
  'unsur_said',
  'said_think',
  'think_might',
  'might_better',
  'better_stay',
  'stay_said',
  'said_realli',
  'realli_want',
  'want_spend',
  'spend_christma',
  'christma_famili',
  'famili_felt',
  'felt_like',
  'like_mom',
  'mom_realli',
  'realli_need',
  'need_unhappi',
  'unhappi_made',
  'made_plan',
  'plan_saw',
  'saw_last',
  'last_month',
  'month_alreadi',
  'alreadi_dad',
  'dad_buy',
  'buy_ticket',
  'ticket_hotel',
  'hotel_would',
  'would_incred',
  'incred_unfair',
  'unfair_kid',
  'kid_us',
  'us_go',
  'go_mom',
  'mom_wed',
  'wed_see',
  'see_day',
  'day_got',
  'got_back',
  'back_anyway',
  'anyway_got',
  'got_argument',
  'argument_propos',
  'propos_kid',
  'kid_go',
  'go_hawaii',
  'hawaii_stay',
  'stay_mom',
  'mom_decid',
  'decid_clearli',
  'clearli_upset',
  'upset_go',
  'go_forgo',
  'forgo_famili',
  'famili_christma',
  'christma_tradit',
  'tradit_see',
  'see_famili',
  'famili_mom',
  'mom_im',
  'im_hawaii',
  'hawaii_watch',
  'watch_rangl',
  'rangl_kid',
  'kid_home',
  'home_alon',
  'alon_said',
  'said_text',
  'text_respond',
  'respond_much',
  'much_call',
  'call_talk',
  'talk_minut',
  'minut_want',
  'want_get',
  'get_phone',
  'phone_talk',
  'talk_girl',
  'girl_aita',
  'everi_year_famili',
  'year_famili_spend',
  'famili_spend_christma',
  'spend_christma_hawaii',
  'christma_hawaii_weve',
  'hawaii_weve_done',
  'weve_done_everi',
  'done_everi_year',
  'everi_year_sinc',
  'year_sinc_rememb',
  'sinc_rememb_fun',
  'rememb_fun_famili',
  'fun_famili_tradit',
  'famili_tradit_husband',
  'tradit_husband_kid',
  'husband_kid_reorgan',
  'kid_reorgan_famili',
  'reorgan_famili_christma',
  'famili_christma_plan',
  'christma_plan_parent',
  'plan_parent_want',
  'parent_want_see',
  'want_see_kid',
  'see_kid_christma',
  'kid_christma_decid',
  'christma_decid_would',
  'decid_would_celebr',
  'would_celebr_christma',
  'celebr_christma_parent',
  'christma_parent_new',
  'parent_new_year',
  'new_year_go',
  'year_go_hawaii',
  'go_hawaii_actual',
  'hawaii_actual_christma',
  'actual_christma_system',
  'christma_system_work',
  'system_work_us',
  'work_us_last',
  'us_last_year',
  'last_year_last',
  'year_last_year',
  'last_year_dad',
  'year_dad_pass',
  'dad_pass_away',
  'pass_away_around',
  'away_around_time',
  'around_time_year',
  'time_year_hit',
  'year_hit_mom',
  'hit_mom_hard',
  'mom_hard_obviou',
  'hard_obviou_reason',
  'obviou_reason_go',
  'reason_go_hawaii',
  'go_hawaii_year',
  'hawaii_year_plan',
  'year_plan_wed',
  'plan_wed_holiday',
  'wed_holiday_earli',
  'holiday_earli_wed',
  'earli_wed_thanksgiv',
  'wed_thanksgiv_mom',
  'thanksgiv_mom_wed',
  'mom_wed_christma',
  'wed_christma_hawaii',
  'christma_hawaii_sinc',
  'hawaii_sinc_kid',
  'sinc_kid_miss',
  'kid_miss_last',
  'miss_last_year',
  'last_year_thing',
  'year_thing_go',
  'thing_go_well',
  'go_well_right',
  'well_right_flight',
  'right_flight_week',
  'flight_week_said',
  'week_said_unsur',
  'said_unsur_said',
  'unsur_said_think',
  'said_think_might',
  'think_might_better',
  'might_better_stay',
  'better_stay_said',
  'stay_said_realli',
  'said_realli_want',
  'realli_want_spend',
  'want_spend_christma',
  'spend_christma_famili',
  'christma_famili_felt',
  'famili_felt_like',
  'felt_like_mom',
  'like_mom_realli',
  'mom_realli_need',
  'realli_need_unhappi',
  'need_unhappi_made',
  'unhappi_made_plan',
  'made_plan_saw',
  'plan_saw_last',
  'saw_last_month',
  'last_month_alreadi',
  'month_alreadi_dad',
  'alreadi_dad_buy',
  'dad_buy_ticket',
  'buy_ticket_hotel',
  'ticket_hotel_would',
  'hotel_would_incred',
  'would_incred_unfair',
  'incred_unfair_kid',
  'unfair_kid_us',
  'kid_us_go',
  'us_go_mom',
  'go_mom_wed',
  'mom_wed_see',
  'wed_see_day',
  'see_day_got',
  'day_got_back',
  'got_back_anyway',
  'back_anyway_got',
  'anyway_got_argument',
  'got_argument_propos',
  'argument_propos_kid',
  'propos_kid_go',
  'kid_go_hawaii',
  'go_hawaii_stay',
  'hawaii_stay_mom',
  'stay_mom_decid',
  'mom_decid_clearli',
  'decid_clearli_upset',
  'clearli_upset_go',
  'upset_go_forgo',
  'go_forgo_famili',
  'forgo_famili_christma',
  'famili_christma_tradit',
  'christma_tradit_see',
  'tradit_see_famili',
  'see_famili_mom',
  'famili_mom_im',
  'mom_im_hawaii',
  'im_hawaii_watch',
  'hawaii_watch_rangl',
  'watch_rangl_kid',
  'rangl_kid_home',
  'kid_home_alon',
  'home_alon_said',
  'alon_said_text',
  'said_text_respond',
  'text_respond_much',
  'respond_much_call',
  'much_call_talk',
  'call_talk_minut',
  'talk_minut_want',
  'minut_want_get',
  'want_get_phone',
  'get_phone_talk',
  'phone_talk_girl',
  'talk_girl_aita'],
 ['backstori',
  'kid',
  'el',
  'kati',
  'camm',
  'isla',
  'im',
  'also',
  'current',
  'pregnant',
  'husband',
  'start',
  'ad',
  'colleg',
  'fund',
  'everi',
  'month',
  'kid',
  'pretti',
  'much',
  'soon',
  'found',
  'pregnant',
  'say',
  'exact',
  'amount',
  'husband',
  'excel',
  'job',
  'never',
  'told',
  'kid',
  'feel',
  'necessari',
  'el',
  'got',
  'pregnant',
  'end',
  'drop',
  'school',
  'disappoint',
  'understood',
  'howev',
  'impress',
  'would',
  'return',
  'later',
  'plan',
  'dad',
  'stuck',
  'around',
  'kid',
  'one',
  'way',
  'engag',
  'plan',
  'marri',
  'afford',
  'okay',
  'financi',
  'due',
  'market',
  'right',
  'theyv',
  'struggl',
  'el',
  'cant',
  'get',
  'job',
  'sinc',
  'diploma',
  'weve',
  'loan',
  'money',
  'kati',
  'senior',
  'got',
  'accept',
  'colleg',
  'weve',
  'set',
  'everyth',
  'obvious',
  'know',
  'fund',
  'kati',
  'el',
  'talk',
  'tell',
  'el',
  'school',
  'el',
  'ask',
  'plan',
  'pay',
  'kati',
  'respond',
  'colleg',
  'fund',
  'room',
  'talk',
  'made',
  'panic',
  'plan',
  'split',
  'remain',
  'four',
  'sinc',
  'knew',
  'go',
  'colleg',
  'el',
  'ask',
  'one',
  'go',
  'lie',
  'said',
  'ye',
  'got',
  'realli',
  'excit',
  'went',
  'call',
  'fianc',
  'tell',
  'good',
  'news',
  'confus',
  'told',
  'money',
  'ask',
  'said',
  'school',
  'got',
  'upset',
  'left',
  'hous',
  'next',
  'day',
  'get',
  'call',
  'el',
  'cri',
  'beg',
  'let',
  'fund',
  'could',
  'final',
  'afford',
  'payment',
  'mayb',
  'even',
  'wed',
  'told',
  'could',
  'money',
  'went',
  'back',
  'school',
  'whatev',
  'money',
  'keft',
  'could',
  'use',
  'whatev',
  'want',
  'got',
  'super',
  'mad',
  'start',
  'yell',
  'say',
  'money',
  'told',
  'money',
  'condit',
  'hung',
  'harass',
  'fianc',
  'famili',
  'fortun',
  'us',
  'call',
  'us',
  'asshol',
  'lot',
  'name',
  'say',
  'gon',
  'na',
  'go',
  'wast',
  'use',
  'set',
  'failur',
  'etc',
  'im',
  'wonder',
  'im',
  'asshol',
  'dad',
  'said',
  'give',
  'money',
  'save',
  'asshol',
  'updat',
  'think',
  'within',
  'rule',
  'pleas',
  'correct',
  'daughter',
  'came',
  'thursday',
  'abl',
  'work',
  'thing',
  'apolog',
  'long',
  'discuss',
  'get',
  'ged',
  'go',
  'trade',
  'school',
  'exchang',
  'give',
  'whatev',
  'money',
  'left',
  'decid',
  'one',
  'yet',
  'probabl',
  'cosmetolog',
  'fianc',
  'famili',
  'apolog',
  'also',
  'decid',
  'pay',
  'small',
  'wed',
  'ceremoni',
  'recept',
  'gift',
  'backstori_kid',
  'kid_el',
  'el_kati',
  'kati_camm',
  'camm_isla',
  'isla_im',
  'im_also',
  'also_current',
  'current_pregnant',
  'pregnant_husband',
  'husband_start',
  'start_ad',
  'ad_colleg',
  'colleg_fund',
  'fund_everi',
  'everi_month',
  'month_kid',
  'kid_pretti',
  'pretti_much',
  'much_soon',
  'soon_found',
  'found_pregnant',
  'pregnant_say',
  'say_exact',
  'exact_amount',
  'amount_husband',
  'husband_excel',
  'excel_job',
  'job_never',
  'never_told',
  'told_kid',
  'kid_feel',
  'feel_necessari',
  'necessari_el',
  'el_got',
  'got_pregnant',
  'pregnant_end',
  'end_drop',
  'drop_school',
  'school_disappoint',
  'disappoint_understood',
  'understood_howev',
  'howev_impress',
  'impress_would',
  'would_return',
  'return_later',
  'later_plan',
  'plan_dad',
  'dad_stuck',
  'stuck_around',
  'around_kid',
  'kid_one',
  'one_way',
  'way_engag',
  'engag_plan',
  'plan_marri',
  'marri_afford',
  'afford_okay',
  'okay_financi',
  'financi_due',
  'due_market',
  'market_right',
  'right_theyv',
  'theyv_struggl',
  'struggl_el',
  'el_cant',
  'cant_get',
  'get_job',
  'job_sinc',
  'sinc_diploma',
  'diploma_weve',
  'weve_loan',
  'loan_money',
  'money_kati',
  'kati_senior',
  'senior_got',
  'got_accept',
  'accept_colleg',
  'colleg_weve',
  'weve_set',
  'set_everyth',
  'everyth_obvious',
  'obvious_know',
  'know_fund',
  'fund_kati',
  'kati_el',
  'el_talk',
  'talk_tell',
  'tell_el',
  'el_school',
  'school_el',
  'el_ask',
  'ask_plan',
  'plan_pay',
  'pay_kati',
  'kati_respond',
  'respond_colleg',
  'colleg_fund',
  'fund_room',
  'room_talk',
  'talk_made',
  'made_panic',
  'panic_plan',
  'plan_split',
  'split_remain',
  'remain_four',
  'four_sinc',
  'sinc_knew',
  'knew_go',
  'go_colleg',
  'colleg_el',
  'el_ask',
  'ask_one',
  'one_go',
  'go_lie',
  'lie_said',
  'said_ye',
  'ye_got',
  'got_realli',
  'realli_excit',
  'excit_went',
  'went_call',
  'call_fianc',
  'fianc_tell',
  'tell_good',
  'good_news',
  'news_confus',
  'confus_told',
  'told_money',
  'money_ask',
  'ask_said',
  'said_school',
  'school_got',
  'got_upset',
  'upset_left',
  'left_hous',
  'hous_next',
  'next_day',
  'day_get',
  'get_call',
  'call_el',
  'el_cri',
  'cri_beg',
  'beg_let',
  'let_fund',
  'fund_could',
  'could_final',
  'final_afford',
  'afford_payment',
  'payment_mayb',
  'mayb_even',
  'even_wed',
  'wed_told',
  'told_could',
  'could_money',
  'money_went',
  'went_back',
  'back_school',
  'school_whatev',
  'whatev_money',
  'money_keft',
  'keft_could',
  'could_use',
  'use_whatev',
  'whatev_want',
  'want_got',
  'got_super',
  'super_mad',
  'mad_start',
  'start_yell',
  'yell_say',
  'say_money',
  'money_told',
  'told_money',
  'money_condit',
  'condit_hung',
  'hung_harass',
  'harass_fianc',
  'fianc_famili',
  'famili_fortun',
  'fortun_us',
  'us_call',
  'call_us',
  'us_asshol',
  'asshol_lot',
  'lot_name',
  'name_say',
  'say_gon',
  'gon_na',
  'na_go',
  'go_wast',
  'wast_use',
  'use_set',
  'set_failur',
  'failur_etc',
  'etc_im',
  'im_wonder',
  'wonder_im',
  'im_asshol',
  'asshol_dad',
  'dad_said',
  'said_give',
  'give_money',
  'money_save',
  'save_asshol',
  'asshol_updat',
  'updat_think',
  'think_within',
  'within_rule',
  'rule_pleas',
  'pleas_correct',
  'correct_daughter',
  'daughter_came',
  'came_thursday',
  'thursday_abl',
  'abl_work',
  'work_thing',
  'thing_apolog',
  'apolog_long',
  'long_discuss',
  'discuss_get',
  'get_ged',
  'ged_go',
  'go_trade',
  'trade_school',
  'school_exchang',
  'exchang_give',
  'give_whatev',
  'whatev_money',
  'money_left',
  'left_decid',
  'decid_one',
  'one_yet',
  'yet_probabl',
  'probabl_cosmetolog',
  'cosmetolog_fianc',
  'fianc_famili',
  'famili_apolog',
  'apolog_also',
  'also_decid',
  'decid_pay',
  'pay_small',
  'small_wed',
  'wed_ceremoni',
  'ceremoni_recept',
  'recept_gift',
  'backstori_kid_el',
  'kid_el_kati',
  'el_kati_camm',
  'kati_camm_isla',
  'camm_isla_im',
  'isla_im_also',
  'im_also_current',
  'also_current_pregnant',
  'current_pregnant_husband',
  'pregnant_husband_start',
  'husband_start_ad',
  'start_ad_colleg',
  'ad_colleg_fund',
  'colleg_fund_everi',
  'fund_everi_month',
  'everi_month_kid',
  'month_kid_pretti',
  'kid_pretti_much',
  'pretti_much_soon',
  'much_soon_found',
  'soon_found_pregnant',
  'found_pregnant_say',
  'pregnant_say_exact',
  'say_exact_amount',
  'exact_amount_husband',
  'amount_husband_excel',
  'husband_excel_job',
  'excel_job_never',
  'job_never_told',
  'never_told_kid',
  'told_kid_feel',
  'kid_feel_necessari',
  'feel_necessari_el',
  'necessari_el_got',
  'el_got_pregnant',
  'got_pregnant_end',
  'pregnant_end_drop',
  'end_drop_school',
  'drop_school_disappoint',
  'school_disappoint_understood',
  'disappoint_understood_howev',
  'understood_howev_impress',
  'howev_impress_would',
  'impress_would_return',
  'would_return_later',
  'return_later_plan',
  'later_plan_dad',
  'plan_dad_stuck',
  'dad_stuck_around',
  'stuck_around_kid',
  'around_kid_one',
  'kid_one_way',
  'one_way_engag',
  'way_engag_plan',
  'engag_plan_marri',
  'plan_marri_afford',
  'marri_afford_okay',
  'afford_okay_financi',
  'okay_financi_due',
  'financi_due_market',
  'due_market_right',
  'market_right_theyv',
  'right_theyv_struggl',
  'theyv_struggl_el',
  'struggl_el_cant',
  'el_cant_get',
  'cant_get_job',
  'get_job_sinc',
  'job_sinc_diploma',
  'sinc_diploma_weve',
  'diploma_weve_loan',
  'weve_loan_money',
  'loan_money_kati',
  'money_kati_senior',
  'kati_senior_got',
  'senior_got_accept',
  'got_accept_colleg',
  'accept_colleg_weve',
  'colleg_weve_set',
  'weve_set_everyth',
  'set_everyth_obvious',
  'everyth_obvious_know',
  'obvious_know_fund',
  'know_fund_kati',
  'fund_kati_el',
  'kati_el_talk',
  'el_talk_tell',
  'talk_tell_el',
  'tell_el_school',
  'el_school_el',
  'school_el_ask',
  'el_ask_plan',
  'ask_plan_pay',
  'plan_pay_kati',
  'pay_kati_respond',
  'kati_respond_colleg',
  'respond_colleg_fund',
  'colleg_fund_room',
  'fund_room_talk',
  'room_talk_made',
  'talk_made_panic',
  'made_panic_plan',
  'panic_plan_split',
  'plan_split_remain',
  'split_remain_four',
  'remain_four_sinc',
  'four_sinc_knew',
  'sinc_knew_go',
  'knew_go_colleg',
  'go_colleg_el',
  'colleg_el_ask',
  'el_ask_one',
  'ask_one_go',
  'one_go_lie',
  'go_lie_said',
  'lie_said_ye',
  'said_ye_got',
  'ye_got_realli',
  'got_realli_excit',
  'realli_excit_went',
  'excit_went_call',
  'went_call_fianc',
  'call_fianc_tell',
  'fianc_tell_good',
  'tell_good_news',
  'good_news_confus',
  'news_confus_told',
  'confus_told_money',
  'told_money_ask',
  'money_ask_said',
  'ask_said_school',
  'said_school_got',
  'school_got_upset',
  'got_upset_left',
  'upset_left_hous',
  'left_hous_next',
  'hous_next_day',
  'next_day_get',
  'day_get_call',
  'get_call_el',
  'call_el_cri',
  'el_cri_beg',
  'cri_beg_let',
  'beg_let_fund',
  'let_fund_could',
  'fund_could_final',
  'could_final_afford',
  'final_afford_payment',
  'afford_payment_mayb',
  'payment_mayb_even',
  'mayb_even_wed',
  'even_wed_told',
  'wed_told_could',
  'told_could_money',
  'could_money_went',
  'money_went_back',
  'went_back_school',
  'back_school_whatev',
  'school_whatev_money',
  'whatev_money_keft',
  'money_keft_could',
  'keft_could_use',
  'could_use_whatev',
  'use_whatev_want',
  'whatev_want_got',
  'want_got_super',
  'got_super_mad',
  'super_mad_start',
  'mad_start_yell',
  'start_yell_say',
  'yell_say_money',
  'say_money_told',
  'money_told_money',
  'told_money_condit',
  'money_condit_hung',
  'condit_hung_harass',
  'hung_harass_fianc',
  'harass_fianc_famili',
  'fianc_famili_fortun',
  'famili_fortun_us',
  'fortun_us_call',
  'us_call_us',
  'call_us_asshol',
  'us_asshol_lot',
  'asshol_lot_name',
  'lot_name_say',
  'name_say_gon',
  'say_gon_na',
  'gon_na_go',
  'na_go_wast',
  'go_wast_use',
  'wast_use_set',
  'use_set_failur',
  'set_failur_etc',
  'failur_etc_im',
  'etc_im_wonder',
  'im_wonder_im',
  'wonder_im_asshol',
  'im_asshol_dad',
  'asshol_dad_said',
  'dad_said_give',
  'said_give_money',
  'give_money_save',
  'money_save_asshol',
  'save_asshol_updat',
  'asshol_updat_think',
  'updat_think_within',
  'think_within_rule',
  'within_rule_pleas',
  'rule_pleas_correct',
  'pleas_correct_daughter',
  'correct_daughter_came',
  'daughter_came_thursday',
  'came_thursday_abl',
  'thursday_abl_work',
  'abl_work_thing',
  'work_thing_apolog',
  'thing_apolog_long',
  'apolog_long_discuss',
  'long_discuss_get',
  'discuss_get_ged',
  'get_ged_go',
  'ged_go_trade',
  'go_trade_school',
  'trade_school_exchang',
  'school_exchang_give',
  'exchang_give_whatev',
  'give_whatev_money',
  'whatev_money_left',
  'money_left_decid',
  'left_decid_one',
  'decid_one_yet',
  'one_yet_probabl',
  'yet_probabl_cosmetolog',
  'probabl_cosmetolog_fianc',
  'cosmetolog_fianc_famili',
  'fianc_famili_apolog',
  'famili_apolog_also',
  'apolog_also_decid',
  'also_decid_pay',
  'decid_pay_small',
  'pay_small_wed',
  'small_wed_ceremoni',
  'wed_ceremoni_recept',
  'ceremoni_recept_gift'],
 ['contempl',
  'whether',
  'post',
  'im',
  'curiou',
  'im',
  'half',
  'brother',
  'ethan',
  'mother',
  'marri',
  'new',
  'husband',
  'kid',
  'ethan',
  'father',
  'life',
  'stay',
  'full',
  'time',
  'spend',
  'time',
  'dad',
  'famili',
  'get',
  'along',
  'better',
  'love',
  'mom',
  'bit',
  'much',
  'sometim',
  'rare',
  'see',
  'ethan',
  'text',
  'occasion',
  'mother',
  'birthday',
  'day',
  'ago',
  'visit',
  'notic',
  'ethan',
  'newborn',
  'half',
  'sibl',
  'around',
  'ask',
  'mom',
  'said',
  'ask',
  'ethan',
  'check',
  'babi',
  'took',
  'break',
  'backyard',
  'btw',
  'massiv',
  'yeah',
  'ok',
  'biggi',
  'time',
  'later',
  'still',
  'find',
  'went',
  'ethan',
  'room',
  'rock',
  'babi',
  'inconsol',
  'cri',
  'stop',
  'diaper',
  'babi',
  'formula',
  'everywher',
  'say',
  'tri',
  'everyth',
  'stop',
  'manag',
  'calm',
  'somehow',
  'ask',
  'ethan',
  'call',
  'someon',
  'help',
  'said',
  'usual',
  'realli',
  'good',
  'mom',
  'make',
  'take',
  'care',
  'babi',
  'time',
  'panick',
  'told',
  'help',
  'half',
  'sister',
  'babi',
  'well',
  'still',
  'take',
  'care',
  'realli',
  'upset',
  'mean',
  'ye',
  'noth',
  'wrong',
  'need',
  'break',
  'ethan',
  'year',
  'old',
  'boy',
  'father',
  'mother',
  'appar',
  'take',
  'care',
  'half',
  'sibl',
  'mom',
  'step',
  'dad',
  'walk',
  'mom',
  'talk',
  'group',
  'peopl',
  'basic',
  'told',
  'cant',
  'believ',
  'dump',
  'respons',
  'ethan',
  'knew',
  'talk',
  'immedi',
  'told',
  'relax',
  'ethan',
  'like',
  'blah',
  'blah',
  'told',
  'blast',
  'son',
  'sob',
  'room',
  'overwhelm',
  'got',
  'realli',
  'red',
  'everyon',
  'went',
  'silent',
  'awkward',
  'yeah',
  'later',
  'got',
  'call',
  'mom',
  'say',
  'respect',
  'opinion',
  'situat',
  'need',
  'publicli',
  'humili',
  'front',
  'friend',
  'cowork',
  'appar',
  'boss',
  'cold',
  'idk',
  'cant',
  'get',
  'ethan',
  'head',
  'aita',
  'contempl_whether',
  'whether_post',
  'post_im',
  'im_curiou',
  'curiou_im',
  'im_half',
  'half_brother',
  'brother_ethan',
  'ethan_mother',
  'mother_marri',
  'marri_new',
  'new_husband',
  'husband_kid',
  'kid_ethan',
  'ethan_father',
  'father_life',
  'life_stay',
  'stay_full',
  'full_time',
  'time_spend',
  'spend_time',
  'time_dad',
  'dad_famili',
  'famili_get',
  'get_along',
  'along_better',
  'better_love',
  'love_mom',
  'mom_bit',
  'bit_much',
  'much_sometim',
  'sometim_rare',
  'rare_see',
  'see_ethan',
  'ethan_text',
  'text_occasion',
  'occasion_mother',
  'mother_birthday',
  'birthday_day',
  'day_ago',
  'ago_visit',
  'visit_notic',
  'notic_ethan',
  'ethan_newborn',
  'newborn_half',
  'half_sibl',
  'sibl_around',
  'around_ask',
  'ask_mom',
  'mom_said',
  'said_ask',
  'ask_ethan',
  'ethan_check',
  'check_babi',
  'babi_took',
  'took_break',
  'break_backyard',
  'backyard_btw',
  'btw_massiv',
  'massiv_yeah',
  'yeah_ok',
  'ok_biggi',
  'biggi_time',
  'time_later',
  'later_still',
  'still_find',
  'find_went',
  'went_ethan',
  'ethan_room',
  'room_rock',
  'rock_babi',
  'babi_inconsol',
  'inconsol_cri',
  'cri_stop',
  'stop_diaper',
  'diaper_babi',
  'babi_formula',
  'formula_everywher',
  'everywher_say',
  'say_tri',
  'tri_everyth',
  'everyth_stop',
  'stop_manag',
  'manag_calm',
  'calm_somehow',
  'somehow_ask',
  'ask_ethan',
  'ethan_call',
  'call_someon',
  'someon_help',
  'help_said',
  'said_usual',
  'usual_realli',
  'realli_good',
  'good_mom',
  'mom_make',
  'make_take',
  'take_care',
  'care_babi',
  'babi_time',
  'time_panick',
  'panick_told',
  'told_help',
  'help_half',
  'half_sister',
  'sister_babi',
  'babi_well',
  'well_still',
  'still_take',
  'take_care',
  'care_realli',
  'realli_upset',
  'upset_mean',
  'mean_ye',
  'ye_noth',
  'noth_wrong',
  'wrong_need',
  'need_break',
  'break_ethan',
  'ethan_year',
  'year_old',
  'old_boy',
  'boy_father',
  'father_mother',
  'mother_appar',
  'appar_take',
  'take_care',
  'care_half',
  'half_sibl',
  'sibl_mom',
  'mom_step',
  'step_dad',
  'dad_walk',
  'walk_mom',
  'mom_talk',
  'talk_group',
  'group_peopl',
  'peopl_basic',
  'basic_told',
  'told_cant',
  'cant_believ',
  'believ_dump',
  'dump_respons',
  'respons_ethan',
  'ethan_knew',
  'knew_talk',
  'talk_immedi',
  'immedi_told',
  'told_relax',
  'relax_ethan',
  'ethan_like',
  'like_blah',
  'blah_blah',
  'blah_told',
  'told_blast',
  'blast_son',
  'son_sob',
  'sob_room',
  'room_overwhelm',
  'overwhelm_got',
  'got_realli',
  'realli_red',
  'red_everyon',
  'everyon_went',
  'went_silent',
  'silent_awkward',
  'awkward_yeah',
  'yeah_later',
  'later_got',
  'got_call',
  'call_mom',
  'mom_say',
  'say_respect',
  'respect_opinion',
  'opinion_situat',
  'situat_need',
  'need_publicli',
  'publicli_humili',
  'humili_front',
  'front_friend',
  'friend_cowork',
  'cowork_appar',
  'appar_boss',
  'boss_cold',
  'cold_idk',
  'idk_cant',
  'cant_get',
  'get_ethan',
  'ethan_head',
  'head_aita',
  'contempl_whether_post',
  'whether_post_im',
  'post_im_curiou',
  'im_curiou_im',
  'curiou_im_half',
  'im_half_brother',
  'half_brother_ethan',
  'brother_ethan_mother',
  'ethan_mother_marri',
  'mother_marri_new',
  'marri_new_husband',
  'new_husband_kid',
  'husband_kid_ethan',
  'kid_ethan_father',
  'ethan_father_life',
  'father_life_stay',
  'life_stay_full',
  'stay_full_time',
  'full_time_spend',
  'time_spend_time',
  'spend_time_dad',
  'time_dad_famili',
  'dad_famili_get',
  'famili_get_along',
  'get_along_better',
  'along_better_love',
  'better_love_mom',
  'love_mom_bit',
  'mom_bit_much',
  'bit_much_sometim',
  'much_sometim_rare',
  'sometim_rare_see',
  'rare_see_ethan',
  'see_ethan_text',
  'ethan_text_occasion',
  'text_occasion_mother',
  'occasion_mother_birthday',
  'mother_birthday_day',
  'birthday_day_ago',
  'day_ago_visit',
  'ago_visit_notic',
  'visit_notic_ethan',
  'notic_ethan_newborn',
  'ethan_newborn_half',
  'newborn_half_sibl',
  'half_sibl_around',
  'sibl_around_ask',
  'around_ask_mom',
  'ask_mom_said',
  'mom_said_ask',
  'said_ask_ethan',
  'ask_ethan_check',
  'ethan_check_babi',
  'check_babi_took',
  'babi_took_break',
  'took_break_backyard',
  'break_backyard_btw',
  'backyard_btw_massiv',
  'btw_massiv_yeah',
  'massiv_yeah_ok',
  'yeah_ok_biggi',
  'ok_biggi_time',
  'biggi_time_later',
  'time_later_still',
  'later_still_find',
  'still_find_went',
  'find_went_ethan',
  'went_ethan_room',
  'ethan_room_rock',
  'room_rock_babi',
  'rock_babi_inconsol',
  'babi_inconsol_cri',
  'inconsol_cri_stop',
  'cri_stop_diaper',
  'stop_diaper_babi',
  'diaper_babi_formula',
  'babi_formula_everywher',
  'formula_everywher_say',
  'everywher_say_tri',
  'say_tri_everyth',
  'tri_everyth_stop',
  'everyth_stop_manag',
  'stop_manag_calm',
  'manag_calm_somehow',
  'calm_somehow_ask',
  'somehow_ask_ethan',
  'ask_ethan_call',
  'ethan_call_someon',
  'call_someon_help',
  'someon_help_said',
  'help_said_usual',
  'said_usual_realli',
  'usual_realli_good',
  'realli_good_mom',
  'good_mom_make',
  'mom_make_take',
  'make_take_care',
  'take_care_babi',
  'care_babi_time',
  'babi_time_panick',
  'time_panick_told',
  'panick_told_help',
  'told_help_half',
  'help_half_sister',
  'half_sister_babi',
  'sister_babi_well',
  'babi_well_still',
  'well_still_take',
  'still_take_care',
  'take_care_realli',
  'care_realli_upset',
  'realli_upset_mean',
  'upset_mean_ye',
  'mean_ye_noth',
  'ye_noth_wrong',
  'noth_wrong_need',
  'wrong_need_break',
  'need_break_ethan',
  'break_ethan_year',
  'ethan_year_old',
  'year_old_boy',
  'old_boy_father',
  'boy_father_mother',
  'father_mother_appar',
  'mother_appar_take',
  'appar_take_care',
  'take_care_half',
  'care_half_sibl',
  'half_sibl_mom',
  'sibl_mom_step',
  'mom_step_dad',
  'step_dad_walk',
  'dad_walk_mom',
  'walk_mom_talk',
  'mom_talk_group',
  'talk_group_peopl',
  'group_peopl_basic',
  'peopl_basic_told',
  'basic_told_cant',
  'told_cant_believ',
  'cant_believ_dump',
  'believ_dump_respons',
  'dump_respons_ethan',
  'respons_ethan_knew',
  'ethan_knew_talk',
  'knew_talk_immedi',
  'talk_immedi_told',
  'immedi_told_relax',
  'told_relax_ethan',
  'relax_ethan_like',
  'ethan_like_blah',
  'like_blah_blah',
  'blah_blah_told',
  'blah_told_blast',
  'told_blast_son',
  'blast_son_sob',
  'son_sob_room',
  'sob_room_overwhelm',
  'room_overwhelm_got',
  'overwhelm_got_realli',
  'got_realli_red',
  'realli_red_everyon',
  'red_everyon_went',
  'everyon_went_silent',
  'went_silent_awkward',
  'silent_awkward_yeah',
  'awkward_yeah_later',
  'yeah_later_got',
  'later_got_call',
  'got_call_mom',
  'call_mom_say',
  'mom_say_respect',
  'say_respect_opinion',
  'respect_opinion_situat',
  'opinion_situat_need',
  'situat_need_publicli',
  'need_publicli_humili',
  'publicli_humili_front',
  'humili_front_friend',
  'front_friend_cowork',
  'friend_cowork_appar',
  'cowork_appar_boss',
  'appar_boss_cold',
  'boss_cold_idk',
  'cold_idk_cant',
  'idk_cant_get',
  'cant_get_ethan',
  'get_ethan_head',
  'ethan_head_aita'],
 ['daughter',
  'get',
  'marri',
  'fall',
  'het',
  'dad',
  'suppos',
  'pay',
  'wed',
  'agre',
  'got',
  'save',
  'date',
  'invit',
  'day',
  'put',
  'payment',
  'bank',
  'need',
  'approv',
  'money',
  'paid',
  'yet',
  'wife',
  'invit',
  'wed',
  'divorc',
  'year',
  'marri',
  'wife',
  'year',
  'daughter',
  'never',
  'realli',
  'like',
  'wife',
  'get',
  'along',
  'well',
  'two',
  'kid',
  'love',
  'call',
  'daughter',
  'ask',
  'wife',
  'invit',
  'said',
  'wed',
  'day',
  'want',
  'invit',
  'real',
  'famili',
  'said',
  'well',
  'invit',
  'mom',
  'bf',
  'said',
  'ye',
  'said',
  'well',
  'okay',
  'invit',
  'wife',
  'pay',
  'wed',
  'declin',
  'said',
  'invit',
  'wife',
  'told',
  'ill',
  'cancel',
  'payment',
  'believ',
  'cancel',
  'daughter',
  'super',
  'piss',
  'ex',
  'wife',
  'aita',
  'eta',
  'wife',
  'met',
  'year',
  'divorc',
  'eta',
  'daughter',
  'wife',
  'never',
  'got',
  'along',
  'took',
  'mom',
  'side',
  'divorc',
  'relationship',
  'rocki',
  'ever',
  'sinc',
  'daughter_get',
  'get_marri',
  'marri_fall',
  'fall_het',
  'het_dad',
  'dad_suppos',
  'suppos_pay',
  'pay_wed',
  'wed_agre',
  'agre_got',
  'got_save',
  'save_date',
  'date_invit',
  'invit_day',
  'day_put',
  'put_payment',
  'payment_bank',
  'bank_need',
  'need_approv',
  'approv_money',
  'money_paid',
  'paid_yet',
  'yet_wife',
  'wife_invit',
  'invit_wed',
  'wed_divorc',
  'divorc_year',
  'year_marri',
  'marri_wife',
  'wife_year',
  'year_daughter',
  'daughter_never',
  'never_realli',
  'realli_like',
  'like_wife',
  'wife_get',
  'get_along',
  'along_well',
  'well_two',
  'two_kid',
  'kid_love',
  'love_call',
  'call_daughter',
  'daughter_ask',
  'ask_wife',
  'wife_invit',
  'invit_said',
  'said_wed',
  'wed_day',
  'day_want',
  'want_invit',
  'invit_real',
  'real_famili',
  'famili_said',
  'said_well',
  'well_invit',
  'invit_mom',
  'mom_bf',
  'bf_said',
  'said_ye',
  'ye_said',
  'said_well',
  'well_okay',
  'okay_invit',
  'invit_wife',
  'wife_pay',
  'pay_wed',
  'wed_declin',
  'declin_said',
  'said_invit',
  'invit_wife',
  'wife_told',
  'told_ill',
  'ill_cancel',
  'cancel_payment',
  'payment_believ',
  'believ_cancel',
  'cancel_daughter',
  'daughter_super',
  'super_piss',
  'piss_ex',
  'ex_wife',
  'wife_aita',
  'aita_eta',
  'eta_wife',
  'wife_met',
  'met_year',
  'year_divorc',
  'divorc_eta',
  'eta_daughter',
  'daughter_wife',
  'wife_never',
  'never_got',
  'got_along',
  'along_took',
  'took_mom',
  'mom_side',
  'side_divorc',
  'divorc_relationship',
  'relationship_rocki',
  'rocki_ever',
  'ever_sinc',
  'daughter_get_marri',
  'get_marri_fall',
  'marri_fall_het',
  'fall_het_dad',
  'het_dad_suppos',
  'dad_suppos_pay',
  'suppos_pay_wed',
  'pay_wed_agre',
  'wed_agre_got',
  'agre_got_save',
  'got_save_date',
  'save_date_invit',
  'date_invit_day',
  'invit_day_put',
  'day_put_payment',
  'put_payment_bank',
  'payment_bank_need',
  'bank_need_approv',
  'need_approv_money',
  'approv_money_paid',
  'money_paid_yet',
  'paid_yet_wife',
  'yet_wife_invit',
  'wife_invit_wed',
  'invit_wed_divorc',
  'wed_divorc_year',
  'divorc_year_marri',
  'year_marri_wife',
  'marri_wife_year',
  'wife_year_daughter',
  'year_daughter_never',
  'daughter_never_realli',
  'never_realli_like',
  'realli_like_wife',
  'like_wife_get',
  'wife_get_along',
  'get_along_well',
  'along_well_two',
  'well_two_kid',
  'two_kid_love',
  'kid_love_call',
  'love_call_daughter',
  'call_daughter_ask',
  'daughter_ask_wife',
  'ask_wife_invit',
  'wife_invit_said',
  'invit_said_wed',
  'said_wed_day',
  'wed_day_want',
  'day_want_invit',
  'want_invit_real',
  'invit_real_famili',
  'real_famili_said',
  'famili_said_well',
  'said_well_invit',
  'well_invit_mom',
  'invit_mom_bf',
  'mom_bf_said',
  'bf_said_ye',
  'said_ye_said',
  'ye_said_well',
  'said_well_okay',
  'well_okay_invit',
  'okay_invit_wife',
  'invit_wife_pay',
  'wife_pay_wed',
  'pay_wed_declin',
  'wed_declin_said',
  'declin_said_invit',
  'said_invit_wife',
  'invit_wife_told',
  'wife_told_ill',
  'told_ill_cancel',
  'ill_cancel_payment',
  'cancel_payment_believ',
  'payment_believ_cancel',
  'believ_cancel_daughter',
  'cancel_daughter_super',
  'daughter_super_piss',
  'super_piss_ex',
  'piss_ex_wife',
  'ex_wife_aita',
  'wife_aita_eta',
  'aita_eta_wife',
  'eta_wife_met',
  'wife_met_year',
  'met_year_divorc',
  'year_divorc_eta',
  'divorc_eta_daughter',
  'eta_daughter_wife',
  'daughter_wife_never',
  'wife_never_got',
  'never_got_along',
  'got_along_took',
  'along_took_mom',
  'took_mom_side',
  'mom_side_divorc',
  'side_divorc_relationship',
  'divorc_relationship_rocki',
  'relationship_rocki_ever',
  'rocki_ever_sinc'],
 ['im',
  'week',
  'pregnant',
  'boyfriend',
  'took',
  'week',
  'work',
  'stay',
  'adjust',
  'parent',
  'newborn',
  'first',
  'im',
  'nervou',
  'realli',
  'need',
  'support',
  'right',
  'boyfriend',
  'mother',
  'took',
  'upon',
  'schedul',
  'patern',
  'vacat',
  'boyfriend',
  'last',
  'two',
  'week',
  'leav',
  'came',
  'dinner',
  'surpris',
  'expens',
  'paid',
  'vacat',
  'itali',
  'boyfriend',
  'patern',
  'present',
  'gave',
  'jade',
  'stone',
  'bracelet',
  'match',
  'newborn',
  'one',
  'babi',
  'part',
  'cultur',
  'give',
  'famili',
  'stone',
  'mother',
  'child',
  'enter',
  'famili',
  'kind',
  'howev',
  'told',
  'leav',
  'help',
  'babi',
  'taken',
  'aback',
  'said',
  'would',
  'week',
  'long',
  'enough',
  'husband',
  'never',
  'even',
  'stay',
  'hospit',
  'son',
  'born',
  'told',
  'boyfriend',
  'want',
  'go',
  'ask',
  'first',
  'buy',
  'extraordinari',
  'gift',
  'left',
  'tear',
  'ungrat',
  'ruin',
  'son',
  'experi',
  'boyfriend',
  'pretti',
  'much',
  'agre',
  'go',
  'atleast',
  'week',
  'paid',
  'realli',
  'want',
  'stay',
  'bond',
  'daughter',
  'aita',
  'im_week',
  'week_pregnant',
  'pregnant_boyfriend',
  'boyfriend_took',
  'took_week',
  'week_work',
  'work_stay',
  'stay_adjust',
  'adjust_parent',
  'parent_newborn',
  'newborn_first',
  'first_im',
  'im_nervou',
  'nervou_realli',
  'realli_need',
  'need_support',
  'support_right',
  'right_boyfriend',
  'boyfriend_mother',
  'mother_took',
  'took_upon',
  'upon_schedul',
  'schedul_patern',
  'patern_vacat',
  'vacat_boyfriend',
  'boyfriend_last',
  'last_two',
  'two_week',
  'week_leav',
  'leav_came',
  'came_dinner',
  'dinner_surpris',
  'surpris_expens',
  'expens_paid',
  'paid_vacat',
  'vacat_itali',
  'itali_boyfriend',
  'boyfriend_patern',
  'patern_present',
  'present_gave',
  'gave_jade',
  'jade_stone',
  'stone_bracelet',
  'bracelet_match',
  'match_newborn',
  'newborn_one',
  'one_babi',
  'babi_part',
  'part_cultur',
  'cultur_give',
  'give_famili',
  'famili_stone',
  'stone_mother',
  'mother_child',
  'child_enter',
  'enter_famili',
  'famili_kind',
  'kind_howev',
  'howev_told',
  'told_leav',
  'leav_help',
  'help_babi',
  'babi_taken',
  'taken_aback',
  'aback_said',
  'said_would',
  'would_week',
  'week_long',
  'long_enough',
  'enough_husband',
  'husband_never',
  'never_even',
  'even_stay',
  'stay_hospit',
  'hospit_son',
  'son_born',
  'born_told',
  'told_boyfriend',
  'boyfriend_want',
  'want_go',
  'go_ask',
  'ask_first',
  'first_buy',
  'buy_extraordinari',
  'extraordinari_gift',
  'gift_left',
  'left_tear',
  'tear_ungrat',
  'ungrat_ruin',
  'ruin_son',
  'son_experi',
  'experi_boyfriend',
  'boyfriend_pretti',
  'pretti_much',
  'much_agre',
  'agre_go',
  'go_atleast',
  'atleast_week',
  'week_paid',
  'paid_realli',
  'realli_want',
  'want_stay',
  'stay_bond',
  'bond_daughter',
  'daughter_aita',
  'im_week_pregnant',
  'week_pregnant_boyfriend',
  'pregnant_boyfriend_took',
  'boyfriend_took_week',
  'took_week_work',
  'week_work_stay',
  'work_stay_adjust',
  'stay_adjust_parent',
  'adjust_parent_newborn',
  'parent_newborn_first',
  'newborn_first_im',
  'first_im_nervou',
  'im_nervou_realli',
  'nervou_realli_need',
  'realli_need_support',
  'need_support_right',
  'support_right_boyfriend',
  'right_boyfriend_mother',
  'boyfriend_mother_took',
  'mother_took_upon',
  'took_upon_schedul',
  'upon_schedul_patern',
  'schedul_patern_vacat',
  'patern_vacat_boyfriend',
  'vacat_boyfriend_last',
  'boyfriend_last_two',
  'last_two_week',
  'two_week_leav',
  'week_leav_came',
  'leav_came_dinner',
  'came_dinner_surpris',
  'dinner_surpris_expens',
  'surpris_expens_paid',
  'expens_paid_vacat',
  'paid_vacat_itali',
  'vacat_itali_boyfriend',
  'itali_boyfriend_patern',
  'boyfriend_patern_present',
  'patern_present_gave',
  'present_gave_jade',
  'gave_jade_stone',
  'jade_stone_bracelet',
  'stone_bracelet_match',
  'bracelet_match_newborn',
  'match_newborn_one',
  'newborn_one_babi',
  'one_babi_part',
  'babi_part_cultur',
  'part_cultur_give',
  'cultur_give_famili',
  'give_famili_stone',
  'famili_stone_mother',
  'stone_mother_child',
  'mother_child_enter',
  'child_enter_famili',
  'enter_famili_kind',
  'famili_kind_howev',
  'kind_howev_told',
  'howev_told_leav',
  'told_leav_help',
  'leav_help_babi',
  'help_babi_taken',
  'babi_taken_aback',
  'taken_aback_said',
  'aback_said_would',
  'said_would_week',
  'would_week_long',
  'week_long_enough',
  'long_enough_husband',
  'enough_husband_never',
  'husband_never_even',
  'never_even_stay',
  'even_stay_hospit',
  'stay_hospit_son',
  'hospit_son_born',
  'son_born_told',
  'born_told_boyfriend',
  'told_boyfriend_want',
  'boyfriend_want_go',
  'want_go_ask',
  'go_ask_first',
  'ask_first_buy',
  'first_buy_extraordinari',
  'buy_extraordinari_gift',
  'extraordinari_gift_left',
  'gift_left_tear',
  'left_tear_ungrat',
  'tear_ungrat_ruin',
  'ungrat_ruin_son',
  'ruin_son_experi',
  'son_experi_boyfriend',
  'experi_boyfriend_pretti',
  'boyfriend_pretti_much',
  'pretti_much_agre',
  'much_agre_go',
  'agre_go_atleast',
  'go_atleast_week',
  'atleast_week_paid',
  'week_paid_realli',
  'paid_realli_want',
  'realli_want_stay',
  'want_stay_bond',
  'stay_bond_daughter',
  'bond_daughter_aita'],
 ['husband',
  'kevin',
  'got',
  'marri',
  'month',
  'ago',
  'eversinc',
  'move',
  'away',
  'mom',
  'start',
  'call',
  'often',
  'mental',
  'breakdown',
  'heard',
  'move',
  'beg',
  'stay',
  'near',
  'caus',
  'need',
  'though',
  'older',
  'son',
  'anyhow',
  'shed',
  'call',
  'random',
  'time',
  'start',
  'call',
  'middl',
  'night',
  'specif',
  'thought',
  'weird',
  'said',
  'want',
  'hear',
  'kevin',
  'voic',
  'busi',
  'call',
  'day',
  'kevin',
  'respond',
  'call',
  'everi',
  'time',
  'say',
  'worri',
  'might',
  'emergencyit',
  'exhaust',
  'complet',
  'ruin',
  'alon',
  'time',
  'ask',
  'call',
  'like',
  'kept',
  'call',
  'kevin',
  'said',
  'cant',
  'bring',
  'ignor',
  'call',
  'ask',
  'patient',
  'last',
  'night',
  'decid',
  'wait',
  'til',
  'kevin',
  'asleep',
  'put',
  'phone',
  'vibrat',
  'wait',
  'call',
  'oclock',
  'roll',
  'around',
  'phone',
  'start',
  'vibrat',
  'nightstand',
  'stretch',
  'arm',
  'answer',
  'start',
  'make',
  '&',
  'nois',
  'bed',
  'im',
  'talk',
  'full',
  'moan',
  'dirti',
  'talk',
  'moan',
  'second',
  'end',
  'call',
  'kevin',
  'wake',
  'ask',
  'alright',
  'tell',
  'fever',
  'goe',
  'back',
  'sleep',
  'woke',
  'complet',
  'disast',
  'kevin',
  'angerili',
  'ask',
  'wtf',
  'last',
  'night',
  'mom',
  'call',
  'clearli',
  'livid',
  'mortifi',
  'caus',
  'kevin',
  'said',
  'traumat',
  'think',
  '*',
  'call',
  'told',
  'insist',
  'frustrat',
  'said',
  'done',
  'embarrass',
  'made',
  'mom',
  'uncomfort',
  'said',
  'call',
  'said',
  'still',
  'act',
  'childishli',
  'potenti',
  'harm',
  'relationship',
  'wit',
  'told',
  'tell',
  'behind',
  'said',
  'oh',
  'worri',
  'demand',
  'apolog',
  'immedietli',
  'shame',
  'text',
  'made',
  'refus',
  'mightv',
  'went',
  'wrong',
  'way',
  'frustrat',
  'aita',
  'husband_kevin',
  'kevin_got',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_eversinc',
  'eversinc_move',
  'move_away',
  'away_mom',
  'mom_start',
  'start_call',
  'call_often',
  'often_mental',
  'mental_breakdown',
  'breakdown_heard',
  'heard_move',
  'move_beg',
  'beg_stay',
  'stay_near',
  'near_caus',
  'caus_need',
  'need_though',
  'though_older',
  'older_son',
  'son_anyhow',
  'anyhow_shed',
  'shed_call',
  'call_random',
  'random_time',
  'time_start',
  'start_call',
  'call_middl',
  'middl_night',
  'night_specif',
  'specif_thought',
  'thought_weird',
  'weird_said',
  'said_want',
  'want_hear',
  'hear_kevin',
  'kevin_voic',
  'voic_busi',
  'busi_call',
  'call_day',
  'day_kevin',
  'kevin_respond',
  'respond_call',
  'call_everi',
  'everi_time',
  'time_say',
  'say_worri',
  'worri_might',
  'might_emergencyit',
  'emergencyit_exhaust',
  'exhaust_complet',
  'complet_ruin',
  'ruin_alon',
  'alon_time',
  'time_ask',
  'ask_call',
  'call_like',
  'like_kept',
  'kept_call',
  'call_kevin',
  'kevin_said',
  'said_cant',
  'cant_bring',
  'bring_ignor',
  'ignor_call',
  'call_ask',
  'ask_patient',
  'patient_last',
  'last_night',
  'night_decid',
  'decid_wait',
  'wait_til',
  'til_kevin',
  'kevin_asleep',
  'asleep_put',
  'put_phone',
  'phone_vibrat',
  'vibrat_wait',
  'wait_call',
  'call_oclock',
  'oclock_roll',
  'roll_around',
  'around_phone',
  'phone_start',
  'start_vibrat',
  'vibrat_nightstand',
  'nightstand_stretch',
  'stretch_arm',
  'arm_answer',
  'answer_start',
  'start_make',
  'make_&',
  '&_nois',
  'nois_bed',
  'bed_im',
  'im_talk',
  'talk_full',
  'full_moan',
  'moan_dirti',
  'dirti_talk',
  'talk_moan',
  'moan_second',
  'second_end',
  'end_call',
  'call_kevin',
  'kevin_wake',
  'wake_ask',
  'ask_alright',
  'alright_tell',
  'tell_fever',
  'fever_goe',
  'goe_back',
  'back_sleep',
  'sleep_woke',
  'woke_complet',
  'complet_disast',
  'disast_kevin',
  'kevin_angerili',
  'angerili_ask',
  'ask_wtf',
  'wtf_last',
  'last_night',
  'night_mom',
  'mom_call',
  'call_clearli',
  'clearli_livid',
  'livid_mortifi',
  'mortifi_caus',
  'caus_kevin',
  'kevin_said',
  'said_traumat',
  'traumat_think',
  'think_*',
  '*_call',
  'call_told',
  'told_insist',
  'insist_frustrat',
  'frustrat_said',
  'said_done',
  'done_embarrass',
  'embarrass_made',
  'made_mom',
  'mom_uncomfort',
  'uncomfort_said',
  'said_call',
  'call_said',
  'said_still',
  'still_act',
  'act_childishli',
  'childishli_potenti',
  'potenti_harm',
  'harm_relationship',
  'relationship_wit',
  'wit_told',
  'told_tell',
  'tell_behind',
  'behind_said',
  'said_oh',
  'oh_worri',
  'worri_demand',
  'demand_apolog',
  'apolog_immedietli',
  'immedietli_shame',
  'shame_text',
  'text_made',
  'made_refus',
  'refus_mightv',
  'mightv_went',
  'went_wrong',
  'wrong_way',
  'way_frustrat',
  'frustrat_aita',
  'husband_kevin_got',
  'kevin_got_marri',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_eversinc',
  'ago_eversinc_move',
  'eversinc_move_away',
  'move_away_mom',
  'away_mom_start',
  'mom_start_call',
  'start_call_often',
  'call_often_mental',
  'often_mental_breakdown',
  'mental_breakdown_heard',
  'breakdown_heard_move',
  'heard_move_beg',
  'move_beg_stay',
  'beg_stay_near',
  'stay_near_caus',
  'near_caus_need',
  'caus_need_though',
  'need_though_older',
  'though_older_son',
  'older_son_anyhow',
  'son_anyhow_shed',
  'anyhow_shed_call',
  'shed_call_random',
  'call_random_time',
  'random_time_start',
  'time_start_call',
  'start_call_middl',
  'call_middl_night',
  'middl_night_specif',
  'night_specif_thought',
  'specif_thought_weird',
  'thought_weird_said',
  'weird_said_want',
  'said_want_hear',
  'want_hear_kevin',
  'hear_kevin_voic',
  'kevin_voic_busi',
  'voic_busi_call',
  'busi_call_day',
  'call_day_kevin',
  'day_kevin_respond',
  'kevin_respond_call',
  'respond_call_everi',
  'call_everi_time',
  'everi_time_say',
  'time_say_worri',
  'say_worri_might',
  'worri_might_emergencyit',
  'might_emergencyit_exhaust',
  'emergencyit_exhaust_complet',
  'exhaust_complet_ruin',
  'complet_ruin_alon',
  'ruin_alon_time',
  'alon_time_ask',
  'time_ask_call',
  'ask_call_like',
  'call_like_kept',
  'like_kept_call',
  'kept_call_kevin',
  'call_kevin_said',
  'kevin_said_cant',
  'said_cant_bring',
  'cant_bring_ignor',
  'bring_ignor_call',
  'ignor_call_ask',
  'call_ask_patient',
  'ask_patient_last',
  'patient_last_night',
  'last_night_decid',
  'night_decid_wait',
  'decid_wait_til',
  'wait_til_kevin',
  'til_kevin_asleep',
  'kevin_asleep_put',
  'asleep_put_phone',
  'put_phone_vibrat',
  'phone_vibrat_wait',
  'vibrat_wait_call',
  'wait_call_oclock',
  'call_oclock_roll',
  'oclock_roll_around',
  'roll_around_phone',
  'around_phone_start',
  'phone_start_vibrat',
  'start_vibrat_nightstand',
  'vibrat_nightstand_stretch',
  'nightstand_stretch_arm',
  'stretch_arm_answer',
  'arm_answer_start',
  'answer_start_make',
  'start_make_&',
  'make_&_nois',
  '&_nois_bed',
  'nois_bed_im',
  'bed_im_talk',
  'im_talk_full',
  'talk_full_moan',
  'full_moan_dirti',
  'moan_dirti_talk',
  'dirti_talk_moan',
  'talk_moan_second',
  'moan_second_end',
  'second_end_call',
  'end_call_kevin',
  'call_kevin_wake',
  'kevin_wake_ask',
  'wake_ask_alright',
  'ask_alright_tell',
  'alright_tell_fever',
  'tell_fever_goe',
  'fever_goe_back',
  'goe_back_sleep',
  'back_sleep_woke',
  'sleep_woke_complet',
  'woke_complet_disast',
  'complet_disast_kevin',
  'disast_kevin_angerili',
  'kevin_angerili_ask',
  'angerili_ask_wtf',
  'ask_wtf_last',
  'wtf_last_night',
  'last_night_mom',
  'night_mom_call',
  'mom_call_clearli',
  'call_clearli_livid',
  'clearli_livid_mortifi',
  'livid_mortifi_caus',
  'mortifi_caus_kevin',
  'caus_kevin_said',
  'kevin_said_traumat',
  'said_traumat_think',
  'traumat_think_*',
  'think_*_call',
  '*_call_told',
  'call_told_insist',
  'told_insist_frustrat',
  'insist_frustrat_said',
  'frustrat_said_done',
  'said_done_embarrass',
  'done_embarrass_made',
  'embarrass_made_mom',
  'made_mom_uncomfort',
  'mom_uncomfort_said',
  'uncomfort_said_call',
  'said_call_said',
  'call_said_still',
  'said_still_act',
  'still_act_childishli',
  'act_childishli_potenti',
  'childishli_potenti_harm',
  'potenti_harm_relationship',
  'harm_relationship_wit',
  'relationship_wit_told',
  'wit_told_tell',
  'told_tell_behind',
  'tell_behind_said',
  'behind_said_oh',
  'said_oh_worri',
  'oh_worri_demand',
  'worri_demand_apolog',
  'demand_apolog_immedietli',
  'apolog_immedietli_shame',
  'immedietli_shame_text',
  'shame_text_made',
  'text_made_refus',
  'made_refus_mightv',
  'refus_mightv_went',
  'mightv_went_wrong',
  'went_wrong_way',
  'wrong_way_frustrat',
  'way_frustrat_aita'],
 ['sister',
  'anna',
  'marri',
  'friend',
  'lanc',
  'cool',
  'guy',
  'friend',
  'group',
  'handsom',
  'misteri',
  'smart',
  'quiet',
  'know',
  'end',
  'sister',
  'total',
  'opposit',
  'loud',
  'funni',
  'outgo',
  'beauti',
  'tho',
  'realli',
  'beauti',
  'got',
  'togeth',
  'everyon',
  'said',
  'good',
  'look',
  'anna',
  'seem',
  'realli',
  'love',
  'time',
  'use',
  'say',
  'dreami',
  'good',
  'treat',
  'spoil',
  'felt',
  'lanc',
  'alway',
  'stern',
  'quiet',
  'would',
  'revolv',
  'around',
  'famili',
  'gather',
  'engag',
  'much',
  'everyon',
  'surpris',
  'ask',
  'marri',
  'himmi',
  'sister',
  'never',
  'took',
  'wifey',
  'role',
  'seriou',
  'non-tradit',
  'wed',
  'lanc',
  'along',
  'made',
  'bunch',
  'rule',
  'agre',
  'move',
  'hous',
  'anna',
  'ban',
  'hous',
  'utensil',
  'wed',
  'gift',
  'list',
  'work',
  'finish',
  'studi',
  'plan',
  'kid',
  'sister',
  'pretti',
  'much',
  'look',
  'think',
  'lanc',
  'care',
  'alway',
  'snapchat',
  'instagram',
  'thought',
  'get',
  'marri',
  'would',
  'dress',
  'appropri',
  'sinc',
  'use',
  'use',
  'crop',
  'top',
  'blous',
  'dress',
  'shirt',
  'show',
  'cleavag',
  'short',
  'skirt',
  'tight',
  'jean',
  'say',
  'lanc',
  'like',
  'fine',
  'last',
  'week',
  'dad',
  'birthday',
  'parti',
  'sister',
  'lanc',
  'came',
  'wear',
  'pretti',
  'short',
  'floral',
  'dress',
  'nonetheless',
  'men',
  'look',
  'includ',
  'dad',
  'friend',
  'lanc',
  'stoic',
  'alway',
  'sister',
  'came',
  'mom',
  'say',
  'know',
  'quiet',
  'sinc',
  'like',
  'like',
  'wtf',
  'told',
  'dress',
  'like',
  'might',
  'take',
  'serious',
  'got',
  'sad',
  'sat',
  'quietli',
  'rest',
  'night',
  'think',
  'much',
  'day',
  'ago',
  'lanc',
  'text',
  'said',
  'would',
  'appreci',
  'comment',
  'wife',
  'way',
  'dress',
  'miss',
  'someth',
  'im',
  'love',
  'sister_anna',
  'anna_marri',
  'marri_friend',
  'friend_lanc',
  'lanc_cool',
  'cool_guy',
  'guy_friend',
  'friend_group',
  'group_handsom',
  'handsom_misteri',
  'misteri_smart',
  'smart_quiet',
  'quiet_know',
  'know_end',
  'end_sister',
  'sister_total',
  'total_opposit',
  'opposit_loud',
  'loud_funni',
  'funni_outgo',
  'outgo_beauti',
  'beauti_tho',
  'tho_realli',
  'realli_beauti',
  'beauti_got',
  'got_togeth',
  'togeth_everyon',
  'everyon_said',
  'said_good',
  'good_look',
  'look_anna',
  'anna_seem',
  'seem_realli',
  'realli_love',
  'love_time',
  'time_use',
  'use_say',
  'say_dreami',
  'dreami_good',
  'good_treat',
  'treat_spoil',
  'spoil_felt',
  'felt_lanc',
  'lanc_alway',
  'alway_stern',
  'stern_quiet',
  'quiet_would',
  'would_revolv',
  'revolv_around',
  'around_famili',
  'famili_gather',
  'gather_engag',
  'engag_much',
  'much_everyon',
  'everyon_surpris',
  'surpris_ask',
  'ask_marri',
  'marri_himmi',
  'himmi_sister',
  'sister_never',
  'never_took',
  'took_wifey',
  'wifey_role',
  'role_seriou',
  'seriou_non-tradit',
  'non-tradit_wed',
  'wed_lanc',
  'lanc_along',
  'along_made',
  'made_bunch',
  'bunch_rule',
  'rule_agre',
  'agre_move',
  'move_hous',
  'hous_anna',
  'anna_ban',
  'ban_hous',
  'hous_utensil',
  'utensil_wed',
  'wed_gift',
  'gift_list',
  'list_work',
  'work_finish',
  'finish_studi',
  'studi_plan',
  'plan_kid',
  'kid_sister',
  'sister_pretti',
  'pretti_much',
  'much_look',
  'look_think',
  'think_lanc',
  'lanc_care',
  'care_alway',
  'alway_snapchat',
  'snapchat_instagram',
  'instagram_thought',
  'thought_get',
  'get_marri',
  'marri_would',
  'would_dress',
  'dress_appropri',
  'appropri_sinc',
  'sinc_use',
  'use_use',
  'use_crop',
  'crop_top',
  'top_blous',
  'blous_dress',
  'dress_shirt',
  'shirt_show',
  'show_cleavag',
  'cleavag_short',
  'short_skirt',
  'skirt_tight',
  'tight_jean',
  'jean_say',
  'say_lanc',
  'lanc_like',
  'like_fine',
  'fine_last',
  'last_week',
  'week_dad',
  'dad_birthday',
  'birthday_parti',
  'parti_sister',
  'sister_lanc',
  'lanc_came',
  'came_wear',
  'wear_pretti',
  'pretti_short',
  'short_floral',
  'floral_dress',
  'dress_nonetheless',
  'nonetheless_men',
  'men_look',
  'look_includ',
  'includ_dad',
  'dad_friend',
  'friend_lanc',
  'lanc_stoic',
  'stoic_alway',
  'alway_sister',
  'sister_came',
  'came_mom',
  'mom_say',
  'say_know',
  'know_quiet',
  'quiet_sinc',
  'sinc_like',
  'like_like',
  'like_wtf',
  'wtf_told',
  'told_dress',
  'dress_like',
  'like_might',
  'might_take',
  'take_serious',
  'serious_got',
  'got_sad',
  'sad_sat',
  'sat_quietli',
  'quietli_rest',
  'rest_night',
  'night_think',
  'think_much',
  'much_day',
  'day_ago',
  'ago_lanc',
  'lanc_text',
  'text_said',
  'said_would',
  'would_appreci',
  'appreci_comment',
  'comment_wife',
  'wife_way',
  'way_dress',
  'dress_miss',
  'miss_someth',
  'someth_im',
  'im_love',
  'sister_anna_marri',
  'anna_marri_friend',
  'marri_friend_lanc',
  'friend_lanc_cool',
  'lanc_cool_guy',
  'cool_guy_friend',
  'guy_friend_group',
  'friend_group_handsom',
  'group_handsom_misteri',
  'handsom_misteri_smart',
  'misteri_smart_quiet',
  'smart_quiet_know',
  'quiet_know_end',
  'know_end_sister',
  'end_sister_total',
  'sister_total_opposit',
  'total_opposit_loud',
  'opposit_loud_funni',
  'loud_funni_outgo',
  'funni_outgo_beauti',
  'outgo_beauti_tho',
  'beauti_tho_realli',
  'tho_realli_beauti',
  'realli_beauti_got',
  'beauti_got_togeth',
  'got_togeth_everyon',
  'togeth_everyon_said',
  'everyon_said_good',
  'said_good_look',
  'good_look_anna',
  'look_anna_seem',
  'anna_seem_realli',
  'seem_realli_love',
  'realli_love_time',
  'love_time_use',
  'time_use_say',
  'use_say_dreami',
  'say_dreami_good',
  'dreami_good_treat',
  'good_treat_spoil',
  'treat_spoil_felt',
  'spoil_felt_lanc',
  'felt_lanc_alway',
  'lanc_alway_stern',
  'alway_stern_quiet',
  'stern_quiet_would',
  'quiet_would_revolv',
  'would_revolv_around',
  'revolv_around_famili',
  'around_famili_gather',
  'famili_gather_engag',
  'gather_engag_much',
  'engag_much_everyon',
  'much_everyon_surpris',
  'everyon_surpris_ask',
  'surpris_ask_marri',
  'ask_marri_himmi',
  'marri_himmi_sister',
  'himmi_sister_never',
  'sister_never_took',
  'never_took_wifey',
  'took_wifey_role',
  'wifey_role_seriou',
  'role_seriou_non-tradit',
  'seriou_non-tradit_wed',
  'non-tradit_wed_lanc',
  'wed_lanc_along',
  'lanc_along_made',
  'along_made_bunch',
  'made_bunch_rule',
  'bunch_rule_agre',
  'rule_agre_move',
  'agre_move_hous',
  'move_hous_anna',
  'hous_anna_ban',
  'anna_ban_hous',
  'ban_hous_utensil',
  'hous_utensil_wed',
  'utensil_wed_gift',
  'wed_gift_list',
  'gift_list_work',
  'list_work_finish',
  'work_finish_studi',
  'finish_studi_plan',
  'studi_plan_kid',
  'plan_kid_sister',
  'kid_sister_pretti',
  'sister_pretti_much',
  'pretti_much_look',
  'much_look_think',
  'look_think_lanc',
  'think_lanc_care',
  'lanc_care_alway',
  'care_alway_snapchat',
  'alway_snapchat_instagram',
  'snapchat_instagram_thought',
  'instagram_thought_get',
  'thought_get_marri',
  'get_marri_would',
  'marri_would_dress',
  'would_dress_appropri',
  'dress_appropri_sinc',
  'appropri_sinc_use',
  'sinc_use_use',
  'use_use_crop',
  'use_crop_top',
  'crop_top_blous',
  'top_blous_dress',
  'blous_dress_shirt',
  'dress_shirt_show',
  'shirt_show_cleavag',
  'show_cleavag_short',
  'cleavag_short_skirt',
  'short_skirt_tight',
  'skirt_tight_jean',
  'tight_jean_say',
  'jean_say_lanc',
  'say_lanc_like',
  'lanc_like_fine',
  'like_fine_last',
  'fine_last_week',
  'last_week_dad',
  'week_dad_birthday',
  'dad_birthday_parti',
  'birthday_parti_sister',
  'parti_sister_lanc',
  'sister_lanc_came',
  'lanc_came_wear',
  'came_wear_pretti',
  'wear_pretti_short',
  'pretti_short_floral',
  'short_floral_dress',
  'floral_dress_nonetheless',
  'dress_nonetheless_men',
  'nonetheless_men_look',
  'men_look_includ',
  'look_includ_dad',
  'includ_dad_friend',
  'dad_friend_lanc',
  'friend_lanc_stoic',
  'lanc_stoic_alway',
  'stoic_alway_sister',
  'alway_sister_came',
  'sister_came_mom',
  'came_mom_say',
  'mom_say_know',
  'say_know_quiet',
  'know_quiet_sinc',
  'quiet_sinc_like',
  'sinc_like_like',
  'like_like_wtf',
  'like_wtf_told',
  'wtf_told_dress',
  'told_dress_like',
  'dress_like_might',
  'like_might_take',
  'might_take_serious',
  'take_serious_got',
  'serious_got_sad',
  'got_sad_sat',
  'sad_sat_quietli',
  'sat_quietli_rest',
  'quietli_rest_night',
  'rest_night_think',
  'night_think_much',
  'think_much_day',
  'much_day_ago',
  'day_ago_lanc',
  'ago_lanc_text',
  'lanc_text_said',
  'text_said_would',
  'said_would_appreci',
  'would_appreci_comment',
  'appreci_comment_wife',
  'comment_wife_way',
  'wife_way_dress',
  'way_dress_miss',
  'dress_miss_someth',
  'miss_someth_im',
  'someth_im_love'],
 ['wife',
  'horribl',
  'habit',
  'discov',
  'month',
  'ago',
  'order',
  'lunch',
  'subway',
  'app',
  'told',
  'pick',
  'locat',
  'drive',
  'thru',
  'way',
  'go',
  'insid',
  'take',
  'babi',
  'car',
  'clip',
  'back',
  'minut',
  'later',
  'told',
  'big',
  'deal',
  'leav',
  'babi',
  'car',
  'run',
  'pick',
  'realli',
  'fast',
  'idea',
  'ever',
  'told',
  'comfort',
  'leav',
  'car',
  'alon',
  'even',
  'minut',
  'told',
  'sinc',
  'born',
  'alway',
  'fine',
  'told',
  'pick',
  'food',
  'run',
  'post',
  'offic',
  'pharmaci',
  'etc',
  'floor',
  'live',
  'horribl',
  'area',
  'also',
  'super',
  'safe',
  'either',
  'told',
  'ever',
  'told',
  'never',
  'stop',
  'think',
  'potenti',
  'danger',
  'would',
  'stop',
  'well',
  'yesterday',
  'drive',
  'home',
  'brother',
  'hous',
  'spot',
  'car',
  'ga',
  'station',
  'near',
  'place',
  'park',
  'spot',
  'front',
  'pump',
  'figur',
  'stop',
  'grab',
  'snack',
  'like',
  'decid',
  'stop',
  'go',
  'say',
  'get',
  'food',
  'pull',
  'park',
  'next',
  'howev',
  'got',
  'furiou',
  'find',
  'son',
  'car',
  'seat',
  'car',
  'even',
  'lock',
  'know',
  'came',
  'moment',
  'decid',
  'take',
  'son',
  'put',
  'car',
  'got',
  'car',
  'seat',
  'drove',
  'side',
  'ga',
  'station',
  'park',
  'lot',
  'wait',
  'wife',
  'come',
  'took',
  'six',
  'minut',
  'appear',
  'saw',
  'gone',
  'look',
  'stun',
  'second',
  'start',
  'frantic',
  'look',
  'around',
  'cri',
  'let',
  'go',
  'long',
  'saw',
  'pull',
  'phone',
  'presum',
  'call',
  'pull',
  'car',
  'around',
  'park',
  'got',
  'walk',
  'around',
  'son',
  'door',
  'open',
  'show',
  'look',
  'extrem',
  'reliev',
  'quickli',
  'turn',
  'anger',
  'ask',
  'took',
  'told',
  'need',
  'learn',
  'lesson',
  'promis',
  'stop',
  'leav',
  'car',
  'extrem',
  'irrespons',
  'easi',
  'pull',
  'take',
  'one',
  'els',
  'ga',
  'station',
  'even',
  'notic',
  'realli',
  'taken',
  'wouldv',
  'help',
  'wouldv',
  '%',
  'fault',
  'proceed',
  'call',
  'cruel',
  'psychot',
  'tri',
  'take',
  'son',
  'car',
  'said',
  'would',
  'drive',
  'home',
  'left',
  'came',
  'home',
  'much',
  'later',
  'ignor',
  'rest',
  'day',
  'acknowledg',
  'today',
  'say',
  'want',
  'apolog',
  'said',
  'absolut',
  'one',
  'say',
  'sorri',
  'guilt',
  'trip',
  'rest',
  'day',
  'say',
  'mother',
  'experi',
  'fear',
  'put',
  'go',
  'far',
  'aita',
  'edit',
  'pleas',
  'check',
  'comment',
  'updat',
  'cant',
  'add',
  'due',
  'charact',
  'limit',
  'wife_horribl',
  'horribl_habit',
  'habit_discov',
  'discov_month',
  'month_ago',
  'ago_order',
  'order_lunch',
  'lunch_subway',
  'subway_app',
  'app_told',
  'told_pick',
  'pick_locat',
  'locat_drive',
  'drive_thru',
  'thru_way',
  'way_go',
  'go_insid',
  'insid_take',
  'take_babi',
  'babi_car',
  'car_clip',
  'clip_back',
  'back_minut',
  'minut_later',
  'later_told',
  'told_big',
  'big_deal',
  'deal_leav',
  'leav_babi',
  'babi_car',
  'car_run',
  'run_pick',
  'pick_realli',
  'realli_fast',
  'fast_idea',
  'idea_ever',
  'ever_told',
  'told_comfort',
  'comfort_leav',
  'leav_car',
  'car_alon',
  'alon_even',
  'even_minut',
  'minut_told',
  'told_sinc',
  'sinc_born',
  'born_alway',
  'alway_fine',
  'fine_told',
  'told_pick',
  'pick_food',
  'food_run',
  'run_post',
  'post_offic',
  'offic_pharmaci',
  'pharmaci_etc',
  'etc_floor',
  'floor_live',
  'live_horribl',
  'horribl_area',
  'area_also',
  'also_super',
  'super_safe',
  'safe_either',
  'either_told',
  'told_ever',
  'ever_told',
  'told_never',
  'never_stop',
  'stop_think',
  'think_potenti',
  'potenti_danger',
  'danger_would',
  'would_stop',
  'stop_well',
  'well_yesterday',
  'yesterday_drive',
  'drive_home',
  'home_brother',
  'brother_hous',
  'hous_spot',
  'spot_car',
  'car_ga',
  'ga_station',
  'station_near',
  'near_place',
  'place_park',
  'park_spot',
  'spot_front',
  'front_pump',
  'pump_figur',
  'figur_stop',
  'stop_grab',
  'grab_snack',
  'snack_like',
  'like_decid',
  'decid_stop',
  'stop_go',
  'go_say',
  'say_get',
  'get_food',
  'food_pull',
  'pull_park',
  'park_next',
  'next_howev',
  'howev_got',
  'got_furiou',
  'furiou_find',
  'find_son',
  'son_car',
  'car_seat',
  'seat_car',
  'car_even',
  'even_lock',
  'lock_know',
  'know_came',
  'came_moment',
  'moment_decid',
  'decid_take',
  'take_son',
  'son_put',
  'put_car',
  'car_got',
  'got_car',
  'car_seat',
  'seat_drove',
  'drove_side',
  'side_ga',
  'ga_station',
  'station_park',
  'park_lot',
  'lot_wait',
  'wait_wife',
  'wife_come',
  'come_took',
  'took_six',
  'six_minut',
  'minut_appear',
  'appear_saw',
  'saw_gone',
  'gone_look',
  'look_stun',
  'stun_second',
  'second_start',
  'start_frantic',
  'frantic_look',
  'look_around',
  'around_cri',
  'cri_let',
  'let_go',
  'go_long',
  'long_saw',
  'saw_pull',
  'pull_phone',
  'phone_presum',
  'presum_call',
  'call_pull',
  'pull_car',
  'car_around',
  'around_park',
  'park_got',
  'got_walk',
  'walk_around',
  'around_son',
  'son_door',
  'door_open',
  'open_show',
  'show_look',
  'look_extrem',
  'extrem_reliev',
  'reliev_quickli',
  'quickli_turn',
  'turn_anger',
  'anger_ask',
  'ask_took',
  'took_told',
  'told_need',
  'need_learn',
  'learn_lesson',
  'lesson_promis',
  'promis_stop',
  'stop_leav',
  'leav_car',
  'car_extrem',
  'extrem_irrespons',
  'irrespons_easi',
  'easi_pull',
  'pull_take',
  'take_one',
  'one_els',
  'els_ga',
  'ga_station',
  'station_even',
  'even_notic',
  'notic_realli',
  'realli_taken',
  'taken_wouldv',
  'wouldv_help',
  'help_wouldv',
  'wouldv_%',
  '%_fault',
  'fault_proceed',
  'proceed_call',
  'call_cruel',
  'cruel_psychot',
  'psychot_tri',
  'tri_take',
  'take_son',
  'son_car',
  'car_said',
  'said_would',
  'would_drive',
  'drive_home',
  'home_left',
  'left_came',
  'came_home',
  'home_much',
  'much_later',
  'later_ignor',
  'ignor_rest',
  'rest_day',
  'day_acknowledg',
  'acknowledg_today',
  'today_say',
  'say_want',
  'want_apolog',
  'apolog_said',
  'said_absolut',
  'absolut_one',
  'one_say',
  'say_sorri',
  'sorri_guilt',
  'guilt_trip',
  'trip_rest',
  'rest_day',
  'day_say',
  'say_mother',
  'mother_experi',
  'experi_fear',
  'fear_put',
  'put_go',
  'go_far',
  'far_aita',
  'aita_edit',
  'edit_pleas',
  'pleas_check',
  'check_comment',
  'comment_updat',
  'updat_cant',
  'cant_add',
  'add_due',
  'due_charact',
  'charact_limit',
  'wife_horribl_habit',
  'horribl_habit_discov',
  'habit_discov_month',
  'discov_month_ago',
  'month_ago_order',
  'ago_order_lunch',
  'order_lunch_subway',
  'lunch_subway_app',
  'subway_app_told',
  'app_told_pick',
  'told_pick_locat',
  'pick_locat_drive',
  'locat_drive_thru',
  'drive_thru_way',
  'thru_way_go',
  'way_go_insid',
  'go_insid_take',
  'insid_take_babi',
  'take_babi_car',
  'babi_car_clip',
  'car_clip_back',
  'clip_back_minut',
  'back_minut_later',
  'minut_later_told',
  'later_told_big',
  'told_big_deal',
  'big_deal_leav',
  'deal_leav_babi',
  'leav_babi_car',
  'babi_car_run',
  'car_run_pick',
  'run_pick_realli',
  'pick_realli_fast',
  'realli_fast_idea',
  'fast_idea_ever',
  'idea_ever_told',
  'ever_told_comfort',
  'told_comfort_leav',
  'comfort_leav_car',
  'leav_car_alon',
  'car_alon_even',
  'alon_even_minut',
  'even_minut_told',
  'minut_told_sinc',
  'told_sinc_born',
  'sinc_born_alway',
  'born_alway_fine',
  'alway_fine_told',
  'fine_told_pick',
  'told_pick_food',
  'pick_food_run',
  'food_run_post',
  'run_post_offic',
  'post_offic_pharmaci',
  'offic_pharmaci_etc',
  'pharmaci_etc_floor',
  'etc_floor_live',
  'floor_live_horribl',
  'live_horribl_area',
  'horribl_area_also',
  'area_also_super',
  'also_super_safe',
  'super_safe_either',
  'safe_either_told',
  'either_told_ever',
  'told_ever_told',
  'ever_told_never',
  'told_never_stop',
  'never_stop_think',
  'stop_think_potenti',
  'think_potenti_danger',
  'potenti_danger_would',
  'danger_would_stop',
  'would_stop_well',
  'stop_well_yesterday',
  'well_yesterday_drive',
  'yesterday_drive_home',
  'drive_home_brother',
  'home_brother_hous',
  'brother_hous_spot',
  'hous_spot_car',
  'spot_car_ga',
  'car_ga_station',
  'ga_station_near',
  'station_near_place',
  'near_place_park',
  'place_park_spot',
  'park_spot_front',
  'spot_front_pump',
  'front_pump_figur',
  'pump_figur_stop',
  'figur_stop_grab',
  'stop_grab_snack',
  'grab_snack_like',
  'snack_like_decid',
  'like_decid_stop',
  'decid_stop_go',
  'stop_go_say',
  'go_say_get',
  'say_get_food',
  'get_food_pull',
  'food_pull_park',
  'pull_park_next',
  'park_next_howev',
  'next_howev_got',
  'howev_got_furiou',
  'got_furiou_find',
  'furiou_find_son',
  'find_son_car',
  'son_car_seat',
  'car_seat_car',
  'seat_car_even',
  'car_even_lock',
  'even_lock_know',
  'lock_know_came',
  'know_came_moment',
  'came_moment_decid',
  'moment_decid_take',
  'decid_take_son',
  'take_son_put',
  'son_put_car',
  'put_car_got',
  'car_got_car',
  'got_car_seat',
  'car_seat_drove',
  'seat_drove_side',
  'drove_side_ga',
  'side_ga_station',
  'ga_station_park',
  'station_park_lot',
  'park_lot_wait',
  'lot_wait_wife',
  'wait_wife_come',
  'wife_come_took',
  'come_took_six',
  'took_six_minut',
  'six_minut_appear',
  'minut_appear_saw',
  'appear_saw_gone',
  'saw_gone_look',
  'gone_look_stun',
  'look_stun_second',
  'stun_second_start',
  'second_start_frantic',
  'start_frantic_look',
  'frantic_look_around',
  'look_around_cri',
  'around_cri_let',
  'cri_let_go',
  'let_go_long',
  'go_long_saw',
  'long_saw_pull',
  'saw_pull_phone',
  'pull_phone_presum',
  'phone_presum_call',
  'presum_call_pull',
  'call_pull_car',
  'pull_car_around',
  'car_around_park',
  'around_park_got',
  'park_got_walk',
  'got_walk_around',
  'walk_around_son',
  'around_son_door',
  'son_door_open',
  'door_open_show',
  'open_show_look',
  'show_look_extrem',
  'look_extrem_reliev',
  'extrem_reliev_quickli',
  'reliev_quickli_turn',
  'quickli_turn_anger',
  'turn_anger_ask',
  'anger_ask_took',
  'ask_took_told',
  'took_told_need',
  'told_need_learn',
  'need_learn_lesson',
  'learn_lesson_promis',
  'lesson_promis_stop',
  'promis_stop_leav',
  'stop_leav_car',
  'leav_car_extrem',
  'car_extrem_irrespons',
  'extrem_irrespons_easi',
  'irrespons_easi_pull',
  'easi_pull_take',
  'pull_take_one',
  'take_one_els',
  'one_els_ga',
  'els_ga_station',
  'ga_station_even',
  'station_even_notic',
  'even_notic_realli',
  'notic_realli_taken',
  'realli_taken_wouldv',
  'taken_wouldv_help',
  'wouldv_help_wouldv',
  'help_wouldv_%',
  'wouldv_%_fault',
  '%_fault_proceed',
  'fault_proceed_call',
  'proceed_call_cruel',
  'call_cruel_psychot',
  'cruel_psychot_tri',
  'psychot_tri_take',
  'tri_take_son',
  'take_son_car',
  'son_car_said',
  'car_said_would',
  'said_would_drive',
  'would_drive_home',
  'drive_home_left',
  'home_left_came',
  'left_came_home',
  'came_home_much',
  'home_much_later',
  'much_later_ignor',
  'later_ignor_rest',
  'ignor_rest_day',
  'rest_day_acknowledg',
  'day_acknowledg_today',
  'acknowledg_today_say',
  'today_say_want',
  'say_want_apolog',
  'want_apolog_said',
  'apolog_said_absolut',
  'said_absolut_one',
  'absolut_one_say',
  'one_say_sorri',
  'say_sorri_guilt',
  'sorri_guilt_trip',
  'guilt_trip_rest',
  'trip_rest_day',
  'rest_day_say',
  'day_say_mother',
  'say_mother_experi',
  'mother_experi_fear',
  'experi_fear_put',
  'fear_put_go',
  'put_go_far',
  'go_far_aita',
  'far_aita_edit',
  'aita_edit_pleas',
  'edit_pleas_check',
  'pleas_check_comment',
  'check_comment_updat',
  'comment_updat_cant',
  'updat_cant_add',
  'cant_add_due',
  'add_due_charact',
  'due_charact_limit'],
 ['son',
  'month',
  'old',
  'toddler',
  'wife',
  'stay-at-hom',
  'mom',
  'work',
  'six',
  'day',
  'week',
  'im',
  'usual',
  'gone',
  'twelv',
  'hour',
  'day',
  'alway',
  'check',
  'son',
  'remot',
  'via',
  'nurseri',
  'cam',
  'app',
  'alway',
  'awak',
  'morn',
  'around',
  'great',
  'sleep',
  'routin',
  'wind',
  'time',
  'start',
  'time',
  'everi',
  'even',
  'clean',
  'toy',
  'read',
  'book',
  'lay',
  'still',
  'awak',
  'fall',
  'asleep',
  'sleep',
  'night',
  'least',
  'twelv',
  'hour',
  'usual',
  'chanc',
  'check',
  'camera',
  'morn',
  'check',
  'morn',
  'closer',
  'everi',
  'time',
  'look',
  'though',
  'awak',
  'dark',
  'stand',
  'crib',
  'wait',
  'see',
  'immedi',
  'turn',
  'brightest',
  'night',
  'light',
  'camera',
  'speak',
  'camera',
  'app',
  'alway',
  'tell',
  'good',
  'morn',
  'love',
  'usual',
  'laugh',
  'say',
  'dada',
  'leav',
  'app',
  'call',
  'wife',
  'wake',
  'usual',
  'call',
  'three',
  'four',
  'time',
  'final',
  'answer',
  'obviou',
  'woke',
  'call',
  'tell',
  'son',
  'awak',
  'wait',
  'need',
  'get',
  'start',
  'day',
  'morn',
  'phone',
  'ask',
  'go',
  'get',
  'use',
  'bathroom',
  'said',
  'go',
  'kitchen',
  'prepar',
  'breakfast',
  'shed',
  'get',
  'ask',
  'get',
  'bathroom',
  'could',
  'go',
  'kitchen',
  'flip',
  'told',
  'piss',
  'call',
  'everi',
  'morn',
  'tell',
  'mom',
  'routin',
  'retort',
  'well',
  'routin',
  'suck',
  'awak',
  'hour',
  'still',
  'asleep',
  'call',
  'bother',
  'wait',
  'long',
  'need',
  'diaper',
  'chang',
  'probabl',
  'thirsti',
  'hungri',
  'want',
  'play',
  'wrong',
  'though',
  'need',
  'stop',
  'pleas',
  'complet',
  'honest',
  'answer',
  'thank',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'ban',
  'comment',
  'within',
  'first',
  'hour',
  'violat',
  'rule',
  'comment',
  'respond',
  'anyon',
  'im',
  'fairli',
  'new',
  'reddit',
  'user',
  'term',
  'post',
  '-',
  'normal',
  'read',
  'lot',
  '-',
  'clue',
  'temporari',
  'comment',
  'ban',
  'affect',
  'abil',
  'edit',
  'post',
  'would',
  'edit',
  'post',
  'much',
  'sooner',
  'known',
  'abl',
  'regardless',
  'comment',
  'ban',
  'mani',
  'thing',
  'need',
  'address',
  'post',
  'import',
  'one',
  'wife',
  'love',
  'anyon',
  'reddit',
  'think',
  'amaz',
  'woman',
  'wonder',
  'mother',
  'absolut',
  'think',
  'incompet',
  'parent',
  'think',
  'neglect',
  'son',
  'none',
  'inform',
  'provid',
  'ever',
  'suppos',
  'convey',
  'neg',
  'messag',
  'whole',
  'issu',
  'awak',
  'awak',
  'still',
  'asleep',
  '-',
  'agre',
  'stay',
  'late',
  'plu',
  'alarm',
  'set',
  'show',
  'wife',
  'post',
  'explod',
  'could',
  'believ',
  'kind',
  'attent',
  'got',
  'much',
  'love',
  'agre',
  'control',
  'believ',
  'micromanag',
  'daili',
  'life',
  'also',
  'mani',
  'peopl',
  'believ',
  'intent',
  'left',
  'medic',
  'issu',
  'ill',
  'list',
  '-',
  'postpartum',
  'depress',
  '-',
  'low',
  'vitamin',
  '-',
  '-',
  'chronic',
  'fatigu',
  'let',
  'explain',
  'list',
  'origin',
  'low',
  'vitamin',
  '-',
  'defici',
  'level',
  'lower',
  'consid',
  'best',
  'age',
  'accord',
  'recent',
  'bloodwork',
  'recommend',
  'result',
  'state',
  'number',
  'pgml',
  'pgml',
  'within',
  'normal',
  'rang',
  'level',
  'pgml',
  'doctor',
  'suggest',
  'sublingu',
  '-',
  'mcg',
  'daili',
  'rais',
  'level',
  'littl',
  'state',
  'apart',
  'could',
  'find',
  'reason',
  'chronic',
  'fatigu',
  'result',
  'especi',
  'purchas',
  'supplement',
  'mind',
  '-',
  'problem',
  'also',
  'bloodwork',
  'confirm',
  'everyth',
  'els',
  'normal',
  'postpartum',
  'depress',
  'activ',
  'monitor',
  'treat',
  'profession',
  'wife',
  'liter',
  'goe',
  'psychiatrist',
  'psychologist',
  'cant',
  'rememb',
  'exact',
  'titl',
  'multipl',
  'time',
  'year',
  'pay',
  'medic',
  'everi',
  'day',
  'initi',
  'tri',
  'depress',
  'medic',
  'follow',
  'regimen',
  'religi',
  'much',
  'chang',
  'address',
  'follow',
  'appoint',
  'new',
  'medic',
  'prescrib',
  'current',
  'medic',
  'normal',
  'use',
  'treat',
  'adhd',
  'narcolepsi',
  'doctor',
  'believ',
  'would',
  'allevi',
  'tired',
  'releas',
  'dopamin',
  'thu',
  'provid',
  'energi',
  'daili',
  'life',
  'seem',
  'true',
  'seem',
  'happi',
  'medicin',
  'chronic',
  'fatigu',
  'result',
  'poor',
  'schedul',
  'person',
  'health',
  'agre',
  'spend',
  'much',
  'time',
  'sit',
  'use',
  'phone',
  'nap',
  'son',
  'nap',
  'troubl',
  'fall',
  'asleep',
  'normal',
  'bedtim',
  'hour',
  'due',
  'daytim',
  'sleep',
  'alway',
  'go',
  'bed',
  'togeth',
  'told',
  'multipl',
  'time',
  'move',
  'live',
  'room',
  'fell',
  'asleep',
  'sleep',
  'bore',
  'lie',
  'midnight',
  'later',
  'come',
  'final',
  'drowsi',
  'decid',
  'sleep',
  'howev',
  'overstimul',
  'social',
  'media',
  'phone',
  'usag',
  'make',
  'difficult',
  'brain',
  'reach',
  'rem',
  'sleep',
  'normal',
  'fall',
  'asleep',
  'son',
  'wake',
  'eight',
  'hour',
  'pass',
  'still',
  'feel',
  'tire',
  'rest',
  'know',
  'known',
  'condit',
  'agre',
  'disagre',
  'caus',
  'sleep',
  'problem',
  'mind',
  'chronic',
  'fatigu',
  'insomnia',
  'viciou',
  'cycl',
  'mind',
  'stay',
  'late',
  'phone',
  'get',
  'sleep',
  'bodi',
  'need',
  'whether',
  'internet',
  'think',
  'bad',
  'mother',
  'neglig',
  'lazi',
  'abus',
  'import',
  'know',
  'love',
  'woman',
  'marri',
  'feel',
  'comfort',
  'leav',
  'kid',
  'amaz',
  'job',
  'comment',
  'state',
  'lazi',
  'much',
  'home',
  'deni',
  'statement',
  'moment',
  'still',
  'aggrav',
  'argument',
  'phone',
  'recent',
  'end',
  'truli',
  'think',
  'lazi',
  'ive',
  'seen',
  'think',
  'unmotiv',
  'due',
  'lack',
  'sleep',
  'four',
  'wall',
  'everi',
  'day',
  'final',
  'spi',
  'son',
  'two',
  'camera',
  'hous',
  'son',
  'room',
  'one',
  'camera',
  'provid',
  'wide-angl',
  'view',
  'entir',
  'room',
  'posit',
  'directli',
  'crib',
  'camera',
  'serv',
  'purpos',
  'day',
  'id',
  'bare',
  'abl',
  'hear',
  'background',
  'nois',
  'anoth',
  'room',
  'even',
  'tri',
  'listen',
  'wife',
  'amaz',
  'woman',
  'amaz',
  'mother',
  'son',
  'happi',
  'time',
  'super',
  'smart',
  'full',
  'energi',
  'extrem',
  'healthi',
  'hire',
  'nanni',
  'use',
  'daycar',
  'absolut',
  'noth',
  'wrong',
  'wife',
  'day',
  'wish',
  'shed',
  'start',
  'day',
  'earlier',
  'littl',
  'man',
  'want',
  'say',
  'thank',
  'everyon',
  'comment',
  'post',
  'messag',
  'wife',
  'long',
  'in-depth',
  'convers',
  'last',
  'night',
  'attent',
  'post',
  'receiv',
  'ive',
  'shown',
  'everyth',
  'tear',
  'much',
  'laugh',
  'lot',
  'thing',
  'think',
  'think',
  'import',
  'thing',
  'learn',
  'mani',
  'peopl',
  'quick',
  'judg',
  'big',
  'problem',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'need',
  'make',
  'clear',
  'wife',
  'narcolepsi',
  'take',
  'medicin',
  'narcolepsi',
  'said',
  'medicin',
  'take',
  'usual',
  'use',
  'treat',
  'narcolepsi',
  'adhd',
  'also',
  'adhd',
  'second',
  'thing',
  'learn',
  'peopl',
  'love',
  'add',
  'detail',
  'chang',
  'stori',
  'son_month',
  'month_old',
  'old_toddler',
  'toddler_wife',
  'wife_stay-at-hom',
  'stay-at-hom_mom',
  'mom_work',
  'work_six',
  'six_day',
  'day_week',
  'week_im',
  'im_usual',
  'usual_gone',
  'gone_twelv',
  'twelv_hour',
  'hour_day',
  'day_alway',
  'alway_check',
  'check_son',
  'son_remot',
  'remot_via',
  'via_nurseri',
  'nurseri_cam',
  'cam_app',
  'app_alway',
  'alway_awak',
  'awak_morn',
  'morn_around',
  'around_great',
  'great_sleep',
  'sleep_routin',
  'routin_wind',
  'wind_time',
  'time_start',
  'start_time',
  'time_everi',
  'everi_even',
  'even_clean',
  'clean_toy',
  'toy_read',
  'read_book',
  'book_lay',
  'lay_still',
  'still_awak',
  'awak_fall',
  'fall_asleep',
  'asleep_sleep',
  'sleep_night',
  'night_least',
  'least_twelv',
  'twelv_hour',
  'hour_usual',
  'usual_chanc',
  'chanc_check',
  'check_camera',
  'camera_morn',
  'morn_check',
  'check_morn',
  'morn_closer',
  'closer_everi',
  'everi_time',
  'time_look',
  'look_though',
  'though_awak',
  'awak_dark',
  'dark_stand',
  'stand_crib',
  'crib_wait',
  'wait_see',
  'see_immedi',
  'immedi_turn',
  'turn_brightest',
  'brightest_night',
  'night_light',
  'light_camera',
  'camera_speak',
  'speak_camera',
  'camera_app',
  'app_alway',
  'alway_tell',
  'tell_good',
  'good_morn',
  'morn_love',
  'love_usual',
  'usual_laugh',
  'laugh_say',
  'say_dada',
  'dada_leav',
  'leav_app',
  'app_call',
  'call_wife',
  'wife_wake',
  'wake_usual',
  'usual_call',
  'call_three',
  'three_four',
  'four_time',
  'time_final',
  'final_answer',
  'answer_obviou',
  'obviou_woke',
  'woke_call',
  'call_tell',
  'tell_son',
  'son_awak',
  'awak_wait',
  'wait_need',
  'need_get',
  'get_start',
  'start_day',
  'day_morn',
  'morn_phone',
  'phone_ask',
  'ask_go',
  'go_get',
  'get_use',
  'use_bathroom',
  'bathroom_said',
  'said_go',
  'go_kitchen',
  'kitchen_prepar',
  'prepar_breakfast',
  'breakfast_shed',
  'shed_get',
  'get_ask',
  'ask_get',
  'get_bathroom',
  'bathroom_could',
  'could_go',
  'go_kitchen',
  'kitchen_flip',
  'flip_told',
  'told_piss',
  'piss_call',
  'call_everi',
  'everi_morn',
  'morn_tell',
  'tell_mom',
  'mom_routin',
  'routin_retort',
  'retort_well',
  'well_routin',
  'routin_suck',
  'suck_awak',
  'awak_hour',
  'hour_still',
  'still_asleep',
  'asleep_call',
  'call_bother',
  'bother_wait',
  'wait_long',
  'long_need',
  'need_diaper',
  'diaper_chang',
  'chang_probabl',
  'probabl_thirsti',
  'thirsti_hungri',
  'hungri_want',
  'want_play',
  'play_wrong',
  'wrong_though',
  'though_need',
  'need_stop',
  'stop_pleas',
  'pleas_complet',
  'complet_honest',
  'honest_answer',
  'answer_thank',
  'thank_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_ban',
  'ban_comment',
  'comment_within',
  'within_first',
  'first_hour',
  'hour_violat',
  'violat_rule',
  'rule_comment',
  'comment_respond',
  'respond_anyon',
  'anyon_im',
  'im_fairli',
  'fairli_new',
  'new_reddit',
  'reddit_user',
  'user_term',
  'term_post',
  'post_-',
  '-_normal',
  'normal_read',
  'read_lot',
  'lot_-',
  '-_clue',
  'clue_temporari',
  'temporari_comment',
  'comment_ban',
  'ban_affect',
  'affect_abil',
  'abil_edit',
  'edit_post',
  'post_would',
  'would_edit',
  'edit_post',
  'post_much',
  'much_sooner',
  'sooner_known',
  'known_abl',
  'abl_regardless',
  'regardless_comment',
  'comment_ban',
  'ban_mani',
  'mani_thing',
  'thing_need',
  'need_address',
  'address_post',
  'post_import',
  'import_one',
  'one_wife',
  'wife_love',
  'love_anyon',
  'anyon_reddit',
  'reddit_think',
  'think_amaz',
  'amaz_woman',
  'woman_wonder',
  'wonder_mother',
  'mother_absolut',
  'absolut_think',
  'think_incompet',
  'incompet_parent',
  'parent_think',
  'think_neglect',
  'neglect_son',
  'son_none',
  'none_inform',
  'inform_provid',
  'provid_ever',
  'ever_suppos',
  'suppos_convey',
  'convey_neg',
  'neg_messag',
  'messag_whole',
  'whole_issu',
  'issu_awak',
  'awak_awak',
  'awak_still',
  'still_asleep',
  'asleep_-',
  '-_agre',
  'agre_stay',
  'stay_late',
  'late_plu',
  'plu_alarm',
  'alarm_set',
  'set_show',
  'show_wife',
  'wife_post',
  'post_explod',
  'explod_could',
  'could_believ',
  'believ_kind',
  'kind_attent',
  'attent_got',
  'got_much',
  'much_love',
  'love_agre',
  'agre_control',
  'control_believ',
  'believ_micromanag',
  'micromanag_daili',
  'daili_life',
  'life_also',
  'also_mani',
  'mani_peopl',
  'peopl_believ',
  'believ_intent',
  'intent_left',
  'left_medic',
  'medic_issu',
  'issu_ill',
  'ill_list',
  'list_-',
  '-_postpartum',
  'postpartum_depress',
  'depress_-',
  '-_low',
  'low_vitamin',
  'vitamin_-',
  '-_-',
  '-_chronic',
  'chronic_fatigu',
  'fatigu_let',
  'let_explain',
  'explain_list',
  'list_origin',
  'origin_low',
  'low_vitamin',
  'vitamin_-',
  '-_defici',
  'defici_level',
  'level_lower',
  'lower_consid',
  'consid_best',
  'best_age',
  'age_accord',
  'accord_recent',
  'recent_bloodwork',
  'bloodwork_recommend',
  'recommend_result',
  'result_state',
  'state_number',
  'number_pgml',
  'pgml_pgml',
  'pgml_within',
  ...],
 ['husband',
  'best',
  'friend',
  'jacob',
  'move',
  'us',
  'quiet',
  'make',
  'mess',
  'around',
  'hous',
  'like',
  'bil',
  'use',
  'live',
  'us',
  'howev',
  'jacob',
  'habit',
  'walk',
  'bedroom',
  'randomli',
  'take',
  'stuff',
  'husband',
  'closet',
  'say',
  'watch',
  'shirt',
  'frequent',
  'gotten',
  'increasingli',
  'annoy',
  'felt',
  'like',
  'privaci',
  'violat',
  'im',
  'privat',
  'person',
  'id',
  'like',
  'quiet',
  'time',
  'read',
  'mediat',
  'tri',
  'speak',
  'issu',
  'got',
  'brush',
  'last',
  'week',
  'jacob',
  'barg',
  'pm',
  'interrupt',
  'sleep',
  'sleep',
  'depriv',
  'whole',
  'day',
  'work',
  'got',
  'fed',
  'decid',
  'start',
  'sleep',
  'top',
  'bed',
  'full',
  'nake',
  'whenev',
  'im',
  'last',
  'night',
  'jacob',
  'walk',
  'pm',
  'saw',
  'let',
  'loud',
  'shiiiiit',
  'quickli',
  'turn',
  'around',
  'rush',
  'start',
  'hear',
  'commot',
  'outsid',
  'got',
  'dress',
  'see',
  'go',
  'met',
  'lot',
  'yell',
  'scold',
  'shame',
  'husband',
  'say',
  'line',
  'expos',
  'brother',
  'horrend',
  'sight',
  'ask',
  'meant',
  'yell',
  'stop',
  'act',
  'dumb',
  'said',
  'felt',
  'frusrtrat',
  'privaci',
  'got',
  'violat',
  'went',
  'jacob',
  'grab',
  'someth',
  'liter',
  'take',
  'second',
  'went',
  'made',
  'uncomfort',
  'describ',
  'behavior',
  'sl',
  '@',
  'tti',
  'argument',
  'got',
  'heat',
  'told',
  'start',
  'put',
  'decent',
  'cloth',
  'act',
  'like',
  'ladi',
  'instead',
  'sl',
  '$',
  'sinc',
  'room',
  'alreadi',
  'gave',
  'permiss',
  'got',
  'mad',
  'told',
  'loudli',
  'keep',
  'sleep',
  'bed',
  'nake',
  'long',
  'friend',
  'keep',
  'walk',
  'inti',
  'room',
  'walk',
  'stop',
  'complain',
  'complain',
  'say',
  'im',
  'ridicul',
  'even',
  'suggest',
  'attempt',
  'make',
  'jacob',
  'move',
  'aita',
  'still',
  'argu',
  'til',
  'morn',
  '*',
  'edit',
  '*',
  'said',
  'call',
  'word',
  'directli',
  'said',
  'compar',
  'behavior',
  'sl',
  '&',
  'husband_best',
  'best_friend',
  'friend_jacob',
  'jacob_move',
  'move_us',
  'us_quiet',
  'quiet_make',
  'make_mess',
  'mess_around',
  'around_hous',
  'hous_like',
  'like_bil',
  'bil_use',
  'use_live',
  'live_us',
  'us_howev',
  'howev_jacob',
  'jacob_habit',
  'habit_walk',
  'walk_bedroom',
  'bedroom_randomli',
  'randomli_take',
  'take_stuff',
  'stuff_husband',
  'husband_closet',
  'closet_say',
  'say_watch',
  'watch_shirt',
  'shirt_frequent',
  'frequent_gotten',
  'gotten_increasingli',
  'increasingli_annoy',
  'annoy_felt',
  'felt_like',
  'like_privaci',
  'privaci_violat',
  'violat_im',
  'im_privat',
  'privat_person',
  'person_id',
  'id_like',
  'like_quiet',
  'quiet_time',
  'time_read',
  'read_mediat',
  'mediat_tri',
  'tri_speak',
  'speak_issu',
  'issu_got',
  'got_brush',
  'brush_last',
  'last_week',
  'week_jacob',
  'jacob_barg',
  'barg_pm',
  'pm_interrupt',
  'interrupt_sleep',
  'sleep_sleep',
  'sleep_depriv',
  'depriv_whole',
  'whole_day',
  'day_work',
  'work_got',
  'got_fed',
  'fed_decid',
  'decid_start',
  'start_sleep',
  'sleep_top',
  'top_bed',
  'bed_full',
  'full_nake',
  'nake_whenev',
  'whenev_im',
  'im_last',
  'last_night',
  'night_jacob',
  'jacob_walk',
  'walk_pm',
  'pm_saw',
  'saw_let',
  'let_loud',
  'loud_shiiiiit',
  'shiiiiit_quickli',
  'quickli_turn',
  'turn_around',
  'around_rush',
  'rush_start',
  'start_hear',
  'hear_commot',
  'commot_outsid',
  'outsid_got',
  'got_dress',
  'dress_see',
  'see_go',
  'go_met',
  'met_lot',
  'lot_yell',
  'yell_scold',
  'scold_shame',
  'shame_husband',
  'husband_say',
  'say_line',
  'line_expos',
  'expos_brother',
  'brother_horrend',
  'horrend_sight',
  'sight_ask',
  'ask_meant',
  'meant_yell',
  'yell_stop',
  'stop_act',
  'act_dumb',
  'dumb_said',
  'said_felt',
  'felt_frusrtrat',
  'frusrtrat_privaci',
  'privaci_got',
  'got_violat',
  'violat_went',
  'went_jacob',
  'jacob_grab',
  'grab_someth',
  'someth_liter',
  'liter_take',
  'take_second',
  'second_went',
  'went_made',
  'made_uncomfort',
  'uncomfort_describ',
  'describ_behavior',
  'behavior_sl',
  'sl_@',
  '@_tti',
  'tti_argument',
  'argument_got',
  'got_heat',
  'heat_told',
  'told_start',
  'start_put',
  'put_decent',
  'decent_cloth',
  'cloth_act',
  'act_like',
  'like_ladi',
  'ladi_instead',
  'instead_sl',
  'sl_$',
  '$_sinc',
  'sinc_room',
  'room_alreadi',
  'alreadi_gave',
  'gave_permiss',
  'permiss_got',
  'got_mad',
  'mad_told',
  'told_loudli',
  'loudli_keep',
  'keep_sleep',
  'sleep_bed',
  'bed_nake',
  'nake_long',
  'long_friend',
  'friend_keep',
  'keep_walk',
  'walk_inti',
  'inti_room',
  'room_walk',
  'walk_stop',
  'stop_complain',
  'complain_complain',
  'complain_say',
  'say_im',
  'im_ridicul',
  'ridicul_even',
  'even_suggest',
  'suggest_attempt',
  'attempt_make',
  'make_jacob',
  'jacob_move',
  'move_aita',
  'aita_still',
  'still_argu',
  'argu_til',
  'til_morn',
  'morn_*',
  '*_edit',
  'edit_*',
  '*_said',
  'said_call',
  'call_word',
  'word_directli',
  'directli_said',
  'said_compar',
  'compar_behavior',
  'behavior_sl',
  'sl_&',
  'husband_best_friend',
  'best_friend_jacob',
  'friend_jacob_move',
  'jacob_move_us',
  'move_us_quiet',
  'us_quiet_make',
  'quiet_make_mess',
  'make_mess_around',
  'mess_around_hous',
  'around_hous_like',
  'hous_like_bil',
  'like_bil_use',
  'bil_use_live',
  'use_live_us',
  'live_us_howev',
  'us_howev_jacob',
  'howev_jacob_habit',
  'jacob_habit_walk',
  'habit_walk_bedroom',
  'walk_bedroom_randomli',
  'bedroom_randomli_take',
  'randomli_take_stuff',
  'take_stuff_husband',
  'stuff_husband_closet',
  'husband_closet_say',
  'closet_say_watch',
  'say_watch_shirt',
  'watch_shirt_frequent',
  'shirt_frequent_gotten',
  'frequent_gotten_increasingli',
  'gotten_increasingli_annoy',
  'increasingli_annoy_felt',
  'annoy_felt_like',
  'felt_like_privaci',
  'like_privaci_violat',
  'privaci_violat_im',
  'violat_im_privat',
  'im_privat_person',
  'privat_person_id',
  'person_id_like',
  'id_like_quiet',
  'like_quiet_time',
  'quiet_time_read',
  'time_read_mediat',
  'read_mediat_tri',
  'mediat_tri_speak',
  'tri_speak_issu',
  'speak_issu_got',
  'issu_got_brush',
  'got_brush_last',
  'brush_last_week',
  'last_week_jacob',
  'week_jacob_barg',
  'jacob_barg_pm',
  'barg_pm_interrupt',
  'pm_interrupt_sleep',
  'interrupt_sleep_sleep',
  'sleep_sleep_depriv',
  'sleep_depriv_whole',
  'depriv_whole_day',
  'whole_day_work',
  'day_work_got',
  'work_got_fed',
  'got_fed_decid',
  'fed_decid_start',
  'decid_start_sleep',
  'start_sleep_top',
  'sleep_top_bed',
  'top_bed_full',
  'bed_full_nake',
  'full_nake_whenev',
  'nake_whenev_im',
  'whenev_im_last',
  'im_last_night',
  'last_night_jacob',
  'night_jacob_walk',
  'jacob_walk_pm',
  'walk_pm_saw',
  'pm_saw_let',
  'saw_let_loud',
  'let_loud_shiiiiit',
  'loud_shiiiiit_quickli',
  'shiiiiit_quickli_turn',
  'quickli_turn_around',
  'turn_around_rush',
  'around_rush_start',
  'rush_start_hear',
  'start_hear_commot',
  'hear_commot_outsid',
  'commot_outsid_got',
  'outsid_got_dress',
  'got_dress_see',
  'dress_see_go',
  'see_go_met',
  'go_met_lot',
  'met_lot_yell',
  'lot_yell_scold',
  'yell_scold_shame',
  'scold_shame_husband',
  'shame_husband_say',
  'husband_say_line',
  'say_line_expos',
  'line_expos_brother',
  'expos_brother_horrend',
  'brother_horrend_sight',
  'horrend_sight_ask',
  'sight_ask_meant',
  'ask_meant_yell',
  'meant_yell_stop',
  'yell_stop_act',
  'stop_act_dumb',
  'act_dumb_said',
  'dumb_said_felt',
  'said_felt_frusrtrat',
  'felt_frusrtrat_privaci',
  'frusrtrat_privaci_got',
  'privaci_got_violat',
  'got_violat_went',
  'violat_went_jacob',
  'went_jacob_grab',
  'jacob_grab_someth',
  'grab_someth_liter',
  'someth_liter_take',
  'liter_take_second',
  'take_second_went',
  'second_went_made',
  'went_made_uncomfort',
  'made_uncomfort_describ',
  'uncomfort_describ_behavior',
  'describ_behavior_sl',
  'behavior_sl_@',
  'sl_@_tti',
  '@_tti_argument',
  'tti_argument_got',
  'argument_got_heat',
  'got_heat_told',
  'heat_told_start',
  'told_start_put',
  'start_put_decent',
  'put_decent_cloth',
  'decent_cloth_act',
  'cloth_act_like',
  'act_like_ladi',
  'like_ladi_instead',
  'ladi_instead_sl',
  'instead_sl_$',
  'sl_$_sinc',
  '$_sinc_room',
  'sinc_room_alreadi',
  'room_alreadi_gave',
  'alreadi_gave_permiss',
  'gave_permiss_got',
  'permiss_got_mad',
  'got_mad_told',
  'mad_told_loudli',
  'told_loudli_keep',
  'loudli_keep_sleep',
  'keep_sleep_bed',
  'sleep_bed_nake',
  'bed_nake_long',
  'nake_long_friend',
  'long_friend_keep',
  'friend_keep_walk',
  'keep_walk_inti',
  'walk_inti_room',
  'inti_room_walk',
  'room_walk_stop',
  'walk_stop_complain',
  'stop_complain_complain',
  'complain_complain_say',
  'complain_say_im',
  'say_im_ridicul',
  'im_ridicul_even',
  'ridicul_even_suggest',
  'even_suggest_attempt',
  'suggest_attempt_make',
  'attempt_make_jacob',
  'make_jacob_move',
  'jacob_move_aita',
  'move_aita_still',
  'aita_still_argu',
  'still_argu_til',
  'argu_til_morn',
  'til_morn_*',
  'morn_*_edit',
  '*_edit_*',
  'edit_*_said',
  '*_said_call',
  'said_call_word',
  'call_word_directli',
  'word_directli_said',
  'directli_said_compar',
  'said_compar_behavior',
  'compar_behavior_sl',
  'behavior_sl_&'],
 ['daughter',
  'recent',
  'vacat',
  'spent',
  'day',
  'area',
  'known',
  'lot',
  'richfam',
  'peopl',
  'toward',
  'end',
  'day',
  'saw',
  'one',
  'daughter',
  'favorit',
  'celebr',
  'well',
  'call',
  'walk',
  'store',
  'daughter',
  'ran',
  'store',
  'got',
  'near',
  'stop',
  'secur',
  'said',
  'daughter',
  'daughter',
  'birthday',
  'want',
  'focu',
  'daughter',
  'daughter',
  'upset',
  'fan',
  'long',
  'time',
  'tri',
  'pictur',
  'turn',
  'away',
  'daughter',
  'crush',
  'later',
  'night',
  'made',
  'post',
  'talk',
  'experi',
  'let',
  'anyon',
  'go',
  'near',
  'daughter',
  'fact',
  'secur',
  'rude',
  'stop',
  'coupl',
  'second',
  'pictur',
  'understand',
  'daughter',
  'birthday',
  'minut',
  'interact',
  'fan',
  'go',
  'ruin',
  'day',
  'girl',
  'need',
  'learn',
  'world',
  'revolv',
  'around',
  'post',
  'end',
  'get',
  'lot',
  'attent',
  'lot',
  'peopl',
  'actual',
  'said',
  'daughter',
  'entitl',
  'expect',
  'interrupt',
  'daughter',
  'birthday',
  'everyon',
  'want',
  'pictur',
  'husband',
  'also',
  'saw',
  'post',
  'said',
  'believ',
  'would',
  'bash',
  'tri',
  'spend',
  'day',
  'daughter',
  'im',
  'tri',
  'bash',
  'spend',
  'day',
  'daughter',
  'without',
  'fan',
  'think',
  'least',
  'owe',
  'take',
  'pictur',
  'aita',
  'make',
  'post',
  'daughter_recent',
  'recent_vacat',
  'vacat_spent',
  'spent_day',
  'day_area',
  'area_known',
  'known_lot',
  'lot_richfam',
  'richfam_peopl',
  'peopl_toward',
  'toward_end',
  'end_day',
  'day_saw',
  'saw_one',
  'one_daughter',
  'daughter_favorit',
  'favorit_celebr',
  'celebr_well',
  'well_call',
  'call_walk',
  'walk_store',
  'store_daughter',
  'daughter_ran',
  'ran_store',
  'store_got',
  'got_near',
  'near_stop',
  'stop_secur',
  'secur_said',
  'said_daughter',
  'daughter_daughter',
  'daughter_birthday',
  'birthday_want',
  'want_focu',
  'focu_daughter',
  'daughter_daughter',
  'daughter_upset',
  'upset_fan',
  'fan_long',
  'long_time',
  'time_tri',
  'tri_pictur',
  'pictur_turn',
  'turn_away',
  'away_daughter',
  'daughter_crush',
  'crush_later',
  'later_night',
  'night_made',
  'made_post',
  'post_talk',
  'talk_experi',
  'experi_let',
  'let_anyon',
  'anyon_go',
  'go_near',
  'near_daughter',
  'daughter_fact',
  'fact_secur',
  'secur_rude',
  'rude_stop',
  'stop_coupl',
  'coupl_second',
  'second_pictur',
  'pictur_understand',
  'understand_daughter',
  'daughter_birthday',
  'birthday_minut',
  'minut_interact',
  'interact_fan',
  'fan_go',
  'go_ruin',
  'ruin_day',
  'day_girl',
  'girl_need',
  'need_learn',
  'learn_world',
  'world_revolv',
  'revolv_around',
  'around_post',
  'post_end',
  'end_get',
  'get_lot',
  'lot_attent',
  'attent_lot',
  'lot_peopl',
  'peopl_actual',
  'actual_said',
  'said_daughter',
  'daughter_entitl',
  'entitl_expect',
  'expect_interrupt',
  'interrupt_daughter',
  'daughter_birthday',
  'birthday_everyon',
  'everyon_want',
  'want_pictur',
  'pictur_husband',
  'husband_also',
  'also_saw',
  'saw_post',
  'post_said',
  'said_believ',
  'believ_would',
  'would_bash',
  'bash_tri',
  'tri_spend',
  'spend_day',
  'day_daughter',
  'daughter_im',
  'im_tri',
  'tri_bash',
  'bash_spend',
  'spend_day',
  'day_daughter',
  'daughter_without',
  'without_fan',
  'fan_think',
  'think_least',
  'least_owe',
  'owe_take',
  'take_pictur',
  'pictur_aita',
  'aita_make',
  'make_post',
  'daughter_recent_vacat',
  'recent_vacat_spent',
  'vacat_spent_day',
  'spent_day_area',
  'day_area_known',
  'area_known_lot',
  'known_lot_richfam',
  'lot_richfam_peopl',
  'richfam_peopl_toward',
  'peopl_toward_end',
  'toward_end_day',
  'end_day_saw',
  'day_saw_one',
  'saw_one_daughter',
  'one_daughter_favorit',
  'daughter_favorit_celebr',
  'favorit_celebr_well',
  'celebr_well_call',
  'well_call_walk',
  'call_walk_store',
  'walk_store_daughter',
  'store_daughter_ran',
  'daughter_ran_store',
  'ran_store_got',
  'store_got_near',
  'got_near_stop',
  'near_stop_secur',
  'stop_secur_said',
  'secur_said_daughter',
  'said_daughter_daughter',
  'daughter_daughter_birthday',
  'daughter_birthday_want',
  'birthday_want_focu',
  'want_focu_daughter',
  'focu_daughter_daughter',
  'daughter_daughter_upset',
  'daughter_upset_fan',
  'upset_fan_long',
  'fan_long_time',
  'long_time_tri',
  'time_tri_pictur',
  'tri_pictur_turn',
  'pictur_turn_away',
  'turn_away_daughter',
  'away_daughter_crush',
  'daughter_crush_later',
  'crush_later_night',
  'later_night_made',
  'night_made_post',
  'made_post_talk',
  'post_talk_experi',
  'talk_experi_let',
  'experi_let_anyon',
  'let_anyon_go',
  'anyon_go_near',
  'go_near_daughter',
  'near_daughter_fact',
  'daughter_fact_secur',
  'fact_secur_rude',
  'secur_rude_stop',
  'rude_stop_coupl',
  'stop_coupl_second',
  'coupl_second_pictur',
  'second_pictur_understand',
  'pictur_understand_daughter',
  'understand_daughter_birthday',
  'daughter_birthday_minut',
  'birthday_minut_interact',
  'minut_interact_fan',
  'interact_fan_go',
  'fan_go_ruin',
  'go_ruin_day',
  'ruin_day_girl',
  'day_girl_need',
  'girl_need_learn',
  'need_learn_world',
  'learn_world_revolv',
  'world_revolv_around',
  'revolv_around_post',
  'around_post_end',
  'post_end_get',
  'end_get_lot',
  'get_lot_attent',
  'lot_attent_lot',
  'attent_lot_peopl',
  'lot_peopl_actual',
  'peopl_actual_said',
  'actual_said_daughter',
  'said_daughter_entitl',
  'daughter_entitl_expect',
  'entitl_expect_interrupt',
  'expect_interrupt_daughter',
  'interrupt_daughter_birthday',
  'daughter_birthday_everyon',
  'birthday_everyon_want',
  'everyon_want_pictur',
  'want_pictur_husband',
  'pictur_husband_also',
  'husband_also_saw',
  'also_saw_post',
  'saw_post_said',
  'post_said_believ',
  'said_believ_would',
  'believ_would_bash',
  'would_bash_tri',
  'bash_tri_spend',
  'tri_spend_day',
  'spend_day_daughter',
  'day_daughter_im',
  'daughter_im_tri',
  'im_tri_bash',
  'tri_bash_spend',
  'bash_spend_day',
  'spend_day_daughter',
  'day_daughter_without',
  'daughter_without_fan',
  'without_fan_think',
  'fan_think_least',
  'think_least_owe',
  'least_owe_take',
  'owe_take_pictur',
  'take_pictur_aita',
  'pictur_aita_make',
  'aita_make_post'],
 ['okay',
  'older',
  'brother',
  'well',
  'call',
  'jami',
  'weve',
  'roommat',
  'sinc',
  'time',
  'ive',
  'seen',
  'lot',
  'girl',
  'come',
  'go',
  'even',
  'relationship',
  'differ',
  'girl',
  'im',
  'huge',
  'fan',
  'action',
  'treat',
  'women',
  'gener',
  'life',
  'free',
  'mess',
  'much',
  'want',
  'turn',
  'blind',
  'eye',
  'four',
  'kid',
  'oldest',
  'daughter',
  'one',
  'actual',
  'pay',
  'child',
  'support',
  'rare',
  'see',
  'two',
  'twin',
  'boy',
  'one',
  'close',
  'friend',
  'take',
  'court',
  'best',
  'provid',
  'need',
  'help',
  'son',
  'realli',
  'know',
  'much',
  'think',
  'around',
  'want',
  'kid',
  'see',
  'mayb',
  'hand',
  'time',
  'around',
  'year',
  'see',
  'year',
  'old',
  'son',
  'call',
  'one',
  'accid',
  'said',
  'wish',
  'get',
  'irrit',
  'mother',
  'call',
  'essenti',
  'happen',
  'year',
  'ago',
  'jami',
  'met',
  'girl',
  'name',
  'natali',
  'immedi',
  'hit',
  'move',
  'apart',
  'like',
  'well',
  'enough',
  'habit',
  'expect',
  'last',
  'long',
  'surpris',
  'us',
  'sinc',
  'plan',
  'move',
  'month',
  'shed',
  'talk',
  'renov',
  'room',
  'sort',
  'stuff',
  'could',
  'space',
  'even',
  'laughingli',
  'said',
  'mayb',
  'could',
  'nurseri',
  'thought',
  'joke',
  'brush',
  'well',
  'coupl',
  'week',
  'ago',
  'dinner',
  'friend',
  'decor',
  'apart',
  'propos',
  'congratul',
  'problem',
  'night',
  'ago',
  'drink',
  'talk',
  'natali',
  'gush',
  'plan',
  'wed',
  'bridesmaid',
  'new',
  'ring',
  'went',
  'wrong',
  'mention',
  'want',
  'kid',
  'soon',
  'could',
  'could',
  'see',
  'brother',
  'best',
  'dad',
  'start',
  'laugh',
  'basic',
  'said',
  'best',
  'dad',
  'four',
  'ask',
  'meant',
  'brother',
  'start',
  'freak',
  'realiz',
  'know',
  'explain',
  'rais',
  'kid',
  'even',
  'want',
  'see',
  'want',
  'kid',
  'appar',
  'told',
  'brother',
  'drunk',
  'start',
  'yell',
  'call',
  'friend',
  'left',
  'stay',
  'away',
  'day',
  'two',
  'blew',
  'phone',
  'guess',
  'natali',
  'fight',
  'horribl',
  'blame',
  'ruin',
  'engag',
  'im',
  'ah',
  'tell',
  'choic',
  'tell',
  'kid',
  'parent',
  'agre',
  'talk',
  'honeslti',
  'feel',
  'like',
  'warn',
  'thing',
  'got',
  'seriou',
  'even',
  'deliber',
  'told',
  'aita',
  'okay_older',
  'older_brother',
  'brother_well',
  'well_call',
  'call_jami',
  'jami_weve',
  'weve_roommat',
  'roommat_sinc',
  'sinc_time',
  'time_ive',
  'ive_seen',
  'seen_lot',
  'lot_girl',
  'girl_come',
  'come_go',
  'go_even',
  'even_relationship',
  'relationship_differ',
  'differ_girl',
  'girl_im',
  'im_huge',
  'huge_fan',
  'fan_action',
  'action_treat',
  'treat_women',
  'women_gener',
  'gener_life',
  'life_free',
  'free_mess',
  'mess_much',
  'much_want',
  'want_turn',
  'turn_blind',
  'blind_eye',
  'eye_four',
  'four_kid',
  'kid_oldest',
  'oldest_daughter',
  'daughter_one',
  'one_actual',
  'actual_pay',
  'pay_child',
  'child_support',
  'support_rare',
  'rare_see',
  'see_two',
  'two_twin',
  'twin_boy',
  'boy_one',
  'one_close',
  'close_friend',
  'friend_take',
  'take_court',
  'court_best',
  'best_provid',
  'provid_need',
  'need_help',
  'help_son',
  'son_realli',
  'realli_know',
  'know_much',
  'much_think',
  'think_around',
  'around_want',
  'want_kid',
  'kid_see',
  'see_mayb',
  'mayb_hand',
  'hand_time',
  'time_around',
  'around_year',
  'year_see',
  'see_year',
  'year_old',
  'old_son',
  'son_call',
  'call_one',
  'one_accid',
  'accid_said',
  'said_wish',
  'wish_get',
  'get_irrit',
  'irrit_mother',
  'mother_call',
  'call_essenti',
  'essenti_happen',
  'happen_year',
  'year_ago',
  'ago_jami',
  'jami_met',
  'met_girl',
  'girl_name',
  'name_natali',
  'natali_immedi',
  'immedi_hit',
  'hit_move',
  'move_apart',
  'apart_like',
  'like_well',
  'well_enough',
  'enough_habit',
  'habit_expect',
  'expect_last',
  'last_long',
  'long_surpris',
  'surpris_us',
  'us_sinc',
  'sinc_plan',
  'plan_move',
  'move_month',
  'month_shed',
  'shed_talk',
  'talk_renov',
  'renov_room',
  'room_sort',
  'sort_stuff',
  'stuff_could',
  'could_space',
  'space_even',
  'even_laughingli',
  'laughingli_said',
  'said_mayb',
  'mayb_could',
  'could_nurseri',
  'nurseri_thought',
  'thought_joke',
  'joke_brush',
  'brush_well',
  'well_coupl',
  'coupl_week',
  'week_ago',
  'ago_dinner',
  'dinner_friend',
  'friend_decor',
  'decor_apart',
  'apart_propos',
  'propos_congratul',
  'congratul_problem',
  'problem_night',
  'night_ago',
  'ago_drink',
  'drink_talk',
  'talk_natali',
  'natali_gush',
  'gush_plan',
  'plan_wed',
  'wed_bridesmaid',
  'bridesmaid_new',
  'new_ring',
  'ring_went',
  'went_wrong',
  'wrong_mention',
  'mention_want',
  'want_kid',
  'kid_soon',
  'soon_could',
  'could_could',
  'could_see',
  'see_brother',
  'brother_best',
  'best_dad',
  'dad_start',
  'start_laugh',
  'laugh_basic',
  'basic_said',
  'said_best',
  'best_dad',
  'dad_four',
  'four_ask',
  'ask_meant',
  'meant_brother',
  'brother_start',
  'start_freak',
  'freak_realiz',
  'realiz_know',
  'know_explain',
  'explain_rais',
  'rais_kid',
  'kid_even',
  'even_want',
  'want_see',
  'see_want',
  'want_kid',
  'kid_appar',
  'appar_told',
  'told_brother',
  'brother_drunk',
  'drunk_start',
  'start_yell',
  'yell_call',
  'call_friend',
  'friend_left',
  'left_stay',
  'stay_away',
  'away_day',
  'day_two',
  'two_blew',
  'blew_phone',
  'phone_guess',
  'guess_natali',
  'natali_fight',
  'fight_horribl',
  'horribl_blame',
  'blame_ruin',
  'ruin_engag',
  'engag_im',
  'im_ah',
  'ah_tell',
  'tell_choic',
  'choic_tell',
  'tell_kid',
  'kid_parent',
  'parent_agre',
  'agre_talk',
  'talk_honeslti',
  'honeslti_feel',
  'feel_like',
  'like_warn',
  'warn_thing',
  'thing_got',
  'got_seriou',
  'seriou_even',
  'even_deliber',
  'deliber_told',
  'told_aita',
  'okay_older_brother',
  'older_brother_well',
  'brother_well_call',
  'well_call_jami',
  'call_jami_weve',
  'jami_weve_roommat',
  'weve_roommat_sinc',
  'roommat_sinc_time',
  'sinc_time_ive',
  'time_ive_seen',
  'ive_seen_lot',
  'seen_lot_girl',
  'lot_girl_come',
  'girl_come_go',
  'come_go_even',
  'go_even_relationship',
  'even_relationship_differ',
  'relationship_differ_girl',
  'differ_girl_im',
  'girl_im_huge',
  'im_huge_fan',
  'huge_fan_action',
  'fan_action_treat',
  'action_treat_women',
  'treat_women_gener',
  'women_gener_life',
  'gener_life_free',
  'life_free_mess',
  'free_mess_much',
  'mess_much_want',
  'much_want_turn',
  'want_turn_blind',
  'turn_blind_eye',
  'blind_eye_four',
  'eye_four_kid',
  'four_kid_oldest',
  'kid_oldest_daughter',
  'oldest_daughter_one',
  'daughter_one_actual',
  'one_actual_pay',
  'actual_pay_child',
  'pay_child_support',
  'child_support_rare',
  'support_rare_see',
  'rare_see_two',
  'see_two_twin',
  'two_twin_boy',
  'twin_boy_one',
  'boy_one_close',
  'one_close_friend',
  'close_friend_take',
  'friend_take_court',
  'take_court_best',
  'court_best_provid',
  'best_provid_need',
  'provid_need_help',
  'need_help_son',
  'help_son_realli',
  'son_realli_know',
  'realli_know_much',
  'know_much_think',
  'much_think_around',
  'think_around_want',
  'around_want_kid',
  'want_kid_see',
  'kid_see_mayb',
  'see_mayb_hand',
  'mayb_hand_time',
  'hand_time_around',
  'time_around_year',
  'around_year_see',
  'year_see_year',
  'see_year_old',
  'year_old_son',
  'old_son_call',
  'son_call_one',
  'call_one_accid',
  'one_accid_said',
  'accid_said_wish',
  'said_wish_get',
  'wish_get_irrit',
  'get_irrit_mother',
  'irrit_mother_call',
  'mother_call_essenti',
  'call_essenti_happen',
  'essenti_happen_year',
  'happen_year_ago',
  'year_ago_jami',
  'ago_jami_met',
  'jami_met_girl',
  'met_girl_name',
  'girl_name_natali',
  'name_natali_immedi',
  'natali_immedi_hit',
  'immedi_hit_move',
  'hit_move_apart',
  'move_apart_like',
  'apart_like_well',
  'like_well_enough',
  'well_enough_habit',
  'enough_habit_expect',
  'habit_expect_last',
  'expect_last_long',
  'last_long_surpris',
  'long_surpris_us',
  'surpris_us_sinc',
  'us_sinc_plan',
  'sinc_plan_move',
  'plan_move_month',
  'move_month_shed',
  'month_shed_talk',
  'shed_talk_renov',
  'talk_renov_room',
  'renov_room_sort',
  'room_sort_stuff',
  'sort_stuff_could',
  'stuff_could_space',
  'could_space_even',
  'space_even_laughingli',
  'even_laughingli_said',
  'laughingli_said_mayb',
  'said_mayb_could',
  'mayb_could_nurseri',
  'could_nurseri_thought',
  'nurseri_thought_joke',
  'thought_joke_brush',
  'joke_brush_well',
  'brush_well_coupl',
  'well_coupl_week',
  'coupl_week_ago',
  'week_ago_dinner',
  'ago_dinner_friend',
  'dinner_friend_decor',
  'friend_decor_apart',
  'decor_apart_propos',
  'apart_propos_congratul',
  'propos_congratul_problem',
  'congratul_problem_night',
  'problem_night_ago',
  'night_ago_drink',
  'ago_drink_talk',
  'drink_talk_natali',
  'talk_natali_gush',
  'natali_gush_plan',
  'gush_plan_wed',
  'plan_wed_bridesmaid',
  'wed_bridesmaid_new',
  'bridesmaid_new_ring',
  'new_ring_went',
  'ring_went_wrong',
  'went_wrong_mention',
  'wrong_mention_want',
  'mention_want_kid',
  'want_kid_soon',
  'kid_soon_could',
  'soon_could_could',
  'could_could_see',
  'could_see_brother',
  'see_brother_best',
  'brother_best_dad',
  'best_dad_start',
  'dad_start_laugh',
  'start_laugh_basic',
  'laugh_basic_said',
  'basic_said_best',
  'said_best_dad',
  'best_dad_four',
  'dad_four_ask',
  'four_ask_meant',
  'ask_meant_brother',
  'meant_brother_start',
  'brother_start_freak',
  'start_freak_realiz',
  'freak_realiz_know',
  'realiz_know_explain',
  'know_explain_rais',
  'explain_rais_kid',
  'rais_kid_even',
  'kid_even_want',
  'even_want_see',
  'want_see_want',
  'see_want_kid',
  'want_kid_appar',
  'kid_appar_told',
  'appar_told_brother',
  'told_brother_drunk',
  'brother_drunk_start',
  'drunk_start_yell',
  'start_yell_call',
  'yell_call_friend',
  'call_friend_left',
  'friend_left_stay',
  'left_stay_away',
  'stay_away_day',
  'away_day_two',
  'day_two_blew',
  'two_blew_phone',
  'blew_phone_guess',
  'phone_guess_natali',
  'guess_natali_fight',
  'natali_fight_horribl',
  'fight_horribl_blame',
  'horribl_blame_ruin',
  'blame_ruin_engag',
  'ruin_engag_im',
  'engag_im_ah',
  'im_ah_tell',
  'ah_tell_choic',
  'tell_choic_tell',
  'choic_tell_kid',
  'tell_kid_parent',
  'kid_parent_agre',
  'parent_agre_talk',
  'agre_talk_honeslti',
  'talk_honeslti_feel',
  'honeslti_feel_like',
  'feel_like_warn',
  'like_warn_thing',
  'warn_thing_got',
  'thing_got_seriou',
  'got_seriou_even',
  'seriou_even_deliber',
  'even_deliber_told',
  'deliber_told_aita'],
 ['husband',
  'recent',
  'move',
  'back',
  'hometown',
  'bought',
  'hous',
  'near',
  'parent',
  'decid',
  'host',
  'famili',
  'dinner',
  'cook',
  'dish',
  'includ',
  'french',
  'onion',
  'soup',
  'soup',
  'hit',
  'mom',
  'ask',
  'recip',
  'jokingli',
  'said',
  'secret',
  'ingredi',
  'tear',
  'onion',
  'mom',
  'stop',
  'eat',
  'stare',
  'tri',
  'eas',
  'tension',
  'explain',
  'joke',
  'respond',
  'minut',
  'got',
  'left',
  'knew',
  'strict',
  'know',
  'food',
  'came',
  'make',
  'sure',
  'theyr',
  'organ',
  'non-gmo',
  'actual',
  'went',
  'groceri',
  'shop',
  'dinner',
  'reassur',
  'realiz',
  'obviou',
  'onion',
  'joke',
  'would',
  'set',
  'husband',
  'tri',
  'get',
  'talk',
  'refus',
  'aita',
  'husband_recent',
  'recent_move',
  'move_back',
  'back_hometown',
  'hometown_bought',
  'bought_hous',
  'hous_near',
  'near_parent',
  'parent_decid',
  'decid_host',
  'host_famili',
  'famili_dinner',
  'dinner_cook',
  'cook_dish',
  'dish_includ',
  'includ_french',
  'french_onion',
  'onion_soup',
  'soup_soup',
  'soup_hit',
  'hit_mom',
  'mom_ask',
  'ask_recip',
  'recip_jokingli',
  'jokingli_said',
  'said_secret',
  'secret_ingredi',
  'ingredi_tear',
  'tear_onion',
  'onion_mom',
  'mom_stop',
  'stop_eat',
  'eat_stare',
  'stare_tri',
  'tri_eas',
  'eas_tension',
  'tension_explain',
  'explain_joke',
  'joke_respond',
  'respond_minut',
  'minut_got',
  'got_left',
  'left_knew',
  'knew_strict',
  'strict_know',
  'know_food',
  'food_came',
  'came_make',
  'make_sure',
  'sure_theyr',
  'theyr_organ',
  'organ_non-gmo',
  'non-gmo_actual',
  'actual_went',
  'went_groceri',
  'groceri_shop',
  'shop_dinner',
  'dinner_reassur',
  'reassur_realiz',
  'realiz_obviou',
  'obviou_onion',
  'onion_joke',
  'joke_would',
  'would_set',
  'set_husband',
  'husband_tri',
  'tri_get',
  'get_talk',
  'talk_refus',
  'refus_aita',
  'husband_recent_move',
  'recent_move_back',
  'move_back_hometown',
  'back_hometown_bought',
  'hometown_bought_hous',
  'bought_hous_near',
  'hous_near_parent',
  'near_parent_decid',
  'parent_decid_host',
  'decid_host_famili',
  'host_famili_dinner',
  'famili_dinner_cook',
  'dinner_cook_dish',
  'cook_dish_includ',
  'dish_includ_french',
  'includ_french_onion',
  'french_onion_soup',
  'onion_soup_soup',
  'soup_soup_hit',
  'soup_hit_mom',
  'hit_mom_ask',
  'mom_ask_recip',
  'ask_recip_jokingli',
  'recip_jokingli_said',
  'jokingli_said_secret',
  'said_secret_ingredi',
  'secret_ingredi_tear',
  'ingredi_tear_onion',
  'tear_onion_mom',
  'onion_mom_stop',
  'mom_stop_eat',
  'stop_eat_stare',
  'eat_stare_tri',
  'stare_tri_eas',
  'tri_eas_tension',
  'eas_tension_explain',
  'tension_explain_joke',
  'explain_joke_respond',
  'joke_respond_minut',
  'respond_minut_got',
  'minut_got_left',
  'got_left_knew',
  'left_knew_strict',
  'knew_strict_know',
  'strict_know_food',
  'know_food_came',
  'food_came_make',
  'came_make_sure',
  'make_sure_theyr',
  'sure_theyr_organ',
  'theyr_organ_non-gmo',
  'organ_non-gmo_actual',
  'non-gmo_actual_went',
  'actual_went_groceri',
  'went_groceri_shop',
  'groceri_shop_dinner',
  'shop_dinner_reassur',
  'dinner_reassur_realiz',
  'reassur_realiz_obviou',
  'realiz_obviou_onion',
  'obviou_onion_joke',
  'onion_joke_would',
  'joke_would_set',
  'would_set_husband',
  'set_husband_tri',
  'husband_tri_get',
  'tri_get_talk',
  'get_talk_refus',
  'talk_refus_aita'],
 ['agre',
  'watch',
  'friend',
  'child',
  'overnight',
  'dad',
  'medic',
  'emerg',
  'expect',
  'shed',
  'hour',
  'hospit',
  'dad',
  'fell',
  'coma',
  'ask',
  'okay',
  'son',
  'stay',
  'overnight',
  'cours',
  'said',
  'ye',
  'next',
  'even',
  'came',
  'pick',
  'livid',
  'bath',
  'although',
  'mean',
  'filthi',
  'littl',
  'sweati',
  'mayb',
  'upset',
  'routin',
  'thing',
  'son',
  'autist',
  'terrifi',
  'shower',
  'bathtub',
  'time',
  'know',
  'terror',
  'shower',
  'id',
  'babysat',
  'left',
  'direct',
  'fill',
  'tub',
  'without',
  'bathroom',
  'even',
  'trigger',
  'opt',
  'clean',
  'babi',
  'wipe',
  'warm',
  'washcloth',
  'cooper',
  'put',
  'car',
  'seat',
  'return',
  'hous',
  'say',
  'id',
  'mess',
  'bedtim',
  'routin',
  'believ',
  'id',
  'send',
  'son',
  'home',
  'dirti',
  'thought',
  'better',
  'friend',
  'need',
  'sensit',
  'need',
  'autist',
  'kid',
  'post',
  'rant',
  'social',
  'media',
  'arriv',
  'home',
  'thought',
  'time',
  'togeth',
  'gone',
  'well-',
  'cri',
  'fifteen',
  'minut',
  'drop-off',
  'watch',
  'favorit',
  'show',
  'ate',
  'snack',
  'put',
  'bed',
  'morn',
  'woke',
  'ask',
  'tear',
  'breakfast',
  'lunch',
  'eaten',
  'play',
  'sign',
  'languag',
  'game',
  'cuddl',
  'cat',
  'wipe',
  'clean',
  'could',
  'aita',
  'press',
  'shower',
  'issu',
  'admittedli',
  'limit',
  'experi',
  'autism',
  'person',
  'know',
  'diagnos',
  'base',
  'prior',
  'instruct',
  'felt',
  'best',
  'could',
  'circumst',
  'agre_watch',
  'watch_friend',
  'friend_child',
  'child_overnight',
  'overnight_dad',
  'dad_medic',
  'medic_emerg',
  'emerg_expect',
  'expect_shed',
  'shed_hour',
  'hour_hospit',
  'hospit_dad',
  'dad_fell',
  'fell_coma',
  'coma_ask',
  'ask_okay',
  'okay_son',
  'son_stay',
  'stay_overnight',
  'overnight_cours',
  'cours_said',
  'said_ye',
  'ye_next',
  'next_even',
  'even_came',
  'came_pick',
  'pick_livid',
  'livid_bath',
  'bath_although',
  'although_mean',
  'mean_filthi',
  'filthi_littl',
  'littl_sweati',
  'sweati_mayb',
  'mayb_upset',
  'upset_routin',
  'routin_thing',
  'thing_son',
  'son_autist',
  'autist_terrifi',
  'terrifi_shower',
  'shower_bathtub',
  'bathtub_time',
  'time_know',
  'know_terror',
  'terror_shower',
  'shower_id',
  'id_babysat',
  'babysat_left',
  'left_direct',
  'direct_fill',
  'fill_tub',
  'tub_without',
  'without_bathroom',
  'bathroom_even',
  'even_trigger',
  'trigger_opt',
  'opt_clean',
  'clean_babi',
  'babi_wipe',
  'wipe_warm',
  'warm_washcloth',
  'washcloth_cooper',
  'cooper_put',
  'put_car',
  'car_seat',
  'seat_return',
  'return_hous',
  'hous_say',
  'say_id',
  'id_mess',
  'mess_bedtim',
  'bedtim_routin',
  'routin_believ',
  'believ_id',
  'id_send',
  'send_son',
  'son_home',
  'home_dirti',
  'dirti_thought',
  'thought_better',
  'better_friend',
  'friend_need',
  'need_sensit',
  'sensit_need',
  'need_autist',
  'autist_kid',
  'kid_post',
  'post_rant',
  'rant_social',
  'social_media',
  'media_arriv',
  'arriv_home',
  'home_thought',
  'thought_time',
  'time_togeth',
  'togeth_gone',
  'gone_well-',
  'well-_cri',
  'cri_fifteen',
  'fifteen_minut',
  'minut_drop-off',
  'drop-off_watch',
  'watch_favorit',
  'favorit_show',
  'show_ate',
  'ate_snack',
  'snack_put',
  'put_bed',
  'bed_morn',
  'morn_woke',
  'woke_ask',
  'ask_tear',
  'tear_breakfast',
  'breakfast_lunch',
  'lunch_eaten',
  'eaten_play',
  'play_sign',
  'sign_languag',
  'languag_game',
  'game_cuddl',
  'cuddl_cat',
  'cat_wipe',
  'wipe_clean',
  'clean_could',
  'could_aita',
  'aita_press',
  'press_shower',
  'shower_issu',
  'issu_admittedli',
  'admittedli_limit',
  'limit_experi',
  'experi_autism',
  'autism_person',
  'person_know',
  'know_diagnos',
  'diagnos_base',
  'base_prior',
  'prior_instruct',
  'instruct_felt',
  'felt_best',
  'best_could',
  'could_circumst',
  'agre_watch_friend',
  'watch_friend_child',
  'friend_child_overnight',
  'child_overnight_dad',
  'overnight_dad_medic',
  'dad_medic_emerg',
  'medic_emerg_expect',
  'emerg_expect_shed',
  'expect_shed_hour',
  'shed_hour_hospit',
  'hour_hospit_dad',
  'hospit_dad_fell',
  'dad_fell_coma',
  'fell_coma_ask',
  'coma_ask_okay',
  'ask_okay_son',
  'okay_son_stay',
  'son_stay_overnight',
  'stay_overnight_cours',
  'overnight_cours_said',
  'cours_said_ye',
  'said_ye_next',
  'ye_next_even',
  'next_even_came',
  'even_came_pick',
  'came_pick_livid',
  'pick_livid_bath',
  'livid_bath_although',
  'bath_although_mean',
  'although_mean_filthi',
  'mean_filthi_littl',
  'filthi_littl_sweati',
  'littl_sweati_mayb',
  'sweati_mayb_upset',
  'mayb_upset_routin',
  'upset_routin_thing',
  'routin_thing_son',
  'thing_son_autist',
  'son_autist_terrifi',
  'autist_terrifi_shower',
  'terrifi_shower_bathtub',
  'shower_bathtub_time',
  'bathtub_time_know',
  'time_know_terror',
  'know_terror_shower',
  'terror_shower_id',
  'shower_id_babysat',
  'id_babysat_left',
  'babysat_left_direct',
  'left_direct_fill',
  'direct_fill_tub',
  'fill_tub_without',
  'tub_without_bathroom',
  'without_bathroom_even',
  'bathroom_even_trigger',
  'even_trigger_opt',
  'trigger_opt_clean',
  'opt_clean_babi',
  'clean_babi_wipe',
  'babi_wipe_warm',
  'wipe_warm_washcloth',
  'warm_washcloth_cooper',
  'washcloth_cooper_put',
  'cooper_put_car',
  'put_car_seat',
  'car_seat_return',
  'seat_return_hous',
  'return_hous_say',
  'hous_say_id',
  'say_id_mess',
  'id_mess_bedtim',
  'mess_bedtim_routin',
  'bedtim_routin_believ',
  'routin_believ_id',
  'believ_id_send',
  'id_send_son',
  'send_son_home',
  'son_home_dirti',
  'home_dirti_thought',
  'dirti_thought_better',
  'thought_better_friend',
  'better_friend_need',
  'friend_need_sensit',
  'need_sensit_need',
  'sensit_need_autist',
  'need_autist_kid',
  'autist_kid_post',
  'kid_post_rant',
  'post_rant_social',
  'rant_social_media',
  'social_media_arriv',
  'media_arriv_home',
  'arriv_home_thought',
  'home_thought_time',
  'thought_time_togeth',
  'time_togeth_gone',
  'togeth_gone_well-',
  'gone_well-_cri',
  'well-_cri_fifteen',
  'cri_fifteen_minut',
  'fifteen_minut_drop-off',
  'minut_drop-off_watch',
  'drop-off_watch_favorit',
  'watch_favorit_show',
  'favorit_show_ate',
  'show_ate_snack',
  'ate_snack_put',
  'snack_put_bed',
  'put_bed_morn',
  'bed_morn_woke',
  'morn_woke_ask',
  'woke_ask_tear',
  'ask_tear_breakfast',
  'tear_breakfast_lunch',
  'breakfast_lunch_eaten',
  'lunch_eaten_play',
  'eaten_play_sign',
  'play_sign_languag',
  'sign_languag_game',
  'languag_game_cuddl',
  'game_cuddl_cat',
  'cuddl_cat_wipe',
  'cat_wipe_clean',
  'wipe_clean_could',
  'clean_could_aita',
  'could_aita_press',
  'aita_press_shower',
  'press_shower_issu',
  'shower_issu_admittedli',
  'issu_admittedli_limit',
  'admittedli_limit_experi',
  'limit_experi_autism',
  'experi_autism_person',
  'autism_person_know',
  'person_know_diagnos',
  'know_diagnos_base',
  'diagnos_base_prior',
  'base_prior_instruct',
  'prior_instruct_felt',
  'instruct_felt_best',
  'felt_best_could',
  'best_could_circumst'],
 ['*',
  '*',
  'final',
  'update-',
  '*',
  '*',
  'updat',
  'ive',
  'comment',
  'messag',
  'ask',
  'updat',
  'pretti',
  'anticlimact',
  'suggest',
  'cash',
  'key',
  'idea',
  'talk',
  'lawyer',
  'everyth',
  'board',
  'talk',
  'tenant',
  'offer',
  'cash',
  'leav',
  'without',
  'damag',
  'would',
  'cash',
  'damag',
  'wear',
  'tear',
  'home',
  'april',
  'present',
  'agre',
  'negoti',
  'came',
  'sum',
  'work',
  'parti',
  'date',
  'novemb',
  'th',
  'use',
  'cash',
  'add',
  'current',
  'save',
  'payment',
  'contract',
  'us',
  'sign',
  'rather',
  'unev',
  '-',
  '*',
  '*',
  'edit-',
  'sent',
  'husband',
  'told',
  'april',
  'instal',
  'new',
  'hot',
  'water',
  'tank',
  'told',
  'well',
  'dad',
  'wed',
  'like',
  'give',
  'notic',
  'summer',
  '*',
  '*',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'seem',
  'month',
  'enough',
  'notic',
  'sent',
  'email',
  'give',
  'addit',
  'month',
  'bring',
  'month',
  'notic',
  'son',
  'year',
  'old',
  'born',
  'bought',
  'second',
  'home',
  'alway',
  'intent',
  'gift',
  'adult',
  'modest',
  'home',
  'bedroom',
  'bungalow',
  'develop',
  'basement',
  'addit',
  'room',
  'minut',
  'live',
  'bought',
  'list',
  'rent',
  'love',
  'coupl',
  'start',
  'rent',
  'went',
  'children',
  'chose',
  'move',
  'continu',
  'live',
  'bedroom',
  'home',
  'kid',
  'dad',
  'work',
  'mom',
  'stay',
  'home',
  'import',
  'note',
  'bought',
  'home',
  'even',
  'year',
  'mortgag',
  'mortgag',
  'quit',
  'low',
  'rent',
  'much',
  'mortgag',
  'weve',
  'rais',
  'rent',
  'time',
  'year',
  'live',
  'rent',
  'still',
  'well',
  'averag',
  'area-',
  'look',
  'averag',
  'rent',
  'similar',
  'hous',
  '-month',
  'renter',
  'pay',
  'month',
  'start',
  'rent',
  'talk',
  'tell',
  'hous',
  'eventu',
  'son',
  'never',
  'actual',
  'expect',
  'renter',
  'year',
  'son',
  'graduat',
  'univers',
  'june',
  'stay',
  'us',
  'sinc',
  'respons',
  'young',
  'man',
  'decid',
  'christma',
  'would',
  'good',
  'time',
  'gift',
  'home',
  'begin',
  'septemb',
  'talk',
  'tenant',
  'gave',
  'month',
  'elect',
  'notic',
  'figur',
  'wed',
  'novemberdecemb',
  'get',
  'hous',
  'clean',
  'repair',
  'done',
  'understand',
  'happi',
  'post',
  'social',
  'media',
  'bad',
  'peopl',
  'kick',
  'cant',
  'afford',
  'rent',
  'anyth',
  'big',
  'enough',
  'famili',
  'oldest',
  'kid',
  'even',
  'found',
  'son',
  'facebook',
  'sent',
  'horribl',
  'messag',
  'idea',
  'plan',
  'gift',
  'facebook',
  'post',
  'share',
  'local',
  'commun',
  'group',
  'everyon',
  'comment',
  'evil',
  'landlord',
  'aita',
  'evict',
  'long',
  'term',
  'tenant',
  'son',
  'move',
  'edit',
  'add',
  'mention',
  'gift',
  'hous',
  'son',
  'start',
  'univers',
  'told',
  'move',
  'start',
  'uni',
  'edit',
  'legal',
  'evict',
  'notic',
  'also',
  'break',
  'leas',
  'year',
  'ago',
  'decid',
  'renew',
  'thought',
  'might',
  'buy',
  'soon',
  'move',
  'month',
  'month',
  'leas',
  '*_*',
  '*_final',
  'final_update-',
  'update-_*',
  '*_*',
  '*_updat',
  'updat_ive',
  'ive_comment',
  'comment_messag',
  'messag_ask',
  'ask_updat',
  'updat_pretti',
  'pretti_anticlimact',
  'anticlimact_suggest',
  'suggest_cash',
  'cash_key',
  'key_idea',
  'idea_talk',
  'talk_lawyer',
  'lawyer_everyth',
  'everyth_board',
  'board_talk',
  'talk_tenant',
  'tenant_offer',
  'offer_cash',
  'cash_leav',
  'leav_without',
  'without_damag',
  'damag_would',
  'would_cash',
  'cash_damag',
  'damag_wear',
  'wear_tear',
  'tear_home',
  'home_april',
  'april_present',
  'present_agre',
  'agre_negoti',
  'negoti_came',
  'came_sum',
  'sum_work',
  'work_parti',
  'parti_date',
  'date_novemb',
  'novemb_th',
  'th_use',
  'use_cash',
  'cash_add',
  'add_current',
  'current_save',
  'save_payment',
  'payment_contract',
  'contract_us',
  'us_sign',
  'sign_rather',
  'rather_unev',
  'unev_-',
  '-_*',
  '*_*',
  '*_edit-',
  'edit-_sent',
  'sent_husband',
  'husband_told',
  'told_april',
  'april_instal',
  'instal_new',
  'new_hot',
  'hot_water',
  'water_tank',
  'tank_told',
  'told_well',
  'well_dad',
  'dad_wed',
  'wed_like',
  'like_give',
  'give_notic',
  'notic_summer',
  'summer_*',
  '*_*',
  '*_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_seem',
  'seem_month',
  'month_enough',
  'enough_notic',
  'notic_sent',
  'sent_email',
  'email_give',
  'give_addit',
  'addit_month',
  'month_bring',
  'bring_month',
  'month_notic',
  'notic_son',
  'son_year',
  'year_old',
  'old_born',
  'born_bought',
  'bought_second',
  'second_home',
  'home_alway',
  'alway_intent',
  'intent_gift',
  'gift_adult',
  'adult_modest',
  'modest_home',
  'home_bedroom',
  'bedroom_bungalow',
  'bungalow_develop',
  'develop_basement',
  'basement_addit',
  'addit_room',
  'room_minut',
  'minut_live',
  'live_bought',
  'bought_list',
  'list_rent',
  'rent_love',
  'love_coupl',
  'coupl_start',
  'start_rent',
  'rent_went',
  'went_children',
  'children_chose',
  'chose_move',
  'move_continu',
  'continu_live',
  'live_bedroom',
  'bedroom_home',
  'home_kid',
  'kid_dad',
  'dad_work',
  'work_mom',
  'mom_stay',
  'stay_home',
  'home_import',
  'import_note',
  'note_bought',
  'bought_home',
  'home_even',
  'even_year',
  'year_mortgag',
  'mortgag_mortgag',
  'mortgag_quit',
  'quit_low',
  'low_rent',
  'rent_much',
  'much_mortgag',
  'mortgag_weve',
  'weve_rais',
  'rais_rent',
  'rent_time',
  'time_year',
  'year_live',
  'live_rent',
  'rent_still',
  'still_well',
  'well_averag',
  'averag_area-',
  'area-_look',
  'look_averag',
  'averag_rent',
  'rent_similar',
  'similar_hous',
  'hous_-month',
  '-month_renter',
  'renter_pay',
  'pay_month',
  'month_start',
  'start_rent',
  'rent_talk',
  'talk_tell',
  'tell_hous',
  'hous_eventu',
  'eventu_son',
  'son_never',
  'never_actual',
  'actual_expect',
  'expect_renter',
  'renter_year',
  'year_son',
  'son_graduat',
  'graduat_univers',
  'univers_june',
  'june_stay',
  'stay_us',
  'us_sinc',
  'sinc_respons',
  'respons_young',
  'young_man',
  'man_decid',
  'decid_christma',
  'christma_would',
  'would_good',
  'good_time',
  'time_gift',
  'gift_home',
  'home_begin',
  'begin_septemb',
  'septemb_talk',
  'talk_tenant',
  'tenant_gave',
  'gave_month',
  'month_elect',
  'elect_notic',
  'notic_figur',
  'figur_wed',
  'wed_novemberdecemb',
  'novemberdecemb_get',
  'get_hous',
  'hous_clean',
  'clean_repair',
  'repair_done',
  'done_understand',
  'understand_happi',
  'happi_post',
  'post_social',
  'social_media',
  'media_bad',
  'bad_peopl',
  'peopl_kick',
  'kick_cant',
  'cant_afford',
  'afford_rent',
  'rent_anyth',
  'anyth_big',
  'big_enough',
  'enough_famili',
  'famili_oldest',
  'oldest_kid',
  'kid_even',
  'even_found',
  'found_son',
  'son_facebook',
  'facebook_sent',
  'sent_horribl',
  'horribl_messag',
  'messag_idea',
  'idea_plan',
  'plan_gift',
  'gift_facebook',
  'facebook_post',
  'post_share',
  'share_local',
  'local_commun',
  'commun_group',
  'group_everyon',
  'everyon_comment',
  'comment_evil',
  'evil_landlord',
  'landlord_aita',
  'aita_evict',
  'evict_long',
  'long_term',
  'term_tenant',
  'tenant_son',
  'son_move',
  'move_edit',
  'edit_add',
  'add_mention',
  'mention_gift',
  'gift_hous',
  'hous_son',
  'son_start',
  'start_univers',
  'univers_told',
  'told_move',
  'move_start',
  'start_uni',
  'uni_edit',
  'edit_legal',
  'legal_evict',
  'evict_notic',
  'notic_also',
  'also_break',
  'break_leas',
  'leas_year',
  'year_ago',
  'ago_decid',
  'decid_renew',
  'renew_thought',
  'thought_might',
  'might_buy',
  'buy_soon',
  'soon_move',
  'move_month',
  'month_month',
  'month_leas',
  '*_*_final',
  '*_final_update-',
  'final_update-_*',
  'update-_*_*',
  '*_*_updat',
  '*_updat_ive',
  'updat_ive_comment',
  'ive_comment_messag',
  'comment_messag_ask',
  'messag_ask_updat',
  'ask_updat_pretti',
  'updat_pretti_anticlimact',
  'pretti_anticlimact_suggest',
  'anticlimact_suggest_cash',
  'suggest_cash_key',
  'cash_key_idea',
  'key_idea_talk',
  'idea_talk_lawyer',
  'talk_lawyer_everyth',
  'lawyer_everyth_board',
  'everyth_board_talk',
  'board_talk_tenant',
  'talk_tenant_offer',
  'tenant_offer_cash',
  'offer_cash_leav',
  'cash_leav_without',
  'leav_without_damag',
  'without_damag_would',
  'damag_would_cash',
  'would_cash_damag',
  'cash_damag_wear',
  'damag_wear_tear',
  'wear_tear_home',
  'tear_home_april',
  'home_april_present',
  'april_present_agre',
  'present_agre_negoti',
  'agre_negoti_came',
  'negoti_came_sum',
  'came_sum_work',
  'sum_work_parti',
  'work_parti_date',
  'parti_date_novemb',
  'date_novemb_th',
  'novemb_th_use',
  'th_use_cash',
  'use_cash_add',
  'cash_add_current',
  'add_current_save',
  'current_save_payment',
  'save_payment_contract',
  'payment_contract_us',
  'contract_us_sign',
  'us_sign_rather',
  'sign_rather_unev',
  'rather_unev_-',
  'unev_-_*',
  '-_*_*',
  '*_*_edit-',
  '*_edit-_sent',
  'edit-_sent_husband',
  'sent_husband_told',
  'husband_told_april',
  'told_april_instal',
  'april_instal_new',
  'instal_new_hot',
  'new_hot_water',
  'hot_water_tank',
  'water_tank_told',
  'tank_told_well',
  'told_well_dad',
  'well_dad_wed',
  'dad_wed_like',
  'wed_like_give',
  'like_give_notic',
  'give_notic_summer',
  'notic_summer_*',
  'summer_*_*',
  '*_*_*',
  '*_*_*',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_seem',
  '*_seem_month',
  'seem_month_enough',
  'month_enough_notic',
  'enough_notic_sent',
  'notic_sent_email',
  'sent_email_give',
  'email_give_addit',
  'give_addit_month',
  'addit_month_bring',
  'month_bring_month',
  'bring_month_notic',
  'month_notic_son',
  'notic_son_year',
  'son_year_old',
  'year_old_born',
  'old_born_bought',
  'born_bought_second',
  'bought_second_home',
  'second_home_alway',
  'home_alway_intent',
  'alway_intent_gift',
  'intent_gift_adult',
  'gift_adult_modest',
  'adult_modest_home',
  'modest_home_bedroom',
  'home_bedroom_bungalow',
  'bedroom_bungalow_develop',
  'bungalow_develop_basement',
  'develop_basement_addit',
  'basement_addit_room',
  'addit_room_minut',
  'room_minut_live',
  'minut_live_bought',
  'live_bought_list',
  'bought_list_rent',
  'list_rent_love',
  'rent_love_coupl',
  'love_coupl_start',
  'coupl_start_rent',
  'start_rent_went',
  'rent_went_children',
  'went_children_chose',
  'children_chose_move',
  'chose_move_continu',
  'move_continu_live',
  'continu_live_bedroom',
  'live_bedroom_home',
  'bedroom_home_kid',
  'home_kid_dad',
  'kid_dad_work',
  'dad_work_mom',
  'work_mom_stay',
  'mom_stay_home',
  'stay_home_import',
  'home_import_note',
  'import_note_bought',
  'note_bought_home',
  'bought_home_even',
  'home_even_year',
  'even_year_mortgag',
  'year_mortgag_mortgag',
  'mortgag_mortgag_quit',
  'mortgag_quit_low',
  'quit_low_rent',
  'low_rent_much',
  'rent_much_mortgag',
  'much_mortgag_weve',
  'mortgag_weve_rais',
  'weve_rais_rent',
  'rais_rent_time',
  'rent_time_year',
  'time_year_live',
  'year_live_rent',
  'live_rent_still',
  'rent_still_well',
  'still_well_averag',
  'well_averag_area-',
  'averag_area-_look',
  'area-_look_averag',
  'look_averag_rent',
  'averag_rent_similar',
  'rent_similar_hous',
  'similar_hous_-month',
  'hous_-month_renter',
  '-month_renter_pay',
  'renter_pay_month',
  'pay_month_start',
  'month_start_rent',
  'start_rent_talk',
  'rent_talk_tell',
  'talk_tell_hous',
  'tell_hous_eventu',
  'hous_eventu_son',
  'eventu_son_never',
  'son_never_actual',
  'never_actual_expect',
  'actual_expect_renter',
  'expect_renter_year',
  'renter_year_son',
  'year_son_graduat',
  'son_graduat_univers',
  'graduat_univers_june',
  'univers_june_stay',
  'june_stay_us',
  'stay_us_sinc',
  'us_sinc_respons',
  'sinc_respons_young',
  'respons_young_man',
  'young_man_decid',
  'man_decid_christma',
  'decid_christma_would',
  'christma_would_good',
  'would_good_time',
  'good_time_gift',
  'time_gift_home',
  'gift_home_begin',
  'home_begin_septemb',
  'begin_septemb_talk',
  'septemb_talk_tenant',
  'talk_tenant_gave',
  'tenant_gave_month',
  'gave_month_elect',
  'month_elect_notic',
  'elect_notic_figur',
  'notic_figur_wed',
  'figur_wed_novemberdecemb',
  'wed_novemberdecemb_get',
  'novemberdecemb_get_hous',
  'get_hous_clean',
  'hous_clean_repair',
  'clean_repair_done',
  'repair_done_understand',
  'done_understand_happi',
  'understand_happi_post',
  'happi_post_social',
  'post_social_media',
  'social_media_bad',
  'media_bad_peopl',
  'bad_peopl_kick',
  'peopl_kick_cant',
  'kick_cant_afford',
  'cant_afford_rent',
  'afford_rent_anyth',
  'rent_anyth_big',
  'anyth_big_enough',
  'big_enough_famili',
  'enough_famili_oldest',
  'famili_oldest_kid',
  'oldest_kid_even',
  'kid_even_found',
  'even_found_son',
  'found_son_facebook',
  'son_facebook_sent',
  'facebook_sent_horribl',
  'sent_horribl_messag',
  'horribl_messag_idea',
  'messag_idea_plan',
  'idea_plan_gift',
  'plan_gift_facebook',
  'gift_facebook_post',
  'facebook_post_share',
  'post_share_local',
  'share_local_commun',
  'local_commun_group',
  'commun_group_everyon',
  'group_everyon_comment',
  'everyon_comment_evil',
  'comment_evil_landlord',
  'evil_landlord_aita',
  'landlord_aita_evict',
  'aita_evict_long',
  'evict_long_term',
  'long_term_tenant',
  'term_tenant_son',
  'tenant_son_move',
  'son_move_edit',
  'move_edit_add',
  'edit_add_mention',
  'add_mention_gift',
  'mention_gift_hous',
  'gift_hous_son',
  'hous_son_start',
  'son_start_univers',
  'start_univers_told',
  'univers_told_move',
  'told_move_start',
  'move_start_uni',
  'start_uni_edit',
  'uni_edit_legal',
  'edit_legal_evict',
  'legal_evict_notic',
  'evict_notic_also',
  'notic_also_break',
  'also_break_leas',
  'break_leas_year',
  'leas_year_ago',
  'year_ago_decid',
  'ago_decid_renew',
  'decid_renew_thought',
  'renew_thought_might',
  'thought_might_buy',
  'might_buy_soon',
  'buy_soon_move',
  'soon_move_month',
  'move_month_month',
  'month_month_leas'],
 ['fianc',
  '&',
  'togeth',
  'year',
  'big',
  'famili',
  'dad',
  'older',
  'sister',
  'dad',
  'alway',
  'singl',
  'parent',
  'devot',
  'life',
  'sister',
  'work',
  '+',
  'job',
  'past',
  'year',
  'provid',
  'us',
  'love',
  'dad',
  'best',
  'relationship',
  'anyon',
  'could',
  'hope',
  'howev',
  'fianc',
  'get',
  'along',
  'differ',
  'opinion',
  'mani',
  'thing',
  'exampl',
  'fianc',
  'one',
  'time',
  'suggest',
  'dad',
  'sell',
  'truck',
  'sit',
  'year',
  'dad',
  'got',
  'offend',
  'grandfath',
  'truck',
  'monrg',
  'get',
  'fix',
  'anoth',
  'exampl',
  'fianc',
  'got',
  'mad',
  'dad',
  'parti',
  'talk',
  'struggl',
  'mom',
  'death',
  'accus',
  'collect',
  'symapthi',
  'point',
  'dad',
  'said',
  'alway',
  'talk',
  'casual',
  'recent',
  'disagr',
  'dad',
  'refus',
  'give',
  'fianc',
  'money',
  'contribut',
  'wed',
  'fianc',
  'complain',
  'said',
  'dad',
  'oblig',
  'pay',
  'wed',
  'yesterday',
  'fianc',
  'told',
  'look',
  'someon',
  'els',
  'walk',
  'aisl',
  'ask',
  'said',
  'dad',
  'refus',
  'help',
  'wed',
  'grate',
  'still',
  'invit',
  'got',
  'upset',
  'argu',
  'one',
  'dad',
  'refus',
  'contribut',
  'money',
  'offord',
  'pay',
  'two',
  'like',
  'bride',
  'want',
  'dad',
  'walk',
  'aisl',
  'wed',
  'day',
  'threw',
  'fit',
  'say',
  'tri',
  'ruin',
  'mood',
  'get',
  'upset',
  'wed',
  'day',
  'call',
  'selfish',
  'wabt',
  'take',
  'away',
  'moment',
  'alway',
  'dream',
  'sound',
  'cliché',
  'im',
  'like',
  'disagr',
  'dad',
  'fair',
  'given',
  'dad',
  'great',
  'term',
  'yell',
  'call',
  'selfish',
  'although',
  'wed',
  'mine',
  'said',
  'clearli',
  'give',
  'hoot',
  'uncomfort',
  'walk',
  'fume',
  'insist',
  'im',
  'innconsider',
  'project',
  'call',
  'selfish',
  'fianc_&',
  '&_togeth',
  'togeth_year',
  'year_big',
  'big_famili',
  'famili_dad',
  'dad_older',
  'older_sister',
  'sister_dad',
  'dad_alway',
  'alway_singl',
  'singl_parent',
  'parent_devot',
  'devot_life',
  'life_sister',
  'sister_work',
  'work_+',
  '+_job',
  'job_past',
  'past_year',
  'year_provid',
  'provid_us',
  'us_love',
  'love_dad',
  'dad_best',
  'best_relationship',
  'relationship_anyon',
  'anyon_could',
  'could_hope',
  'hope_howev',
  'howev_fianc',
  'fianc_get',
  'get_along',
  'along_differ',
  'differ_opinion',
  'opinion_mani',
  'mani_thing',
  'thing_exampl',
  'exampl_fianc',
  'fianc_one',
  'one_time',
  'time_suggest',
  'suggest_dad',
  'dad_sell',
  'sell_truck',
  'truck_sit',
  'sit_year',
  'year_dad',
  'dad_got',
  'got_offend',
  'offend_grandfath',
  'grandfath_truck',
  'truck_monrg',
  'monrg_get',
  'get_fix',
  'fix_anoth',
  'anoth_exampl',
  'exampl_fianc',
  'fianc_got',
  'got_mad',
  'mad_dad',
  'dad_parti',
  'parti_talk',
  'talk_struggl',
  'struggl_mom',
  'mom_death',
  'death_accus',
  'accus_collect',
  'collect_symapthi',
  'symapthi_point',
  'point_dad',
  'dad_said',
  'said_alway',
  'alway_talk',
  'talk_casual',
  'casual_recent',
  'recent_disagr',
  'disagr_dad',
  'dad_refus',
  'refus_give',
  'give_fianc',
  'fianc_money',
  'money_contribut',
  'contribut_wed',
  'wed_fianc',
  'fianc_complain',
  'complain_said',
  'said_dad',
  'dad_oblig',
  'oblig_pay',
  'pay_wed',
  'wed_yesterday',
  'yesterday_fianc',
  'fianc_told',
  'told_look',
  'look_someon',
  'someon_els',
  'els_walk',
  'walk_aisl',
  'aisl_ask',
  'ask_said',
  'said_dad',
  'dad_refus',
  'refus_help',
  'help_wed',
  'wed_grate',
  'grate_still',
  'still_invit',
  'invit_got',
  'got_upset',
  'upset_argu',
  'argu_one',
  'one_dad',
  'dad_refus',
  'refus_contribut',
  'contribut_money',
  'money_offord',
  'offord_pay',
  'pay_two',
  'two_like',
  'like_bride',
  'bride_want',
  'want_dad',
  'dad_walk',
  'walk_aisl',
  'aisl_wed',
  'wed_day',
  'day_threw',
  'threw_fit',
  'fit_say',
  'say_tri',
  'tri_ruin',
  'ruin_mood',
  'mood_get',
  'get_upset',
  'upset_wed',
  'wed_day',
  'day_call',
  'call_selfish',
  'selfish_wabt',
  'wabt_take',
  'take_away',
  'away_moment',
  'moment_alway',
  'alway_dream',
  'dream_sound',
  'sound_cliché',
  'cliché_im',
  'im_like',
  'like_disagr',
  'disagr_dad',
  'dad_fair',
  'fair_given',
  'given_dad',
  'dad_great',
  'great_term',
  'term_yell',
  'yell_call',
  'call_selfish',
  'selfish_although',
  'although_wed',
  'wed_mine',
  'mine_said',
  'said_clearli',
  'clearli_give',
  'give_hoot',
  'hoot_uncomfort',
  'uncomfort_walk',
  'walk_fume',
  'fume_insist',
  'insist_im',
  'im_innconsider',
  'innconsider_project',
  'project_call',
  'call_selfish',
  'fianc_&_togeth',
  '&_togeth_year',
  'togeth_year_big',
  'year_big_famili',
  'big_famili_dad',
  'famili_dad_older',
  'dad_older_sister',
  'older_sister_dad',
  'sister_dad_alway',
  'dad_alway_singl',
  'alway_singl_parent',
  'singl_parent_devot',
  'parent_devot_life',
  'devot_life_sister',
  'life_sister_work',
  'sister_work_+',
  'work_+_job',
  '+_job_past',
  'job_past_year',
  'past_year_provid',
  'year_provid_us',
  'provid_us_love',
  'us_love_dad',
  'love_dad_best',
  'dad_best_relationship',
  'best_relationship_anyon',
  'relationship_anyon_could',
  'anyon_could_hope',
  'could_hope_howev',
  'hope_howev_fianc',
  'howev_fianc_get',
  'fianc_get_along',
  'get_along_differ',
  'along_differ_opinion',
  'differ_opinion_mani',
  'opinion_mani_thing',
  'mani_thing_exampl',
  'thing_exampl_fianc',
  'exampl_fianc_one',
  'fianc_one_time',
  'one_time_suggest',
  'time_suggest_dad',
  'suggest_dad_sell',
  'dad_sell_truck',
  'sell_truck_sit',
  'truck_sit_year',
  'sit_year_dad',
  'year_dad_got',
  'dad_got_offend',
  'got_offend_grandfath',
  'offend_grandfath_truck',
  'grandfath_truck_monrg',
  'truck_monrg_get',
  'monrg_get_fix',
  'get_fix_anoth',
  'fix_anoth_exampl',
  'anoth_exampl_fianc',
  'exampl_fianc_got',
  'fianc_got_mad',
  'got_mad_dad',
  'mad_dad_parti',
  'dad_parti_talk',
  'parti_talk_struggl',
  'talk_struggl_mom',
  'struggl_mom_death',
  'mom_death_accus',
  'death_accus_collect',
  'accus_collect_symapthi',
  'collect_symapthi_point',
  'symapthi_point_dad',
  'point_dad_said',
  'dad_said_alway',
  'said_alway_talk',
  'alway_talk_casual',
  'talk_casual_recent',
  'casual_recent_disagr',
  'recent_disagr_dad',
  'disagr_dad_refus',
  'dad_refus_give',
  'refus_give_fianc',
  'give_fianc_money',
  'fianc_money_contribut',
  'money_contribut_wed',
  'contribut_wed_fianc',
  'wed_fianc_complain',
  'fianc_complain_said',
  'complain_said_dad',
  'said_dad_oblig',
  'dad_oblig_pay',
  'oblig_pay_wed',
  'pay_wed_yesterday',
  'wed_yesterday_fianc',
  'yesterday_fianc_told',
  'fianc_told_look',
  'told_look_someon',
  'look_someon_els',
  'someon_els_walk',
  'els_walk_aisl',
  'walk_aisl_ask',
  'aisl_ask_said',
  'ask_said_dad',
  'said_dad_refus',
  'dad_refus_help',
  'refus_help_wed',
  'help_wed_grate',
  'wed_grate_still',
  'grate_still_invit',
  'still_invit_got',
  'invit_got_upset',
  'got_upset_argu',
  'upset_argu_one',
  'argu_one_dad',
  'one_dad_refus',
  'dad_refus_contribut',
  'refus_contribut_money',
  'contribut_money_offord',
  'money_offord_pay',
  'offord_pay_two',
  'pay_two_like',
  'two_like_bride',
  'like_bride_want',
  'bride_want_dad',
  'want_dad_walk',
  'dad_walk_aisl',
  'walk_aisl_wed',
  'aisl_wed_day',
  'wed_day_threw',
  'day_threw_fit',
  'threw_fit_say',
  'fit_say_tri',
  'say_tri_ruin',
  'tri_ruin_mood',
  'ruin_mood_get',
  'mood_get_upset',
  'get_upset_wed',
  'upset_wed_day',
  'wed_day_call',
  'day_call_selfish',
  'call_selfish_wabt',
  'selfish_wabt_take',
  'wabt_take_away',
  'take_away_moment',
  'away_moment_alway',
  'moment_alway_dream',
  'alway_dream_sound',
  'dream_sound_cliché',
  'sound_cliché_im',
  'cliché_im_like',
  'im_like_disagr',
  'like_disagr_dad',
  'disagr_dad_fair',
  'dad_fair_given',
  'fair_given_dad',
  'given_dad_great',
  'dad_great_term',
  'great_term_yell',
  'term_yell_call',
  'yell_call_selfish',
  'call_selfish_although',
  'selfish_although_wed',
  'although_wed_mine',
  'wed_mine_said',
  'mine_said_clearli',
  'said_clearli_give',
  'clearli_give_hoot',
  'give_hoot_uncomfort',
  'hoot_uncomfort_walk',
  'uncomfort_walk_fume',
  'walk_fume_insist',
  'fume_insist_im',
  'insist_im_innconsider',
  'im_innconsider_project',
  'innconsider_project_call',
  'project_call_selfish'],
 ['boyfriendm',
  'togeth',
  'year',
  'live',
  'nyc',
  'make',
  '$',
  'kyear',
  'im',
  'studi',
  'master',
  'social',
  'work',
  'incom',
  'right',
  'im',
  'unpaid',
  'yearlong',
  'internship',
  'daysweek',
  'well',
  'class',
  'daysweek',
  'rare',
  'get',
  'paid',
  'internship',
  'social',
  'work',
  'plu',
  'internship',
  'mandatori',
  'spend',
  'hour',
  'everyday',
  'either',
  'work',
  'studi',
  'commut',
  'class',
  'free',
  'day',
  'weekend',
  'time',
  'paid',
  'job',
  'mom',
  'help',
  'financi',
  'pay',
  'metrocard',
  'healthcar',
  'expens',
  'everyth',
  'els',
  'reli',
  'loan',
  'move',
  'boyfriend',
  'roach',
  'infest',
  'apart',
  'id',
  'stay',
  'place',
  'lot',
  'leas',
  'end',
  'soon',
  'ask',
  'want',
  'live',
  'first',
  'joke',
  'live',
  'standard',
  'would',
  'go',
  'sinc',
  'cant',
  'afford',
  'nice',
  'place',
  'insist',
  'pay',
  'rent',
  'finish',
  'grad',
  'school',
  'would',
  'split',
  'rent',
  'base',
  'incom',
  'origin',
  'want',
  'live',
  'cheaper',
  'place',
  'queen',
  'brooklyn',
  'boyfriend',
  'like',
  'current',
  'place',
  'insist',
  'move',
  'sinc',
  'would',
  'one',
  'pay',
  'rent',
  'move',
  '$',
  'kmonth',
  'luxuri',
  'condo',
  'citi',
  'august',
  'sudden',
  'boyfriend',
  'recent',
  'start',
  'ask',
  'pay',
  'half',
  'rent',
  '$',
  'kmonth',
  'confus',
  'one',
  'want',
  'pay',
  'rent',
  'full',
  'appar',
  'talk',
  'friend',
  'think',
  'weird',
  'pay',
  'rent',
  'gold',
  'digger',
  'let',
  'boyfriend',
  'know',
  'cant',
  'afford',
  '$',
  'kmonth',
  'said',
  'leech',
  'told',
  'find',
  'someon',
  'within',
  'social',
  'class',
  'worri',
  'gold',
  'digger',
  'like',
  'leech',
  'stay',
  'friend',
  'place',
  'day',
  'figur',
  'call',
  'mom',
  'situat',
  'help',
  'maximum',
  'afford',
  'rent',
  '$',
  'found',
  'place',
  'queen',
  'within',
  'price',
  'rang',
  'less',
  'min',
  'away',
  'citi',
  'bu',
  'ride',
  'away',
  'school',
  'went',
  'check',
  'coupl',
  'day',
  'ago',
  'ive',
  'text',
  'landlord',
  'new',
  'roommat',
  'alreadi',
  'sign',
  'leas',
  'told',
  'boyfriend',
  'new',
  'place',
  'got',
  'upset',
  'ask',
  'stay',
  'said',
  'accept',
  '$',
  'month',
  'instead',
  '$',
  'kmonth',
  'afford',
  'told',
  'want',
  'chang',
  'mind',
  'demand',
  'money',
  'futur',
  'live',
  'condo',
  'alon',
  'sever',
  'year',
  'like',
  'cant',
  'afford',
  'live',
  'without',
  'help',
  'mind',
  'split',
  'rent',
  'would',
  'live',
  'afford',
  'place',
  'outsid',
  'manhattan',
  'like',
  'origin',
  'want',
  'appar',
  'mutual',
  'friend',
  'think',
  'im',
  'unreason',
  'move',
  'instead',
  'talk',
  'stay',
  'pay',
  'amount',
  'afford',
  'rent',
  'let',
  'pay',
  'portion',
  'rent',
  'updat',
  'ye',
  'dump',
  'block',
  'idiot',
  'friend',
  'everyth',
  'friend',
  'also',
  'block',
  'sinc',
  'tri',
  'contact',
  'im',
  'go',
  'enjoy',
  'singl',
  'never',
  'reli',
  'man',
  'financi',
  'ever',
  'updat',
  'im',
  'go',
  'make',
  'clarif',
  'sinc',
  'lot',
  'confus',
  'clearli',
  'familiar',
  'nyc',
  'ye',
  'possibl',
  'find',
  'room',
  '$',
  'queen',
  'sever',
  'roommat',
  'room',
  'small',
  'shit',
  'ac',
  'obvious',
  'issu',
  'summer',
  'restaur',
  'mean',
  'ill',
  'probabl',
  'rodent',
  'roomi',
  'current',
  'roommat',
  'told',
  'rat',
  'problem',
  'past',
  'supposedli',
  'fix',
  'howev',
  'know',
  'mutant',
  'citi',
  'rat',
  'know',
  'theyll',
  'come',
  'back',
  'best',
  'im',
  'new',
  'bright',
  'eye',
  'transplant',
  'think',
  'nyc',
  'trendi',
  'rich',
  'part',
  'manhattan',
  'know',
  'look',
  'gener',
  'nyc',
  'landlord',
  'rent',
  'rule',
  'landlord',
  'accept',
  'guarantor',
  'follow',
  'rule',
  'landlord',
  'lenient',
  'come',
  'student',
  'landlord',
  'son',
  'also',
  'alumni',
  'school',
  'im',
  'current',
  'attend',
  'culturalethn',
  'background',
  'probabl',
  'gave',
  'leverag',
  'along',
  'fact',
  'mom',
  'meet',
  'requir',
  'also',
  'took',
  'week',
  'find',
  'current',
  'place',
  'start',
  '-year',
  'msw',
  'program',
  'septemb',
  'finish',
  'undergrad',
  'year',
  'ago',
  'work',
  'full',
  'time',
  'start',
  'master',
  'degre',
  'ye',
  'job',
  'paid',
  'rent',
  '$',
  'month',
  'roach',
  'infest',
  'apart',
  'queen',
  'share',
  'roommat',
  'obvious',
  'time',
  'work',
  'due',
  'schedul',
  'place',
  'rent',
  'stabil',
  'im',
  'confus',
  'came',
  'conclus',
  'cheap',
  'shitti',
  'place',
  'one',
  'want',
  'live',
  'ye',
  'ex',
  'make',
  'much',
  'money',
  'nyc',
  'workforc',
  'year',
  'peopl',
  'make',
  'money',
  'would',
  'whatev',
  'town',
  'especi',
  'field',
  'initi',
  'shock',
  'someon',
  'bachelor',
  'could',
  'earn',
  'much',
  'contribut',
  'absolut',
  'noth',
  'societi',
  'life',
  'charact',
  'limit',
  'hard',
  'includ',
  'everyth',
  'origin',
  'post',
  'got',
  'delet',
  'sinc',
  'exceed',
  'limit',
  'delet',
  'lot',
  'inform',
  'get',
  'post',
  'approv',
  'last',
  'thing',
  'need',
  'right',
  'non',
  'nycer',
  'rest',
  'bumfuck',
  'america',
  'tri',
  'sort',
  'weird',
  'gotcha',
  'moment',
  'think',
  'sex',
  'citi',
  'rich',
  'transplant',
  'social',
  'media',
  'repres',
  'real',
  'nyc',
  'boyfriendm_togeth',
  'togeth_year',
  'year_live',
  'live_nyc',
  'nyc_make',
  'make_$',
  '$_kyear',
  'kyear_im',
  'im_studi',
  'studi_master',
  'master_social',
  'social_work',
  'work_incom',
  'incom_right',
  'right_im',
  'im_unpaid',
  'unpaid_yearlong',
  'yearlong_internship',
  'internship_daysweek',
  'daysweek_well',
  'well_class',
  'class_daysweek',
  'daysweek_rare',
  'rare_get',
  'get_paid',
  'paid_internship',
  'internship_social',
  'social_work',
  'work_plu',
  'plu_internship',
  'internship_mandatori',
  'mandatori_spend',
  'spend_hour',
  'hour_everyday',
  'everyday_either',
  'either_work',
  'work_studi',
  'studi_commut',
  'commut_class',
  'class_free',
  'free_day',
  'day_weekend',
  'weekend_time',
  'time_paid',
  'paid_job',
  'job_mom',
  'mom_help',
  'help_financi',
  'financi_pay',
  'pay_metrocard',
  'metrocard_healthcar',
  'healthcar_expens',
  'expens_everyth',
  'everyth_els',
  'els_reli',
  'reli_loan',
  'loan_move',
  'move_boyfriend',
  'boyfriend_roach',
  'roach_infest',
  'infest_apart',
  'apart_id',
  'id_stay',
  'stay_place',
  'place_lot',
  'lot_leas',
  'leas_end',
  'end_soon',
  'soon_ask',
  'ask_want',
  'want_live',
  'live_first',
  'first_joke',
  'joke_live',
  'live_standard',
  'standard_would',
  'would_go',
  'go_sinc',
  'sinc_cant',
  'cant_afford',
  'afford_nice',
  'nice_place',
  'place_insist',
  'insist_pay',
  'pay_rent',
  'rent_finish',
  'finish_grad',
  'grad_school',
  'school_would',
  'would_split',
  'split_rent',
  'rent_base',
  'base_incom',
  'incom_origin',
  'origin_want',
  'want_live',
  'live_cheaper',
  'cheaper_place',
  'place_queen',
  'queen_brooklyn',
  'brooklyn_boyfriend',
  'boyfriend_like',
  'like_current',
  'current_place',
  'place_insist',
  'insist_move',
  'move_sinc',
  'sinc_would',
  'would_one',
  'one_pay',
  'pay_rent',
  'rent_move',
  'move_$',
  '$_kmonth',
  'kmonth_luxuri',
  'luxuri_condo',
  'condo_citi',
  'citi_august',
  'august_sudden',
  'sudden_boyfriend',
  'boyfriend_recent',
  'recent_start',
  'start_ask',
  'ask_pay',
  'pay_half',
  'half_rent',
  'rent_$',
  '$_kmonth',
  'kmonth_confus',
  'confus_one',
  'one_want',
  'want_pay',
  'pay_rent',
  'rent_full',
  'full_appar',
  'appar_talk',
  'talk_friend',
  'friend_think',
  'think_weird',
  'weird_pay',
  'pay_rent',
  'rent_gold',
  'gold_digger',
  'digger_let',
  'let_boyfriend',
  'boyfriend_know',
  'know_cant',
  'cant_afford',
  'afford_$',
  '$_kmonth',
  'kmonth_said',
  'said_leech',
  'leech_told',
  'told_find',
  'find_someon',
  'someon_within',
  'within_social',
  'social_class',
  'class_worri',
  'worri_gold',
  'gold_digger',
  'digger_like',
  'like_leech',
  'leech_stay',
  'stay_friend',
  'friend_place',
  'place_day',
  'day_figur',
  'figur_call',
  'call_mom',
  'mom_situat',
  'situat_help',
  'help_maximum',
  'maximum_afford',
  'afford_rent',
  'rent_$',
  '$_found',
  'found_place',
  'place_queen',
  'queen_within',
  'within_price',
  'price_rang',
  'rang_less',
  'less_min',
  'min_away',
  'away_citi',
  'citi_bu',
  'bu_ride',
  'ride_away',
  'away_school',
  'school_went',
  'went_check',
  'check_coupl',
  'coupl_day',
  'day_ago',
  'ago_ive',
  'ive_text',
  'text_landlord',
  'landlord_new',
  'new_roommat',
  'roommat_alreadi',
  'alreadi_sign',
  'sign_leas',
  'leas_told',
  'told_boyfriend',
  'boyfriend_new',
  'new_place',
  'place_got',
  'got_upset',
  'upset_ask',
  'ask_stay',
  'stay_said',
  'said_accept',
  'accept_$',
  '$_month',
  'month_instead',
  'instead_$',
  '$_kmonth',
  'kmonth_afford',
  'afford_told',
  'told_want',
  'want_chang',
  'chang_mind',
  'mind_demand',
  'demand_money',
  'money_futur',
  'futur_live',
  'live_condo',
  'condo_alon',
  'alon_sever',
  'sever_year',
  'year_like',
  'like_cant',
  'cant_afford',
  'afford_live',
  'live_without',
  'without_help',
  'help_mind',
  'mind_split',
  'split_rent',
  'rent_would',
  'would_live',
  'live_afford',
  'afford_place',
  'place_outsid',
  'outsid_manhattan',
  'manhattan_like',
  'like_origin',
  'origin_want',
  'want_appar',
  'appar_mutual',
  'mutual_friend',
  'friend_think',
  'think_im',
  'im_unreason',
  'unreason_move',
  'move_instead',
  'instead_talk',
  'talk_stay',
  'stay_pay',
  'pay_amount',
  'amount_afford',
  'afford_rent',
  'rent_let',
  'let_pay',
  'pay_portion',
  'portion_rent',
  'rent_updat',
  'updat_ye',
  'ye_dump',
  'dump_block',
  'block_idiot',
  'idiot_friend',
  'friend_everyth',
  'everyth_friend',
  'friend_also',
  'also_block',
  'block_sinc',
  'sinc_tri',
  'tri_contact',
  'contact_im',
  'im_go',
  'go_enjoy',
  'enjoy_singl',
  'singl_never',
  'never_reli',
  'reli_man',
  'man_financi',
  'financi_ever',
  'ever_updat',
  'updat_im',
  'im_go',
  'go_make',
  'make_clarif',
  'clarif_sinc',
  'sinc_lot',
  'lot_confus',
  'confus_clearli',
  'clearli_familiar',
  'familiar_nyc',
  'nyc_ye',
  'ye_possibl',
  'possibl_find',
  'find_room',
  'room_$',
  '$_queen',
  'queen_sever',
  'sever_roommat',
  'roommat_room',
  'room_small',
  'small_shit',
  'shit_ac',
  'ac_obvious',
  'obvious_issu',
  'issu_summer',
  'summer_restaur',
  'restaur_mean',
  'mean_ill',
  'ill_probabl',
  'probabl_rodent',
  'rodent_roomi',
  'roomi_current',
  'current_roommat',
  'roommat_told',
  'told_rat',
  'rat_problem',
  'problem_past',
  'past_supposedli',
  'supposedli_fix',
  'fix_howev',
  'howev_know',
  'know_mutant',
  'mutant_citi',
  'citi_rat',
  'rat_know',
  'know_theyll',
  'theyll_come',
  'come_back',
  'back_best',
  'best_im',
  'im_new',
  'new_bright',
  'bright_eye',
  'eye_transplant',
  'transplant_think',
  'think_nyc',
  'nyc_trendi',
  'trendi_rich',
  'rich_part',
  'part_manhattan',
  'manhattan_know',
  'know_look',
  'look_gener',
  'gener_nyc',
  'nyc_landlord',
  'landlord_rent',
  'rent_rule',
  'rule_landlord',
  'landlord_accept',
  'accept_guarantor',
  'guarantor_follow',
  'follow_rule',
  'rule_landlord',
  'landlord_lenient',
  'lenient_come',
  'come_student',
  'student_landlord',
  'landlord_son',
  'son_also',
  'also_alumni',
  'alumni_school',
  'school_im',
  'im_current',
  'current_attend',
  'attend_culturalethn',
  'culturalethn_background',
  'background_probabl',
  'probabl_gave',
  'gave_leverag',
  'leverag_along',
  'along_fact',
  'fact_mom',
  'mom_meet',
  'meet_requir',
  'requir_also',
  'also_took',
  'took_week',
  'week_find',
  'find_current',
  'current_place',
  'place_start',
  'start_-year',
  '-year_msw',
  'msw_program',
  'program_septemb',
  'septemb_finish',
  'finish_undergrad',
  'undergrad_year',
  'year_ago',
  'ago_work',
  'work_full',
  'full_time',
  'time_start',
  'start_master',
  'master_degre',
  'degre_ye',
  'ye_job',
  'job_paid',
  'paid_rent',
  'rent_$',
  '$_month',
  'month_roach',
  'roach_infest',
  'infest_apart',
  'apart_queen',
  'queen_share',
  'share_roommat',
  'roommat_obvious',
  'obvious_time',
  'time_work',
  'work_due',
  'due_schedul',
  'schedul_place',
  'place_rent',
  'rent_stabil',
  'stabil_im',
  'im_confus',
  'confus_came',
  'came_conclus',
  'conclus_cheap',
  'cheap_shitti',
  'shitti_place',
  'place_one',
  'one_want',
  'want_live',
  'live_ye',
  'ye_ex',
  'ex_make',
  'make_much',
  'much_money',
  'money_nyc',
  'nyc_workforc',
  'workforc_year',
  'year_peopl',
  'peopl_make',
  'make_money',
  'money_would',
  'would_whatev',
  'whatev_town',
  'town_especi',
  'especi_field',
  'field_initi',
  'initi_shock',
  'shock_someon',
  'someon_bachelor',
  'bachelor_could',
  'could_earn',
  'earn_much',
  'much_contribut',
  'contribut_absolut',
  'absolut_noth',
  'noth_societi',
  'societi_life',
  'life_charact',
  'charact_limit',
  'limit_hard',
  'hard_includ',
  'includ_everyth',
  'everyth_origin',
  'origin_post',
  'post_got',
  'got_delet',
  'delet_sinc',
  'sinc_exceed',
  'exceed_limit',
  'limit_delet',
  'delet_lot',
  'lot_inform',
  'inform_get',
  'get_post',
  'post_approv',
  'approv_last',
  'last_thing',
  'thing_need',
  'need_right',
  'right_non',
  'non_nycer',
  'nycer_rest',
  'rest_bumfuck',
  'bumfuck_america',
  'america_tri',
  'tri_sort',
  'sort_weird',
  'weird_gotcha',
  ...],
 ['context',
  'husband',
  'come',
  'wealthi',
  'famili',
  'inherit',
  'number',
  'asset',
  'rel',
  'one',
  'huge',
  'hous',
  'live',
  'right',
  'pool',
  'huge',
  'backyard',
  'lot',
  'featur',
  'decid',
  'host',
  'first',
  'cookout',
  'got',
  'marri',
  'month',
  'ago',
  'invit',
  'famili',
  'friday',
  'famili',
  'came',
  'lot',
  'fun',
  'everyon',
  'went',
  'home',
  'later',
  'got',
  'phonecal',
  'mom',
  'sound',
  'okay',
  'ask',
  'wether',
  'husband',
  'took',
  'money',
  'famili',
  'attend',
  'cookout',
  'confus',
  'ask',
  'talk',
  'told',
  'husband',
  'charg',
  'everi',
  'singl',
  'person',
  'side',
  'famili',
  'attend',
  'event',
  '$',
  'dollar',
  'utterli',
  'shock',
  'angri',
  'felt',
  'like',
  'legitim',
  'damag',
  'relationship',
  'famili',
  'almost',
  'came',
  'got',
  '$',
  'dollar',
  'livid',
  'hung',
  'phone',
  'confront',
  'immedi',
  'told',
  'famili',
  'got',
  'enjoy',
  'space',
  'view',
  'said',
  'think',
  'resort',
  'cookout',
  'sinc',
  'hous',
  'lot',
  'luxuri',
  'told',
  'horribl',
  'thing',
  'made',
  'wors',
  'fact',
  'famili',
  'pay',
  'like',
  'mine',
  'laugh',
  'remind',
  'famili',
  'gave',
  'hous',
  'demand',
  'give',
  'money',
  'back',
  'said',
  'even',
  'give',
  'sinc',
  'hous',
  'technic',
  'went',
  'took',
  'money',
  'gave',
  'everyon',
  'paid',
  'money',
  'back',
  'sincer',
  'apolog',
  'husband',
  'found',
  'flip',
  'call',
  'overstep',
  'disrespect',
  'told',
  'taken',
  'money',
  'famili',
  'guest',
  'hous',
  'correct',
  'say',
  'hous',
  'said',
  'hed',
  'bet',
  'famili',
  'never',
  'got',
  'attend',
  'cookout',
  'hous',
  'like',
  '$',
  'dollar',
  'disrespect',
  'went',
  'behind',
  'back',
  'took',
  'money',
  'mine',
  'stop',
  'talk',
  'argument',
  'keep',
  'vent',
  'mom',
  'take',
  'money',
  'earn',
  'way',
  'context_husband',
  'husband_come',
  'come_wealthi',
  'wealthi_famili',
  'famili_inherit',
  'inherit_number',
  'number_asset',
  'asset_rel',
  'rel_one',
  'one_huge',
  'huge_hous',
  'hous_live',
  'live_right',
  'right_pool',
  'pool_huge',
  'huge_backyard',
  'backyard_lot',
  'lot_featur',
  'featur_decid',
  'decid_host',
  'host_first',
  'first_cookout',
  'cookout_got',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_invit',
  'invit_famili',
  'famili_friday',
  'friday_famili',
  'famili_came',
  'came_lot',
  'lot_fun',
  'fun_everyon',
  'everyon_went',
  'went_home',
  'home_later',
  'later_got',
  'got_phonecal',
  'phonecal_mom',
  'mom_sound',
  'sound_okay',
  'okay_ask',
  'ask_wether',
  'wether_husband',
  'husband_took',
  'took_money',
  'money_famili',
  'famili_attend',
  'attend_cookout',
  'cookout_confus',
  'confus_ask',
  'ask_talk',
  'talk_told',
  'told_husband',
  'husband_charg',
  'charg_everi',
  'everi_singl',
  'singl_person',
  'person_side',
  'side_famili',
  'famili_attend',
  'attend_event',
  'event_$',
  '$_dollar',
  'dollar_utterli',
  'utterli_shock',
  'shock_angri',
  'angri_felt',
  'felt_like',
  'like_legitim',
  'legitim_damag',
  'damag_relationship',
  'relationship_famili',
  'famili_almost',
  'almost_came',
  'came_got',
  'got_$',
  '$_dollar',
  'dollar_livid',
  'livid_hung',
  'hung_phone',
  'phone_confront',
  'confront_immedi',
  'immedi_told',
  'told_famili',
  'famili_got',
  'got_enjoy',
  'enjoy_space',
  'space_view',
  'view_said',
  'said_think',
  'think_resort',
  'resort_cookout',
  'cookout_sinc',
  'sinc_hous',
  'hous_lot',
  'lot_luxuri',
  'luxuri_told',
  'told_horribl',
  'horribl_thing',
  'thing_made',
  'made_wors',
  'wors_fact',
  'fact_famili',
  'famili_pay',
  'pay_like',
  'like_mine',
  'mine_laugh',
  'laugh_remind',
  'remind_famili',
  'famili_gave',
  'gave_hous',
  'hous_demand',
  'demand_give',
  'give_money',
  'money_back',
  'back_said',
  'said_even',
  'even_give',
  'give_sinc',
  'sinc_hous',
  'hous_technic',
  'technic_went',
  'went_took',
  'took_money',
  'money_gave',
  'gave_everyon',
  'everyon_paid',
  'paid_money',
  'money_back',
  'back_sincer',
  'sincer_apolog',
  'apolog_husband',
  'husband_found',
  'found_flip',
  'flip_call',
  'call_overstep',
  'overstep_disrespect',
  'disrespect_told',
  'told_taken',
  'taken_money',
  'money_famili',
  'famili_guest',
  'guest_hous',
  'hous_correct',
  'correct_say',
  'say_hous',
  'hous_said',
  'said_hed',
  'hed_bet',
  'bet_famili',
  'famili_never',
  'never_got',
  'got_attend',
  'attend_cookout',
  'cookout_hous',
  'hous_like',
  'like_$',
  '$_dollar',
  'dollar_disrespect',
  'disrespect_went',
  'went_behind',
  'behind_back',
  'back_took',
  'took_money',
  'money_mine',
  'mine_stop',
  'stop_talk',
  'talk_argument',
  'argument_keep',
  'keep_vent',
  'vent_mom',
  'mom_take',
  'take_money',
  'money_earn',
  'earn_way',
  'context_husband_come',
  'husband_come_wealthi',
  'come_wealthi_famili',
  'wealthi_famili_inherit',
  'famili_inherit_number',
  'inherit_number_asset',
  'number_asset_rel',
  'asset_rel_one',
  'rel_one_huge',
  'one_huge_hous',
  'huge_hous_live',
  'hous_live_right',
  'live_right_pool',
  'right_pool_huge',
  'pool_huge_backyard',
  'huge_backyard_lot',
  'backyard_lot_featur',
  'lot_featur_decid',
  'featur_decid_host',
  'decid_host_first',
  'host_first_cookout',
  'first_cookout_got',
  'cookout_got_marri',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_invit',
  'ago_invit_famili',
  'invit_famili_friday',
  'famili_friday_famili',
  'friday_famili_came',
  'famili_came_lot',
  'came_lot_fun',
  'lot_fun_everyon',
  'fun_everyon_went',
  'everyon_went_home',
  'went_home_later',
  'home_later_got',
  'later_got_phonecal',
  'got_phonecal_mom',
  'phonecal_mom_sound',
  'mom_sound_okay',
  'sound_okay_ask',
  'okay_ask_wether',
  'ask_wether_husband',
  'wether_husband_took',
  'husband_took_money',
  'took_money_famili',
  'money_famili_attend',
  'famili_attend_cookout',
  'attend_cookout_confus',
  'cookout_confus_ask',
  'confus_ask_talk',
  'ask_talk_told',
  'talk_told_husband',
  'told_husband_charg',
  'husband_charg_everi',
  'charg_everi_singl',
  'everi_singl_person',
  'singl_person_side',
  'person_side_famili',
  'side_famili_attend',
  'famili_attend_event',
  'attend_event_$',
  'event_$_dollar',
  '$_dollar_utterli',
  'dollar_utterli_shock',
  'utterli_shock_angri',
  'shock_angri_felt',
  'angri_felt_like',
  'felt_like_legitim',
  'like_legitim_damag',
  'legitim_damag_relationship',
  'damag_relationship_famili',
  'relationship_famili_almost',
  'famili_almost_came',
  'almost_came_got',
  'came_got_$',
  'got_$_dollar',
  '$_dollar_livid',
  'dollar_livid_hung',
  'livid_hung_phone',
  'hung_phone_confront',
  'phone_confront_immedi',
  'confront_immedi_told',
  'immedi_told_famili',
  'told_famili_got',
  'famili_got_enjoy',
  'got_enjoy_space',
  'enjoy_space_view',
  'space_view_said',
  'view_said_think',
  'said_think_resort',
  'think_resort_cookout',
  'resort_cookout_sinc',
  'cookout_sinc_hous',
  'sinc_hous_lot',
  'hous_lot_luxuri',
  'lot_luxuri_told',
  'luxuri_told_horribl',
  'told_horribl_thing',
  'horribl_thing_made',
  'thing_made_wors',
  'made_wors_fact',
  'wors_fact_famili',
  'fact_famili_pay',
  'famili_pay_like',
  'pay_like_mine',
  'like_mine_laugh',
  'mine_laugh_remind',
  'laugh_remind_famili',
  'remind_famili_gave',
  'famili_gave_hous',
  'gave_hous_demand',
  'hous_demand_give',
  'demand_give_money',
  'give_money_back',
  'money_back_said',
  'back_said_even',
  'said_even_give',
  'even_give_sinc',
  'give_sinc_hous',
  'sinc_hous_technic',
  'hous_technic_went',
  'technic_went_took',
  'went_took_money',
  'took_money_gave',
  'money_gave_everyon',
  'gave_everyon_paid',
  'everyon_paid_money',
  'paid_money_back',
  'money_back_sincer',
  'back_sincer_apolog',
  'sincer_apolog_husband',
  'apolog_husband_found',
  'husband_found_flip',
  'found_flip_call',
  'flip_call_overstep',
  'call_overstep_disrespect',
  'overstep_disrespect_told',
  'disrespect_told_taken',
  'told_taken_money',
  'taken_money_famili',
  'money_famili_guest',
  'famili_guest_hous',
  'guest_hous_correct',
  'hous_correct_say',
  'correct_say_hous',
  'say_hous_said',
  'hous_said_hed',
  'said_hed_bet',
  'hed_bet_famili',
  'bet_famili_never',
  'famili_never_got',
  'never_got_attend',
  'got_attend_cookout',
  'attend_cookout_hous',
  'cookout_hous_like',
  'hous_like_$',
  'like_$_dollar',
  '$_dollar_disrespect',
  'dollar_disrespect_went',
  'disrespect_went_behind',
  'went_behind_back',
  'behind_back_took',
  'back_took_money',
  'took_money_mine',
  'money_mine_stop',
  'mine_stop_talk',
  'stop_talk_argument',
  'talk_argument_keep',
  'argument_keep_vent',
  'keep_vent_mom',
  'vent_mom_take',
  'mom_take_money',
  'take_money_earn',
  'money_earn_way'],
 ['femal',
  'black',
  'marri',
  'husband',
  'male',
  'white',
  'weve',
  'marri',
  'year',
  'mil',
  'let',
  'call',
  'lisa',
  'alway',
  'made',
  'sli',
  'comment',
  'ive',
  'tri',
  'ignor',
  'year',
  'one',
  'point',
  'call',
  'hair',
  'nappi',
  'suggest',
  'relax',
  'shut',
  'immedi',
  'one',
  'point',
  'made',
  'comment',
  'asian',
  'cashier',
  'eye',
  'justifi',
  'say',
  'daughter-in-law',
  'black',
  'racist',
  'pregnant',
  'kept',
  'mention',
  'want',
  'daughter',
  'husband',
  'blue',
  'eye',
  'daughter',
  'born',
  'brown',
  'eye',
  'lisa',
  'even',
  'tri',
  'hide',
  'disappoint',
  'son',
  'born',
  'hazel',
  'eye',
  'hair',
  'also',
  'tighter',
  'sister',
  'made',
  'sli',
  'comment',
  'say',
  'cant',
  'best',
  'everyth',
  'insinu',
  'daughter',
  'bless',
  'lighter',
  'skin',
  'looser',
  'hair',
  'son',
  'bless',
  'pretti',
  'eye',
  'ive',
  'bought',
  'concern',
  'husband',
  'brush',
  'told',
  'product',
  'time',
  'week',
  'ago',
  'husband',
  'hold',
  'parti',
  'celebr',
  'year',
  'anniversari',
  'natur',
  'lisa',
  'invit',
  'ask',
  'could',
  'invit',
  'friend',
  'agre',
  'would',
  'bit',
  'bore',
  'year',
  'old',
  'woman',
  'engag',
  'convers',
  'bunch',
  'someth',
  'year',
  'old',
  'anyway',
  'friend',
  'show',
  'introduc',
  'black',
  'daughter-in-law',
  'made',
  'uncomfort',
  'pull',
  'side',
  'told',
  'want',
  'address',
  'shrug',
  'said',
  'daughter',
  'law',
  'black',
  'peopl',
  'sensit',
  'moment',
  'pent',
  'anger',
  'toward',
  'came',
  'flow',
  'rememb',
  'exactli',
  'said',
  'rememb',
  'call',
  'racist',
  'bitch',
  'walk',
  'away',
  'went',
  'kitchen',
  'start',
  'cri',
  'natur',
  'everyon',
  'went',
  'see',
  'commot',
  'told',
  'evil',
  'woman',
  'tri',
  'ruin',
  'relationship',
  'son',
  'grandchildren',
  'told',
  'call',
  'racist',
  'bitch',
  'everyon',
  'parti',
  'becam',
  'hostil',
  'toward',
  'told',
  'went',
  'far',
  'night',
  'husband',
  'got',
  'huge',
  'fight',
  'told',
  'need',
  'apolog',
  'mother',
  'told',
  'would',
  'never',
  'apolog',
  'unless',
  'receiv',
  'apolog',
  'lash',
  'went',
  'stay',
  'mom',
  'hous',
  'asshol',
  'femal_black',
  'black_marri',
  'marri_husband',
  'husband_male',
  'male_white',
  'white_weve',
  'weve_marri',
  'marri_year',
  'year_mil',
  'mil_let',
  'let_call',
  'call_lisa',
  'lisa_alway',
  'alway_made',
  'made_sli',
  'sli_comment',
  'comment_ive',
  'ive_tri',
  'tri_ignor',
  'ignor_year',
  'year_one',
  'one_point',
  'point_call',
  'call_hair',
  'hair_nappi',
  'nappi_suggest',
  'suggest_relax',
  'relax_shut',
  'shut_immedi',
  'immedi_one',
  'one_point',
  'point_made',
  'made_comment',
  'comment_asian',
  'asian_cashier',
  'cashier_eye',
  'eye_justifi',
  'justifi_say',
  'say_daughter-in-law',
  'daughter-in-law_black',
  'black_racist',
  'racist_pregnant',
  'pregnant_kept',
  'kept_mention',
  'mention_want',
  'want_daughter',
  'daughter_husband',
  'husband_blue',
  'blue_eye',
  'eye_daughter',
  'daughter_born',
  'born_brown',
  'brown_eye',
  'eye_lisa',
  'lisa_even',
  'even_tri',
  'tri_hide',
  'hide_disappoint',
  'disappoint_son',
  'son_born',
  'born_hazel',
  'hazel_eye',
  'eye_hair',
  'hair_also',
  'also_tighter',
  'tighter_sister',
  'sister_made',
  'made_sli',
  'sli_comment',
  'comment_say',
  'say_cant',
  'cant_best',
  'best_everyth',
  'everyth_insinu',
  'insinu_daughter',
  'daughter_bless',
  'bless_lighter',
  'lighter_skin',
  'skin_looser',
  'looser_hair',
  'hair_son',
  'son_bless',
  'bless_pretti',
  'pretti_eye',
  'eye_ive',
  'ive_bought',
  'bought_concern',
  'concern_husband',
  'husband_brush',
  'brush_told',
  'told_product',
  'product_time',
  'time_week',
  'week_ago',
  'ago_husband',
  'husband_hold',
  'hold_parti',
  'parti_celebr',
  'celebr_year',
  'year_anniversari',
  'anniversari_natur',
  'natur_lisa',
  'lisa_invit',
  'invit_ask',
  'ask_could',
  'could_invit',
  'invit_friend',
  'friend_agre',
  'agre_would',
  'would_bit',
  'bit_bore',
  'bore_year',
  'year_old',
  'old_woman',
  'woman_engag',
  'engag_convers',
  'convers_bunch',
  'bunch_someth',
  'someth_year',
  'year_old',
  'old_anyway',
  'anyway_friend',
  'friend_show',
  'show_introduc',
  'introduc_black',
  'black_daughter-in-law',
  'daughter-in-law_made',
  'made_uncomfort',
  'uncomfort_pull',
  'pull_side',
  'side_told',
  'told_want',
  'want_address',
  'address_shrug',
  'shrug_said',
  'said_daughter',
  'daughter_law',
  'law_black',
  'black_peopl',
  'peopl_sensit',
  'sensit_moment',
  'moment_pent',
  'pent_anger',
  'anger_toward',
  'toward_came',
  'came_flow',
  'flow_rememb',
  'rememb_exactli',
  'exactli_said',
  'said_rememb',
  'rememb_call',
  'call_racist',
  'racist_bitch',
  'bitch_walk',
  'walk_away',
  'away_went',
  'went_kitchen',
  'kitchen_start',
  'start_cri',
  'cri_natur',
  'natur_everyon',
  'everyon_went',
  'went_see',
  'see_commot',
  'commot_told',
  'told_evil',
  'evil_woman',
  'woman_tri',
  'tri_ruin',
  'ruin_relationship',
  'relationship_son',
  'son_grandchildren',
  'grandchildren_told',
  'told_call',
  'call_racist',
  'racist_bitch',
  'bitch_everyon',
  'everyon_parti',
  'parti_becam',
  'becam_hostil',
  'hostil_toward',
  'toward_told',
  'told_went',
  'went_far',
  'far_night',
  'night_husband',
  'husband_got',
  'got_huge',
  'huge_fight',
  'fight_told',
  'told_need',
  'need_apolog',
  'apolog_mother',
  'mother_told',
  'told_would',
  'would_never',
  'never_apolog',
  'apolog_unless',
  'unless_receiv',
  'receiv_apolog',
  'apolog_lash',
  'lash_went',
  'went_stay',
  'stay_mom',
  'mom_hous',
  'hous_asshol',
  'femal_black_marri',
  'black_marri_husband',
  'marri_husband_male',
  'husband_male_white',
  'male_white_weve',
  'white_weve_marri',
  'weve_marri_year',
  'marri_year_mil',
  'year_mil_let',
  'mil_let_call',
  'let_call_lisa',
  'call_lisa_alway',
  'lisa_alway_made',
  'alway_made_sli',
  'made_sli_comment',
  'sli_comment_ive',
  'comment_ive_tri',
  'ive_tri_ignor',
  'tri_ignor_year',
  'ignor_year_one',
  'year_one_point',
  'one_point_call',
  'point_call_hair',
  'call_hair_nappi',
  'hair_nappi_suggest',
  'nappi_suggest_relax',
  'suggest_relax_shut',
  'relax_shut_immedi',
  'shut_immedi_one',
  'immedi_one_point',
  'one_point_made',
  'point_made_comment',
  'made_comment_asian',
  'comment_asian_cashier',
  'asian_cashier_eye',
  'cashier_eye_justifi',
  'eye_justifi_say',
  'justifi_say_daughter-in-law',
  'say_daughter-in-law_black',
  'daughter-in-law_black_racist',
  'black_racist_pregnant',
  'racist_pregnant_kept',
  'pregnant_kept_mention',
  'kept_mention_want',
  'mention_want_daughter',
  'want_daughter_husband',
  'daughter_husband_blue',
  'husband_blue_eye',
  'blue_eye_daughter',
  'eye_daughter_born',
  'daughter_born_brown',
  'born_brown_eye',
  'brown_eye_lisa',
  'eye_lisa_even',
  'lisa_even_tri',
  'even_tri_hide',
  'tri_hide_disappoint',
  'hide_disappoint_son',
  'disappoint_son_born',
  'son_born_hazel',
  'born_hazel_eye',
  'hazel_eye_hair',
  'eye_hair_also',
  'hair_also_tighter',
  'also_tighter_sister',
  'tighter_sister_made',
  'sister_made_sli',
  'made_sli_comment',
  'sli_comment_say',
  'comment_say_cant',
  'say_cant_best',
  'cant_best_everyth',
  'best_everyth_insinu',
  'everyth_insinu_daughter',
  'insinu_daughter_bless',
  'daughter_bless_lighter',
  'bless_lighter_skin',
  'lighter_skin_looser',
  'skin_looser_hair',
  'looser_hair_son',
  'hair_son_bless',
  'son_bless_pretti',
  'bless_pretti_eye',
  'pretti_eye_ive',
  'eye_ive_bought',
  'ive_bought_concern',
  'bought_concern_husband',
  'concern_husband_brush',
  'husband_brush_told',
  'brush_told_product',
  'told_product_time',
  'product_time_week',
  'time_week_ago',
  'week_ago_husband',
  'ago_husband_hold',
  'husband_hold_parti',
  'hold_parti_celebr',
  'parti_celebr_year',
  'celebr_year_anniversari',
  'year_anniversari_natur',
  'anniversari_natur_lisa',
  'natur_lisa_invit',
  'lisa_invit_ask',
  'invit_ask_could',
  'ask_could_invit',
  'could_invit_friend',
  'invit_friend_agre',
  'friend_agre_would',
  'agre_would_bit',
  'would_bit_bore',
  'bit_bore_year',
  'bore_year_old',
  'year_old_woman',
  'old_woman_engag',
  'woman_engag_convers',
  'engag_convers_bunch',
  'convers_bunch_someth',
  'bunch_someth_year',
  'someth_year_old',
  'year_old_anyway',
  'old_anyway_friend',
  'anyway_friend_show',
  'friend_show_introduc',
  'show_introduc_black',
  'introduc_black_daughter-in-law',
  'black_daughter-in-law_made',
  'daughter-in-law_made_uncomfort',
  'made_uncomfort_pull',
  'uncomfort_pull_side',
  'pull_side_told',
  'side_told_want',
  'told_want_address',
  'want_address_shrug',
  'address_shrug_said',
  'shrug_said_daughter',
  'said_daughter_law',
  'daughter_law_black',
  'law_black_peopl',
  'black_peopl_sensit',
  'peopl_sensit_moment',
  'sensit_moment_pent',
  'moment_pent_anger',
  'pent_anger_toward',
  'anger_toward_came',
  'toward_came_flow',
  'came_flow_rememb',
  'flow_rememb_exactli',
  'rememb_exactli_said',
  'exactli_said_rememb',
  'said_rememb_call',
  'rememb_call_racist',
  'call_racist_bitch',
  'racist_bitch_walk',
  'bitch_walk_away',
  'walk_away_went',
  'away_went_kitchen',
  'went_kitchen_start',
  'kitchen_start_cri',
  'start_cri_natur',
  'cri_natur_everyon',
  'natur_everyon_went',
  'everyon_went_see',
  'went_see_commot',
  'see_commot_told',
  'commot_told_evil',
  'told_evil_woman',
  'evil_woman_tri',
  'woman_tri_ruin',
  'tri_ruin_relationship',
  'ruin_relationship_son',
  'relationship_son_grandchildren',
  'son_grandchildren_told',
  'grandchildren_told_call',
  'told_call_racist',
  'call_racist_bitch',
  'racist_bitch_everyon',
  'bitch_everyon_parti',
  'everyon_parti_becam',
  'parti_becam_hostil',
  'becam_hostil_toward',
  'hostil_toward_told',
  'toward_told_went',
  'told_went_far',
  'went_far_night',
  'far_night_husband',
  'night_husband_got',
  'husband_got_huge',
  'got_huge_fight',
  'huge_fight_told',
  'fight_told_need',
  'told_need_apolog',
  'need_apolog_mother',
  'apolog_mother_told',
  'mother_told_would',
  'told_would_never',
  'would_never_apolog',
  'never_apolog_unless',
  'apolog_unless_receiv',
  'unless_receiv_apolog',
  'receiv_apolog_lash',
  'apolog_lash_went',
  'lash_went_stay',
  'went_stay_mom',
  'stay_mom_hous',
  'mom_hous_asshol'],
 ['sister',
  'get',
  'marri',
  'come',
  'weekend',
  'gone',
  'thursday-sunday',
  'ive',
  'known',
  'go',
  'gone',
  'months…',
  'month',
  'would',
  'even',
  'remind',
  'everi',
  'month',
  'knew',
  'knew',
  'nanni',
  'two',
  'amaz',
  'kid',
  'first',
  'time',
  'ever',
  'ask',
  'time',
  'boss',
  'alway',
  'like',
  'oh',
  'yeah',
  'sure',
  'sound',
  'like',
  'beauti',
  'wed',
  'howev',
  'got',
  'text',
  'hour',
  'ago',
  'say',
  'realli',
  'need',
  'weekend',
  'find',
  'anyon',
  'els',
  'piss',
  'know',
  'act',
  'calm',
  'sinc',
  'ya',
  'know',
  'job',
  'stay',
  'happi',
  'calm',
  'text',
  'back',
  'quick',
  'apolog',
  'said',
  'realli',
  'want',
  'miss',
  'sister',
  'wed',
  'sibl',
  'well',
  'boss',
  'woman',
  'went',
  'deep',
  'end',
  'said',
  'show',
  'watch',
  'kid',
  'weekend',
  'job',
  'come',
  'monday',
  'repli',
  'exactli',
  '______',
  'im',
  'sorri',
  'hard',
  'time',
  'look',
  'someon',
  'cover',
  'reach',
  'nanni',
  'friend',
  'see',
  'would',
  'like',
  'pick',
  'life',
  'time',
  'moment',
  'sister',
  'mean',
  'lose',
  'job',
  'sadli',
  'accept',
  'love',
  'job',
  'kid',
  'hope',
  'work',
  'someth',
  'think',
  'would',
  'devast',
  '_____',
  '_____',
  'need',
  'accept',
  'threw',
  'insult',
  'said',
  'im',
  'abandon',
  'kid',
  'idk',
  'want',
  'get',
  'new',
  'job',
  'work',
  'well',
  'two',
  'kiddo',
  'mom',
  'told',
  'asshol',
  'quickli',
  'accept',
  'might',
  'get',
  'fire',
  'told',
  'work',
  'suck',
  'sometim',
  'suck',
  'mom',
  'say',
  'adult',
  'miss',
  'sister',
  'wedding…',
  'idk',
  'realli',
  'big',
  'ah',
  'say',
  'edit',
  'clarifi',
  'mom',
  'good',
  'relationship',
  'ask',
  'advic',
  'room',
  'sister',
  'vent',
  'sister',
  'would',
  'gone',
  'contact',
  'dad',
  'pleas',
  'stop',
  'talk',
  'lot',
  'trauma',
  'anoth',
  'day',
  'lol',
  'sister_get',
  'get_marri',
  'marri_come',
  'come_weekend',
  'weekend_gone',
  'gone_thursday-sunday',
  'thursday-sunday_ive',
  'ive_known',
  'known_go',
  'go_gone',
  'gone_months…',
  'months…_month',
  'month_would',
  'would_even',
  'even_remind',
  'remind_everi',
  'everi_month',
  'month_knew',
  'knew_knew',
  'knew_nanni',
  'nanni_two',
  'two_amaz',
  'amaz_kid',
  'kid_first',
  'first_time',
  'time_ever',
  'ever_ask',
  'ask_time',
  'time_boss',
  'boss_alway',
  'alway_like',
  'like_oh',
  'oh_yeah',
  'yeah_sure',
  'sure_sound',
  'sound_like',
  'like_beauti',
  'beauti_wed',
  'wed_howev',
  'howev_got',
  'got_text',
  'text_hour',
  'hour_ago',
  'ago_say',
  'say_realli',
  'realli_need',
  'need_weekend',
  'weekend_find',
  'find_anyon',
  'anyon_els',
  'els_piss',
  'piss_know',
  'know_act',
  'act_calm',
  'calm_sinc',
  'sinc_ya',
  'ya_know',
  'know_job',
  'job_stay',
  'stay_happi',
  'happi_calm',
  'calm_text',
  'text_back',
  'back_quick',
  'quick_apolog',
  'apolog_said',
  'said_realli',
  'realli_want',
  'want_miss',
  'miss_sister',
  'sister_wed',
  'wed_sibl',
  'sibl_well',
  'well_boss',
  'boss_woman',
  'woman_went',
  'went_deep',
  'deep_end',
  'end_said',
  'said_show',
  'show_watch',
  'watch_kid',
  'kid_weekend',
  'weekend_job',
  'job_come',
  'come_monday',
  'monday_repli',
  'repli_exactli',
  'exactli_______',
  '_______im',
  'im_sorri',
  'sorri_hard',
  'hard_time',
  'time_look',
  'look_someon',
  'someon_cover',
  'cover_reach',
  'reach_nanni',
  'nanni_friend',
  'friend_see',
  'see_would',
  'would_like',
  'like_pick',
  'pick_life',
  'life_time',
  'time_moment',
  'moment_sister',
  'sister_mean',
  'mean_lose',
  'lose_job',
  'job_sadli',
  'sadli_accept',
  'accept_love',
  'love_job',
  'job_kid',
  'kid_hope',
  'hope_work',
  'work_someth',
  'someth_think',
  'think_would',
  'would_devast',
  'devast______',
  '___________',
  '______need',
  'need_accept',
  'accept_threw',
  'threw_insult',
  'insult_said',
  'said_im',
  'im_abandon',
  'abandon_kid',
  'kid_idk',
  'idk_want',
  'want_get',
  'get_new',
  'new_job',
  'job_work',
  'work_well',
  'well_two',
  'two_kiddo',
  'kiddo_mom',
  'mom_told',
  'told_asshol',
  'asshol_quickli',
  'quickli_accept',
  'accept_might',
  'might_get',
  'get_fire',
  'fire_told',
  'told_work',
  'work_suck',
  'suck_sometim',
  'sometim_suck',
  'suck_mom',
  'mom_say',
  'say_adult',
  'adult_miss',
  'miss_sister',
  'sister_wedding…',
  'wedding…_idk',
  'idk_realli',
  'realli_big',
  'big_ah',
  'ah_say',
  'say_edit',
  'edit_clarifi',
  'clarifi_mom',
  'mom_good',
  'good_relationship',
  'relationship_ask',
  'ask_advic',
  'advic_room',
  'room_sister',
  'sister_vent',
  'vent_sister',
  'sister_would',
  'would_gone',
  'gone_contact',
  'contact_dad',
  'dad_pleas',
  'pleas_stop',
  'stop_talk',
  'talk_lot',
  'lot_trauma',
  'trauma_anoth',
  'anoth_day',
  'day_lol',
  'sister_get_marri',
  'get_marri_come',
  'marri_come_weekend',
  'come_weekend_gone',
  'weekend_gone_thursday-sunday',
  'gone_thursday-sunday_ive',
  'thursday-sunday_ive_known',
  'ive_known_go',
  'known_go_gone',
  'go_gone_months…',
  'gone_months…_month',
  'months…_month_would',
  'month_would_even',
  'would_even_remind',
  'even_remind_everi',
  'remind_everi_month',
  'everi_month_knew',
  'month_knew_knew',
  'knew_knew_nanni',
  'knew_nanni_two',
  'nanni_two_amaz',
  'two_amaz_kid',
  'amaz_kid_first',
  'kid_first_time',
  'first_time_ever',
  'time_ever_ask',
  'ever_ask_time',
  'ask_time_boss',
  'time_boss_alway',
  'boss_alway_like',
  'alway_like_oh',
  'like_oh_yeah',
  'oh_yeah_sure',
  'yeah_sure_sound',
  'sure_sound_like',
  'sound_like_beauti',
  'like_beauti_wed',
  'beauti_wed_howev',
  'wed_howev_got',
  'howev_got_text',
  'got_text_hour',
  'text_hour_ago',
  'hour_ago_say',
  'ago_say_realli',
  'say_realli_need',
  'realli_need_weekend',
  'need_weekend_find',
  'weekend_find_anyon',
  'find_anyon_els',
  'anyon_els_piss',
  'els_piss_know',
  'piss_know_act',
  'know_act_calm',
  'act_calm_sinc',
  'calm_sinc_ya',
  'sinc_ya_know',
  'ya_know_job',
  'know_job_stay',
  'job_stay_happi',
  'stay_happi_calm',
  'happi_calm_text',
  'calm_text_back',
  'text_back_quick',
  'back_quick_apolog',
  'quick_apolog_said',
  'apolog_said_realli',
  'said_realli_want',
  'realli_want_miss',
  'want_miss_sister',
  'miss_sister_wed',
  'sister_wed_sibl',
  'wed_sibl_well',
  'sibl_well_boss',
  'well_boss_woman',
  'boss_woman_went',
  'woman_went_deep',
  'went_deep_end',
  'deep_end_said',
  'end_said_show',
  'said_show_watch',
  'show_watch_kid',
  'watch_kid_weekend',
  'kid_weekend_job',
  'weekend_job_come',
  'job_come_monday',
  'come_monday_repli',
  'monday_repli_exactli',
  'repli_exactli_______',
  'exactli________im',
  '_______im_sorri',
  'im_sorri_hard',
  'sorri_hard_time',
  'hard_time_look',
  'time_look_someon',
  'look_someon_cover',
  'someon_cover_reach',
  'cover_reach_nanni',
  'reach_nanni_friend',
  'nanni_friend_see',
  'friend_see_would',
  'see_would_like',
  'would_like_pick',
  'like_pick_life',
  'pick_life_time',
  'life_time_moment',
  'time_moment_sister',
  'moment_sister_mean',
  'sister_mean_lose',
  'mean_lose_job',
  'lose_job_sadli',
  'job_sadli_accept',
  'sadli_accept_love',
  'accept_love_job',
  'love_job_kid',
  'job_kid_hope',
  'kid_hope_work',
  'hope_work_someth',
  'work_someth_think',
  'someth_think_would',
  'think_would_devast',
  'would_devast______',
  'devast____________',
  '____________need',
  '______need_accept',
  'need_accept_threw',
  'accept_threw_insult',
  'threw_insult_said',
  'insult_said_im',
  'said_im_abandon',
  'im_abandon_kid',
  'abandon_kid_idk',
  'kid_idk_want',
  'idk_want_get',
  'want_get_new',
  'get_new_job',
  'new_job_work',
  'job_work_well',
  'work_well_two',
  'well_two_kiddo',
  'two_kiddo_mom',
  'kiddo_mom_told',
  'mom_told_asshol',
  'told_asshol_quickli',
  'asshol_quickli_accept',
  'quickli_accept_might',
  'accept_might_get',
  'might_get_fire',
  'get_fire_told',
  'fire_told_work',
  'told_work_suck',
  'work_suck_sometim',
  'suck_sometim_suck',
  'sometim_suck_mom',
  'suck_mom_say',
  'mom_say_adult',
  'say_adult_miss',
  'adult_miss_sister',
  'miss_sister_wedding…',
  'sister_wedding…_idk',
  'wedding…_idk_realli',
  'idk_realli_big',
  'realli_big_ah',
  'big_ah_say',
  'ah_say_edit',
  'say_edit_clarifi',
  'edit_clarifi_mom',
  'clarifi_mom_good',
  'mom_good_relationship',
  'good_relationship_ask',
  'relationship_ask_advic',
  'ask_advic_room',
  'advic_room_sister',
  'room_sister_vent',
  'sister_vent_sister',
  'vent_sister_would',
  'sister_would_gone',
  'would_gone_contact',
  'gone_contact_dad',
  'contact_dad_pleas',
  'dad_pleas_stop',
  'pleas_stop_talk',
  'stop_talk_lot',
  'talk_lot_trauma',
  'lot_trauma_anoth',
  'trauma_anoth_day',
  'anoth_day_lol'],
 ['got',
  'prestigi',
  'art',
  'show',
  'realli',
  'excit',
  'open',
  'friday',
  'go',
  'parti',
  'tell',
  'famili',
  'want',
  'sister',
  'come',
  'long',
  'stori',
  'short',
  'sister',
  'autist',
  'realli',
  'smart',
  'went',
  'ivi',
  'leagu',
  'school',
  'well',
  'social',
  'cue',
  'usual',
  'lead',
  'belittl',
  'mean',
  'parent',
  'alway',
  'tell',
  'get',
  'sinc',
  'autist',
  'cant',
  'help',
  'unleash',
  'way',
  'unleash',
  'think',
  'realli',
  'understand',
  'everi',
  'time',
  'someth',
  'good',
  'happen',
  'kind',
  'shit',
  'itm',
  'never',
  'ever',
  'apolog',
  'anyhow',
  'parent',
  'found',
  'art',
  'show',
  'got',
  'mad',
  'tell',
  'told',
  'theyll',
  'come',
  'open',
  'sister',
  'sinc',
  'current',
  'live',
  'us',
  'end',
  'break',
  'beg',
  'bring',
  'work',
  'hard',
  'sinc',
  'think',
  'paint',
  'silli',
  'first',
  'place',
  'know',
  'go',
  'tri',
  'bring',
  'front',
  'friend',
  'teacher',
  'ask',
  'could',
  'wait',
  'parti',
  'go',
  'later',
  'show',
  'week',
  'said',
  'theyd',
  'come',
  'parti',
  'also',
  'said',
  'ableist',
  'want',
  'exclud',
  'sister',
  'sister',
  'found',
  'start',
  'scream',
  'call',
  'asshol',
  'let',
  'share',
  'moment',
  'point',
  'view',
  'want',
  'happi',
  'night',
  'celebr',
  'accomplish',
  'idk',
  'everyon',
  'famili',
  'piss',
  'mayb',
  'asshol',
  'tldr',
  'sister',
  'insult',
  'time',
  'invit',
  'art',
  'show',
  'famili',
  'think',
  'im',
  'asshol',
  'got_prestigi',
  'prestigi_art',
  'art_show',
  'show_realli',
  'realli_excit',
  'excit_open',
  'open_friday',
  'friday_go',
  'go_parti',
  'parti_tell',
  'tell_famili',
  'famili_want',
  'want_sister',
  'sister_come',
  'come_long',
  'long_stori',
  'stori_short',
  'short_sister',
  'sister_autist',
  'autist_realli',
  'realli_smart',
  'smart_went',
  'went_ivi',
  'ivi_leagu',
  'leagu_school',
  'school_well',
  'well_social',
  'social_cue',
  'cue_usual',
  'usual_lead',
  'lead_belittl',
  'belittl_mean',
  'mean_parent',
  'parent_alway',
  'alway_tell',
  'tell_get',
  'get_sinc',
  'sinc_autist',
  'autist_cant',
  'cant_help',
  'help_unleash',
  'unleash_way',
  'way_unleash',
  'unleash_think',
  'think_realli',
  'realli_understand',
  'understand_everi',
  'everi_time',
  'time_someth',
  'someth_good',
  'good_happen',
  'happen_kind',
  'kind_shit',
  'shit_itm',
  'itm_never',
  'never_ever',
  'ever_apolog',
  'apolog_anyhow',
  'anyhow_parent',
  'parent_found',
  'found_art',
  'art_show',
  'show_got',
  'got_mad',
  'mad_tell',
  'tell_told',
  'told_theyll',
  'theyll_come',
  'come_open',
  'open_sister',
  'sister_sinc',
  'sinc_current',
  'current_live',
  'live_us',
  'us_end',
  'end_break',
  'break_beg',
  'beg_bring',
  'bring_work',
  'work_hard',
  'hard_sinc',
  'sinc_think',
  'think_paint',
  'paint_silli',
  'silli_first',
  'first_place',
  'place_know',
  'know_go',
  'go_tri',
  'tri_bring',
  'bring_front',
  'front_friend',
  'friend_teacher',
  'teacher_ask',
  'ask_could',
  'could_wait',
  'wait_parti',
  'parti_go',
  'go_later',
  'later_show',
  'show_week',
  'week_said',
  'said_theyd',
  'theyd_come',
  'come_parti',
  'parti_also',
  'also_said',
  'said_ableist',
  'ableist_want',
  'want_exclud',
  'exclud_sister',
  'sister_sister',
  'sister_found',
  'found_start',
  'start_scream',
  'scream_call',
  'call_asshol',
  'asshol_let',
  'let_share',
  'share_moment',
  'moment_point',
  'point_view',
  'view_want',
  'want_happi',
  'happi_night',
  'night_celebr',
  'celebr_accomplish',
  'accomplish_idk',
  'idk_everyon',
  'everyon_famili',
  'famili_piss',
  'piss_mayb',
  'mayb_asshol',
  'asshol_tldr',
  'tldr_sister',
  'sister_insult',
  'insult_time',
  'time_invit',
  'invit_art',
  'art_show',
  'show_famili',
  'famili_think',
  'think_im',
  'im_asshol',
  'got_prestigi_art',
  'prestigi_art_show',
  'art_show_realli',
  'show_realli_excit',
  'realli_excit_open',
  'excit_open_friday',
  'open_friday_go',
  'friday_go_parti',
  'go_parti_tell',
  'parti_tell_famili',
  'tell_famili_want',
  'famili_want_sister',
  'want_sister_come',
  'sister_come_long',
  'come_long_stori',
  'long_stori_short',
  'stori_short_sister',
  'short_sister_autist',
  'sister_autist_realli',
  'autist_realli_smart',
  'realli_smart_went',
  'smart_went_ivi',
  'went_ivi_leagu',
  'ivi_leagu_school',
  'leagu_school_well',
  'school_well_social',
  'well_social_cue',
  'social_cue_usual',
  'cue_usual_lead',
  'usual_lead_belittl',
  'lead_belittl_mean',
  'belittl_mean_parent',
  'mean_parent_alway',
  'parent_alway_tell',
  'alway_tell_get',
  'tell_get_sinc',
  'get_sinc_autist',
  'sinc_autist_cant',
  'autist_cant_help',
  'cant_help_unleash',
  'help_unleash_way',
  'unleash_way_unleash',
  'way_unleash_think',
  'unleash_think_realli',
  'think_realli_understand',
  'realli_understand_everi',
  'understand_everi_time',
  'everi_time_someth',
  'time_someth_good',
  'someth_good_happen',
  'good_happen_kind',
  'happen_kind_shit',
  'kind_shit_itm',
  'shit_itm_never',
  'itm_never_ever',
  'never_ever_apolog',
  'ever_apolog_anyhow',
  'apolog_anyhow_parent',
  'anyhow_parent_found',
  'parent_found_art',
  'found_art_show',
  'art_show_got',
  'show_got_mad',
  'got_mad_tell',
  'mad_tell_told',
  'tell_told_theyll',
  'told_theyll_come',
  'theyll_come_open',
  'come_open_sister',
  'open_sister_sinc',
  'sister_sinc_current',
  'sinc_current_live',
  'current_live_us',
  'live_us_end',
  'us_end_break',
  'end_break_beg',
  'break_beg_bring',
  'beg_bring_work',
  'bring_work_hard',
  'work_hard_sinc',
  'hard_sinc_think',
  'sinc_think_paint',
  'think_paint_silli',
  'paint_silli_first',
  'silli_first_place',
  'first_place_know',
  'place_know_go',
  'know_go_tri',
  'go_tri_bring',
  'tri_bring_front',
  'bring_front_friend',
  'front_friend_teacher',
  'friend_teacher_ask',
  'teacher_ask_could',
  'ask_could_wait',
  'could_wait_parti',
  'wait_parti_go',
  'parti_go_later',
  'go_later_show',
  'later_show_week',
  'show_week_said',
  'week_said_theyd',
  'said_theyd_come',
  'theyd_come_parti',
  'come_parti_also',
  'parti_also_said',
  'also_said_ableist',
  'said_ableist_want',
  'ableist_want_exclud',
  'want_exclud_sister',
  'exclud_sister_sister',
  'sister_sister_found',
  'sister_found_start',
  'found_start_scream',
  'start_scream_call',
  'scream_call_asshol',
  'call_asshol_let',
  'asshol_let_share',
  'let_share_moment',
  'share_moment_point',
  'moment_point_view',
  'point_view_want',
  'view_want_happi',
  'want_happi_night',
  'happi_night_celebr',
  'night_celebr_accomplish',
  'celebr_accomplish_idk',
  'accomplish_idk_everyon',
  'idk_everyon_famili',
  'everyon_famili_piss',
  'famili_piss_mayb',
  'piss_mayb_asshol',
  'mayb_asshol_tldr',
  'asshol_tldr_sister',
  'tldr_sister_insult',
  'sister_insult_time',
  'insult_time_invit',
  'time_invit_art',
  'invit_art_show',
  'art_show_famili',
  'show_famili_think',
  'famili_think_im',
  'think_im_asshol'],
 ['im',
  'amateur',
  'baker',
  'like',
  'make',
  'cake',
  'peopl',
  'birthday',
  'ex',
  'like',
  'sweet',
  'stuff',
  'kid',
  'like',
  'help',
  'make',
  'cake',
  'normal',
  'make',
  'one',
  'anyway',
  'sake',
  'year',
  'girlfriend',
  'plan',
  'parti',
  'told',
  'alreadi',
  'order',
  'cake',
  'need',
  'make',
  'one',
  'told',
  'fine',
  'daughter',
  'kept',
  'ask',
  'would',
  'make',
  'dad',
  'cake',
  'upset',
  'said',
  'assum',
  'like',
  'ex',
  'make',
  'one',
  'sinc',
  'cake',
  'alway',
  'kid',
  'ex',
  'decid',
  'make',
  'small',
  'one',
  'sinc',
  'like',
  'eat',
  'cake',
  'anyway',
  'want',
  'kid',
  'think',
  'dislik',
  'dad',
  'told',
  'girlfriend',
  'beforehand',
  'go',
  'make',
  'small',
  'cake',
  'told',
  'bring',
  'parti',
  'told',
  'bring',
  'parti',
  'kid',
  'would',
  'give',
  'gift',
  'offer',
  'come',
  'earli',
  'give',
  'guest',
  'arriv',
  'could',
  'put',
  'away',
  'nobodi',
  'els',
  'would',
  'know',
  'cake',
  'agre',
  'repeatedli',
  'told',
  'bring',
  'take',
  'end',
  'keep',
  'complain',
  'mutual',
  'friend',
  'purpos',
  'ruin',
  'parti',
  'call',
  'weird',
  'make',
  'cake',
  'told',
  'aita',
  'im_amateur',
  'amateur_baker',
  'baker_like',
  'like_make',
  'make_cake',
  'cake_peopl',
  'peopl_birthday',
  'birthday_ex',
  'ex_like',
  'like_sweet',
  'sweet_stuff',
  'stuff_kid',
  'kid_like',
  'like_help',
  'help_make',
  'make_cake',
  'cake_normal',
  'normal_make',
  'make_one',
  'one_anyway',
  'anyway_sake',
  'sake_year',
  'year_girlfriend',
  'girlfriend_plan',
  'plan_parti',
  'parti_told',
  'told_alreadi',
  'alreadi_order',
  'order_cake',
  'cake_need',
  'need_make',
  'make_one',
  'one_told',
  'told_fine',
  'fine_daughter',
  'daughter_kept',
  'kept_ask',
  'ask_would',
  'would_make',
  'make_dad',
  'dad_cake',
  'cake_upset',
  'upset_said',
  'said_assum',
  'assum_like',
  'like_ex',
  'ex_make',
  'make_one',
  'one_sinc',
  'sinc_cake',
  'cake_alway',
  'alway_kid',
  'kid_ex',
  'ex_decid',
  'decid_make',
  'make_small',
  'small_one',
  'one_sinc',
  'sinc_like',
  'like_eat',
  'eat_cake',
  'cake_anyway',
  'anyway_want',
  'want_kid',
  'kid_think',
  'think_dislik',
  'dislik_dad',
  'dad_told',
  'told_girlfriend',
  'girlfriend_beforehand',
  'beforehand_go',
  'go_make',
  'make_small',
  'small_cake',
  'cake_told',
  'told_bring',
  'bring_parti',
  'parti_told',
  'told_bring',
  'bring_parti',
  'parti_kid',
  'kid_would',
  'would_give',
  'give_gift',
  'gift_offer',
  'offer_come',
  'come_earli',
  'earli_give',
  'give_guest',
  'guest_arriv',
  'arriv_could',
  'could_put',
  'put_away',
  'away_nobodi',
  'nobodi_els',
  'els_would',
  'would_know',
  'know_cake',
  'cake_agre',
  'agre_repeatedli',
  'repeatedli_told',
  'told_bring',
  'bring_take',
  'take_end',
  'end_keep',
  'keep_complain',
  'complain_mutual',
  'mutual_friend',
  'friend_purpos',
  'purpos_ruin',
  'ruin_parti',
  'parti_call',
  'call_weird',
  'weird_make',
  'make_cake',
  'cake_told',
  'told_aita',
  'im_amateur_baker',
  'amateur_baker_like',
  'baker_like_make',
  'like_make_cake',
  'make_cake_peopl',
  'cake_peopl_birthday',
  'peopl_birthday_ex',
  'birthday_ex_like',
  'ex_like_sweet',
  'like_sweet_stuff',
  'sweet_stuff_kid',
  'stuff_kid_like',
  'kid_like_help',
  'like_help_make',
  'help_make_cake',
  'make_cake_normal',
  'cake_normal_make',
  'normal_make_one',
  'make_one_anyway',
  'one_anyway_sake',
  'anyway_sake_year',
  'sake_year_girlfriend',
  'year_girlfriend_plan',
  'girlfriend_plan_parti',
  'plan_parti_told',
  'parti_told_alreadi',
  'told_alreadi_order',
  'alreadi_order_cake',
  'order_cake_need',
  'cake_need_make',
  'need_make_one',
  'make_one_told',
  'one_told_fine',
  'told_fine_daughter',
  'fine_daughter_kept',
  'daughter_kept_ask',
  'kept_ask_would',
  'ask_would_make',
  'would_make_dad',
  'make_dad_cake',
  'dad_cake_upset',
  'cake_upset_said',
  'upset_said_assum',
  'said_assum_like',
  'assum_like_ex',
  'like_ex_make',
  'ex_make_one',
  'make_one_sinc',
  'one_sinc_cake',
  'sinc_cake_alway',
  'cake_alway_kid',
  'alway_kid_ex',
  'kid_ex_decid',
  'ex_decid_make',
  'decid_make_small',
  'make_small_one',
  'small_one_sinc',
  'one_sinc_like',
  'sinc_like_eat',
  'like_eat_cake',
  'eat_cake_anyway',
  'cake_anyway_want',
  'anyway_want_kid',
  'want_kid_think',
  'kid_think_dislik',
  'think_dislik_dad',
  'dislik_dad_told',
  'dad_told_girlfriend',
  'told_girlfriend_beforehand',
  'girlfriend_beforehand_go',
  'beforehand_go_make',
  'go_make_small',
  'make_small_cake',
  'small_cake_told',
  'cake_told_bring',
  'told_bring_parti',
  'bring_parti_told',
  'parti_told_bring',
  'told_bring_parti',
  'bring_parti_kid',
  'parti_kid_would',
  'kid_would_give',
  'would_give_gift',
  'give_gift_offer',
  'gift_offer_come',
  'offer_come_earli',
  'come_earli_give',
  'earli_give_guest',
  'give_guest_arriv',
  'guest_arriv_could',
  'arriv_could_put',
  'could_put_away',
  'put_away_nobodi',
  'away_nobodi_els',
  'nobodi_els_would',
  'els_would_know',
  'would_know_cake',
  'know_cake_agre',
  'cake_agre_repeatedli',
  'agre_repeatedli_told',
  'repeatedli_told_bring',
  'told_bring_take',
  'bring_take_end',
  'take_end_keep',
  'end_keep_complain',
  'keep_complain_mutual',
  'complain_mutual_friend',
  'mutual_friend_purpos',
  'friend_purpos_ruin',
  'purpos_ruin_parti',
  'ruin_parti_call',
  'parti_call_weird',
  'call_weird_make',
  'weird_make_cake',
  'make_cake_told',
  'cake_told_aita'],
 ['im',
  'work',
  'sole',
  'incom',
  'earner',
  'time',
  'husband',
  'struggl',
  'find',
  'job',
  'montj',
  'idk',
  'ive',
  'sole',
  'pay',
  'everyth',
  'know',
  'summer',
  'time',
  'kid',
  'want',
  'go',
  'beach',
  'everi',
  'weekend',
  'im',
  'busi',
  'work',
  'often',
  'time',
  'husband',
  'bother',
  'take',
  'unless',
  'use',
  'car',
  'need',
  'work',
  'anyway',
  'put',
  'money',
  'toward',
  'renov',
  'upgrad',
  'old',
  'pool',
  'kid',
  'could',
  'use',
  'thing',
  'pool',
  'readi',
  'husband',
  'start',
  'invit',
  'friend',
  'come',
  'use',
  'hour',
  'theyd',
  'basic',
  'taken',
  'prevent',
  'kid',
  'enjoy',
  'complain',
  'deni',
  'pool',
  'sever',
  'time',
  'caus',
  'get',
  'upset',
  'talk',
  'husband',
  'tell',
  'limit',
  'friend',
  'usag',
  'pool',
  'flip',
  'say',
  'housewat',
  'cant',
  'control',
  'doeswho',
  'bring',
  'got',
  'mad',
  'return',
  'told',
  'tomorrow',
  'kid',
  'get',
  'pool',
  'els',
  'ban',
  'friend',
  'complet',
  'side',
  'eye',
  'said',
  'fine',
  'damn',
  'pool',
  'tomorrow',
  'well',
  'next',
  'day',
  'daughter',
  'call',
  'cri',
  'say',
  'dad',
  'brought',
  'friend',
  'refus',
  'let',
  'brother',
  'play',
  'pool',
  'livid',
  'liter',
  'left',
  'work',
  'right',
  'went',
  'home',
  'saw',
  'friend',
  'pool',
  'mess',
  'around',
  'scream',
  'head',
  'tell',
  'get',
  'husband',
  'tri',
  'get',
  'involv',
  'told',
  'friend',
  'leav',
  'blew',
  'act',
  'like',
  'lunat',
  'said',
  'control',
  'shamless',
  'said',
  'alreadi',
  'told',
  'let',
  'kid',
  'play',
  'pool',
  'yet',
  'ignor',
  'request',
  'yell',
  'say',
  'paid',
  'fix',
  'pool',
  'mean',
  'went',
  'back',
  'insid',
  'start',
  'call',
  'friend',
  'one',
  'one',
  'apolog',
  'behalf',
  'sinc',
  'said',
  'shamless',
  'left',
  'hous',
  'back',
  'yet',
  'edit__few',
  'thing',
  '*',
  'paid',
  'pool',
  'get',
  'renovatedupgrad',
  '*',
  'friend',
  'alway',
  'alway',
  'use',
  'give',
  'kid',
  'chanc',
  'spend',
  'time',
  '*',
  'friend',
  'trash',
  'pool',
  'everi',
  'singl',
  'time',
  'drop',
  'food',
  'drink',
  'end',
  'clean',
  'im_work',
  'work_sole',
  'sole_incom',
  'incom_earner',
  'earner_time',
  'time_husband',
  'husband_struggl',
  'struggl_find',
  'find_job',
  'job_montj',
  'montj_idk',
  'idk_ive',
  'ive_sole',
  'sole_pay',
  'pay_everyth',
  'everyth_know',
  'know_summer',
  'summer_time',
  'time_kid',
  'kid_want',
  'want_go',
  'go_beach',
  'beach_everi',
  'everi_weekend',
  'weekend_im',
  'im_busi',
  'busi_work',
  'work_often',
  'often_time',
  'time_husband',
  'husband_bother',
  'bother_take',
  'take_unless',
  'unless_use',
  'use_car',
  'car_need',
  'need_work',
  'work_anyway',
  'anyway_put',
  'put_money',
  'money_toward',
  'toward_renov',
  'renov_upgrad',
  'upgrad_old',
  'old_pool',
  'pool_kid',
  'kid_could',
  'could_use',
  'use_thing',
  'thing_pool',
  'pool_readi',
  'readi_husband',
  'husband_start',
  'start_invit',
  'invit_friend',
  'friend_come',
  'come_use',
  'use_hour',
  'hour_theyd',
  'theyd_basic',
  'basic_taken',
  'taken_prevent',
  'prevent_kid',
  'kid_enjoy',
  'enjoy_complain',
  'complain_deni',
  'deni_pool',
  'pool_sever',
  'sever_time',
  'time_caus',
  'caus_get',
  'get_upset',
  'upset_talk',
  'talk_husband',
  'husband_tell',
  'tell_limit',
  'limit_friend',
  'friend_usag',
  'usag_pool',
  'pool_flip',
  'flip_say',
  'say_housewat',
  'housewat_cant',
  'cant_control',
  'control_doeswho',
  'doeswho_bring',
  'bring_got',
  'got_mad',
  'mad_return',
  'return_told',
  'told_tomorrow',
  'tomorrow_kid',
  'kid_get',
  'get_pool',
  'pool_els',
  'els_ban',
  'ban_friend',
  'friend_complet',
  'complet_side',
  'side_eye',
  'eye_said',
  'said_fine',
  'fine_damn',
  'damn_pool',
  'pool_tomorrow',
  'tomorrow_well',
  'well_next',
  'next_day',
  'day_daughter',
  'daughter_call',
  'call_cri',
  'cri_say',
  'say_dad',
  'dad_brought',
  'brought_friend',
  'friend_refus',
  'refus_let',
  'let_brother',
  'brother_play',
  'play_pool',
  'pool_livid',
  'livid_liter',
  'liter_left',
  'left_work',
  'work_right',
  'right_went',
  'went_home',
  'home_saw',
  'saw_friend',
  'friend_pool',
  'pool_mess',
  'mess_around',
  'around_scream',
  'scream_head',
  'head_tell',
  'tell_get',
  'get_husband',
  'husband_tri',
  'tri_get',
  'get_involv',
  'involv_told',
  'told_friend',
  'friend_leav',
  'leav_blew',
  'blew_act',
  'act_like',
  'like_lunat',
  'lunat_said',
  'said_control',
  'control_shamless',
  'shamless_said',
  'said_alreadi',
  'alreadi_told',
  'told_let',
  'let_kid',
  'kid_play',
  'play_pool',
  'pool_yet',
  'yet_ignor',
  'ignor_request',
  'request_yell',
  'yell_say',
  'say_paid',
  'paid_fix',
  'fix_pool',
  'pool_mean',
  'mean_went',
  'went_back',
  'back_insid',
  'insid_start',
  'start_call',
  'call_friend',
  'friend_one',
  'one_one',
  'one_apolog',
  'apolog_behalf',
  'behalf_sinc',
  'sinc_said',
  'said_shamless',
  'shamless_left',
  'left_hous',
  'hous_back',
  'back_yet',
  'yet_edit__few',
  'edit__few_thing',
  'thing_*',
  '*_paid',
  'paid_pool',
  'pool_get',
  'get_renovatedupgrad',
  'renovatedupgrad_*',
  '*_friend',
  'friend_alway',
  'alway_alway',
  'alway_use',
  'use_give',
  'give_kid',
  'kid_chanc',
  'chanc_spend',
  'spend_time',
  'time_*',
  '*_friend',
  'friend_trash',
  'trash_pool',
  'pool_everi',
  'everi_singl',
  'singl_time',
  'time_drop',
  'drop_food',
  'food_drink',
  'drink_end',
  'end_clean',
  'im_work_sole',
  'work_sole_incom',
  'sole_incom_earner',
  'incom_earner_time',
  'earner_time_husband',
  'time_husband_struggl',
  'husband_struggl_find',
  'struggl_find_job',
  'find_job_montj',
  'job_montj_idk',
  'montj_idk_ive',
  'idk_ive_sole',
  'ive_sole_pay',
  'sole_pay_everyth',
  'pay_everyth_know',
  'everyth_know_summer',
  'know_summer_time',
  'summer_time_kid',
  'time_kid_want',
  'kid_want_go',
  'want_go_beach',
  'go_beach_everi',
  'beach_everi_weekend',
  'everi_weekend_im',
  'weekend_im_busi',
  'im_busi_work',
  'busi_work_often',
  'work_often_time',
  'often_time_husband',
  'time_husband_bother',
  'husband_bother_take',
  'bother_take_unless',
  'take_unless_use',
  'unless_use_car',
  'use_car_need',
  'car_need_work',
  'need_work_anyway',
  'work_anyway_put',
  'anyway_put_money',
  'put_money_toward',
  'money_toward_renov',
  'toward_renov_upgrad',
  'renov_upgrad_old',
  'upgrad_old_pool',
  'old_pool_kid',
  'pool_kid_could',
  'kid_could_use',
  'could_use_thing',
  'use_thing_pool',
  'thing_pool_readi',
  'pool_readi_husband',
  'readi_husband_start',
  'husband_start_invit',
  'start_invit_friend',
  'invit_friend_come',
  'friend_come_use',
  'come_use_hour',
  'use_hour_theyd',
  'hour_theyd_basic',
  'theyd_basic_taken',
  'basic_taken_prevent',
  'taken_prevent_kid',
  'prevent_kid_enjoy',
  'kid_enjoy_complain',
  'enjoy_complain_deni',
  'complain_deni_pool',
  'deni_pool_sever',
  'pool_sever_time',
  'sever_time_caus',
  'time_caus_get',
  'caus_get_upset',
  'get_upset_talk',
  'upset_talk_husband',
  'talk_husband_tell',
  'husband_tell_limit',
  'tell_limit_friend',
  'limit_friend_usag',
  'friend_usag_pool',
  'usag_pool_flip',
  'pool_flip_say',
  'flip_say_housewat',
  'say_housewat_cant',
  'housewat_cant_control',
  'cant_control_doeswho',
  'control_doeswho_bring',
  'doeswho_bring_got',
  'bring_got_mad',
  'got_mad_return',
  'mad_return_told',
  'return_told_tomorrow',
  'told_tomorrow_kid',
  'tomorrow_kid_get',
  'kid_get_pool',
  'get_pool_els',
  'pool_els_ban',
  'els_ban_friend',
  'ban_friend_complet',
  'friend_complet_side',
  'complet_side_eye',
  'side_eye_said',
  'eye_said_fine',
  'said_fine_damn',
  'fine_damn_pool',
  'damn_pool_tomorrow',
  'pool_tomorrow_well',
  'tomorrow_well_next',
  'well_next_day',
  'next_day_daughter',
  'day_daughter_call',
  'daughter_call_cri',
  'call_cri_say',
  'cri_say_dad',
  'say_dad_brought',
  'dad_brought_friend',
  'brought_friend_refus',
  'friend_refus_let',
  'refus_let_brother',
  'let_brother_play',
  'brother_play_pool',
  'play_pool_livid',
  'pool_livid_liter',
  'livid_liter_left',
  'liter_left_work',
  'left_work_right',
  'work_right_went',
  'right_went_home',
  'went_home_saw',
  'home_saw_friend',
  'saw_friend_pool',
  'friend_pool_mess',
  'pool_mess_around',
  'mess_around_scream',
  'around_scream_head',
  'scream_head_tell',
  'head_tell_get',
  'tell_get_husband',
  'get_husband_tri',
  'husband_tri_get',
  'tri_get_involv',
  'get_involv_told',
  'involv_told_friend',
  'told_friend_leav',
  'friend_leav_blew',
  'leav_blew_act',
  'blew_act_like',
  'act_like_lunat',
  'like_lunat_said',
  'lunat_said_control',
  'said_control_shamless',
  'control_shamless_said',
  'shamless_said_alreadi',
  'said_alreadi_told',
  'alreadi_told_let',
  'told_let_kid',
  'let_kid_play',
  'kid_play_pool',
  'play_pool_yet',
  'pool_yet_ignor',
  'yet_ignor_request',
  'ignor_request_yell',
  'request_yell_say',
  'yell_say_paid',
  'say_paid_fix',
  'paid_fix_pool',
  'fix_pool_mean',
  'pool_mean_went',
  'mean_went_back',
  'went_back_insid',
  'back_insid_start',
  'insid_start_call',
  'start_call_friend',
  'call_friend_one',
  'friend_one_one',
  'one_one_apolog',
  'one_apolog_behalf',
  'apolog_behalf_sinc',
  'behalf_sinc_said',
  'sinc_said_shamless',
  'said_shamless_left',
  'shamless_left_hous',
  'left_hous_back',
  'hous_back_yet',
  'back_yet_edit__few',
  'yet_edit__few_thing',
  'edit__few_thing_*',
  'thing_*_paid',
  '*_paid_pool',
  'paid_pool_get',
  'pool_get_renovatedupgrad',
  'get_renovatedupgrad_*',
  'renovatedupgrad_*_friend',
  '*_friend_alway',
  'friend_alway_alway',
  'alway_alway_use',
  'alway_use_give',
  'use_give_kid',
  'give_kid_chanc',
  'kid_chanc_spend',
  'chanc_spend_time',
  'spend_time_*',
  'time_*_friend',
  '*_friend_trash',
  'friend_trash_pool',
  'trash_pool_everi',
  'pool_everi_singl',
  'everi_singl_time',
  'singl_time_drop',
  'time_drop_food',
  'drop_food_drink',
  'food_drink_end',
  'drink_end_clean'],
 ['daughter',
  'liz',
  '[',
  ']',
  'love',
  'cook',
  'began',
  'discov',
  'new',
  'meal',
  'becam',
  'vegan',
  'picki',
  'eater',
  'past',
  'encourag',
  'cook',
  'food',
  'husband',
  'hate',
  'although',
  'still',
  'sit',
  'tabl',
  'us',
  'think',
  'differ',
  'food',
  'tabl',
  'disrespect',
  'famili',
  'eat',
  'eat',
  'thought',
  'ridicul',
  'ask',
  'let',
  'got',
  'agit',
  'said',
  'liz',
  'allow',
  'use',
  'tool',
  'kitchen',
  'decid',
  'cook',
  'sinc',
  'paid',
  'everyth',
  'kitchen',
  'fought',
  'back',
  'decis',
  'stood',
  'firm',
  'decid',
  'go',
  'buy',
  'tool',
  'need',
  'make',
  'meal',
  'buy',
  'groceri',
  'worri',
  'last',
  'night',
  'liz',
  'call',
  'cri',
  'say',
  'husband',
  'threw',
  'away',
  'tool',
  'got',
  'prevent',
  'cook',
  'fume',
  'went',
  'home',
  'start',
  'argu',
  'tell',
  'tool',
  'argu',
  'liz',
  'cook',
  '*',
  '*',
  'kitchen',
  'alreadi',
  '*',
  'author',
  '*',
  'blew',
  'went',
  'tell',
  'ridicul',
  'look',
  'excus',
  'prevent',
  'liz',
  'cook',
  'yell',
  'liz',
  'act',
  'spoil',
  'repeatedli',
  'let',
  'disrespect',
  'us',
  'tabl',
  'manner',
  'let',
  'cook',
  'food',
  'instead',
  'grate',
  'eat',
  'alreadi',
  'tabl',
  'fought',
  'went',
  'upstair',
  'follow',
  'say',
  'im',
  'avoid',
  'respons',
  'im',
  'encourag',
  'liz',
  'becom',
  'selfish',
  'egotist',
  'instead',
  'appreci',
  'infront',
  'refus',
  'talk',
  'said',
  'apolog',
  'react',
  'yell',
  'call',
  'name',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'let',
  'daughter',
  'buy',
  'groceri',
  'reason',
  'one',
  'use',
  'money',
  'give',
  'buy',
  'groceri',
  'two',
  'know',
  'need',
  'cook',
  'meal',
  'knowledg',
  'vegan',
  'product',
  'shop',
  'sometim',
  'take',
  'new',
  'place',
  'cultur',
  'factor',
  'latin',
  'america',
  'husband',
  'sole',
  'provid',
  'famili',
  'cant',
  'whole',
  'famili',
  'eat',
  'vegan',
  'younger',
  'kid',
  'eat',
  'veget',
  'daughter_liz',
  'liz_[',
  '[_]',
  ']_love',
  'love_cook',
  'cook_began',
  'began_discov',
  'discov_new',
  'new_meal',
  'meal_becam',
  'becam_vegan',
  'vegan_picki',
  'picki_eater',
  'eater_past',
  'past_encourag',
  'encourag_cook',
  'cook_food',
  'food_husband',
  'husband_hate',
  'hate_although',
  'although_still',
  'still_sit',
  'sit_tabl',
  'tabl_us',
  'us_think',
  'think_differ',
  'differ_food',
  'food_tabl',
  'tabl_disrespect',
  'disrespect_famili',
  'famili_eat',
  'eat_eat',
  'eat_thought',
  'thought_ridicul',
  'ridicul_ask',
  'ask_let',
  'let_got',
  'got_agit',
  'agit_said',
  'said_liz',
  'liz_allow',
  'allow_use',
  'use_tool',
  'tool_kitchen',
  'kitchen_decid',
  'decid_cook',
  'cook_sinc',
  'sinc_paid',
  'paid_everyth',
  'everyth_kitchen',
  'kitchen_fought',
  'fought_back',
  'back_decis',
  'decis_stood',
  'stood_firm',
  'firm_decid',
  'decid_go',
  'go_buy',
  'buy_tool',
  'tool_need',
  'need_make',
  'make_meal',
  'meal_buy',
  'buy_groceri',
  'groceri_worri',
  'worri_last',
  'last_night',
  'night_liz',
  'liz_call',
  'call_cri',
  'cri_say',
  'say_husband',
  'husband_threw',
  'threw_away',
  'away_tool',
  'tool_got',
  'got_prevent',
  'prevent_cook',
  'cook_fume',
  'fume_went',
  'went_home',
  'home_start',
  'start_argu',
  'argu_tell',
  'tell_tool',
  'tool_argu',
  'argu_liz',
  'liz_cook',
  'cook_*',
  '*_*',
  '*_kitchen',
  'kitchen_alreadi',
  'alreadi_*',
  '*_author',
  'author_*',
  '*_blew',
  'blew_went',
  'went_tell',
  'tell_ridicul',
  'ridicul_look',
  'look_excus',
  'excus_prevent',
  'prevent_liz',
  'liz_cook',
  'cook_yell',
  'yell_liz',
  'liz_act',
  'act_spoil',
  'spoil_repeatedli',
  'repeatedli_let',
  'let_disrespect',
  'disrespect_us',
  'us_tabl',
  'tabl_manner',
  'manner_let',
  'let_cook',
  'cook_food',
  'food_instead',
  'instead_grate',
  'grate_eat',
  'eat_alreadi',
  'alreadi_tabl',
  'tabl_fought',
  'fought_went',
  'went_upstair',
  'upstair_follow',
  'follow_say',
  'say_im',
  'im_avoid',
  'avoid_respons',
  'respons_im',
  'im_encourag',
  'encourag_liz',
  'liz_becom',
  'becom_selfish',
  'selfish_egotist',
  'egotist_instead',
  'instead_appreci',
  'appreci_infront',
  'infront_refus',
  'refus_talk',
  'talk_said',
  'said_apolog',
  'apolog_react',
  'react_yell',
  'yell_call',
  'call_name',
  'name_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_let',
  'let_daughter',
  'daughter_buy',
  'buy_groceri',
  'groceri_reason',
  'reason_one',
  'one_use',
  'use_money',
  'money_give',
  'give_buy',
  'buy_groceri',
  'groceri_two',
  'two_know',
  'know_need',
  'need_cook',
  'cook_meal',
  'meal_knowledg',
  'knowledg_vegan',
  'vegan_product',
  'product_shop',
  'shop_sometim',
  'sometim_take',
  'take_new',
  'new_place',
  'place_cultur',
  'cultur_factor',
  'factor_latin',
  'latin_america',
  'america_husband',
  'husband_sole',
  'sole_provid',
  'provid_famili',
  'famili_cant',
  'cant_whole',
  'whole_famili',
  'famili_eat',
  'eat_vegan',
  'vegan_younger',
  'younger_kid',
  'kid_eat',
  'eat_veget',
  'daughter_liz_[',
  'liz_[_]',
  '[_]_love',
  ']_love_cook',
  'love_cook_began',
  'cook_began_discov',
  'began_discov_new',
  'discov_new_meal',
  'new_meal_becam',
  'meal_becam_vegan',
  'becam_vegan_picki',
  'vegan_picki_eater',
  'picki_eater_past',
  'eater_past_encourag',
  'past_encourag_cook',
  'encourag_cook_food',
  'cook_food_husband',
  'food_husband_hate',
  'husband_hate_although',
  'hate_although_still',
  'although_still_sit',
  'still_sit_tabl',
  'sit_tabl_us',
  'tabl_us_think',
  'us_think_differ',
  'think_differ_food',
  'differ_food_tabl',
  'food_tabl_disrespect',
  'tabl_disrespect_famili',
  'disrespect_famili_eat',
  'famili_eat_eat',
  'eat_eat_thought',
  'eat_thought_ridicul',
  'thought_ridicul_ask',
  'ridicul_ask_let',
  'ask_let_got',
  'let_got_agit',
  'got_agit_said',
  'agit_said_liz',
  'said_liz_allow',
  'liz_allow_use',
  'allow_use_tool',
  'use_tool_kitchen',
  'tool_kitchen_decid',
  'kitchen_decid_cook',
  'decid_cook_sinc',
  'cook_sinc_paid',
  'sinc_paid_everyth',
  'paid_everyth_kitchen',
  'everyth_kitchen_fought',
  'kitchen_fought_back',
  'fought_back_decis',
  'back_decis_stood',
  'decis_stood_firm',
  'stood_firm_decid',
  'firm_decid_go',
  'decid_go_buy',
  'go_buy_tool',
  'buy_tool_need',
  'tool_need_make',
  'need_make_meal',
  'make_meal_buy',
  'meal_buy_groceri',
  'buy_groceri_worri',
  'groceri_worri_last',
  'worri_last_night',
  'last_night_liz',
  'night_liz_call',
  'liz_call_cri',
  'call_cri_say',
  'cri_say_husband',
  'say_husband_threw',
  'husband_threw_away',
  'threw_away_tool',
  'away_tool_got',
  'tool_got_prevent',
  'got_prevent_cook',
  'prevent_cook_fume',
  'cook_fume_went',
  'fume_went_home',
  'went_home_start',
  'home_start_argu',
  'start_argu_tell',
  'argu_tell_tool',
  'tell_tool_argu',
  'tool_argu_liz',
  'argu_liz_cook',
  'liz_cook_*',
  'cook_*_*',
  '*_*_kitchen',
  '*_kitchen_alreadi',
  'kitchen_alreadi_*',
  'alreadi_*_author',
  '*_author_*',
  'author_*_blew',
  '*_blew_went',
  'blew_went_tell',
  'went_tell_ridicul',
  'tell_ridicul_look',
  'ridicul_look_excus',
  'look_excus_prevent',
  'excus_prevent_liz',
  'prevent_liz_cook',
  'liz_cook_yell',
  'cook_yell_liz',
  'yell_liz_act',
  'liz_act_spoil',
  'act_spoil_repeatedli',
  'spoil_repeatedli_let',
  'repeatedli_let_disrespect',
  'let_disrespect_us',
  'disrespect_us_tabl',
  'us_tabl_manner',
  'tabl_manner_let',
  'manner_let_cook',
  'let_cook_food',
  'cook_food_instead',
  'food_instead_grate',
  'instead_grate_eat',
  'grate_eat_alreadi',
  'eat_alreadi_tabl',
  'alreadi_tabl_fought',
  'tabl_fought_went',
  'fought_went_upstair',
  'went_upstair_follow',
  'upstair_follow_say',
  'follow_say_im',
  'say_im_avoid',
  'im_avoid_respons',
  'avoid_respons_im',
  'respons_im_encourag',
  'im_encourag_liz',
  'encourag_liz_becom',
  'liz_becom_selfish',
  'becom_selfish_egotist',
  'selfish_egotist_instead',
  'egotist_instead_appreci',
  'instead_appreci_infront',
  'appreci_infront_refus',
  'infront_refus_talk',
  'refus_talk_said',
  'talk_said_apolog',
  'said_apolog_react',
  'apolog_react_yell',
  'react_yell_call',
  'yell_call_name',
  'call_name_*',
  'name_*_*',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_let',
  '*_let_daughter',
  'let_daughter_buy',
  'daughter_buy_groceri',
  'buy_groceri_reason',
  'groceri_reason_one',
  'reason_one_use',
  'one_use_money',
  'use_money_give',
  'money_give_buy',
  'give_buy_groceri',
  'buy_groceri_two',
  'groceri_two_know',
  'two_know_need',
  'know_need_cook',
  'need_cook_meal',
  'cook_meal_knowledg',
  'meal_knowledg_vegan',
  'knowledg_vegan_product',
  'vegan_product_shop',
  'product_shop_sometim',
  'shop_sometim_take',
  'sometim_take_new',
  'take_new_place',
  'new_place_cultur',
  'place_cultur_factor',
  'cultur_factor_latin',
  'factor_latin_america',
  'latin_america_husband',
  'america_husband_sole',
  'husband_sole_provid',
  'sole_provid_famili',
  'provid_famili_cant',
  'famili_cant_whole',
  'cant_whole_famili',
  'whole_famili_eat',
  'famili_eat_vegan',
  'eat_vegan_younger',
  'vegan_younger_kid',
  'younger_kid_eat',
  'kid_eat_veget'],
 ['wife',
  '-month-old',
  'son',
  'light',
  'live',
  'wife',
  'carri',
  'one',
  'feed',
  'exclus',
  'breastf',
  'fine',
  'wife',
  'choic',
  'suggest',
  'pump',
  'could',
  'also',
  'feed',
  'say',
  'uncomfort',
  'time-consum',
  'option',
  'also',
  'want',
  'use',
  'formula',
  'last',
  'night',
  'boy',
  'woke',
  'cri',
  'got',
  'clear',
  'hungri',
  'woke',
  'wife',
  'annoy',
  'groggi',
  'told',
  'feed',
  'told',
  'cant',
  'need',
  'get',
  'feed',
  'turn',
  'small',
  'argument',
  'end',
  'say',
  'fuck',
  'want',
  'yell',
  'anyth',
  'tone',
  'definit',
  'annoy',
  'minut',
  'got',
  'fed',
  'son',
  'get',
  'back',
  'bed',
  'tri',
  'get',
  'come',
  'back',
  'bed',
  'woke',
  'next',
  'day',
  'found',
  'shed',
  'cook',
  'whole',
  'breakfast',
  'super',
  'cold',
  'ask',
  'ok',
  'said',
  'mad',
  'wake',
  'ask',
  'want',
  'do-',
  'son',
  'breastf',
  'pump',
  'use',
  'formula',
  'wrong',
  'thing',
  'say',
  'got',
  'super',
  'mad',
  'yell',
  'im',
  'shame',
  'choic',
  'said',
  'im',
  'make',
  'easier',
  'either',
  'us',
  'ask',
  'friend',
  '-year-old',
  'side',
  'wife',
  'said',
  'breastfeed',
  'walk',
  'park',
  'wrong',
  'aita',
  'edit',
  'involv',
  'parent',
  'take',
  'care',
  'son',
  'day',
  'wife',
  'still',
  'feed',
  'day',
  'chang',
  'nappi',
  'bath',
  'household',
  'chore',
  'get',
  'wrong',
  'im',
  'expect',
  'bust',
  'ass',
  'deep-clean',
  'hous',
  'everyth',
  'day',
  'apart',
  'feeding\\',
  'therapi',
  'diagnos',
  'anyth',
  'im',
  'one',
  'get',
  'night',
  'first',
  'everi',
  'time',
  'also',
  'im',
  'woman',
  'man',
  'edit',
  'peopl',
  'tell',
  'simpli',
  'start',
  'lactat',
  'pleas',
  'googl',
  'search',
  'breast',
  'work',
  'way',
  'edit',
  'love',
  'god',
  'stop',
  'tell',
  'induc',
  'lactat',
  'know',
  'thing',
  'clever',
  'type',
  'well',
  'acktuh',
  'know',
  'edit',
  'respons',
  'ask',
  'comments-',
  '>',
  'lift',
  'shirt',
  'unclip',
  'bra',
  'wear',
  'one',
  'settl',
  'babi',
  'boob',
  'reclip',
  'bra',
  'lower',
  'shirt',
  'check',
  'nappi',
  'put',
  'babi',
  'back',
  'sleep',
  'cant',
  'get',
  'mad',
  '>',
  'need',
  'see',
  'doctor',
  'pretti',
  'clearli',
  'ppd',
  'alreadi',
  'see',
  'doctor',
  'therapist',
  'diagnos',
  'anyth',
  '>',
  'also',
  'get',
  'med',
  'induc',
  'lactat',
  'want',
  'abl',
  'feed',
  'fuck',
  'know',
  'refer',
  'peopl',
  'men',
  'tell',
  'start',
  'lactat',
  'mother',
  'fuck',
  'know',
  'procedur',
  'stg',
  'see',
  'anoth',
  'fuck',
  'comment',
  'well',
  'acktuh',
  'ill',
  'fuck',
  'lose',
  'wife_-month-old',
  '-month-old_son',
  'son_light',
  'light_live',
  'live_wife',
  'wife_carri',
  'carri_one',
  'one_feed',
  'feed_exclus',
  'exclus_breastf',
  'breastf_fine',
  'fine_wife',
  'wife_choic',
  'choic_suggest',
  'suggest_pump',
  'pump_could',
  'could_also',
  'also_feed',
  'feed_say',
  'say_uncomfort',
  'uncomfort_time-consum',
  'time-consum_option',
  'option_also',
  'also_want',
  'want_use',
  'use_formula',
  'formula_last',
  'last_night',
  'night_boy',
  'boy_woke',
  'woke_cri',
  'cri_got',
  'got_clear',
  'clear_hungri',
  'hungri_woke',
  'woke_wife',
  'wife_annoy',
  'annoy_groggi',
  'groggi_told',
  'told_feed',
  'feed_told',
  'told_cant',
  'cant_need',
  'need_get',
  'get_feed',
  'feed_turn',
  'turn_small',
  'small_argument',
  'argument_end',
  'end_say',
  'say_fuck',
  'fuck_want',
  'want_yell',
  'yell_anyth',
  'anyth_tone',
  'tone_definit',
  'definit_annoy',
  'annoy_minut',
  'minut_got',
  'got_fed',
  'fed_son',
  'son_get',
  'get_back',
  'back_bed',
  'bed_tri',
  'tri_get',
  'get_come',
  'come_back',
  'back_bed',
  'bed_woke',
  'woke_next',
  'next_day',
  'day_found',
  'found_shed',
  'shed_cook',
  'cook_whole',
  'whole_breakfast',
  'breakfast_super',
  'super_cold',
  'cold_ask',
  'ask_ok',
  'ok_said',
  'said_mad',
  'mad_wake',
  'wake_ask',
  'ask_want',
  'want_do-',
  'do-_son',
  'son_breastf',
  'breastf_pump',
  'pump_use',
  'use_formula',
  'formula_wrong',
  'wrong_thing',
  'thing_say',
  'say_got',
  'got_super',
  'super_mad',
  'mad_yell',
  'yell_im',
  'im_shame',
  'shame_choic',
  'choic_said',
  'said_im',
  'im_make',
  'make_easier',
  'easier_either',
  'either_us',
  'us_ask',
  'ask_friend',
  'friend_-year-old',
  '-year-old_side',
  'side_wife',
  'wife_said',
  'said_breastfeed',
  'breastfeed_walk',
  'walk_park',
  'park_wrong',
  'wrong_aita',
  'aita_edit',
  'edit_involv',
  'involv_parent',
  'parent_take',
  'take_care',
  'care_son',
  'son_day',
  'day_wife',
  'wife_still',
  'still_feed',
  'feed_day',
  'day_chang',
  'chang_nappi',
  'nappi_bath',
  'bath_household',
  'household_chore',
  'chore_get',
  'get_wrong',
  'wrong_im',
  'im_expect',
  'expect_bust',
  'bust_ass',
  'ass_deep-clean',
  'deep-clean_hous',
  'hous_everyth',
  'everyth_day',
  'day_apart',
  'apart_feeding\\',
  'feeding\\_therapi',
  'therapi_diagnos',
  'diagnos_anyth',
  'anyth_im',
  'im_one',
  'one_get',
  'get_night',
  'night_first',
  'first_everi',
  'everi_time',
  'time_also',
  'also_im',
  'im_woman',
  'woman_man',
  'man_edit',
  'edit_peopl',
  'peopl_tell',
  'tell_simpli',
  'simpli_start',
  'start_lactat',
  'lactat_pleas',
  'pleas_googl',
  'googl_search',
  'search_breast',
  'breast_work',
  'work_way',
  'way_edit',
  'edit_love',
  'love_god',
  'god_stop',
  'stop_tell',
  'tell_induc',
  'induc_lactat',
  'lactat_know',
  'know_thing',
  'thing_clever',
  'clever_type',
  'type_well',
  'well_acktuh',
  'acktuh_know',
  'know_edit',
  'edit_respons',
  'respons_ask',
  'ask_comments-',
  'comments-_>',
  '>_lift',
  'lift_shirt',
  'shirt_unclip',
  'unclip_bra',
  'bra_wear',
  'wear_one',
  'one_settl',
  'settl_babi',
  'babi_boob',
  'boob_reclip',
  'reclip_bra',
  'bra_lower',
  'lower_shirt',
  'shirt_check',
  'check_nappi',
  'nappi_put',
  'put_babi',
  'babi_back',
  'back_sleep',
  'sleep_cant',
  'cant_get',
  'get_mad',
  'mad_>',
  '>_need',
  'need_see',
  'see_doctor',
  'doctor_pretti',
  'pretti_clearli',
  'clearli_ppd',
  'ppd_alreadi',
  'alreadi_see',
  'see_doctor',
  'doctor_therapist',
  'therapist_diagnos',
  'diagnos_anyth',
  'anyth_>',
  '>_also',
  'also_get',
  'get_med',
  'med_induc',
  'induc_lactat',
  'lactat_want',
  'want_abl',
  'abl_feed',
  'feed_fuck',
  'fuck_know',
  'know_refer',
  'refer_peopl',
  'peopl_men',
  'men_tell',
  'tell_start',
  'start_lactat',
  'lactat_mother',
  'mother_fuck',
  'fuck_know',
  'know_procedur',
  'procedur_stg',
  'stg_see',
  'see_anoth',
  'anoth_fuck',
  'fuck_comment',
  'comment_well',
  'well_acktuh',
  'acktuh_ill',
  'ill_fuck',
  'fuck_lose',
  'wife_-month-old_son',
  '-month-old_son_light',
  'son_light_live',
  'light_live_wife',
  'live_wife_carri',
  'wife_carri_one',
  'carri_one_feed',
  'one_feed_exclus',
  'feed_exclus_breastf',
  'exclus_breastf_fine',
  'breastf_fine_wife',
  'fine_wife_choic',
  'wife_choic_suggest',
  'choic_suggest_pump',
  'suggest_pump_could',
  'pump_could_also',
  'could_also_feed',
  'also_feed_say',
  'feed_say_uncomfort',
  'say_uncomfort_time-consum',
  'uncomfort_time-consum_option',
  'time-consum_option_also',
  'option_also_want',
  'also_want_use',
  'want_use_formula',
  'use_formula_last',
  'formula_last_night',
  'last_night_boy',
  'night_boy_woke',
  'boy_woke_cri',
  'woke_cri_got',
  'cri_got_clear',
  'got_clear_hungri',
  'clear_hungri_woke',
  'hungri_woke_wife',
  'woke_wife_annoy',
  'wife_annoy_groggi',
  'annoy_groggi_told',
  'groggi_told_feed',
  'told_feed_told',
  'feed_told_cant',
  'told_cant_need',
  'cant_need_get',
  'need_get_feed',
  'get_feed_turn',
  'feed_turn_small',
  'turn_small_argument',
  'small_argument_end',
  'argument_end_say',
  'end_say_fuck',
  'say_fuck_want',
  'fuck_want_yell',
  'want_yell_anyth',
  'yell_anyth_tone',
  'anyth_tone_definit',
  'tone_definit_annoy',
  'definit_annoy_minut',
  'annoy_minut_got',
  'minut_got_fed',
  'got_fed_son',
  'fed_son_get',
  'son_get_back',
  'get_back_bed',
  'back_bed_tri',
  'bed_tri_get',
  'tri_get_come',
  'get_come_back',
  'come_back_bed',
  'back_bed_woke',
  'bed_woke_next',
  'woke_next_day',
  'next_day_found',
  'day_found_shed',
  'found_shed_cook',
  'shed_cook_whole',
  'cook_whole_breakfast',
  'whole_breakfast_super',
  'breakfast_super_cold',
  'super_cold_ask',
  'cold_ask_ok',
  'ask_ok_said',
  'ok_said_mad',
  'said_mad_wake',
  'mad_wake_ask',
  'wake_ask_want',
  'ask_want_do-',
  'want_do-_son',
  'do-_son_breastf',
  'son_breastf_pump',
  'breastf_pump_use',
  'pump_use_formula',
  'use_formula_wrong',
  'formula_wrong_thing',
  'wrong_thing_say',
  'thing_say_got',
  'say_got_super',
  'got_super_mad',
  'super_mad_yell',
  'mad_yell_im',
  'yell_im_shame',
  'im_shame_choic',
  'shame_choic_said',
  'choic_said_im',
  'said_im_make',
  'im_make_easier',
  'make_easier_either',
  'easier_either_us',
  'either_us_ask',
  'us_ask_friend',
  'ask_friend_-year-old',
  'friend_-year-old_side',
  '-year-old_side_wife',
  'side_wife_said',
  'wife_said_breastfeed',
  'said_breastfeed_walk',
  'breastfeed_walk_park',
  'walk_park_wrong',
  'park_wrong_aita',
  'wrong_aita_edit',
  'aita_edit_involv',
  'edit_involv_parent',
  'involv_parent_take',
  'parent_take_care',
  'take_care_son',
  'care_son_day',
  'son_day_wife',
  'day_wife_still',
  'wife_still_feed',
  'still_feed_day',
  'feed_day_chang',
  'day_chang_nappi',
  'chang_nappi_bath',
  'nappi_bath_household',
  'bath_household_chore',
  'household_chore_get',
  'chore_get_wrong',
  'get_wrong_im',
  'wrong_im_expect',
  'im_expect_bust',
  'expect_bust_ass',
  'bust_ass_deep-clean',
  'ass_deep-clean_hous',
  'deep-clean_hous_everyth',
  'hous_everyth_day',
  'everyth_day_apart',
  'day_apart_feeding\\',
  'apart_feeding\\_therapi',
  'feeding\\_therapi_diagnos',
  'therapi_diagnos_anyth',
  'diagnos_anyth_im',
  'anyth_im_one',
  'im_one_get',
  'one_get_night',
  'get_night_first',
  'night_first_everi',
  'first_everi_time',
  'everi_time_also',
  'time_also_im',
  'also_im_woman',
  'im_woman_man',
  'woman_man_edit',
  'man_edit_peopl',
  'edit_peopl_tell',
  'peopl_tell_simpli',
  'tell_simpli_start',
  'simpli_start_lactat',
  'start_lactat_pleas',
  'lactat_pleas_googl',
  'pleas_googl_search',
  'googl_search_breast',
  'search_breast_work',
  'breast_work_way',
  'work_way_edit',
  'way_edit_love',
  'edit_love_god',
  'love_god_stop',
  'god_stop_tell',
  'stop_tell_induc',
  'tell_induc_lactat',
  'induc_lactat_know',
  'lactat_know_thing',
  'know_thing_clever',
  'thing_clever_type',
  'clever_type_well',
  'type_well_acktuh',
  'well_acktuh_know',
  'acktuh_know_edit',
  'know_edit_respons',
  'edit_respons_ask',
  'respons_ask_comments-',
  'ask_comments-_>',
  'comments-_>_lift',
  '>_lift_shirt',
  'lift_shirt_unclip',
  'shirt_unclip_bra',
  'unclip_bra_wear',
  'bra_wear_one',
  'wear_one_settl',
  'one_settl_babi',
  'settl_babi_boob',
  'babi_boob_reclip',
  'boob_reclip_bra',
  'reclip_bra_lower',
  'bra_lower_shirt',
  'lower_shirt_check',
  'shirt_check_nappi',
  'check_nappi_put',
  'nappi_put_babi',
  'put_babi_back',
  'babi_back_sleep',
  'back_sleep_cant',
  'sleep_cant_get',
  'cant_get_mad',
  'get_mad_>',
  'mad_>_need',
  '>_need_see',
  'need_see_doctor',
  'see_doctor_pretti',
  'doctor_pretti_clearli',
  'pretti_clearli_ppd',
  'clearli_ppd_alreadi',
  'ppd_alreadi_see',
  'alreadi_see_doctor',
  'see_doctor_therapist',
  'doctor_therapist_diagnos',
  'therapist_diagnos_anyth',
  'diagnos_anyth_>',
  'anyth_>_also',
  '>_also_get',
  'also_get_med',
  'get_med_induc',
  'med_induc_lactat',
  'induc_lactat_want',
  'lactat_want_abl',
  'want_abl_feed',
  'abl_feed_fuck',
  'feed_fuck_know',
  'fuck_know_refer',
  'know_refer_peopl',
  'refer_peopl_men',
  'peopl_men_tell',
  'men_tell_start',
  'tell_start_lactat',
  'start_lactat_mother',
  'lactat_mother_fuck',
  'mother_fuck_know',
  'fuck_know_procedur',
  'know_procedur_stg',
  'procedur_stg_see',
  'stg_see_anoth',
  'see_anoth_fuck',
  'anoth_fuck_comment',
  'fuck_comment_well',
  'comment_well_acktuh',
  'well_acktuh_ill',
  'acktuh_ill_fuck',
  'ill_fuck_lose'],
 ['updat',
  'tri',
  'make',
  'separ',
  'post',
  'remov',
  'ive',
  'talk',
  'said',
  'sorri',
  'speak',
  'like',
  'stand',
  'said',
  'apologis',
  'wed',
  'lot',
  'said',
  'noth',
  'realli',
  'resolv',
  'venu',
  'commun',
  'via',
  'fiancé',
  'unless',
  'talk',
  'phone',
  'goe',
  'speak',
  'noth',
  'chang',
  '--',
  '--',
  'edit',
  'ive',
  'dm',
  'ask',
  'nearli',
  'ident',
  'apart',
  'hair',
  'colour',
  'dy',
  'mine',
  'last',
  'year',
  'scar',
  'forehead',
  'car',
  'crash',
  'happen',
  'last',
  'year',
  'scar',
  'hair',
  'would',
  'mirror',
  'imag',
  'ye',
  'gone',
  'therapi',
  'spoken',
  'childhood',
  'origin',
  'reason',
  'go',
  'car',
  'crash',
  'came',
  'session',
  'edit',
  'wow',
  'cant',
  'believ',
  'respons',
  'post',
  'thank',
  'everyon',
  'kind',
  'word',
  'say',
  'someth',
  'come',
  'comment',
  'dm',
  'famili',
  'reason',
  'therapi',
  'said',
  'older',
  'edit',
  'went',
  'grief',
  'trauma',
  'went',
  'last',
  'year',
  'follow',
  'car',
  'crash',
  'lost',
  'close',
  'friend',
  'would',
  'bridesmaid',
  'difficult',
  'time',
  'deal',
  'loss',
  'spoke',
  'therapist',
  'found',
  'twin',
  'wonder',
  'never',
  'talk',
  'throwaway',
  'account',
  'sorri',
  'long',
  'lot',
  'get',
  'get',
  'marri',
  'six',
  'month',
  'fiancé',
  'wed',
  'realli',
  'small',
  'close',
  'famili',
  'friend',
  'weve',
  'quick',
  'engag',
  'weve',
  'togeth',
  'long',
  'year',
  'ident',
  'twin',
  'sister',
  'despit',
  'us',
  'twin',
  'never',
  'close',
  'due',
  'ms',
  'seemingli',
  'patholog',
  'need',
  'better',
  'everyth',
  'ever',
  'sinc',
  'littl',
  'better',
  'twin',
  'everyth',
  'want',
  'sport',
  'sport',
  'show',
  'interest',
  'hobbi',
  'excel',
  'hobbi',
  'parent',
  'alway',
  'made',
  'point',
  'let',
  'us',
  'find',
  'person',
  'outsid',
  'twin',
  'ms',
  'behaviour',
  'made',
  'hard',
  'grow',
  'got',
  'wors',
  'high',
  'school',
  'start',
  'date',
  'boy',
  'show',
  'interest',
  'get',
  'first',
  'matter',
  'like',
  'stop',
  'move',
  'away',
  'univers',
  'got',
  'first',
  'choic',
  'appli',
  'get',
  'grade',
  'move',
  'away',
  'found',
  'person',
  'met',
  'fiancé',
  'ive',
  'hardli',
  'seen',
  'past',
  'year',
  'except',
  'christmas',
  'birthday',
  'came',
  'head',
  'engag',
  'parti',
  'last',
  'month',
  'invit',
  'famili',
  'unknown',
  'mother',
  'told',
  'kind',
  'outfit',
  'wear',
  'came',
  'dress',
  'almost',
  'exactli',
  'like',
  'mine',
  'glamor',
  'hair',
  'makeup',
  'profession',
  'done',
  'look',
  'incred',
  'tri',
  'ignor',
  'celebr',
  'fiancé',
  'night',
  'went',
  'well',
  'decid',
  'make',
  'speech',
  'sidenot',
  'bridesmaid',
  'im',
  'best',
  'friend',
  'univers',
  'bridesmaid',
  'whole',
  'speech',
  'us',
  'twin',
  'everyth',
  'togeth',
  'much',
  'id',
  'alway',
  'tri',
  'like',
  'joke',
  'boy',
  'id',
  'date',
  'made',
  'dig',
  'bridesmaid',
  'op',
  'probabl',
  'worri',
  'id',
  'steal',
  'thunder',
  'round',
  'say',
  'get',
  'tire',
  'know',
  'fiancé',
  'saw',
  'red',
  'grab',
  'arm',
  'drag',
  'hallway',
  'ill',
  'admit',
  'swore',
  'lot',
  'scream',
  'idea',
  'everyon',
  'parti',
  'could',
  'hear',
  'rip',
  'call',
  'psychot',
  'jealou',
  '*',
  '*',
  'stand',
  'idea',
  'sister',
  'happi',
  'also',
  'yell',
  'spent',
  'entir',
  'live',
  'pretend',
  'singl',
  'unemploy',
  'still',
  'live',
  'home',
  'round',
  'tell',
  '*',
  'ck',
  'bother',
  'come',
  'wed',
  'want',
  'pathet',
  'wast',
  'dna',
  'harsh',
  'word',
  'realli',
  'mad',
  'sinc',
  'sever',
  'famili',
  'member',
  'includ',
  'mother',
  'call',
  'ah',
  'embarrass',
  'famili',
  'parti',
  'bring',
  'sensit',
  'subject',
  'unemploy',
  'im',
  'refus',
  'back',
  'despit',
  'nearli',
  'entir',
  'famili',
  'tell',
  'get',
  'aita',
  'updat',
  'fiancé',
  'talk',
  'venu',
  'monday',
  'make',
  'awar',
  'twin',
  'situat',
  'case',
  'turn',
  'day',
  'updat_tri',
  'tri_make',
  'make_separ',
  'separ_post',
  'post_remov',
  'remov_ive',
  'ive_talk',
  'talk_said',
  'said_sorri',
  'sorri_speak',
  'speak_like',
  'like_stand',
  'stand_said',
  'said_apologis',
  'apologis_wed',
  'wed_lot',
  'lot_said',
  'said_noth',
  'noth_realli',
  'realli_resolv',
  'resolv_venu',
  'venu_commun',
  'commun_via',
  'via_fiancé',
  'fiancé_unless',
  'unless_talk',
  'talk_phone',
  'phone_goe',
  'goe_speak',
  'speak_noth',
  'noth_chang',
  'chang_--',
  '--_--',
  '--_edit',
  'edit_ive',
  'ive_dm',
  'dm_ask',
  'ask_nearli',
  'nearli_ident',
  'ident_apart',
  'apart_hair',
  'hair_colour',
  'colour_dy',
  'dy_mine',
  'mine_last',
  'last_year',
  'year_scar',
  'scar_forehead',
  'forehead_car',
  'car_crash',
  'crash_happen',
  'happen_last',
  'last_year',
  'year_scar',
  'scar_hair',
  'hair_would',
  'would_mirror',
  'mirror_imag',
  'imag_ye',
  'ye_gone',
  'gone_therapi',
  'therapi_spoken',
  'spoken_childhood',
  'childhood_origin',
  'origin_reason',
  'reason_go',
  'go_car',
  'car_crash',
  'crash_came',
  'came_session',
  'session_edit',
  'edit_wow',
  'wow_cant',
  'cant_believ',
  'believ_respons',
  'respons_post',
  'post_thank',
  'thank_everyon',
  'everyon_kind',
  'kind_word',
  'word_say',
  'say_someth',
  'someth_come',
  'come_comment',
  'comment_dm',
  'dm_famili',
  'famili_reason',
  'reason_therapi',
  'therapi_said',
  'said_older',
  'older_edit',
  'edit_went',
  'went_grief',
  'grief_trauma',
  'trauma_went',
  'went_last',
  'last_year',
  'year_follow',
  'follow_car',
  'car_crash',
  'crash_lost',
  'lost_close',
  'close_friend',
  'friend_would',
  'would_bridesmaid',
  'bridesmaid_difficult',
  'difficult_time',
  'time_deal',
  'deal_loss',
  'loss_spoke',
  'spoke_therapist',
  'therapist_found',
  'found_twin',
  'twin_wonder',
  'wonder_never',
  'never_talk',
  'talk_throwaway',
  'throwaway_account',
  'account_sorri',
  'sorri_long',
  'long_lot',
  'lot_get',
  'get_get',
  'get_marri',
  'marri_six',
  'six_month',
  'month_fiancé',
  'fiancé_wed',
  'wed_realli',
  'realli_small',
  'small_close',
  'close_famili',
  'famili_friend',
  'friend_weve',
  'weve_quick',
  'quick_engag',
  'engag_weve',
  'weve_togeth',
  'togeth_long',
  'long_year',
  'year_ident',
  'ident_twin',
  'twin_sister',
  'sister_despit',
  'despit_us',
  'us_twin',
  'twin_never',
  'never_close',
  'close_due',
  'due_ms',
  'ms_seemingli',
  'seemingli_patholog',
  'patholog_need',
  'need_better',
  'better_everyth',
  'everyth_ever',
  'ever_sinc',
  'sinc_littl',
  'littl_better',
  'better_twin',
  'twin_everyth',
  'everyth_want',
  'want_sport',
  'sport_sport',
  'sport_show',
  'show_interest',
  'interest_hobbi',
  'hobbi_excel',
  'excel_hobbi',
  'hobbi_parent',
  'parent_alway',
  'alway_made',
  'made_point',
  'point_let',
  'let_us',
  'us_find',
  'find_person',
  'person_outsid',
  'outsid_twin',
  'twin_ms',
  'ms_behaviour',
  'behaviour_made',
  'made_hard',
  'hard_grow',
  'grow_got',
  'got_wors',
  'wors_high',
  'high_school',
  'school_start',
  'start_date',
  'date_boy',
  'boy_show',
  'show_interest',
  'interest_get',
  'get_first',
  'first_matter',
  'matter_like',
  'like_stop',
  'stop_move',
  'move_away',
  'away_univers',
  'univers_got',
  'got_first',
  'first_choic',
  'choic_appli',
  'appli_get',
  'get_grade',
  'grade_move',
  'move_away',
  'away_found',
  'found_person',
  'person_met',
  'met_fiancé',
  'fiancé_ive',
  'ive_hardli',
  'hardli_seen',
  'seen_past',
  'past_year',
  'year_except',
  'except_christmas',
  'christmas_birthday',
  'birthday_came',
  'came_head',
  'head_engag',
  'engag_parti',
  'parti_last',
  'last_month',
  'month_invit',
  'invit_famili',
  'famili_unknown',
  'unknown_mother',
  'mother_told',
  'told_kind',
  'kind_outfit',
  'outfit_wear',
  'wear_came',
  'came_dress',
  'dress_almost',
  'almost_exactli',
  'exactli_like',
  'like_mine',
  'mine_glamor',
  'glamor_hair',
  'hair_makeup',
  'makeup_profession',
  'profession_done',
  'done_look',
  'look_incred',
  'incred_tri',
  'tri_ignor',
  'ignor_celebr',
  'celebr_fiancé',
  'fiancé_night',
  'night_went',
  'went_well',
  'well_decid',
  'decid_make',
  'make_speech',
  'speech_sidenot',
  'sidenot_bridesmaid',
  'bridesmaid_im',
  'im_best',
  'best_friend',
  'friend_univers',
  'univers_bridesmaid',
  'bridesmaid_whole',
  'whole_speech',
  'speech_us',
  'us_twin',
  'twin_everyth',
  'everyth_togeth',
  'togeth_much',
  'much_id',
  'id_alway',
  'alway_tri',
  'tri_like',
  'like_joke',
  'joke_boy',
  'boy_id',
  'id_date',
  'date_made',
  'made_dig',
  'dig_bridesmaid',
  'bridesmaid_op',
  'op_probabl',
  'probabl_worri',
  'worri_id',
  'id_steal',
  'steal_thunder',
  'thunder_round',
  'round_say',
  'say_get',
  'get_tire',
  'tire_know',
  'know_fiancé',
  'fiancé_saw',
  'saw_red',
  'red_grab',
  'grab_arm',
  'arm_drag',
  'drag_hallway',
  'hallway_ill',
  'ill_admit',
  'admit_swore',
  'swore_lot',
  'lot_scream',
  'scream_idea',
  'idea_everyon',
  'everyon_parti',
  'parti_could',
  'could_hear',
  'hear_rip',
  'rip_call',
  'call_psychot',
  'psychot_jealou',
  'jealou_*',
  '*_*',
  '*_stand',
  'stand_idea',
  'idea_sister',
  'sister_happi',
  'happi_also',
  'also_yell',
  'yell_spent',
  'spent_entir',
  'entir_live',
  'live_pretend',
  'pretend_singl',
  'singl_unemploy',
  'unemploy_still',
  'still_live',
  'live_home',
  'home_round',
  'round_tell',
  'tell_*',
  '*_ck',
  'ck_bother',
  'bother_come',
  'come_wed',
  'wed_want',
  'want_pathet',
  'pathet_wast',
  'wast_dna',
  'dna_harsh',
  'harsh_word',
  'word_realli',
  'realli_mad',
  'mad_sinc',
  'sinc_sever',
  'sever_famili',
  'famili_member',
  'member_includ',
  'includ_mother',
  'mother_call',
  'call_ah',
  'ah_embarrass',
  'embarrass_famili',
  'famili_parti',
  'parti_bring',
  'bring_sensit',
  'sensit_subject',
  'subject_unemploy',
  'unemploy_im',
  'im_refus',
  'refus_back',
  'back_despit',
  'despit_nearli',
  'nearli_entir',
  'entir_famili',
  'famili_tell',
  'tell_get',
  'get_aita',
  'aita_updat',
  'updat_fiancé',
  'fiancé_talk',
  'talk_venu',
  'venu_monday',
  'monday_make',
  'make_awar',
  'awar_twin',
  'twin_situat',
  'situat_case',
  'case_turn',
  'turn_day',
  'updat_tri_make',
  'tri_make_separ',
  'make_separ_post',
  'separ_post_remov',
  'post_remov_ive',
  'remov_ive_talk',
  'ive_talk_said',
  'talk_said_sorri',
  'said_sorri_speak',
  'sorri_speak_like',
  'speak_like_stand',
  'like_stand_said',
  'stand_said_apologis',
  'said_apologis_wed',
  'apologis_wed_lot',
  'wed_lot_said',
  'lot_said_noth',
  'said_noth_realli',
  'noth_realli_resolv',
  'realli_resolv_venu',
  'resolv_venu_commun',
  'venu_commun_via',
  'commun_via_fiancé',
  'via_fiancé_unless',
  'fiancé_unless_talk',
  'unless_talk_phone',
  'talk_phone_goe',
  'phone_goe_speak',
  'goe_speak_noth',
  'speak_noth_chang',
  'noth_chang_--',
  'chang_--_--',
  '--_--_edit',
  '--_edit_ive',
  'edit_ive_dm',
  'ive_dm_ask',
  'dm_ask_nearli',
  'ask_nearli_ident',
  'nearli_ident_apart',
  'ident_apart_hair',
  'apart_hair_colour',
  'hair_colour_dy',
  'colour_dy_mine',
  'dy_mine_last',
  'mine_last_year',
  'last_year_scar',
  'year_scar_forehead',
  'scar_forehead_car',
  'forehead_car_crash',
  'car_crash_happen',
  'crash_happen_last',
  'happen_last_year',
  'last_year_scar',
  'year_scar_hair',
  'scar_hair_would',
  'hair_would_mirror',
  'would_mirror_imag',
  'mirror_imag_ye',
  'imag_ye_gone',
  'ye_gone_therapi',
  'gone_therapi_spoken',
  'therapi_spoken_childhood',
  'spoken_childhood_origin',
  'childhood_origin_reason',
  'origin_reason_go',
  'reason_go_car',
  'go_car_crash',
  'car_crash_came',
  'crash_came_session',
  'came_session_edit',
  'session_edit_wow',
  'edit_wow_cant',
  'wow_cant_believ',
  'cant_believ_respons',
  'believ_respons_post',
  'respons_post_thank',
  'post_thank_everyon',
  'thank_everyon_kind',
  'everyon_kind_word',
  'kind_word_say',
  'word_say_someth',
  'say_someth_come',
  'someth_come_comment',
  'come_comment_dm',
  'comment_dm_famili',
  'dm_famili_reason',
  'famili_reason_therapi',
  'reason_therapi_said',
  'therapi_said_older',
  'said_older_edit',
  'older_edit_went',
  'edit_went_grief',
  'went_grief_trauma',
  'grief_trauma_went',
  'trauma_went_last',
  'went_last_year',
  'last_year_follow',
  'year_follow_car',
  'follow_car_crash',
  'car_crash_lost',
  'crash_lost_close',
  'lost_close_friend',
  'close_friend_would',
  'friend_would_bridesmaid',
  'would_bridesmaid_difficult',
  'bridesmaid_difficult_time',
  'difficult_time_deal',
  'time_deal_loss',
  'deal_loss_spoke',
  'loss_spoke_therapist',
  'spoke_therapist_found',
  'therapist_found_twin',
  'found_twin_wonder',
  'twin_wonder_never',
  'wonder_never_talk',
  'never_talk_throwaway',
  'talk_throwaway_account',
  'throwaway_account_sorri',
  'account_sorri_long',
  'sorri_long_lot',
  'long_lot_get',
  'lot_get_get',
  'get_get_marri',
  'get_marri_six',
  'marri_six_month',
  'six_month_fiancé',
  'month_fiancé_wed',
  'fiancé_wed_realli',
  'wed_realli_small',
  'realli_small_close',
  'small_close_famili',
  'close_famili_friend',
  'famili_friend_weve',
  'friend_weve_quick',
  'weve_quick_engag',
  'quick_engag_weve',
  'engag_weve_togeth',
  'weve_togeth_long',
  'togeth_long_year',
  'long_year_ident',
  'year_ident_twin',
  'ident_twin_sister',
  'twin_sister_despit',
  'sister_despit_us',
  'despit_us_twin',
  'us_twin_never',
  'twin_never_close',
  'never_close_due',
  'close_due_ms',
  'due_ms_seemingli',
  'ms_seemingli_patholog',
  'seemingli_patholog_need',
  'patholog_need_better',
  'need_better_everyth',
  'better_everyth_ever',
  'everyth_ever_sinc',
  'ever_sinc_littl',
  'sinc_littl_better',
  'littl_better_twin',
  'better_twin_everyth',
  'twin_everyth_want',
  'everyth_want_sport',
  'want_sport_sport',
  'sport_sport_show',
  'sport_show_interest',
  'show_interest_hobbi',
  'interest_hobbi_excel',
  'hobbi_excel_hobbi',
  'excel_hobbi_parent',
  'hobbi_parent_alway',
  'parent_alway_made',
  'alway_made_point',
  'made_point_let',
  'point_let_us',
  'let_us_find',
  'us_find_person',
  'find_person_outsid',
  'person_outsid_twin',
  'outsid_twin_ms',
  'twin_ms_behaviour',
  'ms_behaviour_made',
  'behaviour_made_hard',
  'made_hard_grow',
  'hard_grow_got',
  'grow_got_wors',
  'got_wors_high',
  'wors_high_school',
  'high_school_start',
  'school_start_date',
  'start_date_boy',
  'date_boy_show',
  'boy_show_interest',
  'show_interest_get',
  'interest_get_first',
  'get_first_matter',
  'first_matter_like',
  'matter_like_stop',
  'like_stop_move',
  'stop_move_away',
  'move_away_univers',
  'away_univers_got',
  'univers_got_first',
  'got_first_choic',
  'first_choic_appli',
  'choic_appli_get',
  'appli_get_grade',
  'get_grade_move',
  'grade_move_away',
  'move_away_found',
  'away_found_person',
  'found_person_met',
  'person_met_fiancé',
  'met_fiancé_ive',
  'fiancé_ive_hardli',
  'ive_hardli_seen',
  'hardli_seen_past',
  'seen_past_year',
  'past_year_except',
  'year_except_christmas',
  'except_christmas_birthday',
  'christmas_birthday_came',
  'birthday_came_head',
  'came_head_engag',
  'head_engag_parti',
  'engag_parti_last',
  'parti_last_month',
  'last_month_invit',
  'month_invit_famili',
  'invit_famili_unknown',
  'famili_unknown_mother',
  'unknown_mother_told',
  ...],
 ['kid',
  'wife',
  'pleas',
  'come',
  'us',
  'mani',
  'kid',
  'work',
  'roughli',
  'hour',
  'week',
  'hour',
  'day',
  '-',
  'wife',
  'sahm',
  'major',
  'everyth',
  'clean',
  'cook',
  'everyth',
  'minu',
  'shop',
  'wife',
  'order',
  'onlin',
  'pick',
  'store',
  'aita',
  'scenario',
  'work',
  'schedul',
  'work',
  'bond',
  'fish',
  'trip',
  'friday',
  'night',
  'sunday',
  'summer',
  'said',
  'way',
  'im',
  'go',
  'follow',
  'reason',
  'despit',
  'wife',
  'tell',
  'go',
  'fun',
  'first',
  'everi',
  'saturday',
  'schedul',
  'wife',
  'type',
  'treat',
  'self',
  'appoint',
  'send',
  'mini',
  'shop',
  'spreekiddo',
  'free',
  'morn',
  'want',
  'one',
  'rule',
  'kid',
  'shop',
  'second',
  'im',
  'leav',
  'wife',
  'night',
  'day',
  'fish',
  'get',
  'drunk',
  'want',
  'go',
  'fish',
  'ill',
  'take',
  'yr',
  'old',
  'twin',
  'give',
  'wife',
  'less',
  'juggl',
  'creat',
  'memori',
  'third',
  'ladi',
  'work',
  'offic',
  'feel',
  'exclud',
  'like',
  'fish',
  'trip',
  'feel',
  'exclud',
  'fourth',
  'call',
  'stag',
  'weekend',
  'despit',
  'one',
  'get',
  'marri',
  'trust',
  'phrase',
  'especi',
  'sinc',
  'go',
  'fish',
  'near',
  'popular',
  'colleg',
  'age',
  'vacat',
  'spot',
  'known',
  'bar',
  'wast',
  'weekend',
  'shenanigan',
  'cowork',
  'call',
  'whip',
  'sinc',
  'said',
  'say',
  'itll',
  'give',
  'chanc',
  'know',
  'better',
  'sinc',
  'go',
  'wednesday',
  'go',
  'bar',
  'alway',
  'miss',
  'trip',
  'cowork',
  'wive',
  'kid',
  'signific',
  'recommend',
  'famili',
  'campout',
  'plan',
  'meet',
  'would',
  'cost',
  'amount',
  'blow',
  'thing',
  'lake',
  'boat',
  'one',
  'ski',
  'ext',
  'cookout',
  'kind',
  'deal',
  'famili',
  'activ',
  'work',
  'rent',
  'small',
  'cabin',
  'famili',
  'use',
  'region',
  'manag',
  'meet',
  'love',
  'even',
  'fish',
  'trip',
  'gave',
  'yearli',
  'bonu',
  'plan',
  'famili',
  'event',
  'everi',
  'year',
  'instead',
  'cowork',
  'get',
  'one',
  'plan',
  'fish',
  'trip',
  'cowork',
  'call',
  'whip',
  'bs',
  'name',
  'mad',
  'wive',
  'happi',
  'idea',
  'wive',
  'even',
  'email',
  'mom',
  'saturday',
  'morn',
  'idea',
  'like',
  'wife',
  'ad',
  'plan',
  'mad',
  'stag',
  'weekend',
  'cancel',
  'quot',
  'spend',
  'work',
  'paid',
  'trip',
  'babysit',
  'reddit',
  'aita',
  'get',
  'work',
  'trip',
  'cancel',
  'replac',
  'famili',
  'friendli',
  'event',
  'edit',
  'clariti',
  'also',
  'includ',
  'childfre',
  'cowork',
  'mine',
  'plan',
  'said',
  'need',
  'break',
  'get',
  'overwhelm',
  'welcom',
  'borrow',
  'boat',
  'relax',
  'without',
  'kid',
  'extrem',
  'water',
  'port',
  'kid_wife',
  'wife_pleas',
  'pleas_come',
  'come_us',
  'us_mani',
  'mani_kid',
  'kid_work',
  'work_roughli',
  'roughli_hour',
  'hour_week',
  'week_hour',
  'hour_day',
  'day_-',
  '-_wife',
  'wife_sahm',
  'sahm_major',
  'major_everyth',
  'everyth_clean',
  'clean_cook',
  'cook_everyth',
  'everyth_minu',
  'minu_shop',
  'shop_wife',
  'wife_order',
  'order_onlin',
  'onlin_pick',
  'pick_store',
  'store_aita',
  'aita_scenario',
  'scenario_work',
  'work_schedul',
  'schedul_work',
  'work_bond',
  'bond_fish',
  'fish_trip',
  'trip_friday',
  'friday_night',
  'night_sunday',
  'sunday_summer',
  'summer_said',
  'said_way',
  'way_im',
  'im_go',
  'go_follow',
  'follow_reason',
  'reason_despit',
  'despit_wife',
  'wife_tell',
  'tell_go',
  'go_fun',
  'fun_first',
  'first_everi',
  'everi_saturday',
  'saturday_schedul',
  'schedul_wife',
  'wife_type',
  'type_treat',
  'treat_self',
  'self_appoint',
  'appoint_send',
  'send_mini',
  'mini_shop',
  'shop_spreekiddo',
  'spreekiddo_free',
  'free_morn',
  'morn_want',
  'want_one',
  'one_rule',
  'rule_kid',
  'kid_shop',
  'shop_second',
  'second_im',
  'im_leav',
  'leav_wife',
  'wife_night',
  'night_day',
  'day_fish',
  'fish_get',
  'get_drunk',
  'drunk_want',
  'want_go',
  'go_fish',
  'fish_ill',
  'ill_take',
  'take_yr',
  'yr_old',
  'old_twin',
  'twin_give',
  'give_wife',
  'wife_less',
  'less_juggl',
  'juggl_creat',
  'creat_memori',
  'memori_third',
  'third_ladi',
  'ladi_work',
  'work_offic',
  'offic_feel',
  'feel_exclud',
  'exclud_like',
  'like_fish',
  'fish_trip',
  'trip_feel',
  'feel_exclud',
  'exclud_fourth',
  'fourth_call',
  'call_stag',
  'stag_weekend',
  'weekend_despit',
  'despit_one',
  'one_get',
  'get_marri',
  'marri_trust',
  'trust_phrase',
  'phrase_especi',
  'especi_sinc',
  'sinc_go',
  'go_fish',
  'fish_near',
  'near_popular',
  'popular_colleg',
  'colleg_age',
  'age_vacat',
  'vacat_spot',
  'spot_known',
  'known_bar',
  'bar_wast',
  'wast_weekend',
  'weekend_shenanigan',
  'shenanigan_cowork',
  'cowork_call',
  'call_whip',
  'whip_sinc',
  'sinc_said',
  'said_say',
  'say_itll',
  'itll_give',
  'give_chanc',
  'chanc_know',
  'know_better',
  'better_sinc',
  'sinc_go',
  'go_wednesday',
  'wednesday_go',
  'go_bar',
  'bar_alway',
  'alway_miss',
  'miss_trip',
  'trip_cowork',
  'cowork_wive',
  'wive_kid',
  'kid_signific',
  'signific_recommend',
  'recommend_famili',
  'famili_campout',
  'campout_plan',
  'plan_meet',
  'meet_would',
  'would_cost',
  'cost_amount',
  'amount_blow',
  'blow_thing',
  'thing_lake',
  'lake_boat',
  'boat_one',
  'one_ski',
  'ski_ext',
  'ext_cookout',
  'cookout_kind',
  'kind_deal',
  'deal_famili',
  'famili_activ',
  'activ_work',
  'work_rent',
  'rent_small',
  'small_cabin',
  'cabin_famili',
  'famili_use',
  'use_region',
  'region_manag',
  'manag_meet',
  'meet_love',
  'love_even',
  'even_fish',
  'fish_trip',
  'trip_gave',
  'gave_yearli',
  'yearli_bonu',
  'bonu_plan',
  'plan_famili',
  'famili_event',
  'event_everi',
  'everi_year',
  'year_instead',
  'instead_cowork',
  'cowork_get',
  'get_one',
  'one_plan',
  'plan_fish',
  'fish_trip',
  'trip_cowork',
  'cowork_call',
  'call_whip',
  'whip_bs',
  'bs_name',
  'name_mad',
  'mad_wive',
  'wive_happi',
  'happi_idea',
  'idea_wive',
  'wive_even',
  'even_email',
  'email_mom',
  'mom_saturday',
  'saturday_morn',
  'morn_idea',
  'idea_like',
  'like_wife',
  'wife_ad',
  'ad_plan',
  'plan_mad',
  'mad_stag',
  'stag_weekend',
  'weekend_cancel',
  'cancel_quot',
  'quot_spend',
  'spend_work',
  'work_paid',
  'paid_trip',
  'trip_babysit',
  'babysit_reddit',
  'reddit_aita',
  'aita_get',
  'get_work',
  'work_trip',
  'trip_cancel',
  'cancel_replac',
  'replac_famili',
  'famili_friendli',
  'friendli_event',
  'event_edit',
  'edit_clariti',
  'clariti_also',
  'also_includ',
  'includ_childfre',
  'childfre_cowork',
  'cowork_mine',
  'mine_plan',
  'plan_said',
  'said_need',
  'need_break',
  'break_get',
  'get_overwhelm',
  'overwhelm_welcom',
  'welcom_borrow',
  'borrow_boat',
  'boat_relax',
  'relax_without',
  'without_kid',
  'kid_extrem',
  'extrem_water',
  'water_port',
  'kid_wife_pleas',
  'wife_pleas_come',
  'pleas_come_us',
  'come_us_mani',
  'us_mani_kid',
  'mani_kid_work',
  'kid_work_roughli',
  'work_roughli_hour',
  'roughli_hour_week',
  'hour_week_hour',
  'week_hour_day',
  'hour_day_-',
  'day_-_wife',
  '-_wife_sahm',
  'wife_sahm_major',
  'sahm_major_everyth',
  'major_everyth_clean',
  'everyth_clean_cook',
  'clean_cook_everyth',
  'cook_everyth_minu',
  'everyth_minu_shop',
  'minu_shop_wife',
  'shop_wife_order',
  'wife_order_onlin',
  'order_onlin_pick',
  'onlin_pick_store',
  'pick_store_aita',
  'store_aita_scenario',
  'aita_scenario_work',
  'scenario_work_schedul',
  'work_schedul_work',
  'schedul_work_bond',
  'work_bond_fish',
  'bond_fish_trip',
  'fish_trip_friday',
  'trip_friday_night',
  'friday_night_sunday',
  'night_sunday_summer',
  'sunday_summer_said',
  'summer_said_way',
  'said_way_im',
  'way_im_go',
  'im_go_follow',
  'go_follow_reason',
  'follow_reason_despit',
  'reason_despit_wife',
  'despit_wife_tell',
  'wife_tell_go',
  'tell_go_fun',
  'go_fun_first',
  'fun_first_everi',
  'first_everi_saturday',
  'everi_saturday_schedul',
  'saturday_schedul_wife',
  'schedul_wife_type',
  'wife_type_treat',
  'type_treat_self',
  'treat_self_appoint',
  'self_appoint_send',
  'appoint_send_mini',
  'send_mini_shop',
  'mini_shop_spreekiddo',
  'shop_spreekiddo_free',
  'spreekiddo_free_morn',
  'free_morn_want',
  'morn_want_one',
  'want_one_rule',
  'one_rule_kid',
  'rule_kid_shop',
  'kid_shop_second',
  'shop_second_im',
  'second_im_leav',
  'im_leav_wife',
  'leav_wife_night',
  'wife_night_day',
  'night_day_fish',
  'day_fish_get',
  'fish_get_drunk',
  'get_drunk_want',
  'drunk_want_go',
  'want_go_fish',
  'go_fish_ill',
  'fish_ill_take',
  'ill_take_yr',
  'take_yr_old',
  'yr_old_twin',
  'old_twin_give',
  'twin_give_wife',
  'give_wife_less',
  'wife_less_juggl',
  'less_juggl_creat',
  'juggl_creat_memori',
  'creat_memori_third',
  'memori_third_ladi',
  'third_ladi_work',
  'ladi_work_offic',
  'work_offic_feel',
  'offic_feel_exclud',
  'feel_exclud_like',
  'exclud_like_fish',
  'like_fish_trip',
  'fish_trip_feel',
  'trip_feel_exclud',
  'feel_exclud_fourth',
  'exclud_fourth_call',
  'fourth_call_stag',
  'call_stag_weekend',
  'stag_weekend_despit',
  'weekend_despit_one',
  'despit_one_get',
  'one_get_marri',
  'get_marri_trust',
  'marri_trust_phrase',
  'trust_phrase_especi',
  'phrase_especi_sinc',
  'especi_sinc_go',
  'sinc_go_fish',
  'go_fish_near',
  'fish_near_popular',
  'near_popular_colleg',
  'popular_colleg_age',
  'colleg_age_vacat',
  'age_vacat_spot',
  'vacat_spot_known',
  'spot_known_bar',
  'known_bar_wast',
  'bar_wast_weekend',
  'wast_weekend_shenanigan',
  'weekend_shenanigan_cowork',
  'shenanigan_cowork_call',
  'cowork_call_whip',
  'call_whip_sinc',
  'whip_sinc_said',
  'sinc_said_say',
  'said_say_itll',
  'say_itll_give',
  'itll_give_chanc',
  'give_chanc_know',
  'chanc_know_better',
  'know_better_sinc',
  'better_sinc_go',
  'sinc_go_wednesday',
  'go_wednesday_go',
  'wednesday_go_bar',
  'go_bar_alway',
  'bar_alway_miss',
  'alway_miss_trip',
  'miss_trip_cowork',
  'trip_cowork_wive',
  'cowork_wive_kid',
  'wive_kid_signific',
  'kid_signific_recommend',
  'signific_recommend_famili',
  'recommend_famili_campout',
  'famili_campout_plan',
  'campout_plan_meet',
  'plan_meet_would',
  'meet_would_cost',
  'would_cost_amount',
  'cost_amount_blow',
  'amount_blow_thing',
  'blow_thing_lake',
  'thing_lake_boat',
  'lake_boat_one',
  'boat_one_ski',
  'one_ski_ext',
  'ski_ext_cookout',
  'ext_cookout_kind',
  'cookout_kind_deal',
  'kind_deal_famili',
  'deal_famili_activ',
  'famili_activ_work',
  'activ_work_rent',
  'work_rent_small',
  'rent_small_cabin',
  'small_cabin_famili',
  'cabin_famili_use',
  'famili_use_region',
  'use_region_manag',
  'region_manag_meet',
  'manag_meet_love',
  'meet_love_even',
  'love_even_fish',
  'even_fish_trip',
  'fish_trip_gave',
  'trip_gave_yearli',
  'gave_yearli_bonu',
  'yearli_bonu_plan',
  'bonu_plan_famili',
  'plan_famili_event',
  'famili_event_everi',
  'event_everi_year',
  'everi_year_instead',
  'year_instead_cowork',
  'instead_cowork_get',
  'cowork_get_one',
  'get_one_plan',
  'one_plan_fish',
  'plan_fish_trip',
  'fish_trip_cowork',
  'trip_cowork_call',
  'cowork_call_whip',
  'call_whip_bs',
  'whip_bs_name',
  'bs_name_mad',
  'name_mad_wive',
  'mad_wive_happi',
  'wive_happi_idea',
  'happi_idea_wive',
  'idea_wive_even',
  'wive_even_email',
  'even_email_mom',
  'email_mom_saturday',
  'mom_saturday_morn',
  'saturday_morn_idea',
  'morn_idea_like',
  'idea_like_wife',
  'like_wife_ad',
  'wife_ad_plan',
  'ad_plan_mad',
  'plan_mad_stag',
  'mad_stag_weekend',
  'stag_weekend_cancel',
  'weekend_cancel_quot',
  'cancel_quot_spend',
  'quot_spend_work',
  'spend_work_paid',
  'work_paid_trip',
  'paid_trip_babysit',
  'trip_babysit_reddit',
  'babysit_reddit_aita',
  'reddit_aita_get',
  'aita_get_work',
  'get_work_trip',
  'work_trip_cancel',
  'trip_cancel_replac',
  'cancel_replac_famili',
  'replac_famili_friendli',
  'famili_friendli_event',
  'friendli_event_edit',
  'event_edit_clariti',
  'edit_clariti_also',
  'clariti_also_includ',
  'also_includ_childfre',
  'includ_childfre_cowork',
  'childfre_cowork_mine',
  'cowork_mine_plan',
  'mine_plan_said',
  'plan_said_need',
  'said_need_break',
  'need_break_get',
  'break_get_overwhelm',
  'get_overwhelm_welcom',
  'overwhelm_welcom_borrow',
  'welcom_borrow_boat',
  'borrow_boat_relax',
  'boat_relax_without',
  'relax_without_kid',
  'without_kid_extrem',
  'kid_extrem_water',
  'extrem_water_port'],
 ['im',
  'use',
  'thriwaway',
  'case',
  'husband',
  'tom',
  'marri',
  'year',
  'habit',
  'get',
  'leav',
  'event',
  'earli',
  'soon',
  'get',
  'bore',
  'see',
  'someon',
  'like',
  'come',
  'event',
  'like',
  'brother',
  'outright',
  'say',
  'pretend',
  'get',
  'sick',
  'feel',
  'headach',
  'stomach',
  'forc',
  'go',
  'home',
  'soon',
  'leav',
  'hed',
  'immedi',
  'go',
  'back',
  'normal',
  'suddenli',
  'pain',
  'headach',
  'go',
  'away',
  'admit',
  'strategi',
  'get',
  'boringundeisr',
  'event',
  'thing',
  'happen',
  'way',
  'often',
  'keep',
  'fall',
  'importantlyit',
  'impact',
  'relationship',
  'famili',
  'friend',
  'told',
  'mani',
  'time',
  'could',
  'go',
  'home',
  'feel',
  'comfort',
  'event',
  'trick',
  'go',
  'home',
  'told',
  'leav',
  'otherwis',
  'peopl',
  'would',
  'ask',
  'could',
  'drive',
  'sick',
  'told',
  'problem',
  'next',
  'time',
  'play',
  'along',
  'smirk',
  'stop',
  'bring',
  'day',
  'ago',
  'sister',
  'th',
  'birthday',
  'obvious',
  'huge',
  'event',
  'sinc',
  'youngest',
  'famili',
  'tom',
  'first',
  'said',
  'go',
  'ask',
  'go',
  'well',
  'feel',
  'sick',
  'sick',
  'specifi',
  'said',
  'gave',
  'option',
  'stay',
  'home',
  'got',
  'dress',
  'last',
  'minut',
  'went',
  'got',
  'went',
  'stay',
  'parent',
  'saw',
  'sister',
  'min',
  'later',
  'tom',
  'came',
  'say',
  'feel',
  'nauseou',
  'told',
  'go',
  'home',
  'feel',
  'sick',
  'figur',
  'got',
  'bore',
  'pretend',
  'sick',
  'get',
  'go',
  'home',
  'caus',
  'like',
  'parti',
  'told',
  'need',
  'stop',
  'game',
  'caus',
  'sister',
  'birthday',
  'swore',
  'sick',
  'refus',
  'go',
  'gave',
  'nasti',
  'stare',
  'dinner',
  'sat',
  'eat',
  'kept',
  'stare',
  'start',
  'move',
  'chair',
  'minut',
  'later',
  'drop',
  'start',
  'throw',
  'near',
  'chair',
  'everyon',
  'got',
  'seat',
  'dad',
  'went',
  'help',
  'immedi',
  'believ',
  'stood',
  'mom',
  'dad',
  'help',
  'shout',
  'knew',
  'sick',
  'told',
  'sick',
  'need',
  'go',
  'home',
  'believ',
  'everyon',
  'heard',
  'stare',
  'felt',
  'guilt',
  'shame',
  'embarrassementespeci',
  'dad',
  'look',
  'confirm',
  'statement',
  'horribl',
  'dinner',
  'cut',
  'short',
  'drive',
  'home',
  'got',
  'berat',
  'famili',
  'call',
  'neglect',
  'empathi',
  'refus',
  'listen',
  'told',
  'sick',
  'upset',
  'happen',
  'refus',
  'even',
  'talk',
  'except',
  'say',
  'fault',
  'parti',
  'ruin',
  'everyon',
  'cant',
  'even',
  'talk',
  'sister',
  'think',
  'sinc',
  'parti',
  'realli',
  'ah',
  'situat',
  'im_use',
  'use_thriwaway',
  'thriwaway_case',
  'case_husband',
  'husband_tom',
  'tom_marri',
  'marri_year',
  'year_habit',
  'habit_get',
  'get_leav',
  'leav_event',
  'event_earli',
  'earli_soon',
  'soon_get',
  'get_bore',
  'bore_see',
  'see_someon',
  'someon_like',
  'like_come',
  'come_event',
  'event_like',
  'like_brother',
  'brother_outright',
  'outright_say',
  'say_pretend',
  'pretend_get',
  'get_sick',
  'sick_feel',
  'feel_headach',
  'headach_stomach',
  'stomach_forc',
  'forc_go',
  'go_home',
  'home_soon',
  'soon_leav',
  'leav_hed',
  'hed_immedi',
  'immedi_go',
  'go_back',
  'back_normal',
  'normal_suddenli',
  'suddenli_pain',
  'pain_headach',
  'headach_go',
  'go_away',
  'away_admit',
  'admit_strategi',
  'strategi_get',
  'get_boringundeisr',
  'boringundeisr_event',
  'event_thing',
  'thing_happen',
  'happen_way',
  'way_often',
  'often_keep',
  'keep_fall',
  'fall_importantlyit',
  'importantlyit_impact',
  'impact_relationship',
  'relationship_famili',
  'famili_friend',
  'friend_told',
  'told_mani',
  'mani_time',
  'time_could',
  'could_go',
  'go_home',
  'home_feel',
  'feel_comfort',
  'comfort_event',
  'event_trick',
  'trick_go',
  'go_home',
  'home_told',
  'told_leav',
  'leav_otherwis',
  'otherwis_peopl',
  'peopl_would',
  'would_ask',
  'ask_could',
  'could_drive',
  'drive_sick',
  'sick_told',
  'told_problem',
  'problem_next',
  'next_time',
  'time_play',
  'play_along',
  'along_smirk',
  'smirk_stop',
  'stop_bring',
  'bring_day',
  'day_ago',
  'ago_sister',
  'sister_th',
  'th_birthday',
  'birthday_obvious',
  'obvious_huge',
  'huge_event',
  'event_sinc',
  'sinc_youngest',
  'youngest_famili',
  'famili_tom',
  'tom_first',
  'first_said',
  'said_go',
  'go_ask',
  'ask_go',
  'go_well',
  'well_feel',
  'feel_sick',
  'sick_sick',
  'sick_specifi',
  'specifi_said',
  'said_gave',
  'gave_option',
  'option_stay',
  'stay_home',
  'home_got',
  'got_dress',
  'dress_last',
  'last_minut',
  'minut_went',
  'went_got',
  'got_went',
  'went_stay',
  'stay_parent',
  'parent_saw',
  'saw_sister',
  'sister_min',
  'min_later',
  'later_tom',
  'tom_came',
  'came_say',
  'say_feel',
  'feel_nauseou',
  'nauseou_told',
  'told_go',
  'go_home',
  'home_feel',
  'feel_sick',
  'sick_figur',
  'figur_got',
  'got_bore',
  'bore_pretend',
  'pretend_sick',
  'sick_get',
  'get_go',
  'go_home',
  'home_caus',
  'caus_like',
  'like_parti',
  'parti_told',
  'told_need',
  'need_stop',
  'stop_game',
  'game_caus',
  'caus_sister',
  'sister_birthday',
  'birthday_swore',
  'swore_sick',
  'sick_refus',
  'refus_go',
  'go_gave',
  'gave_nasti',
  'nasti_stare',
  'stare_dinner',
  'dinner_sat',
  'sat_eat',
  'eat_kept',
  'kept_stare',
  'stare_start',
  'start_move',
  'move_chair',
  'chair_minut',
  'minut_later',
  'later_drop',
  'drop_start',
  'start_throw',
  'throw_near',
  'near_chair',
  'chair_everyon',
  'everyon_got',
  'got_seat',
  'seat_dad',
  'dad_went',
  'went_help',
  'help_immedi',
  'immedi_believ',
  'believ_stood',
  'stood_mom',
  'mom_dad',
  'dad_help',
  'help_shout',
  'shout_knew',
  'knew_sick',
  'sick_told',
  'told_sick',
  'sick_need',
  'need_go',
  'go_home',
  'home_believ',
  'believ_everyon',
  'everyon_heard',
  'heard_stare',
  'stare_felt',
  'felt_guilt',
  'guilt_shame',
  'shame_embarrassementespeci',
  'embarrassementespeci_dad',
  'dad_look',
  'look_confirm',
  'confirm_statement',
  'statement_horribl',
  'horribl_dinner',
  'dinner_cut',
  'cut_short',
  'short_drive',
  'drive_home',
  'home_got',
  'got_berat',
  'berat_famili',
  'famili_call',
  'call_neglect',
  'neglect_empathi',
  'empathi_refus',
  'refus_listen',
  'listen_told',
  'told_sick',
  'sick_upset',
  'upset_happen',
  'happen_refus',
  'refus_even',
  'even_talk',
  'talk_except',
  'except_say',
  'say_fault',
  'fault_parti',
  'parti_ruin',
  'ruin_everyon',
  'everyon_cant',
  'cant_even',
  'even_talk',
  'talk_sister',
  'sister_think',
  'think_sinc',
  'sinc_parti',
  'parti_realli',
  'realli_ah',
  'ah_situat',
  'im_use_thriwaway',
  'use_thriwaway_case',
  'thriwaway_case_husband',
  'case_husband_tom',
  'husband_tom_marri',
  'tom_marri_year',
  'marri_year_habit',
  'year_habit_get',
  'habit_get_leav',
  'get_leav_event',
  'leav_event_earli',
  'event_earli_soon',
  'earli_soon_get',
  'soon_get_bore',
  'get_bore_see',
  'bore_see_someon',
  'see_someon_like',
  'someon_like_come',
  'like_come_event',
  'come_event_like',
  'event_like_brother',
  'like_brother_outright',
  'brother_outright_say',
  'outright_say_pretend',
  'say_pretend_get',
  'pretend_get_sick',
  'get_sick_feel',
  'sick_feel_headach',
  'feel_headach_stomach',
  'headach_stomach_forc',
  'stomach_forc_go',
  'forc_go_home',
  'go_home_soon',
  'home_soon_leav',
  'soon_leav_hed',
  'leav_hed_immedi',
  'hed_immedi_go',
  'immedi_go_back',
  'go_back_normal',
  'back_normal_suddenli',
  'normal_suddenli_pain',
  'suddenli_pain_headach',
  'pain_headach_go',
  'headach_go_away',
  'go_away_admit',
  'away_admit_strategi',
  'admit_strategi_get',
  'strategi_get_boringundeisr',
  'get_boringundeisr_event',
  'boringundeisr_event_thing',
  'event_thing_happen',
  'thing_happen_way',
  'happen_way_often',
  'way_often_keep',
  'often_keep_fall',
  'keep_fall_importantlyit',
  'fall_importantlyit_impact',
  'importantlyit_impact_relationship',
  'impact_relationship_famili',
  'relationship_famili_friend',
  'famili_friend_told',
  'friend_told_mani',
  'told_mani_time',
  'mani_time_could',
  'time_could_go',
  'could_go_home',
  'go_home_feel',
  'home_feel_comfort',
  'feel_comfort_event',
  'comfort_event_trick',
  'event_trick_go',
  'trick_go_home',
  'go_home_told',
  'home_told_leav',
  'told_leav_otherwis',
  'leav_otherwis_peopl',
  'otherwis_peopl_would',
  'peopl_would_ask',
  'would_ask_could',
  'ask_could_drive',
  'could_drive_sick',
  'drive_sick_told',
  'sick_told_problem',
  'told_problem_next',
  'problem_next_time',
  'next_time_play',
  'time_play_along',
  'play_along_smirk',
  'along_smirk_stop',
  'smirk_stop_bring',
  'stop_bring_day',
  'bring_day_ago',
  'day_ago_sister',
  'ago_sister_th',
  'sister_th_birthday',
  'th_birthday_obvious',
  'birthday_obvious_huge',
  'obvious_huge_event',
  'huge_event_sinc',
  'event_sinc_youngest',
  'sinc_youngest_famili',
  'youngest_famili_tom',
  'famili_tom_first',
  'tom_first_said',
  'first_said_go',
  'said_go_ask',
  'go_ask_go',
  'ask_go_well',
  'go_well_feel',
  'well_feel_sick',
  'feel_sick_sick',
  'sick_sick_specifi',
  'sick_specifi_said',
  'specifi_said_gave',
  'said_gave_option',
  'gave_option_stay',
  'option_stay_home',
  'stay_home_got',
  'home_got_dress',
  'got_dress_last',
  'dress_last_minut',
  'last_minut_went',
  'minut_went_got',
  'went_got_went',
  'got_went_stay',
  'went_stay_parent',
  'stay_parent_saw',
  'parent_saw_sister',
  'saw_sister_min',
  'sister_min_later',
  'min_later_tom',
  'later_tom_came',
  'tom_came_say',
  'came_say_feel',
  'say_feel_nauseou',
  'feel_nauseou_told',
  'nauseou_told_go',
  'told_go_home',
  'go_home_feel',
  'home_feel_sick',
  'feel_sick_figur',
  'sick_figur_got',
  'figur_got_bore',
  'got_bore_pretend',
  'bore_pretend_sick',
  'pretend_sick_get',
  'sick_get_go',
  'get_go_home',
  'go_home_caus',
  'home_caus_like',
  'caus_like_parti',
  'like_parti_told',
  'parti_told_need',
  'told_need_stop',
  'need_stop_game',
  'stop_game_caus',
  'game_caus_sister',
  'caus_sister_birthday',
  'sister_birthday_swore',
  'birthday_swore_sick',
  'swore_sick_refus',
  'sick_refus_go',
  'refus_go_gave',
  'go_gave_nasti',
  'gave_nasti_stare',
  'nasti_stare_dinner',
  'stare_dinner_sat',
  'dinner_sat_eat',
  'sat_eat_kept',
  'eat_kept_stare',
  'kept_stare_start',
  'stare_start_move',
  'start_move_chair',
  'move_chair_minut',
  'chair_minut_later',
  'minut_later_drop',
  'later_drop_start',
  'drop_start_throw',
  'start_throw_near',
  'throw_near_chair',
  'near_chair_everyon',
  'chair_everyon_got',
  'everyon_got_seat',
  'got_seat_dad',
  'seat_dad_went',
  'dad_went_help',
  'went_help_immedi',
  'help_immedi_believ',
  'immedi_believ_stood',
  'believ_stood_mom',
  'stood_mom_dad',
  'mom_dad_help',
  'dad_help_shout',
  'help_shout_knew',
  'shout_knew_sick',
  'knew_sick_told',
  'sick_told_sick',
  'told_sick_need',
  'sick_need_go',
  'need_go_home',
  'go_home_believ',
  'home_believ_everyon',
  'believ_everyon_heard',
  'everyon_heard_stare',
  'heard_stare_felt',
  'stare_felt_guilt',
  'felt_guilt_shame',
  'guilt_shame_embarrassementespeci',
  'shame_embarrassementespeci_dad',
  'embarrassementespeci_dad_look',
  'dad_look_confirm',
  'look_confirm_statement',
  'confirm_statement_horribl',
  'statement_horribl_dinner',
  'horribl_dinner_cut',
  'dinner_cut_short',
  'cut_short_drive',
  'short_drive_home',
  'drive_home_got',
  'home_got_berat',
  'got_berat_famili',
  'berat_famili_call',
  'famili_call_neglect',
  'call_neglect_empathi',
  'neglect_empathi_refus',
  'empathi_refus_listen',
  'refus_listen_told',
  'listen_told_sick',
  'told_sick_upset',
  'sick_upset_happen',
  'upset_happen_refus',
  'happen_refus_even',
  'refus_even_talk',
  'even_talk_except',
  'talk_except_say',
  'except_say_fault',
  'say_fault_parti',
  'fault_parti_ruin',
  'parti_ruin_everyon',
  'ruin_everyon_cant',
  'everyon_cant_even',
  'cant_even_talk',
  'even_talk_sister',
  'talk_sister_think',
  'sister_think_sinc',
  'think_sinc_parti',
  'sinc_parti_realli',
  'parti_realli_ah',
  'realli_ah_situat'],
 ['daughter',
  'go',
  'get',
  'marri',
  'june',
  'sinc',
  'littl',
  'girl',
  'promis',
  'pay',
  'wed',
  'someth',
  'happen',
  'two',
  'day',
  'ago',
  'made',
  'chang',
  'mind',
  'background',
  'ex-wif',
  'daughter',
  'young',
  'age',
  'got',
  'marri',
  'six',
  'year',
  'marriag',
  'could',
  'find',
  'come',
  'wife',
  'understood',
  'amic',
  'divorc',
  'split',
  'custodi',
  'daughter',
  'alway',
  'daddi',
  'girl',
  'alway',
  'got',
  'along',
  'well',
  'partner',
  'year',
  'plan',
  'wed',
  'pay',
  'let',
  'know',
  'thing',
  'want',
  'special',
  'day',
  '·',
  'sinc',
  'futur',
  'in-law',
  'conserv',
  'religi',
  'husband',
  'allow',
  'attend',
  'wed',
  'said',
  'ok',
  'day',
  '·',
  'son',
  'cant',
  'attend',
  'either',
  'go',
  'child-fre',
  'wed',
  '·',
  'cant',
  'talk',
  'lifestyl',
  'make',
  'in-law',
  'uncomfort',
  'therefor',
  'told',
  'in-law',
  'import',
  'pay',
  'wed',
  'got',
  'mad',
  'call',
  'child',
  'said',
  'keep',
  'attitud',
  'shell',
  'ask',
  'fil',
  'walk',
  'aisl',
  'said',
  'fine',
  'famili',
  'welcom',
  'im',
  'exclud',
  'im',
  'pay',
  'wed',
  'furiou',
  'said',
  'selfish',
  'pick',
  'favourit',
  'think',
  'complain',
  'cant',
  'afford',
  'wed',
  'sinc',
  'young',
  'remind',
  'promis',
  'made',
  'everyon',
  'includ',
  'mom',
  'call',
  'selfish',
  'aita',
  'updat',
  'daughter',
  'apologis',
  'chang',
  'mind',
  'rule',
  'still',
  'set',
  'decid',
  'pay',
  'apologis',
  'hug',
  'belov',
  'husband',
  'son',
  'even',
  'second',
  'exclud',
  'husband',
  'even',
  'help',
  'chang',
  'mind',
  'alreadi',
  'ask',
  'fil',
  'walk',
  'aisl',
  'im',
  'gon',
  'na',
  'take',
  'son',
  'husband',
  'special',
  'famili',
  'trip',
  'daughter_go',
  'go_get',
  'get_marri',
  'marri_june',
  'june_sinc',
  'sinc_littl',
  'littl_girl',
  'girl_promis',
  'promis_pay',
  'pay_wed',
  'wed_someth',
  'someth_happen',
  'happen_two',
  'two_day',
  'day_ago',
  'ago_made',
  'made_chang',
  'chang_mind',
  'mind_background',
  'background_ex-wif',
  'ex-wif_daughter',
  'daughter_young',
  'young_age',
  'age_got',
  'got_marri',
  'marri_six',
  'six_year',
  'year_marriag',
  'marriag_could',
  'could_find',
  'find_come',
  'come_wife',
  'wife_understood',
  'understood_amic',
  'amic_divorc',
  'divorc_split',
  'split_custodi',
  'custodi_daughter',
  'daughter_alway',
  'alway_daddi',
  'daddi_girl',
  'girl_alway',
  'alway_got',
  'got_along',
  'along_well',
  'well_partner',
  'partner_year',
  'year_plan',
  'plan_wed',
  'wed_pay',
  'pay_let',
  'let_know',
  'know_thing',
  'thing_want',
  'want_special',
  'special_day',
  'day_·',
  '·_sinc',
  'sinc_futur',
  'futur_in-law',
  'in-law_conserv',
  'conserv_religi',
  'religi_husband',
  'husband_allow',
  'allow_attend',
  'attend_wed',
  'wed_said',
  'said_ok',
  'ok_day',
  'day_·',
  '·_son',
  'son_cant',
  'cant_attend',
  'attend_either',
  'either_go',
  'go_child-fre',
  'child-fre_wed',
  'wed_·',
  '·_cant',
  'cant_talk',
  'talk_lifestyl',
  'lifestyl_make',
  'make_in-law',
  'in-law_uncomfort',
  'uncomfort_therefor',
  'therefor_told',
  'told_in-law',
  'in-law_import',
  'import_pay',
  'pay_wed',
  'wed_got',
  'got_mad',
  'mad_call',
  'call_child',
  'child_said',
  'said_keep',
  'keep_attitud',
  'attitud_shell',
  'shell_ask',
  'ask_fil',
  'fil_walk',
  'walk_aisl',
  'aisl_said',
  'said_fine',
  'fine_famili',
  'famili_welcom',
  'welcom_im',
  'im_exclud',
  'exclud_im',
  'im_pay',
  'pay_wed',
  'wed_furiou',
  'furiou_said',
  'said_selfish',
  'selfish_pick',
  'pick_favourit',
  'favourit_think',
  'think_complain',
  'complain_cant',
  'cant_afford',
  'afford_wed',
  'wed_sinc',
  'sinc_young',
  'young_remind',
  'remind_promis',
  'promis_made',
  'made_everyon',
  'everyon_includ',
  'includ_mom',
  'mom_call',
  'call_selfish',
  'selfish_aita',
  'aita_updat',
  'updat_daughter',
  'daughter_apologis',
  'apologis_chang',
  'chang_mind',
  'mind_rule',
  'rule_still',
  'still_set',
  'set_decid',
  'decid_pay',
  'pay_apologis',
  'apologis_hug',
  'hug_belov',
  'belov_husband',
  'husband_son',
  'son_even',
  'even_second',
  'second_exclud',
  'exclud_husband',
  'husband_even',
  'even_help',
  'help_chang',
  'chang_mind',
  'mind_alreadi',
  'alreadi_ask',
  'ask_fil',
  'fil_walk',
  'walk_aisl',
  'aisl_im',
  'im_gon',
  'gon_na',
  'na_take',
  'take_son',
  'son_husband',
  'husband_special',
  'special_famili',
  'famili_trip',
  'daughter_go_get',
  'go_get_marri',
  'get_marri_june',
  'marri_june_sinc',
  'june_sinc_littl',
  'sinc_littl_girl',
  'littl_girl_promis',
  'girl_promis_pay',
  'promis_pay_wed',
  'pay_wed_someth',
  'wed_someth_happen',
  'someth_happen_two',
  'happen_two_day',
  'two_day_ago',
  'day_ago_made',
  'ago_made_chang',
  'made_chang_mind',
  'chang_mind_background',
  'mind_background_ex-wif',
  'background_ex-wif_daughter',
  'ex-wif_daughter_young',
  'daughter_young_age',
  'young_age_got',
  'age_got_marri',
  'got_marri_six',
  'marri_six_year',
  'six_year_marriag',
  'year_marriag_could',
  'marriag_could_find',
  'could_find_come',
  'find_come_wife',
  'come_wife_understood',
  'wife_understood_amic',
  'understood_amic_divorc',
  'amic_divorc_split',
  'divorc_split_custodi',
  'split_custodi_daughter',
  'custodi_daughter_alway',
  'daughter_alway_daddi',
  'alway_daddi_girl',
  'daddi_girl_alway',
  'girl_alway_got',
  'alway_got_along',
  'got_along_well',
  'along_well_partner',
  'well_partner_year',
  'partner_year_plan',
  'year_plan_wed',
  'plan_wed_pay',
  'wed_pay_let',
  'pay_let_know',
  'let_know_thing',
  'know_thing_want',
  'thing_want_special',
  'want_special_day',
  'special_day_·',
  'day_·_sinc',
  '·_sinc_futur',
  'sinc_futur_in-law',
  'futur_in-law_conserv',
  'in-law_conserv_religi',
  'conserv_religi_husband',
  'religi_husband_allow',
  'husband_allow_attend',
  'allow_attend_wed',
  'attend_wed_said',
  'wed_said_ok',
  'said_ok_day',
  'ok_day_·',
  'day_·_son',
  '·_son_cant',
  'son_cant_attend',
  'cant_attend_either',
  'attend_either_go',
  'either_go_child-fre',
  'go_child-fre_wed',
  'child-fre_wed_·',
  'wed_·_cant',
  '·_cant_talk',
  'cant_talk_lifestyl',
  'talk_lifestyl_make',
  'lifestyl_make_in-law',
  'make_in-law_uncomfort',
  'in-law_uncomfort_therefor',
  'uncomfort_therefor_told',
  'therefor_told_in-law',
  'told_in-law_import',
  'in-law_import_pay',
  'import_pay_wed',
  'pay_wed_got',
  'wed_got_mad',
  'got_mad_call',
  'mad_call_child',
  'call_child_said',
  'child_said_keep',
  'said_keep_attitud',
  'keep_attitud_shell',
  'attitud_shell_ask',
  'shell_ask_fil',
  'ask_fil_walk',
  'fil_walk_aisl',
  'walk_aisl_said',
  'aisl_said_fine',
  'said_fine_famili',
  'fine_famili_welcom',
  'famili_welcom_im',
  'welcom_im_exclud',
  'im_exclud_im',
  'exclud_im_pay',
  'im_pay_wed',
  'pay_wed_furiou',
  'wed_furiou_said',
  'furiou_said_selfish',
  'said_selfish_pick',
  'selfish_pick_favourit',
  'pick_favourit_think',
  'favourit_think_complain',
  'think_complain_cant',
  'complain_cant_afford',
  'cant_afford_wed',
  'afford_wed_sinc',
  'wed_sinc_young',
  'sinc_young_remind',
  'young_remind_promis',
  'remind_promis_made',
  'promis_made_everyon',
  'made_everyon_includ',
  'everyon_includ_mom',
  'includ_mom_call',
  'mom_call_selfish',
  'call_selfish_aita',
  'selfish_aita_updat',
  'aita_updat_daughter',
  'updat_daughter_apologis',
  'daughter_apologis_chang',
  'apologis_chang_mind',
  'chang_mind_rule',
  'mind_rule_still',
  'rule_still_set',
  'still_set_decid',
  'set_decid_pay',
  'decid_pay_apologis',
  'pay_apologis_hug',
  'apologis_hug_belov',
  'hug_belov_husband',
  'belov_husband_son',
  'husband_son_even',
  'son_even_second',
  'even_second_exclud',
  'second_exclud_husband',
  'exclud_husband_even',
  'husband_even_help',
  'even_help_chang',
  'help_chang_mind',
  'chang_mind_alreadi',
  'mind_alreadi_ask',
  'alreadi_ask_fil',
  'ask_fil_walk',
  'fil_walk_aisl',
  'walk_aisl_im',
  'aisl_im_gon',
  'im_gon_na',
  'gon_na_take',
  'na_take_son',
  'take_son_husband',
  'son_husband_special',
  'husband_special_famili',
  'special_famili_trip'],
 ['realli',
  'thought',
  'normal',
  'mani',
  'peopl',
  'tell',
  'im',
  'bitch',
  'start',
  'mess',
  'head',
  'tbh',
  'recent',
  'receiv',
  'hous',
  'grandmoth',
  'pass',
  'away',
  'left',
  'hous',
  'sister',
  'sat',
  'us',
  'decid',
  'bigger',
  'hous',
  'marri',
  'kid',
  'anoth',
  'way',
  'would',
  'move',
  'smaller',
  'bedroom',
  'hous',
  'sister',
  'husband',
  'ad',
  'titl',
  'hous',
  'help',
  'pay',
  'tax',
  'abl',
  'pay',
  'tax',
  'mine',
  'cheaper',
  'due',
  'smaller',
  'boyfriend',
  'year',
  'contribut',
  'financi',
  'toward',
  'think',
  'put',
  'titl',
  'housewarm',
  'parti',
  'last',
  'weekend',
  'parent',
  'came',
  'toward',
  'end',
  'night',
  'go',
  'lucki',
  'bf',
  'abl',
  'live',
  'somewher',
  'like',
  'rent',
  'free',
  'give',
  'us',
  'head',
  'start',
  'life',
  'appreci',
  'id',
  'given',
  'half',
  'hous',
  'bf',
  'correct',
  'titl',
  'welcom',
  'live',
  'pay',
  'rent',
  'money',
  'put',
  'toward',
  'studi',
  'master',
  'student',
  'immedi',
  'becam',
  'judgement',
  'say',
  'unfair',
  'put',
  'name',
  'titl',
  'clearli',
  'expect',
  'relationship',
  'last',
  'trust',
  'etc',
  'say',
  'unfair',
  'entitl',
  'half',
  'famili',
  'hous',
  'walk',
  'away',
  'numer',
  'member',
  'famili',
  'messag',
  'say',
  'im',
  'bitch',
  'trust',
  'tell',
  'watch',
  'clearli',
  'love',
  'etc',
  'aita',
  'ive',
  'gotten',
  'bunch',
  'messag',
  'ask',
  'bf',
  'think',
  'put',
  'respons',
  'brought',
  'monday',
  'said',
  'feel',
  'like',
  'sign',
  'trust',
  'said',
  'add',
  'man',
  'titl',
  'unless',
  'marri',
  'pay',
  'half',
  'rate',
  'stuff',
  'said',
  'feel',
  'like',
  'im',
  'blackmail',
  'get',
  'marri',
  'said',
  'want',
  'make',
  'huge',
  'commit',
  'like',
  'give',
  'half',
  'hous',
  'without',
  'commit',
  'said',
  'drop',
  'never',
  'go',
  'agre',
  'let',
  'leav',
  'argu',
  'realli_thought',
  'thought_normal',
  'normal_mani',
  'mani_peopl',
  'peopl_tell',
  'tell_im',
  'im_bitch',
  'bitch_start',
  'start_mess',
  'mess_head',
  'head_tbh',
  'tbh_recent',
  'recent_receiv',
  'receiv_hous',
  'hous_grandmoth',
  'grandmoth_pass',
  'pass_away',
  'away_left',
  'left_hous',
  'hous_sister',
  'sister_sat',
  'sat_us',
  'us_decid',
  'decid_bigger',
  'bigger_hous',
  'hous_marri',
  'marri_kid',
  'kid_anoth',
  'anoth_way',
  'way_would',
  'would_move',
  'move_smaller',
  'smaller_bedroom',
  'bedroom_hous',
  'hous_sister',
  'sister_husband',
  'husband_ad',
  'ad_titl',
  'titl_hous',
  'hous_help',
  'help_pay',
  'pay_tax',
  'tax_abl',
  'abl_pay',
  'pay_tax',
  'tax_mine',
  'mine_cheaper',
  'cheaper_due',
  'due_smaller',
  'smaller_boyfriend',
  'boyfriend_year',
  'year_contribut',
  'contribut_financi',
  'financi_toward',
  'toward_think',
  'think_put',
  'put_titl',
  'titl_housewarm',
  'housewarm_parti',
  'parti_last',
  'last_weekend',
  'weekend_parent',
  'parent_came',
  'came_toward',
  'toward_end',
  'end_night',
  'night_go',
  'go_lucki',
  'lucki_bf',
  'bf_abl',
  'abl_live',
  'live_somewher',
  'somewher_like',
  'like_rent',
  'rent_free',
  'free_give',
  'give_us',
  'us_head',
  'head_start',
  'start_life',
  'life_appreci',
  'appreci_id',
  'id_given',
  'given_half',
  'half_hous',
  'hous_bf',
  'bf_correct',
  'correct_titl',
  'titl_welcom',
  'welcom_live',
  'live_pay',
  'pay_rent',
  'rent_money',
  'money_put',
  'put_toward',
  'toward_studi',
  'studi_master',
  'master_student',
  'student_immedi',
  'immedi_becam',
  'becam_judgement',
  'judgement_say',
  'say_unfair',
  'unfair_put',
  'put_name',
  'name_titl',
  'titl_clearli',
  'clearli_expect',
  'expect_relationship',
  'relationship_last',
  'last_trust',
  'trust_etc',
  'etc_say',
  'say_unfair',
  'unfair_entitl',
  'entitl_half',
  'half_famili',
  'famili_hous',
  'hous_walk',
  'walk_away',
  'away_numer',
  'numer_member',
  'member_famili',
  'famili_messag',
  'messag_say',
  'say_im',
  'im_bitch',
  'bitch_trust',
  'trust_tell',
  'tell_watch',
  'watch_clearli',
  'clearli_love',
  'love_etc',
  'etc_aita',
  'aita_ive',
  'ive_gotten',
  'gotten_bunch',
  'bunch_messag',
  'messag_ask',
  'ask_bf',
  'bf_think',
  'think_put',
  'put_respons',
  'respons_brought',
  'brought_monday',
  'monday_said',
  'said_feel',
  'feel_like',
  'like_sign',
  'sign_trust',
  'trust_said',
  'said_add',
  'add_man',
  'man_titl',
  'titl_unless',
  'unless_marri',
  'marri_pay',
  'pay_half',
  'half_rate',
  'rate_stuff',
  'stuff_said',
  'said_feel',
  'feel_like',
  'like_im',
  'im_blackmail',
  'blackmail_get',
  'get_marri',
  'marri_said',
  'said_want',
  'want_make',
  'make_huge',
  'huge_commit',
  'commit_like',
  'like_give',
  'give_half',
  'half_hous',
  'hous_without',
  'without_commit',
  'commit_said',
  'said_drop',
  'drop_never',
  'never_go',
  'go_agre',
  'agre_let',
  'let_leav',
  'leav_argu',
  'realli_thought_normal',
  'thought_normal_mani',
  'normal_mani_peopl',
  'mani_peopl_tell',
  'peopl_tell_im',
  'tell_im_bitch',
  'im_bitch_start',
  'bitch_start_mess',
  'start_mess_head',
  'mess_head_tbh',
  'head_tbh_recent',
  'tbh_recent_receiv',
  'recent_receiv_hous',
  'receiv_hous_grandmoth',
  'hous_grandmoth_pass',
  'grandmoth_pass_away',
  'pass_away_left',
  'away_left_hous',
  'left_hous_sister',
  'hous_sister_sat',
  'sister_sat_us',
  'sat_us_decid',
  'us_decid_bigger',
  'decid_bigger_hous',
  'bigger_hous_marri',
  'hous_marri_kid',
  'marri_kid_anoth',
  'kid_anoth_way',
  'anoth_way_would',
  'way_would_move',
  'would_move_smaller',
  'move_smaller_bedroom',
  'smaller_bedroom_hous',
  'bedroom_hous_sister',
  'hous_sister_husband',
  'sister_husband_ad',
  'husband_ad_titl',
  'ad_titl_hous',
  'titl_hous_help',
  'hous_help_pay',
  'help_pay_tax',
  'pay_tax_abl',
  'tax_abl_pay',
  'abl_pay_tax',
  'pay_tax_mine',
  'tax_mine_cheaper',
  'mine_cheaper_due',
  'cheaper_due_smaller',
  'due_smaller_boyfriend',
  'smaller_boyfriend_year',
  'boyfriend_year_contribut',
  'year_contribut_financi',
  'contribut_financi_toward',
  'financi_toward_think',
  'toward_think_put',
  'think_put_titl',
  'put_titl_housewarm',
  'titl_housewarm_parti',
  'housewarm_parti_last',
  'parti_last_weekend',
  'last_weekend_parent',
  'weekend_parent_came',
  'parent_came_toward',
  'came_toward_end',
  'toward_end_night',
  'end_night_go',
  'night_go_lucki',
  'go_lucki_bf',
  'lucki_bf_abl',
  'bf_abl_live',
  'abl_live_somewher',
  'live_somewher_like',
  'somewher_like_rent',
  'like_rent_free',
  'rent_free_give',
  'free_give_us',
  'give_us_head',
  'us_head_start',
  'head_start_life',
  'start_life_appreci',
  'life_appreci_id',
  'appreci_id_given',
  'id_given_half',
  'given_half_hous',
  'half_hous_bf',
  'hous_bf_correct',
  'bf_correct_titl',
  'correct_titl_welcom',
  'titl_welcom_live',
  'welcom_live_pay',
  'live_pay_rent',
  'pay_rent_money',
  'rent_money_put',
  'money_put_toward',
  'put_toward_studi',
  'toward_studi_master',
  'studi_master_student',
  'master_student_immedi',
  'student_immedi_becam',
  'immedi_becam_judgement',
  'becam_judgement_say',
  'judgement_say_unfair',
  'say_unfair_put',
  'unfair_put_name',
  'put_name_titl',
  'name_titl_clearli',
  'titl_clearli_expect',
  'clearli_expect_relationship',
  'expect_relationship_last',
  'relationship_last_trust',
  'last_trust_etc',
  'trust_etc_say',
  'etc_say_unfair',
  'say_unfair_entitl',
  'unfair_entitl_half',
  'entitl_half_famili',
  'half_famili_hous',
  'famili_hous_walk',
  'hous_walk_away',
  'walk_away_numer',
  'away_numer_member',
  'numer_member_famili',
  'member_famili_messag',
  'famili_messag_say',
  'messag_say_im',
  'say_im_bitch',
  'im_bitch_trust',
  'bitch_trust_tell',
  'trust_tell_watch',
  'tell_watch_clearli',
  'watch_clearli_love',
  'clearli_love_etc',
  'love_etc_aita',
  'etc_aita_ive',
  'aita_ive_gotten',
  'ive_gotten_bunch',
  'gotten_bunch_messag',
  'bunch_messag_ask',
  'messag_ask_bf',
  'ask_bf_think',
  'bf_think_put',
  'think_put_respons',
  'put_respons_brought',
  'respons_brought_monday',
  'brought_monday_said',
  'monday_said_feel',
  'said_feel_like',
  'feel_like_sign',
  'like_sign_trust',
  'sign_trust_said',
  'trust_said_add',
  'said_add_man',
  'add_man_titl',
  'man_titl_unless',
  'titl_unless_marri',
  'unless_marri_pay',
  'marri_pay_half',
  'pay_half_rate',
  'half_rate_stuff',
  'rate_stuff_said',
  'stuff_said_feel',
  'said_feel_like',
  'feel_like_im',
  'like_im_blackmail',
  'im_blackmail_get',
  'blackmail_get_marri',
  'get_marri_said',
  'marri_said_want',
  'said_want_make',
  'want_make_huge',
  'make_huge_commit',
  'huge_commit_like',
  'commit_like_give',
  'like_give_half',
  'give_half_hous',
  'half_hous_without',
  'hous_without_commit',
  'without_commit_said',
  'commit_said_drop',
  'said_drop_never',
  'drop_never_go',
  'never_go_agre',
  'go_agre_let',
  'agre_let_leav',
  'let_leav_argu'],
 ['grow',
  'sister',
  'close',
  'parent',
  'favorit',
  'daughter',
  'alway',
  'littl',
  'overweight',
  'pco',
  'sister',
  'slim',
  'fit',
  'alway',
  'held',
  'resent',
  'toward',
  'especi',
  'belittl',
  'mom',
  'let',
  'eat',
  'one',
  'serv',
  'dinner',
  'one',
  'serv',
  'dessert',
  'tell',
  'sleep',
  'make',
  'gain',
  'weight',
  'alway',
  'overshadow',
  'accomplish',
  'sister',
  'marri',
  'wealthi',
  'man',
  'commun',
  'indian',
  'marriag',
  'arrang',
  'beauti',
  'kid',
  'love',
  'niec',
  'nephew',
  'anyth',
  'marri',
  'husband',
  'two',
  'year',
  'ago',
  'tri',
  'babi',
  'almost',
  'one',
  'year',
  'sister',
  'alway',
  'said',
  'brought',
  'shame',
  'parent',
  'marri',
  'outsid',
  'cultur',
  'babi',
  'mani',
  'neg',
  'pregnanc',
  'test',
  'month',
  'ago',
  'final',
  'posit',
  'pregnanc',
  'test',
  'unfortun',
  'four',
  'month',
  'miscarriag',
  'devast',
  'believ',
  'go',
  'two',
  'month',
  'tragedi',
  'famili',
  'threw',
  'sister',
  'birthday',
  'parti',
  'husband',
  'announc',
  'pregnant',
  'heart',
  'ach',
  'happi',
  'even',
  'went',
  'sister',
  'kept',
  'make',
  'comment',
  'like',
  'even',
  'tri',
  'babi',
  'funni',
  'get',
  'pregnant',
  'easili',
  'thought',
  'thing',
  'get',
  'wors',
  'stand',
  'cousin',
  'sister',
  'said',
  'even',
  'want',
  'kid',
  'almost',
  'contempl',
  'abort',
  'said',
  'look',
  'women',
  'abort',
  'sister',
  'use',
  'weapon',
  'show',
  'fertil',
  'contempl',
  'abort',
  'decid',
  'keep',
  'babi',
  'announc',
  'realli',
  'hurt',
  'upset',
  'frustrat',
  'husband',
  'notic',
  'chang',
  'emot',
  'immedi',
  'said',
  'goodby',
  'parent',
  'let',
  'parti',
  'immedi',
  'got',
  'mani',
  'text',
  'sister',
  'cousin',
  'call',
  'jealou',
  'asshol',
  'walk',
  'sister',
  'birthday',
  'parti',
  'part',
  'pregnanc',
  'celebr',
  'husband',
  'friend',
  'say',
  'right',
  'feel',
  'way',
  'im',
  'sure',
  'asshol',
  'grow_sister',
  'sister_close',
  'close_parent',
  'parent_favorit',
  'favorit_daughter',
  'daughter_alway',
  'alway_littl',
  'littl_overweight',
  'overweight_pco',
  'pco_sister',
  'sister_slim',
  'slim_fit',
  'fit_alway',
  'alway_held',
  'held_resent',
  'resent_toward',
  'toward_especi',
  'especi_belittl',
  'belittl_mom',
  'mom_let',
  'let_eat',
  'eat_one',
  'one_serv',
  'serv_dinner',
  'dinner_one',
  'one_serv',
  'serv_dessert',
  'dessert_tell',
  'tell_sleep',
  'sleep_make',
  'make_gain',
  'gain_weight',
  'weight_alway',
  'alway_overshadow',
  'overshadow_accomplish',
  'accomplish_sister',
  'sister_marri',
  'marri_wealthi',
  'wealthi_man',
  'man_commun',
  'commun_indian',
  'indian_marriag',
  'marriag_arrang',
  'arrang_beauti',
  'beauti_kid',
  'kid_love',
  'love_niec',
  'niec_nephew',
  'nephew_anyth',
  'anyth_marri',
  'marri_husband',
  'husband_two',
  'two_year',
  'year_ago',
  'ago_tri',
  'tri_babi',
  'babi_almost',
  'almost_one',
  'one_year',
  'year_sister',
  'sister_alway',
  'alway_said',
  'said_brought',
  'brought_shame',
  'shame_parent',
  'parent_marri',
  'marri_outsid',
  'outsid_cultur',
  'cultur_babi',
  'babi_mani',
  'mani_neg',
  'neg_pregnanc',
  'pregnanc_test',
  'test_month',
  'month_ago',
  'ago_final',
  'final_posit',
  'posit_pregnanc',
  'pregnanc_test',
  'test_unfortun',
  'unfortun_four',
  'four_month',
  'month_miscarriag',
  'miscarriag_devast',
  'devast_believ',
  'believ_go',
  'go_two',
  'two_month',
  'month_tragedi',
  'tragedi_famili',
  'famili_threw',
  'threw_sister',
  'sister_birthday',
  'birthday_parti',
  'parti_husband',
  'husband_announc',
  'announc_pregnant',
  'pregnant_heart',
  'heart_ach',
  'ach_happi',
  'happi_even',
  'even_went',
  'went_sister',
  'sister_kept',
  'kept_make',
  'make_comment',
  'comment_like',
  'like_even',
  'even_tri',
  'tri_babi',
  'babi_funni',
  'funni_get',
  'get_pregnant',
  'pregnant_easili',
  'easili_thought',
  'thought_thing',
  'thing_get',
  'get_wors',
  'wors_stand',
  'stand_cousin',
  'cousin_sister',
  'sister_said',
  'said_even',
  'even_want',
  'want_kid',
  'kid_almost',
  'almost_contempl',
  'contempl_abort',
  'abort_said',
  'said_look',
  'look_women',
  'women_abort',
  'abort_sister',
  'sister_use',
  'use_weapon',
  'weapon_show',
  'show_fertil',
  'fertil_contempl',
  'contempl_abort',
  'abort_decid',
  'decid_keep',
  'keep_babi',
  'babi_announc',
  'announc_realli',
  'realli_hurt',
  'hurt_upset',
  'upset_frustrat',
  'frustrat_husband',
  'husband_notic',
  'notic_chang',
  'chang_emot',
  'emot_immedi',
  'immedi_said',
  'said_goodby',
  'goodby_parent',
  'parent_let',
  'let_parti',
  'parti_immedi',
  'immedi_got',
  'got_mani',
  'mani_text',
  'text_sister',
  'sister_cousin',
  'cousin_call',
  'call_jealou',
  'jealou_asshol',
  'asshol_walk',
  'walk_sister',
  'sister_birthday',
  'birthday_parti',
  'parti_part',
  'part_pregnanc',
  'pregnanc_celebr',
  'celebr_husband',
  'husband_friend',
  'friend_say',
  'say_right',
  'right_feel',
  'feel_way',
  'way_im',
  'im_sure',
  'sure_asshol',
  'grow_sister_close',
  'sister_close_parent',
  'close_parent_favorit',
  'parent_favorit_daughter',
  'favorit_daughter_alway',
  'daughter_alway_littl',
  'alway_littl_overweight',
  'littl_overweight_pco',
  'overweight_pco_sister',
  'pco_sister_slim',
  'sister_slim_fit',
  'slim_fit_alway',
  'fit_alway_held',
  'alway_held_resent',
  'held_resent_toward',
  'resent_toward_especi',
  'toward_especi_belittl',
  'especi_belittl_mom',
  'belittl_mom_let',
  'mom_let_eat',
  'let_eat_one',
  'eat_one_serv',
  'one_serv_dinner',
  'serv_dinner_one',
  'dinner_one_serv',
  'one_serv_dessert',
  'serv_dessert_tell',
  'dessert_tell_sleep',
  'tell_sleep_make',
  'sleep_make_gain',
  'make_gain_weight',
  'gain_weight_alway',
  'weight_alway_overshadow',
  'alway_overshadow_accomplish',
  'overshadow_accomplish_sister',
  'accomplish_sister_marri',
  'sister_marri_wealthi',
  'marri_wealthi_man',
  'wealthi_man_commun',
  'man_commun_indian',
  'commun_indian_marriag',
  'indian_marriag_arrang',
  'marriag_arrang_beauti',
  'arrang_beauti_kid',
  'beauti_kid_love',
  'kid_love_niec',
  'love_niec_nephew',
  'niec_nephew_anyth',
  'nephew_anyth_marri',
  'anyth_marri_husband',
  'marri_husband_two',
  'husband_two_year',
  'two_year_ago',
  'year_ago_tri',
  'ago_tri_babi',
  'tri_babi_almost',
  'babi_almost_one',
  'almost_one_year',
  'one_year_sister',
  'year_sister_alway',
  'sister_alway_said',
  'alway_said_brought',
  'said_brought_shame',
  'brought_shame_parent',
  'shame_parent_marri',
  'parent_marri_outsid',
  'marri_outsid_cultur',
  'outsid_cultur_babi',
  'cultur_babi_mani',
  'babi_mani_neg',
  'mani_neg_pregnanc',
  'neg_pregnanc_test',
  'pregnanc_test_month',
  'test_month_ago',
  'month_ago_final',
  'ago_final_posit',
  'final_posit_pregnanc',
  'posit_pregnanc_test',
  'pregnanc_test_unfortun',
  'test_unfortun_four',
  'unfortun_four_month',
  'four_month_miscarriag',
  'month_miscarriag_devast',
  'miscarriag_devast_believ',
  'devast_believ_go',
  'believ_go_two',
  'go_two_month',
  'two_month_tragedi',
  'month_tragedi_famili',
  'tragedi_famili_threw',
  'famili_threw_sister',
  'threw_sister_birthday',
  'sister_birthday_parti',
  'birthday_parti_husband',
  'parti_husband_announc',
  'husband_announc_pregnant',
  'announc_pregnant_heart',
  'pregnant_heart_ach',
  'heart_ach_happi',
  'ach_happi_even',
  'happi_even_went',
  'even_went_sister',
  'went_sister_kept',
  'sister_kept_make',
  'kept_make_comment',
  'make_comment_like',
  'comment_like_even',
  'like_even_tri',
  'even_tri_babi',
  'tri_babi_funni',
  'babi_funni_get',
  'funni_get_pregnant',
  'get_pregnant_easili',
  'pregnant_easili_thought',
  'easili_thought_thing',
  'thought_thing_get',
  'thing_get_wors',
  'get_wors_stand',
  'wors_stand_cousin',
  'stand_cousin_sister',
  'cousin_sister_said',
  'sister_said_even',
  'said_even_want',
  'even_want_kid',
  'want_kid_almost',
  'kid_almost_contempl',
  'almost_contempl_abort',
  'contempl_abort_said',
  'abort_said_look',
  'said_look_women',
  'look_women_abort',
  'women_abort_sister',
  'abort_sister_use',
  'sister_use_weapon',
  'use_weapon_show',
  'weapon_show_fertil',
  'show_fertil_contempl',
  'fertil_contempl_abort',
  'contempl_abort_decid',
  'abort_decid_keep',
  'decid_keep_babi',
  'keep_babi_announc',
  'babi_announc_realli',
  'announc_realli_hurt',
  'realli_hurt_upset',
  'hurt_upset_frustrat',
  'upset_frustrat_husband',
  'frustrat_husband_notic',
  'husband_notic_chang',
  'notic_chang_emot',
  'chang_emot_immedi',
  'emot_immedi_said',
  'immedi_said_goodby',
  'said_goodby_parent',
  'goodby_parent_let',
  'parent_let_parti',
  'let_parti_immedi',
  'parti_immedi_got',
  'immedi_got_mani',
  'got_mani_text',
  'mani_text_sister',
  'text_sister_cousin',
  'sister_cousin_call',
  'cousin_call_jealou',
  'call_jealou_asshol',
  'jealou_asshol_walk',
  'asshol_walk_sister',
  'walk_sister_birthday',
  'sister_birthday_parti',
  'birthday_parti_part',
  'parti_part_pregnanc',
  'part_pregnanc_celebr',
  'pregnanc_celebr_husband',
  'celebr_husband_friend',
  'husband_friend_say',
  'friend_say_right',
  'say_right_feel',
  'right_feel_way',
  'feel_way_im',
  'way_im_sure',
  'im_sure_asshol'],
 ['got',
  'marri',
  'husband',
  'month',
  'ago',
  'year',
  'old',
  'son',
  'previou',
  'marriag',
  'husband',
  'ador',
  'diner',
  'last',
  'night',
  'ask',
  'husband',
  'phone',
  'check',
  'payment',
  'option',
  'meal',
  'unlock',
  'screen',
  'saw',
  'son',
  'pic',
  'set',
  'homescreen',
  'wallpap',
  'ask',
  'husband',
  'long',
  'said',
  'month',
  'got',
  'upset',
  'point',
  'wise',
  'use',
  'pic',
  'son',
  'homescreen',
  'wallpap',
  'stranger',
  'see',
  'said',
  'pretti',
  'much',
  'almost',
  'one',
  'touch',
  'phone',
  'worri',
  'son',
  'pic',
  'seen',
  'stranger',
  'told',
  'touch',
  'phone',
  'see',
  'iphon',
  'homescreen',
  'said',
  'relax',
  'like',
  'post',
  'social',
  'media',
  'besid',
  'use',
  'son',
  'pic',
  'homescreen',
  'wallpap',
  'abl',
  'look',
  'time',
  'miss',
  'work',
  'demand',
  'remov',
  'said',
  'insist',
  'argument',
  'ensu',
  'point',
  'got',
  'paid',
  'part',
  'bill',
  'walk',
  'restaur',
  'decid',
  'stay',
  'hotel',
  'overwhelm',
  'text',
  'deepli',
  'hurt',
  'told',
  'remov',
  'pictur',
  'entir',
  'phone',
  'would',
  'make',
  'happi',
  'went',
  'say',
  'overreact',
  'look',
  'expect',
  'apolog',
  'happen',
  'ita',
  'got_marri',
  'marri_husband',
  'husband_month',
  'month_ago',
  'ago_year',
  'year_old',
  'old_son',
  'son_previou',
  'previou_marriag',
  'marriag_husband',
  'husband_ador',
  'ador_diner',
  'diner_last',
  'last_night',
  'night_ask',
  'ask_husband',
  'husband_phone',
  'phone_check',
  'check_payment',
  'payment_option',
  'option_meal',
  'meal_unlock',
  'unlock_screen',
  'screen_saw',
  'saw_son',
  'son_pic',
  'pic_set',
  'set_homescreen',
  'homescreen_wallpap',
  'wallpap_ask',
  'ask_husband',
  'husband_long',
  'long_said',
  'said_month',
  'month_got',
  'got_upset',
  'upset_point',
  'point_wise',
  'wise_use',
  'use_pic',
  'pic_son',
  'son_homescreen',
  'homescreen_wallpap',
  'wallpap_stranger',
  'stranger_see',
  'see_said',
  'said_pretti',
  'pretti_much',
  'much_almost',
  'almost_one',
  'one_touch',
  'touch_phone',
  'phone_worri',
  'worri_son',
  'son_pic',
  'pic_seen',
  'seen_stranger',
  'stranger_told',
  'told_touch',
  'touch_phone',
  'phone_see',
  'see_iphon',
  'iphon_homescreen',
  'homescreen_said',
  'said_relax',
  'relax_like',
  'like_post',
  'post_social',
  'social_media',
  'media_besid',
  'besid_use',
  'use_son',
  'son_pic',
  'pic_homescreen',
  'homescreen_wallpap',
  'wallpap_abl',
  'abl_look',
  'look_time',
  'time_miss',
  'miss_work',
  'work_demand',
  'demand_remov',
  'remov_said',
  'said_insist',
  'insist_argument',
  'argument_ensu',
  'ensu_point',
  'point_got',
  'got_paid',
  'paid_part',
  'part_bill',
  'bill_walk',
  'walk_restaur',
  'restaur_decid',
  'decid_stay',
  'stay_hotel',
  'hotel_overwhelm',
  'overwhelm_text',
  'text_deepli',
  'deepli_hurt',
  'hurt_told',
  'told_remov',
  'remov_pictur',
  'pictur_entir',
  'entir_phone',
  'phone_would',
  'would_make',
  'make_happi',
  'happi_went',
  'went_say',
  'say_overreact',
  'overreact_look',
  'look_expect',
  'expect_apolog',
  'apolog_happen',
  'happen_ita',
  'got_marri_husband',
  'marri_husband_month',
  'husband_month_ago',
  'month_ago_year',
  'ago_year_old',
  'year_old_son',
  'old_son_previou',
  'son_previou_marriag',
  'previou_marriag_husband',
  'marriag_husband_ador',
  'husband_ador_diner',
  'ador_diner_last',
  'diner_last_night',
  'last_night_ask',
  'night_ask_husband',
  'ask_husband_phone',
  'husband_phone_check',
  'phone_check_payment',
  'check_payment_option',
  'payment_option_meal',
  'option_meal_unlock',
  'meal_unlock_screen',
  'unlock_screen_saw',
  'screen_saw_son',
  'saw_son_pic',
  'son_pic_set',
  'pic_set_homescreen',
  'set_homescreen_wallpap',
  'homescreen_wallpap_ask',
  'wallpap_ask_husband',
  'ask_husband_long',
  'husband_long_said',
  'long_said_month',
  'said_month_got',
  'month_got_upset',
  'got_upset_point',
  'upset_point_wise',
  'point_wise_use',
  'wise_use_pic',
  'use_pic_son',
  'pic_son_homescreen',
  'son_homescreen_wallpap',
  'homescreen_wallpap_stranger',
  'wallpap_stranger_see',
  'stranger_see_said',
  'see_said_pretti',
  'said_pretti_much',
  'pretti_much_almost',
  'much_almost_one',
  'almost_one_touch',
  'one_touch_phone',
  'touch_phone_worri',
  'phone_worri_son',
  'worri_son_pic',
  'son_pic_seen',
  'pic_seen_stranger',
  'seen_stranger_told',
  'stranger_told_touch',
  'told_touch_phone',
  'touch_phone_see',
  'phone_see_iphon',
  'see_iphon_homescreen',
  'iphon_homescreen_said',
  'homescreen_said_relax',
  'said_relax_like',
  'relax_like_post',
  'like_post_social',
  'post_social_media',
  'social_media_besid',
  'media_besid_use',
  'besid_use_son',
  'use_son_pic',
  'son_pic_homescreen',
  'pic_homescreen_wallpap',
  'homescreen_wallpap_abl',
  'wallpap_abl_look',
  'abl_look_time',
  'look_time_miss',
  'time_miss_work',
  'miss_work_demand',
  'work_demand_remov',
  'demand_remov_said',
  'remov_said_insist',
  'said_insist_argument',
  'insist_argument_ensu',
  'argument_ensu_point',
  'ensu_point_got',
  'point_got_paid',
  'got_paid_part',
  'paid_part_bill',
  'part_bill_walk',
  'bill_walk_restaur',
  'walk_restaur_decid',
  'restaur_decid_stay',
  'decid_stay_hotel',
  'stay_hotel_overwhelm',
  'hotel_overwhelm_text',
  'overwhelm_text_deepli',
  'text_deepli_hurt',
  'deepli_hurt_told',
  'hurt_told_remov',
  'told_remov_pictur',
  'remov_pictur_entir',
  'pictur_entir_phone',
  'entir_phone_would',
  'phone_would_make',
  'would_make_happi',
  'make_happi_went',
  'happi_went_say',
  'went_say_overreact',
  'say_overreact_look',
  'overreact_look_expect',
  'look_expect_apolog',
  'expect_apolog_happen',
  'apolog_happen_ita'],
 ['late',
  'husband',
  'pass',
  'away',
  'car',
  'accid',
  'month',
  'pregnant',
  'difficult',
  'without',
  'famili',
  'much',
  'support',
  'move',
  'month',
  'funer',
  'older',
  'brother',
  'ask',
  'minut',
  'talk',
  'ask',
  'realli',
  'want',
  'go',
  'pregnanc',
  'shock',
  'heard',
  'even',
  'shock',
  'suggest',
  'make',
  'right',
  'decis',
  'emot',
  'decis',
  'reconsid',
  'son',
  'gave',
  'mani',
  'reason',
  'includ',
  'fact',
  'singlewidow',
  'mom',
  'consid',
  'much',
  'baggag',
  'mani',
  'men',
  'date',
  'lost',
  'kick',
  'last',
  'time',
  'saw',
  'son',
  'week',
  'old',
  'whole',
  'famili',
  'met',
  'happi',
  'welcom',
  'parent',
  'ask',
  'could',
  'let',
  'brother',
  'come',
  'meet',
  'son',
  'even',
  'hour',
  'refus',
  'said',
  'make',
  'mistak',
  'rob',
  'son',
  'futur',
  'love',
  'relationship',
  'uncl',
  'ask',
  'let',
  'emot',
  'dictat',
  'decis',
  'might',
  'last',
  'impact',
  'said',
  'extend',
  'famili',
  'got',
  'involv',
  'start',
  'push',
  'especi',
  'brother',
  'start',
  'insist',
  'say',
  'husband',
  'dear',
  'friend',
  'im',
  'right',
  'would',
  'make',
  'husband',
  'upset',
  'saw',
  'bitter',
  'selfish',
  'late_husband',
  'husband_pass',
  'pass_away',
  'away_car',
  'car_accid',
  'accid_month',
  'month_pregnant',
  'pregnant_difficult',
  'difficult_without',
  'without_famili',
  'famili_much',
  'much_support',
  'support_move',
  'move_month',
  'month_funer',
  'funer_older',
  'older_brother',
  'brother_ask',
  'ask_minut',
  'minut_talk',
  'talk_ask',
  'ask_realli',
  'realli_want',
  'want_go',
  'go_pregnanc',
  'pregnanc_shock',
  'shock_heard',
  'heard_even',
  'even_shock',
  'shock_suggest',
  'suggest_make',
  'make_right',
  'right_decis',
  'decis_emot',
  'emot_decis',
  'decis_reconsid',
  'reconsid_son',
  'son_gave',
  'gave_mani',
  'mani_reason',
  'reason_includ',
  'includ_fact',
  'fact_singlewidow',
  'singlewidow_mom',
  'mom_consid',
  'consid_much',
  'much_baggag',
  'baggag_mani',
  'mani_men',
  'men_date',
  'date_lost',
  'lost_kick',
  'kick_last',
  'last_time',
  'time_saw',
  'saw_son',
  'son_week',
  'week_old',
  'old_whole',
  'whole_famili',
  'famili_met',
  'met_happi',
  'happi_welcom',
  'welcom_parent',
  'parent_ask',
  'ask_could',
  'could_let',
  'let_brother',
  'brother_come',
  'come_meet',
  'meet_son',
  'son_even',
  'even_hour',
  'hour_refus',
  'refus_said',
  'said_make',
  'make_mistak',
  'mistak_rob',
  'rob_son',
  'son_futur',
  'futur_love',
  'love_relationship',
  'relationship_uncl',
  'uncl_ask',
  'ask_let',
  'let_emot',
  'emot_dictat',
  'dictat_decis',
  'decis_might',
  'might_last',
  'last_impact',
  'impact_said',
  'said_extend',
  'extend_famili',
  'famili_got',
  'got_involv',
  'involv_start',
  'start_push',
  'push_especi',
  'especi_brother',
  'brother_start',
  'start_insist',
  'insist_say',
  'say_husband',
  'husband_dear',
  'dear_friend',
  'friend_im',
  'im_right',
  'right_would',
  'would_make',
  'make_husband',
  'husband_upset',
  'upset_saw',
  'saw_bitter',
  'bitter_selfish',
  'late_husband_pass',
  'husband_pass_away',
  'pass_away_car',
  'away_car_accid',
  'car_accid_month',
  'accid_month_pregnant',
  'month_pregnant_difficult',
  'pregnant_difficult_without',
  'difficult_without_famili',
  'without_famili_much',
  'famili_much_support',
  'much_support_move',
  'support_move_month',
  'move_month_funer',
  'month_funer_older',
  'funer_older_brother',
  'older_brother_ask',
  'brother_ask_minut',
  'ask_minut_talk',
  'minut_talk_ask',
  'talk_ask_realli',
  'ask_realli_want',
  'realli_want_go',
  'want_go_pregnanc',
  'go_pregnanc_shock',
  'pregnanc_shock_heard',
  'shock_heard_even',
  'heard_even_shock',
  'even_shock_suggest',
  'shock_suggest_make',
  'suggest_make_right',
  'make_right_decis',
  'right_decis_emot',
  'decis_emot_decis',
  'emot_decis_reconsid',
  'decis_reconsid_son',
  'reconsid_son_gave',
  'son_gave_mani',
  'gave_mani_reason',
  'mani_reason_includ',
  'reason_includ_fact',
  'includ_fact_singlewidow',
  'fact_singlewidow_mom',
  'singlewidow_mom_consid',
  'mom_consid_much',
  'consid_much_baggag',
  'much_baggag_mani',
  'baggag_mani_men',
  'mani_men_date',
  'men_date_lost',
  'date_lost_kick',
  'lost_kick_last',
  'kick_last_time',
  'last_time_saw',
  'time_saw_son',
  'saw_son_week',
  'son_week_old',
  'week_old_whole',
  'old_whole_famili',
  'whole_famili_met',
  'famili_met_happi',
  'met_happi_welcom',
  'happi_welcom_parent',
  'welcom_parent_ask',
  'parent_ask_could',
  'ask_could_let',
  'could_let_brother',
  'let_brother_come',
  'brother_come_meet',
  'come_meet_son',
  'meet_son_even',
  'son_even_hour',
  'even_hour_refus',
  'hour_refus_said',
  'refus_said_make',
  'said_make_mistak',
  'make_mistak_rob',
  'mistak_rob_son',
  'rob_son_futur',
  'son_futur_love',
  'futur_love_relationship',
  'love_relationship_uncl',
  'relationship_uncl_ask',
  'uncl_ask_let',
  'ask_let_emot',
  'let_emot_dictat',
  'emot_dictat_decis',
  'dictat_decis_might',
  'decis_might_last',
  'might_last_impact',
  'last_impact_said',
  'impact_said_extend',
  'said_extend_famili',
  'extend_famili_got',
  'famili_got_involv',
  'got_involv_start',
  'involv_start_push',
  'start_push_especi',
  'push_especi_brother',
  'especi_brother_start',
  'brother_start_insist',
  'start_insist_say',
  'insist_say_husband',
  'say_husband_dear',
  'husband_dear_friend',
  'dear_friend_im',
  'friend_im_right',
  'im_right_would',
  'right_would_make',
  'would_make_husband',
  'make_husband_upset',
  'husband_upset_saw',
  'upset_saw_bitter',
  'saw_bitter_selfish'],
 ['daughter',
  'seven',
  'autist',
  'partial',
  'verbal',
  'high',
  'stress',
  'situat',
  'goe',
  'mute',
  'anyway',
  'went',
  'sister',
  'hous',
  'happi',
  'friday',
  'whole',
  'famili',
  'get',
  'togeth',
  'run',
  'snd',
  'deliv',
  'packag',
  'gone',
  'like',
  'half',
  'hour',
  'anyway',
  'got',
  'back',
  'differ',
  'cloth',
  'clearli',
  'upset',
  'ask',
  'happen',
  'sister',
  'told',
  'wet',
  'chocol',
  'pop',
  'thing',
  'girl',
  'would',
  'never',
  'wet',
  'purpos',
  'extrem',
  'anxieti',
  'surround',
  'toilet',
  'point',
  'therapi',
  'know',
  'anxieti',
  'caus',
  'pretti',
  'sever',
  'clearli',
  'distress',
  'took',
  'home',
  'car',
  'broke',
  'sob',
  'unabl',
  'tell',
  'happen',
  'soon',
  'got',
  'home',
  'took',
  'upstair',
  'put',
  'pull',
  'pull',
  'access',
  'recommend',
  'control',
  'super',
  'cuddli',
  'sinc',
  'use',
  'aav',
  'devic',
  'sign',
  'two',
  'therapist',
  'due',
  'see',
  'next',
  'week',
  'see',
  'theyll',
  'abl',
  'help',
  'understand',
  'happen',
  'famili',
  'aw',
  'sister',
  'mainli',
  'still',
  'claim',
  'brat',
  'attent',
  'ive',
  'sinc',
  'told',
  'everi',
  'famili',
  'member',
  'see',
  'truth',
  'told',
  'may',
  'overkil',
  'think',
  'daughter',
  'would',
  'want',
  'see',
  'anyon',
  'anyway',
  'obvious',
  'upset',
  'lot',
  'peopl',
  'especi',
  'know',
  'happen',
  'im',
  'stand',
  'statement',
  '-',
  'sister',
  'tell',
  'back',
  'pressur',
  'famili',
  'member',
  'may',
  'help',
  'along',
  'im',
  'slightli',
  'concern',
  'im',
  'major',
  'ass',
  'though',
  'want',
  'see',
  'cant',
  'im',
  'start',
  'feel',
  'quit',
  'bad',
  'despit',
  'explain',
  'situat',
  'full',
  'ass',
  'eta',
  'daughter',
  'father',
  'although',
  'appreci',
  'mama',
  'bear',
  'comment',
  'lol',
  'eta',
  'updat',
  'updat',
  'post',
  'httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app',
  '&',
  'utm_source=shar',
  'daughter_seven',
  'seven_autist',
  'autist_partial',
  'partial_verbal',
  'verbal_high',
  'high_stress',
  'stress_situat',
  'situat_goe',
  'goe_mute',
  'mute_anyway',
  'anyway_went',
  'went_sister',
  'sister_hous',
  'hous_happi',
  'happi_friday',
  'friday_whole',
  'whole_famili',
  'famili_get',
  'get_togeth',
  'togeth_run',
  'run_snd',
  'snd_deliv',
  'deliv_packag',
  'packag_gone',
  'gone_like',
  'like_half',
  'half_hour',
  'hour_anyway',
  'anyway_got',
  'got_back',
  'back_differ',
  'differ_cloth',
  'cloth_clearli',
  'clearli_upset',
  'upset_ask',
  'ask_happen',
  'happen_sister',
  'sister_told',
  'told_wet',
  'wet_chocol',
  'chocol_pop',
  'pop_thing',
  'thing_girl',
  'girl_would',
  'would_never',
  'never_wet',
  'wet_purpos',
  'purpos_extrem',
  'extrem_anxieti',
  'anxieti_surround',
  'surround_toilet',
  'toilet_point',
  'point_therapi',
  'therapi_know',
  'know_anxieti',
  'anxieti_caus',
  'caus_pretti',
  'pretti_sever',
  'sever_clearli',
  'clearli_distress',
  'distress_took',
  'took_home',
  'home_car',
  'car_broke',
  'broke_sob',
  'sob_unabl',
  'unabl_tell',
  'tell_happen',
  'happen_soon',
  'soon_got',
  'got_home',
  'home_took',
  'took_upstair',
  'upstair_put',
  'put_pull',
  'pull_pull',
  'pull_access',
  'access_recommend',
  'recommend_control',
  'control_super',
  'super_cuddli',
  'cuddli_sinc',
  'sinc_use',
  'use_aav',
  'aav_devic',
  'devic_sign',
  'sign_two',
  'two_therapist',
  'therapist_due',
  'due_see',
  'see_next',
  'next_week',
  'week_see',
  'see_theyll',
  'theyll_abl',
  'abl_help',
  'help_understand',
  'understand_happen',
  'happen_famili',
  'famili_aw',
  'aw_sister',
  'sister_mainli',
  'mainli_still',
  'still_claim',
  'claim_brat',
  'brat_attent',
  'attent_ive',
  'ive_sinc',
  'sinc_told',
  'told_everi',
  'everi_famili',
  'famili_member',
  'member_see',
  'see_truth',
  'truth_told',
  'told_may',
  'may_overkil',
  'overkil_think',
  'think_daughter',
  'daughter_would',
  'would_want',
  'want_see',
  'see_anyon',
  'anyon_anyway',
  'anyway_obvious',
  'obvious_upset',
  'upset_lot',
  'lot_peopl',
  'peopl_especi',
  'especi_know',
  'know_happen',
  'happen_im',
  'im_stand',
  'stand_statement',
  'statement_-',
  '-_sister',
  'sister_tell',
  'tell_back',
  'back_pressur',
  'pressur_famili',
  'famili_member',
  'member_may',
  'may_help',
  'help_along',
  'along_im',
  'im_slightli',
  'slightli_concern',
  'concern_im',
  'im_major',
  'major_ass',
  'ass_though',
  'though_want',
  'want_see',
  'see_cant',
  'cant_im',
  'im_start',
  'start_feel',
  'feel_quit',
  'quit_bad',
  'bad_despit',
  'despit_explain',
  'explain_situat',
  'situat_full',
  'full_ass',
  'ass_eta',
  'eta_daughter',
  'daughter_father',
  'father_although',
  'although_appreci',
  'appreci_mama',
  'mama_bear',
  'bear_comment',
  'comment_lol',
  'lol_eta',
  'eta_updat',
  'updat_updat',
  'updat_post',
  'post_httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app',
  'httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app_&',
  '&_utm_source=shar',
  'daughter_seven_autist',
  'seven_autist_partial',
  'autist_partial_verbal',
  'partial_verbal_high',
  'verbal_high_stress',
  'high_stress_situat',
  'stress_situat_goe',
  'situat_goe_mute',
  'goe_mute_anyway',
  'mute_anyway_went',
  'anyway_went_sister',
  'went_sister_hous',
  'sister_hous_happi',
  'hous_happi_friday',
  'happi_friday_whole',
  'friday_whole_famili',
  'whole_famili_get',
  'famili_get_togeth',
  'get_togeth_run',
  'togeth_run_snd',
  'run_snd_deliv',
  'snd_deliv_packag',
  'deliv_packag_gone',
  'packag_gone_like',
  'gone_like_half',
  'like_half_hour',
  'half_hour_anyway',
  'hour_anyway_got',
  'anyway_got_back',
  'got_back_differ',
  'back_differ_cloth',
  'differ_cloth_clearli',
  'cloth_clearli_upset',
  'clearli_upset_ask',
  'upset_ask_happen',
  'ask_happen_sister',
  'happen_sister_told',
  'sister_told_wet',
  'told_wet_chocol',
  'wet_chocol_pop',
  'chocol_pop_thing',
  'pop_thing_girl',
  'thing_girl_would',
  'girl_would_never',
  'would_never_wet',
  'never_wet_purpos',
  'wet_purpos_extrem',
  'purpos_extrem_anxieti',
  'extrem_anxieti_surround',
  'anxieti_surround_toilet',
  'surround_toilet_point',
  'toilet_point_therapi',
  'point_therapi_know',
  'therapi_know_anxieti',
  'know_anxieti_caus',
  'anxieti_caus_pretti',
  'caus_pretti_sever',
  'pretti_sever_clearli',
  'sever_clearli_distress',
  'clearli_distress_took',
  'distress_took_home',
  'took_home_car',
  'home_car_broke',
  'car_broke_sob',
  'broke_sob_unabl',
  'sob_unabl_tell',
  'unabl_tell_happen',
  'tell_happen_soon',
  'happen_soon_got',
  'soon_got_home',
  'got_home_took',
  'home_took_upstair',
  'took_upstair_put',
  'upstair_put_pull',
  'put_pull_pull',
  'pull_pull_access',
  'pull_access_recommend',
  'access_recommend_control',
  'recommend_control_super',
  'control_super_cuddli',
  'super_cuddli_sinc',
  'cuddli_sinc_use',
  'sinc_use_aav',
  'use_aav_devic',
  'aav_devic_sign',
  'devic_sign_two',
  'sign_two_therapist',
  'two_therapist_due',
  'therapist_due_see',
  'due_see_next',
  'see_next_week',
  'next_week_see',
  'week_see_theyll',
  'see_theyll_abl',
  'theyll_abl_help',
  'abl_help_understand',
  'help_understand_happen',
  'understand_happen_famili',
  'happen_famili_aw',
  'famili_aw_sister',
  'aw_sister_mainli',
  'sister_mainli_still',
  'mainli_still_claim',
  'still_claim_brat',
  'claim_brat_attent',
  'brat_attent_ive',
  'attent_ive_sinc',
  'ive_sinc_told',
  'sinc_told_everi',
  'told_everi_famili',
  'everi_famili_member',
  'famili_member_see',
  'member_see_truth',
  'see_truth_told',
  'truth_told_may',
  'told_may_overkil',
  'may_overkil_think',
  'overkil_think_daughter',
  'think_daughter_would',
  'daughter_would_want',
  'would_want_see',
  'want_see_anyon',
  'see_anyon_anyway',
  'anyon_anyway_obvious',
  'anyway_obvious_upset',
  'obvious_upset_lot',
  'upset_lot_peopl',
  'lot_peopl_especi',
  'peopl_especi_know',
  'especi_know_happen',
  'know_happen_im',
  'happen_im_stand',
  'im_stand_statement',
  'stand_statement_-',
  'statement_-_sister',
  '-_sister_tell',
  'sister_tell_back',
  'tell_back_pressur',
  'back_pressur_famili',
  'pressur_famili_member',
  'famili_member_may',
  'member_may_help',
  'may_help_along',
  'help_along_im',
  'along_im_slightli',
  'im_slightli_concern',
  'slightli_concern_im',
  'concern_im_major',
  'im_major_ass',
  'major_ass_though',
  'ass_though_want',
  'though_want_see',
  'want_see_cant',
  'see_cant_im',
  'cant_im_start',
  'im_start_feel',
  'start_feel_quit',
  'feel_quit_bad',
  'quit_bad_despit',
  'bad_despit_explain',
  'despit_explain_situat',
  'explain_situat_full',
  'situat_full_ass',
  'full_ass_eta',
  'ass_eta_daughter',
  'eta_daughter_father',
  'daughter_father_although',
  'father_although_appreci',
  'although_appreci_mama',
  'appreci_mama_bear',
  'mama_bear_comment',
  'bear_comment_lol',
  'comment_lol_eta',
  'lol_eta_updat',
  'eta_updat_updat',
  'updat_updat_post',
  'updat_post_httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app',
  'post_httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app_&',
  'httpswwwredditcomramitheassholecommentssrukjupdate_aita_for_not_allowing_my_family_to_see_myutm_medium=android_app_&_utm_source=shar'],
 ['obligatori',
  'throwawaylong',
  'time',
  'lurker',
  'disclaim',
  'appar',
  'matter',
  'month',
  'ago',
  'sister',
  'announc',
  'go',
  'get',
  'marri',
  'plan',
  'process',
  'took',
  'date',
  'venu',
  'agre',
  'sister',
  'babi',
  'love',
  'cri',
  'cri',
  'time',
  'unless',
  'someon',
  'take',
  'outsid',
  'fresh',
  'air',
  'day',
  'ago',
  'wed',
  'start',
  'town',
  'miss',
  'night',
  'wed',
  'basic',
  'get-togeth',
  'period',
  'famili',
  'member',
  'big',
  'parti',
  'show',
  'ceremoni',
  'recept',
  'second',
  'got',
  'sister',
  'ask',
  'take',
  'babi',
  'outsid',
  'order',
  'calm',
  'agre',
  'ceremoni',
  'start',
  'yet',
  'ask',
  'take',
  'babi',
  'outsid',
  'later',
  'ask',
  'babi',
  'sitter',
  'said',
  'spent',
  'money',
  'ceremoni',
  'parti',
  'kind',
  'annoy',
  'want',
  'sit',
  'ceremoni',
  'everyon',
  'jump',
  'tell',
  'sister',
  'favour',
  'day',
  'ask',
  'expect',
  'take',
  'babi',
  'fresh',
  'air',
  'gave',
  'huge',
  'list',
  'time',
  'basic',
  'meant',
  'miss',
  'import',
  'part',
  'exchang',
  'vow',
  'recept',
  'aisl',
  'walk',
  'read',
  'kiss',
  'etc',
  'figur',
  'total',
  'would',
  'minut',
  'actual',
  'sit',
  'insid',
  'rest',
  'babi',
  'point',
  'said',
  'someon',
  'would',
  'videotap',
  'convinc',
  'want',
  'watch',
  'sister',
  'reach',
  'mileston',
  'came',
  'told',
  'someon',
  'els',
  'could',
  'watch',
  'babi',
  'brother',
  'want',
  'watch',
  'wed',
  'miss',
  'get',
  'marri',
  'told',
  'realli',
  'mad',
  'tri',
  'show',
  'outsid',
  'ask',
  'recept',
  'told',
  'oh',
  'miss',
  '\\',
  '[',
  'babi',
  'name\\',
  ']',
  'need',
  'outsid',
  'fed',
  'final',
  'straw',
  'mother',
  'hold',
  'babi',
  'slip',
  'left',
  'next',
  'day',
  'get',
  'call',
  'sister',
  'scream',
  'ruin',
  'wed',
  'babi',
  'stop',
  'cri',
  'told',
  'left',
  'treat',
  'like',
  'babysitt',
  'instead',
  'guestfamili',
  'member',
  'said',
  'fault',
  'get',
  'nanni',
  'ask',
  'friend',
  'sinc',
  'ive',
  'nuke',
  'call',
  'famili',
  'call',
  'selfish',
  'tell',
  'im',
  'effect',
  'disown',
  'unless',
  'apologis',
  'see',
  'reason',
  'aita',
  'obligatori_throwawaylong',
  'throwawaylong_time',
  'time_lurker',
  'lurker_disclaim',
  'disclaim_appar',
  'appar_matter',
  'matter_month',
  'month_ago',
  'ago_sister',
  'sister_announc',
  'announc_go',
  'go_get',
  'get_marri',
  'marri_plan',
  'plan_process',
  'process_took',
  'took_date',
  'date_venu',
  'venu_agre',
  'agre_sister',
  'sister_babi',
  'babi_love',
  'love_cri',
  'cri_cri',
  'cri_time',
  'time_unless',
  'unless_someon',
  'someon_take',
  'take_outsid',
  'outsid_fresh',
  'fresh_air',
  'air_day',
  'day_ago',
  'ago_wed',
  'wed_start',
  'start_town',
  'town_miss',
  'miss_night',
  'night_wed',
  'wed_basic',
  'basic_get-togeth',
  'get-togeth_period',
  'period_famili',
  'famili_member',
  'member_big',
  'big_parti',
  'parti_show',
  'show_ceremoni',
  'ceremoni_recept',
  'recept_second',
  'second_got',
  'got_sister',
  'sister_ask',
  'ask_take',
  'take_babi',
  'babi_outsid',
  'outsid_order',
  'order_calm',
  'calm_agre',
  'agre_ceremoni',
  'ceremoni_start',
  'start_yet',
  'yet_ask',
  'ask_take',
  'take_babi',
  'babi_outsid',
  'outsid_later',
  'later_ask',
  'ask_babi',
  'babi_sitter',
  'sitter_said',
  'said_spent',
  'spent_money',
  'money_ceremoni',
  'ceremoni_parti',
  'parti_kind',
  'kind_annoy',
  'annoy_want',
  'want_sit',
  'sit_ceremoni',
  'ceremoni_everyon',
  'everyon_jump',
  'jump_tell',
  'tell_sister',
  'sister_favour',
  'favour_day',
  'day_ask',
  'ask_expect',
  'expect_take',
  'take_babi',
  'babi_fresh',
  'fresh_air',
  'air_gave',
  'gave_huge',
  'huge_list',
  'list_time',
  'time_basic',
  'basic_meant',
  'meant_miss',
  'miss_import',
  'import_part',
  'part_exchang',
  'exchang_vow',
  'vow_recept',
  'recept_aisl',
  'aisl_walk',
  'walk_read',
  'read_kiss',
  'kiss_etc',
  'etc_figur',
  'figur_total',
  'total_would',
  'would_minut',
  'minut_actual',
  'actual_sit',
  'sit_insid',
  'insid_rest',
  'rest_babi',
  'babi_point',
  'point_said',
  'said_someon',
  'someon_would',
  'would_videotap',
  'videotap_convinc',
  'convinc_want',
  'want_watch',
  'watch_sister',
  'sister_reach',
  'reach_mileston',
  'mileston_came',
  'came_told',
  'told_someon',
  'someon_els',
  'els_could',
  'could_watch',
  'watch_babi',
  'babi_brother',
  'brother_want',
  'want_watch',
  'watch_wed',
  'wed_miss',
  'miss_get',
  'get_marri',
  'marri_told',
  'told_realli',
  'realli_mad',
  'mad_tri',
  'tri_show',
  'show_outsid',
  'outsid_ask',
  'ask_recept',
  'recept_told',
  'told_oh',
  'oh_miss',
  'miss_\\',
  '\\_[',
  '[_babi',
  'babi_name\\',
  'name\\_]',
  ']_need',
  'need_outsid',
  'outsid_fed',
  'fed_final',
  'final_straw',
  'straw_mother',
  'mother_hold',
  'hold_babi',
  'babi_slip',
  'slip_left',
  'left_next',
  'next_day',
  'day_get',
  'get_call',
  'call_sister',
  'sister_scream',
  'scream_ruin',
  'ruin_wed',
  'wed_babi',
  'babi_stop',
  'stop_cri',
  'cri_told',
  'told_left',
  'left_treat',
  'treat_like',
  'like_babysitt',
  'babysitt_instead',
  'instead_guestfamili',
  'guestfamili_member',
  'member_said',
  'said_fault',
  'fault_get',
  'get_nanni',
  'nanni_ask',
  'ask_friend',
  'friend_sinc',
  'sinc_ive',
  'ive_nuke',
  'nuke_call',
  'call_famili',
  'famili_call',
  'call_selfish',
  'selfish_tell',
  'tell_im',
  'im_effect',
  'effect_disown',
  'disown_unless',
  'unless_apologis',
  'apologis_see',
  'see_reason',
  'reason_aita',
  'obligatori_throwawaylong_time',
  'throwawaylong_time_lurker',
  'time_lurker_disclaim',
  'lurker_disclaim_appar',
  'disclaim_appar_matter',
  'appar_matter_month',
  'matter_month_ago',
  'month_ago_sister',
  'ago_sister_announc',
  'sister_announc_go',
  'announc_go_get',
  'go_get_marri',
  'get_marri_plan',
  'marri_plan_process',
  'plan_process_took',
  'process_took_date',
  'took_date_venu',
  'date_venu_agre',
  'venu_agre_sister',
  'agre_sister_babi',
  'sister_babi_love',
  'babi_love_cri',
  'love_cri_cri',
  'cri_cri_time',
  'cri_time_unless',
  'time_unless_someon',
  'unless_someon_take',
  'someon_take_outsid',
  'take_outsid_fresh',
  'outsid_fresh_air',
  'fresh_air_day',
  'air_day_ago',
  'day_ago_wed',
  'ago_wed_start',
  'wed_start_town',
  'start_town_miss',
  'town_miss_night',
  'miss_night_wed',
  'night_wed_basic',
  'wed_basic_get-togeth',
  'basic_get-togeth_period',
  'get-togeth_period_famili',
  'period_famili_member',
  'famili_member_big',
  'member_big_parti',
  'big_parti_show',
  'parti_show_ceremoni',
  'show_ceremoni_recept',
  'ceremoni_recept_second',
  'recept_second_got',
  'second_got_sister',
  'got_sister_ask',
  'sister_ask_take',
  'ask_take_babi',
  'take_babi_outsid',
  'babi_outsid_order',
  'outsid_order_calm',
  'order_calm_agre',
  'calm_agre_ceremoni',
  'agre_ceremoni_start',
  'ceremoni_start_yet',
  'start_yet_ask',
  'yet_ask_take',
  'ask_take_babi',
  'take_babi_outsid',
  'babi_outsid_later',
  'outsid_later_ask',
  'later_ask_babi',
  'ask_babi_sitter',
  'babi_sitter_said',
  'sitter_said_spent',
  'said_spent_money',
  'spent_money_ceremoni',
  'money_ceremoni_parti',
  'ceremoni_parti_kind',
  'parti_kind_annoy',
  'kind_annoy_want',
  'annoy_want_sit',
  'want_sit_ceremoni',
  'sit_ceremoni_everyon',
  'ceremoni_everyon_jump',
  'everyon_jump_tell',
  'jump_tell_sister',
  'tell_sister_favour',
  'sister_favour_day',
  'favour_day_ask',
  'day_ask_expect',
  'ask_expect_take',
  'expect_take_babi',
  'take_babi_fresh',
  'babi_fresh_air',
  'fresh_air_gave',
  'air_gave_huge',
  'gave_huge_list',
  'huge_list_time',
  'list_time_basic',
  'time_basic_meant',
  'basic_meant_miss',
  'meant_miss_import',
  'miss_import_part',
  'import_part_exchang',
  'part_exchang_vow',
  'exchang_vow_recept',
  'vow_recept_aisl',
  'recept_aisl_walk',
  'aisl_walk_read',
  'walk_read_kiss',
  'read_kiss_etc',
  'kiss_etc_figur',
  'etc_figur_total',
  'figur_total_would',
  'total_would_minut',
  'would_minut_actual',
  'minut_actual_sit',
  'actual_sit_insid',
  'sit_insid_rest',
  'insid_rest_babi',
  'rest_babi_point',
  'babi_point_said',
  'point_said_someon',
  'said_someon_would',
  'someon_would_videotap',
  'would_videotap_convinc',
  'videotap_convinc_want',
  'convinc_want_watch',
  'want_watch_sister',
  'watch_sister_reach',
  'sister_reach_mileston',
  'reach_mileston_came',
  'mileston_came_told',
  'came_told_someon',
  'told_someon_els',
  'someon_els_could',
  'els_could_watch',
  'could_watch_babi',
  'watch_babi_brother',
  'babi_brother_want',
  'brother_want_watch',
  'want_watch_wed',
  'watch_wed_miss',
  'wed_miss_get',
  'miss_get_marri',
  'get_marri_told',
  'marri_told_realli',
  'told_realli_mad',
  'realli_mad_tri',
  'mad_tri_show',
  'tri_show_outsid',
  'show_outsid_ask',
  'outsid_ask_recept',
  'ask_recept_told',
  'recept_told_oh',
  'told_oh_miss',
  'oh_miss_\\',
  'miss_\\_[',
  '\\_[_babi',
  '[_babi_name\\',
  'babi_name\\_]',
  'name\\_]_need',
  ']_need_outsid',
  'need_outsid_fed',
  'outsid_fed_final',
  'fed_final_straw',
  'final_straw_mother',
  'straw_mother_hold',
  'mother_hold_babi',
  'hold_babi_slip',
  'babi_slip_left',
  'slip_left_next',
  'left_next_day',
  'next_day_get',
  'day_get_call',
  'get_call_sister',
  'call_sister_scream',
  'sister_scream_ruin',
  'scream_ruin_wed',
  'ruin_wed_babi',
  'wed_babi_stop',
  'babi_stop_cri',
  'stop_cri_told',
  'cri_told_left',
  'told_left_treat',
  'left_treat_like',
  'treat_like_babysitt',
  'like_babysitt_instead',
  'babysitt_instead_guestfamili',
  'instead_guestfamili_member',
  'guestfamili_member_said',
  'member_said_fault',
  'said_fault_get',
  'fault_get_nanni',
  'get_nanni_ask',
  'nanni_ask_friend',
  'ask_friend_sinc',
  'friend_sinc_ive',
  'sinc_ive_nuke',
  'ive_nuke_call',
  'nuke_call_famili',
  'call_famili_call',
  'famili_call_selfish',
  'call_selfish_tell',
  'selfish_tell_im',
  'tell_im_effect',
  'im_effect_disown',
  'effect_disown_unless',
  'disown_unless_apologis',
  'unless_apologis_see',
  'apologis_see_reason',
  'see_reason_aita'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'word',
  'cant',
  'express',
  'much',
  'meant',
  'get',
  'much',
  'love',
  'last',
  'post',
  'everyon',
  'support',
  'action',
  'also',
  'acknowledg',
  'hurt',
  'sweet',
  'internet',
  'mom',
  'comment',
  'dmd',
  'yall',
  'know',
  'make',
  'someon',
  'feel',
  'love',
  'even',
  'total',
  'stranger',
  'lol',
  'sinc',
  'mani',
  'peopl',
  'want',
  'updat',
  'littl',
  'heavi',
  'coupl',
  'day',
  'need',
  'time',
  'process',
  'cri',
  'theyr',
  'split',
  'heard',
  'first',
  'grandma',
  'wife',
  'guess',
  'ex',
  'legit',
  'cri',
  'phone',
  'call',
  'tell',
  '*',
  '*',
  'sorri',
  'put',
  'posit',
  'dad',
  'longer',
  'convers',
  'told',
  'everyth',
  'els',
  'made',
  'decis',
  'cant',
  'stay',
  'someon',
  'like',
  'want',
  'know',
  'disgust',
  'also',
  'tell',
  'thank',
  'someth',
  'realli',
  'need',
  'hear',
  'dad',
  'yeah',
  'regardless',
  'two',
  'peopl',
  'split',
  'marriag',
  'said',
  'hard',
  'thing',
  'feel',
  'guilti',
  'ladi',
  'heartbroken',
  'go',
  'divorc',
  'month',
  'get',
  'marri',
  'want',
  'make',
  'time',
  'reassur',
  'someon',
  'els',
  'made',
  'right',
  'choic',
  'unexpectedli',
  'though',
  'dad',
  'want',
  'us',
  'talk',
  'yesterday',
  'girlfriend',
  'want',
  'trust',
  'get',
  'point',
  'one',
  'want',
  'dinner',
  'first',
  'place',
  'one',
  'thing',
  'know',
  'want',
  'talk',
  'would',
  'mental',
  'health',
  'probabl',
  'bad',
  'risk',
  'take',
  'met',
  'yeah',
  'listen',
  'girlfriend',
  'come',
  'stuff…',
  'first',
  'time',
  'life',
  'think',
  'convers',
  'mom',
  'much',
  'love',
  'happi',
  'excit',
  'famili',
  'die',
  'told',
  'even',
  'wrong',
  'cant',
  'ever',
  'blame',
  'simpli',
  'born',
  'shed',
  'still',
  'sorri',
  'complet',
  'stay',
  'away',
  'say',
  'horribl',
  'thing',
  'grow',
  'say',
  'malici',
  'sinc',
  'seem',
  'sincer',
  'still',
  'ouch',
  'end',
  'decid',
  'relationship',
  'eachoth',
  'never',
  'gon',
  'na',
  'happen',
  'said',
  'goodby',
  'least',
  'apolog',
  'tri',
  'put',
  'posit',
  'first',
  'good',
  'thing',
  'ever',
  'tell',
  'happen',
  'wife',
  'fault',
  'went',
  'home',
  'cri',
  'day',
  'process',
  'short',
  'therapi',
  'session',
  'support',
  'aunt',
  'girlfriend',
  'get',
  'rest',
  'famili',
  'leav',
  'alon',
  'least',
  'glad',
  'end',
  'resolv',
  'total',
  'happi',
  'end',
  'know',
  'end',
  'better',
  'way',
  '[_origin',
  'origin_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar',
  'httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_word',
  'word_cant',
  'cant_express',
  'express_much',
  'much_meant',
  'meant_get',
  'get_much',
  'much_love',
  'love_last',
  'last_post',
  'post_everyon',
  'everyon_support',
  'support_action',
  'action_also',
  'also_acknowledg',
  'acknowledg_hurt',
  'hurt_sweet',
  'sweet_internet',
  'internet_mom',
  'mom_comment',
  'comment_dmd',
  'dmd_yall',
  'yall_know',
  'know_make',
  'make_someon',
  'someon_feel',
  'feel_love',
  'love_even',
  'even_total',
  'total_stranger',
  'stranger_lol',
  'lol_sinc',
  'sinc_mani',
  'mani_peopl',
  'peopl_want',
  'want_updat',
  'updat_littl',
  'littl_heavi',
  'heavi_coupl',
  'coupl_day',
  'day_need',
  'need_time',
  'time_process',
  'process_cri',
  'cri_theyr',
  'theyr_split',
  'split_heard',
  'heard_first',
  'first_grandma',
  'grandma_wife',
  'wife_guess',
  'guess_ex',
  'ex_legit',
  'legit_cri',
  'cri_phone',
  'phone_call',
  'call_tell',
  'tell_*',
  '*_*',
  '*_sorri',
  'sorri_put',
  'put_posit',
  'posit_dad',
  'dad_longer',
  'longer_convers',
  'convers_told',
  'told_everyth',
  'everyth_els',
  'els_made',
  'made_decis',
  'decis_cant',
  'cant_stay',
  'stay_someon',
  'someon_like',
  'like_want',
  'want_know',
  'know_disgust',
  'disgust_also',
  'also_tell',
  'tell_thank',
  'thank_someth',
  'someth_realli',
  'realli_need',
  'need_hear',
  'hear_dad',
  'dad_yeah',
  'yeah_regardless',
  'regardless_two',
  'two_peopl',
  'peopl_split',
  'split_marriag',
  'marriag_said',
  'said_hard',
  'hard_thing',
  'thing_feel',
  'feel_guilti',
  'guilti_ladi',
  'ladi_heartbroken',
  'heartbroken_go',
  'go_divorc',
  'divorc_month',
  'month_get',
  'get_marri',
  'marri_want',
  'want_make',
  'make_time',
  'time_reassur',
  'reassur_someon',
  'someon_els',
  'els_made',
  'made_right',
  'right_choic',
  'choic_unexpectedli',
  'unexpectedli_though',
  'though_dad',
  'dad_want',
  'want_us',
  'us_talk',
  'talk_yesterday',
  'yesterday_girlfriend',
  'girlfriend_want',
  'want_trust',
  'trust_get',
  'get_point',
  'point_one',
  'one_want',
  'want_dinner',
  'dinner_first',
  'first_place',
  'place_one',
  'one_thing',
  'thing_know',
  'know_want',
  'want_talk',
  'talk_would',
  'would_mental',
  'mental_health',
  'health_probabl',
  'probabl_bad',
  'bad_risk',
  'risk_take',
  'take_met',
  'met_yeah',
  'yeah_listen',
  'listen_girlfriend',
  'girlfriend_come',
  'come_stuff…',
  'stuff…_first',
  'first_time',
  'time_life',
  'life_think',
  'think_convers',
  'convers_mom',
  'mom_much',
  'much_love',
  'love_happi',
  'happi_excit',
  'excit_famili',
  'famili_die',
  'die_told',
  'told_even',
  'even_wrong',
  'wrong_cant',
  'cant_ever',
  'ever_blame',
  'blame_simpli',
  'simpli_born',
  'born_shed',
  'shed_still',
  'still_sorri',
  'sorri_complet',
  'complet_stay',
  'stay_away',
  'away_say',
  'say_horribl',
  'horribl_thing',
  'thing_grow',
  'grow_say',
  'say_malici',
  'malici_sinc',
  'sinc_seem',
  'seem_sincer',
  'sincer_still',
  'still_ouch',
  'ouch_end',
  'end_decid',
  'decid_relationship',
  'relationship_eachoth',
  'eachoth_never',
  'never_gon',
  'gon_na',
  'na_happen',
  'happen_said',
  'said_goodby',
  'goodby_least',
  'least_apolog',
  'apolog_tri',
  'tri_put',
  'put_posit',
  'posit_first',
  'first_good',
  'good_thing',
  'thing_ever',
  'ever_tell',
  'tell_happen',
  'happen_wife',
  'wife_fault',
  'fault_went',
  'went_home',
  'home_cri',
  'cri_day',
  'day_process',
  'process_short',
  'short_therapi',
  'therapi_session',
  'session_support',
  'support_aunt',
  'aunt_girlfriend',
  'girlfriend_get',
  'get_rest',
  'rest_famili',
  'famili_leav',
  'leav_alon',
  'alon_least',
  'least_glad',
  'glad_end',
  'end_resolv',
  'resolv_total',
  'total_happi',
  'happi_end',
  'end_know',
  'know_end',
  'end_better',
  'better_way',
  '[_origin_post',
  'origin_post_]',
  'post_]_httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar',
  ']_httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentstuydopaita_for_revealing_to_my_dads_wife_the_realutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_word',
  'utm_name=iossmf_word_cant',
  'word_cant_express',
  'cant_express_much',
  'express_much_meant',
  'much_meant_get',
  'meant_get_much',
  'get_much_love',
  'much_love_last',
  'love_last_post',
  'last_post_everyon',
  'post_everyon_support',
  'everyon_support_action',
  'support_action_also',
  'action_also_acknowledg',
  'also_acknowledg_hurt',
  'acknowledg_hurt_sweet',
  'hurt_sweet_internet',
  'sweet_internet_mom',
  'internet_mom_comment',
  'mom_comment_dmd',
  'comment_dmd_yall',
  'dmd_yall_know',
  'yall_know_make',
  'know_make_someon',
  'make_someon_feel',
  'someon_feel_love',
  'feel_love_even',
  'love_even_total',
  'even_total_stranger',
  'total_stranger_lol',
  'stranger_lol_sinc',
  'lol_sinc_mani',
  'sinc_mani_peopl',
  'mani_peopl_want',
  'peopl_want_updat',
  'want_updat_littl',
  'updat_littl_heavi',
  'littl_heavi_coupl',
  'heavi_coupl_day',
  'coupl_day_need',
  'day_need_time',
  'need_time_process',
  'time_process_cri',
  'process_cri_theyr',
  'cri_theyr_split',
  'theyr_split_heard',
  'split_heard_first',
  'heard_first_grandma',
  'first_grandma_wife',
  'grandma_wife_guess',
  'wife_guess_ex',
  'guess_ex_legit',
  'ex_legit_cri',
  'legit_cri_phone',
  'cri_phone_call',
  'phone_call_tell',
  'call_tell_*',
  'tell_*_*',
  '*_*_sorri',
  '*_sorri_put',
  'sorri_put_posit',
  'put_posit_dad',
  'posit_dad_longer',
  'dad_longer_convers',
  'longer_convers_told',
  'convers_told_everyth',
  'told_everyth_els',
  'everyth_els_made',
  'els_made_decis',
  'made_decis_cant',
  'decis_cant_stay',
  'cant_stay_someon',
  'stay_someon_like',
  'someon_like_want',
  'like_want_know',
  'want_know_disgust',
  'know_disgust_also',
  'disgust_also_tell',
  'also_tell_thank',
  'tell_thank_someth',
  'thank_someth_realli',
  'someth_realli_need',
  'realli_need_hear',
  'need_hear_dad',
  'hear_dad_yeah',
  'dad_yeah_regardless',
  'yeah_regardless_two',
  'regardless_two_peopl',
  'two_peopl_split',
  'peopl_split_marriag',
  'split_marriag_said',
  'marriag_said_hard',
  'said_hard_thing',
  'hard_thing_feel',
  'thing_feel_guilti',
  'feel_guilti_ladi',
  'guilti_ladi_heartbroken',
  'ladi_heartbroken_go',
  'heartbroken_go_divorc',
  'go_divorc_month',
  'divorc_month_get',
  'month_get_marri',
  'get_marri_want',
  'marri_want_make',
  'want_make_time',
  'make_time_reassur',
  'time_reassur_someon',
  'reassur_someon_els',
  'someon_els_made',
  'els_made_right',
  'made_right_choic',
  'right_choic_unexpectedli',
  'choic_unexpectedli_though',
  'unexpectedli_though_dad',
  'though_dad_want',
  'dad_want_us',
  'want_us_talk',
  'us_talk_yesterday',
  'talk_yesterday_girlfriend',
  'yesterday_girlfriend_want',
  'girlfriend_want_trust',
  'want_trust_get',
  'trust_get_point',
  'get_point_one',
  'point_one_want',
  'one_want_dinner',
  'want_dinner_first',
  'dinner_first_place',
  'first_place_one',
  'place_one_thing',
  'one_thing_know',
  'thing_know_want',
  'know_want_talk',
  'want_talk_would',
  'talk_would_mental',
  'would_mental_health',
  'mental_health_probabl',
  'health_probabl_bad',
  'probabl_bad_risk',
  'bad_risk_take',
  'risk_take_met',
  'take_met_yeah',
  'met_yeah_listen',
  'yeah_listen_girlfriend',
  'listen_girlfriend_come',
  'girlfriend_come_stuff…',
  'come_stuff…_first',
  'stuff…_first_time',
  'first_time_life',
  'time_life_think',
  'life_think_convers',
  'think_convers_mom',
  'convers_mom_much',
  'mom_much_love',
  'much_love_happi',
  'love_happi_excit',
  'happi_excit_famili',
  'excit_famili_die',
  'famili_die_told',
  'die_told_even',
  'told_even_wrong',
  'even_wrong_cant',
  'wrong_cant_ever',
  'cant_ever_blame',
  'ever_blame_simpli',
  'blame_simpli_born',
  'simpli_born_shed',
  'born_shed_still',
  'shed_still_sorri',
  'still_sorri_complet',
  'sorri_complet_stay',
  'complet_stay_away',
  'stay_away_say',
  'away_say_horribl',
  'say_horribl_thing',
  'horribl_thing_grow',
  'thing_grow_say',
  'grow_say_malici',
  'say_malici_sinc',
  'malici_sinc_seem',
  'sinc_seem_sincer',
  'seem_sincer_still',
  'sincer_still_ouch',
  'still_ouch_end',
  'ouch_end_decid',
  'end_decid_relationship',
  'decid_relationship_eachoth',
  'relationship_eachoth_never',
  'eachoth_never_gon',
  'never_gon_na',
  'gon_na_happen',
  'na_happen_said',
  'happen_said_goodby',
  'said_goodby_least',
  'goodby_least_apolog',
  'least_apolog_tri',
  'apolog_tri_put',
  'tri_put_posit',
  'put_posit_first',
  'posit_first_good',
  'first_good_thing',
  'good_thing_ever',
  'thing_ever_tell',
  'ever_tell_happen',
  'tell_happen_wife',
  'happen_wife_fault',
  'wife_fault_went',
  'fault_went_home',
  'went_home_cri',
  'home_cri_day',
  'cri_day_process',
  'day_process_short',
  'process_short_therapi',
  'short_therapi_session',
  'therapi_session_support',
  'session_support_aunt',
  'support_aunt_girlfriend',
  'aunt_girlfriend_get',
  'girlfriend_get_rest',
  'get_rest_famili',
  'rest_famili_leav',
  'famili_leav_alon',
  'leav_alon_least',
  'alon_least_glad',
  'least_glad_end',
  'glad_end_resolv',
  'end_resolv_total',
  'resolv_total_happi',
  'total_happi_end',
  'happi_end_know',
  'end_know_end',
  'know_end_better',
  'end_better_way'],
 ['recent',
  'move',
  'new',
  'neighborhood',
  'neighbor',
  'love',
  'especi',
  'next',
  'door',
  'neighbor',
  'bless',
  'heart',
  'wink',
  'wink',
  'marri',
  'kid',
  'notic',
  'look',
  'toward',
  'hous',
  'far',
  'id',
  'caught',
  'twice',
  'binocular',
  'basic',
  'seemingli',
  'look',
  'live',
  'room',
  'hate',
  'confront',
  'close',
  'curtain',
  'go',
  'day',
  'start',
  'escal',
  'day',
  'peek',
  'backyard',
  'sit',
  'balconi',
  'binocular',
  'fell',
  'backyard',
  'look',
  'gone',
  'knew',
  'saw',
  'took',
  'binocular',
  'put',
  'insid',
  'even',
  'came',
  'knock',
  'door',
  'ask',
  'done',
  'whatnot',
  'roll',
  'eye',
  'kept',
  'civil',
  'brought',
  'binocular',
  'said',
  'mustv',
  'fell',
  'backyard',
  'earlier',
  'today',
  'like',
  'hmm',
  'wonder',
  'happen',
  'said',
  'someth',
  'kid',
  'probabl',
  'mess',
  'ask',
  'could',
  'go',
  'get',
  'said',
  'give',
  'unless',
  'wife',
  'come',
  'get',
  'look',
  'shock',
  'angri',
  'said',
  'binocular',
  'theyr',
  'special',
  'militari',
  'said',
  'wife',
  'noth',
  'told',
  'give',
  'back',
  'wife',
  'show',
  'ask',
  'send',
  'threw',
  'fit',
  'say',
  'cant',
  'send',
  'shell',
  'misunderstand',
  'situat',
  'told',
  'misunderstand',
  'kid',
  'realli',
  'one',
  'use',
  'binocular',
  'insist',
  'give',
  'back',
  'til',
  'wife',
  'come',
  'get',
  'got',
  'argument',
  'kept',
  'voic',
  'low',
  'could',
  'left',
  'look',
  'furiou',
  'complain',
  'want',
  'stir',
  'drama',
  'keep',
  'demand',
  'return',
  'binocular',
  'back',
  'leav',
  'wife',
  'aita',
  'eta',
  'forget',
  'age',
  'recent_move',
  'move_new',
  'new_neighborhood',
  'neighborhood_neighbor',
  'neighbor_love',
  'love_especi',
  'especi_next',
  'next_door',
  'door_neighbor',
  'neighbor_bless',
  'bless_heart',
  'heart_wink',
  'wink_wink',
  'wink_marri',
  'marri_kid',
  'kid_notic',
  'notic_look',
  'look_toward',
  'toward_hous',
  'hous_far',
  'far_id',
  'id_caught',
  'caught_twice',
  'twice_binocular',
  'binocular_basic',
  'basic_seemingli',
  'seemingli_look',
  'look_live',
  'live_room',
  'room_hate',
  'hate_confront',
  'confront_close',
  'close_curtain',
  'curtain_go',
  'go_day',
  'day_start',
  'start_escal',
  'escal_day',
  'day_peek',
  'peek_backyard',
  'backyard_sit',
  'sit_balconi',
  'balconi_binocular',
  'binocular_fell',
  'fell_backyard',
  'backyard_look',
  'look_gone',
  'gone_knew',
  'knew_saw',
  'saw_took',
  'took_binocular',
  'binocular_put',
  'put_insid',
  'insid_even',
  'even_came',
  'came_knock',
  'knock_door',
  'door_ask',
  'ask_done',
  'done_whatnot',
  'whatnot_roll',
  'roll_eye',
  'eye_kept',
  'kept_civil',
  'civil_brought',
  'brought_binocular',
  'binocular_said',
  'said_mustv',
  'mustv_fell',
  'fell_backyard',
  'backyard_earlier',
  'earlier_today',
  'today_like',
  'like_hmm',
  'hmm_wonder',
  'wonder_happen',
  'happen_said',
  'said_someth',
  'someth_kid',
  'kid_probabl',
  'probabl_mess',
  'mess_ask',
  'ask_could',
  'could_go',
  'go_get',
  'get_said',
  'said_give',
  'give_unless',
  'unless_wife',
  'wife_come',
  'come_get',
  'get_look',
  'look_shock',
  'shock_angri',
  'angri_said',
  'said_binocular',
  'binocular_theyr',
  'theyr_special',
  'special_militari',
  'militari_said',
  'said_wife',
  'wife_noth',
  'noth_told',
  'told_give',
  'give_back',
  'back_wife',
  'wife_show',
  'show_ask',
  'ask_send',
  'send_threw',
  'threw_fit',
  'fit_say',
  'say_cant',
  'cant_send',
  'send_shell',
  'shell_misunderstand',
  'misunderstand_situat',
  'situat_told',
  'told_misunderstand',
  'misunderstand_kid',
  'kid_realli',
  'realli_one',
  'one_use',
  'use_binocular',
  'binocular_insist',
  'insist_give',
  'give_back',
  'back_til',
  'til_wife',
  'wife_come',
  'come_get',
  'get_got',
  'got_argument',
  'argument_kept',
  'kept_voic',
  'voic_low',
  'low_could',
  'could_left',
  'left_look',
  'look_furiou',
  'furiou_complain',
  'complain_want',
  'want_stir',
  'stir_drama',
  'drama_keep',
  'keep_demand',
  'demand_return',
  'return_binocular',
  'binocular_back',
  'back_leav',
  'leav_wife',
  'wife_aita',
  'aita_eta',
  'eta_forget',
  'forget_age',
  'recent_move_new',
  'move_new_neighborhood',
  'new_neighborhood_neighbor',
  'neighborhood_neighbor_love',
  'neighbor_love_especi',
  'love_especi_next',
  'especi_next_door',
  'next_door_neighbor',
  'door_neighbor_bless',
  'neighbor_bless_heart',
  'bless_heart_wink',
  'heart_wink_wink',
  'wink_wink_marri',
  'wink_marri_kid',
  'marri_kid_notic',
  'kid_notic_look',
  'notic_look_toward',
  'look_toward_hous',
  'toward_hous_far',
  'hous_far_id',
  'far_id_caught',
  'id_caught_twice',
  'caught_twice_binocular',
  'twice_binocular_basic',
  'binocular_basic_seemingli',
  'basic_seemingli_look',
  'seemingli_look_live',
  'look_live_room',
  'live_room_hate',
  'room_hate_confront',
  'hate_confront_close',
  'confront_close_curtain',
  'close_curtain_go',
  'curtain_go_day',
  'go_day_start',
  'day_start_escal',
  'start_escal_day',
  'escal_day_peek',
  'day_peek_backyard',
  'peek_backyard_sit',
  'backyard_sit_balconi',
  'sit_balconi_binocular',
  'balconi_binocular_fell',
  'binocular_fell_backyard',
  'fell_backyard_look',
  'backyard_look_gone',
  'look_gone_knew',
  'gone_knew_saw',
  'knew_saw_took',
  'saw_took_binocular',
  'took_binocular_put',
  'binocular_put_insid',
  'put_insid_even',
  'insid_even_came',
  'even_came_knock',
  'came_knock_door',
  'knock_door_ask',
  'door_ask_done',
  'ask_done_whatnot',
  'done_whatnot_roll',
  'whatnot_roll_eye',
  'roll_eye_kept',
  'eye_kept_civil',
  'kept_civil_brought',
  'civil_brought_binocular',
  'brought_binocular_said',
  'binocular_said_mustv',
  'said_mustv_fell',
  'mustv_fell_backyard',
  'fell_backyard_earlier',
  'backyard_earlier_today',
  'earlier_today_like',
  'today_like_hmm',
  'like_hmm_wonder',
  'hmm_wonder_happen',
  'wonder_happen_said',
  'happen_said_someth',
  'said_someth_kid',
  'someth_kid_probabl',
  'kid_probabl_mess',
  'probabl_mess_ask',
  'mess_ask_could',
  'ask_could_go',
  'could_go_get',
  'go_get_said',
  'get_said_give',
  'said_give_unless',
  'give_unless_wife',
  'unless_wife_come',
  'wife_come_get',
  'come_get_look',
  'get_look_shock',
  'look_shock_angri',
  'shock_angri_said',
  'angri_said_binocular',
  'said_binocular_theyr',
  'binocular_theyr_special',
  'theyr_special_militari',
  'special_militari_said',
  'militari_said_wife',
  'said_wife_noth',
  'wife_noth_told',
  'noth_told_give',
  'told_give_back',
  'give_back_wife',
  'back_wife_show',
  'wife_show_ask',
  'show_ask_send',
  'ask_send_threw',
  'send_threw_fit',
  'threw_fit_say',
  'fit_say_cant',
  'say_cant_send',
  'cant_send_shell',
  'send_shell_misunderstand',
  'shell_misunderstand_situat',
  'misunderstand_situat_told',
  'situat_told_misunderstand',
  'told_misunderstand_kid',
  'misunderstand_kid_realli',
  'kid_realli_one',
  'realli_one_use',
  'one_use_binocular',
  'use_binocular_insist',
  'binocular_insist_give',
  'insist_give_back',
  'give_back_til',
  'back_til_wife',
  'til_wife_come',
  'wife_come_get',
  'come_get_got',
  'get_got_argument',
  'got_argument_kept',
  'argument_kept_voic',
  'kept_voic_low',
  'voic_low_could',
  'low_could_left',
  'could_left_look',
  'left_look_furiou',
  'look_furiou_complain',
  'furiou_complain_want',
  'complain_want_stir',
  'want_stir_drama',
  'stir_drama_keep',
  'drama_keep_demand',
  'keep_demand_return',
  'demand_return_binocular',
  'return_binocular_back',
  'binocular_back_leav',
  'back_leav_wife',
  'leav_wife_aita',
  'wife_aita_eta',
  'aita_eta_forget',
  'eta_forget_age'],
 ['marri',
  'wife',
  'four',
  'year',
  'usual',
  'get',
  'along',
  'fine',
  'one',
  'issu',
  'weve',
  'sinc',
  'relationship',
  'began',
  'freezer',
  'simpli',
  'put',
  'wife',
  'stuff',
  'freezer',
  'full',
  'food',
  'constantli',
  'absolut',
  'zero',
  'space',
  'put',
  'anyth',
  'first',
  'tri',
  'solv',
  'buy',
  'fridg',
  'biggest',
  'freezer',
  'could',
  'find',
  'drop',
  'nearli',
  '$',
  'grand',
  'interpret',
  'invit',
  'buy',
  '*',
  '*',
  'frozen',
  'food',
  'could',
  'play',
  'microwav',
  'dinner',
  'tetri',
  'freezer',
  'everi',
  'singl',
  'nook',
  'cranni',
  'stuf',
  'full',
  'still',
  'buy',
  'frozen',
  'food',
  'somehow',
  'find',
  'way',
  'fit',
  'worst',
  'part',
  'buy',
  'frozen',
  'food',
  'freez',
  'someth',
  'meal',
  'prep',
  'ask',
  'least',
  'three',
  'four',
  'time',
  'day',
  'im',
  'go',
  'take',
  'freezer',
  'essenti',
  'nag',
  'remov',
  'food',
  'freezer',
  'put',
  'someth',
  'touch',
  'six',
  'month',
  'place',
  'last',
  'weekend',
  'final',
  'snap',
  'bought',
  'inexpens',
  'singl',
  'door',
  'deep',
  'freezer',
  'put',
  'basement',
  'near',
  'washerdry',
  'put',
  'coupl',
  'thing',
  '--',
  'mostli',
  'frozen',
  'veggi',
  'burrito',
  'realli',
  'mention',
  'wife',
  'home',
  'brought',
  'wife',
  'got',
  'home',
  'later',
  'day',
  'went',
  'downstair',
  'laundri',
  'discov',
  'freezer',
  'excitedli',
  'ran',
  'upstair',
  'tell',
  'upstair',
  'one',
  'full',
  'actual',
  'fit',
  'food',
  'respond',
  'circumst',
  'touch',
  'freezer',
  'mine',
  'singl',
  'ice',
  'cube',
  'put',
  'told',
  'even',
  'ask',
  'knew',
  'shed',
  'mention',
  '-',
  'time',
  'day',
  'need',
  'freezer',
  'room',
  'sulk',
  'tri',
  'debat',
  'issu',
  'abl',
  'placat',
  'coupl',
  'day',
  'later',
  'went',
  'basement',
  'get',
  'someth',
  'freezer',
  'found',
  '%',
  'full',
  'microwav',
  'dinner',
  'upon',
  'check',
  'freezer',
  'kitchen',
  'found',
  'still',
  'complet',
  'fulli',
  'calmli',
  'went',
  'downstair',
  'larg',
  'garbag',
  'bag',
  'threw',
  'everyth',
  'toss',
  'trash',
  'bin',
  'found',
  'padlock',
  'lie',
  'around',
  'lock',
  'chain',
  'later',
  'day',
  'wife',
  'brought',
  'frozen',
  'food',
  'put',
  'new',
  'freezer',
  'got',
  'downstair',
  'notic',
  'lock',
  'flip',
  'lid',
  'told',
  'control',
  'told',
  'way',
  'ever',
  'use',
  'freezer',
  'threw',
  'someth',
  'like',
  'tantrum',
  'left',
  'mom',
  'hous',
  'came',
  'back',
  'later',
  'day',
  'told',
  'hour',
  'unlock',
  'freezer',
  'noth',
  'realli',
  'happen',
  'hour',
  'complet',
  'ignor',
  'everyth',
  'say',
  'think',
  'action',
  'justifi',
  'wrong',
  '*',
  '*',
  'edit',
  '*',
  '*',
  'thank',
  'comment',
  'everyon',
  'someth',
  'weird',
  'peopl',
  'assum',
  'never',
  'talk',
  'weve',
  'marri',
  'four',
  'year',
  'ongo',
  'issu',
  'realli',
  'think',
  'ive',
  'never',
  'brought',
  'frustrat',
  'tri',
  'put',
  'someth',
  'freezer',
  'realli',
  'think',
  'day',
  'hey',
  'go',
  'take',
  'freezer',
  'question',
  'never',
  'result',
  'argument',
  'clear',
  'comment',
  'suggest',
  'may',
  'want',
  'talk',
  'someon',
  'issu',
  'absolut',
  'lost',
  'go',
  'far',
  'threaten',
  'divorc',
  'peopl',
  'say',
  'spent',
  '$',
  'freezer',
  'avoid',
  'convers',
  '🙄',
  'want',
  'freez',
  'coupl',
  'fuck',
  'microwav',
  'burrito',
  'without',
  'ask',
  'day',
  'im',
  'go',
  'eat',
  'unless',
  'legitim',
  'drug',
  'wife',
  'carri',
  'limp',
  'bodi',
  'therapi',
  'go',
  'peopl',
  'think',
  'commun',
  'make',
  'everi',
  'singl',
  'issu',
  'go',
  'away',
  'obvious',
  'never',
  'convers',
  'person',
  'incap',
  'see',
  'reason',
  'marri_wife',
  'wife_four',
  'four_year',
  'year_usual',
  'usual_get',
  'get_along',
  'along_fine',
  'fine_one',
  'one_issu',
  'issu_weve',
  'weve_sinc',
  'sinc_relationship',
  'relationship_began',
  'began_freezer',
  'freezer_simpli',
  'simpli_put',
  'put_wife',
  'wife_stuff',
  'stuff_freezer',
  'freezer_full',
  'full_food',
  'food_constantli',
  'constantli_absolut',
  'absolut_zero',
  'zero_space',
  'space_put',
  'put_anyth',
  'anyth_first',
  'first_tri',
  'tri_solv',
  'solv_buy',
  'buy_fridg',
  'fridg_biggest',
  'biggest_freezer',
  'freezer_could',
  'could_find',
  'find_drop',
  'drop_nearli',
  'nearli_$',
  '$_grand',
  'grand_interpret',
  'interpret_invit',
  'invit_buy',
  'buy_*',
  '*_*',
  '*_frozen',
  'frozen_food',
  'food_could',
  'could_play',
  'play_microwav',
  'microwav_dinner',
  'dinner_tetri',
  'tetri_freezer',
  'freezer_everi',
  'everi_singl',
  'singl_nook',
  'nook_cranni',
  'cranni_stuf',
  'stuf_full',
  'full_still',
  'still_buy',
  'buy_frozen',
  'frozen_food',
  'food_somehow',
  'somehow_find',
  'find_way',
  'way_fit',
  'fit_worst',
  'worst_part',
  'part_buy',
  'buy_frozen',
  'frozen_food',
  'food_freez',
  'freez_someth',
  'someth_meal',
  'meal_prep',
  'prep_ask',
  'ask_least',
  'least_three',
  'three_four',
  'four_time',
  'time_day',
  'day_im',
  'im_go',
  'go_take',
  'take_freezer',
  'freezer_essenti',
  'essenti_nag',
  'nag_remov',
  'remov_food',
  'food_freezer',
  'freezer_put',
  'put_someth',
  'someth_touch',
  'touch_six',
  'six_month',
  'month_place',
  'place_last',
  'last_weekend',
  'weekend_final',
  'final_snap',
  'snap_bought',
  'bought_inexpens',
  'inexpens_singl',
  'singl_door',
  'door_deep',
  'deep_freezer',
  'freezer_put',
  'put_basement',
  'basement_near',
  'near_washerdry',
  'washerdry_put',
  'put_coupl',
  'coupl_thing',
  'thing_--',
  '--_mostli',
  'mostli_frozen',
  'frozen_veggi',
  'veggi_burrito',
  'burrito_realli',
  'realli_mention',
  'mention_wife',
  'wife_home',
  'home_brought',
  'brought_wife',
  'wife_got',
  'got_home',
  'home_later',
  'later_day',
  'day_went',
  'went_downstair',
  'downstair_laundri',
  'laundri_discov',
  'discov_freezer',
  'freezer_excitedli',
  'excitedli_ran',
  'ran_upstair',
  'upstair_tell',
  'tell_upstair',
  'upstair_one',
  'one_full',
  'full_actual',
  'actual_fit',
  'fit_food',
  'food_respond',
  'respond_circumst',
  'circumst_touch',
  'touch_freezer',
  'freezer_mine',
  'mine_singl',
  'singl_ice',
  'ice_cube',
  'cube_put',
  'put_told',
  'told_even',
  'even_ask',
  'ask_knew',
  'knew_shed',
  'shed_mention',
  'mention_-',
  '-_time',
  'time_day',
  'day_need',
  'need_freezer',
  'freezer_room',
  'room_sulk',
  'sulk_tri',
  'tri_debat',
  'debat_issu',
  'issu_abl',
  'abl_placat',
  'placat_coupl',
  'coupl_day',
  'day_later',
  'later_went',
  'went_basement',
  'basement_get',
  'get_someth',
  'someth_freezer',
  'freezer_found',
  'found_%',
  '%_full',
  'full_microwav',
  'microwav_dinner',
  'dinner_upon',
  'upon_check',
  'check_freezer',
  'freezer_kitchen',
  'kitchen_found',
  'found_still',
  'still_complet',
  'complet_fulli',
  'fulli_calmli',
  'calmli_went',
  'went_downstair',
  'downstair_larg',
  'larg_garbag',
  'garbag_bag',
  'bag_threw',
  'threw_everyth',
  'everyth_toss',
  'toss_trash',
  'trash_bin',
  'bin_found',
  'found_padlock',
  'padlock_lie',
  'lie_around',
  'around_lock',
  'lock_chain',
  'chain_later',
  'later_day',
  'day_wife',
  'wife_brought',
  'brought_frozen',
  'frozen_food',
  'food_put',
  'put_new',
  'new_freezer',
  'freezer_got',
  'got_downstair',
  'downstair_notic',
  'notic_lock',
  'lock_flip',
  'flip_lid',
  'lid_told',
  'told_control',
  'control_told',
  'told_way',
  'way_ever',
  'ever_use',
  'use_freezer',
  'freezer_threw',
  'threw_someth',
  'someth_like',
  'like_tantrum',
  'tantrum_left',
  'left_mom',
  'mom_hous',
  'hous_came',
  'came_back',
  'back_later',
  'later_day',
  'day_told',
  'told_hour',
  'hour_unlock',
  'unlock_freezer',
  'freezer_noth',
  'noth_realli',
  'realli_happen',
  'happen_hour',
  'hour_complet',
  'complet_ignor',
  'ignor_everyth',
  'everyth_say',
  'say_think',
  'think_action',
  'action_justifi',
  'justifi_wrong',
  'wrong_*',
  '*_*',
  '*_edit',
  'edit_*',
  '*_*',
  '*_thank',
  'thank_comment',
  'comment_everyon',
  'everyon_someth',
  'someth_weird',
  'weird_peopl',
  'peopl_assum',
  'assum_never',
  'never_talk',
  'talk_weve',
  'weve_marri',
  'marri_four',
  'four_year',
  'year_ongo',
  'ongo_issu',
  'issu_realli',
  'realli_think',
  'think_ive',
  'ive_never',
  'never_brought',
  'brought_frustrat',
  'frustrat_tri',
  'tri_put',
  'put_someth',
  'someth_freezer',
  'freezer_realli',
  'realli_think',
  'think_day',
  'day_hey',
  'hey_go',
  'go_take',
  'take_freezer',
  'freezer_question',
  'question_never',
  'never_result',
  'result_argument',
  'argument_clear',
  'clear_comment',
  'comment_suggest',
  'suggest_may',
  'may_want',
  'want_talk',
  'talk_someon',
  'someon_issu',
  'issu_absolut',
  'absolut_lost',
  'lost_go',
  'go_far',
  'far_threaten',
  'threaten_divorc',
  'divorc_peopl',
  'peopl_say',
  'say_spent',
  'spent_$',
  '$_freezer',
  'freezer_avoid',
  'avoid_convers',
  'convers_🙄',
  '🙄_want',
  'want_freez',
  'freez_coupl',
  'coupl_fuck',
  'fuck_microwav',
  'microwav_burrito',
  'burrito_without',
  'without_ask',
  'ask_day',
  'day_im',
  'im_go',
  'go_eat',
  'eat_unless',
  'unless_legitim',
  'legitim_drug',
  'drug_wife',
  'wife_carri',
  'carri_limp',
  'limp_bodi',
  'bodi_therapi',
  'therapi_go',
  'go_peopl',
  'peopl_think',
  'think_commun',
  'commun_make',
  'make_everi',
  'everi_singl',
  'singl_issu',
  'issu_go',
  'go_away',
  'away_obvious',
  'obvious_never',
  'never_convers',
  'convers_person',
  'person_incap',
  'incap_see',
  'see_reason',
  'marri_wife_four',
  'wife_four_year',
  'four_year_usual',
  'year_usual_get',
  'usual_get_along',
  'get_along_fine',
  'along_fine_one',
  'fine_one_issu',
  'one_issu_weve',
  'issu_weve_sinc',
  'weve_sinc_relationship',
  'sinc_relationship_began',
  'relationship_began_freezer',
  'began_freezer_simpli',
  'freezer_simpli_put',
  'simpli_put_wife',
  'put_wife_stuff',
  'wife_stuff_freezer',
  'stuff_freezer_full',
  'freezer_full_food',
  'full_food_constantli',
  'food_constantli_absolut',
  'constantli_absolut_zero',
  'absolut_zero_space',
  'zero_space_put',
  'space_put_anyth',
  'put_anyth_first',
  'anyth_first_tri',
  'first_tri_solv',
  'tri_solv_buy',
  'solv_buy_fridg',
  'buy_fridg_biggest',
  'fridg_biggest_freezer',
  'biggest_freezer_could',
  'freezer_could_find',
  'could_find_drop',
  'find_drop_nearli',
  'drop_nearli_$',
  'nearli_$_grand',
  '$_grand_interpret',
  'grand_interpret_invit',
  'interpret_invit_buy',
  'invit_buy_*',
  'buy_*_*',
  '*_*_frozen',
  '*_frozen_food',
  'frozen_food_could',
  'food_could_play',
  'could_play_microwav',
  'play_microwav_dinner',
  'microwav_dinner_tetri',
  'dinner_tetri_freezer',
  'tetri_freezer_everi',
  'freezer_everi_singl',
  'everi_singl_nook',
  'singl_nook_cranni',
  'nook_cranni_stuf',
  'cranni_stuf_full',
  'stuf_full_still',
  'full_still_buy',
  'still_buy_frozen',
  'buy_frozen_food',
  'frozen_food_somehow',
  'food_somehow_find',
  'somehow_find_way',
  'find_way_fit',
  'way_fit_worst',
  'fit_worst_part',
  'worst_part_buy',
  'part_buy_frozen',
  'buy_frozen_food',
  'frozen_food_freez',
  'food_freez_someth',
  'freez_someth_meal',
  'someth_meal_prep',
  'meal_prep_ask',
  'prep_ask_least',
  'ask_least_three',
  'least_three_four',
  'three_four_time',
  'four_time_day',
  'time_day_im',
  'day_im_go',
  'im_go_take',
  'go_take_freezer',
  'take_freezer_essenti',
  'freezer_essenti_nag',
  'essenti_nag_remov',
  'nag_remov_food',
  'remov_food_freezer',
  'food_freezer_put',
  'freezer_put_someth',
  'put_someth_touch',
  'someth_touch_six',
  'touch_six_month',
  'six_month_place',
  'month_place_last',
  'place_last_weekend',
  'last_weekend_final',
  'weekend_final_snap',
  'final_snap_bought',
  'snap_bought_inexpens',
  'bought_inexpens_singl',
  'inexpens_singl_door',
  'singl_door_deep',
  'door_deep_freezer',
  'deep_freezer_put',
  'freezer_put_basement',
  'put_basement_near',
  'basement_near_washerdry',
  'near_washerdry_put',
  'washerdry_put_coupl',
  'put_coupl_thing',
  'coupl_thing_--',
  'thing_--_mostli',
  '--_mostli_frozen',
  'mostli_frozen_veggi',
  'frozen_veggi_burrito',
  'veggi_burrito_realli',
  'burrito_realli_mention',
  'realli_mention_wife',
  'mention_wife_home',
  'wife_home_brought',
  'home_brought_wife',
  'brought_wife_got',
  'wife_got_home',
  'got_home_later',
  'home_later_day',
  'later_day_went',
  'day_went_downstair',
  'went_downstair_laundri',
  'downstair_laundri_discov',
  'laundri_discov_freezer',
  'discov_freezer_excitedli',
  'freezer_excitedli_ran',
  'excitedli_ran_upstair',
  'ran_upstair_tell',
  'upstair_tell_upstair',
  'tell_upstair_one',
  'upstair_one_full',
  'one_full_actual',
  'full_actual_fit',
  'actual_fit_food',
  'fit_food_respond',
  'food_respond_circumst',
  'respond_circumst_touch',
  'circumst_touch_freezer',
  'touch_freezer_mine',
  'freezer_mine_singl',
  'mine_singl_ice',
  'singl_ice_cube',
  'ice_cube_put',
  'cube_put_told',
  'put_told_even',
  'told_even_ask',
  'even_ask_knew',
  'ask_knew_shed',
  'knew_shed_mention',
  'shed_mention_-',
  'mention_-_time',
  '-_time_day',
  'time_day_need',
  'day_need_freezer',
  'need_freezer_room',
  'freezer_room_sulk',
  'room_sulk_tri',
  'sulk_tri_debat',
  'tri_debat_issu',
  'debat_issu_abl',
  'issu_abl_placat',
  'abl_placat_coupl',
  'placat_coupl_day',
  'coupl_day_later',
  'day_later_went',
  'later_went_basement',
  'went_basement_get',
  'basement_get_someth',
  'get_someth_freezer',
  'someth_freezer_found',
  'freezer_found_%',
  'found_%_full',
  '%_full_microwav',
  'full_microwav_dinner',
  'microwav_dinner_upon',
  'dinner_upon_check',
  'upon_check_freezer',
  'check_freezer_kitchen',
  'freezer_kitchen_found',
  'kitchen_found_still',
  'found_still_complet',
  'still_complet_fulli',
  'complet_fulli_calmli',
  'fulli_calmli_went',
  'calmli_went_downstair',
  'went_downstair_larg',
  'downstair_larg_garbag',
  'larg_garbag_bag',
  'garbag_bag_threw',
  'bag_threw_everyth',
  'threw_everyth_toss',
  'everyth_toss_trash',
  'toss_trash_bin',
  'trash_bin_found',
  'bin_found_padlock',
  'found_padlock_lie',
  'padlock_lie_around',
  'lie_around_lock',
  'around_lock_chain',
  'lock_chain_later',
  'chain_later_day',
  'later_day_wife',
  'day_wife_brought',
  'wife_brought_frozen',
  'brought_frozen_food',
  'frozen_food_put',
  'food_put_new',
  'put_new_freezer',
  'new_freezer_got',
  'freezer_got_downstair',
  'got_downstair_notic',
  'downstair_notic_lock',
  'notic_lock_flip',
  'lock_flip_lid',
  'flip_lid_told',
  'lid_told_control',
  'told_control_told',
  'control_told_way',
  'told_way_ever',
  'way_ever_use',
  'ever_use_freezer',
  'use_freezer_threw',
  'freezer_threw_someth',
  'threw_someth_like',
  'someth_like_tantrum',
  'like_tantrum_left',
  'tantrum_left_mom',
  'left_mom_hous',
  'mom_hous_came',
  'hous_came_back',
  'came_back_later',
  'back_later_day',
  'later_day_told',
  'day_told_hour',
  'told_hour_unlock',
  'hour_unlock_freezer',
  'unlock_freezer_noth',
  'freezer_noth_realli',
  'noth_realli_happen',
  'realli_happen_hour',
  'happen_hour_complet',
  'hour_complet_ignor',
  'complet_ignor_everyth',
  'ignor_everyth_say',
  'everyth_say_think',
  'say_think_action',
  'think_action_justifi',
  'action_justifi_wrong',
  'justifi_wrong_*',
  'wrong_*_*',
  '*_*_edit',
  '*_edit_*',
  'edit_*_*',
  '*_*_thank',
  '*_thank_comment',
  'thank_comment_everyon',
  'comment_everyon_someth',
  'everyon_someth_weird',
  'someth_weird_peopl',
  'weird_peopl_assum',
  'peopl_assum_never',
  'assum_never_talk',
  'never_talk_weve',
  'talk_weve_marri',
  'weve_marri_four',
  'marri_four_year',
  'four_year_ongo',
  'year_ongo_issu',
  'ongo_issu_realli',
  'issu_realli_think',
  'realli_think_ive',
  'think_ive_never',
  'ive_never_brought',
  'never_brought_frustrat',
  ...],
 ['ill',
  'keep',
  'short',
  'sister',
  'let',
  'say',
  'name',
  'lisa',
  'get',
  'marri',
  'later',
  'year',
  'wed',
  'child',
  'free',
  'im',
  'current',
  'pregnant',
  'time',
  'wed',
  'month',
  'babi',
  'ask',
  'lisa',
  'could',
  'come',
  'well',
  'lisa',
  'said',
  'accept',
  'told',
  'abl',
  'attend',
  'feel',
  'comfort',
  'leav',
  'young',
  'kid',
  'sitter',
  'famili',
  'would',
  'wed',
  'lisa',
  'pretti',
  'piss',
  'said',
  'im',
  'tri',
  'act',
  'holier-than-th',
  'punish',
  'child',
  'free',
  'wed',
  'said',
  'want',
  'give',
  'speech',
  'sister',
  'bride',
  'told',
  'cant',
  'attend',
  'cant',
  'bring',
  'babi',
  'repli',
  'friend',
  'kid',
  'know',
  'lot',
  'trust',
  'sitter',
  'shell',
  'give',
  'number',
  'ive',
  'refus',
  'mom',
  'said',
  'could',
  'stay',
  'home',
  'babi',
  'attend',
  'part',
  'ceremoni',
  'shell',
  'come',
  'ill',
  'go',
  'home',
  'lisa',
  'want',
  'parent',
  'whole',
  'time',
  'know',
  'im',
  'look',
  'kid',
  'might',
  'ah',
  'lisa',
  'upset',
  'im',
  'attend',
  'ill_keep',
  'keep_short',
  'short_sister',
  'sister_let',
  'let_say',
  'say_name',
  'name_lisa',
  'lisa_get',
  'get_marri',
  'marri_later',
  'later_year',
  'year_wed',
  'wed_child',
  'child_free',
  'free_im',
  'im_current',
  'current_pregnant',
  'pregnant_time',
  'time_wed',
  'wed_month',
  'month_babi',
  'babi_ask',
  'ask_lisa',
  'lisa_could',
  'could_come',
  'come_well',
  'well_lisa',
  'lisa_said',
  'said_accept',
  'accept_told',
  'told_abl',
  'abl_attend',
  'attend_feel',
  'feel_comfort',
  'comfort_leav',
  'leav_young',
  'young_kid',
  'kid_sitter',
  'sitter_famili',
  'famili_would',
  'would_wed',
  'wed_lisa',
  'lisa_pretti',
  'pretti_piss',
  'piss_said',
  'said_im',
  'im_tri',
  'tri_act',
  'act_holier-than-th',
  'holier-than-th_punish',
  'punish_child',
  'child_free',
  'free_wed',
  'wed_said',
  'said_want',
  'want_give',
  'give_speech',
  'speech_sister',
  'sister_bride',
  'bride_told',
  'told_cant',
  'cant_attend',
  'attend_cant',
  'cant_bring',
  'bring_babi',
  'babi_repli',
  'repli_friend',
  'friend_kid',
  'kid_know',
  'know_lot',
  'lot_trust',
  'trust_sitter',
  'sitter_shell',
  'shell_give',
  'give_number',
  'number_ive',
  'ive_refus',
  'refus_mom',
  'mom_said',
  'said_could',
  'could_stay',
  'stay_home',
  'home_babi',
  'babi_attend',
  'attend_part',
  'part_ceremoni',
  'ceremoni_shell',
  'shell_come',
  'come_ill',
  'ill_go',
  'go_home',
  'home_lisa',
  'lisa_want',
  'want_parent',
  'parent_whole',
  'whole_time',
  'time_know',
  'know_im',
  'im_look',
  'look_kid',
  'kid_might',
  'might_ah',
  'ah_lisa',
  'lisa_upset',
  'upset_im',
  'im_attend',
  'ill_keep_short',
  'keep_short_sister',
  'short_sister_let',
  'sister_let_say',
  'let_say_name',
  'say_name_lisa',
  'name_lisa_get',
  'lisa_get_marri',
  'get_marri_later',
  'marri_later_year',
  'later_year_wed',
  'year_wed_child',
  'wed_child_free',
  'child_free_im',
  'free_im_current',
  'im_current_pregnant',
  'current_pregnant_time',
  'pregnant_time_wed',
  'time_wed_month',
  'wed_month_babi',
  'month_babi_ask',
  'babi_ask_lisa',
  'ask_lisa_could',
  'lisa_could_come',
  'could_come_well',
  'come_well_lisa',
  'well_lisa_said',
  'lisa_said_accept',
  'said_accept_told',
  'accept_told_abl',
  'told_abl_attend',
  'abl_attend_feel',
  'attend_feel_comfort',
  'feel_comfort_leav',
  'comfort_leav_young',
  'leav_young_kid',
  'young_kid_sitter',
  'kid_sitter_famili',
  'sitter_famili_would',
  'famili_would_wed',
  'would_wed_lisa',
  'wed_lisa_pretti',
  'lisa_pretti_piss',
  'pretti_piss_said',
  'piss_said_im',
  'said_im_tri',
  'im_tri_act',
  'tri_act_holier-than-th',
  'act_holier-than-th_punish',
  'holier-than-th_punish_child',
  'punish_child_free',
  'child_free_wed',
  'free_wed_said',
  'wed_said_want',
  'said_want_give',
  'want_give_speech',
  'give_speech_sister',
  'speech_sister_bride',
  'sister_bride_told',
  'bride_told_cant',
  'told_cant_attend',
  'cant_attend_cant',
  'attend_cant_bring',
  'cant_bring_babi',
  'bring_babi_repli',
  'babi_repli_friend',
  'repli_friend_kid',
  'friend_kid_know',
  'kid_know_lot',
  'know_lot_trust',
  'lot_trust_sitter',
  'trust_sitter_shell',
  'sitter_shell_give',
  'shell_give_number',
  'give_number_ive',
  'number_ive_refus',
  'ive_refus_mom',
  'refus_mom_said',
  'mom_said_could',
  'said_could_stay',
  'could_stay_home',
  'stay_home_babi',
  'home_babi_attend',
  'babi_attend_part',
  'attend_part_ceremoni',
  'part_ceremoni_shell',
  'ceremoni_shell_come',
  'shell_come_ill',
  'come_ill_go',
  'ill_go_home',
  'go_home_lisa',
  'home_lisa_want',
  'lisa_want_parent',
  'want_parent_whole',
  'parent_whole_time',
  'whole_time_know',
  'time_know_im',
  'know_im_look',
  'im_look_kid',
  'look_kid_might',
  'kid_might_ah',
  'might_ah_lisa',
  'ah_lisa_upset',
  'lisa_upset_im',
  'upset_im_attend'],
 ['im',
  'year',
  'old',
  'man',
  'girlfriend',
  'year',
  'daughter',
  'previou',
  'partner',
  'freshman',
  'high',
  'school',
  'went',
  'yesterday',
  'find',
  'girlfriend',
  'cri',
  'tri',
  'figur',
  'go',
  'help',
  'told',
  'cri',
  'daughter',
  'school',
  'love',
  'daughter',
  'sweetest',
  'girl',
  'ever',
  'wish',
  'daughter',
  'well',
  'behav',
  'describ',
  'daughter',
  'nice',
  'friend',
  'group',
  'troubl',
  'bulli',
  'gener',
  'seem',
  'happi',
  'bet',
  'wonder',
  'mother',
  'would',
  'cri',
  'case',
  'mothermi',
  'girlfriend',
  'cri',
  'daughter',
  'popular',
  'athlet',
  'cheerlead',
  'homecom',
  'queen',
  'school',
  'daughter',
  'march',
  'beat',
  'drum',
  'think',
  'best',
  'anyon',
  'hope',
  'ye',
  'littl',
  'bit',
  'dorki',
  'mother',
  'refer',
  'loser',
  'cri',
  'fit',
  'animeh',
  'friend',
  'actual',
  'start',
  'anim',
  'club',
  'school',
  'pokémon',
  'video',
  'game',
  'wardrob',
  'black',
  'shirt',
  'anim',
  'video',
  'game',
  'charact',
  'happi',
  'kid',
  'got',
  'social',
  'circl',
  'similar',
  'interest',
  'circl',
  'mom',
  'wish',
  'quot',
  'turn',
  'red',
  'never',
  'would',
  'imagin',
  'daughter',
  'would',
  'dweeb',
  'need',
  'grow',
  'colleg',
  'person',
  'favorit',
  'caught',
  'dead',
  'kid',
  'look',
  'like',
  'call',
  'disgust',
  'told',
  'asham',
  'said',
  'daughter',
  'happi',
  'would',
  'feel',
  'hear',
  'mom',
  'cri',
  'perceiv',
  'popular',
  'told',
  'lucki',
  'daughter',
  'deal',
  'lot',
  'issu',
  'kid',
  'day',
  'end',
  'upset',
  'instead',
  'consol',
  'cri',
  'call',
  'name',
  'think',
  'cri',
  'mean',
  'anyth',
  'say',
  'horribl',
  'thing',
  'im_year',
  'year_old',
  'old_man',
  'man_girlfriend',
  'girlfriend_year',
  'year_daughter',
  'daughter_previou',
  'previou_partner',
  'partner_freshman',
  'freshman_high',
  'high_school',
  'school_went',
  'went_yesterday',
  'yesterday_find',
  'find_girlfriend',
  'girlfriend_cri',
  'cri_tri',
  'tri_figur',
  'figur_go',
  'go_help',
  'help_told',
  'told_cri',
  'cri_daughter',
  'daughter_school',
  'school_love',
  'love_daughter',
  'daughter_sweetest',
  'sweetest_girl',
  'girl_ever',
  'ever_wish',
  'wish_daughter',
  'daughter_well',
  'well_behav',
  'behav_describ',
  'describ_daughter',
  'daughter_nice',
  'nice_friend',
  'friend_group',
  'group_troubl',
  'troubl_bulli',
  'bulli_gener',
  'gener_seem',
  'seem_happi',
  'happi_bet',
  'bet_wonder',
  'wonder_mother',
  'mother_would',
  'would_cri',
  'cri_case',
  'case_mothermi',
  'mothermi_girlfriend',
  'girlfriend_cri',
  'cri_daughter',
  'daughter_popular',
  'popular_athlet',
  'athlet_cheerlead',
  'cheerlead_homecom',
  'homecom_queen',
  'queen_school',
  'school_daughter',
  'daughter_march',
  'march_beat',
  'beat_drum',
  'drum_think',
  'think_best',
  'best_anyon',
  'anyon_hope',
  'hope_ye',
  'ye_littl',
  'littl_bit',
  'bit_dorki',
  'dorki_mother',
  'mother_refer',
  'refer_loser',
  'loser_cri',
  'cri_fit',
  'fit_animeh',
  'animeh_friend',
  'friend_actual',
  'actual_start',
  'start_anim',
  'anim_club',
  'club_school',
  'school_pokémon',
  'pokémon_video',
  'video_game',
  'game_wardrob',
  'wardrob_black',
  'black_shirt',
  'shirt_anim',
  'anim_video',
  'video_game',
  'game_charact',
  'charact_happi',
  'happi_kid',
  'kid_got',
  'got_social',
  'social_circl',
  'circl_similar',
  'similar_interest',
  'interest_circl',
  'circl_mom',
  'mom_wish',
  'wish_quot',
  'quot_turn',
  'turn_red',
  'red_never',
  'never_would',
  'would_imagin',
  'imagin_daughter',
  'daughter_would',
  'would_dweeb',
  'dweeb_need',
  'need_grow',
  'grow_colleg',
  'colleg_person',
  'person_favorit',
  'favorit_caught',
  'caught_dead',
  'dead_kid',
  'kid_look',
  'look_like',
  'like_call',
  'call_disgust',
  'disgust_told',
  'told_asham',
  'asham_said',
  'said_daughter',
  'daughter_happi',
  'happi_would',
  'would_feel',
  'feel_hear',
  'hear_mom',
  'mom_cri',
  'cri_perceiv',
  'perceiv_popular',
  'popular_told',
  'told_lucki',
  'lucki_daughter',
  'daughter_deal',
  'deal_lot',
  'lot_issu',
  'issu_kid',
  'kid_day',
  'day_end',
  'end_upset',
  'upset_instead',
  'instead_consol',
  'consol_cri',
  'cri_call',
  'call_name',
  'name_think',
  'think_cri',
  'cri_mean',
  'mean_anyth',
  'anyth_say',
  'say_horribl',
  'horribl_thing',
  'im_year_old',
  'year_old_man',
  'old_man_girlfriend',
  'man_girlfriend_year',
  'girlfriend_year_daughter',
  'year_daughter_previou',
  'daughter_previou_partner',
  'previou_partner_freshman',
  'partner_freshman_high',
  'freshman_high_school',
  'high_school_went',
  'school_went_yesterday',
  'went_yesterday_find',
  'yesterday_find_girlfriend',
  'find_girlfriend_cri',
  'girlfriend_cri_tri',
  'cri_tri_figur',
  'tri_figur_go',
  'figur_go_help',
  'go_help_told',
  'help_told_cri',
  'told_cri_daughter',
  'cri_daughter_school',
  'daughter_school_love',
  'school_love_daughter',
  'love_daughter_sweetest',
  'daughter_sweetest_girl',
  'sweetest_girl_ever',
  'girl_ever_wish',
  'ever_wish_daughter',
  'wish_daughter_well',
  'daughter_well_behav',
  'well_behav_describ',
  'behav_describ_daughter',
  'describ_daughter_nice',
  'daughter_nice_friend',
  'nice_friend_group',
  'friend_group_troubl',
  'group_troubl_bulli',
  'troubl_bulli_gener',
  'bulli_gener_seem',
  'gener_seem_happi',
  'seem_happi_bet',
  'happi_bet_wonder',
  'bet_wonder_mother',
  'wonder_mother_would',
  'mother_would_cri',
  'would_cri_case',
  'cri_case_mothermi',
  'case_mothermi_girlfriend',
  'mothermi_girlfriend_cri',
  'girlfriend_cri_daughter',
  'cri_daughter_popular',
  'daughter_popular_athlet',
  'popular_athlet_cheerlead',
  'athlet_cheerlead_homecom',
  'cheerlead_homecom_queen',
  'homecom_queen_school',
  'queen_school_daughter',
  'school_daughter_march',
  'daughter_march_beat',
  'march_beat_drum',
  'beat_drum_think',
  'drum_think_best',
  'think_best_anyon',
  'best_anyon_hope',
  'anyon_hope_ye',
  'hope_ye_littl',
  'ye_littl_bit',
  'littl_bit_dorki',
  'bit_dorki_mother',
  'dorki_mother_refer',
  'mother_refer_loser',
  'refer_loser_cri',
  'loser_cri_fit',
  'cri_fit_animeh',
  'fit_animeh_friend',
  'animeh_friend_actual',
  'friend_actual_start',
  'actual_start_anim',
  'start_anim_club',
  'anim_club_school',
  'club_school_pokémon',
  'school_pokémon_video',
  'pokémon_video_game',
  'video_game_wardrob',
  'game_wardrob_black',
  'wardrob_black_shirt',
  'black_shirt_anim',
  'shirt_anim_video',
  'anim_video_game',
  'video_game_charact',
  'game_charact_happi',
  'charact_happi_kid',
  'happi_kid_got',
  'kid_got_social',
  'got_social_circl',
  'social_circl_similar',
  'circl_similar_interest',
  'similar_interest_circl',
  'interest_circl_mom',
  'circl_mom_wish',
  'mom_wish_quot',
  'wish_quot_turn',
  'quot_turn_red',
  'turn_red_never',
  'red_never_would',
  'never_would_imagin',
  'would_imagin_daughter',
  'imagin_daughter_would',
  'daughter_would_dweeb',
  'would_dweeb_need',
  'dweeb_need_grow',
  'need_grow_colleg',
  'grow_colleg_person',
  'colleg_person_favorit',
  'person_favorit_caught',
  'favorit_caught_dead',
  'caught_dead_kid',
  'dead_kid_look',
  'kid_look_like',
  'look_like_call',
  'like_call_disgust',
  'call_disgust_told',
  'disgust_told_asham',
  'told_asham_said',
  'asham_said_daughter',
  'said_daughter_happi',
  'daughter_happi_would',
  'happi_would_feel',
  'would_feel_hear',
  'feel_hear_mom',
  'hear_mom_cri',
  'mom_cri_perceiv',
  'cri_perceiv_popular',
  'perceiv_popular_told',
  'popular_told_lucki',
  'told_lucki_daughter',
  'lucki_daughter_deal',
  'daughter_deal_lot',
  'deal_lot_issu',
  'lot_issu_kid',
  'issu_kid_day',
  'kid_day_end',
  'day_end_upset',
  'end_upset_instead',
  'upset_instead_consol',
  'instead_consol_cri',
  'consol_cri_call',
  'cri_call_name',
  'call_name_think',
  'name_think_cri',
  'think_cri_mean',
  'cri_mean_anyth',
  'mean_anyth_say',
  'anyth_say_horribl',
  'say_horribl_thing'],
 ['son',
  'daughter',
  'bought',
  'hous',
  'juli',
  'know',
  'move',
  'new',
  'home',
  'alway',
  'come',
  'unexpect',
  'cost',
  'right',
  'probabl',
  'deplet',
  'fund',
  'christma',
  'gave',
  '$',
  'son',
  'gave',
  'differ',
  'gift',
  'total',
  'somewher',
  'around',
  '$',
  'daughter',
  'work',
  'christma',
  'christma',
  'th',
  'stay',
  'us',
  'holiday',
  'yesterday',
  'son',
  'still',
  'live',
  'us',
  'today',
  'told',
  'us',
  'want',
  'say',
  'anyth',
  'sister',
  'feel',
  'hurt',
  'dispar',
  'valu',
  'gift',
  'explain',
  'gift',
  'got',
  'tailor',
  'interest',
  'sister',
  'pass',
  'big',
  'life',
  'mileston',
  'money',
  'import',
  'right',
  'sentiment',
  'said',
  'still',
  'hurt',
  'feel',
  'like',
  'proud',
  'wife',
  'got',
  'realli',
  'frustrat',
  'said',
  'ask',
  'would',
  'choos',
  'least',
  'charit',
  'interpret',
  'action',
  'said',
  'felt',
  'control',
  'said',
  'give',
  'money',
  'proud',
  'experi',
  'new',
  'homeown',
  'know',
  'someth',
  'alway',
  'break',
  'first',
  'six',
  'month',
  'alway',
  'expens',
  'said',
  'fine',
  'good',
  'still',
  'hurt',
  'get',
  'wors',
  'present',
  'feel',
  'like',
  'afterthought',
  'wife',
  'ask',
  'expect',
  'us',
  'get',
  'four',
  'thousand',
  'dollar',
  'worth',
  'gift',
  'said',
  'expect',
  'gift',
  'sister',
  'equal',
  'wife',
  'said',
  'thing',
  'son',
  'said',
  'said',
  'could',
  'given',
  'monetari',
  'equival',
  'gave',
  'told',
  'realli',
  'fair',
  'decid',
  'much',
  'spend',
  'someon',
  'els',
  'gift',
  'furthermor',
  'cash',
  'less',
  'person',
  'gift',
  'give',
  'cash',
  'equival',
  'got',
  'would',
  'get',
  'wors',
  'gift',
  'said',
  'listen',
  'justifi',
  'wife',
  'said',
  'need',
  'justifi',
  'anyth',
  'entitl',
  'point',
  'said',
  'want',
  'talk',
  'unless',
  'everyon',
  'civil',
  'went',
  'room',
  'skip',
  'lunch',
  'breakfast',
  'today',
  'left',
  'work',
  'say',
  'goodby',
  'even',
  'though',
  'right',
  'door',
  'wife',
  'irrit',
  'son',
  'clearli',
  'resent',
  'us',
  'cant',
  'realli',
  'decid',
  'wrong',
  'one',
  'hand',
  'abl',
  'give',
  'money',
  'whoever',
  'want',
  'never',
  'want',
  'hurt',
  'son',
  'feel',
  'wrong',
  'son_daughter',
  'daughter_bought',
  'bought_hous',
  'hous_juli',
  'juli_know',
  'know_move',
  'move_new',
  'new_home',
  'home_alway',
  'alway_come',
  'come_unexpect',
  'unexpect_cost',
  'cost_right',
  'right_probabl',
  'probabl_deplet',
  'deplet_fund',
  'fund_christma',
  'christma_gave',
  'gave_$',
  '$_son',
  'son_gave',
  'gave_differ',
  'differ_gift',
  'gift_total',
  'total_somewher',
  'somewher_around',
  'around_$',
  '$_daughter',
  'daughter_work',
  'work_christma',
  'christma_christma',
  'christma_th',
  'th_stay',
  'stay_us',
  'us_holiday',
  'holiday_yesterday',
  'yesterday_son',
  'son_still',
  'still_live',
  'live_us',
  'us_today',
  'today_told',
  'told_us',
  'us_want',
  'want_say',
  'say_anyth',
  'anyth_sister',
  'sister_feel',
  'feel_hurt',
  'hurt_dispar',
  'dispar_valu',
  'valu_gift',
  'gift_explain',
  'explain_gift',
  'gift_got',
  'got_tailor',
  'tailor_interest',
  'interest_sister',
  'sister_pass',
  'pass_big',
  'big_life',
  'life_mileston',
  'mileston_money',
  'money_import',
  'import_right',
  'right_sentiment',
  'sentiment_said',
  'said_still',
  'still_hurt',
  'hurt_feel',
  'feel_like',
  'like_proud',
  'proud_wife',
  'wife_got',
  'got_realli',
  'realli_frustrat',
  'frustrat_said',
  'said_ask',
  'ask_would',
  'would_choos',
  'choos_least',
  'least_charit',
  'charit_interpret',
  'interpret_action',
  'action_said',
  'said_felt',
  'felt_control',
  'control_said',
  'said_give',
  'give_money',
  'money_proud',
  'proud_experi',
  'experi_new',
  'new_homeown',
  'homeown_know',
  'know_someth',
  'someth_alway',
  'alway_break',
  'break_first',
  'first_six',
  'six_month',
  'month_alway',
  'alway_expens',
  'expens_said',
  'said_fine',
  'fine_good',
  'good_still',
  'still_hurt',
  'hurt_get',
  'get_wors',
  'wors_present',
  'present_feel',
  'feel_like',
  'like_afterthought',
  'afterthought_wife',
  'wife_ask',
  'ask_expect',
  'expect_us',
  'us_get',
  'get_four',
  'four_thousand',
  'thousand_dollar',
  'dollar_worth',
  'worth_gift',
  'gift_said',
  'said_expect',
  'expect_gift',
  'gift_sister',
  'sister_equal',
  'equal_wife',
  'wife_said',
  'said_thing',
  'thing_son',
  'son_said',
  'said_said',
  'said_could',
  'could_given',
  'given_monetari',
  'monetari_equival',
  'equival_gave',
  'gave_told',
  'told_realli',
  'realli_fair',
  'fair_decid',
  'decid_much',
  'much_spend',
  'spend_someon',
  'someon_els',
  'els_gift',
  'gift_furthermor',
  'furthermor_cash',
  'cash_less',
  'less_person',
  'person_gift',
  'gift_give',
  'give_cash',
  'cash_equival',
  'equival_got',
  'got_would',
  'would_get',
  'get_wors',
  'wors_gift',
  'gift_said',
  'said_listen',
  'listen_justifi',
  'justifi_wife',
  'wife_said',
  'said_need',
  'need_justifi',
  'justifi_anyth',
  'anyth_entitl',
  'entitl_point',
  'point_said',
  'said_want',
  'want_talk',
  'talk_unless',
  'unless_everyon',
  'everyon_civil',
  'civil_went',
  'went_room',
  'room_skip',
  'skip_lunch',
  'lunch_breakfast',
  'breakfast_today',
  'today_left',
  'left_work',
  'work_say',
  'say_goodby',
  'goodby_even',
  'even_though',
  'though_right',
  'right_door',
  'door_wife',
  'wife_irrit',
  'irrit_son',
  'son_clearli',
  'clearli_resent',
  'resent_us',
  'us_cant',
  'cant_realli',
  'realli_decid',
  'decid_wrong',
  'wrong_one',
  'one_hand',
  'hand_abl',
  'abl_give',
  'give_money',
  'money_whoever',
  'whoever_want',
  'want_never',
  'never_want',
  'want_hurt',
  'hurt_son',
  'son_feel',
  'feel_wrong',
  'son_daughter_bought',
  'daughter_bought_hous',
  'bought_hous_juli',
  'hous_juli_know',
  'juli_know_move',
  'know_move_new',
  'move_new_home',
  'new_home_alway',
  'home_alway_come',
  'alway_come_unexpect',
  'come_unexpect_cost',
  'unexpect_cost_right',
  'cost_right_probabl',
  'right_probabl_deplet',
  'probabl_deplet_fund',
  'deplet_fund_christma',
  'fund_christma_gave',
  'christma_gave_$',
  'gave_$_son',
  '$_son_gave',
  'son_gave_differ',
  'gave_differ_gift',
  'differ_gift_total',
  'gift_total_somewher',
  'total_somewher_around',
  'somewher_around_$',
  'around_$_daughter',
  '$_daughter_work',
  'daughter_work_christma',
  'work_christma_christma',
  'christma_christma_th',
  'christma_th_stay',
  'th_stay_us',
  'stay_us_holiday',
  'us_holiday_yesterday',
  'holiday_yesterday_son',
  'yesterday_son_still',
  'son_still_live',
  'still_live_us',
  'live_us_today',
  'us_today_told',
  'today_told_us',
  'told_us_want',
  'us_want_say',
  'want_say_anyth',
  'say_anyth_sister',
  'anyth_sister_feel',
  'sister_feel_hurt',
  'feel_hurt_dispar',
  'hurt_dispar_valu',
  'dispar_valu_gift',
  'valu_gift_explain',
  'gift_explain_gift',
  'explain_gift_got',
  'gift_got_tailor',
  'got_tailor_interest',
  'tailor_interest_sister',
  'interest_sister_pass',
  'sister_pass_big',
  'pass_big_life',
  'big_life_mileston',
  'life_mileston_money',
  'mileston_money_import',
  'money_import_right',
  'import_right_sentiment',
  'right_sentiment_said',
  'sentiment_said_still',
  'said_still_hurt',
  'still_hurt_feel',
  'hurt_feel_like',
  'feel_like_proud',
  'like_proud_wife',
  'proud_wife_got',
  'wife_got_realli',
  'got_realli_frustrat',
  'realli_frustrat_said',
  'frustrat_said_ask',
  'said_ask_would',
  'ask_would_choos',
  'would_choos_least',
  'choos_least_charit',
  'least_charit_interpret',
  'charit_interpret_action',
  'interpret_action_said',
  'action_said_felt',
  'said_felt_control',
  'felt_control_said',
  'control_said_give',
  'said_give_money',
  'give_money_proud',
  'money_proud_experi',
  'proud_experi_new',
  'experi_new_homeown',
  'new_homeown_know',
  'homeown_know_someth',
  'know_someth_alway',
  'someth_alway_break',
  'alway_break_first',
  'break_first_six',
  'first_six_month',
  'six_month_alway',
  'month_alway_expens',
  'alway_expens_said',
  'expens_said_fine',
  'said_fine_good',
  'fine_good_still',
  'good_still_hurt',
  'still_hurt_get',
  'hurt_get_wors',
  'get_wors_present',
  'wors_present_feel',
  'present_feel_like',
  'feel_like_afterthought',
  'like_afterthought_wife',
  'afterthought_wife_ask',
  'wife_ask_expect',
  'ask_expect_us',
  'expect_us_get',
  'us_get_four',
  'get_four_thousand',
  'four_thousand_dollar',
  'thousand_dollar_worth',
  'dollar_worth_gift',
  'worth_gift_said',
  'gift_said_expect',
  'said_expect_gift',
  'expect_gift_sister',
  'gift_sister_equal',
  'sister_equal_wife',
  'equal_wife_said',
  'wife_said_thing',
  'said_thing_son',
  'thing_son_said',
  'son_said_said',
  'said_said_could',
  'said_could_given',
  'could_given_monetari',
  'given_monetari_equival',
  'monetari_equival_gave',
  'equival_gave_told',
  'gave_told_realli',
  'told_realli_fair',
  'realli_fair_decid',
  'fair_decid_much',
  'decid_much_spend',
  'much_spend_someon',
  'spend_someon_els',
  'someon_els_gift',
  'els_gift_furthermor',
  'gift_furthermor_cash',
  'furthermor_cash_less',
  'cash_less_person',
  'less_person_gift',
  'person_gift_give',
  'gift_give_cash',
  'give_cash_equival',
  'cash_equival_got',
  'equival_got_would',
  'got_would_get',
  'would_get_wors',
  'get_wors_gift',
  'wors_gift_said',
  'gift_said_listen',
  'said_listen_justifi',
  'listen_justifi_wife',
  'justifi_wife_said',
  'wife_said_need',
  'said_need_justifi',
  'need_justifi_anyth',
  'justifi_anyth_entitl',
  'anyth_entitl_point',
  'entitl_point_said',
  'point_said_want',
  'said_want_talk',
  'want_talk_unless',
  'talk_unless_everyon',
  'unless_everyon_civil',
  'everyon_civil_went',
  'civil_went_room',
  'went_room_skip',
  'room_skip_lunch',
  'skip_lunch_breakfast',
  'lunch_breakfast_today',
  'breakfast_today_left',
  'today_left_work',
  'left_work_say',
  'work_say_goodby',
  'say_goodby_even',
  'goodby_even_though',
  'even_though_right',
  'though_right_door',
  'right_door_wife',
  'door_wife_irrit',
  'wife_irrit_son',
  'irrit_son_clearli',
  'son_clearli_resent',
  'clearli_resent_us',
  'resent_us_cant',
  'us_cant_realli',
  'cant_realli_decid',
  'realli_decid_wrong',
  'decid_wrong_one',
  'wrong_one_hand',
  'one_hand_abl',
  'hand_abl_give',
  'abl_give_money',
  'give_money_whoever',
  'money_whoever_want',
  'whoever_want_never',
  'want_never_want',
  'never_want_hurt',
  'want_hurt_son',
  'hurt_son_feel',
  'son_feel_wrong'],
 ['got',
  'propos',
  'month',
  'ago',
  'fiancé',
  'jax',
  'younger',
  'brother',
  'jacob',
  'went',
  'colleg',
  'colleg',
  'slept',
  'around',
  'lot',
  'pretti',
  'known',
  'fiancé',
  'knew',
  'brother',
  'jacob',
  'bit',
  'jokest',
  'like',
  'bring',
  'frequent',
  'famili',
  'gather',
  'birthday',
  'holiday',
  'etc',
  'fiancé',
  'famili',
  'often',
  'told',
  'stop',
  'saw',
  'uncomfort',
  'last',
  'night',
  'jacob',
  'birthday',
  'dinner',
  'fiancé',
  'lot',
  'friend',
  'younger',
  'famili',
  'member',
  'jacob',
  'start',
  'get',
  'drunk',
  'start',
  'crack',
  'unfunni',
  'joke',
  'includ',
  'say',
  'surpris',
  'never',
  'took',
  'chanc',
  'sleep',
  'colleg',
  'fed',
  'littl',
  'bit',
  'drunk',
  'told',
  'sleep',
  'life',
  'depend',
  'got',
  'piss',
  'kept',
  'silent',
  'dinner',
  'awkward',
  'rest',
  'time',
  'fiancé',
  'said',
  'famili',
  'said',
  'anyth',
  'wrong',
  'even',
  'wait',
  'tell',
  'morn',
  'woke',
  'text',
  'jacob',
  'friend',
  'tell',
  'im',
  'whore',
  'bitch',
  'anyth',
  'wrong',
  'friend',
  'request',
  'post',
  'get',
  'outsid',
  'opinion',
  'got_propos',
  'propos_month',
  'month_ago',
  'ago_fiancé',
  'fiancé_jax',
  'jax_younger',
  'younger_brother',
  'brother_jacob',
  'jacob_went',
  'went_colleg',
  'colleg_colleg',
  'colleg_slept',
  'slept_around',
  'around_lot',
  'lot_pretti',
  'pretti_known',
  'known_fiancé',
  'fiancé_knew',
  'knew_brother',
  'brother_jacob',
  'jacob_bit',
  'bit_jokest',
  'jokest_like',
  'like_bring',
  'bring_frequent',
  'frequent_famili',
  'famili_gather',
  'gather_birthday',
  'birthday_holiday',
  'holiday_etc',
  'etc_fiancé',
  'fiancé_famili',
  'famili_often',
  'often_told',
  'told_stop',
  'stop_saw',
  'saw_uncomfort',
  'uncomfort_last',
  'last_night',
  'night_jacob',
  'jacob_birthday',
  'birthday_dinner',
  'dinner_fiancé',
  'fiancé_lot',
  'lot_friend',
  'friend_younger',
  'younger_famili',
  'famili_member',
  'member_jacob',
  'jacob_start',
  'start_get',
  'get_drunk',
  'drunk_start',
  'start_crack',
  'crack_unfunni',
  'unfunni_joke',
  'joke_includ',
  'includ_say',
  'say_surpris',
  'surpris_never',
  'never_took',
  'took_chanc',
  'chanc_sleep',
  'sleep_colleg',
  'colleg_fed',
  'fed_littl',
  'littl_bit',
  'bit_drunk',
  'drunk_told',
  'told_sleep',
  'sleep_life',
  'life_depend',
  'depend_got',
  'got_piss',
  'piss_kept',
  'kept_silent',
  'silent_dinner',
  'dinner_awkward',
  'awkward_rest',
  'rest_time',
  'time_fiancé',
  'fiancé_said',
  'said_famili',
  'famili_said',
  'said_anyth',
  'anyth_wrong',
  'wrong_even',
  'even_wait',
  'wait_tell',
  'tell_morn',
  'morn_woke',
  'woke_text',
  'text_jacob',
  'jacob_friend',
  'friend_tell',
  'tell_im',
  'im_whore',
  'whore_bitch',
  'bitch_anyth',
  'anyth_wrong',
  'wrong_friend',
  'friend_request',
  'request_post',
  'post_get',
  'get_outsid',
  'outsid_opinion',
  'got_propos_month',
  'propos_month_ago',
  'month_ago_fiancé',
  'ago_fiancé_jax',
  'fiancé_jax_younger',
  'jax_younger_brother',
  'younger_brother_jacob',
  'brother_jacob_went',
  'jacob_went_colleg',
  'went_colleg_colleg',
  'colleg_colleg_slept',
  'colleg_slept_around',
  'slept_around_lot',
  'around_lot_pretti',
  'lot_pretti_known',
  'pretti_known_fiancé',
  'known_fiancé_knew',
  'fiancé_knew_brother',
  'knew_brother_jacob',
  'brother_jacob_bit',
  'jacob_bit_jokest',
  'bit_jokest_like',
  'jokest_like_bring',
  'like_bring_frequent',
  'bring_frequent_famili',
  'frequent_famili_gather',
  'famili_gather_birthday',
  'gather_birthday_holiday',
  'birthday_holiday_etc',
  'holiday_etc_fiancé',
  'etc_fiancé_famili',
  'fiancé_famili_often',
  'famili_often_told',
  'often_told_stop',
  'told_stop_saw',
  'stop_saw_uncomfort',
  'saw_uncomfort_last',
  'uncomfort_last_night',
  'last_night_jacob',
  'night_jacob_birthday',
  'jacob_birthday_dinner',
  'birthday_dinner_fiancé',
  'dinner_fiancé_lot',
  'fiancé_lot_friend',
  'lot_friend_younger',
  'friend_younger_famili',
  'younger_famili_member',
  'famili_member_jacob',
  'member_jacob_start',
  'jacob_start_get',
  'start_get_drunk',
  'get_drunk_start',
  'drunk_start_crack',
  'start_crack_unfunni',
  'crack_unfunni_joke',
  'unfunni_joke_includ',
  'joke_includ_say',
  'includ_say_surpris',
  'say_surpris_never',
  'surpris_never_took',
  'never_took_chanc',
  'took_chanc_sleep',
  'chanc_sleep_colleg',
  'sleep_colleg_fed',
  'colleg_fed_littl',
  'fed_littl_bit',
  'littl_bit_drunk',
  'bit_drunk_told',
  'drunk_told_sleep',
  'told_sleep_life',
  'sleep_life_depend',
  'life_depend_got',
  'depend_got_piss',
  'got_piss_kept',
  'piss_kept_silent',
  'kept_silent_dinner',
  'silent_dinner_awkward',
  'dinner_awkward_rest',
  'awkward_rest_time',
  'rest_time_fiancé',
  'time_fiancé_said',
  'fiancé_said_famili',
  'said_famili_said',
  'famili_said_anyth',
  'said_anyth_wrong',
  'anyth_wrong_even',
  'wrong_even_wait',
  'even_wait_tell',
  'wait_tell_morn',
  'tell_morn_woke',
  'morn_woke_text',
  'woke_text_jacob',
  'text_jacob_friend',
  'jacob_friend_tell',
  'friend_tell_im',
  'tell_im_whore',
  'im_whore_bitch',
  'whore_bitch_anyth',
  'bitch_anyth_wrong',
  'anyth_wrong_friend',
  'wrong_friend_request',
  'friend_request_post',
  'request_post_get',
  'post_get_outsid',
  'get_outsid_opinion'],
 ['throwaway',
  'account',
  'privaci',
  'reason',
  'year',
  'old',
  'daughter',
  'year',
  'ago',
  'dad',
  'divorc',
  'found',
  'gay',
  'bread',
  'winner',
  'high',
  'earner',
  'housewif',
  'prefer',
  'let',
  'us',
  'live',
  'hous',
  'big',
  'one',
  'gate',
  'commun',
  'continu',
  'pay',
  'expens',
  'give',
  'spend',
  'money',
  'maintain',
  'lifestyl',
  'year',
  'later',
  'met',
  'current',
  'husband',
  'year',
  'later',
  'marri',
  'move',
  'daughter',
  'ex',
  'great',
  'friend',
  'especi',
  'sinc',
  'ex',
  'still',
  'much',
  'part',
  'life',
  'also',
  'wed',
  'gift',
  'gave',
  'half',
  'hous',
  'full',
  'husband',
  'daughter',
  'ex',
  'share',
  'castodi',
  'live',
  'us',
  'half',
  'time',
  'problem',
  'ex',
  'pay',
  'daughter',
  'go',
  'realli',
  'expens',
  'privat',
  'school',
  'buy',
  'expens',
  'gift',
  'birthday',
  'bought',
  '$',
  'car',
  'husband',
  'cant',
  'afford',
  'daughter',
  'daughter',
  'step-sist',
  'best',
  'relationship',
  'mainli',
  'husband',
  'ex',
  'hope',
  'would',
  'get',
  'back',
  'togeth',
  'keep',
  'poison',
  'daughter',
  'daughter',
  'use',
  'share',
  'stuff',
  'step-sist',
  'start',
  'ruin',
  'purpos',
  'husband',
  'made',
  'rule',
  'cant',
  'borrow',
  'stay',
  'sinc',
  'refus',
  'see',
  'parent',
  'forc',
  'husband',
  'good',
  'job',
  'noth',
  'close',
  'ex',
  'earn',
  'sinc',
  'decid',
  'hous',
  'enough',
  'help',
  'ex',
  'incom',
  'earn',
  'opinion',
  'enough',
  'step-daught',
  'th',
  'birthday',
  'come',
  'ask',
  'car',
  'ex',
  'gave',
  'daughter',
  'refus',
  'cours',
  'said',
  'would',
  'buy',
  'car',
  'fit',
  'budget',
  'threw',
  'tantrum',
  'threaten',
  'husband',
  'would',
  'never',
  'talk',
  'get',
  'car',
  'waver',
  'refus',
  '$',
  '+',
  'make',
  'year',
  'drown',
  'us',
  'debt',
  'still',
  'pay',
  'student',
  'loan',
  'medic',
  'debt',
  'hand',
  'love',
  'daughter',
  'lot',
  'feel',
  'partli',
  'respons',
  'sinc',
  'ask',
  'daughter',
  'get',
  'car',
  'birthday',
  'aita',
  'throwaway_account',
  'account_privaci',
  'privaci_reason',
  'reason_year',
  'year_old',
  'old_daughter',
  'daughter_year',
  'year_ago',
  'ago_dad',
  'dad_divorc',
  'divorc_found',
  'found_gay',
  'gay_bread',
  'bread_winner',
  'winner_high',
  'high_earner',
  'earner_housewif',
  'housewif_prefer',
  'prefer_let',
  'let_us',
  'us_live',
  'live_hous',
  'hous_big',
  'big_one',
  'one_gate',
  'gate_commun',
  'commun_continu',
  'continu_pay',
  'pay_expens',
  'expens_give',
  'give_spend',
  'spend_money',
  'money_maintain',
  'maintain_lifestyl',
  'lifestyl_year',
  'year_later',
  'later_met',
  'met_current',
  'current_husband',
  'husband_year',
  'year_later',
  'later_marri',
  'marri_move',
  'move_daughter',
  'daughter_ex',
  'ex_great',
  'great_friend',
  'friend_especi',
  'especi_sinc',
  'sinc_ex',
  'ex_still',
  'still_much',
  'much_part',
  'part_life',
  'life_also',
  'also_wed',
  'wed_gift',
  'gift_gave',
  'gave_half',
  'half_hous',
  'hous_full',
  'full_husband',
  'husband_daughter',
  'daughter_ex',
  'ex_share',
  'share_castodi',
  'castodi_live',
  'live_us',
  'us_half',
  'half_time',
  'time_problem',
  'problem_ex',
  'ex_pay',
  'pay_daughter',
  'daughter_go',
  'go_realli',
  'realli_expens',
  'expens_privat',
  'privat_school',
  'school_buy',
  'buy_expens',
  'expens_gift',
  'gift_birthday',
  'birthday_bought',
  'bought_$',
  '$_car',
  'car_husband',
  'husband_cant',
  'cant_afford',
  'afford_daughter',
  'daughter_daughter',
  'daughter_step-sist',
  'step-sist_best',
  'best_relationship',
  'relationship_mainli',
  'mainli_husband',
  'husband_ex',
  'ex_hope',
  'hope_would',
  'would_get',
  'get_back',
  'back_togeth',
  'togeth_keep',
  'keep_poison',
  'poison_daughter',
  'daughter_daughter',
  'daughter_use',
  'use_share',
  'share_stuff',
  'stuff_step-sist',
  'step-sist_start',
  'start_ruin',
  'ruin_purpos',
  'purpos_husband',
  'husband_made',
  'made_rule',
  'rule_cant',
  'cant_borrow',
  'borrow_stay',
  'stay_sinc',
  'sinc_refus',
  'refus_see',
  'see_parent',
  'parent_forc',
  'forc_husband',
  'husband_good',
  'good_job',
  'job_noth',
  'noth_close',
  'close_ex',
  'ex_earn',
  'earn_sinc',
  'sinc_decid',
  'decid_hous',
  'hous_enough',
  'enough_help',
  'help_ex',
  'ex_incom',
  'incom_earn',
  'earn_opinion',
  'opinion_enough',
  'enough_step-daught',
  'step-daught_th',
  'th_birthday',
  'birthday_come',
  'come_ask',
  'ask_car',
  'car_ex',
  'ex_gave',
  'gave_daughter',
  'daughter_refus',
  'refus_cours',
  'cours_said',
  'said_would',
  'would_buy',
  'buy_car',
  'car_fit',
  'fit_budget',
  'budget_threw',
  'threw_tantrum',
  'tantrum_threaten',
  'threaten_husband',
  'husband_would',
  'would_never',
  'never_talk',
  'talk_get',
  'get_car',
  'car_waver',
  'waver_refus',
  'refus_$',
  '$_+',
  '+_make',
  'make_year',
  'year_drown',
  'drown_us',
  'us_debt',
  'debt_still',
  'still_pay',
  'pay_student',
  'student_loan',
  'loan_medic',
  'medic_debt',
  'debt_hand',
  'hand_love',
  'love_daughter',
  'daughter_lot',
  'lot_feel',
  'feel_partli',
  'partli_respons',
  'respons_sinc',
  'sinc_ask',
  'ask_daughter',
  'daughter_get',
  'get_car',
  'car_birthday',
  'birthday_aita',
  'throwaway_account_privaci',
  'account_privaci_reason',
  'privaci_reason_year',
  'reason_year_old',
  'year_old_daughter',
  'old_daughter_year',
  'daughter_year_ago',
  'year_ago_dad',
  'ago_dad_divorc',
  'dad_divorc_found',
  'divorc_found_gay',
  'found_gay_bread',
  'gay_bread_winner',
  'bread_winner_high',
  'winner_high_earner',
  'high_earner_housewif',
  'earner_housewif_prefer',
  'housewif_prefer_let',
  'prefer_let_us',
  'let_us_live',
  'us_live_hous',
  'live_hous_big',
  'hous_big_one',
  'big_one_gate',
  'one_gate_commun',
  'gate_commun_continu',
  'commun_continu_pay',
  'continu_pay_expens',
  'pay_expens_give',
  'expens_give_spend',
  'give_spend_money',
  'spend_money_maintain',
  'money_maintain_lifestyl',
  'maintain_lifestyl_year',
  'lifestyl_year_later',
  'year_later_met',
  'later_met_current',
  'met_current_husband',
  'current_husband_year',
  'husband_year_later',
  'year_later_marri',
  'later_marri_move',
  'marri_move_daughter',
  'move_daughter_ex',
  'daughter_ex_great',
  'ex_great_friend',
  'great_friend_especi',
  'friend_especi_sinc',
  'especi_sinc_ex',
  'sinc_ex_still',
  'ex_still_much',
  'still_much_part',
  'much_part_life',
  'part_life_also',
  'life_also_wed',
  'also_wed_gift',
  'wed_gift_gave',
  'gift_gave_half',
  'gave_half_hous',
  'half_hous_full',
  'hous_full_husband',
  'full_husband_daughter',
  'husband_daughter_ex',
  'daughter_ex_share',
  'ex_share_castodi',
  'share_castodi_live',
  'castodi_live_us',
  'live_us_half',
  'us_half_time',
  'half_time_problem',
  'time_problem_ex',
  'problem_ex_pay',
  'ex_pay_daughter',
  'pay_daughter_go',
  'daughter_go_realli',
  'go_realli_expens',
  'realli_expens_privat',
  'expens_privat_school',
  'privat_school_buy',
  'school_buy_expens',
  'buy_expens_gift',
  'expens_gift_birthday',
  'gift_birthday_bought',
  'birthday_bought_$',
  'bought_$_car',
  '$_car_husband',
  'car_husband_cant',
  'husband_cant_afford',
  'cant_afford_daughter',
  'afford_daughter_daughter',
  'daughter_daughter_step-sist',
  'daughter_step-sist_best',
  'step-sist_best_relationship',
  'best_relationship_mainli',
  'relationship_mainli_husband',
  'mainli_husband_ex',
  'husband_ex_hope',
  'ex_hope_would',
  'hope_would_get',
  'would_get_back',
  'get_back_togeth',
  'back_togeth_keep',
  'togeth_keep_poison',
  'keep_poison_daughter',
  'poison_daughter_daughter',
  'daughter_daughter_use',
  'daughter_use_share',
  'use_share_stuff',
  'share_stuff_step-sist',
  'stuff_step-sist_start',
  'step-sist_start_ruin',
  'start_ruin_purpos',
  'ruin_purpos_husband',
  'purpos_husband_made',
  'husband_made_rule',
  'made_rule_cant',
  'rule_cant_borrow',
  'cant_borrow_stay',
  'borrow_stay_sinc',
  'stay_sinc_refus',
  'sinc_refus_see',
  'refus_see_parent',
  'see_parent_forc',
  'parent_forc_husband',
  'forc_husband_good',
  'husband_good_job',
  'good_job_noth',
  'job_noth_close',
  'noth_close_ex',
  'close_ex_earn',
  'ex_earn_sinc',
  'earn_sinc_decid',
  'sinc_decid_hous',
  'decid_hous_enough',
  'hous_enough_help',
  'enough_help_ex',
  'help_ex_incom',
  'ex_incom_earn',
  'incom_earn_opinion',
  'earn_opinion_enough',
  'opinion_enough_step-daught',
  'enough_step-daught_th',
  'step-daught_th_birthday',
  'th_birthday_come',
  'birthday_come_ask',
  'come_ask_car',
  'ask_car_ex',
  'car_ex_gave',
  'ex_gave_daughter',
  'gave_daughter_refus',
  'daughter_refus_cours',
  'refus_cours_said',
  'cours_said_would',
  'said_would_buy',
  'would_buy_car',
  'buy_car_fit',
  'car_fit_budget',
  'fit_budget_threw',
  'budget_threw_tantrum',
  'threw_tantrum_threaten',
  'tantrum_threaten_husband',
  'threaten_husband_would',
  'husband_would_never',
  'would_never_talk',
  'never_talk_get',
  'talk_get_car',
  'get_car_waver',
  'car_waver_refus',
  'waver_refus_$',
  'refus_$_+',
  '$_+_make',
  '+_make_year',
  'make_year_drown',
  'year_drown_us',
  'drown_us_debt',
  'us_debt_still',
  'debt_still_pay',
  'still_pay_student',
  'pay_student_loan',
  'student_loan_medic',
  'loan_medic_debt',
  'medic_debt_hand',
  'debt_hand_love',
  'hand_love_daughter',
  'love_daughter_lot',
  'daughter_lot_feel',
  'lot_feel_partli',
  'feel_partli_respons',
  'partli_respons_sinc',
  'respons_sinc_ask',
  'sinc_ask_daughter',
  'ask_daughter_get',
  'daughter_get_car',
  'get_car_birthday',
  'car_birthday_aita'],
 ['day',
  'ago',
  'sahm',
  'midst',
  'laundri',
  'husband',
  'breadwinn',
  'work',
  'pilot',
  'ask',
  'could',
  'iron',
  'uniform',
  'shift',
  'say',
  'ye',
  'busi',
  'laundri',
  'kid',
  'homework',
  'cook',
  'etc',
  'said',
  'may',
  'find',
  'time',
  'turn',
  'around',
  'walk',
  'away',
  'complet',
  'ignor',
  'say',
  'hour',
  'later',
  'came',
  'downstair',
  'freak',
  'ask',
  'iron',
  'uniform',
  'ask',
  'told',
  'busi',
  'remind',
  'say',
  'ye',
  'request',
  'blew',
  'say',
  'obvious',
  'care',
  'disaplay',
  'profession',
  'work',
  'umit',
  'unifotm',
  'like',
  'dirti',
  'need',
  'iron',
  'lectur',
  'work',
  'import',
  'although',
  'im',
  'sahm',
  'still',
  'make',
  'job',
  'prioriti',
  'decid',
  'miss',
  'shift',
  'way',
  'teach',
  'lesson',
  'show',
  'lack',
  'cooper',
  'refus',
  'help',
  'could',
  'affect',
  'money',
  'keep',
  'come',
  'call',
  'insan',
  'miss',
  'shift',
  'got',
  'offend',
  'call',
  'hypocrit',
  'call',
  'insan',
  'act',
  'surpris',
  'caus',
  'situat',
  'happen',
  'mean',
  'could',
  'taken',
  'time',
  'chore',
  'iron',
  'uniform',
  'still',
  'thought',
  'reaction',
  'bit',
  'much',
  'aita',
  'ask',
  'iron',
  'uniform',
  'im',
  'one',
  'usual',
  'iron',
  'said',
  'list',
  'hous',
  'chore',
  'list',
  'true',
  'give',
  'prioriti',
  'like',
  'chore',
  'like',
  'homework',
  'laundri',
  'day_ago',
  'ago_sahm',
  'sahm_midst',
  'midst_laundri',
  'laundri_husband',
  'husband_breadwinn',
  'breadwinn_work',
  'work_pilot',
  'pilot_ask',
  'ask_could',
  'could_iron',
  'iron_uniform',
  'uniform_shift',
  'shift_say',
  'say_ye',
  'ye_busi',
  'busi_laundri',
  'laundri_kid',
  'kid_homework',
  'homework_cook',
  'cook_etc',
  'etc_said',
  'said_may',
  'may_find',
  'find_time',
  'time_turn',
  'turn_around',
  'around_walk',
  'walk_away',
  'away_complet',
  'complet_ignor',
  'ignor_say',
  'say_hour',
  'hour_later',
  'later_came',
  'came_downstair',
  'downstair_freak',
  'freak_ask',
  'ask_iron',
  'iron_uniform',
  'uniform_ask',
  'ask_told',
  'told_busi',
  'busi_remind',
  'remind_say',
  'say_ye',
  'ye_request',
  'request_blew',
  'blew_say',
  'say_obvious',
  'obvious_care',
  'care_disaplay',
  'disaplay_profession',
  'profession_work',
  'work_umit',
  'umit_unifotm',
  'unifotm_like',
  'like_dirti',
  'dirti_need',
  'need_iron',
  'iron_lectur',
  'lectur_work',
  'work_import',
  'import_although',
  'although_im',
  'im_sahm',
  'sahm_still',
  'still_make',
  'make_job',
  'job_prioriti',
  'prioriti_decid',
  'decid_miss',
  'miss_shift',
  'shift_way',
  'way_teach',
  'teach_lesson',
  'lesson_show',
  'show_lack',
  'lack_cooper',
  'cooper_refus',
  'refus_help',
  'help_could',
  'could_affect',
  'affect_money',
  'money_keep',
  'keep_come',
  'come_call',
  'call_insan',
  'insan_miss',
  'miss_shift',
  'shift_got',
  'got_offend',
  'offend_call',
  'call_hypocrit',
  'hypocrit_call',
  'call_insan',
  'insan_act',
  'act_surpris',
  'surpris_caus',
  'caus_situat',
  'situat_happen',
  'happen_mean',
  'mean_could',
  'could_taken',
  'taken_time',
  'time_chore',
  'chore_iron',
  'iron_uniform',
  'uniform_still',
  'still_thought',
  'thought_reaction',
  'reaction_bit',
  'bit_much',
  'much_aita',
  'aita_ask',
  'ask_iron',
  'iron_uniform',
  'uniform_im',
  'im_one',
  'one_usual',
  'usual_iron',
  'iron_said',
  'said_list',
  'list_hous',
  'hous_chore',
  'chore_list',
  'list_true',
  'true_give',
  'give_prioriti',
  'prioriti_like',
  'like_chore',
  'chore_like',
  'like_homework',
  'homework_laundri',
  'day_ago_sahm',
  'ago_sahm_midst',
  'sahm_midst_laundri',
  'midst_laundri_husband',
  'laundri_husband_breadwinn',
  'husband_breadwinn_work',
  'breadwinn_work_pilot',
  'work_pilot_ask',
  'pilot_ask_could',
  'ask_could_iron',
  'could_iron_uniform',
  'iron_uniform_shift',
  'uniform_shift_say',
  'shift_say_ye',
  'say_ye_busi',
  'ye_busi_laundri',
  'busi_laundri_kid',
  'laundri_kid_homework',
  'kid_homework_cook',
  'homework_cook_etc',
  'cook_etc_said',
  'etc_said_may',
  'said_may_find',
  'may_find_time',
  'find_time_turn',
  'time_turn_around',
  'turn_around_walk',
  'around_walk_away',
  'walk_away_complet',
  'away_complet_ignor',
  'complet_ignor_say',
  'ignor_say_hour',
  'say_hour_later',
  'hour_later_came',
  'later_came_downstair',
  'came_downstair_freak',
  'downstair_freak_ask',
  'freak_ask_iron',
  'ask_iron_uniform',
  'iron_uniform_ask',
  'uniform_ask_told',
  'ask_told_busi',
  'told_busi_remind',
  'busi_remind_say',
  'remind_say_ye',
  'say_ye_request',
  'ye_request_blew',
  'request_blew_say',
  'blew_say_obvious',
  'say_obvious_care',
  'obvious_care_disaplay',
  'care_disaplay_profession',
  'disaplay_profession_work',
  'profession_work_umit',
  'work_umit_unifotm',
  'umit_unifotm_like',
  'unifotm_like_dirti',
  'like_dirti_need',
  'dirti_need_iron',
  'need_iron_lectur',
  'iron_lectur_work',
  'lectur_work_import',
  'work_import_although',
  'import_although_im',
  'although_im_sahm',
  'im_sahm_still',
  'sahm_still_make',
  'still_make_job',
  'make_job_prioriti',
  'job_prioriti_decid',
  'prioriti_decid_miss',
  'decid_miss_shift',
  'miss_shift_way',
  'shift_way_teach',
  'way_teach_lesson',
  'teach_lesson_show',
  'lesson_show_lack',
  'show_lack_cooper',
  'lack_cooper_refus',
  'cooper_refus_help',
  'refus_help_could',
  'help_could_affect',
  'could_affect_money',
  'affect_money_keep',
  'money_keep_come',
  'keep_come_call',
  'come_call_insan',
  'call_insan_miss',
  'insan_miss_shift',
  'miss_shift_got',
  'shift_got_offend',
  'got_offend_call',
  'offend_call_hypocrit',
  'call_hypocrit_call',
  'hypocrit_call_insan',
  'call_insan_act',
  'insan_act_surpris',
  'act_surpris_caus',
  'surpris_caus_situat',
  'caus_situat_happen',
  'situat_happen_mean',
  'happen_mean_could',
  'mean_could_taken',
  'could_taken_time',
  'taken_time_chore',
  'time_chore_iron',
  'chore_iron_uniform',
  'iron_uniform_still',
  'uniform_still_thought',
  'still_thought_reaction',
  'thought_reaction_bit',
  'reaction_bit_much',
  'bit_much_aita',
  'much_aita_ask',
  'aita_ask_iron',
  'ask_iron_uniform',
  'iron_uniform_im',
  'uniform_im_one',
  'im_one_usual',
  'one_usual_iron',
  'usual_iron_said',
  'iron_said_list',
  'said_list_hous',
  'list_hous_chore',
  'hous_chore_list',
  'chore_list_true',
  'list_true_give',
  'true_give_prioriti',
  'give_prioriti_like',
  'prioriti_like_chore',
  'like_chore_like',
  'chore_like_homework',
  'like_homework_laundri'],
 ['im',
  'nurs',
  'work',
  'hour',
  'past',
  'month',
  'abl',
  'save',
  'money',
  'fix',
  'ceil',
  'hous',
  'ive',
  'save',
  'account',
  'sinc',
  'husband',
  'work',
  'sinc',
  'im',
  'tri',
  'balanc',
  'rent',
  'util',
  'payment',
  'husband',
  'golf',
  'enthusiast',
  'friend',
  'differ',
  'friend',
  'well',
  'afford',
  'expens',
  'golf',
  'gear',
  'trip',
  'mention',
  'want',
  'go',
  'golf',
  'trip',
  'next',
  'week',
  'invit',
  'husband',
  'initi',
  'refus',
  'though',
  'realli',
  'want',
  'go',
  'complain',
  'friend',
  'bought',
  'fanci',
  'golf',
  'gear',
  'old',
  'gear',
  'ask',
  'could',
  'lend',
  '$',
  'dollar',
  'could',
  'buy',
  'set',
  'golf',
  'club',
  'refus',
  '$',
  'set',
  'club',
  'crazi',
  'expens',
  'especi',
  'someon',
  'work',
  'got',
  'upset',
  'accus',
  'hold',
  'employ',
  'head',
  'help',
  'anyway',
  'thought',
  'argument',
  'discov',
  'pull',
  '$',
  'dollar',
  'account',
  'purchas',
  'set',
  'behind',
  'back',
  'went',
  'home',
  'explod',
  'swore',
  'hed',
  'return',
  'money',
  'get',
  'back',
  'trip',
  'told',
  'right',
  'take',
  'money',
  'spend',
  'set',
  'club',
  'ceil',
  'need',
  'fix',
  'said',
  'ceil',
  'requir',
  '$',
  'dollar',
  'either',
  'kid',
  'room',
  'affect',
  'demand',
  'return',
  'set',
  'pay',
  'right',
  'told',
  'unfair',
  'feel',
  'stuck',
  'friend',
  'afford',
  'buy',
  'whatev',
  'yell',
  'want',
  'someth',
  'told',
  'get',
  'job',
  'buy',
  'whatev',
  'tri',
  'tell',
  'hell',
  'pay',
  'find',
  'job',
  'get',
  'back',
  'trip',
  'refus',
  'kept',
  'beg',
  'let',
  'go',
  'trip',
  'well',
  'figur',
  'later',
  'said',
  'someth',
  'import',
  'ceil',
  'wouldv',
  'mayb',
  'wait',
  'say',
  'im',
  'abus',
  'control',
  'life',
  'edit',
  '--',
  'first',
  'im',
  'get',
  'mani',
  'comment',
  'im',
  'overwhelm',
  'respond',
  'peopl',
  'suggest',
  'return',
  'club',
  'camt',
  'never',
  'brought',
  'hous',
  'ive',
  'never',
  'seen',
  'know',
  'hide',
  'suspect',
  'brother',
  'hous',
  'im',
  'realli',
  'bad',
  'term',
  'cant',
  'go',
  'hous',
  'argument',
  'push',
  'get',
  'stay',
  'quiet',
  'til',
  'get',
  'back',
  'trip',
  'im',
  'put',
  'foot',
  'refus',
  'im_nurs',
  'nurs_work',
  'work_hour',
  'hour_past',
  'past_month',
  'month_abl',
  'abl_save',
  'save_money',
  'money_fix',
  'fix_ceil',
  'ceil_hous',
  'hous_ive',
  'ive_save',
  'save_account',
  'account_sinc',
  'sinc_husband',
  'husband_work',
  'work_sinc',
  'sinc_im',
  'im_tri',
  'tri_balanc',
  'balanc_rent',
  'rent_util',
  'util_payment',
  'payment_husband',
  'husband_golf',
  'golf_enthusiast',
  'enthusiast_friend',
  'friend_differ',
  'differ_friend',
  'friend_well',
  'well_afford',
  'afford_expens',
  'expens_golf',
  'golf_gear',
  'gear_trip',
  'trip_mention',
  'mention_want',
  'want_go',
  'go_golf',
  'golf_trip',
  'trip_next',
  'next_week',
  'week_invit',
  'invit_husband',
  'husband_initi',
  'initi_refus',
  'refus_though',
  'though_realli',
  'realli_want',
  'want_go',
  'go_complain',
  'complain_friend',
  'friend_bought',
  'bought_fanci',
  'fanci_golf',
  'golf_gear',
  'gear_old',
  'old_gear',
  'gear_ask',
  'ask_could',
  'could_lend',
  'lend_$',
  '$_dollar',
  'dollar_could',
  'could_buy',
  'buy_set',
  'set_golf',
  'golf_club',
  'club_refus',
  'refus_$',
  '$_set',
  'set_club',
  'club_crazi',
  'crazi_expens',
  'expens_especi',
  'especi_someon',
  'someon_work',
  'work_got',
  'got_upset',
  'upset_accus',
  'accus_hold',
  'hold_employ',
  'employ_head',
  'head_help',
  'help_anyway',
  'anyway_thought',
  'thought_argument',
  'argument_discov',
  'discov_pull',
  'pull_$',
  '$_dollar',
  'dollar_account',
  'account_purchas',
  'purchas_set',
  'set_behind',
  'behind_back',
  'back_went',
  'went_home',
  'home_explod',
  'explod_swore',
  'swore_hed',
  'hed_return',
  'return_money',
  'money_get',
  'get_back',
  'back_trip',
  'trip_told',
  'told_right',
  'right_take',
  'take_money',
  'money_spend',
  'spend_set',
  'set_club',
  'club_ceil',
  'ceil_need',
  'need_fix',
  'fix_said',
  'said_ceil',
  'ceil_requir',
  'requir_$',
  '$_dollar',
  'dollar_either',
  'either_kid',
  'kid_room',
  'room_affect',
  'affect_demand',
  'demand_return',
  'return_set',
  'set_pay',
  'pay_right',
  'right_told',
  'told_unfair',
  'unfair_feel',
  'feel_stuck',
  'stuck_friend',
  'friend_afford',
  'afford_buy',
  'buy_whatev',
  'whatev_yell',
  'yell_want',
  'want_someth',
  'someth_told',
  'told_get',
  'get_job',
  'job_buy',
  'buy_whatev',
  'whatev_tri',
  'tri_tell',
  'tell_hell',
  'hell_pay',
  'pay_find',
  'find_job',
  'job_get',
  'get_back',
  'back_trip',
  'trip_refus',
  'refus_kept',
  'kept_beg',
  'beg_let',
  'let_go',
  'go_trip',
  'trip_well',
  'well_figur',
  'figur_later',
  'later_said',
  'said_someth',
  'someth_import',
  'import_ceil',
  'ceil_wouldv',
  'wouldv_mayb',
  'mayb_wait',
  'wait_say',
  'say_im',
  'im_abus',
  'abus_control',
  'control_life',
  'life_edit',
  'edit_--',
  '--_first',
  'first_im',
  'im_get',
  'get_mani',
  'mani_comment',
  'comment_im',
  'im_overwhelm',
  'overwhelm_respond',
  'respond_peopl',
  'peopl_suggest',
  'suggest_return',
  'return_club',
  'club_camt',
  'camt_never',
  'never_brought',
  'brought_hous',
  'hous_ive',
  'ive_never',
  'never_seen',
  'seen_know',
  'know_hide',
  'hide_suspect',
  'suspect_brother',
  'brother_hous',
  'hous_im',
  'im_realli',
  'realli_bad',
  'bad_term',
  'term_cant',
  'cant_go',
  'go_hous',
  'hous_argument',
  'argument_push',
  'push_get',
  'get_stay',
  'stay_quiet',
  'quiet_til',
  'til_get',
  'get_back',
  'back_trip',
  'trip_im',
  'im_put',
  'put_foot',
  'foot_refus',
  'im_nurs_work',
  'nurs_work_hour',
  'work_hour_past',
  'hour_past_month',
  'past_month_abl',
  'month_abl_save',
  'abl_save_money',
  'save_money_fix',
  'money_fix_ceil',
  'fix_ceil_hous',
  'ceil_hous_ive',
  'hous_ive_save',
  'ive_save_account',
  'save_account_sinc',
  'account_sinc_husband',
  'sinc_husband_work',
  'husband_work_sinc',
  'work_sinc_im',
  'sinc_im_tri',
  'im_tri_balanc',
  'tri_balanc_rent',
  'balanc_rent_util',
  'rent_util_payment',
  'util_payment_husband',
  'payment_husband_golf',
  'husband_golf_enthusiast',
  'golf_enthusiast_friend',
  'enthusiast_friend_differ',
  'friend_differ_friend',
  'differ_friend_well',
  'friend_well_afford',
  'well_afford_expens',
  'afford_expens_golf',
  'expens_golf_gear',
  'golf_gear_trip',
  'gear_trip_mention',
  'trip_mention_want',
  'mention_want_go',
  'want_go_golf',
  'go_golf_trip',
  'golf_trip_next',
  'trip_next_week',
  'next_week_invit',
  'week_invit_husband',
  'invit_husband_initi',
  'husband_initi_refus',
  'initi_refus_though',
  'refus_though_realli',
  'though_realli_want',
  'realli_want_go',
  'want_go_complain',
  'go_complain_friend',
  'complain_friend_bought',
  'friend_bought_fanci',
  'bought_fanci_golf',
  'fanci_golf_gear',
  'golf_gear_old',
  'gear_old_gear',
  'old_gear_ask',
  'gear_ask_could',
  'ask_could_lend',
  'could_lend_$',
  'lend_$_dollar',
  '$_dollar_could',
  'dollar_could_buy',
  'could_buy_set',
  'buy_set_golf',
  'set_golf_club',
  'golf_club_refus',
  'club_refus_$',
  'refus_$_set',
  '$_set_club',
  'set_club_crazi',
  'club_crazi_expens',
  'crazi_expens_especi',
  'expens_especi_someon',
  'especi_someon_work',
  'someon_work_got',
  'work_got_upset',
  'got_upset_accus',
  'upset_accus_hold',
  'accus_hold_employ',
  'hold_employ_head',
  'employ_head_help',
  'head_help_anyway',
  'help_anyway_thought',
  'anyway_thought_argument',
  'thought_argument_discov',
  'argument_discov_pull',
  'discov_pull_$',
  'pull_$_dollar',
  '$_dollar_account',
  'dollar_account_purchas',
  'account_purchas_set',
  'purchas_set_behind',
  'set_behind_back',
  'behind_back_went',
  'back_went_home',
  'went_home_explod',
  'home_explod_swore',
  'explod_swore_hed',
  'swore_hed_return',
  'hed_return_money',
  'return_money_get',
  'money_get_back',
  'get_back_trip',
  'back_trip_told',
  'trip_told_right',
  'told_right_take',
  'right_take_money',
  'take_money_spend',
  'money_spend_set',
  'spend_set_club',
  'set_club_ceil',
  'club_ceil_need',
  'ceil_need_fix',
  'need_fix_said',
  'fix_said_ceil',
  'said_ceil_requir',
  'ceil_requir_$',
  'requir_$_dollar',
  '$_dollar_either',
  'dollar_either_kid',
  'either_kid_room',
  'kid_room_affect',
  'room_affect_demand',
  'affect_demand_return',
  'demand_return_set',
  'return_set_pay',
  'set_pay_right',
  'pay_right_told',
  'right_told_unfair',
  'told_unfair_feel',
  'unfair_feel_stuck',
  'feel_stuck_friend',
  'stuck_friend_afford',
  'friend_afford_buy',
  'afford_buy_whatev',
  'buy_whatev_yell',
  'whatev_yell_want',
  'yell_want_someth',
  'want_someth_told',
  'someth_told_get',
  'told_get_job',
  'get_job_buy',
  'job_buy_whatev',
  'buy_whatev_tri',
  'whatev_tri_tell',
  'tri_tell_hell',
  'tell_hell_pay',
  'hell_pay_find',
  'pay_find_job',
  'find_job_get',
  'job_get_back',
  'get_back_trip',
  'back_trip_refus',
  'trip_refus_kept',
  'refus_kept_beg',
  'kept_beg_let',
  'beg_let_go',
  'let_go_trip',
  'go_trip_well',
  'trip_well_figur',
  'well_figur_later',
  'figur_later_said',
  'later_said_someth',
  'said_someth_import',
  'someth_import_ceil',
  'import_ceil_wouldv',
  'ceil_wouldv_mayb',
  'wouldv_mayb_wait',
  'mayb_wait_say',
  'wait_say_im',
  'say_im_abus',
  'im_abus_control',
  'abus_control_life',
  'control_life_edit',
  'life_edit_--',
  'edit_--_first',
  '--_first_im',
  'first_im_get',
  'im_get_mani',
  'get_mani_comment',
  'mani_comment_im',
  'comment_im_overwhelm',
  'im_overwhelm_respond',
  'overwhelm_respond_peopl',
  'respond_peopl_suggest',
  'peopl_suggest_return',
  'suggest_return_club',
  'return_club_camt',
  'club_camt_never',
  'camt_never_brought',
  'never_brought_hous',
  'brought_hous_ive',
  'hous_ive_never',
  'ive_never_seen',
  'never_seen_know',
  'seen_know_hide',
  'know_hide_suspect',
  'hide_suspect_brother',
  'suspect_brother_hous',
  'brother_hous_im',
  'hous_im_realli',
  'im_realli_bad',
  'realli_bad_term',
  'bad_term_cant',
  'term_cant_go',
  'cant_go_hous',
  'go_hous_argument',
  'hous_argument_push',
  'argument_push_get',
  'push_get_stay',
  'get_stay_quiet',
  'stay_quiet_til',
  'quiet_til_get',
  'til_get_back',
  'get_back_trip',
  'back_trip_im',
  'trip_im_put',
  'im_put_foot',
  'put_foot_refus'],
 ['wednesday',
  'serv',
  'plate',
  'girlfriend',
  'said',
  'want',
  'pasta',
  'go',
  'make',
  'salad',
  'pretti',
  'sure',
  'go',
  'bother',
  'wait',
  'come',
  'back',
  'start',
  'eat',
  'sat',
  'tri',
  'talk',
  'day',
  'ask',
  'tri',
  'make',
  'point',
  'ask',
  'meant',
  'ask',
  'care',
  'go',
  'eat',
  'made',
  'said',
  'would',
  'lunch',
  'got',
  'frustrat',
  'focus',
  'salad',
  'engag',
  'dinner',
  'said',
  'make',
  'dinner',
  'anymor',
  'ask',
  'thought',
  'said',
  'clear',
  'get',
  'upset',
  'make',
  'food',
  'someon',
  'eat',
  'would',
  'better',
  'us',
  'make',
  'separ',
  'meal',
  'know',
  'get',
  'want',
  'one',
  'feel',
  'would',
  'hurt',
  'said',
  'okay',
  'make',
  'unilater',
  'decis',
  'relationship',
  'said',
  'want',
  'cook',
  'anymor',
  'cook',
  'go',
  'make',
  'upset',
  'kind',
  'went',
  'round',
  'round',
  'convers',
  'peter',
  'text',
  'work',
  'thursday',
  'go',
  'make',
  'salmon',
  'decid',
  'tri',
  'cook',
  'would',
  'let',
  'shed',
  'feel',
  'like',
  'one',
  'wed',
  'draw',
  'line',
  'end',
  'make',
  'salmon',
  'surpris',
  'expect',
  'tri',
  'convinc',
  'made',
  'quick',
  'omelett',
  'sat',
  'ask',
  'upset',
  'cook',
  'said',
  'accus',
  'make',
  'point',
  'ask',
  'go',
  'cook',
  'friday',
  'said',
  'put',
  'friday',
  'upset',
  'made',
  'enough',
  'curri',
  'one',
  'person',
  'call',
  'greedi',
  'point',
  'im',
  'ignor',
  'wednesday_serv',
  'serv_plate',
  'plate_girlfriend',
  'girlfriend_said',
  'said_want',
  'want_pasta',
  'pasta_go',
  'go_make',
  'make_salad',
  'salad_pretti',
  'pretti_sure',
  'sure_go',
  'go_bother',
  'bother_wait',
  'wait_come',
  'come_back',
  'back_start',
  'start_eat',
  'eat_sat',
  'sat_tri',
  'tri_talk',
  'talk_day',
  'day_ask',
  'ask_tri',
  'tri_make',
  'make_point',
  'point_ask',
  'ask_meant',
  'meant_ask',
  'ask_care',
  'care_go',
  'go_eat',
  'eat_made',
  'made_said',
  'said_would',
  'would_lunch',
  'lunch_got',
  'got_frustrat',
  'frustrat_focus',
  'focus_salad',
  'salad_engag',
  'engag_dinner',
  'dinner_said',
  'said_make',
  'make_dinner',
  'dinner_anymor',
  'anymor_ask',
  'ask_thought',
  'thought_said',
  'said_clear',
  'clear_get',
  'get_upset',
  'upset_make',
  'make_food',
  'food_someon',
  'someon_eat',
  'eat_would',
  'would_better',
  'better_us',
  'us_make',
  'make_separ',
  'separ_meal',
  'meal_know',
  'know_get',
  'get_want',
  'want_one',
  'one_feel',
  'feel_would',
  'would_hurt',
  'hurt_said',
  'said_okay',
  'okay_make',
  'make_unilater',
  'unilater_decis',
  'decis_relationship',
  'relationship_said',
  'said_want',
  'want_cook',
  'cook_anymor',
  'anymor_cook',
  'cook_go',
  'go_make',
  'make_upset',
  'upset_kind',
  'kind_went',
  'went_round',
  'round_round',
  'round_convers',
  'convers_peter',
  'peter_text',
  'text_work',
  'work_thursday',
  'thursday_go',
  'go_make',
  'make_salmon',
  'salmon_decid',
  'decid_tri',
  'tri_cook',
  'cook_would',
  'would_let',
  'let_shed',
  'shed_feel',
  'feel_like',
  'like_one',
  'one_wed',
  'wed_draw',
  'draw_line',
  'line_end',
  'end_make',
  'make_salmon',
  'salmon_surpris',
  'surpris_expect',
  'expect_tri',
  'tri_convinc',
  'convinc_made',
  'made_quick',
  'quick_omelett',
  'omelett_sat',
  'sat_ask',
  'ask_upset',
  'upset_cook',
  'cook_said',
  'said_accus',
  'accus_make',
  'make_point',
  'point_ask',
  'ask_go',
  'go_cook',
  'cook_friday',
  'friday_said',
  'said_put',
  'put_friday',
  'friday_upset',
  'upset_made',
  'made_enough',
  'enough_curri',
  'curri_one',
  'one_person',
  'person_call',
  'call_greedi',
  'greedi_point',
  'point_im',
  'im_ignor',
  'wednesday_serv_plate',
  'serv_plate_girlfriend',
  'plate_girlfriend_said',
  'girlfriend_said_want',
  'said_want_pasta',
  'want_pasta_go',
  'pasta_go_make',
  'go_make_salad',
  'make_salad_pretti',
  'salad_pretti_sure',
  'pretti_sure_go',
  'sure_go_bother',
  'go_bother_wait',
  'bother_wait_come',
  'wait_come_back',
  'come_back_start',
  'back_start_eat',
  'start_eat_sat',
  'eat_sat_tri',
  'sat_tri_talk',
  'tri_talk_day',
  'talk_day_ask',
  'day_ask_tri',
  'ask_tri_make',
  'tri_make_point',
  'make_point_ask',
  'point_ask_meant',
  'ask_meant_ask',
  'meant_ask_care',
  'ask_care_go',
  'care_go_eat',
  'go_eat_made',
  'eat_made_said',
  'made_said_would',
  'said_would_lunch',
  'would_lunch_got',
  'lunch_got_frustrat',
  'got_frustrat_focus',
  'frustrat_focus_salad',
  'focus_salad_engag',
  'salad_engag_dinner',
  'engag_dinner_said',
  'dinner_said_make',
  'said_make_dinner',
  'make_dinner_anymor',
  'dinner_anymor_ask',
  'anymor_ask_thought',
  'ask_thought_said',
  'thought_said_clear',
  'said_clear_get',
  'clear_get_upset',
  'get_upset_make',
  'upset_make_food',
  'make_food_someon',
  'food_someon_eat',
  'someon_eat_would',
  'eat_would_better',
  'would_better_us',
  'better_us_make',
  'us_make_separ',
  'make_separ_meal',
  'separ_meal_know',
  'meal_know_get',
  'know_get_want',
  'get_want_one',
  'want_one_feel',
  'one_feel_would',
  'feel_would_hurt',
  'would_hurt_said',
  'hurt_said_okay',
  'said_okay_make',
  'okay_make_unilater',
  'make_unilater_decis',
  'unilater_decis_relationship',
  'decis_relationship_said',
  'relationship_said_want',
  'said_want_cook',
  'want_cook_anymor',
  'cook_anymor_cook',
  'anymor_cook_go',
  'cook_go_make',
  'go_make_upset',
  'make_upset_kind',
  'upset_kind_went',
  'kind_went_round',
  'went_round_round',
  'round_round_convers',
  'round_convers_peter',
  'convers_peter_text',
  'peter_text_work',
  'text_work_thursday',
  'work_thursday_go',
  'thursday_go_make',
  'go_make_salmon',
  'make_salmon_decid',
  'salmon_decid_tri',
  'decid_tri_cook',
  'tri_cook_would',
  'cook_would_let',
  'would_let_shed',
  'let_shed_feel',
  'shed_feel_like',
  'feel_like_one',
  'like_one_wed',
  'one_wed_draw',
  'wed_draw_line',
  'draw_line_end',
  'line_end_make',
  'end_make_salmon',
  'make_salmon_surpris',
  'salmon_surpris_expect',
  'surpris_expect_tri',
  'expect_tri_convinc',
  'tri_convinc_made',
  'convinc_made_quick',
  'made_quick_omelett',
  'quick_omelett_sat',
  'omelett_sat_ask',
  'sat_ask_upset',
  'ask_upset_cook',
  'upset_cook_said',
  'cook_said_accus',
  'said_accus_make',
  'accus_make_point',
  'make_point_ask',
  'point_ask_go',
  'ask_go_cook',
  'go_cook_friday',
  'cook_friday_said',
  'friday_said_put',
  'said_put_friday',
  'put_friday_upset',
  'friday_upset_made',
  'upset_made_enough',
  'made_enough_curri',
  'enough_curri_one',
  'curri_one_person',
  'one_person_call',
  'person_call_greedi',
  'call_greedi_point',
  'greedi_point_im',
  'point_im_ignor'],
 ['context',
  'short',
  'version-',
  'relationship',
  'twin',
  'brother',
  'best',
  'friend',
  'jake',
  'last',
  'year',
  'till',
  'finish',
  'collag',
  'ex',
  'gotten',
  'enough',
  'money',
  'extrem',
  'religi',
  'parent',
  'get',
  'head',
  'start',
  'life',
  'know',
  'go',
  'brother',
  'jake',
  'togeth',
  'whole',
  'time',
  'use',
  'cover',
  'feel',
  'matter',
  'brother',
  'sinc',
  'teen',
  'came',
  'idea',
  'use',
  'parent',
  'get',
  'suspici',
  'parent',
  'angri',
  'brother',
  'even',
  'cut',
  'contract',
  'year',
  'made',
  'push',
  'sinc',
  'us',
  'speak',
  'sinc',
  'refus',
  'speak',
  'brother',
  'due',
  'dismiss',
  'everyth',
  'came',
  'jake',
  'liter',
  'said',
  'understand',
  'choic',
  'brother',
  'wors',
  'like',
  'get',
  'jake',
  'come',
  'parent',
  'nut',
  'deserv',
  'treat',
  'like',
  'year',
  'sinc',
  'everyth',
  'came',
  'im',
  'current',
  'pregnant',
  'twin',
  'soon',
  'husband',
  'brother',
  'jake',
  'move',
  'back',
  'home',
  'town',
  'last',
  'year',
  'tri',
  'via',
  'familyfriend',
  'even',
  'cowork',
  'get',
  'talk',
  'mother',
  'beg',
  'sit',
  'like',
  'adult',
  'let',
  'past',
  'ruin',
  'son',
  'chanc',
  'relationship',
  'uncl',
  'hate',
  'sibl',
  'ruin',
  'famili',
  'mental',
  'health',
  'hour',
  'ago',
  'stop',
  'lunch',
  'show',
  'parent',
  'scan',
  'photo',
  'guess',
  'happi',
  'coupl',
  'liter',
  'shock',
  'minut',
  'brother',
  'tri',
  'hug',
  'push',
  'away',
  'got',
  'work',
  'physic',
  'stop',
  'shake',
  'brother',
  'jake',
  'tri',
  'apologis',
  'talk',
  'happen',
  'beg',
  'relationship',
  'tear',
  'beg',
  'leav',
  'alon',
  'end',
  'brother',
  'hand',
  'letter',
  'said',
  'realli',
  'wish',
  'thing',
  'could',
  'differ',
  'sister',
  'twin',
  'love',
  'kill',
  'eachoth',
  'anymor',
  'basic',
  'lost',
  'rip',
  'letter',
  'scream',
  'famili',
  'want',
  'leav',
  'alon',
  'walk',
  'get',
  'taxi',
  'home',
  'upset',
  'drive',
  'sinc',
  'parent',
  'famili',
  'member',
  'told',
  'im',
  'cruel',
  'bitter',
  'need',
  'stop',
  'live',
  'past',
  'get',
  'hey',
  'guy',
  'repli',
  'anymor',
  'im',
  'emot',
  'feel',
  'well',
  'due',
  'anyon',
  'sub',
  'amaz',
  'someon',
  'gave',
  'brother',
  'number',
  'famili',
  'stop',
  'call',
  'im',
  'gon',
  'na',
  'turn',
  'phone',
  'sake',
  'anyon',
  'ask',
  'fiancé',
  'said',
  'famili',
  'group',
  'anyon',
  'show',
  'home',
  'theyd',
  'better',
  'hope',
  'cop',
  'get',
  'answer',
  'door',
  'id',
  'like',
  'answer',
  'question',
  'lot',
  'peopl',
  'keep',
  'ask',
  'go-',
  'year',
  'see',
  'sign',
  '-',
  'basic',
  'brother',
  'ex',
  'alway',
  'close',
  'obvious',
  'never',
  'thought',
  'theyd',
  'someth',
  'like',
  'like',
  'brother',
  'meant',
  'protect',
  'bad',
  'guy',
  'kind',
  'relationship',
  'jake',
  'live',
  'togeth',
  'two',
  'year',
  'everyth',
  'normal',
  'coupl',
  'hope',
  'clear',
  'lot',
  'curios',
  'bedroom',
  'life',
  'angri',
  'brother',
  'jake',
  'hate',
  'jake',
  'never',
  'forgiv',
  'still',
  'piti',
  'situat',
  'parent',
  'reason',
  'im',
  'angri',
  'twin',
  'brother',
  'obviou',
  'plan',
  'parent',
  'go',
  'contact',
  'till',
  'babi',
  'born',
  'least',
  'month',
  'old',
  'right',
  'head',
  'space',
  'therapi',
  'ye',
  'help',
  'love',
  'trust',
  'peopl',
  'im',
  'way',
  'better',
  'place',
  'year',
  'ago',
  'happen',
  'give',
  'neg',
  'view',
  'lgbt+',
  'commun',
  'cours',
  'brother',
  'jake',
  'hurt',
  'whole',
  'commun',
  'let',
  'forget',
  'homophob',
  'asshol',
  'reason',
  'even',
  'happen',
  'grammar',
  'bad',
  'im',
  'sorri',
  'never',
  'check',
  'grammar',
  'internet',
  'unless',
  'work',
  'relat',
  'plu',
  'exhaust',
  'emot',
  'day',
  'context_short',
  'short_version-',
  'version-_relationship',
  'relationship_twin',
  'twin_brother',
  'brother_best',
  'best_friend',
  'friend_jake',
  'jake_last',
  'last_year',
  'year_till',
  'till_finish',
  'finish_collag',
  'collag_ex',
  'ex_gotten',
  'gotten_enough',
  'enough_money',
  'money_extrem',
  'extrem_religi',
  'religi_parent',
  'parent_get',
  'get_head',
  'head_start',
  'start_life',
  'life_know',
  'know_go',
  'go_brother',
  'brother_jake',
  'jake_togeth',
  'togeth_whole',
  'whole_time',
  'time_use',
  'use_cover',
  'cover_feel',
  'feel_matter',
  'matter_brother',
  'brother_sinc',
  'sinc_teen',
  'teen_came',
  'came_idea',
  'idea_use',
  'use_parent',
  'parent_get',
  'get_suspici',
  'suspici_parent',
  'parent_angri',
  'angri_brother',
  'brother_even',
  'even_cut',
  'cut_contract',
  'contract_year',
  'year_made',
  'made_push',
  'push_sinc',
  'sinc_us',
  'us_speak',
  'speak_sinc',
  'sinc_refus',
  'refus_speak',
  'speak_brother',
  'brother_due',
  'due_dismiss',
  'dismiss_everyth',
  'everyth_came',
  'came_jake',
  'jake_liter',
  'liter_said',
  'said_understand',
  'understand_choic',
  'choic_brother',
  'brother_wors',
  'wors_like',
  'like_get',
  'get_jake',
  'jake_come',
  'come_parent',
  'parent_nut',
  'nut_deserv',
  'deserv_treat',
  'treat_like',
  'like_year',
  'year_sinc',
  'sinc_everyth',
  'everyth_came',
  'came_im',
  'im_current',
  'current_pregnant',
  'pregnant_twin',
  'twin_soon',
  'soon_husband',
  'husband_brother',
  'brother_jake',
  'jake_move',
  'move_back',
  'back_home',
  'home_town',
  'town_last',
  'last_year',
  'year_tri',
  'tri_via',
  'via_familyfriend',
  'familyfriend_even',
  'even_cowork',
  'cowork_get',
  'get_talk',
  'talk_mother',
  'mother_beg',
  'beg_sit',
  'sit_like',
  'like_adult',
  'adult_let',
  'let_past',
  'past_ruin',
  'ruin_son',
  'son_chanc',
  'chanc_relationship',
  'relationship_uncl',
  'uncl_hate',
  'hate_sibl',
  'sibl_ruin',
  'ruin_famili',
  'famili_mental',
  'mental_health',
  'health_hour',
  'hour_ago',
  'ago_stop',
  'stop_lunch',
  'lunch_show',
  'show_parent',
  'parent_scan',
  'scan_photo',
  'photo_guess',
  'guess_happi',
  'happi_coupl',
  'coupl_liter',
  'liter_shock',
  'shock_minut',
  'minut_brother',
  'brother_tri',
  'tri_hug',
  'hug_push',
  'push_away',
  'away_got',
  'got_work',
  'work_physic',
  'physic_stop',
  'stop_shake',
  'shake_brother',
  'brother_jake',
  'jake_tri',
  'tri_apologis',
  'apologis_talk',
  'talk_happen',
  'happen_beg',
  'beg_relationship',
  'relationship_tear',
  'tear_beg',
  'beg_leav',
  'leav_alon',
  'alon_end',
  'end_brother',
  'brother_hand',
  'hand_letter',
  'letter_said',
  'said_realli',
  'realli_wish',
  'wish_thing',
  'thing_could',
  'could_differ',
  'differ_sister',
  'sister_twin',
  'twin_love',
  'love_kill',
  'kill_eachoth',
  'eachoth_anymor',
  'anymor_basic',
  'basic_lost',
  'lost_rip',
  'rip_letter',
  'letter_scream',
  'scream_famili',
  'famili_want',
  'want_leav',
  'leav_alon',
  'alon_walk',
  'walk_get',
  'get_taxi',
  'taxi_home',
  'home_upset',
  'upset_drive',
  'drive_sinc',
  'sinc_parent',
  'parent_famili',
  'famili_member',
  'member_told',
  'told_im',
  'im_cruel',
  'cruel_bitter',
  'bitter_need',
  'need_stop',
  'stop_live',
  'live_past',
  'past_get',
  'get_hey',
  'hey_guy',
  'guy_repli',
  'repli_anymor',
  'anymor_im',
  'im_emot',
  'emot_feel',
  'feel_well',
  'well_due',
  'due_anyon',
  'anyon_sub',
  'sub_amaz',
  'amaz_someon',
  'someon_gave',
  'gave_brother',
  'brother_number',
  'number_famili',
  'famili_stop',
  'stop_call',
  'call_im',
  'im_gon',
  'gon_na',
  'na_turn',
  'turn_phone',
  'phone_sake',
  'sake_anyon',
  'anyon_ask',
  'ask_fiancé',
  'fiancé_said',
  'said_famili',
  'famili_group',
  'group_anyon',
  'anyon_show',
  'show_home',
  'home_theyd',
  'theyd_better',
  'better_hope',
  'hope_cop',
  'cop_get',
  'get_answer',
  'answer_door',
  'door_id',
  'id_like',
  'like_answer',
  'answer_question',
  'question_lot',
  'lot_peopl',
  'peopl_keep',
  'keep_ask',
  'ask_go-',
  'go-_year',
  'year_see',
  'see_sign',
  'sign_-',
  '-_basic',
  'basic_brother',
  'brother_ex',
  'ex_alway',
  'alway_close',
  'close_obvious',
  'obvious_never',
  'never_thought',
  'thought_theyd',
  'theyd_someth',
  'someth_like',
  'like_like',
  'like_brother',
  'brother_meant',
  'meant_protect',
  'protect_bad',
  'bad_guy',
  'guy_kind',
  'kind_relationship',
  'relationship_jake',
  'jake_live',
  'live_togeth',
  'togeth_two',
  'two_year',
  'year_everyth',
  'everyth_normal',
  'normal_coupl',
  'coupl_hope',
  'hope_clear',
  'clear_lot',
  'lot_curios',
  'curios_bedroom',
  'bedroom_life',
  'life_angri',
  'angri_brother',
  'brother_jake',
  'jake_hate',
  'hate_jake',
  'jake_never',
  'never_forgiv',
  'forgiv_still',
  'still_piti',
  'piti_situat',
  'situat_parent',
  'parent_reason',
  'reason_im',
  'im_angri',
  'angri_twin',
  'twin_brother',
  'brother_obviou',
  'obviou_plan',
  'plan_parent',
  'parent_go',
  'go_contact',
  'contact_till',
  'till_babi',
  'babi_born',
  'born_least',
  'least_month',
  'month_old',
  'old_right',
  'right_head',
  'head_space',
  'space_therapi',
  'therapi_ye',
  'ye_help',
  'help_love',
  'love_trust',
  'trust_peopl',
  'peopl_im',
  'im_way',
  'way_better',
  'better_place',
  'place_year',
  'year_ago',
  'ago_happen',
  'happen_give',
  'give_neg',
  'neg_view',
  'view_lgbt+',
  'lgbt+_commun',
  'commun_cours',
  'cours_brother',
  'brother_jake',
  'jake_hurt',
  'hurt_whole',
  'whole_commun',
  'commun_let',
  'let_forget',
  'forget_homophob',
  'homophob_asshol',
  'asshol_reason',
  'reason_even',
  'even_happen',
  'happen_grammar',
  'grammar_bad',
  'bad_im',
  'im_sorri',
  'sorri_never',
  'never_check',
  'check_grammar',
  'grammar_internet',
  'internet_unless',
  'unless_work',
  'work_relat',
  'relat_plu',
  'plu_exhaust',
  'exhaust_emot',
  'emot_day',
  'context_short_version-',
  'short_version-_relationship',
  'version-_relationship_twin',
  'relationship_twin_brother',
  'twin_brother_best',
  'brother_best_friend',
  'best_friend_jake',
  'friend_jake_last',
  'jake_last_year',
  'last_year_till',
  'year_till_finish',
  'till_finish_collag',
  'finish_collag_ex',
  'collag_ex_gotten',
  'ex_gotten_enough',
  'gotten_enough_money',
  'enough_money_extrem',
  'money_extrem_religi',
  'extrem_religi_parent',
  'religi_parent_get',
  'parent_get_head',
  'get_head_start',
  'head_start_life',
  'start_life_know',
  'life_know_go',
  'know_go_brother',
  'go_brother_jake',
  'brother_jake_togeth',
  'jake_togeth_whole',
  'togeth_whole_time',
  'whole_time_use',
  'time_use_cover',
  'use_cover_feel',
  'cover_feel_matter',
  'feel_matter_brother',
  'matter_brother_sinc',
  'brother_sinc_teen',
  'sinc_teen_came',
  'teen_came_idea',
  'came_idea_use',
  'idea_use_parent',
  'use_parent_get',
  'parent_get_suspici',
  'get_suspici_parent',
  'suspici_parent_angri',
  'parent_angri_brother',
  'angri_brother_even',
  'brother_even_cut',
  'even_cut_contract',
  'cut_contract_year',
  'contract_year_made',
  'year_made_push',
  'made_push_sinc',
  'push_sinc_us',
  'sinc_us_speak',
  'us_speak_sinc',
  'speak_sinc_refus',
  'sinc_refus_speak',
  'refus_speak_brother',
  'speak_brother_due',
  'brother_due_dismiss',
  'due_dismiss_everyth',
  'dismiss_everyth_came',
  'everyth_came_jake',
  'came_jake_liter',
  'jake_liter_said',
  'liter_said_understand',
  'said_understand_choic',
  'understand_choic_brother',
  'choic_brother_wors',
  'brother_wors_like',
  'wors_like_get',
  'like_get_jake',
  'get_jake_come',
  'jake_come_parent',
  'come_parent_nut',
  'parent_nut_deserv',
  'nut_deserv_treat',
  'deserv_treat_like',
  'treat_like_year',
  'like_year_sinc',
  'year_sinc_everyth',
  'sinc_everyth_came',
  'everyth_came_im',
  'came_im_current',
  'im_current_pregnant',
  'current_pregnant_twin',
  'pregnant_twin_soon',
  'twin_soon_husband',
  'soon_husband_brother',
  'husband_brother_jake',
  'brother_jake_move',
  'jake_move_back',
  'move_back_home',
  'back_home_town',
  'home_town_last',
  'town_last_year',
  'last_year_tri',
  'year_tri_via',
  'tri_via_familyfriend',
  'via_familyfriend_even',
  'familyfriend_even_cowork',
  'even_cowork_get',
  'cowork_get_talk',
  'get_talk_mother',
  'talk_mother_beg',
  'mother_beg_sit',
  'beg_sit_like',
  'sit_like_adult',
  'like_adult_let',
  'adult_let_past',
  'let_past_ruin',
  'past_ruin_son',
  'ruin_son_chanc',
  'son_chanc_relationship',
  'chanc_relationship_uncl',
  'relationship_uncl_hate',
  'uncl_hate_sibl',
  'hate_sibl_ruin',
  'sibl_ruin_famili',
  'ruin_famili_mental',
  'famili_mental_health',
  'mental_health_hour',
  'health_hour_ago',
  'hour_ago_stop',
  'ago_stop_lunch',
  'stop_lunch_show',
  'lunch_show_parent',
  'show_parent_scan',
  'parent_scan_photo',
  'scan_photo_guess',
  'photo_guess_happi',
  'guess_happi_coupl',
  'happi_coupl_liter',
  'coupl_liter_shock',
  'liter_shock_minut',
  'shock_minut_brother',
  'minut_brother_tri',
  'brother_tri_hug',
  'tri_hug_push',
  'hug_push_away',
  'push_away_got',
  'away_got_work',
  'got_work_physic',
  'work_physic_stop',
  'physic_stop_shake',
  'stop_shake_brother',
  'shake_brother_jake',
  'brother_jake_tri',
  'jake_tri_apologis',
  'tri_apologis_talk',
  'apologis_talk_happen',
  'talk_happen_beg',
  'happen_beg_relationship',
  'beg_relationship_tear',
  'relationship_tear_beg',
  'tear_beg_leav',
  'beg_leav_alon',
  'leav_alon_end',
  'alon_end_brother',
  'end_brother_hand',
  'brother_hand_letter',
  'hand_letter_said',
  'letter_said_realli',
  'said_realli_wish',
  'realli_wish_thing',
  'wish_thing_could',
  'thing_could_differ',
  'could_differ_sister',
  'differ_sister_twin',
  'sister_twin_love',
  'twin_love_kill',
  'love_kill_eachoth',
  'kill_eachoth_anymor',
  'eachoth_anymor_basic',
  'anymor_basic_lost',
  'basic_lost_rip',
  'lost_rip_letter',
  'rip_letter_scream',
  'letter_scream_famili',
  'scream_famili_want',
  'famili_want_leav',
  'want_leav_alon',
  'leav_alon_walk',
  'alon_walk_get',
  'walk_get_taxi',
  'get_taxi_home',
  'taxi_home_upset',
  'home_upset_drive',
  'upset_drive_sinc',
  'drive_sinc_parent',
  'sinc_parent_famili',
  'parent_famili_member',
  'famili_member_told',
  'member_told_im',
  'told_im_cruel',
  'im_cruel_bitter',
  'cruel_bitter_need',
  'bitter_need_stop',
  'need_stop_live',
  'stop_live_past',
  'live_past_get',
  'past_get_hey',
  'get_hey_guy',
  'hey_guy_repli',
  'guy_repli_anymor',
  'repli_anymor_im',
  'anymor_im_emot',
  'im_emot_feel',
  'emot_feel_well',
  'feel_well_due',
  'well_due_anyon',
  'due_anyon_sub',
  'anyon_sub_amaz',
  'sub_amaz_someon',
  'amaz_someon_gave',
  'someon_gave_brother',
  'gave_brother_number',
  'brother_number_famili',
  'number_famili_stop',
  'famili_stop_call',
  'stop_call_im',
  'call_im_gon',
  'im_gon_na',
  'gon_na_turn',
  'na_turn_phone',
  'turn_phone_sake',
  'phone_sake_anyon',
  'sake_anyon_ask',
  'anyon_ask_fiancé',
  'ask_fiancé_said',
  'fiancé_said_famili',
  'said_famili_group',
  'famili_group_anyon',
  'group_anyon_show',
  'anyon_show_home',
  'show_home_theyd',
  'home_theyd_better',
  'theyd_better_hope',
  'better_hope_cop',
  'hope_cop_get',
  'cop_get_answer',
  'get_answer_door',
  'answer_door_id',
  'door_id_like',
  'id_like_answer',
  'like_answer_question',
  'answer_question_lot',
  'question_lot_peopl',
  'lot_peopl_keep',
  'peopl_keep_ask',
  'keep_ask_go-',
  'ask_go-_year',
  'go-_year_see',
  'year_see_sign',
  'see_sign_-',
  'sign_-_basic',
  '-_basic_brother',
  'basic_brother_ex',
  'brother_ex_alway',
  'ex_alway_close',
  'alway_close_obvious',
  'close_obvious_never',
  'obvious_never_thought',
  'never_thought_theyd',
  'thought_theyd_someth',
  'theyd_someth_like',
  ...],
 ['-year',
  'old',
  'niec',
  'realli',
  'art',
  'craft',
  'recent',
  'got',
  'crochet',
  'christma',
  'told',
  'surpris',
  'gift',
  'seem',
  'realli',
  'excit',
  'told',
  'realli',
  'look',
  'forward',
  'well',
  'prepar',
  'gift',
  'actual',
  'art',
  'suppli',
  'christma',
  'famili',
  'gather',
  'brought',
  'gift',
  'super',
  'excit',
  'open',
  'open',
  'saw',
  'crochet',
  'anim',
  'im',
  'honest',
  'look',
  'realli',
  'realli',
  'bad',
  'give',
  'idea',
  'look',
  'like',
  'imagin',
  'someth',
  'rbadtaxidermi',
  'crochet',
  'form',
  'help',
  'burst',
  'laugh',
  'stop',
  'laugh',
  'matter',
  'hard',
  'tri',
  'suppress',
  'excus',
  'go',
  'washroom',
  'lock',
  'nearli',
  'minut',
  'came',
  'niec',
  'tear',
  'parent',
  'tri',
  'consol',
  'apolog',
  'profus',
  'told',
  'realli',
  'like',
  'gift',
  'kept',
  'cri',
  'shout',
  'call',
  'liar',
  'suck',
  'art',
  'niec',
  'avoid',
  'vast',
  'major',
  'parti',
  'tri',
  'make',
  'feel',
  'better',
  'display',
  'gift',
  'live',
  'room',
  'cabinet',
  'wife',
  'pull',
  'asid',
  'later',
  'day',
  'told',
  'take',
  'parti',
  'word',
  'realli',
  'ugli',
  'made',
  'uncomfort',
  'surprisingli',
  'adult',
  'understand',
  'situat',
  'feel',
  'realli',
  'bad',
  'feel',
  'like',
  'destroy',
  'niec',
  'confid',
  'im',
  'sure',
  'make',
  '-year_old',
  'old_niec',
  'niec_realli',
  'realli_art',
  'art_craft',
  'craft_recent',
  'recent_got',
  'got_crochet',
  'crochet_christma',
  'christma_told',
  'told_surpris',
  'surpris_gift',
  'gift_seem',
  'seem_realli',
  'realli_excit',
  'excit_told',
  'told_realli',
  'realli_look',
  'look_forward',
  'forward_well',
  'well_prepar',
  'prepar_gift',
  'gift_actual',
  'actual_art',
  'art_suppli',
  'suppli_christma',
  'christma_famili',
  'famili_gather',
  'gather_brought',
  'brought_gift',
  'gift_super',
  'super_excit',
  'excit_open',
  'open_open',
  'open_saw',
  'saw_crochet',
  'crochet_anim',
  'anim_im',
  'im_honest',
  'honest_look',
  'look_realli',
  'realli_realli',
  'realli_bad',
  'bad_give',
  'give_idea',
  'idea_look',
  'look_like',
  'like_imagin',
  'imagin_someth',
  'someth_rbadtaxidermi',
  'rbadtaxidermi_crochet',
  'crochet_form',
  'form_help',
  'help_burst',
  'burst_laugh',
  'laugh_stop',
  'stop_laugh',
  'laugh_matter',
  'matter_hard',
  'hard_tri',
  'tri_suppress',
  'suppress_excus',
  'excus_go',
  'go_washroom',
  'washroom_lock',
  'lock_nearli',
  'nearli_minut',
  'minut_came',
  'came_niec',
  'niec_tear',
  'tear_parent',
  'parent_tri',
  'tri_consol',
  'consol_apolog',
  'apolog_profus',
  'profus_told',
  'told_realli',
  'realli_like',
  'like_gift',
  'gift_kept',
  'kept_cri',
  'cri_shout',
  'shout_call',
  'call_liar',
  'liar_suck',
  'suck_art',
  'art_niec',
  'niec_avoid',
  'avoid_vast',
  'vast_major',
  'major_parti',
  'parti_tri',
  'tri_make',
  'make_feel',
  'feel_better',
  'better_display',
  'display_gift',
  'gift_live',
  'live_room',
  'room_cabinet',
  'cabinet_wife',
  'wife_pull',
  'pull_asid',
  'asid_later',
  'later_day',
  'day_told',
  'told_take',
  'take_parti',
  'parti_word',
  'word_realli',
  'realli_ugli',
  'ugli_made',
  'made_uncomfort',
  'uncomfort_surprisingli',
  'surprisingli_adult',
  'adult_understand',
  'understand_situat',
  'situat_feel',
  'feel_realli',
  'realli_bad',
  'bad_feel',
  'feel_like',
  'like_destroy',
  'destroy_niec',
  'niec_confid',
  'confid_im',
  'im_sure',
  'sure_make',
  '-year_old_niec',
  'old_niec_realli',
  'niec_realli_art',
  'realli_art_craft',
  'art_craft_recent',
  'craft_recent_got',
  'recent_got_crochet',
  'got_crochet_christma',
  'crochet_christma_told',
  'christma_told_surpris',
  'told_surpris_gift',
  'surpris_gift_seem',
  'gift_seem_realli',
  'seem_realli_excit',
  'realli_excit_told',
  'excit_told_realli',
  'told_realli_look',
  'realli_look_forward',
  'look_forward_well',
  'forward_well_prepar',
  'well_prepar_gift',
  'prepar_gift_actual',
  'gift_actual_art',
  'actual_art_suppli',
  'art_suppli_christma',
  'suppli_christma_famili',
  'christma_famili_gather',
  'famili_gather_brought',
  'gather_brought_gift',
  'brought_gift_super',
  'gift_super_excit',
  'super_excit_open',
  'excit_open_open',
  'open_open_saw',
  'open_saw_crochet',
  'saw_crochet_anim',
  'crochet_anim_im',
  'anim_im_honest',
  'im_honest_look',
  'honest_look_realli',
  'look_realli_realli',
  'realli_realli_bad',
  'realli_bad_give',
  'bad_give_idea',
  'give_idea_look',
  'idea_look_like',
  'look_like_imagin',
  'like_imagin_someth',
  'imagin_someth_rbadtaxidermi',
  'someth_rbadtaxidermi_crochet',
  'rbadtaxidermi_crochet_form',
  'crochet_form_help',
  'form_help_burst',
  'help_burst_laugh',
  'burst_laugh_stop',
  'laugh_stop_laugh',
  'stop_laugh_matter',
  'laugh_matter_hard',
  'matter_hard_tri',
  'hard_tri_suppress',
  'tri_suppress_excus',
  'suppress_excus_go',
  'excus_go_washroom',
  'go_washroom_lock',
  'washroom_lock_nearli',
  'lock_nearli_minut',
  'nearli_minut_came',
  'minut_came_niec',
  'came_niec_tear',
  'niec_tear_parent',
  'tear_parent_tri',
  'parent_tri_consol',
  'tri_consol_apolog',
  'consol_apolog_profus',
  'apolog_profus_told',
  'profus_told_realli',
  'told_realli_like',
  'realli_like_gift',
  'like_gift_kept',
  'gift_kept_cri',
  'kept_cri_shout',
  'cri_shout_call',
  'shout_call_liar',
  'call_liar_suck',
  'liar_suck_art',
  'suck_art_niec',
  'art_niec_avoid',
  'niec_avoid_vast',
  'avoid_vast_major',
  'vast_major_parti',
  'major_parti_tri',
  'parti_tri_make',
  'tri_make_feel',
  'make_feel_better',
  'feel_better_display',
  'better_display_gift',
  'display_gift_live',
  'gift_live_room',
  'live_room_cabinet',
  'room_cabinet_wife',
  'cabinet_wife_pull',
  'wife_pull_asid',
  'pull_asid_later',
  'asid_later_day',
  'later_day_told',
  'day_told_take',
  'told_take_parti',
  'take_parti_word',
  'parti_word_realli',
  'word_realli_ugli',
  'realli_ugli_made',
  'ugli_made_uncomfort',
  'made_uncomfort_surprisingli',
  'uncomfort_surprisingli_adult',
  'surprisingli_adult_understand',
  'adult_understand_situat',
  'understand_situat_feel',
  'situat_feel_realli',
  'feel_realli_bad',
  'realli_bad_feel',
  'bad_feel_like',
  'feel_like_destroy',
  'like_destroy_niec',
  'destroy_niec_confid',
  'niec_confid_im',
  'confid_im_sure',
  'im_sure_make'],
 ['tonight',
  'mil',
  'came',
  'dinner',
  'made',
  'swedish',
  'meatbal',
  'gravi',
  'mash',
  'potato',
  'broccoli',
  'home',
  'made',
  'bread',
  'hous',
  'tend',
  'eat',
  'loung',
  'room',
  'unless',
  'big',
  'event',
  'dish',
  'everyon',
  'meal',
  'kid',
  'mil',
  'husband',
  'take',
  'meal',
  'serv',
  'mine',
  'run',
  'line',
  'grab',
  'cloth',
  'hung',
  'earlier',
  'big',
  'deal',
  'serv',
  'gener',
  'portion',
  'everyon',
  'way',
  'thought',
  'could',
  'eat',
  'got',
  'back',
  'line',
  'dinner',
  'gone',
  'ask',
  'anyon',
  'knew',
  'happen',
  'food',
  'bench',
  'mil',
  'pipe',
  'say',
  'want',
  'pile',
  'bowl',
  'full',
  'meatbal',
  'way',
  'would',
  'ever',
  'eat',
  'im',
  'stun',
  'figur',
  'oh',
  'well',
  'ill',
  'grab',
  'fast',
  'food',
  'bit',
  'later',
  'someth',
  'mayb',
  'super',
  'hungri',
  'bad',
  'cook',
  'enough',
  'eaten',
  'want',
  'ask',
  'contain',
  'take',
  'extra',
  'portion',
  'home',
  'dinner',
  'next',
  'night',
  'im',
  'pretti',
  'annoy',
  'point',
  'mention',
  'meant',
  'dinner',
  'night',
  'take',
  'away',
  'meal',
  'next',
  'night',
  'say',
  'oh',
  'well',
  'eat',
  'repli',
  'thank',
  'hand',
  'contain',
  'want',
  'eat',
  'leftov',
  'leav',
  'husband',
  'put',
  'kid',
  'bed',
  'come',
  'back',
  'ask',
  'wrong',
  'tell',
  'im',
  'hungri',
  'cook',
  'meal',
  'get',
  'eat',
  'im',
  'piss',
  'agre',
  'mil',
  'way',
  'line',
  'messag',
  'action',
  'greedi',
  'selfish',
  'owe',
  'apolog',
  'repli',
  'tell',
  'act',
  'like',
  'asshol',
  'cook',
  'anticip',
  'would',
  'take',
  'home',
  'portion',
  'next',
  'day',
  'offer',
  'eat',
  'want',
  'fault',
  'owe',
  'apolog',
  'attitud',
  'snarki',
  'comment',
  'also',
  'post',
  'social',
  'media',
  'happen',
  'peopl',
  'say',
  'im',
  'asshol',
  'rude',
  'hostess',
  'also',
  'add',
  'im',
  'current',
  'pregnant',
  'feel',
  'like',
  'quit',
  'unreason',
  'time',
  'due',
  'hormon',
  'aita',
  'tonight_mil',
  'mil_came',
  'came_dinner',
  'dinner_made',
  'made_swedish',
  'swedish_meatbal',
  'meatbal_gravi',
  'gravi_mash',
  'mash_potato',
  'potato_broccoli',
  'broccoli_home',
  'home_made',
  'made_bread',
  'bread_hous',
  'hous_tend',
  'tend_eat',
  'eat_loung',
  'loung_room',
  'room_unless',
  'unless_big',
  'big_event',
  'event_dish',
  'dish_everyon',
  'everyon_meal',
  'meal_kid',
  'kid_mil',
  'mil_husband',
  'husband_take',
  'take_meal',
  'meal_serv',
  'serv_mine',
  'mine_run',
  'run_line',
  'line_grab',
  'grab_cloth',
  'cloth_hung',
  'hung_earlier',
  'earlier_big',
  'big_deal',
  'deal_serv',
  'serv_gener',
  'gener_portion',
  'portion_everyon',
  'everyon_way',
  'way_thought',
  'thought_could',
  'could_eat',
  'eat_got',
  'got_back',
  'back_line',
  'line_dinner',
  'dinner_gone',
  'gone_ask',
  'ask_anyon',
  'anyon_knew',
  'knew_happen',
  'happen_food',
  'food_bench',
  'bench_mil',
  'mil_pipe',
  'pipe_say',
  'say_want',
  'want_pile',
  'pile_bowl',
  'bowl_full',
  'full_meatbal',
  'meatbal_way',
  'way_would',
  'would_ever',
  'ever_eat',
  'eat_im',
  'im_stun',
  'stun_figur',
  'figur_oh',
  'oh_well',
  'well_ill',
  'ill_grab',
  'grab_fast',
  'fast_food',
  'food_bit',
  'bit_later',
  'later_someth',
  'someth_mayb',
  'mayb_super',
  'super_hungri',
  'hungri_bad',
  'bad_cook',
  'cook_enough',
  'enough_eaten',
  'eaten_want',
  'want_ask',
  'ask_contain',
  'contain_take',
  'take_extra',
  'extra_portion',
  'portion_home',
  'home_dinner',
  'dinner_next',
  'next_night',
  'night_im',
  'im_pretti',
  'pretti_annoy',
  'annoy_point',
  'point_mention',
  'mention_meant',
  'meant_dinner',
  'dinner_night',
  'night_take',
  'take_away',
  'away_meal',
  'meal_next',
  'next_night',
  'night_say',
  'say_oh',
  'oh_well',
  'well_eat',
  'eat_repli',
  'repli_thank',
  'thank_hand',
  'hand_contain',
  'contain_want',
  'want_eat',
  'eat_leftov',
  'leftov_leav',
  'leav_husband',
  'husband_put',
  'put_kid',
  'kid_bed',
  'bed_come',
  'come_back',
  'back_ask',
  'ask_wrong',
  'wrong_tell',
  'tell_im',
  'im_hungri',
  'hungri_cook',
  'cook_meal',
  'meal_get',
  'get_eat',
  'eat_im',
  'im_piss',
  'piss_agre',
  'agre_mil',
  'mil_way',
  'way_line',
  'line_messag',
  'messag_action',
  'action_greedi',
  'greedi_selfish',
  'selfish_owe',
  'owe_apolog',
  'apolog_repli',
  'repli_tell',
  'tell_act',
  'act_like',
  'like_asshol',
  'asshol_cook',
  'cook_anticip',
  'anticip_would',
  'would_take',
  'take_home',
  'home_portion',
  'portion_next',
  'next_day',
  'day_offer',
  'offer_eat',
  'eat_want',
  'want_fault',
  'fault_owe',
  'owe_apolog',
  'apolog_attitud',
  'attitud_snarki',
  'snarki_comment',
  'comment_also',
  'also_post',
  'post_social',
  'social_media',
  'media_happen',
  'happen_peopl',
  'peopl_say',
  'say_im',
  'im_asshol',
  'asshol_rude',
  'rude_hostess',
  'hostess_also',
  'also_add',
  'add_im',
  'im_current',
  'current_pregnant',
  'pregnant_feel',
  'feel_like',
  'like_quit',
  'quit_unreason',
  'unreason_time',
  'time_due',
  'due_hormon',
  'hormon_aita',
  'tonight_mil_came',
  'mil_came_dinner',
  'came_dinner_made',
  'dinner_made_swedish',
  'made_swedish_meatbal',
  'swedish_meatbal_gravi',
  'meatbal_gravi_mash',
  'gravi_mash_potato',
  'mash_potato_broccoli',
  'potato_broccoli_home',
  'broccoli_home_made',
  'home_made_bread',
  'made_bread_hous',
  'bread_hous_tend',
  'hous_tend_eat',
  'tend_eat_loung',
  'eat_loung_room',
  'loung_room_unless',
  'room_unless_big',
  'unless_big_event',
  'big_event_dish',
  'event_dish_everyon',
  'dish_everyon_meal',
  'everyon_meal_kid',
  'meal_kid_mil',
  'kid_mil_husband',
  'mil_husband_take',
  'husband_take_meal',
  'take_meal_serv',
  'meal_serv_mine',
  'serv_mine_run',
  'mine_run_line',
  'run_line_grab',
  'line_grab_cloth',
  'grab_cloth_hung',
  'cloth_hung_earlier',
  'hung_earlier_big',
  'earlier_big_deal',
  'big_deal_serv',
  'deal_serv_gener',
  'serv_gener_portion',
  'gener_portion_everyon',
  'portion_everyon_way',
  'everyon_way_thought',
  'way_thought_could',
  'thought_could_eat',
  'could_eat_got',
  'eat_got_back',
  'got_back_line',
  'back_line_dinner',
  'line_dinner_gone',
  'dinner_gone_ask',
  'gone_ask_anyon',
  'ask_anyon_knew',
  'anyon_knew_happen',
  'knew_happen_food',
  'happen_food_bench',
  'food_bench_mil',
  'bench_mil_pipe',
  'mil_pipe_say',
  'pipe_say_want',
  'say_want_pile',
  'want_pile_bowl',
  'pile_bowl_full',
  'bowl_full_meatbal',
  'full_meatbal_way',
  'meatbal_way_would',
  'way_would_ever',
  'would_ever_eat',
  'ever_eat_im',
  'eat_im_stun',
  'im_stun_figur',
  'stun_figur_oh',
  'figur_oh_well',
  'oh_well_ill',
  'well_ill_grab',
  'ill_grab_fast',
  'grab_fast_food',
  'fast_food_bit',
  'food_bit_later',
  'bit_later_someth',
  'later_someth_mayb',
  'someth_mayb_super',
  'mayb_super_hungri',
  'super_hungri_bad',
  'hungri_bad_cook',
  'bad_cook_enough',
  'cook_enough_eaten',
  'enough_eaten_want',
  'eaten_want_ask',
  'want_ask_contain',
  'ask_contain_take',
  'contain_take_extra',
  'take_extra_portion',
  'extra_portion_home',
  'portion_home_dinner',
  'home_dinner_next',
  'dinner_next_night',
  'next_night_im',
  'night_im_pretti',
  'im_pretti_annoy',
  'pretti_annoy_point',
  'annoy_point_mention',
  'point_mention_meant',
  'mention_meant_dinner',
  'meant_dinner_night',
  'dinner_night_take',
  'night_take_away',
  'take_away_meal',
  'away_meal_next',
  'meal_next_night',
  'next_night_say',
  'night_say_oh',
  'say_oh_well',
  'oh_well_eat',
  'well_eat_repli',
  'eat_repli_thank',
  'repli_thank_hand',
  'thank_hand_contain',
  'hand_contain_want',
  'contain_want_eat',
  'want_eat_leftov',
  'eat_leftov_leav',
  'leftov_leav_husband',
  'leav_husband_put',
  'husband_put_kid',
  'put_kid_bed',
  'kid_bed_come',
  'bed_come_back',
  'come_back_ask',
  'back_ask_wrong',
  'ask_wrong_tell',
  'wrong_tell_im',
  'tell_im_hungri',
  'im_hungri_cook',
  'hungri_cook_meal',
  'cook_meal_get',
  'meal_get_eat',
  'get_eat_im',
  'eat_im_piss',
  'im_piss_agre',
  'piss_agre_mil',
  'agre_mil_way',
  'mil_way_line',
  'way_line_messag',
  'line_messag_action',
  'messag_action_greedi',
  'action_greedi_selfish',
  'greedi_selfish_owe',
  'selfish_owe_apolog',
  'owe_apolog_repli',
  'apolog_repli_tell',
  'repli_tell_act',
  'tell_act_like',
  'act_like_asshol',
  'like_asshol_cook',
  'asshol_cook_anticip',
  'cook_anticip_would',
  'anticip_would_take',
  'would_take_home',
  'take_home_portion',
  'home_portion_next',
  'portion_next_day',
  'next_day_offer',
  'day_offer_eat',
  'offer_eat_want',
  'eat_want_fault',
  'want_fault_owe',
  'fault_owe_apolog',
  'owe_apolog_attitud',
  'apolog_attitud_snarki',
  'attitud_snarki_comment',
  'snarki_comment_also',
  'comment_also_post',
  'also_post_social',
  'post_social_media',
  'social_media_happen',
  'media_happen_peopl',
  'happen_peopl_say',
  'peopl_say_im',
  'say_im_asshol',
  'im_asshol_rude',
  'asshol_rude_hostess',
  'rude_hostess_also',
  'hostess_also_add',
  'also_add_im',
  'add_im_current',
  'im_current_pregnant',
  'current_pregnant_feel',
  'pregnant_feel_like',
  'feel_like_quit',
  'like_quit_unreason',
  'quit_unreason_time',
  'unreason_time_due',
  'time_due_hormon',
  'due_hormon_aita'],
 ['post',
  'small',
  'updat',
  'page',
  'groom',
  'whay',
  'possibl',
  'trigger',
  'bride',
  'edit',
  'post',
  'messag',
  'similar',
  'dress',
  'profil',
  'edit',
  '°',
  'open',
  'area',
  'everyon',
  'wear',
  'short',
  'sleev',
  'strapless',
  'orand',
  'spaghetti',
  'strap',
  'edit',
  'updat',
  'show',
  'parent',
  'messag',
  'theyr',
  'press',
  'charg',
  'last',
  'edit',
  'pleas',
  'send',
  'messag',
  'ask',
  'pic',
  'comfort',
  'stop',
  'recent',
  'attend',
  'wed',
  'bride',
  'accus',
  'destroy',
  'big',
  'day',
  'yr',
  'old',
  'wed',
  'dad',
  'friend',
  'daughter',
  'one',
  'demand',
  'girl',
  'modest',
  'simpl',
  'colour',
  'makeup',
  'request',
  'okay',
  'event',
  'big',
  'day',
  'came',
  'wore',
  'satin',
  'sage',
  'dress',
  'beauti',
  'still',
  'modest',
  'makeup',
  'shimmeri',
  'eyeshadow',
  'transpar',
  'gloss',
  'wed',
  'bride',
  'mom',
  'suddenli',
  'ask',
  'talk',
  'alon',
  'weird',
  'sinc',
  'talk',
  'dad',
  'instead',
  'bought',
  'bride',
  'dress',
  'room',
  'awkward',
  'bride',
  'start',
  'berat',
  'wear',
  'dress',
  'say',
  'im',
  'flashi',
  'im',
  'steal',
  'spotlight',
  'gave',
  'altern',
  'leav',
  'wed',
  'wear',
  'black',
  'dress',
  'doubl',
  'size',
  'remov',
  'makeup',
  'refus',
  'outfit',
  'bride',
  'want',
  'wear',
  'wouldv',
  'bothersom',
  'pull',
  'dress',
  'time',
  'plu',
  'parent',
  'would',
  'ask',
  'origin',
  'dress',
  'bride',
  'start',
  'cri',
  'told',
  'parent',
  'everyth',
  'demand',
  'got',
  'angri',
  'said',
  'theyr',
  'go',
  'give',
  'wed',
  'money',
  'lead',
  'fight',
  'dad',
  'friend',
  'today',
  'bride',
  'sent',
  'hate',
  'messag',
  'say',
  'ruin',
  'wed',
  'aita',
  'post_small',
  'small_updat',
  'updat_page',
  'page_groom',
  'groom_whay',
  'whay_possibl',
  'possibl_trigger',
  'trigger_bride',
  'bride_edit',
  'edit_post',
  'post_messag',
  'messag_similar',
  'similar_dress',
  'dress_profil',
  'profil_edit',
  'edit_°',
  '°_open',
  'open_area',
  'area_everyon',
  'everyon_wear',
  'wear_short',
  'short_sleev',
  'sleev_strapless',
  'strapless_orand',
  'orand_spaghetti',
  'spaghetti_strap',
  'strap_edit',
  'edit_updat',
  'updat_show',
  'show_parent',
  'parent_messag',
  'messag_theyr',
  'theyr_press',
  'press_charg',
  'charg_last',
  'last_edit',
  'edit_pleas',
  'pleas_send',
  'send_messag',
  'messag_ask',
  'ask_pic',
  'pic_comfort',
  'comfort_stop',
  'stop_recent',
  'recent_attend',
  'attend_wed',
  'wed_bride',
  'bride_accus',
  'accus_destroy',
  'destroy_big',
  'big_day',
  'day_yr',
  'yr_old',
  'old_wed',
  'wed_dad',
  'dad_friend',
  'friend_daughter',
  'daughter_one',
  'one_demand',
  'demand_girl',
  'girl_modest',
  'modest_simpl',
  'simpl_colour',
  'colour_makeup',
  'makeup_request',
  'request_okay',
  'okay_event',
  'event_big',
  'big_day',
  'day_came',
  'came_wore',
  'wore_satin',
  'satin_sage',
  'sage_dress',
  'dress_beauti',
  'beauti_still',
  'still_modest',
  'modest_makeup',
  'makeup_shimmeri',
  'shimmeri_eyeshadow',
  'eyeshadow_transpar',
  'transpar_gloss',
  'gloss_wed',
  'wed_bride',
  'bride_mom',
  'mom_suddenli',
  'suddenli_ask',
  'ask_talk',
  'talk_alon',
  'alon_weird',
  'weird_sinc',
  'sinc_talk',
  'talk_dad',
  'dad_instead',
  'instead_bought',
  'bought_bride',
  'bride_dress',
  'dress_room',
  'room_awkward',
  'awkward_bride',
  'bride_start',
  'start_berat',
  'berat_wear',
  'wear_dress',
  'dress_say',
  'say_im',
  'im_flashi',
  'flashi_im',
  'im_steal',
  'steal_spotlight',
  'spotlight_gave',
  'gave_altern',
  'altern_leav',
  'leav_wed',
  'wed_wear',
  'wear_black',
  'black_dress',
  'dress_doubl',
  'doubl_size',
  'size_remov',
  'remov_makeup',
  'makeup_refus',
  'refus_outfit',
  'outfit_bride',
  'bride_want',
  'want_wear',
  'wear_wouldv',
  'wouldv_bothersom',
  'bothersom_pull',
  'pull_dress',
  'dress_time',
  'time_plu',
  'plu_parent',
  'parent_would',
  'would_ask',
  'ask_origin',
  'origin_dress',
  'dress_bride',
  'bride_start',
  'start_cri',
  'cri_told',
  'told_parent',
  'parent_everyth',
  'everyth_demand',
  'demand_got',
  'got_angri',
  'angri_said',
  'said_theyr',
  'theyr_go',
  'go_give',
  'give_wed',
  'wed_money',
  'money_lead',
  'lead_fight',
  'fight_dad',
  'dad_friend',
  'friend_today',
  'today_bride',
  'bride_sent',
  'sent_hate',
  'hate_messag',
  'messag_say',
  'say_ruin',
  'ruin_wed',
  'wed_aita',
  'post_small_updat',
  'small_updat_page',
  'updat_page_groom',
  'page_groom_whay',
  'groom_whay_possibl',
  'whay_possibl_trigger',
  'possibl_trigger_bride',
  'trigger_bride_edit',
  'bride_edit_post',
  'edit_post_messag',
  'post_messag_similar',
  'messag_similar_dress',
  'similar_dress_profil',
  'dress_profil_edit',
  'profil_edit_°',
  'edit_°_open',
  '°_open_area',
  'open_area_everyon',
  'area_everyon_wear',
  'everyon_wear_short',
  'wear_short_sleev',
  'short_sleev_strapless',
  'sleev_strapless_orand',
  'strapless_orand_spaghetti',
  'orand_spaghetti_strap',
  'spaghetti_strap_edit',
  'strap_edit_updat',
  'edit_updat_show',
  'updat_show_parent',
  'show_parent_messag',
  'parent_messag_theyr',
  'messag_theyr_press',
  'theyr_press_charg',
  'press_charg_last',
  'charg_last_edit',
  'last_edit_pleas',
  'edit_pleas_send',
  'pleas_send_messag',
  'send_messag_ask',
  'messag_ask_pic',
  'ask_pic_comfort',
  'pic_comfort_stop',
  'comfort_stop_recent',
  'stop_recent_attend',
  'recent_attend_wed',
  'attend_wed_bride',
  'wed_bride_accus',
  'bride_accus_destroy',
  'accus_destroy_big',
  'destroy_big_day',
  'big_day_yr',
  'day_yr_old',
  'yr_old_wed',
  'old_wed_dad',
  'wed_dad_friend',
  'dad_friend_daughter',
  'friend_daughter_one',
  'daughter_one_demand',
  'one_demand_girl',
  'demand_girl_modest',
  'girl_modest_simpl',
  'modest_simpl_colour',
  'simpl_colour_makeup',
  'colour_makeup_request',
  'makeup_request_okay',
  'request_okay_event',
  'okay_event_big',
  'event_big_day',
  'big_day_came',
  'day_came_wore',
  'came_wore_satin',
  'wore_satin_sage',
  'satin_sage_dress',
  'sage_dress_beauti',
  'dress_beauti_still',
  'beauti_still_modest',
  'still_modest_makeup',
  'modest_makeup_shimmeri',
  'makeup_shimmeri_eyeshadow',
  'shimmeri_eyeshadow_transpar',
  'eyeshadow_transpar_gloss',
  'transpar_gloss_wed',
  'gloss_wed_bride',
  'wed_bride_mom',
  'bride_mom_suddenli',
  'mom_suddenli_ask',
  'suddenli_ask_talk',
  'ask_talk_alon',
  'talk_alon_weird',
  'alon_weird_sinc',
  'weird_sinc_talk',
  'sinc_talk_dad',
  'talk_dad_instead',
  'dad_instead_bought',
  'instead_bought_bride',
  'bought_bride_dress',
  'bride_dress_room',
  'dress_room_awkward',
  'room_awkward_bride',
  'awkward_bride_start',
  'bride_start_berat',
  'start_berat_wear',
  'berat_wear_dress',
  'wear_dress_say',
  'dress_say_im',
  'say_im_flashi',
  'im_flashi_im',
  'flashi_im_steal',
  'im_steal_spotlight',
  'steal_spotlight_gave',
  'spotlight_gave_altern',
  'gave_altern_leav',
  'altern_leav_wed',
  'leav_wed_wear',
  'wed_wear_black',
  'wear_black_dress',
  'black_dress_doubl',
  'dress_doubl_size',
  'doubl_size_remov',
  'size_remov_makeup',
  'remov_makeup_refus',
  'makeup_refus_outfit',
  'refus_outfit_bride',
  'outfit_bride_want',
  'bride_want_wear',
  'want_wear_wouldv',
  'wear_wouldv_bothersom',
  'wouldv_bothersom_pull',
  'bothersom_pull_dress',
  'pull_dress_time',
  'dress_time_plu',
  'time_plu_parent',
  'plu_parent_would',
  'parent_would_ask',
  'would_ask_origin',
  'ask_origin_dress',
  'origin_dress_bride',
  'dress_bride_start',
  'bride_start_cri',
  'start_cri_told',
  'cri_told_parent',
  'told_parent_everyth',
  'parent_everyth_demand',
  'everyth_demand_got',
  'demand_got_angri',
  'got_angri_said',
  'angri_said_theyr',
  'said_theyr_go',
  'theyr_go_give',
  'go_give_wed',
  'give_wed_money',
  'wed_money_lead',
  'money_lead_fight',
  'lead_fight_dad',
  'fight_dad_friend',
  'dad_friend_today',
  'friend_today_bride',
  'today_bride_sent',
  'bride_sent_hate',
  'sent_hate_messag',
  'hate_messag_say',
  'messag_say_ruin',
  'say_ruin_wed',
  'ruin_wed_aita'],
 ['ill',
  'perfac',
  'say',
  'see',
  'michael',
  'realli',
  'funni',
  'bit',
  'sarcast',
  'though',
  'guy',
  'pretti',
  'much',
  'get',
  'along',
  'well',
  'weve',
  'date',
  'month',
  'michael',
  'like',
  'food',
  'cook',
  'want',
  'come',
  'hous',
  'cook',
  'dinner',
  'also',
  'meet',
  'dog',
  'first',
  'time',
  'saw',
  'picturesvideo',
  'overprotect',
  'grab',
  'need',
  'store',
  'went',
  'hous',
  'went',
  'well',
  'met',
  'dog',
  'sat',
  'talk',
  'suddenli',
  'dog',
  'start',
  'move',
  'funni',
  'way',
  'michael',
  'laugh',
  'look',
  'felt',
  'confus',
  'ask',
  'dog',
  'michael',
  'said',
  'dog',
  'tell',
  'like',
  'ummm',
  'okay',
  'flatout',
  'said',
  'dog',
  'thought',
  'ugli',
  'shock',
  'complet',
  'look',
  'michael',
  'ask',
  'seriou',
  'start',
  'explain',
  'dog',
  'like',
  'peopl',
  'get',
  'offend',
  'anim',
  'brhavior',
  'felt',
  'horribl',
  'person',
  'alway',
  'struggl',
  'self',
  'esteem',
  'stranger',
  'word',
  'ugli',
  'issu',
  'dog',
  'michael',
  'said',
  'like',
  'indirectli',
  'give',
  'opinion',
  'look',
  'use',
  'dog',
  'excus',
  'long',
  'stori',
  'short',
  'argument',
  'end',
  'cancel',
  'dinner',
  'go',
  'home',
  'michael',
  'call',
  'sever',
  'time',
  'pick',
  'lash',
  'entir',
  'time',
  'say',
  'overreact',
  'blame',
  'punish',
  'someth',
  'dog',
  'advis',
  'get',
  'rid',
  'toxic',
  'sensit',
  'deal',
  'whatev',
  'insecur',
  'soon',
  'possibl',
  'happen',
  'set',
  'tone',
  'relationship',
  'eventu',
  'marriag',
  'later',
  'respond',
  'later',
  'caus',
  'anoth',
  'argument',
  'sister',
  'said',
  'mess',
  'thing',
  'stupid',
  'laugh',
  'reason',
  'abl',
  'overeact',
  'ill_perfac',
  'perfac_say',
  'say_see',
  'see_michael',
  'michael_realli',
  'realli_funni',
  'funni_bit',
  'bit_sarcast',
  'sarcast_though',
  'though_guy',
  'guy_pretti',
  'pretti_much',
  'much_get',
  'get_along',
  'along_well',
  'well_weve',
  'weve_date',
  'date_month',
  'month_michael',
  'michael_like',
  'like_food',
  'food_cook',
  'cook_want',
  'want_come',
  'come_hous',
  'hous_cook',
  'cook_dinner',
  'dinner_also',
  'also_meet',
  'meet_dog',
  'dog_first',
  'first_time',
  'time_saw',
  'saw_picturesvideo',
  'picturesvideo_overprotect',
  'overprotect_grab',
  'grab_need',
  'need_store',
  'store_went',
  'went_hous',
  'hous_went',
  'went_well',
  'well_met',
  'met_dog',
  'dog_sat',
  'sat_talk',
  'talk_suddenli',
  'suddenli_dog',
  'dog_start',
  'start_move',
  'move_funni',
  'funni_way',
  'way_michael',
  'michael_laugh',
  'laugh_look',
  'look_felt',
  'felt_confus',
  'confus_ask',
  'ask_dog',
  'dog_michael',
  'michael_said',
  'said_dog',
  'dog_tell',
  'tell_like',
  'like_ummm',
  'ummm_okay',
  'okay_flatout',
  'flatout_said',
  'said_dog',
  'dog_thought',
  'thought_ugli',
  'ugli_shock',
  'shock_complet',
  'complet_look',
  'look_michael',
  'michael_ask',
  'ask_seriou',
  'seriou_start',
  'start_explain',
  'explain_dog',
  'dog_like',
  'like_peopl',
  'peopl_get',
  'get_offend',
  'offend_anim',
  'anim_brhavior',
  'brhavior_felt',
  'felt_horribl',
  'horribl_person',
  'person_alway',
  'alway_struggl',
  'struggl_self',
  'self_esteem',
  'esteem_stranger',
  'stranger_word',
  'word_ugli',
  'ugli_issu',
  'issu_dog',
  'dog_michael',
  'michael_said',
  'said_like',
  'like_indirectli',
  'indirectli_give',
  'give_opinion',
  'opinion_look',
  'look_use',
  'use_dog',
  'dog_excus',
  'excus_long',
  'long_stori',
  'stori_short',
  'short_argument',
  'argument_end',
  'end_cancel',
  'cancel_dinner',
  'dinner_go',
  'go_home',
  'home_michael',
  'michael_call',
  'call_sever',
  'sever_time',
  'time_pick',
  'pick_lash',
  'lash_entir',
  'entir_time',
  'time_say',
  'say_overreact',
  'overreact_blame',
  'blame_punish',
  'punish_someth',
  'someth_dog',
  'dog_advis',
  'advis_get',
  'get_rid',
  'rid_toxic',
  'toxic_sensit',
  'sensit_deal',
  'deal_whatev',
  'whatev_insecur',
  'insecur_soon',
  'soon_possibl',
  'possibl_happen',
  'happen_set',
  'set_tone',
  'tone_relationship',
  'relationship_eventu',
  'eventu_marriag',
  'marriag_later',
  'later_respond',
  'respond_later',
  'later_caus',
  'caus_anoth',
  'anoth_argument',
  'argument_sister',
  'sister_said',
  'said_mess',
  'mess_thing',
  'thing_stupid',
  'stupid_laugh',
  'laugh_reason',
  'reason_abl',
  'abl_overeact',
  'ill_perfac_say',
  'perfac_say_see',
  'say_see_michael',
  'see_michael_realli',
  'michael_realli_funni',
  'realli_funni_bit',
  'funni_bit_sarcast',
  'bit_sarcast_though',
  'sarcast_though_guy',
  'though_guy_pretti',
  'guy_pretti_much',
  'pretti_much_get',
  'much_get_along',
  'get_along_well',
  'along_well_weve',
  'well_weve_date',
  'weve_date_month',
  'date_month_michael',
  'month_michael_like',
  'michael_like_food',
  'like_food_cook',
  'food_cook_want',
  'cook_want_come',
  'want_come_hous',
  'come_hous_cook',
  'hous_cook_dinner',
  'cook_dinner_also',
  'dinner_also_meet',
  'also_meet_dog',
  'meet_dog_first',
  'dog_first_time',
  'first_time_saw',
  'time_saw_picturesvideo',
  'saw_picturesvideo_overprotect',
  'picturesvideo_overprotect_grab',
  'overprotect_grab_need',
  'grab_need_store',
  'need_store_went',
  'store_went_hous',
  'went_hous_went',
  'hous_went_well',
  'went_well_met',
  'well_met_dog',
  'met_dog_sat',
  'dog_sat_talk',
  'sat_talk_suddenli',
  'talk_suddenli_dog',
  'suddenli_dog_start',
  'dog_start_move',
  'start_move_funni',
  'move_funni_way',
  'funni_way_michael',
  'way_michael_laugh',
  'michael_laugh_look',
  'laugh_look_felt',
  'look_felt_confus',
  'felt_confus_ask',
  'confus_ask_dog',
  'ask_dog_michael',
  'dog_michael_said',
  'michael_said_dog',
  'said_dog_tell',
  'dog_tell_like',
  'tell_like_ummm',
  'like_ummm_okay',
  'ummm_okay_flatout',
  'okay_flatout_said',
  'flatout_said_dog',
  'said_dog_thought',
  'dog_thought_ugli',
  'thought_ugli_shock',
  'ugli_shock_complet',
  'shock_complet_look',
  'complet_look_michael',
  'look_michael_ask',
  'michael_ask_seriou',
  'ask_seriou_start',
  'seriou_start_explain',
  'start_explain_dog',
  'explain_dog_like',
  'dog_like_peopl',
  'like_peopl_get',
  'peopl_get_offend',
  'get_offend_anim',
  'offend_anim_brhavior',
  'anim_brhavior_felt',
  'brhavior_felt_horribl',
  'felt_horribl_person',
  'horribl_person_alway',
  'person_alway_struggl',
  'alway_struggl_self',
  'struggl_self_esteem',
  'self_esteem_stranger',
  'esteem_stranger_word',
  'stranger_word_ugli',
  'word_ugli_issu',
  'ugli_issu_dog',
  'issu_dog_michael',
  'dog_michael_said',
  'michael_said_like',
  'said_like_indirectli',
  'like_indirectli_give',
  'indirectli_give_opinion',
  'give_opinion_look',
  'opinion_look_use',
  'look_use_dog',
  'use_dog_excus',
  'dog_excus_long',
  'excus_long_stori',
  'long_stori_short',
  'stori_short_argument',
  'short_argument_end',
  'argument_end_cancel',
  'end_cancel_dinner',
  'cancel_dinner_go',
  'dinner_go_home',
  'go_home_michael',
  'home_michael_call',
  'michael_call_sever',
  'call_sever_time',
  'sever_time_pick',
  'time_pick_lash',
  'pick_lash_entir',
  'lash_entir_time',
  'entir_time_say',
  'time_say_overreact',
  'say_overreact_blame',
  'overreact_blame_punish',
  'blame_punish_someth',
  'punish_someth_dog',
  'someth_dog_advis',
  'dog_advis_get',
  'advis_get_rid',
  'get_rid_toxic',
  'rid_toxic_sensit',
  'toxic_sensit_deal',
  'sensit_deal_whatev',
  'deal_whatev_insecur',
  'whatev_insecur_soon',
  'insecur_soon_possibl',
  'soon_possibl_happen',
  'possibl_happen_set',
  'happen_set_tone',
  'set_tone_relationship',
  'tone_relationship_eventu',
  'relationship_eventu_marriag',
  'eventu_marriag_later',
  'marriag_later_respond',
  'later_respond_later',
  'respond_later_caus',
  'later_caus_anoth',
  'caus_anoth_argument',
  'anoth_argument_sister',
  'argument_sister_said',
  'sister_said_mess',
  'said_mess_thing',
  'mess_thing_stupid',
  'thing_stupid_laugh',
  'stupid_laugh_reason',
  'laugh_reason_abl',
  'reason_abl_overeact'],
 ['mother',
  'daughter',
  'previou',
  'marriag',
  'three',
  'children',
  'rest',
  'boy',
  'import',
  'know',
  'last',
  'week',
  'mom',
  'talk',
  'one',
  'friend',
  'color',
  'want',
  'bridesmaid',
  'dress',
  'mom',
  'plan',
  'wed',
  'new',
  'boyfriend',
  'past',
  'two',
  'month',
  'engag',
  'one',
  'year',
  'wed',
  'decemb',
  'day',
  'birthday',
  'mom',
  'plan',
  'parti',
  'around',
  'time',
  'wed',
  'insist',
  'alright',
  'boyfriend',
  'would',
  'go',
  'honeymoon',
  'next',
  'day',
  'talk',
  'ask',
  'go',
  'look',
  'dress',
  'sinc',
  'ask',
  'flower',
  'girl',
  'could',
  'see',
  'disappoint',
  'look',
  'face',
  'ask',
  'confus',
  'respond',
  'minut',
  'later',
  'said',
  'well',
  'talk',
  'later',
  'hour',
  'later',
  'mom',
  'came',
  'thought',
  'go',
  'talk',
  'dress',
  'situat',
  'instead',
  'sat',
  'explain',
  'new',
  'boyfriend',
  'thought',
  'itd',
  'better',
  'fit',
  'three',
  'daughter',
  'lead',
  'wed',
  'whatev',
  'cool',
  'import',
  'note',
  'mom',
  'alway',
  'want',
  'girl',
  'girl',
  'look',
  'much',
  'like',
  'father',
  'caus',
  'strain',
  'relationship',
  'dad',
  'explain',
  'mother',
  'postpartum',
  'connect',
  'gave',
  'birth',
  'three',
  'younger',
  'step',
  'sibl',
  'look',
  'like',
  'hertriplet',
  'yo',
  'obvious',
  'overjoy',
  'hurt',
  'see',
  'happi',
  'brother',
  'similar',
  'experi',
  'significantli',
  'better',
  'look',
  'like',
  'know',
  'dramat',
  'thing',
  'say',
  'sometim',
  'feel',
  'like',
  'mother',
  'feel',
  'connect',
  'birth',
  'letdown',
  'right',
  'gate',
  'done',
  'ask',
  'dress',
  'still',
  'one',
  'disappoint',
  'look',
  'face',
  'came',
  'tell',
  'invit',
  'wed',
  'simpli',
  'boyfriend',
  'thought',
  'would',
  'upset',
  'famili',
  'mom',
  'previou',
  'marriag',
  'like',
  'dad',
  'also',
  'explain',
  'birthday',
  'happen',
  'either',
  'due',
  'want',
  'go',
  'honeymoon',
  'right',
  'away',
  'turn',
  'scream',
  'match',
  'yell',
  'im',
  'sorri',
  'look',
  'like',
  'enough',
  'love',
  'im',
  'sorri',
  'conceit',
  'get',
  'fact',
  'look',
  'like',
  'dad',
  'kick',
  'boyfriend',
  'within',
  'hour',
  'cri',
  'said',
  'brother',
  'know',
  'happen',
  'refus',
  'go',
  'wed',
  'upset',
  'even',
  'though',
  'care',
  'feel',
  'right',
  'brother',
  'actual',
  'relationship',
  'probabl',
  'mess',
  'let',
  'anger',
  'get',
  'best',
  'aita',
  'edit',
  'live',
  'dad',
  'full',
  'time',
  'custodi',
  'agreement',
  'know',
  'usual',
  'visit',
  'mom',
  'free',
  'ask',
  'come',
  'im',
  'oblig',
  'go',
  'parent',
  'marri',
  'two',
  'year',
  'prior',
  'second',
  'brother',
  'divorc',
  'birth',
  'date',
  'divorc',
  'way',
  'make',
  'work',
  'edit',
  'brother',
  'full',
  'blood',
  'girl',
  'mom',
  'half',
  'blood',
  'said',
  'step',
  'consid',
  'relat',
  'ive',
  'never',
  'room',
  'five',
  'minut',
  'due',
  'mom',
  'allow',
  'brother',
  'invit',
  'boyfriend',
  'actulli',
  'like',
  'famili',
  'get',
  'piss',
  'id',
  'excus',
  'exclud',
  'honestli',
  'care',
  'anymor',
  'situat',
  'see',
  'brother',
  'back',
  'dad',
  'threaten',
  'call',
  'cp',
  'ive',
  'talk',
  'want',
  'get',
  'three',
  'girl',
  'involv',
  'despit',
  'relationship',
  'mother_daughter',
  'daughter_previou',
  'previou_marriag',
  'marriag_three',
  'three_children',
  'children_rest',
  'rest_boy',
  'boy_import',
  'import_know',
  'know_last',
  'last_week',
  'week_mom',
  'mom_talk',
  'talk_one',
  'one_friend',
  'friend_color',
  'color_want',
  'want_bridesmaid',
  'bridesmaid_dress',
  'dress_mom',
  'mom_plan',
  'plan_wed',
  'wed_new',
  'new_boyfriend',
  'boyfriend_past',
  'past_two',
  'two_month',
  'month_engag',
  'engag_one',
  'one_year',
  'year_wed',
  'wed_decemb',
  'decemb_day',
  'day_birthday',
  'birthday_mom',
  'mom_plan',
  'plan_parti',
  'parti_around',
  'around_time',
  'time_wed',
  'wed_insist',
  'insist_alright',
  'alright_boyfriend',
  'boyfriend_would',
  'would_go',
  'go_honeymoon',
  'honeymoon_next',
  'next_day',
  'day_talk',
  'talk_ask',
  'ask_go',
  'go_look',
  'look_dress',
  'dress_sinc',
  'sinc_ask',
  'ask_flower',
  'flower_girl',
  'girl_could',
  'could_see',
  'see_disappoint',
  'disappoint_look',
  'look_face',
  'face_ask',
  'ask_confus',
  'confus_respond',
  'respond_minut',
  'minut_later',
  'later_said',
  'said_well',
  'well_talk',
  'talk_later',
  'later_hour',
  'hour_later',
  'later_mom',
  'mom_came',
  'came_thought',
  'thought_go',
  'go_talk',
  'talk_dress',
  'dress_situat',
  'situat_instead',
  'instead_sat',
  'sat_explain',
  'explain_new',
  'new_boyfriend',
  'boyfriend_thought',
  'thought_itd',
  'itd_better',
  'better_fit',
  'fit_three',
  'three_daughter',
  'daughter_lead',
  'lead_wed',
  'wed_whatev',
  'whatev_cool',
  'cool_import',
  'import_note',
  'note_mom',
  'mom_alway',
  'alway_want',
  'want_girl',
  'girl_girl',
  'girl_look',
  'look_much',
  'much_like',
  'like_father',
  'father_caus',
  'caus_strain',
  'strain_relationship',
  'relationship_dad',
  'dad_explain',
  'explain_mother',
  'mother_postpartum',
  'postpartum_connect',
  'connect_gave',
  'gave_birth',
  'birth_three',
  'three_younger',
  'younger_step',
  'step_sibl',
  'sibl_look',
  'look_like',
  'like_hertriplet',
  'hertriplet_yo',
  'yo_obvious',
  'obvious_overjoy',
  'overjoy_hurt',
  'hurt_see',
  'see_happi',
  'happi_brother',
  'brother_similar',
  'similar_experi',
  'experi_significantli',
  'significantli_better',
  'better_look',
  'look_like',
  'like_know',
  'know_dramat',
  'dramat_thing',
  'thing_say',
  'say_sometim',
  'sometim_feel',
  'feel_like',
  'like_mother',
  'mother_feel',
  'feel_connect',
  'connect_birth',
  'birth_letdown',
  'letdown_right',
  'right_gate',
  'gate_done',
  'done_ask',
  'ask_dress',
  'dress_still',
  'still_one',
  'one_disappoint',
  'disappoint_look',
  'look_face',
  'face_came',
  'came_tell',
  'tell_invit',
  'invit_wed',
  'wed_simpli',
  'simpli_boyfriend',
  'boyfriend_thought',
  'thought_would',
  'would_upset',
  'upset_famili',
  'famili_mom',
  'mom_previou',
  'previou_marriag',
  'marriag_like',
  'like_dad',
  'dad_also',
  'also_explain',
  'explain_birthday',
  'birthday_happen',
  'happen_either',
  'either_due',
  'due_want',
  'want_go',
  'go_honeymoon',
  'honeymoon_right',
  'right_away',
  'away_turn',
  'turn_scream',
  'scream_match',
  'match_yell',
  'yell_im',
  'im_sorri',
  'sorri_look',
  'look_like',
  'like_enough',
  'enough_love',
  'love_im',
  'im_sorri',
  'sorri_conceit',
  'conceit_get',
  'get_fact',
  'fact_look',
  'look_like',
  'like_dad',
  'dad_kick',
  'kick_boyfriend',
  'boyfriend_within',
  'within_hour',
  'hour_cri',
  'cri_said',
  'said_brother',
  'brother_know',
  'know_happen',
  'happen_refus',
  'refus_go',
  'go_wed',
  'wed_upset',
  'upset_even',
  'even_though',
  'though_care',
  'care_feel',
  'feel_right',
  'right_brother',
  'brother_actual',
  'actual_relationship',
  'relationship_probabl',
  'probabl_mess',
  'mess_let',
  'let_anger',
  'anger_get',
  'get_best',
  'best_aita',
  'aita_edit',
  'edit_live',
  'live_dad',
  'dad_full',
  'full_time',
  'time_custodi',
  'custodi_agreement',
  'agreement_know',
  'know_usual',
  'usual_visit',
  'visit_mom',
  'mom_free',
  'free_ask',
  'ask_come',
  'come_im',
  'im_oblig',
  'oblig_go',
  'go_parent',
  'parent_marri',
  'marri_two',
  'two_year',
  'year_prior',
  'prior_second',
  'second_brother',
  'brother_divorc',
  'divorc_birth',
  'birth_date',
  'date_divorc',
  'divorc_way',
  'way_make',
  'make_work',
  'work_edit',
  'edit_brother',
  'brother_full',
  'full_blood',
  'blood_girl',
  'girl_mom',
  'mom_half',
  'half_blood',
  'blood_said',
  'said_step',
  'step_consid',
  'consid_relat',
  'relat_ive',
  'ive_never',
  'never_room',
  'room_five',
  'five_minut',
  'minut_due',
  'due_mom',
  'mom_allow',
  'allow_brother',
  'brother_invit',
  'invit_boyfriend',
  'boyfriend_actulli',
  'actulli_like',
  'like_famili',
  'famili_get',
  'get_piss',
  'piss_id',
  'id_excus',
  'excus_exclud',
  'exclud_honestli',
  'honestli_care',
  'care_anymor',
  'anymor_situat',
  'situat_see',
  'see_brother',
  'brother_back',
  'back_dad',
  'dad_threaten',
  'threaten_call',
  'call_cp',
  'cp_ive',
  'ive_talk',
  'talk_want',
  'want_get',
  'get_three',
  'three_girl',
  'girl_involv',
  'involv_despit',
  'despit_relationship',
  'mother_daughter_previou',
  'daughter_previou_marriag',
  'previou_marriag_three',
  'marriag_three_children',
  'three_children_rest',
  'children_rest_boy',
  'rest_boy_import',
  'boy_import_know',
  'import_know_last',
  'know_last_week',
  'last_week_mom',
  'week_mom_talk',
  'mom_talk_one',
  'talk_one_friend',
  'one_friend_color',
  'friend_color_want',
  'color_want_bridesmaid',
  'want_bridesmaid_dress',
  'bridesmaid_dress_mom',
  'dress_mom_plan',
  'mom_plan_wed',
  'plan_wed_new',
  'wed_new_boyfriend',
  'new_boyfriend_past',
  'boyfriend_past_two',
  'past_two_month',
  'two_month_engag',
  'month_engag_one',
  'engag_one_year',
  'one_year_wed',
  'year_wed_decemb',
  'wed_decemb_day',
  'decemb_day_birthday',
  'day_birthday_mom',
  'birthday_mom_plan',
  'mom_plan_parti',
  'plan_parti_around',
  'parti_around_time',
  'around_time_wed',
  'time_wed_insist',
  'wed_insist_alright',
  'insist_alright_boyfriend',
  'alright_boyfriend_would',
  'boyfriend_would_go',
  'would_go_honeymoon',
  'go_honeymoon_next',
  'honeymoon_next_day',
  'next_day_talk',
  'day_talk_ask',
  'talk_ask_go',
  'ask_go_look',
  'go_look_dress',
  'look_dress_sinc',
  'dress_sinc_ask',
  'sinc_ask_flower',
  'ask_flower_girl',
  'flower_girl_could',
  'girl_could_see',
  'could_see_disappoint',
  'see_disappoint_look',
  'disappoint_look_face',
  'look_face_ask',
  'face_ask_confus',
  'ask_confus_respond',
  'confus_respond_minut',
  'respond_minut_later',
  'minut_later_said',
  'later_said_well',
  'said_well_talk',
  'well_talk_later',
  'talk_later_hour',
  'later_hour_later',
  'hour_later_mom',
  'later_mom_came',
  'mom_came_thought',
  'came_thought_go',
  'thought_go_talk',
  'go_talk_dress',
  'talk_dress_situat',
  'dress_situat_instead',
  'situat_instead_sat',
  'instead_sat_explain',
  'sat_explain_new',
  'explain_new_boyfriend',
  'new_boyfriend_thought',
  'boyfriend_thought_itd',
  'thought_itd_better',
  'itd_better_fit',
  'better_fit_three',
  'fit_three_daughter',
  'three_daughter_lead',
  'daughter_lead_wed',
  'lead_wed_whatev',
  'wed_whatev_cool',
  'whatev_cool_import',
  'cool_import_note',
  'import_note_mom',
  'note_mom_alway',
  'mom_alway_want',
  'alway_want_girl',
  'want_girl_girl',
  'girl_girl_look',
  'girl_look_much',
  'look_much_like',
  'much_like_father',
  'like_father_caus',
  'father_caus_strain',
  'caus_strain_relationship',
  'strain_relationship_dad',
  'relationship_dad_explain',
  'dad_explain_mother',
  'explain_mother_postpartum',
  'mother_postpartum_connect',
  'postpartum_connect_gave',
  'connect_gave_birth',
  'gave_birth_three',
  'birth_three_younger',
  'three_younger_step',
  'younger_step_sibl',
  'step_sibl_look',
  'sibl_look_like',
  'look_like_hertriplet',
  'like_hertriplet_yo',
  'hertriplet_yo_obvious',
  'yo_obvious_overjoy',
  'obvious_overjoy_hurt',
  'overjoy_hurt_see',
  'hurt_see_happi',
  'see_happi_brother',
  'happi_brother_similar',
  'brother_similar_experi',
  'similar_experi_significantli',
  'experi_significantli_better',
  'significantli_better_look',
  'better_look_like',
  'look_like_know',
  'like_know_dramat',
  'know_dramat_thing',
  'dramat_thing_say',
  'thing_say_sometim',
  'say_sometim_feel',
  'sometim_feel_like',
  'feel_like_mother',
  'like_mother_feel',
  'mother_feel_connect',
  'feel_connect_birth',
  'connect_birth_letdown',
  'birth_letdown_right',
  'letdown_right_gate',
  'right_gate_done',
  'gate_done_ask',
  'done_ask_dress',
  'ask_dress_still',
  'dress_still_one',
  'still_one_disappoint',
  'one_disappoint_look',
  'disappoint_look_face',
  'look_face_came',
  'face_came_tell',
  'came_tell_invit',
  'tell_invit_wed',
  'invit_wed_simpli',
  'wed_simpli_boyfriend',
  'simpli_boyfriend_thought',
  'boyfriend_thought_would',
  'thought_would_upset',
  'would_upset_famili',
  'upset_famili_mom',
  'famili_mom_previou',
  'mom_previou_marriag',
  'previou_marriag_like',
  'marriag_like_dad',
  'like_dad_also',
  'dad_also_explain',
  'also_explain_birthday',
  'explain_birthday_happen',
  'birthday_happen_either',
  'happen_either_due',
  'either_due_want',
  'due_want_go',
  'want_go_honeymoon',
  'go_honeymoon_right',
  'honeymoon_right_away',
  'right_away_turn',
  'away_turn_scream',
  'turn_scream_match',
  'scream_match_yell',
  'match_yell_im',
  'yell_im_sorri',
  'im_sorri_look',
  'sorri_look_like',
  'look_like_enough',
  'like_enough_love',
  'enough_love_im',
  'love_im_sorri',
  'im_sorri_conceit',
  'sorri_conceit_get',
  'conceit_get_fact',
  'get_fact_look',
  'fact_look_like',
  'look_like_dad',
  'like_dad_kick',
  'dad_kick_boyfriend',
  'kick_boyfriend_within',
  'boyfriend_within_hour',
  'within_hour_cri',
  'hour_cri_said',
  'cri_said_brother',
  'said_brother_know',
  'brother_know_happen',
  'know_happen_refus',
  'happen_refus_go',
  'refus_go_wed',
  'go_wed_upset',
  'wed_upset_even',
  'upset_even_though',
  'even_though_care',
  'though_care_feel',
  'care_feel_right',
  'feel_right_brother',
  'right_brother_actual',
  'brother_actual_relationship',
  'actual_relationship_probabl',
  'relationship_probabl_mess',
  'probabl_mess_let',
  'mess_let_anger',
  'let_anger_get',
  'anger_get_best',
  'get_best_aita',
  'best_aita_edit',
  'aita_edit_live',
  'edit_live_dad',
  'live_dad_full',
  'dad_full_time',
  'full_time_custodi',
  'time_custodi_agreement',
  'custodi_agreement_know',
  'agreement_know_usual',
  'know_usual_visit',
  'usual_visit_mom',
  'visit_mom_free',
  'mom_free_ask',
  'free_ask_come',
  'ask_come_im',
  'come_im_oblig',
  'im_oblig_go',
  'oblig_go_parent',
  'go_parent_marri',
  'parent_marri_two',
  'marri_two_year',
  'two_year_prior',
  'year_prior_second',
  'prior_second_brother',
  'second_brother_divorc',
  'brother_divorc_birth',
  'divorc_birth_date',
  'birth_date_divorc',
  'date_divorc_way',
  'divorc_way_make',
  'way_make_work',
  'make_work_edit',
  'work_edit_brother',
  'edit_brother_full',
  'brother_full_blood',
  'full_blood_girl',
  'blood_girl_mom',
  'girl_mom_half',
  'mom_half_blood',
  'half_blood_said',
  'blood_said_step',
  'said_step_consid',
  'step_consid_relat',
  'consid_relat_ive',
  'relat_ive_never',
  'ive_never_room',
  'never_room_five',
  'room_five_minut',
  'five_minut_due',
  'minut_due_mom',
  'due_mom_allow',
  'mom_allow_brother',
  'allow_brother_invit',
  'brother_invit_boyfriend',
  'invit_boyfriend_actulli',
  'boyfriend_actulli_like',
  'actulli_like_famili',
  'like_famili_get',
  'famili_get_piss',
  'get_piss_id',
  'piss_id_excus',
  'id_excus_exclud',
  'excus_exclud_honestli',
  'exclud_honestli_care',
  'honestli_care_anymor',
  'care_anymor_situat',
  'anymor_situat_see',
  'situat_see_brother',
  'see_brother_back',
  'brother_back_dad',
  'back_dad_threaten',
  'dad_threaten_call',
  'threaten_call_cp',
  'call_cp_ive',
  'cp_ive_talk',
  'ive_talk_want',
  'talk_want_get',
  'want_get_three',
  'get_three_girl',
  'three_girl_involv',
  'girl_involv_despit',
  'involv_despit_relationship'],
 ['daughter',
  '&',
  'danc',
  'team',
  'team',
  'competit',
  'sunday',
  'excit',
  'proud',
  'competit',
  'dad',
  'suggest',
  'go',
  'eat',
  'said',
  'would',
  'pay',
  'wherev',
  'want',
  'older',
  'daughter',
  'love',
  'seafood',
  'ask',
  'year',
  'go',
  'restaur',
  'unlimit',
  'crab',
  'leg',
  'prici',
  'restaur',
  'weve',
  'never',
  'abl',
  'immedi',
  'suggest',
  'restaur',
  'dad',
  'like',
  'suggest',
  'younger',
  'daughter',
  'suggest',
  'go',
  'favorit',
  'restaur',
  'local',
  'mexican',
  'restaur',
  'instead',
  'weve',
  'mani',
  'time',
  'much',
  'afford',
  'know',
  'would',
  'wast',
  'opportun',
  'said',
  'older',
  'daughter',
  'suggest',
  'made',
  'sens',
  'somewher',
  'wed',
  'never',
  'younger',
  'daughter',
  'complain',
  'like',
  'anyth',
  'assur',
  'menu',
  'would',
  'crab',
  'leg',
  'got',
  'sure',
  'enough',
  'mani',
  'dish',
  'seafood',
  'includ',
  'steak',
  'youngest',
  'favorit',
  'even',
  'though',
  'dish',
  'without',
  'seafood',
  'youngest',
  'daughter',
  'said',
  'hungri',
  'restaur',
  'smell',
  'weird',
  'order',
  'steak',
  'anyway',
  'younger',
  'daughter',
  'pout',
  'throughout',
  'meal',
  'pick',
  'steak',
  'older',
  'daughter',
  'happi',
  'complet',
  'absorb',
  'crab',
  'leg',
  'mom',
  'tri',
  'talk',
  'younger',
  'daughter',
  'competit',
  'respons',
  'end',
  'meal',
  'stuf',
  'except',
  'youngest',
  'dad',
  'told',
  'everyon',
  'pick',
  'dessert',
  'go',
  'except',
  'youngest',
  'clearli',
  'hungri',
  'ask',
  'dad',
  'leav',
  'alon',
  'alreadi',
  'upset',
  'got',
  'home',
  'tri',
  'talk',
  'explain',
  'rare',
  'opportun',
  'sometim',
  'need',
  'let',
  'someon',
  'els',
  'someth',
  'nice',
  'told',
  'could',
  'taken',
  'us',
  'mexican',
  'restaur',
  'weekend',
  'said',
  'restaur',
  'go',
  'night',
  'competit',
  'special',
  'went',
  'somewher',
  'like',
  'point',
  'know',
  'like',
  'tri',
  'said',
  'know',
  'hate',
  'seafood',
  'restaur',
  'known',
  'seafood',
  'cours',
  'want',
  'go',
  'special',
  'event',
  'annoy',
  'monday',
  'tuesday',
  'start',
  'mellow',
  'wednesday',
  'morn',
  'ask',
  'go',
  'mexican',
  'restaur',
  'tomorrow',
  'said',
  'week',
  'behavior',
  'well',
  'see',
  'next',
  'week',
  'happi',
  'hard',
  'think',
  'rude',
  'grandpar',
  'know',
  'teenag',
  'everyth',
  'feel',
  'like',
  'bigger',
  'deal',
  'let',
  'behavior',
  'slide',
  'taken',
  'mexican',
  'restaur',
  'daughter_&',
  '&_danc',
  'danc_team',
  'team_team',
  'team_competit',
  'competit_sunday',
  'sunday_excit',
  'excit_proud',
  'proud_competit',
  'competit_dad',
  'dad_suggest',
  'suggest_go',
  'go_eat',
  'eat_said',
  'said_would',
  'would_pay',
  'pay_wherev',
  'wherev_want',
  'want_older',
  'older_daughter',
  'daughter_love',
  'love_seafood',
  'seafood_ask',
  'ask_year',
  'year_go',
  'go_restaur',
  'restaur_unlimit',
  'unlimit_crab',
  'crab_leg',
  'leg_prici',
  'prici_restaur',
  'restaur_weve',
  'weve_never',
  'never_abl',
  'abl_immedi',
  'immedi_suggest',
  'suggest_restaur',
  'restaur_dad',
  'dad_like',
  'like_suggest',
  'suggest_younger',
  'younger_daughter',
  'daughter_suggest',
  'suggest_go',
  'go_favorit',
  'favorit_restaur',
  'restaur_local',
  'local_mexican',
  'mexican_restaur',
  'restaur_instead',
  'instead_weve',
  'weve_mani',
  'mani_time',
  'time_much',
  'much_afford',
  'afford_know',
  'know_would',
  'would_wast',
  'wast_opportun',
  'opportun_said',
  'said_older',
  'older_daughter',
  'daughter_suggest',
  'suggest_made',
  'made_sens',
  'sens_somewher',
  'somewher_wed',
  'wed_never',
  'never_younger',
  'younger_daughter',
  'daughter_complain',
  'complain_like',
  'like_anyth',
  'anyth_assur',
  'assur_menu',
  'menu_would',
  'would_crab',
  'crab_leg',
  'leg_got',
  'got_sure',
  'sure_enough',
  'enough_mani',
  'mani_dish',
  'dish_seafood',
  'seafood_includ',
  'includ_steak',
  'steak_youngest',
  'youngest_favorit',
  'favorit_even',
  'even_though',
  'though_dish',
  'dish_without',
  'without_seafood',
  'seafood_youngest',
  'youngest_daughter',
  'daughter_said',
  'said_hungri',
  'hungri_restaur',
  'restaur_smell',
  'smell_weird',
  'weird_order',
  'order_steak',
  'steak_anyway',
  'anyway_younger',
  'younger_daughter',
  'daughter_pout',
  'pout_throughout',
  'throughout_meal',
  'meal_pick',
  'pick_steak',
  'steak_older',
  'older_daughter',
  'daughter_happi',
  'happi_complet',
  'complet_absorb',
  'absorb_crab',
  'crab_leg',
  'leg_mom',
  'mom_tri',
  'tri_talk',
  'talk_younger',
  'younger_daughter',
  'daughter_competit',
  'competit_respons',
  'respons_end',
  'end_meal',
  'meal_stuf',
  'stuf_except',
  'except_youngest',
  'youngest_dad',
  'dad_told',
  'told_everyon',
  'everyon_pick',
  'pick_dessert',
  'dessert_go',
  'go_except',
  'except_youngest',
  'youngest_clearli',
  'clearli_hungri',
  'hungri_ask',
  'ask_dad',
  'dad_leav',
  'leav_alon',
  'alon_alreadi',
  'alreadi_upset',
  'upset_got',
  'got_home',
  'home_tri',
  'tri_talk',
  'talk_explain',
  'explain_rare',
  'rare_opportun',
  'opportun_sometim',
  'sometim_need',
  'need_let',
  'let_someon',
  'someon_els',
  'els_someth',
  'someth_nice',
  'nice_told',
  'told_could',
  'could_taken',
  'taken_us',
  'us_mexican',
  'mexican_restaur',
  'restaur_weekend',
  'weekend_said',
  'said_restaur',
  'restaur_go',
  'go_night',
  'night_competit',
  'competit_special',
  'special_went',
  'went_somewher',
  'somewher_like',
  'like_point',
  'point_know',
  'know_like',
  'like_tri',
  'tri_said',
  'said_know',
  'know_hate',
  'hate_seafood',
  'seafood_restaur',
  'restaur_known',
  'known_seafood',
  'seafood_cours',
  'cours_want',
  'want_go',
  'go_special',
  'special_event',
  'event_annoy',
  'annoy_monday',
  'monday_tuesday',
  'tuesday_start',
  'start_mellow',
  'mellow_wednesday',
  'wednesday_morn',
  'morn_ask',
  'ask_go',
  'go_mexican',
  'mexican_restaur',
  'restaur_tomorrow',
  'tomorrow_said',
  'said_week',
  'week_behavior',
  'behavior_well',
  'well_see',
  'see_next',
  'next_week',
  'week_happi',
  'happi_hard',
  'hard_think',
  'think_rude',
  'rude_grandpar',
  'grandpar_know',
  'know_teenag',
  'teenag_everyth',
  'everyth_feel',
  'feel_like',
  'like_bigger',
  'bigger_deal',
  'deal_let',
  'let_behavior',
  'behavior_slide',
  'slide_taken',
  'taken_mexican',
  'mexican_restaur',
  'daughter_&_danc',
  '&_danc_team',
  'danc_team_team',
  'team_team_competit',
  'team_competit_sunday',
  'competit_sunday_excit',
  'sunday_excit_proud',
  'excit_proud_competit',
  'proud_competit_dad',
  'competit_dad_suggest',
  'dad_suggest_go',
  'suggest_go_eat',
  'go_eat_said',
  'eat_said_would',
  'said_would_pay',
  'would_pay_wherev',
  'pay_wherev_want',
  'wherev_want_older',
  'want_older_daughter',
  'older_daughter_love',
  'daughter_love_seafood',
  'love_seafood_ask',
  'seafood_ask_year',
  'ask_year_go',
  'year_go_restaur',
  'go_restaur_unlimit',
  'restaur_unlimit_crab',
  'unlimit_crab_leg',
  'crab_leg_prici',
  'leg_prici_restaur',
  'prici_restaur_weve',
  'restaur_weve_never',
  'weve_never_abl',
  'never_abl_immedi',
  'abl_immedi_suggest',
  'immedi_suggest_restaur',
  'suggest_restaur_dad',
  'restaur_dad_like',
  'dad_like_suggest',
  'like_suggest_younger',
  'suggest_younger_daughter',
  'younger_daughter_suggest',
  'daughter_suggest_go',
  'suggest_go_favorit',
  'go_favorit_restaur',
  'favorit_restaur_local',
  'restaur_local_mexican',
  'local_mexican_restaur',
  'mexican_restaur_instead',
  'restaur_instead_weve',
  'instead_weve_mani',
  'weve_mani_time',
  'mani_time_much',
  'time_much_afford',
  'much_afford_know',
  'afford_know_would',
  'know_would_wast',
  'would_wast_opportun',
  'wast_opportun_said',
  'opportun_said_older',
  'said_older_daughter',
  'older_daughter_suggest',
  'daughter_suggest_made',
  'suggest_made_sens',
  'made_sens_somewher',
  'sens_somewher_wed',
  'somewher_wed_never',
  'wed_never_younger',
  'never_younger_daughter',
  'younger_daughter_complain',
  'daughter_complain_like',
  'complain_like_anyth',
  'like_anyth_assur',
  'anyth_assur_menu',
  'assur_menu_would',
  'menu_would_crab',
  'would_crab_leg',
  'crab_leg_got',
  'leg_got_sure',
  'got_sure_enough',
  'sure_enough_mani',
  'enough_mani_dish',
  'mani_dish_seafood',
  'dish_seafood_includ',
  'seafood_includ_steak',
  'includ_steak_youngest',
  'steak_youngest_favorit',
  'youngest_favorit_even',
  'favorit_even_though',
  'even_though_dish',
  'though_dish_without',
  'dish_without_seafood',
  'without_seafood_youngest',
  'seafood_youngest_daughter',
  'youngest_daughter_said',
  'daughter_said_hungri',
  'said_hungri_restaur',
  'hungri_restaur_smell',
  'restaur_smell_weird',
  'smell_weird_order',
  'weird_order_steak',
  'order_steak_anyway',
  'steak_anyway_younger',
  'anyway_younger_daughter',
  'younger_daughter_pout',
  'daughter_pout_throughout',
  'pout_throughout_meal',
  'throughout_meal_pick',
  'meal_pick_steak',
  'pick_steak_older',
  'steak_older_daughter',
  'older_daughter_happi',
  'daughter_happi_complet',
  'happi_complet_absorb',
  'complet_absorb_crab',
  'absorb_crab_leg',
  'crab_leg_mom',
  'leg_mom_tri',
  'mom_tri_talk',
  'tri_talk_younger',
  'talk_younger_daughter',
  'younger_daughter_competit',
  'daughter_competit_respons',
  'competit_respons_end',
  'respons_end_meal',
  'end_meal_stuf',
  'meal_stuf_except',
  'stuf_except_youngest',
  'except_youngest_dad',
  'youngest_dad_told',
  'dad_told_everyon',
  'told_everyon_pick',
  'everyon_pick_dessert',
  'pick_dessert_go',
  'dessert_go_except',
  'go_except_youngest',
  'except_youngest_clearli',
  'youngest_clearli_hungri',
  'clearli_hungri_ask',
  'hungri_ask_dad',
  'ask_dad_leav',
  'dad_leav_alon',
  'leav_alon_alreadi',
  'alon_alreadi_upset',
  'alreadi_upset_got',
  'upset_got_home',
  'got_home_tri',
  'home_tri_talk',
  'tri_talk_explain',
  'talk_explain_rare',
  'explain_rare_opportun',
  'rare_opportun_sometim',
  'opportun_sometim_need',
  'sometim_need_let',
  'need_let_someon',
  'let_someon_els',
  'someon_els_someth',
  'els_someth_nice',
  'someth_nice_told',
  'nice_told_could',
  'told_could_taken',
  'could_taken_us',
  'taken_us_mexican',
  'us_mexican_restaur',
  'mexican_restaur_weekend',
  'restaur_weekend_said',
  'weekend_said_restaur',
  'said_restaur_go',
  'restaur_go_night',
  'go_night_competit',
  'night_competit_special',
  'competit_special_went',
  'special_went_somewher',
  'went_somewher_like',
  'somewher_like_point',
  'like_point_know',
  'point_know_like',
  'know_like_tri',
  'like_tri_said',
  'tri_said_know',
  'said_know_hate',
  'know_hate_seafood',
  'hate_seafood_restaur',
  'seafood_restaur_known',
  'restaur_known_seafood',
  'known_seafood_cours',
  'seafood_cours_want',
  'cours_want_go',
  'want_go_special',
  'go_special_event',
  'special_event_annoy',
  'event_annoy_monday',
  'annoy_monday_tuesday',
  'monday_tuesday_start',
  'tuesday_start_mellow',
  'start_mellow_wednesday',
  'mellow_wednesday_morn',
  'wednesday_morn_ask',
  'morn_ask_go',
  'ask_go_mexican',
  'go_mexican_restaur',
  'mexican_restaur_tomorrow',
  'restaur_tomorrow_said',
  'tomorrow_said_week',
  'said_week_behavior',
  'week_behavior_well',
  'behavior_well_see',
  'well_see_next',
  'see_next_week',
  'next_week_happi',
  'week_happi_hard',
  'happi_hard_think',
  'hard_think_rude',
  'think_rude_grandpar',
  'rude_grandpar_know',
  'grandpar_know_teenag',
  'know_teenag_everyth',
  'teenag_everyth_feel',
  'everyth_feel_like',
  'feel_like_bigger',
  'like_bigger_deal',
  'bigger_deal_let',
  'deal_let_behavior',
  'let_behavior_slide',
  'behavior_slide_taken',
  'slide_taken_mexican',
  'taken_mexican_restaur'],
 ['daughter',
  'aria',
  'abandon',
  'us',
  'stepmoth',
  'younger',
  'half-sist',
  'go',
  'live',
  'enabl',
  'ex-wif',
  'sandra',
  'husband',
  'custodi',
  'sandra',
  'alway',
  'less',
  'strict',
  'alway',
  'let',
  'aria',
  'want',
  'never',
  'home',
  'rule',
  'also',
  'buy',
  'aria',
  'everyth',
  'want',
  'want',
  'live',
  'sandra',
  'live',
  'town',
  'aria',
  'highschool',
  'live',
  'min',
  'away',
  'one',
  'rule',
  'went',
  'meet',
  'friend',
  'mean',
  'drive',
  'next',
  'time',
  'met',
  'friend',
  'turn',
  'come',
  'friend',
  'parent',
  'want',
  'drive',
  'kid',
  'aria',
  'allow',
  'meet',
  'everyth',
  'fine',
  'way',
  'year',
  'major',
  'fallout',
  'happen',
  'last',
  'year',
  'highschool',
  'went',
  'trip',
  'anoth',
  'countri',
  'school',
  'bother',
  'send',
  'coupl',
  'text',
  'away',
  'day',
  'decid',
  'ground',
  'learn',
  'respect',
  'show',
  'love',
  'famili',
  'insist',
  'sent',
  'messag',
  'mother',
  'bare',
  'heard',
  'never',
  'lot',
  'friend',
  'invit',
  'popular',
  'girl',
  'birthday',
  'parti',
  'punish',
  'go',
  'parti',
  'forget',
  'famili',
  'got',
  'upset',
  'start',
  'call',
  'mother',
  'come',
  'pick',
  'illeg',
  'get',
  'week',
  'plu',
  'want',
  'go',
  'mother',
  'would',
  'lift',
  'punish',
  'let',
  'go',
  'parti',
  'mother',
  'came',
  'end',
  'week',
  'told',
  'aria',
  'come',
  'back',
  'want',
  'wait',
  'heard',
  'noth',
  'sister',
  'kept',
  'ask',
  'come',
  'back',
  'know',
  'explain',
  'love',
  'us',
  'prefer',
  'stay',
  'mother',
  'parti',
  'free-of-rul',
  'life',
  'year',
  'weve',
  'commun',
  'lawyer',
  'sandra',
  'intent',
  'help',
  'get',
  'daughter',
  'back',
  'final',
  'theyv',
  'demand',
  'pay',
  'child',
  'support',
  'even',
  'year',
  'old',
  'pay',
  'half',
  'colleg',
  'expens',
  'law',
  'aria',
  'turn',
  'adult',
  'start',
  'ad',
  'everyth',
  'pay',
  'excel',
  'send',
  'sandra',
  'updat',
  'know',
  'damag',
  'daughter',
  'expect',
  'aria',
  'pay',
  'debt',
  'gave',
  'sandra',
  'option',
  'pay',
  'refus',
  'aria',
  'tri',
  'get',
  'touch',
  'told',
  'cant',
  'fix',
  'emot',
  'part',
  'unless',
  'fix',
  'money',
  'part',
  'first',
  'need',
  'prove',
  'care',
  'money',
  'sandra',
  'say',
  'im',
  'asshol',
  'think',
  'sinc',
  'done',
  'noth',
  'tri',
  'take',
  'daughter',
  'away',
  'final',
  'want',
  'aita',
  'daughter_aria',
  'aria_abandon',
  'abandon_us',
  'us_stepmoth',
  'stepmoth_younger',
  'younger_half-sist',
  'half-sist_go',
  'go_live',
  'live_enabl',
  'enabl_ex-wif',
  'ex-wif_sandra',
  'sandra_husband',
  'husband_custodi',
  'custodi_sandra',
  'sandra_alway',
  'alway_less',
  'less_strict',
  'strict_alway',
  'alway_let',
  'let_aria',
  'aria_want',
  'want_never',
  'never_home',
  'home_rule',
  'rule_also',
  'also_buy',
  'buy_aria',
  'aria_everyth',
  'everyth_want',
  'want_want',
  'want_live',
  'live_sandra',
  'sandra_live',
  'live_town',
  'town_aria',
  'aria_highschool',
  'highschool_live',
  'live_min',
  'min_away',
  'away_one',
  'one_rule',
  'rule_went',
  'went_meet',
  'meet_friend',
  'friend_mean',
  'mean_drive',
  'drive_next',
  'next_time',
  'time_met',
  'met_friend',
  'friend_turn',
  'turn_come',
  'come_friend',
  'friend_parent',
  'parent_want',
  'want_drive',
  'drive_kid',
  'kid_aria',
  'aria_allow',
  'allow_meet',
  'meet_everyth',
  'everyth_fine',
  'fine_way',
  'way_year',
  'year_major',
  'major_fallout',
  'fallout_happen',
  'happen_last',
  'last_year',
  'year_highschool',
  'highschool_went',
  'went_trip',
  'trip_anoth',
  'anoth_countri',
  'countri_school',
  'school_bother',
  'bother_send',
  'send_coupl',
  'coupl_text',
  'text_away',
  'away_day',
  'day_decid',
  'decid_ground',
  'ground_learn',
  'learn_respect',
  'respect_show',
  'show_love',
  'love_famili',
  'famili_insist',
  'insist_sent',
  'sent_messag',
  'messag_mother',
  'mother_bare',
  'bare_heard',
  'heard_never',
  'never_lot',
  'lot_friend',
  'friend_invit',
  'invit_popular',
  'popular_girl',
  'girl_birthday',
  'birthday_parti',
  'parti_punish',
  'punish_go',
  'go_parti',
  'parti_forget',
  'forget_famili',
  'famili_got',
  'got_upset',
  'upset_start',
  'start_call',
  'call_mother',
  'mother_come',
  'come_pick',
  'pick_illeg',
  'illeg_get',
  'get_week',
  'week_plu',
  'plu_want',
  'want_go',
  'go_mother',
  'mother_would',
  'would_lift',
  'lift_punish',
  'punish_let',
  'let_go',
  'go_parti',
  'parti_mother',
  'mother_came',
  'came_end',
  'end_week',
  'week_told',
  'told_aria',
  'aria_come',
  'come_back',
  'back_want',
  'want_wait',
  'wait_heard',
  'heard_noth',
  'noth_sister',
  'sister_kept',
  'kept_ask',
  'ask_come',
  'come_back',
  'back_know',
  'know_explain',
  'explain_love',
  'love_us',
  'us_prefer',
  'prefer_stay',
  'stay_mother',
  'mother_parti',
  'parti_free-of-rul',
  'free-of-rul_life',
  'life_year',
  'year_weve',
  'weve_commun',
  'commun_lawyer',
  'lawyer_sandra',
  'sandra_intent',
  'intent_help',
  'help_get',
  'get_daughter',
  'daughter_back',
  'back_final',
  'final_theyv',
  'theyv_demand',
  'demand_pay',
  'pay_child',
  'child_support',
  'support_even',
  'even_year',
  'year_old',
  'old_pay',
  'pay_half',
  'half_colleg',
  'colleg_expens',
  'expens_law',
  'law_aria',
  'aria_turn',
  'turn_adult',
  'adult_start',
  'start_ad',
  'ad_everyth',
  'everyth_pay',
  'pay_excel',
  'excel_send',
  'send_sandra',
  'sandra_updat',
  'updat_know',
  'know_damag',
  'damag_daughter',
  'daughter_expect',
  'expect_aria',
  'aria_pay',
  'pay_debt',
  'debt_gave',
  'gave_sandra',
  'sandra_option',
  'option_pay',
  'pay_refus',
  'refus_aria',
  'aria_tri',
  'tri_get',
  'get_touch',
  'touch_told',
  'told_cant',
  'cant_fix',
  'fix_emot',
  'emot_part',
  'part_unless',
  'unless_fix',
  'fix_money',
  'money_part',
  'part_first',
  'first_need',
  'need_prove',
  'prove_care',
  'care_money',
  'money_sandra',
  'sandra_say',
  'say_im',
  'im_asshol',
  'asshol_think',
  'think_sinc',
  'sinc_done',
  'done_noth',
  'noth_tri',
  'tri_take',
  'take_daughter',
  'daughter_away',
  'away_final',
  'final_want',
  'want_aita',
  'daughter_aria_abandon',
  'aria_abandon_us',
  'abandon_us_stepmoth',
  'us_stepmoth_younger',
  'stepmoth_younger_half-sist',
  'younger_half-sist_go',
  'half-sist_go_live',
  'go_live_enabl',
  'live_enabl_ex-wif',
  'enabl_ex-wif_sandra',
  'ex-wif_sandra_husband',
  'sandra_husband_custodi',
  'husband_custodi_sandra',
  'custodi_sandra_alway',
  'sandra_alway_less',
  'alway_less_strict',
  'less_strict_alway',
  'strict_alway_let',
  'alway_let_aria',
  'let_aria_want',
  'aria_want_never',
  'want_never_home',
  'never_home_rule',
  'home_rule_also',
  'rule_also_buy',
  'also_buy_aria',
  'buy_aria_everyth',
  'aria_everyth_want',
  'everyth_want_want',
  'want_want_live',
  'want_live_sandra',
  'live_sandra_live',
  'sandra_live_town',
  'live_town_aria',
  'town_aria_highschool',
  'aria_highschool_live',
  'highschool_live_min',
  'live_min_away',
  'min_away_one',
  'away_one_rule',
  'one_rule_went',
  'rule_went_meet',
  'went_meet_friend',
  'meet_friend_mean',
  'friend_mean_drive',
  'mean_drive_next',
  'drive_next_time',
  'next_time_met',
  'time_met_friend',
  'met_friend_turn',
  'friend_turn_come',
  'turn_come_friend',
  'come_friend_parent',
  'friend_parent_want',
  'parent_want_drive',
  'want_drive_kid',
  'drive_kid_aria',
  'kid_aria_allow',
  'aria_allow_meet',
  'allow_meet_everyth',
  'meet_everyth_fine',
  'everyth_fine_way',
  'fine_way_year',
  'way_year_major',
  'year_major_fallout',
  'major_fallout_happen',
  'fallout_happen_last',
  'happen_last_year',
  'last_year_highschool',
  'year_highschool_went',
  'highschool_went_trip',
  'went_trip_anoth',
  'trip_anoth_countri',
  'anoth_countri_school',
  'countri_school_bother',
  'school_bother_send',
  'bother_send_coupl',
  'send_coupl_text',
  'coupl_text_away',
  'text_away_day',
  'away_day_decid',
  'day_decid_ground',
  'decid_ground_learn',
  'ground_learn_respect',
  'learn_respect_show',
  'respect_show_love',
  'show_love_famili',
  'love_famili_insist',
  'famili_insist_sent',
  'insist_sent_messag',
  'sent_messag_mother',
  'messag_mother_bare',
  'mother_bare_heard',
  'bare_heard_never',
  'heard_never_lot',
  'never_lot_friend',
  'lot_friend_invit',
  'friend_invit_popular',
  'invit_popular_girl',
  'popular_girl_birthday',
  'girl_birthday_parti',
  'birthday_parti_punish',
  'parti_punish_go',
  'punish_go_parti',
  'go_parti_forget',
  'parti_forget_famili',
  'forget_famili_got',
  'famili_got_upset',
  'got_upset_start',
  'upset_start_call',
  'start_call_mother',
  'call_mother_come',
  'mother_come_pick',
  'come_pick_illeg',
  'pick_illeg_get',
  'illeg_get_week',
  'get_week_plu',
  'week_plu_want',
  'plu_want_go',
  'want_go_mother',
  'go_mother_would',
  'mother_would_lift',
  'would_lift_punish',
  'lift_punish_let',
  'punish_let_go',
  'let_go_parti',
  'go_parti_mother',
  'parti_mother_came',
  'mother_came_end',
  'came_end_week',
  'end_week_told',
  'week_told_aria',
  'told_aria_come',
  'aria_come_back',
  'come_back_want',
  'back_want_wait',
  'want_wait_heard',
  'wait_heard_noth',
  'heard_noth_sister',
  'noth_sister_kept',
  'sister_kept_ask',
  'kept_ask_come',
  'ask_come_back',
  'come_back_know',
  'back_know_explain',
  'know_explain_love',
  'explain_love_us',
  'love_us_prefer',
  'us_prefer_stay',
  'prefer_stay_mother',
  'stay_mother_parti',
  'mother_parti_free-of-rul',
  'parti_free-of-rul_life',
  'free-of-rul_life_year',
  'life_year_weve',
  'year_weve_commun',
  'weve_commun_lawyer',
  'commun_lawyer_sandra',
  'lawyer_sandra_intent',
  'sandra_intent_help',
  'intent_help_get',
  'help_get_daughter',
  'get_daughter_back',
  'daughter_back_final',
  'back_final_theyv',
  'final_theyv_demand',
  'theyv_demand_pay',
  'demand_pay_child',
  'pay_child_support',
  'child_support_even',
  'support_even_year',
  'even_year_old',
  'year_old_pay',
  'old_pay_half',
  'pay_half_colleg',
  'half_colleg_expens',
  'colleg_expens_law',
  'expens_law_aria',
  'law_aria_turn',
  'aria_turn_adult',
  'turn_adult_start',
  'adult_start_ad',
  'start_ad_everyth',
  'ad_everyth_pay',
  'everyth_pay_excel',
  'pay_excel_send',
  'excel_send_sandra',
  'send_sandra_updat',
  'sandra_updat_know',
  'updat_know_damag',
  'know_damag_daughter',
  'damag_daughter_expect',
  'daughter_expect_aria',
  'expect_aria_pay',
  'aria_pay_debt',
  'pay_debt_gave',
  'debt_gave_sandra',
  'gave_sandra_option',
  'sandra_option_pay',
  'option_pay_refus',
  'pay_refus_aria',
  'refus_aria_tri',
  'aria_tri_get',
  'tri_get_touch',
  'get_touch_told',
  'touch_told_cant',
  'told_cant_fix',
  'cant_fix_emot',
  'fix_emot_part',
  'emot_part_unless',
  'part_unless_fix',
  'unless_fix_money',
  'fix_money_part',
  'money_part_first',
  'part_first_need',
  'first_need_prove',
  'need_prove_care',
  'prove_care_money',
  'care_money_sandra',
  'money_sandra_say',
  'sandra_say_im',
  'say_im_asshol',
  'im_asshol_think',
  'asshol_think_sinc',
  'think_sinc_done',
  'sinc_done_noth',
  'done_noth_tri',
  'noth_tri_take',
  'tri_take_daughter',
  'take_daughter_away',
  'daughter_away_final',
  'away_final_want',
  'final_want_aita'],
 ['firstli',
  'sorri',
  'mobil',
  'throwaway',
  'emigr',
  'husband',
  'home',
  'countri',
  'year',
  'ago',
  'beauti',
  'son',
  'mother',
  'alway',
  'control',
  'frankli',
  'typic',
  'narcissist',
  'dead',
  'move',
  'even',
  'upset',
  'son',
  'combin',
  'husband',
  'termin',
  'ill',
  'pandem',
  'abl',
  'meet',
  'son',
  'week',
  'complain',
  'bitterli',
  'cheat',
  'special',
  'time',
  'first',
  'grandson',
  'exactli',
  'excit',
  'come',
  'visit',
  'us',
  'husband',
  'convinc',
  'tri',
  'let',
  'son',
  'relationship',
  'well',
  'moment',
  'arriv',
  'complain',
  '-',
  'hous',
  'small',
  'garden',
  'look',
  'etc',
  'complain',
  'son',
  'speak',
  'much',
  'english',
  'cant',
  'commun',
  'complain',
  'son',
  'want',
  'hug',
  'want',
  'stay',
  'patern',
  'grandmoth',
  'son',
  'spilt',
  'drink',
  'shout',
  'take',
  'gentl',
  'approach',
  'told',
  'lost',
  'tell',
  'idea',
  'rais',
  'kid',
  'told',
  'need',
  'respect',
  'method',
  'leav',
  'stop',
  'whole',
  'rest',
  'day',
  'could',
  'tell',
  'furiou',
  'night',
  'son',
  'one',
  'night',
  'go',
  'sleep',
  'poor',
  'husband',
  'also',
  'ib',
  'flare',
  'earli',
  'hour',
  'realis',
  'medic',
  'son',
  'settl',
  'around',
  'decid',
  'quick',
  'run',
  'hour',
  'pharmaci',
  'get',
  'medic',
  'leav',
  'son',
  'husband',
  'asleep',
  'sofa',
  'gone',
  'min',
  'came',
  'back',
  'mother',
  'rental',
  'car',
  'gone',
  'son',
  'husband',
  'still',
  'asleep',
  'shock',
  'gone',
  'tri',
  'mother',
  'mobil',
  'answer',
  'min',
  'becom',
  'increasingli',
  'hyster',
  'call',
  'polic',
  'came',
  'fast',
  'explain',
  'took',
  'thing',
  'serious',
  'hour',
  'later',
  'mother',
  'pull',
  'back',
  'start',
  'tell',
  'polic',
  'adult',
  'know',
  'english',
  'told',
  'could',
  'take',
  'son',
  'day',
  'current',
  'month',
  'pregnant',
  'said',
  'must',
  'pregnanc',
  'brain',
  'polic',
  'seem',
  'accept',
  'act',
  'like',
  'matter',
  'close',
  'sinc',
  'son',
  'home',
  'safe',
  'show',
  'everyon',
  'toy',
  'bought',
  'told',
  'mother',
  'leav',
  'never',
  'want',
  'see',
  'start',
  'tell',
  'famili',
  'kick',
  'reason',
  'cant',
  'find',
  'hotel',
  'blew',
  'phone',
  'told',
  'kidnap',
  'son',
  'go',
  'pursu',
  'polic',
  'call',
  '-hole',
  'say',
  'son',
  'kidnap',
  'taken',
  'day',
  'trip',
  'love',
  'grandmoth',
  'accus',
  'like',
  'could',
  'affect',
  'mother',
  'job',
  'nurs',
  'edit',
  '-',
  'lot',
  'peopl',
  'say',
  'husband',
  'push',
  'meet',
  'right',
  'think',
  'wrong',
  'forc',
  'agre',
  'ultim',
  'final',
  'say',
  'get',
  'lucki',
  'parent',
  'amaz',
  'despit',
  'know',
  'mother',
  'great',
  'want',
  'son',
  'miss',
  'expect',
  'snide',
  'comment',
  'awkward',
  'readi',
  'ignor',
  'son',
  'sinc',
  'mother',
  'normal',
  'weapon',
  'choic',
  'nasti',
  'comment',
  'understand',
  'kept',
  'smile',
  'know',
  'feel',
  'grief',
  'son',
  'go',
  'miss',
  'anoth',
  'grandmoth',
  'made',
  'bed',
  'edit',
  'holi',
  '*',
  '*',
  'real',
  'life',
  'tri',
  'chang',
  'narr',
  'kidnap',
  'son',
  'also',
  'think',
  'husband',
  'could',
  'sleep',
  'abduct',
  'marriag',
  'shamhow',
  'could',
  'reckless',
  'leav',
  'child',
  '@',
  'even',
  'updat',
  'sort',
  'thank',
  'everyon',
  'support',
  'seem',
  'mayb',
  'got',
  'bit',
  'lost',
  'translat',
  'emot',
  'polic',
  'spoke',
  'nativ',
  'languag',
  'fast',
  'strong',
  'accent',
  'case',
  'exactli',
  'drop',
  'spoken',
  'mother',
  'basic',
  'told',
  'approach',
  'hous',
  'consid',
  'threatharass',
  'act',
  'continu',
  'investig',
  'feel',
  'leav',
  'countri',
  'tomorrow',
  'enough',
  'resolut',
  'appar',
  'shown',
  'ticket',
  'info',
  'still',
  'get',
  'lot',
  'grief',
  'famili',
  'say',
  'understand',
  'mother',
  'struggl',
  'husband',
  'die',
  'on…thi',
  'make',
  'question',
  'reaction',
  'cant',
  'forgiv',
  'reach',
  'rel',
  'embassi',
  'feel',
  'like',
  'noth',
  'happen',
  'partner',
  'famili',
  'amaz',
  'look',
  'us',
  'firstli_sorri',
  'sorri_mobil',
  'mobil_throwaway',
  'throwaway_emigr',
  'emigr_husband',
  'husband_home',
  'home_countri',
  'countri_year',
  'year_ago',
  'ago_beauti',
  'beauti_son',
  'son_mother',
  'mother_alway',
  'alway_control',
  'control_frankli',
  'frankli_typic',
  'typic_narcissist',
  'narcissist_dead',
  'dead_move',
  'move_even',
  'even_upset',
  'upset_son',
  'son_combin',
  'combin_husband',
  'husband_termin',
  'termin_ill',
  'ill_pandem',
  'pandem_abl',
  'abl_meet',
  'meet_son',
  'son_week',
  'week_complain',
  'complain_bitterli',
  'bitterli_cheat',
  'cheat_special',
  'special_time',
  'time_first',
  'first_grandson',
  'grandson_exactli',
  'exactli_excit',
  'excit_come',
  'come_visit',
  'visit_us',
  'us_husband',
  'husband_convinc',
  'convinc_tri',
  'tri_let',
  'let_son',
  'son_relationship',
  'relationship_well',
  'well_moment',
  'moment_arriv',
  'arriv_complain',
  'complain_-',
  '-_hous',
  'hous_small',
  'small_garden',
  'garden_look',
  'look_etc',
  'etc_complain',
  'complain_son',
  'son_speak',
  'speak_much',
  'much_english',
  'english_cant',
  'cant_commun',
  'commun_complain',
  'complain_son',
  'son_want',
  'want_hug',
  'hug_want',
  'want_stay',
  'stay_patern',
  'patern_grandmoth',
  'grandmoth_son',
  'son_spilt',
  'spilt_drink',
  'drink_shout',
  'shout_take',
  'take_gentl',
  'gentl_approach',
  'approach_told',
  'told_lost',
  'lost_tell',
  'tell_idea',
  'idea_rais',
  'rais_kid',
  'kid_told',
  'told_need',
  'need_respect',
  'respect_method',
  'method_leav',
  'leav_stop',
  'stop_whole',
  'whole_rest',
  'rest_day',
  'day_could',
  'could_tell',
  'tell_furiou',
  'furiou_night',
  'night_son',
  'son_one',
  'one_night',
  'night_go',
  'go_sleep',
  'sleep_poor',
  'poor_husband',
  'husband_also',
  'also_ib',
  'ib_flare',
  'flare_earli',
  'earli_hour',
  'hour_realis',
  'realis_medic',
  'medic_son',
  'son_settl',
  'settl_around',
  'around_decid',
  'decid_quick',
  'quick_run',
  'run_hour',
  'hour_pharmaci',
  'pharmaci_get',
  'get_medic',
  'medic_leav',
  'leav_son',
  'son_husband',
  'husband_asleep',
  'asleep_sofa',
  'sofa_gone',
  'gone_min',
  'min_came',
  'came_back',
  'back_mother',
  'mother_rental',
  'rental_car',
  'car_gone',
  'gone_son',
  'son_husband',
  'husband_still',
  'still_asleep',
  'asleep_shock',
  'shock_gone',
  'gone_tri',
  'tri_mother',
  'mother_mobil',
  'mobil_answer',
  'answer_min',
  'min_becom',
  'becom_increasingli',
  'increasingli_hyster',
  'hyster_call',
  'call_polic',
  'polic_came',
  'came_fast',
  'fast_explain',
  'explain_took',
  'took_thing',
  'thing_serious',
  'serious_hour',
  'hour_later',
  'later_mother',
  'mother_pull',
  'pull_back',
  'back_start',
  'start_tell',
  'tell_polic',
  'polic_adult',
  'adult_know',
  'know_english',
  'english_told',
  'told_could',
  'could_take',
  'take_son',
  'son_day',
  'day_current',
  'current_month',
  'month_pregnant',
  'pregnant_said',
  'said_must',
  'must_pregnanc',
  'pregnanc_brain',
  'brain_polic',
  'polic_seem',
  'seem_accept',
  'accept_act',
  'act_like',
  'like_matter',
  'matter_close',
  'close_sinc',
  'sinc_son',
  'son_home',
  'home_safe',
  'safe_show',
  'show_everyon',
  'everyon_toy',
  'toy_bought',
  'bought_told',
  'told_mother',
  'mother_leav',
  'leav_never',
  'never_want',
  'want_see',
  'see_start',
  'start_tell',
  'tell_famili',
  'famili_kick',
  'kick_reason',
  'reason_cant',
  'cant_find',
  'find_hotel',
  'hotel_blew',
  'blew_phone',
  'phone_told',
  'told_kidnap',
  'kidnap_son',
  'son_go',
  'go_pursu',
  'pursu_polic',
  'polic_call',
  'call_-hole',
  '-hole_say',
  'say_son',
  'son_kidnap',
  'kidnap_taken',
  'taken_day',
  'day_trip',
  'trip_love',
  'love_grandmoth',
  'grandmoth_accus',
  'accus_like',
  'like_could',
  'could_affect',
  'affect_mother',
  'mother_job',
  'job_nurs',
  'nurs_edit',
  'edit_-',
  '-_lot',
  'lot_peopl',
  'peopl_say',
  'say_husband',
  'husband_push',
  'push_meet',
  'meet_right',
  'right_think',
  'think_wrong',
  'wrong_forc',
  'forc_agre',
  'agre_ultim',
  'ultim_final',
  'final_say',
  'say_get',
  'get_lucki',
  'lucki_parent',
  'parent_amaz',
  'amaz_despit',
  'despit_know',
  'know_mother',
  'mother_great',
  'great_want',
  'want_son',
  'son_miss',
  'miss_expect',
  'expect_snide',
  'snide_comment',
  'comment_awkward',
  'awkward_readi',
  'readi_ignor',
  'ignor_son',
  'son_sinc',
  'sinc_mother',
  'mother_normal',
  'normal_weapon',
  'weapon_choic',
  'choic_nasti',
  'nasti_comment',
  'comment_understand',
  'understand_kept',
  'kept_smile',
  'smile_know',
  'know_feel',
  'feel_grief',
  'grief_son',
  'son_go',
  'go_miss',
  'miss_anoth',
  'anoth_grandmoth',
  'grandmoth_made',
  'made_bed',
  'bed_edit',
  'edit_holi',
  'holi_*',
  '*_*',
  '*_real',
  'real_life',
  'life_tri',
  'tri_chang',
  'chang_narr',
  'narr_kidnap',
  'kidnap_son',
  'son_also',
  'also_think',
  'think_husband',
  'husband_could',
  'could_sleep',
  'sleep_abduct',
  'abduct_marriag',
  'marriag_shamhow',
  'shamhow_could',
  'could_reckless',
  'reckless_leav',
  'leav_child',
  'child_@',
  '@_even',
  'even_updat',
  'updat_sort',
  'sort_thank',
  'thank_everyon',
  'everyon_support',
  'support_seem',
  'seem_mayb',
  'mayb_got',
  'got_bit',
  'bit_lost',
  'lost_translat',
  'translat_emot',
  'emot_polic',
  'polic_spoke',
  'spoke_nativ',
  'nativ_languag',
  'languag_fast',
  'fast_strong',
  'strong_accent',
  'accent_case',
  'case_exactli',
  'exactli_drop',
  'drop_spoken',
  'spoken_mother',
  'mother_basic',
  'basic_told',
  'told_approach',
  'approach_hous',
  'hous_consid',
  'consid_threatharass',
  'threatharass_act',
  'act_continu',
  'continu_investig',
  'investig_feel',
  'feel_leav',
  'leav_countri',
  'countri_tomorrow',
  'tomorrow_enough',
  'enough_resolut',
  'resolut_appar',
  'appar_shown',
  'shown_ticket',
  'ticket_info',
  'info_still',
  'still_get',
  'get_lot',
  'lot_grief',
  'grief_famili',
  'famili_say',
  'say_understand',
  'understand_mother',
  'mother_struggl',
  'struggl_husband',
  'husband_die',
  'die_on…thi',
  'on…thi_make',
  'make_question',
  'question_reaction',
  'reaction_cant',
  'cant_forgiv',
  'forgiv_reach',
  'reach_rel',
  'rel_embassi',
  'embassi_feel',
  'feel_like',
  'like_noth',
  'noth_happen',
  'happen_partner',
  'partner_famili',
  'famili_amaz',
  'amaz_look',
  'look_us',
  'firstli_sorri_mobil',
  'sorri_mobil_throwaway',
  'mobil_throwaway_emigr',
  'throwaway_emigr_husband',
  'emigr_husband_home',
  'husband_home_countri',
  'home_countri_year',
  'countri_year_ago',
  'year_ago_beauti',
  'ago_beauti_son',
  'beauti_son_mother',
  'son_mother_alway',
  'mother_alway_control',
  'alway_control_frankli',
  'control_frankli_typic',
  'frankli_typic_narcissist',
  'typic_narcissist_dead',
  'narcissist_dead_move',
  'dead_move_even',
  'move_even_upset',
  'even_upset_son',
  'upset_son_combin',
  'son_combin_husband',
  'combin_husband_termin',
  'husband_termin_ill',
  'termin_ill_pandem',
  'ill_pandem_abl',
  'pandem_abl_meet',
  'abl_meet_son',
  'meet_son_week',
  'son_week_complain',
  'week_complain_bitterli',
  'complain_bitterli_cheat',
  'bitterli_cheat_special',
  'cheat_special_time',
  'special_time_first',
  'time_first_grandson',
  'first_grandson_exactli',
  'grandson_exactli_excit',
  'exactli_excit_come',
  'excit_come_visit',
  'come_visit_us',
  'visit_us_husband',
  'us_husband_convinc',
  'husband_convinc_tri',
  'convinc_tri_let',
  'tri_let_son',
  'let_son_relationship',
  'son_relationship_well',
  'relationship_well_moment',
  'well_moment_arriv',
  'moment_arriv_complain',
  'arriv_complain_-',
  'complain_-_hous',
  '-_hous_small',
  'hous_small_garden',
  'small_garden_look',
  'garden_look_etc',
  'look_etc_complain',
  'etc_complain_son',
  'complain_son_speak',
  'son_speak_much',
  'speak_much_english',
  'much_english_cant',
  'english_cant_commun',
  'cant_commun_complain',
  'commun_complain_son',
  'complain_son_want',
  'son_want_hug',
  'want_hug_want',
  'hug_want_stay',
  'want_stay_patern',
  'stay_patern_grandmoth',
  'patern_grandmoth_son',
  'grandmoth_son_spilt',
  'son_spilt_drink',
  'spilt_drink_shout',
  'drink_shout_take',
  'shout_take_gentl',
  'take_gentl_approach',
  'gentl_approach_told',
  'approach_told_lost',
  'told_lost_tell',
  'lost_tell_idea',
  'tell_idea_rais',
  'idea_rais_kid',
  'rais_kid_told',
  'kid_told_need',
  'told_need_respect',
  'need_respect_method',
  'respect_method_leav',
  'method_leav_stop',
  'leav_stop_whole',
  'stop_whole_rest',
  'whole_rest_day',
  'rest_day_could',
  'day_could_tell',
  'could_tell_furiou',
  'tell_furiou_night',
  'furiou_night_son',
  'night_son_one',
  'son_one_night',
  'one_night_go',
  'night_go_sleep',
  'go_sleep_poor',
  'sleep_poor_husband',
  'poor_husband_also',
  'husband_also_ib',
  'also_ib_flare',
  'ib_flare_earli',
  'flare_earli_hour',
  'earli_hour_realis',
  'hour_realis_medic',
  'realis_medic_son',
  'medic_son_settl',
  'son_settl_around',
  'settl_around_decid',
  'around_decid_quick',
  'decid_quick_run',
  'quick_run_hour',
  'run_hour_pharmaci',
  'hour_pharmaci_get',
  'pharmaci_get_medic',
  'get_medic_leav',
  'medic_leav_son',
  'leav_son_husband',
  'son_husband_asleep',
  'husband_asleep_sofa',
  'asleep_sofa_gone',
  'sofa_gone_min',
  'gone_min_came',
  'min_came_back',
  'came_back_mother',
  'back_mother_rental',
  'mother_rental_car',
  'rental_car_gone',
  'car_gone_son',
  'gone_son_husband',
  'son_husband_still',
  'husband_still_asleep',
  'still_asleep_shock',
  'asleep_shock_gone',
  'shock_gone_tri',
  'gone_tri_mother',
  'tri_mother_mobil',
  'mother_mobil_answer',
  'mobil_answer_min',
  'answer_min_becom',
  'min_becom_increasingli',
  'becom_increasingli_hyster',
  'increasingli_hyster_call',
  'hyster_call_polic',
  'call_polic_came',
  'polic_came_fast',
  'came_fast_explain',
  'fast_explain_took',
  'explain_took_thing',
  'took_thing_serious',
  'thing_serious_hour',
  'serious_hour_later',
  'hour_later_mother',
  'later_mother_pull',
  'mother_pull_back',
  'pull_back_start',
  'back_start_tell',
  'start_tell_polic',
  'tell_polic_adult',
  'polic_adult_know',
  'adult_know_english',
  'know_english_told',
  'english_told_could',
  'told_could_take',
  'could_take_son',
  'take_son_day',
  'son_day_current',
  'day_current_month',
  'current_month_pregnant',
  'month_pregnant_said',
  'pregnant_said_must',
  'said_must_pregnanc',
  'must_pregnanc_brain',
  'pregnanc_brain_polic',
  'brain_polic_seem',
  'polic_seem_accept',
  'seem_accept_act',
  'accept_act_like',
  'act_like_matter',
  'like_matter_close',
  'matter_close_sinc',
  'close_sinc_son',
  'sinc_son_home',
  'son_home_safe',
  'home_safe_show',
  'safe_show_everyon',
  'show_everyon_toy',
  'everyon_toy_bought',
  'toy_bought_told',
  'bought_told_mother',
  'told_mother_leav',
  'mother_leav_never',
  'leav_never_want',
  'never_want_see',
  'want_see_start',
  'see_start_tell',
  'start_tell_famili',
  'tell_famili_kick',
  'famili_kick_reason',
  'kick_reason_cant',
  'reason_cant_find',
  'cant_find_hotel',
  'find_hotel_blew',
  'hotel_blew_phone',
  'blew_phone_told',
  'phone_told_kidnap',
  'told_kidnap_son',
  'kidnap_son_go',
  'son_go_pursu',
  'go_pursu_polic',
  'pursu_polic_call',
  'polic_call_-hole',
  'call_-hole_say',
  '-hole_say_son',
  'say_son_kidnap',
  'son_kidnap_taken',
  'kidnap_taken_day',
  ...],
 ['okay',
  'friend',
  'plan',
  'wed',
  'nearli',
  'year',
  'want',
  'bridesmaid',
  'thing',
  'gone',
  'last',
  'coupl',
  'year',
  'lot',
  'friend',
  'drift',
  'apart',
  'abl',
  'attend',
  'medic',
  'reason',
  'fell',
  'bridesmaid',
  'origin',
  'plan',
  'girl',
  'attend',
  'day',
  'wed',
  'hectic',
  'bride',
  'got',
  'overwhelm',
  'bridesmaid',
  'basic',
  'whip',
  'everyth',
  'order',
  'calm',
  'hair',
  'stylist',
  'cancel',
  'reach',
  'friend',
  'mine',
  'ask',
  'could',
  'swing',
  'last',
  'minut',
  'help',
  'hair',
  'appar',
  'bride',
  'like',
  'band',
  'use',
  'coffe',
  'colour',
  'white',
  'white',
  'bobbi',
  'pin',
  'match',
  'hair',
  'colour',
  'ribbon',
  'curl',
  'right',
  'one',
  'point',
  'said',
  'friend',
  'idiot',
  'id',
  'heard',
  'enough',
  'understand',
  'stress',
  'need',
  'name',
  'call',
  'someon',
  'got',
  'equip',
  'last',
  'second',
  'drove',
  'minut',
  'event',
  'someon',
  'even',
  'know',
  'favour',
  'even',
  'paid',
  'work',
  'though',
  'offer',
  'told',
  'bride',
  'calm',
  'speak',
  'friend',
  'way',
  'instead',
  'end',
  'yell',
  'well',
  'told',
  'best',
  'could',
  'call',
  'pathet',
  'said',
  'outrag',
  'id',
  'lectur',
  'import',
  'stress',
  'day',
  'life',
  'said',
  'half',
  'mind',
  'cut',
  'bridesmaid',
  'told',
  'id',
  'save',
  'troubl',
  'left',
  'aftermath',
  'insan',
  'bridesmaid',
  'call',
  'tell',
  'ah',
  'selfish',
  'put',
  'littl',
  'attitud',
  'hour',
  'stress',
  'bride',
  'call',
  'cri',
  'betray',
  'horribl',
  'friend',
  'bride',
  'mother',
  'previous',
  'phone',
  'number',
  'call',
  'tell',
  'disgust',
  'attitud',
  'even',
  'boyfriend',
  'say',
  'could',
  'suck',
  'total',
  'ah',
  'move',
  'walk',
  'like',
  'stanc',
  'high',
  'stress',
  'feel',
  'like',
  'call',
  'friend',
  'name',
  'think',
  'call',
  'pathet',
  'stress',
  'excus',
  'talk',
  'someon',
  'opinion',
  'especi',
  'peopl',
  'tri',
  'help',
  'could',
  'wrong',
  'guess',
  'act',
  'like',
  'bridezilla',
  'thought',
  'aita',
  'okay_friend',
  'friend_plan',
  'plan_wed',
  'wed_nearli',
  'nearli_year',
  'year_want',
  'want_bridesmaid',
  'bridesmaid_thing',
  'thing_gone',
  'gone_last',
  'last_coupl',
  'coupl_year',
  'year_lot',
  'lot_friend',
  'friend_drift',
  'drift_apart',
  'apart_abl',
  'abl_attend',
  'attend_medic',
  'medic_reason',
  'reason_fell',
  'fell_bridesmaid',
  'bridesmaid_origin',
  'origin_plan',
  'plan_girl',
  'girl_attend',
  'attend_day',
  'day_wed',
  'wed_hectic',
  'hectic_bride',
  'bride_got',
  'got_overwhelm',
  'overwhelm_bridesmaid',
  'bridesmaid_basic',
  'basic_whip',
  'whip_everyth',
  'everyth_order',
  'order_calm',
  'calm_hair',
  'hair_stylist',
  'stylist_cancel',
  'cancel_reach',
  'reach_friend',
  'friend_mine',
  'mine_ask',
  'ask_could',
  'could_swing',
  'swing_last',
  'last_minut',
  'minut_help',
  'help_hair',
  'hair_appar',
  'appar_bride',
  'bride_like',
  'like_band',
  'band_use',
  'use_coffe',
  'coffe_colour',
  'colour_white',
  'white_white',
  'white_bobbi',
  'bobbi_pin',
  'pin_match',
  'match_hair',
  'hair_colour',
  'colour_ribbon',
  'ribbon_curl',
  'curl_right',
  'right_one',
  'one_point',
  'point_said',
  'said_friend',
  'friend_idiot',
  'idiot_id',
  'id_heard',
  'heard_enough',
  'enough_understand',
  'understand_stress',
  'stress_need',
  'need_name',
  'name_call',
  'call_someon',
  'someon_got',
  'got_equip',
  'equip_last',
  'last_second',
  'second_drove',
  'drove_minut',
  'minut_event',
  'event_someon',
  'someon_even',
  'even_know',
  'know_favour',
  'favour_even',
  'even_paid',
  'paid_work',
  'work_though',
  'though_offer',
  'offer_told',
  'told_bride',
  'bride_calm',
  'calm_speak',
  'speak_friend',
  'friend_way',
  'way_instead',
  'instead_end',
  'end_yell',
  'yell_well',
  'well_told',
  'told_best',
  'best_could',
  'could_call',
  'call_pathet',
  'pathet_said',
  'said_outrag',
  'outrag_id',
  'id_lectur',
  'lectur_import',
  'import_stress',
  'stress_day',
  'day_life',
  'life_said',
  'said_half',
  'half_mind',
  'mind_cut',
  'cut_bridesmaid',
  'bridesmaid_told',
  'told_id',
  'id_save',
  'save_troubl',
  'troubl_left',
  'left_aftermath',
  'aftermath_insan',
  'insan_bridesmaid',
  'bridesmaid_call',
  'call_tell',
  'tell_ah',
  'ah_selfish',
  'selfish_put',
  'put_littl',
  'littl_attitud',
  'attitud_hour',
  'hour_stress',
  'stress_bride',
  'bride_call',
  'call_cri',
  'cri_betray',
  'betray_horribl',
  'horribl_friend',
  'friend_bride',
  'bride_mother',
  'mother_previous',
  'previous_phone',
  'phone_number',
  'number_call',
  'call_tell',
  'tell_disgust',
  'disgust_attitud',
  'attitud_even',
  'even_boyfriend',
  'boyfriend_say',
  'say_could',
  'could_suck',
  'suck_total',
  'total_ah',
  'ah_move',
  'move_walk',
  'walk_like',
  'like_stanc',
  'stanc_high',
  'high_stress',
  'stress_feel',
  'feel_like',
  'like_call',
  'call_friend',
  'friend_name',
  'name_think',
  'think_call',
  'call_pathet',
  'pathet_stress',
  'stress_excus',
  'excus_talk',
  'talk_someon',
  'someon_opinion',
  'opinion_especi',
  'especi_peopl',
  'peopl_tri',
  'tri_help',
  'help_could',
  'could_wrong',
  'wrong_guess',
  'guess_act',
  'act_like',
  'like_bridezilla',
  'bridezilla_thought',
  'thought_aita',
  'okay_friend_plan',
  'friend_plan_wed',
  'plan_wed_nearli',
  'wed_nearli_year',
  'nearli_year_want',
  'year_want_bridesmaid',
  'want_bridesmaid_thing',
  'bridesmaid_thing_gone',
  'thing_gone_last',
  'gone_last_coupl',
  'last_coupl_year',
  'coupl_year_lot',
  'year_lot_friend',
  'lot_friend_drift',
  'friend_drift_apart',
  'drift_apart_abl',
  'apart_abl_attend',
  'abl_attend_medic',
  'attend_medic_reason',
  'medic_reason_fell',
  'reason_fell_bridesmaid',
  'fell_bridesmaid_origin',
  'bridesmaid_origin_plan',
  'origin_plan_girl',
  'plan_girl_attend',
  'girl_attend_day',
  'attend_day_wed',
  'day_wed_hectic',
  'wed_hectic_bride',
  'hectic_bride_got',
  'bride_got_overwhelm',
  'got_overwhelm_bridesmaid',
  'overwhelm_bridesmaid_basic',
  'bridesmaid_basic_whip',
  'basic_whip_everyth',
  'whip_everyth_order',
  'everyth_order_calm',
  'order_calm_hair',
  'calm_hair_stylist',
  'hair_stylist_cancel',
  'stylist_cancel_reach',
  'cancel_reach_friend',
  'reach_friend_mine',
  'friend_mine_ask',
  'mine_ask_could',
  'ask_could_swing',
  'could_swing_last',
  'swing_last_minut',
  'last_minut_help',
  'minut_help_hair',
  'help_hair_appar',
  'hair_appar_bride',
  'appar_bride_like',
  'bride_like_band',
  'like_band_use',
  'band_use_coffe',
  'use_coffe_colour',
  'coffe_colour_white',
  'colour_white_white',
  'white_white_bobbi',
  'white_bobbi_pin',
  'bobbi_pin_match',
  'pin_match_hair',
  'match_hair_colour',
  'hair_colour_ribbon',
  'colour_ribbon_curl',
  'ribbon_curl_right',
  'curl_right_one',
  'right_one_point',
  'one_point_said',
  'point_said_friend',
  'said_friend_idiot',
  'friend_idiot_id',
  'idiot_id_heard',
  'id_heard_enough',
  'heard_enough_understand',
  'enough_understand_stress',
  'understand_stress_need',
  'stress_need_name',
  'need_name_call',
  'name_call_someon',
  'call_someon_got',
  'someon_got_equip',
  'got_equip_last',
  'equip_last_second',
  'last_second_drove',
  'second_drove_minut',
  'drove_minut_event',
  'minut_event_someon',
  'event_someon_even',
  'someon_even_know',
  'even_know_favour',
  'know_favour_even',
  'favour_even_paid',
  'even_paid_work',
  'paid_work_though',
  'work_though_offer',
  'though_offer_told',
  'offer_told_bride',
  'told_bride_calm',
  'bride_calm_speak',
  'calm_speak_friend',
  'speak_friend_way',
  'friend_way_instead',
  'way_instead_end',
  'instead_end_yell',
  'end_yell_well',
  'yell_well_told',
  'well_told_best',
  'told_best_could',
  'best_could_call',
  'could_call_pathet',
  'call_pathet_said',
  'pathet_said_outrag',
  'said_outrag_id',
  'outrag_id_lectur',
  'id_lectur_import',
  'lectur_import_stress',
  'import_stress_day',
  'stress_day_life',
  'day_life_said',
  'life_said_half',
  'said_half_mind',
  'half_mind_cut',
  'mind_cut_bridesmaid',
  'cut_bridesmaid_told',
  'bridesmaid_told_id',
  'told_id_save',
  'id_save_troubl',
  'save_troubl_left',
  'troubl_left_aftermath',
  'left_aftermath_insan',
  'aftermath_insan_bridesmaid',
  'insan_bridesmaid_call',
  'bridesmaid_call_tell',
  'call_tell_ah',
  'tell_ah_selfish',
  'ah_selfish_put',
  'selfish_put_littl',
  'put_littl_attitud',
  'littl_attitud_hour',
  'attitud_hour_stress',
  'hour_stress_bride',
  'stress_bride_call',
  'bride_call_cri',
  'call_cri_betray',
  'cri_betray_horribl',
  'betray_horribl_friend',
  'horribl_friend_bride',
  'friend_bride_mother',
  'bride_mother_previous',
  'mother_previous_phone',
  'previous_phone_number',
  'phone_number_call',
  'number_call_tell',
  'call_tell_disgust',
  'tell_disgust_attitud',
  'disgust_attitud_even',
  'attitud_even_boyfriend',
  'even_boyfriend_say',
  'boyfriend_say_could',
  'say_could_suck',
  'could_suck_total',
  'suck_total_ah',
  'total_ah_move',
  'ah_move_walk',
  'move_walk_like',
  'walk_like_stanc',
  'like_stanc_high',
  'stanc_high_stress',
  'high_stress_feel',
  'stress_feel_like',
  'feel_like_call',
  'like_call_friend',
  'call_friend_name',
  'friend_name_think',
  'name_think_call',
  'think_call_pathet',
  'call_pathet_stress',
  'pathet_stress_excus',
  'stress_excus_talk',
  'excus_talk_someon',
  'talk_someon_opinion',
  'someon_opinion_especi',
  'opinion_especi_peopl',
  'especi_peopl_tri',
  'peopl_tri_help',
  'tri_help_could',
  'help_could_wrong',
  'could_wrong_guess',
  'wrong_guess_act',
  'guess_act_like',
  'act_like_bridezilla',
  'like_bridezilla_thought',
  'bridezilla_thought_aita'],
 ['im',
  'daughter',
  'harperf',
  'previou',
  'relationship',
  'full',
  'custodi',
  'mom',
  'involv',
  'life',
  'year',
  'ago',
  'marri',
  'wife',
  'ninaf',
  'tri',
  'child',
  'went',
  'doctor',
  'turn',
  'cant',
  'anymor',
  'kid',
  'due',
  'complic',
  'decid',
  'use',
  'sperm',
  'donor',
  'result',
  'son',
  'mark',
  'born',
  'month',
  'ago',
  'problem',
  'start',
  'nina',
  'got',
  'pregnant',
  'harper',
  'happi',
  'mark',
  'born',
  'thing',
  'got',
  'wors',
  'harper',
  'use',
  'spend',
  'day',
  'week',
  'togeth',
  'us',
  'without',
  'wife',
  'mark',
  'born',
  'anymor',
  'cant',
  'leav',
  'wife',
  'alon',
  'day',
  'week',
  'newborn',
  'harper',
  'angri',
  'main',
  'problem',
  'start',
  'day',
  'ago',
  'nina',
  'decid',
  'make',
  'nurseri',
  'mark',
  'instead',
  'bedroom',
  'multipl',
  'reason',
  'home',
  'bedroom',
  'master',
  'bedroom',
  'one',
  'side',
  'bedroom',
  'side',
  'one',
  'master',
  'room',
  'one',
  'harper',
  'hard',
  'nina',
  'go',
  'side',
  'home',
  'multipl',
  'time',
  'night',
  'mark',
  'wake',
  'ask',
  'harper',
  'pack',
  'stuff',
  'go',
  'one',
  'bedroom',
  'could',
  'give',
  'room',
  'mark',
  'first',
  'everyth',
  'seem',
  'alright',
  'said',
  'ok',
  'went',
  'room',
  'start',
  'pack',
  'less',
  'hour',
  'later',
  'brother',
  'show',
  'home',
  'ask',
  'harper',
  'call',
  'ask',
  'take',
  'came',
  'room',
  'stuff',
  'told',
  'give',
  'son',
  'left',
  'brother',
  'told',
  'could',
  'go',
  'one',
  'night',
  'day',
  'back',
  'even',
  'talk',
  'im',
  'receiv',
  'call',
  'famili',
  'call',
  'ah',
  'name',
  'trust',
  'judgement',
  'clearli',
  'favor',
  'harper',
  'first',
  'grandchild',
  'famili',
  'everyon',
  'favorit',
  'also',
  'tri',
  'accept',
  'mark',
  'son',
  'could',
  'see',
  'abl',
  'yet',
  'decid',
  'post',
  'get',
  'unbias',
  'opinion',
  'aita',
  'edit',
  'updat',
  'promis',
  'realiz',
  'ive',
  'mess',
  'went',
  'brother',
  'home',
  'tri',
  'get',
  'harper',
  'back',
  'even',
  'let',
  'see',
  'say',
  'want',
  'see',
  'said',
  'would',
  'let',
  'go',
  'back',
  'want',
  'go',
  'move',
  'anoth',
  'home',
  'close',
  'home',
  'want',
  'harper',
  'close',
  'keep',
  'eye',
  'make',
  'sure',
  'treat',
  'right',
  'use',
  'live',
  'close',
  'got',
  'marri',
  'wife',
  'famili',
  'get',
  'along',
  'move',
  'somewher',
  'farther',
  'away',
  'made',
  'harper',
  'sad',
  'harper',
  'get',
  'choos',
  'bedroom',
  'want',
  'new',
  'home',
  'spend',
  'time',
  'harper',
  'least',
  'one',
  'day',
  'week',
  'accept',
  'caus',
  'lot',
  'problem',
  'sinc',
  'wife',
  'like',
  'condit',
  'think',
  'reason',
  'got',
  'angri',
  'took',
  'mark',
  'went',
  'parent',
  'home',
  'stay',
  'im',
  'also',
  'receiv',
  'text',
  'inlaw',
  'call',
  'ah',
  'right',
  'im',
  'look',
  'new',
  'home',
  'closer',
  'brother',
  'home',
  'call',
  'harper',
  'brother',
  'convinc',
  'talk',
  'cri',
  'whole',
  'time',
  'tell',
  'felt',
  'like',
  'want',
  'anymor',
  'hear',
  'cri',
  'like',
  'realli',
  'broke',
  'heart',
  'honestli',
  'never',
  'meant',
  'hurt',
  'mani',
  'apolog',
  'gift',
  'final',
  'agre',
  'see',
  'go',
  'brother',
  'home',
  'everyday',
  'spend',
  'time',
  'also',
  'final',
  'agre',
  'come',
  'home',
  'find',
  'new',
  'home',
  'im_daughter',
  'daughter_harperf',
  'harperf_previou',
  'previou_relationship',
  'relationship_full',
  'full_custodi',
  'custodi_mom',
  'mom_involv',
  'involv_life',
  'life_year',
  'year_ago',
  'ago_marri',
  'marri_wife',
  'wife_ninaf',
  'ninaf_tri',
  'tri_child',
  'child_went',
  'went_doctor',
  'doctor_turn',
  'turn_cant',
  'cant_anymor',
  'anymor_kid',
  'kid_due',
  'due_complic',
  'complic_decid',
  'decid_use',
  'use_sperm',
  'sperm_donor',
  'donor_result',
  'result_son',
  'son_mark',
  'mark_born',
  'born_month',
  'month_ago',
  'ago_problem',
  'problem_start',
  'start_nina',
  'nina_got',
  'got_pregnant',
  'pregnant_harper',
  'harper_happi',
  'happi_mark',
  'mark_born',
  'born_thing',
  'thing_got',
  'got_wors',
  'wors_harper',
  'harper_use',
  'use_spend',
  'spend_day',
  'day_week',
  'week_togeth',
  'togeth_us',
  'us_without',
  'without_wife',
  'wife_mark',
  'mark_born',
  'born_anymor',
  'anymor_cant',
  'cant_leav',
  'leav_wife',
  'wife_alon',
  'alon_day',
  'day_week',
  'week_newborn',
  'newborn_harper',
  'harper_angri',
  'angri_main',
  'main_problem',
  'problem_start',
  'start_day',
  'day_ago',
  'ago_nina',
  'nina_decid',
  'decid_make',
  'make_nurseri',
  'nurseri_mark',
  'mark_instead',
  'instead_bedroom',
  'bedroom_multipl',
  'multipl_reason',
  'reason_home',
  'home_bedroom',
  'bedroom_master',
  'master_bedroom',
  'bedroom_one',
  'one_side',
  'side_bedroom',
  'bedroom_side',
  'side_one',
  'one_master',
  'master_room',
  'room_one',
  'one_harper',
  'harper_hard',
  'hard_nina',
  'nina_go',
  'go_side',
  'side_home',
  'home_multipl',
  'multipl_time',
  'time_night',
  'night_mark',
  'mark_wake',
  'wake_ask',
  'ask_harper',
  'harper_pack',
  'pack_stuff',
  'stuff_go',
  'go_one',
  'one_bedroom',
  'bedroom_could',
  'could_give',
  'give_room',
  'room_mark',
  'mark_first',
  'first_everyth',
  'everyth_seem',
  'seem_alright',
  'alright_said',
  'said_ok',
  'ok_went',
  'went_room',
  'room_start',
  'start_pack',
  'pack_less',
  'less_hour',
  'hour_later',
  'later_brother',
  'brother_show',
  'show_home',
  'home_ask',
  'ask_harper',
  'harper_call',
  'call_ask',
  'ask_take',
  'take_came',
  'came_room',
  'room_stuff',
  'stuff_told',
  'told_give',
  'give_son',
  'son_left',
  'left_brother',
  'brother_told',
  'told_could',
  'could_go',
  'go_one',
  'one_night',
  'night_day',
  'day_back',
  'back_even',
  'even_talk',
  'talk_im',
  'im_receiv',
  'receiv_call',
  'call_famili',
  'famili_call',
  'call_ah',
  'ah_name',
  'name_trust',
  'trust_judgement',
  'judgement_clearli',
  'clearli_favor',
  'favor_harper',
  'harper_first',
  'first_grandchild',
  'grandchild_famili',
  'famili_everyon',
  'everyon_favorit',
  'favorit_also',
  'also_tri',
  'tri_accept',
  'accept_mark',
  'mark_son',
  'son_could',
  'could_see',
  'see_abl',
  'abl_yet',
  'yet_decid',
  'decid_post',
  'post_get',
  'get_unbias',
  'unbias_opinion',
  'opinion_aita',
  'aita_edit',
  'edit_updat',
  'updat_promis',
  'promis_realiz',
  'realiz_ive',
  'ive_mess',
  'mess_went',
  'went_brother',
  'brother_home',
  'home_tri',
  'tri_get',
  'get_harper',
  'harper_back',
  'back_even',
  'even_let',
  'let_see',
  'see_say',
  'say_want',
  'want_see',
  'see_said',
  'said_would',
  'would_let',
  'let_go',
  'go_back',
  'back_want',
  'want_go',
  'go_move',
  'move_anoth',
  'anoth_home',
  'home_close',
  'close_home',
  'home_want',
  'want_harper',
  'harper_close',
  'close_keep',
  'keep_eye',
  'eye_make',
  'make_sure',
  'sure_treat',
  'treat_right',
  'right_use',
  'use_live',
  'live_close',
  'close_got',
  'got_marri',
  'marri_wife',
  'wife_famili',
  'famili_get',
  'get_along',
  'along_move',
  'move_somewher',
  'somewher_farther',
  'farther_away',
  'away_made',
  'made_harper',
  'harper_sad',
  'sad_harper',
  'harper_get',
  'get_choos',
  'choos_bedroom',
  'bedroom_want',
  'want_new',
  'new_home',
  'home_spend',
  'spend_time',
  'time_harper',
  'harper_least',
  'least_one',
  'one_day',
  'day_week',
  'week_accept',
  'accept_caus',
  'caus_lot',
  'lot_problem',
  'problem_sinc',
  'sinc_wife',
  'wife_like',
  'like_condit',
  'condit_think',
  'think_reason',
  'reason_got',
  'got_angri',
  'angri_took',
  'took_mark',
  'mark_went',
  'went_parent',
  'parent_home',
  'home_stay',
  'stay_im',
  'im_also',
  'also_receiv',
  'receiv_text',
  'text_inlaw',
  'inlaw_call',
  'call_ah',
  'ah_right',
  'right_im',
  'im_look',
  'look_new',
  'new_home',
  'home_closer',
  'closer_brother',
  'brother_home',
  'home_call',
  'call_harper',
  'harper_brother',
  'brother_convinc',
  'convinc_talk',
  'talk_cri',
  'cri_whole',
  'whole_time',
  'time_tell',
  'tell_felt',
  'felt_like',
  'like_want',
  'want_anymor',
  'anymor_hear',
  'hear_cri',
  'cri_like',
  'like_realli',
  'realli_broke',
  'broke_heart',
  'heart_honestli',
  'honestli_never',
  'never_meant',
  'meant_hurt',
  'hurt_mani',
  'mani_apolog',
  'apolog_gift',
  'gift_final',
  'final_agre',
  'agre_see',
  'see_go',
  'go_brother',
  'brother_home',
  'home_everyday',
  'everyday_spend',
  'spend_time',
  'time_also',
  'also_final',
  'final_agre',
  'agre_come',
  'come_home',
  'home_find',
  'find_new',
  'new_home',
  'im_daughter_harperf',
  'daughter_harperf_previou',
  'harperf_previou_relationship',
  'previou_relationship_full',
  'relationship_full_custodi',
  'full_custodi_mom',
  'custodi_mom_involv',
  'mom_involv_life',
  'involv_life_year',
  'life_year_ago',
  'year_ago_marri',
  'ago_marri_wife',
  'marri_wife_ninaf',
  'wife_ninaf_tri',
  'ninaf_tri_child',
  'tri_child_went',
  'child_went_doctor',
  'went_doctor_turn',
  'doctor_turn_cant',
  'turn_cant_anymor',
  'cant_anymor_kid',
  'anymor_kid_due',
  'kid_due_complic',
  'due_complic_decid',
  'complic_decid_use',
  'decid_use_sperm',
  'use_sperm_donor',
  'sperm_donor_result',
  'donor_result_son',
  'result_son_mark',
  'son_mark_born',
  'mark_born_month',
  'born_month_ago',
  'month_ago_problem',
  'ago_problem_start',
  'problem_start_nina',
  'start_nina_got',
  'nina_got_pregnant',
  'got_pregnant_harper',
  'pregnant_harper_happi',
  'harper_happi_mark',
  'happi_mark_born',
  'mark_born_thing',
  'born_thing_got',
  'thing_got_wors',
  'got_wors_harper',
  'wors_harper_use',
  'harper_use_spend',
  'use_spend_day',
  'spend_day_week',
  'day_week_togeth',
  'week_togeth_us',
  'togeth_us_without',
  'us_without_wife',
  'without_wife_mark',
  'wife_mark_born',
  'mark_born_anymor',
  'born_anymor_cant',
  'anymor_cant_leav',
  'cant_leav_wife',
  'leav_wife_alon',
  'wife_alon_day',
  'alon_day_week',
  'day_week_newborn',
  'week_newborn_harper',
  'newborn_harper_angri',
  'harper_angri_main',
  'angri_main_problem',
  'main_problem_start',
  'problem_start_day',
  'start_day_ago',
  'day_ago_nina',
  'ago_nina_decid',
  'nina_decid_make',
  'decid_make_nurseri',
  'make_nurseri_mark',
  'nurseri_mark_instead',
  'mark_instead_bedroom',
  'instead_bedroom_multipl',
  'bedroom_multipl_reason',
  'multipl_reason_home',
  'reason_home_bedroom',
  'home_bedroom_master',
  'bedroom_master_bedroom',
  'master_bedroom_one',
  'bedroom_one_side',
  'one_side_bedroom',
  'side_bedroom_side',
  'bedroom_side_one',
  'side_one_master',
  'one_master_room',
  'master_room_one',
  'room_one_harper',
  'one_harper_hard',
  'harper_hard_nina',
  'hard_nina_go',
  'nina_go_side',
  'go_side_home',
  'side_home_multipl',
  'home_multipl_time',
  'multipl_time_night',
  'time_night_mark',
  'night_mark_wake',
  'mark_wake_ask',
  'wake_ask_harper',
  'ask_harper_pack',
  'harper_pack_stuff',
  'pack_stuff_go',
  'stuff_go_one',
  'go_one_bedroom',
  'one_bedroom_could',
  'bedroom_could_give',
  'could_give_room',
  'give_room_mark',
  'room_mark_first',
  'mark_first_everyth',
  'first_everyth_seem',
  'everyth_seem_alright',
  'seem_alright_said',
  'alright_said_ok',
  'said_ok_went',
  'ok_went_room',
  'went_room_start',
  'room_start_pack',
  'start_pack_less',
  'pack_less_hour',
  'less_hour_later',
  'hour_later_brother',
  'later_brother_show',
  'brother_show_home',
  'show_home_ask',
  'home_ask_harper',
  'ask_harper_call',
  'harper_call_ask',
  'call_ask_take',
  'ask_take_came',
  'take_came_room',
  'came_room_stuff',
  'room_stuff_told',
  'stuff_told_give',
  'told_give_son',
  'give_son_left',
  'son_left_brother',
  'left_brother_told',
  'brother_told_could',
  'told_could_go',
  'could_go_one',
  'go_one_night',
  'one_night_day',
  'night_day_back',
  'day_back_even',
  'back_even_talk',
  'even_talk_im',
  'talk_im_receiv',
  'im_receiv_call',
  'receiv_call_famili',
  'call_famili_call',
  'famili_call_ah',
  'call_ah_name',
  'ah_name_trust',
  'name_trust_judgement',
  'trust_judgement_clearli',
  'judgement_clearli_favor',
  'clearli_favor_harper',
  'favor_harper_first',
  'harper_first_grandchild',
  'first_grandchild_famili',
  'grandchild_famili_everyon',
  'famili_everyon_favorit',
  'everyon_favorit_also',
  'favorit_also_tri',
  'also_tri_accept',
  'tri_accept_mark',
  'accept_mark_son',
  'mark_son_could',
  'son_could_see',
  'could_see_abl',
  'see_abl_yet',
  'abl_yet_decid',
  'yet_decid_post',
  'decid_post_get',
  'post_get_unbias',
  'get_unbias_opinion',
  'unbias_opinion_aita',
  'opinion_aita_edit',
  'aita_edit_updat',
  'edit_updat_promis',
  'updat_promis_realiz',
  'promis_realiz_ive',
  'realiz_ive_mess',
  'ive_mess_went',
  'mess_went_brother',
  'went_brother_home',
  'brother_home_tri',
  'home_tri_get',
  'tri_get_harper',
  'get_harper_back',
  'harper_back_even',
  'back_even_let',
  'even_let_see',
  'let_see_say',
  'see_say_want',
  'say_want_see',
  'want_see_said',
  'see_said_would',
  'said_would_let',
  'would_let_go',
  'let_go_back',
  'go_back_want',
  'back_want_go',
  'want_go_move',
  'go_move_anoth',
  'move_anoth_home',
  'anoth_home_close',
  'home_close_home',
  'close_home_want',
  'home_want_harper',
  'want_harper_close',
  'harper_close_keep',
  'close_keep_eye',
  'keep_eye_make',
  'eye_make_sure',
  'make_sure_treat',
  'sure_treat_right',
  'treat_right_use',
  'right_use_live',
  'use_live_close',
  'live_close_got',
  'close_got_marri',
  'got_marri_wife',
  'marri_wife_famili',
  'wife_famili_get',
  'famili_get_along',
  'get_along_move',
  'along_move_somewher',
  'move_somewher_farther',
  'somewher_farther_away',
  'farther_away_made',
  'away_made_harper',
  'made_harper_sad',
  'harper_sad_harper',
  'sad_harper_get',
  'harper_get_choos',
  'get_choos_bedroom',
  'choos_bedroom_want',
  'bedroom_want_new',
  'want_new_home',
  'new_home_spend',
  'home_spend_time',
  'spend_time_harper',
  'time_harper_least',
  'harper_least_one',
  'least_one_day',
  'one_day_week',
  'day_week_accept',
  'week_accept_caus',
  'accept_caus_lot',
  'caus_lot_problem',
  'lot_problem_sinc',
  'problem_sinc_wife',
  'sinc_wife_like',
  'wife_like_condit',
  'like_condit_think',
  'condit_think_reason',
  'think_reason_got',
  'reason_got_angri',
  'got_angri_took',
  'angri_took_mark',
  'took_mark_went',
  'mark_went_parent',
  'went_parent_home',
  'parent_home_stay',
  'home_stay_im',
  'stay_im_also',
  'im_also_receiv',
  'also_receiv_text',
  'receiv_text_inlaw',
  'text_inlaw_call',
  'inlaw_call_ah',
  'call_ah_right',
  'ah_right_im',
  'right_im_look',
  'im_look_new',
  'look_new_home',
  'new_home_closer',
  'home_closer_brother',
  'closer_brother_home',
  'brother_home_call',
  'home_call_harper',
  'call_harper_brother',
  'harper_brother_convinc',
  'brother_convinc_talk',
  'convinc_talk_cri',
  'talk_cri_whole',
  'cri_whole_time',
  'whole_time_tell',
  'time_tell_felt',
  'tell_felt_like',
  'felt_like_want',
  'like_want_anymor',
  'want_anymor_hear',
  'anymor_hear_cri',
  'hear_cri_like',
  'cri_like_realli',
  'like_realli_broke',
  'realli_broke_heart',
  'broke_heart_honestli',
  'heart_honestli_never',
  'honestli_never_meant',
  'never_meant_hurt',
  'meant_hurt_mani',
  'hurt_mani_apolog',
  'mani_apolog_gift',
  'apolog_gift_final',
  'gift_final_agre',
  'final_agre_see',
  'agre_see_go',
  'see_go_brother',
  'go_brother_home',
  'brother_home_everyday',
  'home_everyday_spend',
  'everyday_spend_time',
  'spend_time_also',
  'time_also_final',
  'also_final_agre',
  'final_agre_come',
  'agre_come_home',
  'come_home_find',
  'home_find_new',
  'find_new_home'],
 ['throwaway',
  'want',
  'sister',
  'find',
  'sister',
  'anni',
  'sf',
  'obsess',
  'girl',
  'let',
  'say',
  'jane',
  'sf',
  'husband',
  'cheat',
  'mid',
  'idk',
  'jane',
  'first',
  'last',
  'one',
  'decent',
  'one',
  'realiz',
  'marri',
  'broke',
  'found',
  'sent',
  'proof',
  'cheat',
  'wife',
  'somehow',
  'spun',
  'tri',
  'break',
  'us',
  'sister',
  'fell',
  'stupid',
  'jane',
  'alreadi',
  'block',
  'everyth',
  'one',
  'basic',
  'stalk',
  'month',
  'anyway',
  'anni',
  'stalk',
  'jane',
  'social',
  'time',
  'jane',
  'post',
  'someth',
  'bad',
  'happen',
  'anni',
  'call',
  'gloat',
  'time',
  'post',
  'anyth',
  'good',
  'happen',
  'anni',
  'start',
  'cri',
  'fair',
  'last',
  'month',
  'jane',
  'appar',
  'got',
  'high',
  'pay',
  'new',
  'job',
  'got',
  'engag',
  'pregnant',
  'anni',
  'full',
  'meltdown',
  'ever',
  'want',
  'talk',
  'shell',
  'call',
  'least',
  'twice',
  'week',
  'shit',
  'text',
  'multipl',
  'time',
  'day',
  'want',
  'advic',
  'want',
  'leav',
  'want',
  'vent',
  'endlessli',
  'sister',
  'also',
  'tire',
  'mom',
  'say',
  'need',
  'gentl',
  'hard',
  'anni',
  'want',
  'stop',
  'tri',
  'sympathi',
  'tough',
  'love',
  'chang',
  'subject',
  'suggest',
  'counsel',
  'noth',
  'work',
  'nonstop',
  'jane',
  'jane',
  'said',
  'hit',
  'boil',
  'point',
  'morn',
  'go',
  'jane',
  'fianc',
  'would',
  'cheat',
  'fat',
  'pregnant',
  'babi',
  'would',
  'basterd',
  'etc',
  'said',
  'care',
  'lost',
  'week',
  'lifetim',
  'reason',
  'made',
  'snap',
  'told',
  'anni',
  'slimi',
  'serial',
  'cheater',
  'like',
  'creep',
  'bare',
  'legal',
  'teen',
  'never',
  'support',
  'ill',
  'depress',
  'never',
  'lift',
  'finger',
  'around',
  'hous',
  'sulk',
  'babysit',
  'kid',
  'constantli',
  'make',
  'mean',
  'joke',
  'critic',
  'appear',
  'harshli',
  'even',
  'though',
  'averag',
  'look',
  'said',
  'someth',
  'like',
  'mayb',
  'obsess',
  'jane',
  'life',
  'massiv',
  'dumpster',
  'fire',
  'sinc',
  'deactiv',
  'social',
  'im',
  'get',
  'nonstop',
  'hate',
  'anni',
  'friend',
  'extend',
  'famili',
  'cruel',
  'appar',
  'moral',
  'condon',
  'cheat',
  'none',
  'go',
  'actual',
  'cheater',
  'though',
  'point',
  'cheater',
  'sister',
  'say',
  'wrong',
  'ah',
  'say',
  'harshli',
  'anni',
  'victim',
  'idk',
  'reddit',
  '&',
  'xb',
  'edit',
  'thank',
  'comment',
  'award',
  'advic',
  'sorri',
  'cant',
  'repli',
  'everyon',
  'ill',
  'keep',
  'suggest',
  'therapi',
  'anni',
  'ill',
  'track',
  'jane',
  'social',
  'let',
  'know',
  'anyth',
  'happen',
  'ill',
  'let',
  'know',
  'peopl',
  'suggest',
  'show',
  'thread',
  'anni',
  'know',
  'shell',
  'total',
  'explod',
  'think',
  'share',
  'privat',
  'stuff',
  'onlin',
  'even',
  'anonym',
  'throwaway_want',
  'want_sister',
  'sister_find',
  'find_sister',
  'sister_anni',
  'anni_sf',
  'sf_obsess',
  'obsess_girl',
  'girl_let',
  'let_say',
  'say_jane',
  'jane_sf',
  'sf_husband',
  'husband_cheat',
  'cheat_mid',
  'mid_idk',
  'idk_jane',
  'jane_first',
  'first_last',
  'last_one',
  'one_decent',
  'decent_one',
  'one_realiz',
  'realiz_marri',
  'marri_broke',
  'broke_found',
  'found_sent',
  'sent_proof',
  'proof_cheat',
  'cheat_wife',
  'wife_somehow',
  'somehow_spun',
  'spun_tri',
  'tri_break',
  'break_us',
  'us_sister',
  'sister_fell',
  'fell_stupid',
  'stupid_jane',
  'jane_alreadi',
  'alreadi_block',
  'block_everyth',
  'everyth_one',
  'one_basic',
  'basic_stalk',
  'stalk_month',
  'month_anyway',
  'anyway_anni',
  'anni_stalk',
  'stalk_jane',
  'jane_social',
  'social_time',
  'time_jane',
  'jane_post',
  'post_someth',
  'someth_bad',
  'bad_happen',
  'happen_anni',
  'anni_call',
  'call_gloat',
  'gloat_time',
  'time_post',
  'post_anyth',
  'anyth_good',
  'good_happen',
  'happen_anni',
  'anni_start',
  'start_cri',
  'cri_fair',
  'fair_last',
  'last_month',
  'month_jane',
  'jane_appar',
  'appar_got',
  'got_high',
  'high_pay',
  'pay_new',
  'new_job',
  'job_got',
  'got_engag',
  'engag_pregnant',
  'pregnant_anni',
  'anni_full',
  'full_meltdown',
  'meltdown_ever',
  'ever_want',
  'want_talk',
  'talk_shell',
  'shell_call',
  'call_least',
  'least_twice',
  'twice_week',
  'week_shit',
  'shit_text',
  'text_multipl',
  'multipl_time',
  'time_day',
  'day_want',
  'want_advic',
  'advic_want',
  'want_leav',
  'leav_want',
  'want_vent',
  'vent_endlessli',
  'endlessli_sister',
  'sister_also',
  'also_tire',
  'tire_mom',
  'mom_say',
  'say_need',
  'need_gentl',
  'gentl_hard',
  'hard_anni',
  'anni_want',
  'want_stop',
  'stop_tri',
  'tri_sympathi',
  'sympathi_tough',
  'tough_love',
  'love_chang',
  'chang_subject',
  'subject_suggest',
  'suggest_counsel',
  'counsel_noth',
  'noth_work',
  'work_nonstop',
  'nonstop_jane',
  'jane_jane',
  'jane_said',
  'said_hit',
  'hit_boil',
  'boil_point',
  'point_morn',
  'morn_go',
  'go_jane',
  'jane_fianc',
  'fianc_would',
  'would_cheat',
  'cheat_fat',
  'fat_pregnant',
  'pregnant_babi',
  'babi_would',
  'would_basterd',
  'basterd_etc',
  'etc_said',
  'said_care',
  'care_lost',
  'lost_week',
  'week_lifetim',
  'lifetim_reason',
  'reason_made',
  'made_snap',
  'snap_told',
  'told_anni',
  'anni_slimi',
  'slimi_serial',
  'serial_cheater',
  'cheater_like',
  'like_creep',
  'creep_bare',
  'bare_legal',
  'legal_teen',
  'teen_never',
  'never_support',
  'support_ill',
  'ill_depress',
  'depress_never',
  'never_lift',
  'lift_finger',
  'finger_around',
  'around_hous',
  'hous_sulk',
  'sulk_babysit',
  'babysit_kid',
  'kid_constantli',
  'constantli_make',
  'make_mean',
  'mean_joke',
  'joke_critic',
  'critic_appear',
  'appear_harshli',
  'harshli_even',
  'even_though',
  'though_averag',
  'averag_look',
  'look_said',
  'said_someth',
  'someth_like',
  'like_mayb',
  'mayb_obsess',
  'obsess_jane',
  'jane_life',
  'life_massiv',
  'massiv_dumpster',
  'dumpster_fire',
  'fire_sinc',
  'sinc_deactiv',
  'deactiv_social',
  'social_im',
  'im_get',
  'get_nonstop',
  'nonstop_hate',
  'hate_anni',
  'anni_friend',
  'friend_extend',
  'extend_famili',
  'famili_cruel',
  'cruel_appar',
  'appar_moral',
  'moral_condon',
  'condon_cheat',
  'cheat_none',
  'none_go',
  'go_actual',
  'actual_cheater',
  'cheater_though',
  'though_point',
  'point_cheater',
  'cheater_sister',
  'sister_say',
  'say_wrong',
  'wrong_ah',
  'ah_say',
  'say_harshli',
  'harshli_anni',
  'anni_victim',
  'victim_idk',
  'idk_reddit',
  'reddit_&',
  '&_xb',
  'xb_edit',
  'edit_thank',
  'thank_comment',
  'comment_award',
  'award_advic',
  'advic_sorri',
  'sorri_cant',
  'cant_repli',
  'repli_everyon',
  'everyon_ill',
  'ill_keep',
  'keep_suggest',
  'suggest_therapi',
  'therapi_anni',
  'anni_ill',
  'ill_track',
  'track_jane',
  'jane_social',
  'social_let',
  'let_know',
  'know_anyth',
  'anyth_happen',
  'happen_ill',
  'ill_let',
  'let_know',
  'know_peopl',
  'peopl_suggest',
  'suggest_show',
  'show_thread',
  'thread_anni',
  'anni_know',
  'know_shell',
  'shell_total',
  'total_explod',
  'explod_think',
  'think_share',
  'share_privat',
  'privat_stuff',
  'stuff_onlin',
  'onlin_even',
  'even_anonym',
  'throwaway_want_sister',
  'want_sister_find',
  'sister_find_sister',
  'find_sister_anni',
  'sister_anni_sf',
  'anni_sf_obsess',
  'sf_obsess_girl',
  'obsess_girl_let',
  'girl_let_say',
  'let_say_jane',
  'say_jane_sf',
  'jane_sf_husband',
  'sf_husband_cheat',
  'husband_cheat_mid',
  'cheat_mid_idk',
  'mid_idk_jane',
  'idk_jane_first',
  'jane_first_last',
  'first_last_one',
  'last_one_decent',
  'one_decent_one',
  'decent_one_realiz',
  'one_realiz_marri',
  'realiz_marri_broke',
  'marri_broke_found',
  'broke_found_sent',
  'found_sent_proof',
  'sent_proof_cheat',
  'proof_cheat_wife',
  'cheat_wife_somehow',
  'wife_somehow_spun',
  'somehow_spun_tri',
  'spun_tri_break',
  'tri_break_us',
  'break_us_sister',
  'us_sister_fell',
  'sister_fell_stupid',
  'fell_stupid_jane',
  'stupid_jane_alreadi',
  'jane_alreadi_block',
  'alreadi_block_everyth',
  'block_everyth_one',
  'everyth_one_basic',
  'one_basic_stalk',
  'basic_stalk_month',
  'stalk_month_anyway',
  'month_anyway_anni',
  'anyway_anni_stalk',
  'anni_stalk_jane',
  'stalk_jane_social',
  'jane_social_time',
  'social_time_jane',
  'time_jane_post',
  'jane_post_someth',
  'post_someth_bad',
  'someth_bad_happen',
  'bad_happen_anni',
  'happen_anni_call',
  'anni_call_gloat',
  'call_gloat_time',
  'gloat_time_post',
  'time_post_anyth',
  'post_anyth_good',
  'anyth_good_happen',
  'good_happen_anni',
  'happen_anni_start',
  'anni_start_cri',
  'start_cri_fair',
  'cri_fair_last',
  'fair_last_month',
  'last_month_jane',
  'month_jane_appar',
  'jane_appar_got',
  'appar_got_high',
  'got_high_pay',
  'high_pay_new',
  'pay_new_job',
  'new_job_got',
  'job_got_engag',
  'got_engag_pregnant',
  'engag_pregnant_anni',
  'pregnant_anni_full',
  'anni_full_meltdown',
  'full_meltdown_ever',
  'meltdown_ever_want',
  'ever_want_talk',
  'want_talk_shell',
  'talk_shell_call',
  'shell_call_least',
  'call_least_twice',
  'least_twice_week',
  'twice_week_shit',
  'week_shit_text',
  'shit_text_multipl',
  'text_multipl_time',
  'multipl_time_day',
  'time_day_want',
  'day_want_advic',
  'want_advic_want',
  'advic_want_leav',
  'want_leav_want',
  'leav_want_vent',
  'want_vent_endlessli',
  'vent_endlessli_sister',
  'endlessli_sister_also',
  'sister_also_tire',
  'also_tire_mom',
  'tire_mom_say',
  'mom_say_need',
  'say_need_gentl',
  'need_gentl_hard',
  'gentl_hard_anni',
  'hard_anni_want',
  'anni_want_stop',
  'want_stop_tri',
  'stop_tri_sympathi',
  'tri_sympathi_tough',
  'sympathi_tough_love',
  'tough_love_chang',
  'love_chang_subject',
  'chang_subject_suggest',
  'subject_suggest_counsel',
  'suggest_counsel_noth',
  'counsel_noth_work',
  'noth_work_nonstop',
  'work_nonstop_jane',
  'nonstop_jane_jane',
  'jane_jane_said',
  'jane_said_hit',
  'said_hit_boil',
  'hit_boil_point',
  'boil_point_morn',
  'point_morn_go',
  'morn_go_jane',
  'go_jane_fianc',
  'jane_fianc_would',
  'fianc_would_cheat',
  'would_cheat_fat',
  'cheat_fat_pregnant',
  'fat_pregnant_babi',
  'pregnant_babi_would',
  'babi_would_basterd',
  'would_basterd_etc',
  'basterd_etc_said',
  'etc_said_care',
  'said_care_lost',
  'care_lost_week',
  'lost_week_lifetim',
  'week_lifetim_reason',
  'lifetim_reason_made',
  'reason_made_snap',
  'made_snap_told',
  'snap_told_anni',
  'told_anni_slimi',
  'anni_slimi_serial',
  'slimi_serial_cheater',
  'serial_cheater_like',
  'cheater_like_creep',
  'like_creep_bare',
  'creep_bare_legal',
  'bare_legal_teen',
  'legal_teen_never',
  'teen_never_support',
  'never_support_ill',
  'support_ill_depress',
  'ill_depress_never',
  'depress_never_lift',
  'never_lift_finger',
  'lift_finger_around',
  'finger_around_hous',
  'around_hous_sulk',
  'hous_sulk_babysit',
  'sulk_babysit_kid',
  'babysit_kid_constantli',
  'kid_constantli_make',
  'constantli_make_mean',
  'make_mean_joke',
  'mean_joke_critic',
  'joke_critic_appear',
  'critic_appear_harshli',
  'appear_harshli_even',
  'harshli_even_though',
  'even_though_averag',
  'though_averag_look',
  'averag_look_said',
  'look_said_someth',
  'said_someth_like',
  'someth_like_mayb',
  'like_mayb_obsess',
  'mayb_obsess_jane',
  'obsess_jane_life',
  'jane_life_massiv',
  'life_massiv_dumpster',
  'massiv_dumpster_fire',
  'dumpster_fire_sinc',
  'fire_sinc_deactiv',
  'sinc_deactiv_social',
  'deactiv_social_im',
  'social_im_get',
  'im_get_nonstop',
  'get_nonstop_hate',
  'nonstop_hate_anni',
  'hate_anni_friend',
  'anni_friend_extend',
  'friend_extend_famili',
  'extend_famili_cruel',
  'famili_cruel_appar',
  'cruel_appar_moral',
  'appar_moral_condon',
  'moral_condon_cheat',
  'condon_cheat_none',
  'cheat_none_go',
  'none_go_actual',
  'go_actual_cheater',
  'actual_cheater_though',
  'cheater_though_point',
  'though_point_cheater',
  'point_cheater_sister',
  'cheater_sister_say',
  'sister_say_wrong',
  'say_wrong_ah',
  'wrong_ah_say',
  'ah_say_harshli',
  'say_harshli_anni',
  'harshli_anni_victim',
  'anni_victim_idk',
  'victim_idk_reddit',
  'idk_reddit_&',
  'reddit_&_xb',
  '&_xb_edit',
  'xb_edit_thank',
  'edit_thank_comment',
  'thank_comment_award',
  'comment_award_advic',
  'award_advic_sorri',
  'advic_sorri_cant',
  'sorri_cant_repli',
  'cant_repli_everyon',
  'repli_everyon_ill',
  'everyon_ill_keep',
  'ill_keep_suggest',
  'keep_suggest_therapi',
  'suggest_therapi_anni',
  'therapi_anni_ill',
  'anni_ill_track',
  'ill_track_jane',
  'track_jane_social',
  'jane_social_let',
  'social_let_know',
  'let_know_anyth',
  'know_anyth_happen',
  'anyth_happen_ill',
  'happen_ill_let',
  'ill_let_know',
  'let_know_peopl',
  'know_peopl_suggest',
  'peopl_suggest_show',
  'suggest_show_thread',
  'show_thread_anni',
  'thread_anni_know',
  'anni_know_shell',
  'know_shell_total',
  'shell_total_explod',
  'total_explod_think',
  'explod_think_share',
  'think_share_privat',
  'share_privat_stuff',
  'privat_stuff_onlin',
  'stuff_onlin_even',
  'onlin_even_anonym'],
 ['neighbour',
  'mine',
  'children',
  'age',
  'seen',
  'mani',
  'timesand',
  'alway',
  'demand',
  'peopl',
  'take',
  'next',
  'elev',
  'kid',
  'need',
  'get',
  'home',
  'physic',
  'shove',
  'elev',
  'forc',
  'peopl',
  'includ',
  'elderli',
  'father',
  'way',
  'home',
  'work',
  '-',
  'take',
  'public',
  'transit',
  '-',
  'bu',
  'kid',
  'scream',
  'run',
  'aisl',
  'basic',
  'make',
  'scene',
  'driver',
  'ask',
  'kid',
  'sit',
  'get',
  'hurt',
  'sure',
  'enough',
  'one',
  'kid',
  'spin',
  'around',
  'one',
  'pole',
  'bump',
  'head',
  'go',
  'train',
  'track',
  'near',
  'place',
  'start',
  'scream',
  'look',
  'like',
  'physic',
  'okay',
  'blood',
  'even',
  'red',
  'mark',
  'screech',
  'rest',
  'ride',
  'build',
  'first',
  'build',
  'hit',
  'elev',
  'button',
  'came',
  'doubl',
  'stroller',
  'gaggl',
  'children',
  'run',
  'around',
  'step',
  'elev',
  'held',
  'door',
  'told',
  'would',
  'get',
  'wait',
  'next',
  'one',
  'said',
  'excus',
  'heavi',
  'sigh',
  'said',
  'stroller',
  'fit',
  'get',
  'take',
  'next',
  'one',
  'refus',
  'say',
  'would',
  'make',
  'tini',
  'could',
  'stay',
  'elev',
  'becam',
  'irat',
  'point',
  'kid',
  'said',
  'see',
  'im',
  'deal',
  'said',
  'understood',
  'overwhelm',
  'work',
  'long',
  'day',
  'need',
  'get',
  'home',
  'said',
  'im',
  'go',
  'pull',
  'stroller',
  'kid',
  'call',
  'asshol',
  'entir',
  'time',
  'peopl',
  'wait',
  'behind',
  'got',
  'two',
  'began',
  'thank',
  'stand',
  'time',
  'one',
  'call',
  'asshol',
  'sympathet',
  'situat',
  'think',
  'peopl',
  'make',
  'constant',
  'accommod',
  'peopl',
  'kid',
  'especi',
  'theyr',
  'rude',
  'demand',
  'aita',
  'edit',
  'peopl',
  'concern',
  'way',
  'woman',
  'treat',
  'father',
  'physic',
  'touch',
  'elev',
  'push',
  'stroller',
  'wave',
  'arm',
  'yell',
  'get',
  'sever',
  'time',
  'hear',
  'impair',
  'confus',
  'knew',
  'yell',
  'got',
  'elev',
  'put',
  'hand',
  'charg',
  'would',
  'file',
  'neighbour_mine',
  'mine_children',
  'children_age',
  'age_seen',
  'seen_mani',
  'mani_timesand',
  'timesand_alway',
  'alway_demand',
  'demand_peopl',
  'peopl_take',
  'take_next',
  'next_elev',
  'elev_kid',
  'kid_need',
  'need_get',
  'get_home',
  'home_physic',
  'physic_shove',
  'shove_elev',
  'elev_forc',
  'forc_peopl',
  'peopl_includ',
  'includ_elderli',
  'elderli_father',
  'father_way',
  'way_home',
  'home_work',
  'work_-',
  '-_take',
  'take_public',
  'public_transit',
  'transit_-',
  '-_bu',
  'bu_kid',
  'kid_scream',
  'scream_run',
  'run_aisl',
  'aisl_basic',
  'basic_make',
  'make_scene',
  'scene_driver',
  'driver_ask',
  'ask_kid',
  'kid_sit',
  'sit_get',
  'get_hurt',
  'hurt_sure',
  'sure_enough',
  'enough_one',
  'one_kid',
  'kid_spin',
  'spin_around',
  'around_one',
  'one_pole',
  'pole_bump',
  'bump_head',
  'head_go',
  'go_train',
  'train_track',
  'track_near',
  'near_place',
  'place_start',
  'start_scream',
  'scream_look',
  'look_like',
  'like_physic',
  'physic_okay',
  'okay_blood',
  'blood_even',
  'even_red',
  'red_mark',
  'mark_screech',
  'screech_rest',
  'rest_ride',
  'ride_build',
  'build_first',
  'first_build',
  'build_hit',
  'hit_elev',
  'elev_button',
  'button_came',
  'came_doubl',
  'doubl_stroller',
  'stroller_gaggl',
  'gaggl_children',
  'children_run',
  'run_around',
  'around_step',
  'step_elev',
  'elev_held',
  'held_door',
  'door_told',
  'told_would',
  'would_get',
  'get_wait',
  'wait_next',
  'next_one',
  'one_said',
  'said_excus',
  'excus_heavi',
  'heavi_sigh',
  'sigh_said',
  'said_stroller',
  'stroller_fit',
  'fit_get',
  'get_take',
  'take_next',
  'next_one',
  'one_refus',
  'refus_say',
  'say_would',
  'would_make',
  'make_tini',
  'tini_could',
  'could_stay',
  'stay_elev',
  'elev_becam',
  'becam_irat',
  'irat_point',
  'point_kid',
  'kid_said',
  'said_see',
  'see_im',
  'im_deal',
  'deal_said',
  'said_understood',
  'understood_overwhelm',
  'overwhelm_work',
  'work_long',
  'long_day',
  'day_need',
  'need_get',
  'get_home',
  'home_said',
  'said_im',
  'im_go',
  'go_pull',
  'pull_stroller',
  'stroller_kid',
  'kid_call',
  'call_asshol',
  'asshol_entir',
  'entir_time',
  'time_peopl',
  'peopl_wait',
  'wait_behind',
  'behind_got',
  'got_two',
  'two_began',
  'began_thank',
  'thank_stand',
  'stand_time',
  'time_one',
  'one_call',
  'call_asshol',
  'asshol_sympathet',
  'sympathet_situat',
  'situat_think',
  'think_peopl',
  'peopl_make',
  'make_constant',
  'constant_accommod',
  'accommod_peopl',
  'peopl_kid',
  'kid_especi',
  'especi_theyr',
  'theyr_rude',
  'rude_demand',
  'demand_aita',
  'aita_edit',
  'edit_peopl',
  'peopl_concern',
  'concern_way',
  'way_woman',
  'woman_treat',
  'treat_father',
  'father_physic',
  'physic_touch',
  'touch_elev',
  'elev_push',
  'push_stroller',
  'stroller_wave',
  'wave_arm',
  'arm_yell',
  'yell_get',
  'get_sever',
  'sever_time',
  'time_hear',
  'hear_impair',
  'impair_confus',
  'confus_knew',
  'knew_yell',
  'yell_got',
  'got_elev',
  'elev_put',
  'put_hand',
  'hand_charg',
  'charg_would',
  'would_file',
  'neighbour_mine_children',
  'mine_children_age',
  'children_age_seen',
  'age_seen_mani',
  'seen_mani_timesand',
  'mani_timesand_alway',
  'timesand_alway_demand',
  'alway_demand_peopl',
  'demand_peopl_take',
  'peopl_take_next',
  'take_next_elev',
  'next_elev_kid',
  'elev_kid_need',
  'kid_need_get',
  'need_get_home',
  'get_home_physic',
  'home_physic_shove',
  'physic_shove_elev',
  'shove_elev_forc',
  'elev_forc_peopl',
  'forc_peopl_includ',
  'peopl_includ_elderli',
  'includ_elderli_father',
  'elderli_father_way',
  'father_way_home',
  'way_home_work',
  'home_work_-',
  'work_-_take',
  '-_take_public',
  'take_public_transit',
  'public_transit_-',
  'transit_-_bu',
  '-_bu_kid',
  'bu_kid_scream',
  'kid_scream_run',
  'scream_run_aisl',
  'run_aisl_basic',
  'aisl_basic_make',
  'basic_make_scene',
  'make_scene_driver',
  'scene_driver_ask',
  'driver_ask_kid',
  'ask_kid_sit',
  'kid_sit_get',
  'sit_get_hurt',
  'get_hurt_sure',
  'hurt_sure_enough',
  'sure_enough_one',
  'enough_one_kid',
  'one_kid_spin',
  'kid_spin_around',
  'spin_around_one',
  'around_one_pole',
  'one_pole_bump',
  'pole_bump_head',
  'bump_head_go',
  'head_go_train',
  'go_train_track',
  'train_track_near',
  'track_near_place',
  'near_place_start',
  'place_start_scream',
  'start_scream_look',
  'scream_look_like',
  'look_like_physic',
  'like_physic_okay',
  'physic_okay_blood',
  'okay_blood_even',
  'blood_even_red',
  'even_red_mark',
  'red_mark_screech',
  'mark_screech_rest',
  'screech_rest_ride',
  'rest_ride_build',
  'ride_build_first',
  'build_first_build',
  'first_build_hit',
  'build_hit_elev',
  'hit_elev_button',
  'elev_button_came',
  'button_came_doubl',
  'came_doubl_stroller',
  'doubl_stroller_gaggl',
  'stroller_gaggl_children',
  'gaggl_children_run',
  'children_run_around',
  'run_around_step',
  'around_step_elev',
  'step_elev_held',
  'elev_held_door',
  'held_door_told',
  'door_told_would',
  'told_would_get',
  'would_get_wait',
  'get_wait_next',
  'wait_next_one',
  'next_one_said',
  'one_said_excus',
  'said_excus_heavi',
  'excus_heavi_sigh',
  'heavi_sigh_said',
  'sigh_said_stroller',
  'said_stroller_fit',
  'stroller_fit_get',
  'fit_get_take',
  'get_take_next',
  'take_next_one',
  'next_one_refus',
  'one_refus_say',
  'refus_say_would',
  'say_would_make',
  'would_make_tini',
  'make_tini_could',
  'tini_could_stay',
  'could_stay_elev',
  'stay_elev_becam',
  'elev_becam_irat',
  'becam_irat_point',
  'irat_point_kid',
  'point_kid_said',
  'kid_said_see',
  'said_see_im',
  'see_im_deal',
  'im_deal_said',
  'deal_said_understood',
  'said_understood_overwhelm',
  'understood_overwhelm_work',
  'overwhelm_work_long',
  'work_long_day',
  'long_day_need',
  'day_need_get',
  'need_get_home',
  'get_home_said',
  'home_said_im',
  'said_im_go',
  'im_go_pull',
  'go_pull_stroller',
  'pull_stroller_kid',
  'stroller_kid_call',
  'kid_call_asshol',
  'call_asshol_entir',
  'asshol_entir_time',
  'entir_time_peopl',
  'time_peopl_wait',
  'peopl_wait_behind',
  'wait_behind_got',
  'behind_got_two',
  'got_two_began',
  'two_began_thank',
  'began_thank_stand',
  'thank_stand_time',
  'stand_time_one',
  'time_one_call',
  'one_call_asshol',
  'call_asshol_sympathet',
  'asshol_sympathet_situat',
  'sympathet_situat_think',
  'situat_think_peopl',
  'think_peopl_make',
  'peopl_make_constant',
  'make_constant_accommod',
  'constant_accommod_peopl',
  'accommod_peopl_kid',
  'peopl_kid_especi',
  'kid_especi_theyr',
  'especi_theyr_rude',
  'theyr_rude_demand',
  'rude_demand_aita',
  'demand_aita_edit',
  'aita_edit_peopl',
  'edit_peopl_concern',
  'peopl_concern_way',
  'concern_way_woman',
  'way_woman_treat',
  'woman_treat_father',
  'treat_father_physic',
  'father_physic_touch',
  'physic_touch_elev',
  'touch_elev_push',
  'elev_push_stroller',
  'push_stroller_wave',
  'stroller_wave_arm',
  'wave_arm_yell',
  'arm_yell_get',
  'yell_get_sever',
  'get_sever_time',
  'sever_time_hear',
  'time_hear_impair',
  'hear_impair_confus',
  'impair_confus_knew',
  'confus_knew_yell',
  'knew_yell_got',
  'yell_got_elev',
  'got_elev_put',
  'elev_put_hand',
  'put_hand_charg',
  'hand_charg_would',
  'charg_would_file'],
 ['know',
  'titl',
  'sound',
  'horribl',
  'know',
  'els',
  'put',
  'busi',
  'person',
  'start',
  'colleg',
  'septemb',
  'job',
  'much',
  'week',
  'ago',
  'friend',
  'alic',
  'came',
  'door',
  'daughter',
  'milli',
  'told',
  'realli',
  'need',
  'appar',
  'emerg',
  'attend',
  'need',
  'urgent',
  'sitter',
  'realli',
  'ask',
  'gave',
  'kid',
  'bag',
  'toy',
  'book',
  'told',
  'would',
  'back',
  'hour',
  'problem',
  'milli',
  'sweet',
  'kid',
  'know',
  'well',
  'enough',
  'comfort',
  'around',
  'still',
  'bit',
  'unexpect',
  'go',
  'cinema',
  'thought',
  'would',
  'take',
  'would',
  'walk',
  'around',
  'bit',
  'watch',
  'someth',
  'everyth',
  'went',
  'smoothli',
  'watch',
  'movi',
  'togeth',
  'milli',
  'seem',
  'happi',
  'enjoy',
  'time',
  'well',
  'went',
  'park',
  'thought',
  'would',
  'nice',
  'get',
  'us',
  'ice',
  'cream',
  'vanilla',
  'swirl',
  'seem',
  'enjoy',
  'bit',
  'soon',
  'got',
  'home',
  'start',
  'throw',
  'develop',
  'seem',
  'rash',
  'thought',
  'mayb',
  'got',
  'bug',
  'someth',
  'call',
  'mom',
  'pick',
  'took',
  'hospit',
  'appar',
  'milli',
  'mild',
  'allergi',
  'dairi',
  'alic',
  'tell',
  'never',
  'seen',
  'alic',
  'give',
  'dairi',
  'thought',
  'dietari',
  'choic',
  'honest',
  'take',
  'much',
  'notic',
  'never',
  'knew',
  'explicitli',
  'safe',
  'noth',
  'bad',
  'go',
  'happen',
  'obvious',
  'uncomfort',
  'antihistamin',
  'kick',
  'kept',
  'call',
  'alic',
  'pick',
  'hour',
  'later',
  'soon',
  'told',
  'hospit',
  'got',
  'furiou',
  'came',
  'yell',
  'tell',
  'tri',
  'kill',
  'babi',
  'take',
  'care',
  'short',
  'notic',
  'idiot',
  'know',
  'child',
  'would',
  'react',
  'like',
  'ice',
  'cream',
  'apologis',
  'mani',
  'time',
  'sent',
  'card',
  'present',
  'milli',
  'appar',
  'tell',
  'group',
  'friend',
  'tri',
  'hurt',
  'milli',
  'trust',
  'around',
  'children',
  'friend',
  'berat',
  'lack',
  'attent',
  'told',
  'would',
  'carri',
  'respons',
  'anyth',
  'wors',
  'happen',
  'milli',
  'tri',
  'explain',
  'know',
  'noth',
  'wors',
  'go',
  'happen',
  'best',
  'help',
  'still',
  'becam',
  'divis',
  'event',
  'aita',
  'realli',
  'fault',
  'realli',
  'want',
  'best',
  'milli',
  'would',
  'never',
  'anyth',
  'hurt',
  'know_titl',
  'titl_sound',
  'sound_horribl',
  'horribl_know',
  'know_els',
  'els_put',
  'put_busi',
  'busi_person',
  'person_start',
  'start_colleg',
  'colleg_septemb',
  'septemb_job',
  'job_much',
  'much_week',
  'week_ago',
  'ago_friend',
  'friend_alic',
  'alic_came',
  'came_door',
  'door_daughter',
  'daughter_milli',
  'milli_told',
  'told_realli',
  'realli_need',
  'need_appar',
  'appar_emerg',
  'emerg_attend',
  'attend_need',
  'need_urgent',
  'urgent_sitter',
  'sitter_realli',
  'realli_ask',
  'ask_gave',
  'gave_kid',
  'kid_bag',
  'bag_toy',
  'toy_book',
  'book_told',
  'told_would',
  'would_back',
  'back_hour',
  'hour_problem',
  'problem_milli',
  'milli_sweet',
  'sweet_kid',
  'kid_know',
  'know_well',
  'well_enough',
  'enough_comfort',
  'comfort_around',
  'around_still',
  'still_bit',
  'bit_unexpect',
  'unexpect_go',
  'go_cinema',
  'cinema_thought',
  'thought_would',
  'would_take',
  'take_would',
  'would_walk',
  'walk_around',
  'around_bit',
  'bit_watch',
  'watch_someth',
  'someth_everyth',
  'everyth_went',
  'went_smoothli',
  'smoothli_watch',
  'watch_movi',
  'movi_togeth',
  'togeth_milli',
  'milli_seem',
  'seem_happi',
  'happi_enjoy',
  'enjoy_time',
  'time_well',
  'well_went',
  'went_park',
  'park_thought',
  'thought_would',
  'would_nice',
  'nice_get',
  'get_us',
  'us_ice',
  'ice_cream',
  'cream_vanilla',
  'vanilla_swirl',
  'swirl_seem',
  'seem_enjoy',
  'enjoy_bit',
  'bit_soon',
  'soon_got',
  'got_home',
  'home_start',
  'start_throw',
  'throw_develop',
  'develop_seem',
  'seem_rash',
  'rash_thought',
  'thought_mayb',
  'mayb_got',
  'got_bug',
  'bug_someth',
  'someth_call',
  'call_mom',
  'mom_pick',
  'pick_took',
  'took_hospit',
  'hospit_appar',
  'appar_milli',
  'milli_mild',
  'mild_allergi',
  'allergi_dairi',
  'dairi_alic',
  'alic_tell',
  'tell_never',
  'never_seen',
  'seen_alic',
  'alic_give',
  'give_dairi',
  'dairi_thought',
  'thought_dietari',
  'dietari_choic',
  'choic_honest',
  'honest_take',
  'take_much',
  'much_notic',
  'notic_never',
  'never_knew',
  'knew_explicitli',
  'explicitli_safe',
  'safe_noth',
  'noth_bad',
  'bad_go',
  'go_happen',
  'happen_obvious',
  'obvious_uncomfort',
  'uncomfort_antihistamin',
  'antihistamin_kick',
  'kick_kept',
  'kept_call',
  'call_alic',
  'alic_pick',
  'pick_hour',
  'hour_later',
  'later_soon',
  'soon_told',
  'told_hospit',
  'hospit_got',
  'got_furiou',
  'furiou_came',
  'came_yell',
  'yell_tell',
  'tell_tri',
  'tri_kill',
  'kill_babi',
  'babi_take',
  'take_care',
  'care_short',
  'short_notic',
  'notic_idiot',
  'idiot_know',
  'know_child',
  'child_would',
  'would_react',
  'react_like',
  'like_ice',
  'ice_cream',
  'cream_apologis',
  'apologis_mani',
  'mani_time',
  'time_sent',
  'sent_card',
  'card_present',
  'present_milli',
  'milli_appar',
  'appar_tell',
  'tell_group',
  'group_friend',
  'friend_tri',
  'tri_hurt',
  'hurt_milli',
  'milli_trust',
  'trust_around',
  'around_children',
  'children_friend',
  'friend_berat',
  'berat_lack',
  'lack_attent',
  'attent_told',
  'told_would',
  'would_carri',
  'carri_respons',
  'respons_anyth',
  'anyth_wors',
  'wors_happen',
  'happen_milli',
  'milli_tri',
  'tri_explain',
  'explain_know',
  'know_noth',
  'noth_wors',
  'wors_go',
  'go_happen',
  'happen_best',
  'best_help',
  'help_still',
  'still_becam',
  'becam_divis',
  'divis_event',
  'event_aita',
  'aita_realli',
  'realli_fault',
  'fault_realli',
  'realli_want',
  'want_best',
  'best_milli',
  'milli_would',
  'would_never',
  'never_anyth',
  'anyth_hurt',
  'know_titl_sound',
  'titl_sound_horribl',
  'sound_horribl_know',
  'horribl_know_els',
  'know_els_put',
  'els_put_busi',
  'put_busi_person',
  'busi_person_start',
  'person_start_colleg',
  'start_colleg_septemb',
  'colleg_septemb_job',
  'septemb_job_much',
  'job_much_week',
  'much_week_ago',
  'week_ago_friend',
  'ago_friend_alic',
  'friend_alic_came',
  'alic_came_door',
  'came_door_daughter',
  'door_daughter_milli',
  'daughter_milli_told',
  'milli_told_realli',
  'told_realli_need',
  'realli_need_appar',
  'need_appar_emerg',
  'appar_emerg_attend',
  'emerg_attend_need',
  'attend_need_urgent',
  'need_urgent_sitter',
  'urgent_sitter_realli',
  'sitter_realli_ask',
  'realli_ask_gave',
  'ask_gave_kid',
  'gave_kid_bag',
  'kid_bag_toy',
  'bag_toy_book',
  'toy_book_told',
  'book_told_would',
  'told_would_back',
  'would_back_hour',
  'back_hour_problem',
  'hour_problem_milli',
  'problem_milli_sweet',
  'milli_sweet_kid',
  'sweet_kid_know',
  'kid_know_well',
  'know_well_enough',
  'well_enough_comfort',
  'enough_comfort_around',
  'comfort_around_still',
  'around_still_bit',
  'still_bit_unexpect',
  'bit_unexpect_go',
  'unexpect_go_cinema',
  'go_cinema_thought',
  'cinema_thought_would',
  'thought_would_take',
  'would_take_would',
  'take_would_walk',
  'would_walk_around',
  'walk_around_bit',
  'around_bit_watch',
  'bit_watch_someth',
  'watch_someth_everyth',
  'someth_everyth_went',
  'everyth_went_smoothli',
  'went_smoothli_watch',
  'smoothli_watch_movi',
  'watch_movi_togeth',
  'movi_togeth_milli',
  'togeth_milli_seem',
  'milli_seem_happi',
  'seem_happi_enjoy',
  'happi_enjoy_time',
  'enjoy_time_well',
  'time_well_went',
  'well_went_park',
  'went_park_thought',
  'park_thought_would',
  'thought_would_nice',
  'would_nice_get',
  'nice_get_us',
  'get_us_ice',
  'us_ice_cream',
  'ice_cream_vanilla',
  'cream_vanilla_swirl',
  'vanilla_swirl_seem',
  'swirl_seem_enjoy',
  'seem_enjoy_bit',
  'enjoy_bit_soon',
  'bit_soon_got',
  'soon_got_home',
  'got_home_start',
  'home_start_throw',
  'start_throw_develop',
  'throw_develop_seem',
  'develop_seem_rash',
  'seem_rash_thought',
  'rash_thought_mayb',
  'thought_mayb_got',
  'mayb_got_bug',
  'got_bug_someth',
  'bug_someth_call',
  'someth_call_mom',
  'call_mom_pick',
  'mom_pick_took',
  'pick_took_hospit',
  'took_hospit_appar',
  'hospit_appar_milli',
  'appar_milli_mild',
  'milli_mild_allergi',
  'mild_allergi_dairi',
  'allergi_dairi_alic',
  'dairi_alic_tell',
  'alic_tell_never',
  'tell_never_seen',
  'never_seen_alic',
  'seen_alic_give',
  'alic_give_dairi',
  'give_dairi_thought',
  'dairi_thought_dietari',
  'thought_dietari_choic',
  'dietari_choic_honest',
  'choic_honest_take',
  'honest_take_much',
  'take_much_notic',
  'much_notic_never',
  'notic_never_knew',
  'never_knew_explicitli',
  'knew_explicitli_safe',
  'explicitli_safe_noth',
  'safe_noth_bad',
  'noth_bad_go',
  'bad_go_happen',
  'go_happen_obvious',
  'happen_obvious_uncomfort',
  'obvious_uncomfort_antihistamin',
  'uncomfort_antihistamin_kick',
  'antihistamin_kick_kept',
  'kick_kept_call',
  'kept_call_alic',
  'call_alic_pick',
  'alic_pick_hour',
  'pick_hour_later',
  'hour_later_soon',
  'later_soon_told',
  'soon_told_hospit',
  'told_hospit_got',
  'hospit_got_furiou',
  'got_furiou_came',
  'furiou_came_yell',
  'came_yell_tell',
  'yell_tell_tri',
  'tell_tri_kill',
  'tri_kill_babi',
  'kill_babi_take',
  'babi_take_care',
  'take_care_short',
  'care_short_notic',
  'short_notic_idiot',
  'notic_idiot_know',
  'idiot_know_child',
  'know_child_would',
  'child_would_react',
  'would_react_like',
  'react_like_ice',
  'like_ice_cream',
  'ice_cream_apologis',
  'cream_apologis_mani',
  'apologis_mani_time',
  'mani_time_sent',
  'time_sent_card',
  'sent_card_present',
  'card_present_milli',
  'present_milli_appar',
  'milli_appar_tell',
  'appar_tell_group',
  'tell_group_friend',
  'group_friend_tri',
  'friend_tri_hurt',
  'tri_hurt_milli',
  'hurt_milli_trust',
  'milli_trust_around',
  'trust_around_children',
  'around_children_friend',
  'children_friend_berat',
  'friend_berat_lack',
  'berat_lack_attent',
  'lack_attent_told',
  'attent_told_would',
  'told_would_carri',
  'would_carri_respons',
  'carri_respons_anyth',
  'respons_anyth_wors',
  'anyth_wors_happen',
  'wors_happen_milli',
  'happen_milli_tri',
  'milli_tri_explain',
  'tri_explain_know',
  'explain_know_noth',
  'know_noth_wors',
  'noth_wors_go',
  'wors_go_happen',
  'go_happen_best',
  'happen_best_help',
  'best_help_still',
  'help_still_becam',
  'still_becam_divis',
  'becam_divis_event',
  'divis_event_aita',
  'event_aita_realli',
  'aita_realli_fault',
  'realli_fault_realli',
  'fault_realli_want',
  'realli_want_best',
  'want_best_milli',
  'best_milli_would',
  'milli_would_never',
  'would_never_anyth',
  'never_anyth_hurt'],
 ['context',
  'rel',
  'use',
  'close',
  'friend',
  'mine',
  'well',
  'call',
  'gari',
  'stori',
  'contract',
  'cancer',
  'mid-',
  'male',
  'sympathet',
  'even',
  'contribut',
  '$',
  'donat',
  'pool',
  'treatment',
  'gari',
  'came',
  'one',
  'day',
  'took',
  'hat',
  'reveal',
  'freshli',
  'shaven',
  'head',
  'told',
  'everyon',
  'famili',
  'support',
  'rel',
  'lot',
  'mutual',
  'friend',
  'ask',
  'get',
  'bandwagon',
  'told',
  'want',
  'shave',
  'head',
  'like',
  'hair',
  'hair',
  'black',
  'regularli',
  'comb',
  'well',
  'style',
  'said',
  'could',
  'get',
  'wig',
  'someth',
  'actual',
  'brought',
  'shaver',
  'kit',
  'unbox',
  'told',
  'happen',
  'even',
  'realli',
  'know',
  'rel',
  'im',
  'end',
  'discuss',
  'call',
  '&',
  '$',
  '$',
  'hole',
  'left',
  'angri',
  'speak',
  'week',
  'last',
  'saturday',
  'got',
  'invit',
  'parti',
  'anoth',
  'close',
  'friend',
  'hous',
  'found',
  'gari',
  'tri',
  'thing',
  'sever',
  'friend',
  'coupl',
  'actual',
  'shave',
  'head',
  'gari',
  'parti',
  'blast',
  'hang',
  'play',
  'video',
  'game',
  'listen',
  'rock',
  'music',
  'way',
  'much',
  'drink',
  'drive',
  'home',
  'said',
  'could',
  'sleep',
  'upstair',
  'pass',
  'bed',
  'bliss',
  'sleep',
  'till',
  'shaken',
  'awak',
  'anoth',
  'friend',
  'told',
  'gari',
  'show',
  'late',
  'caught',
  'shave',
  'head',
  'pass',
  'saw',
  'look',
  'like',
  'mirror',
  'want',
  'scream',
  'like',
  'horror',
  'movi',
  'gari',
  'even',
  'shave',
  'one',
  'eyebrow',
  'gari',
  'still',
  'act',
  'proud',
  'say',
  'gon',
  'na',
  'shave',
  'rest',
  'like',
  'lol',
  'furiou',
  'call',
  'cop',
  'got',
  'gari',
  'fulli',
  'admit',
  'done',
  'even',
  'said',
  'justifi',
  'polic',
  'seem',
  'think',
  'classifi',
  'form',
  'assault',
  'ask',
  'want',
  'press',
  'charg',
  'first',
  'word',
  'mouth',
  'hell',
  'ye',
  'gari',
  'cuss',
  'took',
  'away',
  'cuff',
  'tri',
  'get',
  'hair',
  'restyl',
  'someth',
  'present',
  'save',
  'im',
  'bald',
  'bunch',
  'gari',
  'famili',
  'tell',
  'drop',
  'charg',
  'gari',
  'med',
  'mean',
  'like',
  'wtf',
  'never',
  'knew',
  'med',
  'still',
  'refus',
  'drop',
  'charg',
  'itll',
  'take',
  'month',
  'grow',
  'hair',
  'back',
  'way',
  'call',
  'messag',
  'gari',
  'rel',
  'start',
  'get',
  'everyon',
  'els',
  'friend',
  'group',
  'cut',
  'gari',
  'though',
  'say',
  'im',
  'right',
  'thing',
  'drop',
  'charg',
  'im',
  'divid',
  'aita',
  'press',
  'charg',
  'former',
  'friend',
  'shave',
  'head',
  'sleep',
  'edit',
  'want',
  'make',
  'someth',
  'clear',
  'mani',
  'peopl',
  'said',
  'thing',
  'like',
  'dude',
  'hair',
  'would',
  'say',
  'man',
  'girl',
  'hair',
  'took',
  'year',
  'grow',
  'would',
  'say',
  'thing',
  'sure',
  'hair',
  'grow',
  'back',
  'take',
  'time',
  'someth',
  'grew',
  'back',
  'fast',
  'peopl',
  'would',
  'less',
  'inclin',
  'care',
  'fast',
  'take',
  'month',
  'long',
  'hair',
  'year',
  'lot',
  'time',
  'wast',
  'grow',
  'plan',
  'push',
  'gari',
  'go',
  'prison',
  'plan',
  'drop',
  'charg',
  'either',
  'famili',
  'alreadi',
  'bail',
  'know',
  'med',
  'knew',
  'quit',
  'temper',
  'even',
  'entitl',
  'attitud',
  'time',
  'one',
  'exampl',
  'lunch',
  'want',
  'us',
  'combin',
  'check',
  'split',
  'evenli',
  'got',
  'expens',
  'thing',
  'menu',
  'got',
  'cheeseburg',
  'said',
  'gari',
  'went',
  'us',
  'good',
  'friend',
  'alway',
  'ass',
  'get',
  'way',
  'ive',
  'known',
  'like',
  'three',
  'year',
  'incid',
  'last',
  'straw',
  'lot',
  'mutual',
  'friend',
  'charg',
  'want',
  'send',
  'gari',
  'prison',
  'would',
  'like',
  'get',
  'therapi',
  'commun',
  'servic',
  'way',
  'gari',
  'act',
  'around',
  'past',
  'actual',
  'wonder',
  'long',
  'got',
  'violent',
  'ive',
  'seen',
  'heard',
  'get',
  'fight',
  'less',
  'edit',
  'ive',
  'gotten',
  'mani',
  'comment',
  'peopl',
  'say',
  'yta',
  'cancer',
  'actual',
  'read',
  'post',
  'gari',
  'one',
  'cancer',
  'rel',
  'know',
  'know',
  'kind',
  'cancer',
  'gari',
  'elabor',
  'want',
  'shave',
  'head',
  'person',
  'refus',
  'left',
  'tantrum',
  'shave',
  'head',
  'pass',
  'drunk',
  'parti',
  'context_rel',
  'rel_use',
  'use_close',
  'close_friend',
  'friend_mine',
  'mine_well',
  'well_call',
  'call_gari',
  'gari_stori',
  'stori_contract',
  'contract_cancer',
  'cancer_mid-',
  'mid-_male',
  'male_sympathet',
  'sympathet_even',
  'even_contribut',
  'contribut_$',
  '$_donat',
  'donat_pool',
  'pool_treatment',
  'treatment_gari',
  'gari_came',
  'came_one',
  'one_day',
  'day_took',
  'took_hat',
  'hat_reveal',
  'reveal_freshli',
  'freshli_shaven',
  'shaven_head',
  'head_told',
  'told_everyon',
  'everyon_famili',
  'famili_support',
  'support_rel',
  'rel_lot',
  'lot_mutual',
  'mutual_friend',
  'friend_ask',
  'ask_get',
  'get_bandwagon',
  'bandwagon_told',
  'told_want',
  'want_shave',
  'shave_head',
  'head_like',
  'like_hair',
  'hair_hair',
  'hair_black',
  'black_regularli',
  'regularli_comb',
  'comb_well',
  'well_style',
  'style_said',
  'said_could',
  'could_get',
  'get_wig',
  'wig_someth',
  'someth_actual',
  'actual_brought',
  'brought_shaver',
  'shaver_kit',
  'kit_unbox',
  'unbox_told',
  'told_happen',
  'happen_even',
  'even_realli',
  'realli_know',
  'know_rel',
  'rel_im',
  'im_end',
  'end_discuss',
  'discuss_call',
  'call_&',
  '&_$',
  '$_$',
  '$_hole',
  'hole_left',
  'left_angri',
  'angri_speak',
  'speak_week',
  'week_last',
  'last_saturday',
  'saturday_got',
  'got_invit',
  'invit_parti',
  'parti_anoth',
  'anoth_close',
  'close_friend',
  'friend_hous',
  'hous_found',
  'found_gari',
  'gari_tri',
  'tri_thing',
  'thing_sever',
  'sever_friend',
  'friend_coupl',
  'coupl_actual',
  'actual_shave',
  'shave_head',
  'head_gari',
  'gari_parti',
  'parti_blast',
  'blast_hang',
  'hang_play',
  'play_video',
  'video_game',
  'game_listen',
  'listen_rock',
  'rock_music',
  'music_way',
  'way_much',
  'much_drink',
  'drink_drive',
  'drive_home',
  'home_said',
  'said_could',
  'could_sleep',
  'sleep_upstair',
  'upstair_pass',
  'pass_bed',
  'bed_bliss',
  'bliss_sleep',
  'sleep_till',
  'till_shaken',
  'shaken_awak',
  'awak_anoth',
  'anoth_friend',
  'friend_told',
  'told_gari',
  'gari_show',
  'show_late',
  'late_caught',
  'caught_shave',
  'shave_head',
  'head_pass',
  'pass_saw',
  'saw_look',
  'look_like',
  'like_mirror',
  'mirror_want',
  'want_scream',
  'scream_like',
  'like_horror',
  'horror_movi',
  'movi_gari',
  'gari_even',
  'even_shave',
  'shave_one',
  'one_eyebrow',
  'eyebrow_gari',
  'gari_still',
  'still_act',
  'act_proud',
  'proud_say',
  'say_gon',
  'gon_na',
  'na_shave',
  'shave_rest',
  'rest_like',
  'like_lol',
  'lol_furiou',
  'furiou_call',
  'call_cop',
  'cop_got',
  'got_gari',
  'gari_fulli',
  'fulli_admit',
  'admit_done',
  'done_even',
  'even_said',
  'said_justifi',
  'justifi_polic',
  'polic_seem',
  'seem_think',
  'think_classifi',
  'classifi_form',
  'form_assault',
  'assault_ask',
  'ask_want',
  'want_press',
  'press_charg',
  'charg_first',
  'first_word',
  'word_mouth',
  'mouth_hell',
  'hell_ye',
  'ye_gari',
  'gari_cuss',
  'cuss_took',
  'took_away',
  'away_cuff',
  'cuff_tri',
  'tri_get',
  'get_hair',
  'hair_restyl',
  'restyl_someth',
  'someth_present',
  'present_save',
  'save_im',
  'im_bald',
  'bald_bunch',
  'bunch_gari',
  'gari_famili',
  'famili_tell',
  'tell_drop',
  'drop_charg',
  'charg_gari',
  'gari_med',
  'med_mean',
  'mean_like',
  'like_wtf',
  'wtf_never',
  'never_knew',
  'knew_med',
  'med_still',
  'still_refus',
  'refus_drop',
  'drop_charg',
  'charg_itll',
  'itll_take',
  'take_month',
  'month_grow',
  'grow_hair',
  'hair_back',
  'back_way',
  'way_call',
  'call_messag',
  'messag_gari',
  'gari_rel',
  'rel_start',
  'start_get',
  'get_everyon',
  'everyon_els',
  'els_friend',
  'friend_group',
  'group_cut',
  'cut_gari',
  'gari_though',
  'though_say',
  'say_im',
  'im_right',
  'right_thing',
  'thing_drop',
  'drop_charg',
  'charg_im',
  'im_divid',
  'divid_aita',
  'aita_press',
  'press_charg',
  'charg_former',
  'former_friend',
  'friend_shave',
  'shave_head',
  'head_sleep',
  'sleep_edit',
  'edit_want',
  'want_make',
  'make_someth',
  'someth_clear',
  'clear_mani',
  'mani_peopl',
  'peopl_said',
  'said_thing',
  'thing_like',
  'like_dude',
  'dude_hair',
  'hair_would',
  'would_say',
  'say_man',
  'man_girl',
  'girl_hair',
  'hair_took',
  'took_year',
  'year_grow',
  'grow_would',
  'would_say',
  'say_thing',
  'thing_sure',
  'sure_hair',
  'hair_grow',
  'grow_back',
  'back_take',
  'take_time',
  'time_someth',
  'someth_grew',
  'grew_back',
  'back_fast',
  'fast_peopl',
  'peopl_would',
  'would_less',
  'less_inclin',
  'inclin_care',
  'care_fast',
  'fast_take',
  'take_month',
  'month_long',
  'long_hair',
  'hair_year',
  'year_lot',
  'lot_time',
  'time_wast',
  'wast_grow',
  'grow_plan',
  'plan_push',
  'push_gari',
  'gari_go',
  'go_prison',
  'prison_plan',
  'plan_drop',
  'drop_charg',
  'charg_either',
  'either_famili',
  'famili_alreadi',
  'alreadi_bail',
  'bail_know',
  'know_med',
  'med_knew',
  'knew_quit',
  'quit_temper',
  'temper_even',
  'even_entitl',
  'entitl_attitud',
  'attitud_time',
  'time_one',
  'one_exampl',
  'exampl_lunch',
  'lunch_want',
  'want_us',
  'us_combin',
  'combin_check',
  'check_split',
  'split_evenli',
  'evenli_got',
  'got_expens',
  'expens_thing',
  'thing_menu',
  'menu_got',
  'got_cheeseburg',
  'cheeseburg_said',
  'said_gari',
  'gari_went',
  'went_us',
  'us_good',
  'good_friend',
  'friend_alway',
  'alway_ass',
  'ass_get',
  'get_way',
  'way_ive',
  'ive_known',
  'known_like',
  'like_three',
  'three_year',
  'year_incid',
  'incid_last',
  'last_straw',
  'straw_lot',
  'lot_mutual',
  'mutual_friend',
  'friend_charg',
  'charg_want',
  'want_send',
  'send_gari',
  'gari_prison',
  'prison_would',
  'would_like',
  'like_get',
  'get_therapi',
  'therapi_commun',
  'commun_servic',
  'servic_way',
  'way_gari',
  'gari_act',
  'act_around',
  'around_past',
  'past_actual',
  'actual_wonder',
  'wonder_long',
  'long_got',
  'got_violent',
  'violent_ive',
  'ive_seen',
  'seen_heard',
  'heard_get',
  'get_fight',
  'fight_less',
  'less_edit',
  'edit_ive',
  'ive_gotten',
  'gotten_mani',
  'mani_comment',
  'comment_peopl',
  'peopl_say',
  'say_yta',
  'yta_cancer',
  'cancer_actual',
  'actual_read',
  'read_post',
  'post_gari',
  'gari_one',
  'one_cancer',
  'cancer_rel',
  'rel_know',
  'know_know',
  'know_kind',
  'kind_cancer',
  'cancer_gari',
  'gari_elabor',
  'elabor_want',
  'want_shave',
  'shave_head',
  'head_person',
  'person_refus',
  'refus_left',
  'left_tantrum',
  'tantrum_shave',
  'shave_head',
  'head_pass',
  'pass_drunk',
  'drunk_parti',
  'context_rel_use',
  'rel_use_close',
  'use_close_friend',
  'close_friend_mine',
  'friend_mine_well',
  'mine_well_call',
  'well_call_gari',
  'call_gari_stori',
  'gari_stori_contract',
  'stori_contract_cancer',
  'contract_cancer_mid-',
  'cancer_mid-_male',
  'mid-_male_sympathet',
  'male_sympathet_even',
  'sympathet_even_contribut',
  'even_contribut_$',
  'contribut_$_donat',
  '$_donat_pool',
  'donat_pool_treatment',
  'pool_treatment_gari',
  'treatment_gari_came',
  'gari_came_one',
  'came_one_day',
  'one_day_took',
  'day_took_hat',
  'took_hat_reveal',
  'hat_reveal_freshli',
  'reveal_freshli_shaven',
  'freshli_shaven_head',
  'shaven_head_told',
  'head_told_everyon',
  'told_everyon_famili',
  'everyon_famili_support',
  'famili_support_rel',
  'support_rel_lot',
  'rel_lot_mutual',
  'lot_mutual_friend',
  'mutual_friend_ask',
  'friend_ask_get',
  'ask_get_bandwagon',
  'get_bandwagon_told',
  'bandwagon_told_want',
  'told_want_shave',
  'want_shave_head',
  'shave_head_like',
  'head_like_hair',
  'like_hair_hair',
  'hair_hair_black',
  'hair_black_regularli',
  'black_regularli_comb',
  'regularli_comb_well',
  'comb_well_style',
  'well_style_said',
  'style_said_could',
  'said_could_get',
  'could_get_wig',
  'get_wig_someth',
  'wig_someth_actual',
  'someth_actual_brought',
  'actual_brought_shaver',
  'brought_shaver_kit',
  'shaver_kit_unbox',
  'kit_unbox_told',
  'unbox_told_happen',
  'told_happen_even',
  'happen_even_realli',
  'even_realli_know',
  'realli_know_rel',
  'know_rel_im',
  'rel_im_end',
  'im_end_discuss',
  'end_discuss_call',
  'discuss_call_&',
  'call_&_$',
  '&_$_$',
  '$_$_hole',
  '$_hole_left',
  'hole_left_angri',
  'left_angri_speak',
  'angri_speak_week',
  'speak_week_last',
  'week_last_saturday',
  'last_saturday_got',
  'saturday_got_invit',
  'got_invit_parti',
  'invit_parti_anoth',
  'parti_anoth_close',
  'anoth_close_friend',
  'close_friend_hous',
  'friend_hous_found',
  'hous_found_gari',
  'found_gari_tri',
  'gari_tri_thing',
  'tri_thing_sever',
  'thing_sever_friend',
  'sever_friend_coupl',
  'friend_coupl_actual',
  'coupl_actual_shave',
  'actual_shave_head',
  'shave_head_gari',
  'head_gari_parti',
  'gari_parti_blast',
  'parti_blast_hang',
  'blast_hang_play',
  'hang_play_video',
  'play_video_game',
  'video_game_listen',
  'game_listen_rock',
  'listen_rock_music',
  'rock_music_way',
  'music_way_much',
  'way_much_drink',
  'much_drink_drive',
  'drink_drive_home',
  'drive_home_said',
  'home_said_could',
  'said_could_sleep',
  'could_sleep_upstair',
  'sleep_upstair_pass',
  'upstair_pass_bed',
  'pass_bed_bliss',
  'bed_bliss_sleep',
  'bliss_sleep_till',
  'sleep_till_shaken',
  'till_shaken_awak',
  'shaken_awak_anoth',
  'awak_anoth_friend',
  'anoth_friend_told',
  'friend_told_gari',
  'told_gari_show',
  'gari_show_late',
  'show_late_caught',
  'late_caught_shave',
  'caught_shave_head',
  'shave_head_pass',
  'head_pass_saw',
  'pass_saw_look',
  'saw_look_like',
  'look_like_mirror',
  'like_mirror_want',
  'mirror_want_scream',
  'want_scream_like',
  'scream_like_horror',
  'like_horror_movi',
  'horror_movi_gari',
  'movi_gari_even',
  'gari_even_shave',
  'even_shave_one',
  'shave_one_eyebrow',
  'one_eyebrow_gari',
  'eyebrow_gari_still',
  'gari_still_act',
  'still_act_proud',
  'act_proud_say',
  'proud_say_gon',
  'say_gon_na',
  'gon_na_shave',
  ...],
 ['hello',
  'one',
  'mani',
  'midwest',
  'hit',
  'snowpocolyps',
  'think',
  'got',
  'like',
  'inch',
  'live',
  'also',
  'want',
  'prefac',
  'like',
  'kid',
  'hate',
  'experi',
  'kid',
  'felt',
  'need',
  'produc',
  'work',
  'home',
  'receiv',
  'knock',
  'door',
  'today',
  'group',
  'like',
  'yearold',
  'ish',
  'boy',
  'shovel',
  'driveway',
  'side',
  'walk',
  'request',
  'payment',
  'expect',
  '$',
  'realli',
  'confus',
  'never',
  'knock',
  'ask',
  '*',
  'could',
  '*',
  'shovel',
  'drive',
  'way',
  'without',
  'ask',
  'expect',
  'paid',
  'realli',
  'dumb',
  'struck',
  'kind',
  'said',
  'cash',
  'one',
  'pull',
  'smart',
  'phone',
  'say',
  'mom',
  'venmo',
  'account',
  'extrem',
  'confus',
  'start',
  'say',
  'never',
  'agre',
  'pay',
  'anyth',
  'go',
  'shovel',
  'driveway',
  'lunch',
  'time',
  'ask',
  'would',
  'said',
  'kid',
  'got',
  'realli',
  'upset',
  'like',
  'go',
  'pay',
  'us',
  'work',
  'ask',
  'shovel',
  'drive',
  'way',
  'start',
  'yell',
  'kind',
  'shut',
  'door',
  'fast',
  'forward',
  'coupl',
  'hour',
  'mom',
  'come',
  'knock',
  'door',
  'open',
  'start',
  'scream',
  'pay',
  'kid',
  'point',
  '-',
  '$',
  'clearli',
  'go',
  'break',
  'wrong',
  '-',
  'put',
  'work',
  'paid',
  '-her',
  'boy',
  'nice',
  'thing',
  '-',
  'proud',
  'boy',
  'use',
  'snow',
  'day',
  'help',
  'peopl',
  'realli',
  'ungrat',
  'go',
  'make',
  'turn',
  'drug',
  'next',
  'time',
  'start',
  'get',
  'kind',
  'mad',
  'said',
  'never',
  'ask',
  'servic',
  'nice',
  'shovel',
  'drive',
  'way',
  'never',
  'agre',
  'pay',
  'realli',
  'ask',
  'first',
  'insist',
  'pay',
  'time',
  'theyll',
  'ask',
  'futur',
  'want',
  're-enforc',
  'bad',
  'behavior',
  'theyr',
  'children',
  'peopl',
  'feel',
  'need',
  'let',
  'get',
  'away',
  'whatev',
  'cycl',
  'want',
  'perpetu',
  'kid',
  'cant',
  'manipul',
  'peopl',
  'pay',
  'someth',
  'never',
  'ask',
  'idk',
  'far',
  'ive',
  'refus',
  'pay',
  'im',
  'get',
  'torch',
  'nextdoor',
  'heartless',
  'monster',
  'took',
  'advantag',
  'children',
  'im',
  'turn',
  'reddit',
  'aita',
  'ill',
  'pay',
  'guess',
  'idk',
  'im',
  'see',
  'situat',
  'clearli',
  'experi',
  'kid',
  'edit',
  'add',
  'peopl',
  'believ',
  'hear',
  'shovel',
  'fair',
  'thing',
  'suspici',
  'get',
  'inch',
  'husband',
  'shovel',
  'yesterday',
  'im',
  'sure',
  'much',
  'shovel',
  'vs',
  'left',
  'kid',
  'shovel',
  'inch',
  'home',
  'offic',
  'far',
  'back',
  'hous',
  'overlook',
  'back',
  'yard',
  'furthest',
  'back',
  'get',
  'still',
  'insid',
  '%',
  'time',
  'headphon',
  'meet',
  'music',
  'realli',
  'hear',
  'question',
  'drive',
  'way',
  'length',
  'car',
  'wide',
  'driveway',
  'probabl',
  'car',
  'long',
  'pretti',
  'standard',
  'also',
  'felt',
  'like',
  '$',
  'outrag',
  'hello_one',
  'one_mani',
  'mani_midwest',
  'midwest_hit',
  'hit_snowpocolyps',
  'snowpocolyps_think',
  'think_got',
  'got_like',
  'like_inch',
  'inch_live',
  'live_also',
  'also_want',
  'want_prefac',
  'prefac_like',
  'like_kid',
  'kid_hate',
  'hate_experi',
  'experi_kid',
  'kid_felt',
  'felt_need',
  'need_produc',
  'produc_work',
  'work_home',
  'home_receiv',
  'receiv_knock',
  'knock_door',
  'door_today',
  'today_group',
  'group_like',
  'like_yearold',
  'yearold_ish',
  'ish_boy',
  'boy_shovel',
  'shovel_driveway',
  'driveway_side',
  'side_walk',
  'walk_request',
  'request_payment',
  'payment_expect',
  'expect_$',
  '$_realli',
  'realli_confus',
  'confus_never',
  'never_knock',
  'knock_ask',
  'ask_*',
  '*_could',
  'could_*',
  '*_shovel',
  'shovel_drive',
  'drive_way',
  'way_without',
  'without_ask',
  'ask_expect',
  'expect_paid',
  'paid_realli',
  'realli_dumb',
  'dumb_struck',
  'struck_kind',
  'kind_said',
  'said_cash',
  'cash_one',
  'one_pull',
  'pull_smart',
  'smart_phone',
  'phone_say',
  'say_mom',
  'mom_venmo',
  'venmo_account',
  'account_extrem',
  'extrem_confus',
  'confus_start',
  'start_say',
  'say_never',
  'never_agre',
  'agre_pay',
  'pay_anyth',
  'anyth_go',
  'go_shovel',
  'shovel_driveway',
  'driveway_lunch',
  'lunch_time',
  'time_ask',
  'ask_would',
  'would_said',
  'said_kid',
  'kid_got',
  'got_realli',
  'realli_upset',
  'upset_like',
  'like_go',
  'go_pay',
  'pay_us',
  'us_work',
  'work_ask',
  'ask_shovel',
  'shovel_drive',
  'drive_way',
  'way_start',
  'start_yell',
  'yell_kind',
  'kind_shut',
  'shut_door',
  'door_fast',
  'fast_forward',
  'forward_coupl',
  'coupl_hour',
  'hour_mom',
  'mom_come',
  'come_knock',
  'knock_door',
  'door_open',
  'open_start',
  'start_scream',
  'scream_pay',
  'pay_kid',
  'kid_point',
  'point_-',
  '-_$',
  '$_clearli',
  'clearli_go',
  'go_break',
  'break_wrong',
  'wrong_-',
  '-_put',
  'put_work',
  'work_paid',
  'paid_-her',
  '-her_boy',
  'boy_nice',
  'nice_thing',
  'thing_-',
  '-_proud',
  'proud_boy',
  'boy_use',
  'use_snow',
  'snow_day',
  'day_help',
  'help_peopl',
  'peopl_realli',
  'realli_ungrat',
  'ungrat_go',
  'go_make',
  'make_turn',
  'turn_drug',
  'drug_next',
  'next_time',
  'time_start',
  'start_get',
  'get_kind',
  'kind_mad',
  'mad_said',
  'said_never',
  'never_ask',
  'ask_servic',
  'servic_nice',
  'nice_shovel',
  'shovel_drive',
  'drive_way',
  'way_never',
  'never_agre',
  'agre_pay',
  'pay_realli',
  'realli_ask',
  'ask_first',
  'first_insist',
  'insist_pay',
  'pay_time',
  'time_theyll',
  'theyll_ask',
  'ask_futur',
  'futur_want',
  'want_re-enforc',
  're-enforc_bad',
  'bad_behavior',
  'behavior_theyr',
  'theyr_children',
  'children_peopl',
  'peopl_feel',
  'feel_need',
  'need_let',
  'let_get',
  'get_away',
  'away_whatev',
  'whatev_cycl',
  'cycl_want',
  'want_perpetu',
  'perpetu_kid',
  'kid_cant',
  'cant_manipul',
  'manipul_peopl',
  'peopl_pay',
  'pay_someth',
  'someth_never',
  'never_ask',
  'ask_idk',
  'idk_far',
  'far_ive',
  'ive_refus',
  'refus_pay',
  'pay_im',
  'im_get',
  'get_torch',
  'torch_nextdoor',
  'nextdoor_heartless',
  'heartless_monster',
  'monster_took',
  'took_advantag',
  'advantag_children',
  'children_im',
  'im_turn',
  'turn_reddit',
  'reddit_aita',
  'aita_ill',
  'ill_pay',
  'pay_guess',
  'guess_idk',
  'idk_im',
  'im_see',
  'see_situat',
  'situat_clearli',
  'clearli_experi',
  'experi_kid',
  'kid_edit',
  'edit_add',
  'add_peopl',
  'peopl_believ',
  'believ_hear',
  'hear_shovel',
  'shovel_fair',
  'fair_thing',
  'thing_suspici',
  'suspici_get',
  'get_inch',
  'inch_husband',
  'husband_shovel',
  'shovel_yesterday',
  'yesterday_im',
  'im_sure',
  'sure_much',
  'much_shovel',
  'shovel_vs',
  'vs_left',
  'left_kid',
  'kid_shovel',
  'shovel_inch',
  'inch_home',
  'home_offic',
  'offic_far',
  'far_back',
  'back_hous',
  'hous_overlook',
  'overlook_back',
  'back_yard',
  'yard_furthest',
  'furthest_back',
  'back_get',
  'get_still',
  'still_insid',
  'insid_%',
  '%_time',
  'time_headphon',
  'headphon_meet',
  'meet_music',
  'music_realli',
  'realli_hear',
  'hear_question',
  'question_drive',
  'drive_way',
  'way_length',
  'length_car',
  'car_wide',
  'wide_driveway',
  'driveway_probabl',
  'probabl_car',
  'car_long',
  'long_pretti',
  'pretti_standard',
  'standard_also',
  'also_felt',
  'felt_like',
  'like_$',
  '$_outrag',
  'hello_one_mani',
  'one_mani_midwest',
  'mani_midwest_hit',
  'midwest_hit_snowpocolyps',
  'hit_snowpocolyps_think',
  'snowpocolyps_think_got',
  'think_got_like',
  'got_like_inch',
  'like_inch_live',
  'inch_live_also',
  'live_also_want',
  'also_want_prefac',
  'want_prefac_like',
  'prefac_like_kid',
  'like_kid_hate',
  'kid_hate_experi',
  'hate_experi_kid',
  'experi_kid_felt',
  'kid_felt_need',
  'felt_need_produc',
  'need_produc_work',
  'produc_work_home',
  'work_home_receiv',
  'home_receiv_knock',
  'receiv_knock_door',
  'knock_door_today',
  'door_today_group',
  'today_group_like',
  'group_like_yearold',
  'like_yearold_ish',
  'yearold_ish_boy',
  'ish_boy_shovel',
  'boy_shovel_driveway',
  'shovel_driveway_side',
  'driveway_side_walk',
  'side_walk_request',
  'walk_request_payment',
  'request_payment_expect',
  'payment_expect_$',
  'expect_$_realli',
  '$_realli_confus',
  'realli_confus_never',
  'confus_never_knock',
  'never_knock_ask',
  'knock_ask_*',
  'ask_*_could',
  '*_could_*',
  'could_*_shovel',
  '*_shovel_drive',
  'shovel_drive_way',
  'drive_way_without',
  'way_without_ask',
  'without_ask_expect',
  'ask_expect_paid',
  'expect_paid_realli',
  'paid_realli_dumb',
  'realli_dumb_struck',
  'dumb_struck_kind',
  'struck_kind_said',
  'kind_said_cash',
  'said_cash_one',
  'cash_one_pull',
  'one_pull_smart',
  'pull_smart_phone',
  'smart_phone_say',
  'phone_say_mom',
  'say_mom_venmo',
  'mom_venmo_account',
  'venmo_account_extrem',
  'account_extrem_confus',
  'extrem_confus_start',
  'confus_start_say',
  'start_say_never',
  'say_never_agre',
  'never_agre_pay',
  'agre_pay_anyth',
  'pay_anyth_go',
  'anyth_go_shovel',
  'go_shovel_driveway',
  'shovel_driveway_lunch',
  'driveway_lunch_time',
  'lunch_time_ask',
  'time_ask_would',
  'ask_would_said',
  'would_said_kid',
  'said_kid_got',
  'kid_got_realli',
  'got_realli_upset',
  'realli_upset_like',
  'upset_like_go',
  'like_go_pay',
  'go_pay_us',
  'pay_us_work',
  'us_work_ask',
  'work_ask_shovel',
  'ask_shovel_drive',
  'shovel_drive_way',
  'drive_way_start',
  'way_start_yell',
  'start_yell_kind',
  'yell_kind_shut',
  'kind_shut_door',
  'shut_door_fast',
  'door_fast_forward',
  'fast_forward_coupl',
  'forward_coupl_hour',
  'coupl_hour_mom',
  'hour_mom_come',
  'mom_come_knock',
  'come_knock_door',
  'knock_door_open',
  'door_open_start',
  'open_start_scream',
  'start_scream_pay',
  'scream_pay_kid',
  'pay_kid_point',
  'kid_point_-',
  'point_-_$',
  '-_$_clearli',
  '$_clearli_go',
  'clearli_go_break',
  'go_break_wrong',
  'break_wrong_-',
  'wrong_-_put',
  '-_put_work',
  'put_work_paid',
  'work_paid_-her',
  'paid_-her_boy',
  '-her_boy_nice',
  'boy_nice_thing',
  'nice_thing_-',
  'thing_-_proud',
  '-_proud_boy',
  'proud_boy_use',
  'boy_use_snow',
  'use_snow_day',
  'snow_day_help',
  'day_help_peopl',
  'help_peopl_realli',
  'peopl_realli_ungrat',
  'realli_ungrat_go',
  'ungrat_go_make',
  'go_make_turn',
  'make_turn_drug',
  'turn_drug_next',
  'drug_next_time',
  'next_time_start',
  'time_start_get',
  'start_get_kind',
  'get_kind_mad',
  'kind_mad_said',
  'mad_said_never',
  'said_never_ask',
  'never_ask_servic',
  'ask_servic_nice',
  'servic_nice_shovel',
  'nice_shovel_drive',
  'shovel_drive_way',
  'drive_way_never',
  'way_never_agre',
  'never_agre_pay',
  'agre_pay_realli',
  'pay_realli_ask',
  'realli_ask_first',
  'ask_first_insist',
  'first_insist_pay',
  'insist_pay_time',
  'pay_time_theyll',
  'time_theyll_ask',
  'theyll_ask_futur',
  'ask_futur_want',
  'futur_want_re-enforc',
  'want_re-enforc_bad',
  're-enforc_bad_behavior',
  'bad_behavior_theyr',
  'behavior_theyr_children',
  'theyr_children_peopl',
  'children_peopl_feel',
  'peopl_feel_need',
  'feel_need_let',
  'need_let_get',
  'let_get_away',
  'get_away_whatev',
  'away_whatev_cycl',
  'whatev_cycl_want',
  'cycl_want_perpetu',
  'want_perpetu_kid',
  'perpetu_kid_cant',
  'kid_cant_manipul',
  'cant_manipul_peopl',
  'manipul_peopl_pay',
  'peopl_pay_someth',
  'pay_someth_never',
  'someth_never_ask',
  'never_ask_idk',
  'ask_idk_far',
  'idk_far_ive',
  'far_ive_refus',
  'ive_refus_pay',
  'refus_pay_im',
  'pay_im_get',
  'im_get_torch',
  'get_torch_nextdoor',
  'torch_nextdoor_heartless',
  'nextdoor_heartless_monster',
  'heartless_monster_took',
  'monster_took_advantag',
  'took_advantag_children',
  'advantag_children_im',
  'children_im_turn',
  'im_turn_reddit',
  'turn_reddit_aita',
  'reddit_aita_ill',
  'aita_ill_pay',
  'ill_pay_guess',
  'pay_guess_idk',
  'guess_idk_im',
  'idk_im_see',
  'im_see_situat',
  'see_situat_clearli',
  'situat_clearli_experi',
  'clearli_experi_kid',
  'experi_kid_edit',
  'kid_edit_add',
  'edit_add_peopl',
  'add_peopl_believ',
  'peopl_believ_hear',
  'believ_hear_shovel',
  'hear_shovel_fair',
  'shovel_fair_thing',
  'fair_thing_suspici',
  'thing_suspici_get',
  'suspici_get_inch',
  'get_inch_husband',
  'inch_husband_shovel',
  'husband_shovel_yesterday',
  'shovel_yesterday_im',
  'yesterday_im_sure',
  'im_sure_much',
  'sure_much_shovel',
  'much_shovel_vs',
  'shovel_vs_left',
  'vs_left_kid',
  'left_kid_shovel',
  'kid_shovel_inch',
  'shovel_inch_home',
  'inch_home_offic',
  'home_offic_far',
  'offic_far_back',
  'far_back_hous',
  'back_hous_overlook',
  'hous_overlook_back',
  'overlook_back_yard',
  'back_yard_furthest',
  'yard_furthest_back',
  'furthest_back_get',
  'back_get_still',
  'get_still_insid',
  'still_insid_%',
  'insid_%_time',
  '%_time_headphon',
  'time_headphon_meet',
  'headphon_meet_music',
  'meet_music_realli',
  'music_realli_hear',
  'realli_hear_question',
  'hear_question_drive',
  'question_drive_way',
  'drive_way_length',
  'way_length_car',
  'length_car_wide',
  'car_wide_driveway',
  'wide_driveway_probabl',
  'driveway_probabl_car',
  'probabl_car_long',
  'car_long_pretti',
  'long_pretti_standard',
  'pretti_standard_also',
  'standard_also_felt',
  'also_felt_like',
  'felt_like_$',
  'like_$_outrag'],
 ['date',
  'boyfriend',
  'month',
  'two',
  'littl',
  'children',
  'love',
  'go',
  'eat',
  'go',
  'week',
  'time',
  'happen',
  'forget',
  'credit',
  'card',
  'make',
  'payment',
  'id',
  'obvious',
  'end',
  'pay',
  'sinc',
  'kid',
  'us',
  'honestli',
  'left',
  'broke',
  'month',
  'month',
  'reciev',
  'payment',
  'nd',
  'job',
  'part',
  'time',
  'agre',
  'go',
  'togeth',
  'kid',
  'even',
  'sent',
  'text',
  'remind',
  'forget',
  'credit',
  'card',
  'laugh',
  'restaur',
  'order',
  'dinner',
  'let',
  'kid',
  'order',
  'lot',
  'new',
  'stuff',
  'menu',
  '$',
  '$',
  '$',
  'start',
  'eat',
  'mention',
  'credit',
  'card',
  'make',
  'sure',
  'forget',
  'look',
  'shock',
  'start',
  'search',
  'pocket',
  'look',
  'sorri',
  'way',
  'said',
  'guess',
  'forgot',
  'pair',
  'jean',
  'thought',
  'go',
  'wear',
  'ask',
  'foot',
  'bill',
  'time',
  'food',
  'tabl',
  'even',
  'get',
  'bit',
  'grab',
  'stuff',
  'got',
  'freak',
  'ask',
  'go',
  'told',
  'pay',
  'time',
  'enjoy',
  'dinner',
  'kid',
  'walk',
  'call',
  'later',
  'absolut',
  'lost',
  'said',
  'believ',
  'id',
  'walk',
  'leav',
  'kid',
  'situat',
  'said',
  'go',
  'pay',
  'kid',
  'food',
  'everi',
  'singl',
  'time',
  'unfair',
  'said',
  'forgot',
  'forgot',
  'yell',
  'like',
  'show',
  'sympathi',
  'kid',
  'cancel',
  'go',
  'home',
  'kid',
  'hungri',
  'sinc',
  'pay',
  'right',
  'got',
  'argument',
  'mad',
  'sinc',
  'say',
  'thing',
  'like',
  'need',
  'take',
  'look',
  'im',
  'treat',
  'kid',
  'specif',
  'let',
  'go',
  'hungri',
  'selfish',
  'aita',
  'date_boyfriend',
  'boyfriend_month',
  'month_two',
  'two_littl',
  'littl_children',
  'children_love',
  'love_go',
  'go_eat',
  'eat_go',
  'go_week',
  'week_time',
  'time_happen',
  'happen_forget',
  'forget_credit',
  'credit_card',
  'card_make',
  'make_payment',
  'payment_id',
  'id_obvious',
  'obvious_end',
  'end_pay',
  'pay_sinc',
  'sinc_kid',
  'kid_us',
  'us_honestli',
  'honestli_left',
  'left_broke',
  'broke_month',
  'month_month',
  'month_reciev',
  'reciev_payment',
  'payment_nd',
  'nd_job',
  'job_part',
  'part_time',
  'time_agre',
  'agre_go',
  'go_togeth',
  'togeth_kid',
  'kid_even',
  'even_sent',
  'sent_text',
  'text_remind',
  'remind_forget',
  'forget_credit',
  'credit_card',
  'card_laugh',
  'laugh_restaur',
  'restaur_order',
  'order_dinner',
  'dinner_let',
  'let_kid',
  'kid_order',
  'order_lot',
  'lot_new',
  'new_stuff',
  'stuff_menu',
  'menu_$',
  '$_$',
  '$_$',
  '$_start',
  'start_eat',
  'eat_mention',
  'mention_credit',
  'credit_card',
  'card_make',
  'make_sure',
  'sure_forget',
  'forget_look',
  'look_shock',
  'shock_start',
  'start_search',
  'search_pocket',
  'pocket_look',
  'look_sorri',
  'sorri_way',
  'way_said',
  'said_guess',
  'guess_forgot',
  'forgot_pair',
  'pair_jean',
  'jean_thought',
  'thought_go',
  'go_wear',
  'wear_ask',
  'ask_foot',
  'foot_bill',
  'bill_time',
  'time_food',
  'food_tabl',
  'tabl_even',
  'even_get',
  'get_bit',
  'bit_grab',
  'grab_stuff',
  'stuff_got',
  'got_freak',
  'freak_ask',
  'ask_go',
  'go_told',
  'told_pay',
  'pay_time',
  'time_enjoy',
  'enjoy_dinner',
  'dinner_kid',
  'kid_walk',
  'walk_call',
  'call_later',
  'later_absolut',
  'absolut_lost',
  'lost_said',
  'said_believ',
  'believ_id',
  'id_walk',
  'walk_leav',
  'leav_kid',
  'kid_situat',
  'situat_said',
  'said_go',
  'go_pay',
  'pay_kid',
  'kid_food',
  'food_everi',
  'everi_singl',
  'singl_time',
  'time_unfair',
  'unfair_said',
  'said_forgot',
  'forgot_forgot',
  'forgot_yell',
  'yell_like',
  'like_show',
  'show_sympathi',
  'sympathi_kid',
  'kid_cancel',
  'cancel_go',
  'go_home',
  'home_kid',
  'kid_hungri',
  'hungri_sinc',
  'sinc_pay',
  'pay_right',
  'right_got',
  'got_argument',
  'argument_mad',
  'mad_sinc',
  'sinc_say',
  'say_thing',
  'thing_like',
  'like_need',
  'need_take',
  'take_look',
  'look_im',
  'im_treat',
  'treat_kid',
  'kid_specif',
  'specif_let',
  'let_go',
  'go_hungri',
  'hungri_selfish',
  'selfish_aita',
  'date_boyfriend_month',
  'boyfriend_month_two',
  'month_two_littl',
  'two_littl_children',
  'littl_children_love',
  'children_love_go',
  'love_go_eat',
  'go_eat_go',
  'eat_go_week',
  'go_week_time',
  'week_time_happen',
  'time_happen_forget',
  'happen_forget_credit',
  'forget_credit_card',
  'credit_card_make',
  'card_make_payment',
  'make_payment_id',
  'payment_id_obvious',
  'id_obvious_end',
  'obvious_end_pay',
  'end_pay_sinc',
  'pay_sinc_kid',
  'sinc_kid_us',
  'kid_us_honestli',
  'us_honestli_left',
  'honestli_left_broke',
  'left_broke_month',
  'broke_month_month',
  'month_month_reciev',
  'month_reciev_payment',
  'reciev_payment_nd',
  'payment_nd_job',
  'nd_job_part',
  'job_part_time',
  'part_time_agre',
  'time_agre_go',
  'agre_go_togeth',
  'go_togeth_kid',
  'togeth_kid_even',
  'kid_even_sent',
  'even_sent_text',
  'sent_text_remind',
  'text_remind_forget',
  'remind_forget_credit',
  'forget_credit_card',
  'credit_card_laugh',
  'card_laugh_restaur',
  'laugh_restaur_order',
  'restaur_order_dinner',
  'order_dinner_let',
  'dinner_let_kid',
  'let_kid_order',
  'kid_order_lot',
  'order_lot_new',
  'lot_new_stuff',
  'new_stuff_menu',
  'stuff_menu_$',
  'menu_$_$',
  '$_$_$',
  '$_$_start',
  '$_start_eat',
  'start_eat_mention',
  'eat_mention_credit',
  'mention_credit_card',
  'credit_card_make',
  'card_make_sure',
  'make_sure_forget',
  'sure_forget_look',
  'forget_look_shock',
  'look_shock_start',
  'shock_start_search',
  'start_search_pocket',
  'search_pocket_look',
  'pocket_look_sorri',
  'look_sorri_way',
  'sorri_way_said',
  'way_said_guess',
  'said_guess_forgot',
  'guess_forgot_pair',
  'forgot_pair_jean',
  'pair_jean_thought',
  'jean_thought_go',
  'thought_go_wear',
  'go_wear_ask',
  'wear_ask_foot',
  'ask_foot_bill',
  'foot_bill_time',
  'bill_time_food',
  'time_food_tabl',
  'food_tabl_even',
  'tabl_even_get',
  'even_get_bit',
  'get_bit_grab',
  'bit_grab_stuff',
  'grab_stuff_got',
  'stuff_got_freak',
  'got_freak_ask',
  'freak_ask_go',
  'ask_go_told',
  'go_told_pay',
  'told_pay_time',
  'pay_time_enjoy',
  'time_enjoy_dinner',
  'enjoy_dinner_kid',
  'dinner_kid_walk',
  'kid_walk_call',
  'walk_call_later',
  'call_later_absolut',
  'later_absolut_lost',
  'absolut_lost_said',
  'lost_said_believ',
  'said_believ_id',
  'believ_id_walk',
  'id_walk_leav',
  'walk_leav_kid',
  'leav_kid_situat',
  'kid_situat_said',
  'situat_said_go',
  'said_go_pay',
  'go_pay_kid',
  'pay_kid_food',
  'kid_food_everi',
  'food_everi_singl',
  'everi_singl_time',
  'singl_time_unfair',
  'time_unfair_said',
  'unfair_said_forgot',
  'said_forgot_forgot',
  'forgot_forgot_yell',
  'forgot_yell_like',
  'yell_like_show',
  'like_show_sympathi',
  'show_sympathi_kid',
  'sympathi_kid_cancel',
  'kid_cancel_go',
  'cancel_go_home',
  'go_home_kid',
  'home_kid_hungri',
  'kid_hungri_sinc',
  'hungri_sinc_pay',
  'sinc_pay_right',
  'pay_right_got',
  'right_got_argument',
  'got_argument_mad',
  'argument_mad_sinc',
  'mad_sinc_say',
  'sinc_say_thing',
  'say_thing_like',
  'thing_like_need',
  'like_need_take',
  'need_take_look',
  'take_look_im',
  'look_im_treat',
  'im_treat_kid',
  'treat_kid_specif',
  'kid_specif_let',
  'specif_let_go',
  'let_go_hungri',
  'go_hungri_selfish',
  'hungri_selfish_aita'],
 ['boyfriend',
  'year',
  'kid',
  'year',
  'old',
  'son',
  'day',
  'yo',
  'stepson',
  'fell',
  'stair',
  'injur',
  'anckl',
  'dad',
  'get',
  'hospit',
  'need',
  'someon',
  'stay',
  'kid',
  'boyfriend',
  'told',
  'son',
  'skip',
  'workday',
  'stay',
  'watch',
  'stepbroth',
  'return',
  'son',
  'ask',
  'boyfriend',
  'pay',
  'babysit',
  'kid',
  'admit',
  'son',
  'best',
  'relationship',
  'stepdad',
  'stepsibl',
  'boyfriend',
  'shock',
  'son',
  'explain',
  'skip',
  'workday',
  'cost',
  'lose',
  'money',
  'ask',
  'boyfriend',
  'pay',
  'time',
  'boyfriend',
  'scold',
  'harshli',
  'told',
  'stay',
  'home',
  'stepbroth',
  'babysit',
  'deserv',
  'money',
  'plu',
  'skip',
  'one',
  'day',
  'work',
  'much',
  'harm',
  'son',
  'disagre',
  'kept',
  'argu',
  'boyfriend',
  'say',
  'stepbroth',
  'respons',
  'boyfriend',
  'end',
  'punish',
  'take',
  'away',
  'electron',
  'well',
  'cancel',
  'birthday',
  'month',
  'away',
  'son',
  'fought',
  'back',
  'talk',
  'unfair',
  'ask',
  'get',
  'involv',
  'side',
  'boyfriend',
  'realli',
  'appreci',
  'son',
  'use',
  'famili',
  'emerg',
  'advantag',
  'thought',
  'hed',
  'get',
  'money',
  'help',
  'famili',
  'son',
  'like',
  'stood',
  'conflict',
  'accus',
  'favor',
  'stepkid',
  'stay',
  'boyfriend',
  'good',
  'side',
  'ignor',
  'mistreat',
  'toward',
  'cut',
  'argument',
  'becom',
  'silent',
  'eversinc',
  'even',
  'refus',
  'eat',
  'us',
  'sit',
  'us',
  'aita',
  'agre',
  'boyfriend',
  'punish',
  'son',
  'boyfriend_year',
  'year_kid',
  'kid_year',
  'year_old',
  'old_son',
  'son_day',
  'day_yo',
  'yo_stepson',
  'stepson_fell',
  'fell_stair',
  'stair_injur',
  'injur_anckl',
  'anckl_dad',
  'dad_get',
  'get_hospit',
  'hospit_need',
  'need_someon',
  'someon_stay',
  'stay_kid',
  'kid_boyfriend',
  'boyfriend_told',
  'told_son',
  'son_skip',
  'skip_workday',
  'workday_stay',
  'stay_watch',
  'watch_stepbroth',
  'stepbroth_return',
  'return_son',
  'son_ask',
  'ask_boyfriend',
  'boyfriend_pay',
  'pay_babysit',
  'babysit_kid',
  'kid_admit',
  'admit_son',
  'son_best',
  'best_relationship',
  'relationship_stepdad',
  'stepdad_stepsibl',
  'stepsibl_boyfriend',
  'boyfriend_shock',
  'shock_son',
  'son_explain',
  'explain_skip',
  'skip_workday',
  'workday_cost',
  'cost_lose',
  'lose_money',
  'money_ask',
  'ask_boyfriend',
  'boyfriend_pay',
  'pay_time',
  'time_boyfriend',
  'boyfriend_scold',
  'scold_harshli',
  'harshli_told',
  'told_stay',
  'stay_home',
  'home_stepbroth',
  'stepbroth_babysit',
  'babysit_deserv',
  'deserv_money',
  'money_plu',
  'plu_skip',
  'skip_one',
  'one_day',
  'day_work',
  'work_much',
  'much_harm',
  'harm_son',
  'son_disagre',
  'disagre_kept',
  'kept_argu',
  'argu_boyfriend',
  'boyfriend_say',
  'say_stepbroth',
  'stepbroth_respons',
  'respons_boyfriend',
  'boyfriend_end',
  'end_punish',
  'punish_take',
  'take_away',
  'away_electron',
  'electron_well',
  'well_cancel',
  'cancel_birthday',
  'birthday_month',
  'month_away',
  'away_son',
  'son_fought',
  'fought_back',
  'back_talk',
  'talk_unfair',
  'unfair_ask',
  'ask_get',
  'get_involv',
  'involv_side',
  'side_boyfriend',
  'boyfriend_realli',
  'realli_appreci',
  'appreci_son',
  'son_use',
  'use_famili',
  'famili_emerg',
  'emerg_advantag',
  'advantag_thought',
  'thought_hed',
  'hed_get',
  'get_money',
  'money_help',
  'help_famili',
  'famili_son',
  'son_like',
  'like_stood',
  'stood_conflict',
  'conflict_accus',
  'accus_favor',
  'favor_stepkid',
  'stepkid_stay',
  'stay_boyfriend',
  'boyfriend_good',
  'good_side',
  'side_ignor',
  'ignor_mistreat',
  'mistreat_toward',
  'toward_cut',
  'cut_argument',
  'argument_becom',
  'becom_silent',
  'silent_eversinc',
  'eversinc_even',
  'even_refus',
  'refus_eat',
  'eat_us',
  'us_sit',
  'sit_us',
  'us_aita',
  'aita_agre',
  'agre_boyfriend',
  'boyfriend_punish',
  'punish_son',
  'boyfriend_year_kid',
  'year_kid_year',
  'kid_year_old',
  'year_old_son',
  'old_son_day',
  'son_day_yo',
  'day_yo_stepson',
  'yo_stepson_fell',
  'stepson_fell_stair',
  'fell_stair_injur',
  'stair_injur_anckl',
  'injur_anckl_dad',
  'anckl_dad_get',
  'dad_get_hospit',
  'get_hospit_need',
  'hospit_need_someon',
  'need_someon_stay',
  'someon_stay_kid',
  'stay_kid_boyfriend',
  'kid_boyfriend_told',
  'boyfriend_told_son',
  'told_son_skip',
  'son_skip_workday',
  'skip_workday_stay',
  'workday_stay_watch',
  'stay_watch_stepbroth',
  'watch_stepbroth_return',
  'stepbroth_return_son',
  'return_son_ask',
  'son_ask_boyfriend',
  'ask_boyfriend_pay',
  'boyfriend_pay_babysit',
  'pay_babysit_kid',
  'babysit_kid_admit',
  'kid_admit_son',
  'admit_son_best',
  'son_best_relationship',
  'best_relationship_stepdad',
  'relationship_stepdad_stepsibl',
  'stepdad_stepsibl_boyfriend',
  'stepsibl_boyfriend_shock',
  'boyfriend_shock_son',
  'shock_son_explain',
  'son_explain_skip',
  'explain_skip_workday',
  'skip_workday_cost',
  'workday_cost_lose',
  'cost_lose_money',
  'lose_money_ask',
  'money_ask_boyfriend',
  'ask_boyfriend_pay',
  'boyfriend_pay_time',
  'pay_time_boyfriend',
  'time_boyfriend_scold',
  'boyfriend_scold_harshli',
  'scold_harshli_told',
  'harshli_told_stay',
  'told_stay_home',
  'stay_home_stepbroth',
  'home_stepbroth_babysit',
  'stepbroth_babysit_deserv',
  'babysit_deserv_money',
  'deserv_money_plu',
  'money_plu_skip',
  'plu_skip_one',
  'skip_one_day',
  'one_day_work',
  'day_work_much',
  'work_much_harm',
  'much_harm_son',
  'harm_son_disagre',
  'son_disagre_kept',
  'disagre_kept_argu',
  'kept_argu_boyfriend',
  'argu_boyfriend_say',
  'boyfriend_say_stepbroth',
  'say_stepbroth_respons',
  'stepbroth_respons_boyfriend',
  'respons_boyfriend_end',
  'boyfriend_end_punish',
  'end_punish_take',
  'punish_take_away',
  'take_away_electron',
  'away_electron_well',
  'electron_well_cancel',
  'well_cancel_birthday',
  'cancel_birthday_month',
  'birthday_month_away',
  'month_away_son',
  'away_son_fought',
  'son_fought_back',
  'fought_back_talk',
  'back_talk_unfair',
  'talk_unfair_ask',
  'unfair_ask_get',
  'ask_get_involv',
  'get_involv_side',
  'involv_side_boyfriend',
  'side_boyfriend_realli',
  'boyfriend_realli_appreci',
  'realli_appreci_son',
  'appreci_son_use',
  'son_use_famili',
  'use_famili_emerg',
  'famili_emerg_advantag',
  'emerg_advantag_thought',
  'advantag_thought_hed',
  'thought_hed_get',
  'hed_get_money',
  'get_money_help',
  'money_help_famili',
  'help_famili_son',
  'famili_son_like',
  'son_like_stood',
  'like_stood_conflict',
  'stood_conflict_accus',
  'conflict_accus_favor',
  'accus_favor_stepkid',
  'favor_stepkid_stay',
  'stepkid_stay_boyfriend',
  'stay_boyfriend_good',
  'boyfriend_good_side',
  'good_side_ignor',
  'side_ignor_mistreat',
  'ignor_mistreat_toward',
  'mistreat_toward_cut',
  'toward_cut_argument',
  'cut_argument_becom',
  'argument_becom_silent',
  'becom_silent_eversinc',
  'silent_eversinc_even',
  'eversinc_even_refus',
  'even_refus_eat',
  'refus_eat_us',
  'eat_us_sit',
  'us_sit_us',
  'sit_us_aita',
  'us_aita_agre',
  'aita_agre_boyfriend',
  'agre_boyfriend_punish',
  'boyfriend_punish_son'],
 ['ex',
  'best',
  'friend',
  'got',
  'marri',
  'saturday',
  'suppos',
  'maid',
  'honor',
  'remov',
  'wed',
  'disput',
  'regard',
  'makeup',
  'hair',
  'disinterest',
  'wed',
  'uninvit',
  'wed',
  'told',
  'friend',
  'side',
  'stori',
  'respons',
  'cake',
  'wed',
  'cancel',
  'order',
  'uninvit',
  'want',
  'reimburs',
  'invest',
  'wed',
  'told',
  'bride',
  'go',
  'bring',
  'cake',
  'new',
  'maid',
  'honor',
  'went',
  'pick',
  'cake',
  'learn',
  'cancel',
  'order',
  'abl',
  'get',
  'anoth',
  'cake',
  'appar',
  'nice',
  'bride',
  'groom',
  'sister',
  'attend',
  'told',
  'unfair',
  'cancel',
  'cake',
  'sister',
  'think',
  'let',
  'enjoy',
  'special',
  'day',
  'later',
  'discuss',
  'get',
  'money',
  'back',
  'bride',
  'refer',
  'cake',
  'gift',
  'claim',
  'gift',
  'return',
  'groom',
  'agre',
  'liter',
  'anyth',
  'preciou',
  'wife',
  'say',
  'ex_best',
  'best_friend',
  'friend_got',
  'got_marri',
  'marri_saturday',
  'saturday_suppos',
  'suppos_maid',
  'maid_honor',
  'honor_remov',
  'remov_wed',
  'wed_disput',
  'disput_regard',
  'regard_makeup',
  'makeup_hair',
  'hair_disinterest',
  'disinterest_wed',
  'wed_uninvit',
  'uninvit_wed',
  'wed_told',
  'told_friend',
  'friend_side',
  'side_stori',
  'stori_respons',
  'respons_cake',
  'cake_wed',
  'wed_cancel',
  'cancel_order',
  'order_uninvit',
  'uninvit_want',
  'want_reimburs',
  'reimburs_invest',
  'invest_wed',
  'wed_told',
  'told_bride',
  'bride_go',
  'go_bring',
  'bring_cake',
  'cake_new',
  'new_maid',
  'maid_honor',
  'honor_went',
  'went_pick',
  'pick_cake',
  'cake_learn',
  'learn_cancel',
  'cancel_order',
  'order_abl',
  'abl_get',
  'get_anoth',
  'anoth_cake',
  'cake_appar',
  'appar_nice',
  'nice_bride',
  'bride_groom',
  'groom_sister',
  'sister_attend',
  'attend_told',
  'told_unfair',
  'unfair_cancel',
  'cancel_cake',
  'cake_sister',
  'sister_think',
  'think_let',
  'let_enjoy',
  'enjoy_special',
  'special_day',
  'day_later',
  'later_discuss',
  'discuss_get',
  'get_money',
  'money_back',
  'back_bride',
  'bride_refer',
  'refer_cake',
  'cake_gift',
  'gift_claim',
  'claim_gift',
  'gift_return',
  'return_groom',
  'groom_agre',
  'agre_liter',
  'liter_anyth',
  'anyth_preciou',
  'preciou_wife',
  'wife_say',
  'ex_best_friend',
  'best_friend_got',
  'friend_got_marri',
  'got_marri_saturday',
  'marri_saturday_suppos',
  'saturday_suppos_maid',
  'suppos_maid_honor',
  'maid_honor_remov',
  'honor_remov_wed',
  'remov_wed_disput',
  'wed_disput_regard',
  'disput_regard_makeup',
  'regard_makeup_hair',
  'makeup_hair_disinterest',
  'hair_disinterest_wed',
  'disinterest_wed_uninvit',
  'wed_uninvit_wed',
  'uninvit_wed_told',
  'wed_told_friend',
  'told_friend_side',
  'friend_side_stori',
  'side_stori_respons',
  'stori_respons_cake',
  'respons_cake_wed',
  'cake_wed_cancel',
  'wed_cancel_order',
  'cancel_order_uninvit',
  'order_uninvit_want',
  'uninvit_want_reimburs',
  'want_reimburs_invest',
  'reimburs_invest_wed',
  'invest_wed_told',
  'wed_told_bride',
  'told_bride_go',
  'bride_go_bring',
  'go_bring_cake',
  'bring_cake_new',
  'cake_new_maid',
  'new_maid_honor',
  'maid_honor_went',
  'honor_went_pick',
  'went_pick_cake',
  'pick_cake_learn',
  'cake_learn_cancel',
  'learn_cancel_order',
  'cancel_order_abl',
  'order_abl_get',
  'abl_get_anoth',
  'get_anoth_cake',
  'anoth_cake_appar',
  'cake_appar_nice',
  'appar_nice_bride',
  'nice_bride_groom',
  'bride_groom_sister',
  'groom_sister_attend',
  'sister_attend_told',
  'attend_told_unfair',
  'told_unfair_cancel',
  'unfair_cancel_cake',
  'cancel_cake_sister',
  'cake_sister_think',
  'sister_think_let',
  'think_let_enjoy',
  'let_enjoy_special',
  'enjoy_special_day',
  'special_day_later',
  'day_later_discuss',
  'later_discuss_get',
  'discuss_get_money',
  'get_money_back',
  'money_back_bride',
  'back_bride_refer',
  'bride_refer_cake',
  'refer_cake_gift',
  'cake_gift_claim',
  'gift_claim_gift',
  'claim_gift_return',
  'gift_return_groom',
  'return_groom_agre',
  'groom_agre_liter',
  'agre_liter_anyth',
  'liter_anyth_preciou',
  'anyth_preciou_wife',
  'preciou_wife_say'],
 ['husband',
  'year',
  'marri',
  'year',
  'suffer',
  'horrif',
  'trauma',
  'hand',
  'dad',
  'parent',
  'marri',
  'expect',
  'twin',
  'mom',
  'suffer',
  'kind',
  'hemorrhag',
  'end',
  'eclampsia',
  'husband',
  'mom',
  'twin',
  'sister',
  'make',
  'husband',
  'period',
  'time',
  'nicu',
  'dad',
  'told',
  'fault',
  'die',
  'grandpar',
  'meant',
  'world',
  'tri',
  'shield',
  'dad',
  'anger',
  'year',
  'old',
  'die',
  'also',
  'father',
  'blame',
  'spent',
  'next',
  'year',
  'hear',
  'day',
  'day',
  'reason',
  'point',
  'anoth',
  'person',
  'reassur',
  'met',
  'start',
  'heal',
  'away',
  'dad',
  'attend',
  'therapi',
  'big',
  'fear',
  'dad',
  'said',
  'true',
  'wonder',
  'man',
  'niec',
  'nephew',
  'ador',
  'alway',
  'good',
  'rest',
  'famili',
  'januari',
  'pregnant',
  'went',
  'scan',
  'learn',
  'miscarri',
  'soon',
  'husband',
  'heard',
  'someth',
  'insid',
  'broke',
  'start',
  'unravel',
  'middl',
  'mental',
  'health',
  'crisi',
  'weird',
  'manic',
  'laugh',
  'also',
  'sob',
  'ran',
  'room',
  'follow',
  'concern',
  'mom',
  'sister',
  'work',
  'hospit',
  'sister',
  'nurs',
  'mom',
  'work',
  'littl',
  'gift',
  'store',
  'saw',
  'worst',
  'moment',
  'saw',
  'medic',
  'personnel',
  'forc',
  'interven',
  'middl',
  'breakdown',
  'hyster',
  'total',
  'total',
  'broken',
  'noth',
  'could',
  'reach',
  'scariest',
  'moment',
  'life',
  'worst',
  'moment',
  'judg',
  'laugh',
  'told',
  'rest',
  'adult',
  'famili',
  'also',
  'judg',
  'famili',
  'awar',
  'histori',
  'told',
  'year',
  'ago',
  'husband',
  'end',
  'care',
  'psychiatrist',
  'suggest',
  'need',
  'lot',
  'help',
  'therapi',
  'could',
  'provid',
  'instead',
  'understand',
  'famili',
  'longer',
  'want',
  'around',
  'said',
  'man',
  'could',
  'laugh',
  'wife',
  'miscarriag',
  'kind',
  'man',
  'want',
  'around',
  'kid',
  'told',
  'would',
  'leav',
  'behind',
  'niec',
  'turn',
  'year',
  'first',
  'big',
  'parti',
  'sinc',
  'covid',
  'call',
  'said',
  'want',
  'us',
  'seen',
  'us',
  'mom',
  'list',
  'told',
  'abl',
  'come',
  'sorri',
  'upset',
  'ask',
  'never',
  'saw',
  'us',
  'come',
  'birthday',
  'parti',
  'miss',
  'told',
  'husband',
  'welcom',
  'adult',
  'famili',
  'anymor',
  'appar',
  'yell',
  'parent',
  'mine',
  'got',
  'shit',
  'tell',
  'said',
  'busi',
  'say',
  'aita',
  'husband_year',
  'year_marri',
  'marri_year',
  'year_suffer',
  'suffer_horrif',
  'horrif_trauma',
  'trauma_hand',
  'hand_dad',
  'dad_parent',
  'parent_marri',
  'marri_expect',
  'expect_twin',
  'twin_mom',
  'mom_suffer',
  'suffer_kind',
  'kind_hemorrhag',
  'hemorrhag_end',
  'end_eclampsia',
  'eclampsia_husband',
  'husband_mom',
  'mom_twin',
  'twin_sister',
  'sister_make',
  'make_husband',
  'husband_period',
  'period_time',
  'time_nicu',
  'nicu_dad',
  'dad_told',
  'told_fault',
  'fault_die',
  'die_grandpar',
  'grandpar_meant',
  'meant_world',
  'world_tri',
  'tri_shield',
  'shield_dad',
  'dad_anger',
  'anger_year',
  'year_old',
  'old_die',
  'die_also',
  'also_father',
  'father_blame',
  'blame_spent',
  'spent_next',
  'next_year',
  'year_hear',
  'hear_day',
  'day_day',
  'day_reason',
  'reason_point',
  'point_anoth',
  'anoth_person',
  'person_reassur',
  'reassur_met',
  'met_start',
  'start_heal',
  'heal_away',
  'away_dad',
  'dad_attend',
  'attend_therapi',
  'therapi_big',
  'big_fear',
  'fear_dad',
  'dad_said',
  'said_true',
  'true_wonder',
  'wonder_man',
  'man_niec',
  'niec_nephew',
  'nephew_ador',
  'ador_alway',
  'alway_good',
  'good_rest',
  'rest_famili',
  'famili_januari',
  'januari_pregnant',
  'pregnant_went',
  'went_scan',
  'scan_learn',
  'learn_miscarri',
  'miscarri_soon',
  'soon_husband',
  'husband_heard',
  'heard_someth',
  'someth_insid',
  'insid_broke',
  'broke_start',
  'start_unravel',
  'unravel_middl',
  'middl_mental',
  'mental_health',
  'health_crisi',
  'crisi_weird',
  'weird_manic',
  'manic_laugh',
  'laugh_also',
  'also_sob',
  'sob_ran',
  'ran_room',
  'room_follow',
  'follow_concern',
  'concern_mom',
  'mom_sister',
  'sister_work',
  'work_hospit',
  'hospit_sister',
  'sister_nurs',
  'nurs_mom',
  'mom_work',
  'work_littl',
  'littl_gift',
  'gift_store',
  'store_saw',
  'saw_worst',
  'worst_moment',
  'moment_saw',
  'saw_medic',
  'medic_personnel',
  'personnel_forc',
  'forc_interven',
  'interven_middl',
  'middl_breakdown',
  'breakdown_hyster',
  'hyster_total',
  'total_total',
  'total_broken',
  'broken_noth',
  'noth_could',
  'could_reach',
  'reach_scariest',
  'scariest_moment',
  'moment_life',
  'life_worst',
  'worst_moment',
  'moment_judg',
  'judg_laugh',
  'laugh_told',
  'told_rest',
  'rest_adult',
  'adult_famili',
  'famili_also',
  'also_judg',
  'judg_famili',
  'famili_awar',
  'awar_histori',
  'histori_told',
  'told_year',
  'year_ago',
  'ago_husband',
  'husband_end',
  'end_care',
  'care_psychiatrist',
  'psychiatrist_suggest',
  'suggest_need',
  'need_lot',
  'lot_help',
  'help_therapi',
  'therapi_could',
  'could_provid',
  'provid_instead',
  'instead_understand',
  'understand_famili',
  'famili_longer',
  'longer_want',
  'want_around',
  'around_said',
  'said_man',
  'man_could',
  'could_laugh',
  'laugh_wife',
  'wife_miscarriag',
  'miscarriag_kind',
  'kind_man',
  'man_want',
  'want_around',
  'around_kid',
  'kid_told',
  'told_would',
  'would_leav',
  'leav_behind',
  'behind_niec',
  'niec_turn',
  'turn_year',
  'year_first',
  'first_big',
  'big_parti',
  'parti_sinc',
  'sinc_covid',
  'covid_call',
  'call_said',
  'said_want',
  'want_us',
  'us_seen',
  'seen_us',
  'us_mom',
  'mom_list',
  'list_told',
  'told_abl',
  'abl_come',
  'come_sorri',
  'sorri_upset',
  'upset_ask',
  'ask_never',
  'never_saw',
  'saw_us',
  'us_come',
  'come_birthday',
  'birthday_parti',
  'parti_miss',
  'miss_told',
  'told_husband',
  'husband_welcom',
  'welcom_adult',
  'adult_famili',
  'famili_anymor',
  'anymor_appar',
  'appar_yell',
  'yell_parent',
  'parent_mine',
  'mine_got',
  'got_shit',
  'shit_tell',
  'tell_said',
  'said_busi',
  'busi_say',
  'say_aita',
  'husband_year_marri',
  'year_marri_year',
  'marri_year_suffer',
  'year_suffer_horrif',
  'suffer_horrif_trauma',
  'horrif_trauma_hand',
  'trauma_hand_dad',
  'hand_dad_parent',
  'dad_parent_marri',
  'parent_marri_expect',
  'marri_expect_twin',
  'expect_twin_mom',
  'twin_mom_suffer',
  'mom_suffer_kind',
  'suffer_kind_hemorrhag',
  'kind_hemorrhag_end',
  'hemorrhag_end_eclampsia',
  'end_eclampsia_husband',
  'eclampsia_husband_mom',
  'husband_mom_twin',
  'mom_twin_sister',
  'twin_sister_make',
  'sister_make_husband',
  'make_husband_period',
  'husband_period_time',
  'period_time_nicu',
  'time_nicu_dad',
  'nicu_dad_told',
  'dad_told_fault',
  'told_fault_die',
  'fault_die_grandpar',
  'die_grandpar_meant',
  'grandpar_meant_world',
  'meant_world_tri',
  'world_tri_shield',
  'tri_shield_dad',
  'shield_dad_anger',
  'dad_anger_year',
  'anger_year_old',
  'year_old_die',
  'old_die_also',
  'die_also_father',
  'also_father_blame',
  'father_blame_spent',
  'blame_spent_next',
  'spent_next_year',
  'next_year_hear',
  'year_hear_day',
  'hear_day_day',
  'day_day_reason',
  'day_reason_point',
  'reason_point_anoth',
  'point_anoth_person',
  'anoth_person_reassur',
  'person_reassur_met',
  'reassur_met_start',
  'met_start_heal',
  'start_heal_away',
  'heal_away_dad',
  'away_dad_attend',
  'dad_attend_therapi',
  'attend_therapi_big',
  'therapi_big_fear',
  'big_fear_dad',
  'fear_dad_said',
  'dad_said_true',
  'said_true_wonder',
  'true_wonder_man',
  'wonder_man_niec',
  'man_niec_nephew',
  'niec_nephew_ador',
  'nephew_ador_alway',
  'ador_alway_good',
  'alway_good_rest',
  'good_rest_famili',
  'rest_famili_januari',
  'famili_januari_pregnant',
  'januari_pregnant_went',
  'pregnant_went_scan',
  'went_scan_learn',
  'scan_learn_miscarri',
  'learn_miscarri_soon',
  'miscarri_soon_husband',
  'soon_husband_heard',
  'husband_heard_someth',
  'heard_someth_insid',
  'someth_insid_broke',
  'insid_broke_start',
  'broke_start_unravel',
  'start_unravel_middl',
  'unravel_middl_mental',
  'middl_mental_health',
  'mental_health_crisi',
  'health_crisi_weird',
  'crisi_weird_manic',
  'weird_manic_laugh',
  'manic_laugh_also',
  'laugh_also_sob',
  'also_sob_ran',
  'sob_ran_room',
  'ran_room_follow',
  'room_follow_concern',
  'follow_concern_mom',
  'concern_mom_sister',
  'mom_sister_work',
  'sister_work_hospit',
  'work_hospit_sister',
  'hospit_sister_nurs',
  'sister_nurs_mom',
  'nurs_mom_work',
  'mom_work_littl',
  'work_littl_gift',
  'littl_gift_store',
  'gift_store_saw',
  'store_saw_worst',
  'saw_worst_moment',
  'worst_moment_saw',
  'moment_saw_medic',
  'saw_medic_personnel',
  'medic_personnel_forc',
  'personnel_forc_interven',
  'forc_interven_middl',
  'interven_middl_breakdown',
  'middl_breakdown_hyster',
  'breakdown_hyster_total',
  'hyster_total_total',
  'total_total_broken',
  'total_broken_noth',
  'broken_noth_could',
  'noth_could_reach',
  'could_reach_scariest',
  'reach_scariest_moment',
  'scariest_moment_life',
  'moment_life_worst',
  'life_worst_moment',
  'worst_moment_judg',
  'moment_judg_laugh',
  'judg_laugh_told',
  'laugh_told_rest',
  'told_rest_adult',
  'rest_adult_famili',
  'adult_famili_also',
  'famili_also_judg',
  'also_judg_famili',
  'judg_famili_awar',
  'famili_awar_histori',
  'awar_histori_told',
  'histori_told_year',
  'told_year_ago',
  'year_ago_husband',
  'ago_husband_end',
  'husband_end_care',
  'end_care_psychiatrist',
  'care_psychiatrist_suggest',
  'psychiatrist_suggest_need',
  'suggest_need_lot',
  'need_lot_help',
  'lot_help_therapi',
  'help_therapi_could',
  'therapi_could_provid',
  'could_provid_instead',
  'provid_instead_understand',
  'instead_understand_famili',
  'understand_famili_longer',
  'famili_longer_want',
  'longer_want_around',
  'want_around_said',
  'around_said_man',
  'said_man_could',
  'man_could_laugh',
  'could_laugh_wife',
  'laugh_wife_miscarriag',
  'wife_miscarriag_kind',
  'miscarriag_kind_man',
  'kind_man_want',
  'man_want_around',
  'want_around_kid',
  'around_kid_told',
  'kid_told_would',
  'told_would_leav',
  'would_leav_behind',
  'leav_behind_niec',
  'behind_niec_turn',
  'niec_turn_year',
  'turn_year_first',
  'year_first_big',
  'first_big_parti',
  'big_parti_sinc',
  'parti_sinc_covid',
  'sinc_covid_call',
  'covid_call_said',
  'call_said_want',
  'said_want_us',
  'want_us_seen',
  'us_seen_us',
  'seen_us_mom',
  'us_mom_list',
  'mom_list_told',
  'list_told_abl',
  'told_abl_come',
  'abl_come_sorri',
  'come_sorri_upset',
  'sorri_upset_ask',
  'upset_ask_never',
  'ask_never_saw',
  'never_saw_us',
  'saw_us_come',
  'us_come_birthday',
  'come_birthday_parti',
  'birthday_parti_miss',
  'parti_miss_told',
  'miss_told_husband',
  'told_husband_welcom',
  'husband_welcom_adult',
  'welcom_adult_famili',
  'adult_famili_anymor',
  'famili_anymor_appar',
  'anymor_appar_yell',
  'appar_yell_parent',
  'yell_parent_mine',
  'parent_mine_got',
  'mine_got_shit',
  'got_shit_tell',
  'shit_tell_said',
  'tell_said_busi',
  'said_busi_say',
  'busi_say_aita'],
 ['mom',
  'tradit',
  'everi',
  'christma',
  'get',
  'custon',
  'stock',
  'grandchildren',
  'name',
  'codi',
  'mia',
  'sammi',
  'alainaetc',
  'hang',
  'stock',
  'near',
  'fireplac',
  'wife',
  'togeth',
  'year',
  'son',
  'stepkid',
  'former',
  'marriag',
  'found',
  'tradit',
  'mom',
  'said',
  'expect',
  'stepson',
  'get',
  'custom',
  'stock',
  'hang',
  'along',
  'kid',
  'stock',
  'ask',
  'mom',
  'said',
  'love',
  'step',
  'grandchild',
  'feel',
  'comfort',
  'yet',
  'stock',
  'name',
  'gang',
  'home',
  'appar',
  'wife',
  'refus',
  'drop',
  'chose',
  'hill',
  'die',
  'even',
  'told',
  'would',
  'attend',
  'christma',
  'parti',
  'mom',
  'start',
  'argu',
  'day',
  'final',
  'blew',
  'told',
  'reason',
  'dictat',
  'mom',
  'decor',
  'home',
  'stock',
  'hang',
  'start',
  'cri',
  'call',
  'blind',
  'see',
  'famili',
  'treat',
  'stepson',
  'said',
  'love',
  'stock',
  'go',
  'prove',
  'anyth',
  'said',
  'go',
  'call',
  'ridicul',
  'decid',
  'go',
  'someth',
  'trivial',
  'conflict',
  'sinc',
  'refus',
  'even',
  'speak',
  'aitaa',
  'say',
  'ridicul',
  'decid',
  'go',
  'stock',
  'stepson',
  'age',
  'mom_tradit',
  'tradit_everi',
  'everi_christma',
  'christma_get',
  'get_custon',
  'custon_stock',
  'stock_grandchildren',
  'grandchildren_name',
  'name_codi',
  'codi_mia',
  'mia_sammi',
  'sammi_alainaetc',
  'alainaetc_hang',
  'hang_stock',
  'stock_near',
  'near_fireplac',
  'fireplac_wife',
  'wife_togeth',
  'togeth_year',
  'year_son',
  'son_stepkid',
  'stepkid_former',
  'former_marriag',
  'marriag_found',
  'found_tradit',
  'tradit_mom',
  'mom_said',
  'said_expect',
  'expect_stepson',
  'stepson_get',
  'get_custom',
  'custom_stock',
  'stock_hang',
  'hang_along',
  'along_kid',
  'kid_stock',
  'stock_ask',
  'ask_mom',
  'mom_said',
  'said_love',
  'love_step',
  'step_grandchild',
  'grandchild_feel',
  'feel_comfort',
  'comfort_yet',
  'yet_stock',
  'stock_name',
  'name_gang',
  'gang_home',
  'home_appar',
  'appar_wife',
  'wife_refus',
  'refus_drop',
  'drop_chose',
  'chose_hill',
  'hill_die',
  'die_even',
  'even_told',
  'told_would',
  'would_attend',
  'attend_christma',
  'christma_parti',
  'parti_mom',
  'mom_start',
  'start_argu',
  'argu_day',
  'day_final',
  'final_blew',
  'blew_told',
  'told_reason',
  'reason_dictat',
  'dictat_mom',
  'mom_decor',
  'decor_home',
  'home_stock',
  'stock_hang',
  'hang_start',
  'start_cri',
  'cri_call',
  'call_blind',
  'blind_see',
  'see_famili',
  'famili_treat',
  'treat_stepson',
  'stepson_said',
  'said_love',
  'love_stock',
  'stock_go',
  'go_prove',
  'prove_anyth',
  'anyth_said',
  'said_go',
  'go_call',
  'call_ridicul',
  'ridicul_decid',
  'decid_go',
  'go_someth',
  'someth_trivial',
  'trivial_conflict',
  'conflict_sinc',
  'sinc_refus',
  'refus_even',
  'even_speak',
  'speak_aitaa',
  'aitaa_say',
  'say_ridicul',
  'ridicul_decid',
  'decid_go',
  'go_stock',
  'stock_stepson',
  'stepson_age',
  'mom_tradit_everi',
  'tradit_everi_christma',
  'everi_christma_get',
  'christma_get_custon',
  'get_custon_stock',
  'custon_stock_grandchildren',
  'stock_grandchildren_name',
  'grandchildren_name_codi',
  'name_codi_mia',
  'codi_mia_sammi',
  'mia_sammi_alainaetc',
  'sammi_alainaetc_hang',
  'alainaetc_hang_stock',
  'hang_stock_near',
  'stock_near_fireplac',
  'near_fireplac_wife',
  'fireplac_wife_togeth',
  'wife_togeth_year',
  'togeth_year_son',
  'year_son_stepkid',
  'son_stepkid_former',
  'stepkid_former_marriag',
  'former_marriag_found',
  'marriag_found_tradit',
  'found_tradit_mom',
  'tradit_mom_said',
  'mom_said_expect',
  'said_expect_stepson',
  'expect_stepson_get',
  'stepson_get_custom',
  'get_custom_stock',
  'custom_stock_hang',
  'stock_hang_along',
  'hang_along_kid',
  'along_kid_stock',
  'kid_stock_ask',
  'stock_ask_mom',
  'ask_mom_said',
  'mom_said_love',
  'said_love_step',
  'love_step_grandchild',
  'step_grandchild_feel',
  'grandchild_feel_comfort',
  'feel_comfort_yet',
  'comfort_yet_stock',
  'yet_stock_name',
  'stock_name_gang',
  'name_gang_home',
  'gang_home_appar',
  'home_appar_wife',
  'appar_wife_refus',
  'wife_refus_drop',
  'refus_drop_chose',
  'drop_chose_hill',
  'chose_hill_die',
  'hill_die_even',
  'die_even_told',
  'even_told_would',
  'told_would_attend',
  'would_attend_christma',
  'attend_christma_parti',
  'christma_parti_mom',
  'parti_mom_start',
  'mom_start_argu',
  'start_argu_day',
  'argu_day_final',
  'day_final_blew',
  'final_blew_told',
  'blew_told_reason',
  'told_reason_dictat',
  'reason_dictat_mom',
  'dictat_mom_decor',
  'mom_decor_home',
  'decor_home_stock',
  'home_stock_hang',
  'stock_hang_start',
  'hang_start_cri',
  'start_cri_call',
  'cri_call_blind',
  'call_blind_see',
  'blind_see_famili',
  'see_famili_treat',
  'famili_treat_stepson',
  'treat_stepson_said',
  'stepson_said_love',
  'said_love_stock',
  'love_stock_go',
  'stock_go_prove',
  'go_prove_anyth',
  'prove_anyth_said',
  'anyth_said_go',
  'said_go_call',
  'go_call_ridicul',
  'call_ridicul_decid',
  'ridicul_decid_go',
  'decid_go_someth',
  'go_someth_trivial',
  'someth_trivial_conflict',
  'trivial_conflict_sinc',
  'conflict_sinc_refus',
  'sinc_refus_even',
  'refus_even_speak',
  'even_speak_aitaa',
  'speak_aitaa_say',
  'aitaa_say_ridicul',
  'say_ridicul_decid',
  'ridicul_decid_go',
  'decid_go_stock',
  'go_stock_stepson',
  'stock_stepson_age'],
 ['last',
  'year',
  'husband',
  'die',
  'car',
  'accid',
  'separ',
  'year',
  'prior',
  'offici',
  'divorc',
  'name',
  'administr',
  'estat',
  'home',
  'im',
  'financi',
  'independ',
  'two',
  'children',
  'togeth',
  'late',
  'summer',
  'last',
  'year',
  'learn',
  'parent',
  'beneficiari',
  'receiv',
  'boat',
  'load',
  'money',
  'sinc',
  'death',
  'parent',
  'told',
  'want',
  'buy',
  'home',
  'wait',
  'go',
  'purchas',
  'sinc',
  'august',
  'pay',
  'mortgag',
  'home',
  'ever',
  'sinc',
  'februari',
  'warn',
  'sick',
  'pay',
  'two',
  'mortgag',
  'need',
  'go',
  'purchas',
  'drag',
  'feet',
  'ever',
  'sinc',
  'told',
  'lawyer',
  'hand',
  'control',
  'lawyer',
  'receiv',
  'kind',
  'formal',
  'offer',
  'lawyer',
  'state',
  'interest',
  'last',
  'week',
  'approach',
  'gentleman',
  'pay',
  'good',
  'money',
  'home',
  'warn',
  'hope',
  'would',
  'make',
  'move',
  'forward',
  'end',
  'scof',
  'told',
  'need',
  'patient',
  'wait',
  'entir',
  'year',
  'wait',
  'let',
  'pay',
  'mortgag',
  'home',
  'support',
  'children',
  'go',
  'vacat',
  'make',
  'larg',
  'purchas',
  'pay',
  'debt',
  'life',
  'insur',
  'asshol',
  'accept',
  'offer',
  'someon',
  'sell',
  'home',
  'dead',
  'son',
  'wrong',
  'last_year',
  'year_husband',
  'husband_die',
  'die_car',
  'car_accid',
  'accid_separ',
  'separ_year',
  'year_prior',
  'prior_offici',
  'offici_divorc',
  'divorc_name',
  'name_administr',
  'administr_estat',
  'estat_home',
  'home_im',
  'im_financi',
  'financi_independ',
  'independ_two',
  'two_children',
  'children_togeth',
  'togeth_late',
  'late_summer',
  'summer_last',
  'last_year',
  'year_learn',
  'learn_parent',
  'parent_beneficiari',
  'beneficiari_receiv',
  'receiv_boat',
  'boat_load',
  'load_money',
  'money_sinc',
  'sinc_death',
  'death_parent',
  'parent_told',
  'told_want',
  'want_buy',
  'buy_home',
  'home_wait',
  'wait_go',
  'go_purchas',
  'purchas_sinc',
  'sinc_august',
  'august_pay',
  'pay_mortgag',
  'mortgag_home',
  'home_ever',
  'ever_sinc',
  'sinc_februari',
  'februari_warn',
  'warn_sick',
  'sick_pay',
  'pay_two',
  'two_mortgag',
  'mortgag_need',
  'need_go',
  'go_purchas',
  'purchas_drag',
  'drag_feet',
  'feet_ever',
  'ever_sinc',
  'sinc_told',
  'told_lawyer',
  'lawyer_hand',
  'hand_control',
  'control_lawyer',
  'lawyer_receiv',
  'receiv_kind',
  'kind_formal',
  'formal_offer',
  'offer_lawyer',
  'lawyer_state',
  'state_interest',
  'interest_last',
  'last_week',
  'week_approach',
  'approach_gentleman',
  'gentleman_pay',
  'pay_good',
  'good_money',
  'money_home',
  'home_warn',
  'warn_hope',
  'hope_would',
  'would_make',
  'make_move',
  'move_forward',
  'forward_end',
  'end_scof',
  'scof_told',
  'told_need',
  'need_patient',
  'patient_wait',
  'wait_entir',
  'entir_year',
  'year_wait',
  'wait_let',
  'let_pay',
  'pay_mortgag',
  'mortgag_home',
  'home_support',
  'support_children',
  'children_go',
  'go_vacat',
  'vacat_make',
  'make_larg',
  'larg_purchas',
  'purchas_pay',
  'pay_debt',
  'debt_life',
  'life_insur',
  'insur_asshol',
  'asshol_accept',
  'accept_offer',
  'offer_someon',
  'someon_sell',
  'sell_home',
  'home_dead',
  'dead_son',
  'son_wrong',
  'last_year_husband',
  'year_husband_die',
  'husband_die_car',
  'die_car_accid',
  'car_accid_separ',
  'accid_separ_year',
  'separ_year_prior',
  'year_prior_offici',
  'prior_offici_divorc',
  'offici_divorc_name',
  'divorc_name_administr',
  'name_administr_estat',
  'administr_estat_home',
  'estat_home_im',
  'home_im_financi',
  'im_financi_independ',
  'financi_independ_two',
  'independ_two_children',
  'two_children_togeth',
  'children_togeth_late',
  'togeth_late_summer',
  'late_summer_last',
  'summer_last_year',
  'last_year_learn',
  'year_learn_parent',
  'learn_parent_beneficiari',
  'parent_beneficiari_receiv',
  'beneficiari_receiv_boat',
  'receiv_boat_load',
  'boat_load_money',
  'load_money_sinc',
  'money_sinc_death',
  'sinc_death_parent',
  'death_parent_told',
  'parent_told_want',
  'told_want_buy',
  'want_buy_home',
  'buy_home_wait',
  'home_wait_go',
  'wait_go_purchas',
  'go_purchas_sinc',
  'purchas_sinc_august',
  'sinc_august_pay',
  'august_pay_mortgag',
  'pay_mortgag_home',
  'mortgag_home_ever',
  'home_ever_sinc',
  'ever_sinc_februari',
  'sinc_februari_warn',
  'februari_warn_sick',
  'warn_sick_pay',
  'sick_pay_two',
  'pay_two_mortgag',
  'two_mortgag_need',
  'mortgag_need_go',
  'need_go_purchas',
  'go_purchas_drag',
  'purchas_drag_feet',
  'drag_feet_ever',
  'feet_ever_sinc',
  'ever_sinc_told',
  'sinc_told_lawyer',
  'told_lawyer_hand',
  'lawyer_hand_control',
  'hand_control_lawyer',
  'control_lawyer_receiv',
  'lawyer_receiv_kind',
  'receiv_kind_formal',
  'kind_formal_offer',
  'formal_offer_lawyer',
  'offer_lawyer_state',
  'lawyer_state_interest',
  'state_interest_last',
  'interest_last_week',
  'last_week_approach',
  'week_approach_gentleman',
  'approach_gentleman_pay',
  'gentleman_pay_good',
  'pay_good_money',
  'good_money_home',
  'money_home_warn',
  'home_warn_hope',
  'warn_hope_would',
  'hope_would_make',
  'would_make_move',
  'make_move_forward',
  'move_forward_end',
  'forward_end_scof',
  'end_scof_told',
  'scof_told_need',
  'told_need_patient',
  'need_patient_wait',
  'patient_wait_entir',
  'wait_entir_year',
  'entir_year_wait',
  'year_wait_let',
  'wait_let_pay',
  'let_pay_mortgag',
  'pay_mortgag_home',
  'mortgag_home_support',
  'home_support_children',
  'support_children_go',
  'children_go_vacat',
  'go_vacat_make',
  'vacat_make_larg',
  'make_larg_purchas',
  'larg_purchas_pay',
  'purchas_pay_debt',
  'pay_debt_life',
  'debt_life_insur',
  'life_insur_asshol',
  'insur_asshol_accept',
  'asshol_accept_offer',
  'accept_offer_someon',
  'offer_someon_sell',
  'someon_sell_home',
  'sell_home_dead',
  'home_dead_son',
  'dead_son_wrong'],
 ['son',
  'found',
  'one',
  'ex',
  'girlfriend',
  'month',
  'pregnant',
  'knew',
  'noth',
  'sort',
  'pregnant',
  'expect',
  'accept',
  'everyth',
  'question',
  'ask',
  'daughter',
  'good',
  'friend',
  'girl',
  'knew',
  'pregnanc',
  'said',
  'noth',
  'us',
  'friend',
  'ask',
  'son',
  'head',
  'heel',
  'ladi',
  'end',
  'break',
  'heart',
  'cheat',
  'needi',
  'manipul',
  'spend',
  'alot',
  'money',
  'would',
  'ask',
  'gift',
  'son',
  'even',
  'afford',
  'convinc',
  'use',
  'one',
  'credit',
  'card',
  'achiev',
  'daughter',
  'current',
  'live',
  'us',
  'actual',
  'room',
  'colleg',
  'also',
  'manipul',
  'think',
  'dose',
  'good',
  'believ',
  'convinc',
  'brother',
  'use',
  'credit',
  'even',
  'cheat',
  'show',
  'son',
  'ex',
  'girlfriend',
  'door',
  'help',
  'tell',
  'us',
  'pregnant',
  'seen',
  'door',
  'visual',
  'pregnant',
  'knew',
  'gon',
  'na',
  'say',
  'son',
  'father',
  'child',
  'immedi',
  'said',
  'son',
  'put',
  'money',
  'time',
  'patern',
  'test',
  'prove',
  'child',
  'son',
  'back',
  'agre',
  'daughter',
  'horrifi',
  'comment',
  'accus',
  'encourag',
  'dead',
  'beat',
  'father',
  'upset',
  'even',
  'give',
  'chanc',
  'explain',
  'son',
  'ex',
  'start',
  'cri',
  'say',
  'alway',
  'assum',
  'worst',
  'went',
  'month',
  'pregnanc',
  'alon',
  'least',
  'could',
  'ensur',
  'taken',
  'care',
  'better',
  'child',
  'agre',
  'child',
  'gon',
  'na',
  'ensur',
  'mom',
  'well',
  'ensur',
  'babi',
  'well',
  'want',
  'son',
  'involv',
  'get',
  'heart',
  'broken',
  'find',
  'child',
  'asshol',
  'quick',
  'updat',
  '--',
  'daughter',
  'spoke',
  'phone',
  'explain',
  'babi',
  'realli',
  'text',
  'lock',
  'respons',
  'babi',
  'way',
  'id',
  'ever',
  'encourag',
  'son',
  'abandon',
  'grandbabi',
  'daughter',
  'final',
  'agre',
  'test',
  'would',
  'benefici',
  'told',
  'shed',
  'call',
  'back',
  'later',
  'end',
  'get',
  'text',
  'back',
  'instead',
  'call',
  'ask',
  'could',
  'come',
  'back',
  'talk',
  'agre',
  'came',
  'son',
  'ex',
  'admit',
  'actual',
  'know',
  'father',
  'relationship',
  'multipl',
  'guy',
  'took',
  'long',
  'tell',
  'son',
  'tri',
  'figur',
  'father',
  'child',
  'certain',
  'son',
  'agre',
  'patern',
  'test',
  'soon',
  'abl',
  'one',
  'condit',
  'pay',
  'one',
  'thing',
  'found',
  'daughter',
  'son',
  'ex',
  'actual',
  'develop',
  'romant',
  'relationship',
  'beyond',
  'shock',
  'mean',
  'explain',
  'stick',
  'son',
  'ex',
  'much',
  'someth',
  'thought',
  'daughter',
  'would',
  'ever',
  'mean',
  'brother',
  'ex',
  'someon',
  'break',
  'hreat',
  'someth',
  'understand',
  'ill',
  'alway',
  'love',
  'daughter',
  'hurt',
  'see',
  'son',
  'feel',
  'realli',
  'hurt',
  'whole',
  'situat',
  'son_found',
  'found_one',
  'one_ex',
  'ex_girlfriend',
  'girlfriend_month',
  'month_pregnant',
  'pregnant_knew',
  'knew_noth',
  'noth_sort',
  'sort_pregnant',
  'pregnant_expect',
  'expect_accept',
  'accept_everyth',
  'everyth_question',
  'question_ask',
  'ask_daughter',
  'daughter_good',
  'good_friend',
  'friend_girl',
  'girl_knew',
  'knew_pregnanc',
  'pregnanc_said',
  'said_noth',
  'noth_us',
  'us_friend',
  'friend_ask',
  'ask_son',
  'son_head',
  'head_heel',
  'heel_ladi',
  'ladi_end',
  'end_break',
  'break_heart',
  'heart_cheat',
  'cheat_needi',
  'needi_manipul',
  'manipul_spend',
  'spend_alot',
  'alot_money',
  'money_would',
  'would_ask',
  'ask_gift',
  'gift_son',
  'son_even',
  'even_afford',
  'afford_convinc',
  'convinc_use',
  'use_one',
  'one_credit',
  'credit_card',
  'card_achiev',
  'achiev_daughter',
  'daughter_current',
  'current_live',
  'live_us',
  'us_actual',
  'actual_room',
  'room_colleg',
  'colleg_also',
  'also_manipul',
  'manipul_think',
  'think_dose',
  'dose_good',
  'good_believ',
  'believ_convinc',
  'convinc_brother',
  'brother_use',
  'use_credit',
  'credit_even',
  'even_cheat',
  'cheat_show',
  'show_son',
  'son_ex',
  'ex_girlfriend',
  'girlfriend_door',
  'door_help',
  'help_tell',
  'tell_us',
  'us_pregnant',
  'pregnant_seen',
  'seen_door',
  'door_visual',
  'visual_pregnant',
  'pregnant_knew',
  'knew_gon',
  'gon_na',
  'na_say',
  'say_son',
  'son_father',
  'father_child',
  'child_immedi',
  'immedi_said',
  'said_son',
  'son_put',
  'put_money',
  'money_time',
  'time_patern',
  'patern_test',
  'test_prove',
  'prove_child',
  'child_son',
  'son_back',
  'back_agre',
  'agre_daughter',
  'daughter_horrifi',
  'horrifi_comment',
  'comment_accus',
  'accus_encourag',
  'encourag_dead',
  'dead_beat',
  'beat_father',
  'father_upset',
  'upset_even',
  'even_give',
  'give_chanc',
  'chanc_explain',
  'explain_son',
  'son_ex',
  'ex_start',
  'start_cri',
  'cri_say',
  'say_alway',
  'alway_assum',
  'assum_worst',
  'worst_went',
  'went_month',
  'month_pregnanc',
  'pregnanc_alon',
  'alon_least',
  'least_could',
  'could_ensur',
  'ensur_taken',
  'taken_care',
  'care_better',
  'better_child',
  'child_agre',
  'agre_child',
  'child_gon',
  'gon_na',
  'na_ensur',
  'ensur_mom',
  'mom_well',
  'well_ensur',
  'ensur_babi',
  'babi_well',
  'well_want',
  'want_son',
  'son_involv',
  'involv_get',
  'get_heart',
  'heart_broken',
  'broken_find',
  'find_child',
  'child_asshol',
  'asshol_quick',
  'quick_updat',
  'updat_--',
  '--_daughter',
  'daughter_spoke',
  'spoke_phone',
  'phone_explain',
  'explain_babi',
  'babi_realli',
  'realli_text',
  'text_lock',
  'lock_respons',
  'respons_babi',
  'babi_way',
  'way_id',
  'id_ever',
  'ever_encourag',
  'encourag_son',
  'son_abandon',
  'abandon_grandbabi',
  'grandbabi_daughter',
  'daughter_final',
  'final_agre',
  'agre_test',
  'test_would',
  'would_benefici',
  'benefici_told',
  'told_shed',
  'shed_call',
  'call_back',
  'back_later',
  'later_end',
  'end_get',
  'get_text',
  'text_back',
  'back_instead',
  'instead_call',
  'call_ask',
  'ask_could',
  'could_come',
  'come_back',
  'back_talk',
  'talk_agre',
  'agre_came',
  'came_son',
  'son_ex',
  'ex_admit',
  'admit_actual',
  'actual_know',
  'know_father',
  'father_relationship',
  'relationship_multipl',
  'multipl_guy',
  'guy_took',
  'took_long',
  'long_tell',
  'tell_son',
  'son_tri',
  'tri_figur',
  'figur_father',
  'father_child',
  'child_certain',
  'certain_son',
  'son_agre',
  'agre_patern',
  'patern_test',
  'test_soon',
  'soon_abl',
  'abl_one',
  'one_condit',
  'condit_pay',
  'pay_one',
  'one_thing',
  'thing_found',
  'found_daughter',
  'daughter_son',
  'son_ex',
  'ex_actual',
  'actual_develop',
  'develop_romant',
  'romant_relationship',
  'relationship_beyond',
  'beyond_shock',
  'shock_mean',
  'mean_explain',
  'explain_stick',
  'stick_son',
  'son_ex',
  'ex_much',
  'much_someth',
  'someth_thought',
  'thought_daughter',
  'daughter_would',
  'would_ever',
  'ever_mean',
  'mean_brother',
  'brother_ex',
  'ex_someon',
  'someon_break',
  'break_hreat',
  'hreat_someth',
  'someth_understand',
  'understand_ill',
  'ill_alway',
  'alway_love',
  'love_daughter',
  'daughter_hurt',
  'hurt_see',
  'see_son',
  'son_feel',
  'feel_realli',
  'realli_hurt',
  'hurt_whole',
  'whole_situat',
  'son_found_one',
  'found_one_ex',
  'one_ex_girlfriend',
  'ex_girlfriend_month',
  'girlfriend_month_pregnant',
  'month_pregnant_knew',
  'pregnant_knew_noth',
  'knew_noth_sort',
  'noth_sort_pregnant',
  'sort_pregnant_expect',
  'pregnant_expect_accept',
  'expect_accept_everyth',
  'accept_everyth_question',
  'everyth_question_ask',
  'question_ask_daughter',
  'ask_daughter_good',
  'daughter_good_friend',
  'good_friend_girl',
  'friend_girl_knew',
  'girl_knew_pregnanc',
  'knew_pregnanc_said',
  'pregnanc_said_noth',
  'said_noth_us',
  'noth_us_friend',
  'us_friend_ask',
  'friend_ask_son',
  'ask_son_head',
  'son_head_heel',
  'head_heel_ladi',
  'heel_ladi_end',
  'ladi_end_break',
  'end_break_heart',
  'break_heart_cheat',
  'heart_cheat_needi',
  'cheat_needi_manipul',
  'needi_manipul_spend',
  'manipul_spend_alot',
  'spend_alot_money',
  'alot_money_would',
  'money_would_ask',
  'would_ask_gift',
  'ask_gift_son',
  'gift_son_even',
  'son_even_afford',
  'even_afford_convinc',
  'afford_convinc_use',
  'convinc_use_one',
  'use_one_credit',
  'one_credit_card',
  'credit_card_achiev',
  'card_achiev_daughter',
  'achiev_daughter_current',
  'daughter_current_live',
  'current_live_us',
  'live_us_actual',
  'us_actual_room',
  'actual_room_colleg',
  'room_colleg_also',
  'colleg_also_manipul',
  'also_manipul_think',
  'manipul_think_dose',
  'think_dose_good',
  'dose_good_believ',
  'good_believ_convinc',
  'believ_convinc_brother',
  'convinc_brother_use',
  'brother_use_credit',
  'use_credit_even',
  'credit_even_cheat',
  'even_cheat_show',
  'cheat_show_son',
  'show_son_ex',
  'son_ex_girlfriend',
  'ex_girlfriend_door',
  'girlfriend_door_help',
  'door_help_tell',
  'help_tell_us',
  'tell_us_pregnant',
  'us_pregnant_seen',
  'pregnant_seen_door',
  'seen_door_visual',
  'door_visual_pregnant',
  'visual_pregnant_knew',
  'pregnant_knew_gon',
  'knew_gon_na',
  'gon_na_say',
  'na_say_son',
  'say_son_father',
  'son_father_child',
  'father_child_immedi',
  'child_immedi_said',
  'immedi_said_son',
  'said_son_put',
  'son_put_money',
  'put_money_time',
  'money_time_patern',
  'time_patern_test',
  'patern_test_prove',
  'test_prove_child',
  'prove_child_son',
  'child_son_back',
  'son_back_agre',
  'back_agre_daughter',
  'agre_daughter_horrifi',
  'daughter_horrifi_comment',
  'horrifi_comment_accus',
  'comment_accus_encourag',
  'accus_encourag_dead',
  'encourag_dead_beat',
  'dead_beat_father',
  'beat_father_upset',
  'father_upset_even',
  'upset_even_give',
  'even_give_chanc',
  'give_chanc_explain',
  'chanc_explain_son',
  'explain_son_ex',
  'son_ex_start',
  'ex_start_cri',
  'start_cri_say',
  'cri_say_alway',
  'say_alway_assum',
  'alway_assum_worst',
  'assum_worst_went',
  'worst_went_month',
  'went_month_pregnanc',
  'month_pregnanc_alon',
  'pregnanc_alon_least',
  'alon_least_could',
  'least_could_ensur',
  'could_ensur_taken',
  'ensur_taken_care',
  'taken_care_better',
  'care_better_child',
  'better_child_agre',
  'child_agre_child',
  'agre_child_gon',
  'child_gon_na',
  'gon_na_ensur',
  'na_ensur_mom',
  'ensur_mom_well',
  'mom_well_ensur',
  'well_ensur_babi',
  'ensur_babi_well',
  'babi_well_want',
  'well_want_son',
  'want_son_involv',
  'son_involv_get',
  'involv_get_heart',
  'get_heart_broken',
  'heart_broken_find',
  'broken_find_child',
  'find_child_asshol',
  'child_asshol_quick',
  'asshol_quick_updat',
  'quick_updat_--',
  'updat_--_daughter',
  '--_daughter_spoke',
  'daughter_spoke_phone',
  'spoke_phone_explain',
  'phone_explain_babi',
  'explain_babi_realli',
  'babi_realli_text',
  'realli_text_lock',
  'text_lock_respons',
  'lock_respons_babi',
  'respons_babi_way',
  'babi_way_id',
  'way_id_ever',
  'id_ever_encourag',
  'ever_encourag_son',
  'encourag_son_abandon',
  'son_abandon_grandbabi',
  'abandon_grandbabi_daughter',
  'grandbabi_daughter_final',
  'daughter_final_agre',
  'final_agre_test',
  'agre_test_would',
  'test_would_benefici',
  'would_benefici_told',
  'benefici_told_shed',
  'told_shed_call',
  'shed_call_back',
  'call_back_later',
  'back_later_end',
  'later_end_get',
  'end_get_text',
  'get_text_back',
  'text_back_instead',
  'back_instead_call',
  'instead_call_ask',
  'call_ask_could',
  'ask_could_come',
  'could_come_back',
  'come_back_talk',
  'back_talk_agre',
  'talk_agre_came',
  'agre_came_son',
  'came_son_ex',
  'son_ex_admit',
  'ex_admit_actual',
  'admit_actual_know',
  'actual_know_father',
  'know_father_relationship',
  'father_relationship_multipl',
  'relationship_multipl_guy',
  'multipl_guy_took',
  'guy_took_long',
  'took_long_tell',
  'long_tell_son',
  'tell_son_tri',
  'son_tri_figur',
  'tri_figur_father',
  'figur_father_child',
  'father_child_certain',
  'child_certain_son',
  'certain_son_agre',
  'son_agre_patern',
  'agre_patern_test',
  'patern_test_soon',
  'test_soon_abl',
  'soon_abl_one',
  'abl_one_condit',
  'one_condit_pay',
  'condit_pay_one',
  'pay_one_thing',
  'one_thing_found',
  'thing_found_daughter',
  'found_daughter_son',
  'daughter_son_ex',
  'son_ex_actual',
  'ex_actual_develop',
  'actual_develop_romant',
  'develop_romant_relationship',
  'romant_relationship_beyond',
  'relationship_beyond_shock',
  'beyond_shock_mean',
  'shock_mean_explain',
  'mean_explain_stick',
  'explain_stick_son',
  'stick_son_ex',
  'son_ex_much',
  'ex_much_someth',
  'much_someth_thought',
  'someth_thought_daughter',
  'thought_daughter_would',
  'daughter_would_ever',
  'would_ever_mean',
  'ever_mean_brother',
  'mean_brother_ex',
  'brother_ex_someon',
  'ex_someon_break',
  'someon_break_hreat',
  'break_hreat_someth',
  'hreat_someth_understand',
  'someth_understand_ill',
  'understand_ill_alway',
  'ill_alway_love',
  'alway_love_daughter',
  'love_daughter_hurt',
  'daughter_hurt_see',
  'hurt_see_son',
  'see_son_feel',
  'son_feel_realli',
  'feel_realli_hurt',
  'realli_hurt_whole',
  'hurt_whole_situat'],
 ['rent',
  'guy',
  'ty',
  'michael',
  'simon',
  'simon',
  'diabet',
  'hard',
  'time',
  'manag',
  'problem',
  'start',
  '-',
  'im',
  'last',
  'get',
  'home',
  'arriv',
  'guy',
  'home',
  'everytim',
  'tri',
  'order',
  'food',
  'restaur',
  'id',
  'ask',
  'guy',
  'want',
  'order',
  'well',
  'say',
  'first',
  'food',
  'arriv',
  'gather',
  'around',
  'livingroom',
  'help',
  'food',
  'irk',
  'lot',
  'sinc',
  'kept',
  'happen',
  'im',
  'nice',
  'tell',
  'day',
  'ago',
  'came',
  'home',
  'simon',
  'sit',
  'couch',
  'guy',
  'still',
  'order',
  'food',
  '*',
  '*',
  'ask',
  'want',
  'said',
  'time',
  'avoid',
  'share',
  'food',
  'decid',
  'go',
  'eat',
  'room',
  'food',
  'arriv',
  'ngl',
  'got',
  'look',
  'simon',
  'thought',
  'noth',
  'went',
  'bed',
  'pm',
  'around',
  'woke',
  'loud',
  'knock',
  'door',
  'open',
  'door',
  'ty',
  'yell',
  'say',
  'simon',
  'hypoglycem',
  'episod',
  'muchael',
  'drove',
  'hospit',
  'refus',
  'share',
  'dinner',
  'earlier',
  'understand',
  'eat',
  'hour',
  '*',
  'count',
  '*',
  'eat',
  'dinner',
  'took',
  'food',
  'room',
  'get',
  'ty',
  'start',
  'argu',
  'call',
  'selfish',
  'fuck',
  'hidingwithhold',
  'food',
  'let',
  'simon',
  'go',
  'know',
  'diabet',
  'cant',
  'stay',
  'without',
  'food',
  'long',
  'period',
  'time',
  'thank',
  'god',
  'recogn',
  'symptom',
  'took',
  'hospit',
  'earli',
  'said',
  'alreadi',
  'ask',
  'simon',
  'want',
  'eat',
  'said',
  '-',
  'ty',
  'said',
  'caus',
  'simon',
  'gon',
  'na',
  'say',
  'sinc',
  'hed',
  'money',
  'buy',
  'food',
  'hope',
  'id',
  'share',
  'hid',
  'instead',
  'said',
  'oblig',
  'pay',
  'food',
  'set',
  'horribl',
  'attitud',
  'dollar',
  'money',
  'issu',
  'simon',
  'talk',
  'michael',
  'ty',
  'kept',
  'blame',
  'said',
  'longer',
  'trust',
  'around',
  'simon',
  'moreov',
  'michael',
  'call',
  'simon',
  'parent',
  'argument',
  'caus',
  'said',
  'excus',
  'treat',
  'diabet',
  'like',
  'ive',
  'get',
  'lot',
  'bash',
  'feel',
  'incred',
  'guilti',
  'think',
  'might',
  'contribut',
  'way',
  'rent_guy',
  'guy_ty',
  'ty_michael',
  'michael_simon',
  'simon_simon',
  'simon_diabet',
  'diabet_hard',
  'hard_time',
  'time_manag',
  'manag_problem',
  'problem_start',
  'start_-',
  '-_im',
  'im_last',
  'last_get',
  'get_home',
  'home_arriv',
  'arriv_guy',
  'guy_home',
  'home_everytim',
  'everytim_tri',
  'tri_order',
  'order_food',
  'food_restaur',
  'restaur_id',
  'id_ask',
  'ask_guy',
  'guy_want',
  'want_order',
  'order_well',
  'well_say',
  'say_first',
  'first_food',
  'food_arriv',
  'arriv_gather',
  'gather_around',
  'around_livingroom',
  'livingroom_help',
  'help_food',
  'food_irk',
  'irk_lot',
  'lot_sinc',
  'sinc_kept',
  'kept_happen',
  'happen_im',
  'im_nice',
  'nice_tell',
  'tell_day',
  'day_ago',
  'ago_came',
  'came_home',
  'home_simon',
  'simon_sit',
  'sit_couch',
  'couch_guy',
  'guy_still',
  'still_order',
  'order_food',
  'food_*',
  '*_*',
  '*_ask',
  'ask_want',
  'want_said',
  'said_time',
  'time_avoid',
  'avoid_share',
  'share_food',
  'food_decid',
  'decid_go',
  'go_eat',
  'eat_room',
  'room_food',
  'food_arriv',
  'arriv_ngl',
  'ngl_got',
  'got_look',
  'look_simon',
  'simon_thought',
  'thought_noth',
  'noth_went',
  'went_bed',
  'bed_pm',
  'pm_around',
  'around_woke',
  'woke_loud',
  'loud_knock',
  'knock_door',
  'door_open',
  'open_door',
  'door_ty',
  'ty_yell',
  'yell_say',
  'say_simon',
  'simon_hypoglycem',
  'hypoglycem_episod',
  'episod_muchael',
  'muchael_drove',
  'drove_hospit',
  'hospit_refus',
  'refus_share',
  'share_dinner',
  'dinner_earlier',
  'earlier_understand',
  'understand_eat',
  'eat_hour',
  'hour_*',
  '*_count',
  'count_*',
  '*_eat',
  'eat_dinner',
  'dinner_took',
  'took_food',
  'food_room',
  'room_get',
  'get_ty',
  'ty_start',
  'start_argu',
  'argu_call',
  'call_selfish',
  'selfish_fuck',
  'fuck_hidingwithhold',
  'hidingwithhold_food',
  'food_let',
  'let_simon',
  'simon_go',
  'go_know',
  'know_diabet',
  'diabet_cant',
  'cant_stay',
  'stay_without',
  'without_food',
  'food_long',
  'long_period',
  'period_time',
  'time_thank',
  'thank_god',
  'god_recogn',
  'recogn_symptom',
  'symptom_took',
  'took_hospit',
  'hospit_earli',
  'earli_said',
  'said_alreadi',
  'alreadi_ask',
  'ask_simon',
  'simon_want',
  'want_eat',
  'eat_said',
  'said_-',
  '-_ty',
  'ty_said',
  'said_caus',
  'caus_simon',
  'simon_gon',
  'gon_na',
  'na_say',
  'say_sinc',
  'sinc_hed',
  'hed_money',
  'money_buy',
  'buy_food',
  'food_hope',
  'hope_id',
  'id_share',
  'share_hid',
  'hid_instead',
  'instead_said',
  'said_oblig',
  'oblig_pay',
  'pay_food',
  'food_set',
  'set_horribl',
  'horribl_attitud',
  'attitud_dollar',
  'dollar_money',
  'money_issu',
  'issu_simon',
  'simon_talk',
  'talk_michael',
  'michael_ty',
  'ty_kept',
  'kept_blame',
  'blame_said',
  'said_longer',
  'longer_trust',
  'trust_around',
  'around_simon',
  'simon_moreov',
  'moreov_michael',
  'michael_call',
  'call_simon',
  'simon_parent',
  'parent_argument',
  'argument_caus',
  'caus_said',
  'said_excus',
  'excus_treat',
  'treat_diabet',
  'diabet_like',
  'like_ive',
  'ive_get',
  'get_lot',
  'lot_bash',
  'bash_feel',
  'feel_incred',
  'incred_guilti',
  'guilti_think',
  'think_might',
  'might_contribut',
  'contribut_way',
  'rent_guy_ty',
  'guy_ty_michael',
  'ty_michael_simon',
  'michael_simon_simon',
  'simon_simon_diabet',
  'simon_diabet_hard',
  'diabet_hard_time',
  'hard_time_manag',
  'time_manag_problem',
  'manag_problem_start',
  'problem_start_-',
  'start_-_im',
  '-_im_last',
  'im_last_get',
  'last_get_home',
  'get_home_arriv',
  'home_arriv_guy',
  'arriv_guy_home',
  'guy_home_everytim',
  'home_everytim_tri',
  'everytim_tri_order',
  'tri_order_food',
  'order_food_restaur',
  'food_restaur_id',
  'restaur_id_ask',
  'id_ask_guy',
  'ask_guy_want',
  'guy_want_order',
  'want_order_well',
  'order_well_say',
  'well_say_first',
  'say_first_food',
  'first_food_arriv',
  'food_arriv_gather',
  'arriv_gather_around',
  'gather_around_livingroom',
  'around_livingroom_help',
  'livingroom_help_food',
  'help_food_irk',
  'food_irk_lot',
  'irk_lot_sinc',
  'lot_sinc_kept',
  'sinc_kept_happen',
  'kept_happen_im',
  'happen_im_nice',
  'im_nice_tell',
  'nice_tell_day',
  'tell_day_ago',
  'day_ago_came',
  'ago_came_home',
  'came_home_simon',
  'home_simon_sit',
  'simon_sit_couch',
  'sit_couch_guy',
  'couch_guy_still',
  'guy_still_order',
  'still_order_food',
  'order_food_*',
  'food_*_*',
  '*_*_ask',
  '*_ask_want',
  'ask_want_said',
  'want_said_time',
  'said_time_avoid',
  'time_avoid_share',
  'avoid_share_food',
  'share_food_decid',
  'food_decid_go',
  'decid_go_eat',
  'go_eat_room',
  'eat_room_food',
  'room_food_arriv',
  'food_arriv_ngl',
  'arriv_ngl_got',
  'ngl_got_look',
  'got_look_simon',
  'look_simon_thought',
  'simon_thought_noth',
  'thought_noth_went',
  'noth_went_bed',
  'went_bed_pm',
  'bed_pm_around',
  'pm_around_woke',
  'around_woke_loud',
  'woke_loud_knock',
  'loud_knock_door',
  'knock_door_open',
  'door_open_door',
  'open_door_ty',
  'door_ty_yell',
  'ty_yell_say',
  'yell_say_simon',
  'say_simon_hypoglycem',
  'simon_hypoglycem_episod',
  'hypoglycem_episod_muchael',
  'episod_muchael_drove',
  'muchael_drove_hospit',
  'drove_hospit_refus',
  'hospit_refus_share',
  'refus_share_dinner',
  'share_dinner_earlier',
  'dinner_earlier_understand',
  'earlier_understand_eat',
  'understand_eat_hour',
  'eat_hour_*',
  'hour_*_count',
  '*_count_*',
  'count_*_eat',
  '*_eat_dinner',
  'eat_dinner_took',
  'dinner_took_food',
  'took_food_room',
  'food_room_get',
  'room_get_ty',
  'get_ty_start',
  'ty_start_argu',
  'start_argu_call',
  'argu_call_selfish',
  'call_selfish_fuck',
  'selfish_fuck_hidingwithhold',
  'fuck_hidingwithhold_food',
  'hidingwithhold_food_let',
  'food_let_simon',
  'let_simon_go',
  'simon_go_know',
  'go_know_diabet',
  'know_diabet_cant',
  'diabet_cant_stay',
  'cant_stay_without',
  'stay_without_food',
  'without_food_long',
  'food_long_period',
  'long_period_time',
  'period_time_thank',
  'time_thank_god',
  'thank_god_recogn',
  'god_recogn_symptom',
  'recogn_symptom_took',
  'symptom_took_hospit',
  'took_hospit_earli',
  'hospit_earli_said',
  'earli_said_alreadi',
  'said_alreadi_ask',
  'alreadi_ask_simon',
  'ask_simon_want',
  'simon_want_eat',
  'want_eat_said',
  'eat_said_-',
  'said_-_ty',
  '-_ty_said',
  'ty_said_caus',
  'said_caus_simon',
  'caus_simon_gon',
  'simon_gon_na',
  'gon_na_say',
  'na_say_sinc',
  'say_sinc_hed',
  'sinc_hed_money',
  'hed_money_buy',
  'money_buy_food',
  'buy_food_hope',
  'food_hope_id',
  'hope_id_share',
  'id_share_hid',
  'share_hid_instead',
  'hid_instead_said',
  'instead_said_oblig',
  'said_oblig_pay',
  'oblig_pay_food',
  'pay_food_set',
  'food_set_horribl',
  'set_horribl_attitud',
  'horribl_attitud_dollar',
  'attitud_dollar_money',
  'dollar_money_issu',
  'money_issu_simon',
  'issu_simon_talk',
  'simon_talk_michael',
  'talk_michael_ty',
  'michael_ty_kept',
  'ty_kept_blame',
  'kept_blame_said',
  'blame_said_longer',
  'said_longer_trust',
  'longer_trust_around',
  'trust_around_simon',
  'around_simon_moreov',
  'simon_moreov_michael',
  'moreov_michael_call',
  'michael_call_simon',
  'call_simon_parent',
  'simon_parent_argument',
  'parent_argument_caus',
  'argument_caus_said',
  'caus_said_excus',
  'said_excus_treat',
  'excus_treat_diabet',
  'treat_diabet_like',
  'diabet_like_ive',
  'like_ive_get',
  'ive_get_lot',
  'get_lot_bash',
  'lot_bash_feel',
  'bash_feel_incred',
  'feel_incred_guilti',
  'incred_guilti_think',
  'guilti_think_might',
  'think_might_contribut',
  'might_contribut_way'],
 ['know',
  'titl',
  'sound',
  'ridicul',
  'context',
  'im',
  'current',
  'high',
  'school',
  'live',
  'dad',
  'brother',
  'mom',
  'pictur',
  'anymor',
  'im',
  'close',
  'father',
  'bad',
  'dad',
  'littl',
  'old',
  'fashion',
  'closer',
  'brother',
  'hobbi',
  'etc',
  'onto',
  'problem',
  'know',
  'start',
  'past',
  'coupl',
  'month',
  'dad',
  'brother',
  'start',
  'teas',
  'time',
  'month',
  'time',
  'even',
  'get',
  'remot',
  'irrit',
  'upset',
  'exampl',
  'brother',
  'ate',
  'snack',
  'mine',
  'save',
  'got',
  'mad',
  'joke',
  'oh',
  'time',
  'super',
  'annoy',
  'voic',
  'ive',
  'kept',
  'tri',
  'tell',
  'separ',
  'togeth',
  'realli',
  'annoy',
  'offens',
  'feel',
  'like',
  'theyr',
  'total',
  'minim',
  'feel',
  'thing',
  'feel',
  'valid',
  'reason',
  'annoy',
  'brush',
  'even',
  'chalk',
  'period',
  'matter',
  'time',
  'month',
  'well',
  'yesterday',
  'dinner',
  'whole',
  'famili',
  'dad',
  'side',
  'aunt',
  'birthday',
  'dinner',
  'got',
  'huge',
  'fight',
  'brother',
  'broke',
  'ipad',
  'instead',
  'apolog',
  'said',
  'whole',
  'time',
  'month',
  'thing',
  'admit',
  'time',
  'got',
  'grandma',
  'hous',
  'pretti',
  'piss',
  'cousin',
  'ask',
  'wrong',
  'dinner',
  'could',
  'explain',
  'brother',
  'interrupt',
  'oh',
  '*',
  'ladi',
  '*',
  'problem',
  'usual',
  'ignor',
  'hold',
  'thing',
  'enough',
  'start',
  'bawl',
  'admit',
  'kind',
  'went',
  'ham',
  'purpos',
  'caus',
  'scene',
  'freak',
  'whole',
  'famili',
  'aunt',
  'ask',
  'dad',
  'upset',
  'know',
  'told',
  'aunt',
  '*',
  'ladi',
  '*',
  'reason',
  'accord',
  'dad',
  'brother',
  'aunt',
  'grandma',
  'piss',
  'dad',
  'brother',
  'total',
  'got',
  'ream',
  'dinner',
  'tabl',
  'whole',
  'thing',
  'could',
  'tell',
  'super',
  'embarrass',
  'later',
  'night',
  'brother',
  'dad',
  'said',
  'ah',
  'caus',
  'scene',
  'embarrass',
  'said',
  'act',
  'like',
  'alway',
  'say',
  'guess',
  'dinner',
  'like',
  'plan',
  'know_titl',
  'titl_sound',
  'sound_ridicul',
  'ridicul_context',
  'context_im',
  'im_current',
  'current_high',
  'high_school',
  'school_live',
  'live_dad',
  'dad_brother',
  'brother_mom',
  'mom_pictur',
  'pictur_anymor',
  'anymor_im',
  'im_close',
  'close_father',
  'father_bad',
  'bad_dad',
  'dad_littl',
  'littl_old',
  'old_fashion',
  'fashion_closer',
  'closer_brother',
  'brother_hobbi',
  'hobbi_etc',
  'etc_onto',
  'onto_problem',
  'problem_know',
  'know_start',
  'start_past',
  'past_coupl',
  'coupl_month',
  'month_dad',
  'dad_brother',
  'brother_start',
  'start_teas',
  'teas_time',
  'time_month',
  'month_time',
  'time_even',
  'even_get',
  'get_remot',
  'remot_irrit',
  'irrit_upset',
  'upset_exampl',
  'exampl_brother',
  'brother_ate',
  'ate_snack',
  'snack_mine',
  'mine_save',
  'save_got',
  'got_mad',
  'mad_joke',
  'joke_oh',
  'oh_time',
  'time_super',
  'super_annoy',
  'annoy_voic',
  'voic_ive',
  'ive_kept',
  'kept_tri',
  'tri_tell',
  'tell_separ',
  'separ_togeth',
  'togeth_realli',
  'realli_annoy',
  'annoy_offens',
  'offens_feel',
  'feel_like',
  'like_theyr',
  'theyr_total',
  'total_minim',
  'minim_feel',
  'feel_thing',
  'thing_feel',
  'feel_valid',
  'valid_reason',
  'reason_annoy',
  'annoy_brush',
  'brush_even',
  'even_chalk',
  'chalk_period',
  'period_matter',
  'matter_time',
  'time_month',
  'month_well',
  'well_yesterday',
  'yesterday_dinner',
  'dinner_whole',
  'whole_famili',
  'famili_dad',
  'dad_side',
  'side_aunt',
  'aunt_birthday',
  'birthday_dinner',
  'dinner_got',
  'got_huge',
  'huge_fight',
  'fight_brother',
  'brother_broke',
  'broke_ipad',
  'ipad_instead',
  'instead_apolog',
  'apolog_said',
  'said_whole',
  'whole_time',
  'time_month',
  'month_thing',
  'thing_admit',
  'admit_time',
  'time_got',
  'got_grandma',
  'grandma_hous',
  'hous_pretti',
  'pretti_piss',
  'piss_cousin',
  'cousin_ask',
  'ask_wrong',
  'wrong_dinner',
  'dinner_could',
  'could_explain',
  'explain_brother',
  'brother_interrupt',
  'interrupt_oh',
  'oh_*',
  '*_ladi',
  'ladi_*',
  '*_problem',
  'problem_usual',
  'usual_ignor',
  'ignor_hold',
  'hold_thing',
  'thing_enough',
  'enough_start',
  'start_bawl',
  'bawl_admit',
  'admit_kind',
  'kind_went',
  'went_ham',
  'ham_purpos',
  'purpos_caus',
  'caus_scene',
  'scene_freak',
  'freak_whole',
  'whole_famili',
  'famili_aunt',
  'aunt_ask',
  'ask_dad',
  'dad_upset',
  'upset_know',
  'know_told',
  'told_aunt',
  'aunt_*',
  '*_ladi',
  'ladi_*',
  '*_reason',
  'reason_accord',
  'accord_dad',
  'dad_brother',
  'brother_aunt',
  'aunt_grandma',
  'grandma_piss',
  'piss_dad',
  'dad_brother',
  'brother_total',
  'total_got',
  'got_ream',
  'ream_dinner',
  'dinner_tabl',
  'tabl_whole',
  'whole_thing',
  'thing_could',
  'could_tell',
  'tell_super',
  'super_embarrass',
  'embarrass_later',
  'later_night',
  'night_brother',
  'brother_dad',
  'dad_said',
  'said_ah',
  'ah_caus',
  'caus_scene',
  'scene_embarrass',
  'embarrass_said',
  'said_act',
  'act_like',
  'like_alway',
  'alway_say',
  'say_guess',
  'guess_dinner',
  'dinner_like',
  'like_plan',
  'know_titl_sound',
  'titl_sound_ridicul',
  'sound_ridicul_context',
  'ridicul_context_im',
  'context_im_current',
  'im_current_high',
  'current_high_school',
  'high_school_live',
  'school_live_dad',
  'live_dad_brother',
  'dad_brother_mom',
  'brother_mom_pictur',
  'mom_pictur_anymor',
  'pictur_anymor_im',
  'anymor_im_close',
  'im_close_father',
  'close_father_bad',
  'father_bad_dad',
  'bad_dad_littl',
  'dad_littl_old',
  'littl_old_fashion',
  'old_fashion_closer',
  'fashion_closer_brother',
  'closer_brother_hobbi',
  'brother_hobbi_etc',
  'hobbi_etc_onto',
  'etc_onto_problem',
  'onto_problem_know',
  'problem_know_start',
  'know_start_past',
  'start_past_coupl',
  'past_coupl_month',
  'coupl_month_dad',
  'month_dad_brother',
  'dad_brother_start',
  'brother_start_teas',
  'start_teas_time',
  'teas_time_month',
  'time_month_time',
  'month_time_even',
  'time_even_get',
  'even_get_remot',
  'get_remot_irrit',
  'remot_irrit_upset',
  'irrit_upset_exampl',
  'upset_exampl_brother',
  'exampl_brother_ate',
  'brother_ate_snack',
  'ate_snack_mine',
  'snack_mine_save',
  'mine_save_got',
  'save_got_mad',
  'got_mad_joke',
  'mad_joke_oh',
  'joke_oh_time',
  'oh_time_super',
  'time_super_annoy',
  'super_annoy_voic',
  'annoy_voic_ive',
  'voic_ive_kept',
  'ive_kept_tri',
  'kept_tri_tell',
  'tri_tell_separ',
  'tell_separ_togeth',
  'separ_togeth_realli',
  'togeth_realli_annoy',
  'realli_annoy_offens',
  'annoy_offens_feel',
  'offens_feel_like',
  'feel_like_theyr',
  'like_theyr_total',
  'theyr_total_minim',
  'total_minim_feel',
  'minim_feel_thing',
  'feel_thing_feel',
  'thing_feel_valid',
  'feel_valid_reason',
  'valid_reason_annoy',
  'reason_annoy_brush',
  'annoy_brush_even',
  'brush_even_chalk',
  'even_chalk_period',
  'chalk_period_matter',
  'period_matter_time',
  'matter_time_month',
  'time_month_well',
  'month_well_yesterday',
  'well_yesterday_dinner',
  'yesterday_dinner_whole',
  'dinner_whole_famili',
  'whole_famili_dad',
  'famili_dad_side',
  'dad_side_aunt',
  'side_aunt_birthday',
  'aunt_birthday_dinner',
  'birthday_dinner_got',
  'dinner_got_huge',
  'got_huge_fight',
  'huge_fight_brother',
  'fight_brother_broke',
  'brother_broke_ipad',
  'broke_ipad_instead',
  'ipad_instead_apolog',
  'instead_apolog_said',
  'apolog_said_whole',
  'said_whole_time',
  'whole_time_month',
  'time_month_thing',
  'month_thing_admit',
  'thing_admit_time',
  'admit_time_got',
  'time_got_grandma',
  'got_grandma_hous',
  'grandma_hous_pretti',
  'hous_pretti_piss',
  'pretti_piss_cousin',
  'piss_cousin_ask',
  'cousin_ask_wrong',
  'ask_wrong_dinner',
  'wrong_dinner_could',
  'dinner_could_explain',
  'could_explain_brother',
  'explain_brother_interrupt',
  'brother_interrupt_oh',
  'interrupt_oh_*',
  'oh_*_ladi',
  '*_ladi_*',
  'ladi_*_problem',
  '*_problem_usual',
  'problem_usual_ignor',
  'usual_ignor_hold',
  'ignor_hold_thing',
  'hold_thing_enough',
  'thing_enough_start',
  'enough_start_bawl',
  'start_bawl_admit',
  'bawl_admit_kind',
  'admit_kind_went',
  'kind_went_ham',
  'went_ham_purpos',
  'ham_purpos_caus',
  'purpos_caus_scene',
  'caus_scene_freak',
  'scene_freak_whole',
  'freak_whole_famili',
  'whole_famili_aunt',
  'famili_aunt_ask',
  'aunt_ask_dad',
  'ask_dad_upset',
  'dad_upset_know',
  'upset_know_told',
  'know_told_aunt',
  'told_aunt_*',
  'aunt_*_ladi',
  '*_ladi_*',
  'ladi_*_reason',
  '*_reason_accord',
  'reason_accord_dad',
  'accord_dad_brother',
  'dad_brother_aunt',
  'brother_aunt_grandma',
  'aunt_grandma_piss',
  'grandma_piss_dad',
  'piss_dad_brother',
  'dad_brother_total',
  'brother_total_got',
  'total_got_ream',
  'got_ream_dinner',
  'ream_dinner_tabl',
  'dinner_tabl_whole',
  'tabl_whole_thing',
  'whole_thing_could',
  'thing_could_tell',
  'could_tell_super',
  'tell_super_embarrass',
  'super_embarrass_later',
  'embarrass_later_night',
  'later_night_brother',
  'night_brother_dad',
  'brother_dad_said',
  'dad_said_ah',
  'said_ah_caus',
  'ah_caus_scene',
  'caus_scene_embarrass',
  'scene_embarrass_said',
  'embarrass_said_act',
  'said_act_like',
  'act_like_alway',
  'like_alway_say',
  'alway_say_guess',
  'say_guess_dinner',
  'guess_dinner_like',
  'dinner_like_plan'],
 ['marri',
  'husband',
  'cam',
  'two',
  'year',
  'weve',
  'togeth',
  'total',
  'friend',
  'older',
  'brother',
  'ive',
  'known',
  'even',
  'longer',
  'cam',
  'decid',
  'tri',
  'babi',
  'im',
  'current',
  'wk',
  'first',
  'told',
  'mil',
  'news',
  'first',
  'thing',
  'mention',
  'everi',
  'woman',
  'famili',
  'son',
  'daughter',
  'thought',
  'babi',
  'would',
  'boy',
  'cam',
  'told',
  'care',
  'want',
  'happi',
  'healthi',
  'child',
  'well',
  'im',
  'girl',
  'inform',
  'mil',
  'earlier',
  'even',
  'cam',
  'onboard',
  'idea',
  'huge',
  'dramat',
  'gender',
  'reveal',
  'decid',
  'go',
  'casual',
  'announc',
  'mil',
  'immedi',
  'seem',
  'upset',
  'told',
  'next',
  'time',
  'need',
  'tri',
  'harder',
  'give',
  'husband',
  'son',
  'laugh',
  'said',
  'realli',
  'much',
  'choic',
  'matter',
  'anoth',
  'child',
  'noth',
  'could',
  'make',
  'sure',
  'boy',
  'either',
  'said',
  'fault',
  'end',
  'boy',
  'first',
  'boy',
  'son',
  'wive',
  'boy',
  'first',
  'meant',
  'odd',
  'one',
  'cam',
  'told',
  'mom',
  'care',
  'son',
  'need',
  'stop',
  'blame',
  'someth',
  'possibl',
  'fault',
  'start',
  'get',
  'onto',
  'want',
  'child',
  'carri',
  'famili',
  'name',
  'instead',
  'daughter',
  'given',
  'away',
  'whole',
  'thing',
  'absolut',
  'ridicul',
  'told',
  'look',
  'get',
  'refresh',
  'cours',
  'read',
  'basic',
  'biolog',
  'learn',
  'th',
  'grade',
  'free',
  'give',
  'call',
  'apolog',
  'absolut',
  'ridicul',
  'husband',
  'left',
  'car',
  'said',
  'understood',
  'frustrat',
  'appreci',
  'speak',
  'mother',
  'like',
  'basic',
  'impli',
  'idiot',
  'told',
  'appreci',
  'way',
  'speak',
  'upset',
  'behalf',
  'daughter',
  'sinc',
  'mom',
  'clearli',
  'seem',
  'think',
  'less',
  'child',
  'even',
  'born',
  'rest',
  'car',
  'ride',
  'silent',
  'honestli',
  'talk',
  'sinc',
  'get',
  'back',
  'home',
  'either',
  'defend',
  'know',
  'side',
  'know',
  'brought',
  'way',
  'spoke',
  'unless',
  'realli',
  'thought',
  'line',
  'feel',
  'like',
  'bit',
  'ah',
  'im',
  'sure',
  'apolog',
  'marri_husband',
  'husband_cam',
  'cam_two',
  'two_year',
  'year_weve',
  'weve_togeth',
  'togeth_total',
  'total_friend',
  'friend_older',
  'older_brother',
  'brother_ive',
  'ive_known',
  'known_even',
  'even_longer',
  'longer_cam',
  'cam_decid',
  'decid_tri',
  'tri_babi',
  'babi_im',
  'im_current',
  'current_wk',
  'wk_first',
  'first_told',
  'told_mil',
  'mil_news',
  'news_first',
  'first_thing',
  'thing_mention',
  'mention_everi',
  'everi_woman',
  'woman_famili',
  'famili_son',
  'son_daughter',
  'daughter_thought',
  'thought_babi',
  'babi_would',
  'would_boy',
  'boy_cam',
  'cam_told',
  'told_care',
  'care_want',
  'want_happi',
  'happi_healthi',
  'healthi_child',
  'child_well',
  'well_im',
  'im_girl',
  'girl_inform',
  'inform_mil',
  'mil_earlier',
  'earlier_even',
  'even_cam',
  'cam_onboard',
  'onboard_idea',
  'idea_huge',
  'huge_dramat',
  'dramat_gender',
  'gender_reveal',
  'reveal_decid',
  'decid_go',
  'go_casual',
  'casual_announc',
  'announc_mil',
  'mil_immedi',
  'immedi_seem',
  'seem_upset',
  'upset_told',
  'told_next',
  'next_time',
  'time_need',
  'need_tri',
  'tri_harder',
  'harder_give',
  'give_husband',
  'husband_son',
  'son_laugh',
  'laugh_said',
  'said_realli',
  'realli_much',
  'much_choic',
  'choic_matter',
  'matter_anoth',
  'anoth_child',
  'child_noth',
  'noth_could',
  'could_make',
  'make_sure',
  'sure_boy',
  'boy_either',
  'either_said',
  'said_fault',
  'fault_end',
  'end_boy',
  'boy_first',
  'first_boy',
  'boy_son',
  'son_wive',
  'wive_boy',
  'boy_first',
  'first_meant',
  'meant_odd',
  'odd_one',
  'one_cam',
  'cam_told',
  'told_mom',
  'mom_care',
  'care_son',
  'son_need',
  'need_stop',
  'stop_blame',
  'blame_someth',
  'someth_possibl',
  'possibl_fault',
  'fault_start',
  'start_get',
  'get_onto',
  'onto_want',
  'want_child',
  'child_carri',
  'carri_famili',
  'famili_name',
  'name_instead',
  'instead_daughter',
  'daughter_given',
  'given_away',
  'away_whole',
  'whole_thing',
  'thing_absolut',
  'absolut_ridicul',
  'ridicul_told',
  'told_look',
  'look_get',
  'get_refresh',
  'refresh_cours',
  'cours_read',
  'read_basic',
  'basic_biolog',
  'biolog_learn',
  'learn_th',
  'th_grade',
  'grade_free',
  'free_give',
  'give_call',
  'call_apolog',
  'apolog_absolut',
  'absolut_ridicul',
  'ridicul_husband',
  'husband_left',
  'left_car',
  'car_said',
  'said_understood',
  'understood_frustrat',
  'frustrat_appreci',
  'appreci_speak',
  'speak_mother',
  'mother_like',
  'like_basic',
  'basic_impli',
  'impli_idiot',
  'idiot_told',
  'told_appreci',
  'appreci_way',
  'way_speak',
  'speak_upset',
  'upset_behalf',
  'behalf_daughter',
  'daughter_sinc',
  'sinc_mom',
  'mom_clearli',
  'clearli_seem',
  'seem_think',
  'think_less',
  'less_child',
  'child_even',
  'even_born',
  'born_rest',
  'rest_car',
  'car_ride',
  'ride_silent',
  'silent_honestli',
  'honestli_talk',
  'talk_sinc',
  'sinc_get',
  'get_back',
  'back_home',
  'home_either',
  'either_defend',
  'defend_know',
  'know_side',
  'side_know',
  'know_brought',
  'brought_way',
  'way_spoke',
  'spoke_unless',
  'unless_realli',
  'realli_thought',
  'thought_line',
  'line_feel',
  'feel_like',
  'like_bit',
  'bit_ah',
  'ah_im',
  'im_sure',
  'sure_apolog',
  'marri_husband_cam',
  'husband_cam_two',
  'cam_two_year',
  'two_year_weve',
  'year_weve_togeth',
  'weve_togeth_total',
  'togeth_total_friend',
  'total_friend_older',
  'friend_older_brother',
  'older_brother_ive',
  'brother_ive_known',
  'ive_known_even',
  'known_even_longer',
  'even_longer_cam',
  'longer_cam_decid',
  'cam_decid_tri',
  'decid_tri_babi',
  'tri_babi_im',
  'babi_im_current',
  'im_current_wk',
  'current_wk_first',
  'wk_first_told',
  'first_told_mil',
  'told_mil_news',
  'mil_news_first',
  'news_first_thing',
  'first_thing_mention',
  'thing_mention_everi',
  'mention_everi_woman',
  'everi_woman_famili',
  'woman_famili_son',
  'famili_son_daughter',
  'son_daughter_thought',
  'daughter_thought_babi',
  'thought_babi_would',
  'babi_would_boy',
  'would_boy_cam',
  'boy_cam_told',
  'cam_told_care',
  'told_care_want',
  'care_want_happi',
  'want_happi_healthi',
  'happi_healthi_child',
  'healthi_child_well',
  'child_well_im',
  'well_im_girl',
  'im_girl_inform',
  'girl_inform_mil',
  'inform_mil_earlier',
  'mil_earlier_even',
  'earlier_even_cam',
  'even_cam_onboard',
  'cam_onboard_idea',
  'onboard_idea_huge',
  'idea_huge_dramat',
  'huge_dramat_gender',
  'dramat_gender_reveal',
  'gender_reveal_decid',
  'reveal_decid_go',
  'decid_go_casual',
  'go_casual_announc',
  'casual_announc_mil',
  'announc_mil_immedi',
  'mil_immedi_seem',
  'immedi_seem_upset',
  'seem_upset_told',
  'upset_told_next',
  'told_next_time',
  'next_time_need',
  'time_need_tri',
  'need_tri_harder',
  'tri_harder_give',
  'harder_give_husband',
  'give_husband_son',
  'husband_son_laugh',
  'son_laugh_said',
  'laugh_said_realli',
  'said_realli_much',
  'realli_much_choic',
  'much_choic_matter',
  'choic_matter_anoth',
  'matter_anoth_child',
  'anoth_child_noth',
  'child_noth_could',
  'noth_could_make',
  'could_make_sure',
  'make_sure_boy',
  'sure_boy_either',
  'boy_either_said',
  'either_said_fault',
  'said_fault_end',
  'fault_end_boy',
  'end_boy_first',
  'boy_first_boy',
  'first_boy_son',
  'boy_son_wive',
  'son_wive_boy',
  'wive_boy_first',
  'boy_first_meant',
  'first_meant_odd',
  'meant_odd_one',
  'odd_one_cam',
  'one_cam_told',
  'cam_told_mom',
  'told_mom_care',
  'mom_care_son',
  'care_son_need',
  'son_need_stop',
  'need_stop_blame',
  'stop_blame_someth',
  'blame_someth_possibl',
  'someth_possibl_fault',
  'possibl_fault_start',
  'fault_start_get',
  'start_get_onto',
  'get_onto_want',
  'onto_want_child',
  'want_child_carri',
  'child_carri_famili',
  'carri_famili_name',
  'famili_name_instead',
  'name_instead_daughter',
  'instead_daughter_given',
  'daughter_given_away',
  'given_away_whole',
  'away_whole_thing',
  'whole_thing_absolut',
  'thing_absolut_ridicul',
  'absolut_ridicul_told',
  'ridicul_told_look',
  'told_look_get',
  'look_get_refresh',
  'get_refresh_cours',
  'refresh_cours_read',
  'cours_read_basic',
  'read_basic_biolog',
  'basic_biolog_learn',
  'biolog_learn_th',
  'learn_th_grade',
  'th_grade_free',
  'grade_free_give',
  'free_give_call',
  'give_call_apolog',
  'call_apolog_absolut',
  'apolog_absolut_ridicul',
  'absolut_ridicul_husband',
  'ridicul_husband_left',
  'husband_left_car',
  'left_car_said',
  'car_said_understood',
  'said_understood_frustrat',
  'understood_frustrat_appreci',
  'frustrat_appreci_speak',
  'appreci_speak_mother',
  'speak_mother_like',
  'mother_like_basic',
  'like_basic_impli',
  'basic_impli_idiot',
  'impli_idiot_told',
  'idiot_told_appreci',
  'told_appreci_way',
  'appreci_way_speak',
  'way_speak_upset',
  'speak_upset_behalf',
  'upset_behalf_daughter',
  'behalf_daughter_sinc',
  'daughter_sinc_mom',
  'sinc_mom_clearli',
  'mom_clearli_seem',
  'clearli_seem_think',
  'seem_think_less',
  'think_less_child',
  'less_child_even',
  'child_even_born',
  'even_born_rest',
  'born_rest_car',
  'rest_car_ride',
  'car_ride_silent',
  'ride_silent_honestli',
  'silent_honestli_talk',
  'honestli_talk_sinc',
  'talk_sinc_get',
  'sinc_get_back',
  'get_back_home',
  'back_home_either',
  'home_either_defend',
  'either_defend_know',
  'defend_know_side',
  'know_side_know',
  'side_know_brought',
  'know_brought_way',
  'brought_way_spoke',
  'way_spoke_unless',
  'spoke_unless_realli',
  'unless_realli_thought',
  'realli_thought_line',
  'thought_line_feel',
  'line_feel_like',
  'feel_like_bit',
  'like_bit_ah',
  'bit_ah_im',
  'ah_im_sure',
  'im_sure_apolog'],
 ['bf',
  'went',
  'see',
  'parent',
  'first',
  'time',
  'weekend',
  'canadian',
  'thanksgiv',
  'suppos',
  'stay',
  'sat',
  'sun',
  'fli',
  'back',
  'afternoon',
  'monday',
  'im',
  'write',
  'sun',
  'night',
  'alreadi',
  'back',
  'bed',
  'bf',
  'parent',
  'greet',
  'us',
  'airport',
  'brought',
  'us',
  'home',
  'proceed',
  'ask',
  'drug',
  'bag',
  'pretti',
  'shock',
  'ask',
  'said',
  'tylenol',
  'nod',
  'show',
  'us',
  'room',
  'meant',
  'got',
  'guest',
  'room',
  'bf',
  'sleep',
  'old',
  'room',
  'parent',
  'serv',
  'dinner',
  'dinner',
  'ask',
  'pay',
  'portion',
  'thanksgiv',
  'dinner',
  '$',
  'pretti',
  'shock',
  'angri',
  'ive',
  'never',
  'ask',
  'pay',
  'someon',
  'ingredi',
  'fee',
  'guest',
  'place',
  'answer',
  'confront',
  'bf',
  'room',
  'ask',
  'ask',
  'pay',
  'say',
  'someth',
  'ask',
  'friend',
  'well',
  'bbq',
  'ask',
  'peopl',
  'pay',
  'portion',
  'honestli',
  'im',
  'shock',
  'friend',
  'remind',
  'eaten',
  'parent',
  'place',
  'dozen',
  'time',
  'never',
  'ask',
  'pay',
  'claim',
  'ask',
  'would',
  'never',
  'rude',
  'guest',
  'mom',
  'came',
  'got',
  'escort',
  'room',
  'fume',
  'look',
  'ticket',
  'home',
  'text',
  'bf',
  'say',
  'go',
  'home',
  'tomorrow',
  'call',
  'beg',
  'stay',
  'say',
  'famili',
  'alreadi',
  'like',
  'agre',
  'pay',
  'dinner',
  'im',
  'make',
  'wors',
  'ignor',
  'rebook',
  'earli',
  'flight',
  'expens',
  'got',
  'cab',
  'airport',
  'morn',
  'told',
  'friend',
  'confirm',
  'theyv',
  'never',
  'ask',
  'pay',
  'meal',
  'guest',
  'struggl',
  'even',
  'invit',
  'normal',
  'practic',
  'hous',
  'pretti',
  'big',
  'think',
  'money',
  'thing',
  'bf_went',
  'went_see',
  'see_parent',
  'parent_first',
  'first_time',
  'time_weekend',
  'weekend_canadian',
  'canadian_thanksgiv',
  'thanksgiv_suppos',
  'suppos_stay',
  'stay_sat',
  'sat_sun',
  'sun_fli',
  'fli_back',
  'back_afternoon',
  'afternoon_monday',
  'monday_im',
  'im_write',
  'write_sun',
  'sun_night',
  'night_alreadi',
  'alreadi_back',
  'back_bed',
  'bed_bf',
  'bf_parent',
  'parent_greet',
  'greet_us',
  'us_airport',
  'airport_brought',
  'brought_us',
  'us_home',
  'home_proceed',
  'proceed_ask',
  'ask_drug',
  'drug_bag',
  'bag_pretti',
  'pretti_shock',
  'shock_ask',
  'ask_said',
  'said_tylenol',
  'tylenol_nod',
  'nod_show',
  'show_us',
  'us_room',
  'room_meant',
  'meant_got',
  'got_guest',
  'guest_room',
  'room_bf',
  'bf_sleep',
  'sleep_old',
  'old_room',
  'room_parent',
  'parent_serv',
  'serv_dinner',
  'dinner_dinner',
  'dinner_ask',
  'ask_pay',
  'pay_portion',
  'portion_thanksgiv',
  'thanksgiv_dinner',
  'dinner_$',
  '$_pretti',
  'pretti_shock',
  'shock_angri',
  'angri_ive',
  'ive_never',
  'never_ask',
  'ask_pay',
  'pay_someon',
  'someon_ingredi',
  'ingredi_fee',
  'fee_guest',
  'guest_place',
  'place_answer',
  'answer_confront',
  'confront_bf',
  'bf_room',
  'room_ask',
  'ask_ask',
  'ask_pay',
  'pay_say',
  'say_someth',
  'someth_ask',
  'ask_friend',
  'friend_well',
  'well_bbq',
  'bbq_ask',
  'ask_peopl',
  'peopl_pay',
  'pay_portion',
  'portion_honestli',
  'honestli_im',
  'im_shock',
  'shock_friend',
  'friend_remind',
  'remind_eaten',
  'eaten_parent',
  'parent_place',
  'place_dozen',
  'dozen_time',
  'time_never',
  'never_ask',
  'ask_pay',
  'pay_claim',
  'claim_ask',
  'ask_would',
  'would_never',
  'never_rude',
  'rude_guest',
  'guest_mom',
  'mom_came',
  'came_got',
  'got_escort',
  'escort_room',
  'room_fume',
  'fume_look',
  'look_ticket',
  'ticket_home',
  'home_text',
  'text_bf',
  'bf_say',
  'say_go',
  'go_home',
  'home_tomorrow',
  'tomorrow_call',
  'call_beg',
  'beg_stay',
  'stay_say',
  'say_famili',
  'famili_alreadi',
  'alreadi_like',
  'like_agre',
  'agre_pay',
  'pay_dinner',
  'dinner_im',
  'im_make',
  'make_wors',
  'wors_ignor',
  'ignor_rebook',
  'rebook_earli',
  'earli_flight',
  'flight_expens',
  'expens_got',
  'got_cab',
  'cab_airport',
  'airport_morn',
  'morn_told',
  'told_friend',
  'friend_confirm',
  'confirm_theyv',
  'theyv_never',
  'never_ask',
  'ask_pay',
  'pay_meal',
  'meal_guest',
  'guest_struggl',
  'struggl_even',
  'even_invit',
  'invit_normal',
  'normal_practic',
  'practic_hous',
  'hous_pretti',
  'pretti_big',
  'big_think',
  'think_money',
  'money_thing',
  'bf_went_see',
  'went_see_parent',
  'see_parent_first',
  'parent_first_time',
  'first_time_weekend',
  'time_weekend_canadian',
  'weekend_canadian_thanksgiv',
  'canadian_thanksgiv_suppos',
  'thanksgiv_suppos_stay',
  'suppos_stay_sat',
  'stay_sat_sun',
  'sat_sun_fli',
  'sun_fli_back',
  'fli_back_afternoon',
  'back_afternoon_monday',
  'afternoon_monday_im',
  'monday_im_write',
  'im_write_sun',
  'write_sun_night',
  'sun_night_alreadi',
  'night_alreadi_back',
  'alreadi_back_bed',
  'back_bed_bf',
  'bed_bf_parent',
  'bf_parent_greet',
  'parent_greet_us',
  'greet_us_airport',
  'us_airport_brought',
  'airport_brought_us',
  'brought_us_home',
  'us_home_proceed',
  'home_proceed_ask',
  'proceed_ask_drug',
  'ask_drug_bag',
  'drug_bag_pretti',
  'bag_pretti_shock',
  'pretti_shock_ask',
  'shock_ask_said',
  'ask_said_tylenol',
  'said_tylenol_nod',
  'tylenol_nod_show',
  'nod_show_us',
  'show_us_room',
  'us_room_meant',
  'room_meant_got',
  'meant_got_guest',
  'got_guest_room',
  'guest_room_bf',
  'room_bf_sleep',
  'bf_sleep_old',
  'sleep_old_room',
  'old_room_parent',
  'room_parent_serv',
  'parent_serv_dinner',
  'serv_dinner_dinner',
  'dinner_dinner_ask',
  'dinner_ask_pay',
  'ask_pay_portion',
  'pay_portion_thanksgiv',
  'portion_thanksgiv_dinner',
  'thanksgiv_dinner_$',
  'dinner_$_pretti',
  '$_pretti_shock',
  'pretti_shock_angri',
  'shock_angri_ive',
  'angri_ive_never',
  'ive_never_ask',
  'never_ask_pay',
  'ask_pay_someon',
  'pay_someon_ingredi',
  'someon_ingredi_fee',
  'ingredi_fee_guest',
  'fee_guest_place',
  'guest_place_answer',
  'place_answer_confront',
  'answer_confront_bf',
  'confront_bf_room',
  'bf_room_ask',
  'room_ask_ask',
  'ask_ask_pay',
  'ask_pay_say',
  'pay_say_someth',
  'say_someth_ask',
  'someth_ask_friend',
  'ask_friend_well',
  'friend_well_bbq',
  'well_bbq_ask',
  'bbq_ask_peopl',
  'ask_peopl_pay',
  'peopl_pay_portion',
  'pay_portion_honestli',
  'portion_honestli_im',
  'honestli_im_shock',
  'im_shock_friend',
  'shock_friend_remind',
  'friend_remind_eaten',
  'remind_eaten_parent',
  'eaten_parent_place',
  'parent_place_dozen',
  'place_dozen_time',
  'dozen_time_never',
  'time_never_ask',
  'never_ask_pay',
  'ask_pay_claim',
  'pay_claim_ask',
  'claim_ask_would',
  'ask_would_never',
  'would_never_rude',
  'never_rude_guest',
  'rude_guest_mom',
  'guest_mom_came',
  'mom_came_got',
  'came_got_escort',
  'got_escort_room',
  'escort_room_fume',
  'room_fume_look',
  'fume_look_ticket',
  'look_ticket_home',
  'ticket_home_text',
  'home_text_bf',
  'text_bf_say',
  'bf_say_go',
  'say_go_home',
  'go_home_tomorrow',
  'home_tomorrow_call',
  'tomorrow_call_beg',
  'call_beg_stay',
  'beg_stay_say',
  'stay_say_famili',
  'say_famili_alreadi',
  'famili_alreadi_like',
  'alreadi_like_agre',
  'like_agre_pay',
  'agre_pay_dinner',
  'pay_dinner_im',
  'dinner_im_make',
  'im_make_wors',
  'make_wors_ignor',
  'wors_ignor_rebook',
  'ignor_rebook_earli',
  'rebook_earli_flight',
  'earli_flight_expens',
  'flight_expens_got',
  'expens_got_cab',
  'got_cab_airport',
  'cab_airport_morn',
  'airport_morn_told',
  'morn_told_friend',
  'told_friend_confirm',
  'friend_confirm_theyv',
  'confirm_theyv_never',
  'theyv_never_ask',
  'never_ask_pay',
  'ask_pay_meal',
  'pay_meal_guest',
  'meal_guest_struggl',
  'guest_struggl_even',
  'struggl_even_invit',
  'even_invit_normal',
  'invit_normal_practic',
  'normal_practic_hous',
  'practic_hous_pretti',
  'hous_pretti_big',
  'pretti_big_think',
  'big_think_money',
  'think_money_thing'],
 ['live',
  'girlfriend',
  'past',
  'six',
  'month',
  'earli',
  'overal',
  'great',
  'relationship',
  'well',
  'relationship',
  'began',
  'ive',
  'big',
  'fast',
  'food',
  'eater',
  'intersect',
  'citi',
  'host',
  'seven',
  'differ',
  'fast',
  'food',
  'restaur',
  'ill',
  'frequent',
  'basic',
  'sinc',
  'shift',
  'work',
  'im',
  'gener',
  'clock',
  'around',
  'tire',
  'cook',
  'ill',
  'hit',
  'burger',
  'joint',
  'cheeseburg',
  'fri',
  'girlfriend',
  'alway',
  'want',
  'exactli',
  'one',
  'bite',
  'exclus',
  'first',
  'bite',
  'everi',
  'item',
  'order',
  'notic',
  'would',
  'start',
  'contact',
  'way',
  'restaur',
  'ask',
  'want',
  'someth',
  'answer',
  'consist',
  'get',
  'home',
  'dig',
  'crinkl',
  'fast',
  'food',
  'bag',
  'like',
  'pavlov',
  'bell',
  'shell',
  'immedi',
  'beelin',
  'straight',
  'wherev',
  'im',
  'eat',
  'ask',
  'bite',
  'ive',
  'ask',
  'could',
  'leav',
  'littl',
  'end',
  'want',
  'first',
  'bite',
  'ive',
  'plead',
  'let',
  'buy',
  'food',
  'want',
  'eat',
  'much',
  'ive',
  'tri',
  'order',
  'bit',
  'let',
  'polish',
  'whole',
  'burger',
  'shell',
  'turn',
  'everi',
  'item',
  'sampler',
  'platter',
  'throw',
  'away',
  'food',
  'bought',
  'first',
  'bite',
  'eat',
  'like',
  'like',
  'bizarr',
  'culinari',
  'version',
  '*',
  'ju',
  'prima',
  'nocti',
  '*',
  'past',
  'week',
  'ive',
  'eat',
  'car',
  'discret',
  'dispos',
  'wrapper',
  'tell',
  'hungri',
  'work',
  'day',
  'found',
  'garbag',
  'bag',
  'full',
  'fast',
  'food',
  'wrapper',
  'bin',
  'garbag',
  'day',
  'furiou',
  'lie',
  'aita',
  'share',
  'live_girlfriend',
  'girlfriend_past',
  'past_six',
  'six_month',
  'month_earli',
  'earli_overal',
  'overal_great',
  'great_relationship',
  'relationship_well',
  'well_relationship',
  'relationship_began',
  'began_ive',
  'ive_big',
  'big_fast',
  'fast_food',
  'food_eater',
  'eater_intersect',
  'intersect_citi',
  'citi_host',
  'host_seven',
  'seven_differ',
  'differ_fast',
  'fast_food',
  'food_restaur',
  'restaur_ill',
  'ill_frequent',
  'frequent_basic',
  'basic_sinc',
  'sinc_shift',
  'shift_work',
  'work_im',
  'im_gener',
  'gener_clock',
  'clock_around',
  'around_tire',
  'tire_cook',
  'cook_ill',
  'ill_hit',
  'hit_burger',
  'burger_joint',
  'joint_cheeseburg',
  'cheeseburg_fri',
  'fri_girlfriend',
  'girlfriend_alway',
  'alway_want',
  'want_exactli',
  'exactli_one',
  'one_bite',
  'bite_exclus',
  'exclus_first',
  'first_bite',
  'bite_everi',
  'everi_item',
  'item_order',
  'order_notic',
  'notic_would',
  'would_start',
  'start_contact',
  'contact_way',
  'way_restaur',
  'restaur_ask',
  'ask_want',
  'want_someth',
  'someth_answer',
  'answer_consist',
  'consist_get',
  'get_home',
  'home_dig',
  'dig_crinkl',
  'crinkl_fast',
  'fast_food',
  'food_bag',
  'bag_like',
  'like_pavlov',
  'pavlov_bell',
  'bell_shell',
  'shell_immedi',
  'immedi_beelin',
  'beelin_straight',
  'straight_wherev',
  'wherev_im',
  'im_eat',
  'eat_ask',
  'ask_bite',
  'bite_ive',
  'ive_ask',
  'ask_could',
  'could_leav',
  'leav_littl',
  'littl_end',
  'end_want',
  'want_first',
  'first_bite',
  'bite_ive',
  'ive_plead',
  'plead_let',
  'let_buy',
  'buy_food',
  'food_want',
  'want_eat',
  'eat_much',
  'much_ive',
  'ive_tri',
  'tri_order',
  'order_bit',
  'bit_let',
  'let_polish',
  'polish_whole',
  'whole_burger',
  'burger_shell',
  'shell_turn',
  'turn_everi',
  'everi_item',
  'item_sampler',
  'sampler_platter',
  'platter_throw',
  'throw_away',
  'away_food',
  'food_bought',
  'bought_first',
  'first_bite',
  'bite_eat',
  'eat_like',
  'like_like',
  'like_bizarr',
  'bizarr_culinari',
  'culinari_version',
  'version_*',
  '*_ju',
  'ju_prima',
  'prima_nocti',
  'nocti_*',
  '*_past',
  'past_week',
  'week_ive',
  'ive_eat',
  'eat_car',
  'car_discret',
  'discret_dispos',
  'dispos_wrapper',
  'wrapper_tell',
  'tell_hungri',
  'hungri_work',
  'work_day',
  'day_found',
  'found_garbag',
  'garbag_bag',
  'bag_full',
  'full_fast',
  'fast_food',
  'food_wrapper',
  'wrapper_bin',
  'bin_garbag',
  'garbag_day',
  'day_furiou',
  'furiou_lie',
  'lie_aita',
  'aita_share',
  'live_girlfriend_past',
  'girlfriend_past_six',
  'past_six_month',
  'six_month_earli',
  'month_earli_overal',
  'earli_overal_great',
  'overal_great_relationship',
  'great_relationship_well',
  'relationship_well_relationship',
  'well_relationship_began',
  'relationship_began_ive',
  'began_ive_big',
  'ive_big_fast',
  'big_fast_food',
  'fast_food_eater',
  'food_eater_intersect',
  'eater_intersect_citi',
  'intersect_citi_host',
  'citi_host_seven',
  'host_seven_differ',
  'seven_differ_fast',
  'differ_fast_food',
  'fast_food_restaur',
  'food_restaur_ill',
  'restaur_ill_frequent',
  'ill_frequent_basic',
  'frequent_basic_sinc',
  'basic_sinc_shift',
  'sinc_shift_work',
  'shift_work_im',
  'work_im_gener',
  'im_gener_clock',
  'gener_clock_around',
  'clock_around_tire',
  'around_tire_cook',
  'tire_cook_ill',
  'cook_ill_hit',
  'ill_hit_burger',
  'hit_burger_joint',
  'burger_joint_cheeseburg',
  'joint_cheeseburg_fri',
  'cheeseburg_fri_girlfriend',
  'fri_girlfriend_alway',
  'girlfriend_alway_want',
  'alway_want_exactli',
  'want_exactli_one',
  'exactli_one_bite',
  'one_bite_exclus',
  'bite_exclus_first',
  'exclus_first_bite',
  'first_bite_everi',
  'bite_everi_item',
  'everi_item_order',
  'item_order_notic',
  'order_notic_would',
  'notic_would_start',
  'would_start_contact',
  'start_contact_way',
  'contact_way_restaur',
  'way_restaur_ask',
  'restaur_ask_want',
  'ask_want_someth',
  'want_someth_answer',
  'someth_answer_consist',
  'answer_consist_get',
  'consist_get_home',
  'get_home_dig',
  'home_dig_crinkl',
  'dig_crinkl_fast',
  'crinkl_fast_food',
  'fast_food_bag',
  'food_bag_like',
  'bag_like_pavlov',
  'like_pavlov_bell',
  'pavlov_bell_shell',
  'bell_shell_immedi',
  'shell_immedi_beelin',
  'immedi_beelin_straight',
  'beelin_straight_wherev',
  'straight_wherev_im',
  'wherev_im_eat',
  'im_eat_ask',
  'eat_ask_bite',
  'ask_bite_ive',
  'bite_ive_ask',
  'ive_ask_could',
  'ask_could_leav',
  'could_leav_littl',
  'leav_littl_end',
  'littl_end_want',
  'end_want_first',
  'want_first_bite',
  'first_bite_ive',
  'bite_ive_plead',
  'ive_plead_let',
  'plead_let_buy',
  'let_buy_food',
  'buy_food_want',
  'food_want_eat',
  'want_eat_much',
  'eat_much_ive',
  'much_ive_tri',
  'ive_tri_order',
  'tri_order_bit',
  'order_bit_let',
  'bit_let_polish',
  'let_polish_whole',
  'polish_whole_burger',
  'whole_burger_shell',
  'burger_shell_turn',
  'shell_turn_everi',
  'turn_everi_item',
  'everi_item_sampler',
  'item_sampler_platter',
  'sampler_platter_throw',
  'platter_throw_away',
  'throw_away_food',
  'away_food_bought',
  'food_bought_first',
  'bought_first_bite',
  'first_bite_eat',
  'bite_eat_like',
  'eat_like_like',
  'like_like_bizarr',
  'like_bizarr_culinari',
  'bizarr_culinari_version',
  'culinari_version_*',
  'version_*_ju',
  '*_ju_prima',
  'ju_prima_nocti',
  'prima_nocti_*',
  'nocti_*_past',
  '*_past_week',
  'past_week_ive',
  'week_ive_eat',
  'ive_eat_car',
  'eat_car_discret',
  'car_discret_dispos',
  'discret_dispos_wrapper',
  'dispos_wrapper_tell',
  'wrapper_tell_hungri',
  'tell_hungri_work',
  'hungri_work_day',
  'work_day_found',
  'day_found_garbag',
  'found_garbag_bag',
  'garbag_bag_full',
  'bag_full_fast',
  'full_fast_food',
  'fast_food_wrapper',
  'food_wrapper_bin',
  'wrapper_bin_garbag',
  'bin_garbag_day',
  'garbag_day_furiou',
  'day_furiou_lie',
  'furiou_lie_aita',
  'lie_aita_share'],
 ['babi',
  'daddi',
  'jasper',
  'im',
  'current',
  'week',
  'pregnant',
  'cheat',
  'import',
  'stori',
  'jasper',
  'fiancé',
  'maddi',
  'lost',
  'first',
  'child',
  'year',
  'year',
  'ago',
  'cant',
  'imagin',
  'go',
  'trough',
  'child-loss',
  'ive',
  'tri',
  'accommod',
  'ive',
  'set',
  'rule',
  'cant',
  'treat',
  'surrog',
  'im',
  'jasper',
  'kid',
  'shell',
  'step-mom',
  'adoptive-mom',
  'cant',
  'deliveri',
  'room',
  'im',
  'allow',
  'two',
  'peopl',
  'chose',
  'jasper',
  'mom',
  'argu',
  'realli',
  'tri',
  'push',
  'want',
  'haver',
  'jasper',
  'said',
  'want',
  'mom',
  'said',
  'clear',
  'even',
  'jasper',
  'room',
  'allow',
  'either',
  'way',
  'im',
  'comfort',
  'cant',
  'take',
  'big',
  'decis',
  'kid',
  'suggest',
  'ask',
  'cant',
  'take',
  'unless',
  'emerg',
  'asid',
  'awar',
  'situat',
  'common',
  'learn',
  'along',
  'way',
  'day',
  'ago',
  'three',
  'went',
  'dinner',
  'jasper',
  'ask',
  'given',
  'thought',
  'kid',
  'name',
  'said',
  'ye',
  'gave',
  'list',
  'told',
  'add',
  'name',
  'three',
  'could',
  'discuss',
  'chose',
  'one',
  'maddi',
  'told',
  'want',
  'give',
  'dad',
  'name',
  'middl',
  'name',
  'sinc',
  'special',
  'ill',
  'honest',
  'like',
  'idea',
  'famili',
  'name',
  'father',
  'one',
  'seem',
  'person',
  'also',
  'like',
  'behav',
  'like',
  'decis',
  'set',
  'sinc',
  'deal',
  'jasper',
  'seem',
  'fond',
  'idea',
  'either',
  'told',
  'could',
  'consid',
  'think',
  'sure',
  'maddi',
  'got',
  'quit',
  'pissi',
  'said',
  'fair',
  'allow',
  'say',
  'anyth',
  'without',
  'pass',
  'mom',
  'polic',
  'child',
  'cant',
  'deliveri',
  'room',
  'gave',
  'birth',
  'legal',
  'right',
  'least',
  '*',
  'could',
  '*',
  'let',
  'middl',
  'name',
  'jasper',
  'tri',
  'argu',
  'maddi',
  'refus',
  'took',
  'thing',
  'left',
  'us',
  'stay',
  'back',
  'apolog',
  'take',
  'back',
  'hous',
  'mom',
  'say',
  'understand',
  'maddi',
  'pov',
  'im',
  'child',
  'man',
  'lose',
  'babi',
  'allow',
  '*',
  'anyth',
  '*',
  'without',
  'jasper',
  'say',
  'ye',
  'first',
  'mayb',
  'let',
  'sinc',
  'middl',
  'name',
  'matter',
  'anymor',
  'still',
  'entertain',
  'idea',
  'want',
  'ask',
  'anyway',
  'ill',
  'happi',
  'give',
  'info',
  'someon',
  'need',
  'eta',
  'come',
  'clarif',
  'threesom',
  'got',
  'pregnant',
  'eta',
  'woa',
  'think',
  'would',
  'blow',
  'like',
  'want',
  'clarifi',
  'thing',
  'pleas',
  'stop',
  'say',
  'maddi',
  'unhing',
  'crazi',
  'neither',
  'us',
  'plan',
  'pregnanc',
  'tray',
  'steal',
  'babi',
  'im',
  'live',
  'neither',
  'live',
  'see',
  'regularli',
  'ye',
  'still',
  'sleep',
  'togeth',
  'call',
  'clarifi',
  'got',
  'pregnant',
  'time',
  'begin',
  'im',
  'still',
  'sleep',
  'three',
  'us',
  'agre',
  'meant',
  'noth',
  'make',
  'us',
  'partner',
  'theyv',
  'relationship',
  'never',
  'sleep',
  'maddi',
  'jasper',
  'happen',
  'time',
  'told',
  'babi',
  'three',
  'us',
  'long',
  'talk',
  'today',
  'got',
  'clarifi',
  'mani',
  'thing',
  'maddi',
  'thank',
  'judgment',
  'accept',
  'babi_daddi',
  'daddi_jasper',
  'jasper_im',
  'im_current',
  'current_week',
  'week_pregnant',
  'pregnant_cheat',
  'cheat_import',
  'import_stori',
  'stori_jasper',
  'jasper_fiancé',
  'fiancé_maddi',
  'maddi_lost',
  'lost_first',
  'first_child',
  'child_year',
  'year_year',
  'year_ago',
  'ago_cant',
  'cant_imagin',
  'imagin_go',
  'go_trough',
  'trough_child-loss',
  'child-loss_ive',
  'ive_tri',
  'tri_accommod',
  'accommod_ive',
  'ive_set',
  'set_rule',
  'rule_cant',
  'cant_treat',
  'treat_surrog',
  'surrog_im',
  'im_jasper',
  'jasper_kid',
  'kid_shell',
  'shell_step-mom',
  'step-mom_adoptive-mom',
  'adoptive-mom_cant',
  'cant_deliveri',
  'deliveri_room',
  'room_im',
  'im_allow',
  'allow_two',
  'two_peopl',
  'peopl_chose',
  'chose_jasper',
  'jasper_mom',
  'mom_argu',
  'argu_realli',
  'realli_tri',
  'tri_push',
  'push_want',
  'want_haver',
  'haver_jasper',
  'jasper_said',
  'said_want',
  'want_mom',
  'mom_said',
  'said_clear',
  'clear_even',
  'even_jasper',
  'jasper_room',
  'room_allow',
  'allow_either',
  'either_way',
  'way_im',
  'im_comfort',
  'comfort_cant',
  'cant_take',
  'take_big',
  'big_decis',
  'decis_kid',
  'kid_suggest',
  'suggest_ask',
  'ask_cant',
  'cant_take',
  'take_unless',
  'unless_emerg',
  'emerg_asid',
  'asid_awar',
  'awar_situat',
  'situat_common',
  'common_learn',
  'learn_along',
  'along_way',
  'way_day',
  'day_ago',
  'ago_three',
  'three_went',
  'went_dinner',
  'dinner_jasper',
  'jasper_ask',
  'ask_given',
  'given_thought',
  'thought_kid',
  'kid_name',
  'name_said',
  'said_ye',
  'ye_gave',
  'gave_list',
  'list_told',
  'told_add',
  'add_name',
  'name_three',
  'three_could',
  'could_discuss',
  'discuss_chose',
  'chose_one',
  'one_maddi',
  'maddi_told',
  'told_want',
  'want_give',
  'give_dad',
  'dad_name',
  'name_middl',
  'middl_name',
  'name_sinc',
  'sinc_special',
  'special_ill',
  'ill_honest',
  'honest_like',
  'like_idea',
  'idea_famili',
  'famili_name',
  'name_father',
  'father_one',
  'one_seem',
  'seem_person',
  'person_also',
  'also_like',
  'like_behav',
  'behav_like',
  'like_decis',
  'decis_set',
  'set_sinc',
  'sinc_deal',
  'deal_jasper',
  'jasper_seem',
  'seem_fond',
  'fond_idea',
  'idea_either',
  'either_told',
  'told_could',
  'could_consid',
  'consid_think',
  'think_sure',
  'sure_maddi',
  'maddi_got',
  'got_quit',
  'quit_pissi',
  'pissi_said',
  'said_fair',
  'fair_allow',
  'allow_say',
  'say_anyth',
  'anyth_without',
  'without_pass',
  'pass_mom',
  'mom_polic',
  'polic_child',
  'child_cant',
  'cant_deliveri',
  'deliveri_room',
  'room_gave',
  'gave_birth',
  'birth_legal',
  'legal_right',
  'right_least',
  'least_*',
  '*_could',
  'could_*',
  '*_let',
  'let_middl',
  'middl_name',
  'name_jasper',
  'jasper_tri',
  'tri_argu',
  'argu_maddi',
  'maddi_refus',
  'refus_took',
  'took_thing',
  'thing_left',
  'left_us',
  'us_stay',
  'stay_back',
  'back_apolog',
  'apolog_take',
  'take_back',
  'back_hous',
  'hous_mom',
  'mom_say',
  'say_understand',
  'understand_maddi',
  'maddi_pov',
  'pov_im',
  'im_child',
  'child_man',
  'man_lose',
  'lose_babi',
  'babi_allow',
  'allow_*',
  '*_anyth',
  'anyth_*',
  '*_without',
  'without_jasper',
  'jasper_say',
  'say_ye',
  'ye_first',
  'first_mayb',
  'mayb_let',
  'let_sinc',
  'sinc_middl',
  'middl_name',
  'name_matter',
  'matter_anymor',
  'anymor_still',
  'still_entertain',
  'entertain_idea',
  'idea_want',
  'want_ask',
  'ask_anyway',
  'anyway_ill',
  'ill_happi',
  'happi_give',
  'give_info',
  'info_someon',
  'someon_need',
  'need_eta',
  'eta_come',
  'come_clarif',
  'clarif_threesom',
  'threesom_got',
  'got_pregnant',
  'pregnant_eta',
  'eta_woa',
  'woa_think',
  'think_would',
  'would_blow',
  'blow_like',
  'like_want',
  'want_clarifi',
  'clarifi_thing',
  'thing_pleas',
  'pleas_stop',
  'stop_say',
  'say_maddi',
  'maddi_unhing',
  'unhing_crazi',
  'crazi_neither',
  'neither_us',
  'us_plan',
  'plan_pregnanc',
  'pregnanc_tray',
  'tray_steal',
  'steal_babi',
  'babi_im',
  'im_live',
  'live_neither',
  'neither_live',
  'live_see',
  'see_regularli',
  'regularli_ye',
  'ye_still',
  'still_sleep',
  'sleep_togeth',
  'togeth_call',
  'call_clarifi',
  'clarifi_got',
  'got_pregnant',
  'pregnant_time',
  'time_begin',
  'begin_im',
  'im_still',
  'still_sleep',
  'sleep_three',
  'three_us',
  'us_agre',
  'agre_meant',
  'meant_noth',
  'noth_make',
  'make_us',
  'us_partner',
  'partner_theyv',
  'theyv_relationship',
  'relationship_never',
  'never_sleep',
  'sleep_maddi',
  'maddi_jasper',
  'jasper_happen',
  'happen_time',
  'time_told',
  'told_babi',
  'babi_three',
  'three_us',
  'us_long',
  'long_talk',
  'talk_today',
  'today_got',
  'got_clarifi',
  'clarifi_mani',
  'mani_thing',
  'thing_maddi',
  'maddi_thank',
  'thank_judgment',
  'judgment_accept',
  'babi_daddi_jasper',
  'daddi_jasper_im',
  'jasper_im_current',
  'im_current_week',
  'current_week_pregnant',
  'week_pregnant_cheat',
  'pregnant_cheat_import',
  'cheat_import_stori',
  'import_stori_jasper',
  'stori_jasper_fiancé',
  'jasper_fiancé_maddi',
  'fiancé_maddi_lost',
  'maddi_lost_first',
  'lost_first_child',
  'first_child_year',
  'child_year_year',
  'year_year_ago',
  'year_ago_cant',
  'ago_cant_imagin',
  'cant_imagin_go',
  'imagin_go_trough',
  'go_trough_child-loss',
  'trough_child-loss_ive',
  'child-loss_ive_tri',
  'ive_tri_accommod',
  'tri_accommod_ive',
  'accommod_ive_set',
  'ive_set_rule',
  'set_rule_cant',
  'rule_cant_treat',
  'cant_treat_surrog',
  'treat_surrog_im',
  'surrog_im_jasper',
  'im_jasper_kid',
  'jasper_kid_shell',
  'kid_shell_step-mom',
  'shell_step-mom_adoptive-mom',
  'step-mom_adoptive-mom_cant',
  'adoptive-mom_cant_deliveri',
  'cant_deliveri_room',
  'deliveri_room_im',
  'room_im_allow',
  'im_allow_two',
  'allow_two_peopl',
  'two_peopl_chose',
  'peopl_chose_jasper',
  'chose_jasper_mom',
  'jasper_mom_argu',
  'mom_argu_realli',
  'argu_realli_tri',
  'realli_tri_push',
  'tri_push_want',
  'push_want_haver',
  'want_haver_jasper',
  'haver_jasper_said',
  'jasper_said_want',
  'said_want_mom',
  'want_mom_said',
  'mom_said_clear',
  'said_clear_even',
  'clear_even_jasper',
  'even_jasper_room',
  'jasper_room_allow',
  'room_allow_either',
  'allow_either_way',
  'either_way_im',
  'way_im_comfort',
  'im_comfort_cant',
  'comfort_cant_take',
  'cant_take_big',
  'take_big_decis',
  'big_decis_kid',
  'decis_kid_suggest',
  'kid_suggest_ask',
  'suggest_ask_cant',
  'ask_cant_take',
  'cant_take_unless',
  'take_unless_emerg',
  'unless_emerg_asid',
  'emerg_asid_awar',
  'asid_awar_situat',
  'awar_situat_common',
  'situat_common_learn',
  'common_learn_along',
  'learn_along_way',
  'along_way_day',
  'way_day_ago',
  'day_ago_three',
  'ago_three_went',
  'three_went_dinner',
  'went_dinner_jasper',
  'dinner_jasper_ask',
  'jasper_ask_given',
  'ask_given_thought',
  'given_thought_kid',
  'thought_kid_name',
  'kid_name_said',
  'name_said_ye',
  'said_ye_gave',
  'ye_gave_list',
  'gave_list_told',
  'list_told_add',
  'told_add_name',
  'add_name_three',
  'name_three_could',
  'three_could_discuss',
  'could_discuss_chose',
  'discuss_chose_one',
  'chose_one_maddi',
  'one_maddi_told',
  'maddi_told_want',
  'told_want_give',
  'want_give_dad',
  'give_dad_name',
  'dad_name_middl',
  'name_middl_name',
  'middl_name_sinc',
  'name_sinc_special',
  'sinc_special_ill',
  'special_ill_honest',
  'ill_honest_like',
  'honest_like_idea',
  'like_idea_famili',
  'idea_famili_name',
  'famili_name_father',
  'name_father_one',
  'father_one_seem',
  'one_seem_person',
  'seem_person_also',
  'person_also_like',
  'also_like_behav',
  'like_behav_like',
  'behav_like_decis',
  'like_decis_set',
  'decis_set_sinc',
  'set_sinc_deal',
  'sinc_deal_jasper',
  'deal_jasper_seem',
  'jasper_seem_fond',
  'seem_fond_idea',
  'fond_idea_either',
  'idea_either_told',
  'either_told_could',
  'told_could_consid',
  'could_consid_think',
  'consid_think_sure',
  'think_sure_maddi',
  'sure_maddi_got',
  'maddi_got_quit',
  'got_quit_pissi',
  'quit_pissi_said',
  'pissi_said_fair',
  'said_fair_allow',
  'fair_allow_say',
  'allow_say_anyth',
  'say_anyth_without',
  'anyth_without_pass',
  'without_pass_mom',
  'pass_mom_polic',
  'mom_polic_child',
  'polic_child_cant',
  'child_cant_deliveri',
  'cant_deliveri_room',
  'deliveri_room_gave',
  'room_gave_birth',
  'gave_birth_legal',
  'birth_legal_right',
  'legal_right_least',
  'right_least_*',
  'least_*_could',
  '*_could_*',
  'could_*_let',
  '*_let_middl',
  'let_middl_name',
  'middl_name_jasper',
  'name_jasper_tri',
  'jasper_tri_argu',
  'tri_argu_maddi',
  'argu_maddi_refus',
  'maddi_refus_took',
  'refus_took_thing',
  'took_thing_left',
  'thing_left_us',
  'left_us_stay',
  'us_stay_back',
  'stay_back_apolog',
  'back_apolog_take',
  'apolog_take_back',
  'take_back_hous',
  'back_hous_mom',
  'hous_mom_say',
  'mom_say_understand',
  'say_understand_maddi',
  'understand_maddi_pov',
  'maddi_pov_im',
  'pov_im_child',
  'im_child_man',
  'child_man_lose',
  'man_lose_babi',
  'lose_babi_allow',
  'babi_allow_*',
  'allow_*_anyth',
  '*_anyth_*',
  'anyth_*_without',
  '*_without_jasper',
  'without_jasper_say',
  'jasper_say_ye',
  'say_ye_first',
  'ye_first_mayb',
  'first_mayb_let',
  'mayb_let_sinc',
  'let_sinc_middl',
  'sinc_middl_name',
  'middl_name_matter',
  'name_matter_anymor',
  'matter_anymor_still',
  'anymor_still_entertain',
  'still_entertain_idea',
  'entertain_idea_want',
  'idea_want_ask',
  'want_ask_anyway',
  'ask_anyway_ill',
  'anyway_ill_happi',
  'ill_happi_give',
  'happi_give_info',
  'give_info_someon',
  'info_someon_need',
  'someon_need_eta',
  'need_eta_come',
  'eta_come_clarif',
  'come_clarif_threesom',
  'clarif_threesom_got',
  'threesom_got_pregnant',
  'got_pregnant_eta',
  'pregnant_eta_woa',
  'eta_woa_think',
  'woa_think_would',
  'think_would_blow',
  'would_blow_like',
  'blow_like_want',
  'like_want_clarifi',
  'want_clarifi_thing',
  'clarifi_thing_pleas',
  'thing_pleas_stop',
  'pleas_stop_say',
  'stop_say_maddi',
  'say_maddi_unhing',
  'maddi_unhing_crazi',
  'unhing_crazi_neither',
  'crazi_neither_us',
  'neither_us_plan',
  'us_plan_pregnanc',
  'plan_pregnanc_tray',
  'pregnanc_tray_steal',
  'tray_steal_babi',
  'steal_babi_im',
  'babi_im_live',
  'im_live_neither',
  'live_neither_live',
  'neither_live_see',
  'live_see_regularli',
  'see_regularli_ye',
  'regularli_ye_still',
  'ye_still_sleep',
  'still_sleep_togeth',
  'sleep_togeth_call',
  'togeth_call_clarifi',
  'call_clarifi_got',
  'clarifi_got_pregnant',
  'got_pregnant_time',
  'pregnant_time_begin',
  'time_begin_im',
  'begin_im_still',
  'im_still_sleep',
  'still_sleep_three',
  'sleep_three_us',
  'three_us_agre',
  'us_agre_meant',
  'agre_meant_noth',
  'meant_noth_make',
  'noth_make_us',
  'make_us_partner',
  'us_partner_theyv',
  'partner_theyv_relationship',
  'theyv_relationship_never',
  'relationship_never_sleep',
  'never_sleep_maddi',
  'sleep_maddi_jasper',
  'maddi_jasper_happen',
  'jasper_happen_time',
  'happen_time_told',
  'time_told_babi',
  'told_babi_three',
  'babi_three_us',
  'three_us_long',
  'us_long_talk',
  'long_talk_today',
  'talk_today_got',
  'today_got_clarifi',
  'got_clarifi_mani',
  'clarifi_mani_thing',
  'mani_thing_maddi',
  'thing_maddi_thank',
  'maddi_thank_judgment',
  'thank_judgment_accept'],
 ['late',
  'wife',
  'kate',
  'pass',
  'away',
  'year',
  'ago',
  'famili',
  'heirloom',
  'pass',
  'sever',
  'gener',
  'start',
  'great',
  'grandmoth',
  'mother',
  'first',
  'daughter',
  'th',
  'thereabout',
  'birthday',
  'heirloom',
  'highli',
  'valuabl',
  'financi',
  'sens',
  'histori',
  'make',
  'valuabl',
  'peopl',
  'famili',
  'current',
  'possess',
  'kate',
  'pass',
  'away',
  'alway',
  'intend',
  'give',
  'daughter',
  'clair',
  'th',
  'birthday',
  'current',
  'marri',
  'current',
  'wife',
  'year',
  'ago',
  'step',
  'daughter',
  'sarah',
  'adopt',
  'consid',
  'daughter',
  'year',
  'month',
  'old',
  'th',
  'birthday',
  'month',
  'wife',
  'also',
  'adopt',
  'clair',
  'consid',
  'one',
  'famili',
  'wife',
  'ask',
  'give',
  'heirloom',
  'sarah',
  'birthday',
  'continu',
  'tradit',
  'hesit',
  'alway',
  'intend',
  'give',
  'clair',
  'kate',
  'daughter',
  'would',
  'want',
  'continu',
  'tradit',
  'wife',
  'counter',
  'belong',
  'famili',
  'give',
  'eldest',
  'daughter',
  'th',
  'birthday',
  'therefor',
  'sarah',
  'told',
  'consid',
  'sarah',
  'daughter',
  'kate',
  'daughter',
  'belong',
  'kate',
  'go',
  'kate',
  'daughter',
  'wife',
  'said',
  'clair',
  'daughter',
  'anyon',
  'els',
  'wife',
  'accus',
  'play',
  'favorit',
  'told',
  'truli',
  'consid',
  'sarah',
  'daughter',
  'ill',
  'right',
  'thing',
  'realli',
  'accept',
  'sarah',
  'real',
  'daughter',
  'yet',
  'consult',
  'son',
  'kate',
  'year',
  'old',
  'told',
  'go',
  'walk',
  'birthday',
  'parti',
  'bet',
  'one',
  'said',
  'readi',
  'sever',
  'consequ',
  'left',
  'frustrat',
  'way',
  'argument',
  'end',
  'give',
  'away',
  'mom',
  'belong',
  'clair',
  'wife',
  'think',
  'son',
  'overreact',
  'due',
  'age',
  'move',
  'never',
  'bond',
  'sarah',
  'like',
  'clair',
  'consid',
  'sarah',
  'real',
  'sister',
  'otherwis',
  'hed',
  'happi',
  'wife',
  'think',
  'clair',
  'happi',
  'sinc',
  'consid',
  'sarah',
  'big',
  'sister',
  'bring',
  'girl',
  'even',
  'closer',
  'togeth',
  'sarah',
  'happili',
  'share',
  'clair',
  'theyll',
  'would',
  'asshol',
  'wife',
  'want',
  'give',
  'heirloom',
  'sarah',
  'late_wife',
  'wife_kate',
  'kate_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_famili',
  'famili_heirloom',
  'heirloom_pass',
  'pass_sever',
  'sever_gener',
  'gener_start',
  'start_great',
  'great_grandmoth',
  'grandmoth_mother',
  'mother_first',
  'first_daughter',
  'daughter_th',
  'th_thereabout',
  'thereabout_birthday',
  'birthday_heirloom',
  'heirloom_highli',
  'highli_valuabl',
  'valuabl_financi',
  'financi_sens',
  'sens_histori',
  'histori_make',
  'make_valuabl',
  'valuabl_peopl',
  'peopl_famili',
  'famili_current',
  'current_possess',
  'possess_kate',
  'kate_pass',
  'pass_away',
  'away_alway',
  'alway_intend',
  'intend_give',
  'give_daughter',
  'daughter_clair',
  'clair_th',
  'th_birthday',
  'birthday_current',
  'current_marri',
  'marri_current',
  'current_wife',
  'wife_year',
  'year_ago',
  'ago_step',
  'step_daughter',
  'daughter_sarah',
  'sarah_adopt',
  'adopt_consid',
  'consid_daughter',
  'daughter_year',
  'year_month',
  'month_old',
  'old_th',
  'th_birthday',
  'birthday_month',
  'month_wife',
  'wife_also',
  'also_adopt',
  'adopt_clair',
  'clair_consid',
  'consid_one',
  'one_famili',
  'famili_wife',
  'wife_ask',
  'ask_give',
  'give_heirloom',
  'heirloom_sarah',
  'sarah_birthday',
  'birthday_continu',
  'continu_tradit',
  'tradit_hesit',
  'hesit_alway',
  'alway_intend',
  'intend_give',
  'give_clair',
  'clair_kate',
  'kate_daughter',
  'daughter_would',
  'would_want',
  'want_continu',
  'continu_tradit',
  'tradit_wife',
  'wife_counter',
  'counter_belong',
  'belong_famili',
  'famili_give',
  'give_eldest',
  'eldest_daughter',
  'daughter_th',
  'th_birthday',
  'birthday_therefor',
  'therefor_sarah',
  'sarah_told',
  'told_consid',
  'consid_sarah',
  'sarah_daughter',
  'daughter_kate',
  'kate_daughter',
  'daughter_belong',
  'belong_kate',
  'kate_go',
  'go_kate',
  'kate_daughter',
  'daughter_wife',
  'wife_said',
  'said_clair',
  'clair_daughter',
  'daughter_anyon',
  'anyon_els',
  'els_wife',
  'wife_accus',
  'accus_play',
  'play_favorit',
  'favorit_told',
  'told_truli',
  'truli_consid',
  'consid_sarah',
  'sarah_daughter',
  'daughter_ill',
  'ill_right',
  'right_thing',
  'thing_realli',
  'realli_accept',
  'accept_sarah',
  'sarah_real',
  'real_daughter',
  'daughter_yet',
  'yet_consult',
  'consult_son',
  'son_kate',
  'kate_year',
  'year_old',
  'old_told',
  'told_go',
  'go_walk',
  'walk_birthday',
  'birthday_parti',
  'parti_bet',
  'bet_one',
  'one_said',
  'said_readi',
  'readi_sever',
  'sever_consequ',
  'consequ_left',
  'left_frustrat',
  'frustrat_way',
  'way_argument',
  'argument_end',
  'end_give',
  'give_away',
  'away_mom',
  'mom_belong',
  'belong_clair',
  'clair_wife',
  'wife_think',
  'think_son',
  'son_overreact',
  'overreact_due',
  'due_age',
  'age_move',
  'move_never',
  'never_bond',
  'bond_sarah',
  'sarah_like',
  'like_clair',
  'clair_consid',
  'consid_sarah',
  'sarah_real',
  'real_sister',
  'sister_otherwis',
  'otherwis_hed',
  'hed_happi',
  'happi_wife',
  'wife_think',
  'think_clair',
  'clair_happi',
  'happi_sinc',
  'sinc_consid',
  'consid_sarah',
  'sarah_big',
  'big_sister',
  'sister_bring',
  'bring_girl',
  'girl_even',
  'even_closer',
  'closer_togeth',
  'togeth_sarah',
  'sarah_happili',
  'happili_share',
  'share_clair',
  'clair_theyll',
  'theyll_would',
  'would_asshol',
  'asshol_wife',
  'wife_want',
  'want_give',
  'give_heirloom',
  'heirloom_sarah',
  'late_wife_kate',
  'wife_kate_pass',
  'kate_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_famili',
  'ago_famili_heirloom',
  'famili_heirloom_pass',
  'heirloom_pass_sever',
  'pass_sever_gener',
  'sever_gener_start',
  'gener_start_great',
  'start_great_grandmoth',
  'great_grandmoth_mother',
  'grandmoth_mother_first',
  'mother_first_daughter',
  'first_daughter_th',
  'daughter_th_thereabout',
  'th_thereabout_birthday',
  'thereabout_birthday_heirloom',
  'birthday_heirloom_highli',
  'heirloom_highli_valuabl',
  'highli_valuabl_financi',
  'valuabl_financi_sens',
  'financi_sens_histori',
  'sens_histori_make',
  'histori_make_valuabl',
  'make_valuabl_peopl',
  'valuabl_peopl_famili',
  'peopl_famili_current',
  'famili_current_possess',
  'current_possess_kate',
  'possess_kate_pass',
  'kate_pass_away',
  'pass_away_alway',
  'away_alway_intend',
  'alway_intend_give',
  'intend_give_daughter',
  'give_daughter_clair',
  'daughter_clair_th',
  'clair_th_birthday',
  'th_birthday_current',
  'birthday_current_marri',
  'current_marri_current',
  'marri_current_wife',
  'current_wife_year',
  'wife_year_ago',
  'year_ago_step',
  'ago_step_daughter',
  'step_daughter_sarah',
  'daughter_sarah_adopt',
  'sarah_adopt_consid',
  'adopt_consid_daughter',
  'consid_daughter_year',
  'daughter_year_month',
  'year_month_old',
  'month_old_th',
  'old_th_birthday',
  'th_birthday_month',
  'birthday_month_wife',
  'month_wife_also',
  'wife_also_adopt',
  'also_adopt_clair',
  'adopt_clair_consid',
  'clair_consid_one',
  'consid_one_famili',
  'one_famili_wife',
  'famili_wife_ask',
  'wife_ask_give',
  'ask_give_heirloom',
  'give_heirloom_sarah',
  'heirloom_sarah_birthday',
  'sarah_birthday_continu',
  'birthday_continu_tradit',
  'continu_tradit_hesit',
  'tradit_hesit_alway',
  'hesit_alway_intend',
  'alway_intend_give',
  'intend_give_clair',
  'give_clair_kate',
  'clair_kate_daughter',
  'kate_daughter_would',
  'daughter_would_want',
  'would_want_continu',
  'want_continu_tradit',
  'continu_tradit_wife',
  'tradit_wife_counter',
  'wife_counter_belong',
  'counter_belong_famili',
  'belong_famili_give',
  'famili_give_eldest',
  'give_eldest_daughter',
  'eldest_daughter_th',
  'daughter_th_birthday',
  'th_birthday_therefor',
  'birthday_therefor_sarah',
  'therefor_sarah_told',
  'sarah_told_consid',
  'told_consid_sarah',
  'consid_sarah_daughter',
  'sarah_daughter_kate',
  'daughter_kate_daughter',
  'kate_daughter_belong',
  'daughter_belong_kate',
  'belong_kate_go',
  'kate_go_kate',
  'go_kate_daughter',
  'kate_daughter_wife',
  'daughter_wife_said',
  'wife_said_clair',
  'said_clair_daughter',
  'clair_daughter_anyon',
  'daughter_anyon_els',
  'anyon_els_wife',
  'els_wife_accus',
  'wife_accus_play',
  'accus_play_favorit',
  'play_favorit_told',
  'favorit_told_truli',
  'told_truli_consid',
  'truli_consid_sarah',
  'consid_sarah_daughter',
  'sarah_daughter_ill',
  'daughter_ill_right',
  'ill_right_thing',
  'right_thing_realli',
  'thing_realli_accept',
  'realli_accept_sarah',
  'accept_sarah_real',
  'sarah_real_daughter',
  'real_daughter_yet',
  'daughter_yet_consult',
  'yet_consult_son',
  'consult_son_kate',
  'son_kate_year',
  'kate_year_old',
  'year_old_told',
  'old_told_go',
  'told_go_walk',
  'go_walk_birthday',
  'walk_birthday_parti',
  'birthday_parti_bet',
  'parti_bet_one',
  'bet_one_said',
  'one_said_readi',
  'said_readi_sever',
  'readi_sever_consequ',
  'sever_consequ_left',
  'consequ_left_frustrat',
  'left_frustrat_way',
  'frustrat_way_argument',
  'way_argument_end',
  'argument_end_give',
  'end_give_away',
  'give_away_mom',
  'away_mom_belong',
  'mom_belong_clair',
  'belong_clair_wife',
  'clair_wife_think',
  'wife_think_son',
  'think_son_overreact',
  'son_overreact_due',
  'overreact_due_age',
  'due_age_move',
  'age_move_never',
  'move_never_bond',
  'never_bond_sarah',
  'bond_sarah_like',
  'sarah_like_clair',
  'like_clair_consid',
  'clair_consid_sarah',
  'consid_sarah_real',
  'sarah_real_sister',
  'real_sister_otherwis',
  'sister_otherwis_hed',
  'otherwis_hed_happi',
  'hed_happi_wife',
  'happi_wife_think',
  'wife_think_clair',
  'think_clair_happi',
  'clair_happi_sinc',
  'happi_sinc_consid',
  'sinc_consid_sarah',
  'consid_sarah_big',
  'sarah_big_sister',
  'big_sister_bring',
  'sister_bring_girl',
  'bring_girl_even',
  'girl_even_closer',
  'even_closer_togeth',
  'closer_togeth_sarah',
  'togeth_sarah_happili',
  'sarah_happili_share',
  'happili_share_clair',
  'share_clair_theyll',
  'clair_theyll_would',
  'theyll_would_asshol',
  'would_asshol_wife',
  'asshol_wife_want',
  'wife_want_give',
  'want_give_heirloom',
  'give_heirloom_sarah'],
 ['mom',
  'late',
  'stage',
  'alzheim',
  'unabl',
  'manag',
  'money',
  'need',
  'around',
  'clock',
  'care',
  'probabl',
  'would',
  'safer',
  'put',
  'nurs',
  'home',
  'made',
  'us',
  'promis',
  'last',
  'resort',
  'thank',
  'lot',
  'invest',
  'save',
  'dad',
  'pass',
  'get',
  'hire',
  'person',
  'carer',
  'homemi',
  'sister',
  'one',
  'live',
  'closest',
  'visit',
  'often',
  'handl',
  'mom',
  'financ',
  'give',
  'sister',
  '$',
  'month',
  'run',
  'errand',
  'help',
  'look',
  'mom',
  'sinc',
  'live',
  'state',
  'sister',
  'call',
  'tell',
  'lot',
  'cash',
  'withdraw',
  'recent',
  'mom',
  'card',
  'check',
  'nearli',
  'year',
  'worth',
  '$',
  '-',
  'withdrawn',
  'call',
  'sister',
  'handl',
  'financ',
  'confus',
  'say',
  'never',
  'take',
  'cash',
  'pay',
  'bill',
  'bank',
  'card',
  'use',
  'cc',
  'groceri',
  'etc',
  'freez',
  'bank',
  'card',
  'take',
  'red',
  'eye',
  'long',
  'stori',
  'short',
  'ask',
  'bank',
  'atm',
  'withdraw',
  'happen',
  'sister',
  'look',
  'shock',
  'googl',
  'locat',
  'realiz',
  'close',
  'son',
  'school',
  'wait',
  'son',
  'got',
  'home',
  'ask',
  'work',
  'said',
  'local',
  'restaur',
  'said',
  'would',
  'like',
  'go',
  'restaur',
  'confirm',
  'work',
  'got',
  'realli',
  'panick',
  'said',
  'manag',
  'chang',
  'know',
  'himi',
  'ask',
  'paycheck',
  'final',
  'give',
  'admit',
  'job',
  'sister',
  'ask',
  'money',
  'new',
  'stuff',
  'bought',
  'home',
  'come',
  'admit',
  'steal',
  'bank',
  'card',
  'make',
  'cash',
  'withdraw',
  'ask',
  'got',
  'pin',
  'sister',
  'confess',
  'write',
  'pin',
  'sticki',
  'note',
  'forget',
  '🤦\u200d♂️',
  'take',
  'bank',
  'statement',
  'calcul',
  '$',
  'told',
  'pay',
  'back',
  'im',
  'file',
  'polic',
  'report',
  'theft',
  'sister',
  'beg',
  'say',
  'anyth',
  'record',
  'might',
  'get',
  'colleg',
  'told',
  'pay',
  'said',
  'struggl',
  'moneysh',
  'singl',
  'mother',
  'told',
  'good',
  'enough',
  'complain',
  'son',
  'know',
  'better',
  'told',
  'put',
  'year',
  'old',
  'jail',
  'might',
  'older',
  'better',
  'learn',
  'lesson',
  'said',
  'take',
  'son',
  'inherit',
  'would',
  'mom',
  'yell',
  'mom',
  'state',
  'judg',
  'would',
  'write',
  'call',
  'lawyer',
  'ask',
  'suggest',
  'file',
  'polic',
  'report',
  'includ',
  'nephew',
  'name',
  'yet',
  'sister',
  'scream',
  'im',
  'ruin',
  'son',
  'life',
  'involv',
  'polic',
  'kid',
  'im',
  'happi',
  'steal',
  'grandma',
  'look',
  'mom',
  'sick',
  'cant',
  'imagin',
  'go',
  'older',
  'mom_late',
  'late_stage',
  'stage_alzheim',
  'alzheim_unabl',
  'unabl_manag',
  'manag_money',
  'money_need',
  'need_around',
  'around_clock',
  'clock_care',
  'care_probabl',
  'probabl_would',
  'would_safer',
  'safer_put',
  'put_nurs',
  'nurs_home',
  'home_made',
  'made_us',
  'us_promis',
  'promis_last',
  'last_resort',
  'resort_thank',
  'thank_lot',
  'lot_invest',
  'invest_save',
  'save_dad',
  'dad_pass',
  'pass_get',
  'get_hire',
  'hire_person',
  'person_carer',
  'carer_homemi',
  'homemi_sister',
  'sister_one',
  'one_live',
  'live_closest',
  'closest_visit',
  'visit_often',
  'often_handl',
  'handl_mom',
  'mom_financ',
  'financ_give',
  'give_sister',
  'sister_$',
  '$_month',
  'month_run',
  'run_errand',
  'errand_help',
  'help_look',
  'look_mom',
  'mom_sinc',
  'sinc_live',
  'live_state',
  'state_sister',
  'sister_call',
  'call_tell',
  'tell_lot',
  'lot_cash',
  'cash_withdraw',
  'withdraw_recent',
  'recent_mom',
  'mom_card',
  'card_check',
  'check_nearli',
  'nearli_year',
  'year_worth',
  'worth_$',
  '$_-',
  '-_withdrawn',
  'withdrawn_call',
  'call_sister',
  'sister_handl',
  'handl_financ',
  'financ_confus',
  'confus_say',
  'say_never',
  'never_take',
  'take_cash',
  'cash_pay',
  'pay_bill',
  'bill_bank',
  'bank_card',
  'card_use',
  'use_cc',
  'cc_groceri',
  'groceri_etc',
  'etc_freez',
  'freez_bank',
  'bank_card',
  'card_take',
  'take_red',
  'red_eye',
  'eye_long',
  'long_stori',
  'stori_short',
  'short_ask',
  'ask_bank',
  'bank_atm',
  'atm_withdraw',
  'withdraw_happen',
  'happen_sister',
  'sister_look',
  'look_shock',
  'shock_googl',
  'googl_locat',
  'locat_realiz',
  'realiz_close',
  'close_son',
  'son_school',
  'school_wait',
  'wait_son',
  'son_got',
  'got_home',
  'home_ask',
  'ask_work',
  'work_said',
  'said_local',
  'local_restaur',
  'restaur_said',
  'said_would',
  'would_like',
  'like_go',
  'go_restaur',
  'restaur_confirm',
  'confirm_work',
  'work_got',
  'got_realli',
  'realli_panick',
  'panick_said',
  'said_manag',
  'manag_chang',
  'chang_know',
  'know_himi',
  'himi_ask',
  'ask_paycheck',
  'paycheck_final',
  'final_give',
  'give_admit',
  'admit_job',
  'job_sister',
  'sister_ask',
  'ask_money',
  'money_new',
  'new_stuff',
  'stuff_bought',
  'bought_home',
  'home_come',
  'come_admit',
  'admit_steal',
  'steal_bank',
  'bank_card',
  'card_make',
  'make_cash',
  'cash_withdraw',
  'withdraw_ask',
  'ask_got',
  'got_pin',
  'pin_sister',
  'sister_confess',
  'confess_write',
  'write_pin',
  'pin_sticki',
  'sticki_note',
  'note_forget',
  'forget_🤦\u200d♂️',
  '🤦\u200d♂️_take',
  'take_bank',
  'bank_statement',
  'statement_calcul',
  'calcul_$',
  '$_told',
  'told_pay',
  'pay_back',
  'back_im',
  'im_file',
  'file_polic',
  'polic_report',
  'report_theft',
  'theft_sister',
  'sister_beg',
  'beg_say',
  'say_anyth',
  'anyth_record',
  'record_might',
  'might_get',
  'get_colleg',
  'colleg_told',
  'told_pay',
  'pay_said',
  'said_struggl',
  'struggl_moneysh',
  'moneysh_singl',
  'singl_mother',
  'mother_told',
  'told_good',
  'good_enough',
  'enough_complain',
  'complain_son',
  'son_know',
  'know_better',
  'better_told',
  'told_put',
  'put_year',
  'year_old',
  'old_jail',
  'jail_might',
  'might_older',
  'older_better',
  'better_learn',
  'learn_lesson',
  'lesson_said',
  'said_take',
  'take_son',
  'son_inherit',
  'inherit_would',
  'would_mom',
  'mom_yell',
  'yell_mom',
  'mom_state',
  'state_judg',
  'judg_would',
  'would_write',
  'write_call',
  'call_lawyer',
  'lawyer_ask',
  'ask_suggest',
  'suggest_file',
  'file_polic',
  'polic_report',
  'report_includ',
  'includ_nephew',
  'nephew_name',
  'name_yet',
  'yet_sister',
  'sister_scream',
  'scream_im',
  'im_ruin',
  'ruin_son',
  'son_life',
  'life_involv',
  'involv_polic',
  'polic_kid',
  'kid_im',
  'im_happi',
  'happi_steal',
  'steal_grandma',
  'grandma_look',
  'look_mom',
  'mom_sick',
  'sick_cant',
  'cant_imagin',
  'imagin_go',
  'go_older',
  'mom_late_stage',
  'late_stage_alzheim',
  'stage_alzheim_unabl',
  'alzheim_unabl_manag',
  'unabl_manag_money',
  'manag_money_need',
  'money_need_around',
  'need_around_clock',
  'around_clock_care',
  'clock_care_probabl',
  'care_probabl_would',
  'probabl_would_safer',
  'would_safer_put',
  'safer_put_nurs',
  'put_nurs_home',
  'nurs_home_made',
  'home_made_us',
  'made_us_promis',
  'us_promis_last',
  'promis_last_resort',
  'last_resort_thank',
  'resort_thank_lot',
  'thank_lot_invest',
  'lot_invest_save',
  'invest_save_dad',
  'save_dad_pass',
  'dad_pass_get',
  'pass_get_hire',
  'get_hire_person',
  'hire_person_carer',
  'person_carer_homemi',
  'carer_homemi_sister',
  'homemi_sister_one',
  'sister_one_live',
  'one_live_closest',
  'live_closest_visit',
  'closest_visit_often',
  'visit_often_handl',
  'often_handl_mom',
  'handl_mom_financ',
  'mom_financ_give',
  'financ_give_sister',
  'give_sister_$',
  'sister_$_month',
  '$_month_run',
  'month_run_errand',
  'run_errand_help',
  'errand_help_look',
  'help_look_mom',
  'look_mom_sinc',
  'mom_sinc_live',
  'sinc_live_state',
  'live_state_sister',
  'state_sister_call',
  'sister_call_tell',
  'call_tell_lot',
  'tell_lot_cash',
  'lot_cash_withdraw',
  'cash_withdraw_recent',
  'withdraw_recent_mom',
  'recent_mom_card',
  'mom_card_check',
  'card_check_nearli',
  'check_nearli_year',
  'nearli_year_worth',
  'year_worth_$',
  'worth_$_-',
  '$_-_withdrawn',
  '-_withdrawn_call',
  'withdrawn_call_sister',
  'call_sister_handl',
  'sister_handl_financ',
  'handl_financ_confus',
  'financ_confus_say',
  'confus_say_never',
  'say_never_take',
  'never_take_cash',
  'take_cash_pay',
  'cash_pay_bill',
  'pay_bill_bank',
  'bill_bank_card',
  'bank_card_use',
  'card_use_cc',
  'use_cc_groceri',
  'cc_groceri_etc',
  'groceri_etc_freez',
  'etc_freez_bank',
  'freez_bank_card',
  'bank_card_take',
  'card_take_red',
  'take_red_eye',
  'red_eye_long',
  'eye_long_stori',
  'long_stori_short',
  'stori_short_ask',
  'short_ask_bank',
  'ask_bank_atm',
  'bank_atm_withdraw',
  'atm_withdraw_happen',
  'withdraw_happen_sister',
  'happen_sister_look',
  'sister_look_shock',
  'look_shock_googl',
  'shock_googl_locat',
  'googl_locat_realiz',
  'locat_realiz_close',
  'realiz_close_son',
  'close_son_school',
  'son_school_wait',
  'school_wait_son',
  'wait_son_got',
  'son_got_home',
  'got_home_ask',
  'home_ask_work',
  'ask_work_said',
  'work_said_local',
  'said_local_restaur',
  'local_restaur_said',
  'restaur_said_would',
  'said_would_like',
  'would_like_go',
  'like_go_restaur',
  'go_restaur_confirm',
  'restaur_confirm_work',
  'confirm_work_got',
  'work_got_realli',
  'got_realli_panick',
  'realli_panick_said',
  'panick_said_manag',
  'said_manag_chang',
  'manag_chang_know',
  'chang_know_himi',
  'know_himi_ask',
  'himi_ask_paycheck',
  'ask_paycheck_final',
  'paycheck_final_give',
  'final_give_admit',
  'give_admit_job',
  'admit_job_sister',
  'job_sister_ask',
  'sister_ask_money',
  'ask_money_new',
  'money_new_stuff',
  'new_stuff_bought',
  'stuff_bought_home',
  'bought_home_come',
  'home_come_admit',
  'come_admit_steal',
  'admit_steal_bank',
  'steal_bank_card',
  'bank_card_make',
  'card_make_cash',
  'make_cash_withdraw',
  'cash_withdraw_ask',
  'withdraw_ask_got',
  'ask_got_pin',
  'got_pin_sister',
  'pin_sister_confess',
  'sister_confess_write',
  'confess_write_pin',
  'write_pin_sticki',
  'pin_sticki_note',
  'sticki_note_forget',
  'note_forget_🤦\u200d♂️',
  'forget_🤦\u200d♂️_take',
  '🤦\u200d♂️_take_bank',
  'take_bank_statement',
  'bank_statement_calcul',
  'statement_calcul_$',
  'calcul_$_told',
  '$_told_pay',
  'told_pay_back',
  'pay_back_im',
  'back_im_file',
  'im_file_polic',
  'file_polic_report',
  'polic_report_theft',
  'report_theft_sister',
  'theft_sister_beg',
  'sister_beg_say',
  'beg_say_anyth',
  'say_anyth_record',
  'anyth_record_might',
  'record_might_get',
  'might_get_colleg',
  'get_colleg_told',
  'colleg_told_pay',
  'told_pay_said',
  'pay_said_struggl',
  'said_struggl_moneysh',
  'struggl_moneysh_singl',
  'moneysh_singl_mother',
  'singl_mother_told',
  'mother_told_good',
  'told_good_enough',
  'good_enough_complain',
  'enough_complain_son',
  'complain_son_know',
  'son_know_better',
  'know_better_told',
  'better_told_put',
  'told_put_year',
  'put_year_old',
  'year_old_jail',
  'old_jail_might',
  'jail_might_older',
  'might_older_better',
  'older_better_learn',
  'better_learn_lesson',
  'learn_lesson_said',
  'lesson_said_take',
  'said_take_son',
  'take_son_inherit',
  'son_inherit_would',
  'inherit_would_mom',
  'would_mom_yell',
  'mom_yell_mom',
  'yell_mom_state',
  'mom_state_judg',
  'state_judg_would',
  'judg_would_write',
  'would_write_call',
  'write_call_lawyer',
  'call_lawyer_ask',
  'lawyer_ask_suggest',
  'ask_suggest_file',
  'suggest_file_polic',
  'file_polic_report',
  'polic_report_includ',
  'report_includ_nephew',
  'includ_nephew_name',
  'nephew_name_yet',
  'name_yet_sister',
  'yet_sister_scream',
  'sister_scream_im',
  'scream_im_ruin',
  'im_ruin_son',
  'ruin_son_life',
  'son_life_involv',
  'life_involv_polic',
  'involv_polic_kid',
  'polic_kid_im',
  'kid_im_happi',
  'im_happi_steal',
  'happi_steal_grandma',
  'steal_grandma_look',
  'grandma_look_mom',
  'look_mom_sick',
  'mom_sick_cant',
  'sick_cant_imagin',
  'cant_imagin_go',
  'imagin_go_older'],
 ['year',
  'old',
  'babysit',
  'make',
  'money',
  'took',
  'first',
  'aid',
  'cours',
  'babysit',
  'cours',
  'lat',
  'weekend',
  'one',
  'littl',
  'sister',
  'classmat',
  'parent',
  'wed',
  'go',
  'ask',
  'would',
  'babysit',
  'ask',
  'late',
  'would',
  'need',
  'pack',
  'overnight',
  'bag',
  'go',
  'stay',
  'night',
  'said',
  'would',
  'home',
  'midnight',
  'check',
  'dad',
  'okay',
  'ride',
  'want',
  'alon',
  'car',
  'adult',
  'know',
  'dad',
  'pick',
  'kid',
  'asleep',
  'watch',
  'tv',
  'text',
  'doubl',
  'would',
  'time',
  'mom',
  'text',
  'back',
  'ye',
  'still',
  'text',
  'answer',
  'call',
  'dad',
  'piss',
  'one',
  'oclock',
  'call',
  'answer',
  'dad',
  'went',
  'got',
  'coffe',
  'home',
  'came',
  'back',
  'calm',
  'good',
  'readi',
  'blow',
  'text',
  'everi',
  'minut',
  'respons',
  'idea',
  'text',
  'someon',
  'tri',
  'break',
  'garag',
  'alarm',
  'scare',
  'away',
  'home',
  'drunk',
  'uber',
  'minut',
  'dad',
  'made',
  'pay',
  'extra',
  'time',
  'left',
  'told',
  'im',
  'allow',
  'babysit',
  'unless',
  'charg',
  'overnight',
  'stay',
  'yesterday',
  'school',
  'saw',
  'mom',
  'pick',
  'sister',
  'school',
  'gave',
  'shit',
  'scare',
  'husband',
  'check',
  'secur',
  'camera',
  'one',
  'tri',
  'break',
  'said',
  'sorri',
  'alarm',
  'went',
  'call',
  'call',
  'liar',
  'fair',
  'feel',
  'bad',
  'lie',
  'first',
  'mom',
  'say',
  'suck',
  'dad',
  'say',
  'broke',
  'deal',
  'kind',
  'feel',
  'bad',
  'trick',
  'come',
  'home',
  'parti',
  'could',
  'told',
  'overnight',
  'text',
  'go',
  'late',
  'dad',
  'brought',
  'overnight',
  'bag',
  'happen',
  'edit',
  'mom',
  'want',
  'call',
  'polic',
  'see',
  'accid',
  'thought',
  'still',
  'wed',
  'would',
  'caus',
  'scene',
  'year_old',
  'old_babysit',
  'babysit_make',
  'make_money',
  'money_took',
  'took_first',
  'first_aid',
  'aid_cours',
  'cours_babysit',
  'babysit_cours',
  'cours_lat',
  'lat_weekend',
  'weekend_one',
  'one_littl',
  'littl_sister',
  'sister_classmat',
  'classmat_parent',
  'parent_wed',
  'wed_go',
  'go_ask',
  'ask_would',
  'would_babysit',
  'babysit_ask',
  'ask_late',
  'late_would',
  'would_need',
  'need_pack',
  'pack_overnight',
  'overnight_bag',
  'bag_go',
  'go_stay',
  'stay_night',
  'night_said',
  'said_would',
  'would_home',
  'home_midnight',
  'midnight_check',
  'check_dad',
  'dad_okay',
  'okay_ride',
  'ride_want',
  'want_alon',
  'alon_car',
  'car_adult',
  'adult_know',
  'know_dad',
  'dad_pick',
  'pick_kid',
  'kid_asleep',
  'asleep_watch',
  'watch_tv',
  'tv_text',
  'text_doubl',
  'doubl_would',
  'would_time',
  'time_mom',
  'mom_text',
  'text_back',
  'back_ye',
  'ye_still',
  'still_text',
  'text_answer',
  'answer_call',
  'call_dad',
  'dad_piss',
  'piss_one',
  'one_oclock',
  'oclock_call',
  'call_answer',
  'answer_dad',
  'dad_went',
  'went_got',
  'got_coffe',
  'coffe_home',
  'home_came',
  'came_back',
  'back_calm',
  'calm_good',
  'good_readi',
  'readi_blow',
  'blow_text',
  'text_everi',
  'everi_minut',
  'minut_respons',
  'respons_idea',
  'idea_text',
  'text_someon',
  'someon_tri',
  'tri_break',
  'break_garag',
  'garag_alarm',
  'alarm_scare',
  'scare_away',
  'away_home',
  'home_drunk',
  'drunk_uber',
  'uber_minut',
  'minut_dad',
  'dad_made',
  'made_pay',
  'pay_extra',
  'extra_time',
  'time_left',
  'left_told',
  'told_im',
  'im_allow',
  'allow_babysit',
  'babysit_unless',
  'unless_charg',
  'charg_overnight',
  'overnight_stay',
  'stay_yesterday',
  'yesterday_school',
  'school_saw',
  'saw_mom',
  'mom_pick',
  'pick_sister',
  'sister_school',
  'school_gave',
  'gave_shit',
  'shit_scare',
  'scare_husband',
  'husband_check',
  'check_secur',
  'secur_camera',
  'camera_one',
  'one_tri',
  'tri_break',
  'break_said',
  'said_sorri',
  'sorri_alarm',
  'alarm_went',
  'went_call',
  'call_call',
  'call_liar',
  'liar_fair',
  'fair_feel',
  'feel_bad',
  'bad_lie',
  'lie_first',
  'first_mom',
  'mom_say',
  'say_suck',
  'suck_dad',
  'dad_say',
  'say_broke',
  'broke_deal',
  'deal_kind',
  'kind_feel',
  'feel_bad',
  'bad_trick',
  'trick_come',
  'come_home',
  'home_parti',
  'parti_could',
  'could_told',
  'told_overnight',
  'overnight_text',
  'text_go',
  'go_late',
  'late_dad',
  'dad_brought',
  'brought_overnight',
  'overnight_bag',
  'bag_happen',
  'happen_edit',
  'edit_mom',
  'mom_want',
  'want_call',
  'call_polic',
  'polic_see',
  'see_accid',
  'accid_thought',
  'thought_still',
  'still_wed',
  'wed_would',
  'would_caus',
  'caus_scene',
  'year_old_babysit',
  'old_babysit_make',
  'babysit_make_money',
  'make_money_took',
  'money_took_first',
  'took_first_aid',
  'first_aid_cours',
  'aid_cours_babysit',
  'cours_babysit_cours',
  'babysit_cours_lat',
  'cours_lat_weekend',
  'lat_weekend_one',
  'weekend_one_littl',
  'one_littl_sister',
  'littl_sister_classmat',
  'sister_classmat_parent',
  'classmat_parent_wed',
  'parent_wed_go',
  'wed_go_ask',
  'go_ask_would',
  'ask_would_babysit',
  'would_babysit_ask',
  'babysit_ask_late',
  'ask_late_would',
  'late_would_need',
  'would_need_pack',
  'need_pack_overnight',
  'pack_overnight_bag',
  'overnight_bag_go',
  'bag_go_stay',
  'go_stay_night',
  'stay_night_said',
  'night_said_would',
  'said_would_home',
  'would_home_midnight',
  'home_midnight_check',
  'midnight_check_dad',
  'check_dad_okay',
  'dad_okay_ride',
  'okay_ride_want',
  'ride_want_alon',
  'want_alon_car',
  'alon_car_adult',
  'car_adult_know',
  'adult_know_dad',
  'know_dad_pick',
  'dad_pick_kid',
  'pick_kid_asleep',
  'kid_asleep_watch',
  'asleep_watch_tv',
  'watch_tv_text',
  'tv_text_doubl',
  'text_doubl_would',
  'doubl_would_time',
  'would_time_mom',
  'time_mom_text',
  'mom_text_back',
  'text_back_ye',
  'back_ye_still',
  'ye_still_text',
  'still_text_answer',
  'text_answer_call',
  'answer_call_dad',
  'call_dad_piss',
  'dad_piss_one',
  'piss_one_oclock',
  'one_oclock_call',
  'oclock_call_answer',
  'call_answer_dad',
  'answer_dad_went',
  'dad_went_got',
  'went_got_coffe',
  'got_coffe_home',
  'coffe_home_came',
  'home_came_back',
  'came_back_calm',
  'back_calm_good',
  'calm_good_readi',
  'good_readi_blow',
  'readi_blow_text',
  'blow_text_everi',
  'text_everi_minut',
  'everi_minut_respons',
  'minut_respons_idea',
  'respons_idea_text',
  'idea_text_someon',
  'text_someon_tri',
  'someon_tri_break',
  'tri_break_garag',
  'break_garag_alarm',
  'garag_alarm_scare',
  'alarm_scare_away',
  'scare_away_home',
  'away_home_drunk',
  'home_drunk_uber',
  'drunk_uber_minut',
  'uber_minut_dad',
  'minut_dad_made',
  'dad_made_pay',
  'made_pay_extra',
  'pay_extra_time',
  'extra_time_left',
  'time_left_told',
  'left_told_im',
  'told_im_allow',
  'im_allow_babysit',
  'allow_babysit_unless',
  'babysit_unless_charg',
  'unless_charg_overnight',
  'charg_overnight_stay',
  'overnight_stay_yesterday',
  'stay_yesterday_school',
  'yesterday_school_saw',
  'school_saw_mom',
  'saw_mom_pick',
  'mom_pick_sister',
  'pick_sister_school',
  'sister_school_gave',
  'school_gave_shit',
  'gave_shit_scare',
  'shit_scare_husband',
  'scare_husband_check',
  'husband_check_secur',
  'check_secur_camera',
  'secur_camera_one',
  'camera_one_tri',
  'one_tri_break',
  'tri_break_said',
  'break_said_sorri',
  'said_sorri_alarm',
  'sorri_alarm_went',
  'alarm_went_call',
  'went_call_call',
  'call_call_liar',
  'call_liar_fair',
  'liar_fair_feel',
  'fair_feel_bad',
  'feel_bad_lie',
  'bad_lie_first',
  'lie_first_mom',
  'first_mom_say',
  'mom_say_suck',
  'say_suck_dad',
  'suck_dad_say',
  'dad_say_broke',
  'say_broke_deal',
  'broke_deal_kind',
  'deal_kind_feel',
  'kind_feel_bad',
  'feel_bad_trick',
  'bad_trick_come',
  'trick_come_home',
  'come_home_parti',
  'home_parti_could',
  'parti_could_told',
  'could_told_overnight',
  'told_overnight_text',
  'overnight_text_go',
  'text_go_late',
  'go_late_dad',
  'late_dad_brought',
  'dad_brought_overnight',
  'brought_overnight_bag',
  'overnight_bag_happen',
  'bag_happen_edit',
  'happen_edit_mom',
  'edit_mom_want',
  'mom_want_call',
  'want_call_polic',
  'call_polic_see',
  'polic_see_accid',
  'see_accid_thought',
  'accid_thought_still',
  'thought_still_wed',
  'still_wed_would',
  'wed_would_caus',
  'would_caus_scene'],
 ['parent',
  'terribl',
  'money',
  'littl',
  'father',
  'gambl',
  'away',
  'save',
  '$',
  'riski',
  'penni',
  'stock',
  'got',
  'wipe',
  'forc',
  'move',
  'singl',
  'bedroom',
  'hous',
  'us',
  'mom',
  'fell',
  'mlm',
  'imag',
  'happen',
  'lost',
  'payment',
  'hous',
  'save',
  'beg',
  'sign',
  'sinc',
  'saw',
  'clearli',
  'scam',
  'show',
  'evid',
  'laugh',
  'ignor',
  'lost',
  '$',
  'recent',
  'fall',
  'colleg',
  'signup',
  'scam',
  'lost',
  '$',
  'sign',
  'colleg',
  'need',
  'loan',
  'tri',
  'go',
  'though',
  'privat',
  'broker',
  'promis',
  'get',
  'school',
  'loan',
  'would',
  'use',
  'whatev',
  'want',
  'went',
  'see',
  'broker',
  'told',
  'scam',
  'ignor',
  'basic',
  'tri',
  'scam',
  'govern',
  'got',
  'scam',
  'instead',
  'actual',
  'tri',
  'pri',
  'pen',
  'away',
  'father',
  'hand',
  'got',
  'desper',
  'write',
  'bank',
  'info',
  'ssn',
  'scream',
  'embarrass',
  'anyway',
  'lost',
  'money',
  'homeless',
  'credit',
  'crap',
  'bare',
  'afford',
  'even',
  'crappi',
  'apart',
  'probabl',
  'cant',
  'get',
  'money',
  'back',
  'sinc',
  'littl',
  'document',
  'broker',
  'promis',
  'live',
  'car',
  'beg',
  'money',
  '$',
  'save',
  'wait',
  'buy',
  'hous',
  'know',
  'stupidli',
  'told',
  'save',
  'hous',
  'call',
  'show',
  'apart',
  'ask',
  'money',
  'also',
  'want',
  'move',
  'meantim',
  'roommat',
  'agre',
  'visit',
  'friend',
  'famili',
  'max',
  'week',
  'prevent',
  'resent',
  'parent',
  'move',
  'probabl',
  'refus',
  'move',
  'go',
  'food',
  'pantri',
  'honestli',
  'cant',
  'find',
  'im',
  'sympathet',
  'sinc',
  'listen',
  'need',
  'money',
  'parent_terribl',
  'terribl_money',
  'money_littl',
  'littl_father',
  'father_gambl',
  'gambl_away',
  'away_save',
  'save_$',
  '$_riski',
  'riski_penni',
  'penni_stock',
  'stock_got',
  'got_wipe',
  'wipe_forc',
  'forc_move',
  'move_singl',
  'singl_bedroom',
  'bedroom_hous',
  'hous_us',
  'us_mom',
  'mom_fell',
  'fell_mlm',
  'mlm_imag',
  'imag_happen',
  'happen_lost',
  'lost_payment',
  'payment_hous',
  'hous_save',
  'save_beg',
  'beg_sign',
  'sign_sinc',
  'sinc_saw',
  'saw_clearli',
  'clearli_scam',
  'scam_show',
  'show_evid',
  'evid_laugh',
  'laugh_ignor',
  'ignor_lost',
  'lost_$',
  '$_recent',
  'recent_fall',
  'fall_colleg',
  'colleg_signup',
  'signup_scam',
  'scam_lost',
  'lost_$',
  '$_sign',
  'sign_colleg',
  'colleg_need',
  'need_loan',
  'loan_tri',
  'tri_go',
  'go_though',
  'though_privat',
  'privat_broker',
  'broker_promis',
  'promis_get',
  'get_school',
  'school_loan',
  'loan_would',
  'would_use',
  'use_whatev',
  'whatev_want',
  'want_went',
  'went_see',
  'see_broker',
  'broker_told',
  'told_scam',
  'scam_ignor',
  'ignor_basic',
  'basic_tri',
  'tri_scam',
  'scam_govern',
  'govern_got',
  'got_scam',
  'scam_instead',
  'instead_actual',
  'actual_tri',
  'tri_pri',
  'pri_pen',
  'pen_away',
  'away_father',
  'father_hand',
  'hand_got',
  'got_desper',
  'desper_write',
  'write_bank',
  'bank_info',
  'info_ssn',
  'ssn_scream',
  'scream_embarrass',
  'embarrass_anyway',
  'anyway_lost',
  'lost_money',
  'money_homeless',
  'homeless_credit',
  'credit_crap',
  'crap_bare',
  'bare_afford',
  'afford_even',
  'even_crappi',
  'crappi_apart',
  'apart_probabl',
  'probabl_cant',
  'cant_get',
  'get_money',
  'money_back',
  'back_sinc',
  'sinc_littl',
  'littl_document',
  'document_broker',
  'broker_promis',
  'promis_live',
  'live_car',
  'car_beg',
  'beg_money',
  'money_$',
  '$_save',
  'save_wait',
  'wait_buy',
  'buy_hous',
  'hous_know',
  'know_stupidli',
  'stupidli_told',
  'told_save',
  'save_hous',
  'hous_call',
  'call_show',
  'show_apart',
  'apart_ask',
  'ask_money',
  'money_also',
  'also_want',
  'want_move',
  'move_meantim',
  'meantim_roommat',
  'roommat_agre',
  'agre_visit',
  'visit_friend',
  'friend_famili',
  'famili_max',
  'max_week',
  'week_prevent',
  'prevent_resent',
  'resent_parent',
  'parent_move',
  'move_probabl',
  'probabl_refus',
  'refus_move',
  'move_go',
  'go_food',
  'food_pantri',
  'pantri_honestli',
  'honestli_cant',
  'cant_find',
  'find_im',
  'im_sympathet',
  'sympathet_sinc',
  'sinc_listen',
  'listen_need',
  'need_money',
  'parent_terribl_money',
  'terribl_money_littl',
  'money_littl_father',
  'littl_father_gambl',
  'father_gambl_away',
  'gambl_away_save',
  'away_save_$',
  'save_$_riski',
  '$_riski_penni',
  'riski_penni_stock',
  'penni_stock_got',
  'stock_got_wipe',
  'got_wipe_forc',
  'wipe_forc_move',
  'forc_move_singl',
  'move_singl_bedroom',
  'singl_bedroom_hous',
  'bedroom_hous_us',
  'hous_us_mom',
  'us_mom_fell',
  'mom_fell_mlm',
  'fell_mlm_imag',
  'mlm_imag_happen',
  'imag_happen_lost',
  'happen_lost_payment',
  'lost_payment_hous',
  'payment_hous_save',
  'hous_save_beg',
  'save_beg_sign',
  'beg_sign_sinc',
  'sign_sinc_saw',
  'sinc_saw_clearli',
  'saw_clearli_scam',
  'clearli_scam_show',
  'scam_show_evid',
  'show_evid_laugh',
  'evid_laugh_ignor',
  'laugh_ignor_lost',
  'ignor_lost_$',
  'lost_$_recent',
  '$_recent_fall',
  'recent_fall_colleg',
  'fall_colleg_signup',
  'colleg_signup_scam',
  'signup_scam_lost',
  'scam_lost_$',
  'lost_$_sign',
  '$_sign_colleg',
  'sign_colleg_need',
  'colleg_need_loan',
  'need_loan_tri',
  'loan_tri_go',
  'tri_go_though',
  'go_though_privat',
  'though_privat_broker',
  'privat_broker_promis',
  'broker_promis_get',
  'promis_get_school',
  'get_school_loan',
  'school_loan_would',
  'loan_would_use',
  'would_use_whatev',
  'use_whatev_want',
  'whatev_want_went',
  'want_went_see',
  'went_see_broker',
  'see_broker_told',
  'broker_told_scam',
  'told_scam_ignor',
  'scam_ignor_basic',
  'ignor_basic_tri',
  'basic_tri_scam',
  'tri_scam_govern',
  'scam_govern_got',
  'govern_got_scam',
  'got_scam_instead',
  'scam_instead_actual',
  'instead_actual_tri',
  'actual_tri_pri',
  'tri_pri_pen',
  'pri_pen_away',
  'pen_away_father',
  'away_father_hand',
  'father_hand_got',
  'hand_got_desper',
  'got_desper_write',
  'desper_write_bank',
  'write_bank_info',
  'bank_info_ssn',
  'info_ssn_scream',
  'ssn_scream_embarrass',
  'scream_embarrass_anyway',
  'embarrass_anyway_lost',
  'anyway_lost_money',
  'lost_money_homeless',
  'money_homeless_credit',
  'homeless_credit_crap',
  'credit_crap_bare',
  'crap_bare_afford',
  'bare_afford_even',
  'afford_even_crappi',
  'even_crappi_apart',
  'crappi_apart_probabl',
  'apart_probabl_cant',
  'probabl_cant_get',
  'cant_get_money',
  'get_money_back',
  'money_back_sinc',
  'back_sinc_littl',
  'sinc_littl_document',
  'littl_document_broker',
  'document_broker_promis',
  'broker_promis_live',
  'promis_live_car',
  'live_car_beg',
  'car_beg_money',
  'beg_money_$',
  'money_$_save',
  '$_save_wait',
  'save_wait_buy',
  'wait_buy_hous',
  'buy_hous_know',
  'hous_know_stupidli',
  'know_stupidli_told',
  'stupidli_told_save',
  'told_save_hous',
  'save_hous_call',
  'hous_call_show',
  'call_show_apart',
  'show_apart_ask',
  'apart_ask_money',
  'ask_money_also',
  'money_also_want',
  'also_want_move',
  'want_move_meantim',
  'move_meantim_roommat',
  'meantim_roommat_agre',
  'roommat_agre_visit',
  'agre_visit_friend',
  'visit_friend_famili',
  'friend_famili_max',
  'famili_max_week',
  'max_week_prevent',
  'week_prevent_resent',
  'prevent_resent_parent',
  'resent_parent_move',
  'parent_move_probabl',
  'move_probabl_refus',
  'probabl_refus_move',
  'refus_move_go',
  'move_go_food',
  'go_food_pantri',
  'food_pantri_honestli',
  'pantri_honestli_cant',
  'honestli_cant_find',
  'cant_find_im',
  'find_im_sympathet',
  'im_sympathet_sinc',
  'sympathet_sinc_listen',
  'sinc_listen_need',
  'listen_need_money'],
 ['hey',
  'yall',
  'work',
  'compani',
  'year',
  'year',
  'long',
  'shift',
  'work',
  'weekend',
  'go',
  'extra',
  'mile',
  'compani',
  'final',
  'gave',
  'promot',
  'cowork',
  'heard',
  'confus',
  'point',
  'theyv',
  'compani',
  'longer',
  'work',
  'harder',
  'ignor',
  'comment',
  'sinc',
  'vent',
  'howev',
  'co',
  'worker',
  'name',
  'michael',
  'join',
  'us',
  'rare',
  'yesterday',
  'lunch',
  'break',
  'start',
  'vent',
  'demot',
  'stay',
  'quiet',
  'til',
  'brought',
  'promot',
  'flatout',
  'said',
  'reason',
  'got',
  'promot',
  'breast',
  'size',
  'shock',
  'almost',
  'drop',
  'cup',
  'look',
  'around',
  'everyon',
  'stare',
  'respond',
  'say',
  'reason',
  'got',
  'demot',
  'brain',
  'size',
  'face',
  'went',
  'pale',
  'peopl',
  'laugh',
  'piss',
  'beyon',
  'belief',
  'turn',
  'around',
  'walk',
  'co',
  'worker',
  'approach',
  'say',
  'michael',
  'reput',
  'ahead',
  'one',
  'best',
  'compani',
  'hire',
  'due',
  'circumst',
  'focu',
  'work',
  'got',
  'demot',
  'result',
  'impli',
  'stupid',
  'humili',
  'infront',
  'everybodi',
  'ask',
  'okay',
  'said',
  'said',
  'couldv',
  'ignor',
  'talk',
  'privat',
  'await',
  'apolog',
  'keep',
  'avoid',
  'feel',
  'horribl',
  'im',
  'mean',
  'person',
  'go',
  'way',
  'hurt',
  'feel',
  'start',
  'regret',
  'said',
  'aita',
  'hey_yall',
  'yall_work',
  'work_compani',
  'compani_year',
  'year_year',
  'year_long',
  'long_shift',
  'shift_work',
  'work_weekend',
  'weekend_go',
  'go_extra',
  'extra_mile',
  'mile_compani',
  'compani_final',
  'final_gave',
  'gave_promot',
  'promot_cowork',
  'cowork_heard',
  'heard_confus',
  'confus_point',
  'point_theyv',
  'theyv_compani',
  'compani_longer',
  'longer_work',
  'work_harder',
  'harder_ignor',
  'ignor_comment',
  'comment_sinc',
  'sinc_vent',
  'vent_howev',
  'howev_co',
  'co_worker',
  'worker_name',
  'name_michael',
  'michael_join',
  'join_us',
  'us_rare',
  'rare_yesterday',
  'yesterday_lunch',
  'lunch_break',
  'break_start',
  'start_vent',
  'vent_demot',
  'demot_stay',
  'stay_quiet',
  'quiet_til',
  'til_brought',
  'brought_promot',
  'promot_flatout',
  'flatout_said',
  'said_reason',
  'reason_got',
  'got_promot',
  'promot_breast',
  'breast_size',
  'size_shock',
  'shock_almost',
  'almost_drop',
  'drop_cup',
  'cup_look',
  'look_around',
  'around_everyon',
  'everyon_stare',
  'stare_respond',
  'respond_say',
  'say_reason',
  'reason_got',
  'got_demot',
  'demot_brain',
  'brain_size',
  'size_face',
  'face_went',
  'went_pale',
  'pale_peopl',
  'peopl_laugh',
  'laugh_piss',
  'piss_beyon',
  'beyon_belief',
  'belief_turn',
  'turn_around',
  'around_walk',
  'walk_co',
  'co_worker',
  'worker_approach',
  'approach_say',
  'say_michael',
  'michael_reput',
  'reput_ahead',
  'ahead_one',
  'one_best',
  'best_compani',
  'compani_hire',
  'hire_due',
  'due_circumst',
  'circumst_focu',
  'focu_work',
  'work_got',
  'got_demot',
  'demot_result',
  'result_impli',
  'impli_stupid',
  'stupid_humili',
  'humili_infront',
  'infront_everybodi',
  'everybodi_ask',
  'ask_okay',
  'okay_said',
  'said_said',
  'said_couldv',
  'couldv_ignor',
  'ignor_talk',
  'talk_privat',
  'privat_await',
  'await_apolog',
  'apolog_keep',
  'keep_avoid',
  'avoid_feel',
  'feel_horribl',
  'horribl_im',
  'im_mean',
  'mean_person',
  'person_go',
  'go_way',
  'way_hurt',
  'hurt_feel',
  'feel_start',
  'start_regret',
  'regret_said',
  'said_aita',
  'hey_yall_work',
  'yall_work_compani',
  'work_compani_year',
  'compani_year_year',
  'year_year_long',
  'year_long_shift',
  'long_shift_work',
  'shift_work_weekend',
  'work_weekend_go',
  'weekend_go_extra',
  'go_extra_mile',
  'extra_mile_compani',
  'mile_compani_final',
  'compani_final_gave',
  'final_gave_promot',
  'gave_promot_cowork',
  'promot_cowork_heard',
  'cowork_heard_confus',
  'heard_confus_point',
  'confus_point_theyv',
  'point_theyv_compani',
  'theyv_compani_longer',
  'compani_longer_work',
  'longer_work_harder',
  'work_harder_ignor',
  'harder_ignor_comment',
  'ignor_comment_sinc',
  'comment_sinc_vent',
  'sinc_vent_howev',
  'vent_howev_co',
  'howev_co_worker',
  'co_worker_name',
  'worker_name_michael',
  'name_michael_join',
  'michael_join_us',
  'join_us_rare',
  'us_rare_yesterday',
  'rare_yesterday_lunch',
  'yesterday_lunch_break',
  'lunch_break_start',
  'break_start_vent',
  'start_vent_demot',
  'vent_demot_stay',
  'demot_stay_quiet',
  'stay_quiet_til',
  'quiet_til_brought',
  'til_brought_promot',
  'brought_promot_flatout',
  'promot_flatout_said',
  'flatout_said_reason',
  'said_reason_got',
  'reason_got_promot',
  'got_promot_breast',
  'promot_breast_size',
  'breast_size_shock',
  'size_shock_almost',
  'shock_almost_drop',
  'almost_drop_cup',
  'drop_cup_look',
  'cup_look_around',
  'look_around_everyon',
  'around_everyon_stare',
  'everyon_stare_respond',
  'stare_respond_say',
  'respond_say_reason',
  'say_reason_got',
  'reason_got_demot',
  'got_demot_brain',
  'demot_brain_size',
  'brain_size_face',
  'size_face_went',
  'face_went_pale',
  'went_pale_peopl',
  'pale_peopl_laugh',
  'peopl_laugh_piss',
  'laugh_piss_beyon',
  'piss_beyon_belief',
  'beyon_belief_turn',
  'belief_turn_around',
  'turn_around_walk',
  'around_walk_co',
  'walk_co_worker',
  'co_worker_approach',
  'worker_approach_say',
  'approach_say_michael',
  'say_michael_reput',
  'michael_reput_ahead',
  'reput_ahead_one',
  'ahead_one_best',
  'one_best_compani',
  'best_compani_hire',
  'compani_hire_due',
  'hire_due_circumst',
  'due_circumst_focu',
  'circumst_focu_work',
  'focu_work_got',
  'work_got_demot',
  'got_demot_result',
  'demot_result_impli',
  'result_impli_stupid',
  'impli_stupid_humili',
  'stupid_humili_infront',
  'humili_infront_everybodi',
  'infront_everybodi_ask',
  'everybodi_ask_okay',
  'ask_okay_said',
  'okay_said_said',
  'said_said_couldv',
  'said_couldv_ignor',
  'couldv_ignor_talk',
  'ignor_talk_privat',
  'talk_privat_await',
  'privat_await_apolog',
  'await_apolog_keep',
  'apolog_keep_avoid',
  'keep_avoid_feel',
  'avoid_feel_horribl',
  'feel_horribl_im',
  'horribl_im_mean',
  'im_mean_person',
  'mean_person_go',
  'person_go_way',
  'go_way_hurt',
  'way_hurt_feel',
  'hurt_feel_start',
  'feel_start_regret',
  'start_regret_said',
  'regret_said_aita'],
 ['pleas',
  'bear',
  'read',
  'post',
  'judg',
  'month',
  'old',
  'start',
  'allow',
  'visitor',
  'best',
  'friend',
  'came',
  'visit',
  'text',
  'suggest',
  'wear',
  'bra',
  'thick',
  'shirt',
  'plan',
  'hold',
  'son',
  'grab',
  'nippl',
  'hard',
  'friend',
  'pierc',
  'told',
  'theyr',
  'super',
  'sensit',
  'explain',
  'ignor',
  'messag',
  'came',
  'anyway',
  'nippl',
  'poke',
  'shirt',
  'month',
  'old',
  'stare',
  'hand',
  'readi',
  'offer',
  'give',
  'sweater',
  'look',
  'sideway',
  'suggest',
  'sexual',
  'breast',
  'cover',
  'explain',
  'case',
  'want',
  'hear',
  'respect',
  'decis',
  'ask',
  'still',
  'want',
  'hold',
  'babi',
  'grab',
  'son',
  'within',
  'minut',
  'death',
  'grip',
  'nippl',
  'jump',
  'scream',
  'pain',
  'pull',
  'said',
  'suggest',
  'bra',
  'made',
  'even',
  'mad',
  'said',
  'suggest',
  'misogynist',
  'confus',
  'left',
  'abruptli',
  'keep',
  'tell',
  'mutual',
  'friend',
  'sexual',
  'breast',
  'tri',
  'make',
  'wear',
  'bra',
  'welcom',
  'happen',
  'miss',
  'someth',
  'feel',
  'like',
  'reaction',
  'realli',
  'uncal',
  'eta',
  'midst',
  'argu',
  'suggest',
  'teach',
  'son',
  'grab',
  'nippl',
  'babi',
  'pleas_bear',
  'bear_read',
  'read_post',
  'post_judg',
  'judg_month',
  'month_old',
  'old_start',
  'start_allow',
  'allow_visitor',
  'visitor_best',
  'best_friend',
  'friend_came',
  'came_visit',
  'visit_text',
  'text_suggest',
  'suggest_wear',
  'wear_bra',
  'bra_thick',
  'thick_shirt',
  'shirt_plan',
  'plan_hold',
  'hold_son',
  'son_grab',
  'grab_nippl',
  'nippl_hard',
  'hard_friend',
  'friend_pierc',
  'pierc_told',
  'told_theyr',
  'theyr_super',
  'super_sensit',
  'sensit_explain',
  'explain_ignor',
  'ignor_messag',
  'messag_came',
  'came_anyway',
  'anyway_nippl',
  'nippl_poke',
  'poke_shirt',
  'shirt_month',
  'month_old',
  'old_stare',
  'stare_hand',
  'hand_readi',
  'readi_offer',
  'offer_give',
  'give_sweater',
  'sweater_look',
  'look_sideway',
  'sideway_suggest',
  'suggest_sexual',
  'sexual_breast',
  'breast_cover',
  'cover_explain',
  'explain_case',
  'case_want',
  'want_hear',
  'hear_respect',
  'respect_decis',
  'decis_ask',
  'ask_still',
  'still_want',
  'want_hold',
  'hold_babi',
  'babi_grab',
  'grab_son',
  'son_within',
  'within_minut',
  'minut_death',
  'death_grip',
  'grip_nippl',
  'nippl_jump',
  'jump_scream',
  'scream_pain',
  'pain_pull',
  'pull_said',
  'said_suggest',
  'suggest_bra',
  'bra_made',
  'made_even',
  'even_mad',
  'mad_said',
  'said_suggest',
  'suggest_misogynist',
  'misogynist_confus',
  'confus_left',
  'left_abruptli',
  'abruptli_keep',
  'keep_tell',
  'tell_mutual',
  'mutual_friend',
  'friend_sexual',
  'sexual_breast',
  'breast_tri',
  'tri_make',
  'make_wear',
  'wear_bra',
  'bra_welcom',
  'welcom_happen',
  'happen_miss',
  'miss_someth',
  'someth_feel',
  'feel_like',
  'like_reaction',
  'reaction_realli',
  'realli_uncal',
  'uncal_eta',
  'eta_midst',
  'midst_argu',
  'argu_suggest',
  'suggest_teach',
  'teach_son',
  'son_grab',
  'grab_nippl',
  'nippl_babi',
  'pleas_bear_read',
  'bear_read_post',
  'read_post_judg',
  'post_judg_month',
  'judg_month_old',
  'month_old_start',
  'old_start_allow',
  'start_allow_visitor',
  'allow_visitor_best',
  'visitor_best_friend',
  'best_friend_came',
  'friend_came_visit',
  'came_visit_text',
  'visit_text_suggest',
  'text_suggest_wear',
  'suggest_wear_bra',
  'wear_bra_thick',
  'bra_thick_shirt',
  'thick_shirt_plan',
  'shirt_plan_hold',
  'plan_hold_son',
  'hold_son_grab',
  'son_grab_nippl',
  'grab_nippl_hard',
  'nippl_hard_friend',
  'hard_friend_pierc',
  'friend_pierc_told',
  'pierc_told_theyr',
  'told_theyr_super',
  'theyr_super_sensit',
  'super_sensit_explain',
  'sensit_explain_ignor',
  'explain_ignor_messag',
  'ignor_messag_came',
  'messag_came_anyway',
  'came_anyway_nippl',
  'anyway_nippl_poke',
  'nippl_poke_shirt',
  'poke_shirt_month',
  'shirt_month_old',
  'month_old_stare',
  'old_stare_hand',
  'stare_hand_readi',
  'hand_readi_offer',
  'readi_offer_give',
  'offer_give_sweater',
  'give_sweater_look',
  'sweater_look_sideway',
  'look_sideway_suggest',
  'sideway_suggest_sexual',
  'suggest_sexual_breast',
  'sexual_breast_cover',
  'breast_cover_explain',
  'cover_explain_case',
  'explain_case_want',
  'case_want_hear',
  'want_hear_respect',
  'hear_respect_decis',
  'respect_decis_ask',
  'decis_ask_still',
  'ask_still_want',
  'still_want_hold',
  'want_hold_babi',
  'hold_babi_grab',
  'babi_grab_son',
  'grab_son_within',
  'son_within_minut',
  'within_minut_death',
  'minut_death_grip',
  'death_grip_nippl',
  'grip_nippl_jump',
  'nippl_jump_scream',
  'jump_scream_pain',
  'scream_pain_pull',
  'pain_pull_said',
  'pull_said_suggest',
  'said_suggest_bra',
  'suggest_bra_made',
  'bra_made_even',
  'made_even_mad',
  'even_mad_said',
  'mad_said_suggest',
  'said_suggest_misogynist',
  'suggest_misogynist_confus',
  'misogynist_confus_left',
  'confus_left_abruptli',
  'left_abruptli_keep',
  'abruptli_keep_tell',
  'keep_tell_mutual',
  'tell_mutual_friend',
  'mutual_friend_sexual',
  'friend_sexual_breast',
  'sexual_breast_tri',
  'breast_tri_make',
  'tri_make_wear',
  'make_wear_bra',
  'wear_bra_welcom',
  'bra_welcom_happen',
  'welcom_happen_miss',
  'happen_miss_someth',
  'miss_someth_feel',
  'someth_feel_like',
  'feel_like_reaction',
  'like_reaction_realli',
  'reaction_realli_uncal',
  'realli_uncal_eta',
  'uncal_eta_midst',
  'eta_midst_argu',
  'midst_argu_suggest',
  'argu_suggest_teach',
  'suggest_teach_son',
  'teach_son_grab',
  'son_grab_nippl',
  'grab_nippl_babi'],
 ['ill',
  'prefac',
  'say',
  'husband',
  'luke',
  'get',
  'along',
  'parent',
  'cant',
  'tell',
  'right',
  'wrong',
  'alway',
  'ongo',
  'tension',
  'civil',
  'enough',
  'sit',
  'togeth',
  'one',
  'tabl',
  'recent',
  'got',
  'invit',
  'christma',
  'celebr',
  'parent',
  'invit',
  'includ',
  'luke',
  'luke',
  'thought',
  'somewhat',
  'rude',
  'disrespect',
  'believ',
  'get',
  'invit',
  'name',
  'mention',
  'extent',
  'mine',
  'talk',
  'said',
  'go',
  'unless',
  'send',
  'proper',
  'invit',
  'call',
  'mom',
  'ask',
  'could',
  'thought',
  'ridicul',
  'said',
  'dad',
  'sister',
  'husband',
  'told',
  'fine',
  'luke',
  'sensit',
  'like',
  'simpl',
  'invit',
  'form',
  'text',
  'directli',
  'fix',
  'got',
  'defens',
  'said',
  'luke',
  'ridicul',
  'dad',
  'claim',
  'luke',
  'tri',
  'pull',
  'power',
  'move',
  'humili',
  'thought',
  'small',
  'issu',
  'still',
  'thought',
  'ridicul',
  'told',
  'attend',
  'send',
  'separ',
  'invit',
  'attend',
  'get',
  'blew',
  'sister',
  'start',
  'argu',
  'say',
  'luke',
  'need',
  'get',
  'shame',
  'tri',
  'forc',
  'parent',
  'send',
  'invit',
  'say',
  'come',
  'talk',
  'wait',
  'edit',
  'invit',
  'reciev',
  'text',
  'luke',
  'say',
  'simpl',
  'text',
  'finish',
  'conflict',
  'parent',
  'still',
  'think',
  'ridicul',
  'invit',
  'sinc',
  'alreadi',
  '*',
  '*',
  'updat',
  'got',
  'phone',
  'sister',
  'told',
  'parent',
  'disinvit',
  'luke',
  'probabl',
  'alreadi',
  'disinvit',
  'sinc',
  'argument',
  'occur',
  'celebr',
  'feel',
  'horribl',
  'cant',
  'argu',
  'anymor',
  'like',
  'cant',
  'argu',
  'everybodi',
  'els',
  'comment',
  'say',
  'admit',
  'luke',
  'problem',
  'caus',
  'disinvit',
  'event',
  'blame',
  '*',
  '*',
  'ill_prefac',
  'prefac_say',
  'say_husband',
  'husband_luke',
  'luke_get',
  'get_along',
  'along_parent',
  'parent_cant',
  'cant_tell',
  'tell_right',
  'right_wrong',
  'wrong_alway',
  'alway_ongo',
  'ongo_tension',
  'tension_civil',
  'civil_enough',
  'enough_sit',
  'sit_togeth',
  'togeth_one',
  'one_tabl',
  'tabl_recent',
  'recent_got',
  'got_invit',
  'invit_christma',
  'christma_celebr',
  'celebr_parent',
  'parent_invit',
  'invit_includ',
  'includ_luke',
  'luke_luke',
  'luke_thought',
  'thought_somewhat',
  'somewhat_rude',
  'rude_disrespect',
  'disrespect_believ',
  'believ_get',
  'get_invit',
  'invit_name',
  'name_mention',
  'mention_extent',
  'extent_mine',
  'mine_talk',
  'talk_said',
  'said_go',
  'go_unless',
  'unless_send',
  'send_proper',
  'proper_invit',
  'invit_call',
  'call_mom',
  'mom_ask',
  'ask_could',
  'could_thought',
  'thought_ridicul',
  'ridicul_said',
  'said_dad',
  'dad_sister',
  'sister_husband',
  'husband_told',
  'told_fine',
  'fine_luke',
  'luke_sensit',
  'sensit_like',
  'like_simpl',
  'simpl_invit',
  'invit_form',
  'form_text',
  'text_directli',
  'directli_fix',
  'fix_got',
  'got_defens',
  'defens_said',
  'said_luke',
  'luke_ridicul',
  'ridicul_dad',
  'dad_claim',
  'claim_luke',
  'luke_tri',
  'tri_pull',
  'pull_power',
  'power_move',
  'move_humili',
  'humili_thought',
  'thought_small',
  'small_issu',
  'issu_still',
  'still_thought',
  'thought_ridicul',
  'ridicul_told',
  'told_attend',
  'attend_send',
  'send_separ',
  'separ_invit',
  'invit_attend',
  'attend_get',
  'get_blew',
  'blew_sister',
  'sister_start',
  'start_argu',
  'argu_say',
  'say_luke',
  'luke_need',
  'need_get',
  'get_shame',
  'shame_tri',
  'tri_forc',
  'forc_parent',
  'parent_send',
  'send_invit',
  'invit_say',
  'say_come',
  'come_talk',
  'talk_wait',
  'wait_edit',
  'edit_invit',
  'invit_reciev',
  'reciev_text',
  'text_luke',
  'luke_say',
  'say_simpl',
  'simpl_text',
  'text_finish',
  'finish_conflict',
  'conflict_parent',
  'parent_still',
  'still_think',
  'think_ridicul',
  'ridicul_invit',
  'invit_sinc',
  'sinc_alreadi',
  'alreadi_*',
  '*_*',
  '*_updat',
  'updat_got',
  'got_phone',
  'phone_sister',
  'sister_told',
  'told_parent',
  'parent_disinvit',
  'disinvit_luke',
  'luke_probabl',
  'probabl_alreadi',
  'alreadi_disinvit',
  'disinvit_sinc',
  'sinc_argument',
  'argument_occur',
  'occur_celebr',
  'celebr_feel',
  'feel_horribl',
  'horribl_cant',
  'cant_argu',
  'argu_anymor',
  'anymor_like',
  'like_cant',
  'cant_argu',
  'argu_everybodi',
  'everybodi_els',
  'els_comment',
  'comment_say',
  'say_admit',
  'admit_luke',
  'luke_problem',
  'problem_caus',
  'caus_disinvit',
  'disinvit_event',
  'event_blame',
  'blame_*',
  '*_*',
  'ill_prefac_say',
  'prefac_say_husband',
  'say_husband_luke',
  'husband_luke_get',
  'luke_get_along',
  'get_along_parent',
  'along_parent_cant',
  'parent_cant_tell',
  'cant_tell_right',
  'tell_right_wrong',
  'right_wrong_alway',
  'wrong_alway_ongo',
  'alway_ongo_tension',
  'ongo_tension_civil',
  'tension_civil_enough',
  'civil_enough_sit',
  'enough_sit_togeth',
  'sit_togeth_one',
  'togeth_one_tabl',
  'one_tabl_recent',
  'tabl_recent_got',
  'recent_got_invit',
  'got_invit_christma',
  'invit_christma_celebr',
  'christma_celebr_parent',
  'celebr_parent_invit',
  'parent_invit_includ',
  'invit_includ_luke',
  'includ_luke_luke',
  'luke_luke_thought',
  'luke_thought_somewhat',
  'thought_somewhat_rude',
  'somewhat_rude_disrespect',
  'rude_disrespect_believ',
  'disrespect_believ_get',
  'believ_get_invit',
  'get_invit_name',
  'invit_name_mention',
  'name_mention_extent',
  'mention_extent_mine',
  'extent_mine_talk',
  'mine_talk_said',
  'talk_said_go',
  'said_go_unless',
  'go_unless_send',
  'unless_send_proper',
  'send_proper_invit',
  'proper_invit_call',
  'invit_call_mom',
  'call_mom_ask',
  'mom_ask_could',
  'ask_could_thought',
  'could_thought_ridicul',
  'thought_ridicul_said',
  'ridicul_said_dad',
  'said_dad_sister',
  'dad_sister_husband',
  'sister_husband_told',
  'husband_told_fine',
  'told_fine_luke',
  'fine_luke_sensit',
  'luke_sensit_like',
  'sensit_like_simpl',
  'like_simpl_invit',
  'simpl_invit_form',
  'invit_form_text',
  'form_text_directli',
  'text_directli_fix',
  'directli_fix_got',
  'fix_got_defens',
  'got_defens_said',
  'defens_said_luke',
  'said_luke_ridicul',
  'luke_ridicul_dad',
  'ridicul_dad_claim',
  'dad_claim_luke',
  'claim_luke_tri',
  'luke_tri_pull',
  'tri_pull_power',
  'pull_power_move',
  'power_move_humili',
  'move_humili_thought',
  'humili_thought_small',
  'thought_small_issu',
  'small_issu_still',
  'issu_still_thought',
  'still_thought_ridicul',
  'thought_ridicul_told',
  'ridicul_told_attend',
  'told_attend_send',
  'attend_send_separ',
  'send_separ_invit',
  'separ_invit_attend',
  'invit_attend_get',
  'attend_get_blew',
  'get_blew_sister',
  'blew_sister_start',
  'sister_start_argu',
  'start_argu_say',
  'argu_say_luke',
  'say_luke_need',
  'luke_need_get',
  'need_get_shame',
  'get_shame_tri',
  'shame_tri_forc',
  'tri_forc_parent',
  'forc_parent_send',
  'parent_send_invit',
  'send_invit_say',
  'invit_say_come',
  'say_come_talk',
  'come_talk_wait',
  'talk_wait_edit',
  'wait_edit_invit',
  'edit_invit_reciev',
  'invit_reciev_text',
  'reciev_text_luke',
  'text_luke_say',
  'luke_say_simpl',
  'say_simpl_text',
  'simpl_text_finish',
  'text_finish_conflict',
  'finish_conflict_parent',
  'conflict_parent_still',
  'parent_still_think',
  'still_think_ridicul',
  'think_ridicul_invit',
  'ridicul_invit_sinc',
  'invit_sinc_alreadi',
  'sinc_alreadi_*',
  'alreadi_*_*',
  '*_*_updat',
  '*_updat_got',
  'updat_got_phone',
  'got_phone_sister',
  'phone_sister_told',
  'sister_told_parent',
  'told_parent_disinvit',
  'parent_disinvit_luke',
  'disinvit_luke_probabl',
  'luke_probabl_alreadi',
  'probabl_alreadi_disinvit',
  'alreadi_disinvit_sinc',
  'disinvit_sinc_argument',
  'sinc_argument_occur',
  'argument_occur_celebr',
  'occur_celebr_feel',
  'celebr_feel_horribl',
  'feel_horribl_cant',
  'horribl_cant_argu',
  'cant_argu_anymor',
  'argu_anymor_like',
  'anymor_like_cant',
  'like_cant_argu',
  'cant_argu_everybodi',
  'argu_everybodi_els',
  'everybodi_els_comment',
  'els_comment_say',
  'comment_say_admit',
  'say_admit_luke',
  'admit_luke_problem',
  'luke_problem_caus',
  'problem_caus_disinvit',
  'caus_disinvit_event',
  'disinvit_event_blame',
  'event_blame_*',
  'blame_*_*'],
 ['first',
  'first',
  'post',
  'ever',
  'want',
  'object',
  'opinion',
  'read',
  'lot',
  'kind',
  'post',
  'facebook',
  'anyth',
  'wrong',
  'pleas',
  'tell',
  'grandmoth',
  'wonder',
  'grandkid',
  'women',
  'men',
  'last',
  'grandkid',
  'got',
  'marri',
  'last',
  'octob',
  'husband',
  'usual',
  'get',
  'small',
  'gift',
  'usual',
  'cheapest',
  'thing',
  'registri',
  'day',
  'wed',
  'privat',
  'gift',
  'check',
  '$',
  'prefer',
  'use',
  'hous',
  'forc',
  'also',
  'ask',
  'keep',
  'privat',
  'big',
  'extend',
  'famili',
  'want',
  'expect',
  'us',
  'honor',
  'request',
  'came',
  'youngest',
  'granddaught',
  'bought',
  'air',
  'fryer',
  'cheapest',
  'thing',
  'registri',
  'sent',
  'advanc',
  'call',
  'us',
  'furiou',
  'went',
  'us',
  'cheap',
  'knew',
  'money',
  'love',
  'enough',
  'show',
  'get',
  'someth',
  'expens',
  'horrifi',
  'behavior',
  'went',
  'ahead',
  'threaten',
  'disinvit',
  'us',
  'get',
  'better',
  'gift',
  'discuss',
  'bought',
  'china',
  'set',
  'give',
  'money',
  'set',
  'asid',
  'decid',
  'deserv',
  'fast',
  'foreword',
  'last',
  'week',
  'met',
  'brother',
  'got',
  'talk',
  'found',
  'cash',
  'gift',
  'got',
  'ask',
  'cousin',
  'found',
  'got',
  'gift',
  'call',
  'us',
  'furiou',
  'discrimin',
  'told',
  'money',
  'behav',
  'want',
  'give',
  'start',
  'cri',
  'said',
  'extrem',
  'stress',
  'taken',
  'heart',
  'told',
  'stand',
  'decis',
  'refus',
  'attend',
  'christma',
  'mother',
  'dil',
  'call',
  'us',
  'ah',
  'awta',
  'first_first',
  'first_post',
  'post_ever',
  'ever_want',
  'want_object',
  'object_opinion',
  'opinion_read',
  'read_lot',
  'lot_kind',
  'kind_post',
  'post_facebook',
  'facebook_anyth',
  'anyth_wrong',
  'wrong_pleas',
  'pleas_tell',
  'tell_grandmoth',
  'grandmoth_wonder',
  'wonder_grandkid',
  'grandkid_women',
  'women_men',
  'men_last',
  'last_grandkid',
  'grandkid_got',
  'got_marri',
  'marri_last',
  'last_octob',
  'octob_husband',
  'husband_usual',
  'usual_get',
  'get_small',
  'small_gift',
  'gift_usual',
  'usual_cheapest',
  'cheapest_thing',
  'thing_registri',
  'registri_day',
  'day_wed',
  'wed_privat',
  'privat_gift',
  'gift_check',
  'check_$',
  '$_prefer',
  'prefer_use',
  'use_hous',
  'hous_forc',
  'forc_also',
  'also_ask',
  'ask_keep',
  'keep_privat',
  'privat_big',
  'big_extend',
  'extend_famili',
  'famili_want',
  'want_expect',
  'expect_us',
  'us_honor',
  'honor_request',
  'request_came',
  'came_youngest',
  'youngest_granddaught',
  'granddaught_bought',
  'bought_air',
  'air_fryer',
  'fryer_cheapest',
  'cheapest_thing',
  'thing_registri',
  'registri_sent',
  'sent_advanc',
  'advanc_call',
  'call_us',
  'us_furiou',
  'furiou_went',
  'went_us',
  'us_cheap',
  'cheap_knew',
  'knew_money',
  'money_love',
  'love_enough',
  'enough_show',
  'show_get',
  'get_someth',
  'someth_expens',
  'expens_horrifi',
  'horrifi_behavior',
  'behavior_went',
  'went_ahead',
  'ahead_threaten',
  'threaten_disinvit',
  'disinvit_us',
  'us_get',
  'get_better',
  'better_gift',
  'gift_discuss',
  'discuss_bought',
  'bought_china',
  'china_set',
  'set_give',
  'give_money',
  'money_set',
  'set_asid',
  'asid_decid',
  'decid_deserv',
  'deserv_fast',
  'fast_foreword',
  'foreword_last',
  'last_week',
  'week_met',
  'met_brother',
  'brother_got',
  'got_talk',
  'talk_found',
  'found_cash',
  'cash_gift',
  'gift_got',
  'got_ask',
  'ask_cousin',
  'cousin_found',
  'found_got',
  'got_gift',
  'gift_call',
  'call_us',
  'us_furiou',
  'furiou_discrimin',
  'discrimin_told',
  'told_money',
  'money_behav',
  'behav_want',
  'want_give',
  'give_start',
  'start_cri',
  'cri_said',
  'said_extrem',
  'extrem_stress',
  'stress_taken',
  'taken_heart',
  'heart_told',
  'told_stand',
  'stand_decis',
  'decis_refus',
  'refus_attend',
  'attend_christma',
  'christma_mother',
  'mother_dil',
  'dil_call',
  'call_us',
  'us_ah',
  'ah_awta',
  'first_first_post',
  'first_post_ever',
  'post_ever_want',
  'ever_want_object',
  'want_object_opinion',
  'object_opinion_read',
  'opinion_read_lot',
  'read_lot_kind',
  'lot_kind_post',
  'kind_post_facebook',
  'post_facebook_anyth',
  'facebook_anyth_wrong',
  'anyth_wrong_pleas',
  'wrong_pleas_tell',
  'pleas_tell_grandmoth',
  'tell_grandmoth_wonder',
  'grandmoth_wonder_grandkid',
  'wonder_grandkid_women',
  'grandkid_women_men',
  'women_men_last',
  'men_last_grandkid',
  'last_grandkid_got',
  'grandkid_got_marri',
  'got_marri_last',
  'marri_last_octob',
  'last_octob_husband',
  'octob_husband_usual',
  'husband_usual_get',
  'usual_get_small',
  'get_small_gift',
  'small_gift_usual',
  'gift_usual_cheapest',
  'usual_cheapest_thing',
  'cheapest_thing_registri',
  'thing_registri_day',
  'registri_day_wed',
  'day_wed_privat',
  'wed_privat_gift',
  'privat_gift_check',
  'gift_check_$',
  'check_$_prefer',
  '$_prefer_use',
  'prefer_use_hous',
  'use_hous_forc',
  'hous_forc_also',
  'forc_also_ask',
  'also_ask_keep',
  'ask_keep_privat',
  'keep_privat_big',
  'privat_big_extend',
  'big_extend_famili',
  'extend_famili_want',
  'famili_want_expect',
  'want_expect_us',
  'expect_us_honor',
  'us_honor_request',
  'honor_request_came',
  'request_came_youngest',
  'came_youngest_granddaught',
  'youngest_granddaught_bought',
  'granddaught_bought_air',
  'bought_air_fryer',
  'air_fryer_cheapest',
  'fryer_cheapest_thing',
  'cheapest_thing_registri',
  'thing_registri_sent',
  'registri_sent_advanc',
  'sent_advanc_call',
  'advanc_call_us',
  'call_us_furiou',
  'us_furiou_went',
  'furiou_went_us',
  'went_us_cheap',
  'us_cheap_knew',
  'cheap_knew_money',
  'knew_money_love',
  'money_love_enough',
  'love_enough_show',
  'enough_show_get',
  'show_get_someth',
  'get_someth_expens',
  'someth_expens_horrifi',
  'expens_horrifi_behavior',
  'horrifi_behavior_went',
  'behavior_went_ahead',
  'went_ahead_threaten',
  'ahead_threaten_disinvit',
  'threaten_disinvit_us',
  'disinvit_us_get',
  'us_get_better',
  'get_better_gift',
  'better_gift_discuss',
  'gift_discuss_bought',
  'discuss_bought_china',
  'bought_china_set',
  'china_set_give',
  'set_give_money',
  'give_money_set',
  'money_set_asid',
  'set_asid_decid',
  'asid_decid_deserv',
  'decid_deserv_fast',
  'deserv_fast_foreword',
  'fast_foreword_last',
  'foreword_last_week',
  'last_week_met',
  'week_met_brother',
  'met_brother_got',
  'brother_got_talk',
  'got_talk_found',
  'talk_found_cash',
  'found_cash_gift',
  'cash_gift_got',
  'gift_got_ask',
  'got_ask_cousin',
  'ask_cousin_found',
  'cousin_found_got',
  'found_got_gift',
  'got_gift_call',
  'gift_call_us',
  'call_us_furiou',
  'us_furiou_discrimin',
  'furiou_discrimin_told',
  'discrimin_told_money',
  'told_money_behav',
  'money_behav_want',
  'behav_want_give',
  'want_give_start',
  'give_start_cri',
  'start_cri_said',
  'cri_said_extrem',
  'said_extrem_stress',
  'extrem_stress_taken',
  'stress_taken_heart',
  'taken_heart_told',
  'heart_told_stand',
  'told_stand_decis',
  'stand_decis_refus',
  'decis_refus_attend',
  'refus_attend_christma',
  'attend_christma_mother',
  'christma_mother_dil',
  'mother_dil_call',
  'dil_call_us',
  'call_us_ah',
  'us_ah_awta'],
 ['wife',
  'dahlia',
  'lost',
  'apart',
  'month',
  'ago',
  'move',
  'mom',
  'temporarili',
  'issu',
  'began',
  'aris',
  'dahlia',
  'mom',
  'ask',
  'friend',
  'anthoni',
  'let',
  'us',
  'move',
  'til',
  'get',
  'enough',
  'money',
  'rent',
  'wife',
  'away',
  'visit',
  'famili',
  'agre',
  'even',
  'issu',
  'start',
  'aris',
  'fyi',
  'dahlia',
  'shi',
  'around',
  'anthoni',
  'grew',
  'conserv',
  'home',
  'understand',
  'sometim',
  'bit',
  'much',
  'admit',
  'exampl',
  'freak',
  'accid',
  'drank',
  'glass',
  'also',
  'made',
  'fuss',
  'pass',
  'guest',
  'room',
  'lie',
  'door',
  'open',
  'thank',
  'anthoni',
  'super',
  'understand',
  'abl',
  'talk',
  'issu',
  'last',
  'night',
  'dahlia',
  'pass',
  'hall',
  'notic',
  'frame',
  'pictur',
  'anthoni',
  'wife',
  'kiss',
  'hang',
  'wall',
  'told',
  'said',
  'made',
  'uncomfort',
  'ask',
  'could',
  'speak',
  'anthoni',
  'take',
  'well',
  'gave',
  'look',
  'spoke',
  'said',
  'bonker',
  'first',
  'wife',
  'put',
  'second',
  'pictur',
  'hold',
  'sentiment',
  'mean',
  'wife',
  'argu',
  'explicit',
  'pictur',
  'normal',
  'wed',
  'kiss',
  'start',
  'argu',
  'said',
  'like',
  'hang',
  'live',
  'room',
  'wall',
  'perfectli',
  'lit',
  'room',
  'ask',
  'littl',
  'consider',
  'like',
  'ask',
  'remov',
  'complet',
  'move',
  'elsewher',
  'dahlia',
  'reach',
  'keep',
  'wall',
  'til',
  'leav',
  'said',
  'sorri',
  'still',
  'refus',
  'explain',
  'dahlia',
  'feel',
  'said',
  'sorri',
  'would',
  'move',
  'pictur',
  'argu',
  'said',
  'hous',
  'pushi',
  'kind',
  'comfort',
  'make',
  'demand',
  'pushi',
  'still',
  'morn',
  'dahlia',
  'refus',
  'even',
  'come',
  'room',
  'pictur',
  'move',
  'anthoni',
  'refus',
  'make',
  'wors',
  'feel',
  'like',
  'im',
  'get',
  'stuck',
  'rock',
  'hard',
  'place',
  'ye',
  'might',
  'react',
  'feel',
  'like',
  'big',
  'ask',
  'anthoni',
  'declin',
  'turn',
  'fwiw',
  'id',
  'go',
  'extra',
  'mile',
  'make',
  'sure',
  'guest',
  'comfort',
  'anthoni',
  'friend',
  'mine',
  'year',
  'ask',
  'move',
  'strong',
  'bond',
  'constantli',
  'talk',
  'thing',
  'situat',
  'help',
  'consid',
  'brother',
  'wife_dahlia',
  'dahlia_lost',
  'lost_apart',
  'apart_month',
  'month_ago',
  'ago_move',
  'move_mom',
  'mom_temporarili',
  'temporarili_issu',
  'issu_began',
  'began_aris',
  'aris_dahlia',
  'dahlia_mom',
  'mom_ask',
  'ask_friend',
  'friend_anthoni',
  'anthoni_let',
  'let_us',
  'us_move',
  'move_til',
  'til_get',
  'get_enough',
  'enough_money',
  'money_rent',
  'rent_wife',
  'wife_away',
  'away_visit',
  'visit_famili',
  'famili_agre',
  'agre_even',
  'even_issu',
  'issu_start',
  'start_aris',
  'aris_fyi',
  'fyi_dahlia',
  'dahlia_shi',
  'shi_around',
  'around_anthoni',
  'anthoni_grew',
  'grew_conserv',
  'conserv_home',
  'home_understand',
  'understand_sometim',
  'sometim_bit',
  'bit_much',
  'much_admit',
  'admit_exampl',
  'exampl_freak',
  'freak_accid',
  'accid_drank',
  'drank_glass',
  'glass_also',
  'also_made',
  'made_fuss',
  'fuss_pass',
  'pass_guest',
  'guest_room',
  'room_lie',
  'lie_door',
  'door_open',
  'open_thank',
  'thank_anthoni',
  'anthoni_super',
  'super_understand',
  'understand_abl',
  'abl_talk',
  'talk_issu',
  'issu_last',
  'last_night',
  'night_dahlia',
  'dahlia_pass',
  'pass_hall',
  'hall_notic',
  'notic_frame',
  'frame_pictur',
  'pictur_anthoni',
  'anthoni_wife',
  'wife_kiss',
  'kiss_hang',
  'hang_wall',
  'wall_told',
  'told_said',
  'said_made',
  'made_uncomfort',
  'uncomfort_ask',
  'ask_could',
  'could_speak',
  'speak_anthoni',
  'anthoni_take',
  'take_well',
  'well_gave',
  'gave_look',
  'look_spoke',
  'spoke_said',
  'said_bonker',
  'bonker_first',
  'first_wife',
  'wife_put',
  'put_second',
  'second_pictur',
  'pictur_hold',
  'hold_sentiment',
  'sentiment_mean',
  'mean_wife',
  'wife_argu',
  'argu_explicit',
  'explicit_pictur',
  'pictur_normal',
  'normal_wed',
  'wed_kiss',
  'kiss_start',
  'start_argu',
  'argu_said',
  'said_like',
  'like_hang',
  'hang_live',
  'live_room',
  'room_wall',
  'wall_perfectli',
  'perfectli_lit',
  'lit_room',
  'room_ask',
  'ask_littl',
  'littl_consider',
  'consider_like',
  'like_ask',
  'ask_remov',
  'remov_complet',
  'complet_move',
  'move_elsewher',
  'elsewher_dahlia',
  'dahlia_reach',
  'reach_keep',
  'keep_wall',
  'wall_til',
  'til_leav',
  'leav_said',
  'said_sorri',
  'sorri_still',
  'still_refus',
  'refus_explain',
  'explain_dahlia',
  'dahlia_feel',
  'feel_said',
  'said_sorri',
  'sorri_would',
  'would_move',
  'move_pictur',
  'pictur_argu',
  'argu_said',
  'said_hous',
  'hous_pushi',
  'pushi_kind',
  'kind_comfort',
  'comfort_make',
  'make_demand',
  'demand_pushi',
  'pushi_still',
  'still_morn',
  'morn_dahlia',
  'dahlia_refus',
  'refus_even',
  'even_come',
  'come_room',
  'room_pictur',
  'pictur_move',
  'move_anthoni',
  'anthoni_refus',
  'refus_make',
  'make_wors',
  'wors_feel',
  'feel_like',
  'like_im',
  'im_get',
  'get_stuck',
  'stuck_rock',
  'rock_hard',
  'hard_place',
  'place_ye',
  'ye_might',
  'might_react',
  'react_feel',
  'feel_like',
  'like_big',
  'big_ask',
  'ask_anthoni',
  'anthoni_declin',
  'declin_turn',
  'turn_fwiw',
  'fwiw_id',
  'id_go',
  'go_extra',
  'extra_mile',
  'mile_make',
  'make_sure',
  'sure_guest',
  'guest_comfort',
  'comfort_anthoni',
  'anthoni_friend',
  'friend_mine',
  'mine_year',
  'year_ask',
  'ask_move',
  'move_strong',
  'strong_bond',
  'bond_constantli',
  'constantli_talk',
  'talk_thing',
  'thing_situat',
  'situat_help',
  'help_consid',
  'consid_brother',
  'wife_dahlia_lost',
  'dahlia_lost_apart',
  'lost_apart_month',
  'apart_month_ago',
  'month_ago_move',
  'ago_move_mom',
  'move_mom_temporarili',
  'mom_temporarili_issu',
  'temporarili_issu_began',
  'issu_began_aris',
  'began_aris_dahlia',
  'aris_dahlia_mom',
  'dahlia_mom_ask',
  'mom_ask_friend',
  'ask_friend_anthoni',
  'friend_anthoni_let',
  'anthoni_let_us',
  'let_us_move',
  'us_move_til',
  'move_til_get',
  'til_get_enough',
  'get_enough_money',
  'enough_money_rent',
  'money_rent_wife',
  'rent_wife_away',
  'wife_away_visit',
  'away_visit_famili',
  'visit_famili_agre',
  'famili_agre_even',
  'agre_even_issu',
  'even_issu_start',
  'issu_start_aris',
  'start_aris_fyi',
  'aris_fyi_dahlia',
  'fyi_dahlia_shi',
  'dahlia_shi_around',
  'shi_around_anthoni',
  'around_anthoni_grew',
  'anthoni_grew_conserv',
  'grew_conserv_home',
  'conserv_home_understand',
  'home_understand_sometim',
  'understand_sometim_bit',
  'sometim_bit_much',
  'bit_much_admit',
  'much_admit_exampl',
  'admit_exampl_freak',
  'exampl_freak_accid',
  'freak_accid_drank',
  'accid_drank_glass',
  'drank_glass_also',
  'glass_also_made',
  'also_made_fuss',
  'made_fuss_pass',
  'fuss_pass_guest',
  'pass_guest_room',
  'guest_room_lie',
  'room_lie_door',
  'lie_door_open',
  'door_open_thank',
  'open_thank_anthoni',
  'thank_anthoni_super',
  'anthoni_super_understand',
  'super_understand_abl',
  'understand_abl_talk',
  'abl_talk_issu',
  'talk_issu_last',
  'issu_last_night',
  'last_night_dahlia',
  'night_dahlia_pass',
  'dahlia_pass_hall',
  'pass_hall_notic',
  'hall_notic_frame',
  'notic_frame_pictur',
  'frame_pictur_anthoni',
  'pictur_anthoni_wife',
  'anthoni_wife_kiss',
  'wife_kiss_hang',
  'kiss_hang_wall',
  'hang_wall_told',
  'wall_told_said',
  'told_said_made',
  'said_made_uncomfort',
  'made_uncomfort_ask',
  'uncomfort_ask_could',
  'ask_could_speak',
  'could_speak_anthoni',
  'speak_anthoni_take',
  'anthoni_take_well',
  'take_well_gave',
  'well_gave_look',
  'gave_look_spoke',
  'look_spoke_said',
  'spoke_said_bonker',
  'said_bonker_first',
  'bonker_first_wife',
  'first_wife_put',
  'wife_put_second',
  'put_second_pictur',
  'second_pictur_hold',
  'pictur_hold_sentiment',
  'hold_sentiment_mean',
  'sentiment_mean_wife',
  'mean_wife_argu',
  'wife_argu_explicit',
  'argu_explicit_pictur',
  'explicit_pictur_normal',
  'pictur_normal_wed',
  'normal_wed_kiss',
  'wed_kiss_start',
  'kiss_start_argu',
  'start_argu_said',
  'argu_said_like',
  'said_like_hang',
  'like_hang_live',
  'hang_live_room',
  'live_room_wall',
  'room_wall_perfectli',
  'wall_perfectli_lit',
  'perfectli_lit_room',
  'lit_room_ask',
  'room_ask_littl',
  'ask_littl_consider',
  'littl_consider_like',
  'consider_like_ask',
  'like_ask_remov',
  'ask_remov_complet',
  'remov_complet_move',
  'complet_move_elsewher',
  'move_elsewher_dahlia',
  'elsewher_dahlia_reach',
  'dahlia_reach_keep',
  'reach_keep_wall',
  'keep_wall_til',
  'wall_til_leav',
  'til_leav_said',
  'leav_said_sorri',
  'said_sorri_still',
  'sorri_still_refus',
  'still_refus_explain',
  'refus_explain_dahlia',
  'explain_dahlia_feel',
  'dahlia_feel_said',
  'feel_said_sorri',
  'said_sorri_would',
  'sorri_would_move',
  'would_move_pictur',
  'move_pictur_argu',
  'pictur_argu_said',
  'argu_said_hous',
  'said_hous_pushi',
  'hous_pushi_kind',
  'pushi_kind_comfort',
  'kind_comfort_make',
  'comfort_make_demand',
  'make_demand_pushi',
  'demand_pushi_still',
  'pushi_still_morn',
  'still_morn_dahlia',
  'morn_dahlia_refus',
  'dahlia_refus_even',
  'refus_even_come',
  'even_come_room',
  'come_room_pictur',
  'room_pictur_move',
  'pictur_move_anthoni',
  'move_anthoni_refus',
  'anthoni_refus_make',
  'refus_make_wors',
  'make_wors_feel',
  'wors_feel_like',
  'feel_like_im',
  'like_im_get',
  'im_get_stuck',
  'get_stuck_rock',
  'stuck_rock_hard',
  'rock_hard_place',
  'hard_place_ye',
  'place_ye_might',
  'ye_might_react',
  'might_react_feel',
  'react_feel_like',
  'feel_like_big',
  'like_big_ask',
  'big_ask_anthoni',
  'ask_anthoni_declin',
  'anthoni_declin_turn',
  'declin_turn_fwiw',
  'turn_fwiw_id',
  'fwiw_id_go',
  'id_go_extra',
  'go_extra_mile',
  'extra_mile_make',
  'mile_make_sure',
  'make_sure_guest',
  'sure_guest_comfort',
  'guest_comfort_anthoni',
  'comfort_anthoni_friend',
  'anthoni_friend_mine',
  'friend_mine_year',
  'mine_year_ask',
  'year_ask_move',
  'ask_move_strong',
  'move_strong_bond',
  'strong_bond_constantli',
  'bond_constantli_talk',
  'constantli_talk_thing',
  'talk_thing_situat',
  'thing_situat_help',
  'situat_help_consid',
  'help_consid_brother'],
 ['live',
  'girlfriend',
  'sever',
  'month',
  'part',
  'thing',
  'realli',
  'good',
  'plan',
  'propos',
  'soon',
  'hope',
  'least',
  'coupl',
  'kid',
  'howev',
  'weve',
  'run',
  'conflict',
  'absolut',
  'morn',
  'person',
  'hate',
  'morn',
  'time',
  'forc',
  'bed',
  'morn',
  'shower',
  'alreadi',
  'least',
  'minut',
  '--',
  'even',
  'though',
  'work',
  'later',
  '--',
  'stove',
  'make',
  'breakfast',
  'like',
  'huge',
  'breakfast',
  'morn',
  'usual',
  'egg',
  'either',
  'french',
  'toast',
  'pancak',
  'hashbrown',
  'breakfast',
  'potato',
  'sausag',
  'bacon',
  'sometim',
  'weekend',
  'ham',
  'steak',
  'eat',
  'almost',
  'noth',
  'lunch',
  'usual',
  'smallish',
  'dinner',
  'love',
  'huge',
  'breakfast',
  'meanwhil',
  'ever',
  'cold',
  'cereal',
  'breakfast',
  'mayb',
  'im',
  'feel',
  'realli',
  'ambiti',
  'instant',
  'oatmeal',
  'orang',
  'juic',
  'even',
  'start',
  'come',
  'aliv',
  'halfway',
  'second',
  'cup',
  'coffe',
  'definit',
  'feel',
  'like',
  'cook',
  'morn',
  'howev',
  'girlfriend',
  'obvious',
  'recent',
  'ask',
  'shed',
  'start',
  'make',
  'breakfast',
  'ask',
  'go',
  'trade',
  'id',
  'sometim',
  'make',
  'breakfast',
  'told',
  'remind',
  'often',
  'make',
  'dinner',
  'said',
  'sinc',
  'trade',
  'make',
  'dinner',
  'trade',
  'make',
  'breakfast',
  'told',
  'way',
  'ill',
  'ever',
  'abl',
  'muster',
  'kind',
  'energi',
  'first',
  'thing',
  'morn',
  'sinc',
  'obvious',
  'make',
  'breakfast',
  'said',
  'would',
  'take',
  'next',
  'extra',
  'effort',
  'part',
  'throw',
  'coupl',
  'egg',
  'strip',
  'bacon',
  'extra',
  'portion',
  'hashbrown',
  'etc',
  'sinc',
  'alreadi',
  'anyway',
  'start',
  'fight',
  'say',
  'fair',
  'expect',
  'think',
  'morn',
  'sinc',
  'seem',
  'think',
  'make',
  'breakfast',
  'figur',
  'divis',
  'labor',
  'someth',
  'extra',
  'return',
  'think',
  'sinc',
  'make',
  'huge',
  'breakfast',
  'everi',
  'morn',
  'anyway',
  'throw',
  'extra',
  'portion',
  'whatev',
  'make',
  'would',
  'take',
  'next-to',
  'effort',
  'part',
  'return',
  'alreadi',
  'live_girlfriend',
  'girlfriend_sever',
  'sever_month',
  'month_part',
  'part_thing',
  'thing_realli',
  'realli_good',
  'good_plan',
  'plan_propos',
  'propos_soon',
  'soon_hope',
  'hope_least',
  'least_coupl',
  'coupl_kid',
  'kid_howev',
  'howev_weve',
  'weve_run',
  'run_conflict',
  'conflict_absolut',
  'absolut_morn',
  'morn_person',
  'person_hate',
  'hate_morn',
  'morn_time',
  'time_forc',
  'forc_bed',
  'bed_morn',
  'morn_shower',
  'shower_alreadi',
  'alreadi_least',
  'least_minut',
  'minut_--',
  '--_even',
  'even_though',
  'though_work',
  'work_later',
  'later_--',
  '--_stove',
  'stove_make',
  'make_breakfast',
  'breakfast_like',
  'like_huge',
  'huge_breakfast',
  'breakfast_morn',
  'morn_usual',
  'usual_egg',
  'egg_either',
  'either_french',
  'french_toast',
  'toast_pancak',
  'pancak_hashbrown',
  'hashbrown_breakfast',
  'breakfast_potato',
  'potato_sausag',
  'sausag_bacon',
  'bacon_sometim',
  'sometim_weekend',
  'weekend_ham',
  'ham_steak',
  'steak_eat',
  'eat_almost',
  'almost_noth',
  'noth_lunch',
  'lunch_usual',
  'usual_smallish',
  'smallish_dinner',
  'dinner_love',
  'love_huge',
  'huge_breakfast',
  'breakfast_meanwhil',
  'meanwhil_ever',
  'ever_cold',
  'cold_cereal',
  'cereal_breakfast',
  'breakfast_mayb',
  'mayb_im',
  'im_feel',
  'feel_realli',
  'realli_ambiti',
  'ambiti_instant',
  'instant_oatmeal',
  'oatmeal_orang',
  'orang_juic',
  'juic_even',
  'even_start',
  'start_come',
  'come_aliv',
  'aliv_halfway',
  'halfway_second',
  'second_cup',
  'cup_coffe',
  'coffe_definit',
  'definit_feel',
  'feel_like',
  'like_cook',
  'cook_morn',
  'morn_howev',
  'howev_girlfriend',
  'girlfriend_obvious',
  'obvious_recent',
  'recent_ask',
  'ask_shed',
  'shed_start',
  'start_make',
  'make_breakfast',
  'breakfast_ask',
  'ask_go',
  'go_trade',
  'trade_id',
  'id_sometim',
  'sometim_make',
  'make_breakfast',
  'breakfast_told',
  'told_remind',
  'remind_often',
  'often_make',
  'make_dinner',
  'dinner_said',
  'said_sinc',
  'sinc_trade',
  'trade_make',
  'make_dinner',
  'dinner_trade',
  'trade_make',
  'make_breakfast',
  'breakfast_told',
  'told_way',
  'way_ill',
  'ill_ever',
  'ever_abl',
  'abl_muster',
  'muster_kind',
  'kind_energi',
  'energi_first',
  'first_thing',
  'thing_morn',
  'morn_sinc',
  'sinc_obvious',
  'obvious_make',
  'make_breakfast',
  'breakfast_said',
  'said_would',
  'would_take',
  'take_next',
  'next_extra',
  'extra_effort',
  'effort_part',
  'part_throw',
  'throw_coupl',
  'coupl_egg',
  'egg_strip',
  'strip_bacon',
  'bacon_extra',
  'extra_portion',
  'portion_hashbrown',
  'hashbrown_etc',
  'etc_sinc',
  'sinc_alreadi',
  'alreadi_anyway',
  'anyway_start',
  'start_fight',
  'fight_say',
  'say_fair',
  'fair_expect',
  'expect_think',
  'think_morn',
  'morn_sinc',
  'sinc_seem',
  'seem_think',
  'think_make',
  'make_breakfast',
  'breakfast_figur',
  'figur_divis',
  'divis_labor',
  'labor_someth',
  'someth_extra',
  'extra_return',
  'return_think',
  'think_sinc',
  'sinc_make',
  'make_huge',
  'huge_breakfast',
  'breakfast_everi',
  'everi_morn',
  'morn_anyway',
  'anyway_throw',
  'throw_extra',
  'extra_portion',
  'portion_whatev',
  'whatev_make',
  'make_would',
  'would_take',
  'take_next-to',
  'next-to_effort',
  'effort_part',
  'part_return',
  'return_alreadi',
  'live_girlfriend_sever',
  'girlfriend_sever_month',
  'sever_month_part',
  'month_part_thing',
  'part_thing_realli',
  'thing_realli_good',
  'realli_good_plan',
  'good_plan_propos',
  'plan_propos_soon',
  'propos_soon_hope',
  'soon_hope_least',
  'hope_least_coupl',
  'least_coupl_kid',
  'coupl_kid_howev',
  'kid_howev_weve',
  'howev_weve_run',
  'weve_run_conflict',
  'run_conflict_absolut',
  'conflict_absolut_morn',
  'absolut_morn_person',
  'morn_person_hate',
  'person_hate_morn',
  'hate_morn_time',
  'morn_time_forc',
  'time_forc_bed',
  'forc_bed_morn',
  'bed_morn_shower',
  'morn_shower_alreadi',
  'shower_alreadi_least',
  'alreadi_least_minut',
  'least_minut_--',
  'minut_--_even',
  '--_even_though',
  'even_though_work',
  'though_work_later',
  'work_later_--',
  'later_--_stove',
  '--_stove_make',
  'stove_make_breakfast',
  'make_breakfast_like',
  'breakfast_like_huge',
  'like_huge_breakfast',
  'huge_breakfast_morn',
  'breakfast_morn_usual',
  'morn_usual_egg',
  'usual_egg_either',
  'egg_either_french',
  'either_french_toast',
  'french_toast_pancak',
  'toast_pancak_hashbrown',
  'pancak_hashbrown_breakfast',
  'hashbrown_breakfast_potato',
  'breakfast_potato_sausag',
  'potato_sausag_bacon',
  'sausag_bacon_sometim',
  'bacon_sometim_weekend',
  'sometim_weekend_ham',
  'weekend_ham_steak',
  'ham_steak_eat',
  'steak_eat_almost',
  'eat_almost_noth',
  'almost_noth_lunch',
  'noth_lunch_usual',
  'lunch_usual_smallish',
  'usual_smallish_dinner',
  'smallish_dinner_love',
  'dinner_love_huge',
  'love_huge_breakfast',
  'huge_breakfast_meanwhil',
  'breakfast_meanwhil_ever',
  'meanwhil_ever_cold',
  'ever_cold_cereal',
  'cold_cereal_breakfast',
  'cereal_breakfast_mayb',
  'breakfast_mayb_im',
  'mayb_im_feel',
  'im_feel_realli',
  'feel_realli_ambiti',
  'realli_ambiti_instant',
  'ambiti_instant_oatmeal',
  'instant_oatmeal_orang',
  'oatmeal_orang_juic',
  'orang_juic_even',
  'juic_even_start',
  'even_start_come',
  'start_come_aliv',
  'come_aliv_halfway',
  'aliv_halfway_second',
  'halfway_second_cup',
  'second_cup_coffe',
  'cup_coffe_definit',
  'coffe_definit_feel',
  'definit_feel_like',
  'feel_like_cook',
  'like_cook_morn',
  'cook_morn_howev',
  'morn_howev_girlfriend',
  'howev_girlfriend_obvious',
  'girlfriend_obvious_recent',
  'obvious_recent_ask',
  'recent_ask_shed',
  'ask_shed_start',
  'shed_start_make',
  'start_make_breakfast',
  'make_breakfast_ask',
  'breakfast_ask_go',
  'ask_go_trade',
  'go_trade_id',
  'trade_id_sometim',
  'id_sometim_make',
  'sometim_make_breakfast',
  'make_breakfast_told',
  'breakfast_told_remind',
  'told_remind_often',
  'remind_often_make',
  'often_make_dinner',
  'make_dinner_said',
  'dinner_said_sinc',
  'said_sinc_trade',
  'sinc_trade_make',
  'trade_make_dinner',
  'make_dinner_trade',
  'dinner_trade_make',
  'trade_make_breakfast',
  'make_breakfast_told',
  'breakfast_told_way',
  'told_way_ill',
  'way_ill_ever',
  'ill_ever_abl',
  'ever_abl_muster',
  'abl_muster_kind',
  'muster_kind_energi',
  'kind_energi_first',
  'energi_first_thing',
  'first_thing_morn',
  'thing_morn_sinc',
  'morn_sinc_obvious',
  'sinc_obvious_make',
  'obvious_make_breakfast',
  'make_breakfast_said',
  'breakfast_said_would',
  'said_would_take',
  'would_take_next',
  'take_next_extra',
  'next_extra_effort',
  'extra_effort_part',
  'effort_part_throw',
  'part_throw_coupl',
  'throw_coupl_egg',
  'coupl_egg_strip',
  'egg_strip_bacon',
  'strip_bacon_extra',
  'bacon_extra_portion',
  'extra_portion_hashbrown',
  'portion_hashbrown_etc',
  'hashbrown_etc_sinc',
  'etc_sinc_alreadi',
  'sinc_alreadi_anyway',
  'alreadi_anyway_start',
  'anyway_start_fight',
  'start_fight_say',
  'fight_say_fair',
  'say_fair_expect',
  'fair_expect_think',
  'expect_think_morn',
  'think_morn_sinc',
  'morn_sinc_seem',
  'sinc_seem_think',
  'seem_think_make',
  'think_make_breakfast',
  'make_breakfast_figur',
  'breakfast_figur_divis',
  'figur_divis_labor',
  'divis_labor_someth',
  'labor_someth_extra',
  'someth_extra_return',
  'extra_return_think',
  'return_think_sinc',
  'think_sinc_make',
  'sinc_make_huge',
  'make_huge_breakfast',
  'huge_breakfast_everi',
  'breakfast_everi_morn',
  'everi_morn_anyway',
  'morn_anyway_throw',
  'anyway_throw_extra',
  'throw_extra_portion',
  'extra_portion_whatev',
  'portion_whatev_make',
  'whatev_make_would',
  'make_would_take',
  'would_take_next-to',
  'take_next-to_effort',
  'next-to_effort_part',
  'effort_part_return',
  'part_return_alreadi'],
 ['husband',
  'sore',
  'foot',
  'injuri',
  'medic',
  'condit',
  'would',
  'explain',
  'pain',
  'abl',
  'walk',
  'properli',
  'week',
  'absolut',
  'pain',
  'ass',
  'refus',
  'go',
  'doctor',
  'today',
  'appar',
  'prefer',
  'pop',
  'paracetamol',
  'complain',
  'gotten',
  'progress',
  'swollen',
  'misshapen',
  'look',
  'today',
  'gone',
  'funni',
  'colour',
  'cant',
  'put',
  'weight',
  'call',
  'gp',
  'sent',
  'walk',
  'clinic',
  'local',
  'hospit',
  'final',
  'get',
  'seen',
  'doctor',
  'refus',
  'even',
  'examin',
  'told',
  'without',
  'even',
  'look',
  'foot',
  'sprain',
  'go',
  'prescrib',
  'painkil',
  'ask',
  'start',
  'demonstr',
  'kind',
  'exercis',
  'involv',
  'go',
  'tipto',
  'flex',
  'toe',
  'ask',
  'would',
  'pleas',
  'look',
  'gone',
  'nearli',
  'black',
  'spot',
  'look',
  'similar',
  'wrist',
  'look',
  'broke',
  'year',
  'ago',
  'huf',
  'ask',
  'medic',
  'degre',
  'put',
  'back',
  'demand',
  'see',
  'anoth',
  'doctor',
  'senior',
  'asshol',
  'treat',
  'get',
  'thought',
  'pushi',
  'cow-',
  'husband',
  'say',
  'boo',
  'goos',
  'medic',
  'situat',
  'would',
  'accept',
  'doctor',
  'instruct',
  'without',
  'question',
  'actual',
  'need',
  'examin',
  'doctor',
  'left',
  'heard',
  'outsid',
  'cubicl',
  'tell',
  'senior',
  'doctor',
  'confront',
  'spous',
  'think',
  'web',
  'md',
  'search',
  'qualifi',
  'instruct',
  'real',
  'doctor',
  'practic',
  'medicin',
  'also',
  'state',
  'suspect',
  'husband',
  'exagger',
  'get',
  'opiat',
  'time',
  'doctor',
  'arriv',
  'im',
  'seeth',
  'lay',
  'exactli',
  'went',
  'explain',
  'want',
  'someon',
  'look',
  'foot',
  'send',
  'us',
  'away',
  'lookscu',
  'xray',
  'mri',
  'good',
  'painkil',
  'walk',
  'boot',
  'cast',
  'thing',
  'potenti',
  'need',
  'surgeri',
  'got',
  'stress',
  'fractur',
  'foot-',
  'probabl',
  'run',
  'admittedli',
  'wors',
  'need',
  'get',
  'treatment',
  'first',
  'start',
  'hurt',
  'second',
  'doctor',
  'someon',
  'hospit',
  'admin',
  'come',
  'apologis',
  'first',
  'doctor',
  'ask',
  'want',
  'make',
  'formal',
  'complaint',
  'outcom',
  'listen',
  'patient',
  'famili',
  'could',
  'wors',
  'husband',
  'husband',
  'said',
  'later',
  'first',
  'doctor',
  'may',
  'get',
  'sack',
  'complain',
  'left',
  'real',
  'harm',
  'done',
  'ah',
  'move',
  'complain',
  'usual',
  'karen',
  'tendenc',
  'patronis',
  'dismiss',
  'kept',
  'think',
  'young',
  'mother',
  'sick',
  'babi',
  'dissmis',
  'that-',
  'everyth',
  'would',
  'stand',
  'ground',
  'could',
  'realli',
  'seriou',
  'consequ',
  'edit',
  'thank',
  'comment',
  'awards-',
  'expect',
  'go',
  'mental',
  'ive',
  'shown',
  'hubbi',
  'post',
  'start',
  'realis',
  'seriou',
  'could',
  'go',
  'email',
  'admin',
  'guy',
  'saw',
  'afternoon-',
  'gave',
  'us',
  'contact',
  'detail',
  'complaint',
  'also',
  'agre',
  'delay',
  'treatment',
  'way',
  'incred',
  'stupid',
  'decid',
  'chase',
  'counsel',
  'referr',
  'gp',
  'less',
  'useless',
  'futur',
  'medic',
  'situat',
  'thank',
  'eventu',
  'given',
  'appropri',
  'treatment',
  'hope',
  'follow',
  'posit',
  'ill',
  'stick',
  'updat',
  'anyth',
  'interest',
  'report',
  'thank',
  'set',
  'mind',
  'eas',
  'share',
  'opinion',
  'husband_sore',
  'sore_foot',
  'foot_injuri',
  'injuri_medic',
  'medic_condit',
  'condit_would',
  'would_explain',
  'explain_pain',
  'pain_abl',
  'abl_walk',
  'walk_properli',
  'properli_week',
  'week_absolut',
  'absolut_pain',
  'pain_ass',
  'ass_refus',
  'refus_go',
  'go_doctor',
  'doctor_today',
  'today_appar',
  'appar_prefer',
  'prefer_pop',
  'pop_paracetamol',
  'paracetamol_complain',
  'complain_gotten',
  'gotten_progress',
  'progress_swollen',
  'swollen_misshapen',
  'misshapen_look',
  'look_today',
  'today_gone',
  'gone_funni',
  'funni_colour',
  'colour_cant',
  'cant_put',
  'put_weight',
  'weight_call',
  'call_gp',
  'gp_sent',
  'sent_walk',
  'walk_clinic',
  'clinic_local',
  'local_hospit',
  'hospit_final',
  'final_get',
  'get_seen',
  'seen_doctor',
  'doctor_refus',
  'refus_even',
  'even_examin',
  'examin_told',
  'told_without',
  'without_even',
  'even_look',
  'look_foot',
  'foot_sprain',
  'sprain_go',
  'go_prescrib',
  'prescrib_painkil',
  'painkil_ask',
  'ask_start',
  'start_demonstr',
  'demonstr_kind',
  'kind_exercis',
  'exercis_involv',
  'involv_go',
  'go_tipto',
  'tipto_flex',
  'flex_toe',
  'toe_ask',
  'ask_would',
  'would_pleas',
  'pleas_look',
  'look_gone',
  'gone_nearli',
  'nearli_black',
  'black_spot',
  'spot_look',
  'look_similar',
  'similar_wrist',
  'wrist_look',
  'look_broke',
  'broke_year',
  'year_ago',
  'ago_huf',
  'huf_ask',
  'ask_medic',
  'medic_degre',
  'degre_put',
  'put_back',
  'back_demand',
  'demand_see',
  'see_anoth',
  'anoth_doctor',
  'doctor_senior',
  'senior_asshol',
  'asshol_treat',
  'treat_get',
  'get_thought',
  'thought_pushi',
  'pushi_cow-',
  'cow-_husband',
  'husband_say',
  'say_boo',
  'boo_goos',
  'goos_medic',
  'medic_situat',
  'situat_would',
  'would_accept',
  'accept_doctor',
  'doctor_instruct',
  'instruct_without',
  'without_question',
  'question_actual',
  'actual_need',
  'need_examin',
  'examin_doctor',
  'doctor_left',
  'left_heard',
  'heard_outsid',
  'outsid_cubicl',
  'cubicl_tell',
  'tell_senior',
  'senior_doctor',
  'doctor_confront',
  'confront_spous',
  'spous_think',
  'think_web',
  'web_md',
  'md_search',
  'search_qualifi',
  'qualifi_instruct',
  'instruct_real',
  'real_doctor',
  'doctor_practic',
  'practic_medicin',
  'medicin_also',
  'also_state',
  'state_suspect',
  'suspect_husband',
  'husband_exagger',
  'exagger_get',
  'get_opiat',
  'opiat_time',
  'time_doctor',
  'doctor_arriv',
  'arriv_im',
  'im_seeth',
  'seeth_lay',
  'lay_exactli',
  'exactli_went',
  'went_explain',
  'explain_want',
  'want_someon',
  'someon_look',
  'look_foot',
  'foot_send',
  'send_us',
  'us_away',
  'away_lookscu',
  'lookscu_xray',
  'xray_mri',
  'mri_good',
  'good_painkil',
  'painkil_walk',
  'walk_boot',
  'boot_cast',
  'cast_thing',
  'thing_potenti',
  'potenti_need',
  'need_surgeri',
  'surgeri_got',
  'got_stress',
  'stress_fractur',
  'fractur_foot-',
  'foot-_probabl',
  'probabl_run',
  'run_admittedli',
  'admittedli_wors',
  'wors_need',
  'need_get',
  'get_treatment',
  'treatment_first',
  'first_start',
  'start_hurt',
  'hurt_second',
  'second_doctor',
  'doctor_someon',
  'someon_hospit',
  'hospit_admin',
  'admin_come',
  'come_apologis',
  'apologis_first',
  'first_doctor',
  'doctor_ask',
  'ask_want',
  'want_make',
  'make_formal',
  'formal_complaint',
  'complaint_outcom',
  'outcom_listen',
  'listen_patient',
  'patient_famili',
  'famili_could',
  'could_wors',
  'wors_husband',
  'husband_husband',
  'husband_said',
  'said_later',
  'later_first',
  'first_doctor',
  'doctor_may',
  'may_get',
  'get_sack',
  'sack_complain',
  'complain_left',
  'left_real',
  'real_harm',
  'harm_done',
  'done_ah',
  'ah_move',
  'move_complain',
  'complain_usual',
  'usual_karen',
  'karen_tendenc',
  'tendenc_patronis',
  'patronis_dismiss',
  'dismiss_kept',
  'kept_think',
  'think_young',
  'young_mother',
  'mother_sick',
  'sick_babi',
  'babi_dissmis',
  'dissmis_that-',
  'that-_everyth',
  'everyth_would',
  'would_stand',
  'stand_ground',
  'ground_could',
  'could_realli',
  'realli_seriou',
  'seriou_consequ',
  'consequ_edit',
  'edit_thank',
  'thank_comment',
  'comment_awards-',
  'awards-_expect',
  'expect_go',
  'go_mental',
  'mental_ive',
  'ive_shown',
  'shown_hubbi',
  'hubbi_post',
  'post_start',
  'start_realis',
  'realis_seriou',
  'seriou_could',
  'could_go',
  'go_email',
  'email_admin',
  'admin_guy',
  'guy_saw',
  'saw_afternoon-',
  'afternoon-_gave',
  'gave_us',
  'us_contact',
  'contact_detail',
  'detail_complaint',
  'complaint_also',
  'also_agre',
  'agre_delay',
  'delay_treatment',
  'treatment_way',
  'way_incred',
  'incred_stupid',
  'stupid_decid',
  'decid_chase',
  'chase_counsel',
  'counsel_referr',
  'referr_gp',
  'gp_less',
  'less_useless',
  'useless_futur',
  'futur_medic',
  'medic_situat',
  'situat_thank',
  'thank_eventu',
  'eventu_given',
  'given_appropri',
  'appropri_treatment',
  'treatment_hope',
  'hope_follow',
  'follow_posit',
  'posit_ill',
  'ill_stick',
  'stick_updat',
  'updat_anyth',
  'anyth_interest',
  'interest_report',
  'report_thank',
  'thank_set',
  'set_mind',
  'mind_eas',
  'eas_share',
  'share_opinion',
  'husband_sore_foot',
  'sore_foot_injuri',
  'foot_injuri_medic',
  'injuri_medic_condit',
  'medic_condit_would',
  'condit_would_explain',
  'would_explain_pain',
  'explain_pain_abl',
  'pain_abl_walk',
  'abl_walk_properli',
  'walk_properli_week',
  'properli_week_absolut',
  'week_absolut_pain',
  'absolut_pain_ass',
  'pain_ass_refus',
  'ass_refus_go',
  'refus_go_doctor',
  'go_doctor_today',
  'doctor_today_appar',
  'today_appar_prefer',
  'appar_prefer_pop',
  'prefer_pop_paracetamol',
  'pop_paracetamol_complain',
  'paracetamol_complain_gotten',
  'complain_gotten_progress',
  'gotten_progress_swollen',
  'progress_swollen_misshapen',
  'swollen_misshapen_look',
  'misshapen_look_today',
  'look_today_gone',
  'today_gone_funni',
  'gone_funni_colour',
  'funni_colour_cant',
  'colour_cant_put',
  'cant_put_weight',
  'put_weight_call',
  'weight_call_gp',
  'call_gp_sent',
  'gp_sent_walk',
  'sent_walk_clinic',
  'walk_clinic_local',
  'clinic_local_hospit',
  'local_hospit_final',
  'hospit_final_get',
  'final_get_seen',
  'get_seen_doctor',
  'seen_doctor_refus',
  'doctor_refus_even',
  'refus_even_examin',
  'even_examin_told',
  'examin_told_without',
  'told_without_even',
  'without_even_look',
  'even_look_foot',
  'look_foot_sprain',
  'foot_sprain_go',
  'sprain_go_prescrib',
  'go_prescrib_painkil',
  'prescrib_painkil_ask',
  'painkil_ask_start',
  'ask_start_demonstr',
  'start_demonstr_kind',
  'demonstr_kind_exercis',
  'kind_exercis_involv',
  'exercis_involv_go',
  'involv_go_tipto',
  'go_tipto_flex',
  'tipto_flex_toe',
  'flex_toe_ask',
  'toe_ask_would',
  'ask_would_pleas',
  'would_pleas_look',
  'pleas_look_gone',
  'look_gone_nearli',
  'gone_nearli_black',
  'nearli_black_spot',
  'black_spot_look',
  'spot_look_similar',
  'look_similar_wrist',
  'similar_wrist_look',
  'wrist_look_broke',
  'look_broke_year',
  'broke_year_ago',
  'year_ago_huf',
  'ago_huf_ask',
  'huf_ask_medic',
  'ask_medic_degre',
  'medic_degre_put',
  'degre_put_back',
  'put_back_demand',
  'back_demand_see',
  'demand_see_anoth',
  'see_anoth_doctor',
  'anoth_doctor_senior',
  'doctor_senior_asshol',
  'senior_asshol_treat',
  'asshol_treat_get',
  'treat_get_thought',
  'get_thought_pushi',
  'thought_pushi_cow-',
  'pushi_cow-_husband',
  'cow-_husband_say',
  'husband_say_boo',
  'say_boo_goos',
  'boo_goos_medic',
  'goos_medic_situat',
  'medic_situat_would',
  'situat_would_accept',
  'would_accept_doctor',
  'accept_doctor_instruct',
  'doctor_instruct_without',
  'instruct_without_question',
  'without_question_actual',
  'question_actual_need',
  'actual_need_examin',
  'need_examin_doctor',
  'examin_doctor_left',
  'doctor_left_heard',
  'left_heard_outsid',
  'heard_outsid_cubicl',
  'outsid_cubicl_tell',
  'cubicl_tell_senior',
  'tell_senior_doctor',
  'senior_doctor_confront',
  'doctor_confront_spous',
  'confront_spous_think',
  'spous_think_web',
  'think_web_md',
  'web_md_search',
  'md_search_qualifi',
  'search_qualifi_instruct',
  'qualifi_instruct_real',
  'instruct_real_doctor',
  'real_doctor_practic',
  'doctor_practic_medicin',
  'practic_medicin_also',
  'medicin_also_state',
  'also_state_suspect',
  'state_suspect_husband',
  'suspect_husband_exagger',
  'husband_exagger_get',
  'exagger_get_opiat',
  'get_opiat_time',
  'opiat_time_doctor',
  'time_doctor_arriv',
  'doctor_arriv_im',
  'arriv_im_seeth',
  'im_seeth_lay',
  'seeth_lay_exactli',
  'lay_exactli_went',
  'exactli_went_explain',
  'went_explain_want',
  'explain_want_someon',
  'want_someon_look',
  'someon_look_foot',
  'look_foot_send',
  'foot_send_us',
  'send_us_away',
  'us_away_lookscu',
  'away_lookscu_xray',
  'lookscu_xray_mri',
  'xray_mri_good',
  'mri_good_painkil',
  'good_painkil_walk',
  'painkil_walk_boot',
  'walk_boot_cast',
  'boot_cast_thing',
  'cast_thing_potenti',
  'thing_potenti_need',
  'potenti_need_surgeri',
  'need_surgeri_got',
  'surgeri_got_stress',
  'got_stress_fractur',
  'stress_fractur_foot-',
  'fractur_foot-_probabl',
  'foot-_probabl_run',
  'probabl_run_admittedli',
  'run_admittedli_wors',
  'admittedli_wors_need',
  'wors_need_get',
  'need_get_treatment',
  'get_treatment_first',
  'treatment_first_start',
  'first_start_hurt',
  'start_hurt_second',
  'hurt_second_doctor',
  'second_doctor_someon',
  'doctor_someon_hospit',
  'someon_hospit_admin',
  'hospit_admin_come',
  'admin_come_apologis',
  'come_apologis_first',
  'apologis_first_doctor',
  'first_doctor_ask',
  'doctor_ask_want',
  'ask_want_make',
  'want_make_formal',
  'make_formal_complaint',
  'formal_complaint_outcom',
  'complaint_outcom_listen',
  'outcom_listen_patient',
  'listen_patient_famili',
  'patient_famili_could',
  'famili_could_wors',
  'could_wors_husband',
  'wors_husband_husband',
  'husband_husband_said',
  'husband_said_later',
  'said_later_first',
  'later_first_doctor',
  'first_doctor_may',
  'doctor_may_get',
  'may_get_sack',
  'get_sack_complain',
  'sack_complain_left',
  'complain_left_real',
  'left_real_harm',
  'real_harm_done',
  'harm_done_ah',
  'done_ah_move',
  'ah_move_complain',
  'move_complain_usual',
  'complain_usual_karen',
  'usual_karen_tendenc',
  'karen_tendenc_patronis',
  'tendenc_patronis_dismiss',
  'patronis_dismiss_kept',
  'dismiss_kept_think',
  'kept_think_young',
  'think_young_mother',
  'young_mother_sick',
  'mother_sick_babi',
  'sick_babi_dissmis',
  'babi_dissmis_that-',
  'dissmis_that-_everyth',
  'that-_everyth_would',
  'everyth_would_stand',
  'would_stand_ground',
  'stand_ground_could',
  'ground_could_realli',
  'could_realli_seriou',
  'realli_seriou_consequ',
  'seriou_consequ_edit',
  'consequ_edit_thank',
  'edit_thank_comment',
  'thank_comment_awards-',
  'comment_awards-_expect',
  'awards-_expect_go',
  'expect_go_mental',
  'go_mental_ive',
  'mental_ive_shown',
  'ive_shown_hubbi',
  'shown_hubbi_post',
  'hubbi_post_start',
  'post_start_realis',
  'start_realis_seriou',
  'realis_seriou_could',
  'seriou_could_go',
  'could_go_email',
  'go_email_admin',
  'email_admin_guy',
  'admin_guy_saw',
  'guy_saw_afternoon-',
  'saw_afternoon-_gave',
  'afternoon-_gave_us',
  'gave_us_contact',
  'us_contact_detail',
  'contact_detail_complaint',
  'detail_complaint_also',
  'complaint_also_agre',
  'also_agre_delay',
  'agre_delay_treatment',
  'delay_treatment_way',
  'treatment_way_incred',
  'way_incred_stupid',
  'incred_stupid_decid',
  'stupid_decid_chase',
  'decid_chase_counsel',
  'chase_counsel_referr',
  'counsel_referr_gp',
  'referr_gp_less',
  'gp_less_useless',
  'less_useless_futur',
  'useless_futur_medic',
  'futur_medic_situat',
  'medic_situat_thank',
  'situat_thank_eventu',
  'thank_eventu_given',
  'eventu_given_appropri',
  'given_appropri_treatment',
  'appropri_treatment_hope',
  'treatment_hope_follow',
  'hope_follow_posit',
  'follow_posit_ill',
  'posit_ill_stick',
  'ill_stick_updat',
  'stick_updat_anyth',
  'updat_anyth_interest',
  'anyth_interest_report',
  'interest_report_thank',
  'report_thank_set',
  'thank_set_mind',
  'set_mind_eas',
  'mind_eas_share',
  'eas_share_opinion'],
 ['ohhhkay',
  'might',
  'sound',
  'ridicul',
  'allow',
  'take',
  'time',
  'explain',
  'start',
  'work',
  'compani',
  'month',
  'guy',
  'cowork',
  'decent',
  'howev',
  'notic',
  'pattern',
  'femal',
  'cowork',
  'coupl',
  'consist',
  'openinglook',
  'phone',
  'whenev',
  'get',
  'chanc',
  'use',
  'bathroommeet',
  'etc',
  'far',
  'ive',
  'caught',
  'time',
  'take',
  'someth',
  'open',
  'app',
  'wouldv',
  'known',
  'still',
  'know',
  'kept',
  'snoop',
  'want',
  'tackl',
  'issu',
  'non-confront',
  'way',
  'sinc',
  'theyr',
  'beyond',
  'sweet',
  'except',
  'snoop',
  'thing',
  'set',
  'insult',
  'offens',
  'wallpap',
  'made',
  'wallpap',
  'say',
  'touch',
  'phone',
  'assholemuggleweirdo',
  'see',
  'john',
  'cena',
  'wave',
  'hand',
  'b__',
  'touch',
  'phone',
  'middl',
  'finger',
  'middl',
  'screen',
  'experi',
  'appar',
  'got',
  'claim',
  'offend',
  'person',
  'level',
  'call',
  'name',
  'told',
  'busi',
  'touch',
  'phone',
  'made',
  'excus',
  'say',
  'tri',
  'borrow',
  'chargercheck',
  'time',
  'etc',
  'etc',
  'offic',
  'got',
  'split',
  'said',
  'come',
  'ladi',
  'realli',
  'issu',
  'say',
  'justifi',
  'ultim',
  'one',
  'get',
  'control',
  'use',
  'wallpap',
  'theyr',
  'expect',
  'formal',
  'apolog',
  'refus',
  'aita',
  'handl',
  'inappropri',
  'ohhhkay_might',
  'might_sound',
  'sound_ridicul',
  'ridicul_allow',
  'allow_take',
  'take_time',
  'time_explain',
  'explain_start',
  'start_work',
  'work_compani',
  'compani_month',
  'month_guy',
  'guy_cowork',
  'cowork_decent',
  'decent_howev',
  'howev_notic',
  'notic_pattern',
  'pattern_femal',
  'femal_cowork',
  'cowork_coupl',
  'coupl_consist',
  'consist_openinglook',
  'openinglook_phone',
  'phone_whenev',
  'whenev_get',
  'get_chanc',
  'chanc_use',
  'use_bathroommeet',
  'bathroommeet_etc',
  'etc_far',
  'far_ive',
  'ive_caught',
  'caught_time',
  'time_take',
  'take_someth',
  'someth_open',
  'open_app',
  'app_wouldv',
  'wouldv_known',
  'known_still',
  'still_know',
  'know_kept',
  'kept_snoop',
  'snoop_want',
  'want_tackl',
  'tackl_issu',
  'issu_non-confront',
  'non-confront_way',
  'way_sinc',
  'sinc_theyr',
  'theyr_beyond',
  'beyond_sweet',
  'sweet_except',
  'except_snoop',
  'snoop_thing',
  'thing_set',
  'set_insult',
  'insult_offens',
  'offens_wallpap',
  'wallpap_made',
  'made_wallpap',
  'wallpap_say',
  'say_touch',
  'touch_phone',
  'phone_assholemuggleweirdo',
  'assholemuggleweirdo_see',
  'see_john',
  'john_cena',
  'cena_wave',
  'wave_hand',
  'hand_b__',
  'b___touch',
  'touch_phone',
  'phone_middl',
  'middl_finger',
  'finger_middl',
  'middl_screen',
  'screen_experi',
  'experi_appar',
  'appar_got',
  'got_claim',
  'claim_offend',
  'offend_person',
  'person_level',
  'level_call',
  'call_name',
  'name_told',
  'told_busi',
  'busi_touch',
  'touch_phone',
  'phone_made',
  'made_excus',
  'excus_say',
  'say_tri',
  'tri_borrow',
  'borrow_chargercheck',
  'chargercheck_time',
  'time_etc',
  'etc_etc',
  'etc_offic',
  'offic_got',
  'got_split',
  'split_said',
  'said_come',
  'come_ladi',
  'ladi_realli',
  'realli_issu',
  'issu_say',
  'say_justifi',
  'justifi_ultim',
  'ultim_one',
  'one_get',
  'get_control',
  'control_use',
  'use_wallpap',
  'wallpap_theyr',
  'theyr_expect',
  'expect_formal',
  'formal_apolog',
  'apolog_refus',
  'refus_aita',
  'aita_handl',
  'handl_inappropri',
  'ohhhkay_might_sound',
  'might_sound_ridicul',
  'sound_ridicul_allow',
  'ridicul_allow_take',
  'allow_take_time',
  'take_time_explain',
  'time_explain_start',
  'explain_start_work',
  'start_work_compani',
  'work_compani_month',
  'compani_month_guy',
  'month_guy_cowork',
  'guy_cowork_decent',
  'cowork_decent_howev',
  'decent_howev_notic',
  'howev_notic_pattern',
  'notic_pattern_femal',
  'pattern_femal_cowork',
  'femal_cowork_coupl',
  'cowork_coupl_consist',
  'coupl_consist_openinglook',
  'consist_openinglook_phone',
  'openinglook_phone_whenev',
  'phone_whenev_get',
  'whenev_get_chanc',
  'get_chanc_use',
  'chanc_use_bathroommeet',
  'use_bathroommeet_etc',
  'bathroommeet_etc_far',
  'etc_far_ive',
  'far_ive_caught',
  'ive_caught_time',
  'caught_time_take',
  'time_take_someth',
  'take_someth_open',
  'someth_open_app',
  'open_app_wouldv',
  'app_wouldv_known',
  'wouldv_known_still',
  'known_still_know',
  'still_know_kept',
  'know_kept_snoop',
  'kept_snoop_want',
  'snoop_want_tackl',
  'want_tackl_issu',
  'tackl_issu_non-confront',
  'issu_non-confront_way',
  'non-confront_way_sinc',
  'way_sinc_theyr',
  'sinc_theyr_beyond',
  'theyr_beyond_sweet',
  'beyond_sweet_except',
  'sweet_except_snoop',
  'except_snoop_thing',
  'snoop_thing_set',
  'thing_set_insult',
  'set_insult_offens',
  'insult_offens_wallpap',
  'offens_wallpap_made',
  'wallpap_made_wallpap',
  'made_wallpap_say',
  'wallpap_say_touch',
  'say_touch_phone',
  'touch_phone_assholemuggleweirdo',
  'phone_assholemuggleweirdo_see',
  'assholemuggleweirdo_see_john',
  'see_john_cena',
  'john_cena_wave',
  'cena_wave_hand',
  'wave_hand_b__',
  'hand_b___touch',
  'b___touch_phone',
  'touch_phone_middl',
  'phone_middl_finger',
  'middl_finger_middl',
  'finger_middl_screen',
  'middl_screen_experi',
  'screen_experi_appar',
  'experi_appar_got',
  'appar_got_claim',
  'got_claim_offend',
  'claim_offend_person',
  'offend_person_level',
  'person_level_call',
  'level_call_name',
  'call_name_told',
  'name_told_busi',
  'told_busi_touch',
  'busi_touch_phone',
  'touch_phone_made',
  'phone_made_excus',
  'made_excus_say',
  'excus_say_tri',
  'say_tri_borrow',
  'tri_borrow_chargercheck',
  'borrow_chargercheck_time',
  'chargercheck_time_etc',
  'time_etc_etc',
  'etc_etc_offic',
  'etc_offic_got',
  'offic_got_split',
  'got_split_said',
  'split_said_come',
  'said_come_ladi',
  'come_ladi_realli',
  'ladi_realli_issu',
  'realli_issu_say',
  'issu_say_justifi',
  'say_justifi_ultim',
  'justifi_ultim_one',
  'ultim_one_get',
  'one_get_control',
  'get_control_use',
  'control_use_wallpap',
  'use_wallpap_theyr',
  'wallpap_theyr_expect',
  'theyr_expect_formal',
  'expect_formal_apolog',
  'formal_apolog_refus',
  'apolog_refus_aita',
  'refus_aita_handl',
  'aita_handl_inappropri'],
 ['yo',
  'son',
  'need',
  'hip',
  'bone',
  'osteoma',
  'surgeri',
  'mom',
  'schedul',
  'three',
  'week',
  'winter',
  'break',
  'ex',
  'share',
  'get',
  'winter',
  'break',
  'could',
  'take',
  'state',
  'see',
  'famili',
  'summer',
  'day',
  'surgeri',
  'ask',
  'ry',
  'could',
  'stay',
  'place',
  'recov',
  'surgeri',
  'ask',
  'said',
  'want',
  'said',
  'ry',
  'never',
  'surgeri',
  'big',
  'deal',
  'want',
  'think',
  'first',
  'thing',
  'face',
  'someth',
  'scari',
  'run',
  'mom',
  'dad',
  'told',
  'quit',
  'insult',
  'request',
  'plu',
  'go',
  'need',
  'help',
  'get',
  'dress',
  'undress',
  'bath',
  'first',
  'coupl',
  'day',
  'highli',
  'doubt',
  'hed',
  'comfort',
  'mom',
  'said',
  'husband',
  'could',
  'told',
  'surgeri',
  'im',
  'take',
  'hous',
  'releas',
  'care',
  'oper',
  'room',
  'ask',
  'could',
  'see',
  'place',
  'said',
  'agreement',
  'schedul',
  'facetim',
  'parent',
  'hous',
  'want',
  'ex',
  'wife',
  'home',
  'anymor',
  'want',
  'shoe',
  'foot',
  'id',
  'understand',
  'whether',
  'like',
  'held',
  'firm',
  'thing',
  'tens',
  'us',
  'ever',
  'sinc',
  'person',
  'care',
  'im',
  'apolog',
  'give',
  'want',
  'edit',
  'son',
  'get',
  'decid',
  'get',
  'stay',
  'long',
  'custodi',
  'agreement',
  'yo_son',
  'son_need',
  'need_hip',
  'hip_bone',
  'bone_osteoma',
  'osteoma_surgeri',
  'surgeri_mom',
  'mom_schedul',
  'schedul_three',
  'three_week',
  'week_winter',
  'winter_break',
  'break_ex',
  'ex_share',
  'share_get',
  'get_winter',
  'winter_break',
  'break_could',
  'could_take',
  'take_state',
  'state_see',
  'see_famili',
  'famili_summer',
  'summer_day',
  'day_surgeri',
  'surgeri_ask',
  'ask_ry',
  'ry_could',
  'could_stay',
  'stay_place',
  'place_recov',
  'recov_surgeri',
  'surgeri_ask',
  'ask_said',
  'said_want',
  'want_said',
  'said_ry',
  'ry_never',
  'never_surgeri',
  'surgeri_big',
  'big_deal',
  'deal_want',
  'want_think',
  'think_first',
  'first_thing',
  'thing_face',
  'face_someth',
  'someth_scari',
  'scari_run',
  'run_mom',
  'mom_dad',
  'dad_told',
  'told_quit',
  'quit_insult',
  'insult_request',
  'request_plu',
  'plu_go',
  'go_need',
  'need_help',
  'help_get',
  'get_dress',
  'dress_undress',
  'undress_bath',
  'bath_first',
  'first_coupl',
  'coupl_day',
  'day_highli',
  'highli_doubt',
  'doubt_hed',
  'hed_comfort',
  'comfort_mom',
  'mom_said',
  'said_husband',
  'husband_could',
  'could_told',
  'told_surgeri',
  'surgeri_im',
  'im_take',
  'take_hous',
  'hous_releas',
  'releas_care',
  'care_oper',
  'oper_room',
  'room_ask',
  'ask_could',
  'could_see',
  'see_place',
  'place_said',
  'said_agreement',
  'agreement_schedul',
  'schedul_facetim',
  'facetim_parent',
  'parent_hous',
  'hous_want',
  'want_ex',
  'ex_wife',
  'wife_home',
  'home_anymor',
  'anymor_want',
  'want_shoe',
  'shoe_foot',
  'foot_id',
  'id_understand',
  'understand_whether',
  'whether_like',
  'like_held',
  'held_firm',
  'firm_thing',
  'thing_tens',
  'tens_us',
  'us_ever',
  'ever_sinc',
  'sinc_person',
  'person_care',
  'care_im',
  'im_apolog',
  'apolog_give',
  'give_want',
  'want_edit',
  'edit_son',
  'son_get',
  'get_decid',
  'decid_get',
  'get_stay',
  'stay_long',
  'long_custodi',
  'custodi_agreement',
  'yo_son_need',
  'son_need_hip',
  'need_hip_bone',
  'hip_bone_osteoma',
  'bone_osteoma_surgeri',
  'osteoma_surgeri_mom',
  'surgeri_mom_schedul',
  'mom_schedul_three',
  'schedul_three_week',
  'three_week_winter',
  'week_winter_break',
  'winter_break_ex',
  'break_ex_share',
  'ex_share_get',
  'share_get_winter',
  'get_winter_break',
  'winter_break_could',
  'break_could_take',
  'could_take_state',
  'take_state_see',
  'state_see_famili',
  'see_famili_summer',
  'famili_summer_day',
  'summer_day_surgeri',
  'day_surgeri_ask',
  'surgeri_ask_ry',
  'ask_ry_could',
  'ry_could_stay',
  'could_stay_place',
  'stay_place_recov',
  'place_recov_surgeri',
  'recov_surgeri_ask',
  'surgeri_ask_said',
  'ask_said_want',
  'said_want_said',
  'want_said_ry',
  'said_ry_never',
  'ry_never_surgeri',
  'never_surgeri_big',
  'surgeri_big_deal',
  'big_deal_want',
  'deal_want_think',
  'want_think_first',
  'think_first_thing',
  'first_thing_face',
  'thing_face_someth',
  'face_someth_scari',
  'someth_scari_run',
  'scari_run_mom',
  'run_mom_dad',
  'mom_dad_told',
  'dad_told_quit',
  'told_quit_insult',
  'quit_insult_request',
  'insult_request_plu',
  'request_plu_go',
  'plu_go_need',
  'go_need_help',
  'need_help_get',
  'help_get_dress',
  'get_dress_undress',
  'dress_undress_bath',
  'undress_bath_first',
  'bath_first_coupl',
  'first_coupl_day',
  'coupl_day_highli',
  'day_highli_doubt',
  'highli_doubt_hed',
  'doubt_hed_comfort',
  'hed_comfort_mom',
  'comfort_mom_said',
  'mom_said_husband',
  'said_husband_could',
  'husband_could_told',
  'could_told_surgeri',
  'told_surgeri_im',
  'surgeri_im_take',
  'im_take_hous',
  'take_hous_releas',
  'hous_releas_care',
  'releas_care_oper',
  'care_oper_room',
  'oper_room_ask',
  'room_ask_could',
  'ask_could_see',
  'could_see_place',
  'see_place_said',
  'place_said_agreement',
  'said_agreement_schedul',
  'agreement_schedul_facetim',
  'schedul_facetim_parent',
  'facetim_parent_hous',
  'parent_hous_want',
  'hous_want_ex',
  'want_ex_wife',
  'ex_wife_home',
  'wife_home_anymor',
  'home_anymor_want',
  'anymor_want_shoe',
  'want_shoe_foot',
  'shoe_foot_id',
  'foot_id_understand',
  'id_understand_whether',
  'understand_whether_like',
  'whether_like_held',
  'like_held_firm',
  'held_firm_thing',
  'firm_thing_tens',
  'thing_tens_us',
  'tens_us_ever',
  'us_ever_sinc',
  'ever_sinc_person',
  'sinc_person_care',
  'person_care_im',
  'care_im_apolog',
  'im_apolog_give',
  'apolog_give_want',
  'give_want_edit',
  'want_edit_son',
  'edit_son_get',
  'son_get_decid',
  'get_decid_get',
  'decid_get_stay',
  'get_stay_long',
  'stay_long_custodi',
  'long_custodi_agreement'],
 ['fiancé',
  'im',
  'take',
  'day',
  'honeymoon',
  'brazil',
  'origin',
  'trip',
  'work',
  'long',
  'time',
  'week',
  'ago',
  'learn',
  'parent',
  'hope',
  'stop',
  'visit',
  'us',
  'honeymoon',
  'even',
  'ask',
  'stay',
  'us',
  'rent',
  'bedroom',
  'place',
  'near',
  'beach',
  'night',
  'said',
  'absolut',
  'husband',
  'agre',
  'told',
  'want',
  'privaci',
  'parent',
  'grown',
  'close',
  'sent',
  'separ',
  'text',
  'ask',
  'lightheart',
  'way',
  'thought',
  'realli',
  'big',
  'problem',
  'agre',
  'said',
  'ye',
  'agre',
  'mom',
  'ask',
  'honest',
  '-',
  'said',
  'want',
  'abl',
  'open',
  'free',
  'without',
  'think',
  'houseguest',
  'said',
  'sex',
  'thought',
  'still',
  'lightheart',
  'repli',
  'im',
  'honest',
  'im',
  'go',
  'fuck',
  'brain',
  'everi',
  'room',
  'hous',
  'respons',
  'becom',
  'whole',
  'thing',
  'mother',
  'law',
  'think',
  'im',
  'disrespect',
  'father',
  'law',
  'think',
  'im',
  'sex',
  'monster',
  'kind',
  'husband',
  'think',
  'way',
  'far',
  'aita',
  'owe',
  'apolog',
  'fiancé_im',
  'im_take',
  'take_day',
  'day_honeymoon',
  'honeymoon_brazil',
  'brazil_origin',
  'origin_trip',
  'trip_work',
  'work_long',
  'long_time',
  'time_week',
  'week_ago',
  'ago_learn',
  'learn_parent',
  'parent_hope',
  'hope_stop',
  'stop_visit',
  'visit_us',
  'us_honeymoon',
  'honeymoon_even',
  'even_ask',
  'ask_stay',
  'stay_us',
  'us_rent',
  'rent_bedroom',
  'bedroom_place',
  'place_near',
  'near_beach',
  'beach_night',
  'night_said',
  'said_absolut',
  'absolut_husband',
  'husband_agre',
  'agre_told',
  'told_want',
  'want_privaci',
  'privaci_parent',
  'parent_grown',
  'grown_close',
  'close_sent',
  'sent_separ',
  'separ_text',
  'text_ask',
  'ask_lightheart',
  'lightheart_way',
  'way_thought',
  'thought_realli',
  'realli_big',
  'big_problem',
  'problem_agre',
  'agre_said',
  'said_ye',
  'ye_agre',
  'agre_mom',
  'mom_ask',
  'ask_honest',
  'honest_-',
  '-_said',
  'said_want',
  'want_abl',
  'abl_open',
  'open_free',
  'free_without',
  'without_think',
  'think_houseguest',
  'houseguest_said',
  'said_sex',
  'sex_thought',
  'thought_still',
  'still_lightheart',
  'lightheart_repli',
  'repli_im',
  'im_honest',
  'honest_im',
  'im_go',
  'go_fuck',
  'fuck_brain',
  'brain_everi',
  'everi_room',
  'room_hous',
  'hous_respons',
  'respons_becom',
  'becom_whole',
  'whole_thing',
  'thing_mother',
  'mother_law',
  'law_think',
  'think_im',
  'im_disrespect',
  'disrespect_father',
  'father_law',
  'law_think',
  'think_im',
  'im_sex',
  'sex_monster',
  'monster_kind',
  'kind_husband',
  'husband_think',
  'think_way',
  'way_far',
  'far_aita',
  'aita_owe',
  'owe_apolog',
  'fiancé_im_take',
  'im_take_day',
  'take_day_honeymoon',
  'day_honeymoon_brazil',
  'honeymoon_brazil_origin',
  'brazil_origin_trip',
  'origin_trip_work',
  'trip_work_long',
  'work_long_time',
  'long_time_week',
  'time_week_ago',
  'week_ago_learn',
  'ago_learn_parent',
  'learn_parent_hope',
  'parent_hope_stop',
  'hope_stop_visit',
  'stop_visit_us',
  'visit_us_honeymoon',
  'us_honeymoon_even',
  'honeymoon_even_ask',
  'even_ask_stay',
  'ask_stay_us',
  'stay_us_rent',
  'us_rent_bedroom',
  'rent_bedroom_place',
  'bedroom_place_near',
  'place_near_beach',
  'near_beach_night',
  'beach_night_said',
  'night_said_absolut',
  'said_absolut_husband',
  'absolut_husband_agre',
  'husband_agre_told',
  'agre_told_want',
  'told_want_privaci',
  'want_privaci_parent',
  'privaci_parent_grown',
  'parent_grown_close',
  'grown_close_sent',
  'close_sent_separ',
  'sent_separ_text',
  'separ_text_ask',
  'text_ask_lightheart',
  'ask_lightheart_way',
  'lightheart_way_thought',
  'way_thought_realli',
  'thought_realli_big',
  'realli_big_problem',
  'big_problem_agre',
  'problem_agre_said',
  'agre_said_ye',
  'said_ye_agre',
  'ye_agre_mom',
  'agre_mom_ask',
  'mom_ask_honest',
  'ask_honest_-',
  'honest_-_said',
  '-_said_want',
  'said_want_abl',
  'want_abl_open',
  'abl_open_free',
  'open_free_without',
  'free_without_think',
  'without_think_houseguest',
  'think_houseguest_said',
  'houseguest_said_sex',
  'said_sex_thought',
  'sex_thought_still',
  'thought_still_lightheart',
  'still_lightheart_repli',
  'lightheart_repli_im',
  'repli_im_honest',
  'im_honest_im',
  'honest_im_go',
  'im_go_fuck',
  'go_fuck_brain',
  'fuck_brain_everi',
  'brain_everi_room',
  'everi_room_hous',
  'room_hous_respons',
  'hous_respons_becom',
  'respons_becom_whole',
  'becom_whole_thing',
  'whole_thing_mother',
  'thing_mother_law',
  'mother_law_think',
  'law_think_im',
  'think_im_disrespect',
  'im_disrespect_father',
  'disrespect_father_law',
  'father_law_think',
  'law_think_im',
  'think_im_sex',
  'im_sex_monster',
  'sex_monster_kind',
  'monster_kind_husband',
  'kind_husband_think',
  'husband_think_way',
  'think_way_far',
  'way_far_aita',
  'far_aita_owe',
  'aita_owe_apolog'],
 ['run',
  'small',
  'onlin',
  'busi',
  'home',
  'novemb',
  'decemb',
  'busiest',
  'time',
  'year',
  'make',
  'lot',
  'money',
  'allow',
  'work',
  'less',
  'year',
  'ive',
  'sinc',
  'ive',
  'got',
  'decent',
  'idea',
  'focus',
  'work',
  '-',
  'month',
  'sacrific',
  'im',
  'make',
  'chill',
  'rest',
  'year',
  'year',
  'ive',
  'move',
  'boyfriend',
  'well',
  'technic',
  'move',
  'hous',
  'brainier',
  'move',
  'split',
  'chore',
  'half',
  'half',
  'work',
  'full',
  'time',
  'hour',
  'week',
  'move',
  'talk',
  'let',
  'know',
  'cant',
  'chore',
  'novemberdecemb',
  'ask',
  'could',
  'pick',
  'slack',
  'im',
  'physic',
  'unabl',
  'chore',
  'work',
  'anyth',
  '-',
  'hour',
  'day',
  'take',
  'full',
  'januari',
  'decompress',
  'said',
  'doubt',
  'work',
  'much',
  'see',
  'ask',
  'septemb',
  'octob',
  'make',
  'sure',
  'awar',
  'anyth',
  'meal',
  'prep',
  'advanc',
  'felt',
  'kind',
  'dismiss',
  'mid',
  'novemb',
  'argument',
  'chore',
  'done',
  'remind',
  'told',
  'said',
  'thought',
  'seriou',
  'told',
  'way',
  'hed',
  '%',
  'chore',
  'work',
  'said',
  'fine',
  'chore',
  'wait',
  'time',
  'live',
  'alon',
  'problem',
  'make',
  'much',
  'mess',
  'anyway',
  'happi',
  'drop',
  'seen',
  'much',
  'ive',
  'work',
  'much',
  'piss',
  'blew',
  'today',
  'regard',
  'chore',
  'said',
  'better',
  'work',
  'life',
  'balanc',
  'grow',
  'hous',
  'mess',
  'told',
  'mess',
  'fault',
  'bare',
  'leav',
  'offic',
  'call',
  'lazi',
  'bitch',
  'told',
  'time',
  'argu',
  'went',
  'back',
  'work',
  'stood',
  'front',
  'lock',
  'offic',
  'door',
  'shout',
  'believ',
  'bei',
  'mg',
  'seriou',
  'chore',
  'asshol',
  'move',
  'leav',
  'think',
  'im',
  'major',
  'asshol',
  'basic',
  'disappear',
  'month',
  'follow',
  'chore',
  'realli',
  'asshol',
  'say',
  'chore',
  'follow',
  'sorri',
  'typo',
  'im',
  'mobil',
  'autocorrect',
  'hate',
  'run_small',
  'small_onlin',
  'onlin_busi',
  'busi_home',
  'home_novemb',
  'novemb_decemb',
  'decemb_busiest',
  'busiest_time',
  'time_year',
  'year_make',
  'make_lot',
  'lot_money',
  'money_allow',
  'allow_work',
  'work_less',
  'less_year',
  'year_ive',
  'ive_sinc',
  'sinc_ive',
  'ive_got',
  'got_decent',
  'decent_idea',
  'idea_focus',
  'focus_work',
  'work_-',
  '-_month',
  'month_sacrific',
  'sacrific_im',
  'im_make',
  'make_chill',
  'chill_rest',
  'rest_year',
  'year_year',
  'year_ive',
  'ive_move',
  'move_boyfriend',
  'boyfriend_well',
  'well_technic',
  'technic_move',
  'move_hous',
  'hous_brainier',
  'brainier_move',
  'move_split',
  'split_chore',
  'chore_half',
  'half_half',
  'half_work',
  'work_full',
  'full_time',
  'time_hour',
  'hour_week',
  'week_move',
  'move_talk',
  'talk_let',
  'let_know',
  'know_cant',
  'cant_chore',
  'chore_novemberdecemb',
  'novemberdecemb_ask',
  'ask_could',
  'could_pick',
  'pick_slack',
  'slack_im',
  'im_physic',
  'physic_unabl',
  'unabl_chore',
  'chore_work',
  'work_anyth',
  'anyth_-',
  '-_hour',
  'hour_day',
  'day_take',
  'take_full',
  'full_januari',
  'januari_decompress',
  'decompress_said',
  'said_doubt',
  'doubt_work',
  'work_much',
  'much_see',
  'see_ask',
  'ask_septemb',
  'septemb_octob',
  'octob_make',
  'make_sure',
  'sure_awar',
  'awar_anyth',
  'anyth_meal',
  'meal_prep',
  'prep_advanc',
  'advanc_felt',
  'felt_kind',
  'kind_dismiss',
  'dismiss_mid',
  'mid_novemb',
  'novemb_argument',
  'argument_chore',
  'chore_done',
  'done_remind',
  'remind_told',
  'told_said',
  'said_thought',
  'thought_seriou',
  'seriou_told',
  'told_way',
  'way_hed',
  'hed_%',
  '%_chore',
  'chore_work',
  'work_said',
  'said_fine',
  'fine_chore',
  'chore_wait',
  'wait_time',
  'time_live',
  'live_alon',
  'alon_problem',
  'problem_make',
  'make_much',
  'much_mess',
  'mess_anyway',
  'anyway_happi',
  'happi_drop',
  'drop_seen',
  'seen_much',
  'much_ive',
  'ive_work',
  'work_much',
  'much_piss',
  'piss_blew',
  'blew_today',
  'today_regard',
  'regard_chore',
  'chore_said',
  'said_better',
  'better_work',
  'work_life',
  'life_balanc',
  'balanc_grow',
  'grow_hous',
  'hous_mess',
  'mess_told',
  'told_mess',
  'mess_fault',
  'fault_bare',
  'bare_leav',
  'leav_offic',
  'offic_call',
  'call_lazi',
  'lazi_bitch',
  'bitch_told',
  'told_time',
  'time_argu',
  'argu_went',
  'went_back',
  'back_work',
  'work_stood',
  'stood_front',
  'front_lock',
  'lock_offic',
  'offic_door',
  'door_shout',
  'shout_believ',
  'believ_bei',
  'bei_mg',
  'mg_seriou',
  'seriou_chore',
  'chore_asshol',
  'asshol_move',
  'move_leav',
  'leav_think',
  'think_im',
  'im_major',
  'major_asshol',
  'asshol_basic',
  'basic_disappear',
  'disappear_month',
  'month_follow',
  'follow_chore',
  'chore_realli',
  'realli_asshol',
  'asshol_say',
  'say_chore',
  'chore_follow',
  'follow_sorri',
  'sorri_typo',
  'typo_im',
  'im_mobil',
  'mobil_autocorrect',
  'autocorrect_hate',
  'run_small_onlin',
  'small_onlin_busi',
  'onlin_busi_home',
  'busi_home_novemb',
  'home_novemb_decemb',
  'novemb_decemb_busiest',
  'decemb_busiest_time',
  'busiest_time_year',
  'time_year_make',
  'year_make_lot',
  'make_lot_money',
  'lot_money_allow',
  'money_allow_work',
  'allow_work_less',
  'work_less_year',
  'less_year_ive',
  'year_ive_sinc',
  'ive_sinc_ive',
  'sinc_ive_got',
  'ive_got_decent',
  'got_decent_idea',
  'decent_idea_focus',
  'idea_focus_work',
  'focus_work_-',
  'work_-_month',
  '-_month_sacrific',
  'month_sacrific_im',
  'sacrific_im_make',
  'im_make_chill',
  'make_chill_rest',
  'chill_rest_year',
  'rest_year_year',
  'year_year_ive',
  'year_ive_move',
  'ive_move_boyfriend',
  'move_boyfriend_well',
  'boyfriend_well_technic',
  'well_technic_move',
  'technic_move_hous',
  'move_hous_brainier',
  'hous_brainier_move',
  'brainier_move_split',
  'move_split_chore',
  'split_chore_half',
  'chore_half_half',
  'half_half_work',
  'half_work_full',
  'work_full_time',
  'full_time_hour',
  'time_hour_week',
  'hour_week_move',
  'week_move_talk',
  'move_talk_let',
  'talk_let_know',
  'let_know_cant',
  'know_cant_chore',
  'cant_chore_novemberdecemb',
  'chore_novemberdecemb_ask',
  'novemberdecemb_ask_could',
  'ask_could_pick',
  'could_pick_slack',
  'pick_slack_im',
  'slack_im_physic',
  'im_physic_unabl',
  'physic_unabl_chore',
  'unabl_chore_work',
  'chore_work_anyth',
  'work_anyth_-',
  'anyth_-_hour',
  '-_hour_day',
  'hour_day_take',
  'day_take_full',
  'take_full_januari',
  'full_januari_decompress',
  'januari_decompress_said',
  'decompress_said_doubt',
  'said_doubt_work',
  'doubt_work_much',
  'work_much_see',
  'much_see_ask',
  'see_ask_septemb',
  'ask_septemb_octob',
  'septemb_octob_make',
  'octob_make_sure',
  'make_sure_awar',
  'sure_awar_anyth',
  'awar_anyth_meal',
  'anyth_meal_prep',
  'meal_prep_advanc',
  'prep_advanc_felt',
  'advanc_felt_kind',
  'felt_kind_dismiss',
  'kind_dismiss_mid',
  'dismiss_mid_novemb',
  'mid_novemb_argument',
  'novemb_argument_chore',
  'argument_chore_done',
  'chore_done_remind',
  'done_remind_told',
  'remind_told_said',
  'told_said_thought',
  'said_thought_seriou',
  'thought_seriou_told',
  'seriou_told_way',
  'told_way_hed',
  'way_hed_%',
  'hed_%_chore',
  '%_chore_work',
  'chore_work_said',
  'work_said_fine',
  'said_fine_chore',
  'fine_chore_wait',
  'chore_wait_time',
  'wait_time_live',
  'time_live_alon',
  'live_alon_problem',
  'alon_problem_make',
  'problem_make_much',
  'make_much_mess',
  'much_mess_anyway',
  'mess_anyway_happi',
  'anyway_happi_drop',
  'happi_drop_seen',
  'drop_seen_much',
  'seen_much_ive',
  'much_ive_work',
  'ive_work_much',
  'work_much_piss',
  'much_piss_blew',
  'piss_blew_today',
  'blew_today_regard',
  'today_regard_chore',
  'regard_chore_said',
  'chore_said_better',
  'said_better_work',
  'better_work_life',
  'work_life_balanc',
  'life_balanc_grow',
  'balanc_grow_hous',
  'grow_hous_mess',
  'hous_mess_told',
  'mess_told_mess',
  'told_mess_fault',
  'mess_fault_bare',
  'fault_bare_leav',
  'bare_leav_offic',
  'leav_offic_call',
  'offic_call_lazi',
  'call_lazi_bitch',
  'lazi_bitch_told',
  'bitch_told_time',
  'told_time_argu',
  'time_argu_went',
  'argu_went_back',
  'went_back_work',
  'back_work_stood',
  'work_stood_front',
  'stood_front_lock',
  'front_lock_offic',
  'lock_offic_door',
  'offic_door_shout',
  'door_shout_believ',
  'shout_believ_bei',
  'believ_bei_mg',
  'bei_mg_seriou',
  'mg_seriou_chore',
  'seriou_chore_asshol',
  'chore_asshol_move',
  'asshol_move_leav',
  'move_leav_think',
  'leav_think_im',
  'think_im_major',
  'im_major_asshol',
  'major_asshol_basic',
  'asshol_basic_disappear',
  'basic_disappear_month',
  'disappear_month_follow',
  'month_follow_chore',
  'follow_chore_realli',
  'chore_realli_asshol',
  'realli_asshol_say',
  'asshol_say_chore',
  'say_chore_follow',
  'chore_follow_sorri',
  'follow_sorri_typo',
  'sorri_typo_im',
  'typo_im_mobil',
  'im_mobil_autocorrect',
  'mobil_autocorrect_hate'],
 ['sister',
  'mari',
  'husband',
  'zach',
  'first',
  'child',
  'beauti',
  'babi',
  'girl',
  'month',
  'ago',
  'pretti',
  'nervou',
  'parent',
  'husband',
  'tom',
  'invit',
  'final',
  'meet',
  'niec',
  'thrill',
  'except',
  'worri',
  'tom',
  'make',
  'ass',
  'see',
  'tom',
  'mari',
  'alway',
  'hard',
  'time',
  'get',
  'along',
  'agre',
  'nearli',
  'anyth',
  'tom',
  'alway',
  'gotten',
  'kick',
  'challeng',
  'mari',
  'differ',
  'view',
  'opinion',
  'thing',
  'tom',
  'funni',
  'watch',
  'mari',
  'react',
  'say',
  'thing',
  'provok',
  'mari',
  'alway',
  'want',
  'prove',
  'view',
  'wrong',
  'head',
  'grad',
  'school',
  'social',
  'scienc',
  'finish',
  'right',
  'babi',
  'knowledg',
  'topic',
  'tom',
  'want',
  'argu',
  'mari',
  'problem',
  'debat',
  'liter',
  'job',
  'past',
  'tom',
  'mari',
  'initi',
  'argument',
  'guilti',
  'take',
  'far',
  'past',
  'ever',
  'sinc',
  'got',
  'pregnant',
  'babi',
  'mari',
  'calm',
  'lot',
  'wherea',
  'tom',
  'still',
  'tri',
  'bait',
  'debat',
  'touchi',
  'subject',
  'mainli',
  'polit',
  'person',
  'valu',
  'got',
  'point',
  'mari',
  'block',
  'social',
  'media',
  'month',
  'ago',
  'went',
  'visit',
  'ask',
  'tom',
  'nice',
  'mari',
  'zach',
  'start',
  'anyth',
  'tom',
  'said',
  'would',
  'tri',
  'best',
  'told',
  'would',
  'upset',
  'tri',
  'bait',
  'mari',
  'zach',
  'argument',
  'tom',
  'start',
  'even',
  'pretti',
  'strong',
  'kept',
  'reveal',
  'zach',
  'go',
  'one',
  'stay',
  'home',
  'daughter',
  'tom',
  'made',
  'comment',
  'like',
  'oh',
  'thought',
  'mom',
  'suppos',
  'zach',
  'said',
  'pretti',
  'sexist',
  'tom',
  'say',
  'tom',
  'ask',
  'zach',
  'told',
  'mom',
  'career',
  'mari',
  'give',
  'hard',
  'work',
  'did…',
  'tom',
  'start',
  'tangent',
  'mari',
  'cut',
  'told',
  'either',
  'quit',
  'leav',
  'done',
  'entertain',
  'nonsens',
  'tom',
  'laugh',
  'still',
  'awkward',
  'stay',
  'long',
  'got',
  'home',
  'told',
  'tom',
  'done',
  'embarrass',
  'allow',
  'join',
  'whenev',
  'visit',
  'mari',
  'im',
  'even',
  'invit',
  'back',
  'told',
  'make',
  'look',
  'smart',
  'alway',
  'insist',
  'convers',
  'make',
  'look',
  'like',
  'ass',
  'like',
  'fool',
  'tom',
  'said',
  'im',
  'blow',
  'way',
  'proport',
  'fault',
  'got',
  'offend',
  'anyth',
  'rude',
  'kick',
  'opinion',
  'mari',
  'anyth',
  'time',
  'snap',
  'back',
  'call',
  'name',
  'ask',
  'stop',
  'aita',
  'unreason',
  'sister_mari',
  'mari_husband',
  'husband_zach',
  'zach_first',
  'first_child',
  'child_beauti',
  'beauti_babi',
  'babi_girl',
  'girl_month',
  'month_ago',
  'ago_pretti',
  'pretti_nervou',
  'nervou_parent',
  'parent_husband',
  'husband_tom',
  'tom_invit',
  'invit_final',
  'final_meet',
  'meet_niec',
  'niec_thrill',
  'thrill_except',
  'except_worri',
  'worri_tom',
  'tom_make',
  'make_ass',
  'ass_see',
  'see_tom',
  'tom_mari',
  'mari_alway',
  'alway_hard',
  'hard_time',
  'time_get',
  'get_along',
  'along_agre',
  'agre_nearli',
  'nearli_anyth',
  'anyth_tom',
  'tom_alway',
  'alway_gotten',
  'gotten_kick',
  'kick_challeng',
  'challeng_mari',
  'mari_differ',
  'differ_view',
  'view_opinion',
  'opinion_thing',
  'thing_tom',
  'tom_funni',
  'funni_watch',
  'watch_mari',
  'mari_react',
  'react_say',
  'say_thing',
  'thing_provok',
  'provok_mari',
  'mari_alway',
  'alway_want',
  'want_prove',
  'prove_view',
  'view_wrong',
  'wrong_head',
  'head_grad',
  'grad_school',
  'school_social',
  'social_scienc',
  'scienc_finish',
  'finish_right',
  'right_babi',
  'babi_knowledg',
  'knowledg_topic',
  'topic_tom',
  'tom_want',
  'want_argu',
  'argu_mari',
  'mari_problem',
  'problem_debat',
  'debat_liter',
  'liter_job',
  'job_past',
  'past_tom',
  'tom_mari',
  'mari_initi',
  'initi_argument',
  'argument_guilti',
  'guilti_take',
  'take_far',
  'far_past',
  'past_ever',
  'ever_sinc',
  'sinc_got',
  'got_pregnant',
  'pregnant_babi',
  'babi_mari',
  'mari_calm',
  'calm_lot',
  'lot_wherea',
  'wherea_tom',
  'tom_still',
  'still_tri',
  'tri_bait',
  'bait_debat',
  'debat_touchi',
  'touchi_subject',
  'subject_mainli',
  'mainli_polit',
  'polit_person',
  'person_valu',
  'valu_got',
  'got_point',
  'point_mari',
  'mari_block',
  'block_social',
  'social_media',
  'media_month',
  'month_ago',
  'ago_went',
  'went_visit',
  'visit_ask',
  'ask_tom',
  'tom_nice',
  'nice_mari',
  'mari_zach',
  'zach_start',
  'start_anyth',
  'anyth_tom',
  'tom_said',
  'said_would',
  'would_tri',
  'tri_best',
  'best_told',
  'told_would',
  'would_upset',
  'upset_tri',
  'tri_bait',
  'bait_mari',
  'mari_zach',
  'zach_argument',
  'argument_tom',
  'tom_start',
  'start_even',
  'even_pretti',
  'pretti_strong',
  'strong_kept',
  'kept_reveal',
  'reveal_zach',
  'zach_go',
  'go_one',
  'one_stay',
  'stay_home',
  'home_daughter',
  'daughter_tom',
  'tom_made',
  'made_comment',
  'comment_like',
  'like_oh',
  'oh_thought',
  'thought_mom',
  'mom_suppos',
  'suppos_zach',
  'zach_said',
  'said_pretti',
  'pretti_sexist',
  'sexist_tom',
  'tom_say',
  'say_tom',
  'tom_ask',
  'ask_zach',
  'zach_told',
  'told_mom',
  'mom_career',
  'career_mari',
  'mari_give',
  'give_hard',
  'hard_work',
  'work_did…',
  'did…_tom',
  'tom_start',
  'start_tangent',
  'tangent_mari',
  'mari_cut',
  'cut_told',
  'told_either',
  'either_quit',
  'quit_leav',
  'leav_done',
  'done_entertain',
  'entertain_nonsens',
  'nonsens_tom',
  'tom_laugh',
  'laugh_still',
  'still_awkward',
  'awkward_stay',
  'stay_long',
  'long_got',
  'got_home',
  'home_told',
  'told_tom',
  'tom_done',
  'done_embarrass',
  'embarrass_allow',
  'allow_join',
  'join_whenev',
  'whenev_visit',
  'visit_mari',
  'mari_im',
  'im_even',
  'even_invit',
  'invit_back',
  'back_told',
  'told_make',
  'make_look',
  'look_smart',
  'smart_alway',
  'alway_insist',
  'insist_convers',
  'convers_make',
  'make_look',
  'look_like',
  'like_ass',
  'ass_like',
  'like_fool',
  'fool_tom',
  'tom_said',
  'said_im',
  'im_blow',
  'blow_way',
  'way_proport',
  'proport_fault',
  'fault_got',
  'got_offend',
  'offend_anyth',
  'anyth_rude',
  'rude_kick',
  'kick_opinion',
  'opinion_mari',
  'mari_anyth',
  'anyth_time',
  'time_snap',
  'snap_back',
  'back_call',
  'call_name',
  'name_ask',
  'ask_stop',
  'stop_aita',
  'aita_unreason',
  'sister_mari_husband',
  'mari_husband_zach',
  'husband_zach_first',
  'zach_first_child',
  'first_child_beauti',
  'child_beauti_babi',
  'beauti_babi_girl',
  'babi_girl_month',
  'girl_month_ago',
  'month_ago_pretti',
  'ago_pretti_nervou',
  'pretti_nervou_parent',
  'nervou_parent_husband',
  'parent_husband_tom',
  'husband_tom_invit',
  'tom_invit_final',
  'invit_final_meet',
  'final_meet_niec',
  'meet_niec_thrill',
  'niec_thrill_except',
  'thrill_except_worri',
  'except_worri_tom',
  'worri_tom_make',
  'tom_make_ass',
  'make_ass_see',
  'ass_see_tom',
  'see_tom_mari',
  'tom_mari_alway',
  'mari_alway_hard',
  'alway_hard_time',
  'hard_time_get',
  'time_get_along',
  'get_along_agre',
  'along_agre_nearli',
  'agre_nearli_anyth',
  'nearli_anyth_tom',
  'anyth_tom_alway',
  'tom_alway_gotten',
  'alway_gotten_kick',
  'gotten_kick_challeng',
  'kick_challeng_mari',
  'challeng_mari_differ',
  'mari_differ_view',
  'differ_view_opinion',
  'view_opinion_thing',
  'opinion_thing_tom',
  'thing_tom_funni',
  'tom_funni_watch',
  'funni_watch_mari',
  'watch_mari_react',
  'mari_react_say',
  'react_say_thing',
  'say_thing_provok',
  'thing_provok_mari',
  'provok_mari_alway',
  'mari_alway_want',
  'alway_want_prove',
  'want_prove_view',
  'prove_view_wrong',
  'view_wrong_head',
  'wrong_head_grad',
  'head_grad_school',
  'grad_school_social',
  'school_social_scienc',
  'social_scienc_finish',
  'scienc_finish_right',
  'finish_right_babi',
  'right_babi_knowledg',
  'babi_knowledg_topic',
  'knowledg_topic_tom',
  'topic_tom_want',
  'tom_want_argu',
  'want_argu_mari',
  'argu_mari_problem',
  'mari_problem_debat',
  'problem_debat_liter',
  'debat_liter_job',
  'liter_job_past',
  'job_past_tom',
  'past_tom_mari',
  'tom_mari_initi',
  'mari_initi_argument',
  'initi_argument_guilti',
  'argument_guilti_take',
  'guilti_take_far',
  'take_far_past',
  'far_past_ever',
  'past_ever_sinc',
  'ever_sinc_got',
  'sinc_got_pregnant',
  'got_pregnant_babi',
  'pregnant_babi_mari',
  'babi_mari_calm',
  'mari_calm_lot',
  'calm_lot_wherea',
  'lot_wherea_tom',
  'wherea_tom_still',
  'tom_still_tri',
  'still_tri_bait',
  'tri_bait_debat',
  'bait_debat_touchi',
  'debat_touchi_subject',
  'touchi_subject_mainli',
  'subject_mainli_polit',
  'mainli_polit_person',
  'polit_person_valu',
  'person_valu_got',
  'valu_got_point',
  'got_point_mari',
  'point_mari_block',
  'mari_block_social',
  'block_social_media',
  'social_media_month',
  'media_month_ago',
  'month_ago_went',
  'ago_went_visit',
  'went_visit_ask',
  'visit_ask_tom',
  'ask_tom_nice',
  'tom_nice_mari',
  'nice_mari_zach',
  'mari_zach_start',
  'zach_start_anyth',
  'start_anyth_tom',
  'anyth_tom_said',
  'tom_said_would',
  'said_would_tri',
  'would_tri_best',
  'tri_best_told',
  'best_told_would',
  'told_would_upset',
  'would_upset_tri',
  'upset_tri_bait',
  'tri_bait_mari',
  'bait_mari_zach',
  'mari_zach_argument',
  'zach_argument_tom',
  'argument_tom_start',
  'tom_start_even',
  'start_even_pretti',
  'even_pretti_strong',
  'pretti_strong_kept',
  'strong_kept_reveal',
  'kept_reveal_zach',
  'reveal_zach_go',
  'zach_go_one',
  'go_one_stay',
  'one_stay_home',
  'stay_home_daughter',
  'home_daughter_tom',
  'daughter_tom_made',
  'tom_made_comment',
  'made_comment_like',
  'comment_like_oh',
  'like_oh_thought',
  'oh_thought_mom',
  'thought_mom_suppos',
  'mom_suppos_zach',
  'suppos_zach_said',
  'zach_said_pretti',
  'said_pretti_sexist',
  'pretti_sexist_tom',
  'sexist_tom_say',
  'tom_say_tom',
  'say_tom_ask',
  'tom_ask_zach',
  'ask_zach_told',
  'zach_told_mom',
  'told_mom_career',
  'mom_career_mari',
  'career_mari_give',
  'mari_give_hard',
  'give_hard_work',
  'hard_work_did…',
  'work_did…_tom',
  'did…_tom_start',
  'tom_start_tangent',
  'start_tangent_mari',
  'tangent_mari_cut',
  'mari_cut_told',
  'cut_told_either',
  'told_either_quit',
  'either_quit_leav',
  'quit_leav_done',
  'leav_done_entertain',
  'done_entertain_nonsens',
  'entertain_nonsens_tom',
  'nonsens_tom_laugh',
  'tom_laugh_still',
  'laugh_still_awkward',
  'still_awkward_stay',
  'awkward_stay_long',
  'stay_long_got',
  'long_got_home',
  'got_home_told',
  'home_told_tom',
  'told_tom_done',
  'tom_done_embarrass',
  'done_embarrass_allow',
  'embarrass_allow_join',
  'allow_join_whenev',
  'join_whenev_visit',
  'whenev_visit_mari',
  'visit_mari_im',
  'mari_im_even',
  'im_even_invit',
  'even_invit_back',
  'invit_back_told',
  'back_told_make',
  'told_make_look',
  'make_look_smart',
  'look_smart_alway',
  'smart_alway_insist',
  'alway_insist_convers',
  'insist_convers_make',
  'convers_make_look',
  'make_look_like',
  'look_like_ass',
  'like_ass_like',
  'ass_like_fool',
  'like_fool_tom',
  'fool_tom_said',
  'tom_said_im',
  'said_im_blow',
  'im_blow_way',
  'blow_way_proport',
  'way_proport_fault',
  'proport_fault_got',
  'fault_got_offend',
  'got_offend_anyth',
  'offend_anyth_rude',
  'anyth_rude_kick',
  'rude_kick_opinion',
  'kick_opinion_mari',
  'opinion_mari_anyth',
  'mari_anyth_time',
  'anyth_time_snap',
  'time_snap_back',
  'snap_back_call',
  'back_call_name',
  'call_name_ask',
  'name_ask_stop',
  'ask_stop_aita',
  'stop_aita_unreason'],
 ['roughli',
  'mani',
  'sibl',
  'even',
  'step',
  'sibl',
  'parent',
  'latest',
  'stepfath',
  'kid',
  'live',
  'half',
  'sibl',
  'mom',
  'side',
  'stepsibl',
  'full',
  'sister',
  'thing',
  'never',
  'particularli',
  'good',
  'stabl',
  'rock',
  'bottom',
  'mother',
  'stepfath',
  'go',
  'go',
  'away',
  'long',
  'time',
  'everyon',
  'rush',
  'get',
  'kid',
  'home',
  'im',
  'one',
  'everyon',
  'want',
  'want',
  'id',
  'gotten',
  'opportun',
  'grandma',
  'father',
  'side',
  'offer',
  'move',
  'even',
  'pay',
  'go',
  'colleg',
  'thing',
  'live',
  'sever',
  'state',
  'away',
  'talk',
  'social',
  'servic',
  'got',
  'answer',
  'could',
  'move',
  'without',
  'problem',
  'parent',
  'abl',
  'voluntarili',
  'gave',
  'guardianship',
  'im',
  'full',
  'sister',
  'rest',
  'could',
  'take',
  'stay',
  'state',
  'would',
  'full',
  'foster',
  'care',
  'placement',
  'though',
  'im',
  'sorri',
  'forc',
  'stay',
  'would',
  'destroy',
  'futur',
  'could',
  'definit',
  'surviv',
  'would',
  'stuck',
  'horribl',
  'place',
  'work',
  'paycheck',
  'paycheck',
  'could',
  'never',
  'real',
  'life',
  'made',
  'obviou',
  'choic',
  'social',
  'worker',
  'nice',
  'enough',
  'arrang',
  'stand',
  'front',
  'pickup',
  'obvious',
  'know',
  'exactli',
  'theyr',
  'care',
  'four',
  'phone',
  'text',
  'call',
  'non-stop',
  'help',
  'scream',
  'abandon',
  'known',
  'system',
  'go',
  'realli',
  'bad',
  'theyr',
  'age',
  'cant',
  'cant',
  'blow',
  'mine',
  'fs',
  'first',
  'chanc',
  'real',
  'life',
  'feel',
  'like',
  'owe',
  'us',
  'take',
  'wrong',
  'kid',
  'mom',
  'think',
  'grandma',
  'think',
  'done',
  'someth',
  'cant',
  'say',
  'let',
  'hous',
  'even',
  'could',
  'happen',
  'person',
  'think',
  'wors',
  'say',
  'like',
  'quiet',
  'obvious',
  'know',
  'full',
  'stori',
  'roughli_mani',
  'mani_sibl',
  'sibl_even',
  'even_step',
  'step_sibl',
  'sibl_parent',
  'parent_latest',
  'latest_stepfath',
  'stepfath_kid',
  'kid_live',
  'live_half',
  'half_sibl',
  'sibl_mom',
  'mom_side',
  'side_stepsibl',
  'stepsibl_full',
  'full_sister',
  'sister_thing',
  'thing_never',
  'never_particularli',
  'particularli_good',
  'good_stabl',
  'stabl_rock',
  'rock_bottom',
  'bottom_mother',
  'mother_stepfath',
  'stepfath_go',
  'go_go',
  'go_away',
  'away_long',
  'long_time',
  'time_everyon',
  'everyon_rush',
  'rush_get',
  'get_kid',
  'kid_home',
  'home_im',
  'im_one',
  'one_everyon',
  'everyon_want',
  'want_want',
  'want_id',
  'id_gotten',
  'gotten_opportun',
  'opportun_grandma',
  'grandma_father',
  'father_side',
  'side_offer',
  'offer_move',
  'move_even',
  'even_pay',
  'pay_go',
  'go_colleg',
  'colleg_thing',
  'thing_live',
  'live_sever',
  'sever_state',
  'state_away',
  'away_talk',
  'talk_social',
  'social_servic',
  'servic_got',
  'got_answer',
  'answer_could',
  'could_move',
  'move_without',
  'without_problem',
  'problem_parent',
  'parent_abl',
  'abl_voluntarili',
  'voluntarili_gave',
  'gave_guardianship',
  'guardianship_im',
  'im_full',
  'full_sister',
  'sister_rest',
  'rest_could',
  'could_take',
  'take_stay',
  'stay_state',
  'state_would',
  'would_full',
  'full_foster',
  'foster_care',
  'care_placement',
  'placement_though',
  'though_im',
  'im_sorri',
  'sorri_forc',
  'forc_stay',
  'stay_would',
  'would_destroy',
  'destroy_futur',
  'futur_could',
  'could_definit',
  'definit_surviv',
  'surviv_would',
  'would_stuck',
  'stuck_horribl',
  'horribl_place',
  'place_work',
  'work_paycheck',
  'paycheck_paycheck',
  'paycheck_could',
  'could_never',
  'never_real',
  'real_life',
  'life_made',
  'made_obviou',
  'obviou_choic',
  'choic_social',
  'social_worker',
  'worker_nice',
  'nice_enough',
  'enough_arrang',
  'arrang_stand',
  'stand_front',
  'front_pickup',
  'pickup_obvious',
  'obvious_know',
  'know_exactli',
  'exactli_theyr',
  'theyr_care',
  'care_four',
  'four_phone',
  'phone_text',
  'text_call',
  'call_non-stop',
  'non-stop_help',
  'help_scream',
  'scream_abandon',
  'abandon_known',
  'known_system',
  'system_go',
  'go_realli',
  'realli_bad',
  'bad_theyr',
  'theyr_age',
  'age_cant',
  'cant_cant',
  'cant_blow',
  'blow_mine',
  'mine_fs',
  'fs_first',
  'first_chanc',
  'chanc_real',
  'real_life',
  'life_feel',
  'feel_like',
  'like_owe',
  'owe_us',
  'us_take',
  'take_wrong',
  'wrong_kid',
  'kid_mom',
  'mom_think',
  'think_grandma',
  'grandma_think',
  'think_done',
  'done_someth',
  'someth_cant',
  'cant_say',
  'say_let',
  'let_hous',
  'hous_even',
  'even_could',
  'could_happen',
  'happen_person',
  'person_think',
  'think_wors',
  'wors_say',
  'say_like',
  'like_quiet',
  'quiet_obvious',
  'obvious_know',
  'know_full',
  'full_stori',
  'roughli_mani_sibl',
  'mani_sibl_even',
  'sibl_even_step',
  'even_step_sibl',
  'step_sibl_parent',
  'sibl_parent_latest',
  'parent_latest_stepfath',
  'latest_stepfath_kid',
  'stepfath_kid_live',
  'kid_live_half',
  'live_half_sibl',
  'half_sibl_mom',
  'sibl_mom_side',
  'mom_side_stepsibl',
  'side_stepsibl_full',
  'stepsibl_full_sister',
  'full_sister_thing',
  'sister_thing_never',
  'thing_never_particularli',
  'never_particularli_good',
  'particularli_good_stabl',
  'good_stabl_rock',
  'stabl_rock_bottom',
  'rock_bottom_mother',
  'bottom_mother_stepfath',
  'mother_stepfath_go',
  'stepfath_go_go',
  'go_go_away',
  'go_away_long',
  'away_long_time',
  'long_time_everyon',
  'time_everyon_rush',
  'everyon_rush_get',
  'rush_get_kid',
  'get_kid_home',
  'kid_home_im',
  'home_im_one',
  'im_one_everyon',
  'one_everyon_want',
  'everyon_want_want',
  'want_want_id',
  'want_id_gotten',
  'id_gotten_opportun',
  'gotten_opportun_grandma',
  'opportun_grandma_father',
  'grandma_father_side',
  'father_side_offer',
  'side_offer_move',
  'offer_move_even',
  'move_even_pay',
  'even_pay_go',
  'pay_go_colleg',
  'go_colleg_thing',
  'colleg_thing_live',
  'thing_live_sever',
  'live_sever_state',
  'sever_state_away',
  'state_away_talk',
  'away_talk_social',
  'talk_social_servic',
  'social_servic_got',
  'servic_got_answer',
  'got_answer_could',
  'answer_could_move',
  'could_move_without',
  'move_without_problem',
  'without_problem_parent',
  'problem_parent_abl',
  'parent_abl_voluntarili',
  'abl_voluntarili_gave',
  'voluntarili_gave_guardianship',
  'gave_guardianship_im',
  'guardianship_im_full',
  'im_full_sister',
  'full_sister_rest',
  'sister_rest_could',
  'rest_could_take',
  'could_take_stay',
  'take_stay_state',
  'stay_state_would',
  'state_would_full',
  'would_full_foster',
  'full_foster_care',
  'foster_care_placement',
  'care_placement_though',
  'placement_though_im',
  'though_im_sorri',
  'im_sorri_forc',
  'sorri_forc_stay',
  'forc_stay_would',
  'stay_would_destroy',
  'would_destroy_futur',
  'destroy_futur_could',
  'futur_could_definit',
  'could_definit_surviv',
  'definit_surviv_would',
  'surviv_would_stuck',
  'would_stuck_horribl',
  'stuck_horribl_place',
  'horribl_place_work',
  'place_work_paycheck',
  'work_paycheck_paycheck',
  'paycheck_paycheck_could',
  'paycheck_could_never',
  'could_never_real',
  'never_real_life',
  'real_life_made',
  'life_made_obviou',
  'made_obviou_choic',
  'obviou_choic_social',
  'choic_social_worker',
  'social_worker_nice',
  'worker_nice_enough',
  'nice_enough_arrang',
  'enough_arrang_stand',
  'arrang_stand_front',
  'stand_front_pickup',
  'front_pickup_obvious',
  'pickup_obvious_know',
  'obvious_know_exactli',
  'know_exactli_theyr',
  'exactli_theyr_care',
  'theyr_care_four',
  'care_four_phone',
  'four_phone_text',
  'phone_text_call',
  'text_call_non-stop',
  'call_non-stop_help',
  'non-stop_help_scream',
  'help_scream_abandon',
  'scream_abandon_known',
  'abandon_known_system',
  'known_system_go',
  'system_go_realli',
  'go_realli_bad',
  'realli_bad_theyr',
  'bad_theyr_age',
  'theyr_age_cant',
  'age_cant_cant',
  'cant_cant_blow',
  'cant_blow_mine',
  'blow_mine_fs',
  'mine_fs_first',
  'fs_first_chanc',
  'first_chanc_real',
  'chanc_real_life',
  'real_life_feel',
  'life_feel_like',
  'feel_like_owe',
  'like_owe_us',
  'owe_us_take',
  'us_take_wrong',
  'take_wrong_kid',
  'wrong_kid_mom',
  'kid_mom_think',
  'mom_think_grandma',
  'think_grandma_think',
  'grandma_think_done',
  'think_done_someth',
  'done_someth_cant',
  'someth_cant_say',
  'cant_say_let',
  'say_let_hous',
  'let_hous_even',
  'hous_even_could',
  'even_could_happen',
  'could_happen_person',
  'happen_person_think',
  'person_think_wors',
  'think_wors_say',
  'wors_say_like',
  'say_like_quiet',
  'like_quiet_obvious',
  'quiet_obvious_know',
  'obvious_know_full',
  'know_full_stori'],
 ['recent',
  'turn',
  'twenti',
  'parti',
  'celebr',
  'turn',
  'small',
  'gather',
  'favourit',
  'sushi',
  'restaur',
  'immedi',
  'famili',
  'friend',
  'everyth',
  'go',
  'well',
  'came',
  'time',
  'present',
  'see',
  'famili',
  'tradit',
  'first',
  'born',
  'turn',
  'twenti',
  'given',
  'pocket',
  'watch',
  'great',
  'grandfath',
  'countri',
  'still',
  'colon',
  'british',
  'great',
  'grandfath',
  'taken',
  'missionari',
  'becam',
  'teacher',
  'teacher',
  'super',
  'instrument',
  'commun',
  'partli',
  'fund',
  'first',
  'black',
  'school',
  'becam',
  'headmast',
  'thank',
  'commun',
  'chip',
  'get',
  'pocket',
  'watch',
  'grandfath',
  'turn',
  'given',
  'watch',
  'becam',
  'tradit',
  'per',
  'tradit',
  'expect',
  'get',
  'watch',
  'even',
  'made',
  'effort',
  'hint',
  'want',
  'watch',
  'whole',
  'year',
  'prior',
  'among',
  'present',
  'saw',
  'small',
  'box',
  'got',
  'excit',
  'think',
  'watch',
  'watch',
  'came',
  'wooden',
  'case',
  'velvet',
  'line',
  'insid',
  'size',
  'box',
  'saw',
  'made',
  'deliber',
  'choic',
  'open',
  'box',
  'last',
  'make',
  'sure',
  'night',
  'end',
  'highlight',
  'came',
  'time',
  'open',
  'box',
  'watch',
  'digit',
  'one',
  'good',
  'watch',
  'honest',
  'watch',
  'dad',
  'excit',
  'went',
  'prattl',
  'featur',
  'watch',
  'could',
  'count',
  'step',
  'connect',
  'phone',
  'via',
  'bluetooth',
  'control',
  'music',
  'measur',
  'heart',
  'rate',
  'etc',
  'talk',
  'burst',
  'tear',
  'left',
  'tabl',
  'run',
  'dad',
  'follow',
  'ask',
  'sad',
  'said',
  'want',
  'watch',
  'one',
  'belong',
  'great',
  'grandfath',
  'said',
  'want',
  'give',
  'younger',
  'brother',
  'sinc',
  'boy',
  'give',
  'leav',
  'famili',
  'sinc',
  'ill',
  'get',
  'marri',
  'man',
  'join',
  'famili',
  'came',
  'blow',
  'sinc',
  'ive',
  'alway',
  'closer',
  'dad',
  'brother',
  'brother',
  'even',
  'interest',
  'watch',
  'like',
  'whole',
  'life',
  'got',
  'argument',
  'end',
  'say',
  'immatur',
  'small',
  'matter',
  'given',
  'watch',
  'even',
  'boy',
  'left',
  'said',
  'two',
  'week',
  'ago',
  'spoken',
  'sinc',
  'asshol',
  'edit',
  'inform',
  'alway',
  'first',
  'born',
  'got',
  'first',
  'born',
  'alway',
  'men',
  'sinc',
  'tradit',
  'start',
  'im',
  'first',
  'femal',
  'first',
  'born',
  'suppos',
  'storm',
  'im',
  'twenti',
  'super',
  'overwhelm',
  'feel',
  'im',
  'prone',
  'tear',
  'alway',
  'calm',
  'especi',
  'sinc',
  'public',
  'space',
  'recent_turn',
  'turn_twenti',
  'twenti_parti',
  'parti_celebr',
  'celebr_turn',
  'turn_small',
  'small_gather',
  'gather_favourit',
  'favourit_sushi',
  'sushi_restaur',
  'restaur_immedi',
  'immedi_famili',
  'famili_friend',
  'friend_everyth',
  'everyth_go',
  'go_well',
  'well_came',
  'came_time',
  'time_present',
  'present_see',
  'see_famili',
  'famili_tradit',
  'tradit_first',
  'first_born',
  'born_turn',
  'turn_twenti',
  'twenti_given',
  'given_pocket',
  'pocket_watch',
  'watch_great',
  'great_grandfath',
  'grandfath_countri',
  'countri_still',
  'still_colon',
  'colon_british',
  'british_great',
  'great_grandfath',
  'grandfath_taken',
  'taken_missionari',
  'missionari_becam',
  'becam_teacher',
  'teacher_teacher',
  'teacher_super',
  'super_instrument',
  'instrument_commun',
  'commun_partli',
  'partli_fund',
  'fund_first',
  'first_black',
  'black_school',
  'school_becam',
  'becam_headmast',
  'headmast_thank',
  'thank_commun',
  'commun_chip',
  'chip_get',
  'get_pocket',
  'pocket_watch',
  'watch_grandfath',
  'grandfath_turn',
  'turn_given',
  'given_watch',
  'watch_becam',
  'becam_tradit',
  'tradit_per',
  'per_tradit',
  'tradit_expect',
  'expect_get',
  'get_watch',
  'watch_even',
  'even_made',
  'made_effort',
  'effort_hint',
  'hint_want',
  'want_watch',
  'watch_whole',
  'whole_year',
  'year_prior',
  'prior_among',
  'among_present',
  'present_saw',
  'saw_small',
  'small_box',
  'box_got',
  'got_excit',
  'excit_think',
  'think_watch',
  'watch_watch',
  'watch_came',
  'came_wooden',
  'wooden_case',
  'case_velvet',
  'velvet_line',
  'line_insid',
  'insid_size',
  'size_box',
  'box_saw',
  'saw_made',
  'made_deliber',
  'deliber_choic',
  'choic_open',
  'open_box',
  'box_last',
  'last_make',
  'make_sure',
  'sure_night',
  'night_end',
  'end_highlight',
  'highlight_came',
  'came_time',
  'time_open',
  'open_box',
  'box_watch',
  'watch_digit',
  'digit_one',
  'one_good',
  'good_watch',
  'watch_honest',
  'honest_watch',
  'watch_dad',
  'dad_excit',
  'excit_went',
  'went_prattl',
  'prattl_featur',
  'featur_watch',
  'watch_could',
  'could_count',
  'count_step',
  'step_connect',
  'connect_phone',
  'phone_via',
  'via_bluetooth',
  'bluetooth_control',
  'control_music',
  'music_measur',
  'measur_heart',
  'heart_rate',
  'rate_etc',
  'etc_talk',
  'talk_burst',
  'burst_tear',
  'tear_left',
  'left_tabl',
  'tabl_run',
  'run_dad',
  'dad_follow',
  'follow_ask',
  'ask_sad',
  'sad_said',
  'said_want',
  'want_watch',
  'watch_one',
  'one_belong',
  'belong_great',
  'great_grandfath',
  'grandfath_said',
  'said_want',
  'want_give',
  'give_younger',
  'younger_brother',
  'brother_sinc',
  'sinc_boy',
  'boy_give',
  'give_leav',
  'leav_famili',
  'famili_sinc',
  'sinc_ill',
  'ill_get',
  'get_marri',
  'marri_man',
  'man_join',
  'join_famili',
  'famili_came',
  'came_blow',
  'blow_sinc',
  'sinc_ive',
  'ive_alway',
  'alway_closer',
  'closer_dad',
  'dad_brother',
  'brother_brother',
  'brother_even',
  'even_interest',
  'interest_watch',
  'watch_like',
  'like_whole',
  'whole_life',
  'life_got',
  'got_argument',
  'argument_end',
  'end_say',
  'say_immatur',
  'immatur_small',
  'small_matter',
  'matter_given',
  'given_watch',
  'watch_even',
  'even_boy',
  'boy_left',
  'left_said',
  'said_two',
  'two_week',
  'week_ago',
  'ago_spoken',
  'spoken_sinc',
  'sinc_asshol',
  'asshol_edit',
  'edit_inform',
  'inform_alway',
  'alway_first',
  'first_born',
  'born_got',
  'got_first',
  'first_born',
  'born_alway',
  'alway_men',
  'men_sinc',
  'sinc_tradit',
  'tradit_start',
  'start_im',
  'im_first',
  'first_femal',
  'femal_first',
  'first_born',
  'born_suppos',
  'suppos_storm',
  'storm_im',
  'im_twenti',
  'twenti_super',
  'super_overwhelm',
  'overwhelm_feel',
  'feel_im',
  'im_prone',
  'prone_tear',
  'tear_alway',
  'alway_calm',
  'calm_especi',
  'especi_sinc',
  'sinc_public',
  'public_space',
  'recent_turn_twenti',
  'turn_twenti_parti',
  'twenti_parti_celebr',
  'parti_celebr_turn',
  'celebr_turn_small',
  'turn_small_gather',
  'small_gather_favourit',
  'gather_favourit_sushi',
  'favourit_sushi_restaur',
  'sushi_restaur_immedi',
  'restaur_immedi_famili',
  'immedi_famili_friend',
  'famili_friend_everyth',
  'friend_everyth_go',
  'everyth_go_well',
  'go_well_came',
  'well_came_time',
  'came_time_present',
  'time_present_see',
  'present_see_famili',
  'see_famili_tradit',
  'famili_tradit_first',
  'tradit_first_born',
  'first_born_turn',
  'born_turn_twenti',
  'turn_twenti_given',
  'twenti_given_pocket',
  'given_pocket_watch',
  'pocket_watch_great',
  'watch_great_grandfath',
  'great_grandfath_countri',
  'grandfath_countri_still',
  'countri_still_colon',
  'still_colon_british',
  'colon_british_great',
  'british_great_grandfath',
  'great_grandfath_taken',
  'grandfath_taken_missionari',
  'taken_missionari_becam',
  'missionari_becam_teacher',
  'becam_teacher_teacher',
  'teacher_teacher_super',
  'teacher_super_instrument',
  'super_instrument_commun',
  'instrument_commun_partli',
  'commun_partli_fund',
  'partli_fund_first',
  'fund_first_black',
  'first_black_school',
  'black_school_becam',
  'school_becam_headmast',
  'becam_headmast_thank',
  'headmast_thank_commun',
  'thank_commun_chip',
  'commun_chip_get',
  'chip_get_pocket',
  'get_pocket_watch',
  'pocket_watch_grandfath',
  'watch_grandfath_turn',
  'grandfath_turn_given',
  'turn_given_watch',
  'given_watch_becam',
  'watch_becam_tradit',
  'becam_tradit_per',
  'tradit_per_tradit',
  'per_tradit_expect',
  'tradit_expect_get',
  'expect_get_watch',
  'get_watch_even',
  'watch_even_made',
  'even_made_effort',
  'made_effort_hint',
  'effort_hint_want',
  'hint_want_watch',
  'want_watch_whole',
  'watch_whole_year',
  'whole_year_prior',
  'year_prior_among',
  'prior_among_present',
  'among_present_saw',
  'present_saw_small',
  'saw_small_box',
  'small_box_got',
  'box_got_excit',
  'got_excit_think',
  'excit_think_watch',
  'think_watch_watch',
  'watch_watch_came',
  'watch_came_wooden',
  'came_wooden_case',
  'wooden_case_velvet',
  'case_velvet_line',
  'velvet_line_insid',
  'line_insid_size',
  'insid_size_box',
  'size_box_saw',
  'box_saw_made',
  'saw_made_deliber',
  'made_deliber_choic',
  'deliber_choic_open',
  'choic_open_box',
  'open_box_last',
  'box_last_make',
  'last_make_sure',
  'make_sure_night',
  'sure_night_end',
  'night_end_highlight',
  'end_highlight_came',
  'highlight_came_time',
  'came_time_open',
  'time_open_box',
  'open_box_watch',
  'box_watch_digit',
  'watch_digit_one',
  'digit_one_good',
  'one_good_watch',
  'good_watch_honest',
  'watch_honest_watch',
  'honest_watch_dad',
  'watch_dad_excit',
  'dad_excit_went',
  'excit_went_prattl',
  'went_prattl_featur',
  'prattl_featur_watch',
  'featur_watch_could',
  'watch_could_count',
  'could_count_step',
  'count_step_connect',
  'step_connect_phone',
  'connect_phone_via',
  'phone_via_bluetooth',
  'via_bluetooth_control',
  'bluetooth_control_music',
  'control_music_measur',
  'music_measur_heart',
  'measur_heart_rate',
  'heart_rate_etc',
  'rate_etc_talk',
  'etc_talk_burst',
  'talk_burst_tear',
  'burst_tear_left',
  'tear_left_tabl',
  'left_tabl_run',
  'tabl_run_dad',
  'run_dad_follow',
  'dad_follow_ask',
  'follow_ask_sad',
  'ask_sad_said',
  'sad_said_want',
  'said_want_watch',
  'want_watch_one',
  'watch_one_belong',
  'one_belong_great',
  'belong_great_grandfath',
  'great_grandfath_said',
  'grandfath_said_want',
  'said_want_give',
  'want_give_younger',
  'give_younger_brother',
  'younger_brother_sinc',
  'brother_sinc_boy',
  'sinc_boy_give',
  'boy_give_leav',
  'give_leav_famili',
  'leav_famili_sinc',
  'famili_sinc_ill',
  'sinc_ill_get',
  'ill_get_marri',
  'get_marri_man',
  'marri_man_join',
  'man_join_famili',
  'join_famili_came',
  'famili_came_blow',
  'came_blow_sinc',
  'blow_sinc_ive',
  'sinc_ive_alway',
  'ive_alway_closer',
  'alway_closer_dad',
  'closer_dad_brother',
  'dad_brother_brother',
  'brother_brother_even',
  'brother_even_interest',
  'even_interest_watch',
  'interest_watch_like',
  'watch_like_whole',
  'like_whole_life',
  'whole_life_got',
  'life_got_argument',
  'got_argument_end',
  'argument_end_say',
  'end_say_immatur',
  'say_immatur_small',
  'immatur_small_matter',
  'small_matter_given',
  'matter_given_watch',
  'given_watch_even',
  'watch_even_boy',
  'even_boy_left',
  'boy_left_said',
  'left_said_two',
  'said_two_week',
  'two_week_ago',
  'week_ago_spoken',
  'ago_spoken_sinc',
  'spoken_sinc_asshol',
  'sinc_asshol_edit',
  'asshol_edit_inform',
  'edit_inform_alway',
  'inform_alway_first',
  'alway_first_born',
  'first_born_got',
  'born_got_first',
  'got_first_born',
  'first_born_alway',
  'born_alway_men',
  'alway_men_sinc',
  'men_sinc_tradit',
  'sinc_tradit_start',
  'tradit_start_im',
  'start_im_first',
  'im_first_femal',
  'first_femal_first',
  'femal_first_born',
  'first_born_suppos',
  'born_suppos_storm',
  'suppos_storm_im',
  'storm_im_twenti',
  'im_twenti_super',
  'twenti_super_overwhelm',
  'super_overwhelm_feel',
  'overwhelm_feel_im',
  'feel_im_prone',
  'im_prone_tear',
  'prone_tear_alway',
  'tear_alway_calm',
  'alway_calm_especi',
  'calm_especi_sinc',
  'especi_sinc_public',
  'sinc_public_space'],
 ['long',
  'titl',
  'sorri',
  'stepdad',
  'complet',
  'idiot',
  'today',
  'super',
  'hot',
  'temperatur',
  'wise',
  'took',
  'shirt',
  'mom',
  'husbandmi',
  'stepdad',
  'matt',
  'start',
  'yell',
  'inappropri',
  'shirt',
  'front',
  'littl',
  'sister',
  'call',
  'pervert',
  'creep',
  'said',
  'screw',
  'shirt',
  'time',
  'move',
  'last',
  'year',
  'told',
  'long',
  'live',
  'hous',
  'follow',
  'rule',
  'thing',
  'mom',
  'told',
  'sever',
  'time',
  'name',
  'leas',
  'pay',
  'bill',
  'told',
  'actual',
  'hous',
  'mom',
  'hous',
  'ill',
  'follow',
  'rule',
  'rule',
  'say',
  'cant',
  'shirtless',
  'either',
  'start',
  'pay',
  'rent',
  'shut',
  'mouth',
  'stop',
  'tri',
  'dictat',
  'bodi',
  'blew',
  'say',
  'disrespect',
  'cant',
  'treat',
  'father',
  'way',
  'told',
  'father',
  'dead',
  'ill',
  'show',
  'amount',
  'respect',
  'show',
  'went',
  'room',
  'im',
  'think',
  'mayb',
  'said',
  'im',
  'sure',
  'feel',
  'aita',
  'long_titl',
  'titl_sorri',
  'sorri_stepdad',
  'stepdad_complet',
  'complet_idiot',
  'idiot_today',
  'today_super',
  'super_hot',
  'hot_temperatur',
  'temperatur_wise',
  'wise_took',
  'took_shirt',
  'shirt_mom',
  'mom_husbandmi',
  'husbandmi_stepdad',
  'stepdad_matt',
  'matt_start',
  'start_yell',
  'yell_inappropri',
  'inappropri_shirt',
  'shirt_front',
  'front_littl',
  'littl_sister',
  'sister_call',
  'call_pervert',
  'pervert_creep',
  'creep_said',
  'said_screw',
  'screw_shirt',
  'shirt_time',
  'time_move',
  'move_last',
  'last_year',
  'year_told',
  'told_long',
  'long_live',
  'live_hous',
  'hous_follow',
  'follow_rule',
  'rule_thing',
  'thing_mom',
  'mom_told',
  'told_sever',
  'sever_time',
  'time_name',
  'name_leas',
  'leas_pay',
  'pay_bill',
  'bill_told',
  'told_actual',
  'actual_hous',
  'hous_mom',
  'mom_hous',
  'hous_ill',
  'ill_follow',
  'follow_rule',
  'rule_rule',
  'rule_say',
  'say_cant',
  'cant_shirtless',
  'shirtless_either',
  'either_start',
  'start_pay',
  'pay_rent',
  'rent_shut',
  'shut_mouth',
  'mouth_stop',
  'stop_tri',
  'tri_dictat',
  'dictat_bodi',
  'bodi_blew',
  'blew_say',
  'say_disrespect',
  'disrespect_cant',
  'cant_treat',
  'treat_father',
  'father_way',
  'way_told',
  'told_father',
  'father_dead',
  'dead_ill',
  'ill_show',
  'show_amount',
  'amount_respect',
  'respect_show',
  'show_went',
  'went_room',
  'room_im',
  'im_think',
  'think_mayb',
  'mayb_said',
  'said_im',
  'im_sure',
  'sure_feel',
  'feel_aita',
  'long_titl_sorri',
  'titl_sorri_stepdad',
  'sorri_stepdad_complet',
  'stepdad_complet_idiot',
  'complet_idiot_today',
  'idiot_today_super',
  'today_super_hot',
  'super_hot_temperatur',
  'hot_temperatur_wise',
  'temperatur_wise_took',
  'wise_took_shirt',
  'took_shirt_mom',
  'shirt_mom_husbandmi',
  'mom_husbandmi_stepdad',
  'husbandmi_stepdad_matt',
  'stepdad_matt_start',
  'matt_start_yell',
  'start_yell_inappropri',
  'yell_inappropri_shirt',
  'inappropri_shirt_front',
  'shirt_front_littl',
  'front_littl_sister',
  'littl_sister_call',
  'sister_call_pervert',
  'call_pervert_creep',
  'pervert_creep_said',
  'creep_said_screw',
  'said_screw_shirt',
  'screw_shirt_time',
  'shirt_time_move',
  'time_move_last',
  'move_last_year',
  'last_year_told',
  'year_told_long',
  'told_long_live',
  'long_live_hous',
  'live_hous_follow',
  'hous_follow_rule',
  'follow_rule_thing',
  'rule_thing_mom',
  'thing_mom_told',
  'mom_told_sever',
  'told_sever_time',
  'sever_time_name',
  'time_name_leas',
  'name_leas_pay',
  'leas_pay_bill',
  'pay_bill_told',
  'bill_told_actual',
  'told_actual_hous',
  'actual_hous_mom',
  'hous_mom_hous',
  'mom_hous_ill',
  'hous_ill_follow',
  'ill_follow_rule',
  'follow_rule_rule',
  'rule_rule_say',
  'rule_say_cant',
  'say_cant_shirtless',
  'cant_shirtless_either',
  'shirtless_either_start',
  'either_start_pay',
  'start_pay_rent',
  'pay_rent_shut',
  'rent_shut_mouth',
  'shut_mouth_stop',
  'mouth_stop_tri',
  'stop_tri_dictat',
  'tri_dictat_bodi',
  'dictat_bodi_blew',
  'bodi_blew_say',
  'blew_say_disrespect',
  'say_disrespect_cant',
  'disrespect_cant_treat',
  'cant_treat_father',
  'treat_father_way',
  'father_way_told',
  'way_told_father',
  'told_father_dead',
  'father_dead_ill',
  'dead_ill_show',
  'ill_show_amount',
  'show_amount_respect',
  'amount_respect_show',
  'respect_show_went',
  'show_went_room',
  'went_room_im',
  'room_im_think',
  'im_think_mayb',
  'think_mayb_said',
  'mayb_said_im',
  'said_im_sure',
  'im_sure_feel',
  'sure_feel_aita'],
 ['daughter',
  'sever',
  'end',
  'celiac',
  'cross-contamin',
  'would',
  'set',
  'back',
  'week',
  'taken',
  'us',
  'year',
  'get',
  'properli',
  'diagnos',
  'treat',
  'year',
  'old',
  'underweight',
  'sever',
  'anxieti',
  'food',
  'eat',
  'feel',
  'unsaf',
  'hard',
  'blame',
  'hous',
  'kitchen',
  'kitchenett',
  'basement',
  'complet',
  'full',
  'set',
  'pan',
  'utensil',
  'main',
  'rule',
  'hous',
  'absolut',
  'dairi',
  'gluten',
  'seafood',
  'kept',
  'cook',
  'kitchen',
  'older',
  'son',
  'allerg',
  'seafood',
  'wife',
  'lactos',
  'intoler',
  'kitchenett',
  'item',
  'contain',
  'ingredi',
  'sister',
  'kid',
  'move',
  'us',
  'person',
  'reason',
  'live',
  'basement',
  'bedroom',
  'move',
  'clearli',
  'explain',
  'rule',
  'took',
  'less',
  'week',
  'us',
  'find',
  'box',
  'pasta',
  'kitchen',
  'explain',
  'rule',
  'move',
  'apologet',
  'month',
  'later',
  'daughter',
  'come',
  'us',
  'panic',
  'sister',
  'make',
  'fri',
  'chicken',
  'kitchen',
  'sister',
  'apologet',
  'insist',
  'need',
  'kitchenett',
  'small',
  'felt',
  'harsh',
  'move',
  'food',
  'basement',
  'threw',
  'everi',
  'singl',
  'pan',
  'utensil',
  'may',
  'use',
  'deep',
  'clean',
  'kitchen',
  'incid',
  'make',
  'kitchen',
  'longer',
  '%',
  'guarante',
  'safe',
  'made',
  'regress',
  'therapi',
  'work',
  'unfortun',
  'right',
  'bad',
  'feed',
  'exclus',
  'takeout',
  'one',
  'gluten-fre',
  'restaur',
  'around',
  'unless',
  'want',
  'inpati',
  'care',
  'take',
  'us',
  'last',
  'sunday',
  'get',
  'home',
  'daughter',
  'worst',
  'panic',
  'attack',
  'ever',
  'seen',
  'mom',
  'sister',
  'kitchen',
  'make',
  'entir',
  'sunday',
  'dinner',
  'spaghetti',
  'mozzarella',
  'stick',
  'garlic',
  'bread',
  'work',
  'lost',
  'end',
  'absolut',
  'scream',
  'ruin',
  'life',
  'threaten',
  'daughter',
  'life',
  'last',
  'time',
  'threw',
  'food',
  'yard',
  'told',
  'sister',
  'realli',
  'care',
  'littl',
  'niec',
  'life',
  'could',
  'get',
  'fuck',
  'hous',
  'mom',
  'mad',
  'kick',
  'sister',
  'kid',
  'theyr',
  'vulner',
  'food',
  'allergi',
  'care',
  'even',
  'leav',
  'kid',
  'absolut',
  'need',
  'im',
  'done',
  'one',
  'rule',
  'one',
  'wife',
  'agre',
  'think',
  'give',
  'one',
  'last',
  'chanc',
  'allow',
  'sister',
  'bring',
  'food',
  'hous',
  'mom',
  'cant',
  'take',
  'cant',
  'afford',
  'rent',
  'anywher',
  'would',
  'homeless',
  'let',
  'stay',
  'im',
  'sure',
  'im',
  'wrong',
  'edit',
  'possibl',
  'inpati',
  'care',
  'come',
  'fulli',
  'investig',
  'medic',
  'team',
  'went',
  'inpati',
  'care',
  'would',
  'eat',
  'takeout',
  'restaur',
  'well',
  'would',
  'also',
  'abl',
  'safe',
  'cook',
  'facil',
  'true',
  'differ',
  'would',
  'monitor',
  'home',
  'daughter_sever',
  'sever_end',
  'end_celiac',
  'celiac_cross-contamin',
  'cross-contamin_would',
  'would_set',
  'set_back',
  'back_week',
  'week_taken',
  'taken_us',
  'us_year',
  'year_get',
  'get_properli',
  'properli_diagnos',
  'diagnos_treat',
  'treat_year',
  'year_old',
  'old_underweight',
  'underweight_sever',
  'sever_anxieti',
  'anxieti_food',
  'food_eat',
  'eat_feel',
  'feel_unsaf',
  'unsaf_hard',
  'hard_blame',
  'blame_hous',
  'hous_kitchen',
  'kitchen_kitchenett',
  'kitchenett_basement',
  'basement_complet',
  'complet_full',
  'full_set',
  'set_pan',
  'pan_utensil',
  'utensil_main',
  'main_rule',
  'rule_hous',
  'hous_absolut',
  'absolut_dairi',
  'dairi_gluten',
  'gluten_seafood',
  'seafood_kept',
  'kept_cook',
  'cook_kitchen',
  'kitchen_older',
  'older_son',
  'son_allerg',
  'allerg_seafood',
  'seafood_wife',
  'wife_lactos',
  'lactos_intoler',
  'intoler_kitchenett',
  'kitchenett_item',
  'item_contain',
  'contain_ingredi',
  'ingredi_sister',
  'sister_kid',
  'kid_move',
  'move_us',
  'us_person',
  'person_reason',
  'reason_live',
  'live_basement',
  'basement_bedroom',
  'bedroom_move',
  'move_clearli',
  'clearli_explain',
  'explain_rule',
  'rule_took',
  'took_less',
  'less_week',
  'week_us',
  'us_find',
  'find_box',
  'box_pasta',
  'pasta_kitchen',
  'kitchen_explain',
  'explain_rule',
  'rule_move',
  'move_apologet',
  'apologet_month',
  'month_later',
  'later_daughter',
  'daughter_come',
  'come_us',
  'us_panic',
  'panic_sister',
  'sister_make',
  'make_fri',
  'fri_chicken',
  'chicken_kitchen',
  'kitchen_sister',
  'sister_apologet',
  'apologet_insist',
  'insist_need',
  'need_kitchenett',
  'kitchenett_small',
  'small_felt',
  'felt_harsh',
  'harsh_move',
  'move_food',
  'food_basement',
  'basement_threw',
  'threw_everi',
  'everi_singl',
  'singl_pan',
  'pan_utensil',
  'utensil_may',
  'may_use',
  'use_deep',
  'deep_clean',
  'clean_kitchen',
  'kitchen_incid',
  'incid_make',
  'make_kitchen',
  'kitchen_longer',
  'longer_%',
  '%_guarante',
  'guarante_safe',
  'safe_made',
  'made_regress',
  'regress_therapi',
  'therapi_work',
  'work_unfortun',
  'unfortun_right',
  'right_bad',
  'bad_feed',
  'feed_exclus',
  'exclus_takeout',
  'takeout_one',
  'one_gluten-fre',
  'gluten-fre_restaur',
  'restaur_around',
  'around_unless',
  'unless_want',
  'want_inpati',
  'inpati_care',
  'care_take',
  'take_us',
  'us_last',
  'last_sunday',
  'sunday_get',
  'get_home',
  'home_daughter',
  'daughter_worst',
  'worst_panic',
  'panic_attack',
  'attack_ever',
  'ever_seen',
  'seen_mom',
  'mom_sister',
  'sister_kitchen',
  'kitchen_make',
  'make_entir',
  'entir_sunday',
  'sunday_dinner',
  'dinner_spaghetti',
  'spaghetti_mozzarella',
  'mozzarella_stick',
  'stick_garlic',
  'garlic_bread',
  'bread_work',
  'work_lost',
  'lost_end',
  'end_absolut',
  'absolut_scream',
  'scream_ruin',
  'ruin_life',
  'life_threaten',
  'threaten_daughter',
  'daughter_life',
  'life_last',
  'last_time',
  'time_threw',
  'threw_food',
  'food_yard',
  'yard_told',
  'told_sister',
  'sister_realli',
  'realli_care',
  'care_littl',
  'littl_niec',
  'niec_life',
  'life_could',
  'could_get',
  'get_fuck',
  'fuck_hous',
  'hous_mom',
  'mom_mad',
  'mad_kick',
  'kick_sister',
  'sister_kid',
  'kid_theyr',
  'theyr_vulner',
  'vulner_food',
  'food_allergi',
  'allergi_care',
  'care_even',
  'even_leav',
  'leav_kid',
  'kid_absolut',
  'absolut_need',
  'need_im',
  'im_done',
  'done_one',
  'one_rule',
  'rule_one',
  'one_wife',
  'wife_agre',
  'agre_think',
  'think_give',
  'give_one',
  'one_last',
  'last_chanc',
  'chanc_allow',
  'allow_sister',
  'sister_bring',
  'bring_food',
  'food_hous',
  'hous_mom',
  'mom_cant',
  'cant_take',
  'take_cant',
  'cant_afford',
  'afford_rent',
  'rent_anywher',
  'anywher_would',
  'would_homeless',
  'homeless_let',
  'let_stay',
  'stay_im',
  'im_sure',
  'sure_im',
  'im_wrong',
  'wrong_edit',
  'edit_possibl',
  'possibl_inpati',
  'inpati_care',
  'care_come',
  'come_fulli',
  'fulli_investig',
  'investig_medic',
  'medic_team',
  'team_went',
  'went_inpati',
  'inpati_care',
  'care_would',
  'would_eat',
  'eat_takeout',
  'takeout_restaur',
  'restaur_well',
  'well_would',
  'would_also',
  'also_abl',
  'abl_safe',
  'safe_cook',
  'cook_facil',
  'facil_true',
  'true_differ',
  'differ_would',
  'would_monitor',
  'monitor_home',
  'daughter_sever_end',
  'sever_end_celiac',
  'end_celiac_cross-contamin',
  'celiac_cross-contamin_would',
  'cross-contamin_would_set',
  'would_set_back',
  'set_back_week',
  'back_week_taken',
  'week_taken_us',
  'taken_us_year',
  'us_year_get',
  'year_get_properli',
  'get_properli_diagnos',
  'properli_diagnos_treat',
  'diagnos_treat_year',
  'treat_year_old',
  'year_old_underweight',
  'old_underweight_sever',
  'underweight_sever_anxieti',
  'sever_anxieti_food',
  'anxieti_food_eat',
  'food_eat_feel',
  'eat_feel_unsaf',
  'feel_unsaf_hard',
  'unsaf_hard_blame',
  'hard_blame_hous',
  'blame_hous_kitchen',
  'hous_kitchen_kitchenett',
  'kitchen_kitchenett_basement',
  'kitchenett_basement_complet',
  'basement_complet_full',
  'complet_full_set',
  'full_set_pan',
  'set_pan_utensil',
  'pan_utensil_main',
  'utensil_main_rule',
  'main_rule_hous',
  'rule_hous_absolut',
  'hous_absolut_dairi',
  'absolut_dairi_gluten',
  'dairi_gluten_seafood',
  'gluten_seafood_kept',
  'seafood_kept_cook',
  'kept_cook_kitchen',
  'cook_kitchen_older',
  'kitchen_older_son',
  'older_son_allerg',
  'son_allerg_seafood',
  'allerg_seafood_wife',
  'seafood_wife_lactos',
  'wife_lactos_intoler',
  'lactos_intoler_kitchenett',
  'intoler_kitchenett_item',
  'kitchenett_item_contain',
  'item_contain_ingredi',
  'contain_ingredi_sister',
  'ingredi_sister_kid',
  'sister_kid_move',
  'kid_move_us',
  'move_us_person',
  'us_person_reason',
  'person_reason_live',
  'reason_live_basement',
  'live_basement_bedroom',
  'basement_bedroom_move',
  'bedroom_move_clearli',
  'move_clearli_explain',
  'clearli_explain_rule',
  'explain_rule_took',
  'rule_took_less',
  'took_less_week',
  'less_week_us',
  'week_us_find',
  'us_find_box',
  'find_box_pasta',
  'box_pasta_kitchen',
  'pasta_kitchen_explain',
  'kitchen_explain_rule',
  'explain_rule_move',
  'rule_move_apologet',
  'move_apologet_month',
  'apologet_month_later',
  'month_later_daughter',
  'later_daughter_come',
  'daughter_come_us',
  'come_us_panic',
  'us_panic_sister',
  'panic_sister_make',
  'sister_make_fri',
  'make_fri_chicken',
  'fri_chicken_kitchen',
  'chicken_kitchen_sister',
  'kitchen_sister_apologet',
  'sister_apologet_insist',
  'apologet_insist_need',
  'insist_need_kitchenett',
  'need_kitchenett_small',
  'kitchenett_small_felt',
  'small_felt_harsh',
  'felt_harsh_move',
  'harsh_move_food',
  'move_food_basement',
  'food_basement_threw',
  'basement_threw_everi',
  'threw_everi_singl',
  'everi_singl_pan',
  'singl_pan_utensil',
  'pan_utensil_may',
  'utensil_may_use',
  'may_use_deep',
  'use_deep_clean',
  'deep_clean_kitchen',
  'clean_kitchen_incid',
  'kitchen_incid_make',
  'incid_make_kitchen',
  'make_kitchen_longer',
  'kitchen_longer_%',
  'longer_%_guarante',
  '%_guarante_safe',
  'guarante_safe_made',
  'safe_made_regress',
  'made_regress_therapi',
  'regress_therapi_work',
  'therapi_work_unfortun',
  'work_unfortun_right',
  'unfortun_right_bad',
  'right_bad_feed',
  'bad_feed_exclus',
  'feed_exclus_takeout',
  'exclus_takeout_one',
  'takeout_one_gluten-fre',
  'one_gluten-fre_restaur',
  'gluten-fre_restaur_around',
  'restaur_around_unless',
  'around_unless_want',
  'unless_want_inpati',
  'want_inpati_care',
  'inpati_care_take',
  'care_take_us',
  'take_us_last',
  'us_last_sunday',
  'last_sunday_get',
  'sunday_get_home',
  'get_home_daughter',
  'home_daughter_worst',
  'daughter_worst_panic',
  'worst_panic_attack',
  'panic_attack_ever',
  'attack_ever_seen',
  'ever_seen_mom',
  'seen_mom_sister',
  'mom_sister_kitchen',
  'sister_kitchen_make',
  'kitchen_make_entir',
  'make_entir_sunday',
  'entir_sunday_dinner',
  'sunday_dinner_spaghetti',
  'dinner_spaghetti_mozzarella',
  'spaghetti_mozzarella_stick',
  'mozzarella_stick_garlic',
  'stick_garlic_bread',
  'garlic_bread_work',
  'bread_work_lost',
  'work_lost_end',
  'lost_end_absolut',
  'end_absolut_scream',
  'absolut_scream_ruin',
  'scream_ruin_life',
  'ruin_life_threaten',
  'life_threaten_daughter',
  'threaten_daughter_life',
  'daughter_life_last',
  'life_last_time',
  'last_time_threw',
  'time_threw_food',
  'threw_food_yard',
  'food_yard_told',
  'yard_told_sister',
  'told_sister_realli',
  'sister_realli_care',
  'realli_care_littl',
  'care_littl_niec',
  'littl_niec_life',
  'niec_life_could',
  'life_could_get',
  'could_get_fuck',
  'get_fuck_hous',
  'fuck_hous_mom',
  'hous_mom_mad',
  'mom_mad_kick',
  'mad_kick_sister',
  'kick_sister_kid',
  'sister_kid_theyr',
  'kid_theyr_vulner',
  'theyr_vulner_food',
  'vulner_food_allergi',
  'food_allergi_care',
  'allergi_care_even',
  'care_even_leav',
  'even_leav_kid',
  'leav_kid_absolut',
  'kid_absolut_need',
  'absolut_need_im',
  'need_im_done',
  'im_done_one',
  'done_one_rule',
  'one_rule_one',
  'rule_one_wife',
  'one_wife_agre',
  'wife_agre_think',
  'agre_think_give',
  'think_give_one',
  'give_one_last',
  'one_last_chanc',
  'last_chanc_allow',
  'chanc_allow_sister',
  'allow_sister_bring',
  'sister_bring_food',
  'bring_food_hous',
  'food_hous_mom',
  'hous_mom_cant',
  'mom_cant_take',
  'cant_take_cant',
  'take_cant_afford',
  'cant_afford_rent',
  'afford_rent_anywher',
  'rent_anywher_would',
  'anywher_would_homeless',
  'would_homeless_let',
  'homeless_let_stay',
  'let_stay_im',
  'stay_im_sure',
  'im_sure_im',
  'sure_im_wrong',
  'im_wrong_edit',
  'wrong_edit_possibl',
  'edit_possibl_inpati',
  'possibl_inpati_care',
  'inpati_care_come',
  'care_come_fulli',
  'come_fulli_investig',
  'fulli_investig_medic',
  'investig_medic_team',
  'medic_team_went',
  'team_went_inpati',
  'went_inpati_care',
  'inpati_care_would',
  'care_would_eat',
  'would_eat_takeout',
  'eat_takeout_restaur',
  'takeout_restaur_well',
  'restaur_well_would',
  'well_would_also',
  'would_also_abl',
  'also_abl_safe',
  'abl_safe_cook',
  'safe_cook_facil',
  'cook_facil_true',
  'facil_true_differ',
  'true_differ_would',
  'differ_would_monitor',
  'would_monitor_home'],
 ['im',
  'alway',
  'anim',
  'lover',
  'love',
  'snake',
  'tarantula',
  'scorpion',
  'lizard',
  'gecko',
  'dog',
  'cat',
  'move',
  'parent',
  'hous',
  'townhom',
  'decid',
  'adopt',
  'ball',
  'python',
  'docil',
  'love',
  'held',
  'set',
  'tank',
  'one',
  'room',
  'downstair',
  'fiancef',
  'decid',
  'readi',
  'move',
  'togeth',
  'slowli',
  'introduc',
  'snake',
  'thought',
  'snake',
  'realli',
  'cool',
  'even',
  'held',
  'time',
  'month',
  'ago',
  'friend',
  'came',
  'ever',
  'sinc',
  'ask',
  'find',
  'new',
  'home',
  'snake',
  'travel',
  'anoth',
  'state',
  'work',
  'trust',
  'take',
  'care',
  'snake',
  'gone',
  'week',
  'came',
  'back',
  'saw',
  'tank',
  'complet',
  'gone',
  'search',
  'hous',
  'nowher',
  'found',
  'went',
  'outsid',
  'check',
  'wood',
  'area',
  'behind',
  'townhom',
  'found',
  'tank',
  'tank',
  'open',
  'sign',
  'snake',
  'fianc',
  'got',
  'home',
  'show',
  'tank',
  'told',
  'pack',
  'suitcas',
  'find',
  'anoth',
  'place',
  'stay',
  'defens',
  'give',
  'snake',
  'much',
  'attent',
  'fianc',
  'current',
  'stay',
  'parent',
  'think',
  'overreact',
  'anim',
  'fianc',
  'upset',
  'talk',
  'accept',
  'apolog',
  '&',
  'xb',
  'aita',
  'kick',
  'fianc',
  'hous',
  'let',
  'snake',
  'loos',
  'outsid',
  'im_alway',
  'alway_anim',
  'anim_lover',
  'lover_love',
  'love_snake',
  'snake_tarantula',
  'tarantula_scorpion',
  'scorpion_lizard',
  'lizard_gecko',
  'gecko_dog',
  'dog_cat',
  'cat_move',
  'move_parent',
  'parent_hous',
  'hous_townhom',
  'townhom_decid',
  'decid_adopt',
  'adopt_ball',
  'ball_python',
  'python_docil',
  'docil_love',
  'love_held',
  'held_set',
  'set_tank',
  'tank_one',
  'one_room',
  'room_downstair',
  'downstair_fiancef',
  'fiancef_decid',
  'decid_readi',
  'readi_move',
  'move_togeth',
  'togeth_slowli',
  'slowli_introduc',
  'introduc_snake',
  'snake_thought',
  'thought_snake',
  'snake_realli',
  'realli_cool',
  'cool_even',
  'even_held',
  'held_time',
  'time_month',
  'month_ago',
  'ago_friend',
  'friend_came',
  'came_ever',
  'ever_sinc',
  'sinc_ask',
  'ask_find',
  'find_new',
  'new_home',
  'home_snake',
  'snake_travel',
  'travel_anoth',
  'anoth_state',
  'state_work',
  'work_trust',
  'trust_take',
  'take_care',
  'care_snake',
  'snake_gone',
  'gone_week',
  'week_came',
  'came_back',
  'back_saw',
  'saw_tank',
  'tank_complet',
  'complet_gone',
  'gone_search',
  'search_hous',
  'hous_nowher',
  'nowher_found',
  'found_went',
  'went_outsid',
  'outsid_check',
  'check_wood',
  'wood_area',
  'area_behind',
  'behind_townhom',
  'townhom_found',
  'found_tank',
  'tank_tank',
  'tank_open',
  'open_sign',
  'sign_snake',
  'snake_fianc',
  'fianc_got',
  'got_home',
  'home_show',
  'show_tank',
  'tank_told',
  'told_pack',
  'pack_suitcas',
  'suitcas_find',
  'find_anoth',
  'anoth_place',
  'place_stay',
  'stay_defens',
  'defens_give',
  'give_snake',
  'snake_much',
  'much_attent',
  'attent_fianc',
  'fianc_current',
  'current_stay',
  'stay_parent',
  'parent_think',
  'think_overreact',
  'overreact_anim',
  'anim_fianc',
  'fianc_upset',
  'upset_talk',
  'talk_accept',
  'accept_apolog',
  'apolog_&',
  '&_xb',
  'xb_aita',
  'aita_kick',
  'kick_fianc',
  'fianc_hous',
  'hous_let',
  'let_snake',
  'snake_loos',
  'loos_outsid',
  'im_alway_anim',
  'alway_anim_lover',
  'anim_lover_love',
  'lover_love_snake',
  'love_snake_tarantula',
  'snake_tarantula_scorpion',
  'tarantula_scorpion_lizard',
  'scorpion_lizard_gecko',
  'lizard_gecko_dog',
  'gecko_dog_cat',
  'dog_cat_move',
  'cat_move_parent',
  'move_parent_hous',
  'parent_hous_townhom',
  'hous_townhom_decid',
  'townhom_decid_adopt',
  'decid_adopt_ball',
  'adopt_ball_python',
  'ball_python_docil',
  'python_docil_love',
  'docil_love_held',
  'love_held_set',
  'held_set_tank',
  'set_tank_one',
  'tank_one_room',
  'one_room_downstair',
  'room_downstair_fiancef',
  'downstair_fiancef_decid',
  'fiancef_decid_readi',
  'decid_readi_move',
  'readi_move_togeth',
  'move_togeth_slowli',
  'togeth_slowli_introduc',
  'slowli_introduc_snake',
  'introduc_snake_thought',
  'snake_thought_snake',
  'thought_snake_realli',
  'snake_realli_cool',
  'realli_cool_even',
  'cool_even_held',
  'even_held_time',
  'held_time_month',
  'time_month_ago',
  'month_ago_friend',
  'ago_friend_came',
  'friend_came_ever',
  'came_ever_sinc',
  'ever_sinc_ask',
  'sinc_ask_find',
  'ask_find_new',
  'find_new_home',
  'new_home_snake',
  'home_snake_travel',
  'snake_travel_anoth',
  'travel_anoth_state',
  'anoth_state_work',
  'state_work_trust',
  'work_trust_take',
  'trust_take_care',
  'take_care_snake',
  'care_snake_gone',
  'snake_gone_week',
  'gone_week_came',
  'week_came_back',
  'came_back_saw',
  'back_saw_tank',
  'saw_tank_complet',
  'tank_complet_gone',
  'complet_gone_search',
  'gone_search_hous',
  'search_hous_nowher',
  'hous_nowher_found',
  'nowher_found_went',
  'found_went_outsid',
  'went_outsid_check',
  'outsid_check_wood',
  'check_wood_area',
  'wood_area_behind',
  'area_behind_townhom',
  'behind_townhom_found',
  'townhom_found_tank',
  'found_tank_tank',
  'tank_tank_open',
  'tank_open_sign',
  'open_sign_snake',
  'sign_snake_fianc',
  'snake_fianc_got',
  'fianc_got_home',
  'got_home_show',
  'home_show_tank',
  'show_tank_told',
  'tank_told_pack',
  'told_pack_suitcas',
  'pack_suitcas_find',
  'suitcas_find_anoth',
  'find_anoth_place',
  'anoth_place_stay',
  'place_stay_defens',
  'stay_defens_give',
  'defens_give_snake',
  'give_snake_much',
  'snake_much_attent',
  'much_attent_fianc',
  'attent_fianc_current',
  'fianc_current_stay',
  'current_stay_parent',
  'stay_parent_think',
  'parent_think_overreact',
  'think_overreact_anim',
  'overreact_anim_fianc',
  'anim_fianc_upset',
  'fianc_upset_talk',
  'upset_talk_accept',
  'talk_accept_apolog',
  'accept_apolog_&',
  'apolog_&_xb',
  '&_xb_aita',
  'xb_aita_kick',
  'aita_kick_fianc',
  'kick_fianc_hous',
  'fianc_hous_let',
  'hous_let_snake',
  'let_snake_loos',
  'snake_loos_outsid'],
 ['background',
  'im',
  'recov',
  'eat',
  'disord',
  'part',
  'recoveri',
  'mean',
  'im',
  'hungri',
  'need',
  'eat',
  'need',
  'get',
  'use',
  'respond',
  'hunger',
  'eat',
  'eat',
  'im',
  'hungri',
  'becom',
  'habit',
  'could',
  'relaps',
  'know',
  'hard',
  'lot',
  'peopl',
  'understand',
  'best',
  'way',
  'explain',
  'alway',
  'carri',
  'snack',
  'accommod',
  'boyfriend',
  'ask',
  'go',
  'famili',
  'event',
  'aunt',
  'hous',
  'dinner',
  'gather',
  'start',
  'four',
  'time',
  'around',
  'start',
  'feel',
  'hungri',
  'ate',
  'small',
  'granola',
  'bar',
  'purs',
  'reinforc',
  'eat',
  'hungri',
  'rule',
  'dinner',
  'excel',
  'left',
  'boyfriend',
  'upset',
  'said',
  'offend',
  'famili',
  'eat',
  'snack',
  'dinner',
  'serv',
  'impli',
  'bad',
  'host',
  'said',
  'wait',
  'remind',
  'eat',
  'im',
  'hungri',
  'said',
  'dinner',
  'hour',
  'suffici',
  'enforc',
  'rule',
  'work',
  'way',
  'eat',
  'soon',
  'realiz',
  'im',
  'hungri',
  'slipperi',
  'slope',
  'could',
  'lead',
  'go',
  'day',
  'without',
  'food',
  'boyfriend',
  'angri',
  'accus',
  'want',
  'attent',
  'inconsider',
  'wait',
  'rigid',
  'updat',
  'broke',
  'long',
  'talk',
  'happen',
  'acknowledg',
  'know',
  'best',
  'recoveri',
  'said',
  'relationship',
  'compromis',
  'said',
  'appli',
  'health',
  'said',
  'appli',
  'everyth',
  'said',
  'give',
  'space',
  'thank',
  'everyon',
  'without',
  'comment',
  'confid',
  'stand',
  'background_im',
  'im_recov',
  'recov_eat',
  'eat_disord',
  'disord_part',
  'part_recoveri',
  'recoveri_mean',
  'mean_im',
  'im_hungri',
  'hungri_need',
  'need_eat',
  'eat_need',
  'need_get',
  'get_use',
  'use_respond',
  'respond_hunger',
  'hunger_eat',
  'eat_eat',
  'eat_im',
  'im_hungri',
  'hungri_becom',
  'becom_habit',
  'habit_could',
  'could_relaps',
  'relaps_know',
  'know_hard',
  'hard_lot',
  'lot_peopl',
  'peopl_understand',
  'understand_best',
  'best_way',
  'way_explain',
  'explain_alway',
  'alway_carri',
  'carri_snack',
  'snack_accommod',
  'accommod_boyfriend',
  'boyfriend_ask',
  'ask_go',
  'go_famili',
  'famili_event',
  'event_aunt',
  'aunt_hous',
  'hous_dinner',
  'dinner_gather',
  'gather_start',
  'start_four',
  'four_time',
  'time_around',
  'around_start',
  'start_feel',
  'feel_hungri',
  'hungri_ate',
  'ate_small',
  'small_granola',
  'granola_bar',
  'bar_purs',
  'purs_reinforc',
  'reinforc_eat',
  'eat_hungri',
  'hungri_rule',
  'rule_dinner',
  'dinner_excel',
  'excel_left',
  'left_boyfriend',
  'boyfriend_upset',
  'upset_said',
  'said_offend',
  'offend_famili',
  'famili_eat',
  'eat_snack',
  'snack_dinner',
  'dinner_serv',
  'serv_impli',
  'impli_bad',
  'bad_host',
  'host_said',
  'said_wait',
  'wait_remind',
  'remind_eat',
  'eat_im',
  'im_hungri',
  'hungri_said',
  'said_dinner',
  'dinner_hour',
  'hour_suffici',
  'suffici_enforc',
  'enforc_rule',
  'rule_work',
  'work_way',
  'way_eat',
  'eat_soon',
  'soon_realiz',
  'realiz_im',
  'im_hungri',
  'hungri_slipperi',
  'slipperi_slope',
  'slope_could',
  'could_lead',
  'lead_go',
  'go_day',
  'day_without',
  'without_food',
  'food_boyfriend',
  'boyfriend_angri',
  'angri_accus',
  'accus_want',
  'want_attent',
  'attent_inconsider',
  'inconsider_wait',
  'wait_rigid',
  'rigid_updat',
  'updat_broke',
  'broke_long',
  'long_talk',
  'talk_happen',
  'happen_acknowledg',
  'acknowledg_know',
  'know_best',
  'best_recoveri',
  'recoveri_said',
  'said_relationship',
  'relationship_compromis',
  'compromis_said',
  'said_appli',
  'appli_health',
  'health_said',
  'said_appli',
  'appli_everyth',
  'everyth_said',
  'said_give',
  'give_space',
  'space_thank',
  'thank_everyon',
  'everyon_without',
  'without_comment',
  'comment_confid',
  'confid_stand',
  'background_im_recov',
  'im_recov_eat',
  'recov_eat_disord',
  'eat_disord_part',
  'disord_part_recoveri',
  'part_recoveri_mean',
  'recoveri_mean_im',
  'mean_im_hungri',
  'im_hungri_need',
  'hungri_need_eat',
  'need_eat_need',
  'eat_need_get',
  'need_get_use',
  'get_use_respond',
  'use_respond_hunger',
  'respond_hunger_eat',
  'hunger_eat_eat',
  'eat_eat_im',
  'eat_im_hungri',
  'im_hungri_becom',
  'hungri_becom_habit',
  'becom_habit_could',
  'habit_could_relaps',
  'could_relaps_know',
  'relaps_know_hard',
  'know_hard_lot',
  'hard_lot_peopl',
  'lot_peopl_understand',
  'peopl_understand_best',
  'understand_best_way',
  'best_way_explain',
  'way_explain_alway',
  'explain_alway_carri',
  'alway_carri_snack',
  'carri_snack_accommod',
  'snack_accommod_boyfriend',
  'accommod_boyfriend_ask',
  'boyfriend_ask_go',
  'ask_go_famili',
  'go_famili_event',
  'famili_event_aunt',
  'event_aunt_hous',
  'aunt_hous_dinner',
  'hous_dinner_gather',
  'dinner_gather_start',
  'gather_start_four',
  'start_four_time',
  'four_time_around',
  'time_around_start',
  'around_start_feel',
  'start_feel_hungri',
  'feel_hungri_ate',
  'hungri_ate_small',
  'ate_small_granola',
  'small_granola_bar',
  'granola_bar_purs',
  'bar_purs_reinforc',
  'purs_reinforc_eat',
  'reinforc_eat_hungri',
  'eat_hungri_rule',
  'hungri_rule_dinner',
  'rule_dinner_excel',
  'dinner_excel_left',
  'excel_left_boyfriend',
  'left_boyfriend_upset',
  'boyfriend_upset_said',
  'upset_said_offend',
  'said_offend_famili',
  'offend_famili_eat',
  'famili_eat_snack',
  'eat_snack_dinner',
  'snack_dinner_serv',
  'dinner_serv_impli',
  'serv_impli_bad',
  'impli_bad_host',
  'bad_host_said',
  'host_said_wait',
  'said_wait_remind',
  'wait_remind_eat',
  'remind_eat_im',
  'eat_im_hungri',
  'im_hungri_said',
  'hungri_said_dinner',
  'said_dinner_hour',
  'dinner_hour_suffici',
  'hour_suffici_enforc',
  'suffici_enforc_rule',
  'enforc_rule_work',
  'rule_work_way',
  'work_way_eat',
  'way_eat_soon',
  'eat_soon_realiz',
  'soon_realiz_im',
  'realiz_im_hungri',
  'im_hungri_slipperi',
  'hungri_slipperi_slope',
  'slipperi_slope_could',
  'slope_could_lead',
  'could_lead_go',
  'lead_go_day',
  'go_day_without',
  'day_without_food',
  'without_food_boyfriend',
  'food_boyfriend_angri',
  'boyfriend_angri_accus',
  'angri_accus_want',
  'accus_want_attent',
  'want_attent_inconsider',
  'attent_inconsider_wait',
  'inconsider_wait_rigid',
  'wait_rigid_updat',
  'rigid_updat_broke',
  'updat_broke_long',
  'broke_long_talk',
  'long_talk_happen',
  'talk_happen_acknowledg',
  'happen_acknowledg_know',
  'acknowledg_know_best',
  'know_best_recoveri',
  'best_recoveri_said',
  'recoveri_said_relationship',
  'said_relationship_compromis',
  'relationship_compromis_said',
  'compromis_said_appli',
  'said_appli_health',
  'appli_health_said',
  'health_said_appli',
  'said_appli_everyth',
  'appli_everyth_said',
  'everyth_said_give',
  'said_give_space',
  'give_space_thank',
  'space_thank_everyon',
  'thank_everyon_without',
  'everyon_without_comment',
  'without_comment_confid',
  'comment_confid_stand'],
 ['met',
  'wife',
  'year',
  'ago',
  'got',
  'marri',
  'month',
  'ago',
  'babi',
  'boy',
  'togeth',
  'got',
  'pregnent',
  'engag',
  'wife',
  'use',
  's_x',
  'worker',
  'judgement',
  'pleas',
  'surviv',
  'parent',
  'alway',
  'skeptic',
  'lot',
  'time',
  'ask',
  'wan',
  'na',
  'settl',
  'got',
  'prengnent',
  'went',
  'nut',
  'demand',
  'dna',
  'test',
  'refus',
  'attend',
  'wed',
  'til',
  'dna',
  'test',
  'done',
  'caus',
  'huge',
  'problem',
  'end',
  'miss',
  'wed',
  'obvious',
  'test',
  'done',
  'wife',
  'want',
  'prove',
  'point',
  'eventu',
  'parent',
  'made',
  'ammend',
  'reconcil',
  'start',
  'visit',
  'yesterday',
  'notic',
  'photo',
  'dna',
  'test',
  'hang',
  'live',
  'room',
  'ask',
  'told',
  'serv',
  'remind',
  'attend',
  'wed',
  'stun',
  'livid',
  'mention',
  'tell',
  'guest',
  'thing',
  'told',
  'mom',
  'dad',
  'mad',
  'ask',
  'repeatedli',
  'take',
  'say',
  'im',
  'harsh',
  'refus',
  'let',
  'go',
  'past',
  'well',
  'embarrass',
  'famili',
  'member',
  'refus',
  'take',
  'admit',
  'sarcast',
  'respons',
  'say',
  'goe',
  'hois',
  'decor',
  'beg',
  'refus',
  'come',
  'anymor',
  'til',
  'remov',
  'brother',
  'think',
  'petti',
  'childish',
  'said',
  'take',
  'alright',
  'im',
  'edit',
  'stuff',
  'first',
  'wife',
  'mind',
  'photo',
  'laugh',
  'sometim',
  'still',
  'carri',
  'hurt',
  'caus',
  'happen',
  'second',
  'longer',
  's_x',
  'work',
  'past',
  'mention',
  'brother',
  'close',
  'known',
  'crackhead',
  'famili',
  'met_wife',
  'wife_year',
  'year_ago',
  'ago_got',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_babi',
  'babi_boy',
  'boy_togeth',
  'togeth_got',
  'got_pregnent',
  'pregnent_engag',
  'engag_wife',
  'wife_use',
  'use_s_x',
  's_x_worker',
  'worker_judgement',
  'judgement_pleas',
  'pleas_surviv',
  'surviv_parent',
  'parent_alway',
  'alway_skeptic',
  'skeptic_lot',
  'lot_time',
  'time_ask',
  'ask_wan',
  'wan_na',
  'na_settl',
  'settl_got',
  'got_prengnent',
  'prengnent_went',
  'went_nut',
  'nut_demand',
  'demand_dna',
  'dna_test',
  'test_refus',
  'refus_attend',
  'attend_wed',
  'wed_til',
  'til_dna',
  'dna_test',
  'test_done',
  'done_caus',
  'caus_huge',
  'huge_problem',
  'problem_end',
  'end_miss',
  'miss_wed',
  'wed_obvious',
  'obvious_test',
  'test_done',
  'done_wife',
  'wife_want',
  'want_prove',
  'prove_point',
  'point_eventu',
  'eventu_parent',
  'parent_made',
  'made_ammend',
  'ammend_reconcil',
  'reconcil_start',
  'start_visit',
  'visit_yesterday',
  'yesterday_notic',
  'notic_photo',
  'photo_dna',
  'dna_test',
  'test_hang',
  'hang_live',
  'live_room',
  'room_ask',
  'ask_told',
  'told_serv',
  'serv_remind',
  'remind_attend',
  'attend_wed',
  'wed_stun',
  'stun_livid',
  'livid_mention',
  'mention_tell',
  'tell_guest',
  'guest_thing',
  'thing_told',
  'told_mom',
  'mom_dad',
  'dad_mad',
  'mad_ask',
  'ask_repeatedli',
  'repeatedli_take',
  'take_say',
  'say_im',
  'im_harsh',
  'harsh_refus',
  'refus_let',
  'let_go',
  'go_past',
  'past_well',
  'well_embarrass',
  'embarrass_famili',
  'famili_member',
  'member_refus',
  'refus_take',
  'take_admit',
  'admit_sarcast',
  'sarcast_respons',
  'respons_say',
  'say_goe',
  'goe_hois',
  'hois_decor',
  'decor_beg',
  'beg_refus',
  'refus_come',
  'come_anymor',
  'anymor_til',
  'til_remov',
  'remov_brother',
  'brother_think',
  'think_petti',
  'petti_childish',
  'childish_said',
  'said_take',
  'take_alright',
  'alright_im',
  'im_edit',
  'edit_stuff',
  'stuff_first',
  'first_wife',
  'wife_mind',
  'mind_photo',
  'photo_laugh',
  'laugh_sometim',
  'sometim_still',
  'still_carri',
  'carri_hurt',
  'hurt_caus',
  'caus_happen',
  'happen_second',
  'second_longer',
  'longer_s_x',
  's_x_work',
  'work_past',
  'past_mention',
  'mention_brother',
  'brother_close',
  'close_known',
  'known_crackhead',
  'crackhead_famili',
  'met_wife_year',
  'wife_year_ago',
  'year_ago_got',
  'ago_got_marri',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_babi',
  'ago_babi_boy',
  'babi_boy_togeth',
  'boy_togeth_got',
  'togeth_got_pregnent',
  'got_pregnent_engag',
  'pregnent_engag_wife',
  'engag_wife_use',
  'wife_use_s_x',
  'use_s_x_worker',
  's_x_worker_judgement',
  'worker_judgement_pleas',
  'judgement_pleas_surviv',
  'pleas_surviv_parent',
  'surviv_parent_alway',
  'parent_alway_skeptic',
  'alway_skeptic_lot',
  'skeptic_lot_time',
  'lot_time_ask',
  'time_ask_wan',
  'ask_wan_na',
  'wan_na_settl',
  'na_settl_got',
  'settl_got_prengnent',
  'got_prengnent_went',
  'prengnent_went_nut',
  'went_nut_demand',
  'nut_demand_dna',
  'demand_dna_test',
  'dna_test_refus',
  'test_refus_attend',
  'refus_attend_wed',
  'attend_wed_til',
  'wed_til_dna',
  'til_dna_test',
  'dna_test_done',
  'test_done_caus',
  'done_caus_huge',
  'caus_huge_problem',
  'huge_problem_end',
  'problem_end_miss',
  'end_miss_wed',
  'miss_wed_obvious',
  'wed_obvious_test',
  'obvious_test_done',
  'test_done_wife',
  'done_wife_want',
  'wife_want_prove',
  'want_prove_point',
  'prove_point_eventu',
  'point_eventu_parent',
  'eventu_parent_made',
  'parent_made_ammend',
  'made_ammend_reconcil',
  'ammend_reconcil_start',
  'reconcil_start_visit',
  'start_visit_yesterday',
  'visit_yesterday_notic',
  'yesterday_notic_photo',
  'notic_photo_dna',
  'photo_dna_test',
  'dna_test_hang',
  'test_hang_live',
  'hang_live_room',
  'live_room_ask',
  'room_ask_told',
  'ask_told_serv',
  'told_serv_remind',
  'serv_remind_attend',
  'remind_attend_wed',
  'attend_wed_stun',
  'wed_stun_livid',
  'stun_livid_mention',
  'livid_mention_tell',
  'mention_tell_guest',
  'tell_guest_thing',
  'guest_thing_told',
  'thing_told_mom',
  'told_mom_dad',
  'mom_dad_mad',
  'dad_mad_ask',
  'mad_ask_repeatedli',
  'ask_repeatedli_take',
  'repeatedli_take_say',
  'take_say_im',
  'say_im_harsh',
  'im_harsh_refus',
  'harsh_refus_let',
  'refus_let_go',
  'let_go_past',
  'go_past_well',
  'past_well_embarrass',
  'well_embarrass_famili',
  'embarrass_famili_member',
  'famili_member_refus',
  'member_refus_take',
  'refus_take_admit',
  'take_admit_sarcast',
  'admit_sarcast_respons',
  'sarcast_respons_say',
  'respons_say_goe',
  'say_goe_hois',
  'goe_hois_decor',
  'hois_decor_beg',
  'decor_beg_refus',
  'beg_refus_come',
  'refus_come_anymor',
  'come_anymor_til',
  'anymor_til_remov',
  'til_remov_brother',
  'remov_brother_think',
  'brother_think_petti',
  'think_petti_childish',
  'petti_childish_said',
  'childish_said_take',
  'said_take_alright',
  'take_alright_im',
  'alright_im_edit',
  'im_edit_stuff',
  'edit_stuff_first',
  'stuff_first_wife',
  'first_wife_mind',
  'wife_mind_photo',
  'mind_photo_laugh',
  'photo_laugh_sometim',
  'laugh_sometim_still',
  'sometim_still_carri',
  'still_carri_hurt',
  'carri_hurt_caus',
  'hurt_caus_happen',
  'caus_happen_second',
  'happen_second_longer',
  'second_longer_s_x',
  'longer_s_x_work',
  's_x_work_past',
  'work_past_mention',
  'past_mention_brother',
  'mention_brother_close',
  'brother_close_known',
  'close_known_crackhead',
  'known_crackhead_famili'],
 ['husband',
  'woke',
  'mood',
  'morn',
  'told',
  'make',
  'cup',
  'coffe',
  'went',
  'work',
  'went',
  'made',
  'extra',
  'sugar',
  'like',
  'alway',
  'like',
  'hand',
  'tast',
  'made',
  'face',
  'said',
  'sweet',
  'told',
  'usual',
  'said',
  'good',
  'mood',
  'today',
  'told',
  'make',
  'anoth',
  'one',
  'mind',
  'alreadi',
  'min',
  'late',
  'work',
  'told',
  'alreadi',
  'one',
  'drink',
  'next',
  'thing',
  'knew',
  'drop',
  'tge',
  'cup',
  'floor',
  'purpos',
  'said',
  'longer',
  'go',
  'ahead',
  'make',
  'anoth',
  'one',
  'refus',
  'argument',
  'walk',
  'text',
  'bunch',
  'later',
  'say',
  'disrespect',
  'forc',
  'daili',
  'coffe',
  'act',
  'stubborn',
  'attitud',
  'remind',
  'much',
  'work',
  'pick',
  'much',
  'time',
  'rest',
  'hed',
  'sacrif',
  'order',
  'help',
  'recov',
  'birth',
  'son',
  'first',
  'week',
  'get',
  'said',
  'owe',
  'return',
  'keast',
  'one',
  'mani',
  'favor',
  'instead',
  'decid',
  'ruin',
  'day',
  'came',
  'home',
  'refus',
  'even',
  'look',
  'aita',
  'taken',
  'minut',
  'make',
  'anoth',
  'one',
  'husband_woke',
  'woke_mood',
  'mood_morn',
  'morn_told',
  'told_make',
  'make_cup',
  'cup_coffe',
  'coffe_went',
  'went_work',
  'work_went',
  'went_made',
  'made_extra',
  'extra_sugar',
  'sugar_like',
  'like_alway',
  'alway_like',
  'like_hand',
  'hand_tast',
  'tast_made',
  'made_face',
  'face_said',
  'said_sweet',
  'sweet_told',
  'told_usual',
  'usual_said',
  'said_good',
  'good_mood',
  'mood_today',
  'today_told',
  'told_make',
  'make_anoth',
  'anoth_one',
  'one_mind',
  'mind_alreadi',
  'alreadi_min',
  'min_late',
  'late_work',
  'work_told',
  'told_alreadi',
  'alreadi_one',
  'one_drink',
  'drink_next',
  'next_thing',
  'thing_knew',
  'knew_drop',
  'drop_tge',
  'tge_cup',
  'cup_floor',
  'floor_purpos',
  'purpos_said',
  'said_longer',
  'longer_go',
  'go_ahead',
  'ahead_make',
  'make_anoth',
  'anoth_one',
  'one_refus',
  'refus_argument',
  'argument_walk',
  'walk_text',
  'text_bunch',
  'bunch_later',
  'later_say',
  'say_disrespect',
  'disrespect_forc',
  'forc_daili',
  'daili_coffe',
  'coffe_act',
  'act_stubborn',
  'stubborn_attitud',
  'attitud_remind',
  'remind_much',
  'much_work',
  'work_pick',
  'pick_much',
  'much_time',
  'time_rest',
  'rest_hed',
  'hed_sacrif',
  'sacrif_order',
  'order_help',
  'help_recov',
  'recov_birth',
  'birth_son',
  'son_first',
  'first_week',
  'week_get',
  'get_said',
  'said_owe',
  'owe_return',
  'return_keast',
  'keast_one',
  'one_mani',
  'mani_favor',
  'favor_instead',
  'instead_decid',
  'decid_ruin',
  'ruin_day',
  'day_came',
  'came_home',
  'home_refus',
  'refus_even',
  'even_look',
  'look_aita',
  'aita_taken',
  'taken_minut',
  'minut_make',
  'make_anoth',
  'anoth_one',
  'husband_woke_mood',
  'woke_mood_morn',
  'mood_morn_told',
  'morn_told_make',
  'told_make_cup',
  'make_cup_coffe',
  'cup_coffe_went',
  'coffe_went_work',
  'went_work_went',
  'work_went_made',
  'went_made_extra',
  'made_extra_sugar',
  'extra_sugar_like',
  'sugar_like_alway',
  'like_alway_like',
  'alway_like_hand',
  'like_hand_tast',
  'hand_tast_made',
  'tast_made_face',
  'made_face_said',
  'face_said_sweet',
  'said_sweet_told',
  'sweet_told_usual',
  'told_usual_said',
  'usual_said_good',
  'said_good_mood',
  'good_mood_today',
  'mood_today_told',
  'today_told_make',
  'told_make_anoth',
  'make_anoth_one',
  'anoth_one_mind',
  'one_mind_alreadi',
  'mind_alreadi_min',
  'alreadi_min_late',
  'min_late_work',
  'late_work_told',
  'work_told_alreadi',
  'told_alreadi_one',
  'alreadi_one_drink',
  'one_drink_next',
  'drink_next_thing',
  'next_thing_knew',
  'thing_knew_drop',
  'knew_drop_tge',
  'drop_tge_cup',
  'tge_cup_floor',
  'cup_floor_purpos',
  'floor_purpos_said',
  'purpos_said_longer',
  'said_longer_go',
  'longer_go_ahead',
  'go_ahead_make',
  'ahead_make_anoth',
  'make_anoth_one',
  'anoth_one_refus',
  'one_refus_argument',
  'refus_argument_walk',
  'argument_walk_text',
  'walk_text_bunch',
  'text_bunch_later',
  'bunch_later_say',
  'later_say_disrespect',
  'say_disrespect_forc',
  'disrespect_forc_daili',
  'forc_daili_coffe',
  'daili_coffe_act',
  'coffe_act_stubborn',
  'act_stubborn_attitud',
  'stubborn_attitud_remind',
  'attitud_remind_much',
  'remind_much_work',
  'much_work_pick',
  'work_pick_much',
  'pick_much_time',
  'much_time_rest',
  'time_rest_hed',
  'rest_hed_sacrif',
  'hed_sacrif_order',
  'sacrif_order_help',
  'order_help_recov',
  'help_recov_birth',
  'recov_birth_son',
  'birth_son_first',
  'son_first_week',
  'first_week_get',
  'week_get_said',
  'get_said_owe',
  'said_owe_return',
  'owe_return_keast',
  'return_keast_one',
  'keast_one_mani',
  'one_mani_favor',
  'mani_favor_instead',
  'favor_instead_decid',
  'instead_decid_ruin',
  'decid_ruin_day',
  'ruin_day_came',
  'day_came_home',
  'came_home_refus',
  'home_refus_even',
  'refus_even_look',
  'even_look_aita',
  'look_aita_taken',
  'aita_taken_minut',
  'taken_minut_make',
  'minut_make_anoth',
  'make_anoth_one'],
 ['sister',
  'husband',
  'move',
  'us',
  'day',
  'ago',
  'lost',
  'apart',
  'medic',
  'debt',
  'child',
  'nephew',
  'husband',
  'happi',
  'stay',
  'week',
  'til',
  'get',
  'resolv',
  'howev',
  'yesterday',
  'pm',
  'kitchen',
  'husband',
  'rush',
  'said',
  'saw',
  'sister',
  'husband',
  'walk',
  'bathroom',
  'theyd',
  'like',
  'taken',
  'shower',
  'togeth',
  'husband',
  'said',
  'irk',
  'agre',
  'somewhat',
  'inappropri',
  'ask',
  'speak',
  'sister',
  'matter',
  'got',
  'defens',
  'ask',
  'affect',
  'husband',
  'way',
  'told',
  'made',
  'husband',
  'feel',
  'uncomfort',
  'would',
  'rather',
  'take',
  'shower',
  'seper',
  'start',
  'rant',
  'overwhelm',
  'son',
  'health',
  'problem',
  'alon',
  'time',
  'togeth',
  'marri',
  'coupl',
  'found',
  'activ',
  'bond',
  'time',
  'spend',
  'togeth',
  'apolog',
  'felt',
  'request',
  'ask',
  'got',
  'mad',
  'said',
  'inconsider',
  'understand',
  'husband',
  'hangup',
  'husband',
  'start',
  'argu',
  'storm',
  'guest',
  'room',
  'nephew',
  'bil',
  'speak',
  'husband',
  'said',
  'right',
  'thing',
  'speak',
  'set',
  'boundari',
  'aita',
  'husband',
  'overreact',
  'info',
  'husband',
  'mention',
  'hear',
  'anyth',
  'saw',
  'get',
  'bathroom',
  'ye',
  'cloth',
  'bathroom',
  'hous',
  'spent',
  'apprxim',
  '+',
  'shower',
  'accord',
  'husband',
  'edit',
  '*',
  'im',
  'gon',
  'na',
  'bring',
  'husband',
  'look',
  'respons',
  'help',
  'answer',
  'question',
  'okay',
  'give',
  'minut',
  'edit',
  '*',
  'im',
  'sorri',
  'cant',
  'respond',
  'everi',
  'singl',
  'comment',
  'husband',
  'say',
  'uncomfort',
  'want',
  'expand',
  'situat',
  'sister_husband',
  'husband_move',
  'move_us',
  'us_day',
  'day_ago',
  'ago_lost',
  'lost_apart',
  'apart_medic',
  'medic_debt',
  'debt_child',
  'child_nephew',
  'nephew_husband',
  'husband_happi',
  'happi_stay',
  'stay_week',
  'week_til',
  'til_get',
  'get_resolv',
  'resolv_howev',
  'howev_yesterday',
  'yesterday_pm',
  'pm_kitchen',
  'kitchen_husband',
  'husband_rush',
  'rush_said',
  'said_saw',
  'saw_sister',
  'sister_husband',
  'husband_walk',
  'walk_bathroom',
  'bathroom_theyd',
  'theyd_like',
  'like_taken',
  'taken_shower',
  'shower_togeth',
  'togeth_husband',
  'husband_said',
  'said_irk',
  'irk_agre',
  'agre_somewhat',
  'somewhat_inappropri',
  'inappropri_ask',
  'ask_speak',
  'speak_sister',
  'sister_matter',
  'matter_got',
  'got_defens',
  'defens_ask',
  'ask_affect',
  'affect_husband',
  'husband_way',
  'way_told',
  'told_made',
  'made_husband',
  'husband_feel',
  'feel_uncomfort',
  'uncomfort_would',
  'would_rather',
  'rather_take',
  'take_shower',
  'shower_seper',
  'seper_start',
  'start_rant',
  'rant_overwhelm',
  'overwhelm_son',
  'son_health',
  'health_problem',
  'problem_alon',
  'alon_time',
  'time_togeth',
  'togeth_marri',
  'marri_coupl',
  'coupl_found',
  'found_activ',
  'activ_bond',
  'bond_time',
  'time_spend',
  'spend_togeth',
  'togeth_apolog',
  'apolog_felt',
  'felt_request',
  'request_ask',
  'ask_got',
  'got_mad',
  'mad_said',
  'said_inconsider',
  'inconsider_understand',
  'understand_husband',
  'husband_hangup',
  'hangup_husband',
  'husband_start',
  'start_argu',
  'argu_storm',
  'storm_guest',
  'guest_room',
  'room_nephew',
  'nephew_bil',
  'bil_speak',
  'speak_husband',
  'husband_said',
  'said_right',
  'right_thing',
  'thing_speak',
  'speak_set',
  'set_boundari',
  'boundari_aita',
  'aita_husband',
  'husband_overreact',
  'overreact_info',
  'info_husband',
  'husband_mention',
  'mention_hear',
  'hear_anyth',
  'anyth_saw',
  'saw_get',
  'get_bathroom',
  'bathroom_ye',
  'ye_cloth',
  'cloth_bathroom',
  'bathroom_hous',
  'hous_spent',
  'spent_apprxim',
  'apprxim_+',
  '+_shower',
  'shower_accord',
  'accord_husband',
  'husband_edit',
  'edit_*',
  '*_im',
  'im_gon',
  'gon_na',
  'na_bring',
  'bring_husband',
  'husband_look',
  'look_respons',
  'respons_help',
  'help_answer',
  'answer_question',
  'question_okay',
  'okay_give',
  'give_minut',
  'minut_edit',
  'edit_*',
  '*_im',
  'im_sorri',
  'sorri_cant',
  'cant_respond',
  'respond_everi',
  'everi_singl',
  'singl_comment',
  'comment_husband',
  'husband_say',
  'say_uncomfort',
  'uncomfort_want',
  'want_expand',
  'expand_situat',
  'sister_husband_move',
  'husband_move_us',
  'move_us_day',
  'us_day_ago',
  'day_ago_lost',
  'ago_lost_apart',
  'lost_apart_medic',
  'apart_medic_debt',
  'medic_debt_child',
  'debt_child_nephew',
  'child_nephew_husband',
  'nephew_husband_happi',
  'husband_happi_stay',
  'happi_stay_week',
  'stay_week_til',
  'week_til_get',
  'til_get_resolv',
  'get_resolv_howev',
  'resolv_howev_yesterday',
  'howev_yesterday_pm',
  'yesterday_pm_kitchen',
  'pm_kitchen_husband',
  'kitchen_husband_rush',
  'husband_rush_said',
  'rush_said_saw',
  'said_saw_sister',
  'saw_sister_husband',
  'sister_husband_walk',
  'husband_walk_bathroom',
  'walk_bathroom_theyd',
  'bathroom_theyd_like',
  'theyd_like_taken',
  'like_taken_shower',
  'taken_shower_togeth',
  'shower_togeth_husband',
  'togeth_husband_said',
  'husband_said_irk',
  'said_irk_agre',
  'irk_agre_somewhat',
  'agre_somewhat_inappropri',
  'somewhat_inappropri_ask',
  'inappropri_ask_speak',
  'ask_speak_sister',
  'speak_sister_matter',
  'sister_matter_got',
  'matter_got_defens',
  'got_defens_ask',
  'defens_ask_affect',
  'ask_affect_husband',
  'affect_husband_way',
  'husband_way_told',
  'way_told_made',
  'told_made_husband',
  'made_husband_feel',
  'husband_feel_uncomfort',
  'feel_uncomfort_would',
  'uncomfort_would_rather',
  'would_rather_take',
  'rather_take_shower',
  'take_shower_seper',
  'shower_seper_start',
  'seper_start_rant',
  'start_rant_overwhelm',
  'rant_overwhelm_son',
  'overwhelm_son_health',
  'son_health_problem',
  'health_problem_alon',
  'problem_alon_time',
  'alon_time_togeth',
  'time_togeth_marri',
  'togeth_marri_coupl',
  'marri_coupl_found',
  'coupl_found_activ',
  'found_activ_bond',
  'activ_bond_time',
  'bond_time_spend',
  'time_spend_togeth',
  'spend_togeth_apolog',
  'togeth_apolog_felt',
  'apolog_felt_request',
  'felt_request_ask',
  'request_ask_got',
  'ask_got_mad',
  'got_mad_said',
  'mad_said_inconsider',
  'said_inconsider_understand',
  'inconsider_understand_husband',
  'understand_husband_hangup',
  'husband_hangup_husband',
  'hangup_husband_start',
  'husband_start_argu',
  'start_argu_storm',
  'argu_storm_guest',
  'storm_guest_room',
  'guest_room_nephew',
  'room_nephew_bil',
  'nephew_bil_speak',
  'bil_speak_husband',
  'speak_husband_said',
  'husband_said_right',
  'said_right_thing',
  'right_thing_speak',
  'thing_speak_set',
  'speak_set_boundari',
  'set_boundari_aita',
  'boundari_aita_husband',
  'aita_husband_overreact',
  'husband_overreact_info',
  'overreact_info_husband',
  'info_husband_mention',
  'husband_mention_hear',
  'mention_hear_anyth',
  'hear_anyth_saw',
  'anyth_saw_get',
  'saw_get_bathroom',
  'get_bathroom_ye',
  'bathroom_ye_cloth',
  'ye_cloth_bathroom',
  'cloth_bathroom_hous',
  'bathroom_hous_spent',
  'hous_spent_apprxim',
  'spent_apprxim_+',
  'apprxim_+_shower',
  '+_shower_accord',
  'shower_accord_husband',
  'accord_husband_edit',
  'husband_edit_*',
  'edit_*_im',
  '*_im_gon',
  'im_gon_na',
  'gon_na_bring',
  'na_bring_husband',
  'bring_husband_look',
  'husband_look_respons',
  'look_respons_help',
  'respons_help_answer',
  'help_answer_question',
  'answer_question_okay',
  'question_okay_give',
  'okay_give_minut',
  'give_minut_edit',
  'minut_edit_*',
  'edit_*_im',
  '*_im_sorri',
  'im_sorri_cant',
  'sorri_cant_respond',
  'cant_respond_everi',
  'respond_everi_singl',
  'everi_singl_comment',
  'singl_comment_husband',
  'comment_husband_say',
  'husband_say_uncomfort',
  'say_uncomfort_want',
  'uncomfort_want_expand',
  'want_expand_situat'],
 ['husband',
  'huge',
  'snit',
  'taken',
  'spare',
  'room',
  'tonight',
  'first',
  'time',
  'sinc',
  'give',
  'birth',
  'month',
  'ago',
  'night',
  'mean',
  'babi',
  'bedtim',
  'feed',
  'routin',
  'left',
  'go',
  'cinema',
  'friend',
  'shortli',
  'bedtim',
  'routin',
  'would',
  'begin',
  'husband',
  'use',
  'help',
  'first',
  'month',
  'even',
  'sinc',
  'said',
  'busytir',
  'work',
  'talk',
  'babi',
  'routin',
  'room',
  'temp',
  'light',
  'nois',
  'etc',
  'prefer',
  'husband',
  'assur',
  'everyth',
  'control',
  'move',
  'bare',
  'start',
  'start',
  'get',
  'call',
  'husband',
  'text',
  'ask',
  'wrong',
  'said',
  'babi',
  'sleep',
  'text',
  'back',
  'remind',
  'babi',
  'prefer',
  'thing',
  'said',
  'done',
  'check',
  'babi',
  'monitor',
  'camera',
  'cover',
  'room',
  'could',
  'see',
  'room',
  'light',
  'white',
  'nois',
  'machin',
  'tuck',
  'babi',
  'blanket',
  'text',
  'say',
  'much',
  'start',
  'call',
  'despit',
  'know',
  'im',
  'theatr',
  'text',
  'come',
  'home',
  'put',
  'babi',
  'bed',
  'told',
  'sure',
  'everyth',
  'hand',
  'put',
  'phone',
  'dnd',
  'period',
  'check',
  'babi',
  'via',
  'monitor',
  'okay',
  'husband',
  'actual',
  'follow',
  'sleep',
  'routin',
  'movi',
  'saw',
  'husband',
  'continu',
  'call',
  'like',
  'next',
  'hour',
  'last',
  'spoke',
  'got',
  'home',
  'start',
  'argu',
  'ignor',
  'call',
  'berat',
  'left',
  'alon',
  'offer',
  'show',
  'bedtim',
  'last',
  'two',
  'day',
  'go',
  'want',
  'know',
  'aita',
  'ignor',
  'call',
  'help',
  'babi',
  'husband_huge',
  'huge_snit',
  'snit_taken',
  'taken_spare',
  'spare_room',
  'room_tonight',
  'tonight_first',
  'first_time',
  'time_sinc',
  'sinc_give',
  'give_birth',
  'birth_month',
  'month_ago',
  'ago_night',
  'night_mean',
  'mean_babi',
  'babi_bedtim',
  'bedtim_feed',
  'feed_routin',
  'routin_left',
  'left_go',
  'go_cinema',
  'cinema_friend',
  'friend_shortli',
  'shortli_bedtim',
  'bedtim_routin',
  'routin_would',
  'would_begin',
  'begin_husband',
  'husband_use',
  'use_help',
  'help_first',
  'first_month',
  'month_even',
  'even_sinc',
  'sinc_said',
  'said_busytir',
  'busytir_work',
  'work_talk',
  'talk_babi',
  'babi_routin',
  'routin_room',
  'room_temp',
  'temp_light',
  'light_nois',
  'nois_etc',
  'etc_prefer',
  'prefer_husband',
  'husband_assur',
  'assur_everyth',
  'everyth_control',
  'control_move',
  'move_bare',
  'bare_start',
  'start_start',
  'start_get',
  'get_call',
  'call_husband',
  'husband_text',
  'text_ask',
  'ask_wrong',
  'wrong_said',
  'said_babi',
  'babi_sleep',
  'sleep_text',
  'text_back',
  'back_remind',
  'remind_babi',
  'babi_prefer',
  'prefer_thing',
  'thing_said',
  'said_done',
  'done_check',
  'check_babi',
  'babi_monitor',
  'monitor_camera',
  'camera_cover',
  'cover_room',
  'room_could',
  'could_see',
  'see_room',
  'room_light',
  'light_white',
  'white_nois',
  'nois_machin',
  'machin_tuck',
  'tuck_babi',
  'babi_blanket',
  'blanket_text',
  'text_say',
  'say_much',
  'much_start',
  'start_call',
  'call_despit',
  'despit_know',
  'know_im',
  'im_theatr',
  'theatr_text',
  'text_come',
  'come_home',
  'home_put',
  'put_babi',
  'babi_bed',
  'bed_told',
  'told_sure',
  'sure_everyth',
  'everyth_hand',
  'hand_put',
  'put_phone',
  'phone_dnd',
  'dnd_period',
  'period_check',
  'check_babi',
  'babi_via',
  'via_monitor',
  'monitor_okay',
  'okay_husband',
  'husband_actual',
  'actual_follow',
  'follow_sleep',
  'sleep_routin',
  'routin_movi',
  'movi_saw',
  'saw_husband',
  'husband_continu',
  'continu_call',
  'call_like',
  'like_next',
  'next_hour',
  'hour_last',
  'last_spoke',
  'spoke_got',
  'got_home',
  'home_start',
  'start_argu',
  'argu_ignor',
  'ignor_call',
  'call_berat',
  'berat_left',
  'left_alon',
  'alon_offer',
  'offer_show',
  'show_bedtim',
  'bedtim_last',
  'last_two',
  'two_day',
  'day_go',
  'go_want',
  'want_know',
  'know_aita',
  'aita_ignor',
  'ignor_call',
  'call_help',
  'help_babi',
  'husband_huge_snit',
  'huge_snit_taken',
  'snit_taken_spare',
  'taken_spare_room',
  'spare_room_tonight',
  'room_tonight_first',
  'tonight_first_time',
  'first_time_sinc',
  'time_sinc_give',
  'sinc_give_birth',
  'give_birth_month',
  'birth_month_ago',
  'month_ago_night',
  'ago_night_mean',
  'night_mean_babi',
  'mean_babi_bedtim',
  'babi_bedtim_feed',
  'bedtim_feed_routin',
  'feed_routin_left',
  'routin_left_go',
  'left_go_cinema',
  'go_cinema_friend',
  'cinema_friend_shortli',
  'friend_shortli_bedtim',
  'shortli_bedtim_routin',
  'bedtim_routin_would',
  'routin_would_begin',
  'would_begin_husband',
  'begin_husband_use',
  'husband_use_help',
  'use_help_first',
  'help_first_month',
  'first_month_even',
  'month_even_sinc',
  'even_sinc_said',
  'sinc_said_busytir',
  'said_busytir_work',
  'busytir_work_talk',
  'work_talk_babi',
  'talk_babi_routin',
  'babi_routin_room',
  'routin_room_temp',
  'room_temp_light',
  'temp_light_nois',
  'light_nois_etc',
  'nois_etc_prefer',
  'etc_prefer_husband',
  'prefer_husband_assur',
  'husband_assur_everyth',
  'assur_everyth_control',
  'everyth_control_move',
  'control_move_bare',
  'move_bare_start',
  'bare_start_start',
  'start_start_get',
  'start_get_call',
  'get_call_husband',
  'call_husband_text',
  'husband_text_ask',
  'text_ask_wrong',
  'ask_wrong_said',
  'wrong_said_babi',
  'said_babi_sleep',
  'babi_sleep_text',
  'sleep_text_back',
  'text_back_remind',
  'back_remind_babi',
  'remind_babi_prefer',
  'babi_prefer_thing',
  'prefer_thing_said',
  'thing_said_done',
  'said_done_check',
  'done_check_babi',
  'check_babi_monitor',
  'babi_monitor_camera',
  'monitor_camera_cover',
  'camera_cover_room',
  'cover_room_could',
  'room_could_see',
  'could_see_room',
  'see_room_light',
  'room_light_white',
  'light_white_nois',
  'white_nois_machin',
  'nois_machin_tuck',
  'machin_tuck_babi',
  'tuck_babi_blanket',
  'babi_blanket_text',
  'blanket_text_say',
  'text_say_much',
  'say_much_start',
  'much_start_call',
  'start_call_despit',
  'call_despit_know',
  'despit_know_im',
  'know_im_theatr',
  'im_theatr_text',
  'theatr_text_come',
  'text_come_home',
  'come_home_put',
  'home_put_babi',
  'put_babi_bed',
  'babi_bed_told',
  'bed_told_sure',
  'told_sure_everyth',
  'sure_everyth_hand',
  'everyth_hand_put',
  'hand_put_phone',
  'put_phone_dnd',
  'phone_dnd_period',
  'dnd_period_check',
  'period_check_babi',
  'check_babi_via',
  'babi_via_monitor',
  'via_monitor_okay',
  'monitor_okay_husband',
  'okay_husband_actual',
  'husband_actual_follow',
  'actual_follow_sleep',
  'follow_sleep_routin',
  'sleep_routin_movi',
  'routin_movi_saw',
  'movi_saw_husband',
  'saw_husband_continu',
  'husband_continu_call',
  'continu_call_like',
  'call_like_next',
  'like_next_hour',
  'next_hour_last',
  'hour_last_spoke',
  'last_spoke_got',
  'spoke_got_home',
  'got_home_start',
  'home_start_argu',
  'start_argu_ignor',
  'argu_ignor_call',
  'ignor_call_berat',
  'call_berat_left',
  'berat_left_alon',
  'left_alon_offer',
  'alon_offer_show',
  'offer_show_bedtim',
  'show_bedtim_last',
  'bedtim_last_two',
  'last_two_day',
  'two_day_go',
  'day_go_want',
  'go_want_know',
  'want_know_aita',
  'know_aita_ignor',
  'aita_ignor_call',
  'ignor_call_help',
  'call_help_babi'],
 ['cant',
  'believ',
  'im',
  'post',
  'go',
  'ex',
  'richard',
  'year',
  'sinc',
  'separ',
  'due',
  'abus',
  'cheat',
  'divorc',
  'divorc',
  'expens',
  'countri',
  'whenev',
  'appli',
  'divorc',
  'richard',
  'insist',
  'medit',
  'divorc',
  'grant',
  'one',
  'us',
  'tri',
  'save',
  'marriag',
  'live',
  'mistress',
  'kid',
  'togeth',
  'conceiv',
  'still',
  'togeth',
  'due',
  'harass',
  'abus',
  'restrain',
  'order',
  'employ',
  'awar',
  'util',
  'compani',
  'ex',
  'work',
  'suppli',
  'build',
  'offic',
  'one',
  'major',
  'supplier',
  'countri',
  'actual',
  'event',
  'due',
  'restrict',
  'everyon',
  'current',
  'work',
  'home',
  'day',
  'offic',
  'richard',
  'decid',
  'show',
  'work',
  'kid',
  'demand',
  'see',
  'child',
  'support',
  'money',
  'sinc',
  'still',
  'legal',
  'marri',
  'employ',
  'awar',
  'situat',
  'recept',
  'refus',
  'tell',
  'im',
  'offic',
  'ask',
  'richard',
  'leav',
  'richard',
  'secur',
  'call',
  'child',
  'secur',
  'use',
  'forc',
  'remov',
  'richard',
  'recept',
  'threaten',
  'call',
  'util',
  'compani',
  'work',
  'richard',
  'believ',
  'recept',
  'long',
  'stori',
  'short',
  'mistress',
  'fire',
  'immedi',
  'effect',
  'richard',
  'show',
  'work',
  'seen',
  'gross',
  'misconduct',
  'discov',
  'richard',
  'mistress',
  'boss',
  'appar',
  'employ',
  'know',
  'togeth',
  'strictli',
  'forbidden',
  'relationship',
  'someon',
  'directli',
  'employ',
  'util',
  'compani',
  'apologis',
  'richard',
  'action',
  'gave',
  'consider',
  'discount',
  'servic',
  'make',
  'sure',
  'news',
  'happen',
  'spread',
  'sinc',
  'fire',
  'im',
  'get',
  'call',
  'unknown',
  'number',
  'variou',
  'richardshi',
  'mistress',
  'famili',
  'member',
  'friend',
  'say',
  'im',
  'respons',
  'jealou',
  'asshol',
  'get',
  'fire',
  'get',
  'richard',
  'back',
  'still',
  'friend',
  'common',
  'believ',
  'get',
  'fire',
  'loos',
  'sourc',
  'incom',
  'harsh',
  'prevent',
  'thatshouldnt',
  'spoken',
  'begin',
  'happen',
  'aita',
  'edit',
  'repeat',
  'comment',
  'famili',
  'believ',
  'okay',
  'sever',
  'partner',
  'respons',
  'kid',
  'even',
  'affair',
  'accord',
  'friend',
  'common',
  'spread',
  'lie',
  'get',
  'pregnant',
  'want',
  'never',
  'want',
  'kid',
  'mistress',
  'help',
  'us',
  'overreact',
  'call',
  'cheat',
  'stay',
  'support',
  'kid',
  'pull',
  'court',
  'get',
  'divorc',
  'alongsid',
  'still',
  'love',
  'commun',
  'better',
  'lie',
  'court',
  'grant',
  'divorc',
  'believ',
  'tri',
  'save',
  'marriag',
  'im',
  'unreason',
  'edit',
  'thank',
  'support',
  'im',
  'get',
  'bit',
  'overwhelm',
  'tri',
  'repli',
  'everyon',
  'want',
  'point',
  'thing',
  'famili',
  'belief',
  'normal',
  'countri',
  'im',
  'pretti',
  'sure',
  'chang',
  'situat',
  'would',
  'way',
  'round',
  'boss',
  'also',
  'incred',
  'frustrat',
  'situat',
  'gave',
  'contact',
  'friend',
  'happen',
  'famili',
  'lawyer',
  'agre',
  'help',
  'discount',
  'rate',
  'owe',
  'boss',
  'favour',
  'see',
  'court',
  'take',
  'long',
  'tri',
  'best',
  'make',
  'sure',
  'divorc',
  'grant',
  'also',
  'work',
  'win',
  'fee',
  'believ',
  'win',
  'case',
  'get',
  'richard',
  'cover',
  'outstand',
  'fee',
  'importantli',
  'pay',
  'child',
  'support',
  'instruct',
  'bit',
  'claim',
  'child',
  'mine',
  'mistress',
  'surrog',
  'bit',
  'complic',
  'mister',
  'lawyer',
  'owe',
  'beer',
  'said',
  'court',
  'cant',
  'make',
  'pay',
  'accept',
  'sinc',
  'evid',
  'agreement',
  'cant_believ',
  'believ_im',
  'im_post',
  'post_go',
  'go_ex',
  'ex_richard',
  'richard_year',
  'year_sinc',
  'sinc_separ',
  'separ_due',
  'due_abus',
  'abus_cheat',
  'cheat_divorc',
  'divorc_divorc',
  'divorc_expens',
  'expens_countri',
  'countri_whenev',
  'whenev_appli',
  'appli_divorc',
  'divorc_richard',
  'richard_insist',
  'insist_medit',
  'medit_divorc',
  'divorc_grant',
  'grant_one',
  'one_us',
  'us_tri',
  'tri_save',
  'save_marriag',
  'marriag_live',
  'live_mistress',
  'mistress_kid',
  'kid_togeth',
  'togeth_conceiv',
  'conceiv_still',
  'still_togeth',
  'togeth_due',
  'due_harass',
  'harass_abus',
  'abus_restrain',
  'restrain_order',
  'order_employ',
  'employ_awar',
  'awar_util',
  'util_compani',
  'compani_ex',
  'ex_work',
  'work_suppli',
  'suppli_build',
  'build_offic',
  'offic_one',
  'one_major',
  'major_supplier',
  'supplier_countri',
  'countri_actual',
  'actual_event',
  'event_due',
  'due_restrict',
  'restrict_everyon',
  'everyon_current',
  'current_work',
  'work_home',
  'home_day',
  'day_offic',
  'offic_richard',
  'richard_decid',
  'decid_show',
  'show_work',
  'work_kid',
  'kid_demand',
  'demand_see',
  'see_child',
  'child_support',
  'support_money',
  'money_sinc',
  'sinc_still',
  'still_legal',
  'legal_marri',
  'marri_employ',
  'employ_awar',
  'awar_situat',
  'situat_recept',
  'recept_refus',
  'refus_tell',
  'tell_im',
  'im_offic',
  'offic_ask',
  'ask_richard',
  'richard_leav',
  'leav_richard',
  'richard_secur',
  'secur_call',
  'call_child',
  'child_secur',
  'secur_use',
  'use_forc',
  'forc_remov',
  'remov_richard',
  'richard_recept',
  'recept_threaten',
  'threaten_call',
  'call_util',
  'util_compani',
  'compani_work',
  'work_richard',
  'richard_believ',
  'believ_recept',
  'recept_long',
  'long_stori',
  'stori_short',
  'short_mistress',
  'mistress_fire',
  'fire_immedi',
  'immedi_effect',
  'effect_richard',
  'richard_show',
  'show_work',
  'work_seen',
  'seen_gross',
  'gross_misconduct',
  'misconduct_discov',
  'discov_richard',
  'richard_mistress',
  'mistress_boss',
  'boss_appar',
  'appar_employ',
  'employ_know',
  'know_togeth',
  'togeth_strictli',
  'strictli_forbidden',
  'forbidden_relationship',
  'relationship_someon',
  'someon_directli',
  'directli_employ',
  'employ_util',
  'util_compani',
  'compani_apologis',
  'apologis_richard',
  'richard_action',
  'action_gave',
  'gave_consider',
  'consider_discount',
  'discount_servic',
  'servic_make',
  'make_sure',
  'sure_news',
  'news_happen',
  'happen_spread',
  'spread_sinc',
  'sinc_fire',
  'fire_im',
  'im_get',
  'get_call',
  'call_unknown',
  'unknown_number',
  'number_variou',
  'variou_richardshi',
  'richardshi_mistress',
  'mistress_famili',
  'famili_member',
  'member_friend',
  'friend_say',
  'say_im',
  'im_respons',
  'respons_jealou',
  'jealou_asshol',
  'asshol_get',
  'get_fire',
  'fire_get',
  'get_richard',
  'richard_back',
  'back_still',
  'still_friend',
  'friend_common',
  'common_believ',
  'believ_get',
  'get_fire',
  'fire_loos',
  'loos_sourc',
  'sourc_incom',
  'incom_harsh',
  'harsh_prevent',
  'prevent_thatshouldnt',
  'thatshouldnt_spoken',
  'spoken_begin',
  'begin_happen',
  'happen_aita',
  'aita_edit',
  'edit_repeat',
  'repeat_comment',
  'comment_famili',
  'famili_believ',
  'believ_okay',
  'okay_sever',
  'sever_partner',
  'partner_respons',
  'respons_kid',
  'kid_even',
  'even_affair',
  'affair_accord',
  'accord_friend',
  'friend_common',
  'common_spread',
  'spread_lie',
  'lie_get',
  'get_pregnant',
  'pregnant_want',
  'want_never',
  'never_want',
  'want_kid',
  'kid_mistress',
  'mistress_help',
  'help_us',
  'us_overreact',
  'overreact_call',
  'call_cheat',
  'cheat_stay',
  'stay_support',
  'support_kid',
  'kid_pull',
  'pull_court',
  'court_get',
  'get_divorc',
  'divorc_alongsid',
  'alongsid_still',
  'still_love',
  'love_commun',
  'commun_better',
  'better_lie',
  'lie_court',
  'court_grant',
  'grant_divorc',
  'divorc_believ',
  'believ_tri',
  'tri_save',
  'save_marriag',
  'marriag_im',
  'im_unreason',
  'unreason_edit',
  'edit_thank',
  'thank_support',
  'support_im',
  'im_get',
  'get_bit',
  'bit_overwhelm',
  'overwhelm_tri',
  'tri_repli',
  'repli_everyon',
  'everyon_want',
  'want_point',
  'point_thing',
  'thing_famili',
  'famili_belief',
  'belief_normal',
  'normal_countri',
  'countri_im',
  'im_pretti',
  'pretti_sure',
  'sure_chang',
  'chang_situat',
  'situat_would',
  'would_way',
  'way_round',
  'round_boss',
  'boss_also',
  'also_incred',
  'incred_frustrat',
  'frustrat_situat',
  'situat_gave',
  'gave_contact',
  'contact_friend',
  'friend_happen',
  'happen_famili',
  'famili_lawyer',
  'lawyer_agre',
  'agre_help',
  'help_discount',
  'discount_rate',
  'rate_owe',
  'owe_boss',
  'boss_favour',
  'favour_see',
  'see_court',
  'court_take',
  'take_long',
  'long_tri',
  'tri_best',
  'best_make',
  'make_sure',
  'sure_divorc',
  'divorc_grant',
  'grant_also',
  'also_work',
  'work_win',
  'win_fee',
  'fee_believ',
  'believ_win',
  'win_case',
  'case_get',
  'get_richard',
  'richard_cover',
  'cover_outstand',
  'outstand_fee',
  'fee_importantli',
  'importantli_pay',
  'pay_child',
  'child_support',
  'support_instruct',
  'instruct_bit',
  'bit_claim',
  'claim_child',
  'child_mine',
  'mine_mistress',
  'mistress_surrog',
  'surrog_bit',
  'bit_complic',
  'complic_mister',
  'mister_lawyer',
  'lawyer_owe',
  'owe_beer',
  'beer_said',
  'said_court',
  'court_cant',
  'cant_make',
  'make_pay',
  'pay_accept',
  'accept_sinc',
  'sinc_evid',
  'evid_agreement',
  'cant_believ_im',
  'believ_im_post',
  'im_post_go',
  'post_go_ex',
  'go_ex_richard',
  'ex_richard_year',
  'richard_year_sinc',
  'year_sinc_separ',
  'sinc_separ_due',
  'separ_due_abus',
  'due_abus_cheat',
  'abus_cheat_divorc',
  'cheat_divorc_divorc',
  'divorc_divorc_expens',
  'divorc_expens_countri',
  'expens_countri_whenev',
  'countri_whenev_appli',
  'whenev_appli_divorc',
  'appli_divorc_richard',
  'divorc_richard_insist',
  'richard_insist_medit',
  'insist_medit_divorc',
  'medit_divorc_grant',
  'divorc_grant_one',
  'grant_one_us',
  'one_us_tri',
  'us_tri_save',
  'tri_save_marriag',
  'save_marriag_live',
  'marriag_live_mistress',
  'live_mistress_kid',
  'mistress_kid_togeth',
  'kid_togeth_conceiv',
  'togeth_conceiv_still',
  'conceiv_still_togeth',
  'still_togeth_due',
  'togeth_due_harass',
  'due_harass_abus',
  'harass_abus_restrain',
  'abus_restrain_order',
  'restrain_order_employ',
  'order_employ_awar',
  'employ_awar_util',
  'awar_util_compani',
  'util_compani_ex',
  'compani_ex_work',
  'ex_work_suppli',
  'work_suppli_build',
  'suppli_build_offic',
  'build_offic_one',
  'offic_one_major',
  'one_major_supplier',
  'major_supplier_countri',
  'supplier_countri_actual',
  'countri_actual_event',
  'actual_event_due',
  'event_due_restrict',
  'due_restrict_everyon',
  'restrict_everyon_current',
  'everyon_current_work',
  'current_work_home',
  'work_home_day',
  'home_day_offic',
  'day_offic_richard',
  'offic_richard_decid',
  'richard_decid_show',
  'decid_show_work',
  'show_work_kid',
  'work_kid_demand',
  'kid_demand_see',
  'demand_see_child',
  'see_child_support',
  'child_support_money',
  'support_money_sinc',
  'money_sinc_still',
  'sinc_still_legal',
  'still_legal_marri',
  'legal_marri_employ',
  'marri_employ_awar',
  'employ_awar_situat',
  'awar_situat_recept',
  'situat_recept_refus',
  'recept_refus_tell',
  'refus_tell_im',
  'tell_im_offic',
  'im_offic_ask',
  'offic_ask_richard',
  'ask_richard_leav',
  'richard_leav_richard',
  'leav_richard_secur',
  'richard_secur_call',
  'secur_call_child',
  'call_child_secur',
  'child_secur_use',
  'secur_use_forc',
  'use_forc_remov',
  'forc_remov_richard',
  'remov_richard_recept',
  'richard_recept_threaten',
  'recept_threaten_call',
  'threaten_call_util',
  'call_util_compani',
  'util_compani_work',
  'compani_work_richard',
  'work_richard_believ',
  'richard_believ_recept',
  'believ_recept_long',
  'recept_long_stori',
  'long_stori_short',
  'stori_short_mistress',
  'short_mistress_fire',
  'mistress_fire_immedi',
  'fire_immedi_effect',
  'immedi_effect_richard',
  'effect_richard_show',
  'richard_show_work',
  'show_work_seen',
  'work_seen_gross',
  'seen_gross_misconduct',
  'gross_misconduct_discov',
  'misconduct_discov_richard',
  'discov_richard_mistress',
  'richard_mistress_boss',
  'mistress_boss_appar',
  'boss_appar_employ',
  'appar_employ_know',
  'employ_know_togeth',
  'know_togeth_strictli',
  'togeth_strictli_forbidden',
  'strictli_forbidden_relationship',
  'forbidden_relationship_someon',
  'relationship_someon_directli',
  'someon_directli_employ',
  'directli_employ_util',
  'employ_util_compani',
  'util_compani_apologis',
  'compani_apologis_richard',
  'apologis_richard_action',
  'richard_action_gave',
  'action_gave_consider',
  'gave_consider_discount',
  'consider_discount_servic',
  'discount_servic_make',
  'servic_make_sure',
  'make_sure_news',
  'sure_news_happen',
  'news_happen_spread',
  'happen_spread_sinc',
  'spread_sinc_fire',
  'sinc_fire_im',
  'fire_im_get',
  'im_get_call',
  'get_call_unknown',
  'call_unknown_number',
  'unknown_number_variou',
  'number_variou_richardshi',
  'variou_richardshi_mistress',
  'richardshi_mistress_famili',
  'mistress_famili_member',
  'famili_member_friend',
  'member_friend_say',
  'friend_say_im',
  'say_im_respons',
  'im_respons_jealou',
  'respons_jealou_asshol',
  'jealou_asshol_get',
  'asshol_get_fire',
  'get_fire_get',
  'fire_get_richard',
  'get_richard_back',
  'richard_back_still',
  'back_still_friend',
  'still_friend_common',
  'friend_common_believ',
  'common_believ_get',
  'believ_get_fire',
  'get_fire_loos',
  'fire_loos_sourc',
  'loos_sourc_incom',
  'sourc_incom_harsh',
  'incom_harsh_prevent',
  'harsh_prevent_thatshouldnt',
  'prevent_thatshouldnt_spoken',
  'thatshouldnt_spoken_begin',
  'spoken_begin_happen',
  'begin_happen_aita',
  'happen_aita_edit',
  'aita_edit_repeat',
  'edit_repeat_comment',
  'repeat_comment_famili',
  'comment_famili_believ',
  'famili_believ_okay',
  'believ_okay_sever',
  'okay_sever_partner',
  'sever_partner_respons',
  'partner_respons_kid',
  'respons_kid_even',
  'kid_even_affair',
  'even_affair_accord',
  'affair_accord_friend',
  'accord_friend_common',
  'friend_common_spread',
  'common_spread_lie',
  'spread_lie_get',
  'lie_get_pregnant',
  'get_pregnant_want',
  'pregnant_want_never',
  'want_never_want',
  'never_want_kid',
  'want_kid_mistress',
  'kid_mistress_help',
  'mistress_help_us',
  'help_us_overreact',
  'us_overreact_call',
  'overreact_call_cheat',
  'call_cheat_stay',
  'cheat_stay_support',
  'stay_support_kid',
  'support_kid_pull',
  'kid_pull_court',
  'pull_court_get',
  'court_get_divorc',
  'get_divorc_alongsid',
  'divorc_alongsid_still',
  'alongsid_still_love',
  'still_love_commun',
  'love_commun_better',
  'commun_better_lie',
  'better_lie_court',
  'lie_court_grant',
  'court_grant_divorc',
  'grant_divorc_believ',
  'divorc_believ_tri',
  'believ_tri_save',
  'tri_save_marriag',
  'save_marriag_im',
  'marriag_im_unreason',
  'im_unreason_edit',
  'unreason_edit_thank',
  'edit_thank_support',
  'thank_support_im',
  'support_im_get',
  'im_get_bit',
  'get_bit_overwhelm',
  'bit_overwhelm_tri',
  'overwhelm_tri_repli',
  'tri_repli_everyon',
  'repli_everyon_want',
  'everyon_want_point',
  'want_point_thing',
  'point_thing_famili',
  'thing_famili_belief',
  'famili_belief_normal',
  'belief_normal_countri',
  'normal_countri_im',
  'countri_im_pretti',
  'im_pretti_sure',
  'pretti_sure_chang',
  'sure_chang_situat',
  'chang_situat_would',
  'situat_would_way',
  'would_way_round',
  'way_round_boss',
  'round_boss_also',
  'boss_also_incred',
  'also_incred_frustrat',
  'incred_frustrat_situat',
  'frustrat_situat_gave',
  'situat_gave_contact',
  'gave_contact_friend',
  'contact_friend_happen',
  'friend_happen_famili',
  'happen_famili_lawyer',
  'famili_lawyer_agre',
  'lawyer_agre_help',
  'agre_help_discount',
  'help_discount_rate',
  'discount_rate_owe',
  'rate_owe_boss',
  'owe_boss_favour',
  'boss_favour_see',
  'favour_see_court',
  'see_court_take',
  'court_take_long',
  'take_long_tri',
  'long_tri_best',
  'tri_best_make',
  'best_make_sure',
  'make_sure_divorc',
  'sure_divorc_grant',
  'divorc_grant_also',
  'grant_also_work',
  'also_work_win',
  'work_win_fee',
  'win_fee_believ',
  'fee_believ_win',
  'believ_win_case',
  'win_case_get',
  'case_get_richard',
  'get_richard_cover',
  'richard_cover_outstand',
  'cover_outstand_fee',
  'outstand_fee_importantli',
  'fee_importantli_pay',
  'importantli_pay_child',
  'pay_child_support',
  'child_support_instruct',
  'support_instruct_bit',
  'instruct_bit_claim',
  'bit_claim_child',
  'claim_child_mine',
  'child_mine_mistress',
  'mine_mistress_surrog',
  'mistress_surrog_bit',
  'surrog_bit_complic',
  'bit_complic_mister',
  'complic_mister_lawyer',
  'mister_lawyer_owe',
  'lawyer_owe_beer',
  'owe_beer_said',
  'beer_said_court',
  'said_court_cant',
  'court_cant_make',
  'cant_make_pay',
  'make_pay_accept',
  'pay_accept_sinc',
  'accept_sinc_evid',
  'sinc_evid_agreement'],
 ['im',
  'live',
  'parent',
  'work',
  'night',
  'shift',
  'get',
  'home',
  'around',
  'sleep',
  'around',
  'parent',
  'would',
  'come',
  'bedroom',
  'wake',
  'could',
  'still',
  'time',
  'enjoy',
  'day',
  'start',
  'use',
  'lock',
  'door',
  'stop',
  'began',
  'play',
  'loud',
  'music',
  'wake',
  'start',
  'use',
  'ear',
  'bud',
  'block',
  'nois',
  'theyd',
  'call',
  'wake',
  'put',
  'phone',
  'disturb',
  'want',
  'awak',
  'spend',
  'time',
  'famili',
  'get',
  'im',
  'avail',
  'spend',
  'time',
  'afternoon',
  'see',
  'midday',
  'morn',
  'pick',
  'lock',
  'sent',
  'brother',
  'wake',
  'say',
  'miss',
  'took',
  'back',
  'downstair',
  'hand',
  'dad',
  'say',
  'still',
  'need',
  'sleep',
  'dad',
  'start',
  'rais',
  'voic',
  'im',
  'bare',
  'even',
  'part',
  'famili',
  'anymor',
  'began',
  'yell',
  'need',
  'sleep',
  'function',
  'shift',
  'like',
  'im',
  'unemploy',
  'stay',
  'night',
  'sleep',
  'day',
  'believ',
  'yell',
  'back',
  'stick',
  'around',
  'went',
  'back',
  'sleep',
  'time',
  'move',
  'dresser',
  'front',
  'door',
  'neither',
  'parent',
  'talk',
  'moment',
  'edit',
  'move',
  'option',
  'im_live',
  'live_parent',
  'parent_work',
  'work_night',
  'night_shift',
  'shift_get',
  'get_home',
  'home_around',
  'around_sleep',
  'sleep_around',
  'around_parent',
  'parent_would',
  'would_come',
  'come_bedroom',
  'bedroom_wake',
  'wake_could',
  'could_still',
  'still_time',
  'time_enjoy',
  'enjoy_day',
  'day_start',
  'start_use',
  'use_lock',
  'lock_door',
  'door_stop',
  'stop_began',
  'began_play',
  'play_loud',
  'loud_music',
  'music_wake',
  'wake_start',
  'start_use',
  'use_ear',
  'ear_bud',
  'bud_block',
  'block_nois',
  'nois_theyd',
  'theyd_call',
  'call_wake',
  'wake_put',
  'put_phone',
  'phone_disturb',
  'disturb_want',
  'want_awak',
  'awak_spend',
  'spend_time',
  'time_famili',
  'famili_get',
  'get_im',
  'im_avail',
  'avail_spend',
  'spend_time',
  'time_afternoon',
  'afternoon_see',
  'see_midday',
  'midday_morn',
  'morn_pick',
  'pick_lock',
  'lock_sent',
  'sent_brother',
  'brother_wake',
  'wake_say',
  'say_miss',
  'miss_took',
  'took_back',
  'back_downstair',
  'downstair_hand',
  'hand_dad',
  'dad_say',
  'say_still',
  'still_need',
  'need_sleep',
  'sleep_dad',
  'dad_start',
  'start_rais',
  'rais_voic',
  'voic_im',
  'im_bare',
  'bare_even',
  'even_part',
  'part_famili',
  'famili_anymor',
  'anymor_began',
  'began_yell',
  'yell_need',
  'need_sleep',
  'sleep_function',
  'function_shift',
  'shift_like',
  'like_im',
  'im_unemploy',
  'unemploy_stay',
  'stay_night',
  'night_sleep',
  'sleep_day',
  'day_believ',
  'believ_yell',
  'yell_back',
  'back_stick',
  'stick_around',
  'around_went',
  'went_back',
  'back_sleep',
  'sleep_time',
  'time_move',
  'move_dresser',
  'dresser_front',
  'front_door',
  'door_neither',
  'neither_parent',
  'parent_talk',
  'talk_moment',
  'moment_edit',
  'edit_move',
  'move_option',
  'im_live_parent',
  'live_parent_work',
  'parent_work_night',
  'work_night_shift',
  'night_shift_get',
  'shift_get_home',
  'get_home_around',
  'home_around_sleep',
  'around_sleep_around',
  'sleep_around_parent',
  'around_parent_would',
  'parent_would_come',
  'would_come_bedroom',
  'come_bedroom_wake',
  'bedroom_wake_could',
  'wake_could_still',
  'could_still_time',
  'still_time_enjoy',
  'time_enjoy_day',
  'enjoy_day_start',
  'day_start_use',
  'start_use_lock',
  'use_lock_door',
  'lock_door_stop',
  'door_stop_began',
  'stop_began_play',
  'began_play_loud',
  'play_loud_music',
  'loud_music_wake',
  'music_wake_start',
  'wake_start_use',
  'start_use_ear',
  'use_ear_bud',
  'ear_bud_block',
  'bud_block_nois',
  'block_nois_theyd',
  'nois_theyd_call',
  'theyd_call_wake',
  'call_wake_put',
  'wake_put_phone',
  'put_phone_disturb',
  'phone_disturb_want',
  'disturb_want_awak',
  'want_awak_spend',
  'awak_spend_time',
  'spend_time_famili',
  'time_famili_get',
  'famili_get_im',
  'get_im_avail',
  'im_avail_spend',
  'avail_spend_time',
  'spend_time_afternoon',
  'time_afternoon_see',
  'afternoon_see_midday',
  'see_midday_morn',
  'midday_morn_pick',
  'morn_pick_lock',
  'pick_lock_sent',
  'lock_sent_brother',
  'sent_brother_wake',
  'brother_wake_say',
  'wake_say_miss',
  'say_miss_took',
  'miss_took_back',
  'took_back_downstair',
  'back_downstair_hand',
  'downstair_hand_dad',
  'hand_dad_say',
  'dad_say_still',
  'say_still_need',
  'still_need_sleep',
  'need_sleep_dad',
  'sleep_dad_start',
  'dad_start_rais',
  'start_rais_voic',
  'rais_voic_im',
  'voic_im_bare',
  'im_bare_even',
  'bare_even_part',
  'even_part_famili',
  'part_famili_anymor',
  'famili_anymor_began',
  'anymor_began_yell',
  'began_yell_need',
  'yell_need_sleep',
  'need_sleep_function',
  'sleep_function_shift',
  'function_shift_like',
  'shift_like_im',
  'like_im_unemploy',
  'im_unemploy_stay',
  'unemploy_stay_night',
  'stay_night_sleep',
  'night_sleep_day',
  'sleep_day_believ',
  'day_believ_yell',
  'believ_yell_back',
  'yell_back_stick',
  'back_stick_around',
  'stick_around_went',
  'around_went_back',
  'went_back_sleep',
  'back_sleep_time',
  'sleep_time_move',
  'time_move_dresser',
  'move_dresser_front',
  'dresser_front_door',
  'front_door_neither',
  'door_neither_parent',
  'neither_parent_talk',
  'parent_talk_moment',
  'talk_moment_edit',
  'moment_edit_move',
  'edit_move_option'],
 ['sister',
  'kim',
  'ident',
  'twin',
  'differ',
  'grow',
  'still',
  'hate',
  'say',
  'kim',
  'definit',
  'pick',
  'girl',
  'alway',
  'spew',
  'misogynist',
  'nonsens',
  'women',
  'weak',
  'abid',
  'men',
  'short',
  'petit',
  'cant',
  'anyth',
  'without',
  'big',
  'strong',
  'man',
  'around',
  'girl',
  'tri',
  'hard',
  'wear',
  'makeup',
  'pretti',
  'natur',
  'hate',
  'get',
  'gist',
  'kim',
  'attend',
  'colleg',
  'studi',
  'differ',
  'depart',
  'one',
  'class',
  'guy',
  'name',
  'dave',
  'dave',
  'typic',
  'handsom',
  'frat',
  'boy',
  'girl',
  'colleg',
  'crush',
  'includ',
  'kim',
  'summer',
  'ive',
  'start',
  'work',
  'small',
  'coffe',
  'shop',
  'near',
  'campu',
  'earn',
  'extra',
  'cash',
  'time',
  'dave',
  'becam',
  'frequent',
  'custom',
  'pretti',
  'friendli',
  'toward',
  'sinc',
  'recogn',
  'class',
  'admit',
  'attract',
  'ask',
  'get',
  'know',
  'know',
  'kim',
  'like',
  'decid',
  'reject',
  'dave',
  'instead',
  'offer',
  'set',
  'ident',
  'ask',
  'base',
  'attract',
  'realli',
  'matter',
  'dave',
  'agre',
  'gave',
  'sister',
  'number',
  'knew',
  'met',
  'date',
  'weekend',
  'time',
  'ask',
  'kim',
  'went',
  'sinc',
  'sick',
  'today',
  'shift',
  'dave',
  'approach',
  'ask',
  'could',
  'return',
  'kim',
  'lipgloss',
  'left',
  'car',
  'sinc',
  'knew',
  'brand',
  'expens',
  'ask',
  'return',
  'said',
  'want',
  'see',
  'date',
  'went',
  'confus',
  'ask',
  'date',
  'realli',
  'bad',
  'explain',
  'went',
  'nice',
  'restaur',
  'sister',
  'stop',
  'harass',
  'critic',
  'waitress',
  'wear',
  'much',
  'make',
  'look',
  'easi',
  'fiasco',
  'proceed',
  'say',
  'stuff',
  'imagin',
  'usual',
  'said',
  'andrew',
  'tate',
  'podcast',
  'dave',
  'appar',
  'rais',
  'singl',
  'mother',
  'sister',
  'horrifi',
  'excus',
  'bathroom',
  'paid',
  'meal',
  'venmod',
  'kim',
  'cash',
  'uber',
  'left',
  'restaur',
  'alon',
  'embarrass',
  'kim',
  'total',
  'understood',
  'dave',
  'walk',
  'apolog',
  'behalf',
  'took',
  'lipgloss',
  'return',
  'hour',
  'ago',
  'stop',
  'complain',
  'aw',
  'dave',
  'real',
  'man',
  'sinc',
  'real',
  'man',
  'usual',
  'like',
  'bring',
  'women',
  'inferior',
  'point',
  'cut',
  'told',
  'chanc',
  'nice',
  'date',
  'guy',
  'like',
  'ruin',
  'stop',
  'misogynist',
  'pick',
  'even',
  'one',
  'second',
  'im',
  'back',
  'apart',
  'kim',
  'stop',
  'text',
  'demand',
  'apolog',
  'feel',
  'like',
  'aita',
  'updat',
  'would',
  'like',
  'start',
  'say',
  'although',
  'agre',
  'excus',
  'kim',
  'action',
  'understand',
  'come',
  'place',
  'insecur',
  'although',
  'knew',
  'obsess',
  'male',
  'valid',
  'normal',
  'understand',
  'sever',
  'ive',
  'talk',
  'parent',
  'agre',
  'base',
  'told',
  'well',
  'tri',
  'convinc',
  'kim',
  'attend',
  'therapi',
  'holiday',
  'im',
  'shell',
  'agre',
  'worth',
  'shot',
  'end',
  'get',
  'dave',
  'phone',
  'number',
  'classmat',
  'ive',
  'sent',
  'text',
  'apolog',
  'went',
  'thank',
  'still',
  'pay',
  'sister',
  'meal',
  'make',
  'sure',
  'away',
  'get',
  'home',
  'safe',
  'talk',
  'bit',
  'one',
  'thing',
  'led',
  'anoth',
  'agre',
  'meet',
  'lunch',
  'next',
  'week',
  'class',
  'know',
  'consid',
  'date',
  'sinc',
  'label',
  'think',
  'ill',
  'meet',
  'see',
  'goe',
  'told',
  'kim',
  'say',
  'piss',
  'would',
  'understat',
  'call',
  'horribl',
  'sister',
  'agre',
  'meet',
  'guy',
  'publicli',
  'humili',
  'leav',
  'alon',
  'restaur',
  'retali',
  'remind',
  'one',
  'embarrass',
  'first',
  'caus',
  'scene',
  'public',
  'also',
  'one',
  'said',
  'manli',
  'enough',
  'lost',
  'interest',
  'cant',
  'say',
  'claim',
  'calm',
  'agre',
  'said',
  'femal',
  'like',
  'deserv',
  'manlier',
  'alpha',
  'male',
  'ye',
  'know',
  'sound',
  'super',
  'cringi',
  'know',
  'say',
  'laugh',
  'wish',
  'good',
  'luck',
  'think',
  'still',
  'bit',
  'salti',
  'ego',
  'definit',
  'bruis',
  'least',
  'know',
  'complet',
  'dave',
  'want',
  'thank',
  'everyon',
  'support',
  'award',
  'think',
  'ill',
  'post',
  'anoth',
  'updat',
  'anyth',
  'interest',
  'happen',
  'next',
  'week',
  'dave',
  'ill',
  'make',
  'sure',
  'updat',
  'page',
  'btw',
  'first',
  'time',
  'post',
  'say',
  'feel',
  'surreal',
  'open',
  'tiktok',
  'see',
  'post',
  'voic',
  'ai',
  'subway',
  'surfer',
  'gameplay',
  'background😂😂',
  'sister_kim',
  'kim_ident',
  'ident_twin',
  'twin_differ',
  'differ_grow',
  'grow_still',
  'still_hate',
  'hate_say',
  'say_kim',
  'kim_definit',
  'definit_pick',
  'pick_girl',
  'girl_alway',
  'alway_spew',
  'spew_misogynist',
  'misogynist_nonsens',
  'nonsens_women',
  'women_weak',
  'weak_abid',
  'abid_men',
  'men_short',
  'short_petit',
  'petit_cant',
  'cant_anyth',
  'anyth_without',
  'without_big',
  'big_strong',
  'strong_man',
  'man_around',
  'around_girl',
  'girl_tri',
  'tri_hard',
  'hard_wear',
  'wear_makeup',
  'makeup_pretti',
  'pretti_natur',
  'natur_hate',
  'hate_get',
  'get_gist',
  'gist_kim',
  'kim_attend',
  'attend_colleg',
  'colleg_studi',
  'studi_differ',
  'differ_depart',
  'depart_one',
  'one_class',
  'class_guy',
  'guy_name',
  'name_dave',
  'dave_dave',
  'dave_typic',
  'typic_handsom',
  'handsom_frat',
  'frat_boy',
  'boy_girl',
  'girl_colleg',
  'colleg_crush',
  'crush_includ',
  'includ_kim',
  'kim_summer',
  'summer_ive',
  'ive_start',
  'start_work',
  'work_small',
  'small_coffe',
  'coffe_shop',
  'shop_near',
  'near_campu',
  'campu_earn',
  'earn_extra',
  'extra_cash',
  'cash_time',
  'time_dave',
  'dave_becam',
  'becam_frequent',
  'frequent_custom',
  'custom_pretti',
  'pretti_friendli',
  'friendli_toward',
  'toward_sinc',
  'sinc_recogn',
  'recogn_class',
  'class_admit',
  'admit_attract',
  'attract_ask',
  'ask_get',
  'get_know',
  'know_know',
  'know_kim',
  'kim_like',
  'like_decid',
  'decid_reject',
  'reject_dave',
  'dave_instead',
  'instead_offer',
  'offer_set',
  'set_ident',
  'ident_ask',
  'ask_base',
  'base_attract',
  'attract_realli',
  'realli_matter',
  'matter_dave',
  'dave_agre',
  'agre_gave',
  'gave_sister',
  'sister_number',
  'number_knew',
  'knew_met',
  'met_date',
  'date_weekend',
  'weekend_time',
  'time_ask',
  'ask_kim',
  'kim_went',
  'went_sinc',
  'sinc_sick',
  'sick_today',
  'today_shift',
  'shift_dave',
  'dave_approach',
  'approach_ask',
  'ask_could',
  'could_return',
  'return_kim',
  'kim_lipgloss',
  'lipgloss_left',
  'left_car',
  'car_sinc',
  'sinc_knew',
  'knew_brand',
  'brand_expens',
  'expens_ask',
  'ask_return',
  'return_said',
  'said_want',
  'want_see',
  'see_date',
  'date_went',
  'went_confus',
  'confus_ask',
  'ask_date',
  'date_realli',
  'realli_bad',
  'bad_explain',
  'explain_went',
  'went_nice',
  'nice_restaur',
  'restaur_sister',
  'sister_stop',
  'stop_harass',
  'harass_critic',
  'critic_waitress',
  'waitress_wear',
  'wear_much',
  'much_make',
  'make_look',
  'look_easi',
  'easi_fiasco',
  'fiasco_proceed',
  'proceed_say',
  'say_stuff',
  'stuff_imagin',
  'imagin_usual',
  'usual_said',
  'said_andrew',
  'andrew_tate',
  'tate_podcast',
  'podcast_dave',
  'dave_appar',
  'appar_rais',
  'rais_singl',
  'singl_mother',
  'mother_sister',
  'sister_horrifi',
  'horrifi_excus',
  'excus_bathroom',
  'bathroom_paid',
  'paid_meal',
  'meal_venmod',
  'venmod_kim',
  'kim_cash',
  'cash_uber',
  'uber_left',
  'left_restaur',
  'restaur_alon',
  'alon_embarrass',
  'embarrass_kim',
  'kim_total',
  'total_understood',
  'understood_dave',
  'dave_walk',
  'walk_apolog',
  'apolog_behalf',
  'behalf_took',
  'took_lipgloss',
  'lipgloss_return',
  'return_hour',
  'hour_ago',
  'ago_stop',
  'stop_complain',
  'complain_aw',
  'aw_dave',
  'dave_real',
  'real_man',
  'man_sinc',
  'sinc_real',
  'real_man',
  'man_usual',
  'usual_like',
  'like_bring',
  'bring_women',
  'women_inferior',
  'inferior_point',
  'point_cut',
  'cut_told',
  'told_chanc',
  'chanc_nice',
  'nice_date',
  'date_guy',
  'guy_like',
  'like_ruin',
  'ruin_stop',
  'stop_misogynist',
  'misogynist_pick',
  'pick_even',
  'even_one',
  'one_second',
  'second_im',
  'im_back',
  'back_apart',
  'apart_kim',
  'kim_stop',
  'stop_text',
  'text_demand',
  'demand_apolog',
  'apolog_feel',
  'feel_like',
  'like_aita',
  'aita_updat',
  'updat_would',
  'would_like',
  'like_start',
  'start_say',
  'say_although',
  'although_agre',
  'agre_excus',
  'excus_kim',
  'kim_action',
  'action_understand',
  'understand_come',
  'come_place',
  'place_insecur',
  'insecur_although',
  'although_knew',
  'knew_obsess',
  'obsess_male',
  'male_valid',
  'valid_normal',
  'normal_understand',
  'understand_sever',
  'sever_ive',
  'ive_talk',
  'talk_parent',
  'parent_agre',
  'agre_base',
  'base_told',
  'told_well',
  'well_tri',
  'tri_convinc',
  'convinc_kim',
  'kim_attend',
  'attend_therapi',
  'therapi_holiday',
  'holiday_im',
  'im_shell',
  'shell_agre',
  'agre_worth',
  'worth_shot',
  'shot_end',
  'end_get',
  'get_dave',
  'dave_phone',
  'phone_number',
  'number_classmat',
  'classmat_ive',
  'ive_sent',
  'sent_text',
  'text_apolog',
  'apolog_went',
  'went_thank',
  'thank_still',
  'still_pay',
  'pay_sister',
  'sister_meal',
  'meal_make',
  'make_sure',
  'sure_away',
  'away_get',
  'get_home',
  'home_safe',
  'safe_talk',
  'talk_bit',
  'bit_one',
  'one_thing',
  'thing_led',
  'led_anoth',
  'anoth_agre',
  'agre_meet',
  'meet_lunch',
  'lunch_next',
  'next_week',
  'week_class',
  'class_know',
  'know_consid',
  'consid_date',
  'date_sinc',
  'sinc_label',
  'label_think',
  'think_ill',
  'ill_meet',
  'meet_see',
  'see_goe',
  'goe_told',
  'told_kim',
  'kim_say',
  'say_piss',
  'piss_would',
  'would_understat',
  'understat_call',
  'call_horribl',
  'horribl_sister',
  'sister_agre',
  'agre_meet',
  'meet_guy',
  'guy_publicli',
  'publicli_humili',
  'humili_leav',
  'leav_alon',
  'alon_restaur',
  'restaur_retali',
  'retali_remind',
  'remind_one',
  'one_embarrass',
  'embarrass_first',
  'first_caus',
  'caus_scene',
  'scene_public',
  'public_also',
  'also_one',
  'one_said',
  'said_manli',
  'manli_enough',
  'enough_lost',
  'lost_interest',
  'interest_cant',
  'cant_say',
  'say_claim',
  'claim_calm',
  'calm_agre',
  'agre_said',
  'said_femal',
  'femal_like',
  'like_deserv',
  'deserv_manlier',
  'manlier_alpha',
  'alpha_male',
  'male_ye',
  'ye_know',
  'know_sound',
  'sound_super',
  'super_cringi',
  'cringi_know',
  'know_say',
  'say_laugh',
  'laugh_wish',
  'wish_good',
  'good_luck',
  'luck_think',
  'think_still',
  'still_bit',
  'bit_salti',
  'salti_ego',
  'ego_definit',
  'definit_bruis',
  'bruis_least',
  'least_know',
  'know_complet',
  'complet_dave',
  'dave_want',
  'want_thank',
  'thank_everyon',
  'everyon_support',
  'support_award',
  'award_think',
  'think_ill',
  'ill_post',
  'post_anoth',
  'anoth_updat',
  'updat_anyth',
  'anyth_interest',
  'interest_happen',
  'happen_next',
  'next_week',
  'week_dave',
  'dave_ill',
  'ill_make',
  'make_sure',
  'sure_updat',
  'updat_page',
  'page_btw',
  'btw_first',
  'first_time',
  'time_post',
  'post_say',
  'say_feel',
  'feel_surreal',
  'surreal_open',
  'open_tiktok',
  'tiktok_see',
  'see_post',
  'post_voic',
  'voic_ai',
  'ai_subway',
  'subway_surfer',
  'surfer_gameplay',
  'gameplay_background😂😂',
  'sister_kim_ident',
  'kim_ident_twin',
  'ident_twin_differ',
  'twin_differ_grow',
  'differ_grow_still',
  'grow_still_hate',
  'still_hate_say',
  'hate_say_kim',
  'say_kim_definit',
  'kim_definit_pick',
  'definit_pick_girl',
  'pick_girl_alway',
  'girl_alway_spew',
  'alway_spew_misogynist',
  'spew_misogynist_nonsens',
  'misogynist_nonsens_women',
  'nonsens_women_weak',
  'women_weak_abid',
  'weak_abid_men',
  'abid_men_short',
  'men_short_petit',
  'short_petit_cant',
  'petit_cant_anyth',
  'cant_anyth_without',
  'anyth_without_big',
  'without_big_strong',
  'big_strong_man',
  'strong_man_around',
  'man_around_girl',
  'around_girl_tri',
  'girl_tri_hard',
  'tri_hard_wear',
  'hard_wear_makeup',
  'wear_makeup_pretti',
  'makeup_pretti_natur',
  'pretti_natur_hate',
  'natur_hate_get',
  'hate_get_gist',
  'get_gist_kim',
  'gist_kim_attend',
  'kim_attend_colleg',
  'attend_colleg_studi',
  'colleg_studi_differ',
  'studi_differ_depart',
  'differ_depart_one',
  'depart_one_class',
  'one_class_guy',
  'class_guy_name',
  'guy_name_dave',
  'name_dave_dave',
  'dave_dave_typic',
  'dave_typic_handsom',
  'typic_handsom_frat',
  'handsom_frat_boy',
  'frat_boy_girl',
  'boy_girl_colleg',
  'girl_colleg_crush',
  'colleg_crush_includ',
  'crush_includ_kim',
  'includ_kim_summer',
  'kim_summer_ive',
  'summer_ive_start',
  'ive_start_work',
  'start_work_small',
  'work_small_coffe',
  'small_coffe_shop',
  'coffe_shop_near',
  'shop_near_campu',
  'near_campu_earn',
  'campu_earn_extra',
  'earn_extra_cash',
  'extra_cash_time',
  'cash_time_dave',
  'time_dave_becam',
  'dave_becam_frequent',
  'becam_frequent_custom',
  'frequent_custom_pretti',
  'custom_pretti_friendli',
  'pretti_friendli_toward',
  'friendli_toward_sinc',
  'toward_sinc_recogn',
  'sinc_recogn_class',
  'recogn_class_admit',
  'class_admit_attract',
  'admit_attract_ask',
  'attract_ask_get',
  'ask_get_know',
  'get_know_know',
  'know_know_kim',
  'know_kim_like',
  'kim_like_decid',
  'like_decid_reject',
  'decid_reject_dave',
  'reject_dave_instead',
  'dave_instead_offer',
  'instead_offer_set',
  'offer_set_ident',
  'set_ident_ask',
  'ident_ask_base',
  'ask_base_attract',
  'base_attract_realli',
  'attract_realli_matter',
  'realli_matter_dave',
  'matter_dave_agre',
  'dave_agre_gave',
  'agre_gave_sister',
  'gave_sister_number',
  'sister_number_knew',
  'number_knew_met',
  'knew_met_date',
  'met_date_weekend',
  'date_weekend_time',
  'weekend_time_ask',
  'time_ask_kim',
  'ask_kim_went',
  'kim_went_sinc',
  'went_sinc_sick',
  'sinc_sick_today',
  'sick_today_shift',
  'today_shift_dave',
  'shift_dave_approach',
  'dave_approach_ask',
  'approach_ask_could',
  'ask_could_return',
  'could_return_kim',
  'return_kim_lipgloss',
  'kim_lipgloss_left',
  'lipgloss_left_car',
  'left_car_sinc',
  'car_sinc_knew',
  'sinc_knew_brand',
  'knew_brand_expens',
  'brand_expens_ask',
  'expens_ask_return',
  'ask_return_said',
  'return_said_want',
  'said_want_see',
  'want_see_date',
  'see_date_went',
  'date_went_confus',
  'went_confus_ask',
  'confus_ask_date',
  'ask_date_realli',
  ...],
 ['recent',
  'inherit',
  'money',
  'mom',
  'parent',
  'lose',
  'beyond',
  'devast',
  'money',
  'bare',
  'call',
  'inherit',
  'mom',
  'famili',
  'much',
  'better',
  'noth',
  'fianc',
  'first',
  'said',
  'deserv',
  'right',
  'whatev',
  'want',
  'howev',
  'told',
  'whole',
  'famili',
  'infertil',
  'brother',
  'wife',
  'pull',
  'asid',
  'convers',
  'start',
  'talk',
  'wantingneed',
  'nephewniec',
  'basic',
  'hint',
  'brother',
  'infertil',
  'issu',
  'flatout',
  'request',
  'pay',
  'brother',
  'wife',
  'ivf',
  'treatment',
  'inherit',
  'money',
  'taken',
  'aback',
  'initi',
  'declin',
  'got',
  'mad',
  'say',
  'selfish',
  '&',
  'bless',
  'never',
  'issu',
  'fertil',
  'liter',
  'noth',
  'lose',
  'give',
  'money',
  'easi',
  'money',
  'work',
  'upset',
  'point',
  'lash',
  'oit',
  'tell',
  'stop',
  'bother',
  'guilt',
  'deni',
  'request',
  'final',
  'decis',
  'got',
  'agit',
  'went',
  'campaign',
  'shame',
  'treat',
  'futur',
  'husband',
  'therefor',
  'get',
  'sayright',
  'inherit',
  'give',
  'singl',
  'crap',
  'famili',
  'issu',
  'recent_inherit',
  'inherit_money',
  'money_mom',
  'mom_parent',
  'parent_lose',
  'lose_beyond',
  'beyond_devast',
  'devast_money',
  'money_bare',
  'bare_call',
  'call_inherit',
  'inherit_mom',
  'mom_famili',
  'famili_much',
  'much_better',
  'better_noth',
  'noth_fianc',
  'fianc_first',
  'first_said',
  'said_deserv',
  'deserv_right',
  'right_whatev',
  'whatev_want',
  'want_howev',
  'howev_told',
  'told_whole',
  'whole_famili',
  'famili_infertil',
  'infertil_brother',
  'brother_wife',
  'wife_pull',
  'pull_asid',
  'asid_convers',
  'convers_start',
  'start_talk',
  'talk_wantingneed',
  'wantingneed_nephewniec',
  'nephewniec_basic',
  'basic_hint',
  'hint_brother',
  'brother_infertil',
  'infertil_issu',
  'issu_flatout',
  'flatout_request',
  'request_pay',
  'pay_brother',
  'brother_wife',
  'wife_ivf',
  'ivf_treatment',
  'treatment_inherit',
  'inherit_money',
  'money_taken',
  'taken_aback',
  'aback_initi',
  'initi_declin',
  'declin_got',
  'got_mad',
  'mad_say',
  'say_selfish',
  'selfish_&',
  '&_bless',
  'bless_never',
  'never_issu',
  'issu_fertil',
  'fertil_liter',
  'liter_noth',
  'noth_lose',
  'lose_give',
  'give_money',
  'money_easi',
  'easi_money',
  'money_work',
  'work_upset',
  'upset_point',
  'point_lash',
  'lash_oit',
  'oit_tell',
  'tell_stop',
  'stop_bother',
  'bother_guilt',
  'guilt_deni',
  'deni_request',
  'request_final',
  'final_decis',
  'decis_got',
  'got_agit',
  'agit_went',
  'went_campaign',
  'campaign_shame',
  'shame_treat',
  'treat_futur',
  'futur_husband',
  'husband_therefor',
  'therefor_get',
  'get_sayright',
  'sayright_inherit',
  'inherit_give',
  'give_singl',
  'singl_crap',
  'crap_famili',
  'famili_issu',
  'recent_inherit_money',
  'inherit_money_mom',
  'money_mom_parent',
  'mom_parent_lose',
  'parent_lose_beyond',
  'lose_beyond_devast',
  'beyond_devast_money',
  'devast_money_bare',
  'money_bare_call',
  'bare_call_inherit',
  'call_inherit_mom',
  'inherit_mom_famili',
  'mom_famili_much',
  'famili_much_better',
  'much_better_noth',
  'better_noth_fianc',
  'noth_fianc_first',
  'fianc_first_said',
  'first_said_deserv',
  'said_deserv_right',
  'deserv_right_whatev',
  'right_whatev_want',
  'whatev_want_howev',
  'want_howev_told',
  'howev_told_whole',
  'told_whole_famili',
  'whole_famili_infertil',
  'famili_infertil_brother',
  'infertil_brother_wife',
  'brother_wife_pull',
  'wife_pull_asid',
  'pull_asid_convers',
  'asid_convers_start',
  'convers_start_talk',
  'start_talk_wantingneed',
  'talk_wantingneed_nephewniec',
  'wantingneed_nephewniec_basic',
  'nephewniec_basic_hint',
  'basic_hint_brother',
  'hint_brother_infertil',
  'brother_infertil_issu',
  'infertil_issu_flatout',
  'issu_flatout_request',
  'flatout_request_pay',
  'request_pay_brother',
  'pay_brother_wife',
  'brother_wife_ivf',
  'wife_ivf_treatment',
  'ivf_treatment_inherit',
  'treatment_inherit_money',
  'inherit_money_taken',
  'money_taken_aback',
  'taken_aback_initi',
  'aback_initi_declin',
  'initi_declin_got',
  'declin_got_mad',
  'got_mad_say',
  'mad_say_selfish',
  'say_selfish_&',
  'selfish_&_bless',
  '&_bless_never',
  'bless_never_issu',
  'never_issu_fertil',
  'issu_fertil_liter',
  'fertil_liter_noth',
  'liter_noth_lose',
  'noth_lose_give',
  'lose_give_money',
  'give_money_easi',
  'money_easi_money',
  'easi_money_work',
  'money_work_upset',
  'work_upset_point',
  'upset_point_lash',
  'point_lash_oit',
  'lash_oit_tell',
  'oit_tell_stop',
  'tell_stop_bother',
  'stop_bother_guilt',
  'bother_guilt_deni',
  'guilt_deni_request',
  'deni_request_final',
  'request_final_decis',
  'final_decis_got',
  'decis_got_agit',
  'got_agit_went',
  'agit_went_campaign',
  'went_campaign_shame',
  'campaign_shame_treat',
  'shame_treat_futur',
  'treat_futur_husband',
  'futur_husband_therefor',
  'husband_therefor_get',
  'therefor_get_sayright',
  'get_sayright_inherit',
  'sayright_inherit_give',
  'inherit_give_singl',
  'give_singl_crap',
  'singl_crap_famili',
  'crap_famili_issu'],
 ['live',
  'home',
  'grad',
  'school',
  'work',
  'part',
  'time',
  '+',
  'intern',
  'offic',
  'graduat',
  'june',
  'ive',
  'appli',
  'job',
  'much',
  'final',
  'move',
  'sister',
  'also',
  'live',
  'home',
  'school',
  'onlin',
  'work',
  'tri',
  'help',
  'chore',
  'around',
  'hous',
  'much',
  'possibl',
  'although',
  'difficult',
  'sinc',
  'leav',
  'hous',
  'earli',
  'morn',
  'come',
  'home',
  'late',
  'night',
  'last',
  'week',
  'came',
  'home',
  'clean',
  'dish',
  'dishwash',
  'said',
  'im',
  'gon',
  'na',
  'take',
  'quick',
  'shower',
  'empti',
  'dishwash',
  'dad',
  'went',
  'rant',
  'im',
  'useless',
  'never',
  'help',
  'around',
  'hous',
  'sister',
  'alway',
  'one',
  'everyth',
  'explain',
  'help',
  'seen',
  'help',
  'mean',
  'ask',
  'give',
  'exampl',
  'told',
  'took',
  'garbag',
  'night',
  'convers',
  'escal',
  'say',
  'shut',
  'argu',
  'longer',
  'easili',
  'make',
  'homeless',
  'want',
  'said',
  'ok',
  'went',
  'upstair',
  'next',
  'morn',
  'everyon',
  'still',
  'asleep',
  'pack',
  'thing',
  'left',
  'ive',
  'sleep',
  'car',
  'week',
  'take',
  'shower',
  'gym',
  'later',
  'day',
  'left',
  'parent',
  'call',
  'mom',
  'text',
  'ask',
  'come',
  'home',
  'suppos',
  'repli',
  'block',
  'entir',
  'famili',
  'number',
  'social',
  'media',
  'spoken',
  'sinc',
  'call',
  'text',
  'friend',
  'ask',
  'told',
  'friend',
  'im',
  'sleep',
  'car',
  'got',
  'confus',
  'text',
  'friend',
  'ask',
  'go',
  'parent',
  'ask',
  'im',
  'safe',
  'ok',
  'told',
  'closest',
  'friend',
  'left',
  'home',
  'im',
  'safe',
  'let',
  'know',
  'tell',
  'parent',
  'im',
  'fine',
  'desir',
  'speak',
  'anymor',
  'theyv',
  'beg',
  'friend',
  'disclos',
  'locat',
  'ask',
  'ask',
  'allow',
  'speak',
  'went',
  'friend',
  'yesterday',
  'told',
  'aw',
  'speak',
  'told',
  'threaten',
  'make',
  'homeless',
  'left',
  'volit',
  'insist',
  'make',
  'worri',
  'safeti',
  'horribl',
  'thing',
  'honestli',
  'think',
  'gave',
  'ask',
  'want',
  'get',
  'rid',
  'left',
  'aita',
  'leav',
  'refus',
  'commun',
  'edit',
  'mom',
  'happen',
  'dad',
  'side',
  'well',
  'awar',
  'incid',
  'know',
  'threaten',
  'made',
  'homeless',
  'also',
  'said',
  'like',
  'never',
  'go',
  'get',
  'job',
  'go',
  'stay',
  'home',
  'forev',
  'even',
  'though',
  'job',
  'rn',
  'internship',
  'unpaid',
  'though',
  'im',
  'activ',
  'look',
  'full',
  'time',
  'job',
  'ye',
  'theyv',
  'done',
  'thank',
  'everyon',
  'given',
  'advic',
  'appreci',
  'imagin',
  'live_home',
  'home_grad',
  'grad_school',
  'school_work',
  'work_part',
  'part_time',
  'time_+',
  '+_intern',
  'intern_offic',
  'offic_graduat',
  'graduat_june',
  'june_ive',
  'ive_appli',
  'appli_job',
  'job_much',
  'much_final',
  'final_move',
  'move_sister',
  'sister_also',
  'also_live',
  'live_home',
  'home_school',
  'school_onlin',
  'onlin_work',
  'work_tri',
  'tri_help',
  'help_chore',
  'chore_around',
  'around_hous',
  'hous_much',
  'much_possibl',
  'possibl_although',
  'although_difficult',
  'difficult_sinc',
  'sinc_leav',
  'leav_hous',
  'hous_earli',
  'earli_morn',
  'morn_come',
  'come_home',
  'home_late',
  'late_night',
  'night_last',
  'last_week',
  'week_came',
  'came_home',
  'home_clean',
  'clean_dish',
  'dish_dishwash',
  'dishwash_said',
  'said_im',
  'im_gon',
  'gon_na',
  'na_take',
  'take_quick',
  'quick_shower',
  'shower_empti',
  'empti_dishwash',
  'dishwash_dad',
  'dad_went',
  'went_rant',
  'rant_im',
  'im_useless',
  'useless_never',
  'never_help',
  'help_around',
  'around_hous',
  'hous_sister',
  'sister_alway',
  'alway_one',
  'one_everyth',
  'everyth_explain',
  'explain_help',
  'help_seen',
  'seen_help',
  'help_mean',
  'mean_ask',
  'ask_give',
  'give_exampl',
  'exampl_told',
  'told_took',
  'took_garbag',
  'garbag_night',
  'night_convers',
  'convers_escal',
  'escal_say',
  'say_shut',
  'shut_argu',
  'argu_longer',
  'longer_easili',
  'easili_make',
  'make_homeless',
  'homeless_want',
  'want_said',
  'said_ok',
  'ok_went',
  'went_upstair',
  'upstair_next',
  'next_morn',
  'morn_everyon',
  'everyon_still',
  'still_asleep',
  'asleep_pack',
  'pack_thing',
  'thing_left',
  'left_ive',
  'ive_sleep',
  'sleep_car',
  'car_week',
  'week_take',
  'take_shower',
  'shower_gym',
  'gym_later',
  'later_day',
  'day_left',
  'left_parent',
  'parent_call',
  'call_mom',
  'mom_text',
  'text_ask',
  'ask_come',
  'come_home',
  'home_suppos',
  'suppos_repli',
  'repli_block',
  'block_entir',
  'entir_famili',
  'famili_number',
  'number_social',
  'social_media',
  'media_spoken',
  'spoken_sinc',
  'sinc_call',
  'call_text',
  'text_friend',
  'friend_ask',
  'ask_told',
  'told_friend',
  'friend_im',
  'im_sleep',
  'sleep_car',
  'car_got',
  'got_confus',
  'confus_text',
  'text_friend',
  'friend_ask',
  'ask_go',
  'go_parent',
  'parent_ask',
  'ask_im',
  'im_safe',
  'safe_ok',
  'ok_told',
  'told_closest',
  'closest_friend',
  'friend_left',
  'left_home',
  'home_im',
  'im_safe',
  'safe_let',
  'let_know',
  'know_tell',
  'tell_parent',
  'parent_im',
  'im_fine',
  'fine_desir',
  'desir_speak',
  'speak_anymor',
  'anymor_theyv',
  'theyv_beg',
  'beg_friend',
  'friend_disclos',
  'disclos_locat',
  'locat_ask',
  'ask_ask',
  'ask_allow',
  'allow_speak',
  'speak_went',
  'went_friend',
  'friend_yesterday',
  'yesterday_told',
  'told_aw',
  'aw_speak',
  'speak_told',
  'told_threaten',
  'threaten_make',
  'make_homeless',
  'homeless_left',
  'left_volit',
  'volit_insist',
  'insist_make',
  'make_worri',
  'worri_safeti',
  'safeti_horribl',
  'horribl_thing',
  'thing_honestli',
  'honestli_think',
  'think_gave',
  'gave_ask',
  'ask_want',
  'want_get',
  'get_rid',
  'rid_left',
  'left_aita',
  'aita_leav',
  'leav_refus',
  'refus_commun',
  'commun_edit',
  'edit_mom',
  'mom_happen',
  'happen_dad',
  'dad_side',
  'side_well',
  'well_awar',
  'awar_incid',
  'incid_know',
  'know_threaten',
  'threaten_made',
  'made_homeless',
  'homeless_also',
  'also_said',
  'said_like',
  'like_never',
  'never_go',
  'go_get',
  'get_job',
  'job_go',
  'go_stay',
  'stay_home',
  'home_forev',
  'forev_even',
  'even_though',
  'though_job',
  'job_rn',
  'rn_internship',
  'internship_unpaid',
  'unpaid_though',
  'though_im',
  'im_activ',
  'activ_look',
  'look_full',
  'full_time',
  'time_job',
  'job_ye',
  'ye_theyv',
  'theyv_done',
  'done_thank',
  'thank_everyon',
  'everyon_given',
  'given_advic',
  'advic_appreci',
  'appreci_imagin',
  'live_home_grad',
  'home_grad_school',
  'grad_school_work',
  'school_work_part',
  'work_part_time',
  'part_time_+',
  'time_+_intern',
  '+_intern_offic',
  'intern_offic_graduat',
  'offic_graduat_june',
  'graduat_june_ive',
  'june_ive_appli',
  'ive_appli_job',
  'appli_job_much',
  'job_much_final',
  'much_final_move',
  'final_move_sister',
  'move_sister_also',
  'sister_also_live',
  'also_live_home',
  'live_home_school',
  'home_school_onlin',
  'school_onlin_work',
  'onlin_work_tri',
  'work_tri_help',
  'tri_help_chore',
  'help_chore_around',
  'chore_around_hous',
  'around_hous_much',
  'hous_much_possibl',
  'much_possibl_although',
  'possibl_although_difficult',
  'although_difficult_sinc',
  'difficult_sinc_leav',
  'sinc_leav_hous',
  'leav_hous_earli',
  'hous_earli_morn',
  'earli_morn_come',
  'morn_come_home',
  'come_home_late',
  'home_late_night',
  'late_night_last',
  'night_last_week',
  'last_week_came',
  'week_came_home',
  'came_home_clean',
  'home_clean_dish',
  'clean_dish_dishwash',
  'dish_dishwash_said',
  'dishwash_said_im',
  'said_im_gon',
  'im_gon_na',
  'gon_na_take',
  'na_take_quick',
  'take_quick_shower',
  'quick_shower_empti',
  'shower_empti_dishwash',
  'empti_dishwash_dad',
  'dishwash_dad_went',
  'dad_went_rant',
  'went_rant_im',
  'rant_im_useless',
  'im_useless_never',
  'useless_never_help',
  'never_help_around',
  'help_around_hous',
  'around_hous_sister',
  'hous_sister_alway',
  'sister_alway_one',
  'alway_one_everyth',
  'one_everyth_explain',
  'everyth_explain_help',
  'explain_help_seen',
  'help_seen_help',
  'seen_help_mean',
  'help_mean_ask',
  'mean_ask_give',
  'ask_give_exampl',
  'give_exampl_told',
  'exampl_told_took',
  'told_took_garbag',
  'took_garbag_night',
  'garbag_night_convers',
  'night_convers_escal',
  'convers_escal_say',
  'escal_say_shut',
  'say_shut_argu',
  'shut_argu_longer',
  'argu_longer_easili',
  'longer_easili_make',
  'easili_make_homeless',
  'make_homeless_want',
  'homeless_want_said',
  'want_said_ok',
  'said_ok_went',
  'ok_went_upstair',
  'went_upstair_next',
  'upstair_next_morn',
  'next_morn_everyon',
  'morn_everyon_still',
  'everyon_still_asleep',
  'still_asleep_pack',
  'asleep_pack_thing',
  'pack_thing_left',
  'thing_left_ive',
  'left_ive_sleep',
  'ive_sleep_car',
  'sleep_car_week',
  'car_week_take',
  'week_take_shower',
  'take_shower_gym',
  'shower_gym_later',
  'gym_later_day',
  'later_day_left',
  'day_left_parent',
  'left_parent_call',
  'parent_call_mom',
  'call_mom_text',
  'mom_text_ask',
  'text_ask_come',
  'ask_come_home',
  'come_home_suppos',
  'home_suppos_repli',
  'suppos_repli_block',
  'repli_block_entir',
  'block_entir_famili',
  'entir_famili_number',
  'famili_number_social',
  'number_social_media',
  'social_media_spoken',
  'media_spoken_sinc',
  'spoken_sinc_call',
  'sinc_call_text',
  'call_text_friend',
  'text_friend_ask',
  'friend_ask_told',
  'ask_told_friend',
  'told_friend_im',
  'friend_im_sleep',
  'im_sleep_car',
  'sleep_car_got',
  'car_got_confus',
  'got_confus_text',
  'confus_text_friend',
  'text_friend_ask',
  'friend_ask_go',
  'ask_go_parent',
  'go_parent_ask',
  'parent_ask_im',
  'ask_im_safe',
  'im_safe_ok',
  'safe_ok_told',
  'ok_told_closest',
  'told_closest_friend',
  'closest_friend_left',
  'friend_left_home',
  'left_home_im',
  'home_im_safe',
  'im_safe_let',
  'safe_let_know',
  'let_know_tell',
  'know_tell_parent',
  'tell_parent_im',
  'parent_im_fine',
  'im_fine_desir',
  'fine_desir_speak',
  'desir_speak_anymor',
  'speak_anymor_theyv',
  'anymor_theyv_beg',
  'theyv_beg_friend',
  'beg_friend_disclos',
  'friend_disclos_locat',
  'disclos_locat_ask',
  'locat_ask_ask',
  'ask_ask_allow',
  'ask_allow_speak',
  'allow_speak_went',
  'speak_went_friend',
  'went_friend_yesterday',
  'friend_yesterday_told',
  'yesterday_told_aw',
  'told_aw_speak',
  'aw_speak_told',
  'speak_told_threaten',
  'told_threaten_make',
  'threaten_make_homeless',
  'make_homeless_left',
  'homeless_left_volit',
  'left_volit_insist',
  'volit_insist_make',
  'insist_make_worri',
  'make_worri_safeti',
  'worri_safeti_horribl',
  'safeti_horribl_thing',
  'horribl_thing_honestli',
  'thing_honestli_think',
  'honestli_think_gave',
  'think_gave_ask',
  'gave_ask_want',
  'ask_want_get',
  'want_get_rid',
  'get_rid_left',
  'rid_left_aita',
  'left_aita_leav',
  'aita_leav_refus',
  'leav_refus_commun',
  'refus_commun_edit',
  'commun_edit_mom',
  'edit_mom_happen',
  'mom_happen_dad',
  'happen_dad_side',
  'dad_side_well',
  'side_well_awar',
  'well_awar_incid',
  'awar_incid_know',
  'incid_know_threaten',
  'know_threaten_made',
  'threaten_made_homeless',
  'made_homeless_also',
  'homeless_also_said',
  'also_said_like',
  'said_like_never',
  'like_never_go',
  'never_go_get',
  'go_get_job',
  'get_job_go',
  'job_go_stay',
  'go_stay_home',
  'stay_home_forev',
  'home_forev_even',
  'forev_even_though',
  'even_though_job',
  'though_job_rn',
  'job_rn_internship',
  'rn_internship_unpaid',
  'internship_unpaid_though',
  'unpaid_though_im',
  'though_im_activ',
  'im_activ_look',
  'activ_look_full',
  'look_full_time',
  'full_time_job',
  'time_job_ye',
  'job_ye_theyv',
  'ye_theyv_done',
  'theyv_done_thank',
  'done_thank_everyon',
  'thank_everyon_given',
  'everyon_given_advic',
  'given_advic_appreci',
  'advic_appreci_imagin'],
 ['bought',
  'new',
  'hous',
  'last',
  'year',
  'first',
  'view',
  'hous',
  'notic',
  'bike',
  'children',
  'toy',
  'driveway',
  'side',
  'yard',
  'final',
  'walkthrough',
  'sign',
  'final',
  'document',
  'got',
  'key',
  'notic',
  'kid',
  'driveway',
  'color',
  'sidewalk',
  'chalk',
  'ride',
  'scooter',
  'bike',
  'introduc',
  'kid',
  'ask',
  'live',
  'point',
  'hous',
  'next',
  'door',
  'walkthrough',
  'went',
  'hous',
  'kid',
  'point',
  'introduc',
  'parent',
  'let',
  'know',
  'buy',
  'hous',
  'would',
  'move',
  'also',
  'mention',
  'truck',
  'come',
  'us',
  'move',
  'thing',
  'safe',
  'kid',
  'driveway',
  'fine',
  'move',
  'kid',
  'play',
  'driveway',
  'still',
  'leav',
  'toy',
  'dig',
  'side',
  'yard',
  'went',
  'ask',
  'neighbor',
  'pleas',
  'kid',
  'clean',
  'toy',
  'stop',
  'dig',
  'yard',
  'mother',
  'said',
  'mr',
  'mr',
  'previou',
  'owner',
  'alway',
  'let',
  'kid',
  'tri',
  'dig',
  'fossil',
  'yard',
  'laugh',
  'said',
  'mr',
  'mr',
  'want',
  'kid',
  'dig',
  'play',
  'yard',
  'start',
  'bike',
  'driveway',
  'camera',
  'face',
  'front',
  'hous',
  'saw',
  'would',
  'ride',
  'driveway',
  'yard',
  'also',
  'start',
  'draw',
  'chalk',
  'went',
  'neighbor',
  'hous',
  'let',
  'know',
  'want',
  'kid',
  'play',
  'driveway',
  'yard',
  'draw',
  'chalk',
  'neighbor',
  'said',
  'mr',
  'mr',
  'alway',
  'let',
  'explain',
  'mr',
  'mr',
  'want',
  'also',
  'follow',
  'letter',
  'neighbor',
  'inform',
  'kid',
  'allow',
  'play',
  'dig',
  'draw',
  'properti',
  'sent',
  'certifi',
  'mail',
  'fast',
  'forward',
  'sunday',
  'hous',
  'garag',
  'cut',
  'wood',
  'project',
  'pull',
  'truck',
  'garag',
  'could',
  'work',
  'minut',
  'hear',
  'neighbor',
  'kid',
  'laugh',
  'driveway',
  'went',
  'see',
  'ride',
  'bike',
  'driveway',
  'told',
  'pleas',
  'ride',
  'bike',
  'driveway',
  'go',
  'home',
  'five',
  'minut',
  'said',
  'heard',
  'kid',
  'heard',
  'scream',
  'one',
  'kid',
  'rode',
  'bike',
  'straight',
  'truck',
  'neighbor',
  'came',
  'scream',
  'accus',
  'caus',
  'kid',
  'told',
  'true',
  'kid',
  'rode',
  'right',
  'car',
  'came',
  'see',
  'commot',
  'neighbor',
  'start',
  'scream',
  'would',
  'regret',
  'last',
  'night',
  'father',
  'came',
  'hous',
  'said',
  'respons',
  'medic',
  'bill',
  'kid',
  'get',
  'hurt',
  'told',
  'respons',
  'kid',
  'even',
  'yard',
  'aita',
  'pay',
  'medic',
  'bill',
  '*',
  '*',
  'updat',
  '*',
  '*',
  '*',
  '*',
  'read',
  'everi',
  'comment',
  'decid',
  'get',
  'proactiv',
  'view',
  'camera',
  'footag',
  'day',
  'incid',
  'show',
  'camera',
  'tell',
  'kid',
  'go',
  'home',
  'play',
  'driveway',
  'show',
  'kid',
  'ride',
  'bike',
  'driveway',
  'unfortun',
  'way',
  'truck',
  'park',
  'pick',
  'kid',
  'ride',
  'pick',
  'sound',
  'video',
  'howev',
  'pick',
  'kid',
  'tell',
  'mom',
  'kid',
  'rode',
  'truck',
  'call',
  'homeown',
  'insur',
  'compani',
  'inform',
  'incid',
  'agent',
  'deal',
  'ask',
  'us',
  'send',
  'copi',
  'certifi',
  'letterreceipt',
  'video',
  'incid',
  'say',
  'far',
  'insur',
  'concern',
  'call',
  'tri',
  'claim',
  'fight',
  'suggest',
  'go',
  'polic',
  'went',
  'afternoon',
  'took',
  'copi',
  'letter',
  'video',
  'show',
  'offic',
  'took',
  'report',
  'said',
  'neighbor',
  'fairli',
  'warn',
  'welcom',
  'properti',
  'ask',
  'want',
  'trespass',
  'said',
  'ye',
  'offic',
  'said',
  'anoth',
  'patrol',
  'offic',
  'would',
  'go',
  'afternoon',
  'speak',
  'famili',
  'let',
  'know',
  'trespass',
  'properti',
  'polic',
  'left',
  'father',
  'went',
  'profan',
  'lace',
  'tirad',
  'yard',
  'call',
  'choic',
  'name',
  'video',
  'record',
  'camera',
  'get',
  'new',
  'camera',
  'show',
  'portion',
  'driveway',
  '*',
  '*',
  '&',
  'xb',
  '&',
  'xb',
  '&',
  'xb',
  'bought_new',
  'new_hous',
  'hous_last',
  'last_year',
  'year_first',
  'first_view',
  'view_hous',
  'hous_notic',
  'notic_bike',
  'bike_children',
  'children_toy',
  'toy_driveway',
  'driveway_side',
  'side_yard',
  'yard_final',
  'final_walkthrough',
  'walkthrough_sign',
  'sign_final',
  'final_document',
  'document_got',
  'got_key',
  'key_notic',
  'notic_kid',
  'kid_driveway',
  'driveway_color',
  'color_sidewalk',
  'sidewalk_chalk',
  'chalk_ride',
  'ride_scooter',
  'scooter_bike',
  'bike_introduc',
  'introduc_kid',
  'kid_ask',
  'ask_live',
  'live_point',
  'point_hous',
  'hous_next',
  'next_door',
  'door_walkthrough',
  'walkthrough_went',
  'went_hous',
  'hous_kid',
  'kid_point',
  'point_introduc',
  'introduc_parent',
  'parent_let',
  'let_know',
  'know_buy',
  'buy_hous',
  'hous_would',
  'would_move',
  'move_also',
  'also_mention',
  'mention_truck',
  'truck_come',
  'come_us',
  'us_move',
  'move_thing',
  'thing_safe',
  'safe_kid',
  'kid_driveway',
  'driveway_fine',
  'fine_move',
  'move_kid',
  'kid_play',
  'play_driveway',
  'driveway_still',
  'still_leav',
  'leav_toy',
  'toy_dig',
  'dig_side',
  'side_yard',
  'yard_went',
  'went_ask',
  'ask_neighbor',
  'neighbor_pleas',
  'pleas_kid',
  'kid_clean',
  'clean_toy',
  'toy_stop',
  'stop_dig',
  'dig_yard',
  'yard_mother',
  'mother_said',
  'said_mr',
  'mr_mr',
  'mr_previou',
  'previou_owner',
  'owner_alway',
  'alway_let',
  'let_kid',
  'kid_tri',
  'tri_dig',
  'dig_fossil',
  'fossil_yard',
  'yard_laugh',
  'laugh_said',
  'said_mr',
  'mr_mr',
  'mr_want',
  'want_kid',
  'kid_dig',
  'dig_play',
  'play_yard',
  'yard_start',
  'start_bike',
  'bike_driveway',
  'driveway_camera',
  'camera_face',
  'face_front',
  'front_hous',
  'hous_saw',
  'saw_would',
  'would_ride',
  'ride_driveway',
  'driveway_yard',
  'yard_also',
  'also_start',
  'start_draw',
  'draw_chalk',
  'chalk_went',
  'went_neighbor',
  'neighbor_hous',
  'hous_let',
  'let_know',
  'know_want',
  'want_kid',
  'kid_play',
  'play_driveway',
  'driveway_yard',
  'yard_draw',
  'draw_chalk',
  'chalk_neighbor',
  'neighbor_said',
  'said_mr',
  'mr_mr',
  'mr_alway',
  'alway_let',
  'let_explain',
  'explain_mr',
  'mr_mr',
  'mr_want',
  'want_also',
  'also_follow',
  'follow_letter',
  'letter_neighbor',
  'neighbor_inform',
  'inform_kid',
  'kid_allow',
  'allow_play',
  'play_dig',
  'dig_draw',
  'draw_properti',
  'properti_sent',
  'sent_certifi',
  'certifi_mail',
  'mail_fast',
  'fast_forward',
  'forward_sunday',
  'sunday_hous',
  'hous_garag',
  'garag_cut',
  'cut_wood',
  'wood_project',
  'project_pull',
  'pull_truck',
  'truck_garag',
  'garag_could',
  'could_work',
  'work_minut',
  'minut_hear',
  'hear_neighbor',
  'neighbor_kid',
  'kid_laugh',
  'laugh_driveway',
  'driveway_went',
  'went_see',
  'see_ride',
  'ride_bike',
  'bike_driveway',
  'driveway_told',
  'told_pleas',
  'pleas_ride',
  'ride_bike',
  'bike_driveway',
  'driveway_go',
  'go_home',
  'home_five',
  'five_minut',
  'minut_said',
  'said_heard',
  'heard_kid',
  'kid_heard',
  'heard_scream',
  'scream_one',
  'one_kid',
  'kid_rode',
  'rode_bike',
  'bike_straight',
  'straight_truck',
  'truck_neighbor',
  'neighbor_came',
  'came_scream',
  'scream_accus',
  'accus_caus',
  'caus_kid',
  'kid_told',
  'told_true',
  'true_kid',
  'kid_rode',
  'rode_right',
  'right_car',
  'car_came',
  'came_see',
  'see_commot',
  'commot_neighbor',
  'neighbor_start',
  'start_scream',
  'scream_would',
  'would_regret',
  'regret_last',
  'last_night',
  'night_father',
  'father_came',
  'came_hous',
  'hous_said',
  'said_respons',
  'respons_medic',
  'medic_bill',
  'bill_kid',
  'kid_get',
  'get_hurt',
  'hurt_told',
  'told_respons',
  'respons_kid',
  'kid_even',
  'even_yard',
  'yard_aita',
  'aita_pay',
  'pay_medic',
  'medic_bill',
  'bill_*',
  '*_*',
  '*_updat',
  'updat_*',
  '*_*',
  '*_*',
  '*_*',
  '*_read',
  'read_everi',
  'everi_comment',
  'comment_decid',
  'decid_get',
  'get_proactiv',
  'proactiv_view',
  'view_camera',
  'camera_footag',
  'footag_day',
  'day_incid',
  'incid_show',
  'show_camera',
  'camera_tell',
  'tell_kid',
  'kid_go',
  'go_home',
  'home_play',
  'play_driveway',
  'driveway_show',
  'show_kid',
  'kid_ride',
  'ride_bike',
  'bike_driveway',
  'driveway_unfortun',
  'unfortun_way',
  'way_truck',
  'truck_park',
  'park_pick',
  'pick_kid',
  'kid_ride',
  'ride_pick',
  'pick_sound',
  'sound_video',
  'video_howev',
  'howev_pick',
  'pick_kid',
  'kid_tell',
  'tell_mom',
  'mom_kid',
  'kid_rode',
  'rode_truck',
  'truck_call',
  'call_homeown',
  'homeown_insur',
  'insur_compani',
  'compani_inform',
  'inform_incid',
  'incid_agent',
  'agent_deal',
  'deal_ask',
  'ask_us',
  'us_send',
  'send_copi',
  'copi_certifi',
  'certifi_letterreceipt',
  'letterreceipt_video',
  'video_incid',
  'incid_say',
  'say_far',
  'far_insur',
  'insur_concern',
  'concern_call',
  'call_tri',
  'tri_claim',
  'claim_fight',
  'fight_suggest',
  'suggest_go',
  'go_polic',
  'polic_went',
  'went_afternoon',
  'afternoon_took',
  'took_copi',
  'copi_letter',
  'letter_video',
  'video_show',
  'show_offic',
  'offic_took',
  'took_report',
  'report_said',
  'said_neighbor',
  'neighbor_fairli',
  'fairli_warn',
  'warn_welcom',
  'welcom_properti',
  'properti_ask',
  'ask_want',
  'want_trespass',
  'trespass_said',
  'said_ye',
  'ye_offic',
  'offic_said',
  'said_anoth',
  'anoth_patrol',
  'patrol_offic',
  'offic_would',
  'would_go',
  'go_afternoon',
  'afternoon_speak',
  'speak_famili',
  'famili_let',
  'let_know',
  'know_trespass',
  'trespass_properti',
  'properti_polic',
  'polic_left',
  'left_father',
  'father_went',
  'went_profan',
  'profan_lace',
  'lace_tirad',
  'tirad_yard',
  'yard_call',
  'call_choic',
  'choic_name',
  'name_video',
  'video_record',
  'record_camera',
  'camera_get',
  'get_new',
  'new_camera',
  'camera_show',
  'show_portion',
  'portion_driveway',
  'driveway_*',
  '*_*',
  '*_&',
  '&_xb',
  'xb_&',
  '&_xb',
  'xb_&',
  '&_xb',
  'bought_new_hous',
  'new_hous_last',
  'hous_last_year',
  'last_year_first',
  'year_first_view',
  'first_view_hous',
  'view_hous_notic',
  'hous_notic_bike',
  'notic_bike_children',
  'bike_children_toy',
  'children_toy_driveway',
  'toy_driveway_side',
  'driveway_side_yard',
  'side_yard_final',
  'yard_final_walkthrough',
  'final_walkthrough_sign',
  'walkthrough_sign_final',
  'sign_final_document',
  'final_document_got',
  'document_got_key',
  'got_key_notic',
  'key_notic_kid',
  'notic_kid_driveway',
  'kid_driveway_color',
  'driveway_color_sidewalk',
  'color_sidewalk_chalk',
  'sidewalk_chalk_ride',
  'chalk_ride_scooter',
  'ride_scooter_bike',
  'scooter_bike_introduc',
  'bike_introduc_kid',
  'introduc_kid_ask',
  'kid_ask_live',
  'ask_live_point',
  'live_point_hous',
  'point_hous_next',
  'hous_next_door',
  'next_door_walkthrough',
  'door_walkthrough_went',
  'walkthrough_went_hous',
  'went_hous_kid',
  'hous_kid_point',
  'kid_point_introduc',
  'point_introduc_parent',
  'introduc_parent_let',
  'parent_let_know',
  'let_know_buy',
  'know_buy_hous',
  'buy_hous_would',
  'hous_would_move',
  'would_move_also',
  'move_also_mention',
  'also_mention_truck',
  'mention_truck_come',
  'truck_come_us',
  'come_us_move',
  'us_move_thing',
  'move_thing_safe',
  'thing_safe_kid',
  'safe_kid_driveway',
  'kid_driveway_fine',
  'driveway_fine_move',
  'fine_move_kid',
  'move_kid_play',
  'kid_play_driveway',
  'play_driveway_still',
  'driveway_still_leav',
  'still_leav_toy',
  'leav_toy_dig',
  'toy_dig_side',
  'dig_side_yard',
  'side_yard_went',
  'yard_went_ask',
  'went_ask_neighbor',
  'ask_neighbor_pleas',
  'neighbor_pleas_kid',
  'pleas_kid_clean',
  'kid_clean_toy',
  'clean_toy_stop',
  'toy_stop_dig',
  'stop_dig_yard',
  'dig_yard_mother',
  'yard_mother_said',
  'mother_said_mr',
  'said_mr_mr',
  'mr_mr_previou',
  'mr_previou_owner',
  'previou_owner_alway',
  'owner_alway_let',
  'alway_let_kid',
  'let_kid_tri',
  'kid_tri_dig',
  'tri_dig_fossil',
  'dig_fossil_yard',
  'fossil_yard_laugh',
  'yard_laugh_said',
  'laugh_said_mr',
  'said_mr_mr',
  'mr_mr_want',
  'mr_want_kid',
  'want_kid_dig',
  'kid_dig_play',
  'dig_play_yard',
  'play_yard_start',
  'yard_start_bike',
  'start_bike_driveway',
  'bike_driveway_camera',
  'driveway_camera_face',
  'camera_face_front',
  'face_front_hous',
  'front_hous_saw',
  'hous_saw_would',
  'saw_would_ride',
  'would_ride_driveway',
  'ride_driveway_yard',
  'driveway_yard_also',
  'yard_also_start',
  'also_start_draw',
  'start_draw_chalk',
  'draw_chalk_went',
  'chalk_went_neighbor',
  'went_neighbor_hous',
  'neighbor_hous_let',
  'hous_let_know',
  'let_know_want',
  'know_want_kid',
  'want_kid_play',
  'kid_play_driveway',
  'play_driveway_yard',
  'driveway_yard_draw',
  'yard_draw_chalk',
  'draw_chalk_neighbor',
  'chalk_neighbor_said',
  'neighbor_said_mr',
  'said_mr_mr',
  'mr_mr_alway',
  'mr_alway_let',
  'alway_let_explain',
  'let_explain_mr',
  'explain_mr_mr',
  'mr_mr_want',
  'mr_want_also',
  'want_also_follow',
  'also_follow_letter',
  'follow_letter_neighbor',
  'letter_neighbor_inform',
  'neighbor_inform_kid',
  'inform_kid_allow',
  'kid_allow_play',
  'allow_play_dig',
  'play_dig_draw',
  'dig_draw_properti',
  'draw_properti_sent',
  'properti_sent_certifi',
  'sent_certifi_mail',
  'certifi_mail_fast',
  'mail_fast_forward',
  'fast_forward_sunday',
  'forward_sunday_hous',
  'sunday_hous_garag',
  'hous_garag_cut',
  'garag_cut_wood',
  'cut_wood_project',
  'wood_project_pull',
  'project_pull_truck',
  'pull_truck_garag',
  'truck_garag_could',
  'garag_could_work',
  'could_work_minut',
  'work_minut_hear',
  'minut_hear_neighbor',
  'hear_neighbor_kid',
  'neighbor_kid_laugh',
  'kid_laugh_driveway',
  'laugh_driveway_went',
  'driveway_went_see',
  'went_see_ride',
  'see_ride_bike',
  'ride_bike_driveway',
  'bike_driveway_told',
  'driveway_told_pleas',
  'told_pleas_ride',
  'pleas_ride_bike',
  'ride_bike_driveway',
  'bike_driveway_go',
  'driveway_go_home',
  'go_home_five',
  'home_five_minut',
  'five_minut_said',
  'minut_said_heard',
  'said_heard_kid',
  'heard_kid_heard',
  'kid_heard_scream',
  'heard_scream_one',
  'scream_one_kid',
  'one_kid_rode',
  'kid_rode_bike',
  'rode_bike_straight',
  'bike_straight_truck',
  'straight_truck_neighbor',
  'truck_neighbor_came',
  'neighbor_came_scream',
  'came_scream_accus',
  'scream_accus_caus',
  'accus_caus_kid',
  'caus_kid_told',
  'kid_told_true',
  'told_true_kid',
  'true_kid_rode',
  'kid_rode_right',
  'rode_right_car',
  'right_car_came',
  'car_came_see',
  'came_see_commot',
  'see_commot_neighbor',
  'commot_neighbor_start',
  'neighbor_start_scream',
  'start_scream_would',
  'scream_would_regret',
  'would_regret_last',
  'regret_last_night',
  'last_night_father',
  'night_father_came',
  'father_came_hous',
  'came_hous_said',
  'hous_said_respons',
  'said_respons_medic',
  'respons_medic_bill',
  'medic_bill_kid',
  'bill_kid_get',
  'kid_get_hurt',
  'get_hurt_told',
  'hurt_told_respons',
  'told_respons_kid',
  'respons_kid_even',
  'kid_even_yard',
  'even_yard_aita',
  'yard_aita_pay',
  'aita_pay_medic',
  ...],
 ['hear',
  'husband',
  'sister',
  'nicol',
  'difficult',
  'upbring',
  'parent',
  'kick',
  'disown',
  'cut',
  'financi',
  'support',
  'refus',
  'marri',
  'famili',
  'friend',
  'instead',
  'went',
  'live',
  'late',
  'boyfriend',
  'pass',
  'away',
  'shortli',
  'son',
  'born',
  'inlaw',
  'kept',
  'pressur',
  'nicol',
  'let',
  'meet',
  'grandkid',
  'harass',
  'point',
  'got',
  'restrain',
  'order',
  'stop',
  'includ',
  'husband',
  'complain',
  'horribl',
  'thing',
  'said',
  'broke',
  'famili',
  'rob',
  'grandchild',
  'husband',
  'contact',
  'nicol',
  'start',
  'offer',
  'babysit',
  'son',
  'final',
  'found',
  'found',
  'new',
  'job',
  'grate',
  'howev',
  'eversinc',
  'start',
  'babysit',
  'nephew',
  'hed',
  'wait',
  'til',
  'drop',
  'nephew',
  'hed',
  'get',
  'car',
  'drive',
  'inlaw',
  'hous',
  'could',
  'see',
  'hed',
  'stay',
  'gone',
  'come',
  'back',
  'minut',
  'nicol',
  'expect',
  'arriv',
  'wan',
  'na',
  'say',
  'anyth',
  'first',
  'stand',
  'think',
  'betray',
  'hurt',
  'nicol',
  'would',
  'feel',
  'found',
  'told',
  'husband',
  'wrong',
  'sinc',
  'nephew',
  'mom',
  'consent',
  'go',
  'inlaw',
  'hous',
  'told',
  'nephew',
  'sake',
  'told',
  'shut',
  'stay',
  'famili',
  'affair',
  'caus',
  'argument',
  'us',
  'told',
  'stop',
  'id',
  'tell',
  'nicol',
  'said',
  'explain',
  'think',
  'fair',
  'nicol',
  'punish',
  'parent',
  'like',
  'ban',
  'see',
  'grandchild',
  '-',
  'told',
  'seriou',
  'caus',
  'restrain',
  'order',
  'nephew',
  'insist',
  'id',
  'tell',
  'stop',
  'said',
  'id',
  'cost',
  'lose',
  'nephew',
  'call',
  'bitter',
  'cruel',
  'even',
  'entertain',
  'idea',
  'told',
  'hell',
  'let',
  'inlaw',
  'know',
  'happi',
  'urg',
  'mind',
  'busi',
  'stop',
  'tri',
  'divid',
  'famili',
  'condon',
  'nicol',
  'unjustifi',
  'hatr',
  'parent',
  'hear_husband',
  'husband_sister',
  'sister_nicol',
  'nicol_difficult',
  'difficult_upbring',
  'upbring_parent',
  'parent_kick',
  'kick_disown',
  'disown_cut',
  'cut_financi',
  'financi_support',
  'support_refus',
  'refus_marri',
  'marri_famili',
  'famili_friend',
  'friend_instead',
  'instead_went',
  'went_live',
  'live_late',
  'late_boyfriend',
  'boyfriend_pass',
  'pass_away',
  'away_shortli',
  'shortli_son',
  'son_born',
  'born_inlaw',
  'inlaw_kept',
  'kept_pressur',
  'pressur_nicol',
  'nicol_let',
  'let_meet',
  'meet_grandkid',
  'grandkid_harass',
  'harass_point',
  'point_got',
  'got_restrain',
  'restrain_order',
  'order_stop',
  'stop_includ',
  'includ_husband',
  'husband_complain',
  'complain_horribl',
  'horribl_thing',
  'thing_said',
  'said_broke',
  'broke_famili',
  'famili_rob',
  'rob_grandchild',
  'grandchild_husband',
  'husband_contact',
  'contact_nicol',
  'nicol_start',
  'start_offer',
  'offer_babysit',
  'babysit_son',
  'son_final',
  'final_found',
  'found_found',
  'found_new',
  'new_job',
  'job_grate',
  'grate_howev',
  'howev_eversinc',
  'eversinc_start',
  'start_babysit',
  'babysit_nephew',
  'nephew_hed',
  'hed_wait',
  'wait_til',
  'til_drop',
  'drop_nephew',
  'nephew_hed',
  'hed_get',
  'get_car',
  'car_drive',
  'drive_inlaw',
  'inlaw_hous',
  'hous_could',
  'could_see',
  'see_hed',
  'hed_stay',
  'stay_gone',
  'gone_come',
  'come_back',
  'back_minut',
  'minut_nicol',
  'nicol_expect',
  'expect_arriv',
  'arriv_wan',
  'wan_na',
  'na_say',
  'say_anyth',
  'anyth_first',
  'first_stand',
  'stand_think',
  'think_betray',
  'betray_hurt',
  'hurt_nicol',
  'nicol_would',
  'would_feel',
  'feel_found',
  'found_told',
  'told_husband',
  'husband_wrong',
  'wrong_sinc',
  'sinc_nephew',
  'nephew_mom',
  'mom_consent',
  'consent_go',
  'go_inlaw',
  'inlaw_hous',
  'hous_told',
  'told_nephew',
  'nephew_sake',
  'sake_told',
  'told_shut',
  'shut_stay',
  'stay_famili',
  'famili_affair',
  'affair_caus',
  'caus_argument',
  'argument_us',
  'us_told',
  'told_stop',
  'stop_id',
  'id_tell',
  'tell_nicol',
  'nicol_said',
  'said_explain',
  'explain_think',
  'think_fair',
  'fair_nicol',
  'nicol_punish',
  'punish_parent',
  'parent_like',
  'like_ban',
  'ban_see',
  'see_grandchild',
  'grandchild_-',
  '-_told',
  'told_seriou',
  'seriou_caus',
  'caus_restrain',
  'restrain_order',
  'order_nephew',
  'nephew_insist',
  'insist_id',
  'id_tell',
  'tell_stop',
  'stop_said',
  'said_id',
  'id_cost',
  'cost_lose',
  'lose_nephew',
  'nephew_call',
  'call_bitter',
  'bitter_cruel',
  'cruel_even',
  'even_entertain',
  'entertain_idea',
  'idea_told',
  'told_hell',
  'hell_let',
  'let_inlaw',
  'inlaw_know',
  'know_happi',
  'happi_urg',
  'urg_mind',
  'mind_busi',
  'busi_stop',
  'stop_tri',
  'tri_divid',
  'divid_famili',
  'famili_condon',
  'condon_nicol',
  'nicol_unjustifi',
  'unjustifi_hatr',
  'hatr_parent',
  'hear_husband_sister',
  'husband_sister_nicol',
  'sister_nicol_difficult',
  'nicol_difficult_upbring',
  'difficult_upbring_parent',
  'upbring_parent_kick',
  'parent_kick_disown',
  'kick_disown_cut',
  'disown_cut_financi',
  'cut_financi_support',
  'financi_support_refus',
  'support_refus_marri',
  'refus_marri_famili',
  'marri_famili_friend',
  'famili_friend_instead',
  'friend_instead_went',
  'instead_went_live',
  'went_live_late',
  'live_late_boyfriend',
  'late_boyfriend_pass',
  'boyfriend_pass_away',
  'pass_away_shortli',
  'away_shortli_son',
  'shortli_son_born',
  'son_born_inlaw',
  'born_inlaw_kept',
  'inlaw_kept_pressur',
  'kept_pressur_nicol',
  'pressur_nicol_let',
  'nicol_let_meet',
  'let_meet_grandkid',
  'meet_grandkid_harass',
  'grandkid_harass_point',
  'harass_point_got',
  'point_got_restrain',
  'got_restrain_order',
  'restrain_order_stop',
  'order_stop_includ',
  'stop_includ_husband',
  'includ_husband_complain',
  'husband_complain_horribl',
  'complain_horribl_thing',
  'horribl_thing_said',
  'thing_said_broke',
  'said_broke_famili',
  'broke_famili_rob',
  'famili_rob_grandchild',
  'rob_grandchild_husband',
  'grandchild_husband_contact',
  'husband_contact_nicol',
  'contact_nicol_start',
  'nicol_start_offer',
  'start_offer_babysit',
  'offer_babysit_son',
  'babysit_son_final',
  'son_final_found',
  'final_found_found',
  'found_found_new',
  'found_new_job',
  'new_job_grate',
  'job_grate_howev',
  'grate_howev_eversinc',
  'howev_eversinc_start',
  'eversinc_start_babysit',
  'start_babysit_nephew',
  'babysit_nephew_hed',
  'nephew_hed_wait',
  'hed_wait_til',
  'wait_til_drop',
  'til_drop_nephew',
  'drop_nephew_hed',
  'nephew_hed_get',
  'hed_get_car',
  'get_car_drive',
  'car_drive_inlaw',
  'drive_inlaw_hous',
  'inlaw_hous_could',
  'hous_could_see',
  'could_see_hed',
  'see_hed_stay',
  'hed_stay_gone',
  'stay_gone_come',
  'gone_come_back',
  'come_back_minut',
  'back_minut_nicol',
  'minut_nicol_expect',
  'nicol_expect_arriv',
  'expect_arriv_wan',
  'arriv_wan_na',
  'wan_na_say',
  'na_say_anyth',
  'say_anyth_first',
  'anyth_first_stand',
  'first_stand_think',
  'stand_think_betray',
  'think_betray_hurt',
  'betray_hurt_nicol',
  'hurt_nicol_would',
  'nicol_would_feel',
  'would_feel_found',
  'feel_found_told',
  'found_told_husband',
  'told_husband_wrong',
  'husband_wrong_sinc',
  'wrong_sinc_nephew',
  'sinc_nephew_mom',
  'nephew_mom_consent',
  'mom_consent_go',
  'consent_go_inlaw',
  'go_inlaw_hous',
  'inlaw_hous_told',
  'hous_told_nephew',
  'told_nephew_sake',
  'nephew_sake_told',
  'sake_told_shut',
  'told_shut_stay',
  'shut_stay_famili',
  'stay_famili_affair',
  'famili_affair_caus',
  'affair_caus_argument',
  'caus_argument_us',
  'argument_us_told',
  'us_told_stop',
  'told_stop_id',
  'stop_id_tell',
  'id_tell_nicol',
  'tell_nicol_said',
  'nicol_said_explain',
  'said_explain_think',
  'explain_think_fair',
  'think_fair_nicol',
  'fair_nicol_punish',
  'nicol_punish_parent',
  'punish_parent_like',
  'parent_like_ban',
  'like_ban_see',
  'ban_see_grandchild',
  'see_grandchild_-',
  'grandchild_-_told',
  '-_told_seriou',
  'told_seriou_caus',
  'seriou_caus_restrain',
  'caus_restrain_order',
  'restrain_order_nephew',
  'order_nephew_insist',
  'nephew_insist_id',
  'insist_id_tell',
  'id_tell_stop',
  'tell_stop_said',
  'stop_said_id',
  'said_id_cost',
  'id_cost_lose',
  'cost_lose_nephew',
  'lose_nephew_call',
  'nephew_call_bitter',
  'call_bitter_cruel',
  'bitter_cruel_even',
  'cruel_even_entertain',
  'even_entertain_idea',
  'entertain_idea_told',
  'idea_told_hell',
  'told_hell_let',
  'hell_let_inlaw',
  'let_inlaw_know',
  'inlaw_know_happi',
  'know_happi_urg',
  'happi_urg_mind',
  'urg_mind_busi',
  'mind_busi_stop',
  'busi_stop_tri',
  'stop_tri_divid',
  'tri_divid_famili',
  'divid_famili_condon',
  'famili_condon_nicol',
  'condon_nicol_unjustifi',
  'nicol_unjustifi_hatr',
  'unjustifi_hatr_parent'],
 ['singl',
  'mother',
  'daughter',
  'ami',
  'came',
  'year',
  'ago',
  'marri',
  'wife',
  'jenna',
  'last',
  'year',
  'daughter',
  'nora',
  'live',
  'togeth',
  'full',
  'custodi',
  'daughter',
  'kind',
  'hard',
  'adjust',
  'second',
  'mom',
  'got',
  'along',
  'well',
  'girl',
  'birthday',
  'close',
  'two',
  'day',
  'apart',
  'decid',
  'joint',
  'birthday',
  'parti',
  'sinc',
  'nora',
  'hard',
  'time',
  'make',
  'new',
  'friend',
  'move',
  'us',
  'shi',
  'famili',
  'live',
  'countri',
  'gift',
  'sent',
  'week',
  'earli',
  'huge',
  'bag',
  'least',
  'gift',
  'parti',
  'nice',
  'open',
  'bag',
  'night',
  'everyon',
  'left',
  'jenna',
  'hand',
  'present',
  'took',
  'gift',
  'row',
  'ami',
  'check',
  'bag',
  'froze',
  'see',
  'one',
  'gift',
  'nora',
  'parent',
  'pretend',
  'big',
  'deal',
  'open',
  'present',
  'saw',
  'eye',
  'drop',
  '$',
  'tumbler',
  'walmart',
  'sound',
  'ungrat',
  'ami',
  'gift',
  'much',
  'expens',
  'lot',
  'gift',
  'card',
  '$',
  'new',
  'phone',
  'limited-edit',
  'funko',
  'design',
  'cloth',
  'lot',
  'card',
  'wish',
  'happi',
  'birthday',
  'needless',
  'say',
  'blew',
  'famili',
  'chat',
  'call',
  'parent',
  'sibl',
  'extend',
  'famili',
  'sent',
  'gift',
  'consid',
  'nora',
  'parent',
  'cheap',
  'gift',
  'one',
  'took',
  'serious',
  'sinc',
  '*',
  'duti',
  'give',
  'gift',
  'someon',
  'els',
  'kid',
  '*',
  '*',
  'ami',
  'deserv',
  'sinc',
  'even',
  'throw',
  'birthday',
  'parti',
  '*',
  'emphas',
  'jenna',
  'nora',
  'problem',
  'nora',
  'clearli',
  'hurt',
  'sinc',
  'first',
  'time',
  'famili',
  'left',
  'night',
  'ask',
  'ami',
  'share',
  'gift',
  'stepsist',
  'coupl',
  'gift',
  'card',
  'new',
  'cloth',
  'ami',
  'refus',
  'surpris',
  'sinc',
  'never',
  'problem',
  'share',
  'even',
  'though',
  'nora',
  'bff',
  'usual',
  'get',
  'along',
  'ask',
  'ami',
  'start',
  'cri',
  'say',
  'never',
  'want',
  'joint',
  'birthday',
  'parti',
  'forc',
  'share',
  'everyth',
  'nora',
  'share',
  'room',
  'space',
  'make',
  'sure',
  'theyr',
  'invit',
  'parti',
  'sleepov',
  'nora',
  'left',
  'invit',
  'either',
  'goe',
  'ami',
  'state',
  'least',
  'want',
  'gift',
  'alon',
  'scold',
  'selfish',
  'stepsist',
  'ground',
  'took',
  'coupl',
  'present',
  'give',
  'nora',
  'turn',
  'want',
  'problem',
  'ami',
  'felt',
  'like',
  'piti',
  'sinc',
  'ami',
  'cold',
  'us',
  'want',
  'two',
  'girl',
  'closer',
  'joint',
  'parti',
  'thing',
  'aita',
  'clarif',
  'jenna',
  'bought',
  'gift',
  'girl',
  'tablet',
  'well',
  'friend',
  'nora',
  'also',
  'receiv',
  'gift',
  'extend',
  'famili',
  'sent',
  'ami',
  'well',
  'singl_mother',
  'mother_daughter',
  'daughter_ami',
  'ami_came',
  'came_year',
  'year_ago',
  'ago_marri',
  'marri_wife',
  'wife_jenna',
  'jenna_last',
  'last_year',
  'year_daughter',
  'daughter_nora',
  'nora_live',
  'live_togeth',
  'togeth_full',
  'full_custodi',
  'custodi_daughter',
  'daughter_kind',
  'kind_hard',
  'hard_adjust',
  'adjust_second',
  'second_mom',
  'mom_got',
  'got_along',
  'along_well',
  'well_girl',
  'girl_birthday',
  'birthday_close',
  'close_two',
  'two_day',
  'day_apart',
  'apart_decid',
  'decid_joint',
  'joint_birthday',
  'birthday_parti',
  'parti_sinc',
  'sinc_nora',
  'nora_hard',
  'hard_time',
  'time_make',
  'make_new',
  'new_friend',
  'friend_move',
  'move_us',
  'us_shi',
  'shi_famili',
  'famili_live',
  'live_countri',
  'countri_gift',
  'gift_sent',
  'sent_week',
  'week_earli',
  'earli_huge',
  'huge_bag',
  'bag_least',
  'least_gift',
  'gift_parti',
  'parti_nice',
  'nice_open',
  'open_bag',
  'bag_night',
  'night_everyon',
  'everyon_left',
  'left_jenna',
  'jenna_hand',
  'hand_present',
  'present_took',
  'took_gift',
  'gift_row',
  'row_ami',
  'ami_check',
  'check_bag',
  'bag_froze',
  'froze_see',
  'see_one',
  'one_gift',
  'gift_nora',
  'nora_parent',
  'parent_pretend',
  'pretend_big',
  'big_deal',
  'deal_open',
  'open_present',
  'present_saw',
  'saw_eye',
  'eye_drop',
  'drop_$',
  '$_tumbler',
  'tumbler_walmart',
  'walmart_sound',
  'sound_ungrat',
  'ungrat_ami',
  'ami_gift',
  'gift_much',
  'much_expens',
  'expens_lot',
  'lot_gift',
  'gift_card',
  'card_$',
  '$_new',
  'new_phone',
  'phone_limited-edit',
  'limited-edit_funko',
  'funko_design',
  'design_cloth',
  'cloth_lot',
  'lot_card',
  'card_wish',
  'wish_happi',
  'happi_birthday',
  'birthday_needless',
  'needless_say',
  'say_blew',
  'blew_famili',
  'famili_chat',
  'chat_call',
  'call_parent',
  'parent_sibl',
  'sibl_extend',
  'extend_famili',
  'famili_sent',
  'sent_gift',
  'gift_consid',
  'consid_nora',
  'nora_parent',
  'parent_cheap',
  'cheap_gift',
  'gift_one',
  'one_took',
  'took_serious',
  'serious_sinc',
  'sinc_*',
  '*_duti',
  'duti_give',
  'give_gift',
  'gift_someon',
  'someon_els',
  'els_kid',
  'kid_*',
  '*_*',
  '*_ami',
  'ami_deserv',
  'deserv_sinc',
  'sinc_even',
  'even_throw',
  'throw_birthday',
  'birthday_parti',
  'parti_*',
  '*_emphas',
  'emphas_jenna',
  'jenna_nora',
  'nora_problem',
  'problem_nora',
  'nora_clearli',
  'clearli_hurt',
  'hurt_sinc',
  'sinc_first',
  'first_time',
  'time_famili',
  'famili_left',
  'left_night',
  'night_ask',
  'ask_ami',
  'ami_share',
  'share_gift',
  'gift_stepsist',
  'stepsist_coupl',
  'coupl_gift',
  'gift_card',
  'card_new',
  'new_cloth',
  'cloth_ami',
  'ami_refus',
  'refus_surpris',
  'surpris_sinc',
  'sinc_never',
  'never_problem',
  'problem_share',
  'share_even',
  'even_though',
  'though_nora',
  'nora_bff',
  'bff_usual',
  'usual_get',
  'get_along',
  'along_ask',
  'ask_ami',
  'ami_start',
  'start_cri',
  'cri_say',
  'say_never',
  'never_want',
  'want_joint',
  'joint_birthday',
  'birthday_parti',
  'parti_forc',
  'forc_share',
  'share_everyth',
  'everyth_nora',
  'nora_share',
  'share_room',
  'room_space',
  'space_make',
  'make_sure',
  'sure_theyr',
  'theyr_invit',
  'invit_parti',
  'parti_sleepov',
  'sleepov_nora',
  'nora_left',
  'left_invit',
  'invit_either',
  'either_goe',
  'goe_ami',
  'ami_state',
  'state_least',
  'least_want',
  'want_gift',
  'gift_alon',
  'alon_scold',
  'scold_selfish',
  'selfish_stepsist',
  'stepsist_ground',
  'ground_took',
  'took_coupl',
  'coupl_present',
  'present_give',
  'give_nora',
  'nora_turn',
  'turn_want',
  'want_problem',
  'problem_ami',
  'ami_felt',
  'felt_like',
  'like_piti',
  'piti_sinc',
  'sinc_ami',
  'ami_cold',
  'cold_us',
  'us_want',
  'want_two',
  'two_girl',
  'girl_closer',
  'closer_joint',
  'joint_parti',
  'parti_thing',
  'thing_aita',
  'aita_clarif',
  'clarif_jenna',
  'jenna_bought',
  'bought_gift',
  'gift_girl',
  'girl_tablet',
  'tablet_well',
  'well_friend',
  'friend_nora',
  'nora_also',
  'also_receiv',
  'receiv_gift',
  'gift_extend',
  'extend_famili',
  'famili_sent',
  'sent_ami',
  'ami_well',
  'singl_mother_daughter',
  'mother_daughter_ami',
  'daughter_ami_came',
  'ami_came_year',
  'came_year_ago',
  'year_ago_marri',
  'ago_marri_wife',
  'marri_wife_jenna',
  'wife_jenna_last',
  'jenna_last_year',
  'last_year_daughter',
  'year_daughter_nora',
  'daughter_nora_live',
  'nora_live_togeth',
  'live_togeth_full',
  'togeth_full_custodi',
  'full_custodi_daughter',
  'custodi_daughter_kind',
  'daughter_kind_hard',
  'kind_hard_adjust',
  'hard_adjust_second',
  'adjust_second_mom',
  'second_mom_got',
  'mom_got_along',
  'got_along_well',
  'along_well_girl',
  'well_girl_birthday',
  'girl_birthday_close',
  'birthday_close_two',
  'close_two_day',
  'two_day_apart',
  'day_apart_decid',
  'apart_decid_joint',
  'decid_joint_birthday',
  'joint_birthday_parti',
  'birthday_parti_sinc',
  'parti_sinc_nora',
  'sinc_nora_hard',
  'nora_hard_time',
  'hard_time_make',
  'time_make_new',
  'make_new_friend',
  'new_friend_move',
  'friend_move_us',
  'move_us_shi',
  'us_shi_famili',
  'shi_famili_live',
  'famili_live_countri',
  'live_countri_gift',
  'countri_gift_sent',
  'gift_sent_week',
  'sent_week_earli',
  'week_earli_huge',
  'earli_huge_bag',
  'huge_bag_least',
  'bag_least_gift',
  'least_gift_parti',
  'gift_parti_nice',
  'parti_nice_open',
  'nice_open_bag',
  'open_bag_night',
  'bag_night_everyon',
  'night_everyon_left',
  'everyon_left_jenna',
  'left_jenna_hand',
  'jenna_hand_present',
  'hand_present_took',
  'present_took_gift',
  'took_gift_row',
  'gift_row_ami',
  'row_ami_check',
  'ami_check_bag',
  'check_bag_froze',
  'bag_froze_see',
  'froze_see_one',
  'see_one_gift',
  'one_gift_nora',
  'gift_nora_parent',
  'nora_parent_pretend',
  'parent_pretend_big',
  'pretend_big_deal',
  'big_deal_open',
  'deal_open_present',
  'open_present_saw',
  'present_saw_eye',
  'saw_eye_drop',
  'eye_drop_$',
  'drop_$_tumbler',
  '$_tumbler_walmart',
  'tumbler_walmart_sound',
  'walmart_sound_ungrat',
  'sound_ungrat_ami',
  'ungrat_ami_gift',
  'ami_gift_much',
  'gift_much_expens',
  'much_expens_lot',
  'expens_lot_gift',
  'lot_gift_card',
  'gift_card_$',
  'card_$_new',
  '$_new_phone',
  'new_phone_limited-edit',
  'phone_limited-edit_funko',
  'limited-edit_funko_design',
  'funko_design_cloth',
  'design_cloth_lot',
  'cloth_lot_card',
  'lot_card_wish',
  'card_wish_happi',
  'wish_happi_birthday',
  'happi_birthday_needless',
  'birthday_needless_say',
  'needless_say_blew',
  'say_blew_famili',
  'blew_famili_chat',
  'famili_chat_call',
  'chat_call_parent',
  'call_parent_sibl',
  'parent_sibl_extend',
  'sibl_extend_famili',
  'extend_famili_sent',
  'famili_sent_gift',
  'sent_gift_consid',
  'gift_consid_nora',
  'consid_nora_parent',
  'nora_parent_cheap',
  'parent_cheap_gift',
  'cheap_gift_one',
  'gift_one_took',
  'one_took_serious',
  'took_serious_sinc',
  'serious_sinc_*',
  'sinc_*_duti',
  '*_duti_give',
  'duti_give_gift',
  'give_gift_someon',
  'gift_someon_els',
  'someon_els_kid',
  'els_kid_*',
  'kid_*_*',
  '*_*_ami',
  '*_ami_deserv',
  'ami_deserv_sinc',
  'deserv_sinc_even',
  'sinc_even_throw',
  'even_throw_birthday',
  'throw_birthday_parti',
  'birthday_parti_*',
  'parti_*_emphas',
  '*_emphas_jenna',
  'emphas_jenna_nora',
  'jenna_nora_problem',
  'nora_problem_nora',
  'problem_nora_clearli',
  'nora_clearli_hurt',
  'clearli_hurt_sinc',
  'hurt_sinc_first',
  'sinc_first_time',
  'first_time_famili',
  'time_famili_left',
  'famili_left_night',
  'left_night_ask',
  'night_ask_ami',
  'ask_ami_share',
  'ami_share_gift',
  'share_gift_stepsist',
  'gift_stepsist_coupl',
  'stepsist_coupl_gift',
  'coupl_gift_card',
  'gift_card_new',
  'card_new_cloth',
  'new_cloth_ami',
  'cloth_ami_refus',
  'ami_refus_surpris',
  'refus_surpris_sinc',
  'surpris_sinc_never',
  'sinc_never_problem',
  'never_problem_share',
  'problem_share_even',
  'share_even_though',
  'even_though_nora',
  'though_nora_bff',
  'nora_bff_usual',
  'bff_usual_get',
  'usual_get_along',
  'get_along_ask',
  'along_ask_ami',
  'ask_ami_start',
  'ami_start_cri',
  'start_cri_say',
  'cri_say_never',
  'say_never_want',
  'never_want_joint',
  'want_joint_birthday',
  'joint_birthday_parti',
  'birthday_parti_forc',
  'parti_forc_share',
  'forc_share_everyth',
  'share_everyth_nora',
  'everyth_nora_share',
  'nora_share_room',
  'share_room_space',
  'room_space_make',
  'space_make_sure',
  'make_sure_theyr',
  'sure_theyr_invit',
  'theyr_invit_parti',
  'invit_parti_sleepov',
  'parti_sleepov_nora',
  'sleepov_nora_left',
  'nora_left_invit',
  'left_invit_either',
  'invit_either_goe',
  'either_goe_ami',
  'goe_ami_state',
  'ami_state_least',
  'state_least_want',
  'least_want_gift',
  'want_gift_alon',
  'gift_alon_scold',
  'alon_scold_selfish',
  'scold_selfish_stepsist',
  'selfish_stepsist_ground',
  'stepsist_ground_took',
  'ground_took_coupl',
  'took_coupl_present',
  'coupl_present_give',
  'present_give_nora',
  'give_nora_turn',
  'nora_turn_want',
  'turn_want_problem',
  'want_problem_ami',
  'problem_ami_felt',
  'ami_felt_like',
  'felt_like_piti',
  'like_piti_sinc',
  'piti_sinc_ami',
  'sinc_ami_cold',
  'ami_cold_us',
  'cold_us_want',
  'us_want_two',
  'want_two_girl',
  'two_girl_closer',
  'girl_closer_joint',
  'closer_joint_parti',
  'joint_parti_thing',
  'parti_thing_aita',
  'thing_aita_clarif',
  'aita_clarif_jenna',
  'clarif_jenna_bought',
  'jenna_bought_gift',
  'bought_gift_girl',
  'gift_girl_tablet',
  'girl_tablet_well',
  'tablet_well_friend',
  'well_friend_nora',
  'friend_nora_also',
  'nora_also_receiv',
  'also_receiv_gift',
  'receiv_gift_extend',
  'gift_extend_famili',
  'extend_famili_sent',
  'famili_sent_ami',
  'sent_ami_well'],
 ['work',
  'tech',
  'consult',
  'job',
  'im',
  'woman',
  'team',
  'boss',
  'told',
  'come',
  'harsh',
  'client',
  'upbeat',
  'smile',
  'felt',
  'ick',
  'right',
  'away',
  'text',
  'group',
  'chat',
  'cowork',
  'without',
  'manag',
  'ask',
  'bossman',
  'ever',
  'told',
  'guy',
  'smile',
  'immedi',
  'round',
  'coupl',
  'cowork',
  'ask',
  'said',
  'point',
  'doubl',
  'standard',
  'cowork',
  'joke',
  'client',
  'right',
  'give',
  'anyth',
  'smile',
  'ask',
  'ever',
  'call',
  'harsh',
  'told',
  'boss',
  'told',
  'smile',
  'one',
  'cowork',
  'sent',
  'pictur',
  'girl',
  'pull',
  'silli',
  'face',
  'weird',
  'pinch',
  'smile',
  'bug-out',
  'eye',
  'say',
  'well',
  'bossman',
  'say',
  'get',
  'thought',
  'hilari',
  'decid',
  'actual',
  'anyway',
  'start',
  'smile',
  'around',
  'boss',
  'also',
  'bit',
  'stupidli',
  'keep',
  'mouth',
  'pinch',
  'tens',
  'gum',
  'display',
  'purpos',
  'pull',
  'chin',
  'back',
  'toward',
  'neck',
  'id',
  'get',
  'doubl',
  'chin',
  'never',
  'front',
  'actual',
  'client',
  'boss',
  'cowork',
  'joke',
  'boss',
  'kept',
  'look',
  'uncomfort',
  'ask',
  'meet',
  'week',
  'face',
  'pull',
  'said',
  'uhh',
  'face',
  'said',
  'one',
  'second',
  'ago',
  'cowork',
  'said',
  'smile',
  'get',
  'boss',
  'said',
  'look',
  'like',
  'pull',
  'face',
  'cowork',
  'pull',
  'phone',
  'pictur',
  'recent',
  'happi',
  'hour',
  'pull',
  'face',
  'make',
  'cowork',
  'laugh',
  'said',
  'dude',
  'hell',
  'wrong',
  'liter',
  'smile',
  'look',
  'pictur',
  'last',
  'friday',
  'cowork',
  'back',
  'say',
  'smile',
  'boss',
  'look',
  'kinda',
  'incredul',
  'clarifi',
  'someth',
  'make',
  'spontan',
  'laugh',
  'grin',
  'probabl',
  'look',
  'littl',
  'relax',
  'im',
  'put',
  'smile',
  'polit',
  'pose',
  'pictur',
  'guess',
  'smile',
  'tri',
  'polit',
  'let',
  'know',
  'come',
  'harsh',
  'meet',
  'anyway',
  'next',
  'one',
  'one',
  'meet',
  'boss',
  'said',
  'need',
  'chang',
  'demeanor',
  'much',
  'base',
  'comment',
  'honestli',
  'come',
  'disengen',
  'would',
  'look',
  'wors',
  'front',
  'client',
  'said',
  'yeah',
  'guess',
  'ive',
  'never',
  'realli',
  'good',
  'super',
  'peppi',
  'without',
  'look',
  'fake',
  'far',
  'know',
  'end',
  'except',
  'becom',
  'run',
  'joke',
  'offc',
  'look',
  'like',
  'nigel',
  'thornberri',
  'pretti',
  'smash',
  'nicknam',
  'honestli',
  'feel',
  'littl',
  'bad',
  'basic',
  'gaslit',
  'boss',
  'cowork',
  'instead',
  'direct',
  'say',
  'come',
  'across',
  'bit',
  'sexist',
  'aita',
  'fake',
  'smile',
  'thing',
  'work_tech',
  'tech_consult',
  'consult_job',
  'job_im',
  'im_woman',
  'woman_team',
  'team_boss',
  'boss_told',
  'told_come',
  'come_harsh',
  'harsh_client',
  'client_upbeat',
  'upbeat_smile',
  'smile_felt',
  'felt_ick',
  'ick_right',
  'right_away',
  'away_text',
  'text_group',
  'group_chat',
  'chat_cowork',
  'cowork_without',
  'without_manag',
  'manag_ask',
  'ask_bossman',
  'bossman_ever',
  'ever_told',
  'told_guy',
  'guy_smile',
  'smile_immedi',
  'immedi_round',
  'round_coupl',
  'coupl_cowork',
  'cowork_ask',
  'ask_said',
  'said_point',
  'point_doubl',
  'doubl_standard',
  'standard_cowork',
  'cowork_joke',
  'joke_client',
  'client_right',
  'right_give',
  'give_anyth',
  'anyth_smile',
  'smile_ask',
  'ask_ever',
  'ever_call',
  'call_harsh',
  'harsh_told',
  'told_boss',
  'boss_told',
  'told_smile',
  'smile_one',
  'one_cowork',
  'cowork_sent',
  'sent_pictur',
  'pictur_girl',
  'girl_pull',
  'pull_silli',
  'silli_face',
  'face_weird',
  'weird_pinch',
  'pinch_smile',
  'smile_bug-out',
  'bug-out_eye',
  'eye_say',
  'say_well',
  'well_bossman',
  'bossman_say',
  'say_get',
  'get_thought',
  'thought_hilari',
  'hilari_decid',
  'decid_actual',
  'actual_anyway',
  'anyway_start',
  'start_smile',
  'smile_around',
  'around_boss',
  'boss_also',
  'also_bit',
  'bit_stupidli',
  'stupidli_keep',
  'keep_mouth',
  'mouth_pinch',
  'pinch_tens',
  'tens_gum',
  'gum_display',
  'display_purpos',
  'purpos_pull',
  'pull_chin',
  'chin_back',
  'back_toward',
  'toward_neck',
  'neck_id',
  'id_get',
  'get_doubl',
  'doubl_chin',
  'chin_never',
  'never_front',
  'front_actual',
  'actual_client',
  'client_boss',
  'boss_cowork',
  'cowork_joke',
  'joke_boss',
  'boss_kept',
  'kept_look',
  'look_uncomfort',
  'uncomfort_ask',
  'ask_meet',
  'meet_week',
  'week_face',
  'face_pull',
  'pull_said',
  'said_uhh',
  'uhh_face',
  'face_said',
  'said_one',
  'one_second',
  'second_ago',
  'ago_cowork',
  'cowork_said',
  'said_smile',
  'smile_get',
  'get_boss',
  'boss_said',
  'said_look',
  'look_like',
  'like_pull',
  'pull_face',
  'face_cowork',
  'cowork_pull',
  'pull_phone',
  'phone_pictur',
  'pictur_recent',
  'recent_happi',
  'happi_hour',
  'hour_pull',
  'pull_face',
  'face_make',
  'make_cowork',
  'cowork_laugh',
  'laugh_said',
  'said_dude',
  'dude_hell',
  'hell_wrong',
  'wrong_liter',
  'liter_smile',
  'smile_look',
  'look_pictur',
  'pictur_last',
  'last_friday',
  'friday_cowork',
  'cowork_back',
  'back_say',
  'say_smile',
  'smile_boss',
  'boss_look',
  'look_kinda',
  'kinda_incredul',
  'incredul_clarifi',
  'clarifi_someth',
  'someth_make',
  'make_spontan',
  'spontan_laugh',
  'laugh_grin',
  'grin_probabl',
  'probabl_look',
  'look_littl',
  'littl_relax',
  'relax_im',
  'im_put',
  'put_smile',
  'smile_polit',
  'polit_pose',
  'pose_pictur',
  'pictur_guess',
  'guess_smile',
  'smile_tri',
  'tri_polit',
  'polit_let',
  'let_know',
  'know_come',
  'come_harsh',
  'harsh_meet',
  'meet_anyway',
  'anyway_next',
  'next_one',
  'one_one',
  'one_meet',
  'meet_boss',
  'boss_said',
  'said_need',
  'need_chang',
  'chang_demeanor',
  'demeanor_much',
  'much_base',
  'base_comment',
  'comment_honestli',
  'honestli_come',
  'come_disengen',
  'disengen_would',
  'would_look',
  'look_wors',
  'wors_front',
  'front_client',
  'client_said',
  'said_yeah',
  'yeah_guess',
  'guess_ive',
  'ive_never',
  'never_realli',
  'realli_good',
  'good_super',
  'super_peppi',
  'peppi_without',
  'without_look',
  'look_fake',
  'fake_far',
  'far_know',
  'know_end',
  'end_except',
  'except_becom',
  'becom_run',
  'run_joke',
  'joke_offc',
  'offc_look',
  'look_like',
  'like_nigel',
  'nigel_thornberri',
  'thornberri_pretti',
  'pretti_smash',
  'smash_nicknam',
  'nicknam_honestli',
  'honestli_feel',
  'feel_littl',
  'littl_bad',
  'bad_basic',
  'basic_gaslit',
  'gaslit_boss',
  'boss_cowork',
  'cowork_instead',
  'instead_direct',
  'direct_say',
  'say_come',
  'come_across',
  'across_bit',
  'bit_sexist',
  'sexist_aita',
  'aita_fake',
  'fake_smile',
  'smile_thing',
  'work_tech_consult',
  'tech_consult_job',
  'consult_job_im',
  'job_im_woman',
  'im_woman_team',
  'woman_team_boss',
  'team_boss_told',
  'boss_told_come',
  'told_come_harsh',
  'come_harsh_client',
  'harsh_client_upbeat',
  'client_upbeat_smile',
  'upbeat_smile_felt',
  'smile_felt_ick',
  'felt_ick_right',
  'ick_right_away',
  'right_away_text',
  'away_text_group',
  'text_group_chat',
  'group_chat_cowork',
  'chat_cowork_without',
  'cowork_without_manag',
  'without_manag_ask',
  'manag_ask_bossman',
  'ask_bossman_ever',
  'bossman_ever_told',
  'ever_told_guy',
  'told_guy_smile',
  'guy_smile_immedi',
  'smile_immedi_round',
  'immedi_round_coupl',
  'round_coupl_cowork',
  'coupl_cowork_ask',
  'cowork_ask_said',
  'ask_said_point',
  'said_point_doubl',
  'point_doubl_standard',
  'doubl_standard_cowork',
  'standard_cowork_joke',
  'cowork_joke_client',
  'joke_client_right',
  'client_right_give',
  'right_give_anyth',
  'give_anyth_smile',
  'anyth_smile_ask',
  'smile_ask_ever',
  'ask_ever_call',
  'ever_call_harsh',
  'call_harsh_told',
  'harsh_told_boss',
  'told_boss_told',
  'boss_told_smile',
  'told_smile_one',
  'smile_one_cowork',
  'one_cowork_sent',
  'cowork_sent_pictur',
  'sent_pictur_girl',
  'pictur_girl_pull',
  'girl_pull_silli',
  'pull_silli_face',
  'silli_face_weird',
  'face_weird_pinch',
  'weird_pinch_smile',
  'pinch_smile_bug-out',
  'smile_bug-out_eye',
  'bug-out_eye_say',
  'eye_say_well',
  'say_well_bossman',
  'well_bossman_say',
  'bossman_say_get',
  'say_get_thought',
  'get_thought_hilari',
  'thought_hilari_decid',
  'hilari_decid_actual',
  'decid_actual_anyway',
  'actual_anyway_start',
  'anyway_start_smile',
  'start_smile_around',
  'smile_around_boss',
  'around_boss_also',
  'boss_also_bit',
  'also_bit_stupidli',
  'bit_stupidli_keep',
  'stupidli_keep_mouth',
  'keep_mouth_pinch',
  'mouth_pinch_tens',
  'pinch_tens_gum',
  'tens_gum_display',
  'gum_display_purpos',
  'display_purpos_pull',
  'purpos_pull_chin',
  'pull_chin_back',
  'chin_back_toward',
  'back_toward_neck',
  'toward_neck_id',
  'neck_id_get',
  'id_get_doubl',
  'get_doubl_chin',
  'doubl_chin_never',
  'chin_never_front',
  'never_front_actual',
  'front_actual_client',
  'actual_client_boss',
  'client_boss_cowork',
  'boss_cowork_joke',
  'cowork_joke_boss',
  'joke_boss_kept',
  'boss_kept_look',
  'kept_look_uncomfort',
  'look_uncomfort_ask',
  'uncomfort_ask_meet',
  'ask_meet_week',
  'meet_week_face',
  'week_face_pull',
  'face_pull_said',
  'pull_said_uhh',
  'said_uhh_face',
  'uhh_face_said',
  'face_said_one',
  'said_one_second',
  'one_second_ago',
  'second_ago_cowork',
  'ago_cowork_said',
  'cowork_said_smile',
  'said_smile_get',
  'smile_get_boss',
  'get_boss_said',
  'boss_said_look',
  'said_look_like',
  'look_like_pull',
  'like_pull_face',
  'pull_face_cowork',
  'face_cowork_pull',
  'cowork_pull_phone',
  'pull_phone_pictur',
  'phone_pictur_recent',
  'pictur_recent_happi',
  'recent_happi_hour',
  'happi_hour_pull',
  'hour_pull_face',
  'pull_face_make',
  'face_make_cowork',
  'make_cowork_laugh',
  'cowork_laugh_said',
  'laugh_said_dude',
  'said_dude_hell',
  'dude_hell_wrong',
  'hell_wrong_liter',
  'wrong_liter_smile',
  'liter_smile_look',
  'smile_look_pictur',
  'look_pictur_last',
  'pictur_last_friday',
  'last_friday_cowork',
  'friday_cowork_back',
  'cowork_back_say',
  'back_say_smile',
  'say_smile_boss',
  'smile_boss_look',
  'boss_look_kinda',
  'look_kinda_incredul',
  'kinda_incredul_clarifi',
  'incredul_clarifi_someth',
  'clarifi_someth_make',
  'someth_make_spontan',
  'make_spontan_laugh',
  'spontan_laugh_grin',
  'laugh_grin_probabl',
  'grin_probabl_look',
  'probabl_look_littl',
  'look_littl_relax',
  'littl_relax_im',
  'relax_im_put',
  'im_put_smile',
  'put_smile_polit',
  'smile_polit_pose',
  'polit_pose_pictur',
  'pose_pictur_guess',
  'pictur_guess_smile',
  'guess_smile_tri',
  'smile_tri_polit',
  'tri_polit_let',
  'polit_let_know',
  'let_know_come',
  'know_come_harsh',
  'come_harsh_meet',
  'harsh_meet_anyway',
  'meet_anyway_next',
  'anyway_next_one',
  'next_one_one',
  'one_one_meet',
  'one_meet_boss',
  'meet_boss_said',
  'boss_said_need',
  'said_need_chang',
  'need_chang_demeanor',
  'chang_demeanor_much',
  'demeanor_much_base',
  'much_base_comment',
  'base_comment_honestli',
  'comment_honestli_come',
  'honestli_come_disengen',
  'come_disengen_would',
  'disengen_would_look',
  'would_look_wors',
  'look_wors_front',
  'wors_front_client',
  'front_client_said',
  'client_said_yeah',
  'said_yeah_guess',
  'yeah_guess_ive',
  'guess_ive_never',
  'ive_never_realli',
  'never_realli_good',
  'realli_good_super',
  'good_super_peppi',
  'super_peppi_without',
  'peppi_without_look',
  'without_look_fake',
  'look_fake_far',
  'fake_far_know',
  'far_know_end',
  'know_end_except',
  'end_except_becom',
  'except_becom_run',
  'becom_run_joke',
  'run_joke_offc',
  'joke_offc_look',
  'offc_look_like',
  'look_like_nigel',
  'like_nigel_thornberri',
  'nigel_thornberri_pretti',
  'thornberri_pretti_smash',
  'pretti_smash_nicknam',
  'smash_nicknam_honestli',
  'nicknam_honestli_feel',
  'honestli_feel_littl',
  'feel_littl_bad',
  'littl_bad_basic',
  'bad_basic_gaslit',
  'basic_gaslit_boss',
  'gaslit_boss_cowork',
  'boss_cowork_instead',
  'cowork_instead_direct',
  'instead_direct_say',
  'direct_say_come',
  'say_come_across',
  'come_across_bit',
  'across_bit_sexist',
  'bit_sexist_aita',
  'sexist_aita_fake',
  'aita_fake_smile',
  'fake_smile_thing'],
 ['found',
  'pregnant',
  'recent',
  'husband',
  'famili',
  'beyond',
  'happi',
  'excit',
  'heard',
  'husband',
  'marri',
  'time',
  'kid',
  'year',
  'obvious',
  'huge',
  'deal',
  'famili',
  'mom',
  'first',
  'time',
  'grandma',
  'babi',
  'threw',
  'celebr',
  'dinner',
  'us',
  'mom',
  'talk',
  'babi',
  'told',
  'alreadi',
  'start',
  'make',
  'memori',
  'start',
  'keepsak',
  'grandbabi',
  'felt',
  'bit',
  'confus',
  'ask',
  'husband',
  'bought',
  'someth',
  'babi',
  'gave',
  'said',
  'bring',
  'use',
  'pregnanc',
  'test',
  'gave',
  'store',
  'memori',
  'news',
  'grandbabi',
  'exisist',
  'floor',
  'look',
  'husband',
  'like',
  'realli',
  'nod',
  'smile',
  'ngl',
  'felt',
  'creep',
  'disgust',
  'uncomfort',
  'initi',
  'shock',
  'went',
  'call',
  'creepi',
  'disgust',
  'highli',
  'violat',
  'husband',
  'argu',
  'huge',
  'deal',
  'grab',
  'test',
  'got',
  'rid',
  'put',
  'plastic',
  'bag',
  'gift',
  'mom',
  'keepsak',
  'told',
  'made',
  'feel',
  'violat',
  'creep',
  'test',
  'liter',
  'pee',
  'mom',
  'said',
  'someth',
  'take',
  'care',
  'smell',
  'lash',
  'even',
  'demand',
  'get',
  'rid',
  'kept',
  'argu',
  'call',
  'control',
  'bil',
  'ask',
  'calm',
  'decid',
  'grab',
  'stuff',
  'go',
  'home',
  'husband',
  'start',
  'argu',
  'overreact',
  'said',
  'ruin',
  'famili',
  'joy',
  'behav',
  'find',
  'pregnanc',
  'test',
  'said',
  'mom',
  'babi',
  'somehow',
  'made',
  'whole',
  'thing',
  'hurt',
  'feel',
  'process',
  'liter',
  'pee',
  'test',
  'help',
  'flip',
  'even',
  'ruin',
  'joy',
  'news',
  'overeact',
  'found_pregnant',
  'pregnant_recent',
  'recent_husband',
  'husband_famili',
  'famili_beyond',
  'beyond_happi',
  'happi_excit',
  'excit_heard',
  'heard_husband',
  'husband_marri',
  'marri_time',
  'time_kid',
  'kid_year',
  'year_obvious',
  'obvious_huge',
  'huge_deal',
  'deal_famili',
  'famili_mom',
  'mom_first',
  'first_time',
  'time_grandma',
  'grandma_babi',
  'babi_threw',
  'threw_celebr',
  'celebr_dinner',
  'dinner_us',
  'us_mom',
  'mom_talk',
  'talk_babi',
  'babi_told',
  'told_alreadi',
  'alreadi_start',
  'start_make',
  'make_memori',
  'memori_start',
  'start_keepsak',
  'keepsak_grandbabi',
  'grandbabi_felt',
  'felt_bit',
  'bit_confus',
  'confus_ask',
  'ask_husband',
  'husband_bought',
  'bought_someth',
  'someth_babi',
  'babi_gave',
  'gave_said',
  'said_bring',
  'bring_use',
  'use_pregnanc',
  'pregnanc_test',
  'test_gave',
  'gave_store',
  'store_memori',
  'memori_news',
  'news_grandbabi',
  'grandbabi_exisist',
  'exisist_floor',
  'floor_look',
  'look_husband',
  'husband_like',
  'like_realli',
  'realli_nod',
  'nod_smile',
  'smile_ngl',
  'ngl_felt',
  'felt_creep',
  'creep_disgust',
  'disgust_uncomfort',
  'uncomfort_initi',
  'initi_shock',
  'shock_went',
  'went_call',
  'call_creepi',
  'creepi_disgust',
  'disgust_highli',
  'highli_violat',
  'violat_husband',
  'husband_argu',
  'argu_huge',
  'huge_deal',
  'deal_grab',
  'grab_test',
  'test_got',
  'got_rid',
  'rid_put',
  'put_plastic',
  'plastic_bag',
  'bag_gift',
  'gift_mom',
  'mom_keepsak',
  'keepsak_told',
  'told_made',
  'made_feel',
  'feel_violat',
  'violat_creep',
  'creep_test',
  'test_liter',
  'liter_pee',
  'pee_mom',
  'mom_said',
  'said_someth',
  'someth_take',
  'take_care',
  'care_smell',
  'smell_lash',
  'lash_even',
  'even_demand',
  'demand_get',
  'get_rid',
  'rid_kept',
  'kept_argu',
  'argu_call',
  'call_control',
  'control_bil',
  'bil_ask',
  'ask_calm',
  'calm_decid',
  'decid_grab',
  'grab_stuff',
  'stuff_go',
  'go_home',
  'home_husband',
  'husband_start',
  'start_argu',
  'argu_overreact',
  'overreact_said',
  'said_ruin',
  'ruin_famili',
  'famili_joy',
  'joy_behav',
  'behav_find',
  'find_pregnanc',
  'pregnanc_test',
  'test_said',
  'said_mom',
  'mom_babi',
  'babi_somehow',
  'somehow_made',
  'made_whole',
  'whole_thing',
  'thing_hurt',
  'hurt_feel',
  'feel_process',
  'process_liter',
  'liter_pee',
  'pee_test',
  'test_help',
  'help_flip',
  'flip_even',
  'even_ruin',
  'ruin_joy',
  'joy_news',
  'news_overeact',
  'found_pregnant_recent',
  'pregnant_recent_husband',
  'recent_husband_famili',
  'husband_famili_beyond',
  'famili_beyond_happi',
  'beyond_happi_excit',
  'happi_excit_heard',
  'excit_heard_husband',
  'heard_husband_marri',
  'husband_marri_time',
  'marri_time_kid',
  'time_kid_year',
  'kid_year_obvious',
  'year_obvious_huge',
  'obvious_huge_deal',
  'huge_deal_famili',
  'deal_famili_mom',
  'famili_mom_first',
  'mom_first_time',
  'first_time_grandma',
  'time_grandma_babi',
  'grandma_babi_threw',
  'babi_threw_celebr',
  'threw_celebr_dinner',
  'celebr_dinner_us',
  'dinner_us_mom',
  'us_mom_talk',
  'mom_talk_babi',
  'talk_babi_told',
  'babi_told_alreadi',
  'told_alreadi_start',
  'alreadi_start_make',
  'start_make_memori',
  'make_memori_start',
  'memori_start_keepsak',
  'start_keepsak_grandbabi',
  'keepsak_grandbabi_felt',
  'grandbabi_felt_bit',
  'felt_bit_confus',
  'bit_confus_ask',
  'confus_ask_husband',
  'ask_husband_bought',
  'husband_bought_someth',
  'bought_someth_babi',
  'someth_babi_gave',
  'babi_gave_said',
  'gave_said_bring',
  'said_bring_use',
  'bring_use_pregnanc',
  'use_pregnanc_test',
  'pregnanc_test_gave',
  'test_gave_store',
  'gave_store_memori',
  'store_memori_news',
  'memori_news_grandbabi',
  'news_grandbabi_exisist',
  'grandbabi_exisist_floor',
  'exisist_floor_look',
  'floor_look_husband',
  'look_husband_like',
  'husband_like_realli',
  'like_realli_nod',
  'realli_nod_smile',
  'nod_smile_ngl',
  'smile_ngl_felt',
  'ngl_felt_creep',
  'felt_creep_disgust',
  'creep_disgust_uncomfort',
  'disgust_uncomfort_initi',
  'uncomfort_initi_shock',
  'initi_shock_went',
  'shock_went_call',
  'went_call_creepi',
  'call_creepi_disgust',
  'creepi_disgust_highli',
  'disgust_highli_violat',
  'highli_violat_husband',
  'violat_husband_argu',
  'husband_argu_huge',
  'argu_huge_deal',
  'huge_deal_grab',
  'deal_grab_test',
  'grab_test_got',
  'test_got_rid',
  'got_rid_put',
  'rid_put_plastic',
  'put_plastic_bag',
  'plastic_bag_gift',
  'bag_gift_mom',
  'gift_mom_keepsak',
  'mom_keepsak_told',
  'keepsak_told_made',
  'told_made_feel',
  'made_feel_violat',
  'feel_violat_creep',
  'violat_creep_test',
  'creep_test_liter',
  'test_liter_pee',
  'liter_pee_mom',
  'pee_mom_said',
  'mom_said_someth',
  'said_someth_take',
  'someth_take_care',
  'take_care_smell',
  'care_smell_lash',
  'smell_lash_even',
  'lash_even_demand',
  'even_demand_get',
  'demand_get_rid',
  'get_rid_kept',
  'rid_kept_argu',
  'kept_argu_call',
  'argu_call_control',
  'call_control_bil',
  'control_bil_ask',
  'bil_ask_calm',
  'ask_calm_decid',
  'calm_decid_grab',
  'decid_grab_stuff',
  'grab_stuff_go',
  'stuff_go_home',
  'go_home_husband',
  'home_husband_start',
  'husband_start_argu',
  'start_argu_overreact',
  'argu_overreact_said',
  'overreact_said_ruin',
  'said_ruin_famili',
  'ruin_famili_joy',
  'famili_joy_behav',
  'joy_behav_find',
  'behav_find_pregnanc',
  'find_pregnanc_test',
  'pregnanc_test_said',
  'test_said_mom',
  'said_mom_babi',
  'mom_babi_somehow',
  'babi_somehow_made',
  'somehow_made_whole',
  'made_whole_thing',
  'whole_thing_hurt',
  'thing_hurt_feel',
  'hurt_feel_process',
  'feel_process_liter',
  'process_liter_pee',
  'liter_pee_test',
  'pee_test_help',
  'test_help_flip',
  'help_flip_even',
  'flip_even_ruin',
  'even_ruin_joy',
  'ruin_joy_news',
  'joy_news_overeact'],
 ['throwaway',
  'acct',
  'sorri',
  'format',
  'mobil',
  'start',
  'new',
  'job',
  'front',
  'desk',
  'clerk',
  'hotel',
  'work',
  'night',
  'shift',
  'usual',
  'cowork',
  'sm',
  'never',
  'realli',
  'spoke',
  'night',
  'ago',
  'first',
  'night',
  'alon',
  'around',
  'notic',
  'person',
  'park',
  'lot',
  'see',
  'lot',
  'front',
  'desk',
  'light',
  'lot',
  'terribl',
  'realli',
  'see',
  'face',
  'get',
  'close',
  'lobbi',
  'door',
  'stand',
  'move',
  'five',
  'ten',
  'minut',
  'thought',
  'strang',
  'cours',
  'creep',
  'minut',
  'stand',
  'move',
  'guess',
  'call',
  'front',
  'desk',
  'move',
  'hand',
  'ear',
  'phone',
  'rang',
  'pick',
  'end',
  'heard',
  'buri',
  'none',
  'found',
  'low',
  'voic',
  'hung',
  'point',
  'terrifi',
  'ran',
  'back',
  'room',
  'call',
  'explain',
  'oper',
  'go',
  'sent',
  'coupl',
  'cop',
  'hotel',
  'arriv',
  'one',
  'cop',
  'talk',
  'person',
  'outsid',
  'one',
  'front',
  'desk',
  'talk',
  'tell',
  'person',
  'outsid',
  'claim',
  'also',
  'work',
  'confus',
  'also',
  'admit',
  'seen',
  'person',
  'face',
  'silhouett',
  'point',
  'offic',
  'person',
  'lot',
  'come',
  'turn',
  'cowork',
  'upset',
  'say',
  'would',
  'never',
  'prank',
  'knew',
  'go',
  'call',
  'polic',
  'tri',
  'get',
  'arrest',
  'go',
  'press',
  'charg',
  'tell',
  'manag',
  'happen',
  'next',
  'morn',
  'day',
  'guess',
  'told',
  'cowork',
  'happen',
  'one',
  'realli',
  'speak',
  'give',
  'bit',
  'attitud',
  'feel',
  'like',
  'took',
  'bit',
  'far',
  'call',
  'polic',
  'aita',
  'throwaway_acct',
  'acct_sorri',
  'sorri_format',
  'format_mobil',
  'mobil_start',
  'start_new',
  'new_job',
  'job_front',
  'front_desk',
  'desk_clerk',
  'clerk_hotel',
  'hotel_work',
  'work_night',
  'night_shift',
  'shift_usual',
  'usual_cowork',
  'cowork_sm',
  'sm_never',
  'never_realli',
  'realli_spoke',
  'spoke_night',
  'night_ago',
  'ago_first',
  'first_night',
  'night_alon',
  'alon_around',
  'around_notic',
  'notic_person',
  'person_park',
  'park_lot',
  'lot_see',
  'see_lot',
  'lot_front',
  'front_desk',
  'desk_light',
  'light_lot',
  'lot_terribl',
  'terribl_realli',
  'realli_see',
  'see_face',
  'face_get',
  'get_close',
  'close_lobbi',
  'lobbi_door',
  'door_stand',
  'stand_move',
  'move_five',
  'five_ten',
  'ten_minut',
  'minut_thought',
  'thought_strang',
  'strang_cours',
  'cours_creep',
  'creep_minut',
  'minut_stand',
  'stand_move',
  'move_guess',
  'guess_call',
  'call_front',
  'front_desk',
  'desk_move',
  'move_hand',
  'hand_ear',
  'ear_phone',
  'phone_rang',
  'rang_pick',
  'pick_end',
  'end_heard',
  'heard_buri',
  'buri_none',
  'none_found',
  'found_low',
  'low_voic',
  'voic_hung',
  'hung_point',
  'point_terrifi',
  'terrifi_ran',
  'ran_back',
  'back_room',
  'room_call',
  'call_explain',
  'explain_oper',
  'oper_go',
  'go_sent',
  'sent_coupl',
  'coupl_cop',
  'cop_hotel',
  'hotel_arriv',
  'arriv_one',
  'one_cop',
  'cop_talk',
  'talk_person',
  'person_outsid',
  'outsid_one',
  'one_front',
  'front_desk',
  'desk_talk',
  'talk_tell',
  'tell_person',
  'person_outsid',
  'outsid_claim',
  'claim_also',
  'also_work',
  'work_confus',
  'confus_also',
  'also_admit',
  'admit_seen',
  'seen_person',
  'person_face',
  'face_silhouett',
  'silhouett_point',
  'point_offic',
  'offic_person',
  'person_lot',
  'lot_come',
  'come_turn',
  'turn_cowork',
  'cowork_upset',
  'upset_say',
  'say_would',
  'would_never',
  'never_prank',
  'prank_knew',
  'knew_go',
  'go_call',
  'call_polic',
  'polic_tri',
  'tri_get',
  'get_arrest',
  'arrest_go',
  'go_press',
  'press_charg',
  'charg_tell',
  'tell_manag',
  'manag_happen',
  'happen_next',
  'next_morn',
  'morn_day',
  'day_guess',
  'guess_told',
  'told_cowork',
  'cowork_happen',
  'happen_one',
  'one_realli',
  'realli_speak',
  'speak_give',
  'give_bit',
  'bit_attitud',
  'attitud_feel',
  'feel_like',
  'like_took',
  'took_bit',
  'bit_far',
  'far_call',
  'call_polic',
  'polic_aita',
  'throwaway_acct_sorri',
  'acct_sorri_format',
  'sorri_format_mobil',
  'format_mobil_start',
  'mobil_start_new',
  'start_new_job',
  'new_job_front',
  'job_front_desk',
  'front_desk_clerk',
  'desk_clerk_hotel',
  'clerk_hotel_work',
  'hotel_work_night',
  'work_night_shift',
  'night_shift_usual',
  'shift_usual_cowork',
  'usual_cowork_sm',
  'cowork_sm_never',
  'sm_never_realli',
  'never_realli_spoke',
  'realli_spoke_night',
  'spoke_night_ago',
  'night_ago_first',
  'ago_first_night',
  'first_night_alon',
  'night_alon_around',
  'alon_around_notic',
  'around_notic_person',
  'notic_person_park',
  'person_park_lot',
  'park_lot_see',
  'lot_see_lot',
  'see_lot_front',
  'lot_front_desk',
  'front_desk_light',
  'desk_light_lot',
  'light_lot_terribl',
  'lot_terribl_realli',
  'terribl_realli_see',
  'realli_see_face',
  'see_face_get',
  'face_get_close',
  'get_close_lobbi',
  'close_lobbi_door',
  'lobbi_door_stand',
  'door_stand_move',
  'stand_move_five',
  'move_five_ten',
  'five_ten_minut',
  'ten_minut_thought',
  'minut_thought_strang',
  'thought_strang_cours',
  'strang_cours_creep',
  'cours_creep_minut',
  'creep_minut_stand',
  'minut_stand_move',
  'stand_move_guess',
  'move_guess_call',
  'guess_call_front',
  'call_front_desk',
  'front_desk_move',
  'desk_move_hand',
  'move_hand_ear',
  'hand_ear_phone',
  'ear_phone_rang',
  'phone_rang_pick',
  'rang_pick_end',
  'pick_end_heard',
  'end_heard_buri',
  'heard_buri_none',
  'buri_none_found',
  'none_found_low',
  'found_low_voic',
  'low_voic_hung',
  'voic_hung_point',
  'hung_point_terrifi',
  'point_terrifi_ran',
  'terrifi_ran_back',
  'ran_back_room',
  'back_room_call',
  'room_call_explain',
  'call_explain_oper',
  'explain_oper_go',
  'oper_go_sent',
  'go_sent_coupl',
  'sent_coupl_cop',
  'coupl_cop_hotel',
  'cop_hotel_arriv',
  'hotel_arriv_one',
  'arriv_one_cop',
  'one_cop_talk',
  'cop_talk_person',
  'talk_person_outsid',
  'person_outsid_one',
  'outsid_one_front',
  'one_front_desk',
  'front_desk_talk',
  'desk_talk_tell',
  'talk_tell_person',
  'tell_person_outsid',
  'person_outsid_claim',
  'outsid_claim_also',
  'claim_also_work',
  'also_work_confus',
  'work_confus_also',
  'confus_also_admit',
  'also_admit_seen',
  'admit_seen_person',
  'seen_person_face',
  'person_face_silhouett',
  'face_silhouett_point',
  'silhouett_point_offic',
  'point_offic_person',
  'offic_person_lot',
  'person_lot_come',
  'lot_come_turn',
  'come_turn_cowork',
  'turn_cowork_upset',
  'cowork_upset_say',
  'upset_say_would',
  'say_would_never',
  'would_never_prank',
  'never_prank_knew',
  'prank_knew_go',
  'knew_go_call',
  'go_call_polic',
  'call_polic_tri',
  'polic_tri_get',
  'tri_get_arrest',
  'get_arrest_go',
  'arrest_go_press',
  'go_press_charg',
  'press_charg_tell',
  'charg_tell_manag',
  'tell_manag_happen',
  'manag_happen_next',
  'happen_next_morn',
  'next_morn_day',
  'morn_day_guess',
  'day_guess_told',
  'guess_told_cowork',
  'told_cowork_happen',
  'cowork_happen_one',
  'happen_one_realli',
  'one_realli_speak',
  'realli_speak_give',
  'speak_give_bit',
  'give_bit_attitud',
  'bit_attitud_feel',
  'attitud_feel_like',
  'feel_like_took',
  'like_took_bit',
  'took_bit_far',
  'bit_far_call',
  'far_call_polic',
  'call_polic_aita'],
 ['husband',
  'chri',
  'plan',
  'one',
  'week',
  'vacat',
  'state',
  'ski',
  'resort',
  'kid',
  'cousin',
  'martin',
  'lost',
  'wife',
  'cancer',
  'month',
  'ago',
  'left',
  'behind',
  'kid',
  'nearli',
  'age',
  'kid',
  '&',
  'husband',
  'devest',
  'best',
  'friend',
  'loss',
  'theyr',
  'close',
  'see',
  'friend',
  'understand',
  'tri',
  'help',
  'martin',
  'kid',
  'opinion',
  'littl',
  'much',
  'late',
  'suggest',
  'take',
  'martin',
  'kid',
  'us',
  'resort',
  'get',
  'mind',
  'grief',
  'bit',
  'apolog',
  'said',
  'sinc',
  'bare',
  'budget',
  'cover',
  'kid',
  'insist',
  'tri',
  'offer',
  'compromis',
  'still',
  'said',
  'work',
  'obvious',
  'piss',
  'drop',
  'eventu',
  'day',
  'trip',
  'found',
  'husband',
  'book',
  'two',
  'ticket',
  'martin',
  'kid',
  'instead',
  'kid',
  'one',
  'pay',
  'insist',
  'handl',
  'thd',
  'book',
  'make',
  'reserv',
  'stunnedi',
  'call',
  'apologet',
  'talk',
  'martin',
  'need',
  'alon',
  'time',
  'away',
  'kid',
  'kid',
  'need',
  'breather',
  'need',
  'vacat',
  'kid',
  'flip',
  'ask',
  'serious',
  'ok',
  'priorit',
  'otherskid',
  'said',
  'prioriti',
  'need',
  'help',
  'kid',
  'ask',
  'kid',
  'react',
  'find',
  'said',
  'im',
  'sure',
  'theyd',
  'understand',
  'said',
  'decid',
  'cancel',
  'vacat',
  'altogeth',
  'freak',
  'say',
  'cant',
  'make',
  'look',
  'small',
  'infront',
  'cousin',
  'famili',
  'sinc',
  'prais',
  'nice',
  'gestur',
  'refus',
  'negoti',
  'call',
  'horribl',
  'selfish',
  'cruel',
  'toward',
  'griev',
  'kid',
  'said',
  'hell',
  'make',
  'sure',
  'kid',
  'know',
  'im',
  'behav',
  'toward',
  'kid',
  'rob',
  'fun',
  'much',
  'need',
  'deserv',
  'talk',
  'piss',
  'keep',
  'throw',
  'fit',
  'fit',
  'claim',
  'ruin',
  'everybodi',
  'cancel',
  'feel',
  'bad',
  'kid',
  'think',
  'right',
  'aita',
  'cancel',
  'husband_chri',
  'chri_plan',
  'plan_one',
  'one_week',
  'week_vacat',
  'vacat_state',
  'state_ski',
  'ski_resort',
  'resort_kid',
  'kid_cousin',
  'cousin_martin',
  'martin_lost',
  'lost_wife',
  'wife_cancer',
  'cancer_month',
  'month_ago',
  'ago_left',
  'left_behind',
  'behind_kid',
  'kid_nearli',
  'nearli_age',
  'age_kid',
  'kid_&',
  '&_husband',
  'husband_devest',
  'devest_best',
  'best_friend',
  'friend_loss',
  'loss_theyr',
  'theyr_close',
  'close_see',
  'see_friend',
  'friend_understand',
  'understand_tri',
  'tri_help',
  'help_martin',
  'martin_kid',
  'kid_opinion',
  'opinion_littl',
  'littl_much',
  'much_late',
  'late_suggest',
  'suggest_take',
  'take_martin',
  'martin_kid',
  'kid_us',
  'us_resort',
  'resort_get',
  'get_mind',
  'mind_grief',
  'grief_bit',
  'bit_apolog',
  'apolog_said',
  'said_sinc',
  'sinc_bare',
  'bare_budget',
  'budget_cover',
  'cover_kid',
  'kid_insist',
  'insist_tri',
  'tri_offer',
  'offer_compromis',
  'compromis_still',
  'still_said',
  'said_work',
  'work_obvious',
  'obvious_piss',
  'piss_drop',
  'drop_eventu',
  'eventu_day',
  'day_trip',
  'trip_found',
  'found_husband',
  'husband_book',
  'book_two',
  'two_ticket',
  'ticket_martin',
  'martin_kid',
  'kid_instead',
  'instead_kid',
  'kid_one',
  'one_pay',
  'pay_insist',
  'insist_handl',
  'handl_thd',
  'thd_book',
  'book_make',
  'make_reserv',
  'reserv_stunnedi',
  'stunnedi_call',
  'call_apologet',
  'apologet_talk',
  'talk_martin',
  'martin_need',
  'need_alon',
  'alon_time',
  'time_away',
  'away_kid',
  'kid_kid',
  'kid_need',
  'need_breather',
  'breather_need',
  'need_vacat',
  'vacat_kid',
  'kid_flip',
  'flip_ask',
  'ask_serious',
  'serious_ok',
  'ok_priorit',
  'priorit_otherskid',
  'otherskid_said',
  'said_prioriti',
  'prioriti_need',
  'need_help',
  'help_kid',
  'kid_ask',
  'ask_kid',
  'kid_react',
  'react_find',
  'find_said',
  'said_im',
  'im_sure',
  'sure_theyd',
  'theyd_understand',
  'understand_said',
  'said_decid',
  'decid_cancel',
  'cancel_vacat',
  'vacat_altogeth',
  'altogeth_freak',
  'freak_say',
  'say_cant',
  'cant_make',
  'make_look',
  'look_small',
  'small_infront',
  'infront_cousin',
  'cousin_famili',
  'famili_sinc',
  'sinc_prais',
  'prais_nice',
  'nice_gestur',
  'gestur_refus',
  'refus_negoti',
  'negoti_call',
  'call_horribl',
  'horribl_selfish',
  'selfish_cruel',
  'cruel_toward',
  'toward_griev',
  'griev_kid',
  'kid_said',
  'said_hell',
  'hell_make',
  'make_sure',
  'sure_kid',
  'kid_know',
  'know_im',
  'im_behav',
  'behav_toward',
  'toward_kid',
  'kid_rob',
  'rob_fun',
  'fun_much',
  'much_need',
  'need_deserv',
  'deserv_talk',
  'talk_piss',
  'piss_keep',
  'keep_throw',
  'throw_fit',
  'fit_fit',
  'fit_claim',
  'claim_ruin',
  'ruin_everybodi',
  'everybodi_cancel',
  'cancel_feel',
  'feel_bad',
  'bad_kid',
  'kid_think',
  'think_right',
  'right_aita',
  'aita_cancel',
  'husband_chri_plan',
  'chri_plan_one',
  'plan_one_week',
  'one_week_vacat',
  'week_vacat_state',
  'vacat_state_ski',
  'state_ski_resort',
  'ski_resort_kid',
  'resort_kid_cousin',
  'kid_cousin_martin',
  'cousin_martin_lost',
  'martin_lost_wife',
  'lost_wife_cancer',
  'wife_cancer_month',
  'cancer_month_ago',
  'month_ago_left',
  'ago_left_behind',
  'left_behind_kid',
  'behind_kid_nearli',
  'kid_nearli_age',
  'nearli_age_kid',
  'age_kid_&',
  'kid_&_husband',
  '&_husband_devest',
  'husband_devest_best',
  'devest_best_friend',
  'best_friend_loss',
  'friend_loss_theyr',
  'loss_theyr_close',
  'theyr_close_see',
  'close_see_friend',
  'see_friend_understand',
  'friend_understand_tri',
  'understand_tri_help',
  'tri_help_martin',
  'help_martin_kid',
  'martin_kid_opinion',
  'kid_opinion_littl',
  'opinion_littl_much',
  'littl_much_late',
  'much_late_suggest',
  'late_suggest_take',
  'suggest_take_martin',
  'take_martin_kid',
  'martin_kid_us',
  'kid_us_resort',
  'us_resort_get',
  'resort_get_mind',
  'get_mind_grief',
  'mind_grief_bit',
  'grief_bit_apolog',
  'bit_apolog_said',
  'apolog_said_sinc',
  'said_sinc_bare',
  'sinc_bare_budget',
  'bare_budget_cover',
  'budget_cover_kid',
  'cover_kid_insist',
  'kid_insist_tri',
  'insist_tri_offer',
  'tri_offer_compromis',
  'offer_compromis_still',
  'compromis_still_said',
  'still_said_work',
  'said_work_obvious',
  'work_obvious_piss',
  'obvious_piss_drop',
  'piss_drop_eventu',
  'drop_eventu_day',
  'eventu_day_trip',
  'day_trip_found',
  'trip_found_husband',
  'found_husband_book',
  'husband_book_two',
  'book_two_ticket',
  'two_ticket_martin',
  'ticket_martin_kid',
  'martin_kid_instead',
  'kid_instead_kid',
  'instead_kid_one',
  'kid_one_pay',
  'one_pay_insist',
  'pay_insist_handl',
  'insist_handl_thd',
  'handl_thd_book',
  'thd_book_make',
  'book_make_reserv',
  'make_reserv_stunnedi',
  'reserv_stunnedi_call',
  'stunnedi_call_apologet',
  'call_apologet_talk',
  'apologet_talk_martin',
  'talk_martin_need',
  'martin_need_alon',
  'need_alon_time',
  'alon_time_away',
  'time_away_kid',
  'away_kid_kid',
  'kid_kid_need',
  'kid_need_breather',
  'need_breather_need',
  'breather_need_vacat',
  'need_vacat_kid',
  'vacat_kid_flip',
  'kid_flip_ask',
  'flip_ask_serious',
  'ask_serious_ok',
  'serious_ok_priorit',
  'ok_priorit_otherskid',
  'priorit_otherskid_said',
  'otherskid_said_prioriti',
  'said_prioriti_need',
  'prioriti_need_help',
  'need_help_kid',
  'help_kid_ask',
  'kid_ask_kid',
  'ask_kid_react',
  'kid_react_find',
  'react_find_said',
  'find_said_im',
  'said_im_sure',
  'im_sure_theyd',
  'sure_theyd_understand',
  'theyd_understand_said',
  'understand_said_decid',
  'said_decid_cancel',
  'decid_cancel_vacat',
  'cancel_vacat_altogeth',
  'vacat_altogeth_freak',
  'altogeth_freak_say',
  'freak_say_cant',
  'say_cant_make',
  'cant_make_look',
  'make_look_small',
  'look_small_infront',
  'small_infront_cousin',
  'infront_cousin_famili',
  'cousin_famili_sinc',
  'famili_sinc_prais',
  'sinc_prais_nice',
  'prais_nice_gestur',
  'nice_gestur_refus',
  'gestur_refus_negoti',
  'refus_negoti_call',
  'negoti_call_horribl',
  'call_horribl_selfish',
  'horribl_selfish_cruel',
  'selfish_cruel_toward',
  'cruel_toward_griev',
  'toward_griev_kid',
  'griev_kid_said',
  'kid_said_hell',
  'said_hell_make',
  'hell_make_sure',
  'make_sure_kid',
  'sure_kid_know',
  'kid_know_im',
  'know_im_behav',
  'im_behav_toward',
  'behav_toward_kid',
  'toward_kid_rob',
  'kid_rob_fun',
  'rob_fun_much',
  'fun_much_need',
  'much_need_deserv',
  'need_deserv_talk',
  'deserv_talk_piss',
  'talk_piss_keep',
  'piss_keep_throw',
  'keep_throw_fit',
  'throw_fit_fit',
  'fit_fit_claim',
  'fit_claim_ruin',
  'claim_ruin_everybodi',
  'ruin_everybodi_cancel',
  'everybodi_cancel_feel',
  'cancel_feel_bad',
  'feel_bad_kid',
  'bad_kid_think',
  'kid_think_right',
  'think_right_aita',
  'right_aita_cancel'],
 ['marri',
  'husband',
  'jeremi',
  'sinc',
  'son',
  'chri',
  'husband',
  'fantast',
  'relationship',
  'despit',
  'titl',
  'may',
  'sound',
  'like',
  'birthday',
  'week',
  'honestli',
  'put',
  'much',
  'thought',
  'husband',
  'gift',
  'giver',
  'say',
  'hard',
  'time',
  'figur',
  'get',
  'want',
  'wast',
  'money',
  'someth',
  'peopl',
  'use',
  'also',
  'practic',
  'person',
  'wherea',
  'im',
  'far',
  'sentiment',
  'type',
  'even',
  'get',
  'someth',
  'someth',
  'use',
  'everi',
  'day',
  'big',
  'deal',
  'obvious',
  'ive',
  'request',
  'sentiment',
  'piec',
  'never',
  'get',
  'pretti',
  'much',
  'gave',
  'ever',
  'ask',
  'anyth',
  'realli',
  'bother',
  'number',
  'year',
  'truli',
  'bother',
  'usual',
  'well',
  'son',
  'graduat',
  'year',
  'earli',
  'start',
  'colleg',
  'next',
  'year',
  'current',
  'work',
  'job',
  'choic',
  'ive',
  'ask',
  'cut',
  'back',
  'enjoy',
  'teen',
  'year',
  'adulthood',
  'work',
  'make',
  'happi',
  'work',
  'mechan',
  'shop',
  'junk',
  'yard',
  'buddi',
  'work',
  'least',
  'get',
  'time',
  'friend',
  'well',
  'husband',
  'hate',
  'spend',
  'money',
  'tri',
  'inflict',
  'us',
  'live',
  'frugal',
  'physic',
  'possibl',
  'save',
  'everi',
  'singl',
  'dime',
  'could',
  'retir',
  'right',
  'second',
  'abl',
  'go',
  'money',
  'save',
  'son',
  'come',
  'home',
  'last',
  'night',
  'buddi',
  'work',
  'like',
  'know',
  'week',
  'cant',
  'wait',
  'open',
  'pleas',
  'open',
  'buddi',
  'snicker',
  'thought',
  'would',
  'gag',
  'gift',
  'much',
  'surpris',
  'huge',
  'absolut',
  'gorgeou',
  'wall',
  'piec',
  'photo',
  'frame',
  'shelv',
  'built',
  'husband',
  'immedi',
  'like',
  'wow',
  'much',
  'cost',
  'could',
  'went',
  'ira',
  'ro',
  'account',
  'idk',
  'said',
  'right',
  'son',
  'immedi',
  'shot',
  'cold',
  'dagger',
  'husband',
  'say',
  'truli',
  'none',
  'busi',
  'money',
  'sinc',
  'outright',
  'refus',
  'buy',
  'mother',
  'nice',
  'thing',
  'absolut',
  'deserv',
  'make',
  'sure',
  'get',
  'someth',
  'nice',
  'record',
  'made',
  'cost',
  'us',
  'anyth',
  'husband',
  'stop',
  'talk',
  'look',
  'wait',
  'say',
  'someth',
  'shake',
  'head',
  'walk',
  'boy',
  'leav',
  'say',
  'allow',
  'chri',
  'embarass',
  'infront',
  'peopl',
  'said',
  'someth',
  'simpli',
  'told',
  'chri',
  'right',
  'aita',
  'marri_husband',
  'husband_jeremi',
  'jeremi_sinc',
  'sinc_son',
  'son_chri',
  'chri_husband',
  'husband_fantast',
  'fantast_relationship',
  'relationship_despit',
  'despit_titl',
  'titl_may',
  'may_sound',
  'sound_like',
  'like_birthday',
  'birthday_week',
  'week_honestli',
  'honestli_put',
  'put_much',
  'much_thought',
  'thought_husband',
  'husband_gift',
  'gift_giver',
  'giver_say',
  'say_hard',
  'hard_time',
  'time_figur',
  'figur_get',
  'get_want',
  'want_wast',
  'wast_money',
  'money_someth',
  'someth_peopl',
  'peopl_use',
  'use_also',
  'also_practic',
  'practic_person',
  'person_wherea',
  'wherea_im',
  'im_far',
  'far_sentiment',
  'sentiment_type',
  'type_even',
  'even_get',
  'get_someth',
  'someth_someth',
  'someth_use',
  'use_everi',
  'everi_day',
  'day_big',
  'big_deal',
  'deal_obvious',
  'obvious_ive',
  'ive_request',
  'request_sentiment',
  'sentiment_piec',
  'piec_never',
  'never_get',
  'get_pretti',
  'pretti_much',
  'much_gave',
  'gave_ever',
  'ever_ask',
  'ask_anyth',
  'anyth_realli',
  'realli_bother',
  'bother_number',
  'number_year',
  'year_truli',
  'truli_bother',
  'bother_usual',
  'usual_well',
  'well_son',
  'son_graduat',
  'graduat_year',
  'year_earli',
  'earli_start',
  'start_colleg',
  'colleg_next',
  'next_year',
  'year_current',
  'current_work',
  'work_job',
  'job_choic',
  'choic_ive',
  'ive_ask',
  'ask_cut',
  'cut_back',
  'back_enjoy',
  'enjoy_teen',
  'teen_year',
  'year_adulthood',
  'adulthood_work',
  'work_make',
  'make_happi',
  'happi_work',
  'work_mechan',
  'mechan_shop',
  'shop_junk',
  'junk_yard',
  'yard_buddi',
  'buddi_work',
  'work_least',
  'least_get',
  'get_time',
  'time_friend',
  'friend_well',
  'well_husband',
  'husband_hate',
  'hate_spend',
  'spend_money',
  'money_tri',
  'tri_inflict',
  'inflict_us',
  'us_live',
  'live_frugal',
  'frugal_physic',
  'physic_possibl',
  'possibl_save',
  'save_everi',
  'everi_singl',
  'singl_dime',
  'dime_could',
  'could_retir',
  'retir_right',
  'right_second',
  'second_abl',
  'abl_go',
  'go_money',
  'money_save',
  'save_son',
  'son_come',
  'come_home',
  'home_last',
  'last_night',
  'night_buddi',
  'buddi_work',
  'work_like',
  'like_know',
  'know_week',
  'week_cant',
  'cant_wait',
  'wait_open',
  'open_pleas',
  'pleas_open',
  'open_buddi',
  'buddi_snicker',
  'snicker_thought',
  'thought_would',
  'would_gag',
  'gag_gift',
  'gift_much',
  'much_surpris',
  'surpris_huge',
  'huge_absolut',
  'absolut_gorgeou',
  'gorgeou_wall',
  'wall_piec',
  'piec_photo',
  'photo_frame',
  'frame_shelv',
  'shelv_built',
  'built_husband',
  'husband_immedi',
  'immedi_like',
  'like_wow',
  'wow_much',
  'much_cost',
  'cost_could',
  'could_went',
  'went_ira',
  'ira_ro',
  'ro_account',
  'account_idk',
  'idk_said',
  'said_right',
  'right_son',
  'son_immedi',
  'immedi_shot',
  'shot_cold',
  'cold_dagger',
  'dagger_husband',
  'husband_say',
  'say_truli',
  'truli_none',
  'none_busi',
  'busi_money',
  'money_sinc',
  'sinc_outright',
  'outright_refus',
  'refus_buy',
  'buy_mother',
  'mother_nice',
  'nice_thing',
  'thing_absolut',
  'absolut_deserv',
  'deserv_make',
  'make_sure',
  'sure_get',
  'get_someth',
  'someth_nice',
  'nice_record',
  'record_made',
  'made_cost',
  'cost_us',
  'us_anyth',
  'anyth_husband',
  'husband_stop',
  'stop_talk',
  'talk_look',
  'look_wait',
  'wait_say',
  'say_someth',
  'someth_shake',
  'shake_head',
  'head_walk',
  'walk_boy',
  'boy_leav',
  'leav_say',
  'say_allow',
  'allow_chri',
  'chri_embarass',
  'embarass_infront',
  'infront_peopl',
  'peopl_said',
  'said_someth',
  'someth_simpli',
  'simpli_told',
  'told_chri',
  'chri_right',
  'right_aita',
  'marri_husband_jeremi',
  'husband_jeremi_sinc',
  'jeremi_sinc_son',
  'sinc_son_chri',
  'son_chri_husband',
  'chri_husband_fantast',
  'husband_fantast_relationship',
  'fantast_relationship_despit',
  'relationship_despit_titl',
  'despit_titl_may',
  'titl_may_sound',
  'may_sound_like',
  'sound_like_birthday',
  'like_birthday_week',
  'birthday_week_honestli',
  'week_honestli_put',
  'honestli_put_much',
  'put_much_thought',
  'much_thought_husband',
  'thought_husband_gift',
  'husband_gift_giver',
  'gift_giver_say',
  'giver_say_hard',
  'say_hard_time',
  'hard_time_figur',
  'time_figur_get',
  'figur_get_want',
  'get_want_wast',
  'want_wast_money',
  'wast_money_someth',
  'money_someth_peopl',
  'someth_peopl_use',
  'peopl_use_also',
  'use_also_practic',
  'also_practic_person',
  'practic_person_wherea',
  'person_wherea_im',
  'wherea_im_far',
  'im_far_sentiment',
  'far_sentiment_type',
  'sentiment_type_even',
  'type_even_get',
  'even_get_someth',
  'get_someth_someth',
  'someth_someth_use',
  'someth_use_everi',
  'use_everi_day',
  'everi_day_big',
  'day_big_deal',
  'big_deal_obvious',
  'deal_obvious_ive',
  'obvious_ive_request',
  'ive_request_sentiment',
  'request_sentiment_piec',
  'sentiment_piec_never',
  'piec_never_get',
  'never_get_pretti',
  'get_pretti_much',
  'pretti_much_gave',
  'much_gave_ever',
  'gave_ever_ask',
  'ever_ask_anyth',
  'ask_anyth_realli',
  'anyth_realli_bother',
  'realli_bother_number',
  'bother_number_year',
  'number_year_truli',
  'year_truli_bother',
  'truli_bother_usual',
  'bother_usual_well',
  'usual_well_son',
  'well_son_graduat',
  'son_graduat_year',
  'graduat_year_earli',
  'year_earli_start',
  'earli_start_colleg',
  'start_colleg_next',
  'colleg_next_year',
  'next_year_current',
  'year_current_work',
  'current_work_job',
  'work_job_choic',
  'job_choic_ive',
  'choic_ive_ask',
  'ive_ask_cut',
  'ask_cut_back',
  'cut_back_enjoy',
  'back_enjoy_teen',
  'enjoy_teen_year',
  'teen_year_adulthood',
  'year_adulthood_work',
  'adulthood_work_make',
  'work_make_happi',
  'make_happi_work',
  'happi_work_mechan',
  'work_mechan_shop',
  'mechan_shop_junk',
  'shop_junk_yard',
  'junk_yard_buddi',
  'yard_buddi_work',
  'buddi_work_least',
  'work_least_get',
  'least_get_time',
  'get_time_friend',
  'time_friend_well',
  'friend_well_husband',
  'well_husband_hate',
  'husband_hate_spend',
  'hate_spend_money',
  'spend_money_tri',
  'money_tri_inflict',
  'tri_inflict_us',
  'inflict_us_live',
  'us_live_frugal',
  'live_frugal_physic',
  'frugal_physic_possibl',
  'physic_possibl_save',
  'possibl_save_everi',
  'save_everi_singl',
  'everi_singl_dime',
  'singl_dime_could',
  'dime_could_retir',
  'could_retir_right',
  'retir_right_second',
  'right_second_abl',
  'second_abl_go',
  'abl_go_money',
  'go_money_save',
  'money_save_son',
  'save_son_come',
  'son_come_home',
  'come_home_last',
  'home_last_night',
  'last_night_buddi',
  'night_buddi_work',
  'buddi_work_like',
  'work_like_know',
  'like_know_week',
  'know_week_cant',
  'week_cant_wait',
  'cant_wait_open',
  'wait_open_pleas',
  'open_pleas_open',
  'pleas_open_buddi',
  'open_buddi_snicker',
  'buddi_snicker_thought',
  'snicker_thought_would',
  'thought_would_gag',
  'would_gag_gift',
  'gag_gift_much',
  'gift_much_surpris',
  'much_surpris_huge',
  'surpris_huge_absolut',
  'huge_absolut_gorgeou',
  'absolut_gorgeou_wall',
  'gorgeou_wall_piec',
  'wall_piec_photo',
  'piec_photo_frame',
  'photo_frame_shelv',
  'frame_shelv_built',
  'shelv_built_husband',
  'built_husband_immedi',
  'husband_immedi_like',
  'immedi_like_wow',
  'like_wow_much',
  'wow_much_cost',
  'much_cost_could',
  'cost_could_went',
  'could_went_ira',
  'went_ira_ro',
  'ira_ro_account',
  'ro_account_idk',
  'account_idk_said',
  'idk_said_right',
  'said_right_son',
  'right_son_immedi',
  'son_immedi_shot',
  'immedi_shot_cold',
  'shot_cold_dagger',
  'cold_dagger_husband',
  'dagger_husband_say',
  'husband_say_truli',
  'say_truli_none',
  'truli_none_busi',
  'none_busi_money',
  'busi_money_sinc',
  'money_sinc_outright',
  'sinc_outright_refus',
  'outright_refus_buy',
  'refus_buy_mother',
  'buy_mother_nice',
  'mother_nice_thing',
  'nice_thing_absolut',
  'thing_absolut_deserv',
  'absolut_deserv_make',
  'deserv_make_sure',
  'make_sure_get',
  'sure_get_someth',
  'get_someth_nice',
  'someth_nice_record',
  'nice_record_made',
  'record_made_cost',
  'made_cost_us',
  'cost_us_anyth',
  'us_anyth_husband',
  'anyth_husband_stop',
  'husband_stop_talk',
  'stop_talk_look',
  'talk_look_wait',
  'look_wait_say',
  'wait_say_someth',
  'say_someth_shake',
  'someth_shake_head',
  'shake_head_walk',
  'head_walk_boy',
  'walk_boy_leav',
  'boy_leav_say',
  'leav_say_allow',
  'say_allow_chri',
  'allow_chri_embarass',
  'chri_embarass_infront',
  'embarass_infront_peopl',
  'infront_peopl_said',
  'peopl_said_someth',
  'said_someth_simpli',
  'someth_simpli_told',
  'simpli_told_chri',
  'told_chri_right',
  'chri_right_aita'],
 ['step',
  'mother',
  'obvious',
  'get',
  'along',
  'step',
  'mother',
  'year',
  'money',
  'joint',
  'account',
  'dad',
  'step',
  'mother',
  'access',
  'debit',
  'card',
  'pin',
  'number',
  'earn',
  'money',
  'sell',
  'handcraft',
  'item',
  'broke',
  'curfew',
  'day',
  'ago',
  'suggest',
  'consid',
  'whether',
  'take',
  '%',
  'money',
  'account',
  'fine',
  'punish',
  'everi',
  'time',
  'happen',
  'take',
  '%',
  'noth',
  'left',
  'upset',
  'threat',
  'decid',
  'move',
  'money',
  'take',
  'away',
  'log',
  'onlin',
  'transfer',
  'big',
  'brother',
  'account',
  'night',
  'next',
  'day',
  'went',
  'open',
  'joint',
  'bank',
  'account',
  'brother',
  'move',
  'money',
  'access',
  'anymor',
  'upon',
  'learn',
  'happen',
  'dad',
  'step',
  'mom',
  'furiou',
  'brother',
  'step',
  'mom',
  'focus',
  'fact',
  'ive',
  'taken',
  'away',
  'mean',
  'punish',
  'dad',
  'upset',
  'trust',
  'enough',
  'protect',
  'money',
  'insist',
  'allow',
  'step',
  'mom',
  'ban',
  'see',
  'brother',
  'meaningless',
  'accept',
  'author',
  'dad',
  'say',
  'hurt',
  'trust',
  'result',
  'trust',
  'anymor',
  'aita',
  'move',
  'money',
  'step_mother',
  'mother_obvious',
  'obvious_get',
  'get_along',
  'along_step',
  'step_mother',
  'mother_year',
  'year_money',
  'money_joint',
  'joint_account',
  'account_dad',
  'dad_step',
  'step_mother',
  'mother_access',
  'access_debit',
  'debit_card',
  'card_pin',
  'pin_number',
  'number_earn',
  'earn_money',
  'money_sell',
  'sell_handcraft',
  'handcraft_item',
  'item_broke',
  'broke_curfew',
  'curfew_day',
  'day_ago',
  'ago_suggest',
  'suggest_consid',
  'consid_whether',
  'whether_take',
  'take_%',
  '%_money',
  'money_account',
  'account_fine',
  'fine_punish',
  'punish_everi',
  'everi_time',
  'time_happen',
  'happen_take',
  'take_%',
  '%_noth',
  'noth_left',
  'left_upset',
  'upset_threat',
  'threat_decid',
  'decid_move',
  'move_money',
  'money_take',
  'take_away',
  'away_log',
  'log_onlin',
  'onlin_transfer',
  'transfer_big',
  'big_brother',
  'brother_account',
  'account_night',
  'night_next',
  'next_day',
  'day_went',
  'went_open',
  'open_joint',
  'joint_bank',
  'bank_account',
  'account_brother',
  'brother_move',
  'move_money',
  'money_access',
  'access_anymor',
  'anymor_upon',
  'upon_learn',
  'learn_happen',
  'happen_dad',
  'dad_step',
  'step_mom',
  'mom_furiou',
  'furiou_brother',
  'brother_step',
  'step_mom',
  'mom_focus',
  'focus_fact',
  'fact_ive',
  'ive_taken',
  'taken_away',
  'away_mean',
  'mean_punish',
  'punish_dad',
  'dad_upset',
  'upset_trust',
  'trust_enough',
  'enough_protect',
  'protect_money',
  'money_insist',
  'insist_allow',
  'allow_step',
  'step_mom',
  'mom_ban',
  'ban_see',
  'see_brother',
  'brother_meaningless',
  'meaningless_accept',
  'accept_author',
  'author_dad',
  'dad_say',
  'say_hurt',
  'hurt_trust',
  'trust_result',
  'result_trust',
  'trust_anymor',
  'anymor_aita',
  'aita_move',
  'move_money',
  'step_mother_obvious',
  'mother_obvious_get',
  'obvious_get_along',
  'get_along_step',
  'along_step_mother',
  'step_mother_year',
  'mother_year_money',
  'year_money_joint',
  'money_joint_account',
  'joint_account_dad',
  'account_dad_step',
  'dad_step_mother',
  'step_mother_access',
  'mother_access_debit',
  'access_debit_card',
  'debit_card_pin',
  'card_pin_number',
  'pin_number_earn',
  'number_earn_money',
  'earn_money_sell',
  'money_sell_handcraft',
  'sell_handcraft_item',
  'handcraft_item_broke',
  'item_broke_curfew',
  'broke_curfew_day',
  'curfew_day_ago',
  'day_ago_suggest',
  'ago_suggest_consid',
  'suggest_consid_whether',
  'consid_whether_take',
  'whether_take_%',
  'take_%_money',
  '%_money_account',
  'money_account_fine',
  'account_fine_punish',
  'fine_punish_everi',
  'punish_everi_time',
  'everi_time_happen',
  'time_happen_take',
  'happen_take_%',
  'take_%_noth',
  '%_noth_left',
  'noth_left_upset',
  'left_upset_threat',
  'upset_threat_decid',
  'threat_decid_move',
  'decid_move_money',
  'move_money_take',
  'money_take_away',
  'take_away_log',
  'away_log_onlin',
  'log_onlin_transfer',
  'onlin_transfer_big',
  'transfer_big_brother',
  'big_brother_account',
  'brother_account_night',
  'account_night_next',
  'night_next_day',
  'next_day_went',
  'day_went_open',
  'went_open_joint',
  'open_joint_bank',
  'joint_bank_account',
  'bank_account_brother',
  'account_brother_move',
  'brother_move_money',
  'move_money_access',
  'money_access_anymor',
  'access_anymor_upon',
  'anymor_upon_learn',
  'upon_learn_happen',
  'learn_happen_dad',
  'happen_dad_step',
  'dad_step_mom',
  'step_mom_furiou',
  'mom_furiou_brother',
  'furiou_brother_step',
  'brother_step_mom',
  'step_mom_focus',
  'mom_focus_fact',
  'focus_fact_ive',
  'fact_ive_taken',
  'ive_taken_away',
  'taken_away_mean',
  'away_mean_punish',
  'mean_punish_dad',
  'punish_dad_upset',
  'dad_upset_trust',
  'upset_trust_enough',
  'trust_enough_protect',
  'enough_protect_money',
  'protect_money_insist',
  'money_insist_allow',
  'insist_allow_step',
  'allow_step_mom',
  'step_mom_ban',
  'mom_ban_see',
  'ban_see_brother',
  'see_brother_meaningless',
  'brother_meaningless_accept',
  'meaningless_accept_author',
  'accept_author_dad',
  'author_dad_say',
  'dad_say_hurt',
  'say_hurt_trust',
  'hurt_trust_result',
  'trust_result_trust',
  'result_trust_anymor',
  'trust_anymor_aita',
  'anymor_aita_move',
  'aita_move_money'],
 ['two',
  'younger',
  'sister',
  'came',
  'visit',
  'husband',
  'suppos',
  '-week',
  'trip',
  'unfortun',
  'end',
  'earli',
  'caught',
  'follow',
  'husband',
  'dinner',
  'client',
  'told',
  'leav',
  'immedi',
  'could',
  'tell',
  'husband',
  'close',
  'explod',
  'even',
  'though',
  'kept',
  'beg',
  'hear',
  'let',
  'stay',
  'call',
  'dad',
  'let',
  'know',
  'would',
  'come',
  'home',
  'earli',
  'go',
  'well',
  'stepmoth',
  'want',
  'let',
  'stay',
  'morn',
  'would',
  'fli',
  'back',
  'daytim',
  'told',
  'possibl',
  'leav',
  'immedi',
  'im',
  'suppos',
  'visit',
  'soon',
  'sister',
  'told',
  'dad',
  'want',
  'see',
  'stepmoth',
  'said',
  'welcom',
  'hous',
  'reason',
  'husband',
  'angri',
  'client',
  'one',
  'notic',
  'take',
  'pictur',
  'confront',
  'rude',
  'aita',
  'two_younger',
  'younger_sister',
  'sister_came',
  'came_visit',
  'visit_husband',
  'husband_suppos',
  'suppos_-week',
  '-week_trip',
  'trip_unfortun',
  'unfortun_end',
  'end_earli',
  'earli_caught',
  'caught_follow',
  'follow_husband',
  'husband_dinner',
  'dinner_client',
  'client_told',
  'told_leav',
  'leav_immedi',
  'immedi_could',
  'could_tell',
  'tell_husband',
  'husband_close',
  'close_explod',
  'explod_even',
  'even_though',
  'though_kept',
  'kept_beg',
  'beg_hear',
  'hear_let',
  'let_stay',
  'stay_call',
  'call_dad',
  'dad_let',
  'let_know',
  'know_would',
  'would_come',
  'come_home',
  'home_earli',
  'earli_go',
  'go_well',
  'well_stepmoth',
  'stepmoth_want',
  'want_let',
  'let_stay',
  'stay_morn',
  'morn_would',
  'would_fli',
  'fli_back',
  'back_daytim',
  'daytim_told',
  'told_possibl',
  'possibl_leav',
  'leav_immedi',
  'immedi_im',
  'im_suppos',
  'suppos_visit',
  'visit_soon',
  'soon_sister',
  'sister_told',
  'told_dad',
  'dad_want',
  'want_see',
  'see_stepmoth',
  'stepmoth_said',
  'said_welcom',
  'welcom_hous',
  'hous_reason',
  'reason_husband',
  'husband_angri',
  'angri_client',
  'client_one',
  'one_notic',
  'notic_take',
  'take_pictur',
  'pictur_confront',
  'confront_rude',
  'rude_aita',
  'two_younger_sister',
  'younger_sister_came',
  'sister_came_visit',
  'came_visit_husband',
  'visit_husband_suppos',
  'husband_suppos_-week',
  'suppos_-week_trip',
  '-week_trip_unfortun',
  'trip_unfortun_end',
  'unfortun_end_earli',
  'end_earli_caught',
  'earli_caught_follow',
  'caught_follow_husband',
  'follow_husband_dinner',
  'husband_dinner_client',
  'dinner_client_told',
  'client_told_leav',
  'told_leav_immedi',
  'leav_immedi_could',
  'immedi_could_tell',
  'could_tell_husband',
  'tell_husband_close',
  'husband_close_explod',
  'close_explod_even',
  'explod_even_though',
  'even_though_kept',
  'though_kept_beg',
  'kept_beg_hear',
  'beg_hear_let',
  'hear_let_stay',
  'let_stay_call',
  'stay_call_dad',
  'call_dad_let',
  'dad_let_know',
  'let_know_would',
  'know_would_come',
  'would_come_home',
  'come_home_earli',
  'home_earli_go',
  'earli_go_well',
  'go_well_stepmoth',
  'well_stepmoth_want',
  'stepmoth_want_let',
  'want_let_stay',
  'let_stay_morn',
  'stay_morn_would',
  'morn_would_fli',
  'would_fli_back',
  'fli_back_daytim',
  'back_daytim_told',
  'daytim_told_possibl',
  'told_possibl_leav',
  'possibl_leav_immedi',
  'leav_immedi_im',
  'immedi_im_suppos',
  'im_suppos_visit',
  'suppos_visit_soon',
  'visit_soon_sister',
  'soon_sister_told',
  'sister_told_dad',
  'told_dad_want',
  'dad_want_see',
  'want_see_stepmoth',
  'see_stepmoth_said',
  'stepmoth_said_welcom',
  'said_welcom_hous',
  'welcom_hous_reason',
  'hous_reason_husband',
  'reason_husband_angri',
  'husband_angri_client',
  'angri_client_one',
  'client_one_notic',
  'one_notic_take',
  'notic_take_pictur',
  'take_pictur_confront',
  'pictur_confront_rude',
  'confront_rude_aita'],
 ['husband',
  'hospit',
  'surgeri',
  'involv',
  'anesthesia',
  'mom',
  'came',
  'wait',
  'speak',
  'minor',
  'disagr',
  'offer',
  'coffe',
  'declin',
  'polit',
  'hour',
  'surgeri',
  'told',
  'one',
  'person',
  'goe',
  'room',
  'day',
  'sinc',
  'still',
  'anesthesia',
  'understand',
  'woke',
  'call',
  'mom',
  'nurs',
  'ask',
  'mom',
  'go',
  'irrit',
  'felt',
  'like',
  'wait',
  'stress',
  'got',
  'ignor',
  'nurs',
  'told',
  'still',
  'fulli',
  'awak',
  'repeatedli',
  'call',
  'mom',
  'spontan',
  'basic',
  'hint',
  'get',
  'work',
  'natur',
  'reaction',
  'husband',
  'help',
  'feel',
  'irk',
  'want',
  'go',
  'home',
  'left',
  'minut',
  'later',
  'mom',
  'call',
  'say',
  'got',
  'room',
  'left',
  'could',
  'get',
  'time',
  'instead',
  'wait',
  'went',
  'home',
  'said',
  'okay',
  'flew',
  'handl',
  'reason',
  'said',
  'son',
  'act',
  'like',
  'said',
  'blame',
  'someth',
  'cant',
  'control',
  'im',
  'unfair',
  'put',
  'blame',
  'disagr',
  'cut',
  'convers',
  'short',
  'sens',
  'somehow',
  'blame',
  'unacknowledg',
  'ignor',
  'husband',
  'text',
  'later',
  'say',
  'im',
  'hostil',
  'noth',
  'focu',
  'husband',
  'health',
  'instead',
  'act',
  'petti',
  'think',
  'anyth',
  'qualifi',
  'petti',
  'husband_hospit',
  'hospit_surgeri',
  'surgeri_involv',
  'involv_anesthesia',
  'anesthesia_mom',
  'mom_came',
  'came_wait',
  'wait_speak',
  'speak_minor',
  'minor_disagr',
  'disagr_offer',
  'offer_coffe',
  'coffe_declin',
  'declin_polit',
  'polit_hour',
  'hour_surgeri',
  'surgeri_told',
  'told_one',
  'one_person',
  'person_goe',
  'goe_room',
  'room_day',
  'day_sinc',
  'sinc_still',
  'still_anesthesia',
  'anesthesia_understand',
  'understand_woke',
  'woke_call',
  'call_mom',
  'mom_nurs',
  'nurs_ask',
  'ask_mom',
  'mom_go',
  'go_irrit',
  'irrit_felt',
  'felt_like',
  'like_wait',
  'wait_stress',
  'stress_got',
  'got_ignor',
  'ignor_nurs',
  'nurs_told',
  'told_still',
  'still_fulli',
  'fulli_awak',
  'awak_repeatedli',
  'repeatedli_call',
  'call_mom',
  'mom_spontan',
  'spontan_basic',
  'basic_hint',
  'hint_get',
  'get_work',
  'work_natur',
  'natur_reaction',
  'reaction_husband',
  'husband_help',
  'help_feel',
  'feel_irk',
  'irk_want',
  'want_go',
  'go_home',
  'home_left',
  'left_minut',
  'minut_later',
  'later_mom',
  'mom_call',
  'call_say',
  'say_got',
  'got_room',
  'room_left',
  'left_could',
  'could_get',
  'get_time',
  'time_instead',
  'instead_wait',
  'wait_went',
  'went_home',
  'home_said',
  'said_okay',
  'okay_flew',
  'flew_handl',
  'handl_reason',
  'reason_said',
  'said_son',
  'son_act',
  'act_like',
  'like_said',
  'said_blame',
  'blame_someth',
  'someth_cant',
  'cant_control',
  'control_im',
  'im_unfair',
  'unfair_put',
  'put_blame',
  'blame_disagr',
  'disagr_cut',
  'cut_convers',
  'convers_short',
  'short_sens',
  'sens_somehow',
  'somehow_blame',
  'blame_unacknowledg',
  'unacknowledg_ignor',
  'ignor_husband',
  'husband_text',
  'text_later',
  'later_say',
  'say_im',
  'im_hostil',
  'hostil_noth',
  'noth_focu',
  'focu_husband',
  'husband_health',
  'health_instead',
  'instead_act',
  'act_petti',
  'petti_think',
  'think_anyth',
  'anyth_qualifi',
  'qualifi_petti',
  'husband_hospit_surgeri',
  'hospit_surgeri_involv',
  'surgeri_involv_anesthesia',
  'involv_anesthesia_mom',
  'anesthesia_mom_came',
  'mom_came_wait',
  'came_wait_speak',
  'wait_speak_minor',
  'speak_minor_disagr',
  'minor_disagr_offer',
  'disagr_offer_coffe',
  'offer_coffe_declin',
  'coffe_declin_polit',
  'declin_polit_hour',
  'polit_hour_surgeri',
  'hour_surgeri_told',
  'surgeri_told_one',
  'told_one_person',
  'one_person_goe',
  'person_goe_room',
  'goe_room_day',
  'room_day_sinc',
  'day_sinc_still',
  'sinc_still_anesthesia',
  'still_anesthesia_understand',
  'anesthesia_understand_woke',
  'understand_woke_call',
  'woke_call_mom',
  'call_mom_nurs',
  'mom_nurs_ask',
  'nurs_ask_mom',
  'ask_mom_go',
  'mom_go_irrit',
  'go_irrit_felt',
  'irrit_felt_like',
  'felt_like_wait',
  'like_wait_stress',
  'wait_stress_got',
  'stress_got_ignor',
  'got_ignor_nurs',
  'ignor_nurs_told',
  'nurs_told_still',
  'told_still_fulli',
  'still_fulli_awak',
  'fulli_awak_repeatedli',
  'awak_repeatedli_call',
  'repeatedli_call_mom',
  'call_mom_spontan',
  'mom_spontan_basic',
  'spontan_basic_hint',
  'basic_hint_get',
  'hint_get_work',
  'get_work_natur',
  'work_natur_reaction',
  'natur_reaction_husband',
  'reaction_husband_help',
  'husband_help_feel',
  'help_feel_irk',
  'feel_irk_want',
  'irk_want_go',
  'want_go_home',
  'go_home_left',
  'home_left_minut',
  'left_minut_later',
  'minut_later_mom',
  'later_mom_call',
  'mom_call_say',
  'call_say_got',
  'say_got_room',
  'got_room_left',
  'room_left_could',
  'left_could_get',
  'could_get_time',
  'get_time_instead',
  'time_instead_wait',
  'instead_wait_went',
  'wait_went_home',
  'went_home_said',
  'home_said_okay',
  'said_okay_flew',
  'okay_flew_handl',
  'flew_handl_reason',
  'handl_reason_said',
  'reason_said_son',
  'said_son_act',
  'son_act_like',
  'act_like_said',
  'like_said_blame',
  'said_blame_someth',
  'blame_someth_cant',
  'someth_cant_control',
  'cant_control_im',
  'control_im_unfair',
  'im_unfair_put',
  'unfair_put_blame',
  'put_blame_disagr',
  'blame_disagr_cut',
  'disagr_cut_convers',
  'cut_convers_short',
  'convers_short_sens',
  'short_sens_somehow',
  'sens_somehow_blame',
  'somehow_blame_unacknowledg',
  'blame_unacknowledg_ignor',
  'unacknowledg_ignor_husband',
  'ignor_husband_text',
  'husband_text_later',
  'text_later_say',
  'later_say_im',
  'say_im_hostil',
  'im_hostil_noth',
  'hostil_noth_focu',
  'noth_focu_husband',
  'focu_husband_health',
  'husband_health_instead',
  'health_instead_act',
  'instead_act_petti',
  'act_petti_think',
  'petti_think_anyth',
  'think_anyth_qualifi',
  'anyth_qualifi_petti'],
 ['three',
  'older',
  'sibl',
  'diana',
  'sebastian',
  'jake',
  'surpris',
  'babi',
  'im',
  'closer',
  'jake',
  'diana',
  'sebastian',
  'jake',
  'alway',
  'interest',
  'sport',
  'train',
  'sinc',
  'went',
  'pro',
  'colleg',
  'even',
  'look',
  'like',
  'young',
  'schwarzenegg',
  'took',
  'sibl',
  'home',
  'activ',
  'watch',
  'mean',
  'young',
  '*',
  'desper',
  '*',
  'interact',
  'sibl',
  'lot',
  'needi',
  'thing',
  'took',
  'bake',
  'class',
  'diana',
  'watch',
  'everi',
  'stupid',
  'star',
  'war',
  'movi',
  'could',
  'talk',
  'sebastian',
  'becam',
  'rock',
  'jake',
  'im',
  'needi',
  'anymor',
  'never',
  'realli',
  'talk',
  'sebastian',
  'claim',
  'reason',
  'peopl',
  'mostli',
  'women',
  'reject',
  'look',
  'mean',
  'okay',
  'littl',
  'bald',
  'littl',
  'overweight',
  'also',
  'grumpi',
  'noisi',
  'think',
  'jake',
  'stupid',
  'look',
  'realli',
  'anoth',
  'reason',
  'jake',
  'phd',
  'im',
  'top',
  'class',
  'stupid',
  'muscl',
  'ive',
  'laugh',
  'disrespect',
  'resent',
  'year',
  'im',
  'bit',
  'older',
  'cut',
  'move',
  'away',
  'sad',
  'brother',
  'want',
  'relationship',
  'meh',
  'guy',
  'girl',
  'want',
  'anyth',
  'seriou',
  'month',
  'ago',
  'girl',
  'pick',
  'form',
  'parent',
  'hous',
  'introduc',
  'famili',
  'next',
  'day',
  'said',
  'sebastian',
  'sent',
  '*',
  'unfckabl',
  '*',
  'messag',
  'fb',
  'ever',
  'receiv',
  'life',
  'read',
  'someth',
  'call',
  'beauti',
  'said',
  'knew',
  'seriou',
  'offici',
  'ask',
  'date',
  'min',
  'later',
  'ask',
  'minut',
  'later',
  'ask',
  'show',
  'text',
  'minut',
  'later',
  'spent',
  'next',
  'minut',
  'insult',
  'block',
  'agre',
  'tell',
  'anyth',
  'said',
  'care',
  'broke',
  'remov',
  'hous',
  'ill',
  'live',
  'parent',
  'least',
  'month',
  'find',
  'anoth',
  'apart',
  'sebastian',
  'also',
  'live',
  'went',
  'trough',
  'door',
  'laugh',
  'call',
  'kick',
  'chad',
  'even',
  'look',
  'like',
  'littl',
  'jake',
  'still',
  'got',
  'broken',
  'know',
  'feel',
  'peopl',
  'reject',
  'look',
  'better',
  'look',
  'fuckboy',
  'stereotyp',
  'roll',
  'eye',
  'said',
  'look',
  'reason',
  'women',
  'run',
  'form',
  'rather',
  'creepi',
  'person',
  'rememb',
  'text',
  'sent',
  '\\',
  '[',
  'ex\\',
  ']',
  'month',
  'ago',
  'got',
  'red',
  'face',
  'mom',
  'said',
  'rude',
  'sebastian',
  'alreadi',
  'bad',
  'time',
  'age',
  'live',
  'home',
  'three_older',
  'older_sibl',
  'sibl_diana',
  'diana_sebastian',
  'sebastian_jake',
  'jake_surpris',
  'surpris_babi',
  'babi_im',
  'im_closer',
  'closer_jake',
  'jake_diana',
  'diana_sebastian',
  'sebastian_jake',
  'jake_alway',
  'alway_interest',
  'interest_sport',
  'sport_train',
  'train_sinc',
  'sinc_went',
  'went_pro',
  'pro_colleg',
  'colleg_even',
  'even_look',
  'look_like',
  'like_young',
  'young_schwarzenegg',
  'schwarzenegg_took',
  'took_sibl',
  'sibl_home',
  'home_activ',
  'activ_watch',
  'watch_mean',
  'mean_young',
  'young_*',
  '*_desper',
  'desper_*',
  '*_interact',
  'interact_sibl',
  'sibl_lot',
  'lot_needi',
  'needi_thing',
  'thing_took',
  'took_bake',
  'bake_class',
  'class_diana',
  'diana_watch',
  'watch_everi',
  'everi_stupid',
  'stupid_star',
  'star_war',
  'war_movi',
  'movi_could',
  'could_talk',
  'talk_sebastian',
  'sebastian_becam',
  'becam_rock',
  'rock_jake',
  'jake_im',
  'im_needi',
  'needi_anymor',
  'anymor_never',
  'never_realli',
  'realli_talk',
  'talk_sebastian',
  'sebastian_claim',
  'claim_reason',
  'reason_peopl',
  'peopl_mostli',
  'mostli_women',
  'women_reject',
  'reject_look',
  'look_mean',
  'mean_okay',
  'okay_littl',
  'littl_bald',
  'bald_littl',
  'littl_overweight',
  'overweight_also',
  'also_grumpi',
  'grumpi_noisi',
  'noisi_think',
  'think_jake',
  'jake_stupid',
  'stupid_look',
  'look_realli',
  'realli_anoth',
  'anoth_reason',
  'reason_jake',
  'jake_phd',
  'phd_im',
  'im_top',
  'top_class',
  'class_stupid',
  'stupid_muscl',
  'muscl_ive',
  'ive_laugh',
  'laugh_disrespect',
  'disrespect_resent',
  'resent_year',
  'year_im',
  'im_bit',
  'bit_older',
  'older_cut',
  'cut_move',
  'move_away',
  'away_sad',
  'sad_brother',
  'brother_want',
  'want_relationship',
  'relationship_meh',
  'meh_guy',
  'guy_girl',
  'girl_want',
  'want_anyth',
  'anyth_seriou',
  'seriou_month',
  'month_ago',
  'ago_girl',
  'girl_pick',
  'pick_form',
  'form_parent',
  'parent_hous',
  'hous_introduc',
  'introduc_famili',
  'famili_next',
  'next_day',
  'day_said',
  'said_sebastian',
  'sebastian_sent',
  'sent_*',
  '*_unfckabl',
  'unfckabl_*',
  '*_messag',
  'messag_fb',
  'fb_ever',
  'ever_receiv',
  'receiv_life',
  'life_read',
  'read_someth',
  'someth_call',
  'call_beauti',
  'beauti_said',
  'said_knew',
  'knew_seriou',
  'seriou_offici',
  'offici_ask',
  'ask_date',
  'date_min',
  'min_later',
  'later_ask',
  'ask_minut',
  'minut_later',
  'later_ask',
  'ask_show',
  'show_text',
  'text_minut',
  'minut_later',
  'later_spent',
  'spent_next',
  'next_minut',
  'minut_insult',
  'insult_block',
  'block_agre',
  'agre_tell',
  'tell_anyth',
  'anyth_said',
  'said_care',
  'care_broke',
  'broke_remov',
  'remov_hous',
  'hous_ill',
  'ill_live',
  'live_parent',
  'parent_least',
  'least_month',
  'month_find',
  'find_anoth',
  'anoth_apart',
  'apart_sebastian',
  'sebastian_also',
  'also_live',
  'live_went',
  'went_trough',
  'trough_door',
  'door_laugh',
  'laugh_call',
  'call_kick',
  'kick_chad',
  'chad_even',
  'even_look',
  'look_like',
  'like_littl',
  'littl_jake',
  'jake_still',
  'still_got',
  'got_broken',
  'broken_know',
  'know_feel',
  'feel_peopl',
  'peopl_reject',
  'reject_look',
  'look_better',
  'better_look',
  'look_fuckboy',
  'fuckboy_stereotyp',
  'stereotyp_roll',
  'roll_eye',
  'eye_said',
  'said_look',
  'look_reason',
  'reason_women',
  'women_run',
  'run_form',
  'form_rather',
  'rather_creepi',
  'creepi_person',
  'person_rememb',
  'rememb_text',
  'text_sent',
  'sent_\\',
  '\\_[',
  '[_ex\\',
  'ex\\_]',
  ']_month',
  'month_ago',
  'ago_got',
  'got_red',
  'red_face',
  'face_mom',
  'mom_said',
  'said_rude',
  'rude_sebastian',
  'sebastian_alreadi',
  'alreadi_bad',
  'bad_time',
  'time_age',
  'age_live',
  'live_home',
  'three_older_sibl',
  'older_sibl_diana',
  'sibl_diana_sebastian',
  'diana_sebastian_jake',
  'sebastian_jake_surpris',
  'jake_surpris_babi',
  'surpris_babi_im',
  'babi_im_closer',
  'im_closer_jake',
  'closer_jake_diana',
  'jake_diana_sebastian',
  'diana_sebastian_jake',
  'sebastian_jake_alway',
  'jake_alway_interest',
  'alway_interest_sport',
  'interest_sport_train',
  'sport_train_sinc',
  'train_sinc_went',
  'sinc_went_pro',
  'went_pro_colleg',
  'pro_colleg_even',
  'colleg_even_look',
  'even_look_like',
  'look_like_young',
  'like_young_schwarzenegg',
  'young_schwarzenegg_took',
  'schwarzenegg_took_sibl',
  'took_sibl_home',
  'sibl_home_activ',
  'home_activ_watch',
  'activ_watch_mean',
  'watch_mean_young',
  'mean_young_*',
  'young_*_desper',
  '*_desper_*',
  'desper_*_interact',
  '*_interact_sibl',
  'interact_sibl_lot',
  'sibl_lot_needi',
  'lot_needi_thing',
  'needi_thing_took',
  'thing_took_bake',
  'took_bake_class',
  'bake_class_diana',
  'class_diana_watch',
  'diana_watch_everi',
  'watch_everi_stupid',
  'everi_stupid_star',
  'stupid_star_war',
  'star_war_movi',
  'war_movi_could',
  'movi_could_talk',
  'could_talk_sebastian',
  'talk_sebastian_becam',
  'sebastian_becam_rock',
  'becam_rock_jake',
  'rock_jake_im',
  'jake_im_needi',
  'im_needi_anymor',
  'needi_anymor_never',
  'anymor_never_realli',
  'never_realli_talk',
  'realli_talk_sebastian',
  'talk_sebastian_claim',
  'sebastian_claim_reason',
  'claim_reason_peopl',
  'reason_peopl_mostli',
  'peopl_mostli_women',
  'mostli_women_reject',
  'women_reject_look',
  'reject_look_mean',
  'look_mean_okay',
  'mean_okay_littl',
  'okay_littl_bald',
  'littl_bald_littl',
  'bald_littl_overweight',
  'littl_overweight_also',
  'overweight_also_grumpi',
  'also_grumpi_noisi',
  'grumpi_noisi_think',
  'noisi_think_jake',
  'think_jake_stupid',
  'jake_stupid_look',
  'stupid_look_realli',
  'look_realli_anoth',
  'realli_anoth_reason',
  'anoth_reason_jake',
  'reason_jake_phd',
  'jake_phd_im',
  'phd_im_top',
  'im_top_class',
  'top_class_stupid',
  'class_stupid_muscl',
  'stupid_muscl_ive',
  'muscl_ive_laugh',
  'ive_laugh_disrespect',
  'laugh_disrespect_resent',
  'disrespect_resent_year',
  'resent_year_im',
  'year_im_bit',
  'im_bit_older',
  'bit_older_cut',
  'older_cut_move',
  'cut_move_away',
  'move_away_sad',
  'away_sad_brother',
  'sad_brother_want',
  'brother_want_relationship',
  'want_relationship_meh',
  'relationship_meh_guy',
  'meh_guy_girl',
  'guy_girl_want',
  'girl_want_anyth',
  'want_anyth_seriou',
  'anyth_seriou_month',
  'seriou_month_ago',
  'month_ago_girl',
  'ago_girl_pick',
  'girl_pick_form',
  'pick_form_parent',
  'form_parent_hous',
  'parent_hous_introduc',
  'hous_introduc_famili',
  'introduc_famili_next',
  'famili_next_day',
  'next_day_said',
  'day_said_sebastian',
  'said_sebastian_sent',
  'sebastian_sent_*',
  'sent_*_unfckabl',
  '*_unfckabl_*',
  'unfckabl_*_messag',
  '*_messag_fb',
  'messag_fb_ever',
  'fb_ever_receiv',
  'ever_receiv_life',
  'receiv_life_read',
  'life_read_someth',
  'read_someth_call',
  'someth_call_beauti',
  'call_beauti_said',
  'beauti_said_knew',
  'said_knew_seriou',
  'knew_seriou_offici',
  'seriou_offici_ask',
  'offici_ask_date',
  'ask_date_min',
  'date_min_later',
  'min_later_ask',
  'later_ask_minut',
  'ask_minut_later',
  'minut_later_ask',
  'later_ask_show',
  'ask_show_text',
  'show_text_minut',
  'text_minut_later',
  'minut_later_spent',
  'later_spent_next',
  'spent_next_minut',
  'next_minut_insult',
  'minut_insult_block',
  'insult_block_agre',
  'block_agre_tell',
  'agre_tell_anyth',
  'tell_anyth_said',
  'anyth_said_care',
  'said_care_broke',
  'care_broke_remov',
  'broke_remov_hous',
  'remov_hous_ill',
  'hous_ill_live',
  'ill_live_parent',
  'live_parent_least',
  'parent_least_month',
  'least_month_find',
  'month_find_anoth',
  'find_anoth_apart',
  'anoth_apart_sebastian',
  'apart_sebastian_also',
  'sebastian_also_live',
  'also_live_went',
  'live_went_trough',
  'went_trough_door',
  'trough_door_laugh',
  'door_laugh_call',
  'laugh_call_kick',
  'call_kick_chad',
  'kick_chad_even',
  'chad_even_look',
  'even_look_like',
  'look_like_littl',
  'like_littl_jake',
  'littl_jake_still',
  'jake_still_got',
  'still_got_broken',
  'got_broken_know',
  'broken_know_feel',
  'know_feel_peopl',
  'feel_peopl_reject',
  'peopl_reject_look',
  'reject_look_better',
  'look_better_look',
  'better_look_fuckboy',
  'look_fuckboy_stereotyp',
  'fuckboy_stereotyp_roll',
  'stereotyp_roll_eye',
  'roll_eye_said',
  'eye_said_look',
  'said_look_reason',
  'look_reason_women',
  'reason_women_run',
  'women_run_form',
  'run_form_rather',
  'form_rather_creepi',
  'rather_creepi_person',
  'creepi_person_rememb',
  'person_rememb_text',
  'rememb_text_sent',
  'text_sent_\\',
  'sent_\\_[',
  '\\_[_ex\\',
  '[_ex\\_]',
  'ex\\_]_month',
  ']_month_ago',
  'month_ago_got',
  'ago_got_red',
  'got_red_face',
  'red_face_mom',
  'face_mom_said',
  'mom_said_rude',
  'said_rude_sebastian',
  'rude_sebastian_alreadi',
  'sebastian_alreadi_bad',
  'alreadi_bad_time',
  'bad_time_age',
  'time_age_live',
  'age_live_home'],
 ['mom',
  'die',
  'year',
  'old',
  'dad',
  'end',
  'turn',
  'one',
  'good',
  'friend',
  'ana',
  'end',
  'get',
  'marri',
  'ana',
  'brought',
  'idea',
  'adopt',
  'day',
  'wed',
  'someth',
  'dad',
  'went',
  'nut',
  'mention',
  'kinda',
  'spoil',
  'rest',
  'wed',
  'next',
  'year',
  'realli',
  'intens',
  'therapi',
  'told',
  'therapist',
  'need',
  'mom',
  'would',
  'provid',
  'safeti',
  'betray',
  'mom',
  'accept',
  'anoth',
  'love',
  'mom',
  'life',
  'therapist',
  'put',
  'recommend',
  'court',
  'approv',
  'judg',
  'spoke',
  'told',
  'would',
  'run',
  'away',
  'would',
  'everyth',
  'never',
  'come',
  'back',
  'time',
  'meant',
  'busi',
  'ask',
  'want',
  'adopt',
  'listen',
  'address',
  'court',
  'deni',
  'adopt',
  'request',
  'told',
  'dad',
  'ana',
  'board',
  'adopt',
  'would',
  'approv',
  'court',
  'tri',
  'request',
  'differ',
  'judg',
  'receiv',
  'respons',
  'ask',
  'constantli',
  'chang',
  'mind',
  'ana',
  'would',
  'put',
  'tri',
  'fill',
  'place',
  'mom',
  'life',
  'everi',
  'time',
  'told',
  'could',
  'never',
  'mom',
  'took',
  'challeng',
  'tri',
  'harder',
  'better',
  'would',
  'dedic',
  'much',
  'time',
  'crazi',
  'never',
  'appreci',
  'instead',
  'ana',
  'instead',
  'dad',
  'tell',
  'ana',
  'saw',
  'mom',
  'thing',
  'want',
  'even',
  'kid',
  'oldest',
  'son',
  'son',
  'boy',
  'shed',
  'call',
  'boy',
  'mom',
  'etc',
  'wherea',
  'never',
  'call',
  'mom',
  'honest',
  'even',
  'love',
  'year',
  'see',
  'intrus',
  'famili',
  'member',
  'stop',
  'relationship',
  'dad',
  'also',
  'best',
  'like',
  'take',
  'answer',
  'quick',
  'tri',
  'push',
  'adopt',
  'even',
  'told',
  'would',
  'rather',
  'grandpar',
  'auntuncl',
  'close',
  'famili',
  'friend',
  'ana',
  'die',
  'insist',
  'ana',
  'mom',
  'best',
  'turn',
  'month',
  'ago',
  'ran',
  'like',
  'ass',
  'fire',
  'get',
  'away',
  'dad',
  'ana',
  'live',
  'matern',
  'grandpar',
  'littl',
  'move',
  'matern',
  'uncl',
  'live',
  'near',
  'realli',
  'good',
  'apprenticeship',
  'want',
  'join',
  'patern',
  'grandpar',
  'celebr',
  'wed',
  'anniversari',
  'past',
  'weekend',
  'ana',
  'approach',
  'hand',
  'paper',
  'adult',
  'adopt',
  'told',
  'love',
  'want',
  'know',
  'late',
  'would',
  'still',
  'adopt',
  'want',
  'make',
  'relationship',
  'offici',
  'mother',
  'son',
  'ask',
  'could',
  'delusion',
  'said',
  'adopt',
  'year',
  'told',
  'would',
  'chang',
  'mind',
  'dad',
  'piss',
  'choic',
  'word',
  'chao',
  'ensu',
  'parti',
  'aita',
  'mom_die',
  'die_year',
  'year_old',
  'old_dad',
  'dad_end',
  'end_turn',
  'turn_one',
  'one_good',
  'good_friend',
  'friend_ana',
  'ana_end',
  'end_get',
  'get_marri',
  'marri_ana',
  'ana_brought',
  'brought_idea',
  'idea_adopt',
  'adopt_day',
  'day_wed',
  'wed_someth',
  'someth_dad',
  'dad_went',
  'went_nut',
  'nut_mention',
  'mention_kinda',
  'kinda_spoil',
  'spoil_rest',
  'rest_wed',
  'wed_next',
  'next_year',
  'year_realli',
  'realli_intens',
  'intens_therapi',
  'therapi_told',
  'told_therapist',
  'therapist_need',
  'need_mom',
  'mom_would',
  'would_provid',
  'provid_safeti',
  'safeti_betray',
  'betray_mom',
  'mom_accept',
  'accept_anoth',
  'anoth_love',
  'love_mom',
  'mom_life',
  'life_therapist',
  'therapist_put',
  'put_recommend',
  'recommend_court',
  'court_approv',
  'approv_judg',
  'judg_spoke',
  'spoke_told',
  'told_would',
  'would_run',
  'run_away',
  'away_would',
  'would_everyth',
  'everyth_never',
  'never_come',
  'come_back',
  'back_time',
  'time_meant',
  'meant_busi',
  'busi_ask',
  'ask_want',
  'want_adopt',
  'adopt_listen',
  'listen_address',
  'address_court',
  'court_deni',
  'deni_adopt',
  'adopt_request',
  'request_told',
  'told_dad',
  'dad_ana',
  'ana_board',
  'board_adopt',
  'adopt_would',
  'would_approv',
  'approv_court',
  'court_tri',
  'tri_request',
  'request_differ',
  'differ_judg',
  'judg_receiv',
  'receiv_respons',
  'respons_ask',
  'ask_constantli',
  'constantli_chang',
  'chang_mind',
  'mind_ana',
  'ana_would',
  'would_put',
  'put_tri',
  'tri_fill',
  'fill_place',
  'place_mom',
  'mom_life',
  'life_everi',
  'everi_time',
  'time_told',
  'told_could',
  'could_never',
  'never_mom',
  'mom_took',
  'took_challeng',
  'challeng_tri',
  'tri_harder',
  'harder_better',
  'better_would',
  'would_dedic',
  'dedic_much',
  'much_time',
  'time_crazi',
  'crazi_never',
  'never_appreci',
  'appreci_instead',
  'instead_ana',
  'ana_instead',
  'instead_dad',
  'dad_tell',
  'tell_ana',
  'ana_saw',
  'saw_mom',
  'mom_thing',
  'thing_want',
  'want_even',
  'even_kid',
  'kid_oldest',
  'oldest_son',
  'son_son',
  'son_boy',
  'boy_shed',
  'shed_call',
  'call_boy',
  'boy_mom',
  'mom_etc',
  'etc_wherea',
  'wherea_never',
  'never_call',
  'call_mom',
  'mom_honest',
  'honest_even',
  'even_love',
  'love_year',
  'year_see',
  'see_intrus',
  'intrus_famili',
  'famili_member',
  'member_stop',
  'stop_relationship',
  'relationship_dad',
  'dad_also',
  'also_best',
  'best_like',
  'like_take',
  'take_answer',
  'answer_quick',
  'quick_tri',
  'tri_push',
  'push_adopt',
  'adopt_even',
  'even_told',
  'told_would',
  'would_rather',
  'rather_grandpar',
  'grandpar_auntuncl',
  'auntuncl_close',
  'close_famili',
  'famili_friend',
  'friend_ana',
  'ana_die',
  'die_insist',
  'insist_ana',
  'ana_mom',
  'mom_best',
  'best_turn',
  'turn_month',
  'month_ago',
  'ago_ran',
  'ran_like',
  'like_ass',
  'ass_fire',
  'fire_get',
  'get_away',
  'away_dad',
  'dad_ana',
  'ana_live',
  'live_matern',
  'matern_grandpar',
  'grandpar_littl',
  'littl_move',
  'move_matern',
  'matern_uncl',
  'uncl_live',
  'live_near',
  'near_realli',
  'realli_good',
  'good_apprenticeship',
  'apprenticeship_want',
  'want_join',
  'join_patern',
  'patern_grandpar',
  'grandpar_celebr',
  'celebr_wed',
  'wed_anniversari',
  'anniversari_past',
  'past_weekend',
  'weekend_ana',
  'ana_approach',
  'approach_hand',
  'hand_paper',
  'paper_adult',
  'adult_adopt',
  'adopt_told',
  'told_love',
  'love_want',
  'want_know',
  'know_late',
  'late_would',
  'would_still',
  'still_adopt',
  'adopt_want',
  'want_make',
  'make_relationship',
  'relationship_offici',
  'offici_mother',
  'mother_son',
  'son_ask',
  'ask_could',
  'could_delusion',
  'delusion_said',
  'said_adopt',
  'adopt_year',
  'year_told',
  'told_would',
  'would_chang',
  'chang_mind',
  'mind_dad',
  'dad_piss',
  'piss_choic',
  'choic_word',
  'word_chao',
  'chao_ensu',
  'ensu_parti',
  'parti_aita',
  'mom_die_year',
  'die_year_old',
  'year_old_dad',
  'old_dad_end',
  'dad_end_turn',
  'end_turn_one',
  'turn_one_good',
  'one_good_friend',
  'good_friend_ana',
  'friend_ana_end',
  'ana_end_get',
  'end_get_marri',
  'get_marri_ana',
  'marri_ana_brought',
  'ana_brought_idea',
  'brought_idea_adopt',
  'idea_adopt_day',
  'adopt_day_wed',
  'day_wed_someth',
  'wed_someth_dad',
  'someth_dad_went',
  'dad_went_nut',
  'went_nut_mention',
  'nut_mention_kinda',
  'mention_kinda_spoil',
  'kinda_spoil_rest',
  'spoil_rest_wed',
  'rest_wed_next',
  'wed_next_year',
  'next_year_realli',
  'year_realli_intens',
  'realli_intens_therapi',
  'intens_therapi_told',
  'therapi_told_therapist',
  'told_therapist_need',
  'therapist_need_mom',
  'need_mom_would',
  'mom_would_provid',
  'would_provid_safeti',
  'provid_safeti_betray',
  'safeti_betray_mom',
  'betray_mom_accept',
  'mom_accept_anoth',
  'accept_anoth_love',
  'anoth_love_mom',
  'love_mom_life',
  'mom_life_therapist',
  'life_therapist_put',
  'therapist_put_recommend',
  'put_recommend_court',
  'recommend_court_approv',
  'court_approv_judg',
  'approv_judg_spoke',
  'judg_spoke_told',
  'spoke_told_would',
  'told_would_run',
  'would_run_away',
  'run_away_would',
  'away_would_everyth',
  'would_everyth_never',
  'everyth_never_come',
  'never_come_back',
  'come_back_time',
  'back_time_meant',
  'time_meant_busi',
  'meant_busi_ask',
  'busi_ask_want',
  'ask_want_adopt',
  'want_adopt_listen',
  'adopt_listen_address',
  'listen_address_court',
  'address_court_deni',
  'court_deni_adopt',
  'deni_adopt_request',
  'adopt_request_told',
  'request_told_dad',
  'told_dad_ana',
  'dad_ana_board',
  'ana_board_adopt',
  'board_adopt_would',
  'adopt_would_approv',
  'would_approv_court',
  'approv_court_tri',
  'court_tri_request',
  'tri_request_differ',
  'request_differ_judg',
  'differ_judg_receiv',
  'judg_receiv_respons',
  'receiv_respons_ask',
  'respons_ask_constantli',
  'ask_constantli_chang',
  'constantli_chang_mind',
  'chang_mind_ana',
  'mind_ana_would',
  'ana_would_put',
  'would_put_tri',
  'put_tri_fill',
  'tri_fill_place',
  'fill_place_mom',
  'place_mom_life',
  'mom_life_everi',
  'life_everi_time',
  'everi_time_told',
  'time_told_could',
  'told_could_never',
  'could_never_mom',
  'never_mom_took',
  'mom_took_challeng',
  'took_challeng_tri',
  'challeng_tri_harder',
  'tri_harder_better',
  'harder_better_would',
  'better_would_dedic',
  'would_dedic_much',
  'dedic_much_time',
  'much_time_crazi',
  'time_crazi_never',
  'crazi_never_appreci',
  'never_appreci_instead',
  'appreci_instead_ana',
  'instead_ana_instead',
  'ana_instead_dad',
  'instead_dad_tell',
  'dad_tell_ana',
  'tell_ana_saw',
  'ana_saw_mom',
  'saw_mom_thing',
  'mom_thing_want',
  'thing_want_even',
  'want_even_kid',
  'even_kid_oldest',
  'kid_oldest_son',
  'oldest_son_son',
  'son_son_boy',
  'son_boy_shed',
  'boy_shed_call',
  'shed_call_boy',
  'call_boy_mom',
  'boy_mom_etc',
  'mom_etc_wherea',
  'etc_wherea_never',
  'wherea_never_call',
  'never_call_mom',
  'call_mom_honest',
  'mom_honest_even',
  'honest_even_love',
  'even_love_year',
  'love_year_see',
  'year_see_intrus',
  'see_intrus_famili',
  'intrus_famili_member',
  'famili_member_stop',
  'member_stop_relationship',
  'stop_relationship_dad',
  'relationship_dad_also',
  'dad_also_best',
  'also_best_like',
  'best_like_take',
  'like_take_answer',
  'take_answer_quick',
  'answer_quick_tri',
  'quick_tri_push',
  'tri_push_adopt',
  'push_adopt_even',
  'adopt_even_told',
  'even_told_would',
  'told_would_rather',
  'would_rather_grandpar',
  'rather_grandpar_auntuncl',
  'grandpar_auntuncl_close',
  'auntuncl_close_famili',
  'close_famili_friend',
  'famili_friend_ana',
  'friend_ana_die',
  'ana_die_insist',
  'die_insist_ana',
  'insist_ana_mom',
  'ana_mom_best',
  'mom_best_turn',
  'best_turn_month',
  'turn_month_ago',
  'month_ago_ran',
  'ago_ran_like',
  'ran_like_ass',
  'like_ass_fire',
  'ass_fire_get',
  'fire_get_away',
  'get_away_dad',
  'away_dad_ana',
  'dad_ana_live',
  'ana_live_matern',
  'live_matern_grandpar',
  'matern_grandpar_littl',
  'grandpar_littl_move',
  'littl_move_matern',
  'move_matern_uncl',
  'matern_uncl_live',
  'uncl_live_near',
  'live_near_realli',
  'near_realli_good',
  'realli_good_apprenticeship',
  'good_apprenticeship_want',
  'apprenticeship_want_join',
  'want_join_patern',
  'join_patern_grandpar',
  'patern_grandpar_celebr',
  'grandpar_celebr_wed',
  'celebr_wed_anniversari',
  'wed_anniversari_past',
  'anniversari_past_weekend',
  'past_weekend_ana',
  'weekend_ana_approach',
  'ana_approach_hand',
  'approach_hand_paper',
  'hand_paper_adult',
  'paper_adult_adopt',
  'adult_adopt_told',
  'adopt_told_love',
  'told_love_want',
  'love_want_know',
  'want_know_late',
  'know_late_would',
  'late_would_still',
  'would_still_adopt',
  'still_adopt_want',
  'adopt_want_make',
  'want_make_relationship',
  'make_relationship_offici',
  'relationship_offici_mother',
  'offici_mother_son',
  'mother_son_ask',
  'son_ask_could',
  'ask_could_delusion',
  'could_delusion_said',
  'delusion_said_adopt',
  'said_adopt_year',
  'adopt_year_told',
  'year_told_would',
  'told_would_chang',
  'would_chang_mind',
  'chang_mind_dad',
  'mind_dad_piss',
  'dad_piss_choic',
  'piss_choic_word',
  'choic_word_chao',
  'word_chao_ensu',
  'chao_ensu_parti',
  'ensu_parti_aita'],
 ['throwaway',
  'friend',
  'know',
  'main',
  'account',
  'mum',
  'move',
  'step',
  'dad',
  '\\',
  '[',
  'sd\\',
  ']',
  'step',
  'brother',
  '\\',
  '[',
  'sb\\',
  ']',
  'around',
  'two',
  'year',
  'ago',
  'nice',
  'sneaker',
  'collect',
  'amass',
  'work',
  'casual',
  'job',
  'resel',
  'sneaker',
  'sb',
  'show',
  'interest',
  'sneaker',
  'collect',
  'previous',
  'guess',
  'age',
  'matter',
  'come',
  'room',
  'often',
  'look',
  'collect',
  'also',
  'recent',
  'grown',
  'size',
  'import',
  'recent',
  'ask',
  'let',
  'wear',
  'shoe',
  'collect',
  'im',
  'oppos',
  'theyr',
  'shoe',
  'feel',
  'like',
  'final',
  'say',
  'get',
  'wear',
  'care',
  'absolut',
  'thrash',
  'shoe',
  'common',
  'sens',
  'wear',
  'shoe',
  'decreas',
  'valu',
  'significantli',
  'like',
  'hold',
  'unworn',
  'case',
  'price',
  'spike',
  'everi',
  'time',
  'ask',
  'ive',
  'told',
  'recent',
  'told',
  'import',
  'outing',
  'go',
  'go',
  'friend',
  'want',
  'wear',
  'one',
  'shoe',
  'told',
  'time',
  'threw',
  'absolut',
  'fit',
  'got',
  'sd',
  'involv',
  'sd',
  'told',
  'im',
  'greedi',
  'let',
  'sb',
  'wear',
  'one',
  'sinc',
  'mani',
  'told',
  'valu',
  'everyon',
  'told',
  'resel',
  'valu',
  'pair',
  'sd',
  'absolut',
  'shock',
  'devolv',
  'argument',
  'pay',
  'rent',
  'realli',
  'paid',
  'retail',
  'price',
  'resel',
  'price',
  'seem',
  'understand',
  'sd',
  'sb',
  'left',
  'realis',
  'budg',
  'thought',
  'situat',
  'head',
  'work',
  'saturday',
  'howev',
  'bu',
  'ride',
  'home',
  'scroll',
  'instagram',
  'sb',
  'post',
  'pictur',
  'wear',
  'exact',
  'shoe',
  'let',
  'wear',
  'angri',
  'comment',
  'fuck',
  'wear',
  'shoe',
  'delet',
  'comment',
  'seem',
  'like',
  'late',
  'friend',
  'saw',
  'embarrass',
  'told',
  'shoe',
  'told',
  'sd',
  'happen',
  'call',
  'furi',
  'ask',
  'embarrass',
  'son',
  'like',
  'shoe',
  'worth',
  'fuck',
  'yell',
  'back',
  'sb',
  'busi',
  'wear',
  'stuff',
  'feel',
  'sd',
  'encourag',
  'fuck',
  'hung',
  'got',
  'home',
  'got',
  'full',
  'yell',
  'told',
  'lucki',
  'allow',
  'live',
  'roof',
  'mum',
  'step',
  'defend',
  'argu',
  'past',
  'day',
  'half',
  'ask',
  'sb',
  'give',
  'shoe',
  'back',
  'told',
  'never',
  'touch',
  'shit',
  'hole',
  'room',
  'sinc',
  'thing',
  'realli',
  'tens',
  'hous',
  'reddit',
  'aita',
  'allow',
  'brother',
  'wear',
  'shoe',
  'embarrass',
  'instagram',
  'anyway',
  'throwaway_friend',
  'friend_know',
  'know_main',
  'main_account',
  'account_mum',
  'mum_move',
  'move_step',
  'step_dad',
  'dad_\\',
  '\\_[',
  '[_sd\\',
  'sd\\_]',
  ']_step',
  'step_brother',
  'brother_\\',
  '\\_[',
  '[_sb\\',
  'sb\\_]',
  ']_around',
  'around_two',
  'two_year',
  'year_ago',
  'ago_nice',
  'nice_sneaker',
  'sneaker_collect',
  'collect_amass',
  'amass_work',
  'work_casual',
  'casual_job',
  'job_resel',
  'resel_sneaker',
  'sneaker_sb',
  'sb_show',
  'show_interest',
  'interest_sneaker',
  'sneaker_collect',
  'collect_previous',
  'previous_guess',
  'guess_age',
  'age_matter',
  'matter_come',
  'come_room',
  'room_often',
  'often_look',
  'look_collect',
  'collect_also',
  'also_recent',
  'recent_grown',
  'grown_size',
  'size_import',
  'import_recent',
  'recent_ask',
  'ask_let',
  'let_wear',
  'wear_shoe',
  'shoe_collect',
  'collect_im',
  'im_oppos',
  'oppos_theyr',
  'theyr_shoe',
  'shoe_feel',
  'feel_like',
  'like_final',
  'final_say',
  'say_get',
  'get_wear',
  'wear_care',
  'care_absolut',
  'absolut_thrash',
  'thrash_shoe',
  'shoe_common',
  'common_sens',
  'sens_wear',
  'wear_shoe',
  'shoe_decreas',
  'decreas_valu',
  'valu_significantli',
  'significantli_like',
  'like_hold',
  'hold_unworn',
  'unworn_case',
  'case_price',
  'price_spike',
  'spike_everi',
  'everi_time',
  'time_ask',
  'ask_ive',
  'ive_told',
  'told_recent',
  'recent_told',
  'told_import',
  'import_outing',
  'outing_go',
  'go_go',
  'go_friend',
  'friend_want',
  'want_wear',
  'wear_one',
  'one_shoe',
  'shoe_told',
  'told_time',
  'time_threw',
  'threw_absolut',
  'absolut_fit',
  'fit_got',
  'got_sd',
  'sd_involv',
  'involv_sd',
  'sd_told',
  'told_im',
  'im_greedi',
  'greedi_let',
  'let_sb',
  'sb_wear',
  'wear_one',
  'one_sinc',
  'sinc_mani',
  'mani_told',
  'told_valu',
  'valu_everyon',
  'everyon_told',
  'told_resel',
  'resel_valu',
  'valu_pair',
  'pair_sd',
  'sd_absolut',
  'absolut_shock',
  'shock_devolv',
  'devolv_argument',
  'argument_pay',
  'pay_rent',
  'rent_realli',
  'realli_paid',
  'paid_retail',
  'retail_price',
  'price_resel',
  'resel_price',
  'price_seem',
  'seem_understand',
  'understand_sd',
  'sd_sb',
  'sb_left',
  'left_realis',
  'realis_budg',
  'budg_thought',
  'thought_situat',
  'situat_head',
  'head_work',
  'work_saturday',
  'saturday_howev',
  'howev_bu',
  'bu_ride',
  'ride_home',
  'home_scroll',
  'scroll_instagram',
  'instagram_sb',
  'sb_post',
  'post_pictur',
  'pictur_wear',
  'wear_exact',
  'exact_shoe',
  'shoe_let',
  'let_wear',
  'wear_angri',
  'angri_comment',
  'comment_fuck',
  'fuck_wear',
  'wear_shoe',
  'shoe_delet',
  'delet_comment',
  'comment_seem',
  'seem_like',
  'like_late',
  'late_friend',
  'friend_saw',
  'saw_embarrass',
  'embarrass_told',
  'told_shoe',
  'shoe_told',
  'told_sd',
  'sd_happen',
  'happen_call',
  'call_furi',
  'furi_ask',
  'ask_embarrass',
  'embarrass_son',
  'son_like',
  'like_shoe',
  'shoe_worth',
  'worth_fuck',
  'fuck_yell',
  'yell_back',
  'back_sb',
  'sb_busi',
  'busi_wear',
  'wear_stuff',
  'stuff_feel',
  'feel_sd',
  'sd_encourag',
  'encourag_fuck',
  'fuck_hung',
  'hung_got',
  'got_home',
  'home_got',
  'got_full',
  'full_yell',
  'yell_told',
  'told_lucki',
  'lucki_allow',
  'allow_live',
  'live_roof',
  'roof_mum',
  'mum_step',
  'step_defend',
  'defend_argu',
  'argu_past',
  'past_day',
  'day_half',
  'half_ask',
  'ask_sb',
  'sb_give',
  'give_shoe',
  'shoe_back',
  'back_told',
  'told_never',
  'never_touch',
  'touch_shit',
  'shit_hole',
  'hole_room',
  'room_sinc',
  'sinc_thing',
  'thing_realli',
  'realli_tens',
  'tens_hous',
  'hous_reddit',
  'reddit_aita',
  'aita_allow',
  'allow_brother',
  'brother_wear',
  'wear_shoe',
  'shoe_embarrass',
  'embarrass_instagram',
  'instagram_anyway',
  'throwaway_friend_know',
  'friend_know_main',
  'know_main_account',
  'main_account_mum',
  'account_mum_move',
  'mum_move_step',
  'move_step_dad',
  'step_dad_\\',
  'dad_\\_[',
  '\\_[_sd\\',
  '[_sd\\_]',
  'sd\\_]_step',
  ']_step_brother',
  'step_brother_\\',
  'brother_\\_[',
  '\\_[_sb\\',
  '[_sb\\_]',
  'sb\\_]_around',
  ']_around_two',
  'around_two_year',
  'two_year_ago',
  'year_ago_nice',
  'ago_nice_sneaker',
  'nice_sneaker_collect',
  'sneaker_collect_amass',
  'collect_amass_work',
  'amass_work_casual',
  'work_casual_job',
  'casual_job_resel',
  'job_resel_sneaker',
  'resel_sneaker_sb',
  'sneaker_sb_show',
  'sb_show_interest',
  'show_interest_sneaker',
  'interest_sneaker_collect',
  'sneaker_collect_previous',
  'collect_previous_guess',
  'previous_guess_age',
  'guess_age_matter',
  'age_matter_come',
  'matter_come_room',
  'come_room_often',
  'room_often_look',
  'often_look_collect',
  'look_collect_also',
  'collect_also_recent',
  'also_recent_grown',
  'recent_grown_size',
  'grown_size_import',
  'size_import_recent',
  'import_recent_ask',
  'recent_ask_let',
  'ask_let_wear',
  'let_wear_shoe',
  'wear_shoe_collect',
  'shoe_collect_im',
  'collect_im_oppos',
  'im_oppos_theyr',
  'oppos_theyr_shoe',
  'theyr_shoe_feel',
  'shoe_feel_like',
  'feel_like_final',
  'like_final_say',
  'final_say_get',
  'say_get_wear',
  'get_wear_care',
  'wear_care_absolut',
  'care_absolut_thrash',
  'absolut_thrash_shoe',
  'thrash_shoe_common',
  'shoe_common_sens',
  'common_sens_wear',
  'sens_wear_shoe',
  'wear_shoe_decreas',
  'shoe_decreas_valu',
  'decreas_valu_significantli',
  'valu_significantli_like',
  'significantli_like_hold',
  'like_hold_unworn',
  'hold_unworn_case',
  'unworn_case_price',
  'case_price_spike',
  'price_spike_everi',
  'spike_everi_time',
  'everi_time_ask',
  'time_ask_ive',
  'ask_ive_told',
  'ive_told_recent',
  'told_recent_told',
  'recent_told_import',
  'told_import_outing',
  'import_outing_go',
  'outing_go_go',
  'go_go_friend',
  'go_friend_want',
  'friend_want_wear',
  'want_wear_one',
  'wear_one_shoe',
  'one_shoe_told',
  'shoe_told_time',
  'told_time_threw',
  'time_threw_absolut',
  'threw_absolut_fit',
  'absolut_fit_got',
  'fit_got_sd',
  'got_sd_involv',
  'sd_involv_sd',
  'involv_sd_told',
  'sd_told_im',
  'told_im_greedi',
  'im_greedi_let',
  'greedi_let_sb',
  'let_sb_wear',
  'sb_wear_one',
  'wear_one_sinc',
  'one_sinc_mani',
  'sinc_mani_told',
  'mani_told_valu',
  'told_valu_everyon',
  'valu_everyon_told',
  'everyon_told_resel',
  'told_resel_valu',
  'resel_valu_pair',
  'valu_pair_sd',
  'pair_sd_absolut',
  'sd_absolut_shock',
  'absolut_shock_devolv',
  'shock_devolv_argument',
  'devolv_argument_pay',
  'argument_pay_rent',
  'pay_rent_realli',
  'rent_realli_paid',
  'realli_paid_retail',
  'paid_retail_price',
  'retail_price_resel',
  'price_resel_price',
  'resel_price_seem',
  'price_seem_understand',
  'seem_understand_sd',
  'understand_sd_sb',
  'sd_sb_left',
  'sb_left_realis',
  'left_realis_budg',
  'realis_budg_thought',
  'budg_thought_situat',
  'thought_situat_head',
  'situat_head_work',
  'head_work_saturday',
  'work_saturday_howev',
  'saturday_howev_bu',
  'howev_bu_ride',
  'bu_ride_home',
  'ride_home_scroll',
  'home_scroll_instagram',
  'scroll_instagram_sb',
  'instagram_sb_post',
  'sb_post_pictur',
  'post_pictur_wear',
  'pictur_wear_exact',
  'wear_exact_shoe',
  'exact_shoe_let',
  'shoe_let_wear',
  'let_wear_angri',
  'wear_angri_comment',
  'angri_comment_fuck',
  'comment_fuck_wear',
  'fuck_wear_shoe',
  'wear_shoe_delet',
  'shoe_delet_comment',
  'delet_comment_seem',
  'comment_seem_like',
  'seem_like_late',
  'like_late_friend',
  'late_friend_saw',
  'friend_saw_embarrass',
  'saw_embarrass_told',
  'embarrass_told_shoe',
  'told_shoe_told',
  'shoe_told_sd',
  'told_sd_happen',
  'sd_happen_call',
  'happen_call_furi',
  'call_furi_ask',
  'furi_ask_embarrass',
  'ask_embarrass_son',
  'embarrass_son_like',
  'son_like_shoe',
  'like_shoe_worth',
  'shoe_worth_fuck',
  'worth_fuck_yell',
  'fuck_yell_back',
  'yell_back_sb',
  'back_sb_busi',
  'sb_busi_wear',
  'busi_wear_stuff',
  'wear_stuff_feel',
  'stuff_feel_sd',
  'feel_sd_encourag',
  'sd_encourag_fuck',
  'encourag_fuck_hung',
  'fuck_hung_got',
  'hung_got_home',
  'got_home_got',
  'home_got_full',
  'got_full_yell',
  'full_yell_told',
  'yell_told_lucki',
  'told_lucki_allow',
  'lucki_allow_live',
  'allow_live_roof',
  'live_roof_mum',
  'roof_mum_step',
  'mum_step_defend',
  'step_defend_argu',
  'defend_argu_past',
  'argu_past_day',
  'past_day_half',
  'day_half_ask',
  'half_ask_sb',
  'ask_sb_give',
  'sb_give_shoe',
  'give_shoe_back',
  'shoe_back_told',
  'back_told_never',
  'told_never_touch',
  'never_touch_shit',
  'touch_shit_hole',
  'shit_hole_room',
  'hole_room_sinc',
  'room_sinc_thing',
  'sinc_thing_realli',
  'thing_realli_tens',
  'realli_tens_hous',
  'tens_hous_reddit',
  'hous_reddit_aita',
  'reddit_aita_allow',
  'aita_allow_brother',
  'allow_brother_wear',
  'brother_wear_shoe',
  'wear_shoe_embarrass',
  'shoe_embarrass_instagram',
  'embarrass_instagram_anyway'],
 ['wife',
  'year',
  'old',
  'son',
  'weve',
  'incred',
  'busi',
  'work',
  'schedul',
  'last',
  'year',
  'famili',
  'great',
  'job',
  'help',
  'son',
  'usual',
  'member',
  'inlaw',
  'take',
  'son',
  'whenev',
  'work',
  'trip',
  'shift',
  'come',
  'wife',
  'mom',
  'sister',
  'dad',
  'except',
  'year',
  'old',
  'brother',
  'law',
  'wife',
  'brother',
  'made',
  'clear',
  'interest',
  'spend',
  'time',
  'nephew',
  'keep',
  'say',
  'reason',
  'actual',
  'child',
  'free',
  'mani',
  'emerg',
  'turn',
  'wife',
  'away',
  'beg',
  'watch',
  'son',
  'even',
  'budg',
  'apolog',
  'attitud',
  'came',
  'head',
  'coupl',
  'day',
  'ago',
  'work',
  'meet',
  'wife',
  'town',
  'inlaw',
  'attend',
  'wed',
  'one',
  'free',
  'watch',
  'son',
  'except',
  'bil',
  'show',
  'place',
  'told',
  'desper',
  'help',
  'need',
  'watch',
  'son',
  'hour',
  'refus',
  'even',
  'suggest',
  'take',
  'work',
  'good',
  'suggest',
  'beg',
  'said',
  'enough',
  'confront',
  'ask',
  'like',
  'nephew',
  'threw',
  'im',
  'child',
  'free',
  'excus',
  'made',
  'lose',
  'told',
  'stop',
  'cring',
  'keep',
  'say',
  'use',
  'excus',
  'unsupport',
  'sister',
  'cold',
  'toward',
  'nephew',
  'told',
  'realli',
  'better',
  'stop',
  'neg',
  'got',
  'mad',
  'said',
  'right',
  'disrespect',
  'lifestylechoic',
  'attitud',
  'get',
  'exchang',
  'word',
  'said',
  'son',
  'respons',
  'whatsoev',
  'left',
  'complain',
  'inlaw',
  'call',
  'disrespect',
  'son',
  'treat',
  'like',
  'insist',
  'respons',
  'son',
  'expect',
  'much',
  'guilt',
  'want',
  'apolog',
  'wife',
  'said',
  'help',
  'support',
  'rock',
  'decid',
  'take',
  'time',
  'consid',
  'apolog',
  'aita',
  'wife_year',
  'year_old',
  'old_son',
  'son_weve',
  'weve_incred',
  'incred_busi',
  'busi_work',
  'work_schedul',
  'schedul_last',
  'last_year',
  'year_famili',
  'famili_great',
  'great_job',
  'job_help',
  'help_son',
  'son_usual',
  'usual_member',
  'member_inlaw',
  'inlaw_take',
  'take_son',
  'son_whenev',
  'whenev_work',
  'work_trip',
  'trip_shift',
  'shift_come',
  'come_wife',
  'wife_mom',
  'mom_sister',
  'sister_dad',
  'dad_except',
  'except_year',
  'year_old',
  'old_brother',
  'brother_law',
  'law_wife',
  'wife_brother',
  'brother_made',
  'made_clear',
  'clear_interest',
  'interest_spend',
  'spend_time',
  'time_nephew',
  'nephew_keep',
  'keep_say',
  'say_reason',
  'reason_actual',
  'actual_child',
  'child_free',
  'free_mani',
  'mani_emerg',
  'emerg_turn',
  'turn_wife',
  'wife_away',
  'away_beg',
  'beg_watch',
  'watch_son',
  'son_even',
  'even_budg',
  'budg_apolog',
  'apolog_attitud',
  'attitud_came',
  'came_head',
  'head_coupl',
  'coupl_day',
  'day_ago',
  'ago_work',
  'work_meet',
  'meet_wife',
  'wife_town',
  'town_inlaw',
  'inlaw_attend',
  'attend_wed',
  'wed_one',
  'one_free',
  'free_watch',
  'watch_son',
  'son_except',
  'except_bil',
  'bil_show',
  'show_place',
  'place_told',
  'told_desper',
  'desper_help',
  'help_need',
  'need_watch',
  'watch_son',
  'son_hour',
  'hour_refus',
  'refus_even',
  'even_suggest',
  'suggest_take',
  'take_work',
  'work_good',
  'good_suggest',
  'suggest_beg',
  'beg_said',
  'said_enough',
  'enough_confront',
  'confront_ask',
  'ask_like',
  'like_nephew',
  'nephew_threw',
  'threw_im',
  'im_child',
  'child_free',
  'free_excus',
  'excus_made',
  'made_lose',
  'lose_told',
  'told_stop',
  'stop_cring',
  'cring_keep',
  'keep_say',
  'say_use',
  'use_excus',
  'excus_unsupport',
  'unsupport_sister',
  'sister_cold',
  'cold_toward',
  'toward_nephew',
  'nephew_told',
  'told_realli',
  'realli_better',
  'better_stop',
  'stop_neg',
  'neg_got',
  'got_mad',
  'mad_said',
  'said_right',
  'right_disrespect',
  'disrespect_lifestylechoic',
  'lifestylechoic_attitud',
  'attitud_get',
  'get_exchang',
  'exchang_word',
  'word_said',
  'said_son',
  'son_respons',
  'respons_whatsoev',
  'whatsoev_left',
  'left_complain',
  'complain_inlaw',
  'inlaw_call',
  'call_disrespect',
  'disrespect_son',
  'son_treat',
  'treat_like',
  'like_insist',
  'insist_respons',
  'respons_son',
  'son_expect',
  'expect_much',
  'much_guilt',
  'guilt_want',
  'want_apolog',
  'apolog_wife',
  'wife_said',
  'said_help',
  'help_support',
  'support_rock',
  'rock_decid',
  'decid_take',
  'take_time',
  'time_consid',
  'consid_apolog',
  'apolog_aita',
  'wife_year_old',
  'year_old_son',
  'old_son_weve',
  'son_weve_incred',
  'weve_incred_busi',
  'incred_busi_work',
  'busi_work_schedul',
  'work_schedul_last',
  'schedul_last_year',
  'last_year_famili',
  'year_famili_great',
  'famili_great_job',
  'great_job_help',
  'job_help_son',
  'help_son_usual',
  'son_usual_member',
  'usual_member_inlaw',
  'member_inlaw_take',
  'inlaw_take_son',
  'take_son_whenev',
  'son_whenev_work',
  'whenev_work_trip',
  'work_trip_shift',
  'trip_shift_come',
  'shift_come_wife',
  'come_wife_mom',
  'wife_mom_sister',
  'mom_sister_dad',
  'sister_dad_except',
  'dad_except_year',
  'except_year_old',
  'year_old_brother',
  'old_brother_law',
  'brother_law_wife',
  'law_wife_brother',
  'wife_brother_made',
  'brother_made_clear',
  'made_clear_interest',
  'clear_interest_spend',
  'interest_spend_time',
  'spend_time_nephew',
  'time_nephew_keep',
  'nephew_keep_say',
  'keep_say_reason',
  'say_reason_actual',
  'reason_actual_child',
  'actual_child_free',
  'child_free_mani',
  'free_mani_emerg',
  'mani_emerg_turn',
  'emerg_turn_wife',
  'turn_wife_away',
  'wife_away_beg',
  'away_beg_watch',
  'beg_watch_son',
  'watch_son_even',
  'son_even_budg',
  'even_budg_apolog',
  'budg_apolog_attitud',
  'apolog_attitud_came',
  'attitud_came_head',
  'came_head_coupl',
  'head_coupl_day',
  'coupl_day_ago',
  'day_ago_work',
  'ago_work_meet',
  'work_meet_wife',
  'meet_wife_town',
  'wife_town_inlaw',
  'town_inlaw_attend',
  'inlaw_attend_wed',
  'attend_wed_one',
  'wed_one_free',
  'one_free_watch',
  'free_watch_son',
  'watch_son_except',
  'son_except_bil',
  'except_bil_show',
  'bil_show_place',
  'show_place_told',
  'place_told_desper',
  'told_desper_help',
  'desper_help_need',
  'help_need_watch',
  'need_watch_son',
  'watch_son_hour',
  'son_hour_refus',
  'hour_refus_even',
  'refus_even_suggest',
  'even_suggest_take',
  'suggest_take_work',
  'take_work_good',
  'work_good_suggest',
  'good_suggest_beg',
  'suggest_beg_said',
  'beg_said_enough',
  'said_enough_confront',
  'enough_confront_ask',
  'confront_ask_like',
  'ask_like_nephew',
  'like_nephew_threw',
  'nephew_threw_im',
  'threw_im_child',
  'im_child_free',
  'child_free_excus',
  'free_excus_made',
  'excus_made_lose',
  'made_lose_told',
  'lose_told_stop',
  'told_stop_cring',
  'stop_cring_keep',
  'cring_keep_say',
  'keep_say_use',
  'say_use_excus',
  'use_excus_unsupport',
  'excus_unsupport_sister',
  'unsupport_sister_cold',
  'sister_cold_toward',
  'cold_toward_nephew',
  'toward_nephew_told',
  'nephew_told_realli',
  'told_realli_better',
  'realli_better_stop',
  'better_stop_neg',
  'stop_neg_got',
  'neg_got_mad',
  'got_mad_said',
  'mad_said_right',
  'said_right_disrespect',
  'right_disrespect_lifestylechoic',
  'disrespect_lifestylechoic_attitud',
  'lifestylechoic_attitud_get',
  'attitud_get_exchang',
  'get_exchang_word',
  'exchang_word_said',
  'word_said_son',
  'said_son_respons',
  'son_respons_whatsoev',
  'respons_whatsoev_left',
  'whatsoev_left_complain',
  'left_complain_inlaw',
  'complain_inlaw_call',
  'inlaw_call_disrespect',
  'call_disrespect_son',
  'disrespect_son_treat',
  'son_treat_like',
  'treat_like_insist',
  'like_insist_respons',
  'insist_respons_son',
  'respons_son_expect',
  'son_expect_much',
  'expect_much_guilt',
  'much_guilt_want',
  'guilt_want_apolog',
  'want_apolog_wife',
  'apolog_wife_said',
  'wife_said_help',
  'said_help_support',
  'help_support_rock',
  'support_rock_decid',
  'rock_decid_take',
  'decid_take_time',
  'take_time_consid',
  'time_consid_apolog',
  'consid_apolog_aita'],
 ['recent',
  'wed',
  'beach',
  'beauti',
  'hotel',
  'cancun',
  'mani',
  'friend',
  'famili',
  'could',
  'go',
  'happi',
  'problem',
  'ceremoni',
  'peopl',
  'sea',
  'play',
  'jet',
  'ski',
  'activ',
  'realli',
  'bother',
  'would',
  'appear',
  'background',
  'told',
  'wed',
  'planner',
  'understand',
  'said',
  'would',
  'fix',
  'talk',
  'owner',
  'activ',
  'peopl',
  'area',
  'sea',
  'expect',
  'kind',
  'nice',
  'declin',
  'continu',
  'even',
  'took',
  'time',
  'go',
  'ask',
  'stop',
  'care',
  'go',
  'tell',
  'someon',
  'hotel',
  'husband',
  'stop',
  'said',
  'would',
  'ah',
  'thing',
  'told',
  'stand',
  'ah',
  'thing',
  'went',
  'look',
  'hotel',
  'staff',
  'said',
  'noth',
  'could',
  'return',
  'husband',
  'moodi',
  'wonder',
  'realli',
  'ah',
  'thing',
  'aita',
  'recent_wed',
  'wed_beach',
  'beach_beauti',
  'beauti_hotel',
  'hotel_cancun',
  'cancun_mani',
  'mani_friend',
  'friend_famili',
  'famili_could',
  'could_go',
  'go_happi',
  'happi_problem',
  'problem_ceremoni',
  'ceremoni_peopl',
  'peopl_sea',
  'sea_play',
  'play_jet',
  'jet_ski',
  'ski_activ',
  'activ_realli',
  'realli_bother',
  'bother_would',
  'would_appear',
  'appear_background',
  'background_told',
  'told_wed',
  'wed_planner',
  'planner_understand',
  'understand_said',
  'said_would',
  'would_fix',
  'fix_talk',
  'talk_owner',
  'owner_activ',
  'activ_peopl',
  'peopl_area',
  'area_sea',
  'sea_expect',
  'expect_kind',
  'kind_nice',
  'nice_declin',
  'declin_continu',
  'continu_even',
  'even_took',
  'took_time',
  'time_go',
  'go_ask',
  'ask_stop',
  'stop_care',
  'care_go',
  'go_tell',
  'tell_someon',
  'someon_hotel',
  'hotel_husband',
  'husband_stop',
  'stop_said',
  'said_would',
  'would_ah',
  'ah_thing',
  'thing_told',
  'told_stand',
  'stand_ah',
  'ah_thing',
  'thing_went',
  'went_look',
  'look_hotel',
  'hotel_staff',
  'staff_said',
  'said_noth',
  'noth_could',
  'could_return',
  'return_husband',
  'husband_moodi',
  'moodi_wonder',
  'wonder_realli',
  'realli_ah',
  'ah_thing',
  'thing_aita',
  'recent_wed_beach',
  'wed_beach_beauti',
  'beach_beauti_hotel',
  'beauti_hotel_cancun',
  'hotel_cancun_mani',
  'cancun_mani_friend',
  'mani_friend_famili',
  'friend_famili_could',
  'famili_could_go',
  'could_go_happi',
  'go_happi_problem',
  'happi_problem_ceremoni',
  'problem_ceremoni_peopl',
  'ceremoni_peopl_sea',
  'peopl_sea_play',
  'sea_play_jet',
  'play_jet_ski',
  'jet_ski_activ',
  'ski_activ_realli',
  'activ_realli_bother',
  'realli_bother_would',
  'bother_would_appear',
  'would_appear_background',
  'appear_background_told',
  'background_told_wed',
  'told_wed_planner',
  'wed_planner_understand',
  'planner_understand_said',
  'understand_said_would',
  'said_would_fix',
  'would_fix_talk',
  'fix_talk_owner',
  'talk_owner_activ',
  'owner_activ_peopl',
  'activ_peopl_area',
  'peopl_area_sea',
  'area_sea_expect',
  'sea_expect_kind',
  'expect_kind_nice',
  'kind_nice_declin',
  'nice_declin_continu',
  'declin_continu_even',
  'continu_even_took',
  'even_took_time',
  'took_time_go',
  'time_go_ask',
  'go_ask_stop',
  'ask_stop_care',
  'stop_care_go',
  'care_go_tell',
  'go_tell_someon',
  'tell_someon_hotel',
  'someon_hotel_husband',
  'hotel_husband_stop',
  'husband_stop_said',
  'stop_said_would',
  'said_would_ah',
  'would_ah_thing',
  'ah_thing_told',
  'thing_told_stand',
  'told_stand_ah',
  'stand_ah_thing',
  'ah_thing_went',
  'thing_went_look',
  'went_look_hotel',
  'look_hotel_staff',
  'hotel_staff_said',
  'staff_said_noth',
  'said_noth_could',
  'noth_could_return',
  'could_return_husband',
  'return_husband_moodi',
  'husband_moodi_wonder',
  'moodi_wonder_realli',
  'wonder_realli_ah',
  'realli_ah_thing',
  'ah_thing_aita'],
 ['throwaway',
  'first',
  'post',
  'yada',
  'yada',
  'bad',
  'write',
  'bc',
  'charact',
  'limit',
  'went',
  'grand',
  'canyon',
  'bf',
  'im',
  '%',
  'afraid',
  'height',
  'go',
  'near',
  'windowsrail',
  'type',
  'scare',
  'phobia',
  'full',
  'sens',
  'word',
  'bc',
  'want',
  'go',
  'first',
  'place',
  'famou',
  'destin',
  'figur',
  'worth',
  'face',
  'fear',
  'multipl',
  'convo',
  'bf',
  'fear',
  'least',
  'separ',
  'in-depth',
  'convo',
  'scare',
  'panic',
  'attack',
  'around',
  'stranger',
  'long',
  'histori',
  'panic',
  'attack',
  'assur',
  'hed',
  'help',
  'maintain',
  'distanc',
  'ledg',
  '&',
  'calm',
  'got',
  'overwhelmedscar',
  'went',
  'plan',
  'tour',
  'go',
  'follow',
  'day',
  'well',
  'day',
  'tour',
  'stop',
  'scenic',
  'lookout',
  'take',
  'pictur',
  '&',
  'decid',
  'itd',
  'funni',
  'grab',
  '&',
  'pretend',
  'tri',
  '&',
  'push',
  'edg',
  'cliff',
  'immedi',
  'freak',
  '&',
  'unsurprisingli',
  'panic',
  'attack',
  'front',
  'group',
  'poor',
  'guid',
  'tri',
  'calm',
  'im',
  'proud',
  'act',
  'ill',
  'tell',
  'pretti',
  'sob',
  '&',
  'yell',
  'cruel',
  'knew',
  'terrifi',
  '&',
  'evil',
  'use',
  'yell',
  'back',
  'joke',
  'take',
  'serious',
  '&',
  'get',
  'bc',
  'embarrass',
  'myselfhim',
  'fair',
  'wasit',
  'quit',
  'embarrass',
  'think',
  'ah',
  'next',
  'part',
  'told',
  'horribl',
  'person',
  '&',
  'ex',
  'right',
  'leav',
  'context',
  'ex',
  'left',
  'bc',
  'thought',
  'immatur',
  'left',
  'right',
  'high',
  'profil',
  'famili',
  'event',
  '&',
  'embarrass',
  'among',
  'famili',
  'yell',
  'fuck',
  'say',
  '&',
  'hindsight',
  'think',
  'right',
  'especi',
  'sinc',
  'public',
  'tour',
  'guid',
  'separ',
  'us',
  '&',
  'took',
  'back',
  'offic',
  '&',
  'idea',
  'hotel',
  'got',
  'stuff',
  '&',
  'got',
  'flight',
  'parent',
  'state',
  '&',
  'ive',
  'stay',
  'figur',
  'relationship',
  'still',
  'aliv',
  'live',
  'togeth',
  '&',
  'work',
  'compani',
  'life',
  'go',
  'get',
  'messi',
  'thing',
  'ton',
  'mutual',
  'friend',
  '&',
  'half',
  'textingcal',
  'say',
  'im',
  'overreact',
  '&',
  'psycho',
  'bitch',
  'besid',
  'closest',
  'friend',
  'told',
  'anyon',
  'anyth',
  'bc',
  'know',
  'everyon',
  'heard',
  'version',
  'event',
  '&',
  'theyr',
  'make',
  'seem',
  'like',
  'im',
  'lead',
  'pr',
  'campaign',
  'social',
  'media',
  '&',
  'said',
  'anyth',
  'anyon',
  'besid',
  'best',
  'friend',
  'theyr',
  'particularli',
  'mad',
  'left',
  'arizona',
  'think',
  'worth',
  'hate',
  'im',
  'get',
  'left',
  'rental',
  'car',
  '&',
  'hotel',
  'room',
  '&',
  'took',
  'uber',
  'airport',
  'paid',
  'everyth',
  'includ',
  'hotel',
  'room',
  '&',
  'left',
  'note',
  'room',
  'tell',
  'go',
  'parent',
  'feel',
  'like',
  'peopl',
  'understand',
  'mani',
  'peopl',
  'say',
  'thing',
  'im',
  'start',
  'question',
  'soaita',
  'throwaway_first',
  'first_post',
  'post_yada',
  'yada_yada',
  'yada_bad',
  'bad_write',
  'write_bc',
  'bc_charact',
  'charact_limit',
  'limit_went',
  'went_grand',
  'grand_canyon',
  'canyon_bf',
  'bf_im',
  'im_%',
  '%_afraid',
  'afraid_height',
  'height_go',
  'go_near',
  'near_windowsrail',
  'windowsrail_type',
  'type_scare',
  'scare_phobia',
  'phobia_full',
  'full_sens',
  'sens_word',
  'word_bc',
  'bc_want',
  'want_go',
  'go_first',
  'first_place',
  'place_famou',
  'famou_destin',
  'destin_figur',
  'figur_worth',
  'worth_face',
  'face_fear',
  'fear_multipl',
  'multipl_convo',
  'convo_bf',
  'bf_fear',
  'fear_least',
  'least_separ',
  'separ_in-depth',
  'in-depth_convo',
  'convo_scare',
  'scare_panic',
  'panic_attack',
  'attack_around',
  'around_stranger',
  'stranger_long',
  'long_histori',
  'histori_panic',
  'panic_attack',
  'attack_assur',
  'assur_hed',
  'hed_help',
  'help_maintain',
  'maintain_distanc',
  'distanc_ledg',
  'ledg_&',
  '&_calm',
  'calm_got',
  'got_overwhelmedscar',
  'overwhelmedscar_went',
  'went_plan',
  'plan_tour',
  'tour_go',
  'go_follow',
  'follow_day',
  'day_well',
  'well_day',
  'day_tour',
  'tour_stop',
  'stop_scenic',
  'scenic_lookout',
  'lookout_take',
  'take_pictur',
  'pictur_&',
  '&_decid',
  'decid_itd',
  'itd_funni',
  'funni_grab',
  'grab_&',
  '&_pretend',
  'pretend_tri',
  'tri_&',
  '&_push',
  'push_edg',
  'edg_cliff',
  'cliff_immedi',
  'immedi_freak',
  'freak_&',
  '&_unsurprisingli',
  'unsurprisingli_panic',
  'panic_attack',
  'attack_front',
  'front_group',
  'group_poor',
  'poor_guid',
  'guid_tri',
  'tri_calm',
  'calm_im',
  'im_proud',
  'proud_act',
  'act_ill',
  'ill_tell',
  'tell_pretti',
  'pretti_sob',
  'sob_&',
  '&_yell',
  'yell_cruel',
  'cruel_knew',
  'knew_terrifi',
  'terrifi_&',
  '&_evil',
  'evil_use',
  'use_yell',
  'yell_back',
  'back_joke',
  'joke_take',
  'take_serious',
  'serious_&',
  '&_get',
  'get_bc',
  'bc_embarrass',
  'embarrass_myselfhim',
  'myselfhim_fair',
  'fair_wasit',
  'wasit_quit',
  'quit_embarrass',
  'embarrass_think',
  'think_ah',
  'ah_next',
  'next_part',
  'part_told',
  'told_horribl',
  'horribl_person',
  'person_&',
  '&_ex',
  'ex_right',
  'right_leav',
  'leav_context',
  'context_ex',
  'ex_left',
  'left_bc',
  'bc_thought',
  'thought_immatur',
  'immatur_left',
  'left_right',
  'right_high',
  'high_profil',
  'profil_famili',
  'famili_event',
  'event_&',
  '&_embarrass',
  'embarrass_among',
  'among_famili',
  'famili_yell',
  'yell_fuck',
  'fuck_say',
  'say_&',
  '&_hindsight',
  'hindsight_think',
  'think_right',
  'right_especi',
  'especi_sinc',
  'sinc_public',
  'public_tour',
  'tour_guid',
  'guid_separ',
  'separ_us',
  'us_&',
  '&_took',
  'took_back',
  'back_offic',
  'offic_&',
  '&_idea',
  'idea_hotel',
  'hotel_got',
  'got_stuff',
  'stuff_&',
  '&_got',
  'got_flight',
  'flight_parent',
  'parent_state',
  'state_&',
  '&_ive',
  'ive_stay',
  'stay_figur',
  'figur_relationship',
  'relationship_still',
  'still_aliv',
  'aliv_live',
  'live_togeth',
  'togeth_&',
  '&_work',
  'work_compani',
  'compani_life',
  'life_go',
  'go_get',
  'get_messi',
  'messi_thing',
  'thing_ton',
  'ton_mutual',
  'mutual_friend',
  'friend_&',
  '&_half',
  'half_textingcal',
  'textingcal_say',
  'say_im',
  'im_overreact',
  'overreact_&',
  '&_psycho',
  'psycho_bitch',
  'bitch_besid',
  'besid_closest',
  'closest_friend',
  'friend_told',
  'told_anyon',
  'anyon_anyth',
  'anyth_bc',
  'bc_know',
  'know_everyon',
  'everyon_heard',
  'heard_version',
  'version_event',
  'event_&',
  '&_theyr',
  'theyr_make',
  'make_seem',
  'seem_like',
  'like_im',
  'im_lead',
  'lead_pr',
  'pr_campaign',
  'campaign_social',
  'social_media',
  'media_&',
  '&_said',
  'said_anyth',
  'anyth_anyon',
  'anyon_besid',
  'besid_best',
  'best_friend',
  'friend_theyr',
  'theyr_particularli',
  'particularli_mad',
  'mad_left',
  'left_arizona',
  'arizona_think',
  'think_worth',
  'worth_hate',
  'hate_im',
  'im_get',
  'get_left',
  'left_rental',
  'rental_car',
  'car_&',
  '&_hotel',
  'hotel_room',
  'room_&',
  '&_took',
  'took_uber',
  'uber_airport',
  'airport_paid',
  'paid_everyth',
  'everyth_includ',
  'includ_hotel',
  'hotel_room',
  'room_&',
  '&_left',
  'left_note',
  'note_room',
  'room_tell',
  'tell_go',
  'go_parent',
  'parent_feel',
  'feel_like',
  'like_peopl',
  'peopl_understand',
  'understand_mani',
  'mani_peopl',
  'peopl_say',
  'say_thing',
  'thing_im',
  'im_start',
  'start_question',
  'question_soaita',
  'throwaway_first_post',
  'first_post_yada',
  'post_yada_yada',
  'yada_yada_bad',
  'yada_bad_write',
  'bad_write_bc',
  'write_bc_charact',
  'bc_charact_limit',
  'charact_limit_went',
  'limit_went_grand',
  'went_grand_canyon',
  'grand_canyon_bf',
  'canyon_bf_im',
  'bf_im_%',
  'im_%_afraid',
  '%_afraid_height',
  'afraid_height_go',
  'height_go_near',
  'go_near_windowsrail',
  'near_windowsrail_type',
  'windowsrail_type_scare',
  'type_scare_phobia',
  'scare_phobia_full',
  'phobia_full_sens',
  'full_sens_word',
  'sens_word_bc',
  'word_bc_want',
  'bc_want_go',
  'want_go_first',
  'go_first_place',
  'first_place_famou',
  'place_famou_destin',
  'famou_destin_figur',
  'destin_figur_worth',
  'figur_worth_face',
  'worth_face_fear',
  'face_fear_multipl',
  'fear_multipl_convo',
  'multipl_convo_bf',
  'convo_bf_fear',
  'bf_fear_least',
  'fear_least_separ',
  'least_separ_in-depth',
  'separ_in-depth_convo',
  'in-depth_convo_scare',
  'convo_scare_panic',
  'scare_panic_attack',
  'panic_attack_around',
  'attack_around_stranger',
  'around_stranger_long',
  'stranger_long_histori',
  'long_histori_panic',
  'histori_panic_attack',
  'panic_attack_assur',
  'attack_assur_hed',
  'assur_hed_help',
  'hed_help_maintain',
  'help_maintain_distanc',
  'maintain_distanc_ledg',
  'distanc_ledg_&',
  'ledg_&_calm',
  '&_calm_got',
  'calm_got_overwhelmedscar',
  'got_overwhelmedscar_went',
  'overwhelmedscar_went_plan',
  'went_plan_tour',
  'plan_tour_go',
  'tour_go_follow',
  'go_follow_day',
  'follow_day_well',
  'day_well_day',
  'well_day_tour',
  'day_tour_stop',
  'tour_stop_scenic',
  'stop_scenic_lookout',
  'scenic_lookout_take',
  'lookout_take_pictur',
  'take_pictur_&',
  'pictur_&_decid',
  '&_decid_itd',
  'decid_itd_funni',
  'itd_funni_grab',
  'funni_grab_&',
  'grab_&_pretend',
  '&_pretend_tri',
  'pretend_tri_&',
  'tri_&_push',
  '&_push_edg',
  'push_edg_cliff',
  'edg_cliff_immedi',
  'cliff_immedi_freak',
  'immedi_freak_&',
  'freak_&_unsurprisingli',
  '&_unsurprisingli_panic',
  'unsurprisingli_panic_attack',
  'panic_attack_front',
  'attack_front_group',
  'front_group_poor',
  'group_poor_guid',
  'poor_guid_tri',
  'guid_tri_calm',
  'tri_calm_im',
  'calm_im_proud',
  'im_proud_act',
  'proud_act_ill',
  'act_ill_tell',
  'ill_tell_pretti',
  'tell_pretti_sob',
  'pretti_sob_&',
  'sob_&_yell',
  '&_yell_cruel',
  'yell_cruel_knew',
  'cruel_knew_terrifi',
  'knew_terrifi_&',
  'terrifi_&_evil',
  '&_evil_use',
  'evil_use_yell',
  'use_yell_back',
  'yell_back_joke',
  'back_joke_take',
  'joke_take_serious',
  'take_serious_&',
  'serious_&_get',
  '&_get_bc',
  'get_bc_embarrass',
  'bc_embarrass_myselfhim',
  'embarrass_myselfhim_fair',
  'myselfhim_fair_wasit',
  'fair_wasit_quit',
  'wasit_quit_embarrass',
  'quit_embarrass_think',
  'embarrass_think_ah',
  'think_ah_next',
  'ah_next_part',
  'next_part_told',
  'part_told_horribl',
  'told_horribl_person',
  'horribl_person_&',
  'person_&_ex',
  '&_ex_right',
  'ex_right_leav',
  'right_leav_context',
  'leav_context_ex',
  'context_ex_left',
  'ex_left_bc',
  'left_bc_thought',
  'bc_thought_immatur',
  'thought_immatur_left',
  'immatur_left_right',
  'left_right_high',
  'right_high_profil',
  'high_profil_famili',
  'profil_famili_event',
  'famili_event_&',
  'event_&_embarrass',
  '&_embarrass_among',
  'embarrass_among_famili',
  'among_famili_yell',
  'famili_yell_fuck',
  'yell_fuck_say',
  'fuck_say_&',
  'say_&_hindsight',
  '&_hindsight_think',
  'hindsight_think_right',
  'think_right_especi',
  'right_especi_sinc',
  'especi_sinc_public',
  'sinc_public_tour',
  'public_tour_guid',
  'tour_guid_separ',
  'guid_separ_us',
  'separ_us_&',
  'us_&_took',
  '&_took_back',
  'took_back_offic',
  'back_offic_&',
  'offic_&_idea',
  '&_idea_hotel',
  'idea_hotel_got',
  'hotel_got_stuff',
  'got_stuff_&',
  'stuff_&_got',
  '&_got_flight',
  'got_flight_parent',
  'flight_parent_state',
  'parent_state_&',
  'state_&_ive',
  '&_ive_stay',
  'ive_stay_figur',
  'stay_figur_relationship',
  'figur_relationship_still',
  'relationship_still_aliv',
  'still_aliv_live',
  'aliv_live_togeth',
  'live_togeth_&',
  'togeth_&_work',
  '&_work_compani',
  'work_compani_life',
  'compani_life_go',
  'life_go_get',
  'go_get_messi',
  'get_messi_thing',
  'messi_thing_ton',
  'thing_ton_mutual',
  'ton_mutual_friend',
  'mutual_friend_&',
  'friend_&_half',
  '&_half_textingcal',
  'half_textingcal_say',
  'textingcal_say_im',
  'say_im_overreact',
  'im_overreact_&',
  'overreact_&_psycho',
  '&_psycho_bitch',
  'psycho_bitch_besid',
  'bitch_besid_closest',
  'besid_closest_friend',
  'closest_friend_told',
  'friend_told_anyon',
  'told_anyon_anyth',
  'anyon_anyth_bc',
  'anyth_bc_know',
  'bc_know_everyon',
  'know_everyon_heard',
  'everyon_heard_version',
  'heard_version_event',
  'version_event_&',
  'event_&_theyr',
  '&_theyr_make',
  'theyr_make_seem',
  'make_seem_like',
  'seem_like_im',
  'like_im_lead',
  'im_lead_pr',
  'lead_pr_campaign',
  'pr_campaign_social',
  'campaign_social_media',
  'social_media_&',
  'media_&_said',
  '&_said_anyth',
  'said_anyth_anyon',
  'anyth_anyon_besid',
  'anyon_besid_best',
  'besid_best_friend',
  'best_friend_theyr',
  'friend_theyr_particularli',
  'theyr_particularli_mad',
  'particularli_mad_left',
  'mad_left_arizona',
  'left_arizona_think',
  'arizona_think_worth',
  'think_worth_hate',
  'worth_hate_im',
  'hate_im_get',
  'im_get_left',
  'get_left_rental',
  'left_rental_car',
  'rental_car_&',
  'car_&_hotel',
  '&_hotel_room',
  'hotel_room_&',
  'room_&_took',
  '&_took_uber',
  'took_uber_airport',
  'uber_airport_paid',
  'airport_paid_everyth',
  'paid_everyth_includ',
  'everyth_includ_hotel',
  'includ_hotel_room',
  'hotel_room_&',
  'room_&_left',
  '&_left_note',
  'left_note_room',
  'note_room_tell',
  'room_tell_go',
  'tell_go_parent',
  'go_parent_feel',
  'parent_feel_like',
  'feel_like_peopl',
  'like_peopl_understand',
  'peopl_understand_mani',
  'understand_mani_peopl',
  'mani_peopl_say',
  'peopl_say_thing',
  'say_thing_im',
  'thing_im_start',
  'im_start_question',
  'start_question_soaita'],
 ['year',
  'old',
  'daughter',
  'ariel',
  'ex-wif',
  'lauren',
  'ariel',
  'young',
  'huge',
  'struggl',
  'move',
  'lauren',
  'famili',
  'work',
  'multipl',
  'job',
  'lauren',
  'best',
  'friend',
  'thru',
  'thing',
  'end',
  'ariel',
  'lauren',
  'friend',
  'tori',
  'told',
  'lauren',
  'messag',
  'guy',
  'went',
  'would',
  'give',
  'number',
  'check',
  'lauren',
  'phone',
  'found',
  'ask',
  'divorc',
  'lauren',
  'piss',
  'want',
  'reconcil',
  'got',
  'split',
  'custodi',
  'lauren',
  'made',
  'life',
  'hell',
  'lauren',
  'badmouth',
  'would',
  'miss',
  'pick',
  'time',
  'make',
  'decis',
  'without',
  'talk',
  'dad',
  'offer',
  'money',
  'relinquish',
  'custodi',
  'told',
  'ariel',
  'start',
  'colleg',
  'deal',
  'mom',
  'would',
  'split',
  'remarri',
  'tori',
  'ariel',
  'tori',
  'rock',
  'divorc',
  'date',
  'till',
  'year',
  'later',
  'lauren',
  'use',
  'warp',
  'ariel',
  'tori',
  'son',
  'exclud',
  'whenev',
  'spend',
  'night',
  'talk',
  'go',
  'room',
  'famili',
  'around',
  'son',
  'walk',
  'basement',
  'come',
  'hurt',
  'lot',
  'ive',
  'spent',
  'thousand',
  'therapi',
  'peopl',
  'bring',
  'still',
  'util',
  'point',
  'ariel',
  'nasti',
  'sake',
  'mom',
  'convinc',
  'cheat',
  'friend',
  'babi',
  'funni',
  'ive',
  'point',
  'timelin',
  'even',
  'match',
  'ive',
  'done',
  'everyth',
  'point',
  'includ',
  'famili',
  'time',
  'therapi',
  'ariel',
  'plain',
  'rude',
  'done',
  'tri',
  'ariel',
  'graduat',
  'hs',
  'may',
  'host',
  'parti',
  'invit',
  'famili',
  'told',
  'ariel',
  'found',
  'disrespect',
  'id',
  'send',
  'card',
  'go',
  'care',
  'spoken',
  'sinc',
  'get',
  'call',
  'lauren',
  'say',
  'paid',
  'first',
  'semest',
  'wonder',
  'id',
  'pay',
  'said',
  'longer',
  'pay',
  'im',
  'pull',
  'money',
  'household',
  'ariel',
  'disrespect',
  'rd',
  'ex',
  'went',
  'say',
  'agreement',
  'remind',
  'dad',
  'tri',
  'buy',
  'custodi',
  'said',
  'alway',
  'want',
  'full',
  'control',
  'custodi',
  'figur',
  'text',
  'ive',
  'put',
  'long',
  'enough',
  'got',
  'year',
  'child',
  'support',
  'plan',
  'set',
  'record',
  'straight',
  'done',
  'block',
  'call',
  'ariel',
  'told',
  'gave',
  'reason',
  'im',
  'pay',
  'told',
  'need',
  'look',
  'loan',
  'would',
  'pay',
  'colleg',
  'least',
  'tri',
  'form',
  'bond',
  'famili',
  'creat',
  'situat',
  'attitud',
  'want',
  'help',
  'need',
  'attempt',
  'start',
  'cri',
  'fall',
  'told',
  'expect',
  'let',
  'know',
  'plan',
  'move',
  'money',
  'around',
  'wife',
  'side',
  'say',
  'weve',
  'bad',
  'guy',
  'long',
  'enough',
  'im',
  'get',
  'shit',
  'aita',
  'year_old',
  'old_daughter',
  'daughter_ariel',
  'ariel_ex-wif',
  'ex-wif_lauren',
  'lauren_ariel',
  'ariel_young',
  'young_huge',
  'huge_struggl',
  'struggl_move',
  'move_lauren',
  'lauren_famili',
  'famili_work',
  'work_multipl',
  'multipl_job',
  'job_lauren',
  'lauren_best',
  'best_friend',
  'friend_thru',
  'thru_thing',
  'thing_end',
  'end_ariel',
  'ariel_lauren',
  'lauren_friend',
  'friend_tori',
  'tori_told',
  'told_lauren',
  'lauren_messag',
  'messag_guy',
  'guy_went',
  'went_would',
  'would_give',
  'give_number',
  'number_check',
  'check_lauren',
  'lauren_phone',
  'phone_found',
  'found_ask',
  'ask_divorc',
  'divorc_lauren',
  'lauren_piss',
  'piss_want',
  'want_reconcil',
  'reconcil_got',
  'got_split',
  'split_custodi',
  'custodi_lauren',
  'lauren_made',
  'made_life',
  'life_hell',
  'hell_lauren',
  'lauren_badmouth',
  'badmouth_would',
  'would_miss',
  'miss_pick',
  'pick_time',
  'time_make',
  'make_decis',
  'decis_without',
  'without_talk',
  'talk_dad',
  'dad_offer',
  'offer_money',
  'money_relinquish',
  'relinquish_custodi',
  'custodi_told',
  'told_ariel',
  'ariel_start',
  'start_colleg',
  'colleg_deal',
  'deal_mom',
  'mom_would',
  'would_split',
  'split_remarri',
  'remarri_tori',
  'tori_ariel',
  'ariel_tori',
  'tori_rock',
  'rock_divorc',
  'divorc_date',
  'date_till',
  'till_year',
  'year_later',
  'later_lauren',
  'lauren_use',
  'use_warp',
  'warp_ariel',
  'ariel_tori',
  'tori_son',
  'son_exclud',
  'exclud_whenev',
  'whenev_spend',
  'spend_night',
  'night_talk',
  'talk_go',
  'go_room',
  'room_famili',
  'famili_around',
  'around_son',
  'son_walk',
  'walk_basement',
  'basement_come',
  'come_hurt',
  'hurt_lot',
  'lot_ive',
  'ive_spent',
  'spent_thousand',
  'thousand_therapi',
  'therapi_peopl',
  'peopl_bring',
  'bring_still',
  'still_util',
  'util_point',
  'point_ariel',
  'ariel_nasti',
  'nasti_sake',
  'sake_mom',
  'mom_convinc',
  'convinc_cheat',
  'cheat_friend',
  'friend_babi',
  'babi_funni',
  'funni_ive',
  'ive_point',
  'point_timelin',
  'timelin_even',
  'even_match',
  'match_ive',
  'ive_done',
  'done_everyth',
  'everyth_point',
  'point_includ',
  'includ_famili',
  'famili_time',
  'time_therapi',
  'therapi_ariel',
  'ariel_plain',
  'plain_rude',
  'rude_done',
  'done_tri',
  'tri_ariel',
  'ariel_graduat',
  'graduat_hs',
  'hs_may',
  'may_host',
  'host_parti',
  'parti_invit',
  'invit_famili',
  'famili_told',
  'told_ariel',
  'ariel_found',
  'found_disrespect',
  'disrespect_id',
  'id_send',
  'send_card',
  'card_go',
  'go_care',
  'care_spoken',
  'spoken_sinc',
  'sinc_get',
  'get_call',
  'call_lauren',
  'lauren_say',
  'say_paid',
  'paid_first',
  'first_semest',
  'semest_wonder',
  'wonder_id',
  'id_pay',
  'pay_said',
  'said_longer',
  'longer_pay',
  'pay_im',
  'im_pull',
  'pull_money',
  'money_household',
  'household_ariel',
  'ariel_disrespect',
  'disrespect_rd',
  'rd_ex',
  'ex_went',
  'went_say',
  'say_agreement',
  'agreement_remind',
  'remind_dad',
  'dad_tri',
  'tri_buy',
  'buy_custodi',
  'custodi_said',
  'said_alway',
  'alway_want',
  'want_full',
  'full_control',
  'control_custodi',
  'custodi_figur',
  'figur_text',
  'text_ive',
  'ive_put',
  'put_long',
  'long_enough',
  'enough_got',
  'got_year',
  'year_child',
  'child_support',
  'support_plan',
  'plan_set',
  'set_record',
  'record_straight',
  'straight_done',
  'done_block',
  'block_call',
  'call_ariel',
  'ariel_told',
  'told_gave',
  'gave_reason',
  'reason_im',
  'im_pay',
  'pay_told',
  'told_need',
  'need_look',
  'look_loan',
  'loan_would',
  'would_pay',
  'pay_colleg',
  'colleg_least',
  'least_tri',
  'tri_form',
  'form_bond',
  'bond_famili',
  'famili_creat',
  'creat_situat',
  'situat_attitud',
  'attitud_want',
  'want_help',
  'help_need',
  'need_attempt',
  'attempt_start',
  'start_cri',
  'cri_fall',
  'fall_told',
  'told_expect',
  'expect_let',
  'let_know',
  'know_plan',
  'plan_move',
  'move_money',
  'money_around',
  'around_wife',
  'wife_side',
  'side_say',
  'say_weve',
  'weve_bad',
  'bad_guy',
  'guy_long',
  'long_enough',
  'enough_im',
  'im_get',
  'get_shit',
  'shit_aita',
  'year_old_daughter',
  'old_daughter_ariel',
  'daughter_ariel_ex-wif',
  'ariel_ex-wif_lauren',
  'ex-wif_lauren_ariel',
  'lauren_ariel_young',
  'ariel_young_huge',
  'young_huge_struggl',
  'huge_struggl_move',
  'struggl_move_lauren',
  'move_lauren_famili',
  'lauren_famili_work',
  'famili_work_multipl',
  'work_multipl_job',
  'multipl_job_lauren',
  'job_lauren_best',
  'lauren_best_friend',
  'best_friend_thru',
  'friend_thru_thing',
  'thru_thing_end',
  'thing_end_ariel',
  'end_ariel_lauren',
  'ariel_lauren_friend',
  'lauren_friend_tori',
  'friend_tori_told',
  'tori_told_lauren',
  'told_lauren_messag',
  'lauren_messag_guy',
  'messag_guy_went',
  'guy_went_would',
  'went_would_give',
  'would_give_number',
  'give_number_check',
  'number_check_lauren',
  'check_lauren_phone',
  'lauren_phone_found',
  'phone_found_ask',
  'found_ask_divorc',
  'ask_divorc_lauren',
  'divorc_lauren_piss',
  'lauren_piss_want',
  'piss_want_reconcil',
  'want_reconcil_got',
  'reconcil_got_split',
  'got_split_custodi',
  'split_custodi_lauren',
  'custodi_lauren_made',
  'lauren_made_life',
  'made_life_hell',
  'life_hell_lauren',
  'hell_lauren_badmouth',
  'lauren_badmouth_would',
  'badmouth_would_miss',
  'would_miss_pick',
  'miss_pick_time',
  'pick_time_make',
  'time_make_decis',
  'make_decis_without',
  'decis_without_talk',
  'without_talk_dad',
  'talk_dad_offer',
  'dad_offer_money',
  'offer_money_relinquish',
  'money_relinquish_custodi',
  'relinquish_custodi_told',
  'custodi_told_ariel',
  'told_ariel_start',
  'ariel_start_colleg',
  'start_colleg_deal',
  'colleg_deal_mom',
  'deal_mom_would',
  'mom_would_split',
  'would_split_remarri',
  'split_remarri_tori',
  'remarri_tori_ariel',
  'tori_ariel_tori',
  'ariel_tori_rock',
  'tori_rock_divorc',
  'rock_divorc_date',
  'divorc_date_till',
  'date_till_year',
  'till_year_later',
  'year_later_lauren',
  'later_lauren_use',
  'lauren_use_warp',
  'use_warp_ariel',
  'warp_ariel_tori',
  'ariel_tori_son',
  'tori_son_exclud',
  'son_exclud_whenev',
  'exclud_whenev_spend',
  'whenev_spend_night',
  'spend_night_talk',
  'night_talk_go',
  'talk_go_room',
  'go_room_famili',
  'room_famili_around',
  'famili_around_son',
  'around_son_walk',
  'son_walk_basement',
  'walk_basement_come',
  'basement_come_hurt',
  'come_hurt_lot',
  'hurt_lot_ive',
  'lot_ive_spent',
  'ive_spent_thousand',
  'spent_thousand_therapi',
  'thousand_therapi_peopl',
  'therapi_peopl_bring',
  'peopl_bring_still',
  'bring_still_util',
  'still_util_point',
  'util_point_ariel',
  'point_ariel_nasti',
  'ariel_nasti_sake',
  'nasti_sake_mom',
  'sake_mom_convinc',
  'mom_convinc_cheat',
  'convinc_cheat_friend',
  'cheat_friend_babi',
  'friend_babi_funni',
  'babi_funni_ive',
  'funni_ive_point',
  'ive_point_timelin',
  'point_timelin_even',
  'timelin_even_match',
  'even_match_ive',
  'match_ive_done',
  'ive_done_everyth',
  'done_everyth_point',
  'everyth_point_includ',
  'point_includ_famili',
  'includ_famili_time',
  'famili_time_therapi',
  'time_therapi_ariel',
  'therapi_ariel_plain',
  'ariel_plain_rude',
  'plain_rude_done',
  'rude_done_tri',
  'done_tri_ariel',
  'tri_ariel_graduat',
  'ariel_graduat_hs',
  'graduat_hs_may',
  'hs_may_host',
  'may_host_parti',
  'host_parti_invit',
  'parti_invit_famili',
  'invit_famili_told',
  'famili_told_ariel',
  'told_ariel_found',
  'ariel_found_disrespect',
  'found_disrespect_id',
  'disrespect_id_send',
  'id_send_card',
  'send_card_go',
  'card_go_care',
  'go_care_spoken',
  'care_spoken_sinc',
  'spoken_sinc_get',
  'sinc_get_call',
  'get_call_lauren',
  'call_lauren_say',
  'lauren_say_paid',
  'say_paid_first',
  'paid_first_semest',
  'first_semest_wonder',
  'semest_wonder_id',
  'wonder_id_pay',
  'id_pay_said',
  'pay_said_longer',
  'said_longer_pay',
  'longer_pay_im',
  'pay_im_pull',
  'im_pull_money',
  'pull_money_household',
  'money_household_ariel',
  'household_ariel_disrespect',
  'ariel_disrespect_rd',
  'disrespect_rd_ex',
  'rd_ex_went',
  'ex_went_say',
  'went_say_agreement',
  'say_agreement_remind',
  'agreement_remind_dad',
  'remind_dad_tri',
  'dad_tri_buy',
  'tri_buy_custodi',
  'buy_custodi_said',
  'custodi_said_alway',
  'said_alway_want',
  'alway_want_full',
  'want_full_control',
  'full_control_custodi',
  'control_custodi_figur',
  'custodi_figur_text',
  'figur_text_ive',
  'text_ive_put',
  'ive_put_long',
  'put_long_enough',
  'long_enough_got',
  'enough_got_year',
  'got_year_child',
  'year_child_support',
  'child_support_plan',
  'support_plan_set',
  'plan_set_record',
  'set_record_straight',
  'record_straight_done',
  'straight_done_block',
  'done_block_call',
  'block_call_ariel',
  'call_ariel_told',
  'ariel_told_gave',
  'told_gave_reason',
  'gave_reason_im',
  'reason_im_pay',
  'im_pay_told',
  'pay_told_need',
  'told_need_look',
  'need_look_loan',
  'look_loan_would',
  'loan_would_pay',
  'would_pay_colleg',
  'pay_colleg_least',
  'colleg_least_tri',
  'least_tri_form',
  'tri_form_bond',
  'form_bond_famili',
  'bond_famili_creat',
  'famili_creat_situat',
  'creat_situat_attitud',
  'situat_attitud_want',
  'attitud_want_help',
  'want_help_need',
  'help_need_attempt',
  'need_attempt_start',
  'attempt_start_cri',
  'start_cri_fall',
  'cri_fall_told',
  'fall_told_expect',
  'told_expect_let',
  'expect_let_know',
  'let_know_plan',
  'know_plan_move',
  'plan_move_money',
  'move_money_around',
  'money_around_wife',
  'around_wife_side',
  'wife_side_say',
  'side_say_weve',
  'say_weve_bad',
  'weve_bad_guy',
  'bad_guy_long',
  'guy_long_enough',
  'long_enough_im',
  'enough_im_get',
  'im_get_shit',
  'get_shit_aita'],
 ['last',
  'weekend',
  'decid',
  'go',
  'make',
  'famili',
  'wife',
  'kid',
  'big',
  'breakfast',
  'spread',
  'part',
  'lame',
  'accord',
  'oldest',
  'daughter',
  'famili',
  'time',
  'decid',
  'day',
  'plan',
  'breakfast',
  'togeth',
  'watch',
  'movi',
  'lunch',
  'play',
  'game',
  'famili',
  'releas',
  'kid',
  'clutch',
  'lame',
  'famili',
  'time',
  'anyway',
  'got',
  'earli',
  'heat',
  'waffl',
  'iron',
  'huge',
  'stovetop',
  'skillet',
  'went',
  'work',
  'make',
  'waffl',
  'scrambl',
  'egg',
  'bacon',
  'sausag',
  'hashbrown',
  'finish',
  'kid',
  'plate',
  'wife',
  'ask',
  'throw',
  'coupl',
  'egg',
  'overeasi',
  'one',
  'famili',
  'stand',
  'runni',
  'yolk',
  'neither',
  'kid',
  'touch',
  'realli',
  'like',
  'told',
  'nah',
  'im',
  'finish',
  'alreadi',
  'realli',
  'want',
  'coupl',
  'egg',
  'way',
  'want',
  'make',
  'go',
  'im',
  'done',
  'respond',
  'alreadi',
  'cook',
  'im',
  'mood',
  'coupl',
  'overeasi',
  'egg',
  'cant',
  'throw',
  'refus',
  'turn',
  'way',
  'quiet',
  'bicker',
  'argument',
  'mind',
  'sinc',
  'one',
  'hand',
  'feel',
  'bad',
  'wife',
  'ask',
  'small',
  'favor',
  'big',
  'deal',
  'fulfil',
  'hand',
  'made',
  'plenti',
  'food',
  'alreadi',
  'wife',
  'like',
  'scrambl',
  'egg',
  'fine',
  'plenti',
  'food',
  'eat',
  'need',
  'go',
  'insist',
  'special',
  'request',
  'honestli',
  'silli',
  'petti',
  'fight',
  'nonetheless',
  'im',
  'curiou',
  'peopl',
  'think',
  'right',
  'edit',
  'top',
  'question',
  'ask',
  'wife',
  'routin',
  'bicker',
  'way',
  'bother',
  'much',
  'neither',
  'us',
  'usual',
  'dig',
  'heel',
  'much',
  'someth',
  'minor',
  'felt',
  'weird',
  'enough',
  'ask',
  'stranger',
  'said',
  'dissent',
  'prevail',
  'opinion',
  'wrong',
  'accept',
  'let',
  'lazi',
  'mood',
  'morn',
  'take',
  'made',
  'wife',
  'happi',
  'peopl',
  'make',
  'way',
  'much',
  'wife',
  'love',
  'love',
  'children',
  'everyth',
  'good',
  'good',
  'famili',
  'stop',
  'wish',
  'bad',
  'upon',
  'marriag',
  'famili',
  'got',
  'littl',
  'lazi',
  'one',
  'morn',
  'want',
  'know',
  'wrong',
  'one',
  'situat',
  'appar',
  'accept',
  'final',
  'peopl',
  'appar',
  'took',
  'say',
  'cook',
  'favor',
  'wife',
  'mean',
  'almost',
  'noth',
  'contribut',
  'famili',
  'whole',
  'thing',
  'bit',
  'orphan',
  'statist',
  'context',
  'full-tim',
  'job',
  'wife',
  'work',
  '-',
  'hour',
  'week',
  'home',
  'divis',
  'labor',
  'fair',
  'accept',
  'im',
  'asshol',
  'lazi',
  'given',
  'wife',
  'want',
  'last_weekend',
  'weekend_decid',
  'decid_go',
  'go_make',
  'make_famili',
  'famili_wife',
  'wife_kid',
  'kid_big',
  'big_breakfast',
  'breakfast_spread',
  'spread_part',
  'part_lame',
  'lame_accord',
  'accord_oldest',
  'oldest_daughter',
  'daughter_famili',
  'famili_time',
  'time_decid',
  'decid_day',
  'day_plan',
  'plan_breakfast',
  'breakfast_togeth',
  'togeth_watch',
  'watch_movi',
  'movi_lunch',
  'lunch_play',
  'play_game',
  'game_famili',
  'famili_releas',
  'releas_kid',
  'kid_clutch',
  'clutch_lame',
  'lame_famili',
  'famili_time',
  'time_anyway',
  'anyway_got',
  'got_earli',
  'earli_heat',
  'heat_waffl',
  'waffl_iron',
  'iron_huge',
  'huge_stovetop',
  'stovetop_skillet',
  'skillet_went',
  'went_work',
  'work_make',
  'make_waffl',
  'waffl_scrambl',
  'scrambl_egg',
  'egg_bacon',
  'bacon_sausag',
  'sausag_hashbrown',
  'hashbrown_finish',
  'finish_kid',
  'kid_plate',
  'plate_wife',
  'wife_ask',
  'ask_throw',
  'throw_coupl',
  'coupl_egg',
  'egg_overeasi',
  'overeasi_one',
  'one_famili',
  'famili_stand',
  'stand_runni',
  'runni_yolk',
  'yolk_neither',
  'neither_kid',
  'kid_touch',
  'touch_realli',
  'realli_like',
  'like_told',
  'told_nah',
  'nah_im',
  'im_finish',
  'finish_alreadi',
  'alreadi_realli',
  'realli_want',
  'want_coupl',
  'coupl_egg',
  'egg_way',
  'way_want',
  'want_make',
  'make_go',
  'go_im',
  'im_done',
  'done_respond',
  'respond_alreadi',
  'alreadi_cook',
  'cook_im',
  'im_mood',
  'mood_coupl',
  'coupl_overeasi',
  'overeasi_egg',
  'egg_cant',
  'cant_throw',
  'throw_refus',
  'refus_turn',
  'turn_way',
  'way_quiet',
  'quiet_bicker',
  'bicker_argument',
  'argument_mind',
  'mind_sinc',
  'sinc_one',
  'one_hand',
  'hand_feel',
  'feel_bad',
  'bad_wife',
  'wife_ask',
  'ask_small',
  'small_favor',
  'favor_big',
  'big_deal',
  'deal_fulfil',
  'fulfil_hand',
  'hand_made',
  'made_plenti',
  'plenti_food',
  'food_alreadi',
  'alreadi_wife',
  'wife_like',
  'like_scrambl',
  'scrambl_egg',
  'egg_fine',
  'fine_plenti',
  'plenti_food',
  'food_eat',
  'eat_need',
  'need_go',
  'go_insist',
  'insist_special',
  'special_request',
  'request_honestli',
  'honestli_silli',
  'silli_petti',
  'petti_fight',
  'fight_nonetheless',
  'nonetheless_im',
  'im_curiou',
  'curiou_peopl',
  'peopl_think',
  'think_right',
  'right_edit',
  'edit_top',
  'top_question',
  'question_ask',
  'ask_wife',
  'wife_routin',
  'routin_bicker',
  'bicker_way',
  'way_bother',
  'bother_much',
  'much_neither',
  'neither_us',
  'us_usual',
  'usual_dig',
  'dig_heel',
  'heel_much',
  'much_someth',
  'someth_minor',
  'minor_felt',
  'felt_weird',
  'weird_enough',
  'enough_ask',
  'ask_stranger',
  'stranger_said',
  'said_dissent',
  'dissent_prevail',
  'prevail_opinion',
  'opinion_wrong',
  'wrong_accept',
  'accept_let',
  'let_lazi',
  'lazi_mood',
  'mood_morn',
  'morn_take',
  'take_made',
  'made_wife',
  'wife_happi',
  'happi_peopl',
  'peopl_make',
  'make_way',
  'way_much',
  'much_wife',
  'wife_love',
  'love_love',
  'love_children',
  'children_everyth',
  'everyth_good',
  'good_good',
  'good_famili',
  'famili_stop',
  'stop_wish',
  'wish_bad',
  'bad_upon',
  'upon_marriag',
  'marriag_famili',
  'famili_got',
  'got_littl',
  'littl_lazi',
  'lazi_one',
  'one_morn',
  'morn_want',
  'want_know',
  'know_wrong',
  'wrong_one',
  'one_situat',
  'situat_appar',
  'appar_accept',
  'accept_final',
  'final_peopl',
  'peopl_appar',
  'appar_took',
  'took_say',
  'say_cook',
  'cook_favor',
  'favor_wife',
  'wife_mean',
  'mean_almost',
  'almost_noth',
  'noth_contribut',
  'contribut_famili',
  'famili_whole',
  'whole_thing',
  'thing_bit',
  'bit_orphan',
  'orphan_statist',
  'statist_context',
  'context_full-tim',
  'full-tim_job',
  'job_wife',
  'wife_work',
  'work_-',
  '-_hour',
  'hour_week',
  'week_home',
  'home_divis',
  'divis_labor',
  'labor_fair',
  'fair_accept',
  'accept_im',
  'im_asshol',
  'asshol_lazi',
  'lazi_given',
  'given_wife',
  'wife_want',
  'last_weekend_decid',
  'weekend_decid_go',
  'decid_go_make',
  'go_make_famili',
  'make_famili_wife',
  'famili_wife_kid',
  'wife_kid_big',
  'kid_big_breakfast',
  'big_breakfast_spread',
  'breakfast_spread_part',
  'spread_part_lame',
  'part_lame_accord',
  'lame_accord_oldest',
  'accord_oldest_daughter',
  'oldest_daughter_famili',
  'daughter_famili_time',
  'famili_time_decid',
  'time_decid_day',
  'decid_day_plan',
  'day_plan_breakfast',
  'plan_breakfast_togeth',
  'breakfast_togeth_watch',
  'togeth_watch_movi',
  'watch_movi_lunch',
  'movi_lunch_play',
  'lunch_play_game',
  'play_game_famili',
  'game_famili_releas',
  'famili_releas_kid',
  'releas_kid_clutch',
  'kid_clutch_lame',
  'clutch_lame_famili',
  'lame_famili_time',
  'famili_time_anyway',
  'time_anyway_got',
  'anyway_got_earli',
  'got_earli_heat',
  'earli_heat_waffl',
  'heat_waffl_iron',
  'waffl_iron_huge',
  'iron_huge_stovetop',
  'huge_stovetop_skillet',
  'stovetop_skillet_went',
  'skillet_went_work',
  'went_work_make',
  'work_make_waffl',
  'make_waffl_scrambl',
  'waffl_scrambl_egg',
  'scrambl_egg_bacon',
  'egg_bacon_sausag',
  'bacon_sausag_hashbrown',
  'sausag_hashbrown_finish',
  'hashbrown_finish_kid',
  'finish_kid_plate',
  'kid_plate_wife',
  'plate_wife_ask',
  'wife_ask_throw',
  'ask_throw_coupl',
  'throw_coupl_egg',
  'coupl_egg_overeasi',
  'egg_overeasi_one',
  'overeasi_one_famili',
  'one_famili_stand',
  'famili_stand_runni',
  'stand_runni_yolk',
  'runni_yolk_neither',
  'yolk_neither_kid',
  'neither_kid_touch',
  'kid_touch_realli',
  'touch_realli_like',
  'realli_like_told',
  'like_told_nah',
  'told_nah_im',
  'nah_im_finish',
  'im_finish_alreadi',
  'finish_alreadi_realli',
  'alreadi_realli_want',
  'realli_want_coupl',
  'want_coupl_egg',
  'coupl_egg_way',
  'egg_way_want',
  'way_want_make',
  'want_make_go',
  'make_go_im',
  'go_im_done',
  'im_done_respond',
  'done_respond_alreadi',
  'respond_alreadi_cook',
  'alreadi_cook_im',
  'cook_im_mood',
  'im_mood_coupl',
  'mood_coupl_overeasi',
  'coupl_overeasi_egg',
  'overeasi_egg_cant',
  'egg_cant_throw',
  'cant_throw_refus',
  'throw_refus_turn',
  'refus_turn_way',
  'turn_way_quiet',
  'way_quiet_bicker',
  'quiet_bicker_argument',
  'bicker_argument_mind',
  'argument_mind_sinc',
  'mind_sinc_one',
  'sinc_one_hand',
  'one_hand_feel',
  'hand_feel_bad',
  'feel_bad_wife',
  'bad_wife_ask',
  'wife_ask_small',
  'ask_small_favor',
  'small_favor_big',
  'favor_big_deal',
  'big_deal_fulfil',
  'deal_fulfil_hand',
  'fulfil_hand_made',
  'hand_made_plenti',
  'made_plenti_food',
  'plenti_food_alreadi',
  'food_alreadi_wife',
  'alreadi_wife_like',
  'wife_like_scrambl',
  'like_scrambl_egg',
  'scrambl_egg_fine',
  'egg_fine_plenti',
  'fine_plenti_food',
  'plenti_food_eat',
  'food_eat_need',
  'eat_need_go',
  'need_go_insist',
  'go_insist_special',
  'insist_special_request',
  'special_request_honestli',
  'request_honestli_silli',
  'honestli_silli_petti',
  'silli_petti_fight',
  'petti_fight_nonetheless',
  'fight_nonetheless_im',
  'nonetheless_im_curiou',
  'im_curiou_peopl',
  'curiou_peopl_think',
  'peopl_think_right',
  'think_right_edit',
  'right_edit_top',
  'edit_top_question',
  'top_question_ask',
  'question_ask_wife',
  'ask_wife_routin',
  'wife_routin_bicker',
  'routin_bicker_way',
  'bicker_way_bother',
  'way_bother_much',
  'bother_much_neither',
  'much_neither_us',
  'neither_us_usual',
  'us_usual_dig',
  'usual_dig_heel',
  'dig_heel_much',
  'heel_much_someth',
  'much_someth_minor',
  'someth_minor_felt',
  'minor_felt_weird',
  'felt_weird_enough',
  'weird_enough_ask',
  'enough_ask_stranger',
  'ask_stranger_said',
  'stranger_said_dissent',
  'said_dissent_prevail',
  'dissent_prevail_opinion',
  'prevail_opinion_wrong',
  'opinion_wrong_accept',
  'wrong_accept_let',
  'accept_let_lazi',
  'let_lazi_mood',
  'lazi_mood_morn',
  'mood_morn_take',
  'morn_take_made',
  'take_made_wife',
  'made_wife_happi',
  'wife_happi_peopl',
  'happi_peopl_make',
  'peopl_make_way',
  'make_way_much',
  'way_much_wife',
  'much_wife_love',
  'wife_love_love',
  'love_love_children',
  'love_children_everyth',
  'children_everyth_good',
  'everyth_good_good',
  'good_good_famili',
  'good_famili_stop',
  'famili_stop_wish',
  'stop_wish_bad',
  'wish_bad_upon',
  'bad_upon_marriag',
  'upon_marriag_famili',
  'marriag_famili_got',
  'famili_got_littl',
  'got_littl_lazi',
  'littl_lazi_one',
  'lazi_one_morn',
  'one_morn_want',
  'morn_want_know',
  'want_know_wrong',
  'know_wrong_one',
  'wrong_one_situat',
  'one_situat_appar',
  'situat_appar_accept',
  'appar_accept_final',
  'accept_final_peopl',
  'final_peopl_appar',
  'peopl_appar_took',
  'appar_took_say',
  'took_say_cook',
  'say_cook_favor',
  'cook_favor_wife',
  'favor_wife_mean',
  'wife_mean_almost',
  'mean_almost_noth',
  'almost_noth_contribut',
  'noth_contribut_famili',
  'contribut_famili_whole',
  'famili_whole_thing',
  'whole_thing_bit',
  'thing_bit_orphan',
  'bit_orphan_statist',
  'orphan_statist_context',
  'statist_context_full-tim',
  'context_full-tim_job',
  'full-tim_job_wife',
  'job_wife_work',
  'wife_work_-',
  'work_-_hour',
  '-_hour_week',
  'hour_week_home',
  'week_home_divis',
  'home_divis_labor',
  'divis_labor_fair',
  'labor_fair_accept',
  'fair_accept_im',
  'accept_im_asshol',
  'im_asshol_lazi',
  'asshol_lazi_given',
  'lazi_given_wife',
  'given_wife_want'],
 ['im',
  'mother',
  'twin',
  'dad',
  'split',
  'year',
  'ago',
  'im',
  'fix',
  'meant',
  'nowmarri',
  'husband',
  'kevin',
  'problem',
  'iskevin',
  'think',
  'girl',
  'disciplin',
  'simpli',
  'follow',
  'everyth',
  'tell',
  'see',
  'fatherwev',
  'alreadi',
  'talk',
  'especi',
  'part',
  'expect',
  'dress',
  'want',
  'behav',
  'want',
  'even',
  'call',
  'weirdo',
  'teenag',
  'new',
  'thing',
  'anyway',
  'told',
  'need',
  'loosen',
  'littl',
  'lessen',
  'expect',
  'get',
  'hard',
  'given',
  'brought',
  'conserv',
  'household',
  'hard-cor',
  'christian',
  'famili',
  'last',
  'week',
  'start',
  'fight',
  'see',
  'one',
  'girl',
  'hairstyl',
  'said',
  'look',
  'trashi',
  'cancel',
  'trip',
  'mall',
  'refus',
  'drive',
  'us',
  'coupl',
  'day',
  'ago',
  'want',
  'go',
  'dinner',
  'intend',
  'get',
  'work',
  'stuff',
  'get',
  'done',
  'husband',
  'agre',
  'hed',
  'take',
  'girl',
  'go',
  'restaur',
  'wait',
  'call',
  'got',
  'hous',
  'complain',
  'girl',
  'wear',
  'girl',
  'sent',
  'pic',
  'thought',
  'noth',
  'wrong',
  'outfit',
  'told',
  'drop',
  'go',
  'said',
  'fine',
  'mutter',
  'someth',
  'enabl',
  'thrm',
  'hung',
  'still',
  'work',
  'got',
  'call',
  'one',
  'girl',
  'tell',
  'stepdad',
  'stand',
  'wait',
  'outsid',
  'restaur',
  'want',
  'seen',
  'dress',
  'like',
  'stun',
  'rush',
  'restaur',
  'found',
  'near',
  'car',
  'explain',
  'told',
  'wait',
  'car',
  'til',
  'tell',
  'come',
  'basic',
  'wait',
  'start',
  'cri',
  'get',
  'car',
  'went',
  'insid',
  'restaur',
  'found',
  'phone',
  'went',
  'told',
  'asham',
  'treat',
  'daughter',
  'like',
  'someth',
  'asham',
  'tri',
  'backpaddl',
  'say',
  'like',
  'interrupt',
  'walk',
  'cancel',
  'dinner',
  'went',
  'home',
  'came',
  'back',
  'hour',
  'later',
  'tri',
  'argu',
  'cant',
  'blame',
  'disapprov',
  'girl',
  'reckless',
  'tri',
  'commun',
  'shut',
  'treat',
  'less',
  'parent',
  'want',
  'best',
  'speak',
  'girl',
  'anymor',
  'im_mother',
  'mother_twin',
  'twin_dad',
  'dad_split',
  'split_year',
  'year_ago',
  'ago_im',
  'im_fix',
  'fix_meant',
  'meant_nowmarri',
  'nowmarri_husband',
  'husband_kevin',
  'kevin_problem',
  'problem_iskevin',
  'iskevin_think',
  'think_girl',
  'girl_disciplin',
  'disciplin_simpli',
  'simpli_follow',
  'follow_everyth',
  'everyth_tell',
  'tell_see',
  'see_fatherwev',
  'fatherwev_alreadi',
  'alreadi_talk',
  'talk_especi',
  'especi_part',
  'part_expect',
  'expect_dress',
  'dress_want',
  'want_behav',
  'behav_want',
  'want_even',
  'even_call',
  'call_weirdo',
  'weirdo_teenag',
  'teenag_new',
  'new_thing',
  'thing_anyway',
  'anyway_told',
  'told_need',
  'need_loosen',
  'loosen_littl',
  'littl_lessen',
  'lessen_expect',
  'expect_get',
  'get_hard',
  'hard_given',
  'given_brought',
  'brought_conserv',
  'conserv_household',
  'household_hard-cor',
  'hard-cor_christian',
  'christian_famili',
  'famili_last',
  'last_week',
  'week_start',
  'start_fight',
  'fight_see',
  'see_one',
  'one_girl',
  'girl_hairstyl',
  'hairstyl_said',
  'said_look',
  'look_trashi',
  'trashi_cancel',
  'cancel_trip',
  'trip_mall',
  'mall_refus',
  'refus_drive',
  'drive_us',
  'us_coupl',
  'coupl_day',
  'day_ago',
  'ago_want',
  'want_go',
  'go_dinner',
  'dinner_intend',
  'intend_get',
  'get_work',
  'work_stuff',
  'stuff_get',
  'get_done',
  'done_husband',
  'husband_agre',
  'agre_hed',
  'hed_take',
  'take_girl',
  'girl_go',
  'go_restaur',
  'restaur_wait',
  'wait_call',
  'call_got',
  'got_hous',
  'hous_complain',
  'complain_girl',
  'girl_wear',
  'wear_girl',
  'girl_sent',
  'sent_pic',
  'pic_thought',
  'thought_noth',
  'noth_wrong',
  'wrong_outfit',
  'outfit_told',
  'told_drop',
  'drop_go',
  'go_said',
  'said_fine',
  'fine_mutter',
  'mutter_someth',
  'someth_enabl',
  'enabl_thrm',
  'thrm_hung',
  'hung_still',
  'still_work',
  'work_got',
  'got_call',
  'call_one',
  'one_girl',
  'girl_tell',
  'tell_stepdad',
  'stepdad_stand',
  'stand_wait',
  'wait_outsid',
  'outsid_restaur',
  'restaur_want',
  'want_seen',
  'seen_dress',
  'dress_like',
  'like_stun',
  'stun_rush',
  'rush_restaur',
  'restaur_found',
  'found_near',
  'near_car',
  'car_explain',
  'explain_told',
  'told_wait',
  'wait_car',
  'car_til',
  'til_tell',
  'tell_come',
  'come_basic',
  'basic_wait',
  'wait_start',
  'start_cri',
  'cri_get',
  'get_car',
  'car_went',
  'went_insid',
  'insid_restaur',
  'restaur_found',
  'found_phone',
  'phone_went',
  'went_told',
  'told_asham',
  'asham_treat',
  'treat_daughter',
  'daughter_like',
  'like_someth',
  'someth_asham',
  'asham_tri',
  'tri_backpaddl',
  'backpaddl_say',
  'say_like',
  'like_interrupt',
  'interrupt_walk',
  'walk_cancel',
  'cancel_dinner',
  'dinner_went',
  'went_home',
  'home_came',
  'came_back',
  'back_hour',
  'hour_later',
  'later_tri',
  'tri_argu',
  'argu_cant',
  'cant_blame',
  'blame_disapprov',
  'disapprov_girl',
  'girl_reckless',
  'reckless_tri',
  'tri_commun',
  'commun_shut',
  'shut_treat',
  'treat_less',
  'less_parent',
  'parent_want',
  'want_best',
  'best_speak',
  'speak_girl',
  'girl_anymor',
  'im_mother_twin',
  'mother_twin_dad',
  'twin_dad_split',
  'dad_split_year',
  'split_year_ago',
  'year_ago_im',
  'ago_im_fix',
  'im_fix_meant',
  'fix_meant_nowmarri',
  'meant_nowmarri_husband',
  'nowmarri_husband_kevin',
  'husband_kevin_problem',
  'kevin_problem_iskevin',
  'problem_iskevin_think',
  'iskevin_think_girl',
  'think_girl_disciplin',
  'girl_disciplin_simpli',
  'disciplin_simpli_follow',
  'simpli_follow_everyth',
  'follow_everyth_tell',
  'everyth_tell_see',
  'tell_see_fatherwev',
  'see_fatherwev_alreadi',
  'fatherwev_alreadi_talk',
  'alreadi_talk_especi',
  'talk_especi_part',
  'especi_part_expect',
  'part_expect_dress',
  'expect_dress_want',
  'dress_want_behav',
  'want_behav_want',
  'behav_want_even',
  'want_even_call',
  'even_call_weirdo',
  'call_weirdo_teenag',
  'weirdo_teenag_new',
  'teenag_new_thing',
  'new_thing_anyway',
  'thing_anyway_told',
  'anyway_told_need',
  'told_need_loosen',
  'need_loosen_littl',
  'loosen_littl_lessen',
  'littl_lessen_expect',
  'lessen_expect_get',
  'expect_get_hard',
  'get_hard_given',
  'hard_given_brought',
  'given_brought_conserv',
  'brought_conserv_household',
  'conserv_household_hard-cor',
  'household_hard-cor_christian',
  'hard-cor_christian_famili',
  'christian_famili_last',
  'famili_last_week',
  'last_week_start',
  'week_start_fight',
  'start_fight_see',
  'fight_see_one',
  'see_one_girl',
  'one_girl_hairstyl',
  'girl_hairstyl_said',
  'hairstyl_said_look',
  'said_look_trashi',
  'look_trashi_cancel',
  'trashi_cancel_trip',
  'cancel_trip_mall',
  'trip_mall_refus',
  'mall_refus_drive',
  'refus_drive_us',
  'drive_us_coupl',
  'us_coupl_day',
  'coupl_day_ago',
  'day_ago_want',
  'ago_want_go',
  'want_go_dinner',
  'go_dinner_intend',
  'dinner_intend_get',
  'intend_get_work',
  'get_work_stuff',
  'work_stuff_get',
  'stuff_get_done',
  'get_done_husband',
  'done_husband_agre',
  'husband_agre_hed',
  'agre_hed_take',
  'hed_take_girl',
  'take_girl_go',
  'girl_go_restaur',
  'go_restaur_wait',
  'restaur_wait_call',
  'wait_call_got',
  'call_got_hous',
  'got_hous_complain',
  'hous_complain_girl',
  'complain_girl_wear',
  'girl_wear_girl',
  'wear_girl_sent',
  'girl_sent_pic',
  'sent_pic_thought',
  'pic_thought_noth',
  'thought_noth_wrong',
  'noth_wrong_outfit',
  'wrong_outfit_told',
  'outfit_told_drop',
  'told_drop_go',
  'drop_go_said',
  'go_said_fine',
  'said_fine_mutter',
  'fine_mutter_someth',
  'mutter_someth_enabl',
  'someth_enabl_thrm',
  'enabl_thrm_hung',
  'thrm_hung_still',
  'hung_still_work',
  'still_work_got',
  'work_got_call',
  'got_call_one',
  'call_one_girl',
  'one_girl_tell',
  'girl_tell_stepdad',
  'tell_stepdad_stand',
  'stepdad_stand_wait',
  'stand_wait_outsid',
  'wait_outsid_restaur',
  'outsid_restaur_want',
  'restaur_want_seen',
  'want_seen_dress',
  'seen_dress_like',
  'dress_like_stun',
  'like_stun_rush',
  'stun_rush_restaur',
  'rush_restaur_found',
  'restaur_found_near',
  'found_near_car',
  'near_car_explain',
  'car_explain_told',
  'explain_told_wait',
  'told_wait_car',
  'wait_car_til',
  'car_til_tell',
  'til_tell_come',
  'tell_come_basic',
  'come_basic_wait',
  'basic_wait_start',
  'wait_start_cri',
  'start_cri_get',
  'cri_get_car',
  'get_car_went',
  'car_went_insid',
  'went_insid_restaur',
  'insid_restaur_found',
  'restaur_found_phone',
  'found_phone_went',
  'phone_went_told',
  'went_told_asham',
  'told_asham_treat',
  'asham_treat_daughter',
  'treat_daughter_like',
  'daughter_like_someth',
  'like_someth_asham',
  'someth_asham_tri',
  'asham_tri_backpaddl',
  'tri_backpaddl_say',
  'backpaddl_say_like',
  'say_like_interrupt',
  'like_interrupt_walk',
  'interrupt_walk_cancel',
  'walk_cancel_dinner',
  'cancel_dinner_went',
  'dinner_went_home',
  'went_home_came',
  'home_came_back',
  'came_back_hour',
  'back_hour_later',
  'hour_later_tri',
  'later_tri_argu',
  'tri_argu_cant',
  'argu_cant_blame',
  'cant_blame_disapprov',
  'blame_disapprov_girl',
  'disapprov_girl_reckless',
  'girl_reckless_tri',
  'reckless_tri_commun',
  'tri_commun_shut',
  'commun_shut_treat',
  'shut_treat_less',
  'treat_less_parent',
  'less_parent_want',
  'parent_want_best',
  'want_best_speak',
  'best_speak_girl',
  'speak_girl_anymor'],
 ['daughter',
  'previou',
  'relationship',
  'father',
  'contact',
  'husband',
  'year',
  'close',
  'father',
  'ever',
  'known',
  'daughter',
  'born',
  'deaf',
  'commun',
  'via',
  'bsl',
  'fluent',
  'learn',
  'alongsid',
  'husband',
  'fluent',
  'get',
  'want',
  'abl',
  'commun',
  'fulli',
  'also',
  'help',
  'teach',
  'children',
  'togeth',
  'commun',
  'older',
  'sister',
  'went',
  'parent',
  'easter',
  'dinner',
  'sibl',
  'niecesnephew',
  'cours',
  'brought',
  'daughter',
  'kid',
  'happi',
  'get',
  'plenti',
  'chocol',
  'play',
  'togeth',
  'issu',
  'rose',
  'howev',
  'dinner',
  'daughter',
  'kept',
  'put',
  'fork',
  'knife',
  'sign',
  'husband',
  'talk',
  'caus',
  'eat',
  'slower',
  'everyon',
  'els',
  'mil',
  'ask',
  'tell',
  'sign',
  'dinner',
  'tabl',
  'food',
  'go',
  'get',
  'cold',
  'plu',
  'set',
  'bad',
  'exampl',
  'distract',
  'kid',
  'beat',
  'around',
  'bush',
  'got',
  'angri',
  'told',
  'mil',
  'daughter',
  'commun',
  'im',
  'go',
  'make',
  'sign',
  '*',
  '*',
  'encourag',
  'daughter',
  'continu',
  'eat',
  'dinner',
  'got',
  'cold',
  'sign',
  'nothat',
  'piss',
  'make',
  'think',
  'peopl',
  'tri',
  'make',
  'daughter',
  'play',
  'quiet',
  'hand',
  'gameaka',
  'sign',
  'told',
  'mil',
  'way',
  'could',
  'ask',
  'daughter',
  'told',
  'everyon',
  'els',
  'talk',
  'end',
  'leav',
  'littl',
  'earli',
  'husband',
  'support',
  'tri',
  'tell',
  'mother',
  'mean',
  'real',
  'harm',
  'get',
  'would',
  'sensit',
  'topic',
  'ive',
  'refus',
  'speak',
  'mil',
  'sinc',
  'dinner',
  'apologis',
  'husband',
  'think',
  'im',
  'bit',
  'harsh',
  'need',
  'one',
  'reach',
  'oliv',
  'branch',
  'matter',
  'cant',
  'help',
  'feel',
  'biolog',
  'grandchild',
  'deaf',
  'said',
  'someth',
  'insensit',
  'impli',
  'distract',
  'bad',
  'exampl',
  'know',
  'mayb',
  'im',
  'defens',
  'child',
  'im',
  'protect',
  'think',
  'daughter_previou',
  'previou_relationship',
  'relationship_father',
  'father_contact',
  'contact_husband',
  'husband_year',
  'year_close',
  'close_father',
  'father_ever',
  'ever_known',
  'known_daughter',
  'daughter_born',
  'born_deaf',
  'deaf_commun',
  'commun_via',
  'via_bsl',
  'bsl_fluent',
  'fluent_learn',
  'learn_alongsid',
  'alongsid_husband',
  'husband_fluent',
  'fluent_get',
  'get_want',
  'want_abl',
  'abl_commun',
  'commun_fulli',
  'fulli_also',
  'also_help',
  'help_teach',
  'teach_children',
  'children_togeth',
  'togeth_commun',
  'commun_older',
  'older_sister',
  'sister_went',
  'went_parent',
  'parent_easter',
  'easter_dinner',
  'dinner_sibl',
  'sibl_niecesnephew',
  'niecesnephew_cours',
  'cours_brought',
  'brought_daughter',
  'daughter_kid',
  'kid_happi',
  'happi_get',
  'get_plenti',
  'plenti_chocol',
  'chocol_play',
  'play_togeth',
  'togeth_issu',
  'issu_rose',
  'rose_howev',
  'howev_dinner',
  'dinner_daughter',
  'daughter_kept',
  'kept_put',
  'put_fork',
  'fork_knife',
  'knife_sign',
  'sign_husband',
  'husband_talk',
  'talk_caus',
  'caus_eat',
  'eat_slower',
  'slower_everyon',
  'everyon_els',
  'els_mil',
  'mil_ask',
  'ask_tell',
  'tell_sign',
  'sign_dinner',
  'dinner_tabl',
  'tabl_food',
  'food_go',
  'go_get',
  'get_cold',
  'cold_plu',
  'plu_set',
  'set_bad',
  'bad_exampl',
  'exampl_distract',
  'distract_kid',
  'kid_beat',
  'beat_around',
  'around_bush',
  'bush_got',
  'got_angri',
  'angri_told',
  'told_mil',
  'mil_daughter',
  'daughter_commun',
  'commun_im',
  'im_go',
  'go_make',
  'make_sign',
  'sign_*',
  '*_*',
  '*_encourag',
  'encourag_daughter',
  'daughter_continu',
  'continu_eat',
  'eat_dinner',
  'dinner_got',
  'got_cold',
  'cold_sign',
  'sign_nothat',
  'nothat_piss',
  'piss_make',
  'make_think',
  'think_peopl',
  'peopl_tri',
  'tri_make',
  'make_daughter',
  'daughter_play',
  'play_quiet',
  'quiet_hand',
  'hand_gameaka',
  'gameaka_sign',
  'sign_told',
  'told_mil',
  'mil_way',
  'way_could',
  'could_ask',
  'ask_daughter',
  'daughter_told',
  'told_everyon',
  'everyon_els',
  'els_talk',
  'talk_end',
  'end_leav',
  'leav_littl',
  'littl_earli',
  'earli_husband',
  'husband_support',
  'support_tri',
  'tri_tell',
  'tell_mother',
  'mother_mean',
  'mean_real',
  'real_harm',
  'harm_get',
  'get_would',
  'would_sensit',
  'sensit_topic',
  'topic_ive',
  'ive_refus',
  'refus_speak',
  'speak_mil',
  'mil_sinc',
  'sinc_dinner',
  'dinner_apologis',
  'apologis_husband',
  'husband_think',
  'think_im',
  'im_bit',
  'bit_harsh',
  'harsh_need',
  'need_one',
  'one_reach',
  'reach_oliv',
  'oliv_branch',
  'branch_matter',
  'matter_cant',
  'cant_help',
  'help_feel',
  'feel_biolog',
  'biolog_grandchild',
  'grandchild_deaf',
  'deaf_said',
  'said_someth',
  'someth_insensit',
  'insensit_impli',
  'impli_distract',
  'distract_bad',
  'bad_exampl',
  'exampl_know',
  'know_mayb',
  'mayb_im',
  'im_defens',
  'defens_child',
  'child_im',
  'im_protect',
  'protect_think',
  'daughter_previou_relationship',
  'previou_relationship_father',
  'relationship_father_contact',
  'father_contact_husband',
  'contact_husband_year',
  'husband_year_close',
  'year_close_father',
  'close_father_ever',
  'father_ever_known',
  'ever_known_daughter',
  'known_daughter_born',
  'daughter_born_deaf',
  'born_deaf_commun',
  'deaf_commun_via',
  'commun_via_bsl',
  'via_bsl_fluent',
  'bsl_fluent_learn',
  'fluent_learn_alongsid',
  'learn_alongsid_husband',
  'alongsid_husband_fluent',
  'husband_fluent_get',
  'fluent_get_want',
  'get_want_abl',
  'want_abl_commun',
  'abl_commun_fulli',
  'commun_fulli_also',
  'fulli_also_help',
  'also_help_teach',
  'help_teach_children',
  'teach_children_togeth',
  'children_togeth_commun',
  'togeth_commun_older',
  'commun_older_sister',
  'older_sister_went',
  'sister_went_parent',
  'went_parent_easter',
  'parent_easter_dinner',
  'easter_dinner_sibl',
  'dinner_sibl_niecesnephew',
  'sibl_niecesnephew_cours',
  'niecesnephew_cours_brought',
  'cours_brought_daughter',
  'brought_daughter_kid',
  'daughter_kid_happi',
  'kid_happi_get',
  'happi_get_plenti',
  'get_plenti_chocol',
  'plenti_chocol_play',
  'chocol_play_togeth',
  'play_togeth_issu',
  'togeth_issu_rose',
  'issu_rose_howev',
  'rose_howev_dinner',
  'howev_dinner_daughter',
  'dinner_daughter_kept',
  'daughter_kept_put',
  'kept_put_fork',
  'put_fork_knife',
  'fork_knife_sign',
  'knife_sign_husband',
  'sign_husband_talk',
  'husband_talk_caus',
  'talk_caus_eat',
  'caus_eat_slower',
  'eat_slower_everyon',
  'slower_everyon_els',
  'everyon_els_mil',
  'els_mil_ask',
  'mil_ask_tell',
  'ask_tell_sign',
  'tell_sign_dinner',
  'sign_dinner_tabl',
  'dinner_tabl_food',
  'tabl_food_go',
  'food_go_get',
  'go_get_cold',
  'get_cold_plu',
  'cold_plu_set',
  'plu_set_bad',
  'set_bad_exampl',
  'bad_exampl_distract',
  'exampl_distract_kid',
  'distract_kid_beat',
  'kid_beat_around',
  'beat_around_bush',
  'around_bush_got',
  'bush_got_angri',
  'got_angri_told',
  'angri_told_mil',
  'told_mil_daughter',
  'mil_daughter_commun',
  'daughter_commun_im',
  'commun_im_go',
  'im_go_make',
  'go_make_sign',
  'make_sign_*',
  'sign_*_*',
  '*_*_encourag',
  '*_encourag_daughter',
  'encourag_daughter_continu',
  'daughter_continu_eat',
  'continu_eat_dinner',
  'eat_dinner_got',
  'dinner_got_cold',
  'got_cold_sign',
  'cold_sign_nothat',
  'sign_nothat_piss',
  'nothat_piss_make',
  'piss_make_think',
  'make_think_peopl',
  'think_peopl_tri',
  'peopl_tri_make',
  'tri_make_daughter',
  'make_daughter_play',
  'daughter_play_quiet',
  'play_quiet_hand',
  'quiet_hand_gameaka',
  'hand_gameaka_sign',
  'gameaka_sign_told',
  'sign_told_mil',
  'told_mil_way',
  'mil_way_could',
  'way_could_ask',
  'could_ask_daughter',
  'ask_daughter_told',
  'daughter_told_everyon',
  'told_everyon_els',
  'everyon_els_talk',
  'els_talk_end',
  'talk_end_leav',
  'end_leav_littl',
  'leav_littl_earli',
  'littl_earli_husband',
  'earli_husband_support',
  'husband_support_tri',
  'support_tri_tell',
  'tri_tell_mother',
  'tell_mother_mean',
  'mother_mean_real',
  'mean_real_harm',
  'real_harm_get',
  'harm_get_would',
  'get_would_sensit',
  'would_sensit_topic',
  'sensit_topic_ive',
  'topic_ive_refus',
  'ive_refus_speak',
  'refus_speak_mil',
  'speak_mil_sinc',
  'mil_sinc_dinner',
  'sinc_dinner_apologis',
  'dinner_apologis_husband',
  'apologis_husband_think',
  'husband_think_im',
  'think_im_bit',
  'im_bit_harsh',
  'bit_harsh_need',
  'harsh_need_one',
  'need_one_reach',
  'one_reach_oliv',
  'reach_oliv_branch',
  'oliv_branch_matter',
  'branch_matter_cant',
  'matter_cant_help',
  'cant_help_feel',
  'help_feel_biolog',
  'feel_biolog_grandchild',
  'biolog_grandchild_deaf',
  'grandchild_deaf_said',
  'deaf_said_someth',
  'said_someth_insensit',
  'someth_insensit_impli',
  'insensit_impli_distract',
  'impli_distract_bad',
  'distract_bad_exampl',
  'bad_exampl_know',
  'exampl_know_mayb',
  'know_mayb_im',
  'mayb_im_defens',
  'im_defens_child',
  'defens_child_im',
  'child_im_protect',
  'im_protect_think'],
 ['tri',
  'keep',
  'short',
  '-',
  'marri',
  'year',
  'old',
  'woman',
  'plan',
  'kid',
  'recent',
  'issu',
  'cowork',
  'boss',
  'email',
  'heri',
  'ask',
  'one',
  'us',
  'could',
  'cover',
  'even',
  'call',
  '-',
  'job',
  'occasion',
  'even',
  'call',
  'due',
  'collabor',
  'differ',
  'time',
  'zone',
  'cowork',
  'ask',
  'son',
  'soccer',
  'game',
  'said',
  'cant',
  'volleybal',
  'game',
  'said',
  'soccer',
  'game',
  'kid',
  'volleybal',
  'game',
  'said',
  'respect',
  'outside-of-work',
  'commit',
  'less',
  'import',
  'children',
  'take',
  'call',
  'taken',
  'last',
  'two',
  'scof',
  'know',
  'peopl',
  'around',
  'offic',
  'gossip',
  'sinc',
  'say',
  'super',
  'mess',
  'made',
  'miss',
  'kid',
  'soccer',
  'game',
  'think',
  'incred',
  'import',
  'support',
  'work',
  'mother',
  'alway',
  'happi',
  'accommod',
  'schedul',
  'mother',
  'work',
  'caus',
  'signific',
  'inconveni',
  '-',
  'exampl',
  'cowork',
  'leav',
  'earli',
  'pick',
  'kid',
  'compani',
  'great',
  'im',
  'happi',
  'work',
  'project',
  'schedul',
  'around',
  'also',
  'would',
  'taken',
  'call',
  'conflict',
  'long',
  'pattern',
  'take',
  'significantli',
  'even',
  'call',
  'talk',
  'friend',
  'mother',
  'said',
  'done',
  'peopl',
  'kid',
  'realli',
  'empathi',
  'work',
  'parent',
  'understand',
  'hard',
  'said',
  'respect',
  'understand',
  'work',
  'mother',
  'much',
  'stress',
  'live',
  'decid',
  'mother',
  'also',
  'said',
  'respect',
  'empathi',
  'work',
  'mother',
  'also',
  'valu',
  'time',
  'choic',
  'equal',
  'similarli',
  'scof',
  'said',
  'understand',
  'aita',
  'follow-up',
  'thank',
  'everyon',
  'support',
  'id',
  'like',
  'acknowledg',
  'lot',
  'support',
  'come',
  'work',
  'mother',
  'appreci',
  'almost',
  'respect',
  'anyon',
  'bash',
  'mother',
  'gener',
  'use',
  'misogynist',
  'term',
  'need',
  'support',
  'tri_keep',
  'keep_short',
  'short_-',
  '-_marri',
  'marri_year',
  'year_old',
  'old_woman',
  'woman_plan',
  'plan_kid',
  'kid_recent',
  'recent_issu',
  'issu_cowork',
  'cowork_boss',
  'boss_email',
  'email_heri',
  'heri_ask',
  'ask_one',
  'one_us',
  'us_could',
  'could_cover',
  'cover_even',
  'even_call',
  'call_-',
  '-_job',
  'job_occasion',
  'occasion_even',
  'even_call',
  'call_due',
  'due_collabor',
  'collabor_differ',
  'differ_time',
  'time_zone',
  'zone_cowork',
  'cowork_ask',
  'ask_son',
  'son_soccer',
  'soccer_game',
  'game_said',
  'said_cant',
  'cant_volleybal',
  'volleybal_game',
  'game_said',
  'said_soccer',
  'soccer_game',
  'game_kid',
  'kid_volleybal',
  'volleybal_game',
  'game_said',
  'said_respect',
  'respect_outside-of-work',
  'outside-of-work_commit',
  'commit_less',
  'less_import',
  'import_children',
  'children_take',
  'take_call',
  'call_taken',
  'taken_last',
  'last_two',
  'two_scof',
  'scof_know',
  'know_peopl',
  'peopl_around',
  'around_offic',
  'offic_gossip',
  'gossip_sinc',
  'sinc_say',
  'say_super',
  'super_mess',
  'mess_made',
  'made_miss',
  'miss_kid',
  'kid_soccer',
  'soccer_game',
  'game_think',
  'think_incred',
  'incred_import',
  'import_support',
  'support_work',
  'work_mother',
  'mother_alway',
  'alway_happi',
  'happi_accommod',
  'accommod_schedul',
  'schedul_mother',
  'mother_work',
  'work_caus',
  'caus_signific',
  'signific_inconveni',
  'inconveni_-',
  '-_exampl',
  'exampl_cowork',
  'cowork_leav',
  'leav_earli',
  'earli_pick',
  'pick_kid',
  'kid_compani',
  'compani_great',
  'great_im',
  'im_happi',
  'happi_work',
  'work_project',
  'project_schedul',
  'schedul_around',
  'around_also',
  'also_would',
  'would_taken',
  'taken_call',
  'call_conflict',
  'conflict_long',
  'long_pattern',
  'pattern_take',
  'take_significantli',
  'significantli_even',
  'even_call',
  'call_talk',
  'talk_friend',
  'friend_mother',
  'mother_said',
  'said_done',
  'done_peopl',
  'peopl_kid',
  'kid_realli',
  'realli_empathi',
  'empathi_work',
  'work_parent',
  'parent_understand',
  'understand_hard',
  'hard_said',
  'said_respect',
  'respect_understand',
  'understand_work',
  'work_mother',
  'mother_much',
  'much_stress',
  'stress_live',
  'live_decid',
  'decid_mother',
  'mother_also',
  'also_said',
  'said_respect',
  'respect_empathi',
  'empathi_work',
  'work_mother',
  'mother_also',
  'also_valu',
  'valu_time',
  'time_choic',
  'choic_equal',
  'equal_similarli',
  'similarli_scof',
  'scof_said',
  'said_understand',
  'understand_aita',
  'aita_follow-up',
  'follow-up_thank',
  'thank_everyon',
  'everyon_support',
  'support_id',
  'id_like',
  'like_acknowledg',
  'acknowledg_lot',
  'lot_support',
  'support_come',
  'come_work',
  'work_mother',
  'mother_appreci',
  'appreci_almost',
  'almost_respect',
  'respect_anyon',
  'anyon_bash',
  'bash_mother',
  'mother_gener',
  'gener_use',
  'use_misogynist',
  'misogynist_term',
  'term_need',
  'need_support',
  'tri_keep_short',
  'keep_short_-',
  'short_-_marri',
  '-_marri_year',
  'marri_year_old',
  'year_old_woman',
  'old_woman_plan',
  'woman_plan_kid',
  'plan_kid_recent',
  'kid_recent_issu',
  'recent_issu_cowork',
  'issu_cowork_boss',
  'cowork_boss_email',
  'boss_email_heri',
  'email_heri_ask',
  'heri_ask_one',
  'ask_one_us',
  'one_us_could',
  'us_could_cover',
  'could_cover_even',
  'cover_even_call',
  'even_call_-',
  'call_-_job',
  '-_job_occasion',
  'job_occasion_even',
  'occasion_even_call',
  'even_call_due',
  'call_due_collabor',
  'due_collabor_differ',
  'collabor_differ_time',
  'differ_time_zone',
  'time_zone_cowork',
  'zone_cowork_ask',
  'cowork_ask_son',
  'ask_son_soccer',
  'son_soccer_game',
  'soccer_game_said',
  'game_said_cant',
  'said_cant_volleybal',
  'cant_volleybal_game',
  'volleybal_game_said',
  'game_said_soccer',
  'said_soccer_game',
  'soccer_game_kid',
  'game_kid_volleybal',
  'kid_volleybal_game',
  'volleybal_game_said',
  'game_said_respect',
  'said_respect_outside-of-work',
  'respect_outside-of-work_commit',
  'outside-of-work_commit_less',
  'commit_less_import',
  'less_import_children',
  'import_children_take',
  'children_take_call',
  'take_call_taken',
  'call_taken_last',
  'taken_last_two',
  'last_two_scof',
  'two_scof_know',
  'scof_know_peopl',
  'know_peopl_around',
  'peopl_around_offic',
  'around_offic_gossip',
  'offic_gossip_sinc',
  'gossip_sinc_say',
  'sinc_say_super',
  'say_super_mess',
  'super_mess_made',
  'mess_made_miss',
  'made_miss_kid',
  'miss_kid_soccer',
  'kid_soccer_game',
  'soccer_game_think',
  'game_think_incred',
  'think_incred_import',
  'incred_import_support',
  'import_support_work',
  'support_work_mother',
  'work_mother_alway',
  'mother_alway_happi',
  'alway_happi_accommod',
  'happi_accommod_schedul',
  'accommod_schedul_mother',
  'schedul_mother_work',
  'mother_work_caus',
  'work_caus_signific',
  'caus_signific_inconveni',
  'signific_inconveni_-',
  'inconveni_-_exampl',
  '-_exampl_cowork',
  'exampl_cowork_leav',
  'cowork_leav_earli',
  'leav_earli_pick',
  'earli_pick_kid',
  'pick_kid_compani',
  'kid_compani_great',
  'compani_great_im',
  'great_im_happi',
  'im_happi_work',
  'happi_work_project',
  'work_project_schedul',
  'project_schedul_around',
  'schedul_around_also',
  'around_also_would',
  'also_would_taken',
  'would_taken_call',
  'taken_call_conflict',
  'call_conflict_long',
  'conflict_long_pattern',
  'long_pattern_take',
  'pattern_take_significantli',
  'take_significantli_even',
  'significantli_even_call',
  'even_call_talk',
  'call_talk_friend',
  'talk_friend_mother',
  'friend_mother_said',
  'mother_said_done',
  'said_done_peopl',
  'done_peopl_kid',
  'peopl_kid_realli',
  'kid_realli_empathi',
  'realli_empathi_work',
  'empathi_work_parent',
  'work_parent_understand',
  'parent_understand_hard',
  'understand_hard_said',
  'hard_said_respect',
  'said_respect_understand',
  'respect_understand_work',
  'understand_work_mother',
  'work_mother_much',
  'mother_much_stress',
  'much_stress_live',
  'stress_live_decid',
  'live_decid_mother',
  'decid_mother_also',
  'mother_also_said',
  'also_said_respect',
  'said_respect_empathi',
  'respect_empathi_work',
  'empathi_work_mother',
  'work_mother_also',
  'mother_also_valu',
  'also_valu_time',
  'valu_time_choic',
  'time_choic_equal',
  'choic_equal_similarli',
  'equal_similarli_scof',
  'similarli_scof_said',
  'scof_said_understand',
  'said_understand_aita',
  'understand_aita_follow-up',
  'aita_follow-up_thank',
  'follow-up_thank_everyon',
  'thank_everyon_support',
  'everyon_support_id',
  'support_id_like',
  'id_like_acknowledg',
  'like_acknowledg_lot',
  'acknowledg_lot_support',
  'lot_support_come',
  'support_come_work',
  'come_work_mother',
  'work_mother_appreci',
  'mother_appreci_almost',
  'appreci_almost_respect',
  'almost_respect_anyon',
  'respect_anyon_bash',
  'anyon_bash_mother',
  'bash_mother_gener',
  'mother_gener_use',
  'gener_use_misogynist',
  'use_misogynist_term',
  'misogynist_term_need',
  'term_need_support'],
 ['lost',
  'husband',
  'week',
  'ago',
  'cancer',
  'got',
  'treat',
  'came',
  'back',
  'still',
  'devast',
  'im',
  'tri',
  'stay',
  'collect',
  'welcom',
  'support',
  'famili',
  'member',
  'come',
  'offer',
  'help',
  'despit',
  'constant',
  'chang',
  'mood',
  'due',
  'grief',
  'sister',
  'support',
  'one',
  'although',
  'husband',
  'would',
  'act',
  'inappropri',
  'sometim',
  'especi',
  'told',
  'funer',
  'im',
  'burden',
  'free',
  'live',
  'life',
  'given',
  'husband',
  'sole',
  'carer',
  'tri',
  'let',
  'go',
  'comment',
  'think',
  'know',
  'better',
  'sister',
  'famili',
  'came',
  'visit',
  'last',
  'week',
  'cook',
  'dinner',
  'kept',
  'compani',
  'bit',
  'dinner',
  'brother',
  'law',
  'ask',
  'minut',
  'insid',
  'kitchen',
  'start',
  'tell',
  'cowork',
  'singl',
  'went',
  'list',
  'everyth',
  'good',
  'confus',
  'tell',
  'reach',
  'pant',
  'pocket',
  'pull',
  'piec',
  'paper',
  'co',
  'worker',
  'phone',
  'number',
  'tell',
  'give',
  'call',
  'sometim',
  'floor',
  'realli',
  'tell',
  'joke',
  'look',
  'seriou',
  'kept',
  'insist',
  'take',
  'number',
  'lost',
  'start',
  'yell',
  'husband',
  'die',
  'mind',
  'tri',
  'hook',
  'cowork',
  'tri',
  'explain',
  'like',
  'offer',
  'someth',
  'help',
  'know',
  'meant',
  'call',
  'disrespect',
  'yell',
  'get',
  'hous',
  'sister',
  'ran',
  'kitchen',
  'know',
  'go',
  'told',
  'pressur',
  'leav',
  'hous',
  'sister',
  'ask',
  'calm',
  'left',
  'sister',
  'left',
  'quietli',
  'id',
  'calm',
  'sat',
  'famili',
  'said',
  'right',
  'okay',
  'need',
  'keep',
  'mind',
  'sister',
  'help',
  'much',
  'cook',
  'comfort',
  'much',
  'difficult',
  'time',
  'react',
  'like',
  'couldv',
  'littl',
  'consider',
  'grace',
  'said',
  'kick',
  'much',
  'call',
  'later',
  'talk',
  'thing',
  'ruin',
  'relationship',
  'possibl',
  'sister',
  'day',
  'call',
  'sister',
  'visit',
  'call',
  'mean',
  'upset',
  'im',
  'begin',
  'think',
  'theyr',
  'like',
  'hurt',
  'act',
  'ungrat',
  'everyth',
  'theyv',
  'done',
  'lost_husband',
  'husband_week',
  'week_ago',
  'ago_cancer',
  'cancer_got',
  'got_treat',
  'treat_came',
  'came_back',
  'back_still',
  'still_devast',
  'devast_im',
  'im_tri',
  'tri_stay',
  'stay_collect',
  'collect_welcom',
  'welcom_support',
  'support_famili',
  'famili_member',
  'member_come',
  'come_offer',
  'offer_help',
  'help_despit',
  'despit_constant',
  'constant_chang',
  'chang_mood',
  'mood_due',
  'due_grief',
  'grief_sister',
  'sister_support',
  'support_one',
  'one_although',
  'although_husband',
  'husband_would',
  'would_act',
  'act_inappropri',
  'inappropri_sometim',
  'sometim_especi',
  'especi_told',
  'told_funer',
  'funer_im',
  'im_burden',
  'burden_free',
  'free_live',
  'live_life',
  'life_given',
  'given_husband',
  'husband_sole',
  'sole_carer',
  'carer_tri',
  'tri_let',
  'let_go',
  'go_comment',
  'comment_think',
  'think_know',
  'know_better',
  'better_sister',
  'sister_famili',
  'famili_came',
  'came_visit',
  'visit_last',
  'last_week',
  'week_cook',
  'cook_dinner',
  'dinner_kept',
  'kept_compani',
  'compani_bit',
  'bit_dinner',
  'dinner_brother',
  'brother_law',
  'law_ask',
  'ask_minut',
  'minut_insid',
  'insid_kitchen',
  'kitchen_start',
  'start_tell',
  'tell_cowork',
  'cowork_singl',
  'singl_went',
  'went_list',
  'list_everyth',
  'everyth_good',
  'good_confus',
  'confus_tell',
  'tell_reach',
  'reach_pant',
  'pant_pocket',
  'pocket_pull',
  'pull_piec',
  'piec_paper',
  'paper_co',
  'co_worker',
  'worker_phone',
  'phone_number',
  'number_tell',
  'tell_give',
  'give_call',
  'call_sometim',
  'sometim_floor',
  'floor_realli',
  'realli_tell',
  'tell_joke',
  'joke_look',
  'look_seriou',
  'seriou_kept',
  'kept_insist',
  'insist_take',
  'take_number',
  'number_lost',
  'lost_start',
  'start_yell',
  'yell_husband',
  'husband_die',
  'die_mind',
  'mind_tri',
  'tri_hook',
  'hook_cowork',
  'cowork_tri',
  'tri_explain',
  'explain_like',
  'like_offer',
  'offer_someth',
  'someth_help',
  'help_know',
  'know_meant',
  'meant_call',
  'call_disrespect',
  'disrespect_yell',
  'yell_get',
  'get_hous',
  'hous_sister',
  'sister_ran',
  'ran_kitchen',
  'kitchen_know',
  'know_go',
  'go_told',
  'told_pressur',
  'pressur_leav',
  'leav_hous',
  'hous_sister',
  'sister_ask',
  'ask_calm',
  'calm_left',
  'left_sister',
  'sister_left',
  'left_quietli',
  'quietli_id',
  'id_calm',
  'calm_sat',
  'sat_famili',
  'famili_said',
  'said_right',
  'right_okay',
  'okay_need',
  'need_keep',
  'keep_mind',
  'mind_sister',
  'sister_help',
  'help_much',
  'much_cook',
  'cook_comfort',
  'comfort_much',
  'much_difficult',
  'difficult_time',
  'time_react',
  'react_like',
  'like_couldv',
  'couldv_littl',
  'littl_consider',
  'consider_grace',
  'grace_said',
  'said_kick',
  'kick_much',
  'much_call',
  'call_later',
  'later_talk',
  'talk_thing',
  'thing_ruin',
  'ruin_relationship',
  'relationship_possibl',
  'possibl_sister',
  'sister_day',
  'day_call',
  'call_sister',
  'sister_visit',
  'visit_call',
  'call_mean',
  'mean_upset',
  'upset_im',
  'im_begin',
  'begin_think',
  'think_theyr',
  'theyr_like',
  'like_hurt',
  'hurt_act',
  'act_ungrat',
  'ungrat_everyth',
  'everyth_theyv',
  'theyv_done',
  'lost_husband_week',
  'husband_week_ago',
  'week_ago_cancer',
  'ago_cancer_got',
  'cancer_got_treat',
  'got_treat_came',
  'treat_came_back',
  'came_back_still',
  'back_still_devast',
  'still_devast_im',
  'devast_im_tri',
  'im_tri_stay',
  'tri_stay_collect',
  'stay_collect_welcom',
  'collect_welcom_support',
  'welcom_support_famili',
  'support_famili_member',
  'famili_member_come',
  'member_come_offer',
  'come_offer_help',
  'offer_help_despit',
  'help_despit_constant',
  'despit_constant_chang',
  'constant_chang_mood',
  'chang_mood_due',
  'mood_due_grief',
  'due_grief_sister',
  'grief_sister_support',
  'sister_support_one',
  'support_one_although',
  'one_although_husband',
  'although_husband_would',
  'husband_would_act',
  'would_act_inappropri',
  'act_inappropri_sometim',
  'inappropri_sometim_especi',
  'sometim_especi_told',
  'especi_told_funer',
  'told_funer_im',
  'funer_im_burden',
  'im_burden_free',
  'burden_free_live',
  'free_live_life',
  'live_life_given',
  'life_given_husband',
  'given_husband_sole',
  'husband_sole_carer',
  'sole_carer_tri',
  'carer_tri_let',
  'tri_let_go',
  'let_go_comment',
  'go_comment_think',
  'comment_think_know',
  'think_know_better',
  'know_better_sister',
  'better_sister_famili',
  'sister_famili_came',
  'famili_came_visit',
  'came_visit_last',
  'visit_last_week',
  'last_week_cook',
  'week_cook_dinner',
  'cook_dinner_kept',
  'dinner_kept_compani',
  'kept_compani_bit',
  'compani_bit_dinner',
  'bit_dinner_brother',
  'dinner_brother_law',
  'brother_law_ask',
  'law_ask_minut',
  'ask_minut_insid',
  'minut_insid_kitchen',
  'insid_kitchen_start',
  'kitchen_start_tell',
  'start_tell_cowork',
  'tell_cowork_singl',
  'cowork_singl_went',
  'singl_went_list',
  'went_list_everyth',
  'list_everyth_good',
  'everyth_good_confus',
  'good_confus_tell',
  'confus_tell_reach',
  'tell_reach_pant',
  'reach_pant_pocket',
  'pant_pocket_pull',
  'pocket_pull_piec',
  'pull_piec_paper',
  'piec_paper_co',
  'paper_co_worker',
  'co_worker_phone',
  'worker_phone_number',
  'phone_number_tell',
  'number_tell_give',
  'tell_give_call',
  'give_call_sometim',
  'call_sometim_floor',
  'sometim_floor_realli',
  'floor_realli_tell',
  'realli_tell_joke',
  'tell_joke_look',
  'joke_look_seriou',
  'look_seriou_kept',
  'seriou_kept_insist',
  'kept_insist_take',
  'insist_take_number',
  'take_number_lost',
  'number_lost_start',
  'lost_start_yell',
  'start_yell_husband',
  'yell_husband_die',
  'husband_die_mind',
  'die_mind_tri',
  'mind_tri_hook',
  'tri_hook_cowork',
  'hook_cowork_tri',
  'cowork_tri_explain',
  'tri_explain_like',
  'explain_like_offer',
  'like_offer_someth',
  'offer_someth_help',
  'someth_help_know',
  'help_know_meant',
  'know_meant_call',
  'meant_call_disrespect',
  'call_disrespect_yell',
  'disrespect_yell_get',
  'yell_get_hous',
  'get_hous_sister',
  'hous_sister_ran',
  'sister_ran_kitchen',
  'ran_kitchen_know',
  'kitchen_know_go',
  'know_go_told',
  'go_told_pressur',
  'told_pressur_leav',
  'pressur_leav_hous',
  'leav_hous_sister',
  'hous_sister_ask',
  'sister_ask_calm',
  'ask_calm_left',
  'calm_left_sister',
  'left_sister_left',
  'sister_left_quietli',
  'left_quietli_id',
  'quietli_id_calm',
  'id_calm_sat',
  'calm_sat_famili',
  'sat_famili_said',
  'famili_said_right',
  'said_right_okay',
  'right_okay_need',
  'okay_need_keep',
  'need_keep_mind',
  'keep_mind_sister',
  'mind_sister_help',
  'sister_help_much',
  'help_much_cook',
  'much_cook_comfort',
  'cook_comfort_much',
  'comfort_much_difficult',
  'much_difficult_time',
  'difficult_time_react',
  'time_react_like',
  'react_like_couldv',
  'like_couldv_littl',
  'couldv_littl_consider',
  'littl_consider_grace',
  'consider_grace_said',
  'grace_said_kick',
  'said_kick_much',
  'kick_much_call',
  'much_call_later',
  'call_later_talk',
  'later_talk_thing',
  'talk_thing_ruin',
  'thing_ruin_relationship',
  'ruin_relationship_possibl',
  'relationship_possibl_sister',
  'possibl_sister_day',
  'sister_day_call',
  'day_call_sister',
  'call_sister_visit',
  'sister_visit_call',
  'visit_call_mean',
  'call_mean_upset',
  'mean_upset_im',
  'upset_im_begin',
  'im_begin_think',
  'begin_think_theyr',
  'think_theyr_like',
  'theyr_like_hurt',
  'like_hurt_act',
  'hurt_act_ungrat',
  'act_ungrat_everyth',
  'ungrat_everyth_theyv',
  'everyth_theyv_done'],
 ['motorcycl',
  'accid',
  'earlier',
  'week',
  'wife',
  'kid',
  'previou',
  'marriag',
  'year',
  'old',
  'togeth',
  'collaps',
  'lung',
  'chest',
  'tube',
  'put',
  'broken',
  'leg',
  'arm',
  'torn',
  'ligament',
  'knee',
  'ive',
  'hospit',
  'sinc',
  'monday',
  'came',
  'day',
  'accid',
  'stay',
  'back',
  'morn',
  'gone',
  'home',
  'night',
  'yesterday',
  'stay',
  'pm',
  'prepar',
  'hous',
  'hurrican',
  'come',
  'today',
  'weather',
  'great',
  'said',
  'want',
  'leav',
  'kid',
  'told',
  'upset',
  'basic',
  'went',
  'everyth',
  'alon',
  'wouldv',
  'done',
  'anyth',
  'told',
  'much',
  'possibl',
  'fair',
  'dump',
  'kid',
  'daughter',
  'especi',
  'sinc',
  'ill',
  'need',
  'lot',
  'help',
  'get',
  'home',
  'daughter',
  'need',
  'help',
  'kid',
  'work',
  'told',
  'marriag',
  'mean',
  'thick',
  'thin',
  'feel',
  'abandon',
  'im',
  'get',
  'one',
  'word',
  'answer',
  'aita',
  'feel',
  'like',
  'afterthought',
  'motorcycl_accid',
  'accid_earlier',
  'earlier_week',
  'week_wife',
  'wife_kid',
  'kid_previou',
  'previou_marriag',
  'marriag_year',
  'year_old',
  'old_togeth',
  'togeth_collaps',
  'collaps_lung',
  'lung_chest',
  'chest_tube',
  'tube_put',
  'put_broken',
  'broken_leg',
  'leg_arm',
  'arm_torn',
  'torn_ligament',
  'ligament_knee',
  'knee_ive',
  'ive_hospit',
  'hospit_sinc',
  'sinc_monday',
  'monday_came',
  'came_day',
  'day_accid',
  'accid_stay',
  'stay_back',
  'back_morn',
  'morn_gone',
  'gone_home',
  'home_night',
  'night_yesterday',
  'yesterday_stay',
  'stay_pm',
  'pm_prepar',
  'prepar_hous',
  'hous_hurrican',
  'hurrican_come',
  'come_today',
  'today_weather',
  'weather_great',
  'great_said',
  'said_want',
  'want_leav',
  'leav_kid',
  'kid_told',
  'told_upset',
  'upset_basic',
  'basic_went',
  'went_everyth',
  'everyth_alon',
  'alon_wouldv',
  'wouldv_done',
  'done_anyth',
  'anyth_told',
  'told_much',
  'much_possibl',
  'possibl_fair',
  'fair_dump',
  'dump_kid',
  'kid_daughter',
  'daughter_especi',
  'especi_sinc',
  'sinc_ill',
  'ill_need',
  'need_lot',
  'lot_help',
  'help_get',
  'get_home',
  'home_daughter',
  'daughter_need',
  'need_help',
  'help_kid',
  'kid_work',
  'work_told',
  'told_marriag',
  'marriag_mean',
  'mean_thick',
  'thick_thin',
  'thin_feel',
  'feel_abandon',
  'abandon_im',
  'im_get',
  'get_one',
  'one_word',
  'word_answer',
  'answer_aita',
  'aita_feel',
  'feel_like',
  'like_afterthought',
  'motorcycl_accid_earlier',
  'accid_earlier_week',
  'earlier_week_wife',
  'week_wife_kid',
  'wife_kid_previou',
  'kid_previou_marriag',
  'previou_marriag_year',
  'marriag_year_old',
  'year_old_togeth',
  'old_togeth_collaps',
  'togeth_collaps_lung',
  'collaps_lung_chest',
  'lung_chest_tube',
  'chest_tube_put',
  'tube_put_broken',
  'put_broken_leg',
  'broken_leg_arm',
  'leg_arm_torn',
  'arm_torn_ligament',
  'torn_ligament_knee',
  'ligament_knee_ive',
  'knee_ive_hospit',
  'ive_hospit_sinc',
  'hospit_sinc_monday',
  'sinc_monday_came',
  'monday_came_day',
  'came_day_accid',
  'day_accid_stay',
  'accid_stay_back',
  'stay_back_morn',
  'back_morn_gone',
  'morn_gone_home',
  'gone_home_night',
  'home_night_yesterday',
  'night_yesterday_stay',
  'yesterday_stay_pm',
  'stay_pm_prepar',
  'pm_prepar_hous',
  'prepar_hous_hurrican',
  'hous_hurrican_come',
  'hurrican_come_today',
  'come_today_weather',
  'today_weather_great',
  'weather_great_said',
  'great_said_want',
  'said_want_leav',
  'want_leav_kid',
  'leav_kid_told',
  'kid_told_upset',
  'told_upset_basic',
  'upset_basic_went',
  'basic_went_everyth',
  'went_everyth_alon',
  'everyth_alon_wouldv',
  'alon_wouldv_done',
  'wouldv_done_anyth',
  'done_anyth_told',
  'anyth_told_much',
  'told_much_possibl',
  'much_possibl_fair',
  'possibl_fair_dump',
  'fair_dump_kid',
  'dump_kid_daughter',
  'kid_daughter_especi',
  'daughter_especi_sinc',
  'especi_sinc_ill',
  'sinc_ill_need',
  'ill_need_lot',
  'need_lot_help',
  'lot_help_get',
  'help_get_home',
  'get_home_daughter',
  'home_daughter_need',
  'daughter_need_help',
  'need_help_kid',
  'help_kid_work',
  'kid_work_told',
  'work_told_marriag',
  'told_marriag_mean',
  'marriag_mean_thick',
  'mean_thick_thin',
  'thick_thin_feel',
  'thin_feel_abandon',
  'feel_abandon_im',
  'abandon_im_get',
  'im_get_one',
  'get_one_word',
  'one_word_answer',
  'word_answer_aita',
  'answer_aita_feel',
  'aita_feel_like',
  'feel_like_afterthought'],
 ['aunt',
  'year',
  'old',
  'niec',
  'ava',
  'sister',
  'bil',
  'live',
  'close',
  'babysit',
  'sometim',
  'pay',
  'im',
  'happi',
  'anyway',
  'friday',
  'anniversari',
  'ask',
  'week',
  'advanc',
  'could',
  'babysit',
  'provision',
  'agre',
  'noth',
  'els',
  'plan',
  'plan',
  'chang',
  'howev',
  'old',
  'colleg',
  'friend',
  'told',
  'stop',
  'town',
  'friday',
  'seen',
  'nearli',
  'year',
  'realli',
  'want',
  'see',
  'gave',
  'sister',
  'day',
  'notic',
  'could',
  'longer',
  'babysit',
  'friday',
  'make',
  'arrang',
  'respond',
  'text',
  'read',
  'assum',
  'ok',
  'friday',
  'howev',
  'sister',
  'stop',
  'hous',
  'ava',
  'confus',
  'ask',
  'told',
  'leav',
  'ava',
  'origin',
  'plan',
  'said',
  'busi',
  'repli',
  'famili',
  'import',
  'silli',
  'colleg',
  'friend',
  'step',
  'respons',
  'aunt',
  'could',
  'protest',
  'bolt',
  'back',
  'car',
  'bil',
  'drove',
  'leav',
  'ava',
  'tri',
  'call',
  'left',
  'phone',
  'none',
  'call',
  'went',
  'know',
  'leav',
  'ava',
  'alon',
  'also',
  'want',
  'cancel',
  'plansther',
  'famili',
  'member',
  'live',
  'near',
  'me-',
  'howev',
  'friend',
  'jade',
  'live',
  'near',
  'good',
  'kid',
  'babi',
  'sit',
  'side',
  'hustl',
  'call',
  'explain',
  'situat',
  'even',
  'offer',
  'pay',
  'look',
  'ava',
  'understand',
  'said',
  'shed',
  'free',
  'thank',
  'profus',
  'drop',
  'ava',
  'text',
  'sister',
  'say',
  'id',
  'left',
  'ava',
  'jade',
  'collect',
  'hous',
  'relev',
  'stori',
  'neither',
  'sister',
  'ava',
  'know',
  'jade',
  'person',
  'sister',
  'respond',
  'immedi',
  'hour',
  'start',
  'spam',
  'phone',
  'turn',
  'phone',
  'alreadi',
  'point',
  'anyway',
  'pick',
  'ava',
  'later',
  'even',
  'perfectli',
  'happi',
  'howev',
  'sister',
  'bil',
  'furiou',
  'dump',
  'ava',
  'stranger',
  'even',
  'though',
  'know',
  'jade',
  'trust',
  'friend',
  'mine',
  'accus',
  'endang',
  'niec',
  'mani',
  'famili',
  'member',
  'side',
  'ive',
  'get',
  'angri',
  'text',
  'weekend',
  'realli',
  'know',
  'think',
  'felt',
  'like',
  'act',
  'best',
  'could',
  'given',
  'circumst',
  'aita',
  'aunt_year',
  'year_old',
  'old_niec',
  'niec_ava',
  'ava_sister',
  'sister_bil',
  'bil_live',
  'live_close',
  'close_babysit',
  'babysit_sometim',
  'sometim_pay',
  'pay_im',
  'im_happi',
  'happi_anyway',
  'anyway_friday',
  'friday_anniversari',
  'anniversari_ask',
  'ask_week',
  'week_advanc',
  'advanc_could',
  'could_babysit',
  'babysit_provision',
  'provision_agre',
  'agre_noth',
  'noth_els',
  'els_plan',
  'plan_plan',
  'plan_chang',
  'chang_howev',
  'howev_old',
  'old_colleg',
  'colleg_friend',
  'friend_told',
  'told_stop',
  'stop_town',
  'town_friday',
  'friday_seen',
  'seen_nearli',
  'nearli_year',
  'year_realli',
  'realli_want',
  'want_see',
  'see_gave',
  'gave_sister',
  'sister_day',
  'day_notic',
  'notic_could',
  'could_longer',
  'longer_babysit',
  'babysit_friday',
  'friday_make',
  'make_arrang',
  'arrang_respond',
  'respond_text',
  'text_read',
  'read_assum',
  'assum_ok',
  'ok_friday',
  'friday_howev',
  'howev_sister',
  'sister_stop',
  'stop_hous',
  'hous_ava',
  'ava_confus',
  'confus_ask',
  'ask_told',
  'told_leav',
  'leav_ava',
  'ava_origin',
  'origin_plan',
  'plan_said',
  'said_busi',
  'busi_repli',
  'repli_famili',
  'famili_import',
  'import_silli',
  'silli_colleg',
  'colleg_friend',
  'friend_step',
  'step_respons',
  'respons_aunt',
  'aunt_could',
  'could_protest',
  'protest_bolt',
  'bolt_back',
  'back_car',
  'car_bil',
  'bil_drove',
  'drove_leav',
  'leav_ava',
  'ava_tri',
  'tri_call',
  'call_left',
  'left_phone',
  'phone_none',
  'none_call',
  'call_went',
  'went_know',
  'know_leav',
  'leav_ava',
  'ava_alon',
  'alon_also',
  'also_want',
  'want_cancel',
  'cancel_plansther',
  'plansther_famili',
  'famili_member',
  'member_live',
  'live_near',
  'near_me-',
  'me-_howev',
  'howev_friend',
  'friend_jade',
  'jade_live',
  'live_near',
  'near_good',
  'good_kid',
  'kid_babi',
  'babi_sit',
  'sit_side',
  'side_hustl',
  'hustl_call',
  'call_explain',
  'explain_situat',
  'situat_even',
  'even_offer',
  'offer_pay',
  'pay_look',
  'look_ava',
  'ava_understand',
  'understand_said',
  'said_shed',
  'shed_free',
  'free_thank',
  'thank_profus',
  'profus_drop',
  'drop_ava',
  'ava_text',
  'text_sister',
  'sister_say',
  'say_id',
  'id_left',
  'left_ava',
  'ava_jade',
  'jade_collect',
  'collect_hous',
  'hous_relev',
  'relev_stori',
  'stori_neither',
  'neither_sister',
  'sister_ava',
  'ava_know',
  'know_jade',
  'jade_person',
  'person_sister',
  'sister_respond',
  'respond_immedi',
  'immedi_hour',
  'hour_start',
  'start_spam',
  'spam_phone',
  'phone_turn',
  'turn_phone',
  'phone_alreadi',
  'alreadi_point',
  'point_anyway',
  'anyway_pick',
  'pick_ava',
  'ava_later',
  'later_even',
  'even_perfectli',
  'perfectli_happi',
  'happi_howev',
  'howev_sister',
  'sister_bil',
  'bil_furiou',
  'furiou_dump',
  'dump_ava',
  'ava_stranger',
  'stranger_even',
  'even_though',
  'though_know',
  'know_jade',
  'jade_trust',
  'trust_friend',
  'friend_mine',
  'mine_accus',
  'accus_endang',
  'endang_niec',
  'niec_mani',
  'mani_famili',
  'famili_member',
  'member_side',
  'side_ive',
  'ive_get',
  'get_angri',
  'angri_text',
  'text_weekend',
  'weekend_realli',
  'realli_know',
  'know_think',
  'think_felt',
  'felt_like',
  'like_act',
  'act_best',
  'best_could',
  'could_given',
  'given_circumst',
  'circumst_aita',
  'aunt_year_old',
  'year_old_niec',
  'old_niec_ava',
  'niec_ava_sister',
  'ava_sister_bil',
  'sister_bil_live',
  'bil_live_close',
  'live_close_babysit',
  'close_babysit_sometim',
  'babysit_sometim_pay',
  'sometim_pay_im',
  'pay_im_happi',
  'im_happi_anyway',
  'happi_anyway_friday',
  'anyway_friday_anniversari',
  'friday_anniversari_ask',
  'anniversari_ask_week',
  'ask_week_advanc',
  'week_advanc_could',
  'advanc_could_babysit',
  'could_babysit_provision',
  'babysit_provision_agre',
  'provision_agre_noth',
  'agre_noth_els',
  'noth_els_plan',
  'els_plan_plan',
  'plan_plan_chang',
  'plan_chang_howev',
  'chang_howev_old',
  'howev_old_colleg',
  'old_colleg_friend',
  'colleg_friend_told',
  'friend_told_stop',
  'told_stop_town',
  'stop_town_friday',
  'town_friday_seen',
  'friday_seen_nearli',
  'seen_nearli_year',
  'nearli_year_realli',
  'year_realli_want',
  'realli_want_see',
  'want_see_gave',
  'see_gave_sister',
  'gave_sister_day',
  'sister_day_notic',
  'day_notic_could',
  'notic_could_longer',
  'could_longer_babysit',
  'longer_babysit_friday',
  'babysit_friday_make',
  'friday_make_arrang',
  'make_arrang_respond',
  'arrang_respond_text',
  'respond_text_read',
  'text_read_assum',
  'read_assum_ok',
  'assum_ok_friday',
  'ok_friday_howev',
  'friday_howev_sister',
  'howev_sister_stop',
  'sister_stop_hous',
  'stop_hous_ava',
  'hous_ava_confus',
  'ava_confus_ask',
  'confus_ask_told',
  'ask_told_leav',
  'told_leav_ava',
  'leav_ava_origin',
  'ava_origin_plan',
  'origin_plan_said',
  'plan_said_busi',
  'said_busi_repli',
  'busi_repli_famili',
  'repli_famili_import',
  'famili_import_silli',
  'import_silli_colleg',
  'silli_colleg_friend',
  'colleg_friend_step',
  'friend_step_respons',
  'step_respons_aunt',
  'respons_aunt_could',
  'aunt_could_protest',
  'could_protest_bolt',
  'protest_bolt_back',
  'bolt_back_car',
  'back_car_bil',
  'car_bil_drove',
  'bil_drove_leav',
  'drove_leav_ava',
  'leav_ava_tri',
  'ava_tri_call',
  'tri_call_left',
  'call_left_phone',
  'left_phone_none',
  'phone_none_call',
  'none_call_went',
  'call_went_know',
  'went_know_leav',
  'know_leav_ava',
  'leav_ava_alon',
  'ava_alon_also',
  'alon_also_want',
  'also_want_cancel',
  'want_cancel_plansther',
  'cancel_plansther_famili',
  'plansther_famili_member',
  'famili_member_live',
  'member_live_near',
  'live_near_me-',
  'near_me-_howev',
  'me-_howev_friend',
  'howev_friend_jade',
  'friend_jade_live',
  'jade_live_near',
  'live_near_good',
  'near_good_kid',
  'good_kid_babi',
  'kid_babi_sit',
  'babi_sit_side',
  'sit_side_hustl',
  'side_hustl_call',
  'hustl_call_explain',
  'call_explain_situat',
  'explain_situat_even',
  'situat_even_offer',
  'even_offer_pay',
  'offer_pay_look',
  'pay_look_ava',
  'look_ava_understand',
  'ava_understand_said',
  'understand_said_shed',
  'said_shed_free',
  'shed_free_thank',
  'free_thank_profus',
  'thank_profus_drop',
  'profus_drop_ava',
  'drop_ava_text',
  'ava_text_sister',
  'text_sister_say',
  'sister_say_id',
  'say_id_left',
  'id_left_ava',
  'left_ava_jade',
  'ava_jade_collect',
  'jade_collect_hous',
  'collect_hous_relev',
  'hous_relev_stori',
  'relev_stori_neither',
  'stori_neither_sister',
  'neither_sister_ava',
  'sister_ava_know',
  'ava_know_jade',
  'know_jade_person',
  'jade_person_sister',
  'person_sister_respond',
  'sister_respond_immedi',
  'respond_immedi_hour',
  'immedi_hour_start',
  'hour_start_spam',
  'start_spam_phone',
  'spam_phone_turn',
  'phone_turn_phone',
  'turn_phone_alreadi',
  'phone_alreadi_point',
  'alreadi_point_anyway',
  'point_anyway_pick',
  'anyway_pick_ava',
  'pick_ava_later',
  'ava_later_even',
  'later_even_perfectli',
  'even_perfectli_happi',
  'perfectli_happi_howev',
  'happi_howev_sister',
  'howev_sister_bil',
  'sister_bil_furiou',
  'bil_furiou_dump',
  'furiou_dump_ava',
  'dump_ava_stranger',
  'ava_stranger_even',
  'stranger_even_though',
  'even_though_know',
  'though_know_jade',
  'know_jade_trust',
  'jade_trust_friend',
  'trust_friend_mine',
  'friend_mine_accus',
  'mine_accus_endang',
  'accus_endang_niec',
  'endang_niec_mani',
  'niec_mani_famili',
  'mani_famili_member',
  'famili_member_side',
  'member_side_ive',
  'side_ive_get',
  'ive_get_angri',
  'get_angri_text',
  'angri_text_weekend',
  'text_weekend_realli',
  'weekend_realli_know',
  'realli_know_think',
  'know_think_felt',
  'think_felt_like',
  'felt_like_act',
  'like_act_best',
  'act_best_could',
  'best_could_given',
  'could_given_circumst',
  'given_circumst_aita'],
 ['oldest',
  'famili',
  'two',
  'sibl',
  'sister',
  'die',
  'month',
  'old',
  'sid',
  'death',
  'time',
  'brother',
  'young',
  'age',
  'brother',
  'show',
  'concern',
  'behavior',
  'year',
  'got',
  'wors',
  'destruct',
  'angri',
  'local',
  'children',
  'hospit',
  'psych',
  'eval',
  'behavior',
  'assess',
  'sinc',
  'year',
  'old',
  'polic',
  'call',
  'hous',
  'mani',
  'time',
  'help',
  'get',
  'control',
  'never',
  'formal',
  'diagnos',
  'medic',
  'time',
  'sedat',
  'tri',
  'curb',
  'outburst',
  'life',
  'hold',
  'allow',
  'friend',
  'allow',
  'attend',
  'birthday',
  'parti',
  'old',
  'enough',
  'walk',
  'money',
  'tight',
  'meant',
  'sacrif',
  'lot',
  'last',
  'celebr',
  'birthday',
  'famili',
  'hit',
  'noth',
  'consid',
  'old',
  'enough',
  'someth',
  'friend',
  'without',
  'adult',
  'supervis',
  'even',
  'ask',
  'gift',
  'anyth',
  'broken',
  'brother',
  'nightmar',
  'parent',
  'would',
  'often',
  'leav',
  'charg',
  'could',
  'get',
  'break',
  'life',
  'hell',
  'around',
  'consid',
  'old',
  'enough',
  'watch',
  'mom',
  'got',
  'groceri',
  'even',
  'though',
  'old',
  'enough',
  'go',
  'hang',
  'friend',
  'hour',
  'night',
  'time',
  'even',
  'overnight',
  'prepar',
  'hous',
  'destroy',
  'everi',
  'time',
  'parent',
  'would',
  'express',
  'disappoint',
  'handl',
  'thing',
  'best',
  'period',
  'time',
  'place',
  'residenti',
  'treatment',
  'whole',
  'month',
  'far',
  'best',
  'month',
  'life',
  'year',
  'point',
  'hard',
  'return',
  'better',
  'left',
  'felt',
  'like',
  'life',
  'end',
  'move',
  'soon',
  'could',
  'distanc',
  'famili',
  'parent',
  'tri',
  'keep',
  'touch',
  'bitter',
  'toward',
  'childhood',
  'awar',
  'made',
  'excus',
  'made',
  'certain',
  'decis',
  'need',
  'help',
  'brother',
  'gotten',
  'wors',
  'kind',
  'break',
  'month',
  'want',
  'babysit',
  'hour',
  'night',
  'get',
  'break',
  'told',
  'told',
  'need',
  'help',
  'told',
  'would',
  'never',
  'help',
  'told',
  'unfair',
  'ask',
  'could',
  'aita',
  'oldest_famili',
  'famili_two',
  'two_sibl',
  'sibl_sister',
  'sister_die',
  'die_month',
  'month_old',
  'old_sid',
  'sid_death',
  'death_time',
  'time_brother',
  'brother_young',
  'young_age',
  'age_brother',
  'brother_show',
  'show_concern',
  'concern_behavior',
  'behavior_year',
  'year_got',
  'got_wors',
  'wors_destruct',
  'destruct_angri',
  'angri_local',
  'local_children',
  'children_hospit',
  'hospit_psych',
  'psych_eval',
  'eval_behavior',
  'behavior_assess',
  'assess_sinc',
  'sinc_year',
  'year_old',
  'old_polic',
  'polic_call',
  'call_hous',
  'hous_mani',
  'mani_time',
  'time_help',
  'help_get',
  'get_control',
  'control_never',
  'never_formal',
  'formal_diagnos',
  'diagnos_medic',
  'medic_time',
  'time_sedat',
  'sedat_tri',
  'tri_curb',
  'curb_outburst',
  'outburst_life',
  'life_hold',
  'hold_allow',
  'allow_friend',
  'friend_allow',
  'allow_attend',
  'attend_birthday',
  'birthday_parti',
  'parti_old',
  'old_enough',
  'enough_walk',
  'walk_money',
  'money_tight',
  'tight_meant',
  'meant_sacrif',
  'sacrif_lot',
  'lot_last',
  'last_celebr',
  'celebr_birthday',
  'birthday_famili',
  'famili_hit',
  'hit_noth',
  'noth_consid',
  'consid_old',
  'old_enough',
  'enough_someth',
  'someth_friend',
  'friend_without',
  'without_adult',
  'adult_supervis',
  'supervis_even',
  'even_ask',
  'ask_gift',
  'gift_anyth',
  'anyth_broken',
  'broken_brother',
  'brother_nightmar',
  'nightmar_parent',
  'parent_would',
  'would_often',
  'often_leav',
  'leav_charg',
  'charg_could',
  'could_get',
  'get_break',
  'break_life',
  'life_hell',
  'hell_around',
  'around_consid',
  'consid_old',
  'old_enough',
  'enough_watch',
  'watch_mom',
  'mom_got',
  'got_groceri',
  'groceri_even',
  'even_though',
  'though_old',
  'old_enough',
  'enough_go',
  'go_hang',
  'hang_friend',
  'friend_hour',
  'hour_night',
  'night_time',
  'time_even',
  'even_overnight',
  'overnight_prepar',
  'prepar_hous',
  'hous_destroy',
  'destroy_everi',
  'everi_time',
  'time_parent',
  'parent_would',
  'would_express',
  'express_disappoint',
  'disappoint_handl',
  'handl_thing',
  'thing_best',
  'best_period',
  'period_time',
  'time_place',
  'place_residenti',
  'residenti_treatment',
  'treatment_whole',
  'whole_month',
  'month_far',
  'far_best',
  'best_month',
  'month_life',
  'life_year',
  'year_point',
  'point_hard',
  'hard_return',
  'return_better',
  'better_left',
  'left_felt',
  'felt_like',
  'like_life',
  'life_end',
  'end_move',
  'move_soon',
  'soon_could',
  'could_distanc',
  'distanc_famili',
  'famili_parent',
  'parent_tri',
  'tri_keep',
  'keep_touch',
  'touch_bitter',
  'bitter_toward',
  'toward_childhood',
  'childhood_awar',
  'awar_made',
  'made_excus',
  'excus_made',
  'made_certain',
  'certain_decis',
  'decis_need',
  'need_help',
  'help_brother',
  'brother_gotten',
  'gotten_wors',
  'wors_kind',
  'kind_break',
  'break_month',
  'month_want',
  'want_babysit',
  'babysit_hour',
  'hour_night',
  'night_get',
  'get_break',
  'break_told',
  'told_told',
  'told_need',
  'need_help',
  'help_told',
  'told_would',
  'would_never',
  'never_help',
  'help_told',
  'told_unfair',
  'unfair_ask',
  'ask_could',
  'could_aita',
  'oldest_famili_two',
  'famili_two_sibl',
  'two_sibl_sister',
  'sibl_sister_die',
  'sister_die_month',
  'die_month_old',
  'month_old_sid',
  'old_sid_death',
  'sid_death_time',
  'death_time_brother',
  'time_brother_young',
  'brother_young_age',
  'young_age_brother',
  'age_brother_show',
  'brother_show_concern',
  'show_concern_behavior',
  'concern_behavior_year',
  'behavior_year_got',
  'year_got_wors',
  'got_wors_destruct',
  'wors_destruct_angri',
  'destruct_angri_local',
  'angri_local_children',
  'local_children_hospit',
  'children_hospit_psych',
  'hospit_psych_eval',
  'psych_eval_behavior',
  'eval_behavior_assess',
  'behavior_assess_sinc',
  'assess_sinc_year',
  'sinc_year_old',
  'year_old_polic',
  'old_polic_call',
  'polic_call_hous',
  'call_hous_mani',
  'hous_mani_time',
  'mani_time_help',
  'time_help_get',
  'help_get_control',
  'get_control_never',
  'control_never_formal',
  'never_formal_diagnos',
  'formal_diagnos_medic',
  'diagnos_medic_time',
  'medic_time_sedat',
  'time_sedat_tri',
  'sedat_tri_curb',
  'tri_curb_outburst',
  'curb_outburst_life',
  'outburst_life_hold',
  'life_hold_allow',
  'hold_allow_friend',
  'allow_friend_allow',
  'friend_allow_attend',
  'allow_attend_birthday',
  'attend_birthday_parti',
  'birthday_parti_old',
  'parti_old_enough',
  'old_enough_walk',
  'enough_walk_money',
  'walk_money_tight',
  'money_tight_meant',
  'tight_meant_sacrif',
  'meant_sacrif_lot',
  'sacrif_lot_last',
  'lot_last_celebr',
  'last_celebr_birthday',
  'celebr_birthday_famili',
  'birthday_famili_hit',
  'famili_hit_noth',
  'hit_noth_consid',
  'noth_consid_old',
  'consid_old_enough',
  'old_enough_someth',
  'enough_someth_friend',
  'someth_friend_without',
  'friend_without_adult',
  'without_adult_supervis',
  'adult_supervis_even',
  'supervis_even_ask',
  'even_ask_gift',
  'ask_gift_anyth',
  'gift_anyth_broken',
  'anyth_broken_brother',
  'broken_brother_nightmar',
  'brother_nightmar_parent',
  'nightmar_parent_would',
  'parent_would_often',
  'would_often_leav',
  'often_leav_charg',
  'leav_charg_could',
  'charg_could_get',
  'could_get_break',
  'get_break_life',
  'break_life_hell',
  'life_hell_around',
  'hell_around_consid',
  'around_consid_old',
  'consid_old_enough',
  'old_enough_watch',
  'enough_watch_mom',
  'watch_mom_got',
  'mom_got_groceri',
  'got_groceri_even',
  'groceri_even_though',
  'even_though_old',
  'though_old_enough',
  'old_enough_go',
  'enough_go_hang',
  'go_hang_friend',
  'hang_friend_hour',
  'friend_hour_night',
  'hour_night_time',
  'night_time_even',
  'time_even_overnight',
  'even_overnight_prepar',
  'overnight_prepar_hous',
  'prepar_hous_destroy',
  'hous_destroy_everi',
  'destroy_everi_time',
  'everi_time_parent',
  'time_parent_would',
  'parent_would_express',
  'would_express_disappoint',
  'express_disappoint_handl',
  'disappoint_handl_thing',
  'handl_thing_best',
  'thing_best_period',
  'best_period_time',
  'period_time_place',
  'time_place_residenti',
  'place_residenti_treatment',
  'residenti_treatment_whole',
  'treatment_whole_month',
  'whole_month_far',
  'month_far_best',
  'far_best_month',
  'best_month_life',
  'month_life_year',
  'life_year_point',
  'year_point_hard',
  'point_hard_return',
  'hard_return_better',
  'return_better_left',
  'better_left_felt',
  'left_felt_like',
  'felt_like_life',
  'like_life_end',
  'life_end_move',
  'end_move_soon',
  'move_soon_could',
  'soon_could_distanc',
  'could_distanc_famili',
  'distanc_famili_parent',
  'famili_parent_tri',
  'parent_tri_keep',
  'tri_keep_touch',
  'keep_touch_bitter',
  'touch_bitter_toward',
  'bitter_toward_childhood',
  'toward_childhood_awar',
  'childhood_awar_made',
  'awar_made_excus',
  'made_excus_made',
  'excus_made_certain',
  'made_certain_decis',
  'certain_decis_need',
  'decis_need_help',
  'need_help_brother',
  'help_brother_gotten',
  'brother_gotten_wors',
  'gotten_wors_kind',
  'wors_kind_break',
  'kind_break_month',
  'break_month_want',
  'month_want_babysit',
  'want_babysit_hour',
  'babysit_hour_night',
  'hour_night_get',
  'night_get_break',
  'get_break_told',
  'break_told_told',
  'told_told_need',
  'told_need_help',
  'need_help_told',
  'help_told_would',
  'told_would_never',
  'would_never_help',
  'never_help_told',
  'help_told_unfair',
  'told_unfair_ask',
  'unfair_ask_could',
  'ask_could_aita'],
 ['labor',
  'hour',
  'alot',
  'pain',
  'take',
  'epidur',
  'husband',
  'constantli',
  'phone',
  'ether',
  'play',
  'game',
  'talk',
  'bro',
  'realli',
  'loud',
  'ask',
  'pleas',
  'hang',
  'hed',
  'hang',
  'phone',
  'like',
  'min',
  'later',
  'call',
  'back',
  'realli',
  'want',
  'talk',
  'friend',
  'went',
  'boy',
  'trip',
  'without',
  'ask',
  'stay',
  'back',
  'could',
  'went',
  'labor',
  'call',
  'tell',
  'trip',
  'go',
  'apolog',
  'blame',
  'nag',
  'realli',
  'annoy',
  'told',
  'want',
  'talk',
  'friend',
  'could',
  'elsewher',
  'pain',
  'peac',
  'like',
  'alright',
  'fine',
  'babi',
  'ill',
  'call',
  'back',
  'later',
  'min',
  'peac',
  'mom',
  'facetim',
  'proceed',
  'put',
  'video',
  'callhi',
  'mom',
  'make',
  'comment',
  'rememb',
  'labor',
  'still',
  'even',
  'claim',
  'look',
  'good',
  'doctor',
  'even',
  'flirt',
  'hold',
  'back',
  'everyth',
  'insid',
  'say',
  'someth',
  'want',
  'disrespect',
  'mother',
  'law',
  'time',
  'sometim',
  'make',
  'stupidest',
  'comment',
  'worst',
  'time',
  'moment',
  'could',
  'stand',
  'talk',
  'nurs',
  'end',
  'come',
  'could',
  'tell',
  'upset',
  'ask',
  'everyth',
  'alright',
  'tell',
  'realli',
  'want',
  'alon',
  'end',
  'kick',
  'husband',
  'turn',
  'end',
  'miss',
  'birth',
  'first',
  'born',
  'daughter',
  'left',
  'hospit',
  'piss',
  'got',
  'nurs',
  'kick',
  'room',
  'refus',
  'come',
  'see',
  'daughter',
  'afterward',
  'angri',
  'kick',
  'mother',
  'law',
  'visit',
  'hospit',
  'stop',
  'take',
  'im',
  'bad',
  'wife',
  'remov',
  'husband',
  'room',
  'got',
  'home',
  'kept',
  'bring',
  'ruin',
  'moment',
  'bond',
  'daughter',
  'could',
  'never',
  'forgiv',
  'asshol',
  'kick',
  'husband',
  'deliveri',
  'room',
  'make',
  'phone',
  'call',
  'labor_hour',
  'hour_alot',
  'alot_pain',
  'pain_take',
  'take_epidur',
  'epidur_husband',
  'husband_constantli',
  'constantli_phone',
  'phone_ether',
  'ether_play',
  'play_game',
  'game_talk',
  'talk_bro',
  'bro_realli',
  'realli_loud',
  'loud_ask',
  'ask_pleas',
  'pleas_hang',
  'hang_hed',
  'hed_hang',
  'hang_phone',
  'phone_like',
  'like_min',
  'min_later',
  'later_call',
  'call_back',
  'back_realli',
  'realli_want',
  'want_talk',
  'talk_friend',
  'friend_went',
  'went_boy',
  'boy_trip',
  'trip_without',
  'without_ask',
  'ask_stay',
  'stay_back',
  'back_could',
  'could_went',
  'went_labor',
  'labor_call',
  'call_tell',
  'tell_trip',
  'trip_go',
  'go_apolog',
  'apolog_blame',
  'blame_nag',
  'nag_realli',
  'realli_annoy',
  'annoy_told',
  'told_want',
  'want_talk',
  'talk_friend',
  'friend_could',
  'could_elsewher',
  'elsewher_pain',
  'pain_peac',
  'peac_like',
  'like_alright',
  'alright_fine',
  'fine_babi',
  'babi_ill',
  'ill_call',
  'call_back',
  'back_later',
  'later_min',
  'min_peac',
  'peac_mom',
  'mom_facetim',
  'facetim_proceed',
  'proceed_put',
  'put_video',
  'video_callhi',
  'callhi_mom',
  'mom_make',
  'make_comment',
  'comment_rememb',
  'rememb_labor',
  'labor_still',
  'still_even',
  'even_claim',
  'claim_look',
  'look_good',
  'good_doctor',
  'doctor_even',
  'even_flirt',
  'flirt_hold',
  'hold_back',
  'back_everyth',
  'everyth_insid',
  'insid_say',
  'say_someth',
  'someth_want',
  'want_disrespect',
  'disrespect_mother',
  'mother_law',
  'law_time',
  'time_sometim',
  'sometim_make',
  'make_stupidest',
  'stupidest_comment',
  'comment_worst',
  'worst_time',
  'time_moment',
  'moment_could',
  'could_stand',
  'stand_talk',
  'talk_nurs',
  'nurs_end',
  'end_come',
  'come_could',
  'could_tell',
  'tell_upset',
  'upset_ask',
  'ask_everyth',
  'everyth_alright',
  'alright_tell',
  'tell_realli',
  'realli_want',
  'want_alon',
  'alon_end',
  'end_kick',
  'kick_husband',
  'husband_turn',
  'turn_end',
  'end_miss',
  'miss_birth',
  'birth_first',
  'first_born',
  'born_daughter',
  'daughter_left',
  'left_hospit',
  'hospit_piss',
  'piss_got',
  'got_nurs',
  'nurs_kick',
  'kick_room',
  'room_refus',
  'refus_come',
  'come_see',
  'see_daughter',
  'daughter_afterward',
  'afterward_angri',
  'angri_kick',
  'kick_mother',
  'mother_law',
  'law_visit',
  'visit_hospit',
  'hospit_stop',
  'stop_take',
  'take_im',
  'im_bad',
  'bad_wife',
  'wife_remov',
  'remov_husband',
  'husband_room',
  'room_got',
  'got_home',
  'home_kept',
  'kept_bring',
  'bring_ruin',
  'ruin_moment',
  'moment_bond',
  'bond_daughter',
  'daughter_could',
  'could_never',
  'never_forgiv',
  'forgiv_asshol',
  'asshol_kick',
  'kick_husband',
  'husband_deliveri',
  'deliveri_room',
  'room_make',
  'make_phone',
  'phone_call',
  'labor_hour_alot',
  'hour_alot_pain',
  'alot_pain_take',
  'pain_take_epidur',
  'take_epidur_husband',
  'epidur_husband_constantli',
  'husband_constantli_phone',
  'constantli_phone_ether',
  'phone_ether_play',
  'ether_play_game',
  'play_game_talk',
  'game_talk_bro',
  'talk_bro_realli',
  'bro_realli_loud',
  'realli_loud_ask',
  'loud_ask_pleas',
  'ask_pleas_hang',
  'pleas_hang_hed',
  'hang_hed_hang',
  'hed_hang_phone',
  'hang_phone_like',
  'phone_like_min',
  'like_min_later',
  'min_later_call',
  'later_call_back',
  'call_back_realli',
  'back_realli_want',
  'realli_want_talk',
  'want_talk_friend',
  'talk_friend_went',
  'friend_went_boy',
  'went_boy_trip',
  'boy_trip_without',
  'trip_without_ask',
  'without_ask_stay',
  'ask_stay_back',
  'stay_back_could',
  'back_could_went',
  'could_went_labor',
  'went_labor_call',
  'labor_call_tell',
  'call_tell_trip',
  'tell_trip_go',
  'trip_go_apolog',
  'go_apolog_blame',
  'apolog_blame_nag',
  'blame_nag_realli',
  'nag_realli_annoy',
  'realli_annoy_told',
  'annoy_told_want',
  'told_want_talk',
  'want_talk_friend',
  'talk_friend_could',
  'friend_could_elsewher',
  'could_elsewher_pain',
  'elsewher_pain_peac',
  'pain_peac_like',
  'peac_like_alright',
  'like_alright_fine',
  'alright_fine_babi',
  'fine_babi_ill',
  'babi_ill_call',
  'ill_call_back',
  'call_back_later',
  'back_later_min',
  'later_min_peac',
  'min_peac_mom',
  'peac_mom_facetim',
  'mom_facetim_proceed',
  'facetim_proceed_put',
  'proceed_put_video',
  'put_video_callhi',
  'video_callhi_mom',
  'callhi_mom_make',
  'mom_make_comment',
  'make_comment_rememb',
  'comment_rememb_labor',
  'rememb_labor_still',
  'labor_still_even',
  'still_even_claim',
  'even_claim_look',
  'claim_look_good',
  'look_good_doctor',
  'good_doctor_even',
  'doctor_even_flirt',
  'even_flirt_hold',
  'flirt_hold_back',
  'hold_back_everyth',
  'back_everyth_insid',
  'everyth_insid_say',
  'insid_say_someth',
  'say_someth_want',
  'someth_want_disrespect',
  'want_disrespect_mother',
  'disrespect_mother_law',
  'mother_law_time',
  'law_time_sometim',
  'time_sometim_make',
  'sometim_make_stupidest',
  'make_stupidest_comment',
  'stupidest_comment_worst',
  'comment_worst_time',
  'worst_time_moment',
  'time_moment_could',
  'moment_could_stand',
  'could_stand_talk',
  'stand_talk_nurs',
  'talk_nurs_end',
  'nurs_end_come',
  'end_come_could',
  'come_could_tell',
  'could_tell_upset',
  'tell_upset_ask',
  'upset_ask_everyth',
  'ask_everyth_alright',
  'everyth_alright_tell',
  'alright_tell_realli',
  'tell_realli_want',
  'realli_want_alon',
  'want_alon_end',
  'alon_end_kick',
  'end_kick_husband',
  'kick_husband_turn',
  'husband_turn_end',
  'turn_end_miss',
  'end_miss_birth',
  'miss_birth_first',
  'birth_first_born',
  'first_born_daughter',
  'born_daughter_left',
  'daughter_left_hospit',
  'left_hospit_piss',
  'hospit_piss_got',
  'piss_got_nurs',
  'got_nurs_kick',
  'nurs_kick_room',
  'kick_room_refus',
  'room_refus_come',
  'refus_come_see',
  'come_see_daughter',
  'see_daughter_afterward',
  'daughter_afterward_angri',
  'afterward_angri_kick',
  'angri_kick_mother',
  'kick_mother_law',
  'mother_law_visit',
  'law_visit_hospit',
  'visit_hospit_stop',
  'hospit_stop_take',
  'stop_take_im',
  'take_im_bad',
  'im_bad_wife',
  'bad_wife_remov',
  'wife_remov_husband',
  'remov_husband_room',
  'husband_room_got',
  'room_got_home',
  'got_home_kept',
  'home_kept_bring',
  'kept_bring_ruin',
  'bring_ruin_moment',
  'ruin_moment_bond',
  'moment_bond_daughter',
  'bond_daughter_could',
  'daughter_could_never',
  'could_never_forgiv',
  'never_forgiv_asshol',
  'forgiv_asshol_kick',
  'asshol_kick_husband',
  'kick_husband_deliveri',
  'husband_deliveri_room',
  'deliveri_room_make',
  'room_make_phone',
  'make_phone_call'],
 ['known',
  'sil',
  'three',
  'year',
  'type',
  'person',
  'alway',
  'need',
  'right',
  'need',
  'charg',
  'everyth',
  'demand',
  'well',
  'sil',
  'famili',
  'member',
  'disrespect',
  'rude',
  'clean',
  'expect',
  'everyon',
  'act',
  'like',
  'maid',
  'servant',
  'around',
  'think',
  'highli',
  'never',
  'wrong',
  'think',
  'wrong',
  'sil',
  'famili',
  'realli',
  'punish',
  'kid',
  'like',
  'consequ',
  'even',
  'like',
  'gentl',
  'parent',
  'type',
  'either',
  'sil',
  'sister',
  'son',
  'extrem',
  'chaotic',
  'throw',
  'tantrum',
  'get',
  'someth',
  'center',
  'attent',
  'theyr',
  'birthday',
  'need',
  'gift',
  'open',
  'gift',
  'need',
  'blow',
  'candl',
  'frustrat',
  'im',
  'usual',
  'around',
  'famili',
  'gather',
  'stuff',
  'sil',
  'sinc',
  'friend',
  'cancel',
  'help',
  'make',
  'invit',
  'saw',
  'one',
  'name',
  'sil',
  'nephew',
  'ask',
  'want',
  'go',
  'said',
  'yeah',
  'ask',
  'told',
  'talk',
  'tantrum',
  'hell',
  'probabl',
  'throw',
  'fit',
  'recept',
  'stuff',
  'got',
  'mad',
  'said',
  'know',
  'talk',
  'told',
  'famili',
  'sister',
  'caus',
  'sister',
  'write',
  'messag',
  'say',
  'wrong',
  'stuff',
  'like',
  'well',
  'day',
  'wed',
  'come',
  'everyon',
  'come',
  'happi',
  'except',
  'nephew',
  'cri',
  'throw',
  'fit',
  'sil',
  'came',
  'liter',
  'start',
  'scream',
  'poor',
  'pastor',
  'stop',
  'wait',
  'parent',
  'leav',
  'parti',
  'back',
  'cri',
  'cut',
  'cake',
  'scream',
  'extrem',
  'loud',
  'push',
  'sil',
  'hold',
  'glass',
  'wine',
  'spill',
  'start',
  'cri',
  'turn',
  'around',
  'leav',
  'look',
  'said',
  'told',
  'start',
  'cri',
  'even',
  'got',
  'home',
  'mom',
  'call',
  'extrem',
  'immatur',
  'want',
  'apolog',
  'aita',
  'edit',
  'went',
  'facebook',
  'saw',
  'long',
  'post',
  'sil',
  'sister',
  'basic',
  'say',
  'sil',
  'knew',
  'nephew',
  'want',
  'throw',
  'tantrum',
  'never',
  'invit',
  'also',
  'call',
  'sil',
  'selfish',
  'say',
  'offer',
  'nephew',
  'cut',
  'cake',
  'sil',
  'famili',
  'also',
  'agre',
  'call',
  'sil',
  'selfish',
  'went',
  'sil',
  'hous',
  'bottl',
  'wine',
  'told',
  'right',
  'never',
  'invit',
  'still',
  'apolog',
  'though',
  'kick',
  'ive',
  'offer',
  'pay',
  'get',
  'wed',
  'dress',
  'clean',
  'said',
  'fine',
  'known_sil',
  'sil_three',
  'three_year',
  'year_type',
  'type_person',
  'person_alway',
  'alway_need',
  'need_right',
  'right_need',
  'need_charg',
  'charg_everyth',
  'everyth_demand',
  'demand_well',
  'well_sil',
  'sil_famili',
  'famili_member',
  'member_disrespect',
  'disrespect_rude',
  'rude_clean',
  'clean_expect',
  'expect_everyon',
  'everyon_act',
  'act_like',
  'like_maid',
  'maid_servant',
  'servant_around',
  'around_think',
  'think_highli',
  'highli_never',
  'never_wrong',
  'wrong_think',
  'think_wrong',
  'wrong_sil',
  'sil_famili',
  'famili_realli',
  'realli_punish',
  'punish_kid',
  'kid_like',
  'like_consequ',
  'consequ_even',
  'even_like',
  'like_gentl',
  'gentl_parent',
  'parent_type',
  'type_either',
  'either_sil',
  'sil_sister',
  'sister_son',
  'son_extrem',
  'extrem_chaotic',
  'chaotic_throw',
  'throw_tantrum',
  'tantrum_get',
  'get_someth',
  'someth_center',
  'center_attent',
  'attent_theyr',
  'theyr_birthday',
  'birthday_need',
  'need_gift',
  'gift_open',
  'open_gift',
  'gift_need',
  'need_blow',
  'blow_candl',
  'candl_frustrat',
  'frustrat_im',
  'im_usual',
  'usual_around',
  'around_famili',
  'famili_gather',
  'gather_stuff',
  'stuff_sil',
  'sil_sinc',
  'sinc_friend',
  'friend_cancel',
  'cancel_help',
  'help_make',
  'make_invit',
  'invit_saw',
  'saw_one',
  'one_name',
  'name_sil',
  'sil_nephew',
  'nephew_ask',
  'ask_want',
  'want_go',
  'go_said',
  'said_yeah',
  'yeah_ask',
  'ask_told',
  'told_talk',
  'talk_tantrum',
  'tantrum_hell',
  'hell_probabl',
  'probabl_throw',
  'throw_fit',
  'fit_recept',
  'recept_stuff',
  'stuff_got',
  'got_mad',
  'mad_said',
  'said_know',
  'know_talk',
  'talk_told',
  'told_famili',
  'famili_sister',
  'sister_caus',
  'caus_sister',
  'sister_write',
  'write_messag',
  'messag_say',
  'say_wrong',
  'wrong_stuff',
  'stuff_like',
  'like_well',
  'well_day',
  'day_wed',
  'wed_come',
  'come_everyon',
  'everyon_come',
  'come_happi',
  'happi_except',
  'except_nephew',
  'nephew_cri',
  'cri_throw',
  'throw_fit',
  'fit_sil',
  'sil_came',
  'came_liter',
  'liter_start',
  'start_scream',
  'scream_poor',
  'poor_pastor',
  'pastor_stop',
  'stop_wait',
  'wait_parent',
  'parent_leav',
  'leav_parti',
  'parti_back',
  'back_cri',
  'cri_cut',
  'cut_cake',
  'cake_scream',
  'scream_extrem',
  'extrem_loud',
  'loud_push',
  'push_sil',
  'sil_hold',
  'hold_glass',
  'glass_wine',
  'wine_spill',
  'spill_start',
  'start_cri',
  'cri_turn',
  'turn_around',
  'around_leav',
  'leav_look',
  'look_said',
  'said_told',
  'told_start',
  'start_cri',
  'cri_even',
  'even_got',
  'got_home',
  'home_mom',
  'mom_call',
  'call_extrem',
  'extrem_immatur',
  'immatur_want',
  'want_apolog',
  'apolog_aita',
  'aita_edit',
  'edit_went',
  'went_facebook',
  'facebook_saw',
  'saw_long',
  'long_post',
  'post_sil',
  'sil_sister',
  'sister_basic',
  'basic_say',
  'say_sil',
  'sil_knew',
  'knew_nephew',
  'nephew_want',
  'want_throw',
  'throw_tantrum',
  'tantrum_never',
  'never_invit',
  'invit_also',
  'also_call',
  'call_sil',
  'sil_selfish',
  'selfish_say',
  'say_offer',
  'offer_nephew',
  'nephew_cut',
  'cut_cake',
  'cake_sil',
  'sil_famili',
  'famili_also',
  'also_agre',
  'agre_call',
  'call_sil',
  'sil_selfish',
  'selfish_went',
  'went_sil',
  'sil_hous',
  'hous_bottl',
  'bottl_wine',
  'wine_told',
  'told_right',
  'right_never',
  'never_invit',
  'invit_still',
  'still_apolog',
  'apolog_though',
  'though_kick',
  'kick_ive',
  'ive_offer',
  'offer_pay',
  'pay_get',
  'get_wed',
  'wed_dress',
  'dress_clean',
  'clean_said',
  'said_fine',
  'known_sil_three',
  'sil_three_year',
  'three_year_type',
  'year_type_person',
  'type_person_alway',
  'person_alway_need',
  'alway_need_right',
  'need_right_need',
  'right_need_charg',
  'need_charg_everyth',
  'charg_everyth_demand',
  'everyth_demand_well',
  'demand_well_sil',
  'well_sil_famili',
  'sil_famili_member',
  'famili_member_disrespect',
  'member_disrespect_rude',
  'disrespect_rude_clean',
  'rude_clean_expect',
  'clean_expect_everyon',
  'expect_everyon_act',
  'everyon_act_like',
  'act_like_maid',
  'like_maid_servant',
  'maid_servant_around',
  'servant_around_think',
  'around_think_highli',
  'think_highli_never',
  'highli_never_wrong',
  'never_wrong_think',
  'wrong_think_wrong',
  'think_wrong_sil',
  'wrong_sil_famili',
  'sil_famili_realli',
  'famili_realli_punish',
  'realli_punish_kid',
  'punish_kid_like',
  'kid_like_consequ',
  'like_consequ_even',
  'consequ_even_like',
  'even_like_gentl',
  'like_gentl_parent',
  'gentl_parent_type',
  'parent_type_either',
  'type_either_sil',
  'either_sil_sister',
  'sil_sister_son',
  'sister_son_extrem',
  'son_extrem_chaotic',
  'extrem_chaotic_throw',
  'chaotic_throw_tantrum',
  'throw_tantrum_get',
  'tantrum_get_someth',
  'get_someth_center',
  'someth_center_attent',
  'center_attent_theyr',
  'attent_theyr_birthday',
  'theyr_birthday_need',
  'birthday_need_gift',
  'need_gift_open',
  'gift_open_gift',
  'open_gift_need',
  'gift_need_blow',
  'need_blow_candl',
  'blow_candl_frustrat',
  'candl_frustrat_im',
  'frustrat_im_usual',
  'im_usual_around',
  'usual_around_famili',
  'around_famili_gather',
  'famili_gather_stuff',
  'gather_stuff_sil',
  'stuff_sil_sinc',
  'sil_sinc_friend',
  'sinc_friend_cancel',
  'friend_cancel_help',
  'cancel_help_make',
  'help_make_invit',
  'make_invit_saw',
  'invit_saw_one',
  'saw_one_name',
  'one_name_sil',
  'name_sil_nephew',
  'sil_nephew_ask',
  'nephew_ask_want',
  'ask_want_go',
  'want_go_said',
  'go_said_yeah',
  'said_yeah_ask',
  'yeah_ask_told',
  'ask_told_talk',
  'told_talk_tantrum',
  'talk_tantrum_hell',
  'tantrum_hell_probabl',
  'hell_probabl_throw',
  'probabl_throw_fit',
  'throw_fit_recept',
  'fit_recept_stuff',
  'recept_stuff_got',
  'stuff_got_mad',
  'got_mad_said',
  'mad_said_know',
  'said_know_talk',
  'know_talk_told',
  'talk_told_famili',
  'told_famili_sister',
  'famili_sister_caus',
  'sister_caus_sister',
  'caus_sister_write',
  'sister_write_messag',
  'write_messag_say',
  'messag_say_wrong',
  'say_wrong_stuff',
  'wrong_stuff_like',
  'stuff_like_well',
  'like_well_day',
  'well_day_wed',
  'day_wed_come',
  'wed_come_everyon',
  'come_everyon_come',
  'everyon_come_happi',
  'come_happi_except',
  'happi_except_nephew',
  'except_nephew_cri',
  'nephew_cri_throw',
  'cri_throw_fit',
  'throw_fit_sil',
  'fit_sil_came',
  'sil_came_liter',
  'came_liter_start',
  'liter_start_scream',
  'start_scream_poor',
  'scream_poor_pastor',
  'poor_pastor_stop',
  'pastor_stop_wait',
  'stop_wait_parent',
  'wait_parent_leav',
  'parent_leav_parti',
  'leav_parti_back',
  'parti_back_cri',
  'back_cri_cut',
  'cri_cut_cake',
  'cut_cake_scream',
  'cake_scream_extrem',
  'scream_extrem_loud',
  'extrem_loud_push',
  'loud_push_sil',
  'push_sil_hold',
  'sil_hold_glass',
  'hold_glass_wine',
  'glass_wine_spill',
  'wine_spill_start',
  'spill_start_cri',
  'start_cri_turn',
  'cri_turn_around',
  'turn_around_leav',
  'around_leav_look',
  'leav_look_said',
  'look_said_told',
  'said_told_start',
  'told_start_cri',
  'start_cri_even',
  'cri_even_got',
  'even_got_home',
  'got_home_mom',
  'home_mom_call',
  'mom_call_extrem',
  'call_extrem_immatur',
  'extrem_immatur_want',
  'immatur_want_apolog',
  'want_apolog_aita',
  'apolog_aita_edit',
  'aita_edit_went',
  'edit_went_facebook',
  'went_facebook_saw',
  'facebook_saw_long',
  'saw_long_post',
  'long_post_sil',
  'post_sil_sister',
  'sil_sister_basic',
  'sister_basic_say',
  'basic_say_sil',
  'say_sil_knew',
  'sil_knew_nephew',
  'knew_nephew_want',
  'nephew_want_throw',
  'want_throw_tantrum',
  'throw_tantrum_never',
  'tantrum_never_invit',
  'never_invit_also',
  'invit_also_call',
  'also_call_sil',
  'call_sil_selfish',
  'sil_selfish_say',
  'selfish_say_offer',
  'say_offer_nephew',
  'offer_nephew_cut',
  'nephew_cut_cake',
  'cut_cake_sil',
  'cake_sil_famili',
  'sil_famili_also',
  'famili_also_agre',
  'also_agre_call',
  'agre_call_sil',
  'call_sil_selfish',
  'sil_selfish_went',
  'selfish_went_sil',
  'went_sil_hous',
  'sil_hous_bottl',
  'hous_bottl_wine',
  'bottl_wine_told',
  'wine_told_right',
  'told_right_never',
  'right_never_invit',
  'never_invit_still',
  'invit_still_apolog',
  'still_apolog_though',
  'apolog_though_kick',
  'though_kick_ive',
  'kick_ive_offer',
  'ive_offer_pay',
  'offer_pay_get',
  'pay_get_wed',
  'get_wed_dress',
  'wed_dress_clean',
  'dress_clean_said',
  'clean_said_fine'],
 ['aita',
  'call',
  'husband',
  'without',
  'fail',
  'everi',
  'time',
  'husband',
  'wake',
  'middl',
  'night',
  'wake',
  'fulli',
  'ask',
  'time',
  'us',
  'sleep',
  'cellphon',
  'charg',
  'next',
  'bed',
  'easi',
  'reach',
  'check',
  'time',
  'phone',
  'wake',
  'ask',
  'husband',
  'say',
  'im',
  'ah',
  'im',
  'make',
  'big',
  'deal',
  'noth',
  'say',
  'wake',
  'someth',
  'meaningless',
  'less',
  'effort',
  'expend',
  'ask',
  'show',
  'complet',
  'disregard',
  'realli',
  'selfish',
  'know',
  'go',
  'say',
  'im',
  'make',
  'huge',
  'deal',
  'noth',
  'like',
  'sometim',
  'thing',
  'often',
  'sever',
  'time',
  'week',
  'alway',
  'take',
  'forev',
  'fall',
  'back',
  'sleep',
  'work',
  'full',
  'time',
  'job',
  'infant',
  '%',
  'nighttim',
  'babi',
  'duti',
  'husband',
  'commut',
  'farther',
  'say',
  'make',
  'sens',
  'let',
  'sleep',
  'sinc',
  'door',
  'morn',
  'need',
  'clear',
  'im',
  'complain',
  'wake',
  'due',
  'babi',
  'need',
  'wake',
  'cri',
  'think',
  'husband',
  'even',
  'hear',
  'complaint',
  'strictli',
  'wake',
  'ask',
  'time',
  'feel',
  'like',
  'realli',
  'selfish',
  'sometim',
  'want',
  'sleep',
  'anyway…',
  'aita',
  'complain',
  'tell',
  'husband',
  'cut',
  'needlessli',
  'insensit',
  'need',
  'aita_call',
  'call_husband',
  'husband_without',
  'without_fail',
  'fail_everi',
  'everi_time',
  'time_husband',
  'husband_wake',
  'wake_middl',
  'middl_night',
  'night_wake',
  'wake_fulli',
  'fulli_ask',
  'ask_time',
  'time_us',
  'us_sleep',
  'sleep_cellphon',
  'cellphon_charg',
  'charg_next',
  'next_bed',
  'bed_easi',
  'easi_reach',
  'reach_check',
  'check_time',
  'time_phone',
  'phone_wake',
  'wake_ask',
  'ask_husband',
  'husband_say',
  'say_im',
  'im_ah',
  'ah_im',
  'im_make',
  'make_big',
  'big_deal',
  'deal_noth',
  'noth_say',
  'say_wake',
  'wake_someth',
  'someth_meaningless',
  'meaningless_less',
  'less_effort',
  'effort_expend',
  'expend_ask',
  'ask_show',
  'show_complet',
  'complet_disregard',
  'disregard_realli',
  'realli_selfish',
  'selfish_know',
  'know_go',
  'go_say',
  'say_im',
  'im_make',
  'make_huge',
  'huge_deal',
  'deal_noth',
  'noth_like',
  'like_sometim',
  'sometim_thing',
  'thing_often',
  'often_sever',
  'sever_time',
  'time_week',
  'week_alway',
  'alway_take',
  'take_forev',
  'forev_fall',
  'fall_back',
  'back_sleep',
  'sleep_work',
  'work_full',
  'full_time',
  'time_job',
  'job_infant',
  'infant_%',
  '%_nighttim',
  'nighttim_babi',
  'babi_duti',
  'duti_husband',
  'husband_commut',
  'commut_farther',
  'farther_say',
  'say_make',
  'make_sens',
  'sens_let',
  'let_sleep',
  'sleep_sinc',
  'sinc_door',
  'door_morn',
  'morn_need',
  'need_clear',
  'clear_im',
  'im_complain',
  'complain_wake',
  'wake_due',
  'due_babi',
  'babi_need',
  'need_wake',
  'wake_cri',
  'cri_think',
  'think_husband',
  'husband_even',
  'even_hear',
  'hear_complaint',
  'complaint_strictli',
  'strictli_wake',
  'wake_ask',
  'ask_time',
  'time_feel',
  'feel_like',
  'like_realli',
  'realli_selfish',
  'selfish_sometim',
  'sometim_want',
  'want_sleep',
  'sleep_anyway…',
  'anyway…_aita',
  'aita_complain',
  'complain_tell',
  'tell_husband',
  'husband_cut',
  'cut_needlessli',
  'needlessli_insensit',
  'insensit_need',
  'aita_call_husband',
  'call_husband_without',
  'husband_without_fail',
  'without_fail_everi',
  'fail_everi_time',
  'everi_time_husband',
  'time_husband_wake',
  'husband_wake_middl',
  'wake_middl_night',
  'middl_night_wake',
  'night_wake_fulli',
  'wake_fulli_ask',
  'fulli_ask_time',
  'ask_time_us',
  'time_us_sleep',
  'us_sleep_cellphon',
  'sleep_cellphon_charg',
  'cellphon_charg_next',
  'charg_next_bed',
  'next_bed_easi',
  'bed_easi_reach',
  'easi_reach_check',
  'reach_check_time',
  'check_time_phone',
  'time_phone_wake',
  'phone_wake_ask',
  'wake_ask_husband',
  'ask_husband_say',
  'husband_say_im',
  'say_im_ah',
  'im_ah_im',
  'ah_im_make',
  'im_make_big',
  'make_big_deal',
  'big_deal_noth',
  'deal_noth_say',
  'noth_say_wake',
  'say_wake_someth',
  'wake_someth_meaningless',
  'someth_meaningless_less',
  'meaningless_less_effort',
  'less_effort_expend',
  'effort_expend_ask',
  'expend_ask_show',
  'ask_show_complet',
  'show_complet_disregard',
  'complet_disregard_realli',
  'disregard_realli_selfish',
  'realli_selfish_know',
  'selfish_know_go',
  'know_go_say',
  'go_say_im',
  'say_im_make',
  'im_make_huge',
  'make_huge_deal',
  'huge_deal_noth',
  'deal_noth_like',
  'noth_like_sometim',
  'like_sometim_thing',
  'sometim_thing_often',
  'thing_often_sever',
  'often_sever_time',
  'sever_time_week',
  'time_week_alway',
  'week_alway_take',
  'alway_take_forev',
  'take_forev_fall',
  'forev_fall_back',
  'fall_back_sleep',
  'back_sleep_work',
  'sleep_work_full',
  'work_full_time',
  'full_time_job',
  'time_job_infant',
  'job_infant_%',
  'infant_%_nighttim',
  '%_nighttim_babi',
  'nighttim_babi_duti',
  'babi_duti_husband',
  'duti_husband_commut',
  'husband_commut_farther',
  'commut_farther_say',
  'farther_say_make',
  'say_make_sens',
  'make_sens_let',
  'sens_let_sleep',
  'let_sleep_sinc',
  'sleep_sinc_door',
  'sinc_door_morn',
  'door_morn_need',
  'morn_need_clear',
  'need_clear_im',
  'clear_im_complain',
  'im_complain_wake',
  'complain_wake_due',
  'wake_due_babi',
  'due_babi_need',
  'babi_need_wake',
  'need_wake_cri',
  'wake_cri_think',
  'cri_think_husband',
  'think_husband_even',
  'husband_even_hear',
  'even_hear_complaint',
  'hear_complaint_strictli',
  'complaint_strictli_wake',
  'strictli_wake_ask',
  'wake_ask_time',
  'ask_time_feel',
  'time_feel_like',
  'feel_like_realli',
  'like_realli_selfish',
  'realli_selfish_sometim',
  'selfish_sometim_want',
  'sometim_want_sleep',
  'want_sleep_anyway…',
  'sleep_anyway…_aita',
  'anyway…_aita_complain',
  'aita_complain_tell',
  'complain_tell_husband',
  'tell_husband_cut',
  'husband_cut_needlessli',
  'cut_needlessli_insensit',
  'needlessli_insensit_need'],
 ['sister',
  'wealthi',
  'conserv',
  'parent',
  'long',
  'back-and-forth',
  'decid',
  'kick',
  'two',
  'day',
  'th',
  'birthday',
  'close',
  'one',
  'best',
  'friend',
  'parent',
  'gener',
  'took',
  'hous',
  'bronx',
  'month',
  'live',
  'friend',
  'mom',
  'becam',
  'mom',
  'dad',
  'becam',
  'dad',
  'friend',
  'famili',
  'would',
  'explain',
  'peopl',
  'would',
  'alway',
  'say',
  'theyr',
  'black',
  'famili',
  'black',
  'mom',
  'black',
  'dad',
  'etc',
  'say',
  'white',
  'famili',
  'take',
  'time',
  'figur',
  'thing',
  'eventu',
  'bio',
  'parent',
  'accept',
  'someth',
  'black',
  'famili',
  'support',
  'move',
  'back',
  'childhood',
  'home',
  'would',
  'alway',
  'call',
  'black',
  'mom',
  'dad',
  'would',
  'visit',
  'time',
  'time',
  'never',
  'stop',
  'famili',
  'next',
  'week',
  'im',
  'get',
  'marri',
  'wonder',
  'man',
  'biolog',
  'parent',
  'pay',
  'larg',
  'portion',
  'wed',
  'im',
  'insist',
  'black',
  'famili',
  'includ',
  'family-onli',
  'wed',
  'portrait',
  'bio',
  'parent',
  'say',
  'theyr',
  'realli',
  'famili',
  'plan',
  'back',
  'bio',
  'parent',
  'pay',
  'id',
  'like',
  'know',
  'asshol',
  'sister_wealthi',
  'wealthi_conserv',
  'conserv_parent',
  'parent_long',
  'long_back-and-forth',
  'back-and-forth_decid',
  'decid_kick',
  'kick_two',
  'two_day',
  'day_th',
  'th_birthday',
  'birthday_close',
  'close_one',
  'one_best',
  'best_friend',
  'friend_parent',
  'parent_gener',
  'gener_took',
  'took_hous',
  'hous_bronx',
  'bronx_month',
  'month_live',
  'live_friend',
  'friend_mom',
  'mom_becam',
  'becam_mom',
  'mom_dad',
  'dad_becam',
  'becam_dad',
  'dad_friend',
  'friend_famili',
  'famili_would',
  'would_explain',
  'explain_peopl',
  'peopl_would',
  'would_alway',
  'alway_say',
  'say_theyr',
  'theyr_black',
  'black_famili',
  'famili_black',
  'black_mom',
  'mom_black',
  'black_dad',
  'dad_etc',
  'etc_say',
  'say_white',
  'white_famili',
  'famili_take',
  'take_time',
  'time_figur',
  'figur_thing',
  'thing_eventu',
  'eventu_bio',
  'bio_parent',
  'parent_accept',
  'accept_someth',
  'someth_black',
  'black_famili',
  'famili_support',
  'support_move',
  'move_back',
  'back_childhood',
  'childhood_home',
  'home_would',
  'would_alway',
  'alway_call',
  'call_black',
  'black_mom',
  'mom_dad',
  'dad_would',
  'would_visit',
  'visit_time',
  'time_time',
  'time_never',
  'never_stop',
  'stop_famili',
  'famili_next',
  'next_week',
  'week_im',
  'im_get',
  'get_marri',
  'marri_wonder',
  'wonder_man',
  'man_biolog',
  'biolog_parent',
  'parent_pay',
  'pay_larg',
  'larg_portion',
  'portion_wed',
  'wed_im',
  'im_insist',
  'insist_black',
  'black_famili',
  'famili_includ',
  'includ_family-onli',
  'family-onli_wed',
  'wed_portrait',
  'portrait_bio',
  'bio_parent',
  'parent_say',
  'say_theyr',
  'theyr_realli',
  'realli_famili',
  'famili_plan',
  'plan_back',
  'back_bio',
  'bio_parent',
  'parent_pay',
  'pay_id',
  'id_like',
  'like_know',
  'know_asshol',
  'sister_wealthi_conserv',
  'wealthi_conserv_parent',
  'conserv_parent_long',
  'parent_long_back-and-forth',
  'long_back-and-forth_decid',
  'back-and-forth_decid_kick',
  'decid_kick_two',
  'kick_two_day',
  'two_day_th',
  'day_th_birthday',
  'th_birthday_close',
  'birthday_close_one',
  'close_one_best',
  'one_best_friend',
  'best_friend_parent',
  'friend_parent_gener',
  'parent_gener_took',
  'gener_took_hous',
  'took_hous_bronx',
  'hous_bronx_month',
  'bronx_month_live',
  'month_live_friend',
  'live_friend_mom',
  'friend_mom_becam',
  'mom_becam_mom',
  'becam_mom_dad',
  'mom_dad_becam',
  'dad_becam_dad',
  'becam_dad_friend',
  'dad_friend_famili',
  'friend_famili_would',
  'famili_would_explain',
  'would_explain_peopl',
  'explain_peopl_would',
  'peopl_would_alway',
  'would_alway_say',
  'alway_say_theyr',
  'say_theyr_black',
  'theyr_black_famili',
  'black_famili_black',
  'famili_black_mom',
  'black_mom_black',
  'mom_black_dad',
  'black_dad_etc',
  'dad_etc_say',
  'etc_say_white',
  'say_white_famili',
  'white_famili_take',
  'famili_take_time',
  'take_time_figur',
  'time_figur_thing',
  'figur_thing_eventu',
  'thing_eventu_bio',
  'eventu_bio_parent',
  'bio_parent_accept',
  'parent_accept_someth',
  'accept_someth_black',
  'someth_black_famili',
  'black_famili_support',
  'famili_support_move',
  'support_move_back',
  'move_back_childhood',
  'back_childhood_home',
  'childhood_home_would',
  'home_would_alway',
  'would_alway_call',
  'alway_call_black',
  'call_black_mom',
  'black_mom_dad',
  'mom_dad_would',
  'dad_would_visit',
  'would_visit_time',
  'visit_time_time',
  'time_time_never',
  'time_never_stop',
  'never_stop_famili',
  'stop_famili_next',
  'famili_next_week',
  'next_week_im',
  'week_im_get',
  'im_get_marri',
  'get_marri_wonder',
  'marri_wonder_man',
  'wonder_man_biolog',
  'man_biolog_parent',
  'biolog_parent_pay',
  'parent_pay_larg',
  'pay_larg_portion',
  'larg_portion_wed',
  'portion_wed_im',
  'wed_im_insist',
  'im_insist_black',
  'insist_black_famili',
  'black_famili_includ',
  'famili_includ_family-onli',
  'includ_family-onli_wed',
  'family-onli_wed_portrait',
  'wed_portrait_bio',
  'portrait_bio_parent',
  'bio_parent_say',
  'parent_say_theyr',
  'say_theyr_realli',
  'theyr_realli_famili',
  'realli_famili_plan',
  'famili_plan_back',
  'plan_back_bio',
  'back_bio_parent',
  'bio_parent_pay',
  'parent_pay_id',
  'pay_id_like',
  'id_like_know',
  'like_know_asshol'],
 ['spent',
  'last',
  'night',
  'boyfriend',
  'famili',
  'wed',
  'gone',
  'dinner',
  'dad',
  'gon',
  'na',
  'drive',
  'boyfriend',
  'parent',
  'brother',
  'squeez',
  'dad',
  'car',
  'went',
  'restaur',
  'drink',
  'dad',
  'two',
  'sinc',
  'gon',
  'na',
  'drive',
  'way',
  'back',
  'dad',
  'start',
  'ask',
  'work',
  'self',
  'drive',
  'car',
  'yeah',
  'im',
  'system',
  'engin',
  'job',
  'hop',
  'hand',
  'autonomi',
  'compani',
  'start',
  'ask',
  'like',
  'tesla',
  'joke',
  'fine',
  'long',
  'one',
  'drive',
  'ask',
  'thought',
  'fsd',
  'hed',
  'bought',
  'ask',
  'turn',
  'said',
  'car',
  'laugh',
  'ask',
  'still',
  'scare',
  'work',
  'stuff',
  'everyday',
  'like',
  'uhh',
  'stop',
  'pull',
  'liter',
  'start',
  'turn',
  'like',
  'im',
  'kid',
  'let',
  'car',
  'gon',
  'na',
  'boyfriend',
  'dad',
  'brother',
  'start',
  'laugh',
  'boyfriend',
  'still',
  'say',
  'anyth',
  'dad',
  'like',
  'itll',
  'fine',
  'reach',
  'boyfriend',
  'littl',
  'brother',
  'tri',
  'door',
  'handl',
  'lock',
  'get',
  'mad',
  'probabl',
  'moreso',
  'tipsi',
  'yell',
  'let',
  'fuck',
  'boyfriend',
  'start',
  'tri',
  'tell',
  'calm',
  'drunk',
  'told',
  'fuck',
  'matter',
  'id',
  'outta',
  'sober',
  'drunk',
  'told',
  'stop',
  'cuss',
  'front',
  'littl',
  'brother',
  'told',
  'tell',
  'dad',
  'cut',
  'shit',
  'anyth',
  'cuss',
  'dad',
  'like',
  'fine',
  'realiz',
  'itd',
  'suuuch',
  'big',
  'deal',
  'drove',
  'home',
  'normal',
  'thing',
  'tens',
  'hell',
  'got',
  'back',
  'hous',
  'mad',
  'overreact',
  'first',
  'time',
  'met',
  'famili',
  'togeth',
  'got',
  'angri',
  'like',
  'im',
  'one',
  'decid',
  'one',
  'thing',
  'said',
  'im',
  'comfort',
  'car',
  'ask',
  'laugh',
  'said',
  'dad',
  'use',
  'car',
  'lot',
  'fine',
  'ask',
  'sinc',
  'rock',
  'climber',
  'would',
  'ever',
  'get',
  'rout',
  'carbain',
  'lock',
  'someon',
  'say',
  'time',
  'fine',
  'like',
  'absolut',
  'differ',
  'like',
  'liter',
  'like',
  'know',
  'climber',
  'whod',
  'shit',
  'nobodi',
  'field',
  'know',
  'would',
  'stay',
  'car',
  'got',
  'mad',
  'told',
  'go',
  'sleep',
  'drunk',
  'honestli',
  'today',
  'woke',
  'sober',
  'stand',
  'like',
  'comfort',
  'happen',
  'boyfriend',
  'famili',
  'laugh',
  'start',
  'tri',
  'one',
  'fuck',
  'thing',
  'said',
  'like',
  'whatev',
  'thing',
  'fuck',
  'aita',
  'yell',
  'boyfriend',
  'dad',
  'let',
  'car',
  'edit',
  '-',
  'im',
  'tri',
  'get',
  'fight',
  'favorit',
  'billionair',
  'take',
  'somewher',
  'els',
  'want',
  'fanboy',
  'argument',
  'tho',
  'record',
  'answer',
  'none',
  'spent_last',
  'last_night',
  'night_boyfriend',
  'boyfriend_famili',
  'famili_wed',
  'wed_gone',
  'gone_dinner',
  'dinner_dad',
  'dad_gon',
  'gon_na',
  'na_drive',
  'drive_boyfriend',
  'boyfriend_parent',
  'parent_brother',
  'brother_squeez',
  'squeez_dad',
  'dad_car',
  'car_went',
  'went_restaur',
  'restaur_drink',
  'drink_dad',
  'dad_two',
  'two_sinc',
  'sinc_gon',
  'gon_na',
  'na_drive',
  'drive_way',
  'way_back',
  'back_dad',
  'dad_start',
  'start_ask',
  'ask_work',
  'work_self',
  'self_drive',
  'drive_car',
  'car_yeah',
  'yeah_im',
  'im_system',
  'system_engin',
  'engin_job',
  'job_hop',
  'hop_hand',
  'hand_autonomi',
  'autonomi_compani',
  'compani_start',
  'start_ask',
  'ask_like',
  'like_tesla',
  'tesla_joke',
  'joke_fine',
  'fine_long',
  'long_one',
  'one_drive',
  'drive_ask',
  'ask_thought',
  'thought_fsd',
  'fsd_hed',
  'hed_bought',
  'bought_ask',
  'ask_turn',
  'turn_said',
  'said_car',
  'car_laugh',
  'laugh_ask',
  'ask_still',
  'still_scare',
  'scare_work',
  'work_stuff',
  'stuff_everyday',
  'everyday_like',
  'like_uhh',
  'uhh_stop',
  'stop_pull',
  'pull_liter',
  'liter_start',
  'start_turn',
  'turn_like',
  'like_im',
  'im_kid',
  'kid_let',
  'let_car',
  'car_gon',
  'gon_na',
  'na_boyfriend',
  'boyfriend_dad',
  'dad_brother',
  'brother_start',
  'start_laugh',
  'laugh_boyfriend',
  'boyfriend_still',
  'still_say',
  'say_anyth',
  'anyth_dad',
  'dad_like',
  'like_itll',
  'itll_fine',
  'fine_reach',
  'reach_boyfriend',
  'boyfriend_littl',
  'littl_brother',
  'brother_tri',
  'tri_door',
  'door_handl',
  'handl_lock',
  'lock_get',
  'get_mad',
  'mad_probabl',
  'probabl_moreso',
  'moreso_tipsi',
  'tipsi_yell',
  'yell_let',
  'let_fuck',
  'fuck_boyfriend',
  'boyfriend_start',
  'start_tri',
  'tri_tell',
  'tell_calm',
  'calm_drunk',
  'drunk_told',
  'told_fuck',
  'fuck_matter',
  'matter_id',
  'id_outta',
  'outta_sober',
  'sober_drunk',
  'drunk_told',
  'told_stop',
  'stop_cuss',
  'cuss_front',
  'front_littl',
  'littl_brother',
  'brother_told',
  'told_tell',
  'tell_dad',
  'dad_cut',
  'cut_shit',
  'shit_anyth',
  'anyth_cuss',
  'cuss_dad',
  'dad_like',
  'like_fine',
  'fine_realiz',
  'realiz_itd',
  'itd_suuuch',
  'suuuch_big',
  'big_deal',
  'deal_drove',
  'drove_home',
  'home_normal',
  'normal_thing',
  'thing_tens',
  'tens_hell',
  'hell_got',
  'got_back',
  'back_hous',
  'hous_mad',
  'mad_overreact',
  'overreact_first',
  'first_time',
  'time_met',
  'met_famili',
  'famili_togeth',
  'togeth_got',
  'got_angri',
  'angri_like',
  'like_im',
  'im_one',
  'one_decid',
  'decid_one',
  'one_thing',
  'thing_said',
  'said_im',
  'im_comfort',
  'comfort_car',
  'car_ask',
  'ask_laugh',
  'laugh_said',
  'said_dad',
  'dad_use',
  'use_car',
  'car_lot',
  'lot_fine',
  'fine_ask',
  'ask_sinc',
  'sinc_rock',
  'rock_climber',
  'climber_would',
  'would_ever',
  'ever_get',
  'get_rout',
  'rout_carbain',
  'carbain_lock',
  'lock_someon',
  'someon_say',
  'say_time',
  'time_fine',
  'fine_like',
  'like_absolut',
  'absolut_differ',
  'differ_like',
  'like_liter',
  'liter_like',
  'like_know',
  'know_climber',
  'climber_whod',
  'whod_shit',
  'shit_nobodi',
  'nobodi_field',
  'field_know',
  'know_would',
  'would_stay',
  'stay_car',
  'car_got',
  'got_mad',
  'mad_told',
  'told_go',
  'go_sleep',
  'sleep_drunk',
  'drunk_honestli',
  'honestli_today',
  'today_woke',
  'woke_sober',
  'sober_stand',
  'stand_like',
  'like_comfort',
  'comfort_happen',
  'happen_boyfriend',
  'boyfriend_famili',
  'famili_laugh',
  'laugh_start',
  'start_tri',
  'tri_one',
  'one_fuck',
  'fuck_thing',
  'thing_said',
  'said_like',
  'like_whatev',
  'whatev_thing',
  'thing_fuck',
  'fuck_aita',
  'aita_yell',
  'yell_boyfriend',
  'boyfriend_dad',
  'dad_let',
  'let_car',
  'car_edit',
  'edit_-',
  '-_im',
  'im_tri',
  'tri_get',
  'get_fight',
  'fight_favorit',
  'favorit_billionair',
  'billionair_take',
  'take_somewher',
  'somewher_els',
  'els_want',
  'want_fanboy',
  'fanboy_argument',
  'argument_tho',
  'tho_record',
  'record_answer',
  'answer_none',
  'spent_last_night',
  'last_night_boyfriend',
  'night_boyfriend_famili',
  'boyfriend_famili_wed',
  'famili_wed_gone',
  'wed_gone_dinner',
  'gone_dinner_dad',
  'dinner_dad_gon',
  'dad_gon_na',
  'gon_na_drive',
  'na_drive_boyfriend',
  'drive_boyfriend_parent',
  'boyfriend_parent_brother',
  'parent_brother_squeez',
  'brother_squeez_dad',
  'squeez_dad_car',
  'dad_car_went',
  'car_went_restaur',
  'went_restaur_drink',
  'restaur_drink_dad',
  'drink_dad_two',
  'dad_two_sinc',
  'two_sinc_gon',
  'sinc_gon_na',
  'gon_na_drive',
  'na_drive_way',
  'drive_way_back',
  'way_back_dad',
  'back_dad_start',
  'dad_start_ask',
  'start_ask_work',
  'ask_work_self',
  'work_self_drive',
  'self_drive_car',
  'drive_car_yeah',
  'car_yeah_im',
  'yeah_im_system',
  'im_system_engin',
  'system_engin_job',
  'engin_job_hop',
  'job_hop_hand',
  'hop_hand_autonomi',
  'hand_autonomi_compani',
  'autonomi_compani_start',
  'compani_start_ask',
  'start_ask_like',
  'ask_like_tesla',
  'like_tesla_joke',
  'tesla_joke_fine',
  'joke_fine_long',
  'fine_long_one',
  'long_one_drive',
  'one_drive_ask',
  'drive_ask_thought',
  'ask_thought_fsd',
  'thought_fsd_hed',
  'fsd_hed_bought',
  'hed_bought_ask',
  'bought_ask_turn',
  'ask_turn_said',
  'turn_said_car',
  'said_car_laugh',
  'car_laugh_ask',
  'laugh_ask_still',
  'ask_still_scare',
  'still_scare_work',
  'scare_work_stuff',
  'work_stuff_everyday',
  'stuff_everyday_like',
  'everyday_like_uhh',
  'like_uhh_stop',
  'uhh_stop_pull',
  'stop_pull_liter',
  'pull_liter_start',
  'liter_start_turn',
  'start_turn_like',
  'turn_like_im',
  'like_im_kid',
  'im_kid_let',
  'kid_let_car',
  'let_car_gon',
  'car_gon_na',
  'gon_na_boyfriend',
  'na_boyfriend_dad',
  'boyfriend_dad_brother',
  'dad_brother_start',
  'brother_start_laugh',
  'start_laugh_boyfriend',
  'laugh_boyfriend_still',
  'boyfriend_still_say',
  'still_say_anyth',
  'say_anyth_dad',
  'anyth_dad_like',
  'dad_like_itll',
  'like_itll_fine',
  'itll_fine_reach',
  'fine_reach_boyfriend',
  'reach_boyfriend_littl',
  'boyfriend_littl_brother',
  'littl_brother_tri',
  'brother_tri_door',
  'tri_door_handl',
  'door_handl_lock',
  'handl_lock_get',
  'lock_get_mad',
  'get_mad_probabl',
  'mad_probabl_moreso',
  'probabl_moreso_tipsi',
  'moreso_tipsi_yell',
  'tipsi_yell_let',
  'yell_let_fuck',
  'let_fuck_boyfriend',
  'fuck_boyfriend_start',
  'boyfriend_start_tri',
  'start_tri_tell',
  'tri_tell_calm',
  'tell_calm_drunk',
  'calm_drunk_told',
  'drunk_told_fuck',
  'told_fuck_matter',
  'fuck_matter_id',
  'matter_id_outta',
  'id_outta_sober',
  'outta_sober_drunk',
  'sober_drunk_told',
  'drunk_told_stop',
  'told_stop_cuss',
  'stop_cuss_front',
  'cuss_front_littl',
  'front_littl_brother',
  'littl_brother_told',
  'brother_told_tell',
  'told_tell_dad',
  'tell_dad_cut',
  'dad_cut_shit',
  'cut_shit_anyth',
  'shit_anyth_cuss',
  'anyth_cuss_dad',
  'cuss_dad_like',
  'dad_like_fine',
  'like_fine_realiz',
  'fine_realiz_itd',
  'realiz_itd_suuuch',
  'itd_suuuch_big',
  'suuuch_big_deal',
  'big_deal_drove',
  'deal_drove_home',
  'drove_home_normal',
  'home_normal_thing',
  'normal_thing_tens',
  'thing_tens_hell',
  'tens_hell_got',
  'hell_got_back',
  'got_back_hous',
  'back_hous_mad',
  'hous_mad_overreact',
  'mad_overreact_first',
  'overreact_first_time',
  'first_time_met',
  'time_met_famili',
  'met_famili_togeth',
  'famili_togeth_got',
  'togeth_got_angri',
  'got_angri_like',
  'angri_like_im',
  'like_im_one',
  'im_one_decid',
  'one_decid_one',
  'decid_one_thing',
  'one_thing_said',
  'thing_said_im',
  'said_im_comfort',
  'im_comfort_car',
  'comfort_car_ask',
  'car_ask_laugh',
  'ask_laugh_said',
  'laugh_said_dad',
  'said_dad_use',
  'dad_use_car',
  'use_car_lot',
  'car_lot_fine',
  'lot_fine_ask',
  'fine_ask_sinc',
  'ask_sinc_rock',
  'sinc_rock_climber',
  'rock_climber_would',
  'climber_would_ever',
  'would_ever_get',
  'ever_get_rout',
  'get_rout_carbain',
  'rout_carbain_lock',
  'carbain_lock_someon',
  'lock_someon_say',
  'someon_say_time',
  'say_time_fine',
  'time_fine_like',
  'fine_like_absolut',
  'like_absolut_differ',
  'absolut_differ_like',
  'differ_like_liter',
  'like_liter_like',
  'liter_like_know',
  'like_know_climber',
  'know_climber_whod',
  'climber_whod_shit',
  'whod_shit_nobodi',
  'shit_nobodi_field',
  'nobodi_field_know',
  'field_know_would',
  'know_would_stay',
  'would_stay_car',
  'stay_car_got',
  'car_got_mad',
  'got_mad_told',
  'mad_told_go',
  'told_go_sleep',
  'go_sleep_drunk',
  'sleep_drunk_honestli',
  'drunk_honestli_today',
  'honestli_today_woke',
  'today_woke_sober',
  'woke_sober_stand',
  'sober_stand_like',
  'stand_like_comfort',
  'like_comfort_happen',
  'comfort_happen_boyfriend',
  'happen_boyfriend_famili',
  'boyfriend_famili_laugh',
  'famili_laugh_start',
  'laugh_start_tri',
  'start_tri_one',
  'tri_one_fuck',
  'one_fuck_thing',
  'fuck_thing_said',
  'thing_said_like',
  'said_like_whatev',
  'like_whatev_thing',
  'whatev_thing_fuck',
  'thing_fuck_aita',
  'fuck_aita_yell',
  'aita_yell_boyfriend',
  'yell_boyfriend_dad',
  'boyfriend_dad_let',
  'dad_let_car',
  'let_car_edit',
  'car_edit_-',
  'edit_-_im',
  '-_im_tri',
  'im_tri_get',
  'tri_get_fight',
  'get_fight_favorit',
  'fight_favorit_billionair',
  'favorit_billionair_take',
  'billionair_take_somewher',
  'take_somewher_els',
  'somewher_els_want',
  'els_want_fanboy',
  'want_fanboy_argument',
  'fanboy_argument_tho',
  'argument_tho_record',
  'tho_record_answer',
  'record_answer_none'],
 ['wife',
  'expect',
  'first',
  'babi',
  'togeth',
  'made',
  'appoint',
  'find',
  'gender',
  'babi',
  'import',
  'hope',
  'boy',
  'unfortun',
  'day',
  'dr',
  'appoint',
  'attend',
  'friend',
  'birthday',
  'rememb',
  'last',
  'minut',
  'ask',
  'wife',
  'could',
  'cancel',
  'appoint',
  'go',
  'anoth',
  'day',
  'look',
  'shock',
  'even',
  'consid',
  'cancel',
  'appoint',
  'go',
  'friend',
  'birthday',
  'said',
  'choic',
  'said',
  'cancel',
  'dr',
  'appoint',
  'tabl',
  'appoint',
  'restrict',
  'specif',
  'time',
  'date',
  'cant',
  'miss',
  'shell',
  'go',
  'alon',
  'told',
  'thatd',
  'selfish',
  'besid',
  'ruin',
  'news',
  'find',
  'babi',
  'boy',
  'girl',
  'cut',
  'discuss',
  'told',
  'go',
  'birthday',
  'parti',
  'later',
  'found',
  'cancel',
  'dr',
  'appoint',
  'went',
  'mom',
  'came',
  'home',
  'seeth',
  'blew',
  'start',
  'argu',
  'go',
  'behind',
  'back',
  'without',
  'said',
  'fault',
  'priorit',
  'parti',
  'child',
  'told',
  'priorit',
  'anyth',
  'liter',
  'couldv',
  'cancel',
  'wouldv',
  'went',
  'anoth',
  'day',
  'clearli',
  'tri',
  'steer',
  'fight',
  'direct',
  'look',
  'like',
  'neglect',
  'irrespons',
  'one',
  'fought',
  'said',
  'im',
  'probabl',
  'angri',
  'girl',
  'respond',
  'wrong',
  'went',
  'outsid',
  'room',
  'claim',
  'stress',
  'act',
  'like',
  'owe',
  'apolog',
  'top',
  'everyth',
  'els',
  'feel',
  'upset',
  'like',
  'deciev',
  'aita',
  'info',
  'first',
  'jesu',
  'swear',
  'came',
  'think',
  'somewhat',
  'justifi',
  'frustrat',
  'wrong',
  'seem',
  'although',
  'wan',
  'na',
  'point',
  'go',
  'parti',
  'without',
  'tell',
  'wife',
  'discuss',
  'first',
  'also',
  'friend',
  'live',
  'hour',
  'away',
  'leav',
  'appoit',
  'know',
  'went',
  'wouldv',
  'appreci',
  'least',
  'upfront',
  'couldv',
  'said',
  'go',
  'anyway',
  'instead',
  'told',
  'go',
  'parti',
  'think',
  'go',
  'cancel',
  'reschedul',
  'edit',
  'specul',
  'type',
  'parent',
  'amwil',
  'realli',
  'know',
  'enough',
  'make',
  'assumpt',
  'id',
  'appreci',
  'focu',
  'conflict',
  'present',
  'wife_expect',
  'expect_first',
  'first_babi',
  'babi_togeth',
  'togeth_made',
  'made_appoint',
  'appoint_find',
  'find_gender',
  'gender_babi',
  'babi_import',
  'import_hope',
  'hope_boy',
  'boy_unfortun',
  'unfortun_day',
  'day_dr',
  'dr_appoint',
  'appoint_attend',
  'attend_friend',
  'friend_birthday',
  'birthday_rememb',
  'rememb_last',
  'last_minut',
  'minut_ask',
  'ask_wife',
  'wife_could',
  'could_cancel',
  'cancel_appoint',
  'appoint_go',
  'go_anoth',
  'anoth_day',
  'day_look',
  'look_shock',
  'shock_even',
  'even_consid',
  'consid_cancel',
  'cancel_appoint',
  'appoint_go',
  'go_friend',
  'friend_birthday',
  'birthday_said',
  'said_choic',
  'choic_said',
  'said_cancel',
  'cancel_dr',
  'dr_appoint',
  'appoint_tabl',
  'tabl_appoint',
  'appoint_restrict',
  'restrict_specif',
  'specif_time',
  'time_date',
  'date_cant',
  'cant_miss',
  'miss_shell',
  'shell_go',
  'go_alon',
  'alon_told',
  'told_thatd',
  'thatd_selfish',
  'selfish_besid',
  'besid_ruin',
  'ruin_news',
  'news_find',
  'find_babi',
  'babi_boy',
  'boy_girl',
  'girl_cut',
  'cut_discuss',
  'discuss_told',
  'told_go',
  'go_birthday',
  'birthday_parti',
  'parti_later',
  'later_found',
  'found_cancel',
  'cancel_dr',
  'dr_appoint',
  'appoint_went',
  'went_mom',
  'mom_came',
  'came_home',
  'home_seeth',
  'seeth_blew',
  'blew_start',
  'start_argu',
  'argu_go',
  'go_behind',
  'behind_back',
  'back_without',
  'without_said',
  'said_fault',
  'fault_priorit',
  'priorit_parti',
  'parti_child',
  'child_told',
  'told_priorit',
  'priorit_anyth',
  'anyth_liter',
  'liter_couldv',
  'couldv_cancel',
  'cancel_wouldv',
  'wouldv_went',
  'went_anoth',
  'anoth_day',
  'day_clearli',
  'clearli_tri',
  'tri_steer',
  'steer_fight',
  'fight_direct',
  'direct_look',
  'look_like',
  'like_neglect',
  'neglect_irrespons',
  'irrespons_one',
  'one_fought',
  'fought_said',
  'said_im',
  'im_probabl',
  'probabl_angri',
  'angri_girl',
  'girl_respond',
  'respond_wrong',
  'wrong_went',
  'went_outsid',
  'outsid_room',
  'room_claim',
  'claim_stress',
  'stress_act',
  'act_like',
  'like_owe',
  'owe_apolog',
  'apolog_top',
  'top_everyth',
  'everyth_els',
  'els_feel',
  'feel_upset',
  'upset_like',
  'like_deciev',
  'deciev_aita',
  'aita_info',
  'info_first',
  'first_jesu',
  'jesu_swear',
  'swear_came',
  'came_think',
  'think_somewhat',
  'somewhat_justifi',
  'justifi_frustrat',
  'frustrat_wrong',
  'wrong_seem',
  'seem_although',
  'although_wan',
  'wan_na',
  'na_point',
  'point_go',
  'go_parti',
  'parti_without',
  'without_tell',
  'tell_wife',
  'wife_discuss',
  'discuss_first',
  'first_also',
  'also_friend',
  'friend_live',
  'live_hour',
  'hour_away',
  'away_leav',
  'leav_appoit',
  'appoit_know',
  'know_went',
  'went_wouldv',
  'wouldv_appreci',
  'appreci_least',
  'least_upfront',
  'upfront_couldv',
  'couldv_said',
  'said_go',
  'go_anyway',
  'anyway_instead',
  'instead_told',
  'told_go',
  'go_parti',
  'parti_think',
  'think_go',
  'go_cancel',
  'cancel_reschedul',
  'reschedul_edit',
  'edit_specul',
  'specul_type',
  'type_parent',
  'parent_amwil',
  'amwil_realli',
  'realli_know',
  'know_enough',
  'enough_make',
  'make_assumpt',
  'assumpt_id',
  'id_appreci',
  'appreci_focu',
  'focu_conflict',
  'conflict_present',
  'wife_expect_first',
  'expect_first_babi',
  'first_babi_togeth',
  'babi_togeth_made',
  'togeth_made_appoint',
  'made_appoint_find',
  'appoint_find_gender',
  'find_gender_babi',
  'gender_babi_import',
  'babi_import_hope',
  'import_hope_boy',
  'hope_boy_unfortun',
  'boy_unfortun_day',
  'unfortun_day_dr',
  'day_dr_appoint',
  'dr_appoint_attend',
  'appoint_attend_friend',
  'attend_friend_birthday',
  'friend_birthday_rememb',
  'birthday_rememb_last',
  'rememb_last_minut',
  'last_minut_ask',
  'minut_ask_wife',
  'ask_wife_could',
  'wife_could_cancel',
  'could_cancel_appoint',
  'cancel_appoint_go',
  'appoint_go_anoth',
  'go_anoth_day',
  'anoth_day_look',
  'day_look_shock',
  'look_shock_even',
  'shock_even_consid',
  'even_consid_cancel',
  'consid_cancel_appoint',
  'cancel_appoint_go',
  'appoint_go_friend',
  'go_friend_birthday',
  'friend_birthday_said',
  'birthday_said_choic',
  'said_choic_said',
  'choic_said_cancel',
  'said_cancel_dr',
  'cancel_dr_appoint',
  'dr_appoint_tabl',
  'appoint_tabl_appoint',
  'tabl_appoint_restrict',
  'appoint_restrict_specif',
  'restrict_specif_time',
  'specif_time_date',
  'time_date_cant',
  'date_cant_miss',
  'cant_miss_shell',
  'miss_shell_go',
  'shell_go_alon',
  'go_alon_told',
  'alon_told_thatd',
  'told_thatd_selfish',
  'thatd_selfish_besid',
  'selfish_besid_ruin',
  'besid_ruin_news',
  'ruin_news_find',
  'news_find_babi',
  'find_babi_boy',
  'babi_boy_girl',
  'boy_girl_cut',
  'girl_cut_discuss',
  'cut_discuss_told',
  'discuss_told_go',
  'told_go_birthday',
  'go_birthday_parti',
  'birthday_parti_later',
  'parti_later_found',
  'later_found_cancel',
  'found_cancel_dr',
  'cancel_dr_appoint',
  'dr_appoint_went',
  'appoint_went_mom',
  'went_mom_came',
  'mom_came_home',
  'came_home_seeth',
  'home_seeth_blew',
  'seeth_blew_start',
  'blew_start_argu',
  'start_argu_go',
  'argu_go_behind',
  'go_behind_back',
  'behind_back_without',
  'back_without_said',
  'without_said_fault',
  'said_fault_priorit',
  'fault_priorit_parti',
  'priorit_parti_child',
  'parti_child_told',
  'child_told_priorit',
  'told_priorit_anyth',
  'priorit_anyth_liter',
  'anyth_liter_couldv',
  'liter_couldv_cancel',
  'couldv_cancel_wouldv',
  'cancel_wouldv_went',
  'wouldv_went_anoth',
  'went_anoth_day',
  'anoth_day_clearli',
  'day_clearli_tri',
  'clearli_tri_steer',
  'tri_steer_fight',
  'steer_fight_direct',
  'fight_direct_look',
  'direct_look_like',
  'look_like_neglect',
  'like_neglect_irrespons',
  'neglect_irrespons_one',
  'irrespons_one_fought',
  'one_fought_said',
  'fought_said_im',
  'said_im_probabl',
  'im_probabl_angri',
  'probabl_angri_girl',
  'angri_girl_respond',
  'girl_respond_wrong',
  'respond_wrong_went',
  'wrong_went_outsid',
  'went_outsid_room',
  'outsid_room_claim',
  'room_claim_stress',
  'claim_stress_act',
  'stress_act_like',
  'act_like_owe',
  'like_owe_apolog',
  'owe_apolog_top',
  'apolog_top_everyth',
  'top_everyth_els',
  'everyth_els_feel',
  'els_feel_upset',
  'feel_upset_like',
  'upset_like_deciev',
  'like_deciev_aita',
  'deciev_aita_info',
  'aita_info_first',
  'info_first_jesu',
  'first_jesu_swear',
  'jesu_swear_came',
  'swear_came_think',
  'came_think_somewhat',
  'think_somewhat_justifi',
  'somewhat_justifi_frustrat',
  'justifi_frustrat_wrong',
  'frustrat_wrong_seem',
  'wrong_seem_although',
  'seem_although_wan',
  'although_wan_na',
  'wan_na_point',
  'na_point_go',
  'point_go_parti',
  'go_parti_without',
  'parti_without_tell',
  'without_tell_wife',
  'tell_wife_discuss',
  'wife_discuss_first',
  'discuss_first_also',
  'first_also_friend',
  'also_friend_live',
  'friend_live_hour',
  'live_hour_away',
  'hour_away_leav',
  'away_leav_appoit',
  'leav_appoit_know',
  'appoit_know_went',
  'know_went_wouldv',
  'went_wouldv_appreci',
  'wouldv_appreci_least',
  'appreci_least_upfront',
  'least_upfront_couldv',
  'upfront_couldv_said',
  'couldv_said_go',
  'said_go_anyway',
  'go_anyway_instead',
  'anyway_instead_told',
  'instead_told_go',
  'told_go_parti',
  'go_parti_think',
  'parti_think_go',
  'think_go_cancel',
  'go_cancel_reschedul',
  'cancel_reschedul_edit',
  'reschedul_edit_specul',
  'edit_specul_type',
  'specul_type_parent',
  'type_parent_amwil',
  'parent_amwil_realli',
  'amwil_realli_know',
  'realli_know_enough',
  'know_enough_make',
  'enough_make_assumpt',
  'make_assumpt_id',
  'assumpt_id_appreci',
  'id_appreci_focu',
  'appreci_focu_conflict',
  'focu_conflict_present'],
 ['cant',
  'believ',
  'im',
  'post',
  'made',
  'whole',
  'new',
  'account',
  'peopl',
  'life',
  'tie',
  'main',
  'one',
  'visibl',
  'muslim',
  'wear',
  'hijab',
  'care',
  'opinion',
  'im',
  'regard',
  'religion',
  'keep',
  'thought',
  'also',
  'live',
  'south',
  'usa',
  'thank',
  'specif',
  'citi',
  'live',
  'larg',
  'metropolitan',
  'one',
  'incred',
  'divers',
  'rare',
  'run',
  'issu',
  'howev',
  'friend',
  'let',
  'call',
  'salli',
  'marri',
  'man',
  'famili',
  'conserv',
  'american',
  'care',
  'less',
  'someon',
  'polit',
  'view',
  'unless',
  'start',
  'tri',
  'talk',
  'shove',
  'throat',
  'opinion',
  'invit',
  'debat',
  'prepar',
  'hear',
  'opinion',
  'sinc',
  'gave',
  'unsolicit',
  'time',
  'could',
  'neg',
  'affect',
  'someon',
  'els',
  'week',
  'ago',
  'went',
  'salli',
  'engag',
  'parti',
  'law',
  'loudli',
  'talk',
  'polit',
  'polit',
  'quit',
  'agre',
  'talk',
  'even',
  'go',
  'caus',
  'drama',
  'fight',
  'friend',
  'engag',
  'parti',
  'howev',
  'parti',
  'spent',
  'time',
  'hang',
  'friend',
  'salli',
  'law',
  'kept',
  'look',
  'oddli',
  'side',
  'eye',
  'tri',
  'take',
  'heart',
  'ignor',
  'next',
  'day',
  'salli',
  'call',
  'thank',
  'come',
  'point',
  'call',
  'seem',
  'nervou',
  'say',
  'someth',
  'ask',
  'spit',
  'admit',
  'made',
  'law',
  'uncomfort',
  'though',
  'freeli',
  'talk',
  'someon',
  'like',
  'around',
  'say',
  'sorri',
  'law',
  'seem',
  'like',
  'blatant',
  'racist',
  'like',
  'im',
  'one',
  'marri',
  'like',
  'hope',
  'great',
  'wed',
  'come',
  'salli',
  'expect',
  'help',
  'wed',
  'freelanc',
  'make',
  'artist',
  'ask',
  'take',
  'hijab',
  'wed',
  'makeup',
  'scare',
  'law',
  'may',
  'asshol',
  'tell',
  'way',
  'fuck',
  'hell',
  'would',
  'ever',
  'chang',
  'compromis',
  'religion',
  'bunch',
  'stranger',
  'step',
  'foot',
  'near',
  'id',
  'hate',
  'scare',
  'mad',
  'offend',
  'futur',
  'famili',
  'friend',
  'say',
  'suggest',
  'wildli',
  'inappropri',
  'promis',
  'makeup',
  'free',
  'wed',
  'month',
  'away',
  'left',
  'tough',
  'posit',
  'aita',
  'aww',
  'first',
  'award',
  'thank',
  'guy',
  '🥰🥰',
  'edit',
  'thank',
  'everyon',
  'amaz',
  'comment',
  'insight',
  'love',
  'read',
  'everi',
  'one',
  'kind',
  'thing',
  'say',
  'even',
  'disagre',
  'word',
  'thought',
  'slightli',
  'rude',
  'thank',
  'comment',
  'point',
  'someon',
  'said',
  'care',
  'opinion',
  'certainli',
  'get',
  'lot',
  'comment',
  'bla',
  'bla',
  'bla',
  'meant',
  'care',
  'bigot',
  'opinion',
  'critic',
  'religion',
  'absolut',
  'reason',
  'someon',
  'comment',
  'ta',
  'gave',
  'reason',
  'muslim',
  'suck',
  'oppress',
  'subjug',
  'men',
  'genuin',
  'read',
  'appreci',
  'feedback',
  'think',
  'post',
  'fake',
  'racism',
  'exist',
  'anymore…',
  'bro',
  'wish',
  'deal',
  'million',
  'african',
  'american',
  'poc',
  'across',
  'world',
  'undoubtedli',
  'million',
  'time',
  'wors',
  'minim',
  'experi',
  'fortun',
  'never',
  'experienc',
  'racism',
  'xenophobia',
  'first',
  'hand',
  'thank',
  'everyon',
  'appreci',
  'yall',
  'much',
  'cant_believ',
  'believ_im',
  'im_post',
  'post_made',
  'made_whole',
  'whole_new',
  'new_account',
  'account_peopl',
  'peopl_life',
  'life_tie',
  'tie_main',
  'main_one',
  'one_visibl',
  'visibl_muslim',
  'muslim_wear',
  'wear_hijab',
  'hijab_care',
  'care_opinion',
  'opinion_im',
  'im_regard',
  'regard_religion',
  'religion_keep',
  'keep_thought',
  'thought_also',
  'also_live',
  'live_south',
  'south_usa',
  'usa_thank',
  'thank_specif',
  'specif_citi',
  'citi_live',
  'live_larg',
  'larg_metropolitan',
  'metropolitan_one',
  'one_incred',
  'incred_divers',
  'divers_rare',
  'rare_run',
  'run_issu',
  'issu_howev',
  'howev_friend',
  'friend_let',
  'let_call',
  'call_salli',
  'salli_marri',
  'marri_man',
  'man_famili',
  'famili_conserv',
  'conserv_american',
  'american_care',
  'care_less',
  'less_someon',
  'someon_polit',
  'polit_view',
  'view_unless',
  'unless_start',
  'start_tri',
  'tri_talk',
  'talk_shove',
  'shove_throat',
  'throat_opinion',
  'opinion_invit',
  'invit_debat',
  'debat_prepar',
  'prepar_hear',
  'hear_opinion',
  'opinion_sinc',
  'sinc_gave',
  'gave_unsolicit',
  'unsolicit_time',
  'time_could',
  'could_neg',
  'neg_affect',
  'affect_someon',
  'someon_els',
  'els_week',
  'week_ago',
  'ago_went',
  'went_salli',
  'salli_engag',
  'engag_parti',
  'parti_law',
  'law_loudli',
  'loudli_talk',
  'talk_polit',
  'polit_polit',
  'polit_quit',
  'quit_agre',
  'agre_talk',
  'talk_even',
  'even_go',
  'go_caus',
  'caus_drama',
  'drama_fight',
  'fight_friend',
  'friend_engag',
  'engag_parti',
  'parti_howev',
  'howev_parti',
  'parti_spent',
  'spent_time',
  'time_hang',
  'hang_friend',
  'friend_salli',
  'salli_law',
  'law_kept',
  'kept_look',
  'look_oddli',
  'oddli_side',
  'side_eye',
  'eye_tri',
  'tri_take',
  'take_heart',
  'heart_ignor',
  'ignor_next',
  'next_day',
  'day_salli',
  'salli_call',
  'call_thank',
  'thank_come',
  'come_point',
  'point_call',
  'call_seem',
  'seem_nervou',
  'nervou_say',
  'say_someth',
  'someth_ask',
  'ask_spit',
  'spit_admit',
  'admit_made',
  'made_law',
  'law_uncomfort',
  'uncomfort_though',
  'though_freeli',
  'freeli_talk',
  'talk_someon',
  'someon_like',
  'like_around',
  'around_say',
  'say_sorri',
  'sorri_law',
  'law_seem',
  'seem_like',
  'like_blatant',
  'blatant_racist',
  'racist_like',
  'like_im',
  'im_one',
  'one_marri',
  'marri_like',
  'like_hope',
  'hope_great',
  'great_wed',
  'wed_come',
  'come_salli',
  'salli_expect',
  'expect_help',
  'help_wed',
  'wed_freelanc',
  'freelanc_make',
  'make_artist',
  'artist_ask',
  'ask_take',
  'take_hijab',
  'hijab_wed',
  'wed_makeup',
  'makeup_scare',
  'scare_law',
  'law_may',
  'may_asshol',
  'asshol_tell',
  'tell_way',
  'way_fuck',
  'fuck_hell',
  'hell_would',
  'would_ever',
  'ever_chang',
  'chang_compromis',
  'compromis_religion',
  'religion_bunch',
  'bunch_stranger',
  'stranger_step',
  'step_foot',
  'foot_near',
  'near_id',
  'id_hate',
  'hate_scare',
  'scare_mad',
  'mad_offend',
  'offend_futur',
  'futur_famili',
  'famili_friend',
  'friend_say',
  'say_suggest',
  'suggest_wildli',
  'wildli_inappropri',
  'inappropri_promis',
  'promis_makeup',
  'makeup_free',
  'free_wed',
  'wed_month',
  'month_away',
  'away_left',
  'left_tough',
  'tough_posit',
  'posit_aita',
  'aita_aww',
  'aww_first',
  'first_award',
  'award_thank',
  'thank_guy',
  'guy_🥰🥰',
  '🥰🥰_edit',
  'edit_thank',
  'thank_everyon',
  'everyon_amaz',
  'amaz_comment',
  'comment_insight',
  'insight_love',
  'love_read',
  'read_everi',
  'everi_one',
  'one_kind',
  'kind_thing',
  'thing_say',
  'say_even',
  'even_disagre',
  'disagre_word',
  'word_thought',
  'thought_slightli',
  'slightli_rude',
  'rude_thank',
  'thank_comment',
  'comment_point',
  'point_someon',
  'someon_said',
  'said_care',
  'care_opinion',
  'opinion_certainli',
  'certainli_get',
  'get_lot',
  'lot_comment',
  'comment_bla',
  'bla_bla',
  'bla_bla',
  'bla_meant',
  'meant_care',
  'care_bigot',
  'bigot_opinion',
  'opinion_critic',
  'critic_religion',
  'religion_absolut',
  'absolut_reason',
  'reason_someon',
  'someon_comment',
  'comment_ta',
  'ta_gave',
  'gave_reason',
  'reason_muslim',
  'muslim_suck',
  'suck_oppress',
  'oppress_subjug',
  'subjug_men',
  'men_genuin',
  'genuin_read',
  'read_appreci',
  'appreci_feedback',
  'feedback_think',
  'think_post',
  'post_fake',
  'fake_racism',
  'racism_exist',
  'exist_anymore…',
  'anymore…_bro',
  'bro_wish',
  'wish_deal',
  'deal_million',
  'million_african',
  'african_american',
  'american_poc',
  'poc_across',
  'across_world',
  'world_undoubtedli',
  'undoubtedli_million',
  'million_time',
  'time_wors',
  'wors_minim',
  'minim_experi',
  'experi_fortun',
  'fortun_never',
  'never_experienc',
  'experienc_racism',
  'racism_xenophobia',
  'xenophobia_first',
  'first_hand',
  'hand_thank',
  'thank_everyon',
  'everyon_appreci',
  'appreci_yall',
  'yall_much',
  'cant_believ_im',
  'believ_im_post',
  'im_post_made',
  'post_made_whole',
  'made_whole_new',
  'whole_new_account',
  'new_account_peopl',
  'account_peopl_life',
  'peopl_life_tie',
  'life_tie_main',
  'tie_main_one',
  'main_one_visibl',
  'one_visibl_muslim',
  'visibl_muslim_wear',
  'muslim_wear_hijab',
  'wear_hijab_care',
  'hijab_care_opinion',
  'care_opinion_im',
  'opinion_im_regard',
  'im_regard_religion',
  'regard_religion_keep',
  'religion_keep_thought',
  'keep_thought_also',
  'thought_also_live',
  'also_live_south',
  'live_south_usa',
  'south_usa_thank',
  'usa_thank_specif',
  'thank_specif_citi',
  'specif_citi_live',
  'citi_live_larg',
  'live_larg_metropolitan',
  'larg_metropolitan_one',
  'metropolitan_one_incred',
  'one_incred_divers',
  'incred_divers_rare',
  'divers_rare_run',
  'rare_run_issu',
  'run_issu_howev',
  'issu_howev_friend',
  'howev_friend_let',
  'friend_let_call',
  'let_call_salli',
  'call_salli_marri',
  'salli_marri_man',
  'marri_man_famili',
  'man_famili_conserv',
  'famili_conserv_american',
  'conserv_american_care',
  'american_care_less',
  'care_less_someon',
  'less_someon_polit',
  'someon_polit_view',
  'polit_view_unless',
  'view_unless_start',
  'unless_start_tri',
  'start_tri_talk',
  'tri_talk_shove',
  'talk_shove_throat',
  'shove_throat_opinion',
  'throat_opinion_invit',
  'opinion_invit_debat',
  'invit_debat_prepar',
  'debat_prepar_hear',
  'prepar_hear_opinion',
  'hear_opinion_sinc',
  'opinion_sinc_gave',
  'sinc_gave_unsolicit',
  'gave_unsolicit_time',
  'unsolicit_time_could',
  'time_could_neg',
  'could_neg_affect',
  'neg_affect_someon',
  'affect_someon_els',
  'someon_els_week',
  'els_week_ago',
  'week_ago_went',
  'ago_went_salli',
  'went_salli_engag',
  'salli_engag_parti',
  'engag_parti_law',
  'parti_law_loudli',
  'law_loudli_talk',
  'loudli_talk_polit',
  'talk_polit_polit',
  'polit_polit_quit',
  'polit_quit_agre',
  'quit_agre_talk',
  'agre_talk_even',
  'talk_even_go',
  'even_go_caus',
  'go_caus_drama',
  'caus_drama_fight',
  'drama_fight_friend',
  'fight_friend_engag',
  'friend_engag_parti',
  'engag_parti_howev',
  'parti_howev_parti',
  'howev_parti_spent',
  'parti_spent_time',
  'spent_time_hang',
  'time_hang_friend',
  'hang_friend_salli',
  'friend_salli_law',
  'salli_law_kept',
  'law_kept_look',
  'kept_look_oddli',
  'look_oddli_side',
  'oddli_side_eye',
  'side_eye_tri',
  'eye_tri_take',
  'tri_take_heart',
  'take_heart_ignor',
  'heart_ignor_next',
  'ignor_next_day',
  'next_day_salli',
  'day_salli_call',
  'salli_call_thank',
  'call_thank_come',
  'thank_come_point',
  'come_point_call',
  'point_call_seem',
  'call_seem_nervou',
  'seem_nervou_say',
  'nervou_say_someth',
  'say_someth_ask',
  'someth_ask_spit',
  'ask_spit_admit',
  'spit_admit_made',
  'admit_made_law',
  'made_law_uncomfort',
  'law_uncomfort_though',
  'uncomfort_though_freeli',
  'though_freeli_talk',
  'freeli_talk_someon',
  'talk_someon_like',
  'someon_like_around',
  'like_around_say',
  'around_say_sorri',
  'say_sorri_law',
  'sorri_law_seem',
  'law_seem_like',
  'seem_like_blatant',
  'like_blatant_racist',
  'blatant_racist_like',
  'racist_like_im',
  'like_im_one',
  'im_one_marri',
  'one_marri_like',
  'marri_like_hope',
  'like_hope_great',
  'hope_great_wed',
  'great_wed_come',
  'wed_come_salli',
  'come_salli_expect',
  'salli_expect_help',
  'expect_help_wed',
  'help_wed_freelanc',
  'wed_freelanc_make',
  'freelanc_make_artist',
  'make_artist_ask',
  'artist_ask_take',
  'ask_take_hijab',
  'take_hijab_wed',
  'hijab_wed_makeup',
  'wed_makeup_scare',
  'makeup_scare_law',
  'scare_law_may',
  'law_may_asshol',
  'may_asshol_tell',
  'asshol_tell_way',
  'tell_way_fuck',
  'way_fuck_hell',
  'fuck_hell_would',
  'hell_would_ever',
  'would_ever_chang',
  'ever_chang_compromis',
  'chang_compromis_religion',
  'compromis_religion_bunch',
  'religion_bunch_stranger',
  'bunch_stranger_step',
  'stranger_step_foot',
  'step_foot_near',
  'foot_near_id',
  'near_id_hate',
  'id_hate_scare',
  'hate_scare_mad',
  'scare_mad_offend',
  'mad_offend_futur',
  'offend_futur_famili',
  'futur_famili_friend',
  'famili_friend_say',
  'friend_say_suggest',
  'say_suggest_wildli',
  'suggest_wildli_inappropri',
  'wildli_inappropri_promis',
  'inappropri_promis_makeup',
  'promis_makeup_free',
  'makeup_free_wed',
  'free_wed_month',
  'wed_month_away',
  'month_away_left',
  'away_left_tough',
  'left_tough_posit',
  'tough_posit_aita',
  'posit_aita_aww',
  'aita_aww_first',
  'aww_first_award',
  'first_award_thank',
  'award_thank_guy',
  'thank_guy_🥰🥰',
  'guy_🥰🥰_edit',
  '🥰🥰_edit_thank',
  'edit_thank_everyon',
  'thank_everyon_amaz',
  'everyon_amaz_comment',
  'amaz_comment_insight',
  'comment_insight_love',
  'insight_love_read',
  'love_read_everi',
  'read_everi_one',
  'everi_one_kind',
  'one_kind_thing',
  'kind_thing_say',
  'thing_say_even',
  'say_even_disagre',
  'even_disagre_word',
  'disagre_word_thought',
  'word_thought_slightli',
  'thought_slightli_rude',
  'slightli_rude_thank',
  'rude_thank_comment',
  'thank_comment_point',
  'comment_point_someon',
  'point_someon_said',
  'someon_said_care',
  'said_care_opinion',
  'care_opinion_certainli',
  'opinion_certainli_get',
  'certainli_get_lot',
  'get_lot_comment',
  'lot_comment_bla',
  'comment_bla_bla',
  'bla_bla_bla',
  'bla_bla_meant',
  'bla_meant_care',
  'meant_care_bigot',
  'care_bigot_opinion',
  'bigot_opinion_critic',
  'opinion_critic_religion',
  'critic_religion_absolut',
  'religion_absolut_reason',
  'absolut_reason_someon',
  'reason_someon_comment',
  'someon_comment_ta',
  'comment_ta_gave',
  'ta_gave_reason',
  'gave_reason_muslim',
  'reason_muslim_suck',
  'muslim_suck_oppress',
  'suck_oppress_subjug',
  'oppress_subjug_men',
  'subjug_men_genuin',
  'men_genuin_read',
  'genuin_read_appreci',
  'read_appreci_feedback',
  'appreci_feedback_think',
  'feedback_think_post',
  'think_post_fake',
  'post_fake_racism',
  'fake_racism_exist',
  'racism_exist_anymore…',
  'exist_anymore…_bro',
  'anymore…_bro_wish',
  'bro_wish_deal',
  'wish_deal_million',
  'deal_million_african',
  'million_african_american',
  'african_american_poc',
  'american_poc_across',
  'poc_across_world',
  'across_world_undoubtedli',
  'world_undoubtedli_million',
  'undoubtedli_million_time',
  'million_time_wors',
  'time_wors_minim',
  'wors_minim_experi',
  'minim_experi_fortun',
  'experi_fortun_never',
  'fortun_never_experienc',
  'never_experienc_racism',
  'experienc_racism_xenophobia',
  'racism_xenophobia_first',
  'xenophobia_first_hand',
  'first_hand_thank',
  'hand_thank_everyon',
  'thank_everyon_appreci',
  'everyon_appreci_yall',
  'appreci_yall_much'],
 ['im',
  'turn',
  'less',
  'month',
  'parent',
  'talk',
  'throw',
  'parti',
  'friend',
  'famili',
  'celebr',
  'let',
  'get',
  'excit',
  'start',
  'feel',
  'dumb',
  'part',
  'see',
  'littl',
  'sister',
  'ava',
  'babi',
  'parent',
  'tri',
  'year',
  'born',
  'struggl',
  'born',
  'prematur',
  'almost',
  'die',
  'meant',
  'parent',
  'put',
  'lot',
  'time',
  'littl',
  'meant',
  'lot',
  'time',
  'world',
  'revolv',
  'around',
  'back',
  'would',
  'hear',
  'peopl',
  'say',
  'littl',
  'older',
  'thing',
  'would',
  'return',
  'normal',
  'never',
  'realli',
  'parent',
  'priorit',
  'ava',
  'know',
  'lot',
  'younger',
  'make',
  'sens',
  'time',
  'exampl',
  'two',
  'year',
  'ago',
  'christma',
  'realli',
  'want',
  'ps',
  'made',
  'deal',
  'parent',
  'save',
  'amount',
  'money',
  'would',
  'pay',
  'rest',
  'gift',
  'drop',
  'came',
  'close',
  'us',
  'money',
  'mom',
  'told',
  'ava',
  'need',
  'haircut',
  'want',
  'pamper',
  'littl',
  'shed',
  'development',
  'pediatrician',
  'hate',
  'money',
  'would',
  'gotten',
  'ps',
  'went',
  'never',
  'got',
  'ps',
  'instead',
  'got',
  'cloth',
  'food',
  'stuff',
  'christma',
  'food',
  'share',
  'item',
  'get',
  'even',
  'favorit',
  'high',
  'school',
  'award',
  'ceremoni',
  'may',
  'celebr',
  'student',
  'help',
  'make',
  'school',
  'better',
  'given',
  'one',
  'help',
  'school',
  'act',
  'mentor',
  'sort',
  'ava',
  'school',
  'play',
  'day',
  'parent',
  'chose',
  'go',
  'school',
  'play',
  'instead',
  'award',
  'ceremoni',
  'even',
  'rememb',
  'ask',
  'got',
  'home',
  'birthday',
  'alway',
  'aim',
  'someth',
  'ava',
  'enjoy',
  'chuck',
  'chees',
  'bring',
  'friend',
  'hire',
  'bounc',
  'hous',
  'famili',
  'come',
  'alway',
  'smaller',
  'one',
  'mean',
  'get',
  'enjoy',
  'younger',
  'kid',
  'small',
  'bounc',
  'hous',
  'spotlight',
  'alway',
  'goe',
  'least',
  'blown',
  'birthday',
  'candl',
  'sinc',
  'year',
  'realli',
  'thought',
  'would',
  'differ',
  'plan',
  'sound',
  'realli',
  'fun',
  'parent',
  'found',
  'ava',
  'bulli',
  'school',
  'rough',
  'time',
  'told',
  'look',
  'forward',
  'anyth',
  'includ',
  'parti',
  'thought',
  'would',
  'nice',
  'someth',
  'could',
  'enjoy',
  'give',
  'spotlight',
  'day',
  'assur',
  'love',
  'want',
  'told',
  'birthday',
  'thought',
  'want',
  'enjoy',
  'told',
  'ava',
  'need',
  'big',
  'brother',
  'think',
  'make',
  'feel',
  'special',
  'told',
  'deserv',
  'feel',
  'way',
  'told',
  'go',
  'done',
  'told',
  'everyth',
  'need',
  'ava',
  'might',
  'whole',
  'world',
  'might',
  'whole',
  'focu',
  'life',
  'mine',
  'parent',
  'got',
  'mad',
  'aita',
  'im_turn',
  'turn_less',
  'less_month',
  'month_parent',
  'parent_talk',
  'talk_throw',
  'throw_parti',
  'parti_friend',
  'friend_famili',
  'famili_celebr',
  'celebr_let',
  'let_get',
  'get_excit',
  'excit_start',
  'start_feel',
  'feel_dumb',
  'dumb_part',
  'part_see',
  'see_littl',
  'littl_sister',
  'sister_ava',
  'ava_babi',
  'babi_parent',
  'parent_tri',
  'tri_year',
  'year_born',
  'born_struggl',
  'struggl_born',
  'born_prematur',
  'prematur_almost',
  'almost_die',
  'die_meant',
  'meant_parent',
  'parent_put',
  'put_lot',
  'lot_time',
  'time_littl',
  'littl_meant',
  'meant_lot',
  'lot_time',
  'time_world',
  'world_revolv',
  'revolv_around',
  'around_back',
  'back_would',
  'would_hear',
  'hear_peopl',
  'peopl_say',
  'say_littl',
  'littl_older',
  'older_thing',
  'thing_would',
  'would_return',
  'return_normal',
  'normal_never',
  'never_realli',
  'realli_parent',
  'parent_priorit',
  'priorit_ava',
  'ava_know',
  'know_lot',
  'lot_younger',
  'younger_make',
  'make_sens',
  'sens_time',
  'time_exampl',
  'exampl_two',
  'two_year',
  'year_ago',
  'ago_christma',
  'christma_realli',
  'realli_want',
  'want_ps',
  'ps_made',
  'made_deal',
  'deal_parent',
  'parent_save',
  'save_amount',
  'amount_money',
  'money_would',
  'would_pay',
  'pay_rest',
  'rest_gift',
  'gift_drop',
  'drop_came',
  'came_close',
  'close_us',
  'us_money',
  'money_mom',
  'mom_told',
  'told_ava',
  'ava_need',
  'need_haircut',
  'haircut_want',
  'want_pamper',
  'pamper_littl',
  'littl_shed',
  'shed_development',
  'development_pediatrician',
  'pediatrician_hate',
  'hate_money',
  'money_would',
  'would_gotten',
  'gotten_ps',
  'ps_went',
  'went_never',
  'never_got',
  'got_ps',
  'ps_instead',
  'instead_got',
  'got_cloth',
  'cloth_food',
  'food_stuff',
  'stuff_christma',
  'christma_food',
  'food_share',
  'share_item',
  'item_get',
  'get_even',
  'even_favorit',
  'favorit_high',
  'high_school',
  'school_award',
  'award_ceremoni',
  'ceremoni_may',
  'may_celebr',
  'celebr_student',
  'student_help',
  'help_make',
  'make_school',
  'school_better',
  'better_given',
  'given_one',
  'one_help',
  'help_school',
  'school_act',
  'act_mentor',
  'mentor_sort',
  'sort_ava',
  'ava_school',
  'school_play',
  'play_day',
  'day_parent',
  'parent_chose',
  'chose_go',
  'go_school',
  'school_play',
  'play_instead',
  'instead_award',
  'award_ceremoni',
  'ceremoni_even',
  'even_rememb',
  'rememb_ask',
  'ask_got',
  'got_home',
  'home_birthday',
  'birthday_alway',
  'alway_aim',
  'aim_someth',
  'someth_ava',
  'ava_enjoy',
  'enjoy_chuck',
  'chuck_chees',
  'chees_bring',
  'bring_friend',
  'friend_hire',
  'hire_bounc',
  'bounc_hous',
  'hous_famili',
  'famili_come',
  'come_alway',
  'alway_smaller',
  'smaller_one',
  'one_mean',
  'mean_get',
  'get_enjoy',
  'enjoy_younger',
  'younger_kid',
  'kid_small',
  'small_bounc',
  'bounc_hous',
  'hous_spotlight',
  'spotlight_alway',
  'alway_goe',
  'goe_least',
  'least_blown',
  'blown_birthday',
  'birthday_candl',
  'candl_sinc',
  'sinc_year',
  'year_realli',
  'realli_thought',
  'thought_would',
  'would_differ',
  'differ_plan',
  'plan_sound',
  'sound_realli',
  'realli_fun',
  'fun_parent',
  'parent_found',
  'found_ava',
  'ava_bulli',
  'bulli_school',
  'school_rough',
  'rough_time',
  'time_told',
  'told_look',
  'look_forward',
  'forward_anyth',
  'anyth_includ',
  'includ_parti',
  'parti_thought',
  'thought_would',
  'would_nice',
  'nice_someth',
  'someth_could',
  'could_enjoy',
  'enjoy_give',
  'give_spotlight',
  'spotlight_day',
  'day_assur',
  'assur_love',
  'love_want',
  'want_told',
  'told_birthday',
  'birthday_thought',
  'thought_want',
  'want_enjoy',
  'enjoy_told',
  'told_ava',
  'ava_need',
  'need_big',
  'big_brother',
  'brother_think',
  'think_make',
  'make_feel',
  'feel_special',
  'special_told',
  'told_deserv',
  'deserv_feel',
  'feel_way',
  'way_told',
  'told_go',
  'go_done',
  'done_told',
  'told_everyth',
  'everyth_need',
  'need_ava',
  'ava_might',
  'might_whole',
  'whole_world',
  'world_might',
  'might_whole',
  'whole_focu',
  'focu_life',
  'life_mine',
  'mine_parent',
  'parent_got',
  'got_mad',
  'mad_aita',
  'im_turn_less',
  'turn_less_month',
  'less_month_parent',
  'month_parent_talk',
  'parent_talk_throw',
  'talk_throw_parti',
  'throw_parti_friend',
  'parti_friend_famili',
  'friend_famili_celebr',
  'famili_celebr_let',
  'celebr_let_get',
  'let_get_excit',
  'get_excit_start',
  'excit_start_feel',
  'start_feel_dumb',
  'feel_dumb_part',
  'dumb_part_see',
  'part_see_littl',
  'see_littl_sister',
  'littl_sister_ava',
  'sister_ava_babi',
  'ava_babi_parent',
  'babi_parent_tri',
  'parent_tri_year',
  'tri_year_born',
  'year_born_struggl',
  'born_struggl_born',
  'struggl_born_prematur',
  'born_prematur_almost',
  'prematur_almost_die',
  'almost_die_meant',
  'die_meant_parent',
  'meant_parent_put',
  'parent_put_lot',
  'put_lot_time',
  'lot_time_littl',
  'time_littl_meant',
  'littl_meant_lot',
  'meant_lot_time',
  'lot_time_world',
  'time_world_revolv',
  'world_revolv_around',
  'revolv_around_back',
  'around_back_would',
  'back_would_hear',
  'would_hear_peopl',
  'hear_peopl_say',
  'peopl_say_littl',
  'say_littl_older',
  'littl_older_thing',
  'older_thing_would',
  'thing_would_return',
  'would_return_normal',
  'return_normal_never',
  'normal_never_realli',
  'never_realli_parent',
  'realli_parent_priorit',
  'parent_priorit_ava',
  'priorit_ava_know',
  'ava_know_lot',
  'know_lot_younger',
  'lot_younger_make',
  'younger_make_sens',
  'make_sens_time',
  'sens_time_exampl',
  'time_exampl_two',
  'exampl_two_year',
  'two_year_ago',
  'year_ago_christma',
  'ago_christma_realli',
  'christma_realli_want',
  'realli_want_ps',
  'want_ps_made',
  'ps_made_deal',
  'made_deal_parent',
  'deal_parent_save',
  'parent_save_amount',
  'save_amount_money',
  'amount_money_would',
  'money_would_pay',
  'would_pay_rest',
  'pay_rest_gift',
  'rest_gift_drop',
  'gift_drop_came',
  'drop_came_close',
  'came_close_us',
  'close_us_money',
  'us_money_mom',
  'money_mom_told',
  'mom_told_ava',
  'told_ava_need',
  'ava_need_haircut',
  'need_haircut_want',
  'haircut_want_pamper',
  'want_pamper_littl',
  'pamper_littl_shed',
  'littl_shed_development',
  'shed_development_pediatrician',
  'development_pediatrician_hate',
  'pediatrician_hate_money',
  'hate_money_would',
  'money_would_gotten',
  'would_gotten_ps',
  'gotten_ps_went',
  'ps_went_never',
  'went_never_got',
  'never_got_ps',
  'got_ps_instead',
  'ps_instead_got',
  'instead_got_cloth',
  'got_cloth_food',
  'cloth_food_stuff',
  'food_stuff_christma',
  'stuff_christma_food',
  'christma_food_share',
  'food_share_item',
  'share_item_get',
  'item_get_even',
  'get_even_favorit',
  'even_favorit_high',
  'favorit_high_school',
  'high_school_award',
  'school_award_ceremoni',
  'award_ceremoni_may',
  'ceremoni_may_celebr',
  'may_celebr_student',
  'celebr_student_help',
  'student_help_make',
  'help_make_school',
  'make_school_better',
  'school_better_given',
  'better_given_one',
  'given_one_help',
  'one_help_school',
  'help_school_act',
  'school_act_mentor',
  'act_mentor_sort',
  'mentor_sort_ava',
  'sort_ava_school',
  'ava_school_play',
  'school_play_day',
  'play_day_parent',
  'day_parent_chose',
  'parent_chose_go',
  'chose_go_school',
  'go_school_play',
  'school_play_instead',
  'play_instead_award',
  'instead_award_ceremoni',
  'award_ceremoni_even',
  'ceremoni_even_rememb',
  'even_rememb_ask',
  'rememb_ask_got',
  'ask_got_home',
  'got_home_birthday',
  'home_birthday_alway',
  'birthday_alway_aim',
  'alway_aim_someth',
  'aim_someth_ava',
  'someth_ava_enjoy',
  'ava_enjoy_chuck',
  'enjoy_chuck_chees',
  'chuck_chees_bring',
  'chees_bring_friend',
  'bring_friend_hire',
  'friend_hire_bounc',
  'hire_bounc_hous',
  'bounc_hous_famili',
  'hous_famili_come',
  'famili_come_alway',
  'come_alway_smaller',
  'alway_smaller_one',
  'smaller_one_mean',
  'one_mean_get',
  'mean_get_enjoy',
  'get_enjoy_younger',
  'enjoy_younger_kid',
  'younger_kid_small',
  'kid_small_bounc',
  'small_bounc_hous',
  'bounc_hous_spotlight',
  'hous_spotlight_alway',
  'spotlight_alway_goe',
  'alway_goe_least',
  'goe_least_blown',
  'least_blown_birthday',
  'blown_birthday_candl',
  'birthday_candl_sinc',
  'candl_sinc_year',
  'sinc_year_realli',
  'year_realli_thought',
  'realli_thought_would',
  'thought_would_differ',
  'would_differ_plan',
  'differ_plan_sound',
  'plan_sound_realli',
  'sound_realli_fun',
  'realli_fun_parent',
  'fun_parent_found',
  'parent_found_ava',
  'found_ava_bulli',
  'ava_bulli_school',
  'bulli_school_rough',
  'school_rough_time',
  'rough_time_told',
  'time_told_look',
  'told_look_forward',
  'look_forward_anyth',
  'forward_anyth_includ',
  'anyth_includ_parti',
  'includ_parti_thought',
  'parti_thought_would',
  'thought_would_nice',
  'would_nice_someth',
  'nice_someth_could',
  'someth_could_enjoy',
  'could_enjoy_give',
  'enjoy_give_spotlight',
  'give_spotlight_day',
  'spotlight_day_assur',
  'day_assur_love',
  'assur_love_want',
  'love_want_told',
  'want_told_birthday',
  'told_birthday_thought',
  'birthday_thought_want',
  'thought_want_enjoy',
  'want_enjoy_told',
  'enjoy_told_ava',
  'told_ava_need',
  'ava_need_big',
  'need_big_brother',
  'big_brother_think',
  'brother_think_make',
  'think_make_feel',
  'make_feel_special',
  'feel_special_told',
  'special_told_deserv',
  'told_deserv_feel',
  'deserv_feel_way',
  'feel_way_told',
  'way_told_go',
  'told_go_done',
  'go_done_told',
  'done_told_everyth',
  'told_everyth_need',
  'everyth_need_ava',
  'need_ava_might',
  'ava_might_whole',
  'might_whole_world',
  'whole_world_might',
  'world_might_whole',
  'might_whole_focu',
  'whole_focu_life',
  'focu_life_mine',
  'life_mine_parent',
  'mine_parent_got',
  'parent_got_mad',
  'got_mad_aita'],
 ['fianc',
  'come',
  'well',
  'famili',
  'come',
  'work',
  'class',
  'famili',
  'fianc',
  'famili',
  'nice',
  'cant',
  'help',
  'throw',
  'comment',
  'might',
  'gold',
  'digger',
  'exampl',
  'buy',
  'someth',
  'theyll',
  'go',
  'oh',
  'jason',
  'bought',
  'know',
  'look',
  'like',
  'right',
  'andor',
  'wait',
  'jason',
  'paid',
  'gold',
  'digger',
  'make',
  'partner',
  'pay',
  'stuff',
  'time',
  '*',
  'sayin',
  '*',
  'demean',
  'fianc',
  'noth',
  'stop',
  'especi',
  'bad',
  'place',
  'life',
  'lost',
  'job',
  'sinc',
  'keep',
  'secret',
  'im',
  'one',
  'pay',
  'everyth',
  'go',
  'month',
  'last',
  'week',
  'parent',
  'invit',
  'us',
  'dinner',
  'insist',
  'go',
  'went',
  'dinner',
  'tabl',
  'mom',
  'grab',
  'hand',
  'liter',
  'eat',
  'look',
  'bracelet',
  'went',
  'oh',
  'bracelet',
  'look',
  'realli',
  'nice',
  'jason',
  'pay',
  'nod',
  'remind',
  'bought',
  'birthday',
  'gift',
  'last',
  'year',
  'like',
  'hmmmm',
  'wonder',
  'much',
  'cost',
  'lean',
  'back',
  'said',
  'know',
  'rememb',
  'brother',
  'date',
  'gold',
  'digger',
  'womansh',
  'reciev',
  'expens',
  'stuff',
  'like',
  'point',
  'bracelet',
  'bracelet',
  'birthday',
  'stun',
  'cut',
  'ask',
  'meant',
  'say',
  'gold',
  'digger',
  'threw',
  'hand',
  'went',
  'meanif',
  'shoe',
  'fit',
  'laugh',
  'awkwardli',
  'silenc',
  'took',
  'look',
  'fianc',
  'shook',
  'head',
  'like',
  'snap',
  'told',
  'bold',
  'impli',
  'gold',
  'digger',
  'im',
  'liter',
  'provid',
  'unemploy',
  'son',
  'month',
  'look',
  'shock',
  'glanc',
  'shock',
  'dad',
  'ask',
  'true',
  'fianc',
  'froze',
  'look',
  'angri',
  'argument',
  'ensu',
  'dinner',
  'cut',
  'short',
  'leav',
  'start',
  'berat',
  'rage',
  'fit',
  'car',
  'yell',
  'lash',
  'defens',
  'said',
  'sat',
  'let',
  'mom',
  'continuelli',
  'impli',
  'gold',
  'digger',
  'said',
  'never',
  'outright',
  'call',
  'gold',
  'digger',
  'head',
  'said',
  'still',
  'right',
  'take',
  'advantag',
  'unfortun',
  'circumst',
  'get',
  'back',
  'mom',
  'expos',
  'famili',
  'parent',
  'went',
  'disappoint',
  'result',
  'got',
  'disinvit',
  'thanksgiv',
  'blew',
  'morn',
  'kept',
  'say',
  'screw',
  'badli',
  'innoc',
  'bystand',
  'fianc_come',
  'come_well',
  'well_famili',
  'famili_come',
  'come_work',
  'work_class',
  'class_famili',
  'famili_fianc',
  'fianc_famili',
  'famili_nice',
  'nice_cant',
  'cant_help',
  'help_throw',
  'throw_comment',
  'comment_might',
  'might_gold',
  'gold_digger',
  'digger_exampl',
  'exampl_buy',
  'buy_someth',
  'someth_theyll',
  'theyll_go',
  'go_oh',
  'oh_jason',
  'jason_bought',
  'bought_know',
  'know_look',
  'look_like',
  'like_right',
  'right_andor',
  'andor_wait',
  'wait_jason',
  'jason_paid',
  'paid_gold',
  'gold_digger',
  'digger_make',
  'make_partner',
  'partner_pay',
  'pay_stuff',
  'stuff_time',
  'time_*',
  '*_sayin',
  'sayin_*',
  '*_demean',
  'demean_fianc',
  'fianc_noth',
  'noth_stop',
  'stop_especi',
  'especi_bad',
  'bad_place',
  'place_life',
  'life_lost',
  'lost_job',
  'job_sinc',
  'sinc_keep',
  'keep_secret',
  'secret_im',
  'im_one',
  'one_pay',
  'pay_everyth',
  'everyth_go',
  'go_month',
  'month_last',
  'last_week',
  'week_parent',
  'parent_invit',
  'invit_us',
  'us_dinner',
  'dinner_insist',
  'insist_go',
  'go_went',
  'went_dinner',
  'dinner_tabl',
  'tabl_mom',
  'mom_grab',
  'grab_hand',
  'hand_liter',
  'liter_eat',
  'eat_look',
  'look_bracelet',
  'bracelet_went',
  'went_oh',
  'oh_bracelet',
  'bracelet_look',
  'look_realli',
  'realli_nice',
  'nice_jason',
  'jason_pay',
  'pay_nod',
  'nod_remind',
  'remind_bought',
  'bought_birthday',
  'birthday_gift',
  'gift_last',
  'last_year',
  'year_like',
  'like_hmmmm',
  'hmmmm_wonder',
  'wonder_much',
  'much_cost',
  'cost_lean',
  'lean_back',
  'back_said',
  'said_know',
  'know_rememb',
  'rememb_brother',
  'brother_date',
  'date_gold',
  'gold_digger',
  'digger_womansh',
  'womansh_reciev',
  'reciev_expens',
  'expens_stuff',
  'stuff_like',
  'like_point',
  'point_bracelet',
  'bracelet_bracelet',
  'bracelet_birthday',
  'birthday_stun',
  'stun_cut',
  'cut_ask',
  'ask_meant',
  'meant_say',
  'say_gold',
  'gold_digger',
  'digger_threw',
  'threw_hand',
  'hand_went',
  'went_meanif',
  'meanif_shoe',
  'shoe_fit',
  'fit_laugh',
  'laugh_awkwardli',
  'awkwardli_silenc',
  'silenc_took',
  'took_look',
  'look_fianc',
  'fianc_shook',
  'shook_head',
  'head_like',
  'like_snap',
  'snap_told',
  'told_bold',
  'bold_impli',
  'impli_gold',
  'gold_digger',
  'digger_im',
  'im_liter',
  'liter_provid',
  'provid_unemploy',
  'unemploy_son',
  'son_month',
  'month_look',
  'look_shock',
  'shock_glanc',
  'glanc_shock',
  'shock_dad',
  'dad_ask',
  'ask_true',
  'true_fianc',
  'fianc_froze',
  'froze_look',
  'look_angri',
  'angri_argument',
  'argument_ensu',
  'ensu_dinner',
  'dinner_cut',
  'cut_short',
  'short_leav',
  'leav_start',
  'start_berat',
  'berat_rage',
  'rage_fit',
  'fit_car',
  'car_yell',
  'yell_lash',
  'lash_defens',
  'defens_said',
  'said_sat',
  'sat_let',
  'let_mom',
  'mom_continuelli',
  'continuelli_impli',
  'impli_gold',
  'gold_digger',
  'digger_said',
  'said_never',
  'never_outright',
  'outright_call',
  'call_gold',
  'gold_digger',
  'digger_head',
  'head_said',
  'said_still',
  'still_right',
  'right_take',
  'take_advantag',
  'advantag_unfortun',
  'unfortun_circumst',
  'circumst_get',
  'get_back',
  'back_mom',
  'mom_expos',
  'expos_famili',
  'famili_parent',
  'parent_went',
  'went_disappoint',
  'disappoint_result',
  'result_got',
  'got_disinvit',
  'disinvit_thanksgiv',
  'thanksgiv_blew',
  'blew_morn',
  'morn_kept',
  'kept_say',
  'say_screw',
  'screw_badli',
  'badli_innoc',
  'innoc_bystand',
  'fianc_come_well',
  'come_well_famili',
  'well_famili_come',
  'famili_come_work',
  'come_work_class',
  'work_class_famili',
  'class_famili_fianc',
  'famili_fianc_famili',
  'fianc_famili_nice',
  'famili_nice_cant',
  'nice_cant_help',
  'cant_help_throw',
  'help_throw_comment',
  'throw_comment_might',
  'comment_might_gold',
  'might_gold_digger',
  'gold_digger_exampl',
  'digger_exampl_buy',
  'exampl_buy_someth',
  'buy_someth_theyll',
  'someth_theyll_go',
  'theyll_go_oh',
  'go_oh_jason',
  'oh_jason_bought',
  'jason_bought_know',
  'bought_know_look',
  'know_look_like',
  'look_like_right',
  'like_right_andor',
  'right_andor_wait',
  'andor_wait_jason',
  'wait_jason_paid',
  'jason_paid_gold',
  'paid_gold_digger',
  'gold_digger_make',
  'digger_make_partner',
  'make_partner_pay',
  'partner_pay_stuff',
  'pay_stuff_time',
  'stuff_time_*',
  'time_*_sayin',
  '*_sayin_*',
  'sayin_*_demean',
  '*_demean_fianc',
  'demean_fianc_noth',
  'fianc_noth_stop',
  'noth_stop_especi',
  'stop_especi_bad',
  'especi_bad_place',
  'bad_place_life',
  'place_life_lost',
  'life_lost_job',
  'lost_job_sinc',
  'job_sinc_keep',
  'sinc_keep_secret',
  'keep_secret_im',
  'secret_im_one',
  'im_one_pay',
  'one_pay_everyth',
  'pay_everyth_go',
  'everyth_go_month',
  'go_month_last',
  'month_last_week',
  'last_week_parent',
  'week_parent_invit',
  'parent_invit_us',
  'invit_us_dinner',
  'us_dinner_insist',
  'dinner_insist_go',
  'insist_go_went',
  'go_went_dinner',
  'went_dinner_tabl',
  'dinner_tabl_mom',
  'tabl_mom_grab',
  'mom_grab_hand',
  'grab_hand_liter',
  'hand_liter_eat',
  'liter_eat_look',
  'eat_look_bracelet',
  'look_bracelet_went',
  'bracelet_went_oh',
  'went_oh_bracelet',
  'oh_bracelet_look',
  'bracelet_look_realli',
  'look_realli_nice',
  'realli_nice_jason',
  'nice_jason_pay',
  'jason_pay_nod',
  'pay_nod_remind',
  'nod_remind_bought',
  'remind_bought_birthday',
  'bought_birthday_gift',
  'birthday_gift_last',
  'gift_last_year',
  'last_year_like',
  'year_like_hmmmm',
  'like_hmmmm_wonder',
  'hmmmm_wonder_much',
  'wonder_much_cost',
  'much_cost_lean',
  'cost_lean_back',
  'lean_back_said',
  'back_said_know',
  'said_know_rememb',
  'know_rememb_brother',
  'rememb_brother_date',
  'brother_date_gold',
  'date_gold_digger',
  'gold_digger_womansh',
  'digger_womansh_reciev',
  'womansh_reciev_expens',
  'reciev_expens_stuff',
  'expens_stuff_like',
  'stuff_like_point',
  'like_point_bracelet',
  'point_bracelet_bracelet',
  'bracelet_bracelet_birthday',
  'bracelet_birthday_stun',
  'birthday_stun_cut',
  'stun_cut_ask',
  'cut_ask_meant',
  'ask_meant_say',
  'meant_say_gold',
  'say_gold_digger',
  'gold_digger_threw',
  'digger_threw_hand',
  'threw_hand_went',
  'hand_went_meanif',
  'went_meanif_shoe',
  'meanif_shoe_fit',
  'shoe_fit_laugh',
  'fit_laugh_awkwardli',
  'laugh_awkwardli_silenc',
  'awkwardli_silenc_took',
  'silenc_took_look',
  'took_look_fianc',
  'look_fianc_shook',
  'fianc_shook_head',
  'shook_head_like',
  'head_like_snap',
  'like_snap_told',
  'snap_told_bold',
  'told_bold_impli',
  'bold_impli_gold',
  'impli_gold_digger',
  'gold_digger_im',
  'digger_im_liter',
  'im_liter_provid',
  'liter_provid_unemploy',
  'provid_unemploy_son',
  'unemploy_son_month',
  'son_month_look',
  'month_look_shock',
  'look_shock_glanc',
  'shock_glanc_shock',
  'glanc_shock_dad',
  'shock_dad_ask',
  'dad_ask_true',
  'ask_true_fianc',
  'true_fianc_froze',
  'fianc_froze_look',
  'froze_look_angri',
  'look_angri_argument',
  'angri_argument_ensu',
  'argument_ensu_dinner',
  'ensu_dinner_cut',
  'dinner_cut_short',
  'cut_short_leav',
  'short_leav_start',
  'leav_start_berat',
  'start_berat_rage',
  'berat_rage_fit',
  'rage_fit_car',
  'fit_car_yell',
  'car_yell_lash',
  'yell_lash_defens',
  'lash_defens_said',
  'defens_said_sat',
  'said_sat_let',
  'sat_let_mom',
  'let_mom_continuelli',
  'mom_continuelli_impli',
  'continuelli_impli_gold',
  'impli_gold_digger',
  'gold_digger_said',
  'digger_said_never',
  'said_never_outright',
  'never_outright_call',
  'outright_call_gold',
  'call_gold_digger',
  'gold_digger_head',
  'digger_head_said',
  'head_said_still',
  'said_still_right',
  'still_right_take',
  'right_take_advantag',
  'take_advantag_unfortun',
  'advantag_unfortun_circumst',
  'unfortun_circumst_get',
  'circumst_get_back',
  'get_back_mom',
  'back_mom_expos',
  'mom_expos_famili',
  'expos_famili_parent',
  'famili_parent_went',
  'parent_went_disappoint',
  'went_disappoint_result',
  'disappoint_result_got',
  'result_got_disinvit',
  'got_disinvit_thanksgiv',
  'disinvit_thanksgiv_blew',
  'thanksgiv_blew_morn',
  'blew_morn_kept',
  'morn_kept_say',
  'kept_say_screw',
  'say_screw_badli',
  'screw_badli_innoc',
  'badli_innoc_bystand'],
 ['love',
  'bake',
  'love',
  'share',
  'bake',
  'good',
  'gener',
  'get',
  'along',
  'everyon',
  'els',
  'offic',
  'except',
  'one',
  'guy',
  'call',
  'leo',
  'real',
  'name',
  'good',
  'term',
  'event',
  'happen',
  'year',
  'ago',
  'first',
  'join',
  'compani',
  'year',
  'ago',
  'fresh',
  'graduat',
  'leo',
  'complain',
  'lazi',
  'hate',
  'clean',
  'mistak',
  'made',
  'vomit',
  'blood',
  'ask',
  'mentor',
  'help',
  'gener',
  'report',
  'way',
  'expect',
  'want',
  'instead',
  'ask',
  'look',
  'report',
  'follow',
  'style',
  'fortun',
  'redeploy',
  'anoth',
  'role',
  'depart',
  'better',
  'mentor',
  'talk',
  'sinc',
  'birthday',
  'fell',
  'sunday',
  'decid',
  'bake',
  'cupcak',
  'everyon',
  'offic',
  'form',
  'celebr',
  'given',
  'friday',
  'week',
  'consid',
  'bake',
  'one',
  'decid',
  'tri',
  'share',
  'food',
  'reject',
  'believ',
  'even',
  'made',
  'cupcak',
  'would',
  'turn',
  'way',
  'way',
  'make',
  'loss',
  'face',
  'front',
  'everyon',
  'offic',
  'practic',
  'reason',
  'decid',
  'make',
  'cupcak',
  'hole',
  'cupcak',
  'tray',
  'would',
  'round',
  'bake',
  'peopl',
  'offic',
  'exclud',
  'friday',
  'came',
  'offic',
  'box',
  'cupcak',
  'took',
  'whole',
  'night',
  'bake',
  'also',
  'woke',
  'earli',
  'put',
  'frost',
  'right',
  'lunch',
  'went',
  'tabl',
  'tabl',
  'offer',
  'colleagu',
  'cupcak',
  'everyon',
  'appreci',
  'reach',
  'leo',
  'tabl',
  'tri',
  'offer',
  'expect',
  'said',
  'manner',
  'find',
  'pretti',
  'respect',
  'distribut',
  'cupcak',
  'one',
  'colleagu',
  'came',
  'ask',
  'extra',
  'cupcak',
  'leo',
  'reject',
  'told',
  'colleagu',
  'actual',
  'bake',
  'enough',
  'offic',
  'exclud',
  'leo',
  'extra',
  'cupcak',
  'colleagu',
  'look',
  'shock',
  'told',
  'bake',
  'cupcak',
  'come',
  'cheap',
  'sinc',
  'leo',
  'go',
  'reject',
  'anyway',
  'bake',
  'also',
  'told',
  'limit',
  'oven',
  'simpli',
  'enough',
  'time',
  'three',
  'round',
  'bake',
  'turn',
  'end',
  'came',
  'back',
  'monday',
  'word',
  'appar',
  'spread',
  'everyon',
  'depart',
  'leo',
  'get',
  'cupcak',
  'left',
  'intent',
  'leo',
  'say',
  'anyth',
  'cupcak',
  'thing',
  'told',
  'colleagu',
  'realli',
  'upset',
  'realli',
  'love',
  'cupcak',
  'would',
  'came',
  'around',
  'left',
  'fridg',
  'leav',
  'alon',
  'get',
  'reddit',
  'asshol',
  'bake',
  'cupcak',
  'instead',
  'mean',
  'could',
  'one',
  'round',
  'oven',
  'one',
  'two',
  'cupcak',
  'would',
  'wast',
  'electr',
  'time',
  'love_bake',
  'bake_love',
  'love_share',
  'share_bake',
  'bake_good',
  'good_gener',
  'gener_get',
  'get_along',
  'along_everyon',
  'everyon_els',
  'els_offic',
  'offic_except',
  'except_one',
  'one_guy',
  'guy_call',
  'call_leo',
  'leo_real',
  'real_name',
  'name_good',
  'good_term',
  'term_event',
  'event_happen',
  'happen_year',
  'year_ago',
  'ago_first',
  'first_join',
  'join_compani',
  'compani_year',
  'year_ago',
  'ago_fresh',
  'fresh_graduat',
  'graduat_leo',
  'leo_complain',
  'complain_lazi',
  'lazi_hate',
  'hate_clean',
  'clean_mistak',
  'mistak_made',
  'made_vomit',
  'vomit_blood',
  'blood_ask',
  'ask_mentor',
  'mentor_help',
  'help_gener',
  'gener_report',
  'report_way',
  'way_expect',
  'expect_want',
  'want_instead',
  'instead_ask',
  'ask_look',
  'look_report',
  'report_follow',
  'follow_style',
  'style_fortun',
  'fortun_redeploy',
  'redeploy_anoth',
  'anoth_role',
  'role_depart',
  'depart_better',
  'better_mentor',
  'mentor_talk',
  'talk_sinc',
  'sinc_birthday',
  'birthday_fell',
  'fell_sunday',
  'sunday_decid',
  'decid_bake',
  'bake_cupcak',
  'cupcak_everyon',
  'everyon_offic',
  'offic_form',
  'form_celebr',
  'celebr_given',
  'given_friday',
  'friday_week',
  'week_consid',
  'consid_bake',
  'bake_one',
  'one_decid',
  'decid_tri',
  'tri_share',
  'share_food',
  'food_reject',
  'reject_believ',
  'believ_even',
  'even_made',
  'made_cupcak',
  'cupcak_would',
  'would_turn',
  'turn_way',
  'way_way',
  'way_make',
  'make_loss',
  'loss_face',
  'face_front',
  'front_everyon',
  'everyon_offic',
  'offic_practic',
  'practic_reason',
  'reason_decid',
  'decid_make',
  'make_cupcak',
  'cupcak_hole',
  'hole_cupcak',
  'cupcak_tray',
  'tray_would',
  'would_round',
  'round_bake',
  'bake_peopl',
  'peopl_offic',
  'offic_exclud',
  'exclud_friday',
  'friday_came',
  'came_offic',
  'offic_box',
  'box_cupcak',
  'cupcak_took',
  'took_whole',
  'whole_night',
  'night_bake',
  'bake_also',
  'also_woke',
  'woke_earli',
  'earli_put',
  'put_frost',
  'frost_right',
  'right_lunch',
  'lunch_went',
  'went_tabl',
  'tabl_tabl',
  'tabl_offer',
  'offer_colleagu',
  'colleagu_cupcak',
  'cupcak_everyon',
  'everyon_appreci',
  'appreci_reach',
  'reach_leo',
  'leo_tabl',
  'tabl_tri',
  'tri_offer',
  'offer_expect',
  'expect_said',
  'said_manner',
  'manner_find',
  'find_pretti',
  'pretti_respect',
  'respect_distribut',
  'distribut_cupcak',
  'cupcak_one',
  'one_colleagu',
  'colleagu_came',
  'came_ask',
  'ask_extra',
  'extra_cupcak',
  'cupcak_leo',
  'leo_reject',
  'reject_told',
  'told_colleagu',
  'colleagu_actual',
  'actual_bake',
  'bake_enough',
  'enough_offic',
  'offic_exclud',
  'exclud_leo',
  'leo_extra',
  'extra_cupcak',
  'cupcak_colleagu',
  'colleagu_look',
  'look_shock',
  'shock_told',
  'told_bake',
  'bake_cupcak',
  'cupcak_come',
  'come_cheap',
  'cheap_sinc',
  'sinc_leo',
  'leo_go',
  'go_reject',
  'reject_anyway',
  'anyway_bake',
  'bake_also',
  'also_told',
  'told_limit',
  'limit_oven',
  'oven_simpli',
  'simpli_enough',
  'enough_time',
  'time_three',
  'three_round',
  'round_bake',
  'bake_turn',
  'turn_end',
  'end_came',
  'came_back',
  'back_monday',
  'monday_word',
  'word_appar',
  'appar_spread',
  'spread_everyon',
  'everyon_depart',
  'depart_leo',
  'leo_get',
  'get_cupcak',
  'cupcak_left',
  'left_intent',
  'intent_leo',
  'leo_say',
  'say_anyth',
  'anyth_cupcak',
  'cupcak_thing',
  'thing_told',
  'told_colleagu',
  'colleagu_realli',
  'realli_upset',
  'upset_realli',
  'realli_love',
  'love_cupcak',
  'cupcak_would',
  'would_came',
  'came_around',
  'around_left',
  'left_fridg',
  'fridg_leav',
  'leav_alon',
  'alon_get',
  'get_reddit',
  'reddit_asshol',
  'asshol_bake',
  'bake_cupcak',
  'cupcak_instead',
  'instead_mean',
  'mean_could',
  'could_one',
  'one_round',
  'round_oven',
  'oven_one',
  'one_two',
  'two_cupcak',
  'cupcak_would',
  'would_wast',
  'wast_electr',
  'electr_time',
  'love_bake_love',
  'bake_love_share',
  'love_share_bake',
  'share_bake_good',
  'bake_good_gener',
  'good_gener_get',
  'gener_get_along',
  'get_along_everyon',
  'along_everyon_els',
  'everyon_els_offic',
  'els_offic_except',
  'offic_except_one',
  'except_one_guy',
  'one_guy_call',
  'guy_call_leo',
  'call_leo_real',
  'leo_real_name',
  'real_name_good',
  'name_good_term',
  'good_term_event',
  'term_event_happen',
  'event_happen_year',
  'happen_year_ago',
  'year_ago_first',
  'ago_first_join',
  'first_join_compani',
  'join_compani_year',
  'compani_year_ago',
  'year_ago_fresh',
  'ago_fresh_graduat',
  'fresh_graduat_leo',
  'graduat_leo_complain',
  'leo_complain_lazi',
  'complain_lazi_hate',
  'lazi_hate_clean',
  'hate_clean_mistak',
  'clean_mistak_made',
  'mistak_made_vomit',
  'made_vomit_blood',
  'vomit_blood_ask',
  'blood_ask_mentor',
  'ask_mentor_help',
  'mentor_help_gener',
  'help_gener_report',
  'gener_report_way',
  'report_way_expect',
  'way_expect_want',
  'expect_want_instead',
  'want_instead_ask',
  'instead_ask_look',
  'ask_look_report',
  'look_report_follow',
  'report_follow_style',
  'follow_style_fortun',
  'style_fortun_redeploy',
  'fortun_redeploy_anoth',
  'redeploy_anoth_role',
  'anoth_role_depart',
  'role_depart_better',
  'depart_better_mentor',
  'better_mentor_talk',
  'mentor_talk_sinc',
  'talk_sinc_birthday',
  'sinc_birthday_fell',
  'birthday_fell_sunday',
  'fell_sunday_decid',
  'sunday_decid_bake',
  'decid_bake_cupcak',
  'bake_cupcak_everyon',
  'cupcak_everyon_offic',
  'everyon_offic_form',
  'offic_form_celebr',
  'form_celebr_given',
  'celebr_given_friday',
  'given_friday_week',
  'friday_week_consid',
  'week_consid_bake',
  'consid_bake_one',
  'bake_one_decid',
  'one_decid_tri',
  'decid_tri_share',
  'tri_share_food',
  'share_food_reject',
  'food_reject_believ',
  'reject_believ_even',
  'believ_even_made',
  'even_made_cupcak',
  'made_cupcak_would',
  'cupcak_would_turn',
  'would_turn_way',
  'turn_way_way',
  'way_way_make',
  'way_make_loss',
  'make_loss_face',
  'loss_face_front',
  'face_front_everyon',
  'front_everyon_offic',
  'everyon_offic_practic',
  'offic_practic_reason',
  'practic_reason_decid',
  'reason_decid_make',
  'decid_make_cupcak',
  'make_cupcak_hole',
  'cupcak_hole_cupcak',
  'hole_cupcak_tray',
  'cupcak_tray_would',
  'tray_would_round',
  'would_round_bake',
  'round_bake_peopl',
  'bake_peopl_offic',
  'peopl_offic_exclud',
  'offic_exclud_friday',
  'exclud_friday_came',
  'friday_came_offic',
  'came_offic_box',
  'offic_box_cupcak',
  'box_cupcak_took',
  'cupcak_took_whole',
  'took_whole_night',
  'whole_night_bake',
  'night_bake_also',
  'bake_also_woke',
  'also_woke_earli',
  'woke_earli_put',
  'earli_put_frost',
  'put_frost_right',
  'frost_right_lunch',
  'right_lunch_went',
  'lunch_went_tabl',
  'went_tabl_tabl',
  'tabl_tabl_offer',
  'tabl_offer_colleagu',
  'offer_colleagu_cupcak',
  'colleagu_cupcak_everyon',
  'cupcak_everyon_appreci',
  'everyon_appreci_reach',
  'appreci_reach_leo',
  'reach_leo_tabl',
  'leo_tabl_tri',
  'tabl_tri_offer',
  'tri_offer_expect',
  'offer_expect_said',
  'expect_said_manner',
  'said_manner_find',
  'manner_find_pretti',
  'find_pretti_respect',
  'pretti_respect_distribut',
  'respect_distribut_cupcak',
  'distribut_cupcak_one',
  'cupcak_one_colleagu',
  'one_colleagu_came',
  'colleagu_came_ask',
  'came_ask_extra',
  'ask_extra_cupcak',
  'extra_cupcak_leo',
  'cupcak_leo_reject',
  'leo_reject_told',
  'reject_told_colleagu',
  'told_colleagu_actual',
  'colleagu_actual_bake',
  'actual_bake_enough',
  'bake_enough_offic',
  'enough_offic_exclud',
  'offic_exclud_leo',
  'exclud_leo_extra',
  'leo_extra_cupcak',
  'extra_cupcak_colleagu',
  'cupcak_colleagu_look',
  'colleagu_look_shock',
  'look_shock_told',
  'shock_told_bake',
  'told_bake_cupcak',
  'bake_cupcak_come',
  'cupcak_come_cheap',
  'come_cheap_sinc',
  'cheap_sinc_leo',
  'sinc_leo_go',
  'leo_go_reject',
  'go_reject_anyway',
  'reject_anyway_bake',
  'anyway_bake_also',
  'bake_also_told',
  'also_told_limit',
  'told_limit_oven',
  'limit_oven_simpli',
  'oven_simpli_enough',
  'simpli_enough_time',
  'enough_time_three',
  'time_three_round',
  'three_round_bake',
  'round_bake_turn',
  'bake_turn_end',
  'turn_end_came',
  'end_came_back',
  'came_back_monday',
  'back_monday_word',
  'monday_word_appar',
  'word_appar_spread',
  'appar_spread_everyon',
  'spread_everyon_depart',
  'everyon_depart_leo',
  'depart_leo_get',
  'leo_get_cupcak',
  'get_cupcak_left',
  'cupcak_left_intent',
  'left_intent_leo',
  'intent_leo_say',
  'leo_say_anyth',
  'say_anyth_cupcak',
  'anyth_cupcak_thing',
  'cupcak_thing_told',
  'thing_told_colleagu',
  'told_colleagu_realli',
  'colleagu_realli_upset',
  'realli_upset_realli',
  'upset_realli_love',
  'realli_love_cupcak',
  'love_cupcak_would',
  'cupcak_would_came',
  'would_came_around',
  'came_around_left',
  'around_left_fridg',
  'left_fridg_leav',
  'fridg_leav_alon',
  'leav_alon_get',
  'alon_get_reddit',
  'get_reddit_asshol',
  'reddit_asshol_bake',
  'asshol_bake_cupcak',
  'bake_cupcak_instead',
  'cupcak_instead_mean',
  'instead_mean_could',
  'mean_could_one',
  'could_one_round',
  'one_round_oven',
  'round_oven_one',
  'oven_one_two',
  'one_two_cupcak',
  'two_cupcak_would',
  'cupcak_would_wast',
  'would_wast_electr',
  'wast_electr_time'],
 ['okay',
  'said',
  'aw',
  'pleas',
  'hear',
  'wife',
  'two',
  'kid',
  'age',
  'neither',
  'plan',
  'happi',
  'yro',
  'cerebr',
  'palsi',
  'wheelchair',
  'dress',
  'talk',
  'bit',
  'hard',
  'understand',
  'first',
  'understand',
  'fine',
  'put',
  'littl',
  'effort',
  'great',
  'school',
  'great',
  'great',
  'kid',
  'brother',
  'wife',
  'cant',
  'kid',
  'lot',
  'ivf',
  'treatment',
  'success',
  'know',
  'devast',
  'especi',
  'sil',
  'mother',
  'hous',
  'dinner',
  'night',
  'brother',
  'sil',
  'tell',
  'us',
  'last',
  'unsuccess',
  'round',
  'ivf',
  'said',
  'might',
  'probabl',
  'tri',
  'said',
  'sorri',
  'must',
  'aw',
  'later',
  'even',
  'mom',
  'ask',
  'yro',
  'plan',
  'futur',
  'etc',
  'school',
  'go',
  'gf',
  'like',
  'girl',
  'etc',
  'typic',
  'grandma',
  'stuff',
  'lol',
  'sil',
  'said',
  'even',
  'date',
  'son',
  'hear',
  'look',
  'said',
  'said',
  'well',
  'hell',
  'care',
  'forev',
  'realli',
  'want',
  'bring',
  'woman',
  'ask',
  'stop',
  'brother',
  'said',
  'ask',
  'question',
  'point',
  'everyon',
  'heard',
  'us',
  'talk',
  'sil',
  'said',
  'wife',
  'mean',
  'offend',
  'slow',
  'child',
  'might',
  'much',
  'work',
  'without',
  'date',
  'stuff',
  'loudli',
  'repli',
  'son',
  'slow',
  'way',
  'line',
  'said',
  'relax',
  'pleas',
  'jeez',
  'thought',
  'patienc',
  'sinc',
  'rais',
  'retard',
  'child',
  'lost',
  'said',
  'know',
  'good',
  'thing',
  'cant',
  'children',
  'would',
  'terribl',
  'mother',
  'broke',
  'cri',
  'brother',
  'call',
  'ah',
  'okay_said',
  'said_aw',
  'aw_pleas',
  'pleas_hear',
  'hear_wife',
  'wife_two',
  'two_kid',
  'kid_age',
  'age_neither',
  'neither_plan',
  'plan_happi',
  'happi_yro',
  'yro_cerebr',
  'cerebr_palsi',
  'palsi_wheelchair',
  'wheelchair_dress',
  'dress_talk',
  'talk_bit',
  'bit_hard',
  'hard_understand',
  'understand_first',
  'first_understand',
  'understand_fine',
  'fine_put',
  'put_littl',
  'littl_effort',
  'effort_great',
  'great_school',
  'school_great',
  'great_great',
  'great_kid',
  'kid_brother',
  'brother_wife',
  'wife_cant',
  'cant_kid',
  'kid_lot',
  'lot_ivf',
  'ivf_treatment',
  'treatment_success',
  'success_know',
  'know_devast',
  'devast_especi',
  'especi_sil',
  'sil_mother',
  'mother_hous',
  'hous_dinner',
  'dinner_night',
  'night_brother',
  'brother_sil',
  'sil_tell',
  'tell_us',
  'us_last',
  'last_unsuccess',
  'unsuccess_round',
  'round_ivf',
  'ivf_said',
  'said_might',
  'might_probabl',
  'probabl_tri',
  'tri_said',
  'said_sorri',
  'sorri_must',
  'must_aw',
  'aw_later',
  'later_even',
  'even_mom',
  'mom_ask',
  'ask_yro',
  'yro_plan',
  'plan_futur',
  'futur_etc',
  'etc_school',
  'school_go',
  'go_gf',
  'gf_like',
  'like_girl',
  'girl_etc',
  'etc_typic',
  'typic_grandma',
  'grandma_stuff',
  'stuff_lol',
  'lol_sil',
  'sil_said',
  'said_even',
  'even_date',
  'date_son',
  'son_hear',
  'hear_look',
  'look_said',
  'said_said',
  'said_well',
  'well_hell',
  'hell_care',
  'care_forev',
  'forev_realli',
  'realli_want',
  'want_bring',
  'bring_woman',
  'woman_ask',
  'ask_stop',
  'stop_brother',
  'brother_said',
  'said_ask',
  'ask_question',
  'question_point',
  'point_everyon',
  'everyon_heard',
  'heard_us',
  'us_talk',
  'talk_sil',
  'sil_said',
  'said_wife',
  'wife_mean',
  'mean_offend',
  'offend_slow',
  'slow_child',
  'child_might',
  'might_much',
  'much_work',
  'work_without',
  'without_date',
  'date_stuff',
  'stuff_loudli',
  'loudli_repli',
  'repli_son',
  'son_slow',
  'slow_way',
  'way_line',
  'line_said',
  'said_relax',
  'relax_pleas',
  'pleas_jeez',
  'jeez_thought',
  'thought_patienc',
  'patienc_sinc',
  'sinc_rais',
  'rais_retard',
  'retard_child',
  'child_lost',
  'lost_said',
  'said_know',
  'know_good',
  'good_thing',
  'thing_cant',
  'cant_children',
  'children_would',
  'would_terribl',
  'terribl_mother',
  'mother_broke',
  'broke_cri',
  'cri_brother',
  'brother_call',
  'call_ah',
  'okay_said_aw',
  'said_aw_pleas',
  'aw_pleas_hear',
  'pleas_hear_wife',
  'hear_wife_two',
  'wife_two_kid',
  'two_kid_age',
  'kid_age_neither',
  'age_neither_plan',
  'neither_plan_happi',
  'plan_happi_yro',
  'happi_yro_cerebr',
  'yro_cerebr_palsi',
  'cerebr_palsi_wheelchair',
  'palsi_wheelchair_dress',
  'wheelchair_dress_talk',
  'dress_talk_bit',
  'talk_bit_hard',
  'bit_hard_understand',
  'hard_understand_first',
  'understand_first_understand',
  'first_understand_fine',
  'understand_fine_put',
  'fine_put_littl',
  'put_littl_effort',
  'littl_effort_great',
  'effort_great_school',
  'great_school_great',
  'school_great_great',
  'great_great_kid',
  'great_kid_brother',
  'kid_brother_wife',
  'brother_wife_cant',
  'wife_cant_kid',
  'cant_kid_lot',
  'kid_lot_ivf',
  'lot_ivf_treatment',
  'ivf_treatment_success',
  'treatment_success_know',
  'success_know_devast',
  'know_devast_especi',
  'devast_especi_sil',
  'especi_sil_mother',
  'sil_mother_hous',
  'mother_hous_dinner',
  'hous_dinner_night',
  'dinner_night_brother',
  'night_brother_sil',
  'brother_sil_tell',
  'sil_tell_us',
  'tell_us_last',
  'us_last_unsuccess',
  'last_unsuccess_round',
  'unsuccess_round_ivf',
  'round_ivf_said',
  'ivf_said_might',
  'said_might_probabl',
  'might_probabl_tri',
  'probabl_tri_said',
  'tri_said_sorri',
  'said_sorri_must',
  'sorri_must_aw',
  'must_aw_later',
  'aw_later_even',
  'later_even_mom',
  'even_mom_ask',
  'mom_ask_yro',
  'ask_yro_plan',
  'yro_plan_futur',
  'plan_futur_etc',
  'futur_etc_school',
  'etc_school_go',
  'school_go_gf',
  'go_gf_like',
  'gf_like_girl',
  'like_girl_etc',
  'girl_etc_typic',
  'etc_typic_grandma',
  'typic_grandma_stuff',
  'grandma_stuff_lol',
  'stuff_lol_sil',
  'lol_sil_said',
  'sil_said_even',
  'said_even_date',
  'even_date_son',
  'date_son_hear',
  'son_hear_look',
  'hear_look_said',
  'look_said_said',
  'said_said_well',
  'said_well_hell',
  'well_hell_care',
  'hell_care_forev',
  'care_forev_realli',
  'forev_realli_want',
  'realli_want_bring',
  'want_bring_woman',
  'bring_woman_ask',
  'woman_ask_stop',
  'ask_stop_brother',
  'stop_brother_said',
  'brother_said_ask',
  'said_ask_question',
  'ask_question_point',
  'question_point_everyon',
  'point_everyon_heard',
  'everyon_heard_us',
  'heard_us_talk',
  'us_talk_sil',
  'talk_sil_said',
  'sil_said_wife',
  'said_wife_mean',
  'wife_mean_offend',
  'mean_offend_slow',
  'offend_slow_child',
  'slow_child_might',
  'child_might_much',
  'might_much_work',
  'much_work_without',
  'work_without_date',
  'without_date_stuff',
  'date_stuff_loudli',
  'stuff_loudli_repli',
  'loudli_repli_son',
  'repli_son_slow',
  'son_slow_way',
  'slow_way_line',
  'way_line_said',
  'line_said_relax',
  'said_relax_pleas',
  'relax_pleas_jeez',
  'pleas_jeez_thought',
  'jeez_thought_patienc',
  'thought_patienc_sinc',
  'patienc_sinc_rais',
  'sinc_rais_retard',
  'rais_retard_child',
  'retard_child_lost',
  'child_lost_said',
  'lost_said_know',
  'said_know_good',
  'know_good_thing',
  'good_thing_cant',
  'thing_cant_children',
  'cant_children_would',
  'children_would_terribl',
  'would_terribl_mother',
  'terribl_mother_broke',
  'mother_broke_cri',
  'broke_cri_brother',
  'cri_brother_call',
  'brother_call_ah'],
 ['im',
  'listen',
  'chemic',
  'romanc',
  'almost',
  'religi',
  'easili',
  'sinc',
  'like',
  'theyr',
  'play',
  'countri',
  'week',
  'time',
  'two',
  'ticket',
  'bought',
  'one',
  'one',
  'boyfriend',
  'concert',
  'realli',
  'import',
  'partial',
  'reschedul',
  'twice',
  'partial',
  'altern',
  'band',
  'member',
  'live',
  'long',
  'one',
  'may',
  'dead',
  'next',
  'opportun',
  'roll',
  'around',
  'youngest',
  'brother',
  'jack',
  'cerebr',
  'palsi',
  'wear',
  'afo',
  'splint',
  'theyr',
  'bulki',
  'wear',
  'certain',
  'type',
  'shoe',
  'type',
  'like',
  'quit',
  'expens',
  'mom',
  'ticket',
  'ed',
  'sheeran',
  'back',
  'holiday',
  'bit',
  'broke',
  'assum',
  'shed',
  'sell',
  '*',
  '*',
  'ticket',
  'talk',
  'sell',
  'ticket',
  'wrong',
  'sold',
  'mine',
  'like',
  'doubl',
  'price',
  'paid',
  'well',
  'theyr',
  'sold',
  'date',
  'go',
  'realli',
  'know',
  'ill',
  'ever',
  'get',
  'opportun',
  'im',
  'livid',
  'pack',
  'shit',
  'last',
  'night',
  'went',
  'boyfriend',
  'parent',
  'okay',
  'mom',
  'think',
  'im',
  'beyond',
  'unreason',
  'leav',
  'overreact',
  'im',
  'make',
  'look',
  'like',
  'bad',
  'mother',
  'etc',
  'etc',
  'even',
  'got',
  'older',
  'sister',
  'ring',
  'berat',
  'phone',
  'im',
  'start',
  'feel',
  'like',
  'asshol',
  'even',
  'though',
  'thought',
  'right',
  'begin',
  'aita',
  'edit',
  'bought',
  'ticket',
  'money',
  'earn',
  'sinc',
  'fact',
  'job',
  'leech',
  'mother',
  'im_listen',
  'listen_chemic',
  'chemic_romanc',
  'romanc_almost',
  'almost_religi',
  'religi_easili',
  'easili_sinc',
  'sinc_like',
  'like_theyr',
  'theyr_play',
  'play_countri',
  'countri_week',
  'week_time',
  'time_two',
  'two_ticket',
  'ticket_bought',
  'bought_one',
  'one_one',
  'one_boyfriend',
  'boyfriend_concert',
  'concert_realli',
  'realli_import',
  'import_partial',
  'partial_reschedul',
  'reschedul_twice',
  'twice_partial',
  'partial_altern',
  'altern_band',
  'band_member',
  'member_live',
  'live_long',
  'long_one',
  'one_may',
  'may_dead',
  'dead_next',
  'next_opportun',
  'opportun_roll',
  'roll_around',
  'around_youngest',
  'youngest_brother',
  'brother_jack',
  'jack_cerebr',
  'cerebr_palsi',
  'palsi_wear',
  'wear_afo',
  'afo_splint',
  'splint_theyr',
  'theyr_bulki',
  'bulki_wear',
  'wear_certain',
  'certain_type',
  'type_shoe',
  'shoe_type',
  'type_like',
  'like_quit',
  'quit_expens',
  'expens_mom',
  'mom_ticket',
  'ticket_ed',
  'ed_sheeran',
  'sheeran_back',
  'back_holiday',
  'holiday_bit',
  'bit_broke',
  'broke_assum',
  'assum_shed',
  'shed_sell',
  'sell_*',
  '*_*',
  '*_ticket',
  'ticket_talk',
  'talk_sell',
  'sell_ticket',
  'ticket_wrong',
  'wrong_sold',
  'sold_mine',
  'mine_like',
  'like_doubl',
  'doubl_price',
  'price_paid',
  'paid_well',
  'well_theyr',
  'theyr_sold',
  'sold_date',
  'date_go',
  'go_realli',
  'realli_know',
  'know_ill',
  'ill_ever',
  'ever_get',
  'get_opportun',
  'opportun_im',
  'im_livid',
  'livid_pack',
  'pack_shit',
  'shit_last',
  'last_night',
  'night_went',
  'went_boyfriend',
  'boyfriend_parent',
  'parent_okay',
  'okay_mom',
  'mom_think',
  'think_im',
  'im_beyond',
  'beyond_unreason',
  'unreason_leav',
  'leav_overreact',
  'overreact_im',
  'im_make',
  'make_look',
  'look_like',
  'like_bad',
  'bad_mother',
  'mother_etc',
  'etc_etc',
  'etc_even',
  'even_got',
  'got_older',
  'older_sister',
  'sister_ring',
  'ring_berat',
  'berat_phone',
  'phone_im',
  'im_start',
  'start_feel',
  'feel_like',
  'like_asshol',
  'asshol_even',
  'even_though',
  'though_thought',
  'thought_right',
  'right_begin',
  'begin_aita',
  'aita_edit',
  'edit_bought',
  'bought_ticket',
  'ticket_money',
  'money_earn',
  'earn_sinc',
  'sinc_fact',
  'fact_job',
  'job_leech',
  'leech_mother',
  'im_listen_chemic',
  'listen_chemic_romanc',
  'chemic_romanc_almost',
  'romanc_almost_religi',
  'almost_religi_easili',
  'religi_easili_sinc',
  'easili_sinc_like',
  'sinc_like_theyr',
  'like_theyr_play',
  'theyr_play_countri',
  'play_countri_week',
  'countri_week_time',
  'week_time_two',
  'time_two_ticket',
  'two_ticket_bought',
  'ticket_bought_one',
  'bought_one_one',
  'one_one_boyfriend',
  'one_boyfriend_concert',
  'boyfriend_concert_realli',
  'concert_realli_import',
  'realli_import_partial',
  'import_partial_reschedul',
  'partial_reschedul_twice',
  'reschedul_twice_partial',
  'twice_partial_altern',
  'partial_altern_band',
  'altern_band_member',
  'band_member_live',
  'member_live_long',
  'live_long_one',
  'long_one_may',
  'one_may_dead',
  'may_dead_next',
  'dead_next_opportun',
  'next_opportun_roll',
  'opportun_roll_around',
  'roll_around_youngest',
  'around_youngest_brother',
  'youngest_brother_jack',
  'brother_jack_cerebr',
  'jack_cerebr_palsi',
  'cerebr_palsi_wear',
  'palsi_wear_afo',
  'wear_afo_splint',
  'afo_splint_theyr',
  'splint_theyr_bulki',
  'theyr_bulki_wear',
  'bulki_wear_certain',
  'wear_certain_type',
  'certain_type_shoe',
  'type_shoe_type',
  'shoe_type_like',
  'type_like_quit',
  'like_quit_expens',
  'quit_expens_mom',
  'expens_mom_ticket',
  'mom_ticket_ed',
  'ticket_ed_sheeran',
  'ed_sheeran_back',
  'sheeran_back_holiday',
  'back_holiday_bit',
  'holiday_bit_broke',
  'bit_broke_assum',
  'broke_assum_shed',
  'assum_shed_sell',
  'shed_sell_*',
  'sell_*_*',
  '*_*_ticket',
  '*_ticket_talk',
  'ticket_talk_sell',
  'talk_sell_ticket',
  'sell_ticket_wrong',
  'ticket_wrong_sold',
  'wrong_sold_mine',
  'sold_mine_like',
  'mine_like_doubl',
  'like_doubl_price',
  'doubl_price_paid',
  'price_paid_well',
  'paid_well_theyr',
  'well_theyr_sold',
  'theyr_sold_date',
  'sold_date_go',
  'date_go_realli',
  'go_realli_know',
  'realli_know_ill',
  'know_ill_ever',
  'ill_ever_get',
  'ever_get_opportun',
  'get_opportun_im',
  'opportun_im_livid',
  'im_livid_pack',
  'livid_pack_shit',
  'pack_shit_last',
  'shit_last_night',
  'last_night_went',
  'night_went_boyfriend',
  'went_boyfriend_parent',
  'boyfriend_parent_okay',
  'parent_okay_mom',
  'okay_mom_think',
  'mom_think_im',
  'think_im_beyond',
  'im_beyond_unreason',
  'beyond_unreason_leav',
  'unreason_leav_overreact',
  'leav_overreact_im',
  'overreact_im_make',
  'im_make_look',
  'make_look_like',
  'look_like_bad',
  'like_bad_mother',
  'bad_mother_etc',
  'mother_etc_etc',
  'etc_etc_even',
  'etc_even_got',
  'even_got_older',
  'got_older_sister',
  'older_sister_ring',
  'sister_ring_berat',
  'ring_berat_phone',
  'berat_phone_im',
  'phone_im_start',
  'im_start_feel',
  'start_feel_like',
  'feel_like_asshol',
  'like_asshol_even',
  'asshol_even_though',
  'even_though_thought',
  'though_thought_right',
  'thought_right_begin',
  'right_begin_aita',
  'begin_aita_edit',
  'aita_edit_bought',
  'edit_bought_ticket',
  'bought_ticket_money',
  'ticket_money_earn',
  'money_earn_sinc',
  'earn_sinc_fact',
  'sinc_fact_job',
  'fact_job_leech',
  'job_leech_mother'],
 ['*',
  '*',
  'edit',
  'titl',
  'meant',
  'ask',
  'aita',
  'give',
  'husband',
  'fake',
  'key',
  'demand',
  'drive',
  'car',
  'im',
  'sorri',
  'made',
  'error',
  'titl',
  'cant',
  'edit',
  '*',
  '*',
  'becam',
  'incom',
  'earner',
  'husband',
  'jeff',
  'lost',
  'job',
  'month',
  'ago',
  'car',
  'anymor',
  'sold',
  'abl',
  'pay',
  'debt',
  'start',
  'ask',
  'drive',
  'car',
  'excus',
  'want',
  'look',
  'job',
  'problem',
  'thisfirst',
  'im',
  'nurs',
  'work',
  'odd',
  'hour',
  'need',
  'car',
  'time',
  'liter',
  'take',
  'day',
  'come',
  'back',
  'late',
  'even',
  'second',
  'everi',
  'time',
  'come',
  'home',
  'car',
  'either',
  'bust',
  'taillight',
  'damag',
  'front',
  'flat',
  'tire',
  'etc',
  'etc',
  'etc',
  'far',
  'spend',
  'nearli',
  '$',
  'buck',
  'get',
  'back',
  'good',
  'shape',
  'told',
  'longer',
  'want',
  'take',
  'car',
  'said',
  'let',
  'drive',
  'could',
  'continu',
  'look',
  'job',
  'told',
  'could',
  'search',
  'onlin',
  'said',
  'someth',
  'scammer',
  'tri',
  'pose',
  'potenti',
  'employ',
  'get',
  'person',
  'info',
  'never',
  'happen',
  'us',
  'day',
  'ago',
  'went',
  'car',
  'end',
  'late',
  'shift',
  'call',
  'friend',
  'cover',
  'tri',
  'call',
  'return',
  'home',
  'midnight',
  'fight',
  'said',
  'friend',
  'time',
  'pass',
  'took',
  'key',
  'car',
  'put',
  'pillow',
  'went',
  'sleep',
  'next',
  'morn',
  'saw',
  'stand',
  'near',
  'bed',
  'want',
  'give',
  'car',
  'key',
  'could',
  'go',
  'look',
  'job',
  'said',
  'got',
  'mad',
  'start',
  'demand',
  'hand',
  'told',
  'fine',
  'point',
  'toward',
  'sock',
  'drawer',
  'lot',
  'junk',
  'told',
  'lie',
  'got',
  'old',
  'key',
  'look',
  'like',
  'walk',
  'lock',
  'door',
  'got',
  'bed',
  'minut',
  'later',
  'came',
  'back',
  'start',
  'pound',
  'door',
  'ask',
  'gave',
  'fake',
  'key',
  'said',
  'get',
  'backh',
  'start',
  'yell',
  'say',
  'childish',
  'demand',
  'open',
  'door',
  'give',
  'real',
  'key',
  'remain',
  'bed',
  'kept',
  'yell',
  'outsid',
  'say',
  'im',
  'give',
  'lot',
  'shit',
  'work',
  'yet',
  'let',
  '*',
  'effect',
  '*',
  'look',
  'job',
  'also',
  'said',
  'id',
  'test',
  'patienc',
  'sever',
  'time',
  'enough',
  'yell',
  'left',
  'infuri',
  'madden',
  'whole',
  'situat',
  'shift',
  'cover',
  'knew',
  'took',
  'car',
  'bring',
  'back',
  'time',
  'got',
  'work',
  'talk',
  'full',
  'sulk',
  'mode',
  'return',
  'kept',
  'rant',
  'unsupport',
  'childish',
  'pull',
  'stunt',
  '*_*',
  '*_edit',
  'edit_titl',
  'titl_meant',
  'meant_ask',
  'ask_aita',
  'aita_give',
  'give_husband',
  'husband_fake',
  'fake_key',
  'key_demand',
  'demand_drive',
  'drive_car',
  'car_im',
  'im_sorri',
  'sorri_made',
  'made_error',
  'error_titl',
  'titl_cant',
  'cant_edit',
  'edit_*',
  '*_*',
  '*_becam',
  'becam_incom',
  'incom_earner',
  'earner_husband',
  'husband_jeff',
  'jeff_lost',
  'lost_job',
  'job_month',
  'month_ago',
  'ago_car',
  'car_anymor',
  'anymor_sold',
  'sold_abl',
  'abl_pay',
  'pay_debt',
  'debt_start',
  'start_ask',
  'ask_drive',
  'drive_car',
  'car_excus',
  'excus_want',
  'want_look',
  'look_job',
  'job_problem',
  'problem_thisfirst',
  'thisfirst_im',
  'im_nurs',
  'nurs_work',
  'work_odd',
  'odd_hour',
  'hour_need',
  'need_car',
  'car_time',
  'time_liter',
  'liter_take',
  'take_day',
  'day_come',
  'come_back',
  'back_late',
  'late_even',
  'even_second',
  'second_everi',
  'everi_time',
  'time_come',
  'come_home',
  'home_car',
  'car_either',
  'either_bust',
  'bust_taillight',
  'taillight_damag',
  'damag_front',
  'front_flat',
  'flat_tire',
  'tire_etc',
  'etc_etc',
  'etc_etc',
  'etc_far',
  'far_spend',
  'spend_nearli',
  'nearli_$',
  '$_buck',
  'buck_get',
  'get_back',
  'back_good',
  'good_shape',
  'shape_told',
  'told_longer',
  'longer_want',
  'want_take',
  'take_car',
  'car_said',
  'said_let',
  'let_drive',
  'drive_could',
  'could_continu',
  'continu_look',
  'look_job',
  'job_told',
  'told_could',
  'could_search',
  'search_onlin',
  'onlin_said',
  'said_someth',
  'someth_scammer',
  'scammer_tri',
  'tri_pose',
  'pose_potenti',
  'potenti_employ',
  'employ_get',
  'get_person',
  'person_info',
  'info_never',
  'never_happen',
  'happen_us',
  'us_day',
  'day_ago',
  'ago_went',
  'went_car',
  'car_end',
  'end_late',
  'late_shift',
  'shift_call',
  'call_friend',
  'friend_cover',
  'cover_tri',
  'tri_call',
  'call_return',
  'return_home',
  'home_midnight',
  'midnight_fight',
  'fight_said',
  'said_friend',
  'friend_time',
  'time_pass',
  'pass_took',
  'took_key',
  'key_car',
  'car_put',
  'put_pillow',
  'pillow_went',
  'went_sleep',
  'sleep_next',
  'next_morn',
  'morn_saw',
  'saw_stand',
  'stand_near',
  'near_bed',
  'bed_want',
  'want_give',
  'give_car',
  'car_key',
  'key_could',
  'could_go',
  'go_look',
  'look_job',
  'job_said',
  'said_got',
  'got_mad',
  'mad_start',
  'start_demand',
  'demand_hand',
  'hand_told',
  'told_fine',
  'fine_point',
  'point_toward',
  'toward_sock',
  'sock_drawer',
  'drawer_lot',
  'lot_junk',
  'junk_told',
  'told_lie',
  'lie_got',
  'got_old',
  'old_key',
  'key_look',
  'look_like',
  'like_walk',
  'walk_lock',
  'lock_door',
  'door_got',
  'got_bed',
  'bed_minut',
  'minut_later',
  'later_came',
  'came_back',
  'back_start',
  'start_pound',
  'pound_door',
  'door_ask',
  'ask_gave',
  'gave_fake',
  'fake_key',
  'key_said',
  'said_get',
  'get_backh',
  'backh_start',
  'start_yell',
  'yell_say',
  'say_childish',
  'childish_demand',
  'demand_open',
  'open_door',
  'door_give',
  'give_real',
  'real_key',
  'key_remain',
  'remain_bed',
  'bed_kept',
  'kept_yell',
  'yell_outsid',
  'outsid_say',
  'say_im',
  'im_give',
  'give_lot',
  'lot_shit',
  'shit_work',
  'work_yet',
  'yet_let',
  'let_*',
  '*_effect',
  'effect_*',
  '*_look',
  'look_job',
  'job_also',
  'also_said',
  'said_id',
  'id_test',
  'test_patienc',
  'patienc_sever',
  'sever_time',
  'time_enough',
  'enough_yell',
  'yell_left',
  'left_infuri',
  'infuri_madden',
  'madden_whole',
  'whole_situat',
  'situat_shift',
  'shift_cover',
  'cover_knew',
  'knew_took',
  'took_car',
  'car_bring',
  'bring_back',
  'back_time',
  'time_got',
  'got_work',
  'work_talk',
  'talk_full',
  'full_sulk',
  'sulk_mode',
  'mode_return',
  'return_kept',
  'kept_rant',
  'rant_unsupport',
  'unsupport_childish',
  'childish_pull',
  'pull_stunt',
  '*_*_edit',
  '*_edit_titl',
  'edit_titl_meant',
  'titl_meant_ask',
  'meant_ask_aita',
  'ask_aita_give',
  'aita_give_husband',
  'give_husband_fake',
  'husband_fake_key',
  'fake_key_demand',
  'key_demand_drive',
  'demand_drive_car',
  'drive_car_im',
  'car_im_sorri',
  'im_sorri_made',
  'sorri_made_error',
  'made_error_titl',
  'error_titl_cant',
  'titl_cant_edit',
  'cant_edit_*',
  'edit_*_*',
  '*_*_becam',
  '*_becam_incom',
  'becam_incom_earner',
  'incom_earner_husband',
  'earner_husband_jeff',
  'husband_jeff_lost',
  'jeff_lost_job',
  'lost_job_month',
  'job_month_ago',
  'month_ago_car',
  'ago_car_anymor',
  'car_anymor_sold',
  'anymor_sold_abl',
  'sold_abl_pay',
  'abl_pay_debt',
  'pay_debt_start',
  'debt_start_ask',
  'start_ask_drive',
  'ask_drive_car',
  'drive_car_excus',
  'car_excus_want',
  'excus_want_look',
  'want_look_job',
  'look_job_problem',
  'job_problem_thisfirst',
  'problem_thisfirst_im',
  'thisfirst_im_nurs',
  'im_nurs_work',
  'nurs_work_odd',
  'work_odd_hour',
  'odd_hour_need',
  'hour_need_car',
  'need_car_time',
  'car_time_liter',
  'time_liter_take',
  'liter_take_day',
  'take_day_come',
  'day_come_back',
  'come_back_late',
  'back_late_even',
  'late_even_second',
  'even_second_everi',
  'second_everi_time',
  'everi_time_come',
  'time_come_home',
  'come_home_car',
  'home_car_either',
  'car_either_bust',
  'either_bust_taillight',
  'bust_taillight_damag',
  'taillight_damag_front',
  'damag_front_flat',
  'front_flat_tire',
  'flat_tire_etc',
  'tire_etc_etc',
  'etc_etc_etc',
  'etc_etc_far',
  'etc_far_spend',
  'far_spend_nearli',
  'spend_nearli_$',
  'nearli_$_buck',
  '$_buck_get',
  'buck_get_back',
  'get_back_good',
  'back_good_shape',
  'good_shape_told',
  'shape_told_longer',
  'told_longer_want',
  'longer_want_take',
  'want_take_car',
  'take_car_said',
  'car_said_let',
  'said_let_drive',
  'let_drive_could',
  'drive_could_continu',
  'could_continu_look',
  'continu_look_job',
  'look_job_told',
  'job_told_could',
  'told_could_search',
  'could_search_onlin',
  'search_onlin_said',
  'onlin_said_someth',
  'said_someth_scammer',
  'someth_scammer_tri',
  'scammer_tri_pose',
  'tri_pose_potenti',
  'pose_potenti_employ',
  'potenti_employ_get',
  'employ_get_person',
  'get_person_info',
  'person_info_never',
  'info_never_happen',
  'never_happen_us',
  'happen_us_day',
  'us_day_ago',
  'day_ago_went',
  'ago_went_car',
  'went_car_end',
  'car_end_late',
  'end_late_shift',
  'late_shift_call',
  'shift_call_friend',
  'call_friend_cover',
  'friend_cover_tri',
  'cover_tri_call',
  'tri_call_return',
  'call_return_home',
  'return_home_midnight',
  'home_midnight_fight',
  'midnight_fight_said',
  'fight_said_friend',
  'said_friend_time',
  'friend_time_pass',
  'time_pass_took',
  'pass_took_key',
  'took_key_car',
  'key_car_put',
  'car_put_pillow',
  'put_pillow_went',
  'pillow_went_sleep',
  'went_sleep_next',
  'sleep_next_morn',
  'next_morn_saw',
  'morn_saw_stand',
  'saw_stand_near',
  'stand_near_bed',
  'near_bed_want',
  'bed_want_give',
  'want_give_car',
  'give_car_key',
  'car_key_could',
  'key_could_go',
  'could_go_look',
  'go_look_job',
  'look_job_said',
  'job_said_got',
  'said_got_mad',
  'got_mad_start',
  'mad_start_demand',
  'start_demand_hand',
  'demand_hand_told',
  'hand_told_fine',
  'told_fine_point',
  'fine_point_toward',
  'point_toward_sock',
  'toward_sock_drawer',
  'sock_drawer_lot',
  'drawer_lot_junk',
  'lot_junk_told',
  'junk_told_lie',
  'told_lie_got',
  'lie_got_old',
  'got_old_key',
  'old_key_look',
  'key_look_like',
  'look_like_walk',
  'like_walk_lock',
  'walk_lock_door',
  'lock_door_got',
  'door_got_bed',
  'got_bed_minut',
  'bed_minut_later',
  'minut_later_came',
  'later_came_back',
  'came_back_start',
  'back_start_pound',
  'start_pound_door',
  'pound_door_ask',
  'door_ask_gave',
  'ask_gave_fake',
  'gave_fake_key',
  'fake_key_said',
  'key_said_get',
  'said_get_backh',
  'get_backh_start',
  'backh_start_yell',
  'start_yell_say',
  'yell_say_childish',
  'say_childish_demand',
  'childish_demand_open',
  'demand_open_door',
  'open_door_give',
  'door_give_real',
  'give_real_key',
  'real_key_remain',
  'key_remain_bed',
  'remain_bed_kept',
  'bed_kept_yell',
  'kept_yell_outsid',
  'yell_outsid_say',
  'outsid_say_im',
  'say_im_give',
  'im_give_lot',
  'give_lot_shit',
  'lot_shit_work',
  'shit_work_yet',
  'work_yet_let',
  'yet_let_*',
  'let_*_effect',
  '*_effect_*',
  'effect_*_look',
  '*_look_job',
  'look_job_also',
  'job_also_said',
  'also_said_id',
  'said_id_test',
  'id_test_patienc',
  'test_patienc_sever',
  'patienc_sever_time',
  'sever_time_enough',
  'time_enough_yell',
  'enough_yell_left',
  'yell_left_infuri',
  'left_infuri_madden',
  'infuri_madden_whole',
  'madden_whole_situat',
  'whole_situat_shift',
  'situat_shift_cover',
  'shift_cover_knew',
  'cover_knew_took',
  'knew_took_car',
  'took_car_bring',
  'car_bring_back',
  'bring_back_time',
  'back_time_got',
  'time_got_work',
  'got_work_talk',
  'work_talk_full',
  'talk_full_sulk',
  'full_sulk_mode',
  'sulk_mode_return',
  'mode_return_kept',
  'return_kept_rant',
  'kept_rant_unsupport',
  'rant_unsupport_childish',
  'unsupport_childish_pull',
  'childish_pull_stunt'],
 ['parent',
  'divorc',
  'year',
  'old',
  'contact',
  'father',
  'year',
  'made',
  'choic',
  'priorit',
  'new',
  'famili',
  'step-son',
  'eventu',
  'children',
  'new',
  'wife',
  'brother',
  'visit',
  'got',
  'remarri',
  'call',
  'ask',
  'go',
  'visit',
  'us',
  'would',
  'say',
  'busi',
  'divorc',
  'liter',
  'daddi',
  'littl',
  'girl',
  'belov',
  'golden',
  'child',
  'joke',
  'thought',
  'father',
  'best',
  'want',
  'marri',
  'man',
  'like',
  'grew',
  'fact',
  'drop',
  'brother',
  'caus',
  'deep',
  'seat',
  'wound',
  'deep',
  'heart',
  'never',
  'ever',
  'forgiv',
  'caus',
  'never',
  'paid',
  'child',
  'support',
  'mother',
  'support',
  'brother',
  'singl',
  'parent',
  'decid',
  'take',
  'court',
  'never',
  'want',
  'anyth',
  'parent',
  'custodi',
  'howev',
  'year',
  'long',
  'time',
  'thank',
  'mother',
  'love',
  'care',
  'us',
  'alreadi',
  'forgotten',
  'move',
  'life',
  'goe',
  'brother',
  'grown',
  'live',
  'comfort',
  'live',
  'take',
  'care',
  'mother',
  'love',
  'end',
  'stori',
  'morn',
  'ss',
  'contact',
  'via',
  'fb',
  'said',
  'want',
  'talk',
  'regard',
  'father',
  'confus',
  'first',
  'rememb',
  'ye',
  'someon',
  'like',
  'life',
  'told',
  'father',
  'medic',
  'condit',
  'treatment',
  'cost',
  'lot',
  'sent',
  'togeth',
  'screenshot',
  'medic',
  'report',
  'would',
  'nice',
  'could',
  'pay',
  'bill',
  'also',
  'father',
  'want',
  'speak',
  'brother',
  'told',
  'man',
  'lost',
  'right',
  'father',
  'decid',
  'contact',
  'us',
  'also',
  'father',
  'medic',
  'bill',
  'non',
  'concern',
  'children',
  'go',
  'around',
  'harrass',
  'random',
  'peopl',
  'money',
  'also',
  'year',
  'unpaid',
  'child',
  'support',
  'could',
  'use',
  'cover',
  'medic',
  'expens',
  'call',
  'veng',
  'heartless',
  'bitch',
  'repli',
  'smile',
  'emoji',
  'block',
  'ass',
  'talk',
  'mom',
  'said',
  'right',
  'angri',
  'still',
  'father',
  'unwel',
  'could',
  'help',
  'bit',
  'told',
  'way',
  'hell',
  'go',
  'pay',
  'bill',
  'children',
  'pay',
  'let',
  'settl',
  'made',
  'bed',
  'let',
  'sleep',
  'asshol',
  'edit',
  'mani',
  'peopl',
  'confus',
  'ss',
  'case',
  'step-son',
  'apolog',
  'confus',
  'edit',
  'anyon',
  'interest',
  'updat',
  'pleas',
  'go',
  'page',
  'post',
  'also',
  'would',
  'like',
  'thank',
  'wonder',
  'feedback',
  'neg',
  'posit',
  'parent_divorc',
  'divorc_year',
  'year_old',
  'old_contact',
  'contact_father',
  'father_year',
  'year_made',
  'made_choic',
  'choic_priorit',
  'priorit_new',
  'new_famili',
  'famili_step-son',
  'step-son_eventu',
  'eventu_children',
  'children_new',
  'new_wife',
  'wife_brother',
  'brother_visit',
  'visit_got',
  'got_remarri',
  'remarri_call',
  'call_ask',
  'ask_go',
  'go_visit',
  'visit_us',
  'us_would',
  'would_say',
  'say_busi',
  'busi_divorc',
  'divorc_liter',
  'liter_daddi',
  'daddi_littl',
  'littl_girl',
  'girl_belov',
  'belov_golden',
  'golden_child',
  'child_joke',
  'joke_thought',
  'thought_father',
  'father_best',
  'best_want',
  'want_marri',
  'marri_man',
  'man_like',
  'like_grew',
  'grew_fact',
  'fact_drop',
  'drop_brother',
  'brother_caus',
  'caus_deep',
  'deep_seat',
  'seat_wound',
  'wound_deep',
  'deep_heart',
  'heart_never',
  'never_ever',
  'ever_forgiv',
  'forgiv_caus',
  'caus_never',
  'never_paid',
  'paid_child',
  'child_support',
  'support_mother',
  'mother_support',
  'support_brother',
  'brother_singl',
  'singl_parent',
  'parent_decid',
  'decid_take',
  'take_court',
  'court_never',
  'never_want',
  'want_anyth',
  'anyth_parent',
  'parent_custodi',
  'custodi_howev',
  'howev_year',
  'year_long',
  'long_time',
  'time_thank',
  'thank_mother',
  'mother_love',
  'love_care',
  'care_us',
  'us_alreadi',
  'alreadi_forgotten',
  'forgotten_move',
  'move_life',
  'life_goe',
  'goe_brother',
  'brother_grown',
  'grown_live',
  'live_comfort',
  'comfort_live',
  'live_take',
  'take_care',
  'care_mother',
  'mother_love',
  'love_end',
  'end_stori',
  'stori_morn',
  'morn_ss',
  'ss_contact',
  'contact_via',
  'via_fb',
  'fb_said',
  'said_want',
  'want_talk',
  'talk_regard',
  'regard_father',
  'father_confus',
  'confus_first',
  'first_rememb',
  'rememb_ye',
  'ye_someon',
  'someon_like',
  'like_life',
  'life_told',
  'told_father',
  'father_medic',
  'medic_condit',
  'condit_treatment',
  'treatment_cost',
  'cost_lot',
  'lot_sent',
  'sent_togeth',
  'togeth_screenshot',
  'screenshot_medic',
  'medic_report',
  'report_would',
  'would_nice',
  'nice_could',
  'could_pay',
  'pay_bill',
  'bill_also',
  'also_father',
  'father_want',
  'want_speak',
  'speak_brother',
  'brother_told',
  'told_man',
  'man_lost',
  'lost_right',
  'right_father',
  'father_decid',
  'decid_contact',
  'contact_us',
  'us_also',
  'also_father',
  'father_medic',
  'medic_bill',
  'bill_non',
  'non_concern',
  'concern_children',
  'children_go',
  'go_around',
  'around_harrass',
  'harrass_random',
  'random_peopl',
  'peopl_money',
  'money_also',
  'also_year',
  'year_unpaid',
  'unpaid_child',
  'child_support',
  'support_could',
  'could_use',
  'use_cover',
  'cover_medic',
  'medic_expens',
  'expens_call',
  'call_veng',
  'veng_heartless',
  'heartless_bitch',
  'bitch_repli',
  'repli_smile',
  'smile_emoji',
  'emoji_block',
  'block_ass',
  'ass_talk',
  'talk_mom',
  'mom_said',
  'said_right',
  'right_angri',
  'angri_still',
  'still_father',
  'father_unwel',
  'unwel_could',
  'could_help',
  'help_bit',
  'bit_told',
  'told_way',
  'way_hell',
  'hell_go',
  'go_pay',
  'pay_bill',
  'bill_children',
  'children_pay',
  'pay_let',
  'let_settl',
  'settl_made',
  'made_bed',
  'bed_let',
  'let_sleep',
  'sleep_asshol',
  'asshol_edit',
  'edit_mani',
  'mani_peopl',
  'peopl_confus',
  'confus_ss',
  'ss_case',
  'case_step-son',
  'step-son_apolog',
  'apolog_confus',
  'confus_edit',
  'edit_anyon',
  'anyon_interest',
  'interest_updat',
  'updat_pleas',
  'pleas_go',
  'go_page',
  'page_post',
  'post_also',
  'also_would',
  'would_like',
  'like_thank',
  'thank_wonder',
  'wonder_feedback',
  'feedback_neg',
  'neg_posit',
  'parent_divorc_year',
  'divorc_year_old',
  'year_old_contact',
  'old_contact_father',
  'contact_father_year',
  'father_year_made',
  'year_made_choic',
  'made_choic_priorit',
  'choic_priorit_new',
  'priorit_new_famili',
  'new_famili_step-son',
  'famili_step-son_eventu',
  'step-son_eventu_children',
  'eventu_children_new',
  'children_new_wife',
  'new_wife_brother',
  'wife_brother_visit',
  'brother_visit_got',
  'visit_got_remarri',
  'got_remarri_call',
  'remarri_call_ask',
  'call_ask_go',
  'ask_go_visit',
  'go_visit_us',
  'visit_us_would',
  'us_would_say',
  'would_say_busi',
  'say_busi_divorc',
  'busi_divorc_liter',
  'divorc_liter_daddi',
  'liter_daddi_littl',
  'daddi_littl_girl',
  'littl_girl_belov',
  'girl_belov_golden',
  'belov_golden_child',
  'golden_child_joke',
  'child_joke_thought',
  'joke_thought_father',
  'thought_father_best',
  'father_best_want',
  'best_want_marri',
  'want_marri_man',
  'marri_man_like',
  'man_like_grew',
  'like_grew_fact',
  'grew_fact_drop',
  'fact_drop_brother',
  'drop_brother_caus',
  'brother_caus_deep',
  'caus_deep_seat',
  'deep_seat_wound',
  'seat_wound_deep',
  'wound_deep_heart',
  'deep_heart_never',
  'heart_never_ever',
  'never_ever_forgiv',
  'ever_forgiv_caus',
  'forgiv_caus_never',
  'caus_never_paid',
  'never_paid_child',
  'paid_child_support',
  'child_support_mother',
  'support_mother_support',
  'mother_support_brother',
  'support_brother_singl',
  'brother_singl_parent',
  'singl_parent_decid',
  'parent_decid_take',
  'decid_take_court',
  'take_court_never',
  'court_never_want',
  'never_want_anyth',
  'want_anyth_parent',
  'anyth_parent_custodi',
  'parent_custodi_howev',
  'custodi_howev_year',
  'howev_year_long',
  'year_long_time',
  'long_time_thank',
  'time_thank_mother',
  'thank_mother_love',
  'mother_love_care',
  'love_care_us',
  'care_us_alreadi',
  'us_alreadi_forgotten',
  'alreadi_forgotten_move',
  'forgotten_move_life',
  'move_life_goe',
  'life_goe_brother',
  'goe_brother_grown',
  'brother_grown_live',
  'grown_live_comfort',
  'live_comfort_live',
  'comfort_live_take',
  'live_take_care',
  'take_care_mother',
  'care_mother_love',
  'mother_love_end',
  'love_end_stori',
  'end_stori_morn',
  'stori_morn_ss',
  'morn_ss_contact',
  'ss_contact_via',
  'contact_via_fb',
  'via_fb_said',
  'fb_said_want',
  'said_want_talk',
  'want_talk_regard',
  'talk_regard_father',
  'regard_father_confus',
  'father_confus_first',
  'confus_first_rememb',
  'first_rememb_ye',
  'rememb_ye_someon',
  'ye_someon_like',
  'someon_like_life',
  'like_life_told',
  'life_told_father',
  'told_father_medic',
  'father_medic_condit',
  'medic_condit_treatment',
  'condit_treatment_cost',
  'treatment_cost_lot',
  'cost_lot_sent',
  'lot_sent_togeth',
  'sent_togeth_screenshot',
  'togeth_screenshot_medic',
  'screenshot_medic_report',
  'medic_report_would',
  'report_would_nice',
  'would_nice_could',
  'nice_could_pay',
  'could_pay_bill',
  'pay_bill_also',
  'bill_also_father',
  'also_father_want',
  'father_want_speak',
  'want_speak_brother',
  'speak_brother_told',
  'brother_told_man',
  'told_man_lost',
  'man_lost_right',
  'lost_right_father',
  'right_father_decid',
  'father_decid_contact',
  'decid_contact_us',
  'contact_us_also',
  'us_also_father',
  'also_father_medic',
  'father_medic_bill',
  'medic_bill_non',
  'bill_non_concern',
  'non_concern_children',
  'concern_children_go',
  'children_go_around',
  'go_around_harrass',
  'around_harrass_random',
  'harrass_random_peopl',
  'random_peopl_money',
  'peopl_money_also',
  'money_also_year',
  'also_year_unpaid',
  'year_unpaid_child',
  'unpaid_child_support',
  'child_support_could',
  'support_could_use',
  'could_use_cover',
  'use_cover_medic',
  'cover_medic_expens',
  'medic_expens_call',
  'expens_call_veng',
  'call_veng_heartless',
  'veng_heartless_bitch',
  'heartless_bitch_repli',
  'bitch_repli_smile',
  'repli_smile_emoji',
  'smile_emoji_block',
  'emoji_block_ass',
  'block_ass_talk',
  'ass_talk_mom',
  'talk_mom_said',
  'mom_said_right',
  'said_right_angri',
  'right_angri_still',
  'angri_still_father',
  'still_father_unwel',
  'father_unwel_could',
  'unwel_could_help',
  'could_help_bit',
  'help_bit_told',
  'bit_told_way',
  'told_way_hell',
  'way_hell_go',
  'hell_go_pay',
  'go_pay_bill',
  'pay_bill_children',
  'bill_children_pay',
  'children_pay_let',
  'pay_let_settl',
  'let_settl_made',
  'settl_made_bed',
  'made_bed_let',
  'bed_let_sleep',
  'let_sleep_asshol',
  'sleep_asshol_edit',
  'asshol_edit_mani',
  'edit_mani_peopl',
  'mani_peopl_confus',
  'peopl_confus_ss',
  'confus_ss_case',
  'ss_case_step-son',
  'case_step-son_apolog',
  'step-son_apolog_confus',
  'apolog_confus_edit',
  'confus_edit_anyon',
  'edit_anyon_interest',
  'anyon_interest_updat',
  'interest_updat_pleas',
  'updat_pleas_go',
  'pleas_go_page',
  'go_page_post',
  'page_post_also',
  'post_also_would',
  'also_would_like',
  'would_like_thank',
  'like_thank_wonder',
  'thank_wonder_feedback',
  'wonder_feedback_neg',
  'feedback_neg_posit'],
 ['share',
  'apart',
  'friend',
  'ive',
  'known',
  'year',
  'place',
  'year',
  'real',
  'issu',
  'get',
  'along',
  'well',
  'heap',
  'togeth',
  'work',
  'full',
  'time',
  'univers',
  'student',
  'split',
  'bill',
  'food',
  'rent',
  'middl',
  'hate',
  'idea',
  'share',
  'hous',
  'want',
  'feel',
  'like',
  'home',
  'month',
  'ago',
  'start',
  'see',
  'girl',
  'spend',
  'everi',
  'day',
  'night',
  'place',
  'also',
  'univers',
  'student',
  'hate',
  'studio',
  'apart',
  'recent',
  'issu',
  'never',
  'ask',
  'pay',
  'anyth',
  'eat',
  'meal',
  'place',
  'take',
  'food',
  'uni',
  'need',
  'way',
  'see',
  'housem',
  'buy',
  'bit',
  'food',
  'realli',
  'matter',
  'week',
  'got',
  'home',
  'uni',
  'went',
  'kitchen',
  'make',
  'coffe',
  'assign',
  'need',
  'work',
  'want',
  'pick',
  'open',
  'fridg',
  'notic',
  'redbul',
  'assum',
  'housem',
  'gotten',
  'us',
  'grab',
  'one',
  'drank',
  'next',
  'morn',
  'breakfast',
  'open',
  'fridg',
  'got',
  'super',
  'angri',
  'one',
  'redbul',
  'miss',
  'said',
  'thought',
  'housem',
  'gotten',
  'start',
  'tell',
  'bought',
  'ask',
  'need',
  'apologis',
  'take',
  'go',
  'tell',
  'fridg',
  'ask',
  'stuff',
  'want',
  'start',
  'conflict',
  'apologis',
  'demand',
  'replac',
  'sinc',
  'start',
  'label',
  'drink',
  'food',
  'bring',
  'make',
  'point',
  'say',
  'said',
  'housem',
  'want',
  'stay',
  'place',
  'unless',
  'go',
  'start',
  'pay',
  'rent',
  'pay',
  'bill',
  'pitch',
  'pay',
  'food',
  'want',
  'pay',
  'anymor',
  'abus',
  'take',
  'drink',
  'fridg',
  'aita',
  'updat',
  'address',
  'common',
  'thing',
  'iv',
  'read',
  'also',
  'thank',
  'nice',
  'see',
  'said',
  'ita',
  '🤣',
  'avoid',
  'say',
  'anyth',
  'time',
  'housem',
  'close',
  'brother',
  'want',
  'fight',
  'like',
  'make',
  'pick',
  'honestli',
  'know',
  'would',
  'dump',
  'ass',
  'stick',
  'housem',
  'great',
  'guy',
  'way',
  'think',
  'tri',
  'take',
  'advantag',
  'gf',
  'stay',
  'mate',
  'kept',
  'alway',
  'sometim',
  'peopl',
  'buy',
  'us',
  'food',
  'pitch',
  'thank',
  'never',
  'expect',
  'act',
  'famili',
  'hous',
  'rather',
  'housem',
  'never',
  'issu',
  'manipul',
  'side',
  'stori',
  'housem',
  'alway',
  'movi',
  'night',
  'week',
  'tradit',
  'love',
  'said',
  'want',
  'join',
  'us',
  'everi',
  'time',
  'around',
  'min',
  'wisper',
  'someth',
  'act',
  'certain',
  'way',
  'draw',
  'away',
  'bedroom',
  'honestli',
  'peev',
  'tad',
  'clearli',
  'tri',
  'assert',
  'domin',
  'also',
  'joke',
  'housem',
  'littl',
  'abl',
  'think',
  'bigger',
  'head',
  'littl',
  'one',
  'activ',
  'laugh',
  'comment',
  'call',
  'pushov',
  'see',
  'look',
  'like',
  'normal',
  'first',
  'stand',
  'react',
  'someth',
  'hate',
  'peopl',
  'rude',
  'situat',
  'issu',
  'desir',
  'caus',
  'issu',
  'less',
  'want',
  'conflict',
  'housem',
  'sinc',
  'talk',
  'need',
  'pay',
  'leav',
  'spent',
  'time',
  'place',
  'come',
  'round',
  'abil',
  'kill',
  'mood',
  'room',
  'want',
  'separ',
  'think',
  'cant',
  'see',
  'last',
  'eitherbut',
  'hot',
  'think',
  'wrong',
  'heada',
  'lot',
  'share_apart',
  'apart_friend',
  'friend_ive',
  'ive_known',
  'known_year',
  'year_place',
  'place_year',
  'year_real',
  'real_issu',
  'issu_get',
  'get_along',
  'along_well',
  'well_heap',
  'heap_togeth',
  'togeth_work',
  'work_full',
  'full_time',
  'time_univers',
  'univers_student',
  'student_split',
  'split_bill',
  'bill_food',
  'food_rent',
  'rent_middl',
  'middl_hate',
  'hate_idea',
  'idea_share',
  'share_hous',
  'hous_want',
  'want_feel',
  'feel_like',
  'like_home',
  'home_month',
  'month_ago',
  'ago_start',
  'start_see',
  'see_girl',
  'girl_spend',
  'spend_everi',
  'everi_day',
  'day_night',
  'night_place',
  'place_also',
  'also_univers',
  'univers_student',
  'student_hate',
  'hate_studio',
  'studio_apart',
  'apart_recent',
  'recent_issu',
  'issu_never',
  'never_ask',
  'ask_pay',
  'pay_anyth',
  'anyth_eat',
  'eat_meal',
  'meal_place',
  'place_take',
  'take_food',
  'food_uni',
  'uni_need',
  'need_way',
  'way_see',
  'see_housem',
  'housem_buy',
  'buy_bit',
  'bit_food',
  'food_realli',
  'realli_matter',
  'matter_week',
  'week_got',
  'got_home',
  'home_uni',
  'uni_went',
  'went_kitchen',
  'kitchen_make',
  'make_coffe',
  'coffe_assign',
  'assign_need',
  'need_work',
  'work_want',
  'want_pick',
  'pick_open',
  'open_fridg',
  'fridg_notic',
  'notic_redbul',
  'redbul_assum',
  'assum_housem',
  'housem_gotten',
  'gotten_us',
  'us_grab',
  'grab_one',
  'one_drank',
  'drank_next',
  'next_morn',
  'morn_breakfast',
  'breakfast_open',
  'open_fridg',
  'fridg_got',
  'got_super',
  'super_angri',
  'angri_one',
  'one_redbul',
  'redbul_miss',
  'miss_said',
  'said_thought',
  'thought_housem',
  'housem_gotten',
  'gotten_start',
  'start_tell',
  'tell_bought',
  'bought_ask',
  'ask_need',
  'need_apologis',
  'apologis_take',
  'take_go',
  'go_tell',
  'tell_fridg',
  'fridg_ask',
  'ask_stuff',
  'stuff_want',
  'want_start',
  'start_conflict',
  'conflict_apologis',
  'apologis_demand',
  'demand_replac',
  'replac_sinc',
  'sinc_start',
  'start_label',
  'label_drink',
  'drink_food',
  'food_bring',
  'bring_make',
  'make_point',
  'point_say',
  'say_said',
  'said_housem',
  'housem_want',
  'want_stay',
  'stay_place',
  'place_unless',
  'unless_go',
  'go_start',
  'start_pay',
  'pay_rent',
  'rent_pay',
  'pay_bill',
  'bill_pitch',
  'pitch_pay',
  'pay_food',
  'food_want',
  'want_pay',
  'pay_anymor',
  'anymor_abus',
  'abus_take',
  'take_drink',
  'drink_fridg',
  'fridg_aita',
  'aita_updat',
  'updat_address',
  'address_common',
  'common_thing',
  'thing_iv',
  'iv_read',
  'read_also',
  'also_thank',
  'thank_nice',
  'nice_see',
  'see_said',
  'said_ita',
  'ita_🤣',
  '🤣_avoid',
  'avoid_say',
  'say_anyth',
  'anyth_time',
  'time_housem',
  'housem_close',
  'close_brother',
  'brother_want',
  'want_fight',
  'fight_like',
  'like_make',
  'make_pick',
  'pick_honestli',
  'honestli_know',
  'know_would',
  'would_dump',
  'dump_ass',
  'ass_stick',
  'stick_housem',
  'housem_great',
  'great_guy',
  'guy_way',
  'way_think',
  'think_tri',
  'tri_take',
  'take_advantag',
  'advantag_gf',
  'gf_stay',
  'stay_mate',
  'mate_kept',
  'kept_alway',
  'alway_sometim',
  'sometim_peopl',
  'peopl_buy',
  'buy_us',
  'us_food',
  'food_pitch',
  'pitch_thank',
  'thank_never',
  'never_expect',
  'expect_act',
  'act_famili',
  'famili_hous',
  'hous_rather',
  'rather_housem',
  'housem_never',
  'never_issu',
  'issu_manipul',
  'manipul_side',
  'side_stori',
  'stori_housem',
  'housem_alway',
  'alway_movi',
  'movi_night',
  'night_week',
  'week_tradit',
  'tradit_love',
  'love_said',
  'said_want',
  'want_join',
  'join_us',
  'us_everi',
  'everi_time',
  'time_around',
  'around_min',
  'min_wisper',
  'wisper_someth',
  'someth_act',
  'act_certain',
  'certain_way',
  'way_draw',
  'draw_away',
  'away_bedroom',
  'bedroom_honestli',
  'honestli_peev',
  'peev_tad',
  'tad_clearli',
  'clearli_tri',
  'tri_assert',
  'assert_domin',
  'domin_also',
  'also_joke',
  'joke_housem',
  'housem_littl',
  'littl_abl',
  'abl_think',
  'think_bigger',
  'bigger_head',
  'head_littl',
  'littl_one',
  'one_activ',
  'activ_laugh',
  'laugh_comment',
  'comment_call',
  'call_pushov',
  'pushov_see',
  'see_look',
  'look_like',
  'like_normal',
  'normal_first',
  'first_stand',
  'stand_react',
  'react_someth',
  'someth_hate',
  'hate_peopl',
  'peopl_rude',
  'rude_situat',
  'situat_issu',
  'issu_desir',
  'desir_caus',
  'caus_issu',
  'issu_less',
  'less_want',
  'want_conflict',
  'conflict_housem',
  'housem_sinc',
  'sinc_talk',
  'talk_need',
  'need_pay',
  'pay_leav',
  'leav_spent',
  'spent_time',
  'time_place',
  'place_come',
  'come_round',
  'round_abil',
  'abil_kill',
  'kill_mood',
  'mood_room',
  'room_want',
  'want_separ',
  'separ_think',
  'think_cant',
  'cant_see',
  'see_last',
  'last_eitherbut',
  'eitherbut_hot',
  'hot_think',
  'think_wrong',
  'wrong_heada',
  'heada_lot',
  'share_apart_friend',
  'apart_friend_ive',
  'friend_ive_known',
  'ive_known_year',
  'known_year_place',
  'year_place_year',
  'place_year_real',
  'year_real_issu',
  'real_issu_get',
  'issu_get_along',
  'get_along_well',
  'along_well_heap',
  'well_heap_togeth',
  'heap_togeth_work',
  'togeth_work_full',
  'work_full_time',
  'full_time_univers',
  'time_univers_student',
  'univers_student_split',
  'student_split_bill',
  'split_bill_food',
  'bill_food_rent',
  'food_rent_middl',
  'rent_middl_hate',
  'middl_hate_idea',
  'hate_idea_share',
  'idea_share_hous',
  'share_hous_want',
  'hous_want_feel',
  'want_feel_like',
  'feel_like_home',
  'like_home_month',
  'home_month_ago',
  'month_ago_start',
  'ago_start_see',
  'start_see_girl',
  'see_girl_spend',
  'girl_spend_everi',
  'spend_everi_day',
  'everi_day_night',
  'day_night_place',
  'night_place_also',
  'place_also_univers',
  'also_univers_student',
  'univers_student_hate',
  'student_hate_studio',
  'hate_studio_apart',
  'studio_apart_recent',
  'apart_recent_issu',
  'recent_issu_never',
  'issu_never_ask',
  'never_ask_pay',
  'ask_pay_anyth',
  'pay_anyth_eat',
  'anyth_eat_meal',
  'eat_meal_place',
  'meal_place_take',
  'place_take_food',
  'take_food_uni',
  'food_uni_need',
  'uni_need_way',
  'need_way_see',
  'way_see_housem',
  'see_housem_buy',
  'housem_buy_bit',
  'buy_bit_food',
  'bit_food_realli',
  'food_realli_matter',
  'realli_matter_week',
  'matter_week_got',
  'week_got_home',
  'got_home_uni',
  'home_uni_went',
  'uni_went_kitchen',
  'went_kitchen_make',
  'kitchen_make_coffe',
  'make_coffe_assign',
  'coffe_assign_need',
  'assign_need_work',
  'need_work_want',
  'work_want_pick',
  'want_pick_open',
  'pick_open_fridg',
  'open_fridg_notic',
  'fridg_notic_redbul',
  'notic_redbul_assum',
  'redbul_assum_housem',
  'assum_housem_gotten',
  'housem_gotten_us',
  'gotten_us_grab',
  'us_grab_one',
  'grab_one_drank',
  'one_drank_next',
  'drank_next_morn',
  'next_morn_breakfast',
  'morn_breakfast_open',
  'breakfast_open_fridg',
  'open_fridg_got',
  'fridg_got_super',
  'got_super_angri',
  'super_angri_one',
  'angri_one_redbul',
  'one_redbul_miss',
  'redbul_miss_said',
  'miss_said_thought',
  'said_thought_housem',
  'thought_housem_gotten',
  'housem_gotten_start',
  'gotten_start_tell',
  'start_tell_bought',
  'tell_bought_ask',
  'bought_ask_need',
  'ask_need_apologis',
  'need_apologis_take',
  'apologis_take_go',
  'take_go_tell',
  'go_tell_fridg',
  'tell_fridg_ask',
  'fridg_ask_stuff',
  'ask_stuff_want',
  'stuff_want_start',
  'want_start_conflict',
  'start_conflict_apologis',
  'conflict_apologis_demand',
  'apologis_demand_replac',
  'demand_replac_sinc',
  'replac_sinc_start',
  'sinc_start_label',
  'start_label_drink',
  'label_drink_food',
  'drink_food_bring',
  'food_bring_make',
  'bring_make_point',
  'make_point_say',
  'point_say_said',
  'say_said_housem',
  'said_housem_want',
  'housem_want_stay',
  'want_stay_place',
  'stay_place_unless',
  'place_unless_go',
  'unless_go_start',
  'go_start_pay',
  'start_pay_rent',
  'pay_rent_pay',
  'rent_pay_bill',
  'pay_bill_pitch',
  'bill_pitch_pay',
  'pitch_pay_food',
  'pay_food_want',
  'food_want_pay',
  'want_pay_anymor',
  'pay_anymor_abus',
  'anymor_abus_take',
  'abus_take_drink',
  'take_drink_fridg',
  'drink_fridg_aita',
  'fridg_aita_updat',
  'aita_updat_address',
  'updat_address_common',
  'address_common_thing',
  'common_thing_iv',
  'thing_iv_read',
  'iv_read_also',
  'read_also_thank',
  'also_thank_nice',
  'thank_nice_see',
  'nice_see_said',
  'see_said_ita',
  'said_ita_🤣',
  'ita_🤣_avoid',
  '🤣_avoid_say',
  'avoid_say_anyth',
  'say_anyth_time',
  'anyth_time_housem',
  'time_housem_close',
  'housem_close_brother',
  'close_brother_want',
  'brother_want_fight',
  'want_fight_like',
  'fight_like_make',
  'like_make_pick',
  'make_pick_honestli',
  'pick_honestli_know',
  'honestli_know_would',
  'know_would_dump',
  'would_dump_ass',
  'dump_ass_stick',
  'ass_stick_housem',
  'stick_housem_great',
  'housem_great_guy',
  'great_guy_way',
  'guy_way_think',
  'way_think_tri',
  'think_tri_take',
  'tri_take_advantag',
  'take_advantag_gf',
  'advantag_gf_stay',
  'gf_stay_mate',
  'stay_mate_kept',
  'mate_kept_alway',
  'kept_alway_sometim',
  'alway_sometim_peopl',
  'sometim_peopl_buy',
  'peopl_buy_us',
  'buy_us_food',
  'us_food_pitch',
  'food_pitch_thank',
  'pitch_thank_never',
  'thank_never_expect',
  'never_expect_act',
  'expect_act_famili',
  'act_famili_hous',
  'famili_hous_rather',
  'hous_rather_housem',
  'rather_housem_never',
  'housem_never_issu',
  'never_issu_manipul',
  'issu_manipul_side',
  'manipul_side_stori',
  'side_stori_housem',
  'stori_housem_alway',
  'housem_alway_movi',
  'alway_movi_night',
  'movi_night_week',
  'night_week_tradit',
  'week_tradit_love',
  'tradit_love_said',
  'love_said_want',
  'said_want_join',
  'want_join_us',
  'join_us_everi',
  'us_everi_time',
  'everi_time_around',
  'time_around_min',
  'around_min_wisper',
  'min_wisper_someth',
  'wisper_someth_act',
  'someth_act_certain',
  'act_certain_way',
  'certain_way_draw',
  'way_draw_away',
  'draw_away_bedroom',
  'away_bedroom_honestli',
  'bedroom_honestli_peev',
  'honestli_peev_tad',
  'peev_tad_clearli',
  'tad_clearli_tri',
  'clearli_tri_assert',
  'tri_assert_domin',
  'assert_domin_also',
  'domin_also_joke',
  'also_joke_housem',
  'joke_housem_littl',
  'housem_littl_abl',
  'littl_abl_think',
  'abl_think_bigger',
  'think_bigger_head',
  'bigger_head_littl',
  'head_littl_one',
  'littl_one_activ',
  'one_activ_laugh',
  'activ_laugh_comment',
  'laugh_comment_call',
  'comment_call_pushov',
  'call_pushov_see',
  'pushov_see_look',
  'see_look_like',
  'look_like_normal',
  'like_normal_first',
  'normal_first_stand',
  'first_stand_react',
  'stand_react_someth',
  'react_someth_hate',
  'someth_hate_peopl',
  'hate_peopl_rude',
  'peopl_rude_situat',
  'rude_situat_issu',
  'situat_issu_desir',
  'issu_desir_caus',
  'desir_caus_issu',
  'caus_issu_less',
  'issu_less_want',
  'less_want_conflict',
  'want_conflict_housem',
  'conflict_housem_sinc',
  'housem_sinc_talk',
  'sinc_talk_need',
  'talk_need_pay',
  'need_pay_leav',
  'pay_leav_spent',
  'leav_spent_time',
  'spent_time_place',
  'time_place_come',
  'place_come_round',
  'come_round_abil',
  'round_abil_kill',
  'abil_kill_mood',
  'kill_mood_room',
  'mood_room_want',
  'room_want_separ',
  'want_separ_think',
  'separ_think_cant',
  'think_cant_see',
  'cant_see_last',
  'see_last_eitherbut',
  'last_eitherbut_hot',
  'eitherbut_hot_think',
  'hot_think_wrong',
  'think_wrong_heada',
  'wrong_heada_lot'],
 ['two',
  'son',
  'age',
  'ex',
  'broke',
  'number',
  'issu',
  'one',
  'emili',
  'woman',
  'work',
  'year',
  'two',
  'grew',
  'close',
  'alway',
  'tell',
  'ex',
  'deserv',
  'better',
  'tri',
  'steal',
  'famili',
  'away',
  'time',
  'even',
  'pretend',
  'wife',
  'work',
  'function',
  'ex',
  'would',
  'laugh',
  'well',
  'realli',
  'bad',
  'money',
  'stuff',
  'separ',
  'made',
  'thing',
  'offici',
  'emili',
  'came',
  'surpris',
  'emili',
  'even',
  'openli',
  'hostil',
  'realiz',
  'ex',
  'famili',
  'still',
  'like',
  'would',
  'still',
  'includ',
  'mention',
  'realiz',
  'boy',
  'super',
  'happi',
  'dad',
  'new',
  'girlfriend',
  'emili',
  'actual',
  'call',
  'ex',
  'mom',
  '\\',
  '*',
  'nt',
  'say',
  'best',
  'mom',
  'famili',
  'dinner',
  'ex',
  'got',
  'firm',
  'warn',
  'judg',
  'use',
  'emili',
  'exchang',
  'boy',
  'deal',
  'custodi',
  'issu',
  'confront',
  'number',
  'time',
  'exchang',
  'front',
  'children',
  'show',
  'hostil',
  'say',
  'thing',
  'could',
  'taken',
  'alien',
  'parent',
  'continu',
  'allow',
  'ex',
  'fine',
  'breach',
  'judg',
  'order',
  'told',
  'happen',
  'custodi',
  'would',
  'modifi',
  'recent',
  'increas',
  'anger',
  'toward',
  'emili',
  'unabl',
  'children',
  'want',
  'boy',
  'consid',
  'mom',
  'ask',
  'help',
  'said',
  'nope',
  'emili',
  'mother',
  'children',
  'go',
  'encourag',
  'consid',
  'one',
  'year',
  'verbal',
  'abus',
  'boy',
  'award',
  'night',
  'back',
  'start',
  'june',
  'school',
  'emili',
  'told',
  'boy',
  'get',
  'photo',
  'school',
  'newslett',
  'said',
  'told',
  'ask',
  'said',
  'mom',
  'say',
  'ex',
  'scold',
  'boy',
  'said',
  'noth',
  'ex',
  'emili',
  'said',
  'back',
  'allow',
  'disrespect',
  'told',
  'find',
  'said',
  'disrespect',
  'claim',
  'shitti',
  'parent',
  'let',
  'kid',
  'get',
  'away',
  'teach',
  'disrespect',
  'women',
  'etc',
  'find',
  'aita',
  'two_son',
  'son_age',
  'age_ex',
  'ex_broke',
  'broke_number',
  'number_issu',
  'issu_one',
  'one_emili',
  'emili_woman',
  'woman_work',
  'work_year',
  'year_two',
  'two_grew',
  'grew_close',
  'close_alway',
  'alway_tell',
  'tell_ex',
  'ex_deserv',
  'deserv_better',
  'better_tri',
  'tri_steal',
  'steal_famili',
  'famili_away',
  'away_time',
  'time_even',
  'even_pretend',
  'pretend_wife',
  'wife_work',
  'work_function',
  'function_ex',
  'ex_would',
  'would_laugh',
  'laugh_well',
  'well_realli',
  'realli_bad',
  'bad_money',
  'money_stuff',
  'stuff_separ',
  'separ_made',
  'made_thing',
  'thing_offici',
  'offici_emili',
  'emili_came',
  'came_surpris',
  'surpris_emili',
  'emili_even',
  'even_openli',
  'openli_hostil',
  'hostil_realiz',
  'realiz_ex',
  'ex_famili',
  'famili_still',
  'still_like',
  'like_would',
  'would_still',
  'still_includ',
  'includ_mention',
  'mention_realiz',
  'realiz_boy',
  'boy_super',
  'super_happi',
  'happi_dad',
  'dad_new',
  'new_girlfriend',
  'girlfriend_emili',
  'emili_actual',
  'actual_call',
  'call_ex',
  'ex_mom',
  'mom_\\',
  '\\_*',
  '*_nt',
  'nt_say',
  'say_best',
  'best_mom',
  'mom_famili',
  'famili_dinner',
  'dinner_ex',
  'ex_got',
  'got_firm',
  'firm_warn',
  'warn_judg',
  'judg_use',
  'use_emili',
  'emili_exchang',
  'exchang_boy',
  'boy_deal',
  'deal_custodi',
  'custodi_issu',
  'issu_confront',
  'confront_number',
  'number_time',
  'time_exchang',
  'exchang_front',
  'front_children',
  'children_show',
  'show_hostil',
  'hostil_say',
  'say_thing',
  'thing_could',
  'could_taken',
  'taken_alien',
  'alien_parent',
  'parent_continu',
  'continu_allow',
  'allow_ex',
  'ex_fine',
  'fine_breach',
  'breach_judg',
  'judg_order',
  'order_told',
  'told_happen',
  'happen_custodi',
  'custodi_would',
  'would_modifi',
  'modifi_recent',
  'recent_increas',
  'increas_anger',
  'anger_toward',
  'toward_emili',
  'emili_unabl',
  'unabl_children',
  'children_want',
  'want_boy',
  'boy_consid',
  'consid_mom',
  'mom_ask',
  'ask_help',
  'help_said',
  'said_nope',
  'nope_emili',
  'emili_mother',
  'mother_children',
  'children_go',
  'go_encourag',
  'encourag_consid',
  'consid_one',
  'one_year',
  'year_verbal',
  'verbal_abus',
  'abus_boy',
  'boy_award',
  'award_night',
  'night_back',
  'back_start',
  'start_june',
  'june_school',
  'school_emili',
  'emili_told',
  'told_boy',
  'boy_get',
  'get_photo',
  'photo_school',
  'school_newslett',
  'newslett_said',
  'said_told',
  'told_ask',
  'ask_said',
  'said_mom',
  'mom_say',
  'say_ex',
  'ex_scold',
  'scold_boy',
  'boy_said',
  'said_noth',
  'noth_ex',
  'ex_emili',
  'emili_said',
  'said_back',
  'back_allow',
  'allow_disrespect',
  'disrespect_told',
  'told_find',
  'find_said',
  'said_disrespect',
  'disrespect_claim',
  'claim_shitti',
  'shitti_parent',
  'parent_let',
  'let_kid',
  'kid_get',
  'get_away',
  'away_teach',
  'teach_disrespect',
  'disrespect_women',
  'women_etc',
  'etc_find',
  'find_aita',
  'two_son_age',
  'son_age_ex',
  'age_ex_broke',
  'ex_broke_number',
  'broke_number_issu',
  'number_issu_one',
  'issu_one_emili',
  'one_emili_woman',
  'emili_woman_work',
  'woman_work_year',
  'work_year_two',
  'year_two_grew',
  'two_grew_close',
  'grew_close_alway',
  'close_alway_tell',
  'alway_tell_ex',
  'tell_ex_deserv',
  'ex_deserv_better',
  'deserv_better_tri',
  'better_tri_steal',
  'tri_steal_famili',
  'steal_famili_away',
  'famili_away_time',
  'away_time_even',
  'time_even_pretend',
  'even_pretend_wife',
  'pretend_wife_work',
  'wife_work_function',
  'work_function_ex',
  'function_ex_would',
  'ex_would_laugh',
  'would_laugh_well',
  'laugh_well_realli',
  'well_realli_bad',
  'realli_bad_money',
  'bad_money_stuff',
  'money_stuff_separ',
  'stuff_separ_made',
  'separ_made_thing',
  'made_thing_offici',
  'thing_offici_emili',
  'offici_emili_came',
  'emili_came_surpris',
  'came_surpris_emili',
  'surpris_emili_even',
  'emili_even_openli',
  'even_openli_hostil',
  'openli_hostil_realiz',
  'hostil_realiz_ex',
  'realiz_ex_famili',
  'ex_famili_still',
  'famili_still_like',
  'still_like_would',
  'like_would_still',
  'would_still_includ',
  'still_includ_mention',
  'includ_mention_realiz',
  'mention_realiz_boy',
  'realiz_boy_super',
  'boy_super_happi',
  'super_happi_dad',
  'happi_dad_new',
  'dad_new_girlfriend',
  'new_girlfriend_emili',
  'girlfriend_emili_actual',
  'emili_actual_call',
  'actual_call_ex',
  'call_ex_mom',
  'ex_mom_\\',
  'mom_\\_*',
  '\\_*_nt',
  '*_nt_say',
  'nt_say_best',
  'say_best_mom',
  'best_mom_famili',
  'mom_famili_dinner',
  'famili_dinner_ex',
  'dinner_ex_got',
  'ex_got_firm',
  'got_firm_warn',
  'firm_warn_judg',
  'warn_judg_use',
  'judg_use_emili',
  'use_emili_exchang',
  'emili_exchang_boy',
  'exchang_boy_deal',
  'boy_deal_custodi',
  'deal_custodi_issu',
  'custodi_issu_confront',
  'issu_confront_number',
  'confront_number_time',
  'number_time_exchang',
  'time_exchang_front',
  'exchang_front_children',
  'front_children_show',
  'children_show_hostil',
  'show_hostil_say',
  'hostil_say_thing',
  'say_thing_could',
  'thing_could_taken',
  'could_taken_alien',
  'taken_alien_parent',
  'alien_parent_continu',
  'parent_continu_allow',
  'continu_allow_ex',
  'allow_ex_fine',
  'ex_fine_breach',
  'fine_breach_judg',
  'breach_judg_order',
  'judg_order_told',
  'order_told_happen',
  'told_happen_custodi',
  'happen_custodi_would',
  'custodi_would_modifi',
  'would_modifi_recent',
  'modifi_recent_increas',
  'recent_increas_anger',
  'increas_anger_toward',
  'anger_toward_emili',
  'toward_emili_unabl',
  'emili_unabl_children',
  'unabl_children_want',
  'children_want_boy',
  'want_boy_consid',
  'boy_consid_mom',
  'consid_mom_ask',
  'mom_ask_help',
  'ask_help_said',
  'help_said_nope',
  'said_nope_emili',
  'nope_emili_mother',
  'emili_mother_children',
  'mother_children_go',
  'children_go_encourag',
  'go_encourag_consid',
  'encourag_consid_one',
  'consid_one_year',
  'one_year_verbal',
  'year_verbal_abus',
  'verbal_abus_boy',
  'abus_boy_award',
  'boy_award_night',
  'award_night_back',
  'night_back_start',
  'back_start_june',
  'start_june_school',
  'june_school_emili',
  'school_emili_told',
  'emili_told_boy',
  'told_boy_get',
  'boy_get_photo',
  'get_photo_school',
  'photo_school_newslett',
  'school_newslett_said',
  'newslett_said_told',
  'said_told_ask',
  'told_ask_said',
  'ask_said_mom',
  'said_mom_say',
  'mom_say_ex',
  'say_ex_scold',
  'ex_scold_boy',
  'scold_boy_said',
  'boy_said_noth',
  'said_noth_ex',
  'noth_ex_emili',
  'ex_emili_said',
  'emili_said_back',
  'said_back_allow',
  'back_allow_disrespect',
  'allow_disrespect_told',
  'disrespect_told_find',
  'told_find_said',
  'find_said_disrespect',
  'said_disrespect_claim',
  'disrespect_claim_shitti',
  'claim_shitti_parent',
  'shitti_parent_let',
  'parent_let_kid',
  'let_kid_get',
  'kid_get_away',
  'get_away_teach',
  'away_teach_disrespect',
  'teach_disrespect_women',
  'disrespect_women_etc',
  'women_etc_find',
  'etc_find_aita'],
 ['dad',
  'remarri',
  'year',
  'ago',
  'custodi',
  'sister',
  'full-sibl',
  'fri',
  'sun',
  'also',
  'two',
  'step-children',
  'visit',
  'dad',
  'weekend',
  'see',
  'sister',
  'dad',
  'best',
  'relationship',
  'love',
  'sister',
  'heart',
  'im',
  'best',
  'still',
  'around',
  'step-sist',
  'heavili',
  'obsess',
  'korean',
  'japanes',
  'cultur',
  'full',
  '-pop',
  'anim',
  'thing',
  'like',
  'noth',
  'wrong',
  'im',
  'bash',
  'sister',
  'like',
  'problem',
  'obsess',
  'caus',
  'eat',
  'asian',
  'food',
  'sinc',
  'mommi',
  'girl',
  'dad',
  'priorit',
  'new',
  'famili',
  'sister',
  'thing',
  'eat',
  'theyr',
  'asian',
  'sister',
  'told',
  'done',
  'miss',
  'hamburg',
  'pizza',
  'pasta',
  'etc',
  'cant',
  'eat',
  'dad',
  'mom',
  'rare',
  'mom',
  'cook',
  'thing',
  'everi',
  'week',
  'mom',
  'mexican',
  'cook',
  'mexican',
  'stuff',
  'dad',
  'order',
  'take',
  'almost',
  'everi',
  'weekend',
  'yeah',
  'mostli',
  'order',
  'sushi',
  'stuff',
  'like',
  'weekend',
  'turn',
  'pay',
  'step-sist',
  'step-mom',
  'talk',
  'korean',
  'restaur',
  'thing',
  'like',
  'look',
  'sister',
  'ask',
  'whatd',
  'want',
  'eat',
  'said',
  'crave',
  'hamburg',
  'week',
  'said',
  'done',
  'ill',
  'order',
  'step-sist',
  'said',
  'noo',
  'like',
  'eat',
  'shrug',
  'said',
  'could',
  'order',
  'someth',
  'els',
  'dad',
  'said',
  'eat',
  'thing',
  'sinc',
  'famili',
  'said',
  'okay',
  'burger',
  'went',
  'back',
  'forth',
  'end',
  'order',
  'burger',
  'sister',
  'dad',
  'step-mom',
  'sushi',
  'dad',
  'call',
  'ah',
  'make',
  'feel',
  'left',
  'ask',
  'whatd',
  'thought',
  'kid',
  'kick',
  'dad_remarri',
  'remarri_year',
  'year_ago',
  'ago_custodi',
  'custodi_sister',
  'sister_full-sibl',
  'full-sibl_fri',
  'fri_sun',
  'sun_also',
  'also_two',
  'two_step-children',
  'step-children_visit',
  'visit_dad',
  'dad_weekend',
  'weekend_see',
  'see_sister',
  'sister_dad',
  'dad_best',
  'best_relationship',
  'relationship_love',
  'love_sister',
  'sister_heart',
  'heart_im',
  'im_best',
  'best_still',
  'still_around',
  'around_step-sist',
  'step-sist_heavili',
  'heavili_obsess',
  'obsess_korean',
  'korean_japanes',
  'japanes_cultur',
  'cultur_full',
  'full_-pop',
  '-pop_anim',
  'anim_thing',
  'thing_like',
  'like_noth',
  'noth_wrong',
  'wrong_im',
  'im_bash',
  'bash_sister',
  'sister_like',
  'like_problem',
  'problem_obsess',
  'obsess_caus',
  'caus_eat',
  'eat_asian',
  'asian_food',
  'food_sinc',
  'sinc_mommi',
  'mommi_girl',
  'girl_dad',
  'dad_priorit',
  'priorit_new',
  'new_famili',
  'famili_sister',
  'sister_thing',
  'thing_eat',
  'eat_theyr',
  'theyr_asian',
  'asian_sister',
  'sister_told',
  'told_done',
  'done_miss',
  'miss_hamburg',
  'hamburg_pizza',
  'pizza_pasta',
  'pasta_etc',
  'etc_cant',
  'cant_eat',
  'eat_dad',
  'dad_mom',
  'mom_rare',
  'rare_mom',
  'mom_cook',
  'cook_thing',
  'thing_everi',
  'everi_week',
  'week_mom',
  'mom_mexican',
  'mexican_cook',
  'cook_mexican',
  'mexican_stuff',
  'stuff_dad',
  'dad_order',
  'order_take',
  'take_almost',
  'almost_everi',
  'everi_weekend',
  'weekend_yeah',
  'yeah_mostli',
  'mostli_order',
  'order_sushi',
  'sushi_stuff',
  'stuff_like',
  'like_weekend',
  'weekend_turn',
  'turn_pay',
  'pay_step-sist',
  'step-sist_step-mom',
  'step-mom_talk',
  'talk_korean',
  'korean_restaur',
  'restaur_thing',
  'thing_like',
  'like_look',
  'look_sister',
  'sister_ask',
  'ask_whatd',
  'whatd_want',
  'want_eat',
  'eat_said',
  'said_crave',
  'crave_hamburg',
  'hamburg_week',
  'week_said',
  'said_done',
  'done_ill',
  'ill_order',
  'order_step-sist',
  'step-sist_said',
  'said_noo',
  'noo_like',
  'like_eat',
  'eat_shrug',
  'shrug_said',
  'said_could',
  'could_order',
  'order_someth',
  'someth_els',
  'els_dad',
  'dad_said',
  'said_eat',
  'eat_thing',
  'thing_sinc',
  'sinc_famili',
  'famili_said',
  'said_okay',
  'okay_burger',
  'burger_went',
  'went_back',
  'back_forth',
  'forth_end',
  'end_order',
  'order_burger',
  'burger_sister',
  'sister_dad',
  'dad_step-mom',
  'step-mom_sushi',
  'sushi_dad',
  'dad_call',
  'call_ah',
  'ah_make',
  'make_feel',
  'feel_left',
  'left_ask',
  'ask_whatd',
  'whatd_thought',
  'thought_kid',
  'kid_kick',
  'dad_remarri_year',
  'remarri_year_ago',
  'year_ago_custodi',
  'ago_custodi_sister',
  'custodi_sister_full-sibl',
  'sister_full-sibl_fri',
  'full-sibl_fri_sun',
  'fri_sun_also',
  'sun_also_two',
  'also_two_step-children',
  'two_step-children_visit',
  'step-children_visit_dad',
  'visit_dad_weekend',
  'dad_weekend_see',
  'weekend_see_sister',
  'see_sister_dad',
  'sister_dad_best',
  'dad_best_relationship',
  'best_relationship_love',
  'relationship_love_sister',
  'love_sister_heart',
  'sister_heart_im',
  'heart_im_best',
  'im_best_still',
  'best_still_around',
  'still_around_step-sist',
  'around_step-sist_heavili',
  'step-sist_heavili_obsess',
  'heavili_obsess_korean',
  'obsess_korean_japanes',
  'korean_japanes_cultur',
  'japanes_cultur_full',
  'cultur_full_-pop',
  'full_-pop_anim',
  '-pop_anim_thing',
  'anim_thing_like',
  'thing_like_noth',
  'like_noth_wrong',
  'noth_wrong_im',
  'wrong_im_bash',
  'im_bash_sister',
  'bash_sister_like',
  'sister_like_problem',
  'like_problem_obsess',
  'problem_obsess_caus',
  'obsess_caus_eat',
  'caus_eat_asian',
  'eat_asian_food',
  'asian_food_sinc',
  'food_sinc_mommi',
  'sinc_mommi_girl',
  'mommi_girl_dad',
  'girl_dad_priorit',
  'dad_priorit_new',
  'priorit_new_famili',
  'new_famili_sister',
  'famili_sister_thing',
  'sister_thing_eat',
  'thing_eat_theyr',
  'eat_theyr_asian',
  'theyr_asian_sister',
  'asian_sister_told',
  'sister_told_done',
  'told_done_miss',
  'done_miss_hamburg',
  'miss_hamburg_pizza',
  'hamburg_pizza_pasta',
  'pizza_pasta_etc',
  'pasta_etc_cant',
  'etc_cant_eat',
  'cant_eat_dad',
  'eat_dad_mom',
  'dad_mom_rare',
  'mom_rare_mom',
  'rare_mom_cook',
  'mom_cook_thing',
  'cook_thing_everi',
  'thing_everi_week',
  'everi_week_mom',
  'week_mom_mexican',
  'mom_mexican_cook',
  'mexican_cook_mexican',
  'cook_mexican_stuff',
  'mexican_stuff_dad',
  'stuff_dad_order',
  'dad_order_take',
  'order_take_almost',
  'take_almost_everi',
  'almost_everi_weekend',
  'everi_weekend_yeah',
  'weekend_yeah_mostli',
  'yeah_mostli_order',
  'mostli_order_sushi',
  'order_sushi_stuff',
  'sushi_stuff_like',
  'stuff_like_weekend',
  'like_weekend_turn',
  'weekend_turn_pay',
  'turn_pay_step-sist',
  'pay_step-sist_step-mom',
  'step-sist_step-mom_talk',
  'step-mom_talk_korean',
  'talk_korean_restaur',
  'korean_restaur_thing',
  'restaur_thing_like',
  'thing_like_look',
  'like_look_sister',
  'look_sister_ask',
  'sister_ask_whatd',
  'ask_whatd_want',
  'whatd_want_eat',
  'want_eat_said',
  'eat_said_crave',
  'said_crave_hamburg',
  'crave_hamburg_week',
  'hamburg_week_said',
  'week_said_done',
  'said_done_ill',
  'done_ill_order',
  'ill_order_step-sist',
  'order_step-sist_said',
  'step-sist_said_noo',
  'said_noo_like',
  'noo_like_eat',
  'like_eat_shrug',
  'eat_shrug_said',
  'shrug_said_could',
  'said_could_order',
  'could_order_someth',
  'order_someth_els',
  'someth_els_dad',
  'els_dad_said',
  'dad_said_eat',
  'said_eat_thing',
  'eat_thing_sinc',
  'thing_sinc_famili',
  'sinc_famili_said',
  'famili_said_okay',
  'said_okay_burger',
  'okay_burger_went',
  'burger_went_back',
  'went_back_forth',
  'back_forth_end',
  'forth_end_order',
  'end_order_burger',
  'order_burger_sister',
  'burger_sister_dad',
  'sister_dad_step-mom',
  'dad_step-mom_sushi',
  'step-mom_sushi_dad',
  'sushi_dad_call',
  'dad_call_ah',
  'call_ah_make',
  'ah_make_feel',
  'make_feel_left',
  'feel_left_ask',
  'left_ask_whatd',
  'ask_whatd_thought',
  'whatd_thought_kid',
  'thought_kid_kick'],
 ['reason',
  'know',
  'liter',
  'caught',
  'room',
  'go',
  'thing',
  'freakin',
  'camera',
  'nephew',
  'habit',
  'steal',
  'thing',
  'theyv',
  'gotten',
  'troubl',
  'time',
  'store',
  'hed',
  'leav',
  'someth',
  'pocket',
  'ofc',
  'kid',
  'usual',
  'say',
  'forgot',
  'even',
  'school',
  'brother',
  'told',
  'come',
  'talk',
  'princip',
  'aim',
  'coupl',
  'occas',
  'seem',
  'like',
  'theyv',
  'done',
  'anyth',
  'stop',
  'come',
  'stay',
  'brother',
  'lost',
  'job',
  'gon',
  'na',
  'make',
  'bill',
  'includ',
  'rent',
  'uber',
  'rn',
  'search',
  'job',
  'move',
  'want',
  'nephew',
  'specif',
  'famili',
  'famili',
  'guess',
  'month',
  'ago',
  'final',
  'bought',
  'engag',
  'ring',
  'girlfriend',
  'plan',
  'propos',
  'soon',
  'know',
  '$',
  'ring',
  'spent',
  'year',
  'save',
  'hidden',
  'room',
  'one',
  'drawer',
  'one',
  'time',
  'found',
  'snoop',
  'room',
  'told',
  'brother',
  'control',
  'damm',
  'kid',
  'got',
  'one',
  'cheap',
  'spi',
  'cam',
  'room',
  'incas',
  'last',
  'week',
  'notic',
  'box',
  'check',
  'cam',
  'show',
  'home',
  'brother',
  'wife',
  'yell',
  'say',
  'left',
  'tv',
  'guest',
  'room',
  'look',
  'stuff',
  'know',
  'fact',
  'lie',
  'thing',
  'said',
  'one',
  'watch',
  'took',
  'end',
  'find',
  'second',
  'day',
  'brother',
  'tell',
  'cant',
  'find',
  'told',
  'either',
  'find',
  'ring',
  'repay',
  '$',
  'spent',
  'cant',
  'stay',
  'anymor',
  'brother',
  'got',
  'realli',
  'upset',
  'told',
  'know',
  'situat',
  'right',
  'yeah',
  'tough',
  'spot',
  'ignor',
  'fact',
  'kid',
  'cant',
  'parent',
  'took',
  'someth',
  'extrem',
  'import',
  'cost',
  'lot',
  'time',
  'money',
  'given',
  'week',
  'leav',
  'hous',
  'find',
  'ring',
  'theyr',
  'stay',
  'cheap',
  'motel',
  'brother',
  'stop',
  'beg',
  'come',
  'back',
  'theyr',
  'pay',
  'right',
  'night',
  'come',
  'directli',
  'save',
  'stop',
  'call',
  'heartless',
  'let',
  'someth',
  'like',
  'come',
  'help',
  'difficult',
  'time',
  'nephew',
  'keep',
  'say',
  'sorri',
  'hard',
  'right',
  'want',
  'around',
  'even',
  'know',
  'ring',
  'everi',
  'time',
  'think',
  'make',
  'mad',
  'hard',
  'care',
  'situat',
  'make',
  'asshol',
  'reason_know',
  'know_liter',
  'liter_caught',
  'caught_room',
  'room_go',
  'go_thing',
  'thing_freakin',
  'freakin_camera',
  'camera_nephew',
  'nephew_habit',
  'habit_steal',
  'steal_thing',
  'thing_theyv',
  'theyv_gotten',
  'gotten_troubl',
  'troubl_time',
  'time_store',
  'store_hed',
  'hed_leav',
  'leav_someth',
  'someth_pocket',
  'pocket_ofc',
  'ofc_kid',
  'kid_usual',
  'usual_say',
  'say_forgot',
  'forgot_even',
  'even_school',
  'school_brother',
  'brother_told',
  'told_come',
  'come_talk',
  'talk_princip',
  'princip_aim',
  'aim_coupl',
  'coupl_occas',
  'occas_seem',
  'seem_like',
  'like_theyv',
  'theyv_done',
  'done_anyth',
  'anyth_stop',
  'stop_come',
  'come_stay',
  'stay_brother',
  'brother_lost',
  'lost_job',
  'job_gon',
  'gon_na',
  'na_make',
  'make_bill',
  'bill_includ',
  'includ_rent',
  'rent_uber',
  'uber_rn',
  'rn_search',
  'search_job',
  'job_move',
  'move_want',
  'want_nephew',
  'nephew_specif',
  'specif_famili',
  'famili_famili',
  'famili_guess',
  'guess_month',
  'month_ago',
  'ago_final',
  'final_bought',
  'bought_engag',
  'engag_ring',
  'ring_girlfriend',
  'girlfriend_plan',
  'plan_propos',
  'propos_soon',
  'soon_know',
  'know_$',
  '$_ring',
  'ring_spent',
  'spent_year',
  'year_save',
  'save_hidden',
  'hidden_room',
  'room_one',
  'one_drawer',
  'drawer_one',
  'one_time',
  'time_found',
  'found_snoop',
  'snoop_room',
  'room_told',
  'told_brother',
  'brother_control',
  'control_damm',
  'damm_kid',
  'kid_got',
  'got_one',
  'one_cheap',
  'cheap_spi',
  'spi_cam',
  'cam_room',
  'room_incas',
  'incas_last',
  'last_week',
  'week_notic',
  'notic_box',
  'box_check',
  'check_cam',
  'cam_show',
  'show_home',
  'home_brother',
  'brother_wife',
  'wife_yell',
  'yell_say',
  'say_left',
  'left_tv',
  'tv_guest',
  'guest_room',
  'room_look',
  'look_stuff',
  'stuff_know',
  'know_fact',
  'fact_lie',
  'lie_thing',
  'thing_said',
  'said_one',
  'one_watch',
  'watch_took',
  'took_end',
  'end_find',
  'find_second',
  'second_day',
  'day_brother',
  'brother_tell',
  'tell_cant',
  'cant_find',
  'find_told',
  'told_either',
  'either_find',
  'find_ring',
  'ring_repay',
  'repay_$',
  '$_spent',
  'spent_cant',
  'cant_stay',
  'stay_anymor',
  'anymor_brother',
  'brother_got',
  'got_realli',
  'realli_upset',
  'upset_told',
  'told_know',
  'know_situat',
  'situat_right',
  'right_yeah',
  'yeah_tough',
  'tough_spot',
  'spot_ignor',
  'ignor_fact',
  'fact_kid',
  'kid_cant',
  'cant_parent',
  'parent_took',
  'took_someth',
  'someth_extrem',
  'extrem_import',
  'import_cost',
  'cost_lot',
  'lot_time',
  'time_money',
  'money_given',
  'given_week',
  'week_leav',
  'leav_hous',
  'hous_find',
  'find_ring',
  'ring_theyr',
  'theyr_stay',
  'stay_cheap',
  'cheap_motel',
  'motel_brother',
  'brother_stop',
  'stop_beg',
  'beg_come',
  'come_back',
  'back_theyr',
  'theyr_pay',
  'pay_right',
  'right_night',
  'night_come',
  'come_directli',
  'directli_save',
  'save_stop',
  'stop_call',
  'call_heartless',
  'heartless_let',
  'let_someth',
  'someth_like',
  'like_come',
  'come_help',
  'help_difficult',
  'difficult_time',
  'time_nephew',
  'nephew_keep',
  'keep_say',
  'say_sorri',
  'sorri_hard',
  'hard_right',
  'right_want',
  'want_around',
  'around_even',
  'even_know',
  'know_ring',
  'ring_everi',
  'everi_time',
  'time_think',
  'think_make',
  'make_mad',
  'mad_hard',
  'hard_care',
  'care_situat',
  'situat_make',
  'make_asshol',
  'reason_know_liter',
  'know_liter_caught',
  'liter_caught_room',
  'caught_room_go',
  'room_go_thing',
  'go_thing_freakin',
  'thing_freakin_camera',
  'freakin_camera_nephew',
  'camera_nephew_habit',
  'nephew_habit_steal',
  'habit_steal_thing',
  'steal_thing_theyv',
  'thing_theyv_gotten',
  'theyv_gotten_troubl',
  'gotten_troubl_time',
  'troubl_time_store',
  'time_store_hed',
  'store_hed_leav',
  'hed_leav_someth',
  'leav_someth_pocket',
  'someth_pocket_ofc',
  'pocket_ofc_kid',
  'ofc_kid_usual',
  'kid_usual_say',
  'usual_say_forgot',
  'say_forgot_even',
  'forgot_even_school',
  'even_school_brother',
  'school_brother_told',
  'brother_told_come',
  'told_come_talk',
  'come_talk_princip',
  'talk_princip_aim',
  'princip_aim_coupl',
  'aim_coupl_occas',
  'coupl_occas_seem',
  'occas_seem_like',
  'seem_like_theyv',
  'like_theyv_done',
  'theyv_done_anyth',
  'done_anyth_stop',
  'anyth_stop_come',
  'stop_come_stay',
  'come_stay_brother',
  'stay_brother_lost',
  'brother_lost_job',
  'lost_job_gon',
  'job_gon_na',
  'gon_na_make',
  'na_make_bill',
  'make_bill_includ',
  'bill_includ_rent',
  'includ_rent_uber',
  'rent_uber_rn',
  'uber_rn_search',
  'rn_search_job',
  'search_job_move',
  'job_move_want',
  'move_want_nephew',
  'want_nephew_specif',
  'nephew_specif_famili',
  'specif_famili_famili',
  'famili_famili_guess',
  'famili_guess_month',
  'guess_month_ago',
  'month_ago_final',
  'ago_final_bought',
  'final_bought_engag',
  'bought_engag_ring',
  'engag_ring_girlfriend',
  'ring_girlfriend_plan',
  'girlfriend_plan_propos',
  'plan_propos_soon',
  'propos_soon_know',
  'soon_know_$',
  'know_$_ring',
  '$_ring_spent',
  'ring_spent_year',
  'spent_year_save',
  'year_save_hidden',
  'save_hidden_room',
  'hidden_room_one',
  'room_one_drawer',
  'one_drawer_one',
  'drawer_one_time',
  'one_time_found',
  'time_found_snoop',
  'found_snoop_room',
  'snoop_room_told',
  'room_told_brother',
  'told_brother_control',
  'brother_control_damm',
  'control_damm_kid',
  'damm_kid_got',
  'kid_got_one',
  'got_one_cheap',
  'one_cheap_spi',
  'cheap_spi_cam',
  'spi_cam_room',
  'cam_room_incas',
  'room_incas_last',
  'incas_last_week',
  'last_week_notic',
  'week_notic_box',
  'notic_box_check',
  'box_check_cam',
  'check_cam_show',
  'cam_show_home',
  'show_home_brother',
  'home_brother_wife',
  'brother_wife_yell',
  'wife_yell_say',
  'yell_say_left',
  'say_left_tv',
  'left_tv_guest',
  'tv_guest_room',
  'guest_room_look',
  'room_look_stuff',
  'look_stuff_know',
  'stuff_know_fact',
  'know_fact_lie',
  'fact_lie_thing',
  'lie_thing_said',
  'thing_said_one',
  'said_one_watch',
  'one_watch_took',
  'watch_took_end',
  'took_end_find',
  'end_find_second',
  'find_second_day',
  'second_day_brother',
  'day_brother_tell',
  'brother_tell_cant',
  'tell_cant_find',
  'cant_find_told',
  'find_told_either',
  'told_either_find',
  'either_find_ring',
  'find_ring_repay',
  'ring_repay_$',
  'repay_$_spent',
  '$_spent_cant',
  'spent_cant_stay',
  'cant_stay_anymor',
  'stay_anymor_brother',
  'anymor_brother_got',
  'brother_got_realli',
  'got_realli_upset',
  'realli_upset_told',
  'upset_told_know',
  'told_know_situat',
  'know_situat_right',
  'situat_right_yeah',
  'right_yeah_tough',
  'yeah_tough_spot',
  'tough_spot_ignor',
  'spot_ignor_fact',
  'ignor_fact_kid',
  'fact_kid_cant',
  'kid_cant_parent',
  'cant_parent_took',
  'parent_took_someth',
  'took_someth_extrem',
  'someth_extrem_import',
  'extrem_import_cost',
  'import_cost_lot',
  'cost_lot_time',
  'lot_time_money',
  'time_money_given',
  'money_given_week',
  'given_week_leav',
  'week_leav_hous',
  'leav_hous_find',
  'hous_find_ring',
  'find_ring_theyr',
  'ring_theyr_stay',
  'theyr_stay_cheap',
  'stay_cheap_motel',
  'cheap_motel_brother',
  'motel_brother_stop',
  'brother_stop_beg',
  'stop_beg_come',
  'beg_come_back',
  'come_back_theyr',
  'back_theyr_pay',
  'theyr_pay_right',
  'pay_right_night',
  'right_night_come',
  'night_come_directli',
  'come_directli_save',
  'directli_save_stop',
  'save_stop_call',
  'stop_call_heartless',
  'call_heartless_let',
  'heartless_let_someth',
  'let_someth_like',
  'someth_like_come',
  'like_come_help',
  'come_help_difficult',
  'help_difficult_time',
  'difficult_time_nephew',
  'time_nephew_keep',
  'nephew_keep_say',
  'keep_say_sorri',
  'say_sorri_hard',
  'sorri_hard_right',
  'hard_right_want',
  'right_want_around',
  'want_around_even',
  'around_even_know',
  'even_know_ring',
  'know_ring_everi',
  'ring_everi_time',
  'everi_time_think',
  'time_think_make',
  'think_make_mad',
  'make_mad_hard',
  'mad_hard_care',
  'hard_care_situat',
  'care_situat_make',
  'situat_make_asshol'],
 ['imagin',
  'im',
  'gon',
  'na',
  'get',
  'rake',
  'coal',
  'one',
  'fiancé',
  'mayb',
  'much',
  'longer',
  'way',
  'back',
  'vacat',
  'recent',
  'great',
  'time',
  'everyth',
  'went',
  'without',
  'issu',
  'start',
  'board',
  'plane',
  'know',
  'better',
  'bring',
  'small',
  'backpack',
  'essenti',
  'incas',
  'get',
  'check',
  'bag',
  'surviv',
  'backpack',
  'alway',
  'pass',
  'baggag',
  'check',
  'size',
  'weight',
  'done',
  'lot',
  'travel',
  'fight',
  'system',
  'fiancé',
  'wan',
  'na',
  'listen',
  'advic',
  'chose',
  'bring',
  'basic',
  'regular',
  'full-siz',
  'bag',
  'bare',
  'fit',
  'standard',
  'carri',
  'gener',
  'speak',
  'airlin',
  'worker',
  'wan',
  'na',
  'deal',
  'troubl',
  'allow',
  'time',
  'airlin',
  'worker',
  'pack',
  'flight',
  'board',
  'last',
  'economi',
  'shit',
  'show',
  'got',
  'fine',
  'first',
  'littl',
  'backpack',
  'could',
  'hear',
  'argument',
  'board',
  'tunnel',
  'thingi',
  'get',
  'heat',
  'go',
  'back',
  'tri',
  'smooth',
  'fiancé',
  'rush',
  'pass',
  'board',
  'plane',
  'assum',
  'heard',
  'super',
  'clearli',
  'attend',
  'given',
  'let',
  'case',
  'found',
  'seat',
  'settl',
  'pretti',
  'tire',
  'could',
  'tell',
  'upset',
  'kinda',
  'tuck',
  'window',
  'put',
  'hat',
  'tri',
  'take',
  'nap',
  'soon',
  'airlin',
  'worker',
  'cop',
  'show',
  'fuck',
  'around',
  'want',
  'plane',
  'tri',
  'plead',
  'cri',
  'etc',
  'mayb',
  'moment',
  'panic',
  'plain',
  'self',
  'preservationth',
  'cop',
  'ask',
  'togeth',
  'blurt',
  'shake',
  'head',
  'emphat',
  'got',
  'kill',
  'dagger',
  'eye',
  'shot',
  'grab',
  'bag',
  'follow',
  'cop',
  'also',
  'swear',
  'scream',
  'whole',
  'way',
  'obvious',
  'well',
  'event',
  'im',
  'post',
  'eventu',
  'get',
  'home',
  'caught',
  'next',
  'flight',
  'bag',
  'check',
  'lol',
  'pick',
  'obvious',
  'thought',
  'asshol',
  'honest',
  'almost',
  'everyon',
  'know',
  'think',
  'im',
  'asshol',
  'except',
  'boss',
  'co',
  'worker',
  'context',
  'much',
  'reli',
  'back',
  'time',
  'gave',
  'word',
  'would',
  'realli',
  'import',
  'project',
  'time',
  'sensit',
  'happi',
  'get',
  'thrown',
  'asshol',
  'self',
  'preserv',
  'aita',
  'imagin_im',
  'im_gon',
  'gon_na',
  'na_get',
  'get_rake',
  'rake_coal',
  'coal_one',
  'one_fiancé',
  'fiancé_mayb',
  'mayb_much',
  'much_longer',
  'longer_way',
  'way_back',
  'back_vacat',
  'vacat_recent',
  'recent_great',
  'great_time',
  'time_everyth',
  'everyth_went',
  'went_without',
  'without_issu',
  'issu_start',
  'start_board',
  'board_plane',
  'plane_know',
  'know_better',
  'better_bring',
  'bring_small',
  'small_backpack',
  'backpack_essenti',
  'essenti_incas',
  'incas_get',
  'get_check',
  'check_bag',
  'bag_surviv',
  'surviv_backpack',
  'backpack_alway',
  'alway_pass',
  'pass_baggag',
  'baggag_check',
  'check_size',
  'size_weight',
  'weight_done',
  'done_lot',
  'lot_travel',
  'travel_fight',
  'fight_system',
  'system_fiancé',
  'fiancé_wan',
  'wan_na',
  'na_listen',
  'listen_advic',
  'advic_chose',
  'chose_bring',
  'bring_basic',
  'basic_regular',
  'regular_full-siz',
  'full-siz_bag',
  'bag_bare',
  'bare_fit',
  'fit_standard',
  'standard_carri',
  'carri_gener',
  'gener_speak',
  'speak_airlin',
  'airlin_worker',
  'worker_wan',
  'wan_na',
  'na_deal',
  'deal_troubl',
  'troubl_allow',
  'allow_time',
  'time_airlin',
  'airlin_worker',
  'worker_pack',
  'pack_flight',
  'flight_board',
  'board_last',
  'last_economi',
  'economi_shit',
  'shit_show',
  'show_got',
  'got_fine',
  'fine_first',
  'first_littl',
  'littl_backpack',
  'backpack_could',
  'could_hear',
  'hear_argument',
  'argument_board',
  'board_tunnel',
  'tunnel_thingi',
  'thingi_get',
  'get_heat',
  'heat_go',
  'go_back',
  'back_tri',
  'tri_smooth',
  'smooth_fiancé',
  'fiancé_rush',
  'rush_pass',
  'pass_board',
  'board_plane',
  'plane_assum',
  'assum_heard',
  'heard_super',
  'super_clearli',
  'clearli_attend',
  'attend_given',
  'given_let',
  'let_case',
  'case_found',
  'found_seat',
  'seat_settl',
  'settl_pretti',
  'pretti_tire',
  'tire_could',
  'could_tell',
  'tell_upset',
  'upset_kinda',
  'kinda_tuck',
  'tuck_window',
  'window_put',
  'put_hat',
  'hat_tri',
  'tri_take',
  'take_nap',
  'nap_soon',
  'soon_airlin',
  'airlin_worker',
  'worker_cop',
  'cop_show',
  'show_fuck',
  'fuck_around',
  'around_want',
  'want_plane',
  'plane_tri',
  'tri_plead',
  'plead_cri',
  'cri_etc',
  'etc_mayb',
  'mayb_moment',
  'moment_panic',
  'panic_plain',
  'plain_self',
  'self_preservationth',
  'preservationth_cop',
  'cop_ask',
  'ask_togeth',
  'togeth_blurt',
  'blurt_shake',
  'shake_head',
  'head_emphat',
  'emphat_got',
  'got_kill',
  'kill_dagger',
  'dagger_eye',
  'eye_shot',
  'shot_grab',
  'grab_bag',
  'bag_follow',
  'follow_cop',
  'cop_also',
  'also_swear',
  'swear_scream',
  'scream_whole',
  'whole_way',
  'way_obvious',
  'obvious_well',
  'well_event',
  'event_im',
  'im_post',
  'post_eventu',
  'eventu_get',
  'get_home',
  'home_caught',
  'caught_next',
  'next_flight',
  'flight_bag',
  'bag_check',
  'check_lol',
  'lol_pick',
  'pick_obvious',
  'obvious_thought',
  'thought_asshol',
  'asshol_honest',
  'honest_almost',
  'almost_everyon',
  'everyon_know',
  'know_think',
  'think_im',
  'im_asshol',
  'asshol_except',
  'except_boss',
  'boss_co',
  'co_worker',
  'worker_context',
  'context_much',
  'much_reli',
  'reli_back',
  'back_time',
  'time_gave',
  'gave_word',
  'word_would',
  'would_realli',
  'realli_import',
  'import_project',
  'project_time',
  'time_sensit',
  'sensit_happi',
  'happi_get',
  'get_thrown',
  'thrown_asshol',
  'asshol_self',
  'self_preserv',
  'preserv_aita',
  'imagin_im_gon',
  'im_gon_na',
  'gon_na_get',
  'na_get_rake',
  'get_rake_coal',
  'rake_coal_one',
  'coal_one_fiancé',
  'one_fiancé_mayb',
  'fiancé_mayb_much',
  'mayb_much_longer',
  'much_longer_way',
  'longer_way_back',
  'way_back_vacat',
  'back_vacat_recent',
  'vacat_recent_great',
  'recent_great_time',
  'great_time_everyth',
  'time_everyth_went',
  'everyth_went_without',
  'went_without_issu',
  'without_issu_start',
  'issu_start_board',
  'start_board_plane',
  'board_plane_know',
  'plane_know_better',
  'know_better_bring',
  'better_bring_small',
  'bring_small_backpack',
  'small_backpack_essenti',
  'backpack_essenti_incas',
  'essenti_incas_get',
  'incas_get_check',
  'get_check_bag',
  'check_bag_surviv',
  'bag_surviv_backpack',
  'surviv_backpack_alway',
  'backpack_alway_pass',
  'alway_pass_baggag',
  'pass_baggag_check',
  'baggag_check_size',
  'check_size_weight',
  'size_weight_done',
  'weight_done_lot',
  'done_lot_travel',
  'lot_travel_fight',
  'travel_fight_system',
  'fight_system_fiancé',
  'system_fiancé_wan',
  'fiancé_wan_na',
  'wan_na_listen',
  'na_listen_advic',
  'listen_advic_chose',
  'advic_chose_bring',
  'chose_bring_basic',
  'bring_basic_regular',
  'basic_regular_full-siz',
  'regular_full-siz_bag',
  'full-siz_bag_bare',
  'bag_bare_fit',
  'bare_fit_standard',
  'fit_standard_carri',
  'standard_carri_gener',
  'carri_gener_speak',
  'gener_speak_airlin',
  'speak_airlin_worker',
  'airlin_worker_wan',
  'worker_wan_na',
  'wan_na_deal',
  'na_deal_troubl',
  'deal_troubl_allow',
  'troubl_allow_time',
  'allow_time_airlin',
  'time_airlin_worker',
  'airlin_worker_pack',
  'worker_pack_flight',
  'pack_flight_board',
  'flight_board_last',
  'board_last_economi',
  'last_economi_shit',
  'economi_shit_show',
  'shit_show_got',
  'show_got_fine',
  'got_fine_first',
  'fine_first_littl',
  'first_littl_backpack',
  'littl_backpack_could',
  'backpack_could_hear',
  'could_hear_argument',
  'hear_argument_board',
  'argument_board_tunnel',
  'board_tunnel_thingi',
  'tunnel_thingi_get',
  'thingi_get_heat',
  'get_heat_go',
  'heat_go_back',
  'go_back_tri',
  'back_tri_smooth',
  'tri_smooth_fiancé',
  'smooth_fiancé_rush',
  'fiancé_rush_pass',
  'rush_pass_board',
  'pass_board_plane',
  'board_plane_assum',
  'plane_assum_heard',
  'assum_heard_super',
  'heard_super_clearli',
  'super_clearli_attend',
  'clearli_attend_given',
  'attend_given_let',
  'given_let_case',
  'let_case_found',
  'case_found_seat',
  'found_seat_settl',
  'seat_settl_pretti',
  'settl_pretti_tire',
  'pretti_tire_could',
  'tire_could_tell',
  'could_tell_upset',
  'tell_upset_kinda',
  'upset_kinda_tuck',
  'kinda_tuck_window',
  'tuck_window_put',
  'window_put_hat',
  'put_hat_tri',
  'hat_tri_take',
  'tri_take_nap',
  'take_nap_soon',
  'nap_soon_airlin',
  'soon_airlin_worker',
  'airlin_worker_cop',
  'worker_cop_show',
  'cop_show_fuck',
  'show_fuck_around',
  'fuck_around_want',
  'around_want_plane',
  'want_plane_tri',
  'plane_tri_plead',
  'tri_plead_cri',
  'plead_cri_etc',
  'cri_etc_mayb',
  'etc_mayb_moment',
  'mayb_moment_panic',
  'moment_panic_plain',
  'panic_plain_self',
  'plain_self_preservationth',
  'self_preservationth_cop',
  'preservationth_cop_ask',
  'cop_ask_togeth',
  'ask_togeth_blurt',
  'togeth_blurt_shake',
  'blurt_shake_head',
  'shake_head_emphat',
  'head_emphat_got',
  'emphat_got_kill',
  'got_kill_dagger',
  'kill_dagger_eye',
  'dagger_eye_shot',
  'eye_shot_grab',
  'shot_grab_bag',
  'grab_bag_follow',
  'bag_follow_cop',
  'follow_cop_also',
  'cop_also_swear',
  'also_swear_scream',
  'swear_scream_whole',
  'scream_whole_way',
  'whole_way_obvious',
  'way_obvious_well',
  'obvious_well_event',
  'well_event_im',
  'event_im_post',
  'im_post_eventu',
  'post_eventu_get',
  'eventu_get_home',
  'get_home_caught',
  'home_caught_next',
  'caught_next_flight',
  'next_flight_bag',
  'flight_bag_check',
  'bag_check_lol',
  'check_lol_pick',
  'lol_pick_obvious',
  'pick_obvious_thought',
  'obvious_thought_asshol',
  'thought_asshol_honest',
  'asshol_honest_almost',
  'honest_almost_everyon',
  'almost_everyon_know',
  'everyon_know_think',
  'know_think_im',
  'think_im_asshol',
  'im_asshol_except',
  'asshol_except_boss',
  'except_boss_co',
  'boss_co_worker',
  'co_worker_context',
  'worker_context_much',
  'context_much_reli',
  'much_reli_back',
  'reli_back_time',
  'back_time_gave',
  'time_gave_word',
  'gave_word_would',
  'word_would_realli',
  'would_realli_import',
  'realli_import_project',
  'import_project_time',
  'project_time_sensit',
  'time_sensit_happi',
  'sensit_happi_get',
  'happi_get_thrown',
  'get_thrown_asshol',
  'thrown_asshol_self',
  'asshol_self_preserv',
  'self_preserv_aita'],
 ['start',
  'see',
  'guy',
  'roughli',
  'year',
  'half',
  'ago',
  'yo',
  'almost',
  'daughter',
  'name',
  'chrissi',
  'yo',
  'son',
  'well',
  'met',
  'kid',
  'month',
  'back',
  'last',
  'month',
  'start',
  'weekend',
  'visit',
  'super',
  'hard',
  'adjust',
  'especi',
  'kid',
  'get',
  'along',
  'part',
  'im',
  'realli',
  'hard',
  'time',
  'son',
  'alway',
  'fairli',
  'good',
  'kid',
  'hardli',
  'ever',
  'given',
  'issu',
  'never',
  'drew',
  'wall',
  'broke',
  'anyth',
  'import',
  'talk',
  'back',
  'asid',
  'occasion',
  'obvious',
  'kid',
  'perfect',
  'alway',
  'super',
  'quick',
  'ask',
  'permiss',
  'touch',
  'stuff',
  'person',
  'think',
  'luck',
  'knew',
  'kid',
  'well',
  'behav',
  'child',
  'readi',
  'think',
  'im',
  'overwhelm',
  'sinc',
  'weekend',
  'visit',
  'stay',
  'guest',
  'room',
  'destroy',
  'lot',
  'rip',
  'hole',
  'mattress',
  'say',
  'alreadi',
  'draw',
  'wall',
  'windowsil',
  'make',
  'marker',
  'even',
  'take',
  'new',
  'feminin',
  'pad',
  'room',
  'cut',
  'put',
  'hole',
  'wall',
  'said',
  'alreadi',
  'buy',
  'brand',
  'new',
  'thing',
  'shampoo',
  'condition',
  '%',
  'gone',
  'trash',
  'end',
  'shower',
  'last',
  'minut',
  'everi',
  'singl',
  'time',
  'stomp',
  'feet',
  'slam',
  'door',
  'speak',
  'knock',
  'thing',
  'wall',
  'gener',
  'good',
  'kid',
  'fuck',
  'destruct',
  'realli',
  'set',
  'come',
  'weekend',
  'dad',
  'son',
  'father',
  'call',
  'offic',
  'sign',
  'would',
  'take',
  'roughli',
  'hour',
  'max',
  'left',
  'without',
  'well',
  'got',
  'back',
  'sit',
  'kitchen',
  'tabl',
  'photo',
  'album',
  'lay',
  'front',
  'cut',
  'face',
  'everyth',
  'els',
  'photo',
  'glu',
  'scrapbook',
  'photo',
  'get',
  'back',
  'print',
  'year',
  'ago',
  'foster',
  'care',
  'copi',
  'photo',
  'dead',
  'friend',
  'well',
  'went',
  'bf',
  'phone',
  'outdoor',
  'told',
  'need',
  'leav',
  'explain',
  'situat',
  'told',
  'fuck',
  'done',
  'photo',
  'stupid',
  'may',
  'huge',
  'part',
  'childhood',
  'destroy',
  'told',
  'done',
  'speak',
  'daughter',
  'destroy',
  'shit',
  'time',
  'go',
  'think',
  'im',
  'ah',
  'throw',
  'year',
  'half',
  'drain',
  'pictur',
  'start_see',
  'see_guy',
  'guy_roughli',
  'roughli_year',
  'year_half',
  'half_ago',
  'ago_yo',
  'yo_almost',
  'almost_daughter',
  'daughter_name',
  'name_chrissi',
  'chrissi_yo',
  'yo_son',
  'son_well',
  'well_met',
  'met_kid',
  'kid_month',
  'month_back',
  'back_last',
  'last_month',
  'month_start',
  'start_weekend',
  'weekend_visit',
  'visit_super',
  'super_hard',
  'hard_adjust',
  'adjust_especi',
  'especi_kid',
  'kid_get',
  'get_along',
  'along_part',
  'part_im',
  'im_realli',
  'realli_hard',
  'hard_time',
  'time_son',
  'son_alway',
  'alway_fairli',
  'fairli_good',
  'good_kid',
  'kid_hardli',
  'hardli_ever',
  'ever_given',
  'given_issu',
  'issu_never',
  'never_drew',
  'drew_wall',
  'wall_broke',
  'broke_anyth',
  'anyth_import',
  'import_talk',
  'talk_back',
  'back_asid',
  'asid_occasion',
  'occasion_obvious',
  'obvious_kid',
  'kid_perfect',
  'perfect_alway',
  'alway_super',
  'super_quick',
  'quick_ask',
  'ask_permiss',
  'permiss_touch',
  'touch_stuff',
  'stuff_person',
  'person_think',
  'think_luck',
  'luck_knew',
  'knew_kid',
  'kid_well',
  'well_behav',
  'behav_child',
  'child_readi',
  'readi_think',
  'think_im',
  'im_overwhelm',
  'overwhelm_sinc',
  'sinc_weekend',
  'weekend_visit',
  'visit_stay',
  'stay_guest',
  'guest_room',
  'room_destroy',
  'destroy_lot',
  'lot_rip',
  'rip_hole',
  'hole_mattress',
  'mattress_say',
  'say_alreadi',
  'alreadi_draw',
  'draw_wall',
  'wall_windowsil',
  'windowsil_make',
  'make_marker',
  'marker_even',
  'even_take',
  'take_new',
  'new_feminin',
  'feminin_pad',
  'pad_room',
  'room_cut',
  'cut_put',
  'put_hole',
  'hole_wall',
  'wall_said',
  'said_alreadi',
  'alreadi_buy',
  'buy_brand',
  'brand_new',
  'new_thing',
  'thing_shampoo',
  'shampoo_condition',
  'condition_%',
  '%_gone',
  'gone_trash',
  'trash_end',
  'end_shower',
  'shower_last',
  'last_minut',
  'minut_everi',
  'everi_singl',
  'singl_time',
  'time_stomp',
  'stomp_feet',
  'feet_slam',
  'slam_door',
  'door_speak',
  'speak_knock',
  'knock_thing',
  'thing_wall',
  'wall_gener',
  'gener_good',
  'good_kid',
  'kid_fuck',
  'fuck_destruct',
  'destruct_realli',
  'realli_set',
  'set_come',
  'come_weekend',
  'weekend_dad',
  'dad_son',
  'son_father',
  'father_call',
  'call_offic',
  'offic_sign',
  'sign_would',
  'would_take',
  'take_roughli',
  'roughli_hour',
  'hour_max',
  'max_left',
  'left_without',
  'without_well',
  'well_got',
  'got_back',
  'back_sit',
  'sit_kitchen',
  'kitchen_tabl',
  'tabl_photo',
  'photo_album',
  'album_lay',
  'lay_front',
  'front_cut',
  'cut_face',
  'face_everyth',
  'everyth_els',
  'els_photo',
  'photo_glu',
  'glu_scrapbook',
  'scrapbook_photo',
  'photo_get',
  'get_back',
  'back_print',
  'print_year',
  'year_ago',
  'ago_foster',
  'foster_care',
  'care_copi',
  'copi_photo',
  'photo_dead',
  'dead_friend',
  'friend_well',
  'well_went',
  'went_bf',
  'bf_phone',
  'phone_outdoor',
  'outdoor_told',
  'told_need',
  'need_leav',
  'leav_explain',
  'explain_situat',
  'situat_told',
  'told_fuck',
  'fuck_done',
  'done_photo',
  'photo_stupid',
  'stupid_may',
  'may_huge',
  'huge_part',
  'part_childhood',
  'childhood_destroy',
  'destroy_told',
  'told_done',
  'done_speak',
  'speak_daughter',
  'daughter_destroy',
  'destroy_shit',
  'shit_time',
  'time_go',
  'go_think',
  'think_im',
  'im_ah',
  'ah_throw',
  'throw_year',
  'year_half',
  'half_drain',
  'drain_pictur',
  'start_see_guy',
  'see_guy_roughli',
  'guy_roughli_year',
  'roughli_year_half',
  'year_half_ago',
  'half_ago_yo',
  'ago_yo_almost',
  'yo_almost_daughter',
  'almost_daughter_name',
  'daughter_name_chrissi',
  'name_chrissi_yo',
  'chrissi_yo_son',
  'yo_son_well',
  'son_well_met',
  'well_met_kid',
  'met_kid_month',
  'kid_month_back',
  'month_back_last',
  'back_last_month',
  'last_month_start',
  'month_start_weekend',
  'start_weekend_visit',
  'weekend_visit_super',
  'visit_super_hard',
  'super_hard_adjust',
  'hard_adjust_especi',
  'adjust_especi_kid',
  'especi_kid_get',
  'kid_get_along',
  'get_along_part',
  'along_part_im',
  'part_im_realli',
  'im_realli_hard',
  'realli_hard_time',
  'hard_time_son',
  'time_son_alway',
  'son_alway_fairli',
  'alway_fairli_good',
  'fairli_good_kid',
  'good_kid_hardli',
  'kid_hardli_ever',
  'hardli_ever_given',
  'ever_given_issu',
  'given_issu_never',
  'issu_never_drew',
  'never_drew_wall',
  'drew_wall_broke',
  'wall_broke_anyth',
  'broke_anyth_import',
  'anyth_import_talk',
  'import_talk_back',
  'talk_back_asid',
  'back_asid_occasion',
  'asid_occasion_obvious',
  'occasion_obvious_kid',
  'obvious_kid_perfect',
  'kid_perfect_alway',
  'perfect_alway_super',
  'alway_super_quick',
  'super_quick_ask',
  'quick_ask_permiss',
  'ask_permiss_touch',
  'permiss_touch_stuff',
  'touch_stuff_person',
  'stuff_person_think',
  'person_think_luck',
  'think_luck_knew',
  'luck_knew_kid',
  'knew_kid_well',
  'kid_well_behav',
  'well_behav_child',
  'behav_child_readi',
  'child_readi_think',
  'readi_think_im',
  'think_im_overwhelm',
  'im_overwhelm_sinc',
  'overwhelm_sinc_weekend',
  'sinc_weekend_visit',
  'weekend_visit_stay',
  'visit_stay_guest',
  'stay_guest_room',
  'guest_room_destroy',
  'room_destroy_lot',
  'destroy_lot_rip',
  'lot_rip_hole',
  'rip_hole_mattress',
  'hole_mattress_say',
  'mattress_say_alreadi',
  'say_alreadi_draw',
  'alreadi_draw_wall',
  'draw_wall_windowsil',
  'wall_windowsil_make',
  'windowsil_make_marker',
  'make_marker_even',
  'marker_even_take',
  'even_take_new',
  'take_new_feminin',
  'new_feminin_pad',
  'feminin_pad_room',
  'pad_room_cut',
  'room_cut_put',
  'cut_put_hole',
  'put_hole_wall',
  'hole_wall_said',
  'wall_said_alreadi',
  'said_alreadi_buy',
  'alreadi_buy_brand',
  'buy_brand_new',
  'brand_new_thing',
  'new_thing_shampoo',
  'thing_shampoo_condition',
  'shampoo_condition_%',
  'condition_%_gone',
  '%_gone_trash',
  'gone_trash_end',
  'trash_end_shower',
  'end_shower_last',
  'shower_last_minut',
  'last_minut_everi',
  'minut_everi_singl',
  'everi_singl_time',
  'singl_time_stomp',
  'time_stomp_feet',
  'stomp_feet_slam',
  'feet_slam_door',
  'slam_door_speak',
  'door_speak_knock',
  'speak_knock_thing',
  'knock_thing_wall',
  'thing_wall_gener',
  'wall_gener_good',
  'gener_good_kid',
  'good_kid_fuck',
  'kid_fuck_destruct',
  'fuck_destruct_realli',
  'destruct_realli_set',
  'realli_set_come',
  'set_come_weekend',
  'come_weekend_dad',
  'weekend_dad_son',
  'dad_son_father',
  'son_father_call',
  'father_call_offic',
  'call_offic_sign',
  'offic_sign_would',
  'sign_would_take',
  'would_take_roughli',
  'take_roughli_hour',
  'roughli_hour_max',
  'hour_max_left',
  'max_left_without',
  'left_without_well',
  'without_well_got',
  'well_got_back',
  'got_back_sit',
  'back_sit_kitchen',
  'sit_kitchen_tabl',
  'kitchen_tabl_photo',
  'tabl_photo_album',
  'photo_album_lay',
  'album_lay_front',
  'lay_front_cut',
  'front_cut_face',
  'cut_face_everyth',
  'face_everyth_els',
  'everyth_els_photo',
  'els_photo_glu',
  'photo_glu_scrapbook',
  'glu_scrapbook_photo',
  'scrapbook_photo_get',
  'photo_get_back',
  'get_back_print',
  'back_print_year',
  'print_year_ago',
  'year_ago_foster',
  'ago_foster_care',
  'foster_care_copi',
  'care_copi_photo',
  'copi_photo_dead',
  'photo_dead_friend',
  'dead_friend_well',
  'friend_well_went',
  'well_went_bf',
  'went_bf_phone',
  'bf_phone_outdoor',
  'phone_outdoor_told',
  'outdoor_told_need',
  'told_need_leav',
  'need_leav_explain',
  'leav_explain_situat',
  'explain_situat_told',
  'situat_told_fuck',
  'told_fuck_done',
  'fuck_done_photo',
  'done_photo_stupid',
  'photo_stupid_may',
  'stupid_may_huge',
  'may_huge_part',
  'huge_part_childhood',
  'part_childhood_destroy',
  'childhood_destroy_told',
  'destroy_told_done',
  'told_done_speak',
  'done_speak_daughter',
  'speak_daughter_destroy',
  'daughter_destroy_shit',
  'destroy_shit_time',
  'shit_time_go',
  'time_go_think',
  'go_think_im',
  'think_im_ah',
  'im_ah_throw',
  'ah_throw_year',
  'throw_year_half',
  'year_half_drain',
  'half_drain_pictur'],
 ['brother',
  'tyler',
  'parent',
  'got',
  'divorc',
  'extrem',
  'messi',
  'fought',
  'constantli',
  'courtroom',
  'favorit',
  'weapon',
  'tyler',
  'alreadi',
  'away',
  'colleg',
  'hour',
  'drive',
  'away',
  'dorm',
  'apart',
  'favorit',
  'place',
  'run',
  'away',
  'whenev',
  'get',
  'away',
  'divorc',
  'particularli',
  'close',
  'close',
  'brother',
  'couldv',
  'turn',
  'blind',
  'eye',
  'owe',
  'hell',
  'lot',
  'year',
  'sinc',
  'parent',
  'remarri',
  'sever',
  'step',
  'half',
  'sibl',
  'side',
  'never',
  'met',
  'younger',
  'anyth',
  'person',
  'tyler',
  'prefer',
  'keep',
  'distanc',
  'away',
  'drama',
  'parent',
  'howev',
  'still',
  'push',
  'us',
  'mostli',
  'buddi',
  'buddi',
  'new',
  'kid',
  'mayb',
  'still',
  'want',
  'use',
  'one-up',
  'tool',
  'like',
  'theyr',
  'race',
  'get',
  'us',
  'act',
  'big',
  'brother',
  'kid',
  'know',
  'sure',
  'know',
  'im',
  'interest',
  'anyth',
  'person',
  'im',
  'graduat',
  'colleg',
  'soon',
  'tyler',
  'want',
  'take',
  'coupl',
  'friend',
  'along',
  'cross-countri',
  'road',
  'trip',
  'celebr',
  'go',
  'old',
  'colleg',
  'got',
  'job',
  'citi',
  'graduat',
  'think',
  'possibl',
  'anyth',
  'like',
  'thing',
  'past',
  'two',
  'year',
  'im',
  'super',
  'excit',
  'weve',
  'prepar',
  'thing',
  'run',
  'problem',
  'later',
  'ive',
  'document',
  'thing',
  'mainli',
  'instagram',
  'stori',
  'realiz',
  'step',
  'sibl',
  'alreadi',
  'follow',
  'set',
  'account',
  'privat',
  'coupl',
  'year',
  'back',
  'word',
  'got',
  'around',
  'everyon',
  'start',
  'demand',
  'take',
  'step',
  'half',
  'us',
  'even',
  'chang',
  'trip',
  'make',
  'kid',
  'friendli',
  'kind',
  'absurd',
  'entitl',
  'admit',
  'lost',
  'temper',
  'fifth',
  'time',
  'call',
  'good',
  'brother',
  'mom',
  'oldest',
  'step',
  'daughter',
  'insist',
  'everyon',
  'yell',
  'one',
  'get',
  'call',
  'brother',
  'tyler',
  'rest',
  'dad',
  'spawn',
  'less',
  'stranger',
  'went',
  'well',
  'imagin',
  'tyler',
  'friend',
  'thought',
  'hilari',
  'long',
  'overdu',
  'everyon',
  'els',
  'think',
  'im',
  'asshol',
  'edit',
  'first',
  'holi',
  'shit',
  'thank',
  'judgement',
  'opinion',
  'stori',
  'advic',
  'itll',
  'take',
  'read',
  'eventu',
  'second',
  'id',
  'like',
  'give',
  'addit',
  'info',
  'base',
  'common',
  'questionsspecul',
  'ive',
  'seen',
  'far',
  'mom',
  'dad',
  'cheat',
  'remarri',
  'quickli',
  'within',
  'year',
  'post',
  'divorc',
  'say',
  'ive',
  'never',
  'seen',
  'new',
  'kid',
  'exagger',
  'tyler',
  'tho',
  'actual',
  'never',
  'even',
  'met',
  'beyond',
  'forc',
  'bond',
  'session',
  'like',
  'twice',
  'rememb',
  'alway',
  'tri',
  'synch',
  'stay',
  'turn',
  'stay',
  'parent',
  'cant',
  'swing',
  'ill',
  'go',
  'stay',
  'tyler',
  'weekend',
  'avoid',
  'much',
  'possibl',
  'children',
  'question',
  'mom',
  'step',
  'annoy',
  'one',
  'also',
  'one',
  'follow',
  'ig',
  'step',
  'ask',
  'back',
  'said',
  'half',
  'never',
  'whine',
  'directli',
  'mom',
  'said',
  'cri',
  'dad',
  'step',
  'call',
  'sent',
  'coupl',
  'dm',
  'open',
  'twin',
  'half',
  'dad',
  'push',
  'take',
  'coupl',
  'hour',
  'start',
  'annoy',
  'idea',
  'exactli',
  'news',
  'spread',
  'rest',
  'annoyingli',
  'hope',
  'help',
  'clear',
  'thing',
  'sorri',
  'gave',
  'wrong',
  'impress',
  'best',
  'state',
  'mind',
  'wrote',
  'origin',
  'post',
  'edit',
  'updat',
  'peopl',
  'still',
  'reach',
  'ask',
  'happen',
  'post',
  'im',
  'realli',
  'sure',
  'post',
  'updat',
  'hope',
  'okay',
  'first',
  'wan',
  'na',
  'thank',
  'everyon',
  'perspect',
  'emot',
  'longer',
  'run',
  'high',
  'im',
  'littl',
  'surpris',
  'reason',
  'comment',
  'got',
  'downvot',
  'thank',
  'valid',
  'frustrat',
  'agre',
  'gentl',
  'esh',
  'voter',
  'despit',
  'final',
  'judgement',
  'im',
  'oblig',
  'bring',
  'anyon',
  'brother',
  'trip',
  'way',
  'dealt',
  'whole',
  'situat',
  'came',
  'place',
  'anger',
  'hurt',
  'ive',
  'gone',
  'still',
  'go',
  'therapi',
  'shit',
  'parent',
  'put',
  'ive',
  'made',
  'progress',
  'parent',
  'anyon',
  'relat',
  'bs',
  'still',
  'bring',
  'worst',
  'mind',
  'situat',
  'step',
  'sister',
  'text',
  'apolog',
  'said',
  'said',
  'howev',
  'reiter',
  'tyler',
  'invit',
  'ask',
  'extend',
  'apolog',
  'brother',
  'told',
  'said',
  'step',
  'brother',
  'open',
  'dm',
  'repli',
  'polit',
  'firm',
  'mom',
  'dad',
  'email',
  'made',
  'mistak',
  'think',
  'carefully-kept',
  'distanc',
  'enough',
  'least',
  'semblanc',
  'relationship',
  'told',
  'listen',
  'tyler',
  'year',
  'ago',
  'cut',
  'loss',
  'like',
  'ask',
  'lose',
  'number',
  'email',
  'anyth',
  'anymor',
  'block',
  'parent',
  'number',
  'set',
  'email',
  'spam',
  'box',
  'step',
  'sibl',
  'howev',
  'remov',
  'anyon',
  'recogn',
  'ig',
  'follow',
  'parent',
  'newoth',
  'number',
  'still',
  'get',
  'block',
  'ignor',
  'step',
  'sibl',
  'point',
  'realli',
  'engag',
  'meltdown',
  'close',
  'door',
  'face',
  'either',
  'think',
  'ill',
  'ever',
  'place',
  'step',
  'half',
  'sibl',
  'tyler',
  'closer',
  'introspect',
  'think',
  'im',
  'readi',
  'complet',
  'end',
  'possibl',
  'either',
  'matter',
  'imposs',
  'seem',
  'right',
  'guess',
  'thank',
  'tyler',
  'smug',
  'sinc',
  'show',
  'post',
  'whatev',
  'earn',
  'right',
  'brother_tyler',
  'tyler_parent',
  'parent_got',
  'got_divorc',
  'divorc_extrem',
  'extrem_messi',
  'messi_fought',
  'fought_constantli',
  'constantli_courtroom',
  'courtroom_favorit',
  'favorit_weapon',
  'weapon_tyler',
  'tyler_alreadi',
  'alreadi_away',
  'away_colleg',
  'colleg_hour',
  'hour_drive',
  'drive_away',
  'away_dorm',
  'dorm_apart',
  'apart_favorit',
  'favorit_place',
  'place_run',
  'run_away',
  'away_whenev',
  'whenev_get',
  'get_away',
  'away_divorc',
  'divorc_particularli',
  'particularli_close',
  'close_close',
  'close_brother',
  'brother_couldv',
  'couldv_turn',
  'turn_blind',
  'blind_eye',
  'eye_owe',
  'owe_hell',
  'hell_lot',
  'lot_year',
  'year_sinc',
  'sinc_parent',
  'parent_remarri',
  'remarri_sever',
  'sever_step',
  'step_half',
  'half_sibl',
  'sibl_side',
  'side_never',
  'never_met',
  'met_younger',
  'younger_anyth',
  'anyth_person',
  'person_tyler',
  'tyler_prefer',
  'prefer_keep',
  'keep_distanc',
  'distanc_away',
  'away_drama',
  'drama_parent',
  'parent_howev',
  'howev_still',
  'still_push',
  'push_us',
  'us_mostli',
  'mostli_buddi',
  'buddi_buddi',
  'buddi_new',
  'new_kid',
  'kid_mayb',
  'mayb_still',
  'still_want',
  'want_use',
  'use_one-up',
  'one-up_tool',
  'tool_like',
  'like_theyr',
  'theyr_race',
  'race_get',
  'get_us',
  'us_act',
  'act_big',
  'big_brother',
  'brother_kid',
  'kid_know',
  'know_sure',
  'sure_know',
  'know_im',
  'im_interest',
  'interest_anyth',
  'anyth_person',
  'person_im',
  'im_graduat',
  'graduat_colleg',
  'colleg_soon',
  'soon_tyler',
  'tyler_want',
  'want_take',
  'take_coupl',
  'coupl_friend',
  'friend_along',
  'along_cross-countri',
  'cross-countri_road',
  'road_trip',
  'trip_celebr',
  'celebr_go',
  'go_old',
  'old_colleg',
  'colleg_got',
  'got_job',
  'job_citi',
  'citi_graduat',
  'graduat_think',
  'think_possibl',
  'possibl_anyth',
  'anyth_like',
  'like_thing',
  'thing_past',
  'past_two',
  'two_year',
  'year_im',
  'im_super',
  'super_excit',
  'excit_weve',
  'weve_prepar',
  'prepar_thing',
  'thing_run',
  'run_problem',
  'problem_later',
  'later_ive',
  'ive_document',
  'document_thing',
  'thing_mainli',
  'mainli_instagram',
  'instagram_stori',
  'stori_realiz',
  'realiz_step',
  'step_sibl',
  'sibl_alreadi',
  'alreadi_follow',
  'follow_set',
  'set_account',
  'account_privat',
  'privat_coupl',
  'coupl_year',
  'year_back',
  'back_word',
  'word_got',
  'got_around',
  'around_everyon',
  'everyon_start',
  'start_demand',
  'demand_take',
  'take_step',
  'step_half',
  'half_us',
  'us_even',
  'even_chang',
  'chang_trip',
  'trip_make',
  'make_kid',
  'kid_friendli',
  'friendli_kind',
  'kind_absurd',
  'absurd_entitl',
  'entitl_admit',
  'admit_lost',
  'lost_temper',
  'temper_fifth',
  'fifth_time',
  'time_call',
  'call_good',
  'good_brother',
  'brother_mom',
  'mom_oldest',
  'oldest_step',
  'step_daughter',
  'daughter_insist',
  'insist_everyon',
  'everyon_yell',
  'yell_one',
  'one_get',
  'get_call',
  'call_brother',
  'brother_tyler',
  'tyler_rest',
  'rest_dad',
  'dad_spawn',
  'spawn_less',
  'less_stranger',
  'stranger_went',
  'went_well',
  'well_imagin',
  'imagin_tyler',
  'tyler_friend',
  'friend_thought',
  'thought_hilari',
  'hilari_long',
  'long_overdu',
  'overdu_everyon',
  'everyon_els',
  'els_think',
  'think_im',
  'im_asshol',
  'asshol_edit',
  'edit_first',
  'first_holi',
  'holi_shit',
  'shit_thank',
  'thank_judgement',
  'judgement_opinion',
  'opinion_stori',
  'stori_advic',
  'advic_itll',
  'itll_take',
  'take_read',
  'read_eventu',
  'eventu_second',
  'second_id',
  'id_like',
  'like_give',
  'give_addit',
  'addit_info',
  'info_base',
  'base_common',
  'common_questionsspecul',
  'questionsspecul_ive',
  'ive_seen',
  'seen_far',
  'far_mom',
  'mom_dad',
  'dad_cheat',
  'cheat_remarri',
  'remarri_quickli',
  'quickli_within',
  'within_year',
  'year_post',
  'post_divorc',
  'divorc_say',
  'say_ive',
  'ive_never',
  'never_seen',
  'seen_new',
  'new_kid',
  'kid_exagger',
  'exagger_tyler',
  'tyler_tho',
  'tho_actual',
  'actual_never',
  'never_even',
  'even_met',
  'met_beyond',
  'beyond_forc',
  'forc_bond',
  'bond_session',
  'session_like',
  'like_twice',
  'twice_rememb',
  'rememb_alway',
  'alway_tri',
  'tri_synch',
  'synch_stay',
  'stay_turn',
  'turn_stay',
  'stay_parent',
  'parent_cant',
  'cant_swing',
  'swing_ill',
  'ill_go',
  'go_stay',
  'stay_tyler',
  'tyler_weekend',
  'weekend_avoid',
  'avoid_much',
  'much_possibl',
  'possibl_children',
  'children_question',
  'question_mom',
  'mom_step',
  'step_annoy',
  'annoy_one',
  'one_also',
  'also_one',
  'one_follow',
  'follow_ig',
  'ig_step',
  'step_ask',
  'ask_back',
  'back_said',
  'said_half',
  'half_never',
  'never_whine',
  'whine_directli',
  'directli_mom',
  'mom_said',
  'said_cri',
  'cri_dad',
  'dad_step',
  'step_call',
  'call_sent',
  'sent_coupl',
  'coupl_dm',
  'dm_open',
  'open_twin',
  'twin_half',
  'half_dad',
  'dad_push',
  'push_take',
  'take_coupl',
  'coupl_hour',
  'hour_start',
  'start_annoy',
  'annoy_idea',
  'idea_exactli',
  'exactli_news',
  'news_spread',
  'spread_rest',
  'rest_annoyingli',
  'annoyingli_hope',
  'hope_help',
  'help_clear',
  'clear_thing',
  'thing_sorri',
  'sorri_gave',
  'gave_wrong',
  'wrong_impress',
  'impress_best',
  'best_state',
  'state_mind',
  'mind_wrote',
  'wrote_origin',
  'origin_post',
  'post_edit',
  'edit_updat',
  'updat_peopl',
  'peopl_still',
  'still_reach',
  'reach_ask',
  'ask_happen',
  'happen_post',
  'post_im',
  'im_realli',
  'realli_sure',
  'sure_post',
  'post_updat',
  'updat_hope',
  'hope_okay',
  'okay_first',
  'first_wan',
  'wan_na',
  'na_thank',
  'thank_everyon',
  'everyon_perspect',
  'perspect_emot',
  'emot_longer',
  'longer_run',
  'run_high',
  'high_im',
  'im_littl',
  'littl_surpris',
  'surpris_reason',
  'reason_comment',
  'comment_got',
  'got_downvot',
  'downvot_thank',
  'thank_valid',
  'valid_frustrat',
  'frustrat_agre',
  'agre_gentl',
  'gentl_esh',
  'esh_voter',
  'voter_despit',
  'despit_final',
  'final_judgement',
  'judgement_im',
  'im_oblig',
  'oblig_bring',
  'bring_anyon',
  'anyon_brother',
  'brother_trip',
  'trip_way',
  'way_dealt',
  'dealt_whole',
  'whole_situat',
  'situat_came',
  'came_place',
  'place_anger',
  'anger_hurt',
  'hurt_ive',
  'ive_gone',
  'gone_still',
  'still_go',
  'go_therapi',
  'therapi_shit',
  'shit_parent',
  'parent_put',
  'put_ive',
  'ive_made',
  'made_progress',
  'progress_parent',
  'parent_anyon',
  'anyon_relat',
  'relat_bs',
  'bs_still',
  'still_bring',
  'bring_worst',
  'worst_mind',
  'mind_situat',
  'situat_step',
  'step_sister',
  'sister_text',
  'text_apolog',
  'apolog_said',
  'said_said',
  'said_howev',
  'howev_reiter',
  'reiter_tyler',
  'tyler_invit',
  'invit_ask',
  'ask_extend',
  'extend_apolog',
  'apolog_brother',
  'brother_told',
  'told_said',
  'said_step',
  'step_brother',
  'brother_open',
  'open_dm',
  'dm_repli',
  'repli_polit',
  'polit_firm',
  'firm_mom',
  'mom_dad',
  'dad_email',
  'email_made',
  'made_mistak',
  'mistak_think',
  'think_carefully-kept',
  'carefully-kept_distanc',
  'distanc_enough',
  'enough_least',
  'least_semblanc',
  'semblanc_relationship',
  'relationship_told',
  'told_listen',
  'listen_tyler',
  'tyler_year',
  'year_ago',
  'ago_cut',
  'cut_loss',
  'loss_like',
  'like_ask',
  'ask_lose',
  'lose_number',
  'number_email',
  'email_anyth',
  'anyth_anymor',
  'anymor_block',
  'block_parent',
  'parent_number',
  'number_set',
  'set_email',
  'email_spam',
  'spam_box',
  'box_step',
  'step_sibl',
  'sibl_howev',
  'howev_remov',
  'remov_anyon',
  'anyon_recogn',
  'recogn_ig',
  'ig_follow',
  'follow_parent',
  'parent_newoth',
  'newoth_number',
  'number_still',
  'still_get',
  'get_block',
  'block_ignor',
  ...],
 ['realli',
  'sweet',
  'mil',
  'dh',
  'mom',
  'get',
  'along',
  'time',
  'howev',
  'visit',
  'home',
  'notic',
  'goe',
  'throw',
  'drawer',
  'bedroom',
  'look',
  'charger',
  'someth',
  'find',
  'bit',
  'invas',
  'embarrass',
  'especi',
  'open',
  'wrong',
  'drawer',
  'would',
  'personalitem',
  'like',
  'lingeri',
  'goe',
  'complain',
  'uncomfort',
  'everi',
  'singl',
  'time',
  'weve',
  'gone',
  'back',
  'forth',
  'state',
  'wrong',
  'even',
  'look',
  'person',
  'stuff',
  'said',
  'got',
  'confus',
  'know',
  'drawer',
  'item',
  'look',
  'dh',
  'suggest',
  'bring',
  'whatev',
  'need',
  'instead',
  'go',
  'insid',
  'look',
  'never',
  'ask',
  'decid',
  'label',
  'drawersmean',
  'put',
  'sign',
  'everi',
  'drawer',
  'elimin',
  'dear',
  'mil',
  'confus',
  'exampl',
  'put',
  'sock',
  'sign',
  'sock',
  'drawer',
  'lingeri',
  'sign',
  'lingeri',
  'underwear',
  'drawer',
  'electron',
  'makeup',
  'drawer',
  'etc',
  'get',
  'idea',
  'next',
  'time',
  'mil',
  'visit',
  'walk',
  'bedroom',
  'look',
  'someth',
  'kitchen',
  'cook',
  'minut',
  'later',
  'came',
  'husband',
  'ask',
  'sign',
  'drawer',
  'told',
  'label',
  'drawer',
  'end',
  'confus',
  'help',
  'find',
  'look',
  'quickli',
  'look',
  'offend',
  'said',
  'niether',
  'small',
  'child',
  'stupid',
  'treat',
  'like',
  'said',
  'realli',
  'tri',
  'help',
  'also',
  'tri',
  'prevent',
  'see',
  'stuff',
  'upset',
  'past',
  'got',
  'madder',
  'kept',
  'argu',
  'left',
  'stay',
  'bil',
  'hous',
  'bil',
  'call',
  'berat',
  'dh',
  'dh',
  'lash',
  'say',
  'caus',
  'mess',
  'need',
  'apolog',
  'realli_sweet',
  'sweet_mil',
  'mil_dh',
  'dh_mom',
  'mom_get',
  'get_along',
  'along_time',
  'time_howev',
  'howev_visit',
  'visit_home',
  'home_notic',
  'notic_goe',
  'goe_throw',
  'throw_drawer',
  'drawer_bedroom',
  'bedroom_look',
  'look_charger',
  'charger_someth',
  'someth_find',
  'find_bit',
  'bit_invas',
  'invas_embarrass',
  'embarrass_especi',
  'especi_open',
  'open_wrong',
  'wrong_drawer',
  'drawer_would',
  'would_personalitem',
  'personalitem_like',
  'like_lingeri',
  'lingeri_goe',
  'goe_complain',
  'complain_uncomfort',
  'uncomfort_everi',
  'everi_singl',
  'singl_time',
  'time_weve',
  'weve_gone',
  'gone_back',
  'back_forth',
  'forth_state',
  'state_wrong',
  'wrong_even',
  'even_look',
  'look_person',
  'person_stuff',
  'stuff_said',
  'said_got',
  'got_confus',
  'confus_know',
  'know_drawer',
  'drawer_item',
  'item_look',
  'look_dh',
  'dh_suggest',
  'suggest_bring',
  'bring_whatev',
  'whatev_need',
  'need_instead',
  'instead_go',
  'go_insid',
  'insid_look',
  'look_never',
  'never_ask',
  'ask_decid',
  'decid_label',
  'label_drawersmean',
  'drawersmean_put',
  'put_sign',
  'sign_everi',
  'everi_drawer',
  'drawer_elimin',
  'elimin_dear',
  'dear_mil',
  'mil_confus',
  'confus_exampl',
  'exampl_put',
  'put_sock',
  'sock_sign',
  'sign_sock',
  'sock_drawer',
  'drawer_lingeri',
  'lingeri_sign',
  'sign_lingeri',
  'lingeri_underwear',
  'underwear_drawer',
  'drawer_electron',
  'electron_makeup',
  'makeup_drawer',
  'drawer_etc',
  'etc_get',
  'get_idea',
  'idea_next',
  'next_time',
  'time_mil',
  'mil_visit',
  'visit_walk',
  'walk_bedroom',
  'bedroom_look',
  'look_someth',
  'someth_kitchen',
  'kitchen_cook',
  'cook_minut',
  'minut_later',
  'later_came',
  'came_husband',
  'husband_ask',
  'ask_sign',
  'sign_drawer',
  'drawer_told',
  'told_label',
  'label_drawer',
  'drawer_end',
  'end_confus',
  'confus_help',
  'help_find',
  'find_look',
  'look_quickli',
  'quickli_look',
  'look_offend',
  'offend_said',
  'said_niether',
  'niether_small',
  'small_child',
  'child_stupid',
  'stupid_treat',
  'treat_like',
  'like_said',
  'said_realli',
  'realli_tri',
  'tri_help',
  'help_also',
  'also_tri',
  'tri_prevent',
  'prevent_see',
  'see_stuff',
  'stuff_upset',
  'upset_past',
  'past_got',
  'got_madder',
  'madder_kept',
  'kept_argu',
  'argu_left',
  'left_stay',
  'stay_bil',
  'bil_hous',
  'hous_bil',
  'bil_call',
  'call_berat',
  'berat_dh',
  'dh_dh',
  'dh_lash',
  'lash_say',
  'say_caus',
  'caus_mess',
  'mess_need',
  'need_apolog',
  'realli_sweet_mil',
  'sweet_mil_dh',
  'mil_dh_mom',
  'dh_mom_get',
  'mom_get_along',
  'get_along_time',
  'along_time_howev',
  'time_howev_visit',
  'howev_visit_home',
  'visit_home_notic',
  'home_notic_goe',
  'notic_goe_throw',
  'goe_throw_drawer',
  'throw_drawer_bedroom',
  'drawer_bedroom_look',
  'bedroom_look_charger',
  'look_charger_someth',
  'charger_someth_find',
  'someth_find_bit',
  'find_bit_invas',
  'bit_invas_embarrass',
  'invas_embarrass_especi',
  'embarrass_especi_open',
  'especi_open_wrong',
  'open_wrong_drawer',
  'wrong_drawer_would',
  'drawer_would_personalitem',
  'would_personalitem_like',
  'personalitem_like_lingeri',
  'like_lingeri_goe',
  'lingeri_goe_complain',
  'goe_complain_uncomfort',
  'complain_uncomfort_everi',
  'uncomfort_everi_singl',
  'everi_singl_time',
  'singl_time_weve',
  'time_weve_gone',
  'weve_gone_back',
  'gone_back_forth',
  'back_forth_state',
  'forth_state_wrong',
  'state_wrong_even',
  'wrong_even_look',
  'even_look_person',
  'look_person_stuff',
  'person_stuff_said',
  'stuff_said_got',
  'said_got_confus',
  'got_confus_know',
  'confus_know_drawer',
  'know_drawer_item',
  'drawer_item_look',
  'item_look_dh',
  'look_dh_suggest',
  'dh_suggest_bring',
  'suggest_bring_whatev',
  'bring_whatev_need',
  'whatev_need_instead',
  'need_instead_go',
  'instead_go_insid',
  'go_insid_look',
  'insid_look_never',
  'look_never_ask',
  'never_ask_decid',
  'ask_decid_label',
  'decid_label_drawersmean',
  'label_drawersmean_put',
  'drawersmean_put_sign',
  'put_sign_everi',
  'sign_everi_drawer',
  'everi_drawer_elimin',
  'drawer_elimin_dear',
  'elimin_dear_mil',
  'dear_mil_confus',
  'mil_confus_exampl',
  'confus_exampl_put',
  'exampl_put_sock',
  'put_sock_sign',
  'sock_sign_sock',
  'sign_sock_drawer',
  'sock_drawer_lingeri',
  'drawer_lingeri_sign',
  'lingeri_sign_lingeri',
  'sign_lingeri_underwear',
  'lingeri_underwear_drawer',
  'underwear_drawer_electron',
  'drawer_electron_makeup',
  'electron_makeup_drawer',
  'makeup_drawer_etc',
  'drawer_etc_get',
  'etc_get_idea',
  'get_idea_next',
  'idea_next_time',
  'next_time_mil',
  'time_mil_visit',
  'mil_visit_walk',
  'visit_walk_bedroom',
  'walk_bedroom_look',
  'bedroom_look_someth',
  'look_someth_kitchen',
  'someth_kitchen_cook',
  'kitchen_cook_minut',
  'cook_minut_later',
  'minut_later_came',
  'later_came_husband',
  'came_husband_ask',
  'husband_ask_sign',
  'ask_sign_drawer',
  'sign_drawer_told',
  'drawer_told_label',
  'told_label_drawer',
  'label_drawer_end',
  'drawer_end_confus',
  'end_confus_help',
  'confus_help_find',
  'help_find_look',
  'find_look_quickli',
  'look_quickli_look',
  'quickli_look_offend',
  'look_offend_said',
  'offend_said_niether',
  'said_niether_small',
  'niether_small_child',
  'small_child_stupid',
  'child_stupid_treat',
  'stupid_treat_like',
  'treat_like_said',
  'like_said_realli',
  'said_realli_tri',
  'realli_tri_help',
  'tri_help_also',
  'help_also_tri',
  'also_tri_prevent',
  'tri_prevent_see',
  'prevent_see_stuff',
  'see_stuff_upset',
  'stuff_upset_past',
  'upset_past_got',
  'past_got_madder',
  'got_madder_kept',
  'madder_kept_argu',
  'kept_argu_left',
  'argu_left_stay',
  'left_stay_bil',
  'stay_bil_hous',
  'bil_hous_bil',
  'hous_bil_call',
  'bil_call_berat',
  'call_berat_dh',
  'berat_dh_dh',
  'dh_dh_lash',
  'dh_lash_say',
  'lash_say_caus',
  'say_caus_mess',
  'caus_mess_need',
  'mess_need_apolog'],
 ['husband',
  'big',
  'game',
  'addict',
  'parent',
  'hate',
  'play',
  'game',
  'got',
  'multipl',
  'fight',
  'children',
  'adult',
  'hobbi',
  'sore',
  'subject',
  'famili',
  'opt',
  'lie',
  'say',
  'outsid',
  'anyon',
  'ask',
  'work',
  'home',
  'right',
  'work',
  'proceed',
  'play',
  'game',
  'midnight',
  'none',
  'us',
  'like',
  'leav',
  'hous',
  'practic',
  'next',
  '%',
  'time',
  'humanli',
  'possibl',
  'way',
  'either',
  'us',
  'cheat',
  'one',
  'anoth',
  'current',
  'pregnant',
  'caus',
  'inlaw',
  'visit',
  'frequent',
  'due',
  'increas',
  'visit',
  'reduc',
  'much',
  'game',
  'time',
  'better',
  'health',
  'babi',
  'see',
  'us',
  'game',
  'gotten',
  'argument',
  'hobbi',
  'unaccept',
  'childish',
  'need',
  'chang',
  'sunday',
  'known',
  'everyon',
  'unavail',
  'day',
  'alway',
  'say',
  'date',
  'someth',
  'realiti',
  'home',
  'get',
  'weekli',
  'game',
  'quota',
  'cover',
  'husband',
  'went',
  'game',
  'cafe',
  'friend',
  'vise',
  'stay',
  'home',
  'last',
  'sunday',
  'mil',
  'decid',
  'later',
  'call',
  'middl',
  'match',
  'suppos',
  'act',
  'suspici',
  'want',
  'end',
  'convers',
  'asap',
  'ask',
  'repli',
  'automat',
  'without',
  'think',
  'date',
  'husband',
  'accord',
  'husband',
  'later',
  'call',
  'said',
  'bar',
  'friend',
  'mil',
  'decid',
  'visit',
  'hous',
  'undoubtli',
  'middl',
  'anoth',
  'game',
  'avoid',
  'phone',
  'call',
  'pretend',
  'hear',
  'knock',
  'match',
  'minut',
  'afterward',
  'answer',
  'door',
  'pretend',
  'sleep',
  'answer',
  'phone',
  'door',
  'mil',
  'explod',
  'call',
  'cheater',
  'child',
  'pregnant',
  'son',
  'otherwis',
  'would',
  'answer',
  'door',
  'idea',
  'would',
  'cheat',
  'would',
  'even',
  'possibl',
  'cheat',
  'partner',
  'hilari',
  'burst',
  'laugh',
  'anger',
  'mil',
  'even',
  'continu',
  'berat',
  'smile',
  'sit',
  'think',
  'ridicul',
  'husband',
  'came',
  'home',
  'berat',
  'front',
  'cheat',
  'husband',
  'visibl',
  'confus',
  'whole',
  'time',
  'confirm',
  'mother',
  'possibl',
  'way',
  'cheat',
  'explain',
  'togeth',
  'practic',
  'everi',
  'moment',
  'day',
  'mil',
  'saw',
  'get',
  'side',
  'proceed',
  'get',
  'mad',
  'lead',
  'call',
  'asshol',
  'pretend',
  'affair',
  'never',
  'correct',
  'told',
  'peopl',
  'although',
  'never',
  'clarifi',
  'cheat',
  'think',
  'place',
  'come',
  'unannounc',
  'proclaim',
  'cheater',
  'aita',
  'husband_big',
  'big_game',
  'game_addict',
  'addict_parent',
  'parent_hate',
  'hate_play',
  'play_game',
  'game_got',
  'got_multipl',
  'multipl_fight',
  'fight_children',
  'children_adult',
  'adult_hobbi',
  'hobbi_sore',
  'sore_subject',
  'subject_famili',
  'famili_opt',
  'opt_lie',
  'lie_say',
  'say_outsid',
  'outsid_anyon',
  'anyon_ask',
  'ask_work',
  'work_home',
  'home_right',
  'right_work',
  'work_proceed',
  'proceed_play',
  'play_game',
  'game_midnight',
  'midnight_none',
  'none_us',
  'us_like',
  'like_leav',
  'leav_hous',
  'hous_practic',
  'practic_next',
  'next_%',
  '%_time',
  'time_humanli',
  'humanli_possibl',
  'possibl_way',
  'way_either',
  'either_us',
  'us_cheat',
  'cheat_one',
  'one_anoth',
  'anoth_current',
  'current_pregnant',
  'pregnant_caus',
  'caus_inlaw',
  'inlaw_visit',
  'visit_frequent',
  'frequent_due',
  'due_increas',
  'increas_visit',
  'visit_reduc',
  'reduc_much',
  'much_game',
  'game_time',
  'time_better',
  'better_health',
  'health_babi',
  'babi_see',
  'see_us',
  'us_game',
  'game_gotten',
  'gotten_argument',
  'argument_hobbi',
  'hobbi_unaccept',
  'unaccept_childish',
  'childish_need',
  'need_chang',
  'chang_sunday',
  'sunday_known',
  'known_everyon',
  'everyon_unavail',
  'unavail_day',
  'day_alway',
  'alway_say',
  'say_date',
  'date_someth',
  'someth_realiti',
  'realiti_home',
  'home_get',
  'get_weekli',
  'weekli_game',
  'game_quota',
  'quota_cover',
  'cover_husband',
  'husband_went',
  'went_game',
  'game_cafe',
  'cafe_friend',
  'friend_vise',
  'vise_stay',
  'stay_home',
  'home_last',
  'last_sunday',
  'sunday_mil',
  'mil_decid',
  'decid_later',
  'later_call',
  'call_middl',
  'middl_match',
  'match_suppos',
  'suppos_act',
  'act_suspici',
  'suspici_want',
  'want_end',
  'end_convers',
  'convers_asap',
  'asap_ask',
  'ask_repli',
  'repli_automat',
  'automat_without',
  'without_think',
  'think_date',
  'date_husband',
  'husband_accord',
  'accord_husband',
  'husband_later',
  'later_call',
  'call_said',
  'said_bar',
  'bar_friend',
  'friend_mil',
  'mil_decid',
  'decid_visit',
  'visit_hous',
  'hous_undoubtli',
  'undoubtli_middl',
  'middl_anoth',
  'anoth_game',
  'game_avoid',
  'avoid_phone',
  'phone_call',
  'call_pretend',
  'pretend_hear',
  'hear_knock',
  'knock_match',
  'match_minut',
  'minut_afterward',
  'afterward_answer',
  'answer_door',
  'door_pretend',
  'pretend_sleep',
  'sleep_answer',
  'answer_phone',
  'phone_door',
  'door_mil',
  'mil_explod',
  'explod_call',
  'call_cheater',
  'cheater_child',
  'child_pregnant',
  'pregnant_son',
  'son_otherwis',
  'otherwis_would',
  'would_answer',
  'answer_door',
  'door_idea',
  'idea_would',
  'would_cheat',
  'cheat_would',
  'would_even',
  'even_possibl',
  'possibl_cheat',
  'cheat_partner',
  'partner_hilari',
  'hilari_burst',
  'burst_laugh',
  'laugh_anger',
  'anger_mil',
  'mil_even',
  'even_continu',
  'continu_berat',
  'berat_smile',
  'smile_sit',
  'sit_think',
  'think_ridicul',
  'ridicul_husband',
  'husband_came',
  'came_home',
  'home_berat',
  'berat_front',
  'front_cheat',
  'cheat_husband',
  'husband_visibl',
  'visibl_confus',
  'confus_whole',
  'whole_time',
  'time_confirm',
  'confirm_mother',
  'mother_possibl',
  'possibl_way',
  'way_cheat',
  'cheat_explain',
  'explain_togeth',
  'togeth_practic',
  'practic_everi',
  'everi_moment',
  'moment_day',
  'day_mil',
  'mil_saw',
  'saw_get',
  'get_side',
  'side_proceed',
  'proceed_get',
  'get_mad',
  'mad_lead',
  'lead_call',
  'call_asshol',
  'asshol_pretend',
  'pretend_affair',
  'affair_never',
  'never_correct',
  'correct_told',
  'told_peopl',
  'peopl_although',
  'although_never',
  'never_clarifi',
  'clarifi_cheat',
  'cheat_think',
  'think_place',
  'place_come',
  'come_unannounc',
  'unannounc_proclaim',
  'proclaim_cheater',
  'cheater_aita',
  'husband_big_game',
  'big_game_addict',
  'game_addict_parent',
  'addict_parent_hate',
  'parent_hate_play',
  'hate_play_game',
  'play_game_got',
  'game_got_multipl',
  'got_multipl_fight',
  'multipl_fight_children',
  'fight_children_adult',
  'children_adult_hobbi',
  'adult_hobbi_sore',
  'hobbi_sore_subject',
  'sore_subject_famili',
  'subject_famili_opt',
  'famili_opt_lie',
  'opt_lie_say',
  'lie_say_outsid',
  'say_outsid_anyon',
  'outsid_anyon_ask',
  'anyon_ask_work',
  'ask_work_home',
  'work_home_right',
  'home_right_work',
  'right_work_proceed',
  'work_proceed_play',
  'proceed_play_game',
  'play_game_midnight',
  'game_midnight_none',
  'midnight_none_us',
  'none_us_like',
  'us_like_leav',
  'like_leav_hous',
  'leav_hous_practic',
  'hous_practic_next',
  'practic_next_%',
  'next_%_time',
  '%_time_humanli',
  'time_humanli_possibl',
  'humanli_possibl_way',
  'possibl_way_either',
  'way_either_us',
  'either_us_cheat',
  'us_cheat_one',
  'cheat_one_anoth',
  'one_anoth_current',
  'anoth_current_pregnant',
  'current_pregnant_caus',
  'pregnant_caus_inlaw',
  'caus_inlaw_visit',
  'inlaw_visit_frequent',
  'visit_frequent_due',
  'frequent_due_increas',
  'due_increas_visit',
  'increas_visit_reduc',
  'visit_reduc_much',
  'reduc_much_game',
  'much_game_time',
  'game_time_better',
  'time_better_health',
  'better_health_babi',
  'health_babi_see',
  'babi_see_us',
  'see_us_game',
  'us_game_gotten',
  'game_gotten_argument',
  'gotten_argument_hobbi',
  'argument_hobbi_unaccept',
  'hobbi_unaccept_childish',
  'unaccept_childish_need',
  'childish_need_chang',
  'need_chang_sunday',
  'chang_sunday_known',
  'sunday_known_everyon',
  'known_everyon_unavail',
  'everyon_unavail_day',
  'unavail_day_alway',
  'day_alway_say',
  'alway_say_date',
  'say_date_someth',
  'date_someth_realiti',
  'someth_realiti_home',
  'realiti_home_get',
  'home_get_weekli',
  'get_weekli_game',
  'weekli_game_quota',
  'game_quota_cover',
  'quota_cover_husband',
  'cover_husband_went',
  'husband_went_game',
  'went_game_cafe',
  'game_cafe_friend',
  'cafe_friend_vise',
  'friend_vise_stay',
  'vise_stay_home',
  'stay_home_last',
  'home_last_sunday',
  'last_sunday_mil',
  'sunday_mil_decid',
  'mil_decid_later',
  'decid_later_call',
  'later_call_middl',
  'call_middl_match',
  'middl_match_suppos',
  'match_suppos_act',
  'suppos_act_suspici',
  'act_suspici_want',
  'suspici_want_end',
  'want_end_convers',
  'end_convers_asap',
  'convers_asap_ask',
  'asap_ask_repli',
  'ask_repli_automat',
  'repli_automat_without',
  'automat_without_think',
  'without_think_date',
  'think_date_husband',
  'date_husband_accord',
  'husband_accord_husband',
  'accord_husband_later',
  'husband_later_call',
  'later_call_said',
  'call_said_bar',
  'said_bar_friend',
  'bar_friend_mil',
  'friend_mil_decid',
  'mil_decid_visit',
  'decid_visit_hous',
  'visit_hous_undoubtli',
  'hous_undoubtli_middl',
  'undoubtli_middl_anoth',
  'middl_anoth_game',
  'anoth_game_avoid',
  'game_avoid_phone',
  'avoid_phone_call',
  'phone_call_pretend',
  'call_pretend_hear',
  'pretend_hear_knock',
  'hear_knock_match',
  'knock_match_minut',
  'match_minut_afterward',
  'minut_afterward_answer',
  'afterward_answer_door',
  'answer_door_pretend',
  'door_pretend_sleep',
  'pretend_sleep_answer',
  'sleep_answer_phone',
  'answer_phone_door',
  'phone_door_mil',
  'door_mil_explod',
  'mil_explod_call',
  'explod_call_cheater',
  'call_cheater_child',
  'cheater_child_pregnant',
  'child_pregnant_son',
  'pregnant_son_otherwis',
  'son_otherwis_would',
  'otherwis_would_answer',
  'would_answer_door',
  'answer_door_idea',
  'door_idea_would',
  'idea_would_cheat',
  'would_cheat_would',
  'cheat_would_even',
  'would_even_possibl',
  'even_possibl_cheat',
  'possibl_cheat_partner',
  'cheat_partner_hilari',
  'partner_hilari_burst',
  'hilari_burst_laugh',
  'burst_laugh_anger',
  'laugh_anger_mil',
  'anger_mil_even',
  'mil_even_continu',
  'even_continu_berat',
  'continu_berat_smile',
  'berat_smile_sit',
  'smile_sit_think',
  'sit_think_ridicul',
  'think_ridicul_husband',
  'ridicul_husband_came',
  'husband_came_home',
  'came_home_berat',
  'home_berat_front',
  'berat_front_cheat',
  'front_cheat_husband',
  'cheat_husband_visibl',
  'husband_visibl_confus',
  'visibl_confus_whole',
  'confus_whole_time',
  'whole_time_confirm',
  'time_confirm_mother',
  'confirm_mother_possibl',
  'mother_possibl_way',
  'possibl_way_cheat',
  'way_cheat_explain',
  'cheat_explain_togeth',
  'explain_togeth_practic',
  'togeth_practic_everi',
  'practic_everi_moment',
  'everi_moment_day',
  'moment_day_mil',
  'day_mil_saw',
  'mil_saw_get',
  'saw_get_side',
  'get_side_proceed',
  'side_proceed_get',
  'proceed_get_mad',
  'get_mad_lead',
  'mad_lead_call',
  'lead_call_asshol',
  'call_asshol_pretend',
  'asshol_pretend_affair',
  'pretend_affair_never',
  'affair_never_correct',
  'never_correct_told',
  'correct_told_peopl',
  'told_peopl_although',
  'peopl_although_never',
  'although_never_clarifi',
  'never_clarifi_cheat',
  'clarifi_cheat_think',
  'cheat_think_place',
  'think_place_come',
  'place_come_unannounc',
  'come_unannounc_proclaim',
  'unannounc_proclaim_cheater',
  'proclaim_cheater_aita'],
 ['marri',
  'jeff',
  'year',
  'ago',
  'daughter',
  'alicia',
  '-',
  'previou',
  'marriag',
  'daughter',
  'morgan',
  '-',
  'previou',
  'marriag',
  'well',
  'alicia',
  'closer',
  'morgan',
  'alway',
  'someth',
  'upset',
  'exampl',
  'morgan',
  'move',
  'jeff',
  'tri',
  'control',
  '&',
  'cant',
  'go',
  'area',
  'allow',
  'redecor',
  'put',
  'furnitur',
  'room',
  'morgan',
  'got',
  'etc',
  'excus',
  'want',
  'keep',
  'hous',
  'mom',
  'left',
  'much',
  'possibl',
  'jeff',
  'ask',
  'us',
  'patient',
  'shed',
  'come',
  'around',
  'eventu',
  'come',
  'around',
  'still',
  'tri',
  'control',
  'area',
  'mine',
  'morgan',
  'life',
  'million',
  'convers',
  'end',
  'throw',
  'tantrum',
  'jeff',
  'talk',
  'told',
  'tri',
  'control',
  'morgan',
  'ever',
  'agre',
  'morgan',
  'birthday',
  'day',
  'ago',
  'plan',
  'celebr',
  'restaur',
  'let',
  'morgan',
  'choos',
  'one',
  'pick',
  'realli',
  'nice',
  'restaur',
  'top',
  'expens',
  'agre',
  'parti',
  'would',
  'howev',
  'alicia',
  'heard',
  'restaur',
  'go',
  'went',
  'morgan',
  'said',
  'cant',
  'go',
  'restaur',
  'ton',
  'memori',
  'perfect',
  'old',
  'famili',
  'let',
  'us',
  'taint',
  'memori',
  'found',
  'beyond',
  'illog',
  'unreason',
  'told',
  'could',
  'stay',
  'home',
  'said',
  '-',
  'idea',
  'morgan',
  'jeff',
  'famili',
  'use',
  'mom',
  'jeff',
  'got',
  'argument',
  'jeff',
  'told',
  'tell',
  'morgan',
  'pick',
  'anoth',
  'restuar',
  'snap',
  'told',
  'alicia',
  'right',
  'dictat',
  'daughter',
  'go',
  'encourag',
  'told',
  'encourag',
  'anyth',
  'tri',
  'keep',
  'parti',
  'satisfi',
  'told',
  'get',
  'morgan',
  'chang',
  'restaur',
  'gothat',
  'decid',
  'go',
  'chang',
  'want',
  'end',
  'go',
  'morgan',
  'celebr',
  'mom',
  'morgan',
  'cours',
  'felt',
  'upset',
  'stepdad',
  'miss',
  'birthday',
  'celebr',
  'point',
  'argu',
  'liter',
  'gain',
  'noth',
  'insist',
  'particular',
  'restaur',
  'upset',
  'alicia',
  'refus',
  'speak',
  'us',
  'even',
  'ruin',
  'relationship',
  'morgan',
  'said',
  'morgan',
  'choic',
  'said',
  'adult',
  'situat',
  'fail',
  'navig',
  'aita',
  'still',
  'go',
  'restaur',
  'although',
  'alicia',
  'forbid',
  'us',
  'want',
  'make',
  'morgan',
  'feel',
  'like',
  'say',
  'right',
  'spend',
  'birthday',
  'howev',
  'want',
  'edit',
  'mom',
  'aliv',
  'know',
  'assum',
  'deceas',
  'aliv',
  'alicia',
  'see',
  'weekli',
  'marri_jeff',
  'jeff_year',
  'year_ago',
  'ago_daughter',
  'daughter_alicia',
  'alicia_-',
  '-_previou',
  'previou_marriag',
  'marriag_daughter',
  'daughter_morgan',
  'morgan_-',
  '-_previou',
  'previou_marriag',
  'marriag_well',
  'well_alicia',
  'alicia_closer',
  'closer_morgan',
  'morgan_alway',
  'alway_someth',
  'someth_upset',
  'upset_exampl',
  'exampl_morgan',
  'morgan_move',
  'move_jeff',
  'jeff_tri',
  'tri_control',
  'control_&',
  '&_cant',
  'cant_go',
  'go_area',
  'area_allow',
  'allow_redecor',
  'redecor_put',
  'put_furnitur',
  'furnitur_room',
  'room_morgan',
  'morgan_got',
  'got_etc',
  'etc_excus',
  'excus_want',
  'want_keep',
  'keep_hous',
  'hous_mom',
  'mom_left',
  'left_much',
  'much_possibl',
  'possibl_jeff',
  'jeff_ask',
  'ask_us',
  'us_patient',
  'patient_shed',
  'shed_come',
  'come_around',
  'around_eventu',
  'eventu_come',
  'come_around',
  'around_still',
  'still_tri',
  'tri_control',
  'control_area',
  'area_mine',
  'mine_morgan',
  'morgan_life',
  'life_million',
  'million_convers',
  'convers_end',
  'end_throw',
  'throw_tantrum',
  'tantrum_jeff',
  'jeff_talk',
  'talk_told',
  'told_tri',
  'tri_control',
  'control_morgan',
  'morgan_ever',
  'ever_agre',
  'agre_morgan',
  'morgan_birthday',
  'birthday_day',
  'day_ago',
  'ago_plan',
  'plan_celebr',
  'celebr_restaur',
  'restaur_let',
  'let_morgan',
  'morgan_choos',
  'choos_one',
  'one_pick',
  'pick_realli',
  'realli_nice',
  'nice_restaur',
  'restaur_top',
  'top_expens',
  'expens_agre',
  'agre_parti',
  'parti_would',
  'would_howev',
  'howev_alicia',
  'alicia_heard',
  'heard_restaur',
  'restaur_go',
  'go_went',
  'went_morgan',
  'morgan_said',
  'said_cant',
  'cant_go',
  'go_restaur',
  'restaur_ton',
  'ton_memori',
  'memori_perfect',
  'perfect_old',
  'old_famili',
  'famili_let',
  'let_us',
  'us_taint',
  'taint_memori',
  'memori_found',
  'found_beyond',
  'beyond_illog',
  'illog_unreason',
  'unreason_told',
  'told_could',
  'could_stay',
  'stay_home',
  'home_said',
  'said_-',
  '-_idea',
  'idea_morgan',
  'morgan_jeff',
  'jeff_famili',
  'famili_use',
  'use_mom',
  'mom_jeff',
  'jeff_got',
  'got_argument',
  'argument_jeff',
  'jeff_told',
  'told_tell',
  'tell_morgan',
  'morgan_pick',
  'pick_anoth',
  'anoth_restuar',
  'restuar_snap',
  'snap_told',
  'told_alicia',
  'alicia_right',
  'right_dictat',
  'dictat_daughter',
  'daughter_go',
  'go_encourag',
  'encourag_told',
  'told_encourag',
  'encourag_anyth',
  'anyth_tri',
  'tri_keep',
  'keep_parti',
  'parti_satisfi',
  'satisfi_told',
  'told_get',
  'get_morgan',
  'morgan_chang',
  'chang_restaur',
  'restaur_gothat',
  'gothat_decid',
  'decid_go',
  'go_chang',
  'chang_want',
  'want_end',
  'end_go',
  'go_morgan',
  'morgan_celebr',
  'celebr_mom',
  'mom_morgan',
  'morgan_cours',
  'cours_felt',
  'felt_upset',
  'upset_stepdad',
  'stepdad_miss',
  'miss_birthday',
  'birthday_celebr',
  'celebr_point',
  'point_argu',
  'argu_liter',
  'liter_gain',
  'gain_noth',
  'noth_insist',
  'insist_particular',
  'particular_restaur',
  'restaur_upset',
  'upset_alicia',
  'alicia_refus',
  'refus_speak',
  'speak_us',
  'us_even',
  'even_ruin',
  'ruin_relationship',
  'relationship_morgan',
  'morgan_said',
  'said_morgan',
  'morgan_choic',
  'choic_said',
  'said_adult',
  'adult_situat',
  'situat_fail',
  'fail_navig',
  'navig_aita',
  'aita_still',
  'still_go',
  'go_restaur',
  'restaur_although',
  'although_alicia',
  'alicia_forbid',
  'forbid_us',
  'us_want',
  'want_make',
  'make_morgan',
  'morgan_feel',
  'feel_like',
  'like_say',
  'say_right',
  'right_spend',
  'spend_birthday',
  'birthday_howev',
  'howev_want',
  'want_edit',
  'edit_mom',
  'mom_aliv',
  'aliv_know',
  'know_assum',
  'assum_deceas',
  'deceas_aliv',
  'aliv_alicia',
  'alicia_see',
  'see_weekli',
  'marri_jeff_year',
  'jeff_year_ago',
  'year_ago_daughter',
  'ago_daughter_alicia',
  'daughter_alicia_-',
  'alicia_-_previou',
  '-_previou_marriag',
  'previou_marriag_daughter',
  'marriag_daughter_morgan',
  'daughter_morgan_-',
  'morgan_-_previou',
  '-_previou_marriag',
  'previou_marriag_well',
  'marriag_well_alicia',
  'well_alicia_closer',
  'alicia_closer_morgan',
  'closer_morgan_alway',
  'morgan_alway_someth',
  'alway_someth_upset',
  'someth_upset_exampl',
  'upset_exampl_morgan',
  'exampl_morgan_move',
  'morgan_move_jeff',
  'move_jeff_tri',
  'jeff_tri_control',
  'tri_control_&',
  'control_&_cant',
  '&_cant_go',
  'cant_go_area',
  'go_area_allow',
  'area_allow_redecor',
  'allow_redecor_put',
  'redecor_put_furnitur',
  'put_furnitur_room',
  'furnitur_room_morgan',
  'room_morgan_got',
  'morgan_got_etc',
  'got_etc_excus',
  'etc_excus_want',
  'excus_want_keep',
  'want_keep_hous',
  'keep_hous_mom',
  'hous_mom_left',
  'mom_left_much',
  'left_much_possibl',
  'much_possibl_jeff',
  'possibl_jeff_ask',
  'jeff_ask_us',
  'ask_us_patient',
  'us_patient_shed',
  'patient_shed_come',
  'shed_come_around',
  'come_around_eventu',
  'around_eventu_come',
  'eventu_come_around',
  'come_around_still',
  'around_still_tri',
  'still_tri_control',
  'tri_control_area',
  'control_area_mine',
  'area_mine_morgan',
  'mine_morgan_life',
  'morgan_life_million',
  'life_million_convers',
  'million_convers_end',
  'convers_end_throw',
  'end_throw_tantrum',
  'throw_tantrum_jeff',
  'tantrum_jeff_talk',
  'jeff_talk_told',
  'talk_told_tri',
  'told_tri_control',
  'tri_control_morgan',
  'control_morgan_ever',
  'morgan_ever_agre',
  'ever_agre_morgan',
  'agre_morgan_birthday',
  'morgan_birthday_day',
  'birthday_day_ago',
  'day_ago_plan',
  'ago_plan_celebr',
  'plan_celebr_restaur',
  'celebr_restaur_let',
  'restaur_let_morgan',
  'let_morgan_choos',
  'morgan_choos_one',
  'choos_one_pick',
  'one_pick_realli',
  'pick_realli_nice',
  'realli_nice_restaur',
  'nice_restaur_top',
  'restaur_top_expens',
  'top_expens_agre',
  'expens_agre_parti',
  'agre_parti_would',
  'parti_would_howev',
  'would_howev_alicia',
  'howev_alicia_heard',
  'alicia_heard_restaur',
  'heard_restaur_go',
  'restaur_go_went',
  'go_went_morgan',
  'went_morgan_said',
  'morgan_said_cant',
  'said_cant_go',
  'cant_go_restaur',
  'go_restaur_ton',
  'restaur_ton_memori',
  'ton_memori_perfect',
  'memori_perfect_old',
  'perfect_old_famili',
  'old_famili_let',
  'famili_let_us',
  'let_us_taint',
  'us_taint_memori',
  'taint_memori_found',
  'memori_found_beyond',
  'found_beyond_illog',
  'beyond_illog_unreason',
  'illog_unreason_told',
  'unreason_told_could',
  'told_could_stay',
  'could_stay_home',
  'stay_home_said',
  'home_said_-',
  'said_-_idea',
  '-_idea_morgan',
  'idea_morgan_jeff',
  'morgan_jeff_famili',
  'jeff_famili_use',
  'famili_use_mom',
  'use_mom_jeff',
  'mom_jeff_got',
  'jeff_got_argument',
  'got_argument_jeff',
  'argument_jeff_told',
  'jeff_told_tell',
  'told_tell_morgan',
  'tell_morgan_pick',
  'morgan_pick_anoth',
  'pick_anoth_restuar',
  'anoth_restuar_snap',
  'restuar_snap_told',
  'snap_told_alicia',
  'told_alicia_right',
  'alicia_right_dictat',
  'right_dictat_daughter',
  'dictat_daughter_go',
  'daughter_go_encourag',
  'go_encourag_told',
  'encourag_told_encourag',
  'told_encourag_anyth',
  'encourag_anyth_tri',
  'anyth_tri_keep',
  'tri_keep_parti',
  'keep_parti_satisfi',
  'parti_satisfi_told',
  'satisfi_told_get',
  'told_get_morgan',
  'get_morgan_chang',
  'morgan_chang_restaur',
  'chang_restaur_gothat',
  'restaur_gothat_decid',
  'gothat_decid_go',
  'decid_go_chang',
  'go_chang_want',
  'chang_want_end',
  'want_end_go',
  'end_go_morgan',
  'go_morgan_celebr',
  'morgan_celebr_mom',
  'celebr_mom_morgan',
  'mom_morgan_cours',
  'morgan_cours_felt',
  'cours_felt_upset',
  'felt_upset_stepdad',
  'upset_stepdad_miss',
  'stepdad_miss_birthday',
  'miss_birthday_celebr',
  'birthday_celebr_point',
  'celebr_point_argu',
  'point_argu_liter',
  'argu_liter_gain',
  'liter_gain_noth',
  'gain_noth_insist',
  'noth_insist_particular',
  'insist_particular_restaur',
  'particular_restaur_upset',
  'restaur_upset_alicia',
  'upset_alicia_refus',
  'alicia_refus_speak',
  'refus_speak_us',
  'speak_us_even',
  'us_even_ruin',
  'even_ruin_relationship',
  'ruin_relationship_morgan',
  'relationship_morgan_said',
  'morgan_said_morgan',
  'said_morgan_choic',
  'morgan_choic_said',
  'choic_said_adult',
  'said_adult_situat',
  'adult_situat_fail',
  'situat_fail_navig',
  'fail_navig_aita',
  'navig_aita_still',
  'aita_still_go',
  'still_go_restaur',
  'go_restaur_although',
  'restaur_although_alicia',
  'although_alicia_forbid',
  'alicia_forbid_us',
  'forbid_us_want',
  'us_want_make',
  'want_make_morgan',
  'make_morgan_feel',
  'morgan_feel_like',
  'feel_like_say',
  'like_say_right',
  'say_right_spend',
  'right_spend_birthday',
  'spend_birthday_howev',
  'birthday_howev_want',
  'howev_want_edit',
  'want_edit_mom',
  'edit_mom_aliv',
  'mom_aliv_know',
  'aliv_know_assum',
  'know_assum_deceas',
  'assum_deceas_aliv',
  'deceas_aliv_alicia',
  'aliv_alicia_see',
  'alicia_see_weekli'],
 ['husband',
  'disabl',
  'wheelchair',
  'home',
  'need',
  'around',
  'assist',
  'id',
  'chair',
  'nearbi',
  'laundri',
  'cook',
  'clean',
  'time',
  'except',
  'go',
  'bathroom',
  'even',
  'hed',
  'complain',
  'away',
  'long',
  'even',
  'go',
  'shop',
  'everyth',
  'get',
  'deliv',
  'home',
  'seen',
  'girlfriend',
  'arrang',
  'start',
  'girl',
  'night',
  'place',
  'sinc',
  'cant',
  'away',
  'home',
  'especi',
  'night',
  'ask',
  'husband',
  'ptuvaci',
  'friend',
  'come',
  'tookit',
  'badli',
  'took',
  'annoy',
  'bother',
  'assur',
  'like',
  'said',
  'true',
  'id',
  'let',
  'sit',
  'us',
  'girl',
  'night',
  'absolut',
  'refus',
  'tri',
  'explain',
  'friend',
  'need',
  'privaci',
  'time',
  'spend',
  'togeth',
  'also',
  'explain',
  'sit',
  'us',
  'would',
  'ruin',
  'purpos',
  'girl',
  'night',
  'threw',
  'hissi',
  'fit',
  'call',
  'selfish',
  'rude',
  'refus',
  'start',
  'give',
  'cold',
  'shoulder',
  'say',
  'agre',
  'includ',
  'speak',
  'aita',
  'choos',
  'hill',
  'die',
  'accord',
  'context^',
  'gone',
  'seen',
  'friend',
  'even',
  'famili',
  'go',
  'also',
  'refus',
  'stay',
  'home',
  'someon',
  'els',
  'look',
  'even',
  'let',
  'sight',
  'minut',
  'sometim',
  'bring',
  'near',
  'bathroom',
  'coukd',
  'wait',
  'door',
  'open',
  'im',
  'take',
  'time',
  'sociabl',
  'natur',
  'friend',
  'onki',
  'friend',
  'show',
  'true',
  'color',
  'becam',
  'disabl',
  'put',
  'distanc',
  'girl',
  'night',
  'issu',
  'said',
  'would',
  'let',
  'friend',
  'continu',
  'exclud',
  'caus',
  'major',
  'argument',
  'us',
  'husband_disabl',
  'disabl_wheelchair',
  'wheelchair_home',
  'home_need',
  'need_around',
  'around_assist',
  'assist_id',
  'id_chair',
  'chair_nearbi',
  'nearbi_laundri',
  'laundri_cook',
  'cook_clean',
  'clean_time',
  'time_except',
  'except_go',
  'go_bathroom',
  'bathroom_even',
  'even_hed',
  'hed_complain',
  'complain_away',
  'away_long',
  'long_even',
  'even_go',
  'go_shop',
  'shop_everyth',
  'everyth_get',
  'get_deliv',
  'deliv_home',
  'home_seen',
  'seen_girlfriend',
  'girlfriend_arrang',
  'arrang_start',
  'start_girl',
  'girl_night',
  'night_place',
  'place_sinc',
  'sinc_cant',
  'cant_away',
  'away_home',
  'home_especi',
  'especi_night',
  'night_ask',
  'ask_husband',
  'husband_ptuvaci',
  'ptuvaci_friend',
  'friend_come',
  'come_tookit',
  'tookit_badli',
  'badli_took',
  'took_annoy',
  'annoy_bother',
  'bother_assur',
  'assur_like',
  'like_said',
  'said_true',
  'true_id',
  'id_let',
  'let_sit',
  'sit_us',
  'us_girl',
  'girl_night',
  'night_absolut',
  'absolut_refus',
  'refus_tri',
  'tri_explain',
  'explain_friend',
  'friend_need',
  'need_privaci',
  'privaci_time',
  'time_spend',
  'spend_togeth',
  'togeth_also',
  'also_explain',
  'explain_sit',
  'sit_us',
  'us_would',
  'would_ruin',
  'ruin_purpos',
  'purpos_girl',
  'girl_night',
  'night_threw',
  'threw_hissi',
  'hissi_fit',
  'fit_call',
  'call_selfish',
  'selfish_rude',
  'rude_refus',
  'refus_start',
  'start_give',
  'give_cold',
  'cold_shoulder',
  'shoulder_say',
  'say_agre',
  'agre_includ',
  'includ_speak',
  'speak_aita',
  'aita_choos',
  'choos_hill',
  'hill_die',
  'die_accord',
  'accord_context^',
  'context^_gone',
  'gone_seen',
  'seen_friend',
  'friend_even',
  'even_famili',
  'famili_go',
  'go_also',
  'also_refus',
  'refus_stay',
  'stay_home',
  'home_someon',
  'someon_els',
  'els_look',
  'look_even',
  'even_let',
  'let_sight',
  'sight_minut',
  'minut_sometim',
  'sometim_bring',
  'bring_near',
  'near_bathroom',
  'bathroom_coukd',
  'coukd_wait',
  'wait_door',
  'door_open',
  'open_im',
  'im_take',
  'take_time',
  'time_sociabl',
  'sociabl_natur',
  'natur_friend',
  'friend_onki',
  'onki_friend',
  'friend_show',
  'show_true',
  'true_color',
  'color_becam',
  'becam_disabl',
  'disabl_put',
  'put_distanc',
  'distanc_girl',
  'girl_night',
  'night_issu',
  'issu_said',
  'said_would',
  'would_let',
  'let_friend',
  'friend_continu',
  'continu_exclud',
  'exclud_caus',
  'caus_major',
  'major_argument',
  'argument_us',
  'husband_disabl_wheelchair',
  'disabl_wheelchair_home',
  'wheelchair_home_need',
  'home_need_around',
  'need_around_assist',
  'around_assist_id',
  'assist_id_chair',
  'id_chair_nearbi',
  'chair_nearbi_laundri',
  'nearbi_laundri_cook',
  'laundri_cook_clean',
  'cook_clean_time',
  'clean_time_except',
  'time_except_go',
  'except_go_bathroom',
  'go_bathroom_even',
  'bathroom_even_hed',
  'even_hed_complain',
  'hed_complain_away',
  'complain_away_long',
  'away_long_even',
  'long_even_go',
  'even_go_shop',
  'go_shop_everyth',
  'shop_everyth_get',
  'everyth_get_deliv',
  'get_deliv_home',
  'deliv_home_seen',
  'home_seen_girlfriend',
  'seen_girlfriend_arrang',
  'girlfriend_arrang_start',
  'arrang_start_girl',
  'start_girl_night',
  'girl_night_place',
  'night_place_sinc',
  'place_sinc_cant',
  'sinc_cant_away',
  'cant_away_home',
  'away_home_especi',
  'home_especi_night',
  'especi_night_ask',
  'night_ask_husband',
  'ask_husband_ptuvaci',
  'husband_ptuvaci_friend',
  'ptuvaci_friend_come',
  'friend_come_tookit',
  'come_tookit_badli',
  'tookit_badli_took',
  'badli_took_annoy',
  'took_annoy_bother',
  'annoy_bother_assur',
  'bother_assur_like',
  'assur_like_said',
  'like_said_true',
  'said_true_id',
  'true_id_let',
  'id_let_sit',
  'let_sit_us',
  'sit_us_girl',
  'us_girl_night',
  'girl_night_absolut',
  'night_absolut_refus',
  'absolut_refus_tri',
  'refus_tri_explain',
  'tri_explain_friend',
  'explain_friend_need',
  'friend_need_privaci',
  'need_privaci_time',
  'privaci_time_spend',
  'time_spend_togeth',
  'spend_togeth_also',
  'togeth_also_explain',
  'also_explain_sit',
  'explain_sit_us',
  'sit_us_would',
  'us_would_ruin',
  'would_ruin_purpos',
  'ruin_purpos_girl',
  'purpos_girl_night',
  'girl_night_threw',
  'night_threw_hissi',
  'threw_hissi_fit',
  'hissi_fit_call',
  'fit_call_selfish',
  'call_selfish_rude',
  'selfish_rude_refus',
  'rude_refus_start',
  'refus_start_give',
  'start_give_cold',
  'give_cold_shoulder',
  'cold_shoulder_say',
  'shoulder_say_agre',
  'say_agre_includ',
  'agre_includ_speak',
  'includ_speak_aita',
  'speak_aita_choos',
  'aita_choos_hill',
  'choos_hill_die',
  'hill_die_accord',
  'die_accord_context^',
  'accord_context^_gone',
  'context^_gone_seen',
  'gone_seen_friend',
  'seen_friend_even',
  'friend_even_famili',
  'even_famili_go',
  'famili_go_also',
  'go_also_refus',
  'also_refus_stay',
  'refus_stay_home',
  'stay_home_someon',
  'home_someon_els',
  'someon_els_look',
  'els_look_even',
  'look_even_let',
  'even_let_sight',
  'let_sight_minut',
  'sight_minut_sometim',
  'minut_sometim_bring',
  'sometim_bring_near',
  'bring_near_bathroom',
  'near_bathroom_coukd',
  'bathroom_coukd_wait',
  'coukd_wait_door',
  'wait_door_open',
  'door_open_im',
  'open_im_take',
  'im_take_time',
  'take_time_sociabl',
  'time_sociabl_natur',
  'sociabl_natur_friend',
  'natur_friend_onki',
  'friend_onki_friend',
  'onki_friend_show',
  'friend_show_true',
  'show_true_color',
  'true_color_becam',
  'color_becam_disabl',
  'becam_disabl_put',
  'disabl_put_distanc',
  'put_distanc_girl',
  'distanc_girl_night',
  'girl_night_issu',
  'night_issu_said',
  'issu_said_would',
  'said_would_let',
  'would_let_friend',
  'let_friend_continu',
  'friend_continu_exclud',
  'continu_exclud_caus',
  'exclud_caus_major',
  'caus_major_argument',
  'major_argument_us'],
 ['rais',
  'super',
  'religi',
  'parent',
  'fight',
  'abl',
  'go',
  'normal',
  'colleg',
  'christian',
  'one',
  'weird',
  'rule',
  'said',
  'pay',
  'school',
  'come',
  'back',
  'right',
  'path',
  'struggl',
  'coupl',
  'month',
  'friend',
  'told',
  'strip',
  'club',
  'work',
  'hire',
  'danc',
  'whole',
  'life',
  'good',
  'figur',
  'hire',
  'pretti',
  'fast',
  'month',
  'drop',
  'colleg',
  'make',
  'seriou',
  'money',
  '$',
  'bad',
  'week',
  '$',
  'realli',
  'good',
  'one',
  'parent',
  'found',
  'disown',
  'goe',
  'extend',
  'famili',
  'except',
  'cousin',
  'fast',
  'foreward',
  'year',
  'hous',
  'outright',
  'tesla',
  'debt',
  'also',
  'appart',
  'build',
  'rent',
  'strip',
  'short',
  'lifespan',
  'invest',
  'parent',
  'contact',
  'appar',
  'father',
  'lost',
  'busi',
  'covid',
  'mom',
  'alway',
  'shm',
  'declar',
  'bankruptci',
  'realli',
  'struggl',
  'live',
  'old',
  'camper',
  'also',
  'appar',
  'mom',
  'diabet',
  'dad',
  'alway',
  'heart',
  'problem',
  'want',
  'help',
  'said',
  'parent',
  'anymor',
  'furthermor',
  'accord',
  'religion',
  'church',
  'money',
  'earn',
  'sin',
  'use',
  'damn',
  'soul',
  'hell',
  'realli',
  'want',
  'mom',
  'start',
  'cri',
  'dad',
  'said',
  'know',
  'went',
  'wrong',
  'last',
  'coupl',
  'aunt',
  'uncl',
  'call',
  'chang',
  'famili',
  'help',
  'famili',
  'tune',
  'fast',
  'ask',
  'help',
  'coupl',
  'week',
  'later',
  'start',
  'feel',
  'like',
  'ah',
  'month',
  'incom',
  'strip',
  'would',
  'make',
  'realli',
  'big',
  'chang',
  'even',
  'miss',
  'bad',
  'aita',
  'rais_super',
  'super_religi',
  'religi_parent',
  'parent_fight',
  'fight_abl',
  'abl_go',
  'go_normal',
  'normal_colleg',
  'colleg_christian',
  'christian_one',
  'one_weird',
  'weird_rule',
  'rule_said',
  'said_pay',
  'pay_school',
  'school_come',
  'come_back',
  'back_right',
  'right_path',
  'path_struggl',
  'struggl_coupl',
  'coupl_month',
  'month_friend',
  'friend_told',
  'told_strip',
  'strip_club',
  'club_work',
  'work_hire',
  'hire_danc',
  'danc_whole',
  'whole_life',
  'life_good',
  'good_figur',
  'figur_hire',
  'hire_pretti',
  'pretti_fast',
  'fast_month',
  'month_drop',
  'drop_colleg',
  'colleg_make',
  'make_seriou',
  'seriou_money',
  'money_$',
  '$_bad',
  'bad_week',
  'week_$',
  '$_realli',
  'realli_good',
  'good_one',
  'one_parent',
  'parent_found',
  'found_disown',
  'disown_goe',
  'goe_extend',
  'extend_famili',
  'famili_except',
  'except_cousin',
  'cousin_fast',
  'fast_foreward',
  'foreward_year',
  'year_hous',
  'hous_outright',
  'outright_tesla',
  'tesla_debt',
  'debt_also',
  'also_appart',
  'appart_build',
  'build_rent',
  'rent_strip',
  'strip_short',
  'short_lifespan',
  'lifespan_invest',
  'invest_parent',
  'parent_contact',
  'contact_appar',
  'appar_father',
  'father_lost',
  'lost_busi',
  'busi_covid',
  'covid_mom',
  'mom_alway',
  'alway_shm',
  'shm_declar',
  'declar_bankruptci',
  'bankruptci_realli',
  'realli_struggl',
  'struggl_live',
  'live_old',
  'old_camper',
  'camper_also',
  'also_appar',
  'appar_mom',
  'mom_diabet',
  'diabet_dad',
  'dad_alway',
  'alway_heart',
  'heart_problem',
  'problem_want',
  'want_help',
  'help_said',
  'said_parent',
  'parent_anymor',
  'anymor_furthermor',
  'furthermor_accord',
  'accord_religion',
  'religion_church',
  'church_money',
  'money_earn',
  'earn_sin',
  'sin_use',
  'use_damn',
  'damn_soul',
  'soul_hell',
  'hell_realli',
  'realli_want',
  'want_mom',
  'mom_start',
  'start_cri',
  'cri_dad',
  'dad_said',
  'said_know',
  'know_went',
  'went_wrong',
  'wrong_last',
  'last_coupl',
  'coupl_aunt',
  'aunt_uncl',
  'uncl_call',
  'call_chang',
  'chang_famili',
  'famili_help',
  'help_famili',
  'famili_tune',
  'tune_fast',
  'fast_ask',
  'ask_help',
  'help_coupl',
  'coupl_week',
  'week_later',
  'later_start',
  'start_feel',
  'feel_like',
  'like_ah',
  'ah_month',
  'month_incom',
  'incom_strip',
  'strip_would',
  'would_make',
  'make_realli',
  'realli_big',
  'big_chang',
  'chang_even',
  'even_miss',
  'miss_bad',
  'bad_aita',
  'rais_super_religi',
  'super_religi_parent',
  'religi_parent_fight',
  'parent_fight_abl',
  'fight_abl_go',
  'abl_go_normal',
  'go_normal_colleg',
  'normal_colleg_christian',
  'colleg_christian_one',
  'christian_one_weird',
  'one_weird_rule',
  'weird_rule_said',
  'rule_said_pay',
  'said_pay_school',
  'pay_school_come',
  'school_come_back',
  'come_back_right',
  'back_right_path',
  'right_path_struggl',
  'path_struggl_coupl',
  'struggl_coupl_month',
  'coupl_month_friend',
  'month_friend_told',
  'friend_told_strip',
  'told_strip_club',
  'strip_club_work',
  'club_work_hire',
  'work_hire_danc',
  'hire_danc_whole',
  'danc_whole_life',
  'whole_life_good',
  'life_good_figur',
  'good_figur_hire',
  'figur_hire_pretti',
  'hire_pretti_fast',
  'pretti_fast_month',
  'fast_month_drop',
  'month_drop_colleg',
  'drop_colleg_make',
  'colleg_make_seriou',
  'make_seriou_money',
  'seriou_money_$',
  'money_$_bad',
  '$_bad_week',
  'bad_week_$',
  'week_$_realli',
  '$_realli_good',
  'realli_good_one',
  'good_one_parent',
  'one_parent_found',
  'parent_found_disown',
  'found_disown_goe',
  'disown_goe_extend',
  'goe_extend_famili',
  'extend_famili_except',
  'famili_except_cousin',
  'except_cousin_fast',
  'cousin_fast_foreward',
  'fast_foreward_year',
  'foreward_year_hous',
  'year_hous_outright',
  'hous_outright_tesla',
  'outright_tesla_debt',
  'tesla_debt_also',
  'debt_also_appart',
  'also_appart_build',
  'appart_build_rent',
  'build_rent_strip',
  'rent_strip_short',
  'strip_short_lifespan',
  'short_lifespan_invest',
  'lifespan_invest_parent',
  'invest_parent_contact',
  'parent_contact_appar',
  'contact_appar_father',
  'appar_father_lost',
  'father_lost_busi',
  'lost_busi_covid',
  'busi_covid_mom',
  'covid_mom_alway',
  'mom_alway_shm',
  'alway_shm_declar',
  'shm_declar_bankruptci',
  'declar_bankruptci_realli',
  'bankruptci_realli_struggl',
  'realli_struggl_live',
  'struggl_live_old',
  'live_old_camper',
  'old_camper_also',
  'camper_also_appar',
  'also_appar_mom',
  'appar_mom_diabet',
  'mom_diabet_dad',
  'diabet_dad_alway',
  'dad_alway_heart',
  'alway_heart_problem',
  'heart_problem_want',
  'problem_want_help',
  'want_help_said',
  'help_said_parent',
  'said_parent_anymor',
  'parent_anymor_furthermor',
  'anymor_furthermor_accord',
  'furthermor_accord_religion',
  'accord_religion_church',
  'religion_church_money',
  'church_money_earn',
  'money_earn_sin',
  'earn_sin_use',
  'sin_use_damn',
  'use_damn_soul',
  'damn_soul_hell',
  'soul_hell_realli',
  'hell_realli_want',
  'realli_want_mom',
  'want_mom_start',
  'mom_start_cri',
  'start_cri_dad',
  'cri_dad_said',
  'dad_said_know',
  'said_know_went',
  'know_went_wrong',
  'went_wrong_last',
  'wrong_last_coupl',
  'last_coupl_aunt',
  'coupl_aunt_uncl',
  'aunt_uncl_call',
  'uncl_call_chang',
  'call_chang_famili',
  'chang_famili_help',
  'famili_help_famili',
  'help_famili_tune',
  'famili_tune_fast',
  'tune_fast_ask',
  'fast_ask_help',
  'ask_help_coupl',
  'help_coupl_week',
  'coupl_week_later',
  'week_later_start',
  'later_start_feel',
  'start_feel_like',
  'feel_like_ah',
  'like_ah_month',
  'ah_month_incom',
  'month_incom_strip',
  'incom_strip_would',
  'strip_would_make',
  'would_make_realli',
  'make_realli_big',
  'realli_big_chang',
  'big_chang_even',
  'chang_even_miss',
  'even_miss_bad',
  'miss_bad_aita'],
 ['date',
  'jaym',
  'four',
  'month',
  'handsom',
  'smart',
  'funni',
  'well-educ',
  'awesom',
  'job',
  'sweetheart',
  'sunday',
  'whole',
  'day',
  'plan',
  'us',
  'go',
  'walk',
  'natur',
  'trail',
  'go',
  'back',
  'place',
  'dinner',
  'make',
  'excit',
  'go',
  'first',
  'time',
  'id',
  'hous',
  'sinc',
  'hike',
  'said',
  'could',
  'bring',
  'dog',
  'shelbi',
  'us',
  'made',
  'us',
  'roast',
  'veget',
  'dinner',
  'finish',
  'plate',
  'jay',
  'took',
  'kitchen',
  'still',
  'half',
  'roast',
  'left',
  'close',
  'shelbi',
  'dinner',
  'time',
  'took',
  'half',
  'half',
  'roast',
  'still',
  'raw',
  'veget',
  'fridg',
  'put',
  'plate',
  'shelbi',
  'carri',
  'plate',
  'back',
  'door',
  'shelbi',
  'feed',
  'outsid',
  'jay',
  'ask',
  'told',
  'feed',
  'shelbi',
  'jay',
  'said',
  'someth',
  'like',
  'well',
  'dog',
  'food',
  'jay',
  'know',
  'mainli',
  'feed',
  'shelbi',
  'raw',
  'diet',
  'open',
  'door',
  'put',
  'plate',
  'shelbi',
  'jay',
  'got',
  'took',
  'plate',
  'away',
  'went',
  'kitchen',
  'came',
  'back',
  'wrap',
  'tinfoil',
  'told',
  'leav',
  'excus',
  'made',
  'dinner',
  'dog',
  'ask',
  'help',
  'sinc',
  'wouldv',
  'use',
  'leftov',
  'leav',
  'tell',
  'made',
  'meal',
  'us',
  'could',
  'pleas',
  'knew',
  'damn',
  'well',
  'feed',
  'shelbi',
  'tri',
  'talk',
  'friend',
  'later',
  'night',
  'said',
  'jay',
  'right',
  'upset',
  'friend',
  'never',
  'realli',
  'approv',
  'treat',
  'dog',
  'feel',
  'like',
  'probabl',
  'bit',
  'bias',
  'wrong',
  'person',
  'ask',
  'aita',
  'feed',
  'dog',
  'like',
  'normal',
  'would',
  'clarif',
  'get',
  'restaur',
  'food',
  'daili',
  'eat',
  'mayb',
  'time',
  'month',
  'eat',
  'dog',
  'safe',
  'restaur',
  'make',
  'food',
  'dog',
  'request',
  'bring',
  'home',
  'shelbi',
  'daili',
  'meal',
  'bit',
  'brown',
  'rice',
  'raw',
  'veget',
  'ground',
  'chicken',
  'heart',
  'beef',
  'liver',
  'heart',
  'liver',
  'boil',
  'enough',
  'kill',
  'bacteria',
  'approv',
  'shelbi',
  'vet',
  'ask',
  'jay',
  'prepar',
  'roast',
  'could',
  'know',
  'safe',
  'give',
  'also',
  'got',
  'fresh',
  'unus',
  'veget',
  'fridg',
  'updat',
  'accept',
  'im',
  'ah',
  'said',
  'jay',
  'respons',
  'harsh',
  'see',
  'entitl',
  'thank',
  'peopl',
  'respond',
  'actual',
  'issu',
  'go',
  'diet',
  'thank',
  'concern',
  'came',
  'ask',
  'jay',
  'get',
  'debat',
  'dog',
  'food',
  'shelbi',
  'diet',
  'year',
  'healthi',
  'activ',
  'puppo',
  'vet',
  'need',
  'know',
  'jay',
  'apolog',
  'accept',
  'apolog',
  'broke',
  'said',
  'last',
  'straw',
  'thing',
  'without',
  'ask',
  'first',
  'talk',
  'take',
  'thing',
  'plate',
  'drink',
  'without',
  'ask',
  'ive',
  'tri',
  'better',
  'keep',
  'slip',
  'realiz',
  'bad',
  'im',
  'go',
  'work',
  'next',
  'guy',
  'peopl',
  'said',
  'go',
  'place',
  'month',
  'red',
  'flag',
  'decis',
  'respect',
  'want',
  'go',
  'someon',
  'hous',
  'know',
  'live',
  'first',
  'month',
  'date',
  'get',
  'know',
  'date_jaym',
  'jaym_four',
  'four_month',
  'month_handsom',
  'handsom_smart',
  'smart_funni',
  'funni_well-educ',
  'well-educ_awesom',
  'awesom_job',
  'job_sweetheart',
  'sweetheart_sunday',
  'sunday_whole',
  'whole_day',
  'day_plan',
  'plan_us',
  'us_go',
  'go_walk',
  'walk_natur',
  'natur_trail',
  'trail_go',
  'go_back',
  'back_place',
  'place_dinner',
  'dinner_make',
  'make_excit',
  'excit_go',
  'go_first',
  'first_time',
  'time_id',
  'id_hous',
  'hous_sinc',
  'sinc_hike',
  'hike_said',
  'said_could',
  'could_bring',
  'bring_dog',
  'dog_shelbi',
  'shelbi_us',
  'us_made',
  'made_us',
  'us_roast',
  'roast_veget',
  'veget_dinner',
  'dinner_finish',
  'finish_plate',
  'plate_jay',
  'jay_took',
  'took_kitchen',
  'kitchen_still',
  'still_half',
  'half_roast',
  'roast_left',
  'left_close',
  'close_shelbi',
  'shelbi_dinner',
  'dinner_time',
  'time_took',
  'took_half',
  'half_half',
  'half_roast',
  'roast_still',
  'still_raw',
  'raw_veget',
  'veget_fridg',
  'fridg_put',
  'put_plate',
  'plate_shelbi',
  'shelbi_carri',
  'carri_plate',
  'plate_back',
  'back_door',
  'door_shelbi',
  'shelbi_feed',
  'feed_outsid',
  'outsid_jay',
  'jay_ask',
  'ask_told',
  'told_feed',
  'feed_shelbi',
  'shelbi_jay',
  'jay_said',
  'said_someth',
  'someth_like',
  'like_well',
  'well_dog',
  'dog_food',
  'food_jay',
  'jay_know',
  'know_mainli',
  'mainli_feed',
  'feed_shelbi',
  'shelbi_raw',
  'raw_diet',
  'diet_open',
  'open_door',
  'door_put',
  'put_plate',
  'plate_shelbi',
  'shelbi_jay',
  'jay_got',
  'got_took',
  'took_plate',
  'plate_away',
  'away_went',
  'went_kitchen',
  'kitchen_came',
  'came_back',
  'back_wrap',
  'wrap_tinfoil',
  'tinfoil_told',
  'told_leav',
  'leav_excus',
  'excus_made',
  'made_dinner',
  'dinner_dog',
  'dog_ask',
  'ask_help',
  'help_sinc',
  'sinc_wouldv',
  'wouldv_use',
  'use_leftov',
  'leftov_leav',
  'leav_tell',
  'tell_made',
  'made_meal',
  'meal_us',
  'us_could',
  'could_pleas',
  'pleas_knew',
  'knew_damn',
  'damn_well',
  'well_feed',
  'feed_shelbi',
  'shelbi_tri',
  'tri_talk',
  'talk_friend',
  'friend_later',
  'later_night',
  'night_said',
  'said_jay',
  'jay_right',
  'right_upset',
  'upset_friend',
  'friend_never',
  'never_realli',
  'realli_approv',
  'approv_treat',
  'treat_dog',
  'dog_feel',
  'feel_like',
  'like_probabl',
  'probabl_bit',
  'bit_bias',
  'bias_wrong',
  'wrong_person',
  'person_ask',
  'ask_aita',
  'aita_feed',
  'feed_dog',
  'dog_like',
  'like_normal',
  'normal_would',
  'would_clarif',
  'clarif_get',
  'get_restaur',
  'restaur_food',
  'food_daili',
  'daili_eat',
  'eat_mayb',
  'mayb_time',
  'time_month',
  'month_eat',
  'eat_dog',
  'dog_safe',
  'safe_restaur',
  'restaur_make',
  'make_food',
  'food_dog',
  'dog_request',
  'request_bring',
  'bring_home',
  'home_shelbi',
  'shelbi_daili',
  'daili_meal',
  'meal_bit',
  'bit_brown',
  'brown_rice',
  'rice_raw',
  'raw_veget',
  'veget_ground',
  'ground_chicken',
  'chicken_heart',
  'heart_beef',
  'beef_liver',
  'liver_heart',
  'heart_liver',
  'liver_boil',
  'boil_enough',
  'enough_kill',
  'kill_bacteria',
  'bacteria_approv',
  'approv_shelbi',
  'shelbi_vet',
  'vet_ask',
  'ask_jay',
  'jay_prepar',
  'prepar_roast',
  'roast_could',
  'could_know',
  'know_safe',
  'safe_give',
  'give_also',
  'also_got',
  'got_fresh',
  'fresh_unus',
  'unus_veget',
  'veget_fridg',
  'fridg_updat',
  'updat_accept',
  'accept_im',
  'im_ah',
  'ah_said',
  'said_jay',
  'jay_respons',
  'respons_harsh',
  'harsh_see',
  'see_entitl',
  'entitl_thank',
  'thank_peopl',
  'peopl_respond',
  'respond_actual',
  'actual_issu',
  'issu_go',
  'go_diet',
  'diet_thank',
  'thank_concern',
  'concern_came',
  'came_ask',
  'ask_jay',
  'jay_get',
  'get_debat',
  'debat_dog',
  'dog_food',
  'food_shelbi',
  'shelbi_diet',
  'diet_year',
  'year_healthi',
  'healthi_activ',
  'activ_puppo',
  'puppo_vet',
  'vet_need',
  'need_know',
  'know_jay',
  'jay_apolog',
  'apolog_accept',
  'accept_apolog',
  'apolog_broke',
  'broke_said',
  'said_last',
  'last_straw',
  'straw_thing',
  'thing_without',
  'without_ask',
  'ask_first',
  'first_talk',
  'talk_take',
  'take_thing',
  'thing_plate',
  'plate_drink',
  'drink_without',
  'without_ask',
  'ask_ive',
  'ive_tri',
  'tri_better',
  'better_keep',
  'keep_slip',
  'slip_realiz',
  'realiz_bad',
  'bad_im',
  'im_go',
  'go_work',
  'work_next',
  'next_guy',
  'guy_peopl',
  'peopl_said',
  'said_go',
  'go_place',
  'place_month',
  'month_red',
  'red_flag',
  'flag_decis',
  'decis_respect',
  'respect_want',
  'want_go',
  'go_someon',
  'someon_hous',
  'hous_know',
  'know_live',
  'live_first',
  'first_month',
  'month_date',
  'date_get',
  'get_know',
  'date_jaym_four',
  'jaym_four_month',
  'four_month_handsom',
  'month_handsom_smart',
  'handsom_smart_funni',
  'smart_funni_well-educ',
  'funni_well-educ_awesom',
  'well-educ_awesom_job',
  'awesom_job_sweetheart',
  'job_sweetheart_sunday',
  'sweetheart_sunday_whole',
  'sunday_whole_day',
  'whole_day_plan',
  'day_plan_us',
  'plan_us_go',
  'us_go_walk',
  'go_walk_natur',
  'walk_natur_trail',
  'natur_trail_go',
  'trail_go_back',
  'go_back_place',
  'back_place_dinner',
  'place_dinner_make',
  'dinner_make_excit',
  'make_excit_go',
  'excit_go_first',
  'go_first_time',
  'first_time_id',
  'time_id_hous',
  'id_hous_sinc',
  'hous_sinc_hike',
  'sinc_hike_said',
  'hike_said_could',
  'said_could_bring',
  'could_bring_dog',
  'bring_dog_shelbi',
  'dog_shelbi_us',
  'shelbi_us_made',
  'us_made_us',
  'made_us_roast',
  'us_roast_veget',
  'roast_veget_dinner',
  'veget_dinner_finish',
  'dinner_finish_plate',
  'finish_plate_jay',
  'plate_jay_took',
  'jay_took_kitchen',
  'took_kitchen_still',
  'kitchen_still_half',
  'still_half_roast',
  'half_roast_left',
  'roast_left_close',
  'left_close_shelbi',
  'close_shelbi_dinner',
  'shelbi_dinner_time',
  'dinner_time_took',
  'time_took_half',
  'took_half_half',
  'half_half_roast',
  'half_roast_still',
  'roast_still_raw',
  'still_raw_veget',
  'raw_veget_fridg',
  'veget_fridg_put',
  'fridg_put_plate',
  'put_plate_shelbi',
  'plate_shelbi_carri',
  'shelbi_carri_plate',
  'carri_plate_back',
  'plate_back_door',
  'back_door_shelbi',
  'door_shelbi_feed',
  'shelbi_feed_outsid',
  'feed_outsid_jay',
  'outsid_jay_ask',
  'jay_ask_told',
  'ask_told_feed',
  'told_feed_shelbi',
  'feed_shelbi_jay',
  'shelbi_jay_said',
  'jay_said_someth',
  'said_someth_like',
  'someth_like_well',
  'like_well_dog',
  'well_dog_food',
  'dog_food_jay',
  'food_jay_know',
  'jay_know_mainli',
  'know_mainli_feed',
  'mainli_feed_shelbi',
  'feed_shelbi_raw',
  'shelbi_raw_diet',
  'raw_diet_open',
  'diet_open_door',
  'open_door_put',
  'door_put_plate',
  'put_plate_shelbi',
  'plate_shelbi_jay',
  'shelbi_jay_got',
  'jay_got_took',
  'got_took_plate',
  'took_plate_away',
  'plate_away_went',
  'away_went_kitchen',
  'went_kitchen_came',
  'kitchen_came_back',
  'came_back_wrap',
  'back_wrap_tinfoil',
  'wrap_tinfoil_told',
  'tinfoil_told_leav',
  'told_leav_excus',
  'leav_excus_made',
  'excus_made_dinner',
  'made_dinner_dog',
  'dinner_dog_ask',
  'dog_ask_help',
  'ask_help_sinc',
  'help_sinc_wouldv',
  'sinc_wouldv_use',
  'wouldv_use_leftov',
  'use_leftov_leav',
  'leftov_leav_tell',
  'leav_tell_made',
  'tell_made_meal',
  'made_meal_us',
  'meal_us_could',
  'us_could_pleas',
  'could_pleas_knew',
  'pleas_knew_damn',
  'knew_damn_well',
  'damn_well_feed',
  'well_feed_shelbi',
  'feed_shelbi_tri',
  'shelbi_tri_talk',
  'tri_talk_friend',
  'talk_friend_later',
  'friend_later_night',
  'later_night_said',
  'night_said_jay',
  'said_jay_right',
  'jay_right_upset',
  'right_upset_friend',
  'upset_friend_never',
  'friend_never_realli',
  'never_realli_approv',
  'realli_approv_treat',
  'approv_treat_dog',
  'treat_dog_feel',
  'dog_feel_like',
  'feel_like_probabl',
  'like_probabl_bit',
  'probabl_bit_bias',
  'bit_bias_wrong',
  'bias_wrong_person',
  'wrong_person_ask',
  'person_ask_aita',
  'ask_aita_feed',
  'aita_feed_dog',
  'feed_dog_like',
  'dog_like_normal',
  'like_normal_would',
  'normal_would_clarif',
  'would_clarif_get',
  'clarif_get_restaur',
  'get_restaur_food',
  'restaur_food_daili',
  'food_daili_eat',
  'daili_eat_mayb',
  'eat_mayb_time',
  'mayb_time_month',
  'time_month_eat',
  'month_eat_dog',
  'eat_dog_safe',
  'dog_safe_restaur',
  'safe_restaur_make',
  'restaur_make_food',
  'make_food_dog',
  'food_dog_request',
  'dog_request_bring',
  'request_bring_home',
  'bring_home_shelbi',
  'home_shelbi_daili',
  'shelbi_daili_meal',
  'daili_meal_bit',
  'meal_bit_brown',
  'bit_brown_rice',
  'brown_rice_raw',
  'rice_raw_veget',
  'raw_veget_ground',
  'veget_ground_chicken',
  'ground_chicken_heart',
  'chicken_heart_beef',
  'heart_beef_liver',
  'beef_liver_heart',
  'liver_heart_liver',
  'heart_liver_boil',
  'liver_boil_enough',
  'boil_enough_kill',
  'enough_kill_bacteria',
  'kill_bacteria_approv',
  'bacteria_approv_shelbi',
  'approv_shelbi_vet',
  'shelbi_vet_ask',
  'vet_ask_jay',
  'ask_jay_prepar',
  'jay_prepar_roast',
  'prepar_roast_could',
  'roast_could_know',
  'could_know_safe',
  'know_safe_give',
  'safe_give_also',
  'give_also_got',
  'also_got_fresh',
  'got_fresh_unus',
  'fresh_unus_veget',
  'unus_veget_fridg',
  'veget_fridg_updat',
  'fridg_updat_accept',
  'updat_accept_im',
  'accept_im_ah',
  'im_ah_said',
  'ah_said_jay',
  'said_jay_respons',
  'jay_respons_harsh',
  'respons_harsh_see',
  'harsh_see_entitl',
  'see_entitl_thank',
  'entitl_thank_peopl',
  'thank_peopl_respond',
  'peopl_respond_actual',
  'respond_actual_issu',
  'actual_issu_go',
  'issu_go_diet',
  'go_diet_thank',
  'diet_thank_concern',
  'thank_concern_came',
  'concern_came_ask',
  'came_ask_jay',
  'ask_jay_get',
  'jay_get_debat',
  'get_debat_dog',
  'debat_dog_food',
  'dog_food_shelbi',
  'food_shelbi_diet',
  'shelbi_diet_year',
  'diet_year_healthi',
  'year_healthi_activ',
  'healthi_activ_puppo',
  'activ_puppo_vet',
  'puppo_vet_need',
  'vet_need_know',
  'need_know_jay',
  'know_jay_apolog',
  'jay_apolog_accept',
  'apolog_accept_apolog',
  'accept_apolog_broke',
  'apolog_broke_said',
  'broke_said_last',
  'said_last_straw',
  'last_straw_thing',
  'straw_thing_without',
  'thing_without_ask',
  'without_ask_first',
  'ask_first_talk',
  'first_talk_take',
  'talk_take_thing',
  'take_thing_plate',
  'thing_plate_drink',
  'plate_drink_without',
  'drink_without_ask',
  'without_ask_ive',
  'ask_ive_tri',
  'ive_tri_better',
  'tri_better_keep',
  'better_keep_slip',
  'keep_slip_realiz',
  'slip_realiz_bad',
  'realiz_bad_im',
  'bad_im_go',
  'im_go_work',
  'go_work_next',
  'work_next_guy',
  'next_guy_peopl',
  'guy_peopl_said',
  'peopl_said_go',
  'said_go_place',
  'go_place_month',
  'place_month_red',
  'month_red_flag',
  'red_flag_decis',
  'flag_decis_respect',
  'decis_respect_want',
  'respect_want_go',
  'want_go_someon',
  'go_someon_hous',
  'someon_hous_know',
  'hous_know_live',
  'know_live_first',
  'live_first_month',
  'first_month_date',
  'month_date_get',
  'date_get_know'],
 ['im',
  '*',
  'still',
  '*',
  'shock',
  'whole',
  'thing',
  'happen',
  'want',
  'hear',
  'outsid',
  'perspect',
  'kid',
  'ago',
  'receiv',
  'invit',
  'sister',
  'wed',
  'husband',
  'kid',
  'wed',
  'differ',
  'countri',
  'good',
  'time',
  'could',
  'go',
  'book',
  'everyth',
  'readi',
  'go',
  'got',
  'bit',
  'time',
  'wed',
  'quit',
  'liter',
  '*',
  'day',
  '*',
  'wed',
  'inform',
  'go',
  'child-fre',
  'wed',
  'look',
  'issu',
  'child',
  'free',
  'wed',
  'bit',
  'frustrat',
  'mean',
  'known',
  'go',
  'child-fre',
  'arrang',
  'couldv',
  'made',
  'travel',
  'invit',
  'annoy',
  'thing',
  'switch',
  'also',
  'understand',
  'wed',
  'stress',
  'sometim',
  'thing',
  'go',
  'chang',
  'spent',
  'quit',
  'bit',
  'time',
  'tri',
  'find',
  'place',
  'three',
  'youngest',
  'stay',
  'wed',
  'sort',
  'eventu',
  'okay',
  'wed',
  'day',
  'chang',
  'made',
  'everyth',
  'good',
  'way',
  'got',
  'messag',
  'sister',
  'excit',
  'see',
  'two',
  'bit',
  'confus',
  'cours',
  'three',
  'us',
  'go',
  'decid',
  'probabl',
  'error',
  'worri',
  'got',
  'sister',
  'seem',
  'surpris',
  'see',
  'oldest',
  'nice',
  'surpris',
  'either',
  'pretti',
  'condescend',
  'surpris',
  'wed',
  'day',
  'probabl',
  'nervou',
  'ill',
  'let',
  'go',
  'wed',
  'help',
  'feel',
  'ignor',
  'us',
  'know',
  'none',
  'ever',
  'happen',
  'even',
  'care',
  'wed',
  'pay',
  'equal',
  'attent',
  'everyon',
  'everyth',
  'els',
  'felt',
  'weird',
  'wed',
  'sent',
  'messag',
  'nice',
  'see',
  'wouldv',
  'appreci',
  'respect',
  'child-fre',
  'part',
  'repli',
  'say',
  'happi',
  'enjoy',
  'everi',
  'second',
  'wed',
  'thought',
  'respect',
  'miscommun',
  'sorri',
  'told',
  'miscommun',
  'disrespect',
  'apolog',
  'basic',
  'reiter',
  'alreadi',
  'said',
  'apolog',
  'aita',
  'edit',
  'wonder',
  'invitationrsvp',
  'invit',
  'said',
  '<',
  'bride',
  'groom',
  'name',
  '>',
  'would',
  'like',
  'invit',
  '<',
  'name',
  '>',
  'ask',
  'rsvp',
  'email',
  'also',
  'seen',
  'sister',
  'wed',
  'clear',
  'knew',
  'plan',
  'attend',
  'ye',
  'year',
  'old',
  '-',
  'use',
  'definit',
  'child',
  'son',
  'daughter',
  'under-',
  'sorri',
  'confus',
  'im_*',
  '*_still',
  'still_*',
  '*_shock',
  'shock_whole',
  'whole_thing',
  'thing_happen',
  'happen_want',
  'want_hear',
  'hear_outsid',
  'outsid_perspect',
  'perspect_kid',
  'kid_ago',
  'ago_receiv',
  'receiv_invit',
  'invit_sister',
  'sister_wed',
  'wed_husband',
  'husband_kid',
  'kid_wed',
  'wed_differ',
  'differ_countri',
  'countri_good',
  'good_time',
  'time_could',
  'could_go',
  'go_book',
  'book_everyth',
  'everyth_readi',
  'readi_go',
  'go_got',
  'got_bit',
  'bit_time',
  'time_wed',
  'wed_quit',
  'quit_liter',
  'liter_*',
  '*_day',
  'day_*',
  '*_wed',
  'wed_inform',
  'inform_go',
  'go_child-fre',
  'child-fre_wed',
  'wed_look',
  'look_issu',
  'issu_child',
  'child_free',
  'free_wed',
  'wed_bit',
  'bit_frustrat',
  'frustrat_mean',
  'mean_known',
  'known_go',
  'go_child-fre',
  'child-fre_arrang',
  'arrang_couldv',
  'couldv_made',
  'made_travel',
  'travel_invit',
  'invit_annoy',
  'annoy_thing',
  'thing_switch',
  'switch_also',
  'also_understand',
  'understand_wed',
  'wed_stress',
  'stress_sometim',
  'sometim_thing',
  'thing_go',
  'go_chang',
  'chang_spent',
  'spent_quit',
  'quit_bit',
  'bit_time',
  'time_tri',
  'tri_find',
  'find_place',
  'place_three',
  'three_youngest',
  'youngest_stay',
  'stay_wed',
  'wed_sort',
  'sort_eventu',
  'eventu_okay',
  'okay_wed',
  'wed_day',
  'day_chang',
  'chang_made',
  'made_everyth',
  'everyth_good',
  'good_way',
  'way_got',
  'got_messag',
  'messag_sister',
  'sister_excit',
  'excit_see',
  'see_two',
  'two_bit',
  'bit_confus',
  'confus_cours',
  'cours_three',
  'three_us',
  'us_go',
  'go_decid',
  'decid_probabl',
  'probabl_error',
  'error_worri',
  'worri_got',
  'got_sister',
  'sister_seem',
  'seem_surpris',
  'surpris_see',
  'see_oldest',
  'oldest_nice',
  'nice_surpris',
  'surpris_either',
  'either_pretti',
  'pretti_condescend',
  'condescend_surpris',
  'surpris_wed',
  'wed_day',
  'day_probabl',
  'probabl_nervou',
  'nervou_ill',
  'ill_let',
  'let_go',
  'go_wed',
  'wed_help',
  'help_feel',
  'feel_ignor',
  'ignor_us',
  'us_know',
  'know_none',
  'none_ever',
  'ever_happen',
  'happen_even',
  'even_care',
  'care_wed',
  'wed_pay',
  'pay_equal',
  'equal_attent',
  'attent_everyon',
  'everyon_everyth',
  'everyth_els',
  'els_felt',
  'felt_weird',
  'weird_wed',
  'wed_sent',
  'sent_messag',
  'messag_nice',
  'nice_see',
  'see_wouldv',
  'wouldv_appreci',
  'appreci_respect',
  'respect_child-fre',
  'child-fre_part',
  'part_repli',
  'repli_say',
  'say_happi',
  'happi_enjoy',
  'enjoy_everi',
  'everi_second',
  'second_wed',
  'wed_thought',
  'thought_respect',
  'respect_miscommun',
  'miscommun_sorri',
  'sorri_told',
  'told_miscommun',
  'miscommun_disrespect',
  'disrespect_apolog',
  'apolog_basic',
  'basic_reiter',
  'reiter_alreadi',
  'alreadi_said',
  'said_apolog',
  'apolog_aita',
  'aita_edit',
  'edit_wonder',
  'wonder_invitationrsvp',
  'invitationrsvp_invit',
  'invit_said',
  'said_<',
  '<_bride',
  'bride_groom',
  'groom_name',
  'name_>',
  '>_would',
  'would_like',
  'like_invit',
  'invit_<',
  '<_name',
  'name_>',
  '>_ask',
  'ask_rsvp',
  'rsvp_email',
  'email_also',
  'also_seen',
  'seen_sister',
  'sister_wed',
  'wed_clear',
  'clear_knew',
  'knew_plan',
  'plan_attend',
  'attend_ye',
  'ye_year',
  'year_old',
  'old_-',
  '-_use',
  'use_definit',
  'definit_child',
  'child_son',
  'son_daughter',
  'daughter_under-',
  'under-_sorri',
  'sorri_confus',
  'im_*_still',
  '*_still_*',
  'still_*_shock',
  '*_shock_whole',
  'shock_whole_thing',
  'whole_thing_happen',
  'thing_happen_want',
  'happen_want_hear',
  'want_hear_outsid',
  'hear_outsid_perspect',
  'outsid_perspect_kid',
  'perspect_kid_ago',
  'kid_ago_receiv',
  'ago_receiv_invit',
  'receiv_invit_sister',
  'invit_sister_wed',
  'sister_wed_husband',
  'wed_husband_kid',
  'husband_kid_wed',
  'kid_wed_differ',
  'wed_differ_countri',
  'differ_countri_good',
  'countri_good_time',
  'good_time_could',
  'time_could_go',
  'could_go_book',
  'go_book_everyth',
  'book_everyth_readi',
  'everyth_readi_go',
  'readi_go_got',
  'go_got_bit',
  'got_bit_time',
  'bit_time_wed',
  'time_wed_quit',
  'wed_quit_liter',
  'quit_liter_*',
  'liter_*_day',
  '*_day_*',
  'day_*_wed',
  '*_wed_inform',
  'wed_inform_go',
  'inform_go_child-fre',
  'go_child-fre_wed',
  'child-fre_wed_look',
  'wed_look_issu',
  'look_issu_child',
  'issu_child_free',
  'child_free_wed',
  'free_wed_bit',
  'wed_bit_frustrat',
  'bit_frustrat_mean',
  'frustrat_mean_known',
  'mean_known_go',
  'known_go_child-fre',
  'go_child-fre_arrang',
  'child-fre_arrang_couldv',
  'arrang_couldv_made',
  'couldv_made_travel',
  'made_travel_invit',
  'travel_invit_annoy',
  'invit_annoy_thing',
  'annoy_thing_switch',
  'thing_switch_also',
  'switch_also_understand',
  'also_understand_wed',
  'understand_wed_stress',
  'wed_stress_sometim',
  'stress_sometim_thing',
  'sometim_thing_go',
  'thing_go_chang',
  'go_chang_spent',
  'chang_spent_quit',
  'spent_quit_bit',
  'quit_bit_time',
  'bit_time_tri',
  'time_tri_find',
  'tri_find_place',
  'find_place_three',
  'place_three_youngest',
  'three_youngest_stay',
  'youngest_stay_wed',
  'stay_wed_sort',
  'wed_sort_eventu',
  'sort_eventu_okay',
  'eventu_okay_wed',
  'okay_wed_day',
  'wed_day_chang',
  'day_chang_made',
  'chang_made_everyth',
  'made_everyth_good',
  'everyth_good_way',
  'good_way_got',
  'way_got_messag',
  'got_messag_sister',
  'messag_sister_excit',
  'sister_excit_see',
  'excit_see_two',
  'see_two_bit',
  'two_bit_confus',
  'bit_confus_cours',
  'confus_cours_three',
  'cours_three_us',
  'three_us_go',
  'us_go_decid',
  'go_decid_probabl',
  'decid_probabl_error',
  'probabl_error_worri',
  'error_worri_got',
  'worri_got_sister',
  'got_sister_seem',
  'sister_seem_surpris',
  'seem_surpris_see',
  'surpris_see_oldest',
  'see_oldest_nice',
  'oldest_nice_surpris',
  'nice_surpris_either',
  'surpris_either_pretti',
  'either_pretti_condescend',
  'pretti_condescend_surpris',
  'condescend_surpris_wed',
  'surpris_wed_day',
  'wed_day_probabl',
  'day_probabl_nervou',
  'probabl_nervou_ill',
  'nervou_ill_let',
  'ill_let_go',
  'let_go_wed',
  'go_wed_help',
  'wed_help_feel',
  'help_feel_ignor',
  'feel_ignor_us',
  'ignor_us_know',
  'us_know_none',
  'know_none_ever',
  'none_ever_happen',
  'ever_happen_even',
  'happen_even_care',
  'even_care_wed',
  'care_wed_pay',
  'wed_pay_equal',
  'pay_equal_attent',
  'equal_attent_everyon',
  'attent_everyon_everyth',
  'everyon_everyth_els',
  'everyth_els_felt',
  'els_felt_weird',
  'felt_weird_wed',
  'weird_wed_sent',
  'wed_sent_messag',
  'sent_messag_nice',
  'messag_nice_see',
  'nice_see_wouldv',
  'see_wouldv_appreci',
  'wouldv_appreci_respect',
  'appreci_respect_child-fre',
  'respect_child-fre_part',
  'child-fre_part_repli',
  'part_repli_say',
  'repli_say_happi',
  'say_happi_enjoy',
  'happi_enjoy_everi',
  'enjoy_everi_second',
  'everi_second_wed',
  'second_wed_thought',
  'wed_thought_respect',
  'thought_respect_miscommun',
  'respect_miscommun_sorri',
  'miscommun_sorri_told',
  'sorri_told_miscommun',
  'told_miscommun_disrespect',
  'miscommun_disrespect_apolog',
  'disrespect_apolog_basic',
  'apolog_basic_reiter',
  'basic_reiter_alreadi',
  'reiter_alreadi_said',
  'alreadi_said_apolog',
  'said_apolog_aita',
  'apolog_aita_edit',
  'aita_edit_wonder',
  'edit_wonder_invitationrsvp',
  'wonder_invitationrsvp_invit',
  'invitationrsvp_invit_said',
  'invit_said_<',
  'said_<_bride',
  '<_bride_groom',
  'bride_groom_name',
  'groom_name_>',
  'name_>_would',
  '>_would_like',
  'would_like_invit',
  'like_invit_<',
  'invit_<_name',
  '<_name_>',
  'name_>_ask',
  '>_ask_rsvp',
  'ask_rsvp_email',
  'rsvp_email_also',
  'email_also_seen',
  'also_seen_sister',
  'seen_sister_wed',
  'sister_wed_clear',
  'wed_clear_knew',
  'clear_knew_plan',
  'knew_plan_attend',
  'plan_attend_ye',
  'attend_ye_year',
  'ye_year_old',
  'year_old_-',
  'old_-_use',
  '-_use_definit',
  'use_definit_child',
  'definit_child_son',
  'child_son_daughter',
  'son_daughter_under-',
  'daughter_under-_sorri',
  'under-_sorri_confus'],
 ['month',
  'pregnant',
  'first',
  'child',
  'babi',
  'also',
  'first',
  'grandchildnephew',
  'husband',
  'famili',
  'everyon',
  'excit',
  'lost',
  'mother',
  'father',
  'pandem',
  'child',
  'much',
  'famili',
  'sinc',
  'death',
  'parent',
  'year',
  'ago',
  'husband',
  'famili',
  'welcom',
  'open',
  'arm',
  'part',
  'becom',
  'close',
  'mil',
  'sil',
  'alway',
  'want',
  'gender',
  'reveal',
  'trust',
  'sil',
  'organ',
  'everyth',
  'day',
  'go',
  'parti',
  'start',
  'receiv',
  'messag',
  'husband',
  'rel',
  'even',
  'close',
  'friend',
  'congratul',
  'babi',
  'boy',
  'went',
  'ask',
  'happen',
  'sil',
  'confess',
  'let',
  'slip',
  'mil',
  'told',
  'everyon',
  'sex',
  'babi',
  'know',
  'hold',
  'took',
  'proport',
  'beyond',
  'imagin',
  'nobodi',
  'call',
  'tell',
  'parti',
  'cancel',
  'heartbroken',
  'well',
  'extrem',
  'hurt',
  'two',
  'usual',
  'accompani',
  'ultrasound',
  'shop',
  'babi',
  'room',
  'mil',
  'would',
  'stay',
  'time',
  'deliveri',
  'breach',
  'trust',
  'stop',
  'invit',
  'ask',
  'respect',
  'boundari',
  'pressur',
  'go',
  'honestli',
  'even',
  'send',
  'babi',
  'shower',
  'invit',
  'realli',
  'avoid',
  'contact',
  'much',
  'possibl',
  'everyon',
  'knew',
  'boy',
  'husband',
  'start',
  'complain',
  'push',
  'away',
  'mistak',
  'could',
  'happen',
  'harsh',
  'yesterday',
  'brought',
  'said',
  'still',
  'feel',
  'comfort',
  'said',
  'soon',
  'tell',
  'mother',
  'abl',
  'go',
  'birth',
  'think',
  'face',
  'show',
  'respons',
  'start',
  'say',
  'hard',
  'excit',
  'blabla',
  'limit',
  'said',
  'keep',
  'push',
  'mother',
  'labor',
  'either',
  'stop',
  'come',
  'start',
  'say',
  'cross',
  'line',
  'right',
  'moment',
  'take',
  'far',
  'slept',
  'couch',
  'talk',
  'necessari',
  'aita',
  'well',
  'mani',
  'say',
  'gender',
  'reveal',
  'honestli',
  'care',
  'think',
  'tacki',
  'mom',
  'type',
  'likelov',
  'alway',
  'dream',
  'grandchildren',
  'said',
  'made',
  'grandmoth',
  'cant',
  'meet',
  'son',
  'even',
  'know',
  'im',
  'pregnant',
  'want',
  'someth',
  'tacki',
  'care',
  'everyon',
  'knew',
  'import',
  'reason',
  'alway',
  'want',
  'gender',
  'reveal',
  'mom',
  'either',
  'extra',
  'let',
  'go',
  'point',
  '-',
  'time',
  'say',
  'would',
  'never',
  'approach',
  'right',
  'see',
  'alreadi',
  'grief',
  'pregnanc',
  'hormon',
  'day-to-day',
  'stress',
  'deal',
  'want',
  'anyth',
  'els',
  'bother',
  '-',
  'obvious',
  'want',
  'husband',
  'childbirth',
  'lot',
  'stress',
  'bring',
  'topic',
  'time',
  'doubt',
  'hell',
  'stop',
  'even',
  'time',
  'deliveri',
  'tri',
  'convinc',
  'even',
  'goe',
  'say',
  'anyth',
  'mother',
  'come',
  'ill',
  'ask',
  'leav',
  'month_pregnant',
  'pregnant_first',
  'first_child',
  'child_babi',
  'babi_also',
  'also_first',
  'first_grandchildnephew',
  'grandchildnephew_husband',
  'husband_famili',
  'famili_everyon',
  'everyon_excit',
  'excit_lost',
  'lost_mother',
  'mother_father',
  'father_pandem',
  'pandem_child',
  'child_much',
  'much_famili',
  'famili_sinc',
  'sinc_death',
  'death_parent',
  'parent_year',
  'year_ago',
  'ago_husband',
  'husband_famili',
  'famili_welcom',
  'welcom_open',
  'open_arm',
  'arm_part',
  'part_becom',
  'becom_close',
  'close_mil',
  'mil_sil',
  'sil_alway',
  'alway_want',
  'want_gender',
  'gender_reveal',
  'reveal_trust',
  'trust_sil',
  'sil_organ',
  'organ_everyth',
  'everyth_day',
  'day_go',
  'go_parti',
  'parti_start',
  'start_receiv',
  'receiv_messag',
  'messag_husband',
  'husband_rel',
  'rel_even',
  'even_close',
  'close_friend',
  'friend_congratul',
  'congratul_babi',
  'babi_boy',
  'boy_went',
  'went_ask',
  'ask_happen',
  'happen_sil',
  'sil_confess',
  'confess_let',
  'let_slip',
  'slip_mil',
  'mil_told',
  'told_everyon',
  'everyon_sex',
  'sex_babi',
  'babi_know',
  'know_hold',
  'hold_took',
  'took_proport',
  'proport_beyond',
  'beyond_imagin',
  'imagin_nobodi',
  'nobodi_call',
  'call_tell',
  'tell_parti',
  'parti_cancel',
  'cancel_heartbroken',
  'heartbroken_well',
  'well_extrem',
  'extrem_hurt',
  'hurt_two',
  'two_usual',
  'usual_accompani',
  'accompani_ultrasound',
  'ultrasound_shop',
  'shop_babi',
  'babi_room',
  'room_mil',
  'mil_would',
  'would_stay',
  'stay_time',
  'time_deliveri',
  'deliveri_breach',
  'breach_trust',
  'trust_stop',
  'stop_invit',
  'invit_ask',
  'ask_respect',
  'respect_boundari',
  'boundari_pressur',
  'pressur_go',
  'go_honestli',
  'honestli_even',
  'even_send',
  'send_babi',
  'babi_shower',
  'shower_invit',
  'invit_realli',
  'realli_avoid',
  'avoid_contact',
  'contact_much',
  'much_possibl',
  'possibl_everyon',
  'everyon_knew',
  'knew_boy',
  'boy_husband',
  'husband_start',
  'start_complain',
  'complain_push',
  'push_away',
  'away_mistak',
  'mistak_could',
  'could_happen',
  'happen_harsh',
  'harsh_yesterday',
  'yesterday_brought',
  'brought_said',
  'said_still',
  'still_feel',
  'feel_comfort',
  'comfort_said',
  'said_soon',
  'soon_tell',
  'tell_mother',
  'mother_abl',
  'abl_go',
  'go_birth',
  'birth_think',
  'think_face',
  'face_show',
  'show_respons',
  'respons_start',
  'start_say',
  'say_hard',
  'hard_excit',
  'excit_blabla',
  'blabla_limit',
  'limit_said',
  'said_keep',
  'keep_push',
  'push_mother',
  'mother_labor',
  'labor_either',
  'either_stop',
  'stop_come',
  'come_start',
  'start_say',
  'say_cross',
  'cross_line',
  'line_right',
  'right_moment',
  'moment_take',
  'take_far',
  'far_slept',
  'slept_couch',
  'couch_talk',
  'talk_necessari',
  'necessari_aita',
  'aita_well',
  'well_mani',
  'mani_say',
  'say_gender',
  'gender_reveal',
  'reveal_honestli',
  'honestli_care',
  'care_think',
  'think_tacki',
  'tacki_mom',
  'mom_type',
  'type_likelov',
  'likelov_alway',
  'alway_dream',
  'dream_grandchildren',
  'grandchildren_said',
  'said_made',
  'made_grandmoth',
  'grandmoth_cant',
  'cant_meet',
  'meet_son',
  'son_even',
  'even_know',
  'know_im',
  'im_pregnant',
  'pregnant_want',
  'want_someth',
  'someth_tacki',
  'tacki_care',
  'care_everyon',
  'everyon_knew',
  'knew_import',
  'import_reason',
  'reason_alway',
  'alway_want',
  'want_gender',
  'gender_reveal',
  'reveal_mom',
  'mom_either',
  'either_extra',
  'extra_let',
  'let_go',
  'go_point',
  'point_-',
  '-_time',
  'time_say',
  'say_would',
  'would_never',
  'never_approach',
  'approach_right',
  'right_see',
  'see_alreadi',
  'alreadi_grief',
  'grief_pregnanc',
  'pregnanc_hormon',
  'hormon_day-to-day',
  'day-to-day_stress',
  'stress_deal',
  'deal_want',
  'want_anyth',
  'anyth_els',
  'els_bother',
  'bother_-',
  '-_obvious',
  'obvious_want',
  'want_husband',
  'husband_childbirth',
  'childbirth_lot',
  'lot_stress',
  'stress_bring',
  'bring_topic',
  'topic_time',
  'time_doubt',
  'doubt_hell',
  'hell_stop',
  'stop_even',
  'even_time',
  'time_deliveri',
  'deliveri_tri',
  'tri_convinc',
  'convinc_even',
  'even_goe',
  'goe_say',
  'say_anyth',
  'anyth_mother',
  'mother_come',
  'come_ill',
  'ill_ask',
  'ask_leav',
  'month_pregnant_first',
  'pregnant_first_child',
  'first_child_babi',
  'child_babi_also',
  'babi_also_first',
  'also_first_grandchildnephew',
  'first_grandchildnephew_husband',
  'grandchildnephew_husband_famili',
  'husband_famili_everyon',
  'famili_everyon_excit',
  'everyon_excit_lost',
  'excit_lost_mother',
  'lost_mother_father',
  'mother_father_pandem',
  'father_pandem_child',
  'pandem_child_much',
  'child_much_famili',
  'much_famili_sinc',
  'famili_sinc_death',
  'sinc_death_parent',
  'death_parent_year',
  'parent_year_ago',
  'year_ago_husband',
  'ago_husband_famili',
  'husband_famili_welcom',
  'famili_welcom_open',
  'welcom_open_arm',
  'open_arm_part',
  'arm_part_becom',
  'part_becom_close',
  'becom_close_mil',
  'close_mil_sil',
  'mil_sil_alway',
  'sil_alway_want',
  'alway_want_gender',
  'want_gender_reveal',
  'gender_reveal_trust',
  'reveal_trust_sil',
  'trust_sil_organ',
  'sil_organ_everyth',
  'organ_everyth_day',
  'everyth_day_go',
  'day_go_parti',
  'go_parti_start',
  'parti_start_receiv',
  'start_receiv_messag',
  'receiv_messag_husband',
  'messag_husband_rel',
  'husband_rel_even',
  'rel_even_close',
  'even_close_friend',
  'close_friend_congratul',
  'friend_congratul_babi',
  'congratul_babi_boy',
  'babi_boy_went',
  'boy_went_ask',
  'went_ask_happen',
  'ask_happen_sil',
  'happen_sil_confess',
  'sil_confess_let',
  'confess_let_slip',
  'let_slip_mil',
  'slip_mil_told',
  'mil_told_everyon',
  'told_everyon_sex',
  'everyon_sex_babi',
  'sex_babi_know',
  'babi_know_hold',
  'know_hold_took',
  'hold_took_proport',
  'took_proport_beyond',
  'proport_beyond_imagin',
  'beyond_imagin_nobodi',
  'imagin_nobodi_call',
  'nobodi_call_tell',
  'call_tell_parti',
  'tell_parti_cancel',
  'parti_cancel_heartbroken',
  'cancel_heartbroken_well',
  'heartbroken_well_extrem',
  'well_extrem_hurt',
  'extrem_hurt_two',
  'hurt_two_usual',
  'two_usual_accompani',
  'usual_accompani_ultrasound',
  'accompani_ultrasound_shop',
  'ultrasound_shop_babi',
  'shop_babi_room',
  'babi_room_mil',
  'room_mil_would',
  'mil_would_stay',
  'would_stay_time',
  'stay_time_deliveri',
  'time_deliveri_breach',
  'deliveri_breach_trust',
  'breach_trust_stop',
  'trust_stop_invit',
  'stop_invit_ask',
  'invit_ask_respect',
  'ask_respect_boundari',
  'respect_boundari_pressur',
  'boundari_pressur_go',
  'pressur_go_honestli',
  'go_honestli_even',
  'honestli_even_send',
  'even_send_babi',
  'send_babi_shower',
  'babi_shower_invit',
  'shower_invit_realli',
  'invit_realli_avoid',
  'realli_avoid_contact',
  'avoid_contact_much',
  'contact_much_possibl',
  'much_possibl_everyon',
  'possibl_everyon_knew',
  'everyon_knew_boy',
  'knew_boy_husband',
  'boy_husband_start',
  'husband_start_complain',
  'start_complain_push',
  'complain_push_away',
  'push_away_mistak',
  'away_mistak_could',
  'mistak_could_happen',
  'could_happen_harsh',
  'happen_harsh_yesterday',
  'harsh_yesterday_brought',
  'yesterday_brought_said',
  'brought_said_still',
  'said_still_feel',
  'still_feel_comfort',
  'feel_comfort_said',
  'comfort_said_soon',
  'said_soon_tell',
  'soon_tell_mother',
  'tell_mother_abl',
  'mother_abl_go',
  'abl_go_birth',
  'go_birth_think',
  'birth_think_face',
  'think_face_show',
  'face_show_respons',
  'show_respons_start',
  'respons_start_say',
  'start_say_hard',
  'say_hard_excit',
  'hard_excit_blabla',
  'excit_blabla_limit',
  'blabla_limit_said',
  'limit_said_keep',
  'said_keep_push',
  'keep_push_mother',
  'push_mother_labor',
  'mother_labor_either',
  'labor_either_stop',
  'either_stop_come',
  'stop_come_start',
  'come_start_say',
  'start_say_cross',
  'say_cross_line',
  'cross_line_right',
  'line_right_moment',
  'right_moment_take',
  'moment_take_far',
  'take_far_slept',
  'far_slept_couch',
  'slept_couch_talk',
  'couch_talk_necessari',
  'talk_necessari_aita',
  'necessari_aita_well',
  'aita_well_mani',
  'well_mani_say',
  'mani_say_gender',
  'say_gender_reveal',
  'gender_reveal_honestli',
  'reveal_honestli_care',
  'honestli_care_think',
  'care_think_tacki',
  'think_tacki_mom',
  'tacki_mom_type',
  'mom_type_likelov',
  'type_likelov_alway',
  'likelov_alway_dream',
  'alway_dream_grandchildren',
  'dream_grandchildren_said',
  'grandchildren_said_made',
  'said_made_grandmoth',
  'made_grandmoth_cant',
  'grandmoth_cant_meet',
  'cant_meet_son',
  'meet_son_even',
  'son_even_know',
  'even_know_im',
  'know_im_pregnant',
  'im_pregnant_want',
  'pregnant_want_someth',
  'want_someth_tacki',
  'someth_tacki_care',
  'tacki_care_everyon',
  'care_everyon_knew',
  'everyon_knew_import',
  'knew_import_reason',
  'import_reason_alway',
  'reason_alway_want',
  'alway_want_gender',
  'want_gender_reveal',
  'gender_reveal_mom',
  'reveal_mom_either',
  'mom_either_extra',
  'either_extra_let',
  'extra_let_go',
  'let_go_point',
  'go_point_-',
  'point_-_time',
  '-_time_say',
  'time_say_would',
  'say_would_never',
  'would_never_approach',
  'never_approach_right',
  'approach_right_see',
  'right_see_alreadi',
  'see_alreadi_grief',
  'alreadi_grief_pregnanc',
  'grief_pregnanc_hormon',
  'pregnanc_hormon_day-to-day',
  'hormon_day-to-day_stress',
  'day-to-day_stress_deal',
  'stress_deal_want',
  'deal_want_anyth',
  'want_anyth_els',
  'anyth_els_bother',
  'els_bother_-',
  'bother_-_obvious',
  '-_obvious_want',
  'obvious_want_husband',
  'want_husband_childbirth',
  'husband_childbirth_lot',
  'childbirth_lot_stress',
  'lot_stress_bring',
  'stress_bring_topic',
  'bring_topic_time',
  'topic_time_doubt',
  'time_doubt_hell',
  'doubt_hell_stop',
  'hell_stop_even',
  'stop_even_time',
  'even_time_deliveri',
  'time_deliveri_tri',
  'deliveri_tri_convinc',
  'tri_convinc_even',
  'convinc_even_goe',
  'even_goe_say',
  'goe_say_anyth',
  'say_anyth_mother',
  'anyth_mother_come',
  'mother_come_ill',
  'come_ill_ask',
  'ill_ask_leav'],
 ['first',
  'would',
  'like',
  'inform',
  'autism',
  'spectrum',
  'go',
  'use',
  'sarcasm',
  'comment',
  'pleas',
  'label',
  'difficulti',
  'distinguish',
  'even',
  'written',
  'also',
  'feel',
  'free',
  'give',
  'straight',
  'fragil',
  'person',
  'live',
  'roommat',
  'close',
  'month',
  'leas',
  'rent',
  'util',
  'much',
  'ex-roomm',
  'handl',
  'tick',
  'could',
  'say',
  'count',
  'mean',
  'count',
  'step',
  'stair',
  'lightpost',
  'sip',
  'bite',
  'food',
  'pillow',
  'help',
  'cope',
  'stimul',
  'world',
  'move',
  'made',
  'clear',
  'roommat',
  'allow',
  'touch',
  'food',
  'meal',
  'prep',
  'sinc',
  'cant',
  'eat',
  'anyth',
  'famili',
  'cook',
  'cook',
  'tend',
  'count',
  'individu',
  'piec',
  'food',
  'think',
  'mani',
  'chicken',
  'chunk',
  'mani',
  'piec',
  'veget',
  'eat',
  'number',
  'match',
  'tend',
  'get',
  'overwhelm',
  'respect',
  'first',
  'coupl',
  'month',
  'start',
  'steal',
  'bite',
  'stress',
  'would',
  'talk',
  'first',
  'use',
  'deni',
  'apolog',
  'promis',
  'never',
  'coupl',
  'week',
  'later',
  'would',
  'day',
  'ago',
  'got',
  'home',
  'stress',
  'day',
  'took',
  'contain',
  'strawberri',
  'got',
  'end',
  'strawberri',
  'short',
  'meltdown',
  'first',
  'year',
  'manag',
  'calm',
  'feel',
  'better',
  'call',
  'parent',
  'ask',
  'move',
  'back',
  'look',
  'anoth',
  'place',
  'pack',
  'stuff',
  'next',
  'day',
  'inform',
  'move',
  'upfront',
  'month',
  'rent',
  'need',
  'give',
  'anyth',
  'actual',
  'gave',
  'week',
  'rent',
  'even',
  'know',
  'move',
  'today',
  'call',
  'panick',
  'situat',
  'told',
  'bad',
  'mental',
  'health',
  'longer',
  'live',
  'block',
  'everywher',
  'hang',
  'call',
  'ah',
  'told',
  'becom',
  'homeless',
  'spare',
  'measli',
  'strawberri',
  'bad',
  'human',
  'interact',
  'judg',
  'situat',
  'accur',
  'aita',
  'situat',
  'edit',
  'thank',
  'comment',
  'explain',
  'wrong',
  'calcul',
  'much',
  'money',
  'need',
  'send',
  'make',
  'even',
  'day',
  'rent',
  'includ',
  'day',
  'move',
  'tell',
  'venmo',
  'also',
  'peopl',
  'messag',
  'tell',
  'live',
  'alon',
  'cant',
  'handl',
  'roommat',
  'live',
  'year',
  'roommat',
  'includ',
  'go',
  'colleg',
  'work',
  'someon',
  'confid',
  'reach',
  'life',
  'shake',
  'pleas',
  'say',
  'thing',
  'someon',
  'els',
  'see',
  'throwaway',
  'comment',
  'serious',
  'break',
  'someon',
  'trust',
  'first_would',
  'would_like',
  'like_inform',
  'inform_autism',
  'autism_spectrum',
  'spectrum_go',
  'go_use',
  'use_sarcasm',
  'sarcasm_comment',
  'comment_pleas',
  'pleas_label',
  'label_difficulti',
  'difficulti_distinguish',
  'distinguish_even',
  'even_written',
  'written_also',
  'also_feel',
  'feel_free',
  'free_give',
  'give_straight',
  'straight_fragil',
  'fragil_person',
  'person_live',
  'live_roommat',
  'roommat_close',
  'close_month',
  'month_leas',
  'leas_rent',
  'rent_util',
  'util_much',
  'much_ex-roomm',
  'ex-roomm_handl',
  'handl_tick',
  'tick_could',
  'could_say',
  'say_count',
  'count_mean',
  'mean_count',
  'count_step',
  'step_stair',
  'stair_lightpost',
  'lightpost_sip',
  'sip_bite',
  'bite_food',
  'food_pillow',
  'pillow_help',
  'help_cope',
  'cope_stimul',
  'stimul_world',
  'world_move',
  'move_made',
  'made_clear',
  'clear_roommat',
  'roommat_allow',
  'allow_touch',
  'touch_food',
  'food_meal',
  'meal_prep',
  'prep_sinc',
  'sinc_cant',
  'cant_eat',
  'eat_anyth',
  'anyth_famili',
  'famili_cook',
  'cook_cook',
  'cook_tend',
  'tend_count',
  'count_individu',
  'individu_piec',
  'piec_food',
  'food_think',
  'think_mani',
  'mani_chicken',
  'chicken_chunk',
  'chunk_mani',
  'mani_piec',
  'piec_veget',
  'veget_eat',
  'eat_number',
  'number_match',
  'match_tend',
  'tend_get',
  'get_overwhelm',
  'overwhelm_respect',
  'respect_first',
  'first_coupl',
  'coupl_month',
  'month_start',
  'start_steal',
  'steal_bite',
  'bite_stress',
  'stress_would',
  'would_talk',
  'talk_first',
  'first_use',
  'use_deni',
  'deni_apolog',
  'apolog_promis',
  'promis_never',
  'never_coupl',
  'coupl_week',
  'week_later',
  'later_would',
  'would_day',
  'day_ago',
  'ago_got',
  'got_home',
  'home_stress',
  'stress_day',
  'day_took',
  'took_contain',
  'contain_strawberri',
  'strawberri_got',
  'got_end',
  'end_strawberri',
  'strawberri_short',
  'short_meltdown',
  'meltdown_first',
  'first_year',
  'year_manag',
  'manag_calm',
  'calm_feel',
  'feel_better',
  'better_call',
  'call_parent',
  'parent_ask',
  'ask_move',
  'move_back',
  'back_look',
  'look_anoth',
  'anoth_place',
  'place_pack',
  'pack_stuff',
  'stuff_next',
  'next_day',
  'day_inform',
  'inform_move',
  'move_upfront',
  'upfront_month',
  'month_rent',
  'rent_need',
  'need_give',
  'give_anyth',
  'anyth_actual',
  'actual_gave',
  'gave_week',
  'week_rent',
  'rent_even',
  'even_know',
  'know_move',
  'move_today',
  'today_call',
  'call_panick',
  'panick_situat',
  'situat_told',
  'told_bad',
  'bad_mental',
  'mental_health',
  'health_longer',
  'longer_live',
  'live_block',
  'block_everywher',
  'everywher_hang',
  'hang_call',
  'call_ah',
  'ah_told',
  'told_becom',
  'becom_homeless',
  'homeless_spare',
  'spare_measli',
  'measli_strawberri',
  'strawberri_bad',
  'bad_human',
  'human_interact',
  'interact_judg',
  'judg_situat',
  'situat_accur',
  'accur_aita',
  'aita_situat',
  'situat_edit',
  'edit_thank',
  'thank_comment',
  'comment_explain',
  'explain_wrong',
  'wrong_calcul',
  'calcul_much',
  'much_money',
  'money_need',
  'need_send',
  'send_make',
  'make_even',
  'even_day',
  'day_rent',
  'rent_includ',
  'includ_day',
  'day_move',
  'move_tell',
  'tell_venmo',
  'venmo_also',
  'also_peopl',
  'peopl_messag',
  'messag_tell',
  'tell_live',
  'live_alon',
  'alon_cant',
  'cant_handl',
  'handl_roommat',
  'roommat_live',
  'live_year',
  'year_roommat',
  'roommat_includ',
  'includ_go',
  'go_colleg',
  'colleg_work',
  'work_someon',
  'someon_confid',
  'confid_reach',
  'reach_life',
  'life_shake',
  'shake_pleas',
  'pleas_say',
  'say_thing',
  'thing_someon',
  'someon_els',
  'els_see',
  'see_throwaway',
  'throwaway_comment',
  'comment_serious',
  'serious_break',
  'break_someon',
  'someon_trust',
  'first_would_like',
  'would_like_inform',
  'like_inform_autism',
  'inform_autism_spectrum',
  'autism_spectrum_go',
  'spectrum_go_use',
  'go_use_sarcasm',
  'use_sarcasm_comment',
  'sarcasm_comment_pleas',
  'comment_pleas_label',
  'pleas_label_difficulti',
  'label_difficulti_distinguish',
  'difficulti_distinguish_even',
  'distinguish_even_written',
  'even_written_also',
  'written_also_feel',
  'also_feel_free',
  'feel_free_give',
  'free_give_straight',
  'give_straight_fragil',
  'straight_fragil_person',
  'fragil_person_live',
  'person_live_roommat',
  'live_roommat_close',
  'roommat_close_month',
  'close_month_leas',
  'month_leas_rent',
  'leas_rent_util',
  'rent_util_much',
  'util_much_ex-roomm',
  'much_ex-roomm_handl',
  'ex-roomm_handl_tick',
  'handl_tick_could',
  'tick_could_say',
  'could_say_count',
  'say_count_mean',
  'count_mean_count',
  'mean_count_step',
  'count_step_stair',
  'step_stair_lightpost',
  'stair_lightpost_sip',
  'lightpost_sip_bite',
  'sip_bite_food',
  'bite_food_pillow',
  'food_pillow_help',
  'pillow_help_cope',
  'help_cope_stimul',
  'cope_stimul_world',
  'stimul_world_move',
  'world_move_made',
  'move_made_clear',
  'made_clear_roommat',
  'clear_roommat_allow',
  'roommat_allow_touch',
  'allow_touch_food',
  'touch_food_meal',
  'food_meal_prep',
  'meal_prep_sinc',
  'prep_sinc_cant',
  'sinc_cant_eat',
  'cant_eat_anyth',
  'eat_anyth_famili',
  'anyth_famili_cook',
  'famili_cook_cook',
  'cook_cook_tend',
  'cook_tend_count',
  'tend_count_individu',
  'count_individu_piec',
  'individu_piec_food',
  'piec_food_think',
  'food_think_mani',
  'think_mani_chicken',
  'mani_chicken_chunk',
  'chicken_chunk_mani',
  'chunk_mani_piec',
  'mani_piec_veget',
  'piec_veget_eat',
  'veget_eat_number',
  'eat_number_match',
  'number_match_tend',
  'match_tend_get',
  'tend_get_overwhelm',
  'get_overwhelm_respect',
  'overwhelm_respect_first',
  'respect_first_coupl',
  'first_coupl_month',
  'coupl_month_start',
  'month_start_steal',
  'start_steal_bite',
  'steal_bite_stress',
  'bite_stress_would',
  'stress_would_talk',
  'would_talk_first',
  'talk_first_use',
  'first_use_deni',
  'use_deni_apolog',
  'deni_apolog_promis',
  'apolog_promis_never',
  'promis_never_coupl',
  'never_coupl_week',
  'coupl_week_later',
  'week_later_would',
  'later_would_day',
  'would_day_ago',
  'day_ago_got',
  'ago_got_home',
  'got_home_stress',
  'home_stress_day',
  'stress_day_took',
  'day_took_contain',
  'took_contain_strawberri',
  'contain_strawberri_got',
  'strawberri_got_end',
  'got_end_strawberri',
  'end_strawberri_short',
  'strawberri_short_meltdown',
  'short_meltdown_first',
  'meltdown_first_year',
  'first_year_manag',
  'year_manag_calm',
  'manag_calm_feel',
  'calm_feel_better',
  'feel_better_call',
  'better_call_parent',
  'call_parent_ask',
  'parent_ask_move',
  'ask_move_back',
  'move_back_look',
  'back_look_anoth',
  'look_anoth_place',
  'anoth_place_pack',
  'place_pack_stuff',
  'pack_stuff_next',
  'stuff_next_day',
  'next_day_inform',
  'day_inform_move',
  'inform_move_upfront',
  'move_upfront_month',
  'upfront_month_rent',
  'month_rent_need',
  'rent_need_give',
  'need_give_anyth',
  'give_anyth_actual',
  'anyth_actual_gave',
  'actual_gave_week',
  'gave_week_rent',
  'week_rent_even',
  'rent_even_know',
  'even_know_move',
  'know_move_today',
  'move_today_call',
  'today_call_panick',
  'call_panick_situat',
  'panick_situat_told',
  'situat_told_bad',
  'told_bad_mental',
  'bad_mental_health',
  'mental_health_longer',
  'health_longer_live',
  'longer_live_block',
  'live_block_everywher',
  'block_everywher_hang',
  'everywher_hang_call',
  'hang_call_ah',
  'call_ah_told',
  'ah_told_becom',
  'told_becom_homeless',
  'becom_homeless_spare',
  'homeless_spare_measli',
  'spare_measli_strawberri',
  'measli_strawberri_bad',
  'strawberri_bad_human',
  'bad_human_interact',
  'human_interact_judg',
  'interact_judg_situat',
  'judg_situat_accur',
  'situat_accur_aita',
  'accur_aita_situat',
  'aita_situat_edit',
  'situat_edit_thank',
  'edit_thank_comment',
  'thank_comment_explain',
  'comment_explain_wrong',
  'explain_wrong_calcul',
  'wrong_calcul_much',
  'calcul_much_money',
  'much_money_need',
  'money_need_send',
  'need_send_make',
  'send_make_even',
  'make_even_day',
  'even_day_rent',
  'day_rent_includ',
  'rent_includ_day',
  'includ_day_move',
  'day_move_tell',
  'move_tell_venmo',
  'tell_venmo_also',
  'venmo_also_peopl',
  'also_peopl_messag',
  'peopl_messag_tell',
  'messag_tell_live',
  'tell_live_alon',
  'live_alon_cant',
  'alon_cant_handl',
  'cant_handl_roommat',
  'handl_roommat_live',
  'roommat_live_year',
  'live_year_roommat',
  'year_roommat_includ',
  'roommat_includ_go',
  'includ_go_colleg',
  'go_colleg_work',
  'colleg_work_someon',
  'work_someon_confid',
  'someon_confid_reach',
  'confid_reach_life',
  'reach_life_shake',
  'life_shake_pleas',
  'shake_pleas_say',
  'pleas_say_thing',
  'say_thing_someon',
  'thing_someon_els',
  'someon_els_see',
  'els_see_throwaway',
  'see_throwaway_comment',
  'throwaway_comment_serious',
  'comment_serious_break',
  'serious_break_someon',
  'break_someon_trust'],
 ['background',
  'wife',
  'makeup',
  'artist',
  'alway',
  'heavi',
  'makeup',
  'look',
  'weird',
  'guy',
  'sometim',
  'love',
  'enjoy',
  'problem',
  'though',
  'friend',
  'famili',
  'tend',
  'make',
  'funni',
  'lightheart',
  'comment',
  'makeup',
  'seem',
  'take',
  'serious',
  'situat',
  'th',
  'birthday',
  'day',
  'ago',
  'celebr',
  'small',
  'diner',
  'guy',
  'friend',
  'wife',
  'guy',
  'friend',
  'brutal',
  'honest',
  'make',
  'joke',
  'teas',
  'time',
  'wife',
  'know',
  'surpris',
  'anyway',
  'wife',
  'took',
  'miut',
  'use',
  'toilet',
  'get',
  'makeup',
  'fix',
  'boy',
  'chat',
  'got',
  'back',
  'ask',
  'look',
  'could',
  'answer',
  'friend',
  'austin',
  'respond',
  'jokingli',
  'say',
  'damn',
  'look',
  'like',
  'got',
  'cancer',
  'ward',
  'heavi',
  'makeup',
  'face',
  'rest',
  'guy',
  'start',
  'laugh',
  'stare',
  'wife',
  'got',
  'upset',
  'start',
  'argu',
  'austin',
  'aw',
  'join',
  'much',
  'comot',
  'felt',
  'upset',
  'fight',
  'birthday',
  'celebr',
  'ask',
  'wife',
  'calm',
  'take',
  'seat',
  'ask',
  'okay',
  'friend',
  'make',
  'fun',
  'austin',
  'said',
  'come',
  'joke',
  'threw',
  'habd',
  'said',
  'admit',
  'wife',
  'overreact',
  'realli',
  'joke',
  'lash',
  'took',
  'uber',
  'home',
  'parti',
  'cut',
  'short',
  'got',
  'home',
  'began',
  'argu',
  'told',
  'overreact',
  'take',
  'everyth',
  'serious',
  'know',
  'great',
  'alway',
  'look',
  'turn',
  'argument',
  'let',
  'friend',
  'insult',
  'defend',
  'integr',
  'basic',
  'forc',
  'thise',
  'guy',
  'upon',
  'ine',
  'arrang',
  'enitr',
  'celebr',
  'kept',
  'cri',
  'get',
  'humili',
  'dismiss',
  'feel',
  'say',
  'overreact',
  'background_wife',
  'wife_makeup',
  'makeup_artist',
  'artist_alway',
  'alway_heavi',
  'heavi_makeup',
  'makeup_look',
  'look_weird',
  'weird_guy',
  'guy_sometim',
  'sometim_love',
  'love_enjoy',
  'enjoy_problem',
  'problem_though',
  'though_friend',
  'friend_famili',
  'famili_tend',
  'tend_make',
  'make_funni',
  'funni_lightheart',
  'lightheart_comment',
  'comment_makeup',
  'makeup_seem',
  'seem_take',
  'take_serious',
  'serious_situat',
  'situat_th',
  'th_birthday',
  'birthday_day',
  'day_ago',
  'ago_celebr',
  'celebr_small',
  'small_diner',
  'diner_guy',
  'guy_friend',
  'friend_wife',
  'wife_guy',
  'guy_friend',
  'friend_brutal',
  'brutal_honest',
  'honest_make',
  'make_joke',
  'joke_teas',
  'teas_time',
  'time_wife',
  'wife_know',
  'know_surpris',
  'surpris_anyway',
  'anyway_wife',
  'wife_took',
  'took_miut',
  'miut_use',
  'use_toilet',
  'toilet_get',
  'get_makeup',
  'makeup_fix',
  'fix_boy',
  'boy_chat',
  'chat_got',
  'got_back',
  'back_ask',
  'ask_look',
  'look_could',
  'could_answer',
  'answer_friend',
  'friend_austin',
  'austin_respond',
  'respond_jokingli',
  'jokingli_say',
  'say_damn',
  'damn_look',
  'look_like',
  'like_got',
  'got_cancer',
  'cancer_ward',
  'ward_heavi',
  'heavi_makeup',
  'makeup_face',
  'face_rest',
  'rest_guy',
  'guy_start',
  'start_laugh',
  'laugh_stare',
  'stare_wife',
  'wife_got',
  'got_upset',
  'upset_start',
  'start_argu',
  'argu_austin',
  'austin_aw',
  'aw_join',
  'join_much',
  'much_comot',
  'comot_felt',
  'felt_upset',
  'upset_fight',
  'fight_birthday',
  'birthday_celebr',
  'celebr_ask',
  'ask_wife',
  'wife_calm',
  'calm_take',
  'take_seat',
  'seat_ask',
  'ask_okay',
  'okay_friend',
  'friend_make',
  'make_fun',
  'fun_austin',
  'austin_said',
  'said_come',
  'come_joke',
  'joke_threw',
  'threw_habd',
  'habd_said',
  'said_admit',
  'admit_wife',
  'wife_overreact',
  'overreact_realli',
  'realli_joke',
  'joke_lash',
  'lash_took',
  'took_uber',
  'uber_home',
  'home_parti',
  'parti_cut',
  'cut_short',
  'short_got',
  'got_home',
  'home_began',
  'began_argu',
  'argu_told',
  'told_overreact',
  'overreact_take',
  'take_everyth',
  'everyth_serious',
  'serious_know',
  'know_great',
  'great_alway',
  'alway_look',
  'look_turn',
  'turn_argument',
  'argument_let',
  'let_friend',
  'friend_insult',
  'insult_defend',
  'defend_integr',
  'integr_basic',
  'basic_forc',
  'forc_thise',
  'thise_guy',
  'guy_upon',
  'upon_ine',
  'ine_arrang',
  'arrang_enitr',
  'enitr_celebr',
  'celebr_kept',
  'kept_cri',
  'cri_get',
  'get_humili',
  'humili_dismiss',
  'dismiss_feel',
  'feel_say',
  'say_overreact',
  'background_wife_makeup',
  'wife_makeup_artist',
  'makeup_artist_alway',
  'artist_alway_heavi',
  'alway_heavi_makeup',
  'heavi_makeup_look',
  'makeup_look_weird',
  'look_weird_guy',
  'weird_guy_sometim',
  'guy_sometim_love',
  'sometim_love_enjoy',
  'love_enjoy_problem',
  'enjoy_problem_though',
  'problem_though_friend',
  'though_friend_famili',
  'friend_famili_tend',
  'famili_tend_make',
  'tend_make_funni',
  'make_funni_lightheart',
  'funni_lightheart_comment',
  'lightheart_comment_makeup',
  'comment_makeup_seem',
  'makeup_seem_take',
  'seem_take_serious',
  'take_serious_situat',
  'serious_situat_th',
  'situat_th_birthday',
  'th_birthday_day',
  'birthday_day_ago',
  'day_ago_celebr',
  'ago_celebr_small',
  'celebr_small_diner',
  'small_diner_guy',
  'diner_guy_friend',
  'guy_friend_wife',
  'friend_wife_guy',
  'wife_guy_friend',
  'guy_friend_brutal',
  'friend_brutal_honest',
  'brutal_honest_make',
  'honest_make_joke',
  'make_joke_teas',
  'joke_teas_time',
  'teas_time_wife',
  'time_wife_know',
  'wife_know_surpris',
  'know_surpris_anyway',
  'surpris_anyway_wife',
  'anyway_wife_took',
  'wife_took_miut',
  'took_miut_use',
  'miut_use_toilet',
  'use_toilet_get',
  'toilet_get_makeup',
  'get_makeup_fix',
  'makeup_fix_boy',
  'fix_boy_chat',
  'boy_chat_got',
  'chat_got_back',
  'got_back_ask',
  'back_ask_look',
  'ask_look_could',
  'look_could_answer',
  'could_answer_friend',
  'answer_friend_austin',
  'friend_austin_respond',
  'austin_respond_jokingli',
  'respond_jokingli_say',
  'jokingli_say_damn',
  'say_damn_look',
  'damn_look_like',
  'look_like_got',
  'like_got_cancer',
  'got_cancer_ward',
  'cancer_ward_heavi',
  'ward_heavi_makeup',
  'heavi_makeup_face',
  'makeup_face_rest',
  'face_rest_guy',
  'rest_guy_start',
  'guy_start_laugh',
  'start_laugh_stare',
  'laugh_stare_wife',
  'stare_wife_got',
  'wife_got_upset',
  'got_upset_start',
  'upset_start_argu',
  'start_argu_austin',
  'argu_austin_aw',
  'austin_aw_join',
  'aw_join_much',
  'join_much_comot',
  'much_comot_felt',
  'comot_felt_upset',
  'felt_upset_fight',
  'upset_fight_birthday',
  'fight_birthday_celebr',
  'birthday_celebr_ask',
  'celebr_ask_wife',
  'ask_wife_calm',
  'wife_calm_take',
  'calm_take_seat',
  'take_seat_ask',
  'seat_ask_okay',
  'ask_okay_friend',
  'okay_friend_make',
  'friend_make_fun',
  'make_fun_austin',
  'fun_austin_said',
  'austin_said_come',
  'said_come_joke',
  'come_joke_threw',
  'joke_threw_habd',
  'threw_habd_said',
  'habd_said_admit',
  'said_admit_wife',
  'admit_wife_overreact',
  'wife_overreact_realli',
  'overreact_realli_joke',
  'realli_joke_lash',
  'joke_lash_took',
  'lash_took_uber',
  'took_uber_home',
  'uber_home_parti',
  'home_parti_cut',
  'parti_cut_short',
  'cut_short_got',
  'short_got_home',
  'got_home_began',
  'home_began_argu',
  'began_argu_told',
  'argu_told_overreact',
  'told_overreact_take',
  'overreact_take_everyth',
  'take_everyth_serious',
  'everyth_serious_know',
  'serious_know_great',
  'know_great_alway',
  'great_alway_look',
  'alway_look_turn',
  'look_turn_argument',
  'turn_argument_let',
  'argument_let_friend',
  'let_friend_insult',
  'friend_insult_defend',
  'insult_defend_integr',
  'defend_integr_basic',
  'integr_basic_forc',
  'basic_forc_thise',
  'forc_thise_guy',
  'thise_guy_upon',
  'guy_upon_ine',
  'upon_ine_arrang',
  'ine_arrang_enitr',
  'arrang_enitr_celebr',
  'enitr_celebr_kept',
  'celebr_kept_cri',
  'kept_cri_get',
  'cri_get_humili',
  'get_humili_dismiss',
  'humili_dismiss_feel',
  'dismiss_feel_say',
  'feel_say_overreact'],
 ['fyi',
  'singl',
  'dad',
  'year',
  'mom',
  'essenti',
  'ran',
  'us',
  'daughter',
  'victoria',
  'great',
  'kid',
  'make',
  'proud',
  'dad',
  'teen',
  'year',
  'arriv',
  'weve',
  'certainli',
  'fair',
  'share',
  'disagr',
  'grade',
  'cloth',
  'mainli',
  'unfortun',
  'interest',
  'boy',
  'theyr',
  'interest',
  'god',
  'listen',
  'send',
  'help',
  'normal',
  'say',
  'date',
  'im',
  'fine',
  'meet',
  'kid',
  'go',
  'way',
  'kind',
  'rule',
  'goofi',
  'daughter',
  'home',
  'nose',
  'im',
  'come',
  'hunt',
  'big',
  'scari',
  'dad',
  'speech',
  'wan',
  'na',
  'meet',
  'kid',
  'put',
  'face',
  'name',
  'day',
  'ago',
  'said',
  'guy',
  'name',
  'vinc',
  'ask',
  'fine',
  'well',
  'friday',
  'night',
  'came',
  'get',
  'told',
  'victoria',
  'oh',
  'good',
  'talk',
  'parent',
  'like',
  'sarcast',
  'said',
  'love',
  'hear',
  'eas',
  'hear',
  'guy',
  'activ',
  'avoid',
  'parent',
  'got',
  'phd',
  'sarcasm',
  'receiv',
  'eyerol',
  'said',
  'could',
  'use',
  'tonight',
  'practic',
  'talk',
  'parent',
  'said',
  'anyth',
  'want',
  'said',
  'meet',
  'go',
  'date',
  'got',
  'foot',
  'stomp',
  'fair',
  'told',
  'overbear',
  'want',
  'meet',
  'kid',
  'told',
  'go',
  'want',
  'told',
  'text',
  'guy',
  'date',
  'go',
  'room',
  'start',
  'cri',
  'sent',
  'text',
  'told',
  'hate',
  'went',
  'room',
  'slam',
  'door',
  'time',
  'aita',
  'fyi_singl',
  'singl_dad',
  'dad_year',
  'year_mom',
  'mom_essenti',
  'essenti_ran',
  'ran_us',
  'us_daughter',
  'daughter_victoria',
  'victoria_great',
  'great_kid',
  'kid_make',
  'make_proud',
  'proud_dad',
  'dad_teen',
  'teen_year',
  'year_arriv',
  'arriv_weve',
  'weve_certainli',
  'certainli_fair',
  'fair_share',
  'share_disagr',
  'disagr_grade',
  'grade_cloth',
  'cloth_mainli',
  'mainli_unfortun',
  'unfortun_interest',
  'interest_boy',
  'boy_theyr',
  'theyr_interest',
  'interest_god',
  'god_listen',
  'listen_send',
  'send_help',
  'help_normal',
  'normal_say',
  'say_date',
  'date_im',
  'im_fine',
  'fine_meet',
  'meet_kid',
  'kid_go',
  'go_way',
  'way_kind',
  'kind_rule',
  'rule_goofi',
  'goofi_daughter',
  'daughter_home',
  'home_nose',
  'nose_im',
  'im_come',
  'come_hunt',
  'hunt_big',
  'big_scari',
  'scari_dad',
  'dad_speech',
  'speech_wan',
  'wan_na',
  'na_meet',
  'meet_kid',
  'kid_put',
  'put_face',
  'face_name',
  'name_day',
  'day_ago',
  'ago_said',
  'said_guy',
  'guy_name',
  'name_vinc',
  'vinc_ask',
  'ask_fine',
  'fine_well',
  'well_friday',
  'friday_night',
  'night_came',
  'came_get',
  'get_told',
  'told_victoria',
  'victoria_oh',
  'oh_good',
  'good_talk',
  'talk_parent',
  'parent_like',
  'like_sarcast',
  'sarcast_said',
  'said_love',
  'love_hear',
  'hear_eas',
  'eas_hear',
  'hear_guy',
  'guy_activ',
  'activ_avoid',
  'avoid_parent',
  'parent_got',
  'got_phd',
  'phd_sarcasm',
  'sarcasm_receiv',
  'receiv_eyerol',
  'eyerol_said',
  'said_could',
  'could_use',
  'use_tonight',
  'tonight_practic',
  'practic_talk',
  'talk_parent',
  'parent_said',
  'said_anyth',
  'anyth_want',
  'want_said',
  'said_meet',
  'meet_go',
  'go_date',
  'date_got',
  'got_foot',
  'foot_stomp',
  'stomp_fair',
  'fair_told',
  'told_overbear',
  'overbear_want',
  'want_meet',
  'meet_kid',
  'kid_told',
  'told_go',
  'go_want',
  'want_told',
  'told_text',
  'text_guy',
  'guy_date',
  'date_go',
  'go_room',
  'room_start',
  'start_cri',
  'cri_sent',
  'sent_text',
  'text_told',
  'told_hate',
  'hate_went',
  'went_room',
  'room_slam',
  'slam_door',
  'door_time',
  'time_aita',
  'fyi_singl_dad',
  'singl_dad_year',
  'dad_year_mom',
  'year_mom_essenti',
  'mom_essenti_ran',
  'essenti_ran_us',
  'ran_us_daughter',
  'us_daughter_victoria',
  'daughter_victoria_great',
  'victoria_great_kid',
  'great_kid_make',
  'kid_make_proud',
  'make_proud_dad',
  'proud_dad_teen',
  'dad_teen_year',
  'teen_year_arriv',
  'year_arriv_weve',
  'arriv_weve_certainli',
  'weve_certainli_fair',
  'certainli_fair_share',
  'fair_share_disagr',
  'share_disagr_grade',
  'disagr_grade_cloth',
  'grade_cloth_mainli',
  'cloth_mainli_unfortun',
  'mainli_unfortun_interest',
  'unfortun_interest_boy',
  'interest_boy_theyr',
  'boy_theyr_interest',
  'theyr_interest_god',
  'interest_god_listen',
  'god_listen_send',
  'listen_send_help',
  'send_help_normal',
  'help_normal_say',
  'normal_say_date',
  'say_date_im',
  'date_im_fine',
  'im_fine_meet',
  'fine_meet_kid',
  'meet_kid_go',
  'kid_go_way',
  'go_way_kind',
  'way_kind_rule',
  'kind_rule_goofi',
  'rule_goofi_daughter',
  'goofi_daughter_home',
  'daughter_home_nose',
  'home_nose_im',
  'nose_im_come',
  'im_come_hunt',
  'come_hunt_big',
  'hunt_big_scari',
  'big_scari_dad',
  'scari_dad_speech',
  'dad_speech_wan',
  'speech_wan_na',
  'wan_na_meet',
  'na_meet_kid',
  'meet_kid_put',
  'kid_put_face',
  'put_face_name',
  'face_name_day',
  'name_day_ago',
  'day_ago_said',
  'ago_said_guy',
  'said_guy_name',
  'guy_name_vinc',
  'name_vinc_ask',
  'vinc_ask_fine',
  'ask_fine_well',
  'fine_well_friday',
  'well_friday_night',
  'friday_night_came',
  'night_came_get',
  'came_get_told',
  'get_told_victoria',
  'told_victoria_oh',
  'victoria_oh_good',
  'oh_good_talk',
  'good_talk_parent',
  'talk_parent_like',
  'parent_like_sarcast',
  'like_sarcast_said',
  'sarcast_said_love',
  'said_love_hear',
  'love_hear_eas',
  'hear_eas_hear',
  'eas_hear_guy',
  'hear_guy_activ',
  'guy_activ_avoid',
  'activ_avoid_parent',
  'avoid_parent_got',
  'parent_got_phd',
  'got_phd_sarcasm',
  'phd_sarcasm_receiv',
  'sarcasm_receiv_eyerol',
  'receiv_eyerol_said',
  'eyerol_said_could',
  'said_could_use',
  'could_use_tonight',
  'use_tonight_practic',
  'tonight_practic_talk',
  'practic_talk_parent',
  'talk_parent_said',
  'parent_said_anyth',
  'said_anyth_want',
  'anyth_want_said',
  'want_said_meet',
  'said_meet_go',
  'meet_go_date',
  'go_date_got',
  'date_got_foot',
  'got_foot_stomp',
  'foot_stomp_fair',
  'stomp_fair_told',
  'fair_told_overbear',
  'told_overbear_want',
  'overbear_want_meet',
  'want_meet_kid',
  'meet_kid_told',
  'kid_told_go',
  'told_go_want',
  'go_want_told',
  'want_told_text',
  'told_text_guy',
  'text_guy_date',
  'guy_date_go',
  'date_go_room',
  'go_room_start',
  'room_start_cri',
  'start_cri_sent',
  'cri_sent_text',
  'sent_text_told',
  'text_told_hate',
  'told_hate_went',
  'hate_went_room',
  'went_room_slam',
  'room_slam_door',
  'slam_door_time',
  'door_time_aita'],
 ['makeup',
  'artist',
  'past',
  'year',
  'charg',
  '$',
  'bridal',
  'makeup',
  'around',
  'bridesmaid',
  'etc',
  'makeup',
  'regular',
  'parti',
  'makeup',
  'charg',
  'around',
  '$',
  'week',
  'ago',
  'ladi',
  'book',
  'parti',
  'makeup',
  'june',
  'th',
  'book',
  'went',
  'think',
  'id',
  'regular',
  'parti',
  'makeup',
  'agre',
  '$',
  'peopl',
  'come',
  'assum',
  'rel',
  'point',
  'slip',
  'woman',
  'wed',
  'realis',
  'woman',
  'im',
  'makeup',
  'bride',
  'im',
  'bridal',
  'makeup',
  'charg',
  'simpl',
  'parti',
  'makeup',
  'complet',
  'piss',
  'lie',
  'occas',
  'kept',
  'job',
  'finish',
  'gave',
  '$',
  'notifi',
  'actual',
  '$',
  'short',
  'ask',
  'meant',
  'said',
  'bridal',
  'makeup',
  'bride',
  'charg',
  'bride',
  'said',
  'agre',
  'simpla',
  'parti',
  'makeup',
  'basic',
  'rip',
  'work',
  'amount',
  'time',
  'use',
  'product',
  'id',
  'use',
  'bridal',
  'makeup',
  'titl',
  'event',
  'matter',
  'told',
  'get',
  'dictat',
  'form',
  'price',
  'refus',
  'pay',
  'call',
  'scammer',
  'told',
  'get',
  'left',
  'mom',
  'threw',
  '$',
  'face',
  'told',
  'get',
  'lost',
  'tell',
  'happen',
  'friend',
  'side',
  'bride',
  'said',
  'unless',
  'use',
  'expens',
  'product',
  'extra',
  'labor',
  'im',
  'justifi',
  'charg',
  'sinc',
  'request',
  'parti',
  'makeup',
  'charg',
  'aita',
  'makeup_artist',
  'artist_past',
  'past_year',
  'year_charg',
  'charg_$',
  '$_bridal',
  'bridal_makeup',
  'makeup_around',
  'around_bridesmaid',
  'bridesmaid_etc',
  'etc_makeup',
  'makeup_regular',
  'regular_parti',
  'parti_makeup',
  'makeup_charg',
  'charg_around',
  'around_$',
  '$_week',
  'week_ago',
  'ago_ladi',
  'ladi_book',
  'book_parti',
  'parti_makeup',
  'makeup_june',
  'june_th',
  'th_book',
  'book_went',
  'went_think',
  'think_id',
  'id_regular',
  'regular_parti',
  'parti_makeup',
  'makeup_agre',
  'agre_$',
  '$_peopl',
  'peopl_come',
  'come_assum',
  'assum_rel',
  'rel_point',
  'point_slip',
  'slip_woman',
  'woman_wed',
  'wed_realis',
  'realis_woman',
  'woman_im',
  'im_makeup',
  'makeup_bride',
  'bride_im',
  'im_bridal',
  'bridal_makeup',
  'makeup_charg',
  'charg_simpl',
  'simpl_parti',
  'parti_makeup',
  'makeup_complet',
  'complet_piss',
  'piss_lie',
  'lie_occas',
  'occas_kept',
  'kept_job',
  'job_finish',
  'finish_gave',
  'gave_$',
  '$_notifi',
  'notifi_actual',
  'actual_$',
  '$_short',
  'short_ask',
  'ask_meant',
  'meant_said',
  'said_bridal',
  'bridal_makeup',
  'makeup_bride',
  'bride_charg',
  'charg_bride',
  'bride_said',
  'said_agre',
  'agre_simpla',
  'simpla_parti',
  'parti_makeup',
  'makeup_basic',
  'basic_rip',
  'rip_work',
  'work_amount',
  'amount_time',
  'time_use',
  'use_product',
  'product_id',
  'id_use',
  'use_bridal',
  'bridal_makeup',
  'makeup_titl',
  'titl_event',
  'event_matter',
  'matter_told',
  'told_get',
  'get_dictat',
  'dictat_form',
  'form_price',
  'price_refus',
  'refus_pay',
  'pay_call',
  'call_scammer',
  'scammer_told',
  'told_get',
  'get_left',
  'left_mom',
  'mom_threw',
  'threw_$',
  '$_face',
  'face_told',
  'told_get',
  'get_lost',
  'lost_tell',
  'tell_happen',
  'happen_friend',
  'friend_side',
  'side_bride',
  'bride_said',
  'said_unless',
  'unless_use',
  'use_expens',
  'expens_product',
  'product_extra',
  'extra_labor',
  'labor_im',
  'im_justifi',
  'justifi_charg',
  'charg_sinc',
  'sinc_request',
  'request_parti',
  'parti_makeup',
  'makeup_charg',
  'charg_aita',
  'makeup_artist_past',
  'artist_past_year',
  'past_year_charg',
  'year_charg_$',
  'charg_$_bridal',
  '$_bridal_makeup',
  'bridal_makeup_around',
  'makeup_around_bridesmaid',
  'around_bridesmaid_etc',
  'bridesmaid_etc_makeup',
  'etc_makeup_regular',
  'makeup_regular_parti',
  'regular_parti_makeup',
  'parti_makeup_charg',
  'makeup_charg_around',
  'charg_around_$',
  'around_$_week',
  '$_week_ago',
  'week_ago_ladi',
  'ago_ladi_book',
  'ladi_book_parti',
  'book_parti_makeup',
  'parti_makeup_june',
  'makeup_june_th',
  'june_th_book',
  'th_book_went',
  'book_went_think',
  'went_think_id',
  'think_id_regular',
  'id_regular_parti',
  'regular_parti_makeup',
  'parti_makeup_agre',
  'makeup_agre_$',
  'agre_$_peopl',
  '$_peopl_come',
  'peopl_come_assum',
  'come_assum_rel',
  'assum_rel_point',
  'rel_point_slip',
  'point_slip_woman',
  'slip_woman_wed',
  'woman_wed_realis',
  'wed_realis_woman',
  'realis_woman_im',
  'woman_im_makeup',
  'im_makeup_bride',
  'makeup_bride_im',
  'bride_im_bridal',
  'im_bridal_makeup',
  'bridal_makeup_charg',
  'makeup_charg_simpl',
  'charg_simpl_parti',
  'simpl_parti_makeup',
  'parti_makeup_complet',
  'makeup_complet_piss',
  'complet_piss_lie',
  'piss_lie_occas',
  'lie_occas_kept',
  'occas_kept_job',
  'kept_job_finish',
  'job_finish_gave',
  'finish_gave_$',
  'gave_$_notifi',
  '$_notifi_actual',
  'notifi_actual_$',
  'actual_$_short',
  '$_short_ask',
  'short_ask_meant',
  'ask_meant_said',
  'meant_said_bridal',
  'said_bridal_makeup',
  'bridal_makeup_bride',
  'makeup_bride_charg',
  'bride_charg_bride',
  'charg_bride_said',
  'bride_said_agre',
  'said_agre_simpla',
  'agre_simpla_parti',
  'simpla_parti_makeup',
  'parti_makeup_basic',
  'makeup_basic_rip',
  'basic_rip_work',
  'rip_work_amount',
  'work_amount_time',
  'amount_time_use',
  'time_use_product',
  'use_product_id',
  'product_id_use',
  'id_use_bridal',
  'use_bridal_makeup',
  'bridal_makeup_titl',
  'makeup_titl_event',
  'titl_event_matter',
  'event_matter_told',
  'matter_told_get',
  'told_get_dictat',
  'get_dictat_form',
  'dictat_form_price',
  'form_price_refus',
  'price_refus_pay',
  'refus_pay_call',
  'pay_call_scammer',
  'call_scammer_told',
  'scammer_told_get',
  'told_get_left',
  'get_left_mom',
  'left_mom_threw',
  'mom_threw_$',
  'threw_$_face',
  '$_face_told',
  'face_told_get',
  'told_get_lost',
  'get_lost_tell',
  'lost_tell_happen',
  'tell_happen_friend',
  'happen_friend_side',
  'friend_side_bride',
  'side_bride_said',
  'bride_said_unless',
  'said_unless_use',
  'unless_use_expens',
  'use_expens_product',
  'expens_product_extra',
  'product_extra_labor',
  'extra_labor_im',
  'labor_im_justifi',
  'im_justifi_charg',
  'justifi_charg_sinc',
  'charg_sinc_request',
  'sinc_request_parti',
  'request_parti_makeup',
  'parti_makeup_charg',
  'makeup_charg_aita'],
 ['care',
  'famili',
  'recogn',
  'use',
  'throwaway',
  'want',
  'follow',
  'back',
  'regular',
  'account',
  'first',
  'im',
  'girl',
  'gf',
  'year',
  'obvious',
  'midlat',
  'twenti',
  'share',
  'financ',
  'live',
  'togeth',
  'plan',
  'marri',
  'buy',
  'hous',
  'etc',
  'relev',
  'later',
  'brother',
  'sent',
  'wed',
  'invit',
  'name',
  'ask',
  'dan',
  'said',
  'covid',
  'restrict',
  'number',
  'one',
  'get',
  '+',
  'fair',
  'enough',
  'problem',
  'anyway',
  'get',
  'saturday',
  'everyon',
  '+',
  'even',
  'cousin',
  'casual',
  'see',
  'guy',
  'like',
  'coupl',
  'week',
  'obviou',
  'first',
  'time',
  'gf',
  'treat',
  'differ',
  'first',
  'time',
  'blatant',
  'beyond',
  'plausibl',
  'deniabl',
  'im',
  'furiou',
  'grit',
  'teeth',
  'smile',
  'get',
  'ceremoni',
  'recept',
  'famili',
  'immedi',
  'notic',
  'gf',
  'miss',
  'ask',
  'go',
  'say',
  'sick',
  'decid',
  'know',
  'fuck',
  'said',
  'invit',
  'gee',
  'wonder',
  'shout',
  'pretti',
  'clear',
  'bitter',
  'shortli',
  'brother',
  'new',
  'wife',
  'come',
  'storm',
  'sob',
  'whisper-shout',
  'threat',
  'left',
  'immedi',
  'famili',
  'talk',
  'except',
  'yell',
  'rest',
  'famili',
  'talk',
  'except',
  'yell',
  'mom',
  'insist',
  'mix',
  'upmisunderstand',
  'invit',
  'dad',
  'want',
  'apolog',
  'even',
  'though',
  'though',
  'wrong',
  'exclud',
  'day',
  'made',
  'caus',
  'drama',
  'dan',
  'maddi',
  'shun',
  'half',
  'extend',
  'famili',
  'half',
  'split',
  'side',
  'stay',
  'neutral',
  'mom',
  'think',
  'apolog',
  'tell',
  'everyon',
  'misunderstand',
  'smooth',
  'kinda',
  'wan',
  'na',
  'aita',
  'care_famili',
  'famili_recogn',
  'recogn_use',
  'use_throwaway',
  'throwaway_want',
  'want_follow',
  'follow_back',
  'back_regular',
  'regular_account',
  'account_first',
  'first_im',
  'im_girl',
  'girl_gf',
  'gf_year',
  'year_obvious',
  'obvious_midlat',
  'midlat_twenti',
  'twenti_share',
  'share_financ',
  'financ_live',
  'live_togeth',
  'togeth_plan',
  'plan_marri',
  'marri_buy',
  'buy_hous',
  'hous_etc',
  'etc_relev',
  'relev_later',
  'later_brother',
  'brother_sent',
  'sent_wed',
  'wed_invit',
  'invit_name',
  'name_ask',
  'ask_dan',
  'dan_said',
  'said_covid',
  'covid_restrict',
  'restrict_number',
  'number_one',
  'one_get',
  'get_+',
  '+_fair',
  'fair_enough',
  'enough_problem',
  'problem_anyway',
  'anyway_get',
  'get_saturday',
  'saturday_everyon',
  'everyon_+',
  '+_even',
  'even_cousin',
  'cousin_casual',
  'casual_see',
  'see_guy',
  'guy_like',
  'like_coupl',
  'coupl_week',
  'week_obviou',
  'obviou_first',
  'first_time',
  'time_gf',
  'gf_treat',
  'treat_differ',
  'differ_first',
  'first_time',
  'time_blatant',
  'blatant_beyond',
  'beyond_plausibl',
  'plausibl_deniabl',
  'deniabl_im',
  'im_furiou',
  'furiou_grit',
  'grit_teeth',
  'teeth_smile',
  'smile_get',
  'get_ceremoni',
  'ceremoni_recept',
  'recept_famili',
  'famili_immedi',
  'immedi_notic',
  'notic_gf',
  'gf_miss',
  'miss_ask',
  'ask_go',
  'go_say',
  'say_sick',
  'sick_decid',
  'decid_know',
  'know_fuck',
  'fuck_said',
  'said_invit',
  'invit_gee',
  'gee_wonder',
  'wonder_shout',
  'shout_pretti',
  'pretti_clear',
  'clear_bitter',
  'bitter_shortli',
  'shortli_brother',
  'brother_new',
  'new_wife',
  'wife_come',
  'come_storm',
  'storm_sob',
  'sob_whisper-shout',
  'whisper-shout_threat',
  'threat_left',
  'left_immedi',
  'immedi_famili',
  'famili_talk',
  'talk_except',
  'except_yell',
  'yell_rest',
  'rest_famili',
  'famili_talk',
  'talk_except',
  'except_yell',
  'yell_mom',
  'mom_insist',
  'insist_mix',
  'mix_upmisunderstand',
  'upmisunderstand_invit',
  'invit_dad',
  'dad_want',
  'want_apolog',
  'apolog_even',
  'even_though',
  'though_though',
  'though_wrong',
  'wrong_exclud',
  'exclud_day',
  'day_made',
  'made_caus',
  'caus_drama',
  'drama_dan',
  'dan_maddi',
  'maddi_shun',
  'shun_half',
  'half_extend',
  'extend_famili',
  'famili_half',
  'half_split',
  'split_side',
  'side_stay',
  'stay_neutral',
  'neutral_mom',
  'mom_think',
  'think_apolog',
  'apolog_tell',
  'tell_everyon',
  'everyon_misunderstand',
  'misunderstand_smooth',
  'smooth_kinda',
  'kinda_wan',
  'wan_na',
  'na_aita',
  'care_famili_recogn',
  'famili_recogn_use',
  'recogn_use_throwaway',
  'use_throwaway_want',
  'throwaway_want_follow',
  'want_follow_back',
  'follow_back_regular',
  'back_regular_account',
  'regular_account_first',
  'account_first_im',
  'first_im_girl',
  'im_girl_gf',
  'girl_gf_year',
  'gf_year_obvious',
  'year_obvious_midlat',
  'obvious_midlat_twenti',
  'midlat_twenti_share',
  'twenti_share_financ',
  'share_financ_live',
  'financ_live_togeth',
  'live_togeth_plan',
  'togeth_plan_marri',
  'plan_marri_buy',
  'marri_buy_hous',
  'buy_hous_etc',
  'hous_etc_relev',
  'etc_relev_later',
  'relev_later_brother',
  'later_brother_sent',
  'brother_sent_wed',
  'sent_wed_invit',
  'wed_invit_name',
  'invit_name_ask',
  'name_ask_dan',
  'ask_dan_said',
  'dan_said_covid',
  'said_covid_restrict',
  'covid_restrict_number',
  'restrict_number_one',
  'number_one_get',
  'one_get_+',
  'get_+_fair',
  '+_fair_enough',
  'fair_enough_problem',
  'enough_problem_anyway',
  'problem_anyway_get',
  'anyway_get_saturday',
  'get_saturday_everyon',
  'saturday_everyon_+',
  'everyon_+_even',
  '+_even_cousin',
  'even_cousin_casual',
  'cousin_casual_see',
  'casual_see_guy',
  'see_guy_like',
  'guy_like_coupl',
  'like_coupl_week',
  'coupl_week_obviou',
  'week_obviou_first',
  'obviou_first_time',
  'first_time_gf',
  'time_gf_treat',
  'gf_treat_differ',
  'treat_differ_first',
  'differ_first_time',
  'first_time_blatant',
  'time_blatant_beyond',
  'blatant_beyond_plausibl',
  'beyond_plausibl_deniabl',
  'plausibl_deniabl_im',
  'deniabl_im_furiou',
  'im_furiou_grit',
  'furiou_grit_teeth',
  'grit_teeth_smile',
  'teeth_smile_get',
  'smile_get_ceremoni',
  'get_ceremoni_recept',
  'ceremoni_recept_famili',
  'recept_famili_immedi',
  'famili_immedi_notic',
  'immedi_notic_gf',
  'notic_gf_miss',
  'gf_miss_ask',
  'miss_ask_go',
  'ask_go_say',
  'go_say_sick',
  'say_sick_decid',
  'sick_decid_know',
  'decid_know_fuck',
  'know_fuck_said',
  'fuck_said_invit',
  'said_invit_gee',
  'invit_gee_wonder',
  'gee_wonder_shout',
  'wonder_shout_pretti',
  'shout_pretti_clear',
  'pretti_clear_bitter',
  'clear_bitter_shortli',
  'bitter_shortli_brother',
  'shortli_brother_new',
  'brother_new_wife',
  'new_wife_come',
  'wife_come_storm',
  'come_storm_sob',
  'storm_sob_whisper-shout',
  'sob_whisper-shout_threat',
  'whisper-shout_threat_left',
  'threat_left_immedi',
  'left_immedi_famili',
  'immedi_famili_talk',
  'famili_talk_except',
  'talk_except_yell',
  'except_yell_rest',
  'yell_rest_famili',
  'rest_famili_talk',
  'famili_talk_except',
  'talk_except_yell',
  'except_yell_mom',
  'yell_mom_insist',
  'mom_insist_mix',
  'insist_mix_upmisunderstand',
  'mix_upmisunderstand_invit',
  'upmisunderstand_invit_dad',
  'invit_dad_want',
  'dad_want_apolog',
  'want_apolog_even',
  'apolog_even_though',
  'even_though_though',
  'though_though_wrong',
  'though_wrong_exclud',
  'wrong_exclud_day',
  'exclud_day_made',
  'day_made_caus',
  'made_caus_drama',
  'caus_drama_dan',
  'drama_dan_maddi',
  'dan_maddi_shun',
  'maddi_shun_half',
  'shun_half_extend',
  'half_extend_famili',
  'extend_famili_half',
  'famili_half_split',
  'half_split_side',
  'split_side_stay',
  'side_stay_neutral',
  'stay_neutral_mom',
  'neutral_mom_think',
  'mom_think_apolog',
  'think_apolog_tell',
  'apolog_tell_everyon',
  'tell_everyon_misunderstand',
  'everyon_misunderstand_smooth',
  'misunderstand_smooth_kinda',
  'smooth_kinda_wan',
  'kinda_wan_na',
  'wan_na_aita'],
 ['cousin',
  'live',
  'hour',
  'drive',
  'rest',
  'famili',
  'month',
  'ago',
  'drove',
  'wed',
  'due',
  'limit',
  'space',
  'children',
  'invit',
  'wed',
  'except',
  'bride',
  'young',
  'niec',
  'nephew',
  'babi',
  'month',
  'old',
  'time',
  'comfort',
  'leav',
  'alon',
  'unfamiliar',
  'place',
  'stranger',
  'babysitt',
  'cousin',
  'hire',
  'kid',
  'decid',
  'bring',
  'wed',
  'wrote',
  'rsvp',
  'bring',
  'would',
  'sit',
  'lap',
  'would',
  'bring',
  'food',
  'cousin',
  'say',
  'anyth',
  'assum',
  'ok',
  'babi',
  'cri',
  'ceremoni',
  'quickli',
  'took',
  'room',
  'recept',
  'whole',
  'time',
  'bodi',
  'carrier',
  'make',
  'much',
  'fuss',
  'thought',
  'everyth',
  'ok',
  'wed',
  'aunt',
  'groom',
  'mom',
  'confront',
  'told',
  'rude',
  'bring',
  'babi',
  'without',
  'permiss',
  'explain',
  'wrote',
  'rsvp',
  'plan',
  'cousin',
  'object',
  'said',
  'cousin',
  'bride',
  'problem',
  'bride',
  'want',
  'start',
  'drama',
  'know',
  'well',
  'cousin',
  'babi',
  'month',
  'old',
  'time',
  'aunt',
  'said',
  'problem',
  'leav',
  'babi',
  'certifi',
  'babysitt',
  'done',
  'cousin',
  'upset',
  'thought',
  'groom',
  'gave',
  'special',
  'treatment',
  'let',
  'bring',
  'babi',
  'make',
  'leav',
  'kid',
  'babysitt',
  'mean',
  'start',
  'drama',
  'aita',
  'cousin_live',
  'live_hour',
  'hour_drive',
  'drive_rest',
  'rest_famili',
  'famili_month',
  'month_ago',
  'ago_drove',
  'drove_wed',
  'wed_due',
  'due_limit',
  'limit_space',
  'space_children',
  'children_invit',
  'invit_wed',
  'wed_except',
  'except_bride',
  'bride_young',
  'young_niec',
  'niec_nephew',
  'nephew_babi',
  'babi_month',
  'month_old',
  'old_time',
  'time_comfort',
  'comfort_leav',
  'leav_alon',
  'alon_unfamiliar',
  'unfamiliar_place',
  'place_stranger',
  'stranger_babysitt',
  'babysitt_cousin',
  'cousin_hire',
  'hire_kid',
  'kid_decid',
  'decid_bring',
  'bring_wed',
  'wed_wrote',
  'wrote_rsvp',
  'rsvp_bring',
  'bring_would',
  'would_sit',
  'sit_lap',
  'lap_would',
  'would_bring',
  'bring_food',
  'food_cousin',
  'cousin_say',
  'say_anyth',
  'anyth_assum',
  'assum_ok',
  'ok_babi',
  'babi_cri',
  'cri_ceremoni',
  'ceremoni_quickli',
  'quickli_took',
  'took_room',
  'room_recept',
  'recept_whole',
  'whole_time',
  'time_bodi',
  'bodi_carrier',
  'carrier_make',
  'make_much',
  'much_fuss',
  'fuss_thought',
  'thought_everyth',
  'everyth_ok',
  'ok_wed',
  'wed_aunt',
  'aunt_groom',
  'groom_mom',
  'mom_confront',
  'confront_told',
  'told_rude',
  'rude_bring',
  'bring_babi',
  'babi_without',
  'without_permiss',
  'permiss_explain',
  'explain_wrote',
  'wrote_rsvp',
  'rsvp_plan',
  'plan_cousin',
  'cousin_object',
  'object_said',
  'said_cousin',
  'cousin_bride',
  'bride_problem',
  'problem_bride',
  'bride_want',
  'want_start',
  'start_drama',
  'drama_know',
  'know_well',
  'well_cousin',
  'cousin_babi',
  'babi_month',
  'month_old',
  'old_time',
  'time_aunt',
  'aunt_said',
  'said_problem',
  'problem_leav',
  'leav_babi',
  'babi_certifi',
  'certifi_babysitt',
  'babysitt_done',
  'done_cousin',
  'cousin_upset',
  'upset_thought',
  'thought_groom',
  'groom_gave',
  'gave_special',
  'special_treatment',
  'treatment_let',
  'let_bring',
  'bring_babi',
  'babi_make',
  'make_leav',
  'leav_kid',
  'kid_babysitt',
  'babysitt_mean',
  'mean_start',
  'start_drama',
  'drama_aita',
  'cousin_live_hour',
  'live_hour_drive',
  'hour_drive_rest',
  'drive_rest_famili',
  'rest_famili_month',
  'famili_month_ago',
  'month_ago_drove',
  'ago_drove_wed',
  'drove_wed_due',
  'wed_due_limit',
  'due_limit_space',
  'limit_space_children',
  'space_children_invit',
  'children_invit_wed',
  'invit_wed_except',
  'wed_except_bride',
  'except_bride_young',
  'bride_young_niec',
  'young_niec_nephew',
  'niec_nephew_babi',
  'nephew_babi_month',
  'babi_month_old',
  'month_old_time',
  'old_time_comfort',
  'time_comfort_leav',
  'comfort_leav_alon',
  'leav_alon_unfamiliar',
  'alon_unfamiliar_place',
  'unfamiliar_place_stranger',
  'place_stranger_babysitt',
  'stranger_babysitt_cousin',
  'babysitt_cousin_hire',
  'cousin_hire_kid',
  'hire_kid_decid',
  'kid_decid_bring',
  'decid_bring_wed',
  'bring_wed_wrote',
  'wed_wrote_rsvp',
  'wrote_rsvp_bring',
  'rsvp_bring_would',
  'bring_would_sit',
  'would_sit_lap',
  'sit_lap_would',
  'lap_would_bring',
  'would_bring_food',
  'bring_food_cousin',
  'food_cousin_say',
  'cousin_say_anyth',
  'say_anyth_assum',
  'anyth_assum_ok',
  'assum_ok_babi',
  'ok_babi_cri',
  'babi_cri_ceremoni',
  'cri_ceremoni_quickli',
  'ceremoni_quickli_took',
  'quickli_took_room',
  'took_room_recept',
  'room_recept_whole',
  'recept_whole_time',
  'whole_time_bodi',
  'time_bodi_carrier',
  'bodi_carrier_make',
  'carrier_make_much',
  'make_much_fuss',
  'much_fuss_thought',
  'fuss_thought_everyth',
  'thought_everyth_ok',
  'everyth_ok_wed',
  'ok_wed_aunt',
  'wed_aunt_groom',
  'aunt_groom_mom',
  'groom_mom_confront',
  'mom_confront_told',
  'confront_told_rude',
  'told_rude_bring',
  'rude_bring_babi',
  'bring_babi_without',
  'babi_without_permiss',
  'without_permiss_explain',
  'permiss_explain_wrote',
  'explain_wrote_rsvp',
  'wrote_rsvp_plan',
  'rsvp_plan_cousin',
  'plan_cousin_object',
  'cousin_object_said',
  'object_said_cousin',
  'said_cousin_bride',
  'cousin_bride_problem',
  'bride_problem_bride',
  'problem_bride_want',
  'bride_want_start',
  'want_start_drama',
  'start_drama_know',
  'drama_know_well',
  'know_well_cousin',
  'well_cousin_babi',
  'cousin_babi_month',
  'babi_month_old',
  'month_old_time',
  'old_time_aunt',
  'time_aunt_said',
  'aunt_said_problem',
  'said_problem_leav',
  'problem_leav_babi',
  'leav_babi_certifi',
  'babi_certifi_babysitt',
  'certifi_babysitt_done',
  'babysitt_done_cousin',
  'done_cousin_upset',
  'cousin_upset_thought',
  'upset_thought_groom',
  'thought_groom_gave',
  'groom_gave_special',
  'gave_special_treatment',
  'special_treatment_let',
  'treatment_let_bring',
  'let_bring_babi',
  'bring_babi_make',
  'babi_make_leav',
  'make_leav_kid',
  'leav_kid_babysitt',
  'kid_babysitt_mean',
  'babysitt_mean_start',
  'mean_start_drama',
  'start_drama_aita'],
 ['longtim',
  'lurker',
  'first',
  'time',
  'poster',
  'nb',
  'graduat',
  'law',
  'school',
  'next',
  'weekend',
  'backstori',
  'parent',
  'divorc',
  'remarri',
  'thing',
  'father',
  'wife',
  'kelli',
  'alway',
  'tens',
  'got',
  'marri',
  'long',
  'short',
  'end',
  'move',
  'back',
  'mom',
  'due',
  'bluntli',
  'kelli',
  'also',
  'someon',
  'hard',
  'like',
  'abras',
  'quit',
  'rude',
  'time',
  'never',
  'gotten',
  'along',
  'last',
  'year',
  'tri',
  'harder',
  'nicer',
  'sake',
  'father',
  'went',
  'law',
  'school',
  'three',
  'year',
  'ago',
  'time',
  'kelli',
  'support',
  'decis',
  'comment',
  'fact',
  'think',
  'would',
  'actual',
  'see',
  'well',
  'im',
  'graduat',
  'great',
  'job',
  'im',
  'realli',
  'proud',
  'realli',
  'feel',
  'like',
  'got',
  'hard',
  'work',
  'kelli',
  'never',
  'introduc',
  'anyon',
  'assist',
  'work',
  'fair',
  'also',
  'way',
  'expect',
  'kelli',
  'use',
  'lawyer',
  'current',
  'realli',
  'anyth',
  'discuss',
  'due',
  'close',
  'first',
  'place',
  'graduat',
  'law',
  'school',
  'gave',
  'first',
  'gen',
  'law',
  'student',
  'sash',
  'wear',
  'father',
  'call',
  'today',
  'ask',
  'wear',
  'sash',
  'kelli',
  'offend',
  'think',
  'consid',
  'famili',
  'also',
  'therefor',
  'first',
  'gener',
  'lawyer',
  'got',
  'frustrat',
  'told',
  'dad',
  'theyr',
  'welcom',
  'come',
  'offend',
  'much',
  'wear',
  'gen',
  'one',
  'sash',
  'dad',
  'got',
  'upset',
  'well',
  'essenti',
  'said',
  'big',
  'deal',
  'wear',
  'sash',
  'sash',
  'invalid',
  'due',
  'kelli',
  'wife',
  'thu',
  'step-moth',
  'end',
  'phone',
  'call',
  'bad',
  'note',
  'aita',
  'refus',
  'wear',
  'sash',
  'kelli',
  'tri',
  'diplomat',
  'kelli',
  'worri',
  'may',
  'wrong',
  'hill',
  'die',
  'understand',
  'one',
  'graduat',
  'wonder',
  'im',
  'make',
  'big',
  'deal',
  'noth',
  'hand',
  'im',
  'realli',
  'proud',
  'one',
  'els',
  'famili',
  'lawyer',
  'first',
  'reddit',
  'aita',
  'edit',
  'fix',
  'typo',
  'sorri',
  'longtim_lurker',
  'lurker_first',
  'first_time',
  'time_poster',
  'poster_nb',
  'nb_graduat',
  'graduat_law',
  'law_school',
  'school_next',
  'next_weekend',
  'weekend_backstori',
  'backstori_parent',
  'parent_divorc',
  'divorc_remarri',
  'remarri_thing',
  'thing_father',
  'father_wife',
  'wife_kelli',
  'kelli_alway',
  'alway_tens',
  'tens_got',
  'got_marri',
  'marri_long',
  'long_short',
  'short_end',
  'end_move',
  'move_back',
  'back_mom',
  'mom_due',
  'due_bluntli',
  'bluntli_kelli',
  'kelli_also',
  'also_someon',
  'someon_hard',
  'hard_like',
  'like_abras',
  'abras_quit',
  'quit_rude',
  'rude_time',
  'time_never',
  'never_gotten',
  'gotten_along',
  'along_last',
  'last_year',
  'year_tri',
  'tri_harder',
  'harder_nicer',
  'nicer_sake',
  'sake_father',
  'father_went',
  'went_law',
  'law_school',
  'school_three',
  'three_year',
  'year_ago',
  'ago_time',
  'time_kelli',
  'kelli_support',
  'support_decis',
  'decis_comment',
  'comment_fact',
  'fact_think',
  'think_would',
  'would_actual',
  'actual_see',
  'see_well',
  'well_im',
  'im_graduat',
  'graduat_great',
  'great_job',
  'job_im',
  'im_realli',
  'realli_proud',
  'proud_realli',
  'realli_feel',
  'feel_like',
  'like_got',
  'got_hard',
  'hard_work',
  'work_kelli',
  'kelli_never',
  'never_introduc',
  'introduc_anyon',
  'anyon_assist',
  'assist_work',
  'work_fair',
  'fair_also',
  'also_way',
  'way_expect',
  'expect_kelli',
  'kelli_use',
  'use_lawyer',
  'lawyer_current',
  'current_realli',
  'realli_anyth',
  'anyth_discuss',
  'discuss_due',
  'due_close',
  'close_first',
  'first_place',
  'place_graduat',
  'graduat_law',
  'law_school',
  'school_gave',
  'gave_first',
  'first_gen',
  'gen_law',
  'law_student',
  'student_sash',
  'sash_wear',
  'wear_father',
  'father_call',
  'call_today',
  'today_ask',
  'ask_wear',
  'wear_sash',
  'sash_kelli',
  'kelli_offend',
  'offend_think',
  'think_consid',
  'consid_famili',
  'famili_also',
  'also_therefor',
  'therefor_first',
  'first_gener',
  'gener_lawyer',
  'lawyer_got',
  'got_frustrat',
  'frustrat_told',
  'told_dad',
  'dad_theyr',
  'theyr_welcom',
  'welcom_come',
  'come_offend',
  'offend_much',
  'much_wear',
  'wear_gen',
  'gen_one',
  'one_sash',
  'sash_dad',
  'dad_got',
  'got_upset',
  'upset_well',
  'well_essenti',
  'essenti_said',
  'said_big',
  'big_deal',
  'deal_wear',
  'wear_sash',
  'sash_sash',
  'sash_invalid',
  'invalid_due',
  'due_kelli',
  'kelli_wife',
  'wife_thu',
  'thu_step-moth',
  'step-moth_end',
  'end_phone',
  'phone_call',
  'call_bad',
  'bad_note',
  'note_aita',
  'aita_refus',
  'refus_wear',
  'wear_sash',
  'sash_kelli',
  'kelli_tri',
  'tri_diplomat',
  'diplomat_kelli',
  'kelli_worri',
  'worri_may',
  'may_wrong',
  'wrong_hill',
  'hill_die',
  'die_understand',
  'understand_one',
  'one_graduat',
  'graduat_wonder',
  'wonder_im',
  'im_make',
  'make_big',
  'big_deal',
  'deal_noth',
  'noth_hand',
  'hand_im',
  'im_realli',
  'realli_proud',
  'proud_one',
  'one_els',
  'els_famili',
  'famili_lawyer',
  'lawyer_first',
  'first_reddit',
  'reddit_aita',
  'aita_edit',
  'edit_fix',
  'fix_typo',
  'typo_sorri',
  'longtim_lurker_first',
  'lurker_first_time',
  'first_time_poster',
  'time_poster_nb',
  'poster_nb_graduat',
  'nb_graduat_law',
  'graduat_law_school',
  'law_school_next',
  'school_next_weekend',
  'next_weekend_backstori',
  'weekend_backstori_parent',
  'backstori_parent_divorc',
  'parent_divorc_remarri',
  'divorc_remarri_thing',
  'remarri_thing_father',
  'thing_father_wife',
  'father_wife_kelli',
  'wife_kelli_alway',
  'kelli_alway_tens',
  'alway_tens_got',
  'tens_got_marri',
  'got_marri_long',
  'marri_long_short',
  'long_short_end',
  'short_end_move',
  'end_move_back',
  'move_back_mom',
  'back_mom_due',
  'mom_due_bluntli',
  'due_bluntli_kelli',
  'bluntli_kelli_also',
  'kelli_also_someon',
  'also_someon_hard',
  'someon_hard_like',
  'hard_like_abras',
  'like_abras_quit',
  'abras_quit_rude',
  'quit_rude_time',
  'rude_time_never',
  'time_never_gotten',
  'never_gotten_along',
  'gotten_along_last',
  'along_last_year',
  'last_year_tri',
  'year_tri_harder',
  'tri_harder_nicer',
  'harder_nicer_sake',
  'nicer_sake_father',
  'sake_father_went',
  'father_went_law',
  'went_law_school',
  'law_school_three',
  'school_three_year',
  'three_year_ago',
  'year_ago_time',
  'ago_time_kelli',
  'time_kelli_support',
  'kelli_support_decis',
  'support_decis_comment',
  'decis_comment_fact',
  'comment_fact_think',
  'fact_think_would',
  'think_would_actual',
  'would_actual_see',
  'actual_see_well',
  'see_well_im',
  'well_im_graduat',
  'im_graduat_great',
  'graduat_great_job',
  'great_job_im',
  'job_im_realli',
  'im_realli_proud',
  'realli_proud_realli',
  'proud_realli_feel',
  'realli_feel_like',
  'feel_like_got',
  'like_got_hard',
  'got_hard_work',
  'hard_work_kelli',
  'work_kelli_never',
  'kelli_never_introduc',
  'never_introduc_anyon',
  'introduc_anyon_assist',
  'anyon_assist_work',
  'assist_work_fair',
  'work_fair_also',
  'fair_also_way',
  'also_way_expect',
  'way_expect_kelli',
  'expect_kelli_use',
  'kelli_use_lawyer',
  'use_lawyer_current',
  'lawyer_current_realli',
  'current_realli_anyth',
  'realli_anyth_discuss',
  'anyth_discuss_due',
  'discuss_due_close',
  'due_close_first',
  'close_first_place',
  'first_place_graduat',
  'place_graduat_law',
  'graduat_law_school',
  'law_school_gave',
  'school_gave_first',
  'gave_first_gen',
  'first_gen_law',
  'gen_law_student',
  'law_student_sash',
  'student_sash_wear',
  'sash_wear_father',
  'wear_father_call',
  'father_call_today',
  'call_today_ask',
  'today_ask_wear',
  'ask_wear_sash',
  'wear_sash_kelli',
  'sash_kelli_offend',
  'kelli_offend_think',
  'offend_think_consid',
  'think_consid_famili',
  'consid_famili_also',
  'famili_also_therefor',
  'also_therefor_first',
  'therefor_first_gener',
  'first_gener_lawyer',
  'gener_lawyer_got',
  'lawyer_got_frustrat',
  'got_frustrat_told',
  'frustrat_told_dad',
  'told_dad_theyr',
  'dad_theyr_welcom',
  'theyr_welcom_come',
  'welcom_come_offend',
  'come_offend_much',
  'offend_much_wear',
  'much_wear_gen',
  'wear_gen_one',
  'gen_one_sash',
  'one_sash_dad',
  'sash_dad_got',
  'dad_got_upset',
  'got_upset_well',
  'upset_well_essenti',
  'well_essenti_said',
  'essenti_said_big',
  'said_big_deal',
  'big_deal_wear',
  'deal_wear_sash',
  'wear_sash_sash',
  'sash_sash_invalid',
  'sash_invalid_due',
  'invalid_due_kelli',
  'due_kelli_wife',
  'kelli_wife_thu',
  'wife_thu_step-moth',
  'thu_step-moth_end',
  'step-moth_end_phone',
  'end_phone_call',
  'phone_call_bad',
  'call_bad_note',
  'bad_note_aita',
  'note_aita_refus',
  'aita_refus_wear',
  'refus_wear_sash',
  'wear_sash_kelli',
  'sash_kelli_tri',
  'kelli_tri_diplomat',
  'tri_diplomat_kelli',
  'diplomat_kelli_worri',
  'kelli_worri_may',
  'worri_may_wrong',
  'may_wrong_hill',
  'wrong_hill_die',
  'hill_die_understand',
  'die_understand_one',
  'understand_one_graduat',
  'one_graduat_wonder',
  'graduat_wonder_im',
  'wonder_im_make',
  'im_make_big',
  'make_big_deal',
  'big_deal_noth',
  'deal_noth_hand',
  'noth_hand_im',
  'hand_im_realli',
  'im_realli_proud',
  'realli_proud_one',
  'proud_one_els',
  'one_els_famili',
  'els_famili_lawyer',
  'famili_lawyer_first',
  'lawyer_first_reddit',
  'first_reddit_aita',
  'reddit_aita_edit',
  'aita_edit_fix',
  'edit_fix_typo',
  'fix_typo_sorri'],
 ['backstori',
  'mom',
  'alway',
  'want',
  'daughter',
  'instead',
  'end',
  'son',
  'grandson',
  'year',
  'ago',
  'young',
  'woman',
  'year',
  'old',
  'daughter',
  'let',
  'call',
  'daughter',
  'lili',
  'move',
  'across',
  'street',
  'singl',
  'mom',
  'famili',
  'area',
  'mom',
  'offer',
  'help',
  'take',
  'care',
  'littl',
  'girl',
  'mom',
  'workedstudi',
  'year',
  'becom',
  'adopt',
  'momgrandmoth',
  'woman',
  'daughter',
  'woman',
  'marri',
  'husband',
  'girl',
  'togeth',
  'close',
  'whole',
  'famili',
  'especi',
  'lili',
  'mom',
  'born',
  'rais',
  'itali',
  'dad',
  'french',
  'brother',
  'speak',
  'french',
  'italian',
  'lili',
  'fluent',
  'french',
  'italian',
  'know',
  'cultur',
  'brother',
  'know',
  'mom',
  'recip',
  'mom',
  'also',
  'help',
  'pay',
  'privat',
  'school',
  'tuition',
  'like',
  'public',
  'school',
  'area',
  'lili',
  'son',
  'nephew',
  'graduat',
  'high',
  'school',
  'may',
  'son',
  'nephew',
  'got',
  'card',
  'check',
  '$',
  'mom',
  'took',
  'lili',
  'europ',
  'week',
  'summer',
  'got',
  'mom',
  'hous',
  'son',
  'last',
  'night',
  'plan',
  'stay',
  'day',
  'live',
  'hour',
  'away',
  'park',
  'driveway',
  'right',
  'dinner',
  'mom',
  'told',
  'need',
  'move',
  'car',
  'lili',
  'could',
  'park',
  'driveway',
  'said',
  'lili',
  'could',
  'park',
  'street',
  'mom',
  'said',
  'driveway',
  'lili',
  'spot',
  'move',
  'told',
  'son',
  'get',
  'bag',
  'went',
  'home',
  'mom',
  'call',
  'sinc',
  'last',
  'night',
  'ask',
  'come',
  'back',
  'say',
  'overreact',
  'ask',
  'move',
  'car',
  'refus',
  'son',
  'celebr',
  'without',
  'im',
  'start',
  'wonder',
  'asshol',
  'leav',
  'mom',
  'told',
  'move',
  'car',
  'backstori_mom',
  'mom_alway',
  'alway_want',
  'want_daughter',
  'daughter_instead',
  'instead_end',
  'end_son',
  'son_grandson',
  'grandson_year',
  'year_ago',
  'ago_young',
  'young_woman',
  'woman_year',
  'year_old',
  'old_daughter',
  'daughter_let',
  'let_call',
  'call_daughter',
  'daughter_lili',
  'lili_move',
  'move_across',
  'across_street',
  'street_singl',
  'singl_mom',
  'mom_famili',
  'famili_area',
  'area_mom',
  'mom_offer',
  'offer_help',
  'help_take',
  'take_care',
  'care_littl',
  'littl_girl',
  'girl_mom',
  'mom_workedstudi',
  'workedstudi_year',
  'year_becom',
  'becom_adopt',
  'adopt_momgrandmoth',
  'momgrandmoth_woman',
  'woman_daughter',
  'daughter_woman',
  'woman_marri',
  'marri_husband',
  'husband_girl',
  'girl_togeth',
  'togeth_close',
  'close_whole',
  'whole_famili',
  'famili_especi',
  'especi_lili',
  'lili_mom',
  'mom_born',
  'born_rais',
  'rais_itali',
  'itali_dad',
  'dad_french',
  'french_brother',
  'brother_speak',
  'speak_french',
  'french_italian',
  'italian_lili',
  'lili_fluent',
  'fluent_french',
  'french_italian',
  'italian_know',
  'know_cultur',
  'cultur_brother',
  'brother_know',
  'know_mom',
  'mom_recip',
  'recip_mom',
  'mom_also',
  'also_help',
  'help_pay',
  'pay_privat',
  'privat_school',
  'school_tuition',
  'tuition_like',
  'like_public',
  'public_school',
  'school_area',
  'area_lili',
  'lili_son',
  'son_nephew',
  'nephew_graduat',
  'graduat_high',
  'high_school',
  'school_may',
  'may_son',
  'son_nephew',
  'nephew_got',
  'got_card',
  'card_check',
  'check_$',
  '$_mom',
  'mom_took',
  'took_lili',
  'lili_europ',
  'europ_week',
  'week_summer',
  'summer_got',
  'got_mom',
  'mom_hous',
  'hous_son',
  'son_last',
  'last_night',
  'night_plan',
  'plan_stay',
  'stay_day',
  'day_live',
  'live_hour',
  'hour_away',
  'away_park',
  'park_driveway',
  'driveway_right',
  'right_dinner',
  'dinner_mom',
  'mom_told',
  'told_need',
  'need_move',
  'move_car',
  'car_lili',
  'lili_could',
  'could_park',
  'park_driveway',
  'driveway_said',
  'said_lili',
  'lili_could',
  'could_park',
  'park_street',
  'street_mom',
  'mom_said',
  'said_driveway',
  'driveway_lili',
  'lili_spot',
  'spot_move',
  'move_told',
  'told_son',
  'son_get',
  'get_bag',
  'bag_went',
  'went_home',
  'home_mom',
  'mom_call',
  'call_sinc',
  'sinc_last',
  'last_night',
  'night_ask',
  'ask_come',
  'come_back',
  'back_say',
  'say_overreact',
  'overreact_ask',
  'ask_move',
  'move_car',
  'car_refus',
  'refus_son',
  'son_celebr',
  'celebr_without',
  'without_im',
  'im_start',
  'start_wonder',
  'wonder_asshol',
  'asshol_leav',
  'leav_mom',
  'mom_told',
  'told_move',
  'move_car',
  'backstori_mom_alway',
  'mom_alway_want',
  'alway_want_daughter',
  'want_daughter_instead',
  'daughter_instead_end',
  'instead_end_son',
  'end_son_grandson',
  'son_grandson_year',
  'grandson_year_ago',
  'year_ago_young',
  'ago_young_woman',
  'young_woman_year',
  'woman_year_old',
  'year_old_daughter',
  'old_daughter_let',
  'daughter_let_call',
  'let_call_daughter',
  'call_daughter_lili',
  'daughter_lili_move',
  'lili_move_across',
  'move_across_street',
  'across_street_singl',
  'street_singl_mom',
  'singl_mom_famili',
  'mom_famili_area',
  'famili_area_mom',
  'area_mom_offer',
  'mom_offer_help',
  'offer_help_take',
  'help_take_care',
  'take_care_littl',
  'care_littl_girl',
  'littl_girl_mom',
  'girl_mom_workedstudi',
  'mom_workedstudi_year',
  'workedstudi_year_becom',
  'year_becom_adopt',
  'becom_adopt_momgrandmoth',
  'adopt_momgrandmoth_woman',
  'momgrandmoth_woman_daughter',
  'woman_daughter_woman',
  'daughter_woman_marri',
  'woman_marri_husband',
  'marri_husband_girl',
  'husband_girl_togeth',
  'girl_togeth_close',
  'togeth_close_whole',
  'close_whole_famili',
  'whole_famili_especi',
  'famili_especi_lili',
  'especi_lili_mom',
  'lili_mom_born',
  'mom_born_rais',
  'born_rais_itali',
  'rais_itali_dad',
  'itali_dad_french',
  'dad_french_brother',
  'french_brother_speak',
  'brother_speak_french',
  'speak_french_italian',
  'french_italian_lili',
  'italian_lili_fluent',
  'lili_fluent_french',
  'fluent_french_italian',
  'french_italian_know',
  'italian_know_cultur',
  'know_cultur_brother',
  'cultur_brother_know',
  'brother_know_mom',
  'know_mom_recip',
  'mom_recip_mom',
  'recip_mom_also',
  'mom_also_help',
  'also_help_pay',
  'help_pay_privat',
  'pay_privat_school',
  'privat_school_tuition',
  'school_tuition_like',
  'tuition_like_public',
  'like_public_school',
  'public_school_area',
  'school_area_lili',
  'area_lili_son',
  'lili_son_nephew',
  'son_nephew_graduat',
  'nephew_graduat_high',
  'graduat_high_school',
  'high_school_may',
  'school_may_son',
  'may_son_nephew',
  'son_nephew_got',
  'nephew_got_card',
  'got_card_check',
  'card_check_$',
  'check_$_mom',
  '$_mom_took',
  'mom_took_lili',
  'took_lili_europ',
  'lili_europ_week',
  'europ_week_summer',
  'week_summer_got',
  'summer_got_mom',
  'got_mom_hous',
  'mom_hous_son',
  'hous_son_last',
  'son_last_night',
  'last_night_plan',
  'night_plan_stay',
  'plan_stay_day',
  'stay_day_live',
  'day_live_hour',
  'live_hour_away',
  'hour_away_park',
  'away_park_driveway',
  'park_driveway_right',
  'driveway_right_dinner',
  'right_dinner_mom',
  'dinner_mom_told',
  'mom_told_need',
  'told_need_move',
  'need_move_car',
  'move_car_lili',
  'car_lili_could',
  'lili_could_park',
  'could_park_driveway',
  'park_driveway_said',
  'driveway_said_lili',
  'said_lili_could',
  'lili_could_park',
  'could_park_street',
  'park_street_mom',
  'street_mom_said',
  'mom_said_driveway',
  'said_driveway_lili',
  'driveway_lili_spot',
  'lili_spot_move',
  'spot_move_told',
  'move_told_son',
  'told_son_get',
  'son_get_bag',
  'get_bag_went',
  'bag_went_home',
  'went_home_mom',
  'home_mom_call',
  'mom_call_sinc',
  'call_sinc_last',
  'sinc_last_night',
  'last_night_ask',
  'night_ask_come',
  'ask_come_back',
  'come_back_say',
  'back_say_overreact',
  'say_overreact_ask',
  'overreact_ask_move',
  'ask_move_car',
  'move_car_refus',
  'car_refus_son',
  'refus_son_celebr',
  'son_celebr_without',
  'celebr_without_im',
  'without_im_start',
  'im_start_wonder',
  'start_wonder_asshol',
  'wonder_asshol_leav',
  'asshol_leav_mom',
  'leav_mom_told',
  'mom_told_move',
  'told_move_car'],
 ['mym',
  'girlfriend',
  'togeth',
  'year',
  'cover',
  'tattoo',
  'ive',
  'alway',
  'like',
  'alway',
  'artist',
  'tattoo',
  'friend',
  'year',
  'parent',
  'conserv',
  'tradit',
  'plan',
  'trip',
  'visit',
  'us',
  'told',
  'wear',
  'longer',
  'cloth',
  'cover',
  'refus',
  'day',
  'visit',
  'wore',
  'crop',
  'top',
  'short',
  'show',
  'tattoo',
  'warn',
  'came',
  'shrug',
  'shock',
  'parent',
  'came',
  'start',
  'compliment',
  'tattoo',
  'especi',
  'mom',
  'mom',
  'spent',
  'age',
  'talk',
  'tattoo',
  'dad',
  'went',
  'backyard',
  'came',
  'back',
  'mom',
  'rush',
  'father',
  'show',
  'tattoo',
  'girlfriend',
  'gave',
  'four',
  'small',
  'flower',
  'run',
  'arm',
  'said',
  'repres',
  'famili',
  'dad',
  'love',
  'mom',
  'busi',
  'tell',
  'everyon',
  'facebook',
  'girlfriend',
  'came',
  'downstair',
  'ask',
  'would',
  'put',
  'mom',
  'without',
  'ask',
  'laugh',
  'face',
  'said',
  'mom',
  'grown',
  'woman',
  'parent',
  'took',
  'girlfriend',
  'side',
  'storm',
  'upstair',
  'could',
  'hear',
  'hour',
  'downstair',
  'parent',
  'left',
  'day',
  'cant',
  'bring',
  'talk',
  'behind',
  'back',
  'mym_girlfriend',
  'girlfriend_togeth',
  'togeth_year',
  'year_cover',
  'cover_tattoo',
  'tattoo_ive',
  'ive_alway',
  'alway_like',
  'like_alway',
  'alway_artist',
  'artist_tattoo',
  'tattoo_friend',
  'friend_year',
  'year_parent',
  'parent_conserv',
  'conserv_tradit',
  'tradit_plan',
  'plan_trip',
  'trip_visit',
  'visit_us',
  'us_told',
  'told_wear',
  'wear_longer',
  'longer_cloth',
  'cloth_cover',
  'cover_refus',
  'refus_day',
  'day_visit',
  'visit_wore',
  'wore_crop',
  'crop_top',
  'top_short',
  'short_show',
  'show_tattoo',
  'tattoo_warn',
  'warn_came',
  'came_shrug',
  'shrug_shock',
  'shock_parent',
  'parent_came',
  'came_start',
  'start_compliment',
  'compliment_tattoo',
  'tattoo_especi',
  'especi_mom',
  'mom_mom',
  'mom_spent',
  'spent_age',
  'age_talk',
  'talk_tattoo',
  'tattoo_dad',
  'dad_went',
  'went_backyard',
  'backyard_came',
  'came_back',
  'back_mom',
  'mom_rush',
  'rush_father',
  'father_show',
  'show_tattoo',
  'tattoo_girlfriend',
  'girlfriend_gave',
  'gave_four',
  'four_small',
  'small_flower',
  'flower_run',
  'run_arm',
  'arm_said',
  'said_repres',
  'repres_famili',
  'famili_dad',
  'dad_love',
  'love_mom',
  'mom_busi',
  'busi_tell',
  'tell_everyon',
  'everyon_facebook',
  'facebook_girlfriend',
  'girlfriend_came',
  'came_downstair',
  'downstair_ask',
  'ask_would',
  'would_put',
  'put_mom',
  'mom_without',
  'without_ask',
  'ask_laugh',
  'laugh_face',
  'face_said',
  'said_mom',
  'mom_grown',
  'grown_woman',
  'woman_parent',
  'parent_took',
  'took_girlfriend',
  'girlfriend_side',
  'side_storm',
  'storm_upstair',
  'upstair_could',
  'could_hear',
  'hear_hour',
  'hour_downstair',
  'downstair_parent',
  'parent_left',
  'left_day',
  'day_cant',
  'cant_bring',
  'bring_talk',
  'talk_behind',
  'behind_back',
  'mym_girlfriend_togeth',
  'girlfriend_togeth_year',
  'togeth_year_cover',
  'year_cover_tattoo',
  'cover_tattoo_ive',
  'tattoo_ive_alway',
  'ive_alway_like',
  'alway_like_alway',
  'like_alway_artist',
  'alway_artist_tattoo',
  'artist_tattoo_friend',
  'tattoo_friend_year',
  'friend_year_parent',
  'year_parent_conserv',
  'parent_conserv_tradit',
  'conserv_tradit_plan',
  'tradit_plan_trip',
  'plan_trip_visit',
  'trip_visit_us',
  'visit_us_told',
  'us_told_wear',
  'told_wear_longer',
  'wear_longer_cloth',
  'longer_cloth_cover',
  'cloth_cover_refus',
  'cover_refus_day',
  'refus_day_visit',
  'day_visit_wore',
  'visit_wore_crop',
  'wore_crop_top',
  'crop_top_short',
  'top_short_show',
  'short_show_tattoo',
  'show_tattoo_warn',
  'tattoo_warn_came',
  'warn_came_shrug',
  'came_shrug_shock',
  'shrug_shock_parent',
  'shock_parent_came',
  'parent_came_start',
  'came_start_compliment',
  'start_compliment_tattoo',
  'compliment_tattoo_especi',
  'tattoo_especi_mom',
  'especi_mom_mom',
  'mom_mom_spent',
  'mom_spent_age',
  'spent_age_talk',
  'age_talk_tattoo',
  'talk_tattoo_dad',
  'tattoo_dad_went',
  'dad_went_backyard',
  'went_backyard_came',
  'backyard_came_back',
  'came_back_mom',
  'back_mom_rush',
  'mom_rush_father',
  'rush_father_show',
  'father_show_tattoo',
  'show_tattoo_girlfriend',
  'tattoo_girlfriend_gave',
  'girlfriend_gave_four',
  'gave_four_small',
  'four_small_flower',
  'small_flower_run',
  'flower_run_arm',
  'run_arm_said',
  'arm_said_repres',
  'said_repres_famili',
  'repres_famili_dad',
  'famili_dad_love',
  'dad_love_mom',
  'love_mom_busi',
  'mom_busi_tell',
  'busi_tell_everyon',
  'tell_everyon_facebook',
  'everyon_facebook_girlfriend',
  'facebook_girlfriend_came',
  'girlfriend_came_downstair',
  'came_downstair_ask',
  'downstair_ask_would',
  'ask_would_put',
  'would_put_mom',
  'put_mom_without',
  'mom_without_ask',
  'without_ask_laugh',
  'ask_laugh_face',
  'laugh_face_said',
  'face_said_mom',
  'said_mom_grown',
  'mom_grown_woman',
  'grown_woman_parent',
  'woman_parent_took',
  'parent_took_girlfriend',
  'took_girlfriend_side',
  'girlfriend_side_storm',
  'side_storm_upstair',
  'storm_upstair_could',
  'upstair_could_hear',
  'could_hear_hour',
  'hear_hour_downstair',
  'hour_downstair_parent',
  'downstair_parent_left',
  'parent_left_day',
  'left_day_cant',
  'day_cant_bring',
  'cant_bring_talk',
  'bring_talk_behind',
  'talk_behind_back'],
 ['separ',
  'husband',
  'month',
  'saw',
  'side',
  'dad',
  'brother',
  'never',
  'thought',
  'would',
  'treat',
  'terribl',
  'side',
  'husband',
  'complet',
  'multipl',
  'occas',
  'told',
  'beg',
  'husband',
  'forgiv',
  'even',
  'though',
  'separ',
  'way',
  'treat',
  'made',
  'clear',
  'divorc',
  'would',
  'want',
  'noth',
  'time',
  'everyth',
  'stay',
  'husband',
  'good',
  'grace',
  'made',
  'everyth',
  'hurt',
  'twice',
  'much',
  'husband',
  'end',
  'reconcil',
  'admittedli',
  'cri',
  'told',
  'bad',
  'treat',
  'husband',
  'piss',
  'cut',
  'tie',
  'profession',
  'social',
  'dad',
  'brother',
  'ask',
  'speak',
  'mend',
  'thing',
  'hurt',
  'famili',
  'busi',
  'im',
  'still',
  'upset',
  'feel',
  'petti',
  'told',
  'tri',
  'beg',
  'forgiv',
  'theyr',
  'angri',
  'brother',
  'said',
  'im',
  'vindict',
  'aita',
  'separ_husband',
  'husband_month',
  'month_saw',
  'saw_side',
  'side_dad',
  'dad_brother',
  'brother_never',
  'never_thought',
  'thought_would',
  'would_treat',
  'treat_terribl',
  'terribl_side',
  'side_husband',
  'husband_complet',
  'complet_multipl',
  'multipl_occas',
  'occas_told',
  'told_beg',
  'beg_husband',
  'husband_forgiv',
  'forgiv_even',
  'even_though',
  'though_separ',
  'separ_way',
  'way_treat',
  'treat_made',
  'made_clear',
  'clear_divorc',
  'divorc_would',
  'would_want',
  'want_noth',
  'noth_time',
  'time_everyth',
  'everyth_stay',
  'stay_husband',
  'husband_good',
  'good_grace',
  'grace_made',
  'made_everyth',
  'everyth_hurt',
  'hurt_twice',
  'twice_much',
  'much_husband',
  'husband_end',
  'end_reconcil',
  'reconcil_admittedli',
  'admittedli_cri',
  'cri_told',
  'told_bad',
  'bad_treat',
  'treat_husband',
  'husband_piss',
  'piss_cut',
  'cut_tie',
  'tie_profession',
  'profession_social',
  'social_dad',
  'dad_brother',
  'brother_ask',
  'ask_speak',
  'speak_mend',
  'mend_thing',
  'thing_hurt',
  'hurt_famili',
  'famili_busi',
  'busi_im',
  'im_still',
  'still_upset',
  'upset_feel',
  'feel_petti',
  'petti_told',
  'told_tri',
  'tri_beg',
  'beg_forgiv',
  'forgiv_theyr',
  'theyr_angri',
  'angri_brother',
  'brother_said',
  'said_im',
  'im_vindict',
  'vindict_aita',
  'separ_husband_month',
  'husband_month_saw',
  'month_saw_side',
  'saw_side_dad',
  'side_dad_brother',
  'dad_brother_never',
  'brother_never_thought',
  'never_thought_would',
  'thought_would_treat',
  'would_treat_terribl',
  'treat_terribl_side',
  'terribl_side_husband',
  'side_husband_complet',
  'husband_complet_multipl',
  'complet_multipl_occas',
  'multipl_occas_told',
  'occas_told_beg',
  'told_beg_husband',
  'beg_husband_forgiv',
  'husband_forgiv_even',
  'forgiv_even_though',
  'even_though_separ',
  'though_separ_way',
  'separ_way_treat',
  'way_treat_made',
  'treat_made_clear',
  'made_clear_divorc',
  'clear_divorc_would',
  'divorc_would_want',
  'would_want_noth',
  'want_noth_time',
  'noth_time_everyth',
  'time_everyth_stay',
  'everyth_stay_husband',
  'stay_husband_good',
  'husband_good_grace',
  'good_grace_made',
  'grace_made_everyth',
  'made_everyth_hurt',
  'everyth_hurt_twice',
  'hurt_twice_much',
  'twice_much_husband',
  'much_husband_end',
  'husband_end_reconcil',
  'end_reconcil_admittedli',
  'reconcil_admittedli_cri',
  'admittedli_cri_told',
  'cri_told_bad',
  'told_bad_treat',
  'bad_treat_husband',
  'treat_husband_piss',
  'husband_piss_cut',
  'piss_cut_tie',
  'cut_tie_profession',
  'tie_profession_social',
  'profession_social_dad',
  'social_dad_brother',
  'dad_brother_ask',
  'brother_ask_speak',
  'ask_speak_mend',
  'speak_mend_thing',
  'mend_thing_hurt',
  'thing_hurt_famili',
  'hurt_famili_busi',
  'famili_busi_im',
  'busi_im_still',
  'im_still_upset',
  'still_upset_feel',
  'upset_feel_petti',
  'feel_petti_told',
  'petti_told_tri',
  'told_tri_beg',
  'tri_beg_forgiv',
  'beg_forgiv_theyr',
  'forgiv_theyr_angri',
  'theyr_angri_brother',
  'angri_brother_said',
  'brother_said_im',
  'said_im_vindict',
  'im_vindict_aita'],
 ['ex',
  'cheat',
  'current',
  'wife',
  'year',
  'ago',
  'ex',
  'share',
  'three',
  'son',
  'ex',
  'wife',
  'daughter',
  'son',
  'ex',
  'also',
  'cheat',
  'ex',
  'two',
  'said',
  'meant',
  'great',
  'kid',
  'bigger',
  'happier',
  'famili',
  'blah',
  'blah',
  'blah',
  'way',
  'much',
  'sting',
  'affair',
  'partner',
  'marriag',
  'get',
  'call',
  'kid',
  'stepmom',
  'im',
  'sorri',
  'ex',
  'gone',
  'man',
  'slept',
  'behind',
  'back',
  'month',
  'husband',
  'found',
  'civil',
  'kid',
  'around',
  'ignor',
  'kid',
  'around',
  'whole',
  'thing',
  'happen',
  'ex',
  'parent',
  'disgust',
  'cheat',
  'mil',
  'told',
  'destroy',
  'kid',
  'foundat',
  'leav',
  'spous',
  'never',
  'easi',
  'divorc',
  'hard',
  'kid',
  'anyway',
  'add',
  'conflict',
  'way',
  'cheat',
  'take',
  'someth',
  'child',
  'rare',
  'ever',
  'get',
  'back',
  'parent',
  'still',
  'care',
  'want',
  'best',
  'despit',
  'togeth',
  'stay',
  'close',
  'welcom',
  'ex',
  'wife',
  'involv',
  'ex',
  'life',
  'sinc',
  'realli',
  'stepkid',
  'bother',
  'lot',
  'youngest',
  'son',
  'award',
  'school',
  'coupl',
  'week',
  'ago',
  'ex',
  'wife',
  'ex',
  'wife',
  'end',
  'come',
  'complain',
  'mine',
  'ex',
  'parent',
  'show',
  'briefli',
  'spoke',
  'son',
  'left',
  'say',
  'unfair',
  'kid',
  'understand',
  'ex',
  'famili',
  'noth',
  'never',
  'see',
  'know',
  'kid',
  'relationship',
  'said',
  'ex',
  'famili',
  'love',
  'hurt',
  'feel',
  'feel',
  'good',
  'enough',
  'ill',
  'honest',
  'roll',
  'eye',
  'first',
  'laugh',
  'seem',
  'expect',
  'sympathi',
  'help',
  'laugh',
  'piss',
  'heard',
  'ex',
  'sinc',
  'rude',
  'care',
  'kid',
  'least',
  'think',
  'kid',
  'keep',
  'bad',
  'blood',
  'us',
  'laugh',
  'suffer',
  'one',
  'part',
  'care',
  'believ',
  'im',
  'fine',
  'kid',
  'see',
  'anoth',
  'part',
  'wonder',
  'asshol',
  'laugh',
  'aita',
  'ex_cheat',
  'cheat_current',
  'current_wife',
  'wife_year',
  'year_ago',
  'ago_ex',
  'ex_share',
  'share_three',
  'three_son',
  'son_ex',
  'ex_wife',
  'wife_daughter',
  'daughter_son',
  'son_ex',
  'ex_also',
  'also_cheat',
  'cheat_ex',
  'ex_two',
  'two_said',
  'said_meant',
  'meant_great',
  'great_kid',
  'kid_bigger',
  'bigger_happier',
  'happier_famili',
  'famili_blah',
  'blah_blah',
  'blah_blah',
  'blah_way',
  'way_much',
  'much_sting',
  'sting_affair',
  'affair_partner',
  'partner_marriag',
  'marriag_get',
  'get_call',
  'call_kid',
  'kid_stepmom',
  'stepmom_im',
  'im_sorri',
  'sorri_ex',
  'ex_gone',
  'gone_man',
  'man_slept',
  'slept_behind',
  'behind_back',
  'back_month',
  'month_husband',
  'husband_found',
  'found_civil',
  'civil_kid',
  'kid_around',
  'around_ignor',
  'ignor_kid',
  'kid_around',
  'around_whole',
  'whole_thing',
  'thing_happen',
  'happen_ex',
  'ex_parent',
  'parent_disgust',
  'disgust_cheat',
  'cheat_mil',
  'mil_told',
  'told_destroy',
  'destroy_kid',
  'kid_foundat',
  'foundat_leav',
  'leav_spous',
  'spous_never',
  'never_easi',
  'easi_divorc',
  'divorc_hard',
  'hard_kid',
  'kid_anyway',
  'anyway_add',
  'add_conflict',
  'conflict_way',
  'way_cheat',
  'cheat_take',
  'take_someth',
  'someth_child',
  'child_rare',
  'rare_ever',
  'ever_get',
  'get_back',
  'back_parent',
  'parent_still',
  'still_care',
  'care_want',
  'want_best',
  'best_despit',
  'despit_togeth',
  'togeth_stay',
  'stay_close',
  'close_welcom',
  'welcom_ex',
  'ex_wife',
  'wife_involv',
  'involv_ex',
  'ex_life',
  'life_sinc',
  'sinc_realli',
  'realli_stepkid',
  'stepkid_bother',
  'bother_lot',
  'lot_youngest',
  'youngest_son',
  'son_award',
  'award_school',
  'school_coupl',
  'coupl_week',
  'week_ago',
  'ago_ex',
  'ex_wife',
  'wife_ex',
  'ex_wife',
  'wife_end',
  'end_come',
  'come_complain',
  'complain_mine',
  'mine_ex',
  'ex_parent',
  'parent_show',
  'show_briefli',
  'briefli_spoke',
  'spoke_son',
  'son_left',
  'left_say',
  'say_unfair',
  'unfair_kid',
  'kid_understand',
  'understand_ex',
  'ex_famili',
  'famili_noth',
  'noth_never',
  'never_see',
  'see_know',
  'know_kid',
  'kid_relationship',
  'relationship_said',
  'said_ex',
  'ex_famili',
  'famili_love',
  'love_hurt',
  'hurt_feel',
  'feel_feel',
  'feel_good',
  'good_enough',
  'enough_ill',
  'ill_honest',
  'honest_roll',
  'roll_eye',
  'eye_first',
  'first_laugh',
  'laugh_seem',
  'seem_expect',
  'expect_sympathi',
  'sympathi_help',
  'help_laugh',
  'laugh_piss',
  'piss_heard',
  'heard_ex',
  'ex_sinc',
  'sinc_rude',
  'rude_care',
  'care_kid',
  'kid_least',
  'least_think',
  'think_kid',
  'kid_keep',
  'keep_bad',
  'bad_blood',
  'blood_us',
  'us_laugh',
  'laugh_suffer',
  'suffer_one',
  'one_part',
  'part_care',
  'care_believ',
  'believ_im',
  'im_fine',
  'fine_kid',
  'kid_see',
  'see_anoth',
  'anoth_part',
  'part_wonder',
  'wonder_asshol',
  'asshol_laugh',
  'laugh_aita',
  'ex_cheat_current',
  'cheat_current_wife',
  'current_wife_year',
  'wife_year_ago',
  'year_ago_ex',
  'ago_ex_share',
  'ex_share_three',
  'share_three_son',
  'three_son_ex',
  'son_ex_wife',
  'ex_wife_daughter',
  'wife_daughter_son',
  'daughter_son_ex',
  'son_ex_also',
  'ex_also_cheat',
  'also_cheat_ex',
  'cheat_ex_two',
  'ex_two_said',
  'two_said_meant',
  'said_meant_great',
  'meant_great_kid',
  'great_kid_bigger',
  'kid_bigger_happier',
  'bigger_happier_famili',
  'happier_famili_blah',
  'famili_blah_blah',
  'blah_blah_blah',
  'blah_blah_way',
  'blah_way_much',
  'way_much_sting',
  'much_sting_affair',
  'sting_affair_partner',
  'affair_partner_marriag',
  'partner_marriag_get',
  'marriag_get_call',
  'get_call_kid',
  'call_kid_stepmom',
  'kid_stepmom_im',
  'stepmom_im_sorri',
  'im_sorri_ex',
  'sorri_ex_gone',
  'ex_gone_man',
  'gone_man_slept',
  'man_slept_behind',
  'slept_behind_back',
  'behind_back_month',
  'back_month_husband',
  'month_husband_found',
  'husband_found_civil',
  'found_civil_kid',
  'civil_kid_around',
  'kid_around_ignor',
  'around_ignor_kid',
  'ignor_kid_around',
  'kid_around_whole',
  'around_whole_thing',
  'whole_thing_happen',
  'thing_happen_ex',
  'happen_ex_parent',
  'ex_parent_disgust',
  'parent_disgust_cheat',
  'disgust_cheat_mil',
  'cheat_mil_told',
  'mil_told_destroy',
  'told_destroy_kid',
  'destroy_kid_foundat',
  'kid_foundat_leav',
  'foundat_leav_spous',
  'leav_spous_never',
  'spous_never_easi',
  'never_easi_divorc',
  'easi_divorc_hard',
  'divorc_hard_kid',
  'hard_kid_anyway',
  'kid_anyway_add',
  'anyway_add_conflict',
  'add_conflict_way',
  'conflict_way_cheat',
  'way_cheat_take',
  'cheat_take_someth',
  'take_someth_child',
  'someth_child_rare',
  'child_rare_ever',
  'rare_ever_get',
  'ever_get_back',
  'get_back_parent',
  'back_parent_still',
  'parent_still_care',
  'still_care_want',
  'care_want_best',
  'want_best_despit',
  'best_despit_togeth',
  'despit_togeth_stay',
  'togeth_stay_close',
  'stay_close_welcom',
  'close_welcom_ex',
  'welcom_ex_wife',
  'ex_wife_involv',
  'wife_involv_ex',
  'involv_ex_life',
  'ex_life_sinc',
  'life_sinc_realli',
  'sinc_realli_stepkid',
  'realli_stepkid_bother',
  'stepkid_bother_lot',
  'bother_lot_youngest',
  'lot_youngest_son',
  'youngest_son_award',
  'son_award_school',
  'award_school_coupl',
  'school_coupl_week',
  'coupl_week_ago',
  'week_ago_ex',
  'ago_ex_wife',
  'ex_wife_ex',
  'wife_ex_wife',
  'ex_wife_end',
  'wife_end_come',
  'end_come_complain',
  'come_complain_mine',
  'complain_mine_ex',
  'mine_ex_parent',
  'ex_parent_show',
  'parent_show_briefli',
  'show_briefli_spoke',
  'briefli_spoke_son',
  'spoke_son_left',
  'son_left_say',
  'left_say_unfair',
  'say_unfair_kid',
  'unfair_kid_understand',
  'kid_understand_ex',
  'understand_ex_famili',
  'ex_famili_noth',
  'famili_noth_never',
  'noth_never_see',
  'never_see_know',
  'see_know_kid',
  'know_kid_relationship',
  'kid_relationship_said',
  'relationship_said_ex',
  'said_ex_famili',
  'ex_famili_love',
  'famili_love_hurt',
  'love_hurt_feel',
  'hurt_feel_feel',
  'feel_feel_good',
  'feel_good_enough',
  'good_enough_ill',
  'enough_ill_honest',
  'ill_honest_roll',
  'honest_roll_eye',
  'roll_eye_first',
  'eye_first_laugh',
  'first_laugh_seem',
  'laugh_seem_expect',
  'seem_expect_sympathi',
  'expect_sympathi_help',
  'sympathi_help_laugh',
  'help_laugh_piss',
  'laugh_piss_heard',
  'piss_heard_ex',
  'heard_ex_sinc',
  'ex_sinc_rude',
  'sinc_rude_care',
  'rude_care_kid',
  'care_kid_least',
  'kid_least_think',
  'least_think_kid',
  'think_kid_keep',
  'kid_keep_bad',
  'keep_bad_blood',
  'bad_blood_us',
  'blood_us_laugh',
  'us_laugh_suffer',
  'laugh_suffer_one',
  'suffer_one_part',
  'one_part_care',
  'part_care_believ',
  'care_believ_im',
  'believ_im_fine',
  'im_fine_kid',
  'fine_kid_see',
  'kid_see_anoth',
  'see_anoth_part',
  'anoth_part_wonder',
  'part_wonder_asshol',
  'wonder_asshol_laugh',
  'asshol_laugh_aita'],
 ['wife',
  'live',
  'suburban',
  'hous',
  'daughter',
  'emili',
  'neighbour',
  'next',
  'door',
  'walter',
  'singl',
  'father',
  'two',
  'daughter',
  'live',
  'littl',
  'two',
  'year',
  'wife',
  'realli',
  'like',
  'watch',
  'scari',
  'movi',
  'never',
  'enjoy',
  'get',
  'scare',
  'end',
  'bad',
  'time',
  'prefer',
  'avoid',
  'friend',
  'sometim',
  'go',
  'popular',
  'one',
  'also',
  'like',
  'older',
  'indi',
  'foreign',
  'horror',
  'movi',
  'alway',
  'hard',
  'time',
  'find',
  'peopl',
  'nich',
  'interest',
  'big',
  'deal',
  'met',
  'walter',
  'found',
  'also',
  'share',
  'tendenc',
  'quickli',
  'start',
  'make',
  'plan',
  'watch',
  'movi',
  'togeth',
  'invit',
  'part',
  'refus',
  'prefer',
  'stay',
  'home',
  'babysit',
  'emili',
  'walter',
  'daughter',
  'cinephil',
  'reunion',
  'sometim',
  'go',
  'movi',
  'theater',
  'time',
  'stay',
  'walter',
  'place',
  'watch',
  'stuf',
  'home',
  'cinema',
  'usual',
  'go',
  'anoth',
  'town',
  'order',
  'catch',
  'specif',
  'function',
  'weird',
  'movi',
  'normal',
  'come',
  'back',
  'late',
  'eventu',
  'start',
  'stuff',
  'outsid',
  'watch',
  'movi',
  'like',
  'go',
  'dinner',
  'walter',
  'invit',
  'us',
  'includ',
  'kid',
  'go',
  'restaur',
  'friend',
  'said',
  'expens',
  'like',
  'kind',
  'place',
  'feel',
  'wast',
  'money',
  'think',
  'kid',
  'would',
  'enjoy',
  'either',
  'insist',
  'stay',
  'kid',
  'let',
  'two',
  'go',
  'becam',
  'regular',
  'thing',
  'way',
  'good',
  'deal',
  'walter',
  'pay',
  'wife',
  'dinner',
  'cant',
  'longer',
  'complain',
  'take',
  'fanci',
  'restaur',
  'movi',
  'dinner',
  'night',
  'becam',
  'common',
  'grown',
  'littl',
  'tire',
  'burden',
  'constantli',
  'babysit',
  'girl',
  'talk',
  'wife',
  'walter',
  'explain',
  'usual',
  'like',
  'leav',
  'duaghter',
  'babysitt',
  'say',
  'realli',
  'comfort',
  'know',
  'watch',
  'experienc',
  'father',
  'like',
  'instead',
  'teenag',
  'girl',
  'nevertheless',
  'agre',
  'much',
  'load',
  'offer',
  'start',
  'pay',
  'standard',
  'babysitt',
  'fee',
  'time',
  'goe',
  'wife',
  'thought',
  'fair',
  'approach',
  'issu',
  'wife',
  'fulli',
  'say',
  'paid',
  'babysit',
  'daughter',
  'daughter',
  'close',
  'friend',
  'famili',
  'like',
  'walter',
  'argu',
  'insist',
  'notion',
  'open',
  'chang',
  'even',
  'get',
  'mad',
  'everi',
  'time',
  'talk',
  'walter',
  'promis',
  'convinc',
  'seem',
  'abl',
  'either',
  'asshol',
  'wife_live',
  'live_suburban',
  'suburban_hous',
  'hous_daughter',
  'daughter_emili',
  'emili_neighbour',
  'neighbour_next',
  'next_door',
  'door_walter',
  'walter_singl',
  'singl_father',
  'father_two',
  'two_daughter',
  'daughter_live',
  'live_littl',
  'littl_two',
  'two_year',
  'year_wife',
  'wife_realli',
  'realli_like',
  'like_watch',
  'watch_scari',
  'scari_movi',
  'movi_never',
  'never_enjoy',
  'enjoy_get',
  'get_scare',
  'scare_end',
  'end_bad',
  'bad_time',
  'time_prefer',
  'prefer_avoid',
  'avoid_friend',
  'friend_sometim',
  'sometim_go',
  'go_popular',
  'popular_one',
  'one_also',
  'also_like',
  'like_older',
  'older_indi',
  'indi_foreign',
  'foreign_horror',
  'horror_movi',
  'movi_alway',
  'alway_hard',
  'hard_time',
  'time_find',
  'find_peopl',
  'peopl_nich',
  'nich_interest',
  'interest_big',
  'big_deal',
  'deal_met',
  'met_walter',
  'walter_found',
  'found_also',
  'also_share',
  'share_tendenc',
  'tendenc_quickli',
  'quickli_start',
  'start_make',
  'make_plan',
  'plan_watch',
  'watch_movi',
  'movi_togeth',
  'togeth_invit',
  'invit_part',
  'part_refus',
  'refus_prefer',
  'prefer_stay',
  'stay_home',
  'home_babysit',
  'babysit_emili',
  'emili_walter',
  'walter_daughter',
  'daughter_cinephil',
  'cinephil_reunion',
  'reunion_sometim',
  'sometim_go',
  'go_movi',
  'movi_theater',
  'theater_time',
  'time_stay',
  'stay_walter',
  'walter_place',
  'place_watch',
  'watch_stuf',
  'stuf_home',
  'home_cinema',
  'cinema_usual',
  'usual_go',
  'go_anoth',
  'anoth_town',
  'town_order',
  'order_catch',
  'catch_specif',
  'specif_function',
  'function_weird',
  'weird_movi',
  'movi_normal',
  'normal_come',
  'come_back',
  'back_late',
  'late_eventu',
  'eventu_start',
  'start_stuff',
  'stuff_outsid',
  'outsid_watch',
  'watch_movi',
  'movi_like',
  'like_go',
  'go_dinner',
  'dinner_walter',
  'walter_invit',
  'invit_us',
  'us_includ',
  'includ_kid',
  'kid_go',
  'go_restaur',
  'restaur_friend',
  'friend_said',
  'said_expens',
  'expens_like',
  'like_kind',
  'kind_place',
  'place_feel',
  'feel_wast',
  'wast_money',
  'money_think',
  'think_kid',
  'kid_would',
  'would_enjoy',
  'enjoy_either',
  'either_insist',
  'insist_stay',
  'stay_kid',
  'kid_let',
  'let_two',
  'two_go',
  'go_becam',
  'becam_regular',
  'regular_thing',
  'thing_way',
  'way_good',
  'good_deal',
  'deal_walter',
  'walter_pay',
  'pay_wife',
  'wife_dinner',
  'dinner_cant',
  'cant_longer',
  'longer_complain',
  'complain_take',
  'take_fanci',
  'fanci_restaur',
  'restaur_movi',
  'movi_dinner',
  'dinner_night',
  'night_becam',
  'becam_common',
  'common_grown',
  'grown_littl',
  'littl_tire',
  'tire_burden',
  'burden_constantli',
  'constantli_babysit',
  'babysit_girl',
  'girl_talk',
  'talk_wife',
  'wife_walter',
  'walter_explain',
  'explain_usual',
  'usual_like',
  'like_leav',
  'leav_duaghter',
  'duaghter_babysitt',
  'babysitt_say',
  'say_realli',
  'realli_comfort',
  'comfort_know',
  'know_watch',
  'watch_experienc',
  'experienc_father',
  'father_like',
  'like_instead',
  'instead_teenag',
  'teenag_girl',
  'girl_nevertheless',
  'nevertheless_agre',
  'agre_much',
  'much_load',
  'load_offer',
  'offer_start',
  'start_pay',
  'pay_standard',
  'standard_babysitt',
  'babysitt_fee',
  'fee_time',
  'time_goe',
  'goe_wife',
  'wife_thought',
  'thought_fair',
  'fair_approach',
  'approach_issu',
  'issu_wife',
  'wife_fulli',
  'fulli_say',
  'say_paid',
  'paid_babysit',
  'babysit_daughter',
  'daughter_daughter',
  'daughter_close',
  'close_friend',
  'friend_famili',
  'famili_like',
  'like_walter',
  'walter_argu',
  'argu_insist',
  'insist_notion',
  'notion_open',
  'open_chang',
  'chang_even',
  'even_get',
  'get_mad',
  'mad_everi',
  'everi_time',
  'time_talk',
  'talk_walter',
  'walter_promis',
  'promis_convinc',
  'convinc_seem',
  'seem_abl',
  'abl_either',
  'either_asshol',
  'wife_live_suburban',
  'live_suburban_hous',
  'suburban_hous_daughter',
  'hous_daughter_emili',
  'daughter_emili_neighbour',
  'emili_neighbour_next',
  'neighbour_next_door',
  'next_door_walter',
  'door_walter_singl',
  'walter_singl_father',
  'singl_father_two',
  'father_two_daughter',
  'two_daughter_live',
  'daughter_live_littl',
  'live_littl_two',
  'littl_two_year',
  'two_year_wife',
  'year_wife_realli',
  'wife_realli_like',
  'realli_like_watch',
  'like_watch_scari',
  'watch_scari_movi',
  'scari_movi_never',
  'movi_never_enjoy',
  'never_enjoy_get',
  'enjoy_get_scare',
  'get_scare_end',
  'scare_end_bad',
  'end_bad_time',
  'bad_time_prefer',
  'time_prefer_avoid',
  'prefer_avoid_friend',
  'avoid_friend_sometim',
  'friend_sometim_go',
  'sometim_go_popular',
  'go_popular_one',
  'popular_one_also',
  'one_also_like',
  'also_like_older',
  'like_older_indi',
  'older_indi_foreign',
  'indi_foreign_horror',
  'foreign_horror_movi',
  'horror_movi_alway',
  'movi_alway_hard',
  'alway_hard_time',
  'hard_time_find',
  'time_find_peopl',
  'find_peopl_nich',
  'peopl_nich_interest',
  'nich_interest_big',
  'interest_big_deal',
  'big_deal_met',
  'deal_met_walter',
  'met_walter_found',
  'walter_found_also',
  'found_also_share',
  'also_share_tendenc',
  'share_tendenc_quickli',
  'tendenc_quickli_start',
  'quickli_start_make',
  'start_make_plan',
  'make_plan_watch',
  'plan_watch_movi',
  'watch_movi_togeth',
  'movi_togeth_invit',
  'togeth_invit_part',
  'invit_part_refus',
  'part_refus_prefer',
  'refus_prefer_stay',
  'prefer_stay_home',
  'stay_home_babysit',
  'home_babysit_emili',
  'babysit_emili_walter',
  'emili_walter_daughter',
  'walter_daughter_cinephil',
  'daughter_cinephil_reunion',
  'cinephil_reunion_sometim',
  'reunion_sometim_go',
  'sometim_go_movi',
  'go_movi_theater',
  'movi_theater_time',
  'theater_time_stay',
  'time_stay_walter',
  'stay_walter_place',
  'walter_place_watch',
  'place_watch_stuf',
  'watch_stuf_home',
  'stuf_home_cinema',
  'home_cinema_usual',
  'cinema_usual_go',
  'usual_go_anoth',
  'go_anoth_town',
  'anoth_town_order',
  'town_order_catch',
  'order_catch_specif',
  'catch_specif_function',
  'specif_function_weird',
  'function_weird_movi',
  'weird_movi_normal',
  'movi_normal_come',
  'normal_come_back',
  'come_back_late',
  'back_late_eventu',
  'late_eventu_start',
  'eventu_start_stuff',
  'start_stuff_outsid',
  'stuff_outsid_watch',
  'outsid_watch_movi',
  'watch_movi_like',
  'movi_like_go',
  'like_go_dinner',
  'go_dinner_walter',
  'dinner_walter_invit',
  'walter_invit_us',
  'invit_us_includ',
  'us_includ_kid',
  'includ_kid_go',
  'kid_go_restaur',
  'go_restaur_friend',
  'restaur_friend_said',
  'friend_said_expens',
  'said_expens_like',
  'expens_like_kind',
  'like_kind_place',
  'kind_place_feel',
  'place_feel_wast',
  'feel_wast_money',
  'wast_money_think',
  'money_think_kid',
  'think_kid_would',
  'kid_would_enjoy',
  'would_enjoy_either',
  'enjoy_either_insist',
  'either_insist_stay',
  'insist_stay_kid',
  'stay_kid_let',
  'kid_let_two',
  'let_two_go',
  'two_go_becam',
  'go_becam_regular',
  'becam_regular_thing',
  'regular_thing_way',
  'thing_way_good',
  'way_good_deal',
  'good_deal_walter',
  'deal_walter_pay',
  'walter_pay_wife',
  'pay_wife_dinner',
  'wife_dinner_cant',
  'dinner_cant_longer',
  'cant_longer_complain',
  'longer_complain_take',
  'complain_take_fanci',
  'take_fanci_restaur',
  'fanci_restaur_movi',
  'restaur_movi_dinner',
  'movi_dinner_night',
  'dinner_night_becam',
  'night_becam_common',
  'becam_common_grown',
  'common_grown_littl',
  'grown_littl_tire',
  'littl_tire_burden',
  'tire_burden_constantli',
  'burden_constantli_babysit',
  'constantli_babysit_girl',
  'babysit_girl_talk',
  'girl_talk_wife',
  'talk_wife_walter',
  'wife_walter_explain',
  'walter_explain_usual',
  'explain_usual_like',
  'usual_like_leav',
  'like_leav_duaghter',
  'leav_duaghter_babysitt',
  'duaghter_babysitt_say',
  'babysitt_say_realli',
  'say_realli_comfort',
  'realli_comfort_know',
  'comfort_know_watch',
  'know_watch_experienc',
  'watch_experienc_father',
  'experienc_father_like',
  'father_like_instead',
  'like_instead_teenag',
  'instead_teenag_girl',
  'teenag_girl_nevertheless',
  'girl_nevertheless_agre',
  'nevertheless_agre_much',
  'agre_much_load',
  'much_load_offer',
  'load_offer_start',
  'offer_start_pay',
  'start_pay_standard',
  'pay_standard_babysitt',
  'standard_babysitt_fee',
  'babysitt_fee_time',
  'fee_time_goe',
  'time_goe_wife',
  'goe_wife_thought',
  'wife_thought_fair',
  'thought_fair_approach',
  'fair_approach_issu',
  'approach_issu_wife',
  'issu_wife_fulli',
  'wife_fulli_say',
  'fulli_say_paid',
  'say_paid_babysit',
  'paid_babysit_daughter',
  'babysit_daughter_daughter',
  'daughter_daughter_close',
  'daughter_close_friend',
  'close_friend_famili',
  'friend_famili_like',
  'famili_like_walter',
  'like_walter_argu',
  'walter_argu_insist',
  'argu_insist_notion',
  'insist_notion_open',
  'notion_open_chang',
  'open_chang_even',
  'chang_even_get',
  'even_get_mad',
  'get_mad_everi',
  'mad_everi_time',
  'everi_time_talk',
  'time_talk_walter',
  'talk_walter_promis',
  'walter_promis_convinc',
  'promis_convinc_seem',
  'convinc_seem_abl',
  'seem_abl_either',
  'abl_either_asshol'],
 ['wife',
  'tradit',
  'everi',
  'christma',
  'would',
  'bake',
  'christma',
  'cooki',
  'frost',
  'freind',
  'wed',
  'give',
  'cooki',
  'freind',
  'famili',
  'helper',
  'everi',
  'year',
  'wife',
  'would',
  'take',
  'bulk',
  'bake',
  'duti',
  'insist',
  'knew',
  'bake',
  'right',
  'let',
  'whoever',
  'help',
  'frost',
  'alway',
  'insist',
  'bake',
  'frost',
  'fun',
  'part',
  'thing',
  'peopl',
  'want',
  'usual',
  'frost',
  'bake',
  'marathon',
  'would',
  'last',
  'wee',
  'hour',
  'morn',
  'sstart',
  'around',
  'noon',
  'well',
  'year',
  'reason',
  'relev',
  'post',
  'today',
  'would',
  'avail',
  'day',
  'normal',
  'sad',
  'abl',
  'cooki',
  'tradit',
  'said',
  'capabl',
  'bake',
  'cooki',
  'seem',
  'think',
  'joke',
  'could',
  'bassicli',
  'never',
  'well',
  'said',
  'id',
  'tri',
  'wish',
  'sarcast',
  'good',
  'luck',
  'well',
  'run-up',
  'day',
  'bake',
  'frost',
  'start',
  'run',
  'drill',
  'optim',
  'product',
  'enter',
  'test',
  'tragic',
  'mistak',
  'montagei',
  'start',
  'rearrang',
  'hous',
  'variou',
  'configur',
  'run',
  'test',
  'dough',
  'use',
  'see',
  'long',
  'took',
  'bake',
  'make',
  'appropri',
  'chang',
  'run',
  'tast',
  'tester',
  'substitut',
  'ingredi',
  'quicker',
  'bake',
  'time',
  'preserv',
  'tast',
  'make',
  'cooki',
  'thin',
  'possibl',
  'without',
  'compris',
  'frost',
  'ratio',
  'canva',
  'space',
  'creativ',
  'andor',
  'compris',
  'structur',
  'integr',
  'etc',
  'come',
  'day',
  'bake',
  'everyth',
  'scienc',
  'freind',
  'famili',
  'come',
  'give',
  'run',
  'coupl',
  'hour',
  'kink',
  'work',
  'cooki',
  'flow',
  'breakneck',
  'pace',
  'eventu',
  'start',
  'run',
  'materi',
  'someth',
  'never',
  'happen',
  'wife',
  'aegi',
  'start',
  'make',
  'run',
  'store',
  'necessari',
  'raw',
  'materi',
  'fuel',
  'mighti',
  'cooki',
  'forg',
  'time',
  'exhaust',
  'around',
  'produc',
  'least',
  'time',
  'amount',
  'cooki',
  'ever',
  'well',
  'wife',
  'get',
  'home',
  'coupl',
  'day',
  'later',
  'weirdli',
  'upset',
  'insist',
  'cooki',
  'tast',
  'weird',
  'spent',
  'much',
  'money',
  'activ',
  'tri',
  'make',
  'look',
  'bad',
  'make',
  'much',
  'truth',
  'ran',
  'blind',
  'test',
  'see',
  'anyon',
  'could',
  'differenti',
  'old',
  'recip',
  'mine',
  'one',
  'could',
  'also',
  'spent',
  '%',
  'year',
  'previou',
  'slot',
  'cheaper',
  'ingredi',
  'bought',
  'stuff',
  'bulk',
  'absolut',
  'zero',
  'intent',
  'upstag',
  'simpli',
  'goal',
  'maxim',
  'cooki',
  'product',
  'say',
  'even',
  'purpos',
  'thought',
  'made',
  'look',
  'circl',
  'embarrass',
  'actual',
  'call',
  'asshol',
  'never',
  'call',
  'asshol',
  'year',
  'marriag',
  'cant',
  'help',
  'think',
  'aita',
  'wife_tradit',
  'tradit_everi',
  'everi_christma',
  'christma_would',
  'would_bake',
  'bake_christma',
  'christma_cooki',
  'cooki_frost',
  'frost_freind',
  'freind_wed',
  'wed_give',
  'give_cooki',
  'cooki_freind',
  'freind_famili',
  'famili_helper',
  'helper_everi',
  'everi_year',
  'year_wife',
  'wife_would',
  'would_take',
  'take_bulk',
  'bulk_bake',
  'bake_duti',
  'duti_insist',
  'insist_knew',
  'knew_bake',
  'bake_right',
  'right_let',
  'let_whoever',
  'whoever_help',
  'help_frost',
  'frost_alway',
  'alway_insist',
  'insist_bake',
  'bake_frost',
  'frost_fun',
  'fun_part',
  'part_thing',
  'thing_peopl',
  'peopl_want',
  'want_usual',
  'usual_frost',
  'frost_bake',
  'bake_marathon',
  'marathon_would',
  'would_last',
  'last_wee',
  'wee_hour',
  'hour_morn',
  'morn_sstart',
  'sstart_around',
  'around_noon',
  'noon_well',
  'well_year',
  'year_reason',
  'reason_relev',
  'relev_post',
  'post_today',
  'today_would',
  'would_avail',
  'avail_day',
  'day_normal',
  'normal_sad',
  'sad_abl',
  'abl_cooki',
  'cooki_tradit',
  'tradit_said',
  'said_capabl',
  'capabl_bake',
  'bake_cooki',
  'cooki_seem',
  'seem_think',
  'think_joke',
  'joke_could',
  'could_bassicli',
  'bassicli_never',
  'never_well',
  'well_said',
  'said_id',
  'id_tri',
  'tri_wish',
  'wish_sarcast',
  'sarcast_good',
  'good_luck',
  'luck_well',
  'well_run-up',
  'run-up_day',
  'day_bake',
  'bake_frost',
  'frost_start',
  'start_run',
  'run_drill',
  'drill_optim',
  'optim_product',
  'product_enter',
  'enter_test',
  'test_tragic',
  'tragic_mistak',
  'mistak_montagei',
  'montagei_start',
  'start_rearrang',
  'rearrang_hous',
  'hous_variou',
  'variou_configur',
  'configur_run',
  'run_test',
  'test_dough',
  'dough_use',
  'use_see',
  'see_long',
  'long_took',
  'took_bake',
  'bake_make',
  'make_appropri',
  'appropri_chang',
  'chang_run',
  'run_tast',
  'tast_tester',
  'tester_substitut',
  'substitut_ingredi',
  'ingredi_quicker',
  'quicker_bake',
  'bake_time',
  'time_preserv',
  'preserv_tast',
  'tast_make',
  'make_cooki',
  'cooki_thin',
  'thin_possibl',
  'possibl_without',
  'without_compris',
  'compris_frost',
  'frost_ratio',
  'ratio_canva',
  'canva_space',
  'space_creativ',
  'creativ_andor',
  'andor_compris',
  'compris_structur',
  'structur_integr',
  'integr_etc',
  'etc_come',
  'come_day',
  'day_bake',
  'bake_everyth',
  'everyth_scienc',
  'scienc_freind',
  'freind_famili',
  'famili_come',
  'come_give',
  'give_run',
  'run_coupl',
  'coupl_hour',
  'hour_kink',
  'kink_work',
  'work_cooki',
  'cooki_flow',
  'flow_breakneck',
  'breakneck_pace',
  'pace_eventu',
  'eventu_start',
  'start_run',
  'run_materi',
  'materi_someth',
  'someth_never',
  'never_happen',
  'happen_wife',
  'wife_aegi',
  'aegi_start',
  'start_make',
  'make_run',
  'run_store',
  'store_necessari',
  'necessari_raw',
  'raw_materi',
  'materi_fuel',
  'fuel_mighti',
  'mighti_cooki',
  'cooki_forg',
  'forg_time',
  'time_exhaust',
  'exhaust_around',
  'around_produc',
  'produc_least',
  'least_time',
  'time_amount',
  'amount_cooki',
  'cooki_ever',
  'ever_well',
  'well_wife',
  'wife_get',
  'get_home',
  'home_coupl',
  'coupl_day',
  'day_later',
  'later_weirdli',
  'weirdli_upset',
  'upset_insist',
  'insist_cooki',
  'cooki_tast',
  'tast_weird',
  'weird_spent',
  'spent_much',
  'much_money',
  'money_activ',
  'activ_tri',
  'tri_make',
  'make_look',
  'look_bad',
  'bad_make',
  'make_much',
  'much_truth',
  'truth_ran',
  'ran_blind',
  'blind_test',
  'test_see',
  'see_anyon',
  'anyon_could',
  'could_differenti',
  'differenti_old',
  'old_recip',
  'recip_mine',
  'mine_one',
  'one_could',
  'could_also',
  'also_spent',
  'spent_%',
  '%_year',
  'year_previou',
  'previou_slot',
  'slot_cheaper',
  'cheaper_ingredi',
  'ingredi_bought',
  'bought_stuff',
  'stuff_bulk',
  'bulk_absolut',
  'absolut_zero',
  'zero_intent',
  'intent_upstag',
  'upstag_simpli',
  'simpli_goal',
  'goal_maxim',
  'maxim_cooki',
  'cooki_product',
  'product_say',
  'say_even',
  'even_purpos',
  'purpos_thought',
  'thought_made',
  'made_look',
  'look_circl',
  'circl_embarrass',
  'embarrass_actual',
  'actual_call',
  'call_asshol',
  'asshol_never',
  'never_call',
  'call_asshol',
  'asshol_year',
  'year_marriag',
  'marriag_cant',
  'cant_help',
  'help_think',
  'think_aita',
  'wife_tradit_everi',
  'tradit_everi_christma',
  'everi_christma_would',
  'christma_would_bake',
  'would_bake_christma',
  'bake_christma_cooki',
  'christma_cooki_frost',
  'cooki_frost_freind',
  'frost_freind_wed',
  'freind_wed_give',
  'wed_give_cooki',
  'give_cooki_freind',
  'cooki_freind_famili',
  'freind_famili_helper',
  'famili_helper_everi',
  'helper_everi_year',
  'everi_year_wife',
  'year_wife_would',
  'wife_would_take',
  'would_take_bulk',
  'take_bulk_bake',
  'bulk_bake_duti',
  'bake_duti_insist',
  'duti_insist_knew',
  'insist_knew_bake',
  'knew_bake_right',
  'bake_right_let',
  'right_let_whoever',
  'let_whoever_help',
  'whoever_help_frost',
  'help_frost_alway',
  'frost_alway_insist',
  'alway_insist_bake',
  'insist_bake_frost',
  'bake_frost_fun',
  'frost_fun_part',
  'fun_part_thing',
  'part_thing_peopl',
  'thing_peopl_want',
  'peopl_want_usual',
  'want_usual_frost',
  'usual_frost_bake',
  'frost_bake_marathon',
  'bake_marathon_would',
  'marathon_would_last',
  'would_last_wee',
  'last_wee_hour',
  'wee_hour_morn',
  'hour_morn_sstart',
  'morn_sstart_around',
  'sstart_around_noon',
  'around_noon_well',
  'noon_well_year',
  'well_year_reason',
  'year_reason_relev',
  'reason_relev_post',
  'relev_post_today',
  'post_today_would',
  'today_would_avail',
  'would_avail_day',
  'avail_day_normal',
  'day_normal_sad',
  'normal_sad_abl',
  'sad_abl_cooki',
  'abl_cooki_tradit',
  'cooki_tradit_said',
  'tradit_said_capabl',
  'said_capabl_bake',
  'capabl_bake_cooki',
  'bake_cooki_seem',
  'cooki_seem_think',
  'seem_think_joke',
  'think_joke_could',
  'joke_could_bassicli',
  'could_bassicli_never',
  'bassicli_never_well',
  'never_well_said',
  'well_said_id',
  'said_id_tri',
  'id_tri_wish',
  'tri_wish_sarcast',
  'wish_sarcast_good',
  'sarcast_good_luck',
  'good_luck_well',
  'luck_well_run-up',
  'well_run-up_day',
  'run-up_day_bake',
  'day_bake_frost',
  'bake_frost_start',
  'frost_start_run',
  'start_run_drill',
  'run_drill_optim',
  'drill_optim_product',
  'optim_product_enter',
  'product_enter_test',
  'enter_test_tragic',
  'test_tragic_mistak',
  'tragic_mistak_montagei',
  'mistak_montagei_start',
  'montagei_start_rearrang',
  'start_rearrang_hous',
  'rearrang_hous_variou',
  'hous_variou_configur',
  'variou_configur_run',
  'configur_run_test',
  'run_test_dough',
  'test_dough_use',
  'dough_use_see',
  'use_see_long',
  'see_long_took',
  'long_took_bake',
  'took_bake_make',
  'bake_make_appropri',
  'make_appropri_chang',
  'appropri_chang_run',
  'chang_run_tast',
  'run_tast_tester',
  'tast_tester_substitut',
  'tester_substitut_ingredi',
  'substitut_ingredi_quicker',
  'ingredi_quicker_bake',
  'quicker_bake_time',
  'bake_time_preserv',
  'time_preserv_tast',
  'preserv_tast_make',
  'tast_make_cooki',
  'make_cooki_thin',
  'cooki_thin_possibl',
  'thin_possibl_without',
  'possibl_without_compris',
  'without_compris_frost',
  'compris_frost_ratio',
  'frost_ratio_canva',
  'ratio_canva_space',
  'canva_space_creativ',
  'space_creativ_andor',
  'creativ_andor_compris',
  'andor_compris_structur',
  'compris_structur_integr',
  'structur_integr_etc',
  'integr_etc_come',
  'etc_come_day',
  'come_day_bake',
  'day_bake_everyth',
  'bake_everyth_scienc',
  'everyth_scienc_freind',
  'scienc_freind_famili',
  'freind_famili_come',
  'famili_come_give',
  'come_give_run',
  'give_run_coupl',
  'run_coupl_hour',
  'coupl_hour_kink',
  'hour_kink_work',
  'kink_work_cooki',
  'work_cooki_flow',
  'cooki_flow_breakneck',
  'flow_breakneck_pace',
  'breakneck_pace_eventu',
  'pace_eventu_start',
  'eventu_start_run',
  'start_run_materi',
  'run_materi_someth',
  'materi_someth_never',
  'someth_never_happen',
  'never_happen_wife',
  'happen_wife_aegi',
  'wife_aegi_start',
  'aegi_start_make',
  'start_make_run',
  'make_run_store',
  'run_store_necessari',
  'store_necessari_raw',
  'necessari_raw_materi',
  'raw_materi_fuel',
  'materi_fuel_mighti',
  'fuel_mighti_cooki',
  'mighti_cooki_forg',
  'cooki_forg_time',
  'forg_time_exhaust',
  'time_exhaust_around',
  'exhaust_around_produc',
  'around_produc_least',
  'produc_least_time',
  'least_time_amount',
  'time_amount_cooki',
  'amount_cooki_ever',
  'cooki_ever_well',
  'ever_well_wife',
  'well_wife_get',
  'wife_get_home',
  'get_home_coupl',
  'home_coupl_day',
  'coupl_day_later',
  'day_later_weirdli',
  'later_weirdli_upset',
  'weirdli_upset_insist',
  'upset_insist_cooki',
  'insist_cooki_tast',
  'cooki_tast_weird',
  'tast_weird_spent',
  'weird_spent_much',
  'spent_much_money',
  'much_money_activ',
  'money_activ_tri',
  'activ_tri_make',
  'tri_make_look',
  'make_look_bad',
  'look_bad_make',
  'bad_make_much',
  'make_much_truth',
  'much_truth_ran',
  'truth_ran_blind',
  'ran_blind_test',
  'blind_test_see',
  'test_see_anyon',
  'see_anyon_could',
  'anyon_could_differenti',
  'could_differenti_old',
  'differenti_old_recip',
  'old_recip_mine',
  'recip_mine_one',
  'mine_one_could',
  'one_could_also',
  'could_also_spent',
  'also_spent_%',
  'spent_%_year',
  '%_year_previou',
  'year_previou_slot',
  'previou_slot_cheaper',
  'slot_cheaper_ingredi',
  'cheaper_ingredi_bought',
  'ingredi_bought_stuff',
  'bought_stuff_bulk',
  'stuff_bulk_absolut',
  'bulk_absolut_zero',
  'absolut_zero_intent',
  'zero_intent_upstag',
  'intent_upstag_simpli',
  'upstag_simpli_goal',
  'simpli_goal_maxim',
  'goal_maxim_cooki',
  'maxim_cooki_product',
  'cooki_product_say',
  'product_say_even',
  'say_even_purpos',
  'even_purpos_thought',
  'purpos_thought_made',
  'thought_made_look',
  'made_look_circl',
  'look_circl_embarrass',
  'circl_embarrass_actual',
  'embarrass_actual_call',
  'actual_call_asshol',
  'call_asshol_never',
  'asshol_never_call',
  'never_call_asshol',
  'call_asshol_year',
  'asshol_year_marriag',
  'year_marriag_cant',
  'marriag_cant_help',
  'cant_help_think',
  'help_think_aita'],
 ['husband',
  'jack',
  'marri',
  'later',
  'life',
  '–',
  'second',
  'marriag',
  'us',
  'children',
  'biolog',
  'children',
  'still',
  'close',
  'former',
  'step-son',
  'thoma',
  'help',
  'rais',
  'well',
  'financi',
  '–',
  'jack',
  'jack',
  'busi',
  'front',
  'intend',
  'busi',
  'left',
  'children',
  'sign',
  'prenup',
  'wed',
  'basic',
  'said',
  'get',
  'keep',
  'brought',
  'marriag',
  'kept',
  'financ',
  'separ',
  'though',
  'contribut',
  'joint',
  'account',
  'household',
  'expens',
  '–',
  'split',
  'time',
  '–',
  'jack',
  'left',
  'everyth',
  'children',
  'left',
  'mine',
  'thoma',
  'awar',
  'done',
  'fine',
  'jack',
  'busi',
  'went',
  'year',
  'ago',
  'desper',
  'keep',
  'busi',
  'go',
  'pour',
  'save',
  'busi',
  'grandfath',
  'father',
  'determin',
  'abl',
  'hand',
  'children',
  'end',
  'lose',
  'almost',
  'everyth',
  'complet',
  'devast',
  'standard',
  'live',
  'wise',
  'much',
  'chang',
  'except',
  'pay',
  '%',
  'household',
  'expens',
  'love',
  'fine',
  'health',
  'scare',
  'month',
  'ago',
  'realiz',
  'die',
  'jack',
  'would',
  'left',
  'noth',
  'give',
  'everyth',
  'thoma',
  'told',
  'jack',
  'plan',
  'chang',
  'plan',
  'put',
  'third',
  'asset',
  'trust',
  'thomass',
  'children',
  'current',
  'call',
  'nana',
  'third',
  'directli',
  'thoma',
  'third',
  'trust',
  'jack',
  'would',
  'set',
  'jack',
  'would',
  'receiv',
  'gener',
  'monthli',
  'check',
  'die',
  'asset',
  'trust',
  'would',
  'go',
  'thoma',
  'way',
  'want',
  'jack',
  'taken',
  'care',
  'aliv',
  'want',
  'go',
  'thoma',
  '–',
  'jack',
  'kid',
  'jack',
  'furiou',
  'children',
  'go',
  'receiv',
  'anyth',
  'kept',
  'point',
  'step-children',
  'one',
  'former',
  'one',
  'kid',
  'get',
  'noth',
  'thoma',
  'everyth',
  'say',
  'time',
  'got',
  'togeth',
  'jack',
  'children',
  'grown',
  'one',
  'alreadi',
  'child',
  'anoth',
  'marri',
  'occasion',
  'holiday',
  'never',
  'live',
  'jack',
  'kid',
  'mine',
  'biolog',
  '–',
  'thoma',
  'son',
  'everi',
  'way',
  'count',
  'get',
  'along',
  'jack',
  'kid',
  'close',
  'jack',
  'threaten',
  'leav',
  'keep',
  'say',
  'care',
  'kid',
  'mean',
  'care',
  'ive',
  'told',
  'nonsens',
  'respond',
  'well',
  'ultimatum',
  'plan',
  'leav',
  'asset',
  'separ',
  'ever',
  'marri',
  'money',
  'suddenli',
  'want',
  'leav',
  'money',
  'kid',
  'aita',
  'want',
  'husband_jack',
  'jack_marri',
  'marri_later',
  'later_life',
  'life_–',
  '–_second',
  'second_marriag',
  'marriag_us',
  'us_children',
  'children_biolog',
  'biolog_children',
  'children_still',
  'still_close',
  'close_former',
  'former_step-son',
  'step-son_thoma',
  'thoma_help',
  'help_rais',
  'rais_well',
  'well_financi',
  'financi_–',
  '–_jack',
  'jack_jack',
  'jack_busi',
  'busi_front',
  'front_intend',
  'intend_busi',
  'busi_left',
  'left_children',
  'children_sign',
  'sign_prenup',
  'prenup_wed',
  'wed_basic',
  'basic_said',
  'said_get',
  'get_keep',
  'keep_brought',
  'brought_marriag',
  'marriag_kept',
  'kept_financ',
  'financ_separ',
  'separ_though',
  'though_contribut',
  'contribut_joint',
  'joint_account',
  'account_household',
  'household_expens',
  'expens_–',
  '–_split',
  'split_time',
  'time_–',
  '–_jack',
  'jack_left',
  'left_everyth',
  'everyth_children',
  'children_left',
  'left_mine',
  'mine_thoma',
  'thoma_awar',
  'awar_done',
  'done_fine',
  'fine_jack',
  'jack_busi',
  'busi_went',
  'went_year',
  'year_ago',
  'ago_desper',
  'desper_keep',
  'keep_busi',
  'busi_go',
  'go_pour',
  'pour_save',
  'save_busi',
  'busi_grandfath',
  'grandfath_father',
  'father_determin',
  'determin_abl',
  'abl_hand',
  'hand_children',
  'children_end',
  'end_lose',
  'lose_almost',
  'almost_everyth',
  'everyth_complet',
  'complet_devast',
  'devast_standard',
  'standard_live',
  'live_wise',
  'wise_much',
  'much_chang',
  'chang_except',
  'except_pay',
  'pay_%',
  '%_household',
  'household_expens',
  'expens_love',
  'love_fine',
  'fine_health',
  'health_scare',
  'scare_month',
  'month_ago',
  'ago_realiz',
  'realiz_die',
  'die_jack',
  'jack_would',
  'would_left',
  'left_noth',
  'noth_give',
  'give_everyth',
  'everyth_thoma',
  'thoma_told',
  'told_jack',
  'jack_plan',
  'plan_chang',
  'chang_plan',
  'plan_put',
  'put_third',
  'third_asset',
  'asset_trust',
  'trust_thomass',
  'thomass_children',
  'children_current',
  'current_call',
  'call_nana',
  'nana_third',
  'third_directli',
  'directli_thoma',
  'thoma_third',
  'third_trust',
  'trust_jack',
  'jack_would',
  'would_set',
  'set_jack',
  'jack_would',
  'would_receiv',
  'receiv_gener',
  'gener_monthli',
  'monthli_check',
  'check_die',
  'die_asset',
  'asset_trust',
  'trust_would',
  'would_go',
  'go_thoma',
  'thoma_way',
  'way_want',
  'want_jack',
  'jack_taken',
  'taken_care',
  'care_aliv',
  'aliv_want',
  'want_go',
  'go_thoma',
  'thoma_–',
  '–_jack',
  'jack_kid',
  'kid_jack',
  'jack_furiou',
  'furiou_children',
  'children_go',
  'go_receiv',
  'receiv_anyth',
  'anyth_kept',
  'kept_point',
  'point_step-children',
  'step-children_one',
  'one_former',
  'former_one',
  'one_kid',
  'kid_get',
  'get_noth',
  'noth_thoma',
  'thoma_everyth',
  'everyth_say',
  'say_time',
  'time_got',
  'got_togeth',
  'togeth_jack',
  'jack_children',
  'children_grown',
  'grown_one',
  'one_alreadi',
  'alreadi_child',
  'child_anoth',
  'anoth_marri',
  'marri_occasion',
  'occasion_holiday',
  'holiday_never',
  'never_live',
  'live_jack',
  'jack_kid',
  'kid_mine',
  'mine_biolog',
  'biolog_–',
  '–_thoma',
  'thoma_son',
  'son_everi',
  'everi_way',
  'way_count',
  'count_get',
  'get_along',
  'along_jack',
  'jack_kid',
  'kid_close',
  'close_jack',
  'jack_threaten',
  'threaten_leav',
  'leav_keep',
  'keep_say',
  'say_care',
  'care_kid',
  'kid_mean',
  'mean_care',
  'care_ive',
  'ive_told',
  'told_nonsens',
  'nonsens_respond',
  'respond_well',
  'well_ultimatum',
  'ultimatum_plan',
  'plan_leav',
  'leav_asset',
  'asset_separ',
  'separ_ever',
  'ever_marri',
  'marri_money',
  'money_suddenli',
  'suddenli_want',
  'want_leav',
  'leav_money',
  'money_kid',
  'kid_aita',
  'aita_want',
  'husband_jack_marri',
  'jack_marri_later',
  'marri_later_life',
  'later_life_–',
  'life_–_second',
  '–_second_marriag',
  'second_marriag_us',
  'marriag_us_children',
  'us_children_biolog',
  'children_biolog_children',
  'biolog_children_still',
  'children_still_close',
  'still_close_former',
  'close_former_step-son',
  'former_step-son_thoma',
  'step-son_thoma_help',
  'thoma_help_rais',
  'help_rais_well',
  'rais_well_financi',
  'well_financi_–',
  'financi_–_jack',
  '–_jack_jack',
  'jack_jack_busi',
  'jack_busi_front',
  'busi_front_intend',
  'front_intend_busi',
  'intend_busi_left',
  'busi_left_children',
  'left_children_sign',
  'children_sign_prenup',
  'sign_prenup_wed',
  'prenup_wed_basic',
  'wed_basic_said',
  'basic_said_get',
  'said_get_keep',
  'get_keep_brought',
  'keep_brought_marriag',
  'brought_marriag_kept',
  'marriag_kept_financ',
  'kept_financ_separ',
  'financ_separ_though',
  'separ_though_contribut',
  'though_contribut_joint',
  'contribut_joint_account',
  'joint_account_household',
  'account_household_expens',
  'household_expens_–',
  'expens_–_split',
  '–_split_time',
  'split_time_–',
  'time_–_jack',
  '–_jack_left',
  'jack_left_everyth',
  'left_everyth_children',
  'everyth_children_left',
  'children_left_mine',
  'left_mine_thoma',
  'mine_thoma_awar',
  'thoma_awar_done',
  'awar_done_fine',
  'done_fine_jack',
  'fine_jack_busi',
  'jack_busi_went',
  'busi_went_year',
  'went_year_ago',
  'year_ago_desper',
  'ago_desper_keep',
  'desper_keep_busi',
  'keep_busi_go',
  'busi_go_pour',
  'go_pour_save',
  'pour_save_busi',
  'save_busi_grandfath',
  'busi_grandfath_father',
  'grandfath_father_determin',
  'father_determin_abl',
  'determin_abl_hand',
  'abl_hand_children',
  'hand_children_end',
  'children_end_lose',
  'end_lose_almost',
  'lose_almost_everyth',
  'almost_everyth_complet',
  'everyth_complet_devast',
  'complet_devast_standard',
  'devast_standard_live',
  'standard_live_wise',
  'live_wise_much',
  'wise_much_chang',
  'much_chang_except',
  'chang_except_pay',
  'except_pay_%',
  'pay_%_household',
  '%_household_expens',
  'household_expens_love',
  'expens_love_fine',
  'love_fine_health',
  'fine_health_scare',
  'health_scare_month',
  'scare_month_ago',
  'month_ago_realiz',
  'ago_realiz_die',
  'realiz_die_jack',
  'die_jack_would',
  'jack_would_left',
  'would_left_noth',
  'left_noth_give',
  'noth_give_everyth',
  'give_everyth_thoma',
  'everyth_thoma_told',
  'thoma_told_jack',
  'told_jack_plan',
  'jack_plan_chang',
  'plan_chang_plan',
  'chang_plan_put',
  'plan_put_third',
  'put_third_asset',
  'third_asset_trust',
  'asset_trust_thomass',
  'trust_thomass_children',
  'thomass_children_current',
  'children_current_call',
  'current_call_nana',
  'call_nana_third',
  'nana_third_directli',
  'third_directli_thoma',
  'directli_thoma_third',
  'thoma_third_trust',
  'third_trust_jack',
  'trust_jack_would',
  'jack_would_set',
  'would_set_jack',
  'set_jack_would',
  'jack_would_receiv',
  'would_receiv_gener',
  'receiv_gener_monthli',
  'gener_monthli_check',
  'monthli_check_die',
  'check_die_asset',
  'die_asset_trust',
  'asset_trust_would',
  'trust_would_go',
  'would_go_thoma',
  'go_thoma_way',
  'thoma_way_want',
  'way_want_jack',
  'want_jack_taken',
  'jack_taken_care',
  'taken_care_aliv',
  'care_aliv_want',
  'aliv_want_go',
  'want_go_thoma',
  'go_thoma_–',
  'thoma_–_jack',
  '–_jack_kid',
  'jack_kid_jack',
  'kid_jack_furiou',
  'jack_furiou_children',
  'furiou_children_go',
  'children_go_receiv',
  'go_receiv_anyth',
  'receiv_anyth_kept',
  'anyth_kept_point',
  'kept_point_step-children',
  'point_step-children_one',
  'step-children_one_former',
  'one_former_one',
  'former_one_kid',
  'one_kid_get',
  'kid_get_noth',
  'get_noth_thoma',
  'noth_thoma_everyth',
  'thoma_everyth_say',
  'everyth_say_time',
  'say_time_got',
  'time_got_togeth',
  'got_togeth_jack',
  'togeth_jack_children',
  'jack_children_grown',
  'children_grown_one',
  'grown_one_alreadi',
  'one_alreadi_child',
  'alreadi_child_anoth',
  'child_anoth_marri',
  'anoth_marri_occasion',
  'marri_occasion_holiday',
  'occasion_holiday_never',
  'holiday_never_live',
  'never_live_jack',
  'live_jack_kid',
  'jack_kid_mine',
  'kid_mine_biolog',
  'mine_biolog_–',
  'biolog_–_thoma',
  '–_thoma_son',
  'thoma_son_everi',
  'son_everi_way',
  'everi_way_count',
  'way_count_get',
  'count_get_along',
  'get_along_jack',
  'along_jack_kid',
  'jack_kid_close',
  'kid_close_jack',
  'close_jack_threaten',
  'jack_threaten_leav',
  'threaten_leav_keep',
  'leav_keep_say',
  'keep_say_care',
  'say_care_kid',
  'care_kid_mean',
  'kid_mean_care',
  'mean_care_ive',
  'care_ive_told',
  'ive_told_nonsens',
  'told_nonsens_respond',
  'nonsens_respond_well',
  'respond_well_ultimatum',
  'well_ultimatum_plan',
  'ultimatum_plan_leav',
  'plan_leav_asset',
  'leav_asset_separ',
  'asset_separ_ever',
  'separ_ever_marri',
  'ever_marri_money',
  'marri_money_suddenli',
  'money_suddenli_want',
  'suddenli_want_leav',
  'want_leav_money',
  'leav_money_kid',
  'money_kid_aita',
  'kid_aita_want'],
 ['sorri',
  'format',
  'suck',
  'mobil',
  'type',
  'fiancéef',
  'never',
  'gotten',
  'along',
  'sister',
  'fiancé',
  'never',
  'like',
  'close',
  'sister',
  'caus',
  'argument',
  'propos',
  'fiancé',
  'sarah',
  'month',
  'ago',
  'thing',
  'go',
  'smoothli',
  'fact',
  'would',
  'say',
  'relationship',
  'never',
  'better',
  'day',
  'ago',
  'sarah',
  'list',
  'peopl',
  'want',
  'bridesmaid',
  'surprisingli',
  'sister',
  'one',
  'said',
  'plan',
  'ask',
  'month',
  'wed',
  'sarah',
  'ask',
  'knew',
  'want',
  'groomsmen',
  'list',
  'coupl',
  'friend',
  'sarah',
  'knew',
  'keegan',
  'joe',
  'sammi',
  'etc',
  'said',
  'want',
  'sister',
  'one',
  'groomsmen',
  'made',
  'sarah',
  'upset',
  'said',
  'tradit',
  'woman',
  'groomsman',
  'would',
  'embarrass',
  'explain',
  'sister',
  'one',
  'import',
  'peopl',
  'life',
  'go',
  'apart',
  'wed',
  'made',
  'sarah',
  'even',
  'upset',
  'accus',
  'tri',
  'ruin',
  'wed',
  'day',
  'lock',
  'bathroom',
  'day',
  'sinc',
  'spoken',
  'mani',
  'famili',
  'member',
  'reach',
  'ask',
  'includ',
  'sister',
  'wed',
  'sarah',
  'import',
  'woman',
  'life',
  'sister',
  'mil',
  'even',
  'call',
  'tell',
  'make',
  'sarah',
  'depress',
  'horribl',
  'person',
  'futur',
  'wife',
  'sister',
  'heard',
  'told',
  'okay',
  'invit',
  'stood',
  'ground',
  'told',
  'sister',
  'would',
  'includ',
  'matter',
  'aita',
  'edit',
  'sarah',
  'dislik',
  'stem',
  'walk',
  'sister',
  'cuddl',
  'sister',
  'head',
  'shoulder',
  'arm',
  'wrap',
  'around',
  'made',
  'sarah',
  'upset',
  'nd',
  'edit',
  'sister',
  'aromant',
  'told',
  'first',
  'came',
  'would',
  'like',
  'never',
  'get',
  'marri',
  'made',
  'sad',
  'told',
  'could',
  'apart',
  'wed',
  'even',
  'thing',
  'never',
  'forget',
  'look',
  'joy',
  'sister',
  'face',
  'back',
  'wonder',
  'rd',
  'edit',
  'plan',
  'call',
  'engag',
  'sarah',
  'get',
  'home',
  'work',
  'sister',
  'import',
  'miser',
  'marriag',
  'home',
  'around',
  'est',
  'lookout',
  'updat',
  'around',
  'th',
  'final',
  'edit',
  'hello',
  'reddit',
  'gon',
  'na',
  'littl',
  'long',
  'patient',
  'got',
  'home',
  'work',
  'told',
  'sarah',
  'need',
  'talk',
  'agre',
  'sat',
  'live',
  'room',
  'start',
  'ask',
  'problem',
  'sister',
  'groomsman',
  'also',
  'mani',
  'suggest',
  'sad',
  'trauma',
  'relat',
  'sarah',
  'told',
  'went',
  'say',
  'sister',
  'groomsman',
  'untradit',
  'said',
  'men',
  'groomsmen',
  'woman',
  'bridesmaid',
  'sarah',
  'also',
  'said',
  'uncomfort',
  'close',
  'sister',
  'ask',
  'elabor',
  'sarah',
  'impli',
  'sibl',
  'relationship',
  'said',
  'cuddl',
  'sibl',
  'someth',
  'never',
  'seen',
  'seem',
  'like',
  'someth',
  'normal',
  'sibl',
  'assur',
  'sarah',
  'noth',
  'like',
  'happen',
  'seem',
  'like',
  'want',
  'accept',
  'let',
  'argu',
  'gave',
  'sarah',
  'ultimatum',
  'could',
  'go',
  'coupl',
  'therapi',
  'could',
  'tri',
  'repair',
  'relationship',
  'sister',
  'tell',
  'famili',
  'stop',
  'guilt',
  'go',
  'call',
  'engag',
  'sarah',
  'blew',
  'said',
  'go',
  'stay',
  'mother',
  'famili',
  'law',
  'complet',
  'piss',
  'send',
  'hate',
  'messag',
  'facebook',
  'lol',
  'guess',
  'like',
  'end',
  'sarah',
  'wrap',
  'thing',
  'good',
  'note',
  'sister',
  'plan',
  'move',
  'mental',
  'health',
  'drain',
  'decid',
  'move',
  'togeth',
  'thank',
  'everyon',
  'stick',
  'appreci',
  'kind',
  'messag',
  'end',
  'show',
  'sister',
  'delight',
  'sorri_format',
  'format_suck',
  'suck_mobil',
  'mobil_type',
  'type_fiancéef',
  'fiancéef_never',
  'never_gotten',
  'gotten_along',
  'along_sister',
  'sister_fiancé',
  'fiancé_never',
  'never_like',
  'like_close',
  'close_sister',
  'sister_caus',
  'caus_argument',
  'argument_propos',
  'propos_fiancé',
  'fiancé_sarah',
  'sarah_month',
  'month_ago',
  'ago_thing',
  'thing_go',
  'go_smoothli',
  'smoothli_fact',
  'fact_would',
  'would_say',
  'say_relationship',
  'relationship_never',
  'never_better',
  'better_day',
  'day_ago',
  'ago_sarah',
  'sarah_list',
  'list_peopl',
  'peopl_want',
  'want_bridesmaid',
  'bridesmaid_surprisingli',
  'surprisingli_sister',
  'sister_one',
  'one_said',
  'said_plan',
  'plan_ask',
  'ask_month',
  'month_wed',
  'wed_sarah',
  'sarah_ask',
  'ask_knew',
  'knew_want',
  'want_groomsmen',
  'groomsmen_list',
  'list_coupl',
  'coupl_friend',
  'friend_sarah',
  'sarah_knew',
  'knew_keegan',
  'keegan_joe',
  'joe_sammi',
  'sammi_etc',
  'etc_said',
  'said_want',
  'want_sister',
  'sister_one',
  'one_groomsmen',
  'groomsmen_made',
  'made_sarah',
  'sarah_upset',
  'upset_said',
  'said_tradit',
  'tradit_woman',
  'woman_groomsman',
  'groomsman_would',
  'would_embarrass',
  'embarrass_explain',
  'explain_sister',
  'sister_one',
  'one_import',
  'import_peopl',
  'peopl_life',
  'life_go',
  'go_apart',
  'apart_wed',
  'wed_made',
  'made_sarah',
  'sarah_even',
  'even_upset',
  'upset_accus',
  'accus_tri',
  'tri_ruin',
  'ruin_wed',
  'wed_day',
  'day_lock',
  'lock_bathroom',
  'bathroom_day',
  'day_sinc',
  'sinc_spoken',
  'spoken_mani',
  'mani_famili',
  'famili_member',
  'member_reach',
  'reach_ask',
  'ask_includ',
  'includ_sister',
  'sister_wed',
  'wed_sarah',
  'sarah_import',
  'import_woman',
  'woman_life',
  'life_sister',
  'sister_mil',
  'mil_even',
  'even_call',
  'call_tell',
  'tell_make',
  'make_sarah',
  'sarah_depress',
  'depress_horribl',
  'horribl_person',
  'person_futur',
  'futur_wife',
  'wife_sister',
  'sister_heard',
  'heard_told',
  'told_okay',
  'okay_invit',
  'invit_stood',
  'stood_ground',
  'ground_told',
  'told_sister',
  'sister_would',
  'would_includ',
  'includ_matter',
  'matter_aita',
  'aita_edit',
  'edit_sarah',
  'sarah_dislik',
  'dislik_stem',
  'stem_walk',
  'walk_sister',
  'sister_cuddl',
  'cuddl_sister',
  'sister_head',
  'head_shoulder',
  'shoulder_arm',
  'arm_wrap',
  'wrap_around',
  'around_made',
  'made_sarah',
  'sarah_upset',
  'upset_nd',
  'nd_edit',
  'edit_sister',
  'sister_aromant',
  'aromant_told',
  'told_first',
  'first_came',
  'came_would',
  'would_like',
  'like_never',
  'never_get',
  'get_marri',
  'marri_made',
  'made_sad',
  'sad_told',
  'told_could',
  'could_apart',
  'apart_wed',
  'wed_even',
  'even_thing',
  'thing_never',
  'never_forget',
  'forget_look',
  'look_joy',
  'joy_sister',
  'sister_face',
  'face_back',
  'back_wonder',
  'wonder_rd',
  'rd_edit',
  'edit_plan',
  'plan_call',
  'call_engag',
  'engag_sarah',
  'sarah_get',
  'get_home',
  'home_work',
  'work_sister',
  'sister_import',
  'import_miser',
  'miser_marriag',
  'marriag_home',
  'home_around',
  'around_est',
  'est_lookout',
  'lookout_updat',
  'updat_around',
  'around_th',
  'th_final',
  'final_edit',
  'edit_hello',
  'hello_reddit',
  'reddit_gon',
  'gon_na',
  'na_littl',
  'littl_long',
  'long_patient',
  'patient_got',
  'got_home',
  'home_work',
  'work_told',
  'told_sarah',
  'sarah_need',
  'need_talk',
  'talk_agre',
  'agre_sat',
  'sat_live',
  'live_room',
  'room_start',
  'start_ask',
  'ask_problem',
  'problem_sister',
  'sister_groomsman',
  'groomsman_also',
  'also_mani',
  'mani_suggest',
  'suggest_sad',
  'sad_trauma',
  'trauma_relat',
  'relat_sarah',
  'sarah_told',
  'told_went',
  'went_say',
  'say_sister',
  'sister_groomsman',
  'groomsman_untradit',
  'untradit_said',
  'said_men',
  'men_groomsmen',
  'groomsmen_woman',
  'woman_bridesmaid',
  'bridesmaid_sarah',
  'sarah_also',
  'also_said',
  'said_uncomfort',
  'uncomfort_close',
  'close_sister',
  'sister_ask',
  'ask_elabor',
  'elabor_sarah',
  'sarah_impli',
  'impli_sibl',
  'sibl_relationship',
  'relationship_said',
  'said_cuddl',
  'cuddl_sibl',
  'sibl_someth',
  'someth_never',
  'never_seen',
  'seen_seem',
  'seem_like',
  'like_someth',
  'someth_normal',
  'normal_sibl',
  'sibl_assur',
  'assur_sarah',
  'sarah_noth',
  'noth_like',
  'like_happen',
  'happen_seem',
  'seem_like',
  'like_want',
  'want_accept',
  'accept_let',
  'let_argu',
  'argu_gave',
  'gave_sarah',
  'sarah_ultimatum',
  'ultimatum_could',
  'could_go',
  'go_coupl',
  'coupl_therapi',
  'therapi_could',
  'could_tri',
  'tri_repair',
  'repair_relationship',
  'relationship_sister',
  'sister_tell',
  'tell_famili',
  'famili_stop',
  'stop_guilt',
  'guilt_go',
  'go_call',
  'call_engag',
  'engag_sarah',
  'sarah_blew',
  'blew_said',
  'said_go',
  'go_stay',
  'stay_mother',
  'mother_famili',
  'famili_law',
  'law_complet',
  'complet_piss',
  'piss_send',
  'send_hate',
  'hate_messag',
  'messag_facebook',
  'facebook_lol',
  'lol_guess',
  'guess_like',
  'like_end',
  'end_sarah',
  'sarah_wrap',
  'wrap_thing',
  'thing_good',
  'good_note',
  'note_sister',
  'sister_plan',
  'plan_move',
  'move_mental',
  'mental_health',
  'health_drain',
  'drain_decid',
  'decid_move',
  'move_togeth',
  'togeth_thank',
  'thank_everyon',
  'everyon_stick',
  'stick_appreci',
  'appreci_kind',
  'kind_messag',
  'messag_end',
  'end_show',
  'show_sister',
  'sister_delight',
  'sorri_format_suck',
  'format_suck_mobil',
  'suck_mobil_type',
  'mobil_type_fiancéef',
  'type_fiancéef_never',
  'fiancéef_never_gotten',
  'never_gotten_along',
  'gotten_along_sister',
  'along_sister_fiancé',
  'sister_fiancé_never',
  'fiancé_never_like',
  'never_like_close',
  'like_close_sister',
  'close_sister_caus',
  'sister_caus_argument',
  'caus_argument_propos',
  'argument_propos_fiancé',
  'propos_fiancé_sarah',
  'fiancé_sarah_month',
  'sarah_month_ago',
  'month_ago_thing',
  'ago_thing_go',
  'thing_go_smoothli',
  'go_smoothli_fact',
  'smoothli_fact_would',
  'fact_would_say',
  'would_say_relationship',
  'say_relationship_never',
  'relationship_never_better',
  'never_better_day',
  'better_day_ago',
  'day_ago_sarah',
  'ago_sarah_list',
  'sarah_list_peopl',
  'list_peopl_want',
  'peopl_want_bridesmaid',
  'want_bridesmaid_surprisingli',
  'bridesmaid_surprisingli_sister',
  'surprisingli_sister_one',
  'sister_one_said',
  'one_said_plan',
  'said_plan_ask',
  'plan_ask_month',
  'ask_month_wed',
  'month_wed_sarah',
  'wed_sarah_ask',
  'sarah_ask_knew',
  'ask_knew_want',
  'knew_want_groomsmen',
  'want_groomsmen_list',
  'groomsmen_list_coupl',
  'list_coupl_friend',
  'coupl_friend_sarah',
  'friend_sarah_knew',
  'sarah_knew_keegan',
  'knew_keegan_joe',
  'keegan_joe_sammi',
  'joe_sammi_etc',
  'sammi_etc_said',
  'etc_said_want',
  'said_want_sister',
  'want_sister_one',
  'sister_one_groomsmen',
  'one_groomsmen_made',
  'groomsmen_made_sarah',
  'made_sarah_upset',
  'sarah_upset_said',
  'upset_said_tradit',
  'said_tradit_woman',
  'tradit_woman_groomsman',
  'woman_groomsman_would',
  'groomsman_would_embarrass',
  'would_embarrass_explain',
  'embarrass_explain_sister',
  'explain_sister_one',
  'sister_one_import',
  'one_import_peopl',
  'import_peopl_life',
  'peopl_life_go',
  'life_go_apart',
  'go_apart_wed',
  'apart_wed_made',
  'wed_made_sarah',
  'made_sarah_even',
  'sarah_even_upset',
  'even_upset_accus',
  'upset_accus_tri',
  'accus_tri_ruin',
  'tri_ruin_wed',
  'ruin_wed_day',
  'wed_day_lock',
  'day_lock_bathroom',
  'lock_bathroom_day',
  'bathroom_day_sinc',
  'day_sinc_spoken',
  'sinc_spoken_mani',
  'spoken_mani_famili',
  'mani_famili_member',
  'famili_member_reach',
  'member_reach_ask',
  'reach_ask_includ',
  'ask_includ_sister',
  'includ_sister_wed',
  'sister_wed_sarah',
  'wed_sarah_import',
  'sarah_import_woman',
  'import_woman_life',
  'woman_life_sister',
  'life_sister_mil',
  'sister_mil_even',
  'mil_even_call',
  'even_call_tell',
  'call_tell_make',
  'tell_make_sarah',
  'make_sarah_depress',
  'sarah_depress_horribl',
  'depress_horribl_person',
  'horribl_person_futur',
  'person_futur_wife',
  'futur_wife_sister',
  'wife_sister_heard',
  'sister_heard_told',
  'heard_told_okay',
  'told_okay_invit',
  'okay_invit_stood',
  'invit_stood_ground',
  'stood_ground_told',
  'ground_told_sister',
  'told_sister_would',
  'sister_would_includ',
  'would_includ_matter',
  'includ_matter_aita',
  'matter_aita_edit',
  'aita_edit_sarah',
  'edit_sarah_dislik',
  'sarah_dislik_stem',
  'dislik_stem_walk',
  'stem_walk_sister',
  'walk_sister_cuddl',
  'sister_cuddl_sister',
  'cuddl_sister_head',
  'sister_head_shoulder',
  'head_shoulder_arm',
  'shoulder_arm_wrap',
  'arm_wrap_around',
  'wrap_around_made',
  'around_made_sarah',
  'made_sarah_upset',
  'sarah_upset_nd',
  'upset_nd_edit',
  'nd_edit_sister',
  'edit_sister_aromant',
  'sister_aromant_told',
  'aromant_told_first',
  'told_first_came',
  'first_came_would',
  'came_would_like',
  'would_like_never',
  'like_never_get',
  'never_get_marri',
  'get_marri_made',
  'marri_made_sad',
  'made_sad_told',
  'sad_told_could',
  'told_could_apart',
  'could_apart_wed',
  'apart_wed_even',
  'wed_even_thing',
  'even_thing_never',
  'thing_never_forget',
  'never_forget_look',
  'forget_look_joy',
  'look_joy_sister',
  'joy_sister_face',
  'sister_face_back',
  'face_back_wonder',
  'back_wonder_rd',
  'wonder_rd_edit',
  'rd_edit_plan',
  'edit_plan_call',
  'plan_call_engag',
  'call_engag_sarah',
  'engag_sarah_get',
  'sarah_get_home',
  'get_home_work',
  'home_work_sister',
  'work_sister_import',
  'sister_import_miser',
  'import_miser_marriag',
  'miser_marriag_home',
  'marriag_home_around',
  'home_around_est',
  'around_est_lookout',
  'est_lookout_updat',
  'lookout_updat_around',
  'updat_around_th',
  'around_th_final',
  'th_final_edit',
  'final_edit_hello',
  'edit_hello_reddit',
  'hello_reddit_gon',
  'reddit_gon_na',
  'gon_na_littl',
  'na_littl_long',
  'littl_long_patient',
  'long_patient_got',
  'patient_got_home',
  'got_home_work',
  'home_work_told',
  'work_told_sarah',
  'told_sarah_need',
  'sarah_need_talk',
  'need_talk_agre',
  'talk_agre_sat',
  'agre_sat_live',
  'sat_live_room',
  'live_room_start',
  'room_start_ask',
  'start_ask_problem',
  'ask_problem_sister',
  'problem_sister_groomsman',
  'sister_groomsman_also',
  'groomsman_also_mani',
  'also_mani_suggest',
  'mani_suggest_sad',
  'suggest_sad_trauma',
  'sad_trauma_relat',
  'trauma_relat_sarah',
  'relat_sarah_told',
  'sarah_told_went',
  'told_went_say',
  'went_say_sister',
  'say_sister_groomsman',
  'sister_groomsman_untradit',
  'groomsman_untradit_said',
  'untradit_said_men',
  'said_men_groomsmen',
  'men_groomsmen_woman',
  'groomsmen_woman_bridesmaid',
  'woman_bridesmaid_sarah',
  'bridesmaid_sarah_also',
  'sarah_also_said',
  'also_said_uncomfort',
  'said_uncomfort_close',
  'uncomfort_close_sister',
  'close_sister_ask',
  'sister_ask_elabor',
  'ask_elabor_sarah',
  'elabor_sarah_impli',
  'sarah_impli_sibl',
  'impli_sibl_relationship',
  'sibl_relationship_said',
  'relationship_said_cuddl',
  'said_cuddl_sibl',
  'cuddl_sibl_someth',
  'sibl_someth_never',
  'someth_never_seen',
  'never_seen_seem',
  'seen_seem_like',
  'seem_like_someth',
  'like_someth_normal',
  'someth_normal_sibl',
  'normal_sibl_assur',
  'sibl_assur_sarah',
  'assur_sarah_noth',
  'sarah_noth_like',
  'noth_like_happen',
  'like_happen_seem',
  'happen_seem_like',
  'seem_like_want',
  'like_want_accept',
  'want_accept_let',
  'accept_let_argu',
  'let_argu_gave',
  'argu_gave_sarah',
  'gave_sarah_ultimatum',
  'sarah_ultimatum_could',
  'ultimatum_could_go',
  'could_go_coupl',
  'go_coupl_therapi',
  'coupl_therapi_could',
  'therapi_could_tri',
  'could_tri_repair',
  'tri_repair_relationship',
  'repair_relationship_sister',
  'relationship_sister_tell',
  'sister_tell_famili',
  'tell_famili_stop',
  'famili_stop_guilt',
  'stop_guilt_go',
  'guilt_go_call',
  'go_call_engag',
  'call_engag_sarah',
  'engag_sarah_blew',
  'sarah_blew_said',
  'blew_said_go',
  'said_go_stay',
  'go_stay_mother',
  'stay_mother_famili',
  'mother_famili_law',
  'famili_law_complet',
  'law_complet_piss',
  'complet_piss_send',
  'piss_send_hate',
  'send_hate_messag',
  'hate_messag_facebook',
  'messag_facebook_lol',
  'facebook_lol_guess',
  'lol_guess_like',
  'guess_like_end',
  'like_end_sarah',
  'end_sarah_wrap',
  'sarah_wrap_thing',
  'wrap_thing_good',
  'thing_good_note',
  'good_note_sister',
  'note_sister_plan',
  'sister_plan_move',
  'plan_move_mental',
  'move_mental_health',
  'mental_health_drain',
  'health_drain_decid',
  'drain_decid_move',
  'decid_move_togeth',
  'move_togeth_thank',
  'togeth_thank_everyon',
  'thank_everyon_stick',
  'everyon_stick_appreci',
  'stick_appreci_kind',
  ...],
 ['live',
  'basement',
  'suit',
  'laundri',
  'room',
  'next',
  'room',
  'share',
  'famili',
  'rent',
  'part',
  'rental',
  'agreement',
  'one',
  'day',
  'week',
  'famili',
  'unlock',
  'door',
  'laundri',
  'room',
  'lead',
  'suit',
  'thu',
  'access',
  'room',
  'day',
  'put',
  'cloth',
  'machin',
  'shut',
  'door',
  'suit',
  'hear',
  'rucku',
  'stair',
  'laundri',
  'room',
  'lead',
  'rest',
  'hous',
  'assum',
  'access',
  'laundri',
  'room',
  'cloth',
  'dri',
  'laundri',
  'room',
  'sudden',
  'hear',
  'yell',
  'wife',
  'next',
  'thing',
  'know',
  'ambul',
  'arriv',
  '&',
  'xb',
  'soon',
  'learn',
  'appar',
  'year',
  'old',
  'open',
  'dryer',
  'climb',
  'dryer',
  'faulti',
  'shut',
  'open',
  'door',
  'yea',
  'kid',
  'tumbl',
  'door',
  'open',
  'machin',
  'shut',
  'door',
  'open',
  '&',
  'xb',
  'last',
  'week',
  'kid',
  'turn',
  'rel',
  'fine',
  'landlord',
  'landladi',
  'want',
  'reimburs',
  'son',
  'ambul',
  'bill',
  'medic',
  'bill',
  'insur',
  'total',
  '$',
  'laundri',
  'kid',
  'climb',
  'realli',
  '&',
  'xb',
  'think',
  'respons',
  'charg',
  'watch',
  'kid',
  'pay',
  'insan',
  'amount',
  'rent',
  'begin',
  'agre',
  'babysit',
  'anyon',
  'addit',
  'laundri',
  'machin',
  'appar',
  'faulti',
  '&',
  'xb',
  '&',
  'xb',
  'insist',
  'sure',
  'went',
  'forum',
  'orient',
  'toward',
  'landlord',
  'see',
  'realli',
  'respons',
  'ask',
  'famili',
  'ever',
  'rais',
  'rent',
  'live',
  'one',
  'year',
  'month',
  'admit',
  'rais',
  'rent',
  'leas',
  'renew',
  'first',
  'year',
  'still',
  'chariti',
  'pay',
  'rent',
  'time',
  'everytim',
  'caus',
  'problem',
  'assum',
  'collect',
  'littl',
  'extra',
  'still',
  'better',
  'risk',
  'tri',
  'find',
  'tenant',
  'troubl',
  'etc',
  'atleast',
  'think',
  'anyway',
  'plan',
  'stay',
  'leas',
  'end',
  'anyway',
  'told',
  'landlord',
  'grate',
  'rais',
  'rent',
  'pay',
  'moral',
  'fair',
  'aita',
  '&',
  'xb',
  'edit',
  'thank',
  'advic',
  'discuss',
  'lawyer',
  'think',
  'tri',
  'pursu',
  'outsid',
  'guilt',
  'trip',
  'think',
  'know',
  'realli',
  'case',
  'clear',
  'thing',
  'ye',
  'laundri',
  'week',
  'singl',
  'person',
  'load',
  'one',
  'day',
  'week',
  'enough',
  'fair',
  'landpeopl',
  'express',
  'let',
  'know',
  'need',
  'extra',
  'day',
  'whatev',
  'laundri',
  'seem',
  'chill',
  'part',
  'idk',
  'ive',
  'never',
  'taken',
  'offer',
  'know',
  'kid',
  'got',
  'tini',
  'like',
  'newborn',
  'door',
  'take',
  'much',
  'effort',
  'open',
  'idk',
  'responsibl',
  'know',
  'ye',
  'realli',
  'major',
  'respons',
  'landlord',
  'forum',
  'go',
  'detail',
  'caus',
  'need',
  'state',
  'verdict',
  'came',
  'poni',
  'fair',
  'ye',
  'commentsdiscuss',
  'stupid',
  'situat',
  'sympathi',
  'toward',
  'major',
  'verdict',
  'echo',
  'chamber',
  'wasa',
  'whether',
  'pay',
  'grate',
  'rais',
  'rent',
  'pay',
  'risk',
  'leechor',
  'nice',
  'deal',
  'tenant',
  'easi',
  'mind',
  'ive',
  'never',
  'caus',
  'troubl',
  'begin',
  'asid',
  'audac',
  'dri',
  'cloth',
  'st',
  'centuri',
  'machin',
  'kid',
  'climb',
  'guess',
  'close',
  'dryer',
  'kid',
  'wth',
  'im',
  'assum',
  'tumbledw',
  'still',
  'run',
  'open',
  'door',
  'troubl',
  'leav',
  'machin',
  'liter',
  'roll',
  'around',
  'insid',
  'question',
  'medic',
  'bill',
  'graduat',
  'student',
  'long',
  'term',
  'exchang',
  'program',
  'canada',
  'ive',
  'never',
  'paid',
  'medic',
  'bill',
  'life',
  'accept',
  'fact',
  'would',
  'expens',
  'live_basement',
  'basement_suit',
  'suit_laundri',
  'laundri_room',
  'room_next',
  'next_room',
  'room_share',
  'share_famili',
  'famili_rent',
  'rent_part',
  'part_rental',
  'rental_agreement',
  'agreement_one',
  'one_day',
  'day_week',
  'week_famili',
  'famili_unlock',
  'unlock_door',
  'door_laundri',
  'laundri_room',
  'room_lead',
  'lead_suit',
  'suit_thu',
  'thu_access',
  'access_room',
  'room_day',
  'day_put',
  'put_cloth',
  'cloth_machin',
  'machin_shut',
  'shut_door',
  'door_suit',
  'suit_hear',
  'hear_rucku',
  'rucku_stair',
  'stair_laundri',
  'laundri_room',
  'room_lead',
  'lead_rest',
  'rest_hous',
  'hous_assum',
  'assum_access',
  'access_laundri',
  'laundri_room',
  'room_cloth',
  'cloth_dri',
  'dri_laundri',
  'laundri_room',
  'room_sudden',
  'sudden_hear',
  'hear_yell',
  'yell_wife',
  'wife_next',
  'next_thing',
  'thing_know',
  'know_ambul',
  'ambul_arriv',
  'arriv_&',
  '&_xb',
  'xb_soon',
  'soon_learn',
  'learn_appar',
  'appar_year',
  'year_old',
  'old_open',
  'open_dryer',
  'dryer_climb',
  'climb_dryer',
  'dryer_faulti',
  'faulti_shut',
  'shut_open',
  'open_door',
  'door_yea',
  'yea_kid',
  'kid_tumbl',
  'tumbl_door',
  'door_open',
  'open_machin',
  'machin_shut',
  'shut_door',
  'door_open',
  'open_&',
  '&_xb',
  'xb_last',
  'last_week',
  'week_kid',
  'kid_turn',
  'turn_rel',
  'rel_fine',
  'fine_landlord',
  'landlord_landladi',
  'landladi_want',
  'want_reimburs',
  'reimburs_son',
  'son_ambul',
  'ambul_bill',
  'bill_medic',
  'medic_bill',
  'bill_insur',
  'insur_total',
  'total_$',
  '$_laundri',
  'laundri_kid',
  'kid_climb',
  'climb_realli',
  'realli_&',
  '&_xb',
  'xb_think',
  'think_respons',
  'respons_charg',
  'charg_watch',
  'watch_kid',
  'kid_pay',
  'pay_insan',
  'insan_amount',
  'amount_rent',
  'rent_begin',
  'begin_agre',
  'agre_babysit',
  'babysit_anyon',
  'anyon_addit',
  'addit_laundri',
  'laundri_machin',
  'machin_appar',
  'appar_faulti',
  'faulti_&',
  '&_xb',
  'xb_&',
  '&_xb',
  'xb_insist',
  'insist_sure',
  'sure_went',
  'went_forum',
  'forum_orient',
  'orient_toward',
  'toward_landlord',
  'landlord_see',
  'see_realli',
  'realli_respons',
  'respons_ask',
  'ask_famili',
  'famili_ever',
  'ever_rais',
  'rais_rent',
  'rent_live',
  'live_one',
  'one_year',
  'year_month',
  'month_admit',
  'admit_rais',
  'rais_rent',
  'rent_leas',
  'leas_renew',
  'renew_first',
  'first_year',
  'year_still',
  'still_chariti',
  'chariti_pay',
  'pay_rent',
  'rent_time',
  'time_everytim',
  'everytim_caus',
  'caus_problem',
  'problem_assum',
  'assum_collect',
  'collect_littl',
  'littl_extra',
  'extra_still',
  'still_better',
  'better_risk',
  'risk_tri',
  'tri_find',
  'find_tenant',
  'tenant_troubl',
  'troubl_etc',
  'etc_atleast',
  'atleast_think',
  'think_anyway',
  'anyway_plan',
  'plan_stay',
  'stay_leas',
  'leas_end',
  'end_anyway',
  'anyway_told',
  'told_landlord',
  'landlord_grate',
  'grate_rais',
  'rais_rent',
  'rent_pay',
  'pay_moral',
  'moral_fair',
  'fair_aita',
  'aita_&',
  '&_xb',
  'xb_edit',
  'edit_thank',
  'thank_advic',
  'advic_discuss',
  'discuss_lawyer',
  'lawyer_think',
  'think_tri',
  'tri_pursu',
  'pursu_outsid',
  'outsid_guilt',
  'guilt_trip',
  'trip_think',
  'think_know',
  'know_realli',
  'realli_case',
  'case_clear',
  'clear_thing',
  'thing_ye',
  'ye_laundri',
  'laundri_week',
  'week_singl',
  'singl_person',
  'person_load',
  'load_one',
  'one_day',
  'day_week',
  'week_enough',
  'enough_fair',
  'fair_landpeopl',
  'landpeopl_express',
  'express_let',
  'let_know',
  'know_need',
  'need_extra',
  'extra_day',
  'day_whatev',
  'whatev_laundri',
  'laundri_seem',
  'seem_chill',
  'chill_part',
  'part_idk',
  'idk_ive',
  'ive_never',
  'never_taken',
  'taken_offer',
  'offer_know',
  'know_kid',
  'kid_got',
  'got_tini',
  'tini_like',
  'like_newborn',
  'newborn_door',
  'door_take',
  'take_much',
  'much_effort',
  'effort_open',
  'open_idk',
  'idk_responsibl',
  'responsibl_know',
  'know_ye',
  'ye_realli',
  'realli_major',
  'major_respons',
  'respons_landlord',
  'landlord_forum',
  'forum_go',
  'go_detail',
  'detail_caus',
  'caus_need',
  'need_state',
  'state_verdict',
  'verdict_came',
  'came_poni',
  'poni_fair',
  'fair_ye',
  'ye_commentsdiscuss',
  'commentsdiscuss_stupid',
  'stupid_situat',
  'situat_sympathi',
  'sympathi_toward',
  'toward_major',
  'major_verdict',
  'verdict_echo',
  'echo_chamber',
  'chamber_wasa',
  'wasa_whether',
  'whether_pay',
  'pay_grate',
  'grate_rais',
  'rais_rent',
  'rent_pay',
  'pay_risk',
  'risk_leechor',
  'leechor_nice',
  'nice_deal',
  'deal_tenant',
  'tenant_easi',
  'easi_mind',
  'mind_ive',
  'ive_never',
  'never_caus',
  'caus_troubl',
  'troubl_begin',
  'begin_asid',
  'asid_audac',
  'audac_dri',
  'dri_cloth',
  'cloth_st',
  'st_centuri',
  'centuri_machin',
  'machin_kid',
  'kid_climb',
  'climb_guess',
  'guess_close',
  'close_dryer',
  'dryer_kid',
  'kid_wth',
  'wth_im',
  'im_assum',
  'assum_tumbledw',
  'tumbledw_still',
  'still_run',
  'run_open',
  'open_door',
  'door_troubl',
  'troubl_leav',
  'leav_machin',
  'machin_liter',
  'liter_roll',
  'roll_around',
  'around_insid',
  'insid_question',
  'question_medic',
  'medic_bill',
  'bill_graduat',
  'graduat_student',
  'student_long',
  'long_term',
  'term_exchang',
  'exchang_program',
  'program_canada',
  'canada_ive',
  'ive_never',
  'never_paid',
  'paid_medic',
  'medic_bill',
  'bill_life',
  'life_accept',
  'accept_fact',
  'fact_would',
  'would_expens',
  'live_basement_suit',
  'basement_suit_laundri',
  'suit_laundri_room',
  'laundri_room_next',
  'room_next_room',
  'next_room_share',
  'room_share_famili',
  'share_famili_rent',
  'famili_rent_part',
  'rent_part_rental',
  'part_rental_agreement',
  'rental_agreement_one',
  'agreement_one_day',
  'one_day_week',
  'day_week_famili',
  'week_famili_unlock',
  'famili_unlock_door',
  'unlock_door_laundri',
  'door_laundri_room',
  'laundri_room_lead',
  'room_lead_suit',
  'lead_suit_thu',
  'suit_thu_access',
  'thu_access_room',
  'access_room_day',
  'room_day_put',
  'day_put_cloth',
  'put_cloth_machin',
  'cloth_machin_shut',
  'machin_shut_door',
  'shut_door_suit',
  'door_suit_hear',
  'suit_hear_rucku',
  'hear_rucku_stair',
  'rucku_stair_laundri',
  'stair_laundri_room',
  'laundri_room_lead',
  'room_lead_rest',
  'lead_rest_hous',
  'rest_hous_assum',
  'hous_assum_access',
  'assum_access_laundri',
  'access_laundri_room',
  'laundri_room_cloth',
  'room_cloth_dri',
  'cloth_dri_laundri',
  'dri_laundri_room',
  'laundri_room_sudden',
  'room_sudden_hear',
  'sudden_hear_yell',
  'hear_yell_wife',
  'yell_wife_next',
  'wife_next_thing',
  'next_thing_know',
  'thing_know_ambul',
  'know_ambul_arriv',
  'ambul_arriv_&',
  'arriv_&_xb',
  '&_xb_soon',
  'xb_soon_learn',
  'soon_learn_appar',
  'learn_appar_year',
  'appar_year_old',
  'year_old_open',
  'old_open_dryer',
  'open_dryer_climb',
  'dryer_climb_dryer',
  'climb_dryer_faulti',
  'dryer_faulti_shut',
  'faulti_shut_open',
  'shut_open_door',
  'open_door_yea',
  'door_yea_kid',
  'yea_kid_tumbl',
  'kid_tumbl_door',
  'tumbl_door_open',
  'door_open_machin',
  'open_machin_shut',
  'machin_shut_door',
  'shut_door_open',
  'door_open_&',
  'open_&_xb',
  '&_xb_last',
  'xb_last_week',
  'last_week_kid',
  'week_kid_turn',
  'kid_turn_rel',
  'turn_rel_fine',
  'rel_fine_landlord',
  'fine_landlord_landladi',
  'landlord_landladi_want',
  'landladi_want_reimburs',
  'want_reimburs_son',
  'reimburs_son_ambul',
  'son_ambul_bill',
  'ambul_bill_medic',
  'bill_medic_bill',
  'medic_bill_insur',
  'bill_insur_total',
  'insur_total_$',
  'total_$_laundri',
  '$_laundri_kid',
  'laundri_kid_climb',
  'kid_climb_realli',
  'climb_realli_&',
  'realli_&_xb',
  '&_xb_think',
  'xb_think_respons',
  'think_respons_charg',
  'respons_charg_watch',
  'charg_watch_kid',
  'watch_kid_pay',
  'kid_pay_insan',
  'pay_insan_amount',
  'insan_amount_rent',
  'amount_rent_begin',
  'rent_begin_agre',
  'begin_agre_babysit',
  'agre_babysit_anyon',
  'babysit_anyon_addit',
  'anyon_addit_laundri',
  'addit_laundri_machin',
  'laundri_machin_appar',
  'machin_appar_faulti',
  'appar_faulti_&',
  'faulti_&_xb',
  '&_xb_&',
  'xb_&_xb',
  '&_xb_insist',
  'xb_insist_sure',
  'insist_sure_went',
  'sure_went_forum',
  'went_forum_orient',
  'forum_orient_toward',
  'orient_toward_landlord',
  'toward_landlord_see',
  'landlord_see_realli',
  'see_realli_respons',
  'realli_respons_ask',
  'respons_ask_famili',
  'ask_famili_ever',
  'famili_ever_rais',
  'ever_rais_rent',
  'rais_rent_live',
  'rent_live_one',
  'live_one_year',
  'one_year_month',
  'year_month_admit',
  'month_admit_rais',
  'admit_rais_rent',
  'rais_rent_leas',
  'rent_leas_renew',
  'leas_renew_first',
  'renew_first_year',
  'first_year_still',
  'year_still_chariti',
  'still_chariti_pay',
  'chariti_pay_rent',
  'pay_rent_time',
  'rent_time_everytim',
  'time_everytim_caus',
  'everytim_caus_problem',
  'caus_problem_assum',
  'problem_assum_collect',
  'assum_collect_littl',
  'collect_littl_extra',
  'littl_extra_still',
  'extra_still_better',
  'still_better_risk',
  'better_risk_tri',
  'risk_tri_find',
  'tri_find_tenant',
  'find_tenant_troubl',
  'tenant_troubl_etc',
  'troubl_etc_atleast',
  'etc_atleast_think',
  'atleast_think_anyway',
  'think_anyway_plan',
  'anyway_plan_stay',
  'plan_stay_leas',
  'stay_leas_end',
  'leas_end_anyway',
  'end_anyway_told',
  'anyway_told_landlord',
  'told_landlord_grate',
  'landlord_grate_rais',
  'grate_rais_rent',
  'rais_rent_pay',
  'rent_pay_moral',
  'pay_moral_fair',
  'moral_fair_aita',
  'fair_aita_&',
  'aita_&_xb',
  '&_xb_edit',
  'xb_edit_thank',
  'edit_thank_advic',
  'thank_advic_discuss',
  'advic_discuss_lawyer',
  'discuss_lawyer_think',
  'lawyer_think_tri',
  'think_tri_pursu',
  'tri_pursu_outsid',
  'pursu_outsid_guilt',
  'outsid_guilt_trip',
  'guilt_trip_think',
  'trip_think_know',
  'think_know_realli',
  'know_realli_case',
  'realli_case_clear',
  'case_clear_thing',
  'clear_thing_ye',
  'thing_ye_laundri',
  'ye_laundri_week',
  'laundri_week_singl',
  'week_singl_person',
  'singl_person_load',
  'person_load_one',
  'load_one_day',
  'one_day_week',
  'day_week_enough',
  'week_enough_fair',
  'enough_fair_landpeopl',
  'fair_landpeopl_express',
  'landpeopl_express_let',
  'express_let_know',
  'let_know_need',
  'know_need_extra',
  'need_extra_day',
  'extra_day_whatev',
  'day_whatev_laundri',
  'whatev_laundri_seem',
  'laundri_seem_chill',
  'seem_chill_part',
  'chill_part_idk',
  'part_idk_ive',
  'idk_ive_never',
  'ive_never_taken',
  'never_taken_offer',
  'taken_offer_know',
  'offer_know_kid',
  'know_kid_got',
  'kid_got_tini',
  'got_tini_like',
  'tini_like_newborn',
  'like_newborn_door',
  'newborn_door_take',
  'door_take_much',
  'take_much_effort',
  'much_effort_open',
  'effort_open_idk',
  'open_idk_responsibl',
  'idk_responsibl_know',
  'responsibl_know_ye',
  'know_ye_realli',
  'ye_realli_major',
  'realli_major_respons',
  'major_respons_landlord',
  'respons_landlord_forum',
  'landlord_forum_go',
  'forum_go_detail',
  'go_detail_caus',
  'detail_caus_need',
  'caus_need_state',
  'need_state_verdict',
  'state_verdict_came',
  'verdict_came_poni',
  'came_poni_fair',
  'poni_fair_ye',
  'fair_ye_commentsdiscuss',
  'ye_commentsdiscuss_stupid',
  'commentsdiscuss_stupid_situat',
  'stupid_situat_sympathi',
  'situat_sympathi_toward',
  'sympathi_toward_major',
  'toward_major_verdict',
  'major_verdict_echo',
  'verdict_echo_chamber',
  'echo_chamber_wasa',
  'chamber_wasa_whether',
  'wasa_whether_pay',
  'whether_pay_grate',
  'pay_grate_rais',
  'grate_rais_rent',
  'rais_rent_pay',
  'rent_pay_risk',
  'pay_risk_leechor',
  'risk_leechor_nice',
  'leechor_nice_deal',
  'nice_deal_tenant',
  'deal_tenant_easi',
  'tenant_easi_mind',
  'easi_mind_ive',
  'mind_ive_never',
  'ive_never_caus',
  'never_caus_troubl',
  'caus_troubl_begin',
  'troubl_begin_asid',
  'begin_asid_audac',
  'asid_audac_dri',
  'audac_dri_cloth',
  'dri_cloth_st',
  'cloth_st_centuri',
  'st_centuri_machin',
  'centuri_machin_kid',
  'machin_kid_climb',
  'kid_climb_guess',
  'climb_guess_close',
  'guess_close_dryer',
  'close_dryer_kid',
  ...],
 ['throw',
  'pretti',
  'big',
  'christma',
  'parti',
  'everi',
  'year',
  'go',
  'decad',
  'year',
  'ago',
  'one',
  'threw',
  'friend',
  'tara',
  'met',
  'former',
  'co-work',
  'toni',
  'hit',
  'date',
  'two',
  'year',
  'later',
  'christma',
  'parti',
  'show',
  'ring',
  'finger',
  'announc',
  'first',
  'time',
  'engag',
  'super',
  'happi',
  'got',
  'marri',
  'spring',
  'get',
  'invit',
  'send',
  'around',
  'parti',
  'invit',
  'year',
  'see',
  'reason',
  'invit',
  'back',
  'think',
  'worthi',
  'make',
  'guest',
  'list',
  'known',
  'year',
  'basic',
  'introduc',
  'liter',
  'announc',
  'engag',
  'home',
  'got',
  'back',
  'today',
  'theyr',
  'upset',
  'us',
  'invit',
  'year',
  'parti',
  'someth',
  'consid',
  'special',
  'think',
  'im',
  'petti',
  'coupl',
  'friend',
  'mention',
  'smaller',
  'wed',
  'feel',
  'like',
  'im',
  'punish',
  'though',
  'probabl',
  'peopl',
  'knew',
  'least',
  'littl',
  'surpris',
  'name',
  'made',
  'cut',
  'us',
  'make',
  'stink',
  'anyth',
  'see',
  'welcom',
  'home',
  'snub',
  'like',
  'partner',
  'think',
  'let',
  'go',
  'invit',
  'back',
  'see',
  'reason',
  'aita',
  'throw_pretti',
  'pretti_big',
  'big_christma',
  'christma_parti',
  'parti_everi',
  'everi_year',
  'year_go',
  'go_decad',
  'decad_year',
  'year_ago',
  'ago_one',
  'one_threw',
  'threw_friend',
  'friend_tara',
  'tara_met',
  'met_former',
  'former_co-work',
  'co-work_toni',
  'toni_hit',
  'hit_date',
  'date_two',
  'two_year',
  'year_later',
  'later_christma',
  'christma_parti',
  'parti_show',
  'show_ring',
  'ring_finger',
  'finger_announc',
  'announc_first',
  'first_time',
  'time_engag',
  'engag_super',
  'super_happi',
  'happi_got',
  'got_marri',
  'marri_spring',
  'spring_get',
  'get_invit',
  'invit_send',
  'send_around',
  'around_parti',
  'parti_invit',
  'invit_year',
  'year_see',
  'see_reason',
  'reason_invit',
  'invit_back',
  'back_think',
  'think_worthi',
  'worthi_make',
  'make_guest',
  'guest_list',
  'list_known',
  'known_year',
  'year_basic',
  'basic_introduc',
  'introduc_liter',
  'liter_announc',
  'announc_engag',
  'engag_home',
  'home_got',
  'got_back',
  'back_today',
  'today_theyr',
  'theyr_upset',
  'upset_us',
  'us_invit',
  'invit_year',
  'year_parti',
  'parti_someth',
  'someth_consid',
  'consid_special',
  'special_think',
  'think_im',
  'im_petti',
  'petti_coupl',
  'coupl_friend',
  'friend_mention',
  'mention_smaller',
  'smaller_wed',
  'wed_feel',
  'feel_like',
  'like_im',
  'im_punish',
  'punish_though',
  'though_probabl',
  'probabl_peopl',
  'peopl_knew',
  'knew_least',
  'least_littl',
  'littl_surpris',
  'surpris_name',
  'name_made',
  'made_cut',
  'cut_us',
  'us_make',
  'make_stink',
  'stink_anyth',
  'anyth_see',
  'see_welcom',
  'welcom_home',
  'home_snub',
  'snub_like',
  'like_partner',
  'partner_think',
  'think_let',
  'let_go',
  'go_invit',
  'invit_back',
  'back_see',
  'see_reason',
  'reason_aita',
  'throw_pretti_big',
  'pretti_big_christma',
  'big_christma_parti',
  'christma_parti_everi',
  'parti_everi_year',
  'everi_year_go',
  'year_go_decad',
  'go_decad_year',
  'decad_year_ago',
  'year_ago_one',
  'ago_one_threw',
  'one_threw_friend',
  'threw_friend_tara',
  'friend_tara_met',
  'tara_met_former',
  'met_former_co-work',
  'former_co-work_toni',
  'co-work_toni_hit',
  'toni_hit_date',
  'hit_date_two',
  'date_two_year',
  'two_year_later',
  'year_later_christma',
  'later_christma_parti',
  'christma_parti_show',
  'parti_show_ring',
  'show_ring_finger',
  'ring_finger_announc',
  'finger_announc_first',
  'announc_first_time',
  'first_time_engag',
  'time_engag_super',
  'engag_super_happi',
  'super_happi_got',
  'happi_got_marri',
  'got_marri_spring',
  'marri_spring_get',
  'spring_get_invit',
  'get_invit_send',
  'invit_send_around',
  'send_around_parti',
  'around_parti_invit',
  'parti_invit_year',
  'invit_year_see',
  'year_see_reason',
  'see_reason_invit',
  'reason_invit_back',
  'invit_back_think',
  'back_think_worthi',
  'think_worthi_make',
  'worthi_make_guest',
  'make_guest_list',
  'guest_list_known',
  'list_known_year',
  'known_year_basic',
  'year_basic_introduc',
  'basic_introduc_liter',
  'introduc_liter_announc',
  'liter_announc_engag',
  'announc_engag_home',
  'engag_home_got',
  'home_got_back',
  'got_back_today',
  'back_today_theyr',
  'today_theyr_upset',
  'theyr_upset_us',
  'upset_us_invit',
  'us_invit_year',
  'invit_year_parti',
  'year_parti_someth',
  'parti_someth_consid',
  'someth_consid_special',
  'consid_special_think',
  'special_think_im',
  'think_im_petti',
  'im_petti_coupl',
  'petti_coupl_friend',
  'coupl_friend_mention',
  'friend_mention_smaller',
  'mention_smaller_wed',
  'smaller_wed_feel',
  'wed_feel_like',
  'feel_like_im',
  'like_im_punish',
  'im_punish_though',
  'punish_though_probabl',
  'though_probabl_peopl',
  'probabl_peopl_knew',
  'peopl_knew_least',
  'knew_least_littl',
  'least_littl_surpris',
  'littl_surpris_name',
  'surpris_name_made',
  'name_made_cut',
  'made_cut_us',
  'cut_us_make',
  'us_make_stink',
  'make_stink_anyth',
  'stink_anyth_see',
  'anyth_see_welcom',
  'see_welcom_home',
  'welcom_home_snub',
  'home_snub_like',
  'snub_like_partner',
  'like_partner_think',
  'partner_think_let',
  'think_let_go',
  'let_go_invit',
  'go_invit_back',
  'invit_back_see',
  'back_see_reason',
  'see_reason_aita'],
 ['friend',
  'nick',
  'wife',
  'jess',
  'babi',
  'im',
  'close',
  'friend',
  'babi',
  'look',
  'like',
  'nick',
  'question',
  'relat',
  'one',
  'nick',
  'friend',
  'bit',
  'mgtow',
  'type',
  'guy',
  'brainwash',
  'nick',
  'want',
  'take',
  'patern',
  'test',
  'nick',
  'ask',
  'advic',
  'bring',
  'topic',
  'jess',
  'shock',
  'thought',
  'relationship',
  'good',
  'trust',
  'babi',
  'look',
  'like',
  'nick',
  'start',
  'ask',
  'nick',
  'question',
  'think',
  'jess',
  'cheat',
  'made',
  'suspici',
  'admit',
  'anyth',
  'need',
  'test',
  'certain',
  'told',
  'nick',
  'bad',
  'idea',
  'could',
  'realli',
  'hurt',
  'jess',
  'extrem',
  'traumat',
  'birth',
  'babi',
  'huge',
  'get',
  'epidur',
  'everyth',
  'rip',
  'think',
  'might',
  'even',
  'postpartum',
  'depress',
  'need',
  'support',
  'love',
  'accus',
  'cheat',
  'kept',
  'say',
  'need',
  'certain',
  'jess',
  'understand',
  'ask',
  'would',
  'feel',
  'jess',
  'ask',
  'patern',
  'test',
  'anna',
  'femal',
  'best',
  'friend',
  'babi',
  'born',
  'last',
  'year',
  'said',
  'would',
  'realli',
  'disappoint',
  'jess',
  'would',
  'make',
  'rethink',
  'entir',
  'relationship',
  'possibl',
  'even',
  'break',
  'differ',
  'jess',
  'spend',
  'money',
  'rais',
  'anna',
  'babi',
  'think',
  'might',
  'nick',
  'mad',
  'support',
  'help',
  'say',
  'im',
  'woman',
  'could',
  'never',
  'understand',
  'father',
  'im',
  'even',
  'tri',
  'understand',
  'it…',
  'partial',
  'true',
  'say',
  'thing',
  'even',
  'tri',
  'understand',
  'mother',
  'baselessli',
  'accus',
  'cheat',
  'traumat',
  'birth',
  'aita',
  'edit',
  'clarif',
  'nick',
  'babi',
  'anna',
  'best',
  'friend',
  'anna',
  'babi',
  'boyfriend',
  'tri',
  'use',
  'exampl',
  'ask',
  'nick',
  'would',
  'feel',
  'jess',
  'ask',
  'patern',
  'test',
  'sure',
  'nick',
  'cheat',
  'anna',
  'father',
  'anna',
  'child',
  'exampl',
  'hope',
  'make',
  'see',
  'hurt',
  'accus',
  'like',
  'friend_nick',
  'nick_wife',
  'wife_jess',
  'jess_babi',
  'babi_im',
  'im_close',
  'close_friend',
  'friend_babi',
  'babi_look',
  'look_like',
  'like_nick',
  'nick_question',
  'question_relat',
  'relat_one',
  'one_nick',
  'nick_friend',
  'friend_bit',
  'bit_mgtow',
  'mgtow_type',
  'type_guy',
  'guy_brainwash',
  'brainwash_nick',
  'nick_want',
  'want_take',
  'take_patern',
  'patern_test',
  'test_nick',
  'nick_ask',
  'ask_advic',
  'advic_bring',
  'bring_topic',
  'topic_jess',
  'jess_shock',
  'shock_thought',
  'thought_relationship',
  'relationship_good',
  'good_trust',
  'trust_babi',
  'babi_look',
  'look_like',
  'like_nick',
  'nick_start',
  'start_ask',
  'ask_nick',
  'nick_question',
  'question_think',
  'think_jess',
  'jess_cheat',
  'cheat_made',
  'made_suspici',
  'suspici_admit',
  'admit_anyth',
  'anyth_need',
  'need_test',
  'test_certain',
  'certain_told',
  'told_nick',
  'nick_bad',
  'bad_idea',
  'idea_could',
  'could_realli',
  'realli_hurt',
  'hurt_jess',
  'jess_extrem',
  'extrem_traumat',
  'traumat_birth',
  'birth_babi',
  'babi_huge',
  'huge_get',
  'get_epidur',
  'epidur_everyth',
  'everyth_rip',
  'rip_think',
  'think_might',
  'might_even',
  'even_postpartum',
  'postpartum_depress',
  'depress_need',
  'need_support',
  'support_love',
  'love_accus',
  'accus_cheat',
  'cheat_kept',
  'kept_say',
  'say_need',
  'need_certain',
  'certain_jess',
  'jess_understand',
  'understand_ask',
  'ask_would',
  'would_feel',
  'feel_jess',
  'jess_ask',
  'ask_patern',
  'patern_test',
  'test_anna',
  'anna_femal',
  'femal_best',
  'best_friend',
  'friend_babi',
  'babi_born',
  'born_last',
  'last_year',
  'year_said',
  'said_would',
  'would_realli',
  'realli_disappoint',
  'disappoint_jess',
  'jess_would',
  'would_make',
  'make_rethink',
  'rethink_entir',
  'entir_relationship',
  'relationship_possibl',
  'possibl_even',
  'even_break',
  'break_differ',
  'differ_jess',
  'jess_spend',
  'spend_money',
  'money_rais',
  'rais_anna',
  'anna_babi',
  'babi_think',
  'think_might',
  'might_nick',
  'nick_mad',
  'mad_support',
  'support_help',
  'help_say',
  'say_im',
  'im_woman',
  'woman_could',
  'could_never',
  'never_understand',
  'understand_father',
  'father_im',
  'im_even',
  'even_tri',
  'tri_understand',
  'understand_it…',
  'it…_partial',
  'partial_true',
  'true_say',
  'say_thing',
  'thing_even',
  'even_tri',
  'tri_understand',
  'understand_mother',
  'mother_baselessli',
  'baselessli_accus',
  'accus_cheat',
  'cheat_traumat',
  'traumat_birth',
  'birth_aita',
  'aita_edit',
  'edit_clarif',
  'clarif_nick',
  'nick_babi',
  'babi_anna',
  'anna_best',
  'best_friend',
  'friend_anna',
  'anna_babi',
  'babi_boyfriend',
  'boyfriend_tri',
  'tri_use',
  'use_exampl',
  'exampl_ask',
  'ask_nick',
  'nick_would',
  'would_feel',
  'feel_jess',
  'jess_ask',
  'ask_patern',
  'patern_test',
  'test_sure',
  'sure_nick',
  'nick_cheat',
  'cheat_anna',
  'anna_father',
  'father_anna',
  'anna_child',
  'child_exampl',
  'exampl_hope',
  'hope_make',
  'make_see',
  'see_hurt',
  'hurt_accus',
  'accus_like',
  'friend_nick_wife',
  'nick_wife_jess',
  'wife_jess_babi',
  'jess_babi_im',
  'babi_im_close',
  'im_close_friend',
  'close_friend_babi',
  'friend_babi_look',
  'babi_look_like',
  'look_like_nick',
  'like_nick_question',
  'nick_question_relat',
  'question_relat_one',
  'relat_one_nick',
  'one_nick_friend',
  'nick_friend_bit',
  'friend_bit_mgtow',
  'bit_mgtow_type',
  'mgtow_type_guy',
  'type_guy_brainwash',
  'guy_brainwash_nick',
  'brainwash_nick_want',
  'nick_want_take',
  'want_take_patern',
  'take_patern_test',
  'patern_test_nick',
  'test_nick_ask',
  'nick_ask_advic',
  'ask_advic_bring',
  'advic_bring_topic',
  'bring_topic_jess',
  'topic_jess_shock',
  'jess_shock_thought',
  'shock_thought_relationship',
  'thought_relationship_good',
  'relationship_good_trust',
  'good_trust_babi',
  'trust_babi_look',
  'babi_look_like',
  'look_like_nick',
  'like_nick_start',
  'nick_start_ask',
  'start_ask_nick',
  'ask_nick_question',
  'nick_question_think',
  'question_think_jess',
  'think_jess_cheat',
  'jess_cheat_made',
  'cheat_made_suspici',
  'made_suspici_admit',
  'suspici_admit_anyth',
  'admit_anyth_need',
  'anyth_need_test',
  'need_test_certain',
  'test_certain_told',
  'certain_told_nick',
  'told_nick_bad',
  'nick_bad_idea',
  'bad_idea_could',
  'idea_could_realli',
  'could_realli_hurt',
  'realli_hurt_jess',
  'hurt_jess_extrem',
  'jess_extrem_traumat',
  'extrem_traumat_birth',
  'traumat_birth_babi',
  'birth_babi_huge',
  'babi_huge_get',
  'huge_get_epidur',
  'get_epidur_everyth',
  'epidur_everyth_rip',
  'everyth_rip_think',
  'rip_think_might',
  'think_might_even',
  'might_even_postpartum',
  'even_postpartum_depress',
  'postpartum_depress_need',
  'depress_need_support',
  'need_support_love',
  'support_love_accus',
  'love_accus_cheat',
  'accus_cheat_kept',
  'cheat_kept_say',
  'kept_say_need',
  'say_need_certain',
  'need_certain_jess',
  'certain_jess_understand',
  'jess_understand_ask',
  'understand_ask_would',
  'ask_would_feel',
  'would_feel_jess',
  'feel_jess_ask',
  'jess_ask_patern',
  'ask_patern_test',
  'patern_test_anna',
  'test_anna_femal',
  'anna_femal_best',
  'femal_best_friend',
  'best_friend_babi',
  'friend_babi_born',
  'babi_born_last',
  'born_last_year',
  'last_year_said',
  'year_said_would',
  'said_would_realli',
  'would_realli_disappoint',
  'realli_disappoint_jess',
  'disappoint_jess_would',
  'jess_would_make',
  'would_make_rethink',
  'make_rethink_entir',
  'rethink_entir_relationship',
  'entir_relationship_possibl',
  'relationship_possibl_even',
  'possibl_even_break',
  'even_break_differ',
  'break_differ_jess',
  'differ_jess_spend',
  'jess_spend_money',
  'spend_money_rais',
  'money_rais_anna',
  'rais_anna_babi',
  'anna_babi_think',
  'babi_think_might',
  'think_might_nick',
  'might_nick_mad',
  'nick_mad_support',
  'mad_support_help',
  'support_help_say',
  'help_say_im',
  'say_im_woman',
  'im_woman_could',
  'woman_could_never',
  'could_never_understand',
  'never_understand_father',
  'understand_father_im',
  'father_im_even',
  'im_even_tri',
  'even_tri_understand',
  'tri_understand_it…',
  'understand_it…_partial',
  'it…_partial_true',
  'partial_true_say',
  'true_say_thing',
  'say_thing_even',
  'thing_even_tri',
  'even_tri_understand',
  'tri_understand_mother',
  'understand_mother_baselessli',
  'mother_baselessli_accus',
  'baselessli_accus_cheat',
  'accus_cheat_traumat',
  'cheat_traumat_birth',
  'traumat_birth_aita',
  'birth_aita_edit',
  'aita_edit_clarif',
  'edit_clarif_nick',
  'clarif_nick_babi',
  'nick_babi_anna',
  'babi_anna_best',
  'anna_best_friend',
  'best_friend_anna',
  'friend_anna_babi',
  'anna_babi_boyfriend',
  'babi_boyfriend_tri',
  'boyfriend_tri_use',
  'tri_use_exampl',
  'use_exampl_ask',
  'exampl_ask_nick',
  'ask_nick_would',
  'nick_would_feel',
  'would_feel_jess',
  'feel_jess_ask',
  'jess_ask_patern',
  'ask_patern_test',
  'patern_test_sure',
  'test_sure_nick',
  'sure_nick_cheat',
  'nick_cheat_anna',
  'cheat_anna_father',
  'anna_father_anna',
  'father_anna_child',
  'anna_child_exampl',
  'child_exampl_hope',
  'exampl_hope_make',
  'hope_make_see',
  'make_see_hurt',
  'see_hurt_accus',
  'hurt_accus_like'],
 ['im',
  'part',
  'time',
  'braider',
  'take',
  'job',
  'serious',
  'make',
  'money',
  'want',
  'career',
  'work',
  'pm-pm',
  'weekday',
  'am-pm',
  'weekend',
  'school',
  'first',
  'prioriti',
  'weekend',
  'enjoy',
  'weekend',
  'import',
  'polici',
  'book',
  'link',
  'even',
  'book',
  'appoint',
  'read',
  'polici',
  'coupl',
  'polici',
  'show=no',
  'appoint',
  'minut',
  'grace',
  'period',
  'appoint',
  'cancel',
  'extra',
  'peopl',
  'etc',
  'etc',
  'client',
  'respect',
  'rule',
  'alway',
  'come',
  'girl',
  'tiffani',
  'book',
  'appoint',
  'june',
  'th',
  'pm',
  'get',
  'wig',
  'instal',
  'braid',
  'applic',
  'anoth',
  'client',
  'right',
  'braid',
  'wear',
  'braid',
  'braid',
  'know',
  'braid',
  'take',
  'hour',
  'braid',
  'alreadi',
  'take',
  'hour',
  'plu',
  'book',
  'take',
  'shampoo',
  'extra',
  'time',
  'came',
  'time',
  'tiffani',
  'appoint',
  'set',
  'everyth',
  'pm',
  'came',
  'minut',
  'grace',
  'period',
  'worri',
  'minut',
  'text',
  'ask',
  'still',
  'come',
  'never',
  'receiv',
  'text',
  'back',
  'go',
  'took',
  'show',
  'put',
  'stuff',
  'away',
  'start',
  'get',
  'stuff',
  'readi',
  'next',
  'client',
  'text',
  'tiffani',
  'told',
  'appoint',
  'cancel',
  'could',
  'come',
  'pick',
  'wig',
  'custom',
  'everyth',
  'free',
  'need',
  'someon',
  'els',
  'instal',
  'never',
  'receiv',
  'text',
  'back',
  'next',
  'client',
  'came',
  'around',
  'start',
  'work',
  'head',
  'mayb',
  'around',
  'ish',
  'mom',
  'call',
  'told',
  'client',
  'door',
  'work',
  'hous',
  'come',
  'see',
  'get',
  'cut',
  'outsid',
  'stop',
  'middl',
  'client',
  'hair',
  'go',
  'see',
  'tiffani',
  'tri',
  'cuss',
  'say',
  'ruin',
  'babi',
  'shower',
  'appoint',
  'cancel',
  'explain',
  'polici',
  'minut',
  'late',
  'even',
  'hour',
  'hour',
  'late',
  'hair',
  'anymor',
  'gave',
  'wig',
  'sent',
  'way',
  'start',
  'talk',
  'social',
  'media',
  'everybodi',
  'comment',
  'drag',
  'say',
  'im',
  'unprofession',
  'book',
  'ive',
  'noth',
  'profession',
  'cant',
  'respect',
  'rule',
  'get',
  'hair',
  'done',
  'plenti',
  'hairstylist',
  'stay',
  'mom',
  'said',
  'im',
  'wrong',
  'im',
  'get',
  'lot',
  'messag',
  'get',
  'lot',
  'comment',
  'post',
  'talk',
  'unprofession',
  'im',
  'noth',
  'respect',
  'time',
  'ive',
  'even',
  'client',
  'cancel',
  'appoint',
  'see',
  'post',
  'im',
  'lose',
  'money',
  'client',
  'petti',
  'mess',
  'know',
  'im',
  'wrong',
  'aita',
  'updat',
  'text',
  'privat',
  'receiv',
  'respons',
  'back',
  'took',
  'advic',
  'comment',
  'mostli',
  'ubiterdicta',
  'comment',
  'post',
  'say',
  'said',
  'comment',
  'comment',
  'mix',
  'togeth',
  'say',
  'anyth',
  'back',
  'post',
  'magic',
  'delet',
  '|',
  'would',
  'like',
  'public',
  'apolog',
  'ill',
  'take',
  'post',
  'delet',
  'knew',
  'wrong',
  'chock',
  'ive',
  'never',
  'realli',
  'anyth',
  'happen',
  'like',
  'lot',
  'comment',
  'realli',
  'appreci',
  'want',
  'thank',
  'honestli',
  'stuck',
  'busi',
  'young',
  'age',
  'hard',
  'im',
  'busi',
  'forese',
  'thank',
  'yall',
  'much',
  'bless',
  'posit',
  'comment',
  'realli',
  'mean',
  'lot',
  'could',
  'hair',
  'free',
  'would',
  'lol',
  'good',
  'daynight',
  '❤️',
  'im_part',
  'part_time',
  'time_braider',
  'braider_take',
  'take_job',
  'job_serious',
  'serious_make',
  'make_money',
  'money_want',
  'want_career',
  'career_work',
  'work_pm-pm',
  'pm-pm_weekday',
  'weekday_am-pm',
  'am-pm_weekend',
  'weekend_school',
  'school_first',
  'first_prioriti',
  'prioriti_weekend',
  'weekend_enjoy',
  'enjoy_weekend',
  'weekend_import',
  'import_polici',
  'polici_book',
  'book_link',
  'link_even',
  'even_book',
  'book_appoint',
  'appoint_read',
  'read_polici',
  'polici_coupl',
  'coupl_polici',
  'polici_show=no',
  'show=no_appoint',
  'appoint_minut',
  'minut_grace',
  'grace_period',
  'period_appoint',
  'appoint_cancel',
  'cancel_extra',
  'extra_peopl',
  'peopl_etc',
  'etc_etc',
  'etc_client',
  'client_respect',
  'respect_rule',
  'rule_alway',
  'alway_come',
  'come_girl',
  'girl_tiffani',
  'tiffani_book',
  'book_appoint',
  'appoint_june',
  'june_th',
  'th_pm',
  'pm_get',
  'get_wig',
  'wig_instal',
  'instal_braid',
  'braid_applic',
  'applic_anoth',
  'anoth_client',
  'client_right',
  'right_braid',
  'braid_wear',
  'wear_braid',
  'braid_braid',
  'braid_know',
  'know_braid',
  'braid_take',
  'take_hour',
  'hour_braid',
  'braid_alreadi',
  'alreadi_take',
  'take_hour',
  'hour_plu',
  'plu_book',
  'book_take',
  'take_shampoo',
  'shampoo_extra',
  'extra_time',
  'time_came',
  'came_time',
  'time_tiffani',
  'tiffani_appoint',
  'appoint_set',
  'set_everyth',
  'everyth_pm',
  'pm_came',
  'came_minut',
  'minut_grace',
  'grace_period',
  'period_worri',
  'worri_minut',
  'minut_text',
  'text_ask',
  'ask_still',
  'still_come',
  'come_never',
  'never_receiv',
  'receiv_text',
  'text_back',
  'back_go',
  'go_took',
  'took_show',
  'show_put',
  'put_stuff',
  'stuff_away',
  'away_start',
  'start_get',
  'get_stuff',
  'stuff_readi',
  'readi_next',
  'next_client',
  'client_text',
  'text_tiffani',
  'tiffani_told',
  'told_appoint',
  'appoint_cancel',
  'cancel_could',
  'could_come',
  'come_pick',
  'pick_wig',
  'wig_custom',
  'custom_everyth',
  'everyth_free',
  'free_need',
  'need_someon',
  'someon_els',
  'els_instal',
  'instal_never',
  'never_receiv',
  'receiv_text',
  'text_back',
  'back_next',
  'next_client',
  'client_came',
  'came_around',
  'around_start',
  'start_work',
  'work_head',
  'head_mayb',
  'mayb_around',
  'around_ish',
  'ish_mom',
  'mom_call',
  'call_told',
  'told_client',
  'client_door',
  'door_work',
  'work_hous',
  'hous_come',
  'come_see',
  'see_get',
  'get_cut',
  'cut_outsid',
  'outsid_stop',
  'stop_middl',
  'middl_client',
  'client_hair',
  'hair_go',
  'go_see',
  'see_tiffani',
  'tiffani_tri',
  'tri_cuss',
  'cuss_say',
  'say_ruin',
  'ruin_babi',
  'babi_shower',
  'shower_appoint',
  'appoint_cancel',
  'cancel_explain',
  'explain_polici',
  'polici_minut',
  'minut_late',
  'late_even',
  'even_hour',
  'hour_hour',
  'hour_late',
  'late_hair',
  'hair_anymor',
  'anymor_gave',
  'gave_wig',
  'wig_sent',
  'sent_way',
  'way_start',
  'start_talk',
  'talk_social',
  'social_media',
  'media_everybodi',
  'everybodi_comment',
  'comment_drag',
  'drag_say',
  'say_im',
  'im_unprofession',
  'unprofession_book',
  'book_ive',
  'ive_noth',
  'noth_profession',
  'profession_cant',
  'cant_respect',
  'respect_rule',
  'rule_get',
  'get_hair',
  'hair_done',
  'done_plenti',
  'plenti_hairstylist',
  'hairstylist_stay',
  'stay_mom',
  'mom_said',
  'said_im',
  'im_wrong',
  'wrong_im',
  'im_get',
  'get_lot',
  'lot_messag',
  'messag_get',
  'get_lot',
  'lot_comment',
  'comment_post',
  'post_talk',
  'talk_unprofession',
  'unprofession_im',
  'im_noth',
  'noth_respect',
  'respect_time',
  'time_ive',
  'ive_even',
  'even_client',
  'client_cancel',
  'cancel_appoint',
  'appoint_see',
  'see_post',
  'post_im',
  'im_lose',
  'lose_money',
  'money_client',
  'client_petti',
  'petti_mess',
  'mess_know',
  'know_im',
  'im_wrong',
  'wrong_aita',
  'aita_updat',
  'updat_text',
  'text_privat',
  'privat_receiv',
  'receiv_respons',
  'respons_back',
  'back_took',
  'took_advic',
  'advic_comment',
  'comment_mostli',
  'mostli_ubiterdicta',
  'ubiterdicta_comment',
  'comment_post',
  'post_say',
  'say_said',
  'said_comment',
  'comment_comment',
  'comment_mix',
  'mix_togeth',
  'togeth_say',
  'say_anyth',
  'anyth_back',
  'back_post',
  'post_magic',
  'magic_delet',
  'delet_|',
  '|_would',
  'would_like',
  'like_public',
  'public_apolog',
  'apolog_ill',
  'ill_take',
  'take_post',
  'post_delet',
  'delet_knew',
  'knew_wrong',
  'wrong_chock',
  'chock_ive',
  'ive_never',
  'never_realli',
  'realli_anyth',
  'anyth_happen',
  'happen_like',
  'like_lot',
  'lot_comment',
  'comment_realli',
  'realli_appreci',
  'appreci_want',
  'want_thank',
  'thank_honestli',
  'honestli_stuck',
  'stuck_busi',
  'busi_young',
  'young_age',
  'age_hard',
  'hard_im',
  'im_busi',
  'busi_forese',
  'forese_thank',
  'thank_yall',
  'yall_much',
  'much_bless',
  'bless_posit',
  'posit_comment',
  'comment_realli',
  'realli_mean',
  'mean_lot',
  'lot_could',
  'could_hair',
  'hair_free',
  'free_would',
  'would_lol',
  'lol_good',
  'good_daynight',
  'daynight_❤️',
  'im_part_time',
  'part_time_braider',
  'time_braider_take',
  'braider_take_job',
  'take_job_serious',
  'job_serious_make',
  'serious_make_money',
  'make_money_want',
  'money_want_career',
  'want_career_work',
  'career_work_pm-pm',
  'work_pm-pm_weekday',
  'pm-pm_weekday_am-pm',
  'weekday_am-pm_weekend',
  'am-pm_weekend_school',
  'weekend_school_first',
  'school_first_prioriti',
  'first_prioriti_weekend',
  'prioriti_weekend_enjoy',
  'weekend_enjoy_weekend',
  'enjoy_weekend_import',
  'weekend_import_polici',
  'import_polici_book',
  'polici_book_link',
  'book_link_even',
  'link_even_book',
  'even_book_appoint',
  'book_appoint_read',
  'appoint_read_polici',
  'read_polici_coupl',
  'polici_coupl_polici',
  'coupl_polici_show=no',
  'polici_show=no_appoint',
  'show=no_appoint_minut',
  'appoint_minut_grace',
  'minut_grace_period',
  'grace_period_appoint',
  'period_appoint_cancel',
  'appoint_cancel_extra',
  'cancel_extra_peopl',
  'extra_peopl_etc',
  'peopl_etc_etc',
  'etc_etc_client',
  'etc_client_respect',
  'client_respect_rule',
  'respect_rule_alway',
  'rule_alway_come',
  'alway_come_girl',
  'come_girl_tiffani',
  'girl_tiffani_book',
  'tiffani_book_appoint',
  'book_appoint_june',
  'appoint_june_th',
  'june_th_pm',
  'th_pm_get',
  'pm_get_wig',
  'get_wig_instal',
  'wig_instal_braid',
  'instal_braid_applic',
  'braid_applic_anoth',
  'applic_anoth_client',
  'anoth_client_right',
  'client_right_braid',
  'right_braid_wear',
  'braid_wear_braid',
  'wear_braid_braid',
  'braid_braid_know',
  'braid_know_braid',
  'know_braid_take',
  'braid_take_hour',
  'take_hour_braid',
  'hour_braid_alreadi',
  'braid_alreadi_take',
  'alreadi_take_hour',
  'take_hour_plu',
  'hour_plu_book',
  'plu_book_take',
  'book_take_shampoo',
  'take_shampoo_extra',
  'shampoo_extra_time',
  'extra_time_came',
  'time_came_time',
  'came_time_tiffani',
  'time_tiffani_appoint',
  'tiffani_appoint_set',
  'appoint_set_everyth',
  'set_everyth_pm',
  'everyth_pm_came',
  'pm_came_minut',
  'came_minut_grace',
  'minut_grace_period',
  'grace_period_worri',
  'period_worri_minut',
  'worri_minut_text',
  'minut_text_ask',
  'text_ask_still',
  'ask_still_come',
  'still_come_never',
  'come_never_receiv',
  'never_receiv_text',
  'receiv_text_back',
  'text_back_go',
  'back_go_took',
  'go_took_show',
  'took_show_put',
  'show_put_stuff',
  'put_stuff_away',
  'stuff_away_start',
  'away_start_get',
  'start_get_stuff',
  'get_stuff_readi',
  'stuff_readi_next',
  'readi_next_client',
  'next_client_text',
  'client_text_tiffani',
  'text_tiffani_told',
  'tiffani_told_appoint',
  'told_appoint_cancel',
  'appoint_cancel_could',
  'cancel_could_come',
  'could_come_pick',
  'come_pick_wig',
  'pick_wig_custom',
  'wig_custom_everyth',
  'custom_everyth_free',
  'everyth_free_need',
  'free_need_someon',
  'need_someon_els',
  'someon_els_instal',
  'els_instal_never',
  'instal_never_receiv',
  'never_receiv_text',
  'receiv_text_back',
  'text_back_next',
  'back_next_client',
  'next_client_came',
  'client_came_around',
  'came_around_start',
  'around_start_work',
  'start_work_head',
  'work_head_mayb',
  'head_mayb_around',
  'mayb_around_ish',
  'around_ish_mom',
  'ish_mom_call',
  'mom_call_told',
  'call_told_client',
  'told_client_door',
  'client_door_work',
  'door_work_hous',
  'work_hous_come',
  'hous_come_see',
  'come_see_get',
  'see_get_cut',
  'get_cut_outsid',
  'cut_outsid_stop',
  'outsid_stop_middl',
  'stop_middl_client',
  'middl_client_hair',
  'client_hair_go',
  'hair_go_see',
  'go_see_tiffani',
  'see_tiffani_tri',
  'tiffani_tri_cuss',
  'tri_cuss_say',
  'cuss_say_ruin',
  'say_ruin_babi',
  'ruin_babi_shower',
  'babi_shower_appoint',
  'shower_appoint_cancel',
  'appoint_cancel_explain',
  'cancel_explain_polici',
  'explain_polici_minut',
  'polici_minut_late',
  'minut_late_even',
  'late_even_hour',
  'even_hour_hour',
  'hour_hour_late',
  'hour_late_hair',
  'late_hair_anymor',
  'hair_anymor_gave',
  'anymor_gave_wig',
  'gave_wig_sent',
  'wig_sent_way',
  'sent_way_start',
  'way_start_talk',
  'start_talk_social',
  'talk_social_media',
  'social_media_everybodi',
  'media_everybodi_comment',
  'everybodi_comment_drag',
  'comment_drag_say',
  'drag_say_im',
  'say_im_unprofession',
  'im_unprofession_book',
  'unprofession_book_ive',
  'book_ive_noth',
  'ive_noth_profession',
  'noth_profession_cant',
  'profession_cant_respect',
  'cant_respect_rule',
  'respect_rule_get',
  'rule_get_hair',
  'get_hair_done',
  'hair_done_plenti',
  'done_plenti_hairstylist',
  'plenti_hairstylist_stay',
  'hairstylist_stay_mom',
  'stay_mom_said',
  'mom_said_im',
  'said_im_wrong',
  'im_wrong_im',
  'wrong_im_get',
  'im_get_lot',
  'get_lot_messag',
  'lot_messag_get',
  'messag_get_lot',
  'get_lot_comment',
  'lot_comment_post',
  'comment_post_talk',
  'post_talk_unprofession',
  'talk_unprofession_im',
  'unprofession_im_noth',
  'im_noth_respect',
  'noth_respect_time',
  'respect_time_ive',
  'time_ive_even',
  'ive_even_client',
  'even_client_cancel',
  'client_cancel_appoint',
  'cancel_appoint_see',
  'appoint_see_post',
  'see_post_im',
  'post_im_lose',
  'im_lose_money',
  'lose_money_client',
  'money_client_petti',
  'client_petti_mess',
  'petti_mess_know',
  'mess_know_im',
  'know_im_wrong',
  'im_wrong_aita',
  'wrong_aita_updat',
  'aita_updat_text',
  'updat_text_privat',
  'text_privat_receiv',
  'privat_receiv_respons',
  'receiv_respons_back',
  'respons_back_took',
  'back_took_advic',
  'took_advic_comment',
  'advic_comment_mostli',
  'comment_mostli_ubiterdicta',
  'mostli_ubiterdicta_comment',
  'ubiterdicta_comment_post',
  'comment_post_say',
  'post_say_said',
  'say_said_comment',
  'said_comment_comment',
  'comment_comment_mix',
  'comment_mix_togeth',
  'mix_togeth_say',
  'togeth_say_anyth',
  'say_anyth_back',
  'anyth_back_post',
  'back_post_magic',
  'post_magic_delet',
  'magic_delet_|',
  'delet_|_would',
  '|_would_like',
  'would_like_public',
  'like_public_apolog',
  'public_apolog_ill',
  'apolog_ill_take',
  'ill_take_post',
  'take_post_delet',
  'post_delet_knew',
  'delet_knew_wrong',
  'knew_wrong_chock',
  'wrong_chock_ive',
  'chock_ive_never',
  'ive_never_realli',
  'never_realli_anyth',
  'realli_anyth_happen',
  'anyth_happen_like',
  'happen_like_lot',
  'like_lot_comment',
  'lot_comment_realli',
  'comment_realli_appreci',
  'realli_appreci_want',
  'appreci_want_thank',
  'want_thank_honestli',
  'thank_honestli_stuck',
  'honestli_stuck_busi',
  'stuck_busi_young',
  'busi_young_age',
  'young_age_hard',
  'age_hard_im',
  'hard_im_busi',
  'im_busi_forese',
  'busi_forese_thank',
  'forese_thank_yall',
  'thank_yall_much',
  'yall_much_bless',
  'much_bless_posit',
  'bless_posit_comment',
  'posit_comment_realli',
  'comment_realli_mean',
  'realli_mean_lot',
  'mean_lot_could',
  'lot_could_hair',
  'could_hair_free',
  'hair_free_would',
  'free_would_lol',
  'would_lol_good',
  'lol_good_daynight',
  'good_daynight_❤️'],
 ['titl',
  'say',
  'im',
  'boyfriend',
  'alway',
  'live',
  'home',
  'mom',
  'chore',
  'move',
  'week',
  'ago',
  'ask',
  'help',
  'learn',
  'certain',
  'thing',
  'start',
  'cook',
  'figur',
  'would',
  'one',
  'use',
  'skill',
  'know',
  'everi',
  'night',
  'im',
  'cook',
  'help',
  'bit',
  'explain',
  'thing',
  'first',
  'two',
  'week',
  'week',
  'told',
  'tri',
  'without',
  'help',
  'found',
  'easi',
  'recip',
  'food',
  'like',
  'left',
  'tri',
  'thing',
  'everi',
  'singl',
  'night',
  'week',
  'ive',
  'big',
  'part',
  'cook',
  'know',
  'cut',
  'know',
  'tast',
  'better',
  'im',
  'tire',
  'cook',
  'ive',
  'almost',
  'chore',
  'told',
  'im',
  'done',
  'hell',
  'laundri',
  'cook',
  'everi',
  'day',
  'dish',
  'day',
  'cook',
  '*',
  'ask',
  '*',
  'certain',
  'thing',
  'cant',
  'find',
  'answer',
  'show',
  'got',
  'upset',
  'relationship',
  'help',
  'feel',
  'like',
  'want',
  'learn',
  'push',
  'thing',
  'ive',
  'shown',
  'make',
  'french',
  'toast',
  'twice',
  'still',
  'claim',
  'know',
  'even',
  'wrote',
  'recip',
  'want',
  'put',
  'effort',
  'instead',
  'expect',
  'ive',
  'talk',
  'mom',
  'said',
  'grate',
  'even',
  'ask',
  'learn',
  'boyfriend',
  'think',
  'want',
  'help',
  'anyth',
  'think',
  'grown',
  'man',
  'need',
  'hand',
  'held',
  'entir',
  'way',
  'especi',
  'simpler',
  'stuff',
  'aita',
  'edit',
  'cook',
  'also',
  'thing',
  'like',
  'vacuum',
  'dish',
  'think',
  'lack',
  'confid',
  'know',
  'thing',
  'seen',
  'vacuum',
  'ive',
  'explain',
  'still',
  'want',
  'show',
  'titl_say',
  'say_im',
  'im_boyfriend',
  'boyfriend_alway',
  'alway_live',
  'live_home',
  'home_mom',
  'mom_chore',
  'chore_move',
  'move_week',
  'week_ago',
  'ago_ask',
  'ask_help',
  'help_learn',
  'learn_certain',
  'certain_thing',
  'thing_start',
  'start_cook',
  'cook_figur',
  'figur_would',
  'would_one',
  'one_use',
  'use_skill',
  'skill_know',
  'know_everi',
  'everi_night',
  'night_im',
  'im_cook',
  'cook_help',
  'help_bit',
  'bit_explain',
  'explain_thing',
  'thing_first',
  'first_two',
  'two_week',
  'week_week',
  'week_told',
  'told_tri',
  'tri_without',
  'without_help',
  'help_found',
  'found_easi',
  'easi_recip',
  'recip_food',
  'food_like',
  'like_left',
  'left_tri',
  'tri_thing',
  'thing_everi',
  'everi_singl',
  'singl_night',
  'night_week',
  'week_ive',
  'ive_big',
  'big_part',
  'part_cook',
  'cook_know',
  'know_cut',
  'cut_know',
  'know_tast',
  'tast_better',
  'better_im',
  'im_tire',
  'tire_cook',
  'cook_ive',
  'ive_almost',
  'almost_chore',
  'chore_told',
  'told_im',
  'im_done',
  'done_hell',
  'hell_laundri',
  'laundri_cook',
  'cook_everi',
  'everi_day',
  'day_dish',
  'dish_day',
  'day_cook',
  'cook_*',
  '*_ask',
  'ask_*',
  '*_certain',
  'certain_thing',
  'thing_cant',
  'cant_find',
  'find_answer',
  'answer_show',
  'show_got',
  'got_upset',
  'upset_relationship',
  'relationship_help',
  'help_feel',
  'feel_like',
  'like_want',
  'want_learn',
  'learn_push',
  'push_thing',
  'thing_ive',
  'ive_shown',
  'shown_make',
  'make_french',
  'french_toast',
  'toast_twice',
  'twice_still',
  'still_claim',
  'claim_know',
  'know_even',
  'even_wrote',
  'wrote_recip',
  'recip_want',
  'want_put',
  'put_effort',
  'effort_instead',
  'instead_expect',
  'expect_ive',
  'ive_talk',
  'talk_mom',
  'mom_said',
  'said_grate',
  'grate_even',
  'even_ask',
  'ask_learn',
  'learn_boyfriend',
  'boyfriend_think',
  'think_want',
  'want_help',
  'help_anyth',
  'anyth_think',
  'think_grown',
  'grown_man',
  'man_need',
  'need_hand',
  'hand_held',
  'held_entir',
  'entir_way',
  'way_especi',
  'especi_simpler',
  'simpler_stuff',
  'stuff_aita',
  'aita_edit',
  'edit_cook',
  'cook_also',
  'also_thing',
  'thing_like',
  'like_vacuum',
  'vacuum_dish',
  'dish_think',
  'think_lack',
  'lack_confid',
  'confid_know',
  'know_thing',
  'thing_seen',
  'seen_vacuum',
  'vacuum_ive',
  'ive_explain',
  'explain_still',
  'still_want',
  'want_show',
  'titl_say_im',
  'say_im_boyfriend',
  'im_boyfriend_alway',
  'boyfriend_alway_live',
  'alway_live_home',
  'live_home_mom',
  'home_mom_chore',
  'mom_chore_move',
  'chore_move_week',
  'move_week_ago',
  'week_ago_ask',
  'ago_ask_help',
  'ask_help_learn',
  'help_learn_certain',
  'learn_certain_thing',
  'certain_thing_start',
  'thing_start_cook',
  'start_cook_figur',
  'cook_figur_would',
  'figur_would_one',
  'would_one_use',
  'one_use_skill',
  'use_skill_know',
  'skill_know_everi',
  'know_everi_night',
  'everi_night_im',
  'night_im_cook',
  'im_cook_help',
  'cook_help_bit',
  'help_bit_explain',
  'bit_explain_thing',
  'explain_thing_first',
  'thing_first_two',
  'first_two_week',
  'two_week_week',
  'week_week_told',
  'week_told_tri',
  'told_tri_without',
  'tri_without_help',
  'without_help_found',
  'help_found_easi',
  'found_easi_recip',
  'easi_recip_food',
  'recip_food_like',
  'food_like_left',
  'like_left_tri',
  'left_tri_thing',
  'tri_thing_everi',
  'thing_everi_singl',
  'everi_singl_night',
  'singl_night_week',
  'night_week_ive',
  'week_ive_big',
  'ive_big_part',
  'big_part_cook',
  'part_cook_know',
  'cook_know_cut',
  'know_cut_know',
  'cut_know_tast',
  'know_tast_better',
  'tast_better_im',
  'better_im_tire',
  'im_tire_cook',
  'tire_cook_ive',
  'cook_ive_almost',
  'ive_almost_chore',
  'almost_chore_told',
  'chore_told_im',
  'told_im_done',
  'im_done_hell',
  'done_hell_laundri',
  'hell_laundri_cook',
  'laundri_cook_everi',
  'cook_everi_day',
  'everi_day_dish',
  'day_dish_day',
  'dish_day_cook',
  'day_cook_*',
  'cook_*_ask',
  '*_ask_*',
  'ask_*_certain',
  '*_certain_thing',
  'certain_thing_cant',
  'thing_cant_find',
  'cant_find_answer',
  'find_answer_show',
  'answer_show_got',
  'show_got_upset',
  'got_upset_relationship',
  'upset_relationship_help',
  'relationship_help_feel',
  'help_feel_like',
  'feel_like_want',
  'like_want_learn',
  'want_learn_push',
  'learn_push_thing',
  'push_thing_ive',
  'thing_ive_shown',
  'ive_shown_make',
  'shown_make_french',
  'make_french_toast',
  'french_toast_twice',
  'toast_twice_still',
  'twice_still_claim',
  'still_claim_know',
  'claim_know_even',
  'know_even_wrote',
  'even_wrote_recip',
  'wrote_recip_want',
  'recip_want_put',
  'want_put_effort',
  'put_effort_instead',
  'effort_instead_expect',
  'instead_expect_ive',
  'expect_ive_talk',
  'ive_talk_mom',
  'talk_mom_said',
  'mom_said_grate',
  'said_grate_even',
  'grate_even_ask',
  'even_ask_learn',
  'ask_learn_boyfriend',
  'learn_boyfriend_think',
  'boyfriend_think_want',
  'think_want_help',
  'want_help_anyth',
  'help_anyth_think',
  'anyth_think_grown',
  'think_grown_man',
  'grown_man_need',
  'man_need_hand',
  'need_hand_held',
  'hand_held_entir',
  'held_entir_way',
  'entir_way_especi',
  'way_especi_simpler',
  'especi_simpler_stuff',
  'simpler_stuff_aita',
  'stuff_aita_edit',
  'aita_edit_cook',
  'edit_cook_also',
  'cook_also_thing',
  'also_thing_like',
  'thing_like_vacuum',
  'like_vacuum_dish',
  'vacuum_dish_think',
  'dish_think_lack',
  'think_lack_confid',
  'lack_confid_know',
  'confid_know_thing',
  'know_thing_seen',
  'thing_seen_vacuum',
  'seen_vacuum_ive',
  'vacuum_ive_explain',
  'ive_explain_still',
  'explain_still_want',
  'still_want_show'],
 ['friend',
  'jame',
  'close',
  'friend',
  'sinc',
  'primari',
  'school',
  'jame',
  'date',
  'janet',
  'month',
  'janet',
  'believ',
  'women',
  'all-natur',
  'mean',
  'makeup',
  'plastic',
  'surgeri',
  'tattoo',
  'pierc',
  'anyth',
  'superfici',
  'put',
  'ive',
  'properli',
  'spoken',
  'time',
  'alway',
  'brought',
  'girlfriend',
  'nicol',
  'togeth',
  'year',
  'long',
  'ive',
  'known',
  'ive',
  'known',
  'glam',
  'ive',
  'rare',
  'seen',
  'leav',
  'hous',
  'without',
  'makeup',
  'though',
  'time',
  'cant',
  'tell',
  'dress',
  'nicol',
  'nose',
  'pierc',
  'ear',
  'pierc',
  'tattoo',
  'candid',
  'get',
  'nose',
  'done',
  'everyth',
  'janet',
  'hate',
  'week',
  'ago',
  'jame',
  'invit',
  'us',
  'beach',
  'hous',
  'relax',
  'week',
  'away',
  'citi',
  'go',
  'jame',
  'janet',
  'nicol',
  'thought',
  'go',
  'fun',
  'time',
  'way',
  'get',
  'know',
  'janet',
  'bit',
  'better',
  'sinc',
  'nicol',
  'jame',
  'alreadi',
  'great',
  'friend',
  'nicol',
  'read',
  'book',
  'loung',
  'sun',
  'janet',
  'ask',
  'want',
  'go',
  'swim',
  'nicol',
  'declin',
  'terribl',
  'swimmer',
  'want',
  'ruin',
  'hair',
  'second',
  'part',
  'joke',
  'janet',
  'scof',
  'mutter',
  'someth',
  'nicol',
  'snobbi',
  'bitch',
  'nicol',
  'brush',
  'dinner',
  'janet',
  'kept',
  'insult',
  'nicol',
  'everyth',
  'nicol',
  'would',
  'speak',
  'janet',
  'would',
  'call',
  'posh',
  'pretenti',
  'brat',
  'jame',
  'would',
  'laugh',
  'someth',
  'said',
  'would',
  'immedi',
  'turn',
  'nicol',
  'say',
  'someth',
  'like',
  'men',
  'prefer',
  'all-natur',
  'women',
  'made',
  'whole',
  'dinner',
  'awkward',
  'ask',
  'janet',
  'stop',
  'multipl',
  'time',
  'first',
  'nicol',
  'laugh',
  'make',
  'joke',
  'whole',
  'thing',
  'eventu',
  'got',
  'uncomfort',
  'hat',
  'left',
  'tabl',
  'janet',
  'call',
  'fake',
  'sensit',
  'told',
  'shut',
  'fuck',
  'left',
  'tabl',
  'janet',
  'woke',
  'nicol',
  'nap',
  'pour',
  'cold',
  'water',
  'throw',
  'dress',
  'pool',
  'loosen',
  'left',
  'soon',
  'could',
  'jame',
  'apologis',
  'profus',
  'behaviour',
  'ive',
  'told',
  'comfort',
  'hang',
  'janet',
  'yet',
  'ask',
  'apologis',
  'janet',
  'ruin',
  'good',
  'time',
  'help',
  'resolv',
  'conflict',
  'said',
  'apologis',
  'janet',
  'refus',
  'thought',
  'accept',
  'ran',
  'jame',
  'janet',
  'store',
  'jame',
  'confront',
  'ask',
  'apologis',
  'janet',
  'look',
  'desper',
  'could',
  'tell',
  'realli',
  'want',
  'apologis',
  'look',
  'janet',
  'straight',
  'eye',
  'told',
  'im',
  'sorri',
  'jealou',
  'vindict',
  'bitch',
  'ask',
  'leav',
  'alon',
  'got',
  'bunch',
  'angri',
  'call',
  'jame',
  'call',
  'petti',
  'hypocrit',
  'name-cal',
  'janet',
  'nicol',
  'think',
  'handl',
  'situat',
  'better',
  'friend_jame',
  'jame_close',
  'close_friend',
  'friend_sinc',
  'sinc_primari',
  'primari_school',
  'school_jame',
  'jame_date',
  'date_janet',
  'janet_month',
  'month_janet',
  'janet_believ',
  'believ_women',
  'women_all-natur',
  'all-natur_mean',
  'mean_makeup',
  'makeup_plastic',
  'plastic_surgeri',
  'surgeri_tattoo',
  'tattoo_pierc',
  'pierc_anyth',
  'anyth_superfici',
  'superfici_put',
  'put_ive',
  'ive_properli',
  'properli_spoken',
  'spoken_time',
  'time_alway',
  'alway_brought',
  'brought_girlfriend',
  'girlfriend_nicol',
  'nicol_togeth',
  'togeth_year',
  'year_long',
  'long_ive',
  'ive_known',
  'known_ive',
  'ive_known',
  'known_glam',
  'glam_ive',
  'ive_rare',
  'rare_seen',
  'seen_leav',
  'leav_hous',
  'hous_without',
  'without_makeup',
  'makeup_though',
  'though_time',
  'time_cant',
  'cant_tell',
  'tell_dress',
  'dress_nicol',
  'nicol_nose',
  'nose_pierc',
  'pierc_ear',
  'ear_pierc',
  'pierc_tattoo',
  'tattoo_candid',
  'candid_get',
  'get_nose',
  'nose_done',
  'done_everyth',
  'everyth_janet',
  'janet_hate',
  'hate_week',
  'week_ago',
  'ago_jame',
  'jame_invit',
  'invit_us',
  'us_beach',
  'beach_hous',
  'hous_relax',
  'relax_week',
  'week_away',
  'away_citi',
  'citi_go',
  'go_jame',
  'jame_janet',
  'janet_nicol',
  'nicol_thought',
  'thought_go',
  'go_fun',
  'fun_time',
  'time_way',
  'way_get',
  'get_know',
  'know_janet',
  'janet_bit',
  'bit_better',
  'better_sinc',
  'sinc_nicol',
  'nicol_jame',
  'jame_alreadi',
  'alreadi_great',
  'great_friend',
  'friend_nicol',
  'nicol_read',
  'read_book',
  'book_loung',
  'loung_sun',
  'sun_janet',
  'janet_ask',
  'ask_want',
  'want_go',
  'go_swim',
  'swim_nicol',
  'nicol_declin',
  'declin_terribl',
  'terribl_swimmer',
  'swimmer_want',
  'want_ruin',
  'ruin_hair',
  'hair_second',
  'second_part',
  'part_joke',
  'joke_janet',
  'janet_scof',
  'scof_mutter',
  'mutter_someth',
  'someth_nicol',
  'nicol_snobbi',
  'snobbi_bitch',
  'bitch_nicol',
  'nicol_brush',
  'brush_dinner',
  'dinner_janet',
  'janet_kept',
  'kept_insult',
  'insult_nicol',
  'nicol_everyth',
  'everyth_nicol',
  'nicol_would',
  'would_speak',
  'speak_janet',
  'janet_would',
  'would_call',
  'call_posh',
  'posh_pretenti',
  'pretenti_brat',
  'brat_jame',
  'jame_would',
  'would_laugh',
  'laugh_someth',
  'someth_said',
  'said_would',
  'would_immedi',
  'immedi_turn',
  'turn_nicol',
  'nicol_say',
  'say_someth',
  'someth_like',
  'like_men',
  'men_prefer',
  'prefer_all-natur',
  'all-natur_women',
  'women_made',
  'made_whole',
  'whole_dinner',
  'dinner_awkward',
  'awkward_ask',
  'ask_janet',
  'janet_stop',
  'stop_multipl',
  'multipl_time',
  'time_first',
  'first_nicol',
  'nicol_laugh',
  'laugh_make',
  'make_joke',
  'joke_whole',
  'whole_thing',
  'thing_eventu',
  'eventu_got',
  'got_uncomfort',
  'uncomfort_hat',
  'hat_left',
  'left_tabl',
  'tabl_janet',
  'janet_call',
  'call_fake',
  'fake_sensit',
  'sensit_told',
  'told_shut',
  'shut_fuck',
  'fuck_left',
  'left_tabl',
  'tabl_janet',
  'janet_woke',
  'woke_nicol',
  'nicol_nap',
  'nap_pour',
  'pour_cold',
  'cold_water',
  'water_throw',
  'throw_dress',
  'dress_pool',
  'pool_loosen',
  'loosen_left',
  'left_soon',
  'soon_could',
  'could_jame',
  'jame_apologis',
  'apologis_profus',
  'profus_behaviour',
  'behaviour_ive',
  'ive_told',
  'told_comfort',
  'comfort_hang',
  'hang_janet',
  'janet_yet',
  'yet_ask',
  'ask_apologis',
  'apologis_janet',
  'janet_ruin',
  'ruin_good',
  'good_time',
  'time_help',
  'help_resolv',
  'resolv_conflict',
  'conflict_said',
  'said_apologis',
  'apologis_janet',
  'janet_refus',
  'refus_thought',
  'thought_accept',
  'accept_ran',
  'ran_jame',
  'jame_janet',
  'janet_store',
  'store_jame',
  'jame_confront',
  'confront_ask',
  'ask_apologis',
  'apologis_janet',
  'janet_look',
  'look_desper',
  'desper_could',
  'could_tell',
  'tell_realli',
  'realli_want',
  'want_apologis',
  'apologis_look',
  'look_janet',
  'janet_straight',
  'straight_eye',
  'eye_told',
  'told_im',
  'im_sorri',
  'sorri_jealou',
  'jealou_vindict',
  'vindict_bitch',
  'bitch_ask',
  'ask_leav',
  'leav_alon',
  'alon_got',
  'got_bunch',
  'bunch_angri',
  'angri_call',
  'call_jame',
  'jame_call',
  'call_petti',
  'petti_hypocrit',
  'hypocrit_name-cal',
  'name-cal_janet',
  'janet_nicol',
  'nicol_think',
  'think_handl',
  'handl_situat',
  'situat_better',
  'friend_jame_close',
  'jame_close_friend',
  'close_friend_sinc',
  'friend_sinc_primari',
  'sinc_primari_school',
  'primari_school_jame',
  'school_jame_date',
  'jame_date_janet',
  'date_janet_month',
  'janet_month_janet',
  'month_janet_believ',
  'janet_believ_women',
  'believ_women_all-natur',
  'women_all-natur_mean',
  'all-natur_mean_makeup',
  'mean_makeup_plastic',
  'makeup_plastic_surgeri',
  'plastic_surgeri_tattoo',
  'surgeri_tattoo_pierc',
  'tattoo_pierc_anyth',
  'pierc_anyth_superfici',
  'anyth_superfici_put',
  'superfici_put_ive',
  'put_ive_properli',
  'ive_properli_spoken',
  'properli_spoken_time',
  'spoken_time_alway',
  'time_alway_brought',
  'alway_brought_girlfriend',
  'brought_girlfriend_nicol',
  'girlfriend_nicol_togeth',
  'nicol_togeth_year',
  'togeth_year_long',
  'year_long_ive',
  'long_ive_known',
  'ive_known_ive',
  'known_ive_known',
  'ive_known_glam',
  'known_glam_ive',
  'glam_ive_rare',
  'ive_rare_seen',
  'rare_seen_leav',
  'seen_leav_hous',
  'leav_hous_without',
  'hous_without_makeup',
  'without_makeup_though',
  'makeup_though_time',
  'though_time_cant',
  'time_cant_tell',
  'cant_tell_dress',
  'tell_dress_nicol',
  'dress_nicol_nose',
  'nicol_nose_pierc',
  'nose_pierc_ear',
  'pierc_ear_pierc',
  'ear_pierc_tattoo',
  'pierc_tattoo_candid',
  'tattoo_candid_get',
  'candid_get_nose',
  'get_nose_done',
  'nose_done_everyth',
  'done_everyth_janet',
  'everyth_janet_hate',
  'janet_hate_week',
  'hate_week_ago',
  'week_ago_jame',
  'ago_jame_invit',
  'jame_invit_us',
  'invit_us_beach',
  'us_beach_hous',
  'beach_hous_relax',
  'hous_relax_week',
  'relax_week_away',
  'week_away_citi',
  'away_citi_go',
  'citi_go_jame',
  'go_jame_janet',
  'jame_janet_nicol',
  'janet_nicol_thought',
  'nicol_thought_go',
  'thought_go_fun',
  'go_fun_time',
  'fun_time_way',
  'time_way_get',
  'way_get_know',
  'get_know_janet',
  'know_janet_bit',
  'janet_bit_better',
  'bit_better_sinc',
  'better_sinc_nicol',
  'sinc_nicol_jame',
  'nicol_jame_alreadi',
  'jame_alreadi_great',
  'alreadi_great_friend',
  'great_friend_nicol',
  'friend_nicol_read',
  'nicol_read_book',
  'read_book_loung',
  'book_loung_sun',
  'loung_sun_janet',
  'sun_janet_ask',
  'janet_ask_want',
  'ask_want_go',
  'want_go_swim',
  'go_swim_nicol',
  'swim_nicol_declin',
  'nicol_declin_terribl',
  'declin_terribl_swimmer',
  'terribl_swimmer_want',
  'swimmer_want_ruin',
  'want_ruin_hair',
  'ruin_hair_second',
  'hair_second_part',
  'second_part_joke',
  'part_joke_janet',
  'joke_janet_scof',
  'janet_scof_mutter',
  'scof_mutter_someth',
  'mutter_someth_nicol',
  'someth_nicol_snobbi',
  'nicol_snobbi_bitch',
  'snobbi_bitch_nicol',
  'bitch_nicol_brush',
  'nicol_brush_dinner',
  'brush_dinner_janet',
  'dinner_janet_kept',
  'janet_kept_insult',
  'kept_insult_nicol',
  'insult_nicol_everyth',
  'nicol_everyth_nicol',
  'everyth_nicol_would',
  'nicol_would_speak',
  'would_speak_janet',
  'speak_janet_would',
  'janet_would_call',
  'would_call_posh',
  'call_posh_pretenti',
  'posh_pretenti_brat',
  'pretenti_brat_jame',
  'brat_jame_would',
  'jame_would_laugh',
  'would_laugh_someth',
  'laugh_someth_said',
  'someth_said_would',
  'said_would_immedi',
  'would_immedi_turn',
  'immedi_turn_nicol',
  'turn_nicol_say',
  'nicol_say_someth',
  'say_someth_like',
  'someth_like_men',
  'like_men_prefer',
  'men_prefer_all-natur',
  'prefer_all-natur_women',
  'all-natur_women_made',
  'women_made_whole',
  'made_whole_dinner',
  'whole_dinner_awkward',
  'dinner_awkward_ask',
  'awkward_ask_janet',
  'ask_janet_stop',
  'janet_stop_multipl',
  'stop_multipl_time',
  'multipl_time_first',
  'time_first_nicol',
  'first_nicol_laugh',
  'nicol_laugh_make',
  'laugh_make_joke',
  'make_joke_whole',
  'joke_whole_thing',
  'whole_thing_eventu',
  'thing_eventu_got',
  'eventu_got_uncomfort',
  'got_uncomfort_hat',
  'uncomfort_hat_left',
  'hat_left_tabl',
  'left_tabl_janet',
  'tabl_janet_call',
  'janet_call_fake',
  'call_fake_sensit',
  'fake_sensit_told',
  'sensit_told_shut',
  'told_shut_fuck',
  'shut_fuck_left',
  'fuck_left_tabl',
  'left_tabl_janet',
  'tabl_janet_woke',
  'janet_woke_nicol',
  'woke_nicol_nap',
  'nicol_nap_pour',
  'nap_pour_cold',
  'pour_cold_water',
  'cold_water_throw',
  'water_throw_dress',
  'throw_dress_pool',
  'dress_pool_loosen',
  'pool_loosen_left',
  'loosen_left_soon',
  'left_soon_could',
  'soon_could_jame',
  'could_jame_apologis',
  'jame_apologis_profus',
  'apologis_profus_behaviour',
  'profus_behaviour_ive',
  'behaviour_ive_told',
  'ive_told_comfort',
  'told_comfort_hang',
  'comfort_hang_janet',
  'hang_janet_yet',
  'janet_yet_ask',
  'yet_ask_apologis',
  'ask_apologis_janet',
  'apologis_janet_ruin',
  'janet_ruin_good',
  'ruin_good_time',
  'good_time_help',
  'time_help_resolv',
  'help_resolv_conflict',
  'resolv_conflict_said',
  'conflict_said_apologis',
  'said_apologis_janet',
  'apologis_janet_refus',
  'janet_refus_thought',
  'refus_thought_accept',
  'thought_accept_ran',
  'accept_ran_jame',
  'ran_jame_janet',
  'jame_janet_store',
  'janet_store_jame',
  'store_jame_confront',
  'jame_confront_ask',
  'confront_ask_apologis',
  'ask_apologis_janet',
  'apologis_janet_look',
  'janet_look_desper',
  'look_desper_could',
  'desper_could_tell',
  'could_tell_realli',
  'tell_realli_want',
  'realli_want_apologis',
  'want_apologis_look',
  'apologis_look_janet',
  'look_janet_straight',
  'janet_straight_eye',
  'straight_eye_told',
  'eye_told_im',
  'told_im_sorri',
  'im_sorri_jealou',
  'sorri_jealou_vindict',
  'jealou_vindict_bitch',
  'vindict_bitch_ask',
  'bitch_ask_leav',
  'ask_leav_alon',
  'leav_alon_got',
  'alon_got_bunch',
  'got_bunch_angri',
  'bunch_angri_call',
  'angri_call_jame',
  'call_jame_call',
  'jame_call_petti',
  'call_petti_hypocrit',
  'petti_hypocrit_name-cal',
  'hypocrit_name-cal_janet',
  'name-cal_janet_nicol',
  'janet_nicol_think',
  'nicol_think_handl',
  'think_handl_situat',
  'handl_situat_better'],
 ['yesterday',
  'make',
  'lunch',
  'heard',
  'realli',
  'loud',
  'sound',
  'ceil',
  'fall',
  'bookshelf',
  'fallen',
  'husband',
  'daughter',
  'person',
  'hous',
  'son',
  'pretti',
  'sure',
  'room',
  'opposit',
  'side',
  'hous',
  'kitchen',
  'make',
  'way',
  'check',
  'everi',
  'room',
  'everyth',
  'seem',
  'order',
  'knock',
  'son',
  'door',
  'call',
  'name',
  'answer',
  'must',
  'knockedcal',
  'time',
  'tri',
  'open',
  'door',
  'lock',
  'point',
  'get',
  'realli',
  'freak',
  'think',
  'mayb',
  'tip',
  'wardrob',
  'bookshelf',
  'fallen',
  'pass',
  'floor',
  'basic',
  'scream',
  'name',
  'answer',
  'idea',
  'threw',
  'door',
  'broke',
  'clearli',
  'door',
  'alreadi',
  'weak',
  'im',
  'think',
  'termit',
  'yeah',
  'broke',
  'son',
  'fine',
  'freak',
  'door',
  'fine',
  'sound',
  'tv',
  'volum',
  'max',
  'appar',
  'answer',
  'call',
  'want',
  'bother',
  'movi',
  'word',
  'scream',
  'like',
  'harpi',
  'annoy',
  'tri',
  'watch',
  'movi',
  'fix',
  'door',
  'said',
  'go',
  'fix',
  'sinc',
  'fix',
  'would',
  'buy',
  'new',
  'door',
  'door',
  'expens',
  'soon',
  'dad',
  'got',
  'home',
  'would',
  'remov',
  'door',
  'entir',
  'broken',
  'stay',
  'got',
  'realli',
  'mad',
  'said',
  'right',
  'door',
  'deserv',
  'privaci',
  'said',
  'door',
  'one',
  'broke',
  'consequ',
  'action',
  'want',
  'door',
  'would',
  'buy',
  'know',
  'money',
  'right',
  'door',
  'chang',
  'bathroom',
  'said',
  'fuck',
  'said',
  'ground',
  'aita',
  'door',
  'husband',
  'fine',
  'say',
  'know',
  'scare',
  'know',
  'appropri',
  'punish',
  'im',
  'terrifi',
  'anyth',
  'happen',
  'realli',
  'need',
  'reach',
  'son',
  'abl',
  'calm',
  'sinc',
  'im',
  'wonder',
  'mayb',
  'im',
  'asshol',
  'yesterday_make',
  'make_lunch',
  'lunch_heard',
  'heard_realli',
  'realli_loud',
  'loud_sound',
  'sound_ceil',
  'ceil_fall',
  'fall_bookshelf',
  'bookshelf_fallen',
  'fallen_husband',
  'husband_daughter',
  'daughter_person',
  'person_hous',
  'hous_son',
  'son_pretti',
  'pretti_sure',
  'sure_room',
  'room_opposit',
  'opposit_side',
  'side_hous',
  'hous_kitchen',
  'kitchen_make',
  'make_way',
  'way_check',
  'check_everi',
  'everi_room',
  'room_everyth',
  'everyth_seem',
  'seem_order',
  'order_knock',
  'knock_son',
  'son_door',
  'door_call',
  'call_name',
  'name_answer',
  'answer_must',
  'must_knockedcal',
  'knockedcal_time',
  'time_tri',
  'tri_open',
  'open_door',
  'door_lock',
  'lock_point',
  'point_get',
  'get_realli',
  'realli_freak',
  'freak_think',
  'think_mayb',
  'mayb_tip',
  'tip_wardrob',
  'wardrob_bookshelf',
  'bookshelf_fallen',
  'fallen_pass',
  'pass_floor',
  'floor_basic',
  'basic_scream',
  'scream_name',
  'name_answer',
  'answer_idea',
  'idea_threw',
  'threw_door',
  'door_broke',
  'broke_clearli',
  'clearli_door',
  'door_alreadi',
  'alreadi_weak',
  'weak_im',
  'im_think',
  'think_termit',
  'termit_yeah',
  'yeah_broke',
  'broke_son',
  'son_fine',
  'fine_freak',
  'freak_door',
  'door_fine',
  'fine_sound',
  'sound_tv',
  'tv_volum',
  'volum_max',
  'max_appar',
  'appar_answer',
  'answer_call',
  'call_want',
  'want_bother',
  'bother_movi',
  'movi_word',
  'word_scream',
  'scream_like',
  'like_harpi',
  'harpi_annoy',
  'annoy_tri',
  'tri_watch',
  'watch_movi',
  'movi_fix',
  'fix_door',
  'door_said',
  'said_go',
  'go_fix',
  'fix_sinc',
  'sinc_fix',
  'fix_would',
  'would_buy',
  'buy_new',
  'new_door',
  'door_door',
  'door_expens',
  'expens_soon',
  'soon_dad',
  'dad_got',
  'got_home',
  'home_would',
  'would_remov',
  'remov_door',
  'door_entir',
  'entir_broken',
  'broken_stay',
  'stay_got',
  'got_realli',
  'realli_mad',
  'mad_said',
  'said_right',
  'right_door',
  'door_deserv',
  'deserv_privaci',
  'privaci_said',
  'said_door',
  'door_one',
  'one_broke',
  'broke_consequ',
  'consequ_action',
  'action_want',
  'want_door',
  'door_would',
  'would_buy',
  'buy_know',
  'know_money',
  'money_right',
  'right_door',
  'door_chang',
  'chang_bathroom',
  'bathroom_said',
  'said_fuck',
  'fuck_said',
  'said_ground',
  'ground_aita',
  'aita_door',
  'door_husband',
  'husband_fine',
  'fine_say',
  'say_know',
  'know_scare',
  'scare_know',
  'know_appropri',
  'appropri_punish',
  'punish_im',
  'im_terrifi',
  'terrifi_anyth',
  'anyth_happen',
  'happen_realli',
  'realli_need',
  'need_reach',
  'reach_son',
  'son_abl',
  'abl_calm',
  'calm_sinc',
  'sinc_im',
  'im_wonder',
  'wonder_mayb',
  'mayb_im',
  'im_asshol',
  'yesterday_make_lunch',
  'make_lunch_heard',
  'lunch_heard_realli',
  'heard_realli_loud',
  'realli_loud_sound',
  'loud_sound_ceil',
  'sound_ceil_fall',
  'ceil_fall_bookshelf',
  'fall_bookshelf_fallen',
  'bookshelf_fallen_husband',
  'fallen_husband_daughter',
  'husband_daughter_person',
  'daughter_person_hous',
  'person_hous_son',
  'hous_son_pretti',
  'son_pretti_sure',
  'pretti_sure_room',
  'sure_room_opposit',
  'room_opposit_side',
  'opposit_side_hous',
  'side_hous_kitchen',
  'hous_kitchen_make',
  'kitchen_make_way',
  'make_way_check',
  'way_check_everi',
  'check_everi_room',
  'everi_room_everyth',
  'room_everyth_seem',
  'everyth_seem_order',
  'seem_order_knock',
  'order_knock_son',
  'knock_son_door',
  'son_door_call',
  'door_call_name',
  'call_name_answer',
  'name_answer_must',
  'answer_must_knockedcal',
  'must_knockedcal_time',
  'knockedcal_time_tri',
  'time_tri_open',
  'tri_open_door',
  'open_door_lock',
  'door_lock_point',
  'lock_point_get',
  'point_get_realli',
  'get_realli_freak',
  'realli_freak_think',
  'freak_think_mayb',
  'think_mayb_tip',
  'mayb_tip_wardrob',
  'tip_wardrob_bookshelf',
  'wardrob_bookshelf_fallen',
  'bookshelf_fallen_pass',
  'fallen_pass_floor',
  'pass_floor_basic',
  'floor_basic_scream',
  'basic_scream_name',
  'scream_name_answer',
  'name_answer_idea',
  'answer_idea_threw',
  'idea_threw_door',
  'threw_door_broke',
  'door_broke_clearli',
  'broke_clearli_door',
  'clearli_door_alreadi',
  'door_alreadi_weak',
  'alreadi_weak_im',
  'weak_im_think',
  'im_think_termit',
  'think_termit_yeah',
  'termit_yeah_broke',
  'yeah_broke_son',
  'broke_son_fine',
  'son_fine_freak',
  'fine_freak_door',
  'freak_door_fine',
  'door_fine_sound',
  'fine_sound_tv',
  'sound_tv_volum',
  'tv_volum_max',
  'volum_max_appar',
  'max_appar_answer',
  'appar_answer_call',
  'answer_call_want',
  'call_want_bother',
  'want_bother_movi',
  'bother_movi_word',
  'movi_word_scream',
  'word_scream_like',
  'scream_like_harpi',
  'like_harpi_annoy',
  'harpi_annoy_tri',
  'annoy_tri_watch',
  'tri_watch_movi',
  'watch_movi_fix',
  'movi_fix_door',
  'fix_door_said',
  'door_said_go',
  'said_go_fix',
  'go_fix_sinc',
  'fix_sinc_fix',
  'sinc_fix_would',
  'fix_would_buy',
  'would_buy_new',
  'buy_new_door',
  'new_door_door',
  'door_door_expens',
  'door_expens_soon',
  'expens_soon_dad',
  'soon_dad_got',
  'dad_got_home',
  'got_home_would',
  'home_would_remov',
  'would_remov_door',
  'remov_door_entir',
  'door_entir_broken',
  'entir_broken_stay',
  'broken_stay_got',
  'stay_got_realli',
  'got_realli_mad',
  'realli_mad_said',
  'mad_said_right',
  'said_right_door',
  'right_door_deserv',
  'door_deserv_privaci',
  'deserv_privaci_said',
  'privaci_said_door',
  'said_door_one',
  'door_one_broke',
  'one_broke_consequ',
  'broke_consequ_action',
  'consequ_action_want',
  'action_want_door',
  'want_door_would',
  'door_would_buy',
  'would_buy_know',
  'buy_know_money',
  'know_money_right',
  'money_right_door',
  'right_door_chang',
  'door_chang_bathroom',
  'chang_bathroom_said',
  'bathroom_said_fuck',
  'said_fuck_said',
  'fuck_said_ground',
  'said_ground_aita',
  'ground_aita_door',
  'aita_door_husband',
  'door_husband_fine',
  'husband_fine_say',
  'fine_say_know',
  'say_know_scare',
  'know_scare_know',
  'scare_know_appropri',
  'know_appropri_punish',
  'appropri_punish_im',
  'punish_im_terrifi',
  'im_terrifi_anyth',
  'terrifi_anyth_happen',
  'anyth_happen_realli',
  'happen_realli_need',
  'realli_need_reach',
  'need_reach_son',
  'reach_son_abl',
  'son_abl_calm',
  'abl_calm_sinc',
  'calm_sinc_im',
  'sinc_im_wonder',
  'im_wonder_mayb',
  'wonder_mayb_im',
  'mayb_im_asshol'],
 ['background',
  'sf',
  'husband',
  'sm',
  'bought',
  '-bedroom',
  'hous',
  'year',
  'ago',
  'shortli',
  'panini',
  'cours',
  'took',
  'master',
  'bedroom',
  'two',
  'bedroom',
  'went',
  'children',
  'put',
  'nice',
  'doubl',
  'bed',
  'larger',
  'room',
  'singl',
  'bed',
  'smaller',
  'room',
  'told',
  'could',
  'choos',
  'room',
  'whoever',
  'end',
  'larger',
  'room',
  'may',
  'ask',
  'share',
  'reloc',
  'visit',
  'famili',
  'member',
  'whoever',
  'end',
  'smaller',
  'room',
  'would',
  'themself',
  'alway',
  'almost',
  'never',
  'famili',
  'hubbi',
  'children',
  'parent',
  'provinc',
  'surpris',
  'older',
  'daughter',
  'chose',
  'smaller',
  'room',
  'younger',
  'son',
  'chose',
  'larger',
  'room',
  'ok',
  'work',
  'seem',
  'happi',
  'choic',
  'ok',
  'remain',
  'way',
  'coupl',
  'year',
  '-day',
  'weekend',
  'come',
  'kid',
  'mother',
  'decid',
  'come',
  'visit',
  'cours',
  'told',
  'ok',
  'husband',
  'seen',
  'awhil',
  'told',
  'son',
  'larger',
  'room',
  'bed',
  'grandma',
  'would',
  'day',
  'would',
  'use',
  'bed',
  'well',
  'son',
  'threw',
  'fit',
  'want',
  'share',
  'room',
  'grandma',
  'even',
  'air',
  'mattress',
  'even',
  'night',
  'smell',
  'funni',
  'remind',
  'origin',
  'deal',
  'offer',
  'put',
  'air',
  'mattress',
  'live',
  'room',
  'enough',
  'hed',
  'privaci',
  'sister',
  'offer',
  'let',
  'put',
  'air',
  'mattress',
  'room',
  'requir',
  'ok',
  'either',
  'husband',
  'offer',
  'let',
  'put',
  'air',
  'mattress',
  'room',
  'said',
  'share',
  'room',
  'parent',
  'yugh',
  'god',
  'bless',
  'privileg',
  'whatev',
  'final',
  'put',
  'foot',
  'said',
  'condit',
  'bigger',
  'room',
  'give',
  'visit',
  'famili',
  'member',
  'one',
  'way',
  'anoth',
  'sleep',
  'air',
  'mattress',
  'night',
  'choos',
  'air',
  'mattress',
  'goe',
  'room',
  'room',
  'live',
  'room',
  'liter',
  'room',
  'hous',
  'sleep',
  'air',
  'mattress',
  'grandma',
  'shortli',
  'confront',
  'husband',
  'came',
  'suggest',
  'encourag',
  'mom',
  'stay',
  'hotel',
  'ask',
  'go',
  'pay',
  'hotel',
  'sinc',
  'cant',
  'afford',
  'cant',
  'afford',
  'put',
  'went',
  'silent',
  'call',
  'ta',
  'forc',
  'son',
  'give',
  'room',
  'three',
  'night',
  'suggest',
  'tell',
  'mom',
  'come',
  'sinc',
  'appar',
  'none',
  'us',
  'afford',
  'edit',
  'sincer',
  'appreci',
  'everyon',
  'comment',
  'judgement',
  'offici',
  'reach',
  'point',
  'everi',
  'time',
  'look',
  'notif',
  'add',
  'everi',
  'second',
  'without',
  'even',
  'hit',
  'refresh',
  'clearli',
  'post',
  'main',
  'account',
  'sinc',
  'appar',
  'reddit',
  'karma',
  'import',
  'way',
  'lol',
  'follow',
  'common',
  'aita',
  'trend',
  'respond',
  'common',
  'theme',
  'offer',
  'husband',
  'bed',
  'mom',
  'husband',
  'back',
  'problem',
  'also',
  'viabli',
  'sleep',
  'air',
  'mattress',
  'go',
  'detail',
  'also',
  'assum',
  'incred',
  'obviou',
  'everyon',
  'viabl',
  'husband',
  'mother',
  'sleep',
  'bed',
  'togeth',
  'sleep',
  'air',
  'mattress',
  'mention',
  'would',
  'never',
  'allow',
  'give',
  'bed',
  'visitor',
  'mom',
  'sleep',
  'couchair',
  'mattress',
  'year',
  'old',
  'need',
  'say',
  'anyth',
  'involv',
  'son',
  'daughter',
  'switch',
  'room',
  'daughter',
  'help',
  'short',
  'term',
  'seem',
  'bit',
  'smug',
  'right',
  'overal',
  'room',
  'choic',
  'desir',
  'switch',
  'room',
  'forc',
  'kind',
  'parent',
  'would',
  'hold',
  'son',
  'letter',
  'deal',
  'go',
  'back',
  'word',
  'daughter',
  'may',
  'decid',
  'im',
  'ta',
  'ill',
  'accept',
  'hypocrit',
  'fulli',
  'awar',
  'privaci',
  'yo',
  'boy',
  'requir',
  'weve',
  'convers',
  'prompt',
  'coupl',
  'comment',
  'also',
  'recent',
  'ask',
  'husband',
  'privat',
  'convers',
  'son',
  'would',
  'way',
  'chang',
  'situat',
  'said',
  'sinc',
  'current',
  'reason',
  'believ',
  'husband',
  'would',
  'lie',
  'outright',
  'im',
  'consid',
  'convers',
  'close',
  'rip',
  'dm',
  'appar',
  'lol',
  'know',
  'happen',
  '-someth',
  'marri',
  'mom',
  'pleas',
  'know',
  'interest',
  'background_sf',
  'sf_husband',
  'husband_sm',
  'sm_bought',
  'bought_-bedroom',
  '-bedroom_hous',
  'hous_year',
  'year_ago',
  'ago_shortli',
  'shortli_panini',
  'panini_cours',
  'cours_took',
  'took_master',
  'master_bedroom',
  'bedroom_two',
  'two_bedroom',
  'bedroom_went',
  'went_children',
  'children_put',
  'put_nice',
  'nice_doubl',
  'doubl_bed',
  'bed_larger',
  'larger_room',
  'room_singl',
  'singl_bed',
  'bed_smaller',
  'smaller_room',
  'room_told',
  'told_could',
  'could_choos',
  'choos_room',
  'room_whoever',
  'whoever_end',
  'end_larger',
  'larger_room',
  'room_may',
  'may_ask',
  'ask_share',
  'share_reloc',
  'reloc_visit',
  'visit_famili',
  'famili_member',
  'member_whoever',
  'whoever_end',
  'end_smaller',
  'smaller_room',
  'room_would',
  'would_themself',
  'themself_alway',
  'alway_almost',
  'almost_never',
  'never_famili',
  'famili_hubbi',
  'hubbi_children',
  'children_parent',
  'parent_provinc',
  'provinc_surpris',
  'surpris_older',
  'older_daughter',
  'daughter_chose',
  'chose_smaller',
  'smaller_room',
  'room_younger',
  'younger_son',
  'son_chose',
  'chose_larger',
  'larger_room',
  'room_ok',
  'ok_work',
  'work_seem',
  'seem_happi',
  'happi_choic',
  'choic_ok',
  'ok_remain',
  'remain_way',
  'way_coupl',
  'coupl_year',
  'year_-day',
  '-day_weekend',
  'weekend_come',
  'come_kid',
  'kid_mother',
  'mother_decid',
  'decid_come',
  'come_visit',
  'visit_cours',
  'cours_told',
  'told_ok',
  'ok_husband',
  'husband_seen',
  'seen_awhil',
  'awhil_told',
  'told_son',
  'son_larger',
  'larger_room',
  'room_bed',
  'bed_grandma',
  'grandma_would',
  'would_day',
  'day_would',
  'would_use',
  'use_bed',
  'bed_well',
  'well_son',
  'son_threw',
  'threw_fit',
  'fit_want',
  'want_share',
  'share_room',
  'room_grandma',
  'grandma_even',
  'even_air',
  'air_mattress',
  'mattress_even',
  'even_night',
  'night_smell',
  'smell_funni',
  'funni_remind',
  'remind_origin',
  'origin_deal',
  'deal_offer',
  'offer_put',
  'put_air',
  'air_mattress',
  'mattress_live',
  'live_room',
  'room_enough',
  'enough_hed',
  'hed_privaci',
  'privaci_sister',
  'sister_offer',
  'offer_let',
  'let_put',
  'put_air',
  'air_mattress',
  'mattress_room',
  'room_requir',
  'requir_ok',
  'ok_either',
  'either_husband',
  'husband_offer',
  'offer_let',
  'let_put',
  'put_air',
  'air_mattress',
  'mattress_room',
  'room_said',
  'said_share',
  'share_room',
  'room_parent',
  'parent_yugh',
  'yugh_god',
  'god_bless',
  'bless_privileg',
  'privileg_whatev',
  'whatev_final',
  'final_put',
  'put_foot',
  'foot_said',
  'said_condit',
  'condit_bigger',
  'bigger_room',
  'room_give',
  'give_visit',
  'visit_famili',
  'famili_member',
  'member_one',
  'one_way',
  'way_anoth',
  'anoth_sleep',
  'sleep_air',
  'air_mattress',
  'mattress_night',
  'night_choos',
  'choos_air',
  'air_mattress',
  'mattress_goe',
  'goe_room',
  'room_room',
  'room_live',
  'live_room',
  'room_liter',
  'liter_room',
  'room_hous',
  'hous_sleep',
  'sleep_air',
  'air_mattress',
  'mattress_grandma',
  'grandma_shortli',
  'shortli_confront',
  'confront_husband',
  'husband_came',
  'came_suggest',
  'suggest_encourag',
  'encourag_mom',
  'mom_stay',
  'stay_hotel',
  'hotel_ask',
  'ask_go',
  'go_pay',
  'pay_hotel',
  'hotel_sinc',
  'sinc_cant',
  'cant_afford',
  'afford_cant',
  'cant_afford',
  'afford_put',
  'put_went',
  'went_silent',
  'silent_call',
  'call_ta',
  'ta_forc',
  'forc_son',
  'son_give',
  'give_room',
  'room_three',
  'three_night',
  'night_suggest',
  'suggest_tell',
  'tell_mom',
  'mom_come',
  'come_sinc',
  'sinc_appar',
  'appar_none',
  'none_us',
  'us_afford',
  'afford_edit',
  'edit_sincer',
  'sincer_appreci',
  'appreci_everyon',
  'everyon_comment',
  'comment_judgement',
  'judgement_offici',
  'offici_reach',
  'reach_point',
  'point_everi',
  'everi_time',
  'time_look',
  'look_notif',
  'notif_add',
  'add_everi',
  'everi_second',
  'second_without',
  'without_even',
  'even_hit',
  'hit_refresh',
  'refresh_clearli',
  'clearli_post',
  'post_main',
  'main_account',
  'account_sinc',
  'sinc_appar',
  'appar_reddit',
  'reddit_karma',
  'karma_import',
  'import_way',
  'way_lol',
  'lol_follow',
  'follow_common',
  'common_aita',
  'aita_trend',
  'trend_respond',
  'respond_common',
  'common_theme',
  'theme_offer',
  'offer_husband',
  'husband_bed',
  'bed_mom',
  'mom_husband',
  'husband_back',
  'back_problem',
  'problem_also',
  'also_viabli',
  'viabli_sleep',
  'sleep_air',
  'air_mattress',
  'mattress_go',
  'go_detail',
  'detail_also',
  'also_assum',
  'assum_incred',
  'incred_obviou',
  'obviou_everyon',
  'everyon_viabl',
  'viabl_husband',
  'husband_mother',
  'mother_sleep',
  'sleep_bed',
  'bed_togeth',
  'togeth_sleep',
  'sleep_air',
  'air_mattress',
  'mattress_mention',
  'mention_would',
  'would_never',
  'never_allow',
  'allow_give',
  'give_bed',
  'bed_visitor',
  'visitor_mom',
  'mom_sleep',
  'sleep_couchair',
  'couchair_mattress',
  'mattress_year',
  'year_old',
  'old_need',
  'need_say',
  'say_anyth',
  'anyth_involv',
  'involv_son',
  'son_daughter',
  'daughter_switch',
  'switch_room',
  'room_daughter',
  'daughter_help',
  'help_short',
  'short_term',
  'term_seem',
  'seem_bit',
  'bit_smug',
  'smug_right',
  'right_overal',
  'overal_room',
  'room_choic',
  'choic_desir',
  'desir_switch',
  'switch_room',
  'room_forc',
  'forc_kind',
  'kind_parent',
  'parent_would',
  'would_hold',
  'hold_son',
  'son_letter',
  'letter_deal',
  'deal_go',
  'go_back',
  'back_word',
  'word_daughter',
  'daughter_may',
  'may_decid',
  'decid_im',
  'im_ta',
  'ta_ill',
  'ill_accept',
  'accept_hypocrit',
  'hypocrit_fulli',
  'fulli_awar',
  'awar_privaci',
  'privaci_yo',
  'yo_boy',
  'boy_requir',
  'requir_weve',
  'weve_convers',
  'convers_prompt',
  'prompt_coupl',
  'coupl_comment',
  'comment_also',
  'also_recent',
  'recent_ask',
  'ask_husband',
  'husband_privat',
  'privat_convers',
  'convers_son',
  'son_would',
  'would_way',
  'way_chang',
  'chang_situat',
  'situat_said',
  'said_sinc',
  'sinc_current',
  'current_reason',
  'reason_believ',
  'believ_husband',
  'husband_would',
  'would_lie',
  'lie_outright',
  'outright_im',
  'im_consid',
  'consid_convers',
  'convers_close',
  'close_rip',
  'rip_dm',
  'dm_appar',
  'appar_lol',
  'lol_know',
  'know_happen',
  'happen_-someth',
  '-someth_marri',
  'marri_mom',
  'mom_pleas',
  'pleas_know',
  'know_interest',
  'background_sf_husband',
  'sf_husband_sm',
  'husband_sm_bought',
  'sm_bought_-bedroom',
  'bought_-bedroom_hous',
  '-bedroom_hous_year',
  'hous_year_ago',
  'year_ago_shortli',
  'ago_shortli_panini',
  'shortli_panini_cours',
  'panini_cours_took',
  'cours_took_master',
  'took_master_bedroom',
  'master_bedroom_two',
  'bedroom_two_bedroom',
  'two_bedroom_went',
  'bedroom_went_children',
  'went_children_put',
  'children_put_nice',
  'put_nice_doubl',
  'nice_doubl_bed',
  'doubl_bed_larger',
  'bed_larger_room',
  'larger_room_singl',
  'room_singl_bed',
  'singl_bed_smaller',
  'bed_smaller_room',
  'smaller_room_told',
  'room_told_could',
  'told_could_choos',
  'could_choos_room',
  'choos_room_whoever',
  'room_whoever_end',
  'whoever_end_larger',
  'end_larger_room',
  'larger_room_may',
  'room_may_ask',
  'may_ask_share',
  'ask_share_reloc',
  'share_reloc_visit',
  'reloc_visit_famili',
  'visit_famili_member',
  'famili_member_whoever',
  'member_whoever_end',
  'whoever_end_smaller',
  'end_smaller_room',
  'smaller_room_would',
  'room_would_themself',
  'would_themself_alway',
  'themself_alway_almost',
  'alway_almost_never',
  'almost_never_famili',
  'never_famili_hubbi',
  'famili_hubbi_children',
  'hubbi_children_parent',
  'children_parent_provinc',
  'parent_provinc_surpris',
  'provinc_surpris_older',
  'surpris_older_daughter',
  'older_daughter_chose',
  'daughter_chose_smaller',
  'chose_smaller_room',
  'smaller_room_younger',
  'room_younger_son',
  'younger_son_chose',
  'son_chose_larger',
  'chose_larger_room',
  'larger_room_ok',
  'room_ok_work',
  'ok_work_seem',
  'work_seem_happi',
  'seem_happi_choic',
  'happi_choic_ok',
  'choic_ok_remain',
  'ok_remain_way',
  'remain_way_coupl',
  'way_coupl_year',
  'coupl_year_-day',
  'year_-day_weekend',
  '-day_weekend_come',
  'weekend_come_kid',
  'come_kid_mother',
  'kid_mother_decid',
  'mother_decid_come',
  'decid_come_visit',
  'come_visit_cours',
  'visit_cours_told',
  'cours_told_ok',
  'told_ok_husband',
  'ok_husband_seen',
  'husband_seen_awhil',
  'seen_awhil_told',
  'awhil_told_son',
  'told_son_larger',
  'son_larger_room',
  'larger_room_bed',
  'room_bed_grandma',
  'bed_grandma_would',
  'grandma_would_day',
  'would_day_would',
  'day_would_use',
  'would_use_bed',
  'use_bed_well',
  'bed_well_son',
  'well_son_threw',
  'son_threw_fit',
  'threw_fit_want',
  'fit_want_share',
  'want_share_room',
  'share_room_grandma',
  'room_grandma_even',
  'grandma_even_air',
  'even_air_mattress',
  'air_mattress_even',
  'mattress_even_night',
  'even_night_smell',
  'night_smell_funni',
  'smell_funni_remind',
  'funni_remind_origin',
  'remind_origin_deal',
  'origin_deal_offer',
  'deal_offer_put',
  'offer_put_air',
  'put_air_mattress',
  'air_mattress_live',
  'mattress_live_room',
  'live_room_enough',
  'room_enough_hed',
  'enough_hed_privaci',
  'hed_privaci_sister',
  'privaci_sister_offer',
  'sister_offer_let',
  'offer_let_put',
  'let_put_air',
  'put_air_mattress',
  'air_mattress_room',
  'mattress_room_requir',
  'room_requir_ok',
  'requir_ok_either',
  'ok_either_husband',
  'either_husband_offer',
  'husband_offer_let',
  'offer_let_put',
  'let_put_air',
  'put_air_mattress',
  'air_mattress_room',
  'mattress_room_said',
  'room_said_share',
  'said_share_room',
  'share_room_parent',
  'room_parent_yugh',
  'parent_yugh_god',
  'yugh_god_bless',
  'god_bless_privileg',
  'bless_privileg_whatev',
  'privileg_whatev_final',
  'whatev_final_put',
  'final_put_foot',
  'put_foot_said',
  'foot_said_condit',
  'said_condit_bigger',
  'condit_bigger_room',
  'bigger_room_give',
  'room_give_visit',
  'give_visit_famili',
  'visit_famili_member',
  'famili_member_one',
  'member_one_way',
  'one_way_anoth',
  'way_anoth_sleep',
  'anoth_sleep_air',
  'sleep_air_mattress',
  'air_mattress_night',
  'mattress_night_choos',
  'night_choos_air',
  'choos_air_mattress',
  'air_mattress_goe',
  'mattress_goe_room',
  'goe_room_room',
  'room_room_live',
  'room_live_room',
  'live_room_liter',
  'room_liter_room',
  'liter_room_hous',
  'room_hous_sleep',
  'hous_sleep_air',
  'sleep_air_mattress',
  'air_mattress_grandma',
  'mattress_grandma_shortli',
  'grandma_shortli_confront',
  'shortli_confront_husband',
  'confront_husband_came',
  'husband_came_suggest',
  'came_suggest_encourag',
  'suggest_encourag_mom',
  'encourag_mom_stay',
  'mom_stay_hotel',
  'stay_hotel_ask',
  'hotel_ask_go',
  'ask_go_pay',
  'go_pay_hotel',
  'pay_hotel_sinc',
  'hotel_sinc_cant',
  'sinc_cant_afford',
  'cant_afford_cant',
  'afford_cant_afford',
  'cant_afford_put',
  'afford_put_went',
  'put_went_silent',
  'went_silent_call',
  'silent_call_ta',
  ...],
 ['niec',
  'lili',
  'lili',
  'result',
  'affair',
  'ex',
  'fiance',
  'brother',
  'still',
  'togeth',
  'led',
  'believ',
  'lili',
  'mine',
  'throughout',
  'entir',
  'pregnanc',
  'almost',
  'sign',
  'birth',
  'certif',
  'ex',
  'confess',
  'guilt',
  'lili',
  'probabl',
  'brother',
  'dna',
  'test',
  'lili',
  'mine',
  'teen',
  'got',
  'accid',
  'left',
  'infertil',
  'doctor',
  'said',
  'chanc',
  'father',
  'child',
  'slim',
  'nonexist',
  'imagin',
  'crush',
  'felt',
  'discov',
  'im',
  'go',
  'father',
  'also',
  'betray',
  'peopl',
  'love',
  'year',
  'sinc',
  'well',
  'im',
  'first',
  'famili',
  'attend',
  'univers',
  'land',
  'high',
  'pay',
  'job',
  'right',
  'graduat',
  'busi',
  'invest',
  'properti',
  'sinc',
  'im',
  'singl',
  'childless',
  'spend',
  'incom',
  'howev',
  'pleas',
  'ex',
  'end',
  'marri',
  'brother',
  'im',
  'somewhat',
  'cordial',
  'toward',
  'cant',
  'bring',
  'fulli',
  'forgiv',
  'although',
  'know',
  'lili',
  'blameless',
  'whenev',
  'see',
  'im',
  'constantli',
  'remind',
  'overjoy',
  'hold',
  'hospit',
  'think',
  'mine',
  'cant',
  'bare',
  'look',
  'long',
  'visit',
  'grow',
  'take',
  'fun',
  'trip',
  'give',
  'lavish',
  'gift',
  'like',
  'rest',
  'niec',
  'nephew',
  'mean',
  'hate',
  'admit',
  'kept',
  'distanc',
  'oldest',
  'nephew',
  'turn',
  'decid',
  'pay',
  'colleg',
  'educ',
  'sinc',
  'could',
  'efford',
  'parent',
  'even',
  'rent',
  'one',
  'apart',
  'cheap',
  'worri',
  'money',
  'could',
  'focu',
  'get',
  'educ',
  'sinc',
  'thing',
  'niec',
  'last',
  'week',
  'lili',
  'approach',
  'famili',
  'event',
  'inquir',
  'could',
  'pay',
  'educ',
  'told',
  'call',
  'jerk',
  'ask',
  'distant',
  'toward',
  'parent',
  'point',
  'even',
  'favor',
  'rest',
  'cousin',
  'told',
  'parent',
  'enough',
  'money',
  'afford',
  'educ',
  'ask',
  'could',
  'possibl',
  'expect',
  'ok',
  'watch',
  'ex',
  'brother',
  'affair',
  'behind',
  'back',
  'play',
  'happi',
  'famili',
  'front',
  'lili',
  'got',
  'quiet',
  'rest',
  'event',
  'left',
  'earli',
  'later',
  'got',
  'call',
  'ex',
  'yell',
  'ruin',
  'famili',
  'appar',
  'brother',
  'bother',
  'tell',
  'lili',
  'year',
  'ago',
  'know',
  'angri',
  'decid',
  'go',
  'live',
  'bf',
  'famili',
  'im',
  'start',
  'feel',
  'guilti',
  'told',
  'truth',
  'sinc',
  'affect',
  'thought',
  'would',
  'time',
  'grown',
  'enough',
  'know',
  'truth',
  'think',
  'couldv',
  'lie',
  'face',
  'even',
  'want',
  'aita',
  'quick',
  'editupd',
  'ask',
  'hard',
  'look',
  'lili',
  'year',
  'coupl',
  'reason',
  'sum',
  'ex',
  'began',
  'date',
  'broke',
  'year',
  'knew',
  'infertil',
  'issu',
  'much',
  'want',
  'dad',
  'still',
  'led',
  'believ',
  'babi',
  'mine',
  'name',
  'lili',
  'born',
  'sinc',
  'alway',
  'like',
  'name',
  'want',
  'name',
  'daughter',
  'ex',
  'chang',
  'name',
  'even',
  'discov',
  'mine',
  'brother',
  'look',
  'alik',
  'lili',
  'look',
  'like',
  'brother',
  'result',
  'also',
  'look',
  'lot',
  'like',
  'ex',
  'tell',
  'back',
  'father',
  'suspect',
  'thing',
  'wit',
  'child',
  'look',
  'like',
  'name',
  'chose',
  'rais',
  'woman',
  'love',
  'long',
  'infertil',
  'realli',
  'made',
  'imposs',
  'activ',
  'part',
  'lili',
  'life',
  'like',
  'cousin',
  'resent',
  'sake',
  'mental',
  'health',
  'decid',
  'listen',
  'advic',
  'text',
  'lili',
  'ask',
  'would',
  'like',
  'meet',
  'convers',
  'went',
  'sinc',
  'like',
  'said',
  'deserv',
  'answer',
  'repli',
  'yet',
  'ill',
  'updat',
  'updat',
  'ive',
  'met',
  'lili',
  'yesterday',
  'told',
  'relationship',
  'mother',
  'start',
  'went',
  'detail',
  'accid',
  'went',
  'cheat',
  'birth',
  'got',
  'everyth',
  'ask',
  'turn',
  'told',
  'everyth',
  'parent',
  'told',
  'grow',
  'appar',
  'told',
  'around',
  'time',
  'born',
  'miracl',
  'babi',
  'name',
  'lili',
  'die',
  'hospit',
  'sinc',
  'share',
  'name',
  'held',
  'sort',
  'resent',
  'toward',
  'still',
  'process',
  'told',
  'feel',
  'like',
  'twist',
  'retel',
  'actual',
  'happen',
  'insult',
  'needl',
  'say',
  'lot',
  'cri',
  'involv',
  'apolog',
  'end',
  'lili',
  'said',
  'better',
  'know',
  'truth',
  'bf',
  'famili',
  'amaz',
  'support',
  'throughout',
  'famili',
  'decid',
  'offici',
  'cut',
  'contact',
  'ex',
  'brother',
  'lili',
  'adult',
  'need',
  'also',
  'invit',
  'along',
  'see',
  'ask',
  'go',
  'therapi',
  'ye',
  'therapist',
  'one',
  'suggest',
  'distanc',
  'lili',
  'parent',
  'year',
  'ago',
  'honestli',
  'wonder',
  'mental',
  'health',
  'cant',
  'say',
  'regret',
  'decis',
  'suicid',
  'back',
  'think',
  'regular',
  'contact',
  'wouldv',
  'possibl',
  'done',
  'good',
  'decid',
  'ill',
  'tri',
  'best',
  'involv',
  'lili',
  'life',
  'interact',
  'parent',
  'inord',
  'meet',
  'lili',
  'agre',
  'said',
  'also',
  'want',
  'get',
  'know',
  'better',
  'overal',
  'whole',
  'incid',
  'open',
  'lot',
  'old',
  'wound',
  'im',
  'glad',
  'happen',
  'need',
  'happen',
  'say',
  'hope',
  'lili',
  'probabl',
  'heal',
  'move',
  'live',
  'niec_lili',
  'lili_lili',
  'lili_result',
  'result_affair',
  'affair_ex',
  'ex_fiance',
  'fiance_brother',
  'brother_still',
  'still_togeth',
  'togeth_led',
  'led_believ',
  'believ_lili',
  'lili_mine',
  'mine_throughout',
  'throughout_entir',
  'entir_pregnanc',
  'pregnanc_almost',
  'almost_sign',
  'sign_birth',
  'birth_certif',
  'certif_ex',
  'ex_confess',
  'confess_guilt',
  'guilt_lili',
  'lili_probabl',
  'probabl_brother',
  'brother_dna',
  'dna_test',
  'test_lili',
  'lili_mine',
  'mine_teen',
  'teen_got',
  'got_accid',
  'accid_left',
  'left_infertil',
  'infertil_doctor',
  'doctor_said',
  'said_chanc',
  'chanc_father',
  'father_child',
  'child_slim',
  'slim_nonexist',
  'nonexist_imagin',
  'imagin_crush',
  'crush_felt',
  'felt_discov',
  'discov_im',
  'im_go',
  'go_father',
  'father_also',
  'also_betray',
  'betray_peopl',
  'peopl_love',
  'love_year',
  'year_sinc',
  'sinc_well',
  'well_im',
  'im_first',
  'first_famili',
  'famili_attend',
  'attend_univers',
  'univers_land',
  'land_high',
  'high_pay',
  'pay_job',
  'job_right',
  'right_graduat',
  'graduat_busi',
  'busi_invest',
  'invest_properti',
  'properti_sinc',
  'sinc_im',
  'im_singl',
  'singl_childless',
  'childless_spend',
  'spend_incom',
  'incom_howev',
  'howev_pleas',
  'pleas_ex',
  'ex_end',
  'end_marri',
  'marri_brother',
  'brother_im',
  'im_somewhat',
  'somewhat_cordial',
  'cordial_toward',
  'toward_cant',
  'cant_bring',
  'bring_fulli',
  'fulli_forgiv',
  'forgiv_although',
  'although_know',
  'know_lili',
  'lili_blameless',
  'blameless_whenev',
  'whenev_see',
  'see_im',
  'im_constantli',
  'constantli_remind',
  'remind_overjoy',
  'overjoy_hold',
  'hold_hospit',
  'hospit_think',
  'think_mine',
  'mine_cant',
  'cant_bare',
  'bare_look',
  'look_long',
  'long_visit',
  'visit_grow',
  'grow_take',
  'take_fun',
  'fun_trip',
  'trip_give',
  'give_lavish',
  'lavish_gift',
  'gift_like',
  'like_rest',
  'rest_niec',
  'niec_nephew',
  'nephew_mean',
  'mean_hate',
  'hate_admit',
  'admit_kept',
  'kept_distanc',
  'distanc_oldest',
  'oldest_nephew',
  'nephew_turn',
  'turn_decid',
  'decid_pay',
  'pay_colleg',
  'colleg_educ',
  'educ_sinc',
  'sinc_could',
  'could_efford',
  'efford_parent',
  'parent_even',
  'even_rent',
  'rent_one',
  'one_apart',
  'apart_cheap',
  'cheap_worri',
  'worri_money',
  'money_could',
  'could_focu',
  'focu_get',
  'get_educ',
  'educ_sinc',
  'sinc_thing',
  'thing_niec',
  'niec_last',
  'last_week',
  'week_lili',
  'lili_approach',
  'approach_famili',
  'famili_event',
  'event_inquir',
  'inquir_could',
  'could_pay',
  'pay_educ',
  'educ_told',
  'told_call',
  'call_jerk',
  'jerk_ask',
  'ask_distant',
  'distant_toward',
  'toward_parent',
  'parent_point',
  'point_even',
  'even_favor',
  'favor_rest',
  'rest_cousin',
  'cousin_told',
  'told_parent',
  'parent_enough',
  'enough_money',
  'money_afford',
  'afford_educ',
  'educ_ask',
  'ask_could',
  'could_possibl',
  'possibl_expect',
  'expect_ok',
  'ok_watch',
  'watch_ex',
  'ex_brother',
  'brother_affair',
  'affair_behind',
  'behind_back',
  'back_play',
  'play_happi',
  'happi_famili',
  'famili_front',
  'front_lili',
  'lili_got',
  'got_quiet',
  'quiet_rest',
  'rest_event',
  'event_left',
  'left_earli',
  'earli_later',
  'later_got',
  'got_call',
  'call_ex',
  'ex_yell',
  'yell_ruin',
  'ruin_famili',
  'famili_appar',
  'appar_brother',
  'brother_bother',
  'bother_tell',
  'tell_lili',
  'lili_year',
  'year_ago',
  'ago_know',
  'know_angri',
  'angri_decid',
  'decid_go',
  'go_live',
  'live_bf',
  'bf_famili',
  'famili_im',
  'im_start',
  'start_feel',
  'feel_guilti',
  'guilti_told',
  'told_truth',
  'truth_sinc',
  'sinc_affect',
  'affect_thought',
  'thought_would',
  'would_time',
  'time_grown',
  'grown_enough',
  'enough_know',
  'know_truth',
  'truth_think',
  'think_couldv',
  'couldv_lie',
  'lie_face',
  'face_even',
  'even_want',
  'want_aita',
  'aita_quick',
  'quick_editupd',
  'editupd_ask',
  'ask_hard',
  'hard_look',
  'look_lili',
  'lili_year',
  'year_coupl',
  'coupl_reason',
  'reason_sum',
  'sum_ex',
  'ex_began',
  'began_date',
  'date_broke',
  'broke_year',
  'year_knew',
  'knew_infertil',
  'infertil_issu',
  'issu_much',
  'much_want',
  'want_dad',
  'dad_still',
  'still_led',
  'led_believ',
  'believ_babi',
  'babi_mine',
  'mine_name',
  'name_lili',
  'lili_born',
  'born_sinc',
  'sinc_alway',
  'alway_like',
  'like_name',
  'name_want',
  'want_name',
  'name_daughter',
  'daughter_ex',
  'ex_chang',
  'chang_name',
  'name_even',
  'even_discov',
  'discov_mine',
  'mine_brother',
  'brother_look',
  'look_alik',
  'alik_lili',
  'lili_look',
  'look_like',
  'like_brother',
  'brother_result',
  'result_also',
  'also_look',
  'look_lot',
  'lot_like',
  'like_ex',
  'ex_tell',
  'tell_back',
  'back_father',
  'father_suspect',
  'suspect_thing',
  'thing_wit',
  'wit_child',
  'child_look',
  'look_like',
  'like_name',
  'name_chose',
  'chose_rais',
  'rais_woman',
  'woman_love',
  'love_long',
  'long_infertil',
  'infertil_realli',
  'realli_made',
  'made_imposs',
  'imposs_activ',
  'activ_part',
  'part_lili',
  'lili_life',
  'life_like',
  'like_cousin',
  'cousin_resent',
  'resent_sake',
  'sake_mental',
  'mental_health',
  'health_decid',
  'decid_listen',
  'listen_advic',
  'advic_text',
  'text_lili',
  'lili_ask',
  'ask_would',
  'would_like',
  'like_meet',
  'meet_convers',
  'convers_went',
  'went_sinc',
  'sinc_like',
  'like_said',
  'said_deserv',
  'deserv_answer',
  'answer_repli',
  'repli_yet',
  'yet_ill',
  'ill_updat',
  'updat_updat',
  'updat_ive',
  'ive_met',
  'met_lili',
  'lili_yesterday',
  'yesterday_told',
  'told_relationship',
  'relationship_mother',
  'mother_start',
  'start_went',
  'went_detail',
  'detail_accid',
  'accid_went',
  'went_cheat',
  'cheat_birth',
  'birth_got',
  'got_everyth',
  'everyth_ask',
  'ask_turn',
  'turn_told',
  'told_everyth',
  'everyth_parent',
  'parent_told',
  'told_grow',
  'grow_appar',
  'appar_told',
  'told_around',
  'around_time',
  'time_born',
  'born_miracl',
  'miracl_babi',
  'babi_name',
  'name_lili',
  'lili_die',
  'die_hospit',
  'hospit_sinc',
  'sinc_share',
  'share_name',
  'name_held',
  'held_sort',
  'sort_resent',
  'resent_toward',
  'toward_still',
  'still_process',
  'process_told',
  'told_feel',
  'feel_like',
  'like_twist',
  'twist_retel',
  'retel_actual',
  'actual_happen',
  'happen_insult',
  'insult_needl',
  'needl_say',
  'say_lot',
  'lot_cri',
  'cri_involv',
  'involv_apolog',
  'apolog_end',
  'end_lili',
  'lili_said',
  'said_better',
  'better_know',
  'know_truth',
  'truth_bf',
  'bf_famili',
  'famili_amaz',
  'amaz_support',
  'support_throughout',
  'throughout_famili',
  'famili_decid',
  'decid_offici',
  'offici_cut',
  'cut_contact',
  'contact_ex',
  'ex_brother',
  'brother_lili',
  'lili_adult',
  'adult_need',
  'need_also',
  'also_invit',
  'invit_along',
  'along_see',
  'see_ask',
  'ask_go',
  'go_therapi',
  'therapi_ye',
  'ye_therapist',
  'therapist_one',
  'one_suggest',
  'suggest_distanc',
  'distanc_lili',
  'lili_parent',
  'parent_year',
  'year_ago',
  'ago_honestli',
  'honestli_wonder',
  'wonder_mental',
  'mental_health',
  'health_cant',
  'cant_say',
  'say_regret',
  'regret_decis',
  'decis_suicid',
  'suicid_back',
  'back_think',
  'think_regular',
  'regular_contact',
  'contact_wouldv',
  'wouldv_possibl',
  'possibl_done',
  'done_good',
  'good_decid',
  'decid_ill',
  'ill_tri',
  'tri_best',
  'best_involv',
  'involv_lili',
  'lili_life',
  'life_interact',
  'interact_parent',
  'parent_inord',
  'inord_meet',
  'meet_lili',
  'lili_agre',
  'agre_said',
  'said_also',
  'also_want',
  'want_get',
  'get_know',
  'know_better',
  'better_overal',
  'overal_whole',
  'whole_incid',
  'incid_open',
  'open_lot',
  'lot_old',
  'old_wound',
  'wound_im',
  'im_glad',
  'glad_happen',
  'happen_need',
  'need_happen',
  'happen_say',
  'say_hope',
  'hope_lili',
  'lili_probabl',
  'probabl_heal',
  'heal_move',
  'move_live',
  'niec_lili_lili',
  'lili_lili_result',
  'lili_result_affair',
  'result_affair_ex',
  'affair_ex_fiance',
  ...],
 ['seen',
  'husband',
  'month',
  'stay',
  'sister',
  'promis',
  'would',
  'pick',
  'airport',
  'would',
  'spend',
  'time',
  'togeth',
  'sent',
  'brother',
  'instead',
  'upset',
  'even',
  'though',
  'brother-in-law',
  'told',
  'someth',
  'came',
  'instead',
  'ask',
  'could',
  'go',
  'get',
  'ice',
  'cream',
  'went',
  'home',
  'seem',
  'want',
  'go',
  'suggest',
  'take',
  'uber',
  'plan',
  'agre',
  'went',
  'got',
  'ice',
  'cream',
  'entir',
  'time',
  'phone',
  'felt',
  'like',
  'tri',
  'rush',
  'final',
  'got',
  'home',
  'husband',
  'annoy',
  'want',
  'know',
  'come',
  'home',
  'immedi',
  'said',
  'clear',
  'schedul',
  'even',
  'could',
  'spend',
  'time',
  'togeth',
  'like',
  'ask',
  'told',
  'assum',
  'busi',
  'sinc',
  'come',
  'airport',
  'still',
  'upset',
  'brother',
  'take',
  'get',
  'ice',
  'cream',
  'aita',
  'seen_husband',
  'husband_month',
  'month_stay',
  'stay_sister',
  'sister_promis',
  'promis_would',
  'would_pick',
  'pick_airport',
  'airport_would',
  'would_spend',
  'spend_time',
  'time_togeth',
  'togeth_sent',
  'sent_brother',
  'brother_instead',
  'instead_upset',
  'upset_even',
  'even_though',
  'though_brother-in-law',
  'brother-in-law_told',
  'told_someth',
  'someth_came',
  'came_instead',
  'instead_ask',
  'ask_could',
  'could_go',
  'go_get',
  'get_ice',
  'ice_cream',
  'cream_went',
  'went_home',
  'home_seem',
  'seem_want',
  'want_go',
  'go_suggest',
  'suggest_take',
  'take_uber',
  'uber_plan',
  'plan_agre',
  'agre_went',
  'went_got',
  'got_ice',
  'ice_cream',
  'cream_entir',
  'entir_time',
  'time_phone',
  'phone_felt',
  'felt_like',
  'like_tri',
  'tri_rush',
  'rush_final',
  'final_got',
  'got_home',
  'home_husband',
  'husband_annoy',
  'annoy_want',
  'want_know',
  'know_come',
  'come_home',
  'home_immedi',
  'immedi_said',
  'said_clear',
  'clear_schedul',
  'schedul_even',
  'even_could',
  'could_spend',
  'spend_time',
  'time_togeth',
  'togeth_like',
  'like_ask',
  'ask_told',
  'told_assum',
  'assum_busi',
  'busi_sinc',
  'sinc_come',
  'come_airport',
  'airport_still',
  'still_upset',
  'upset_brother',
  'brother_take',
  'take_get',
  'get_ice',
  'ice_cream',
  'cream_aita',
  'seen_husband_month',
  'husband_month_stay',
  'month_stay_sister',
  'stay_sister_promis',
  'sister_promis_would',
  'promis_would_pick',
  'would_pick_airport',
  'pick_airport_would',
  'airport_would_spend',
  'would_spend_time',
  'spend_time_togeth',
  'time_togeth_sent',
  'togeth_sent_brother',
  'sent_brother_instead',
  'brother_instead_upset',
  'instead_upset_even',
  'upset_even_though',
  'even_though_brother-in-law',
  'though_brother-in-law_told',
  'brother-in-law_told_someth',
  'told_someth_came',
  'someth_came_instead',
  'came_instead_ask',
  'instead_ask_could',
  'ask_could_go',
  'could_go_get',
  'go_get_ice',
  'get_ice_cream',
  'ice_cream_went',
  'cream_went_home',
  'went_home_seem',
  'home_seem_want',
  'seem_want_go',
  'want_go_suggest',
  'go_suggest_take',
  'suggest_take_uber',
  'take_uber_plan',
  'uber_plan_agre',
  'plan_agre_went',
  'agre_went_got',
  'went_got_ice',
  'got_ice_cream',
  'ice_cream_entir',
  'cream_entir_time',
  'entir_time_phone',
  'time_phone_felt',
  'phone_felt_like',
  'felt_like_tri',
  'like_tri_rush',
  'tri_rush_final',
  'rush_final_got',
  'final_got_home',
  'got_home_husband',
  'home_husband_annoy',
  'husband_annoy_want',
  'annoy_want_know',
  'want_know_come',
  'know_come_home',
  'come_home_immedi',
  'home_immedi_said',
  'immedi_said_clear',
  'said_clear_schedul',
  'clear_schedul_even',
  'schedul_even_could',
  'even_could_spend',
  'could_spend_time',
  'spend_time_togeth',
  'time_togeth_like',
  'togeth_like_ask',
  'like_ask_told',
  'ask_told_assum',
  'told_assum_busi',
  'assum_busi_sinc',
  'busi_sinc_come',
  'sinc_come_airport',
  'come_airport_still',
  'airport_still_upset',
  'still_upset_brother',
  'upset_brother_take',
  'brother_take_get',
  'take_get_ice',
  'get_ice_cream',
  'ice_cream_aita'],
 ['ex',
  'husband',
  'year',
  'old',
  'twin',
  'togeth',
  'due',
  'lot',
  'complic',
  'pregnanc',
  'got',
  'partial',
  'hysterectomi',
  'divorc',
  'pregnanc',
  'discov',
  'cheat',
  'good',
  'dad',
  'girlfriend',
  'pregnant',
  'cheat',
  'current',
  'girlfriend',
  'know',
  'wife',
  'time',
  'firmli',
  'believ',
  'run',
  'pretti',
  'success',
  'bake',
  'compani',
  'small',
  'town',
  'custom',
  'dessert',
  'includ',
  'gender',
  'reveal',
  'cake',
  'husband',
  'girlfriend',
  'call',
  'ask',
  'would',
  'gender',
  'reveal',
  'cake',
  'said',
  'would',
  'mean',
  'lot',
  'mother',
  'babi',
  'sibl',
  'made',
  'cake',
  'parti',
  'told',
  'think',
  'eventu',
  'told',
  'admittedli',
  'incred',
  'bitter',
  'ex',
  'cheat',
  'bedridden',
  'medic',
  'fragil',
  'pregnant',
  'children',
  'want',
  'involv',
  'celebr',
  'new',
  'child',
  'specifi',
  'said',
  'alright',
  'hung',
  'ex',
  'call',
  'told',
  'rude',
  'unreason',
  'complet',
  'unprofession',
  'put',
  'issu',
  'busi',
  'told',
  'allow',
  'refus',
  'servic',
  'anyon',
  'hung',
  'feel',
  'like',
  'let',
  'feel',
  'get',
  'way',
  'busi',
  'made',
  'cake',
  'like',
  'celebr',
  'hand',
  'feel',
  'like',
  'im',
  'allow',
  'refus',
  'busi',
  'howev',
  'see',
  'fit',
  'aita',
  'edit',
  'singl',
  'mother',
  'pleas',
  'misinterpret',
  'post',
  'sad',
  'singl',
  'mom',
  'bitter',
  'ex',
  'happi',
  'got',
  'marri',
  'novemb',
  'wonder',
  'woman',
  'husband',
  'joint',
  'custodi',
  'children',
  'great',
  'support',
  'system',
  'ye',
  'still',
  'bitter',
  'husband',
  'cheat',
  'bedridden',
  'scare',
  'babi',
  'ex_husband',
  'husband_year',
  'year_old',
  'old_twin',
  'twin_togeth',
  'togeth_due',
  'due_lot',
  'lot_complic',
  'complic_pregnanc',
  'pregnanc_got',
  'got_partial',
  'partial_hysterectomi',
  'hysterectomi_divorc',
  'divorc_pregnanc',
  'pregnanc_discov',
  'discov_cheat',
  'cheat_good',
  'good_dad',
  'dad_girlfriend',
  'girlfriend_pregnant',
  'pregnant_cheat',
  'cheat_current',
  'current_girlfriend',
  'girlfriend_know',
  'know_wife',
  'wife_time',
  'time_firmli',
  'firmli_believ',
  'believ_run',
  'run_pretti',
  'pretti_success',
  'success_bake',
  'bake_compani',
  'compani_small',
  'small_town',
  'town_custom',
  'custom_dessert',
  'dessert_includ',
  'includ_gender',
  'gender_reveal',
  'reveal_cake',
  'cake_husband',
  'husband_girlfriend',
  'girlfriend_call',
  'call_ask',
  'ask_would',
  'would_gender',
  'gender_reveal',
  'reveal_cake',
  'cake_said',
  'said_would',
  'would_mean',
  'mean_lot',
  'lot_mother',
  'mother_babi',
  'babi_sibl',
  'sibl_made',
  'made_cake',
  'cake_parti',
  'parti_told',
  'told_think',
  'think_eventu',
  'eventu_told',
  'told_admittedli',
  'admittedli_incred',
  'incred_bitter',
  'bitter_ex',
  'ex_cheat',
  'cheat_bedridden',
  'bedridden_medic',
  'medic_fragil',
  'fragil_pregnant',
  'pregnant_children',
  'children_want',
  'want_involv',
  'involv_celebr',
  'celebr_new',
  'new_child',
  'child_specifi',
  'specifi_said',
  'said_alright',
  'alright_hung',
  'hung_ex',
  'ex_call',
  'call_told',
  'told_rude',
  'rude_unreason',
  'unreason_complet',
  'complet_unprofession',
  'unprofession_put',
  'put_issu',
  'issu_busi',
  'busi_told',
  'told_allow',
  'allow_refus',
  'refus_servic',
  'servic_anyon',
  'anyon_hung',
  'hung_feel',
  'feel_like',
  'like_let',
  'let_feel',
  'feel_get',
  'get_way',
  'way_busi',
  'busi_made',
  'made_cake',
  'cake_like',
  'like_celebr',
  'celebr_hand',
  'hand_feel',
  'feel_like',
  'like_im',
  'im_allow',
  'allow_refus',
  'refus_busi',
  'busi_howev',
  'howev_see',
  'see_fit',
  'fit_aita',
  'aita_edit',
  'edit_singl',
  'singl_mother',
  'mother_pleas',
  'pleas_misinterpret',
  'misinterpret_post',
  'post_sad',
  'sad_singl',
  'singl_mom',
  'mom_bitter',
  'bitter_ex',
  'ex_happi',
  'happi_got',
  'got_marri',
  'marri_novemb',
  'novemb_wonder',
  'wonder_woman',
  'woman_husband',
  'husband_joint',
  'joint_custodi',
  'custodi_children',
  'children_great',
  'great_support',
  'support_system',
  'system_ye',
  'ye_still',
  'still_bitter',
  'bitter_husband',
  'husband_cheat',
  'cheat_bedridden',
  'bedridden_scare',
  'scare_babi',
  'ex_husband_year',
  'husband_year_old',
  'year_old_twin',
  'old_twin_togeth',
  'twin_togeth_due',
  'togeth_due_lot',
  'due_lot_complic',
  'lot_complic_pregnanc',
  'complic_pregnanc_got',
  'pregnanc_got_partial',
  'got_partial_hysterectomi',
  'partial_hysterectomi_divorc',
  'hysterectomi_divorc_pregnanc',
  'divorc_pregnanc_discov',
  'pregnanc_discov_cheat',
  'discov_cheat_good',
  'cheat_good_dad',
  'good_dad_girlfriend',
  'dad_girlfriend_pregnant',
  'girlfriend_pregnant_cheat',
  'pregnant_cheat_current',
  'cheat_current_girlfriend',
  'current_girlfriend_know',
  'girlfriend_know_wife',
  'know_wife_time',
  'wife_time_firmli',
  'time_firmli_believ',
  'firmli_believ_run',
  'believ_run_pretti',
  'run_pretti_success',
  'pretti_success_bake',
  'success_bake_compani',
  'bake_compani_small',
  'compani_small_town',
  'small_town_custom',
  'town_custom_dessert',
  'custom_dessert_includ',
  'dessert_includ_gender',
  'includ_gender_reveal',
  'gender_reveal_cake',
  'reveal_cake_husband',
  'cake_husband_girlfriend',
  'husband_girlfriend_call',
  'girlfriend_call_ask',
  'call_ask_would',
  'ask_would_gender',
  'would_gender_reveal',
  'gender_reveal_cake',
  'reveal_cake_said',
  'cake_said_would',
  'said_would_mean',
  'would_mean_lot',
  'mean_lot_mother',
  'lot_mother_babi',
  'mother_babi_sibl',
  'babi_sibl_made',
  'sibl_made_cake',
  'made_cake_parti',
  'cake_parti_told',
  'parti_told_think',
  'told_think_eventu',
  'think_eventu_told',
  'eventu_told_admittedli',
  'told_admittedli_incred',
  'admittedli_incred_bitter',
  'incred_bitter_ex',
  'bitter_ex_cheat',
  'ex_cheat_bedridden',
  'cheat_bedridden_medic',
  'bedridden_medic_fragil',
  'medic_fragil_pregnant',
  'fragil_pregnant_children',
  'pregnant_children_want',
  'children_want_involv',
  'want_involv_celebr',
  'involv_celebr_new',
  'celebr_new_child',
  'new_child_specifi',
  'child_specifi_said',
  'specifi_said_alright',
  'said_alright_hung',
  'alright_hung_ex',
  'hung_ex_call',
  'ex_call_told',
  'call_told_rude',
  'told_rude_unreason',
  'rude_unreason_complet',
  'unreason_complet_unprofession',
  'complet_unprofession_put',
  'unprofession_put_issu',
  'put_issu_busi',
  'issu_busi_told',
  'busi_told_allow',
  'told_allow_refus',
  'allow_refus_servic',
  'refus_servic_anyon',
  'servic_anyon_hung',
  'anyon_hung_feel',
  'hung_feel_like',
  'feel_like_let',
  'like_let_feel',
  'let_feel_get',
  'feel_get_way',
  'get_way_busi',
  'way_busi_made',
  'busi_made_cake',
  'made_cake_like',
  'cake_like_celebr',
  'like_celebr_hand',
  'celebr_hand_feel',
  'hand_feel_like',
  'feel_like_im',
  'like_im_allow',
  'im_allow_refus',
  'allow_refus_busi',
  'refus_busi_howev',
  'busi_howev_see',
  'howev_see_fit',
  'see_fit_aita',
  'fit_aita_edit',
  'aita_edit_singl',
  'edit_singl_mother',
  'singl_mother_pleas',
  'mother_pleas_misinterpret',
  'pleas_misinterpret_post',
  'misinterpret_post_sad',
  'post_sad_singl',
  'sad_singl_mom',
  'singl_mom_bitter',
  'mom_bitter_ex',
  'bitter_ex_happi',
  'ex_happi_got',
  'happi_got_marri',
  'got_marri_novemb',
  'marri_novemb_wonder',
  'novemb_wonder_woman',
  'wonder_woman_husband',
  'woman_husband_joint',
  'husband_joint_custodi',
  'joint_custodi_children',
  'custodi_children_great',
  'children_great_support',
  'great_support_system',
  'support_system_ye',
  'system_ye_still',
  'ye_still_bitter',
  'still_bitter_husband',
  'bitter_husband_cheat',
  'husband_cheat_bedridden',
  'cheat_bedridden_scare',
  'bedridden_scare_babi'],
 ['garag',
  'metr',
  'away',
  'neighbour',
  'bedroom',
  'babi',
  'sleep',
  'ive',
  'got',
  'roller',
  'door',
  'beep',
  'quietli',
  'four',
  'time',
  'within',
  'second',
  'arriv',
  'home',
  'push',
  'button',
  'quiet',
  'time',
  'cant',
  'hear',
  'sit',
  'room',
  'adjac',
  'garag',
  'partner',
  'come',
  'home',
  'sinc',
  'neighbour',
  'babi',
  'ive',
  'made',
  'effort',
  'consider',
  'nois',
  'despit',
  'alreadi',
  'sound',
  'proof',
  'rumpu',
  'room',
  'ive',
  'stop',
  'play',
  'drum',
  'pm',
  'ive',
  'also',
  'declin',
  'host',
  'friend',
  'outsid',
  'backyard',
  'due',
  'nois',
  'think',
  'ive',
  'consider',
  'appar',
  'get',
  'home',
  'work',
  'pm',
  'put',
  'car',
  'garag',
  'coupl',
  'week',
  'ago',
  'neighbour',
  'approach',
  'ask',
  'could',
  'wait',
  'morn',
  'put',
  'car',
  'away',
  'declin',
  'break',
  'car',
  'street',
  'late',
  'car',
  'also',
  'one',
  'target',
  'thiev',
  'lot',
  'part',
  'expens',
  'enthusiast',
  'car',
  'apologis',
  'firm',
  'tell',
  'circumst',
  'leav',
  'car',
  'overnight',
  'also',
  'know',
  'sleep',
  'window',
  'open',
  'face',
  'garag',
  'thought',
  'would',
  'weird',
  'bring',
  'suggest',
  'close',
  'window',
  'im',
  'also',
  'confus',
  'market',
  'exhaust',
  'car',
  'louder',
  'origin',
  'noth',
  'say',
  'coupl',
  'night',
  'ago',
  'came',
  'home',
  'husband',
  'car',
  'block',
  'driveway',
  'enough',
  'get',
  'car',
  'kind',
  'useless',
  'push',
  'button',
  'even',
  'reach',
  'driveway',
  'beep',
  'anyway',
  'come',
  'car',
  'tow',
  'done',
  'sinc',
  'today',
  'saturday',
  'decid',
  'play',
  'drum',
  'around',
  'lunch',
  'time',
  'sound',
  'proof',
  'rumpu',
  'room',
  'hear',
  'minim',
  'vibrat',
  'kick',
  'outsid',
  'rear',
  'properti',
  'quit',
  'far',
  'away',
  'neighbour',
  'still',
  'someth',
  'say',
  'wife',
  'came',
  'basic',
  'said',
  'put',
  'nois',
  'long',
  'enough',
  'exhaust',
  'due',
  'kid',
  'never',
  'sleep',
  'thank',
  'nois',
  'make',
  'definit',
  'still',
  'mif',
  'driveway',
  'block',
  'situat',
  'night',
  'snap',
  'littl',
  'tell',
  'id',
  'consider',
  'enough',
  'alreadi',
  'made',
  'concess',
  'term',
  'nois',
  'said',
  'within',
  'right',
  'play',
  'music',
  'pm',
  'council',
  'ive',
  'cut',
  'pm',
  'consider',
  'kid',
  'said',
  'shell',
  'get',
  'done',
  'cater',
  'famili',
  'garag_metr',
  'metr_away',
  'away_neighbour',
  'neighbour_bedroom',
  'bedroom_babi',
  'babi_sleep',
  'sleep_ive',
  'ive_got',
  'got_roller',
  'roller_door',
  'door_beep',
  'beep_quietli',
  'quietli_four',
  'four_time',
  'time_within',
  'within_second',
  'second_arriv',
  'arriv_home',
  'home_push',
  'push_button',
  'button_quiet',
  'quiet_time',
  'time_cant',
  'cant_hear',
  'hear_sit',
  'sit_room',
  'room_adjac',
  'adjac_garag',
  'garag_partner',
  'partner_come',
  'come_home',
  'home_sinc',
  'sinc_neighbour',
  'neighbour_babi',
  'babi_ive',
  'ive_made',
  'made_effort',
  'effort_consider',
  'consider_nois',
  'nois_despit',
  'despit_alreadi',
  'alreadi_sound',
  'sound_proof',
  'proof_rumpu',
  'rumpu_room',
  'room_ive',
  'ive_stop',
  'stop_play',
  'play_drum',
  'drum_pm',
  'pm_ive',
  'ive_also',
  'also_declin',
  'declin_host',
  'host_friend',
  'friend_outsid',
  'outsid_backyard',
  'backyard_due',
  'due_nois',
  'nois_think',
  'think_ive',
  'ive_consider',
  'consider_appar',
  'appar_get',
  'get_home',
  'home_work',
  'work_pm',
  'pm_put',
  'put_car',
  'car_garag',
  'garag_coupl',
  'coupl_week',
  'week_ago',
  'ago_neighbour',
  'neighbour_approach',
  'approach_ask',
  'ask_could',
  'could_wait',
  'wait_morn',
  'morn_put',
  'put_car',
  'car_away',
  'away_declin',
  'declin_break',
  'break_car',
  'car_street',
  'street_late',
  'late_car',
  'car_also',
  'also_one',
  'one_target',
  'target_thiev',
  'thiev_lot',
  'lot_part',
  'part_expens',
  'expens_enthusiast',
  'enthusiast_car',
  'car_apologis',
  'apologis_firm',
  'firm_tell',
  'tell_circumst',
  'circumst_leav',
  'leav_car',
  'car_overnight',
  'overnight_also',
  'also_know',
  'know_sleep',
  'sleep_window',
  'window_open',
  'open_face',
  'face_garag',
  'garag_thought',
  'thought_would',
  'would_weird',
  'weird_bring',
  'bring_suggest',
  'suggest_close',
  'close_window',
  'window_im',
  'im_also',
  'also_confus',
  'confus_market',
  'market_exhaust',
  'exhaust_car',
  'car_louder',
  'louder_origin',
  'origin_noth',
  'noth_say',
  'say_coupl',
  'coupl_night',
  'night_ago',
  'ago_came',
  'came_home',
  'home_husband',
  'husband_car',
  'car_block',
  'block_driveway',
  'driveway_enough',
  'enough_get',
  'get_car',
  'car_kind',
  'kind_useless',
  'useless_push',
  'push_button',
  'button_even',
  'even_reach',
  'reach_driveway',
  'driveway_beep',
  'beep_anyway',
  'anyway_come',
  'come_car',
  'car_tow',
  'tow_done',
  'done_sinc',
  'sinc_today',
  'today_saturday',
  'saturday_decid',
  'decid_play',
  'play_drum',
  'drum_around',
  'around_lunch',
  'lunch_time',
  'time_sound',
  'sound_proof',
  'proof_rumpu',
  'rumpu_room',
  'room_hear',
  'hear_minim',
  'minim_vibrat',
  'vibrat_kick',
  'kick_outsid',
  'outsid_rear',
  'rear_properti',
  'properti_quit',
  'quit_far',
  'far_away',
  'away_neighbour',
  'neighbour_still',
  'still_someth',
  'someth_say',
  'say_wife',
  'wife_came',
  'came_basic',
  'basic_said',
  'said_put',
  'put_nois',
  'nois_long',
  'long_enough',
  'enough_exhaust',
  'exhaust_due',
  'due_kid',
  'kid_never',
  'never_sleep',
  'sleep_thank',
  'thank_nois',
  'nois_make',
  'make_definit',
  'definit_still',
  'still_mif',
  'mif_driveway',
  'driveway_block',
  'block_situat',
  'situat_night',
  'night_snap',
  'snap_littl',
  'littl_tell',
  'tell_id',
  'id_consider',
  'consider_enough',
  'enough_alreadi',
  'alreadi_made',
  'made_concess',
  'concess_term',
  'term_nois',
  'nois_said',
  'said_within',
  'within_right',
  'right_play',
  'play_music',
  'music_pm',
  'pm_council',
  'council_ive',
  'ive_cut',
  'cut_pm',
  'pm_consider',
  'consider_kid',
  'kid_said',
  'said_shell',
  'shell_get',
  'get_done',
  'done_cater',
  'cater_famili',
  'garag_metr_away',
  'metr_away_neighbour',
  'away_neighbour_bedroom',
  'neighbour_bedroom_babi',
  'bedroom_babi_sleep',
  'babi_sleep_ive',
  'sleep_ive_got',
  'ive_got_roller',
  'got_roller_door',
  'roller_door_beep',
  'door_beep_quietli',
  'beep_quietli_four',
  'quietli_four_time',
  'four_time_within',
  'time_within_second',
  'within_second_arriv',
  'second_arriv_home',
  'arriv_home_push',
  'home_push_button',
  'push_button_quiet',
  'button_quiet_time',
  'quiet_time_cant',
  'time_cant_hear',
  'cant_hear_sit',
  'hear_sit_room',
  'sit_room_adjac',
  'room_adjac_garag',
  'adjac_garag_partner',
  'garag_partner_come',
  'partner_come_home',
  'come_home_sinc',
  'home_sinc_neighbour',
  'sinc_neighbour_babi',
  'neighbour_babi_ive',
  'babi_ive_made',
  'ive_made_effort',
  'made_effort_consider',
  'effort_consider_nois',
  'consider_nois_despit',
  'nois_despit_alreadi',
  'despit_alreadi_sound',
  'alreadi_sound_proof',
  'sound_proof_rumpu',
  'proof_rumpu_room',
  'rumpu_room_ive',
  'room_ive_stop',
  'ive_stop_play',
  'stop_play_drum',
  'play_drum_pm',
  'drum_pm_ive',
  'pm_ive_also',
  'ive_also_declin',
  'also_declin_host',
  'declin_host_friend',
  'host_friend_outsid',
  'friend_outsid_backyard',
  'outsid_backyard_due',
  'backyard_due_nois',
  'due_nois_think',
  'nois_think_ive',
  'think_ive_consider',
  'ive_consider_appar',
  'consider_appar_get',
  'appar_get_home',
  'get_home_work',
  'home_work_pm',
  'work_pm_put',
  'pm_put_car',
  'put_car_garag',
  'car_garag_coupl',
  'garag_coupl_week',
  'coupl_week_ago',
  'week_ago_neighbour',
  'ago_neighbour_approach',
  'neighbour_approach_ask',
  'approach_ask_could',
  'ask_could_wait',
  'could_wait_morn',
  'wait_morn_put',
  'morn_put_car',
  'put_car_away',
  'car_away_declin',
  'away_declin_break',
  'declin_break_car',
  'break_car_street',
  'car_street_late',
  'street_late_car',
  'late_car_also',
  'car_also_one',
  'also_one_target',
  'one_target_thiev',
  'target_thiev_lot',
  'thiev_lot_part',
  'lot_part_expens',
  'part_expens_enthusiast',
  'expens_enthusiast_car',
  'enthusiast_car_apologis',
  'car_apologis_firm',
  'apologis_firm_tell',
  'firm_tell_circumst',
  'tell_circumst_leav',
  'circumst_leav_car',
  'leav_car_overnight',
  'car_overnight_also',
  'overnight_also_know',
  'also_know_sleep',
  'know_sleep_window',
  'sleep_window_open',
  'window_open_face',
  'open_face_garag',
  'face_garag_thought',
  'garag_thought_would',
  'thought_would_weird',
  'would_weird_bring',
  'weird_bring_suggest',
  'bring_suggest_close',
  'suggest_close_window',
  'close_window_im',
  'window_im_also',
  'im_also_confus',
  'also_confus_market',
  'confus_market_exhaust',
  'market_exhaust_car',
  'exhaust_car_louder',
  'car_louder_origin',
  'louder_origin_noth',
  'origin_noth_say',
  'noth_say_coupl',
  'say_coupl_night',
  'coupl_night_ago',
  'night_ago_came',
  'ago_came_home',
  'came_home_husband',
  'home_husband_car',
  'husband_car_block',
  'car_block_driveway',
  'block_driveway_enough',
  'driveway_enough_get',
  'enough_get_car',
  'get_car_kind',
  'car_kind_useless',
  'kind_useless_push',
  'useless_push_button',
  'push_button_even',
  'button_even_reach',
  'even_reach_driveway',
  'reach_driveway_beep',
  'driveway_beep_anyway',
  'beep_anyway_come',
  'anyway_come_car',
  'come_car_tow',
  'car_tow_done',
  'tow_done_sinc',
  'done_sinc_today',
  'sinc_today_saturday',
  'today_saturday_decid',
  'saturday_decid_play',
  'decid_play_drum',
  'play_drum_around',
  'drum_around_lunch',
  'around_lunch_time',
  'lunch_time_sound',
  'time_sound_proof',
  'sound_proof_rumpu',
  'proof_rumpu_room',
  'rumpu_room_hear',
  'room_hear_minim',
  'hear_minim_vibrat',
  'minim_vibrat_kick',
  'vibrat_kick_outsid',
  'kick_outsid_rear',
  'outsid_rear_properti',
  'rear_properti_quit',
  'properti_quit_far',
  'quit_far_away',
  'far_away_neighbour',
  'away_neighbour_still',
  'neighbour_still_someth',
  'still_someth_say',
  'someth_say_wife',
  'say_wife_came',
  'wife_came_basic',
  'came_basic_said',
  'basic_said_put',
  'said_put_nois',
  'put_nois_long',
  'nois_long_enough',
  'long_enough_exhaust',
  'enough_exhaust_due',
  'exhaust_due_kid',
  'due_kid_never',
  'kid_never_sleep',
  'never_sleep_thank',
  'sleep_thank_nois',
  'thank_nois_make',
  'nois_make_definit',
  'make_definit_still',
  'definit_still_mif',
  'still_mif_driveway',
  'mif_driveway_block',
  'driveway_block_situat',
  'block_situat_night',
  'situat_night_snap',
  'night_snap_littl',
  'snap_littl_tell',
  'littl_tell_id',
  'tell_id_consider',
  'id_consider_enough',
  'consider_enough_alreadi',
  'enough_alreadi_made',
  'alreadi_made_concess',
  'made_concess_term',
  'concess_term_nois',
  'term_nois_said',
  'nois_said_within',
  'said_within_right',
  'within_right_play',
  'right_play_music',
  'play_music_pm',
  'music_pm_council',
  'pm_council_ive',
  'council_ive_cut',
  'ive_cut_pm',
  'cut_pm_consider',
  'pm_consider_kid',
  'consider_kid_said',
  'kid_said_shell',
  'said_shell_get',
  'shell_get_done',
  'get_done_cater',
  'done_cater_famili'],
 ['alright',
  'sonm',
  'ex',
  'husband',
  'got',
  'divorc',
  'emot',
  'affair',
  'turn',
  'physic',
  'kid',
  'ap',
  'singl',
  'dad',
  'atm',
  'ap',
  'left',
  'son',
  'goe',
  'hous',
  'weekend',
  'sometim',
  'kid',
  'come',
  'hous',
  'son',
  'somewhat',
  'friend',
  'realli',
  'mind',
  'problem',
  'im',
  'plan',
  'take',
  'son',
  'disney',
  'ive',
  'save',
  'believ',
  'go',
  'least',
  'life',
  'experi',
  'well',
  'good',
  'grade',
  'whole',
  'semest',
  'believ',
  'son',
  'mustv',
  'told',
  'half',
  'brother',
  'ex',
  'husband',
  'call',
  'ask',
  'day',
  'im',
  'plan',
  'leav',
  'drive',
  'confus',
  'initi',
  'realiz',
  'talk',
  'told',
  'gon',
  'na',
  'trip',
  'son',
  'start',
  'get',
  'mad',
  'accus',
  'favor',
  'son',
  'half',
  'sibl',
  'tri',
  'petti',
  'past',
  'action',
  'told',
  'least',
  'offer',
  'son',
  'go',
  'told',
  'gon',
  'na',
  'pay',
  'anoth',
  'plane',
  'ticket',
  'suppli',
  'son',
  'want',
  'go',
  'need',
  'pay',
  'hang',
  'could',
  'say',
  'anyth',
  'els',
  'son',
  'say',
  'dad',
  '‘',
  'disappoint',
  'decis',
  'go',
  'tri',
  '‘',
  'chang',
  'mind',
  'half',
  'sibl',
  'could',
  'fun',
  'remark',
  'ex',
  'friend',
  'heard',
  'situat',
  'say',
  'im',
  'ta',
  'let',
  'brother',
  'go',
  'trip',
  'well',
  'im',
  'selfish',
  'petti',
  'im',
  'start',
  'reconsid',
  'everyth',
  'relent',
  'want',
  'outsid',
  'opinion',
  'aita',
  'alright_sonm',
  'sonm_ex',
  'ex_husband',
  'husband_got',
  'got_divorc',
  'divorc_emot',
  'emot_affair',
  'affair_turn',
  'turn_physic',
  'physic_kid',
  'kid_ap',
  'ap_singl',
  'singl_dad',
  'dad_atm',
  'atm_ap',
  'ap_left',
  'left_son',
  'son_goe',
  'goe_hous',
  'hous_weekend',
  'weekend_sometim',
  'sometim_kid',
  'kid_come',
  'come_hous',
  'hous_son',
  'son_somewhat',
  'somewhat_friend',
  'friend_realli',
  'realli_mind',
  'mind_problem',
  'problem_im',
  'im_plan',
  'plan_take',
  'take_son',
  'son_disney',
  'disney_ive',
  'ive_save',
  'save_believ',
  'believ_go',
  'go_least',
  'least_life',
  'life_experi',
  'experi_well',
  'well_good',
  'good_grade',
  'grade_whole',
  'whole_semest',
  'semest_believ',
  'believ_son',
  'son_mustv',
  'mustv_told',
  'told_half',
  'half_brother',
  'brother_ex',
  'ex_husband',
  'husband_call',
  'call_ask',
  'ask_day',
  'day_im',
  'im_plan',
  'plan_leav',
  'leav_drive',
  'drive_confus',
  'confus_initi',
  'initi_realiz',
  'realiz_talk',
  'talk_told',
  'told_gon',
  'gon_na',
  'na_trip',
  'trip_son',
  'son_start',
  'start_get',
  'get_mad',
  'mad_accus',
  'accus_favor',
  'favor_son',
  'son_half',
  'half_sibl',
  'sibl_tri',
  'tri_petti',
  'petti_past',
  'past_action',
  'action_told',
  'told_least',
  'least_offer',
  'offer_son',
  'son_go',
  'go_told',
  'told_gon',
  'gon_na',
  'na_pay',
  'pay_anoth',
  'anoth_plane',
  'plane_ticket',
  'ticket_suppli',
  'suppli_son',
  'son_want',
  'want_go',
  'go_need',
  'need_pay',
  'pay_hang',
  'hang_could',
  'could_say',
  'say_anyth',
  'anyth_els',
  'els_son',
  'son_say',
  'say_dad',
  'dad_‘',
  '‘_disappoint',
  'disappoint_decis',
  'decis_go',
  'go_tri',
  'tri_‘',
  '‘_chang',
  'chang_mind',
  'mind_half',
  'half_sibl',
  'sibl_could',
  'could_fun',
  'fun_remark',
  'remark_ex',
  'ex_friend',
  'friend_heard',
  'heard_situat',
  'situat_say',
  'say_im',
  'im_ta',
  'ta_let',
  'let_brother',
  'brother_go',
  'go_trip',
  'trip_well',
  'well_im',
  'im_selfish',
  'selfish_petti',
  'petti_im',
  'im_start',
  'start_reconsid',
  'reconsid_everyth',
  'everyth_relent',
  'relent_want',
  'want_outsid',
  'outsid_opinion',
  'opinion_aita',
  'alright_sonm_ex',
  'sonm_ex_husband',
  'ex_husband_got',
  'husband_got_divorc',
  'got_divorc_emot',
  'divorc_emot_affair',
  'emot_affair_turn',
  'affair_turn_physic',
  'turn_physic_kid',
  'physic_kid_ap',
  'kid_ap_singl',
  'ap_singl_dad',
  'singl_dad_atm',
  'dad_atm_ap',
  'atm_ap_left',
  'ap_left_son',
  'left_son_goe',
  'son_goe_hous',
  'goe_hous_weekend',
  'hous_weekend_sometim',
  'weekend_sometim_kid',
  'sometim_kid_come',
  'kid_come_hous',
  'come_hous_son',
  'hous_son_somewhat',
  'son_somewhat_friend',
  'somewhat_friend_realli',
  'friend_realli_mind',
  'realli_mind_problem',
  'mind_problem_im',
  'problem_im_plan',
  'im_plan_take',
  'plan_take_son',
  'take_son_disney',
  'son_disney_ive',
  'disney_ive_save',
  'ive_save_believ',
  'save_believ_go',
  'believ_go_least',
  'go_least_life',
  'least_life_experi',
  'life_experi_well',
  'experi_well_good',
  'well_good_grade',
  'good_grade_whole',
  'grade_whole_semest',
  'whole_semest_believ',
  'semest_believ_son',
  'believ_son_mustv',
  'son_mustv_told',
  'mustv_told_half',
  'told_half_brother',
  'half_brother_ex',
  'brother_ex_husband',
  'ex_husband_call',
  'husband_call_ask',
  'call_ask_day',
  'ask_day_im',
  'day_im_plan',
  'im_plan_leav',
  'plan_leav_drive',
  'leav_drive_confus',
  'drive_confus_initi',
  'confus_initi_realiz',
  'initi_realiz_talk',
  'realiz_talk_told',
  'talk_told_gon',
  'told_gon_na',
  'gon_na_trip',
  'na_trip_son',
  'trip_son_start',
  'son_start_get',
  'start_get_mad',
  'get_mad_accus',
  'mad_accus_favor',
  'accus_favor_son',
  'favor_son_half',
  'son_half_sibl',
  'half_sibl_tri',
  'sibl_tri_petti',
  'tri_petti_past',
  'petti_past_action',
  'past_action_told',
  'action_told_least',
  'told_least_offer',
  'least_offer_son',
  'offer_son_go',
  'son_go_told',
  'go_told_gon',
  'told_gon_na',
  'gon_na_pay',
  'na_pay_anoth',
  'pay_anoth_plane',
  'anoth_plane_ticket',
  'plane_ticket_suppli',
  'ticket_suppli_son',
  'suppli_son_want',
  'son_want_go',
  'want_go_need',
  'go_need_pay',
  'need_pay_hang',
  'pay_hang_could',
  'hang_could_say',
  'could_say_anyth',
  'say_anyth_els',
  'anyth_els_son',
  'els_son_say',
  'son_say_dad',
  'say_dad_‘',
  'dad_‘_disappoint',
  '‘_disappoint_decis',
  'disappoint_decis_go',
  'decis_go_tri',
  'go_tri_‘',
  'tri_‘_chang',
  '‘_chang_mind',
  'chang_mind_half',
  'mind_half_sibl',
  'half_sibl_could',
  'sibl_could_fun',
  'could_fun_remark',
  'fun_remark_ex',
  'remark_ex_friend',
  'ex_friend_heard',
  'friend_heard_situat',
  'heard_situat_say',
  'situat_say_im',
  'say_im_ta',
  'im_ta_let',
  'ta_let_brother',
  'let_brother_go',
  'brother_go_trip',
  'go_trip_well',
  'trip_well_im',
  'well_im_selfish',
  'im_selfish_petti',
  'selfish_petti_im',
  'petti_im_start',
  'im_start_reconsid',
  'start_reconsid_everyth',
  'reconsid_everyth_relent',
  'everyth_relent_want',
  'relent_want_outsid',
  'want_outsid_opinion',
  'outsid_opinion_aita'],
 ['date',
  'max',
  'month',
  'nose',
  'job',
  'broke',
  'nose',
  'twice',
  'kid',
  'left',
  'larg',
  'bump',
  'breast',
  'augment',
  'bump',
  'two',
  'cup',
  'size',
  'life',
  'long',
  'insecur',
  'bulli',
  'realli',
  'reliev',
  'get',
  'done',
  'onto',
  'present',
  'met',
  'max',
  'friend',
  'thing',
  'great',
  'last',
  'night',
  'stroll',
  'social',
  'media',
  'sofa',
  'stop',
  'old',
  'classmat',
  'vacat',
  'photo',
  'wore',
  'bikini',
  'frankli',
  'obviou',
  'implant',
  'look',
  'great',
  'happi',
  'tell',
  'max',
  'glanc',
  'moment',
  'said',
  'gross',
  'ask',
  'deal',
  'said',
  'women',
  'get',
  'implant',
  'surgeri',
  'huge',
  'turn',
  'guy',
  'men',
  'prefer',
  'natur',
  'two',
  'balloon',
  'insecur',
  'look',
  'help',
  'laugh',
  'said',
  'turn',
  'got',
  'confus',
  'ask',
  'meant',
  'inform',
  'procedur',
  'done',
  'kept',
  'deni',
  'say',
  'joke',
  'show',
  'old',
  'photo',
  'got',
  'quiet',
  'left',
  'shortli',
  'got',
  'text',
  'say',
  'disclos',
  'first',
  'date',
  'led',
  'need',
  'reconsid',
  'thing',
  'next',
  'day',
  'heard',
  'anyth',
  'im',
  'bewild',
  'aita',
  'edit',
  'alright',
  'yall',
  'got',
  'text',
  'minut',
  'ago',
  'ask',
  'meet',
  'think',
  'want',
  'continu',
  'relationship',
  'want',
  'talk',
  'thing',
  'comment',
  'think',
  'sent',
  'back',
  'along',
  'line',
  'reaction',
  'made',
  'realiz',
  'partner',
  'im',
  'look',
  'ive',
  'decid',
  'continu',
  'relationship',
  'yeah',
  'im',
  'singl',
  'kind',
  'confus',
  'mention',
  'futur',
  'date',
  'offici',
  'weed',
  'like',
  'even',
  'bring',
  'oh',
  'well',
  'like',
  'im',
  'content',
  'natur',
  'unnatur',
  'part',
  'ill',
  'find',
  'someon',
  'huge',
  'hang',
  'plastic',
  'surgeri',
  'edit',
  'woke',
  'way',
  'repli',
  'comment',
  'got',
  'overnight',
  'thank',
  'everybodi',
  'opinion',
  'thank',
  'everyon',
  'wish',
  'well',
  'sad',
  'plenti',
  'good',
  'time',
  'month',
  'hope',
  'one',
  'ill',
  'alright',
  'time',
  'self-dat',
  'cheer',
  'edit',
  'final',
  'repli',
  'text',
  'hope',
  'could',
  'start',
  'honest',
  'begin',
  'guess',
  'one',
  'us',
  'matur',
  'enough',
  'look',
  'past',
  'shortcom',
  'relationship',
  'im',
  'glad',
  'reveal',
  'got',
  'involv',
  'goodby',
  'good',
  'luck',
  'find',
  'someon',
  'caus',
  'real',
  'man',
  'would',
  'respect',
  'someon',
  'cant',
  'even',
  'respect',
  'bodi',
  'wow',
  'comfort',
  'decis',
  'im',
  'extra',
  'comfort',
  'lmfao',
  'block',
  'bye',
  '✌️he',
  'never',
  'deserv',
  'limit',
  'edit',
  'set',
  'date_max',
  'max_month',
  'month_nose',
  'nose_job',
  'job_broke',
  'broke_nose',
  'nose_twice',
  'twice_kid',
  'kid_left',
  'left_larg',
  'larg_bump',
  'bump_breast',
  'breast_augment',
  'augment_bump',
  'bump_two',
  'two_cup',
  'cup_size',
  'size_life',
  'life_long',
  'long_insecur',
  'insecur_bulli',
  'bulli_realli',
  'realli_reliev',
  'reliev_get',
  'get_done',
  'done_onto',
  'onto_present',
  'present_met',
  'met_max',
  'max_friend',
  'friend_thing',
  'thing_great',
  'great_last',
  'last_night',
  'night_stroll',
  'stroll_social',
  'social_media',
  'media_sofa',
  'sofa_stop',
  'stop_old',
  'old_classmat',
  'classmat_vacat',
  'vacat_photo',
  'photo_wore',
  'wore_bikini',
  'bikini_frankli',
  'frankli_obviou',
  'obviou_implant',
  'implant_look',
  'look_great',
  'great_happi',
  'happi_tell',
  'tell_max',
  'max_glanc',
  'glanc_moment',
  'moment_said',
  'said_gross',
  'gross_ask',
  'ask_deal',
  'deal_said',
  'said_women',
  'women_get',
  'get_implant',
  'implant_surgeri',
  'surgeri_huge',
  'huge_turn',
  'turn_guy',
  'guy_men',
  'men_prefer',
  'prefer_natur',
  'natur_two',
  'two_balloon',
  'balloon_insecur',
  'insecur_look',
  'look_help',
  'help_laugh',
  'laugh_said',
  'said_turn',
  'turn_got',
  'got_confus',
  'confus_ask',
  'ask_meant',
  'meant_inform',
  'inform_procedur',
  'procedur_done',
  'done_kept',
  'kept_deni',
  'deni_say',
  'say_joke',
  'joke_show',
  'show_old',
  'old_photo',
  'photo_got',
  'got_quiet',
  'quiet_left',
  'left_shortli',
  'shortli_got',
  'got_text',
  'text_say',
  'say_disclos',
  'disclos_first',
  'first_date',
  'date_led',
  'led_need',
  'need_reconsid',
  'reconsid_thing',
  'thing_next',
  'next_day',
  'day_heard',
  'heard_anyth',
  'anyth_im',
  'im_bewild',
  'bewild_aita',
  'aita_edit',
  'edit_alright',
  'alright_yall',
  'yall_got',
  'got_text',
  'text_minut',
  'minut_ago',
  'ago_ask',
  'ask_meet',
  'meet_think',
  'think_want',
  'want_continu',
  'continu_relationship',
  'relationship_want',
  'want_talk',
  'talk_thing',
  'thing_comment',
  'comment_think',
  'think_sent',
  'sent_back',
  'back_along',
  'along_line',
  'line_reaction',
  'reaction_made',
  'made_realiz',
  'realiz_partner',
  'partner_im',
  'im_look',
  'look_ive',
  'ive_decid',
  'decid_continu',
  'continu_relationship',
  'relationship_yeah',
  'yeah_im',
  'im_singl',
  'singl_kind',
  'kind_confus',
  'confus_mention',
  'mention_futur',
  'futur_date',
  'date_offici',
  'offici_weed',
  'weed_like',
  'like_even',
  'even_bring',
  'bring_oh',
  'oh_well',
  'well_like',
  'like_im',
  'im_content',
  'content_natur',
  'natur_unnatur',
  'unnatur_part',
  'part_ill',
  'ill_find',
  'find_someon',
  'someon_huge',
  'huge_hang',
  'hang_plastic',
  'plastic_surgeri',
  'surgeri_edit',
  'edit_woke',
  'woke_way',
  'way_repli',
  'repli_comment',
  'comment_got',
  'got_overnight',
  'overnight_thank',
  'thank_everybodi',
  'everybodi_opinion',
  'opinion_thank',
  'thank_everyon',
  'everyon_wish',
  'wish_well',
  'well_sad',
  'sad_plenti',
  'plenti_good',
  'good_time',
  'time_month',
  'month_hope',
  'hope_one',
  'one_ill',
  'ill_alright',
  'alright_time',
  'time_self-dat',
  'self-dat_cheer',
  'cheer_edit',
  'edit_final',
  'final_repli',
  'repli_text',
  'text_hope',
  'hope_could',
  'could_start',
  'start_honest',
  'honest_begin',
  'begin_guess',
  'guess_one',
  'one_us',
  'us_matur',
  'matur_enough',
  'enough_look',
  'look_past',
  'past_shortcom',
  'shortcom_relationship',
  'relationship_im',
  'im_glad',
  'glad_reveal',
  'reveal_got',
  'got_involv',
  'involv_goodby',
  'goodby_good',
  'good_luck',
  'luck_find',
  'find_someon',
  'someon_caus',
  'caus_real',
  'real_man',
  'man_would',
  'would_respect',
  'respect_someon',
  'someon_cant',
  'cant_even',
  'even_respect',
  'respect_bodi',
  'bodi_wow',
  'wow_comfort',
  'comfort_decis',
  'decis_im',
  'im_extra',
  'extra_comfort',
  'comfort_lmfao',
  'lmfao_block',
  'block_bye',
  'bye_✌️he',
  '✌️he_never',
  'never_deserv',
  'deserv_limit',
  'limit_edit',
  'edit_set',
  'date_max_month',
  'max_month_nose',
  'month_nose_job',
  'nose_job_broke',
  'job_broke_nose',
  'broke_nose_twice',
  'nose_twice_kid',
  'twice_kid_left',
  'kid_left_larg',
  'left_larg_bump',
  'larg_bump_breast',
  'bump_breast_augment',
  'breast_augment_bump',
  'augment_bump_two',
  'bump_two_cup',
  'two_cup_size',
  'cup_size_life',
  'size_life_long',
  'life_long_insecur',
  'long_insecur_bulli',
  'insecur_bulli_realli',
  'bulli_realli_reliev',
  'realli_reliev_get',
  'reliev_get_done',
  'get_done_onto',
  'done_onto_present',
  'onto_present_met',
  'present_met_max',
  'met_max_friend',
  'max_friend_thing',
  'friend_thing_great',
  'thing_great_last',
  'great_last_night',
  'last_night_stroll',
  'night_stroll_social',
  'stroll_social_media',
  'social_media_sofa',
  'media_sofa_stop',
  'sofa_stop_old',
  'stop_old_classmat',
  'old_classmat_vacat',
  'classmat_vacat_photo',
  'vacat_photo_wore',
  'photo_wore_bikini',
  'wore_bikini_frankli',
  'bikini_frankli_obviou',
  'frankli_obviou_implant',
  'obviou_implant_look',
  'implant_look_great',
  'look_great_happi',
  'great_happi_tell',
  'happi_tell_max',
  'tell_max_glanc',
  'max_glanc_moment',
  'glanc_moment_said',
  'moment_said_gross',
  'said_gross_ask',
  'gross_ask_deal',
  'ask_deal_said',
  'deal_said_women',
  'said_women_get',
  'women_get_implant',
  'get_implant_surgeri',
  'implant_surgeri_huge',
  'surgeri_huge_turn',
  'huge_turn_guy',
  'turn_guy_men',
  'guy_men_prefer',
  'men_prefer_natur',
  'prefer_natur_two',
  'natur_two_balloon',
  'two_balloon_insecur',
  'balloon_insecur_look',
  'insecur_look_help',
  'look_help_laugh',
  'help_laugh_said',
  'laugh_said_turn',
  'said_turn_got',
  'turn_got_confus',
  'got_confus_ask',
  'confus_ask_meant',
  'ask_meant_inform',
  'meant_inform_procedur',
  'inform_procedur_done',
  'procedur_done_kept',
  'done_kept_deni',
  'kept_deni_say',
  'deni_say_joke',
  'say_joke_show',
  'joke_show_old',
  'show_old_photo',
  'old_photo_got',
  'photo_got_quiet',
  'got_quiet_left',
  'quiet_left_shortli',
  'left_shortli_got',
  'shortli_got_text',
  'got_text_say',
  'text_say_disclos',
  'say_disclos_first',
  'disclos_first_date',
  'first_date_led',
  'date_led_need',
  'led_need_reconsid',
  'need_reconsid_thing',
  'reconsid_thing_next',
  'thing_next_day',
  'next_day_heard',
  'day_heard_anyth',
  'heard_anyth_im',
  'anyth_im_bewild',
  'im_bewild_aita',
  'bewild_aita_edit',
  'aita_edit_alright',
  'edit_alright_yall',
  'alright_yall_got',
  'yall_got_text',
  'got_text_minut',
  'text_minut_ago',
  'minut_ago_ask',
  'ago_ask_meet',
  'ask_meet_think',
  'meet_think_want',
  'think_want_continu',
  'want_continu_relationship',
  'continu_relationship_want',
  'relationship_want_talk',
  'want_talk_thing',
  'talk_thing_comment',
  'thing_comment_think',
  'comment_think_sent',
  'think_sent_back',
  'sent_back_along',
  'back_along_line',
  'along_line_reaction',
  'line_reaction_made',
  'reaction_made_realiz',
  'made_realiz_partner',
  'realiz_partner_im',
  'partner_im_look',
  'im_look_ive',
  'look_ive_decid',
  'ive_decid_continu',
  'decid_continu_relationship',
  'continu_relationship_yeah',
  'relationship_yeah_im',
  'yeah_im_singl',
  'im_singl_kind',
  'singl_kind_confus',
  'kind_confus_mention',
  'confus_mention_futur',
  'mention_futur_date',
  'futur_date_offici',
  'date_offici_weed',
  'offici_weed_like',
  'weed_like_even',
  'like_even_bring',
  'even_bring_oh',
  'bring_oh_well',
  'oh_well_like',
  'well_like_im',
  'like_im_content',
  'im_content_natur',
  'content_natur_unnatur',
  'natur_unnatur_part',
  'unnatur_part_ill',
  'part_ill_find',
  'ill_find_someon',
  'find_someon_huge',
  'someon_huge_hang',
  'huge_hang_plastic',
  'hang_plastic_surgeri',
  'plastic_surgeri_edit',
  'surgeri_edit_woke',
  'edit_woke_way',
  'woke_way_repli',
  'way_repli_comment',
  'repli_comment_got',
  'comment_got_overnight',
  'got_overnight_thank',
  'overnight_thank_everybodi',
  'thank_everybodi_opinion',
  'everybodi_opinion_thank',
  'opinion_thank_everyon',
  'thank_everyon_wish',
  'everyon_wish_well',
  'wish_well_sad',
  'well_sad_plenti',
  'sad_plenti_good',
  'plenti_good_time',
  'good_time_month',
  'time_month_hope',
  'month_hope_one',
  'hope_one_ill',
  'one_ill_alright',
  'ill_alright_time',
  'alright_time_self-dat',
  'time_self-dat_cheer',
  'self-dat_cheer_edit',
  'cheer_edit_final',
  'edit_final_repli',
  'final_repli_text',
  'repli_text_hope',
  'text_hope_could',
  'hope_could_start',
  'could_start_honest',
  'start_honest_begin',
  'honest_begin_guess',
  'begin_guess_one',
  'guess_one_us',
  'one_us_matur',
  'us_matur_enough',
  'matur_enough_look',
  'enough_look_past',
  'look_past_shortcom',
  'past_shortcom_relationship',
  'shortcom_relationship_im',
  'relationship_im_glad',
  'im_glad_reveal',
  'glad_reveal_got',
  'reveal_got_involv',
  'got_involv_goodby',
  'involv_goodby_good',
  'goodby_good_luck',
  'good_luck_find',
  'luck_find_someon',
  'find_someon_caus',
  'someon_caus_real',
  'caus_real_man',
  'real_man_would',
  'man_would_respect',
  'would_respect_someon',
  'respect_someon_cant',
  'someon_cant_even',
  'cant_even_respect',
  'even_respect_bodi',
  'respect_bodi_wow',
  'bodi_wow_comfort',
  'wow_comfort_decis',
  'comfort_decis_im',
  'decis_im_extra',
  'im_extra_comfort',
  'extra_comfort_lmfao',
  'comfort_lmfao_block',
  'lmfao_block_bye',
  'block_bye_✌️he',
  'bye_✌️he_never',
  '✌️he_never_deserv',
  'never_deserv_limit',
  'deserv_limit_edit',
  'limit_edit_set'],
 ['updat',
  'first',
  'want',
  'thank',
  'encourag',
  'messag',
  'mean',
  'lot',
  'want',
  'clear',
  'confus',
  'live',
  'europ',
  'countri',
  'uni',
  'free',
  'pay',
  'apart',
  'way',
  'depend',
  'parent',
  'financi',
  'hang',
  'head',
  'call',
  'grandma',
  'explain',
  'situat',
  'side',
  'encourag',
  'talk',
  'parent',
  'call',
  'mom',
  'pour',
  'situat',
  'feel',
  'fair',
  'quit',
  'upset',
  'first',
  'hung',
  'call',
  'grandma',
  'grandma',
  'call',
  'mom',
  'basic',
  'told',
  'eventu',
  'led',
  'mom',
  'apolog',
  'grandma',
  'come',
  'take',
  'care',
  'jame',
  'agre',
  'help',
  'whenev',
  'time',
  'get',
  'paid',
  'well',
  'parent',
  'think',
  'best',
  'go',
  'low',
  'contact',
  'thing',
  'settl',
  'want',
  'complet',
  'cut',
  'tie',
  'think',
  'famili',
  'still',
  'import',
  'howev',
  'think',
  'good',
  'around',
  'littl',
  'parent',
  'seem',
  'upset',
  'still',
  'feel',
  'bad',
  'see',
  'brother',
  'much',
  'think',
  'best',
  'two',
  'brother',
  'year',
  'old',
  'ever',
  'sinc',
  'youngest',
  'born',
  'expect',
  'look',
  'quit',
  'lot',
  'usual',
  'mind',
  'feel',
  'like',
  'free',
  'nanni',
  'sometim',
  'parent',
  'make',
  'seem',
  'like',
  'respons',
  'mom',
  'often',
  'yell',
  'one',
  'help',
  'jame',
  'yo',
  'brother',
  'take',
  'care',
  'father',
  'away',
  'lot',
  'work',
  'sometim',
  'even',
  'week',
  'septemb',
  'start',
  'uni',
  'apart',
  'move',
  'weekend',
  'note',
  'parent',
  'said',
  'multipl',
  'time',
  'past',
  'year',
  'cant',
  'wait',
  'move',
  'lazi',
  'opinion',
  'never',
  'help',
  'next',
  'week',
  'orient',
  'week',
  'uni',
  'uni',
  'hometown',
  'move',
  'far',
  'get',
  'place',
  'orient',
  'week',
  'super',
  'import',
  'get',
  'know',
  'peopl',
  'spend',
  'next',
  'year',
  'also',
  'import',
  'attend',
  'import',
  'info',
  'given',
  'week',
  'schedul',
  'quit',
  'pack',
  'whole',
  'week',
  'day',
  'start',
  'continu',
  'till',
  'late',
  'night',
  'problem',
  'parent',
  'import',
  'work',
  'stuff',
  'next',
  'week',
  'well',
  'mom',
  'fli',
  'abroad',
  'work',
  'dad',
  'away',
  'whole',
  'week',
  'well',
  'parent',
  'said',
  'expect',
  'take',
  'jame',
  'daycar',
  'spend',
  'even',
  'feed',
  'bath',
  'put',
  'bed',
  'told',
  'possibl',
  'uni',
  'schedul',
  'take',
  'daycar',
  'depend',
  'schedul',
  'help',
  'remind',
  'yo',
  'brother',
  'also',
  'capabl',
  'help',
  'sinc',
  'still',
  'live',
  'pack',
  'schedul',
  'week',
  'time',
  'help',
  'parent',
  'said',
  'possibl',
  'sinc',
  'brother',
  'focu',
  'high',
  'school',
  'studi',
  'young',
  'note',
  'would',
  'take',
  'care',
  'jame',
  'whole',
  'weekend',
  'sinc',
  'yo',
  'want',
  'difficult',
  'parent',
  'ask',
  'much',
  'got',
  'realli',
  'angri',
  'explain',
  'situat',
  'told',
  'ask',
  'help',
  'ever',
  'give',
  'offer',
  'money',
  'either',
  'take',
  'care',
  'yo',
  'entir',
  'week',
  'whilst',
  'push',
  'import',
  'thing',
  'asid',
  'know',
  'fact',
  'sometim',
  'give',
  'brother',
  'money',
  'help',
  'never',
  'offer',
  'feel',
  'like',
  'wrong',
  'might',
  'see',
  'thing',
  'clearli',
  'aita',
  'updat_first',
  'first_want',
  'want_thank',
  'thank_encourag',
  'encourag_messag',
  'messag_mean',
  'mean_lot',
  'lot_want',
  'want_clear',
  'clear_confus',
  'confus_live',
  'live_europ',
  'europ_countri',
  'countri_uni',
  'uni_free',
  'free_pay',
  'pay_apart',
  'apart_way',
  'way_depend',
  'depend_parent',
  'parent_financi',
  'financi_hang',
  'hang_head',
  'head_call',
  'call_grandma',
  'grandma_explain',
  'explain_situat',
  'situat_side',
  'side_encourag',
  'encourag_talk',
  'talk_parent',
  'parent_call',
  'call_mom',
  'mom_pour',
  'pour_situat',
  'situat_feel',
  'feel_fair',
  'fair_quit',
  'quit_upset',
  'upset_first',
  'first_hung',
  'hung_call',
  'call_grandma',
  'grandma_grandma',
  'grandma_call',
  'call_mom',
  'mom_basic',
  'basic_told',
  'told_eventu',
  'eventu_led',
  'led_mom',
  'mom_apolog',
  'apolog_grandma',
  'grandma_come',
  'come_take',
  'take_care',
  'care_jame',
  'jame_agre',
  'agre_help',
  'help_whenev',
  'whenev_time',
  'time_get',
  'get_paid',
  'paid_well',
  'well_parent',
  'parent_think',
  'think_best',
  'best_go',
  'go_low',
  'low_contact',
  'contact_thing',
  'thing_settl',
  'settl_want',
  'want_complet',
  'complet_cut',
  'cut_tie',
  'tie_think',
  'think_famili',
  'famili_still',
  'still_import',
  'import_howev',
  'howev_think',
  'think_good',
  'good_around',
  'around_littl',
  'littl_parent',
  'parent_seem',
  'seem_upset',
  'upset_still',
  'still_feel',
  'feel_bad',
  'bad_see',
  'see_brother',
  'brother_much',
  'much_think',
  'think_best',
  'best_two',
  'two_brother',
  'brother_year',
  'year_old',
  'old_ever',
  'ever_sinc',
  'sinc_youngest',
  'youngest_born',
  'born_expect',
  'expect_look',
  'look_quit',
  'quit_lot',
  'lot_usual',
  'usual_mind',
  'mind_feel',
  'feel_like',
  'like_free',
  'free_nanni',
  'nanni_sometim',
  'sometim_parent',
  'parent_make',
  'make_seem',
  'seem_like',
  'like_respons',
  'respons_mom',
  'mom_often',
  'often_yell',
  'yell_one',
  'one_help',
  'help_jame',
  'jame_yo',
  'yo_brother',
  'brother_take',
  'take_care',
  'care_father',
  'father_away',
  'away_lot',
  'lot_work',
  'work_sometim',
  'sometim_even',
  'even_week',
  'week_septemb',
  'septemb_start',
  'start_uni',
  'uni_apart',
  'apart_move',
  'move_weekend',
  'weekend_note',
  'note_parent',
  'parent_said',
  'said_multipl',
  'multipl_time',
  'time_past',
  'past_year',
  'year_cant',
  'cant_wait',
  'wait_move',
  'move_lazi',
  'lazi_opinion',
  'opinion_never',
  'never_help',
  'help_next',
  'next_week',
  'week_orient',
  'orient_week',
  'week_uni',
  'uni_uni',
  'uni_hometown',
  'hometown_move',
  'move_far',
  'far_get',
  'get_place',
  'place_orient',
  'orient_week',
  'week_super',
  'super_import',
  'import_get',
  'get_know',
  'know_peopl',
  'peopl_spend',
  'spend_next',
  'next_year',
  'year_also',
  'also_import',
  'import_attend',
  'attend_import',
  'import_info',
  'info_given',
  'given_week',
  'week_schedul',
  'schedul_quit',
  'quit_pack',
  'pack_whole',
  'whole_week',
  'week_day',
  'day_start',
  'start_continu',
  'continu_till',
  'till_late',
  'late_night',
  'night_problem',
  'problem_parent',
  'parent_import',
  'import_work',
  'work_stuff',
  'stuff_next',
  'next_week',
  'week_well',
  'well_mom',
  'mom_fli',
  'fli_abroad',
  'abroad_work',
  'work_dad',
  'dad_away',
  'away_whole',
  'whole_week',
  'week_well',
  'well_parent',
  'parent_said',
  'said_expect',
  'expect_take',
  'take_jame',
  'jame_daycar',
  'daycar_spend',
  'spend_even',
  'even_feed',
  'feed_bath',
  'bath_put',
  'put_bed',
  'bed_told',
  'told_possibl',
  'possibl_uni',
  'uni_schedul',
  'schedul_take',
  'take_daycar',
  'daycar_depend',
  'depend_schedul',
  'schedul_help',
  'help_remind',
  'remind_yo',
  'yo_brother',
  'brother_also',
  'also_capabl',
  'capabl_help',
  'help_sinc',
  'sinc_still',
  'still_live',
  'live_pack',
  'pack_schedul',
  'schedul_week',
  'week_time',
  'time_help',
  'help_parent',
  'parent_said',
  'said_possibl',
  'possibl_sinc',
  'sinc_brother',
  'brother_focu',
  'focu_high',
  'high_school',
  'school_studi',
  'studi_young',
  'young_note',
  'note_would',
  'would_take',
  'take_care',
  'care_jame',
  'jame_whole',
  'whole_weekend',
  'weekend_sinc',
  'sinc_yo',
  'yo_want',
  'want_difficult',
  'difficult_parent',
  'parent_ask',
  'ask_much',
  'much_got',
  'got_realli',
  'realli_angri',
  'angri_explain',
  'explain_situat',
  'situat_told',
  'told_ask',
  'ask_help',
  'help_ever',
  'ever_give',
  'give_offer',
  'offer_money',
  'money_either',
  'either_take',
  'take_care',
  'care_yo',
  'yo_entir',
  'entir_week',
  'week_whilst',
  'whilst_push',
  'push_import',
  'import_thing',
  'thing_asid',
  'asid_know',
  'know_fact',
  'fact_sometim',
  'sometim_give',
  'give_brother',
  'brother_money',
  'money_help',
  'help_never',
  'never_offer',
  'offer_feel',
  'feel_like',
  'like_wrong',
  'wrong_might',
  'might_see',
  'see_thing',
  'thing_clearli',
  'clearli_aita',
  'updat_first_want',
  'first_want_thank',
  'want_thank_encourag',
  'thank_encourag_messag',
  'encourag_messag_mean',
  'messag_mean_lot',
  'mean_lot_want',
  'lot_want_clear',
  'want_clear_confus',
  'clear_confus_live',
  'confus_live_europ',
  'live_europ_countri',
  'europ_countri_uni',
  'countri_uni_free',
  'uni_free_pay',
  'free_pay_apart',
  'pay_apart_way',
  'apart_way_depend',
  'way_depend_parent',
  'depend_parent_financi',
  'parent_financi_hang',
  'financi_hang_head',
  'hang_head_call',
  'head_call_grandma',
  'call_grandma_explain',
  'grandma_explain_situat',
  'explain_situat_side',
  'situat_side_encourag',
  'side_encourag_talk',
  'encourag_talk_parent',
  'talk_parent_call',
  'parent_call_mom',
  'call_mom_pour',
  'mom_pour_situat',
  'pour_situat_feel',
  'situat_feel_fair',
  'feel_fair_quit',
  'fair_quit_upset',
  'quit_upset_first',
  'upset_first_hung',
  'first_hung_call',
  'hung_call_grandma',
  'call_grandma_grandma',
  'grandma_grandma_call',
  'grandma_call_mom',
  'call_mom_basic',
  'mom_basic_told',
  'basic_told_eventu',
  'told_eventu_led',
  'eventu_led_mom',
  'led_mom_apolog',
  'mom_apolog_grandma',
  'apolog_grandma_come',
  'grandma_come_take',
  'come_take_care',
  'take_care_jame',
  'care_jame_agre',
  'jame_agre_help',
  'agre_help_whenev',
  'help_whenev_time',
  'whenev_time_get',
  'time_get_paid',
  'get_paid_well',
  'paid_well_parent',
  'well_parent_think',
  'parent_think_best',
  'think_best_go',
  'best_go_low',
  'go_low_contact',
  'low_contact_thing',
  'contact_thing_settl',
  'thing_settl_want',
  'settl_want_complet',
  'want_complet_cut',
  'complet_cut_tie',
  'cut_tie_think',
  'tie_think_famili',
  'think_famili_still',
  'famili_still_import',
  'still_import_howev',
  'import_howev_think',
  'howev_think_good',
  'think_good_around',
  'good_around_littl',
  'around_littl_parent',
  'littl_parent_seem',
  'parent_seem_upset',
  'seem_upset_still',
  'upset_still_feel',
  'still_feel_bad',
  'feel_bad_see',
  'bad_see_brother',
  'see_brother_much',
  'brother_much_think',
  'much_think_best',
  'think_best_two',
  'best_two_brother',
  'two_brother_year',
  'brother_year_old',
  'year_old_ever',
  'old_ever_sinc',
  'ever_sinc_youngest',
  'sinc_youngest_born',
  'youngest_born_expect',
  'born_expect_look',
  'expect_look_quit',
  'look_quit_lot',
  'quit_lot_usual',
  'lot_usual_mind',
  'usual_mind_feel',
  'mind_feel_like',
  'feel_like_free',
  'like_free_nanni',
  'free_nanni_sometim',
  'nanni_sometim_parent',
  'sometim_parent_make',
  'parent_make_seem',
  'make_seem_like',
  'seem_like_respons',
  'like_respons_mom',
  'respons_mom_often',
  'mom_often_yell',
  'often_yell_one',
  'yell_one_help',
  'one_help_jame',
  'help_jame_yo',
  'jame_yo_brother',
  'yo_brother_take',
  'brother_take_care',
  'take_care_father',
  'care_father_away',
  'father_away_lot',
  'away_lot_work',
  'lot_work_sometim',
  'work_sometim_even',
  'sometim_even_week',
  'even_week_septemb',
  'week_septemb_start',
  'septemb_start_uni',
  'start_uni_apart',
  'uni_apart_move',
  'apart_move_weekend',
  'move_weekend_note',
  'weekend_note_parent',
  'note_parent_said',
  'parent_said_multipl',
  'said_multipl_time',
  'multipl_time_past',
  'time_past_year',
  'past_year_cant',
  'year_cant_wait',
  'cant_wait_move',
  'wait_move_lazi',
  'move_lazi_opinion',
  'lazi_opinion_never',
  'opinion_never_help',
  'never_help_next',
  'help_next_week',
  'next_week_orient',
  'week_orient_week',
  'orient_week_uni',
  'week_uni_uni',
  'uni_uni_hometown',
  'uni_hometown_move',
  'hometown_move_far',
  'move_far_get',
  'far_get_place',
  'get_place_orient',
  'place_orient_week',
  'orient_week_super',
  'week_super_import',
  'super_import_get',
  'import_get_know',
  'get_know_peopl',
  'know_peopl_spend',
  'peopl_spend_next',
  'spend_next_year',
  'next_year_also',
  'year_also_import',
  'also_import_attend',
  'import_attend_import',
  'attend_import_info',
  'import_info_given',
  'info_given_week',
  'given_week_schedul',
  'week_schedul_quit',
  'schedul_quit_pack',
  'quit_pack_whole',
  'pack_whole_week',
  'whole_week_day',
  'week_day_start',
  'day_start_continu',
  'start_continu_till',
  'continu_till_late',
  'till_late_night',
  'late_night_problem',
  'night_problem_parent',
  'problem_parent_import',
  'parent_import_work',
  'import_work_stuff',
  'work_stuff_next',
  'stuff_next_week',
  'next_week_well',
  'week_well_mom',
  'well_mom_fli',
  'mom_fli_abroad',
  'fli_abroad_work',
  'abroad_work_dad',
  'work_dad_away',
  'dad_away_whole',
  'away_whole_week',
  'whole_week_well',
  'week_well_parent',
  'well_parent_said',
  'parent_said_expect',
  'said_expect_take',
  'expect_take_jame',
  'take_jame_daycar',
  'jame_daycar_spend',
  'daycar_spend_even',
  'spend_even_feed',
  'even_feed_bath',
  'feed_bath_put',
  'bath_put_bed',
  'put_bed_told',
  'bed_told_possibl',
  'told_possibl_uni',
  'possibl_uni_schedul',
  'uni_schedul_take',
  'schedul_take_daycar',
  'take_daycar_depend',
  'daycar_depend_schedul',
  'depend_schedul_help',
  'schedul_help_remind',
  'help_remind_yo',
  'remind_yo_brother',
  'yo_brother_also',
  'brother_also_capabl',
  'also_capabl_help',
  'capabl_help_sinc',
  'help_sinc_still',
  'sinc_still_live',
  'still_live_pack',
  'live_pack_schedul',
  'pack_schedul_week',
  'schedul_week_time',
  'week_time_help',
  'time_help_parent',
  'help_parent_said',
  'parent_said_possibl',
  'said_possibl_sinc',
  'possibl_sinc_brother',
  'sinc_brother_focu',
  'brother_focu_high',
  'focu_high_school',
  'high_school_studi',
  'school_studi_young',
  'studi_young_note',
  'young_note_would',
  'note_would_take',
  'would_take_care',
  'take_care_jame',
  'care_jame_whole',
  'jame_whole_weekend',
  'whole_weekend_sinc',
  'weekend_sinc_yo',
  'sinc_yo_want',
  'yo_want_difficult',
  'want_difficult_parent',
  'difficult_parent_ask',
  'parent_ask_much',
  'ask_much_got',
  'much_got_realli',
  'got_realli_angri',
  'realli_angri_explain',
  'angri_explain_situat',
  'explain_situat_told',
  'situat_told_ask',
  'told_ask_help',
  'ask_help_ever',
  'help_ever_give',
  'ever_give_offer',
  'give_offer_money',
  'offer_money_either',
  'money_either_take',
  'either_take_care',
  'take_care_yo',
  'care_yo_entir',
  'yo_entir_week',
  'entir_week_whilst',
  'week_whilst_push',
  'whilst_push_import',
  'push_import_thing',
  'import_thing_asid',
  'thing_asid_know',
  'asid_know_fact',
  'know_fact_sometim',
  'fact_sometim_give',
  'sometim_give_brother',
  'give_brother_money',
  'brother_money_help',
  'money_help_never',
  'help_never_offer',
  'never_offer_feel',
  'offer_feel_like',
  'feel_like_wrong',
  'like_wrong_might',
  'wrong_might_see',
  'might_see_thing',
  'see_thing_clearli',
  'thing_clearli_aita'],
 ['context',
  'need',
  'obvious',
  'hate',
  'brother',
  'alway',
  'golden',
  'child',
  'oop',
  'babi',
  'never',
  'want',
  'girl',
  'plu',
  'fussi',
  'babi',
  'compar',
  'annoy',
  'mother',
  'hate',
  'kept',
  'tell',
  'lie',
  'parent',
  '-',
  'stole',
  'someth',
  'would',
  'blame',
  'believ',
  'edit',
  'believ',
  'insan',
  'typo',
  'sorri',
  'sabotag',
  'relationship',
  'bulli',
  'forc',
  'friend',
  'parent',
  'alway',
  'took',
  'side',
  'left',
  'home',
  'colleg',
  'manag',
  'get',
  'scholarship',
  'soon',
  'could',
  'stay',
  'hometown',
  'rent',
  'place',
  'near',
  'parent',
  'paid',
  'cours',
  'stop',
  'contact',
  'famili',
  'group',
  'chat',
  'alway',
  'brother',
  'achiev',
  'never',
  'sent',
  'money',
  'live',
  'anoth',
  'state',
  'marri',
  'famili',
  'invit',
  'bother',
  'show',
  'wed',
  'second',
  'babi',
  'way',
  'husband',
  'famili',
  'great',
  'help',
  'lot',
  'anyway',
  'parent',
  'tradit',
  'male',
  'head',
  'famili',
  'tradit',
  'crap',
  'brother',
  'come',
  'shock',
  'absolut',
  'demand',
  'blood',
  'relat',
  'descend',
  'carri',
  'famili',
  'name',
  'mention',
  'kid',
  'husband',
  'surnam',
  'adopt',
  'option',
  'neither',
  'surrog',
  'accept',
  'proper',
  'marriag',
  'blue',
  'brother',
  'contact',
  'appar',
  'parent',
  'disown',
  'live',
  'money',
  'never',
  'work',
  'unless',
  'fix',
  'relationship',
  'lay',
  'claim',
  'children',
  '-',
  'sinc',
  'caus',
  'drift',
  'away',
  'famili',
  'sole',
  'caus',
  'blame',
  'parent',
  'actual',
  'flew',
  'state',
  'cri',
  'lot',
  'blame',
  'bulli',
  'stress',
  'closet',
  'yadda',
  'yadda',
  'told',
  'famili',
  'dead',
  'care',
  'say',
  'im',
  'petti',
  'ruin',
  'adult',
  'life',
  'childhood',
  'slight',
  'also',
  'im',
  'homophob',
  'etc',
  'refus',
  'back',
  'contact',
  'parent',
  'back-up',
  'sourc',
  'blood',
  'relat',
  'grand',
  'babi',
  'golden',
  'child',
  'fail',
  'aita',
  'edit',
  'forgot',
  'add',
  'parent',
  'also',
  'want',
  'futur',
  'babi',
  'im',
  'pregnant',
  'carri',
  'famili',
  'surnam',
  'context_need',
  'need_obvious',
  'obvious_hate',
  'hate_brother',
  'brother_alway',
  'alway_golden',
  'golden_child',
  'child_oop',
  'oop_babi',
  'babi_never',
  'never_want',
  'want_girl',
  'girl_plu',
  'plu_fussi',
  'fussi_babi',
  'babi_compar',
  'compar_annoy',
  'annoy_mother',
  'mother_hate',
  'hate_kept',
  'kept_tell',
  'tell_lie',
  'lie_parent',
  'parent_-',
  '-_stole',
  'stole_someth',
  'someth_would',
  'would_blame',
  'blame_believ',
  'believ_edit',
  'edit_believ',
  'believ_insan',
  'insan_typo',
  'typo_sorri',
  'sorri_sabotag',
  'sabotag_relationship',
  'relationship_bulli',
  'bulli_forc',
  'forc_friend',
  'friend_parent',
  'parent_alway',
  'alway_took',
  'took_side',
  'side_left',
  'left_home',
  'home_colleg',
  'colleg_manag',
  'manag_get',
  'get_scholarship',
  'scholarship_soon',
  'soon_could',
  'could_stay',
  'stay_hometown',
  'hometown_rent',
  'rent_place',
  'place_near',
  'near_parent',
  'parent_paid',
  'paid_cours',
  'cours_stop',
  'stop_contact',
  'contact_famili',
  'famili_group',
  'group_chat',
  'chat_alway',
  'alway_brother',
  'brother_achiev',
  'achiev_never',
  'never_sent',
  'sent_money',
  'money_live',
  'live_anoth',
  'anoth_state',
  'state_marri',
  'marri_famili',
  'famili_invit',
  'invit_bother',
  'bother_show',
  'show_wed',
  'wed_second',
  'second_babi',
  'babi_way',
  'way_husband',
  'husband_famili',
  'famili_great',
  'great_help',
  'help_lot',
  'lot_anyway',
  'anyway_parent',
  'parent_tradit',
  'tradit_male',
  'male_head',
  'head_famili',
  'famili_tradit',
  'tradit_crap',
  'crap_brother',
  'brother_come',
  'come_shock',
  'shock_absolut',
  'absolut_demand',
  'demand_blood',
  'blood_relat',
  'relat_descend',
  'descend_carri',
  'carri_famili',
  'famili_name',
  'name_mention',
  'mention_kid',
  'kid_husband',
  'husband_surnam',
  'surnam_adopt',
  'adopt_option',
  'option_neither',
  'neither_surrog',
  'surrog_accept',
  'accept_proper',
  'proper_marriag',
  'marriag_blue',
  'blue_brother',
  'brother_contact',
  'contact_appar',
  'appar_parent',
  'parent_disown',
  'disown_live',
  'live_money',
  'money_never',
  'never_work',
  'work_unless',
  'unless_fix',
  'fix_relationship',
  'relationship_lay',
  'lay_claim',
  'claim_children',
  'children_-',
  '-_sinc',
  'sinc_caus',
  'caus_drift',
  'drift_away',
  'away_famili',
  'famili_sole',
  'sole_caus',
  'caus_blame',
  'blame_parent',
  'parent_actual',
  'actual_flew',
  'flew_state',
  'state_cri',
  'cri_lot',
  'lot_blame',
  'blame_bulli',
  'bulli_stress',
  'stress_closet',
  'closet_yadda',
  'yadda_yadda',
  'yadda_told',
  'told_famili',
  'famili_dead',
  'dead_care',
  'care_say',
  'say_im',
  'im_petti',
  'petti_ruin',
  'ruin_adult',
  'adult_life',
  'life_childhood',
  'childhood_slight',
  'slight_also',
  'also_im',
  'im_homophob',
  'homophob_etc',
  'etc_refus',
  'refus_back',
  'back_contact',
  'contact_parent',
  'parent_back-up',
  'back-up_sourc',
  'sourc_blood',
  'blood_relat',
  'relat_grand',
  'grand_babi',
  'babi_golden',
  'golden_child',
  'child_fail',
  'fail_aita',
  'aita_edit',
  'edit_forgot',
  'forgot_add',
  'add_parent',
  'parent_also',
  'also_want',
  'want_futur',
  'futur_babi',
  'babi_im',
  'im_pregnant',
  'pregnant_carri',
  'carri_famili',
  'famili_surnam',
  'context_need_obvious',
  'need_obvious_hate',
  'obvious_hate_brother',
  'hate_brother_alway',
  'brother_alway_golden',
  'alway_golden_child',
  'golden_child_oop',
  'child_oop_babi',
  'oop_babi_never',
  'babi_never_want',
  'never_want_girl',
  'want_girl_plu',
  'girl_plu_fussi',
  'plu_fussi_babi',
  'fussi_babi_compar',
  'babi_compar_annoy',
  'compar_annoy_mother',
  'annoy_mother_hate',
  'mother_hate_kept',
  'hate_kept_tell',
  'kept_tell_lie',
  'tell_lie_parent',
  'lie_parent_-',
  'parent_-_stole',
  '-_stole_someth',
  'stole_someth_would',
  'someth_would_blame',
  'would_blame_believ',
  'blame_believ_edit',
  'believ_edit_believ',
  'edit_believ_insan',
  'believ_insan_typo',
  'insan_typo_sorri',
  'typo_sorri_sabotag',
  'sorri_sabotag_relationship',
  'sabotag_relationship_bulli',
  'relationship_bulli_forc',
  'bulli_forc_friend',
  'forc_friend_parent',
  'friend_parent_alway',
  'parent_alway_took',
  'alway_took_side',
  'took_side_left',
  'side_left_home',
  'left_home_colleg',
  'home_colleg_manag',
  'colleg_manag_get',
  'manag_get_scholarship',
  'get_scholarship_soon',
  'scholarship_soon_could',
  'soon_could_stay',
  'could_stay_hometown',
  'stay_hometown_rent',
  'hometown_rent_place',
  'rent_place_near',
  'place_near_parent',
  'near_parent_paid',
  'parent_paid_cours',
  'paid_cours_stop',
  'cours_stop_contact',
  'stop_contact_famili',
  'contact_famili_group',
  'famili_group_chat',
  'group_chat_alway',
  'chat_alway_brother',
  'alway_brother_achiev',
  'brother_achiev_never',
  'achiev_never_sent',
  'never_sent_money',
  'sent_money_live',
  'money_live_anoth',
  'live_anoth_state',
  'anoth_state_marri',
  'state_marri_famili',
  'marri_famili_invit',
  'famili_invit_bother',
  'invit_bother_show',
  'bother_show_wed',
  'show_wed_second',
  'wed_second_babi',
  'second_babi_way',
  'babi_way_husband',
  'way_husband_famili',
  'husband_famili_great',
  'famili_great_help',
  'great_help_lot',
  'help_lot_anyway',
  'lot_anyway_parent',
  'anyway_parent_tradit',
  'parent_tradit_male',
  'tradit_male_head',
  'male_head_famili',
  'head_famili_tradit',
  'famili_tradit_crap',
  'tradit_crap_brother',
  'crap_brother_come',
  'brother_come_shock',
  'come_shock_absolut',
  'shock_absolut_demand',
  'absolut_demand_blood',
  'demand_blood_relat',
  'blood_relat_descend',
  'relat_descend_carri',
  'descend_carri_famili',
  'carri_famili_name',
  'famili_name_mention',
  'name_mention_kid',
  'mention_kid_husband',
  'kid_husband_surnam',
  'husband_surnam_adopt',
  'surnam_adopt_option',
  'adopt_option_neither',
  'option_neither_surrog',
  'neither_surrog_accept',
  'surrog_accept_proper',
  'accept_proper_marriag',
  'proper_marriag_blue',
  'marriag_blue_brother',
  'blue_brother_contact',
  'brother_contact_appar',
  'contact_appar_parent',
  'appar_parent_disown',
  'parent_disown_live',
  'disown_live_money',
  'live_money_never',
  'money_never_work',
  'never_work_unless',
  'work_unless_fix',
  'unless_fix_relationship',
  'fix_relationship_lay',
  'relationship_lay_claim',
  'lay_claim_children',
  'claim_children_-',
  'children_-_sinc',
  '-_sinc_caus',
  'sinc_caus_drift',
  'caus_drift_away',
  'drift_away_famili',
  'away_famili_sole',
  'famili_sole_caus',
  'sole_caus_blame',
  'caus_blame_parent',
  'blame_parent_actual',
  'parent_actual_flew',
  'actual_flew_state',
  'flew_state_cri',
  'state_cri_lot',
  'cri_lot_blame',
  'lot_blame_bulli',
  'blame_bulli_stress',
  'bulli_stress_closet',
  'stress_closet_yadda',
  'closet_yadda_yadda',
  'yadda_yadda_told',
  'yadda_told_famili',
  'told_famili_dead',
  'famili_dead_care',
  'dead_care_say',
  'care_say_im',
  'say_im_petti',
  'im_petti_ruin',
  'petti_ruin_adult',
  'ruin_adult_life',
  'adult_life_childhood',
  'life_childhood_slight',
  'childhood_slight_also',
  'slight_also_im',
  'also_im_homophob',
  'im_homophob_etc',
  'homophob_etc_refus',
  'etc_refus_back',
  'refus_back_contact',
  'back_contact_parent',
  'contact_parent_back-up',
  'parent_back-up_sourc',
  'back-up_sourc_blood',
  'sourc_blood_relat',
  'blood_relat_grand',
  'relat_grand_babi',
  'grand_babi_golden',
  'babi_golden_child',
  'golden_child_fail',
  'child_fail_aita',
  'fail_aita_edit',
  'aita_edit_forgot',
  'edit_forgot_add',
  'forgot_add_parent',
  'add_parent_also',
  'parent_also_want',
  'also_want_futur',
  'want_futur_babi',
  'futur_babi_im',
  'babi_im_pregnant',
  'im_pregnant_carri',
  'pregnant_carri_famili',
  'carri_famili_surnam'],
 ['boyfriend',
  'took',
  'ex',
  'kid',
  'last',
  'minut',
  'overnight',
  'stay',
  'sinc',
  'father',
  'kid',
  'cancel',
  'plan',
  'friend',
  'night',
  'busi',
  'took',
  'overnight',
  'babi',
  'daddi',
  'bail',
  'told',
  'brunch',
  'reserv',
  'next',
  'morn',
  'happi',
  'help',
  'need',
  'pick',
  'knew',
  'agre',
  'drop',
  'well',
  'next',
  'morn',
  'yet',
  'text',
  'call',
  'answer',
  'roll',
  'around',
  'tri',
  'call',
  'pick',
  'groggi',
  'voic',
  'tell',
  'us',
  'got',
  'worst',
  'hangov',
  'pick',
  'pm',
  'remind',
  'brunch',
  'reserv',
  'tell',
  'us',
  'take',
  'us',
  'kid',
  'year',
  'old',
  'enjoy',
  'take',
  'child',
  'age',
  'eat',
  'boyfriend',
  'cancel',
  'reserv',
  'get',
  'readi',
  'kid',
  'decid',
  'pick',
  'furiou',
  'point',
  'child',
  'boyfriend',
  'child',
  'call',
  'tell',
  'noon',
  'would',
  'call',
  'polic',
  'collect',
  'child',
  'live',
  'minut',
  'away',
  'call',
  'bitch',
  'told',
  'minut',
  'come',
  'get',
  'wait',
  'hour',
  'sign',
  'drop',
  'child',
  'sinc',
  'live',
  'apart',
  'complex',
  'need',
  'access',
  'get',
  'call',
  'cop',
  'told',
  'babysit',
  'know',
  'parent',
  'suppos',
  'hour',
  'ago',
  'basic',
  'treat',
  'would',
  'lost',
  'child',
  'took',
  'station',
  'littl',
  'miss',
  'final',
  'roll',
  'pm',
  'get',
  'belliger',
  'discov',
  'actual',
  'call',
  'cop',
  'gave',
  'child',
  'call',
  'sort',
  'wonder',
  'name',
  'storm',
  'polic',
  'station',
  'edit',
  'know',
  'shed',
  'even',
  'gone',
  'home',
  'also',
  'contact',
  'father',
  'sinc',
  'contact',
  'inform',
  'edit',
  'mother',
  'child',
  'also',
  'neglect',
  'last',
  'straw',
  'us',
  'shed',
  'mayb',
  'chang',
  'diaper',
  'twice',
  'throughout',
  'whole',
  'day',
  'good',
  'day',
  'multipl',
  'time',
  'id',
  'seen',
  'refil',
  'bottl',
  'clean',
  'day',
  'actual',
  'rotten',
  'milk',
  'insid',
  'boyfriend_took',
  'took_ex',
  'ex_kid',
  'kid_last',
  'last_minut',
  'minut_overnight',
  'overnight_stay',
  'stay_sinc',
  'sinc_father',
  'father_kid',
  'kid_cancel',
  'cancel_plan',
  'plan_friend',
  'friend_night',
  'night_busi',
  'busi_took',
  'took_overnight',
  'overnight_babi',
  'babi_daddi',
  'daddi_bail',
  'bail_told',
  'told_brunch',
  'brunch_reserv',
  'reserv_next',
  'next_morn',
  'morn_happi',
  'happi_help',
  'help_need',
  'need_pick',
  'pick_knew',
  'knew_agre',
  'agre_drop',
  'drop_well',
  'well_next',
  'next_morn',
  'morn_yet',
  'yet_text',
  'text_call',
  'call_answer',
  'answer_roll',
  'roll_around',
  'around_tri',
  'tri_call',
  'call_pick',
  'pick_groggi',
  'groggi_voic',
  'voic_tell',
  'tell_us',
  'us_got',
  'got_worst',
  'worst_hangov',
  'hangov_pick',
  'pick_pm',
  'pm_remind',
  'remind_brunch',
  'brunch_reserv',
  'reserv_tell',
  'tell_us',
  'us_take',
  'take_us',
  'us_kid',
  'kid_year',
  'year_old',
  'old_enjoy',
  'enjoy_take',
  'take_child',
  'child_age',
  'age_eat',
  'eat_boyfriend',
  'boyfriend_cancel',
  'cancel_reserv',
  'reserv_get',
  'get_readi',
  'readi_kid',
  'kid_decid',
  'decid_pick',
  'pick_furiou',
  'furiou_point',
  'point_child',
  'child_boyfriend',
  'boyfriend_child',
  'child_call',
  'call_tell',
  'tell_noon',
  'noon_would',
  'would_call',
  'call_polic',
  'polic_collect',
  'collect_child',
  'child_live',
  'live_minut',
  'minut_away',
  'away_call',
  'call_bitch',
  'bitch_told',
  'told_minut',
  'minut_come',
  'come_get',
  'get_wait',
  'wait_hour',
  'hour_sign',
  'sign_drop',
  'drop_child',
  'child_sinc',
  'sinc_live',
  'live_apart',
  'apart_complex',
  'complex_need',
  'need_access',
  'access_get',
  'get_call',
  'call_cop',
  'cop_told',
  'told_babysit',
  'babysit_know',
  'know_parent',
  'parent_suppos',
  'suppos_hour',
  'hour_ago',
  'ago_basic',
  'basic_treat',
  'treat_would',
  'would_lost',
  'lost_child',
  'child_took',
  'took_station',
  'station_littl',
  'littl_miss',
  'miss_final',
  'final_roll',
  'roll_pm',
  'pm_get',
  'get_belliger',
  'belliger_discov',
  'discov_actual',
  'actual_call',
  'call_cop',
  'cop_gave',
  'gave_child',
  'child_call',
  'call_sort',
  'sort_wonder',
  'wonder_name',
  'name_storm',
  'storm_polic',
  'polic_station',
  'station_edit',
  'edit_know',
  'know_shed',
  'shed_even',
  'even_gone',
  'gone_home',
  'home_also',
  'also_contact',
  'contact_father',
  'father_sinc',
  'sinc_contact',
  'contact_inform',
  'inform_edit',
  'edit_mother',
  'mother_child',
  'child_also',
  'also_neglect',
  'neglect_last',
  'last_straw',
  'straw_us',
  'us_shed',
  'shed_mayb',
  'mayb_chang',
  'chang_diaper',
  'diaper_twice',
  'twice_throughout',
  'throughout_whole',
  'whole_day',
  'day_good',
  'good_day',
  'day_multipl',
  'multipl_time',
  'time_id',
  'id_seen',
  'seen_refil',
  'refil_bottl',
  'bottl_clean',
  'clean_day',
  'day_actual',
  'actual_rotten',
  'rotten_milk',
  'milk_insid',
  'boyfriend_took_ex',
  'took_ex_kid',
  'ex_kid_last',
  'kid_last_minut',
  'last_minut_overnight',
  'minut_overnight_stay',
  'overnight_stay_sinc',
  'stay_sinc_father',
  'sinc_father_kid',
  'father_kid_cancel',
  'kid_cancel_plan',
  'cancel_plan_friend',
  'plan_friend_night',
  'friend_night_busi',
  'night_busi_took',
  'busi_took_overnight',
  'took_overnight_babi',
  'overnight_babi_daddi',
  'babi_daddi_bail',
  'daddi_bail_told',
  'bail_told_brunch',
  'told_brunch_reserv',
  'brunch_reserv_next',
  'reserv_next_morn',
  'next_morn_happi',
  'morn_happi_help',
  'happi_help_need',
  'help_need_pick',
  'need_pick_knew',
  'pick_knew_agre',
  'knew_agre_drop',
  'agre_drop_well',
  'drop_well_next',
  'well_next_morn',
  'next_morn_yet',
  'morn_yet_text',
  'yet_text_call',
  'text_call_answer',
  'call_answer_roll',
  'answer_roll_around',
  'roll_around_tri',
  'around_tri_call',
  'tri_call_pick',
  'call_pick_groggi',
  'pick_groggi_voic',
  'groggi_voic_tell',
  'voic_tell_us',
  'tell_us_got',
  'us_got_worst',
  'got_worst_hangov',
  'worst_hangov_pick',
  'hangov_pick_pm',
  'pick_pm_remind',
  'pm_remind_brunch',
  'remind_brunch_reserv',
  'brunch_reserv_tell',
  'reserv_tell_us',
  'tell_us_take',
  'us_take_us',
  'take_us_kid',
  'us_kid_year',
  'kid_year_old',
  'year_old_enjoy',
  'old_enjoy_take',
  'enjoy_take_child',
  'take_child_age',
  'child_age_eat',
  'age_eat_boyfriend',
  'eat_boyfriend_cancel',
  'boyfriend_cancel_reserv',
  'cancel_reserv_get',
  'reserv_get_readi',
  'get_readi_kid',
  'readi_kid_decid',
  'kid_decid_pick',
  'decid_pick_furiou',
  'pick_furiou_point',
  'furiou_point_child',
  'point_child_boyfriend',
  'child_boyfriend_child',
  'boyfriend_child_call',
  'child_call_tell',
  'call_tell_noon',
  'tell_noon_would',
  'noon_would_call',
  'would_call_polic',
  'call_polic_collect',
  'polic_collect_child',
  'collect_child_live',
  'child_live_minut',
  'live_minut_away',
  'minut_away_call',
  'away_call_bitch',
  'call_bitch_told',
  'bitch_told_minut',
  'told_minut_come',
  'minut_come_get',
  'come_get_wait',
  'get_wait_hour',
  'wait_hour_sign',
  'hour_sign_drop',
  'sign_drop_child',
  'drop_child_sinc',
  'child_sinc_live',
  'sinc_live_apart',
  'live_apart_complex',
  'apart_complex_need',
  'complex_need_access',
  'need_access_get',
  'access_get_call',
  'get_call_cop',
  'call_cop_told',
  'cop_told_babysit',
  'told_babysit_know',
  'babysit_know_parent',
  'know_parent_suppos',
  'parent_suppos_hour',
  'suppos_hour_ago',
  'hour_ago_basic',
  'ago_basic_treat',
  'basic_treat_would',
  'treat_would_lost',
  'would_lost_child',
  'lost_child_took',
  'child_took_station',
  'took_station_littl',
  'station_littl_miss',
  'littl_miss_final',
  'miss_final_roll',
  'final_roll_pm',
  'roll_pm_get',
  'pm_get_belliger',
  'get_belliger_discov',
  'belliger_discov_actual',
  'discov_actual_call',
  'actual_call_cop',
  'call_cop_gave',
  'cop_gave_child',
  'gave_child_call',
  'child_call_sort',
  'call_sort_wonder',
  'sort_wonder_name',
  'wonder_name_storm',
  'name_storm_polic',
  'storm_polic_station',
  'polic_station_edit',
  'station_edit_know',
  'edit_know_shed',
  'know_shed_even',
  'shed_even_gone',
  'even_gone_home',
  'gone_home_also',
  'home_also_contact',
  'also_contact_father',
  'contact_father_sinc',
  'father_sinc_contact',
  'sinc_contact_inform',
  'contact_inform_edit',
  'inform_edit_mother',
  'edit_mother_child',
  'mother_child_also',
  'child_also_neglect',
  'also_neglect_last',
  'neglect_last_straw',
  'last_straw_us',
  'straw_us_shed',
  'us_shed_mayb',
  'shed_mayb_chang',
  'mayb_chang_diaper',
  'chang_diaper_twice',
  'diaper_twice_throughout',
  'twice_throughout_whole',
  'throughout_whole_day',
  'whole_day_good',
  'day_good_day',
  'good_day_multipl',
  'day_multipl_time',
  'multipl_time_id',
  'time_id_seen',
  'id_seen_refil',
  'seen_refil_bottl',
  'refil_bottl_clean',
  'bottl_clean_day',
  'clean_day_actual',
  'day_actual_rotten',
  'actual_rotten_milk',
  'rotten_milk_insid'],
 ['fiancé',
  'expect',
  'babi',
  'girl',
  'next',
  'month',
  'realli',
  'excit',
  'first',
  'child',
  'weve',
  'tri',
  'prepar',
  'parenthood',
  'lot',
  'famili',
  'help',
  'us',
  'babi',
  'stuff',
  'give',
  'us',
  'gener',
  'advic',
  'theyr',
  'also',
  'realli',
  'super',
  'excit',
  'especi',
  'fmil',
  'stubborn',
  'person',
  'realli',
  'accept',
  'apart',
  'famili',
  'yet',
  'alway',
  'tell',
  'fiancé',
  'could',
  'much',
  'better',
  'fallen',
  'trap',
  'child',
  'hurt',
  'lot',
  'fiancé',
  'talk',
  'still',
  'apologis',
  'anyth',
  'tend',
  'ignor',
  'also',
  'one',
  'mum',
  'post',
  'everi',
  'littl',
  'detail',
  'life',
  'facebook',
  'like',
  'fiancé',
  'propos',
  'straight',
  'facebook',
  'could',
  'announc',
  'recent',
  'fiancé',
  'come',
  'name',
  'littl',
  'girl',
  'decid',
  'perfect',
  'name',
  'day',
  'ago',
  'phone',
  'call',
  'fiancé',
  'accident',
  'slip',
  'tell',
  'fmil',
  'weve',
  'chosen',
  'name',
  'non',
  'stop',
  'messag',
  'us',
  'call',
  'us',
  'find',
  'name',
  'want',
  'tell',
  'babi',
  'born',
  'ruin',
  'surpris',
  'whole',
  'facebook',
  'find',
  'comfort',
  'tell',
  'everyon',
  'tri',
  'guilt',
  'trip',
  'fiancé',
  'tell',
  'hurt',
  'tell',
  'mother',
  'name',
  'grandchild',
  'love',
  'especi',
  'gon',
  'na',
  'tri',
  'keep',
  'see',
  'babi',
  'im',
  'sure',
  'would',
  'think',
  'noth',
  'said',
  'suggest',
  'stop',
  'get',
  'fiancé',
  'back',
  'wrote',
  'messag',
  'say',
  'want',
  'know',
  'cant',
  'post',
  'facebook',
  'agre',
  'told',
  'fake',
  'name',
  'minut',
  'later',
  'check',
  'fb',
  'cant',
  'believ',
  'im',
  'go',
  'granni',
  'babi',
  'charlott',
  'next',
  'month',
  'proud',
  'fiancé',
  'name',
  'partner',
  'fiancé',
  'furiou',
  'call',
  'told',
  'wrong',
  'announc',
  'said',
  'overjoy',
  'resist',
  'told',
  'even',
  'name',
  'gon',
  'na',
  'tell',
  'born',
  'hung',
  'afew',
  'day',
  'fiancé',
  'get',
  'text',
  'say',
  'mean',
  'im',
  'ah',
  'tell',
  'wrong',
  'name',
  'word',
  'even',
  'tell',
  'fmil',
  'wrong',
  'name',
  'grandchild',
  'aita',
  '*',
  '*',
  'updat',
  '*',
  '*',
  'want',
  'start',
  'say',
  'appreci',
  'love',
  'support',
  'guy',
  'sent',
  'realli',
  'entertain',
  'read',
  'everyon',
  'opinion',
  'matter',
  'restor',
  'faith',
  'think',
  'everyth',
  'turn',
  'fine',
  'fiancé',
  'babi',
  'girl',
  'post',
  'fiancé',
  'sat',
  'mil',
  'dinner',
  'spoke',
  'boundari',
  'want',
  'start',
  'clean',
  'slate',
  'alway',
  'give',
  'second',
  'chanc',
  'acknowledg',
  'aswel',
  'want',
  'get',
  'along',
  'fiancé',
  'babi',
  'let',
  'see',
  'goe',
  'also',
  'fiancé',
  'start',
  'refer',
  'babi',
  'girl',
  'lotti',
  'short',
  'charlott',
  'found',
  'hilari',
  'post',
  'blow',
  'mayb',
  'might',
  'keep',
  'lotti',
  'middl',
  'name',
  'know',
  'wonder',
  'seen',
  'post',
  'profil',
  'fiancé',
  'still',
  'serv',
  'still',
  'intend',
  'join',
  'weve',
  'agre',
  'babi',
  'girl',
  'look',
  'fiancé',
  'away',
  'mum',
  'trust',
  'life',
  'whilst',
  'go',
  'away',
  'basic',
  'train',
  'appreci',
  'kind',
  'word',
  'might',
  'probabl',
  'anoth',
  'updat',
  'lotti',
  'born',
  '*',
  '*',
  'final',
  'updat',
  '*',
  '*',
  'thank',
  'love',
  'support',
  'sent',
  'way',
  'sinc',
  'post',
  'amaz',
  'read',
  'peopl',
  'stori',
  'similar',
  'mine',
  'advic',
  'given',
  'last',
  'final',
  'updat',
  'stori',
  'th',
  'august',
  'welcom',
  'elena',
  'beatric',
  'june',
  'world',
  'weigh',
  'lb',
  'fiancé',
  'side',
  'whole',
  'way',
  'could',
  'ask',
  'anyth',
  'perfect',
  'want',
  'wait',
  'atleast',
  'day',
  'announc',
  'want',
  'bubbl',
  'tell',
  'anyon',
  'els',
  'th',
  'august',
  'announc',
  'friend',
  'famili',
  'born',
  'sent',
  'bunch',
  'congrat',
  'mil',
  'upset',
  'left',
  'birth',
  'sinc',
  'meet',
  'realli',
  'brought',
  'anymor',
  'thank',
  'love',
  'support',
  'fiancé_expect',
  'expect_babi',
  'babi_girl',
  'girl_next',
  'next_month',
  'month_realli',
  'realli_excit',
  'excit_first',
  'first_child',
  'child_weve',
  'weve_tri',
  'tri_prepar',
  'prepar_parenthood',
  'parenthood_lot',
  'lot_famili',
  'famili_help',
  'help_us',
  'us_babi',
  'babi_stuff',
  'stuff_give',
  'give_us',
  'us_gener',
  'gener_advic',
  'advic_theyr',
  'theyr_also',
  'also_realli',
  'realli_super',
  'super_excit',
  'excit_especi',
  'especi_fmil',
  'fmil_stubborn',
  'stubborn_person',
  'person_realli',
  'realli_accept',
  'accept_apart',
  'apart_famili',
  'famili_yet',
  'yet_alway',
  'alway_tell',
  'tell_fiancé',
  'fiancé_could',
  'could_much',
  'much_better',
  'better_fallen',
  'fallen_trap',
  'trap_child',
  'child_hurt',
  'hurt_lot',
  'lot_fiancé',
  'fiancé_talk',
  'talk_still',
  'still_apologis',
  'apologis_anyth',
  'anyth_tend',
  'tend_ignor',
  'ignor_also',
  'also_one',
  'one_mum',
  'mum_post',
  'post_everi',
  'everi_littl',
  'littl_detail',
  'detail_life',
  'life_facebook',
  'facebook_like',
  'like_fiancé',
  'fiancé_propos',
  'propos_straight',
  'straight_facebook',
  'facebook_could',
  'could_announc',
  'announc_recent',
  'recent_fiancé',
  'fiancé_come',
  'come_name',
  'name_littl',
  'littl_girl',
  'girl_decid',
  'decid_perfect',
  'perfect_name',
  'name_day',
  'day_ago',
  'ago_phone',
  'phone_call',
  'call_fiancé',
  'fiancé_accident',
  'accident_slip',
  'slip_tell',
  'tell_fmil',
  'fmil_weve',
  'weve_chosen',
  'chosen_name',
  'name_non',
  'non_stop',
  'stop_messag',
  'messag_us',
  'us_call',
  'call_us',
  'us_find',
  'find_name',
  'name_want',
  'want_tell',
  'tell_babi',
  'babi_born',
  'born_ruin',
  'ruin_surpris',
  'surpris_whole',
  'whole_facebook',
  'facebook_find',
  'find_comfort',
  'comfort_tell',
  'tell_everyon',
  'everyon_tri',
  'tri_guilt',
  'guilt_trip',
  'trip_fiancé',
  'fiancé_tell',
  'tell_hurt',
  'hurt_tell',
  'tell_mother',
  'mother_name',
  'name_grandchild',
  'grandchild_love',
  'love_especi',
  'especi_gon',
  'gon_na',
  'na_tri',
  'tri_keep',
  'keep_see',
  'see_babi',
  'babi_im',
  'im_sure',
  'sure_would',
  'would_think',
  'think_noth',
  'noth_said',
  'said_suggest',
  'suggest_stop',
  'stop_get',
  'get_fiancé',
  'fiancé_back',
  'back_wrote',
  'wrote_messag',
  'messag_say',
  'say_want',
  'want_know',
  'know_cant',
  'cant_post',
  'post_facebook',
  'facebook_agre',
  'agre_told',
  'told_fake',
  'fake_name',
  'name_minut',
  'minut_later',
  'later_check',
  'check_fb',
  'fb_cant',
  'cant_believ',
  'believ_im',
  'im_go',
  'go_granni',
  'granni_babi',
  'babi_charlott',
  'charlott_next',
  'next_month',
  'month_proud',
  'proud_fiancé',
  'fiancé_name',
  'name_partner',
  'partner_fiancé',
  'fiancé_furiou',
  'furiou_call',
  'call_told',
  'told_wrong',
  'wrong_announc',
  'announc_said',
  'said_overjoy',
  'overjoy_resist',
  'resist_told',
  'told_even',
  'even_name',
  'name_gon',
  'gon_na',
  'na_tell',
  'tell_born',
  'born_hung',
  'hung_afew',
  'afew_day',
  'day_fiancé',
  'fiancé_get',
  'get_text',
  'text_say',
  'say_mean',
  'mean_im',
  'im_ah',
  'ah_tell',
  'tell_wrong',
  'wrong_name',
  'name_word',
  'word_even',
  'even_tell',
  'tell_fmil',
  'fmil_wrong',
  'wrong_name',
  'name_grandchild',
  'grandchild_aita',
  'aita_*',
  '*_*',
  '*_updat',
  'updat_*',
  '*_*',
  '*_want',
  'want_start',
  'start_say',
  'say_appreci',
  'appreci_love',
  'love_support',
  'support_guy',
  'guy_sent',
  'sent_realli',
  'realli_entertain',
  'entertain_read',
  'read_everyon',
  'everyon_opinion',
  'opinion_matter',
  'matter_restor',
  'restor_faith',
  'faith_think',
  'think_everyth',
  'everyth_turn',
  'turn_fine',
  'fine_fiancé',
  'fiancé_babi',
  'babi_girl',
  'girl_post',
  'post_fiancé',
  'fiancé_sat',
  'sat_mil',
  'mil_dinner',
  'dinner_spoke',
  'spoke_boundari',
  'boundari_want',
  'want_start',
  'start_clean',
  'clean_slate',
  'slate_alway',
  'alway_give',
  'give_second',
  'second_chanc',
  'chanc_acknowledg',
  'acknowledg_aswel',
  'aswel_want',
  'want_get',
  'get_along',
  'along_fiancé',
  'fiancé_babi',
  'babi_let',
  'let_see',
  'see_goe',
  'goe_also',
  'also_fiancé',
  'fiancé_start',
  'start_refer',
  'refer_babi',
  'babi_girl',
  'girl_lotti',
  'lotti_short',
  'short_charlott',
  'charlott_found',
  'found_hilari',
  'hilari_post',
  'post_blow',
  'blow_mayb',
  'mayb_might',
  'might_keep',
  'keep_lotti',
  'lotti_middl',
  'middl_name',
  'name_know',
  'know_wonder',
  'wonder_seen',
  'seen_post',
  'post_profil',
  'profil_fiancé',
  'fiancé_still',
  'still_serv',
  'serv_still',
  'still_intend',
  'intend_join',
  'join_weve',
  'weve_agre',
  'agre_babi',
  'babi_girl',
  'girl_look',
  'look_fiancé',
  'fiancé_away',
  'away_mum',
  'mum_trust',
  'trust_life',
  'life_whilst',
  'whilst_go',
  'go_away',
  'away_basic',
  'basic_train',
  'train_appreci',
  'appreci_kind',
  'kind_word',
  'word_might',
  'might_probabl',
  'probabl_anoth',
  'anoth_updat',
  'updat_lotti',
  'lotti_born',
  'born_*',
  '*_*',
  '*_final',
  'final_updat',
  'updat_*',
  '*_*',
  '*_thank',
  'thank_love',
  'love_support',
  'support_sent',
  'sent_way',
  'way_sinc',
  'sinc_post',
  'post_amaz',
  'amaz_read',
  'read_peopl',
  'peopl_stori',
  'stori_similar',
  'similar_mine',
  'mine_advic',
  'advic_given',
  'given_last',
  'last_final',
  'final_updat',
  'updat_stori',
  'stori_th',
  'th_august',
  'august_welcom',
  'welcom_elena',
  'elena_beatric',
  'beatric_june',
  'june_world',
  'world_weigh',
  'weigh_lb',
  'lb_fiancé',
  'fiancé_side',
  'side_whole',
  'whole_way',
  'way_could',
  'could_ask',
  'ask_anyth',
  'anyth_perfect',
  'perfect_want',
  'want_wait',
  'wait_atleast',
  'atleast_day',
  'day_announc',
  'announc_want',
  'want_bubbl',
  'bubbl_tell',
  'tell_anyon',
  'anyon_els',
  'els_th',
  'th_august',
  'august_announc',
  'announc_friend',
  'friend_famili',
  'famili_born',
  'born_sent',
  'sent_bunch',
  'bunch_congrat',
  'congrat_mil',
  'mil_upset',
  'upset_left',
  'left_birth',
  'birth_sinc',
  'sinc_meet',
  'meet_realli',
  'realli_brought',
  'brought_anymor',
  'anymor_thank',
  'thank_love',
  'love_support',
  'fiancé_expect_babi',
  'expect_babi_girl',
  'babi_girl_next',
  'girl_next_month',
  'next_month_realli',
  'month_realli_excit',
  'realli_excit_first',
  'excit_first_child',
  'first_child_weve',
  'child_weve_tri',
  'weve_tri_prepar',
  'tri_prepar_parenthood',
  'prepar_parenthood_lot',
  'parenthood_lot_famili',
  'lot_famili_help',
  'famili_help_us',
  'help_us_babi',
  'us_babi_stuff',
  'babi_stuff_give',
  'stuff_give_us',
  'give_us_gener',
  'us_gener_advic',
  'gener_advic_theyr',
  'advic_theyr_also',
  'theyr_also_realli',
  'also_realli_super',
  'realli_super_excit',
  'super_excit_especi',
  'excit_especi_fmil',
  'especi_fmil_stubborn',
  'fmil_stubborn_person',
  'stubborn_person_realli',
  'person_realli_accept',
  'realli_accept_apart',
  'accept_apart_famili',
  'apart_famili_yet',
  'famili_yet_alway',
  'yet_alway_tell',
  'alway_tell_fiancé',
  'tell_fiancé_could',
  'fiancé_could_much',
  'could_much_better',
  'much_better_fallen',
  'better_fallen_trap',
  'fallen_trap_child',
  'trap_child_hurt',
  'child_hurt_lot',
  'hurt_lot_fiancé',
  'lot_fiancé_talk',
  'fiancé_talk_still',
  'talk_still_apologis',
  'still_apologis_anyth',
  'apologis_anyth_tend',
  'anyth_tend_ignor',
  'tend_ignor_also',
  'ignor_also_one',
  'also_one_mum',
  'one_mum_post',
  'mum_post_everi',
  'post_everi_littl',
  'everi_littl_detail',
  'littl_detail_life',
  'detail_life_facebook',
  'life_facebook_like',
  'facebook_like_fiancé',
  'like_fiancé_propos',
  'fiancé_propos_straight',
  'propos_straight_facebook',
  'straight_facebook_could',
  'facebook_could_announc',
  'could_announc_recent',
  'announc_recent_fiancé',
  'recent_fiancé_come',
  'fiancé_come_name',
  'come_name_littl',
  'name_littl_girl',
  'littl_girl_decid',
  'girl_decid_perfect',
  'decid_perfect_name',
  'perfect_name_day',
  'name_day_ago',
  'day_ago_phone',
  'ago_phone_call',
  'phone_call_fiancé',
  'call_fiancé_accident',
  'fiancé_accident_slip',
  'accident_slip_tell',
  'slip_tell_fmil',
  'tell_fmil_weve',
  'fmil_weve_chosen',
  'weve_chosen_name',
  'chosen_name_non',
  'name_non_stop',
  'non_stop_messag',
  'stop_messag_us',
  'messag_us_call',
  'us_call_us',
  'call_us_find',
  'us_find_name',
  'find_name_want',
  'name_want_tell',
  'want_tell_babi',
  'tell_babi_born',
  'babi_born_ruin',
  'born_ruin_surpris',
  'ruin_surpris_whole',
  'surpris_whole_facebook',
  'whole_facebook_find',
  'facebook_find_comfort',
  'find_comfort_tell',
  'comfort_tell_everyon',
  'tell_everyon_tri',
  'everyon_tri_guilt',
  'tri_guilt_trip',
  'guilt_trip_fiancé',
  'trip_fiancé_tell',
  'fiancé_tell_hurt',
  'tell_hurt_tell',
  'hurt_tell_mother',
  'tell_mother_name',
  'mother_name_grandchild',
  'name_grandchild_love',
  'grandchild_love_especi',
  'love_especi_gon',
  'especi_gon_na',
  'gon_na_tri',
  'na_tri_keep',
  'tri_keep_see',
  'keep_see_babi',
  'see_babi_im',
  'babi_im_sure',
  'im_sure_would',
  'sure_would_think',
  'would_think_noth',
  'think_noth_said',
  'noth_said_suggest',
  'said_suggest_stop',
  'suggest_stop_get',
  'stop_get_fiancé',
  'get_fiancé_back',
  'fiancé_back_wrote',
  'back_wrote_messag',
  'wrote_messag_say',
  'messag_say_want',
  'say_want_know',
  'want_know_cant',
  'know_cant_post',
  'cant_post_facebook',
  'post_facebook_agre',
  'facebook_agre_told',
  'agre_told_fake',
  'told_fake_name',
  'fake_name_minut',
  'name_minut_later',
  'minut_later_check',
  'later_check_fb',
  'check_fb_cant',
  'fb_cant_believ',
  'cant_believ_im',
  'believ_im_go',
  'im_go_granni',
  'go_granni_babi',
  'granni_babi_charlott',
  'babi_charlott_next',
  'charlott_next_month',
  'next_month_proud',
  'month_proud_fiancé',
  'proud_fiancé_name',
  'fiancé_name_partner',
  'name_partner_fiancé',
  'partner_fiancé_furiou',
  'fiancé_furiou_call',
  'furiou_call_told',
  'call_told_wrong',
  'told_wrong_announc',
  'wrong_announc_said',
  'announc_said_overjoy',
  'said_overjoy_resist',
  'overjoy_resist_told',
  'resist_told_even',
  'told_even_name',
  'even_name_gon',
  'name_gon_na',
  'gon_na_tell',
  'na_tell_born',
  'tell_born_hung',
  'born_hung_afew',
  'hung_afew_day',
  'afew_day_fiancé',
  'day_fiancé_get',
  'fiancé_get_text',
  'get_text_say',
  'text_say_mean',
  'say_mean_im',
  'mean_im_ah',
  'im_ah_tell',
  'ah_tell_wrong',
  'tell_wrong_name',
  'wrong_name_word',
  'name_word_even',
  'word_even_tell',
  'even_tell_fmil',
  'tell_fmil_wrong',
  'fmil_wrong_name',
  'wrong_name_grandchild',
  'name_grandchild_aita',
  'grandchild_aita_*',
  'aita_*_*',
  '*_*_updat',
  '*_updat_*',
  'updat_*_*',
  '*_*_want',
  '*_want_start',
  'want_start_say',
  'start_say_appreci',
  'say_appreci_love',
  'appreci_love_support',
  'love_support_guy',
  'support_guy_sent',
  'guy_sent_realli',
  'sent_realli_entertain',
  'realli_entertain_read',
  'entertain_read_everyon',
  'read_everyon_opinion',
  'everyon_opinion_matter',
  ...],
 ['basic',
  'titl',
  'fianc',
  'get',
  'marri',
  'end',
  'year',
  'son',
  'former',
  'marriag',
  'late',
  'wife',
  'pass',
  'away',
  'cancer',
  'id',
  'like',
  'think',
  'stepson',
  'good',
  'relationship',
  'howev',
  'sensit',
  'emot',
  'kid',
  'ive',
  'ever',
  'met',
  'im',
  'say',
  'bad',
  'thingbut',
  'make',
  'difficult',
  'deal',
  'sometim',
  'said',
  'alreadi',
  'prepar',
  'powerpoint',
  'project',
  'honor',
  'mom',
  'plan',
  'play',
  'display',
  'wed',
  'instant',
  'mani',
  'reason',
  'fianc',
  'said',
  'let',
  'want',
  'rememb',
  'honor',
  'mom',
  'told',
  'occass',
  'wed',
  'noth',
  'stepson',
  'mom',
  'im',
  'sure',
  'put',
  'whole',
  'powerpoint',
  'project',
  'wed',
  'take',
  'away',
  'guest',
  'attent',
  'make',
  'confus',
  'fianc',
  'said',
  'respect',
  'son',
  'wish',
  'also',
  'said',
  'hell',
  'pay',
  'screen',
  'everyth',
  'huge',
  'fight',
  'refus',
  'even',
  'consid',
  'whole',
  'thing',
  'go',
  'even',
  'offer',
  'mayb',
  'pictur',
  'seat',
  'altern',
  'stepson',
  'thing',
  'pretti',
  'tens',
  'stepson',
  'talk',
  'fianc',
  'keep',
  'tri',
  'guilt',
  'say',
  'ye',
  'make',
  'feel',
  'overwhelm',
  'aita',
  'refus',
  'make',
  'happen',
  'fianc',
  'comment',
  'say',
  'refus',
  'indic',
  'issu',
  'stepson',
  'mom',
  'unfair',
  'sinc',
  'spent',
  'much',
  'time',
  'effort',
  'prepar',
  'project',
  'obviouslymean',
  'lot',
  'side',
  'note',
  '-',
  'stepson',
  'mom',
  'neg',
  'feel',
  'toward',
  'fact',
  'think',
  'fighter',
  'battl',
  'cancer',
  'twice',
  'play',
  'huge',
  'role',
  'fianc',
  'becom',
  'im',
  'grate',
  'edit',
  'im',
  'sorri',
  'want',
  'put',
  'link',
  'someth',
  'fail',
  'tri',
  'show',
  'size',
  'screen',
  'fianc',
  'show',
  'earlier',
  'stepson',
  'grief',
  'first',
  'met',
  'seem',
  'keep',
  'attend',
  'famili',
  'function',
  'even',
  'insid',
  'hous',
  'avoid',
  'spend',
  'time',
  'famili',
  'quiet',
  'time',
  'realli',
  'talk',
  'much',
  'suggest',
  'therapi',
  'fianc',
  'said',
  'mention',
  'son',
  'yell',
  'tell',
  'stop',
  'act',
  'like',
  'someth',
  'wrong',
  'bring',
  'therapi',
  'fianc',
  'stop',
  'bring',
  'whenev',
  'tri',
  'mention',
  'hed',
  'shut',
  'hard',
  'basic_titl',
  'titl_fianc',
  'fianc_get',
  'get_marri',
  'marri_end',
  'end_year',
  'year_son',
  'son_former',
  'former_marriag',
  'marriag_late',
  'late_wife',
  'wife_pass',
  'pass_away',
  'away_cancer',
  'cancer_id',
  'id_like',
  'like_think',
  'think_stepson',
  'stepson_good',
  'good_relationship',
  'relationship_howev',
  'howev_sensit',
  'sensit_emot',
  'emot_kid',
  'kid_ive',
  'ive_ever',
  'ever_met',
  'met_im',
  'im_say',
  'say_bad',
  'bad_thingbut',
  'thingbut_make',
  'make_difficult',
  'difficult_deal',
  'deal_sometim',
  'sometim_said',
  'said_alreadi',
  'alreadi_prepar',
  'prepar_powerpoint',
  'powerpoint_project',
  'project_honor',
  'honor_mom',
  'mom_plan',
  'plan_play',
  'play_display',
  'display_wed',
  'wed_instant',
  'instant_mani',
  'mani_reason',
  'reason_fianc',
  'fianc_said',
  'said_let',
  'let_want',
  'want_rememb',
  'rememb_honor',
  'honor_mom',
  'mom_told',
  'told_occass',
  'occass_wed',
  'wed_noth',
  'noth_stepson',
  'stepson_mom',
  'mom_im',
  'im_sure',
  'sure_put',
  'put_whole',
  'whole_powerpoint',
  'powerpoint_project',
  'project_wed',
  'wed_take',
  'take_away',
  'away_guest',
  'guest_attent',
  'attent_make',
  'make_confus',
  'confus_fianc',
  'fianc_said',
  'said_respect',
  'respect_son',
  'son_wish',
  'wish_also',
  'also_said',
  'said_hell',
  'hell_pay',
  'pay_screen',
  'screen_everyth',
  'everyth_huge',
  'huge_fight',
  'fight_refus',
  'refus_even',
  'even_consid',
  'consid_whole',
  'whole_thing',
  'thing_go',
  'go_even',
  'even_offer',
  'offer_mayb',
  'mayb_pictur',
  'pictur_seat',
  'seat_altern',
  'altern_stepson',
  'stepson_thing',
  'thing_pretti',
  'pretti_tens',
  'tens_stepson',
  'stepson_talk',
  'talk_fianc',
  'fianc_keep',
  'keep_tri',
  'tri_guilt',
  'guilt_say',
  'say_ye',
  'ye_make',
  'make_feel',
  'feel_overwhelm',
  'overwhelm_aita',
  'aita_refus',
  'refus_make',
  'make_happen',
  'happen_fianc',
  'fianc_comment',
  'comment_say',
  'say_refus',
  'refus_indic',
  'indic_issu',
  'issu_stepson',
  'stepson_mom',
  'mom_unfair',
  'unfair_sinc',
  'sinc_spent',
  'spent_much',
  'much_time',
  'time_effort',
  'effort_prepar',
  'prepar_project',
  'project_obviouslymean',
  'obviouslymean_lot',
  'lot_side',
  'side_note',
  'note_-',
  '-_stepson',
  'stepson_mom',
  'mom_neg',
  'neg_feel',
  'feel_toward',
  'toward_fact',
  'fact_think',
  'think_fighter',
  'fighter_battl',
  'battl_cancer',
  'cancer_twice',
  'twice_play',
  'play_huge',
  'huge_role',
  'role_fianc',
  'fianc_becom',
  'becom_im',
  'im_grate',
  'grate_edit',
  'edit_im',
  'im_sorri',
  'sorri_want',
  'want_put',
  'put_link',
  'link_someth',
  'someth_fail',
  'fail_tri',
  'tri_show',
  'show_size',
  'size_screen',
  'screen_fianc',
  'fianc_show',
  'show_earlier',
  'earlier_stepson',
  'stepson_grief',
  'grief_first',
  'first_met',
  'met_seem',
  'seem_keep',
  'keep_attend',
  'attend_famili',
  'famili_function',
  'function_even',
  'even_insid',
  'insid_hous',
  'hous_avoid',
  'avoid_spend',
  'spend_time',
  'time_famili',
  'famili_quiet',
  'quiet_time',
  'time_realli',
  'realli_talk',
  'talk_much',
  'much_suggest',
  'suggest_therapi',
  'therapi_fianc',
  'fianc_said',
  'said_mention',
  'mention_son',
  'son_yell',
  'yell_tell',
  'tell_stop',
  'stop_act',
  'act_like',
  'like_someth',
  'someth_wrong',
  'wrong_bring',
  'bring_therapi',
  'therapi_fianc',
  'fianc_stop',
  'stop_bring',
  'bring_whenev',
  'whenev_tri',
  'tri_mention',
  'mention_hed',
  'hed_shut',
  'shut_hard',
  'basic_titl_fianc',
  'titl_fianc_get',
  'fianc_get_marri',
  'get_marri_end',
  'marri_end_year',
  'end_year_son',
  'year_son_former',
  'son_former_marriag',
  'former_marriag_late',
  'marriag_late_wife',
  'late_wife_pass',
  'wife_pass_away',
  'pass_away_cancer',
  'away_cancer_id',
  'cancer_id_like',
  'id_like_think',
  'like_think_stepson',
  'think_stepson_good',
  'stepson_good_relationship',
  'good_relationship_howev',
  'relationship_howev_sensit',
  'howev_sensit_emot',
  'sensit_emot_kid',
  'emot_kid_ive',
  'kid_ive_ever',
  'ive_ever_met',
  'ever_met_im',
  'met_im_say',
  'im_say_bad',
  'say_bad_thingbut',
  'bad_thingbut_make',
  'thingbut_make_difficult',
  'make_difficult_deal',
  'difficult_deal_sometim',
  'deal_sometim_said',
  'sometim_said_alreadi',
  'said_alreadi_prepar',
  'alreadi_prepar_powerpoint',
  'prepar_powerpoint_project',
  'powerpoint_project_honor',
  'project_honor_mom',
  'honor_mom_plan',
  'mom_plan_play',
  'plan_play_display',
  'play_display_wed',
  'display_wed_instant',
  'wed_instant_mani',
  'instant_mani_reason',
  'mani_reason_fianc',
  'reason_fianc_said',
  'fianc_said_let',
  'said_let_want',
  'let_want_rememb',
  'want_rememb_honor',
  'rememb_honor_mom',
  'honor_mom_told',
  'mom_told_occass',
  'told_occass_wed',
  'occass_wed_noth',
  'wed_noth_stepson',
  'noth_stepson_mom',
  'stepson_mom_im',
  'mom_im_sure',
  'im_sure_put',
  'sure_put_whole',
  'put_whole_powerpoint',
  'whole_powerpoint_project',
  'powerpoint_project_wed',
  'project_wed_take',
  'wed_take_away',
  'take_away_guest',
  'away_guest_attent',
  'guest_attent_make',
  'attent_make_confus',
  'make_confus_fianc',
  'confus_fianc_said',
  'fianc_said_respect',
  'said_respect_son',
  'respect_son_wish',
  'son_wish_also',
  'wish_also_said',
  'also_said_hell',
  'said_hell_pay',
  'hell_pay_screen',
  'pay_screen_everyth',
  'screen_everyth_huge',
  'everyth_huge_fight',
  'huge_fight_refus',
  'fight_refus_even',
  'refus_even_consid',
  'even_consid_whole',
  'consid_whole_thing',
  'whole_thing_go',
  'thing_go_even',
  'go_even_offer',
  'even_offer_mayb',
  'offer_mayb_pictur',
  'mayb_pictur_seat',
  'pictur_seat_altern',
  'seat_altern_stepson',
  'altern_stepson_thing',
  'stepson_thing_pretti',
  'thing_pretti_tens',
  'pretti_tens_stepson',
  'tens_stepson_talk',
  'stepson_talk_fianc',
  'talk_fianc_keep',
  'fianc_keep_tri',
  'keep_tri_guilt',
  'tri_guilt_say',
  'guilt_say_ye',
  'say_ye_make',
  'ye_make_feel',
  'make_feel_overwhelm',
  'feel_overwhelm_aita',
  'overwhelm_aita_refus',
  'aita_refus_make',
  'refus_make_happen',
  'make_happen_fianc',
  'happen_fianc_comment',
  'fianc_comment_say',
  'comment_say_refus',
  'say_refus_indic',
  'refus_indic_issu',
  'indic_issu_stepson',
  'issu_stepson_mom',
  'stepson_mom_unfair',
  'mom_unfair_sinc',
  'unfair_sinc_spent',
  'sinc_spent_much',
  'spent_much_time',
  'much_time_effort',
  'time_effort_prepar',
  'effort_prepar_project',
  'prepar_project_obviouslymean',
  'project_obviouslymean_lot',
  'obviouslymean_lot_side',
  'lot_side_note',
  'side_note_-',
  'note_-_stepson',
  '-_stepson_mom',
  'stepson_mom_neg',
  'mom_neg_feel',
  'neg_feel_toward',
  'feel_toward_fact',
  'toward_fact_think',
  'fact_think_fighter',
  'think_fighter_battl',
  'fighter_battl_cancer',
  'battl_cancer_twice',
  'cancer_twice_play',
  'twice_play_huge',
  'play_huge_role',
  'huge_role_fianc',
  'role_fianc_becom',
  'fianc_becom_im',
  'becom_im_grate',
  'im_grate_edit',
  'grate_edit_im',
  'edit_im_sorri',
  'im_sorri_want',
  'sorri_want_put',
  'want_put_link',
  'put_link_someth',
  'link_someth_fail',
  'someth_fail_tri',
  'fail_tri_show',
  'tri_show_size',
  'show_size_screen',
  'size_screen_fianc',
  'screen_fianc_show',
  'fianc_show_earlier',
  'show_earlier_stepson',
  'earlier_stepson_grief',
  'stepson_grief_first',
  'grief_first_met',
  'first_met_seem',
  'met_seem_keep',
  'seem_keep_attend',
  'keep_attend_famili',
  'attend_famili_function',
  'famili_function_even',
  'function_even_insid',
  'even_insid_hous',
  'insid_hous_avoid',
  'hous_avoid_spend',
  'avoid_spend_time',
  'spend_time_famili',
  'time_famili_quiet',
  'famili_quiet_time',
  'quiet_time_realli',
  'time_realli_talk',
  'realli_talk_much',
  'talk_much_suggest',
  'much_suggest_therapi',
  'suggest_therapi_fianc',
  'therapi_fianc_said',
  'fianc_said_mention',
  'said_mention_son',
  'mention_son_yell',
  'son_yell_tell',
  'yell_tell_stop',
  'tell_stop_act',
  'stop_act_like',
  'act_like_someth',
  'like_someth_wrong',
  'someth_wrong_bring',
  'wrong_bring_therapi',
  'bring_therapi_fianc',
  'therapi_fianc_stop',
  'fianc_stop_bring',
  'stop_bring_whenev',
  'bring_whenev_tri',
  'whenev_tri_mention',
  'tri_mention_hed',
  'mention_hed_shut',
  'hed_shut_hard'],
 ['wife',
  'turn',
  'week',
  'im',
  'weve',
  'alway',
  'strong',
  'relationship',
  'love',
  'much',
  'wife',
  'best',
  'friend',
  'childhood',
  'jimmi',
  'know',
  'well',
  'year',
  'weve',
  'gotten',
  'know',
  'gotten',
  'close',
  'best',
  'bud',
  'like',
  'older',
  'brother',
  'lot',
  'way',
  'wife',
  'goe',
  'birthday',
  'parti',
  'love',
  'stoic',
  'introvert',
  'thought',
  'would',
  'nice',
  'throw',
  'surpris',
  'th',
  'birthday',
  'make',
  'special',
  'event',
  'want',
  'make',
  'gift',
  'would',
  'love',
  'jimmi',
  'incred',
  'artist',
  'past',
  'two',
  'month',
  'ive',
  'take',
  'lesson',
  'wife',
  'curiou',
  'spend',
  'much',
  'time',
  'away',
  'home',
  'jimmi',
  'made',
  'vagu',
  'excus',
  'tell',
  'make',
  'gift',
  'made',
  'coupl',
  'comment',
  'never',
  'seem',
  'upset',
  'told',
  'week',
  'birthday',
  'made',
  'plan',
  'jimmi',
  'job',
  'flexibl',
  'hour',
  'uncommon',
  'upset',
  'anyth',
  'birthday',
  'came',
  'could',
  'say',
  'anyth',
  'left',
  'work',
  'put',
  'plan',
  'action',
  'decor',
  'place',
  'brought',
  'cake',
  'learn',
  'youtub',
  'store',
  'friend',
  'hous',
  'got',
  'dozen',
  'bouquet',
  'flower',
  'got',
  'gift',
  'suppos',
  'come',
  'home',
  'wait',
  'hour',
  'come',
  'home',
  'call',
  'jimmi',
  'said',
  'seen',
  'call',
  'pick',
  'check',
  'locat',
  'restaur',
  'went',
  'restaur',
  'friend',
  'eat',
  'birthday',
  'cake',
  'present',
  'never',
  'met',
  'friend',
  'think',
  'theyr',
  'work',
  'seem',
  'sad',
  'smile',
  'energet',
  'want',
  'take',
  'home',
  'show',
  'gift',
  'would',
  'happi',
  'came',
  'told',
  'come',
  'home',
  'grab',
  'thing',
  'left',
  'uber',
  'back',
  'say',
  'anyth',
  'home',
  'start',
  'cri',
  'sleep',
  'couch',
  'avoid',
  'wife',
  'talk',
  'jimmi',
  'either',
  'told',
  'mom',
  'call',
  'asshol',
  'know',
  'aita',
  'wife_turn',
  'turn_week',
  'week_im',
  'im_weve',
  'weve_alway',
  'alway_strong',
  'strong_relationship',
  'relationship_love',
  'love_much',
  'much_wife',
  'wife_best',
  'best_friend',
  'friend_childhood',
  'childhood_jimmi',
  'jimmi_know',
  'know_well',
  'well_year',
  'year_weve',
  'weve_gotten',
  'gotten_know',
  'know_gotten',
  'gotten_close',
  'close_best',
  'best_bud',
  'bud_like',
  'like_older',
  'older_brother',
  'brother_lot',
  'lot_way',
  'way_wife',
  'wife_goe',
  'goe_birthday',
  'birthday_parti',
  'parti_love',
  'love_stoic',
  'stoic_introvert',
  'introvert_thought',
  'thought_would',
  'would_nice',
  'nice_throw',
  'throw_surpris',
  'surpris_th',
  'th_birthday',
  'birthday_make',
  'make_special',
  'special_event',
  'event_want',
  'want_make',
  'make_gift',
  'gift_would',
  'would_love',
  'love_jimmi',
  'jimmi_incred',
  'incred_artist',
  'artist_past',
  'past_two',
  'two_month',
  'month_ive',
  'ive_take',
  'take_lesson',
  'lesson_wife',
  'wife_curiou',
  'curiou_spend',
  'spend_much',
  'much_time',
  'time_away',
  'away_home',
  'home_jimmi',
  'jimmi_made',
  'made_vagu',
  'vagu_excus',
  'excus_tell',
  'tell_make',
  'make_gift',
  'gift_made',
  'made_coupl',
  'coupl_comment',
  'comment_never',
  'never_seem',
  'seem_upset',
  'upset_told',
  'told_week',
  'week_birthday',
  'birthday_made',
  'made_plan',
  'plan_jimmi',
  'jimmi_job',
  'job_flexibl',
  'flexibl_hour',
  'hour_uncommon',
  'uncommon_upset',
  'upset_anyth',
  'anyth_birthday',
  'birthday_came',
  'came_could',
  'could_say',
  'say_anyth',
  'anyth_left',
  'left_work',
  'work_put',
  'put_plan',
  'plan_action',
  'action_decor',
  'decor_place',
  'place_brought',
  'brought_cake',
  'cake_learn',
  'learn_youtub',
  'youtub_store',
  'store_friend',
  'friend_hous',
  'hous_got',
  'got_dozen',
  'dozen_bouquet',
  'bouquet_flower',
  'flower_got',
  'got_gift',
  'gift_suppos',
  'suppos_come',
  'come_home',
  'home_wait',
  'wait_hour',
  'hour_come',
  'come_home',
  'home_call',
  'call_jimmi',
  'jimmi_said',
  'said_seen',
  'seen_call',
  'call_pick',
  'pick_check',
  'check_locat',
  'locat_restaur',
  'restaur_went',
  'went_restaur',
  'restaur_friend',
  'friend_eat',
  'eat_birthday',
  'birthday_cake',
  'cake_present',
  'present_never',
  'never_met',
  'met_friend',
  'friend_think',
  'think_theyr',
  'theyr_work',
  'work_seem',
  'seem_sad',
  'sad_smile',
  'smile_energet',
  'energet_want',
  'want_take',
  'take_home',
  'home_show',
  'show_gift',
  'gift_would',
  'would_happi',
  'happi_came',
  'came_told',
  'told_come',
  'come_home',
  'home_grab',
  'grab_thing',
  'thing_left',
  'left_uber',
  'uber_back',
  'back_say',
  'say_anyth',
  'anyth_home',
  'home_start',
  'start_cri',
  'cri_sleep',
  'sleep_couch',
  'couch_avoid',
  'avoid_wife',
  'wife_talk',
  'talk_jimmi',
  'jimmi_either',
  'either_told',
  'told_mom',
  'mom_call',
  'call_asshol',
  'asshol_know',
  'know_aita',
  'wife_turn_week',
  'turn_week_im',
  'week_im_weve',
  'im_weve_alway',
  'weve_alway_strong',
  'alway_strong_relationship',
  'strong_relationship_love',
  'relationship_love_much',
  'love_much_wife',
  'much_wife_best',
  'wife_best_friend',
  'best_friend_childhood',
  'friend_childhood_jimmi',
  'childhood_jimmi_know',
  'jimmi_know_well',
  'know_well_year',
  'well_year_weve',
  'year_weve_gotten',
  'weve_gotten_know',
  'gotten_know_gotten',
  'know_gotten_close',
  'gotten_close_best',
  'close_best_bud',
  'best_bud_like',
  'bud_like_older',
  'like_older_brother',
  'older_brother_lot',
  'brother_lot_way',
  'lot_way_wife',
  'way_wife_goe',
  'wife_goe_birthday',
  'goe_birthday_parti',
  'birthday_parti_love',
  'parti_love_stoic',
  'love_stoic_introvert',
  'stoic_introvert_thought',
  'introvert_thought_would',
  'thought_would_nice',
  'would_nice_throw',
  'nice_throw_surpris',
  'throw_surpris_th',
  'surpris_th_birthday',
  'th_birthday_make',
  'birthday_make_special',
  'make_special_event',
  'special_event_want',
  'event_want_make',
  'want_make_gift',
  'make_gift_would',
  'gift_would_love',
  'would_love_jimmi',
  'love_jimmi_incred',
  'jimmi_incred_artist',
  'incred_artist_past',
  'artist_past_two',
  'past_two_month',
  'two_month_ive',
  'month_ive_take',
  'ive_take_lesson',
  'take_lesson_wife',
  'lesson_wife_curiou',
  'wife_curiou_spend',
  'curiou_spend_much',
  'spend_much_time',
  'much_time_away',
  'time_away_home',
  'away_home_jimmi',
  'home_jimmi_made',
  'jimmi_made_vagu',
  'made_vagu_excus',
  'vagu_excus_tell',
  'excus_tell_make',
  'tell_make_gift',
  'make_gift_made',
  'gift_made_coupl',
  'made_coupl_comment',
  'coupl_comment_never',
  'comment_never_seem',
  'never_seem_upset',
  'seem_upset_told',
  'upset_told_week',
  'told_week_birthday',
  'week_birthday_made',
  'birthday_made_plan',
  'made_plan_jimmi',
  'plan_jimmi_job',
  'jimmi_job_flexibl',
  'job_flexibl_hour',
  'flexibl_hour_uncommon',
  'hour_uncommon_upset',
  'uncommon_upset_anyth',
  'upset_anyth_birthday',
  'anyth_birthday_came',
  'birthday_came_could',
  'came_could_say',
  'could_say_anyth',
  'say_anyth_left',
  'anyth_left_work',
  'left_work_put',
  'work_put_plan',
  'put_plan_action',
  'plan_action_decor',
  'action_decor_place',
  'decor_place_brought',
  'place_brought_cake',
  'brought_cake_learn',
  'cake_learn_youtub',
  'learn_youtub_store',
  'youtub_store_friend',
  'store_friend_hous',
  'friend_hous_got',
  'hous_got_dozen',
  'got_dozen_bouquet',
  'dozen_bouquet_flower',
  'bouquet_flower_got',
  'flower_got_gift',
  'got_gift_suppos',
  'gift_suppos_come',
  'suppos_come_home',
  'come_home_wait',
  'home_wait_hour',
  'wait_hour_come',
  'hour_come_home',
  'come_home_call',
  'home_call_jimmi',
  'call_jimmi_said',
  'jimmi_said_seen',
  'said_seen_call',
  'seen_call_pick',
  'call_pick_check',
  'pick_check_locat',
  'check_locat_restaur',
  'locat_restaur_went',
  'restaur_went_restaur',
  'went_restaur_friend',
  'restaur_friend_eat',
  'friend_eat_birthday',
  'eat_birthday_cake',
  'birthday_cake_present',
  'cake_present_never',
  'present_never_met',
  'never_met_friend',
  'met_friend_think',
  'friend_think_theyr',
  'think_theyr_work',
  'theyr_work_seem',
  'work_seem_sad',
  'seem_sad_smile',
  'sad_smile_energet',
  'smile_energet_want',
  'energet_want_take',
  'want_take_home',
  'take_home_show',
  'home_show_gift',
  'show_gift_would',
  'gift_would_happi',
  'would_happi_came',
  'happi_came_told',
  'came_told_come',
  'told_come_home',
  'come_home_grab',
  'home_grab_thing',
  'grab_thing_left',
  'thing_left_uber',
  'left_uber_back',
  'uber_back_say',
  'back_say_anyth',
  'say_anyth_home',
  'anyth_home_start',
  'home_start_cri',
  'start_cri_sleep',
  'cri_sleep_couch',
  'sleep_couch_avoid',
  'couch_avoid_wife',
  'avoid_wife_talk',
  'wife_talk_jimmi',
  'talk_jimmi_either',
  'jimmi_either_told',
  'either_told_mom',
  'told_mom_call',
  'mom_call_asshol',
  'call_asshol_know',
  'asshol_know_aita'],
 ['wife',
  'gave',
  'birth',
  'day',
  'ago',
  'believ',
  'fairli',
  'standard',
  'pregnanc',
  'best',
  'take',
  'care',
  'thing',
  'make',
  'easi',
  'took',
  'hospit',
  'due',
  'sister',
  'mother',
  'met',
  'us',
  'problem',
  'start',
  'taken',
  'deliveri',
  'room',
  'ask',
  'nurs',
  'mother',
  'sister',
  'allow',
  'deliveri',
  'told',
  'want',
  'wait',
  'ive',
  'deliv',
  'calm',
  'let',
  'room',
  'kind',
  'shock',
  'want',
  'make',
  'scene',
  'said',
  'ok',
  'sat',
  'wait',
  'room',
  'realli',
  'discuss',
  'plan',
  'hospit',
  'reason',
  'think',
  'son',
  'born',
  'text',
  'sister',
  'knew',
  'wife',
  'go',
  'said',
  'told',
  'ask',
  'wife',
  'concern',
  'someth',
  'consid',
  'someon',
  'would',
  'made',
  'fuss',
  'made',
  'thing',
  'difficult',
  'text',
  'back',
  'say',
  'wife',
  'want',
  'see',
  'like',
  'ad',
  'agre',
  'wife',
  'tri',
  'convinc',
  'ultim',
  'choic',
  'respect',
  'sat',
  'wait',
  'room',
  'hour',
  'get',
  'minim',
  'updat',
  'labor',
  'fairli',
  'slow',
  'decid',
  'point',
  'text',
  'sister',
  'go',
  'home',
  'id',
  'meet',
  'son',
  'brought',
  'home',
  'handl',
  'birth',
  'certif',
  'stuff',
  'next',
  'day',
  'came',
  'home',
  'hour',
  'later',
  'final',
  'abl',
  'meet',
  'son',
  'wife',
  'mother',
  'sister',
  'left',
  'got',
  'angri',
  'leav',
  'hospit',
  'angri',
  'told',
  'talk',
  'day',
  'given',
  'birth',
  'drop',
  'subject',
  'final',
  'told',
  'exclud',
  'birth',
  'son',
  'reason',
  'see',
  'need',
  'hang',
  'around',
  'hospit',
  'wait',
  'room',
  'hour',
  'noth',
  'even',
  'sister',
  'think',
  'wrong',
  'said',
  'could',
  'complic',
  'need',
  'repli',
  'kept',
  'room',
  'doctor',
  'would',
  'handl',
  'problem',
  'anyway',
  'call',
  'inconsider',
  'asshol',
  'talk',
  'short',
  'sever',
  'day',
  'sister',
  'told',
  'apolog',
  'move',
  'past',
  'stress',
  'time',
  'wife',
  'think',
  'im',
  'owe',
  'bigger',
  'apolog',
  'first',
  'exclud',
  'son',
  'birth',
  'wife_gave',
  'gave_birth',
  'birth_day',
  'day_ago',
  'ago_believ',
  'believ_fairli',
  'fairli_standard',
  'standard_pregnanc',
  'pregnanc_best',
  'best_take',
  'take_care',
  'care_thing',
  'thing_make',
  'make_easi',
  'easi_took',
  'took_hospit',
  'hospit_due',
  'due_sister',
  'sister_mother',
  'mother_met',
  'met_us',
  'us_problem',
  'problem_start',
  'start_taken',
  'taken_deliveri',
  'deliveri_room',
  'room_ask',
  'ask_nurs',
  'nurs_mother',
  'mother_sister',
  'sister_allow',
  'allow_deliveri',
  'deliveri_told',
  'told_want',
  'want_wait',
  'wait_ive',
  'ive_deliv',
  'deliv_calm',
  'calm_let',
  'let_room',
  'room_kind',
  'kind_shock',
  'shock_want',
  'want_make',
  'make_scene',
  'scene_said',
  'said_ok',
  'ok_sat',
  'sat_wait',
  'wait_room',
  'room_realli',
  'realli_discuss',
  'discuss_plan',
  'plan_hospit',
  'hospit_reason',
  'reason_think',
  'think_son',
  'son_born',
  'born_text',
  'text_sister',
  'sister_knew',
  'knew_wife',
  'wife_go',
  'go_said',
  'said_told',
  'told_ask',
  'ask_wife',
  'wife_concern',
  'concern_someth',
  'someth_consid',
  'consid_someon',
  'someon_would',
  'would_made',
  'made_fuss',
  'fuss_made',
  'made_thing',
  'thing_difficult',
  'difficult_text',
  'text_back',
  'back_say',
  'say_wife',
  'wife_want',
  'want_see',
  'see_like',
  'like_ad',
  'ad_agre',
  'agre_wife',
  'wife_tri',
  'tri_convinc',
  'convinc_ultim',
  'ultim_choic',
  'choic_respect',
  'respect_sat',
  'sat_wait',
  'wait_room',
  'room_hour',
  'hour_get',
  'get_minim',
  'minim_updat',
  'updat_labor',
  'labor_fairli',
  'fairli_slow',
  'slow_decid',
  'decid_point',
  'point_text',
  'text_sister',
  'sister_go',
  'go_home',
  'home_id',
  'id_meet',
  'meet_son',
  'son_brought',
  'brought_home',
  'home_handl',
  'handl_birth',
  'birth_certif',
  'certif_stuff',
  'stuff_next',
  'next_day',
  'day_came',
  'came_home',
  'home_hour',
  'hour_later',
  'later_final',
  'final_abl',
  'abl_meet',
  'meet_son',
  'son_wife',
  'wife_mother',
  'mother_sister',
  'sister_left',
  'left_got',
  'got_angri',
  'angri_leav',
  'leav_hospit',
  'hospit_angri',
  'angri_told',
  'told_talk',
  'talk_day',
  'day_given',
  'given_birth',
  'birth_drop',
  'drop_subject',
  'subject_final',
  'final_told',
  'told_exclud',
  'exclud_birth',
  'birth_son',
  'son_reason',
  'reason_see',
  'see_need',
  'need_hang',
  'hang_around',
  'around_hospit',
  'hospit_wait',
  'wait_room',
  'room_hour',
  'hour_noth',
  'noth_even',
  'even_sister',
  'sister_think',
  'think_wrong',
  'wrong_said',
  'said_could',
  'could_complic',
  'complic_need',
  'need_repli',
  'repli_kept',
  'kept_room',
  'room_doctor',
  'doctor_would',
  'would_handl',
  'handl_problem',
  'problem_anyway',
  'anyway_call',
  'call_inconsider',
  'inconsider_asshol',
  'asshol_talk',
  'talk_short',
  'short_sever',
  'sever_day',
  'day_sister',
  'sister_told',
  'told_apolog',
  'apolog_move',
  'move_past',
  'past_stress',
  'stress_time',
  'time_wife',
  'wife_think',
  'think_im',
  'im_owe',
  'owe_bigger',
  'bigger_apolog',
  'apolog_first',
  'first_exclud',
  'exclud_son',
  'son_birth',
  'wife_gave_birth',
  'gave_birth_day',
  'birth_day_ago',
  'day_ago_believ',
  'ago_believ_fairli',
  'believ_fairli_standard',
  'fairli_standard_pregnanc',
  'standard_pregnanc_best',
  'pregnanc_best_take',
  'best_take_care',
  'take_care_thing',
  'care_thing_make',
  'thing_make_easi',
  'make_easi_took',
  'easi_took_hospit',
  'took_hospit_due',
  'hospit_due_sister',
  'due_sister_mother',
  'sister_mother_met',
  'mother_met_us',
  'met_us_problem',
  'us_problem_start',
  'problem_start_taken',
  'start_taken_deliveri',
  'taken_deliveri_room',
  'deliveri_room_ask',
  'room_ask_nurs',
  'ask_nurs_mother',
  'nurs_mother_sister',
  'mother_sister_allow',
  'sister_allow_deliveri',
  'allow_deliveri_told',
  'deliveri_told_want',
  'told_want_wait',
  'want_wait_ive',
  'wait_ive_deliv',
  'ive_deliv_calm',
  'deliv_calm_let',
  'calm_let_room',
  'let_room_kind',
  'room_kind_shock',
  'kind_shock_want',
  'shock_want_make',
  'want_make_scene',
  'make_scene_said',
  'scene_said_ok',
  'said_ok_sat',
  'ok_sat_wait',
  'sat_wait_room',
  'wait_room_realli',
  'room_realli_discuss',
  'realli_discuss_plan',
  'discuss_plan_hospit',
  'plan_hospit_reason',
  'hospit_reason_think',
  'reason_think_son',
  'think_son_born',
  'son_born_text',
  'born_text_sister',
  'text_sister_knew',
  'sister_knew_wife',
  'knew_wife_go',
  'wife_go_said',
  'go_said_told',
  'said_told_ask',
  'told_ask_wife',
  'ask_wife_concern',
  'wife_concern_someth',
  'concern_someth_consid',
  'someth_consid_someon',
  'consid_someon_would',
  'someon_would_made',
  'would_made_fuss',
  'made_fuss_made',
  'fuss_made_thing',
  'made_thing_difficult',
  'thing_difficult_text',
  'difficult_text_back',
  'text_back_say',
  'back_say_wife',
  'say_wife_want',
  'wife_want_see',
  'want_see_like',
  'see_like_ad',
  'like_ad_agre',
  'ad_agre_wife',
  'agre_wife_tri',
  'wife_tri_convinc',
  'tri_convinc_ultim',
  'convinc_ultim_choic',
  'ultim_choic_respect',
  'choic_respect_sat',
  'respect_sat_wait',
  'sat_wait_room',
  'wait_room_hour',
  'room_hour_get',
  'hour_get_minim',
  'get_minim_updat',
  'minim_updat_labor',
  'updat_labor_fairli',
  'labor_fairli_slow',
  'fairli_slow_decid',
  'slow_decid_point',
  'decid_point_text',
  'point_text_sister',
  'text_sister_go',
  'sister_go_home',
  'go_home_id',
  'home_id_meet',
  'id_meet_son',
  'meet_son_brought',
  'son_brought_home',
  'brought_home_handl',
  'home_handl_birth',
  'handl_birth_certif',
  'birth_certif_stuff',
  'certif_stuff_next',
  'stuff_next_day',
  'next_day_came',
  'day_came_home',
  'came_home_hour',
  'home_hour_later',
  'hour_later_final',
  'later_final_abl',
  'final_abl_meet',
  'abl_meet_son',
  'meet_son_wife',
  'son_wife_mother',
  'wife_mother_sister',
  'mother_sister_left',
  'sister_left_got',
  'left_got_angri',
  'got_angri_leav',
  'angri_leav_hospit',
  'leav_hospit_angri',
  'hospit_angri_told',
  'angri_told_talk',
  'told_talk_day',
  'talk_day_given',
  'day_given_birth',
  'given_birth_drop',
  'birth_drop_subject',
  'drop_subject_final',
  'subject_final_told',
  'final_told_exclud',
  'told_exclud_birth',
  'exclud_birth_son',
  'birth_son_reason',
  'son_reason_see',
  'reason_see_need',
  'see_need_hang',
  'need_hang_around',
  'hang_around_hospit',
  'around_hospit_wait',
  'hospit_wait_room',
  'wait_room_hour',
  'room_hour_noth',
  'hour_noth_even',
  'noth_even_sister',
  'even_sister_think',
  'sister_think_wrong',
  'think_wrong_said',
  'wrong_said_could',
  'said_could_complic',
  'could_complic_need',
  'complic_need_repli',
  'need_repli_kept',
  'repli_kept_room',
  'kept_room_doctor',
  'room_doctor_would',
  'doctor_would_handl',
  'would_handl_problem',
  'handl_problem_anyway',
  'problem_anyway_call',
  'anyway_call_inconsider',
  'call_inconsider_asshol',
  'inconsider_asshol_talk',
  'asshol_talk_short',
  'talk_short_sever',
  'short_sever_day',
  'sever_day_sister',
  'day_sister_told',
  'sister_told_apolog',
  'told_apolog_move',
  'apolog_move_past',
  'move_past_stress',
  'past_stress_time',
  'stress_time_wife',
  'time_wife_think',
  'wife_think_im',
  'think_im_owe',
  'im_owe_bigger',
  'owe_bigger_apolog',
  'bigger_apolog_first',
  'apolog_first_exclud',
  'first_exclud_son',
  'exclud_son_birth'],
 ['husband',
  'rent',
  'aunt',
  'home',
  'got',
  'marri',
  'sign',
  'month',
  'month',
  'leas',
  'move',
  'move',
  'marriag',
  'rent',
  'super',
  'cheap',
  'parent',
  'recent',
  'came',
  'ask',
  'could',
  'park',
  'rv',
  'home',
  'see',
  'problem',
  'yard',
  'realli',
  'big',
  'space',
  'citi',
  'ordin',
  'rv',
  'park',
  'back',
  'yard',
  'rv',
  'gate',
  'fenc',
  'husband',
  'went',
  'aunt',
  'ask',
  'could',
  'instal',
  'rv',
  'gate',
  'aunt',
  'said',
  'husband',
  'relay',
  'messag',
  'parent',
  'seem',
  'upset',
  'told',
  'day',
  'ago',
  'came',
  'home',
  'work',
  'saw',
  'dad',
  'construct',
  'crew',
  'home',
  'remov',
  'part',
  'fenc',
  'gate',
  'appl',
  'tree',
  'way',
  'fit',
  'rv',
  'yard',
  'husband',
  'angri',
  'told',
  'dad',
  'continu',
  'need',
  'repair',
  'fenc',
  'point',
  'felt',
  'like',
  'pointless',
  'fenc',
  'guy',
  'alreadi',
  'built',
  'column',
  'gate',
  'would',
  'cost',
  'lot',
  'money',
  'rebuild',
  'fenc',
  'told',
  'dad',
  'finish',
  'job',
  'make',
  'sure',
  'left',
  'super',
  'clean',
  'look',
  'nice',
  'plan',
  'talk',
  'aunt',
  'later',
  'explain',
  'happen',
  'know',
  'dad',
  'told',
  'guy',
  'remov',
  'tree',
  'husband',
  'aunt',
  'came',
  'saw',
  'tree',
  'cut',
  'start',
  'cri',
  'refus',
  'talk',
  'dad',
  'husband',
  'came',
  'home',
  'found',
  'day',
  'notic',
  'door',
  'termin',
  'leas',
  'tri',
  'call',
  'aunt',
  'answer',
  'phone',
  'call',
  'mil',
  'went',
  'talk',
  'aunt',
  'later',
  'got',
  'sever',
  'messag',
  'call',
  'cut',
  'aunt',
  'late',
  'husband',
  'tree',
  'idea',
  'plant',
  'tree',
  'husband',
  'whole',
  'famili',
  'realli',
  'angri',
  'never',
  'told',
  'remov',
  'tree',
  'feel',
  'like',
  'thrown',
  'bu',
  'husband_rent',
  'rent_aunt',
  'aunt_home',
  'home_got',
  'got_marri',
  'marri_sign',
  'sign_month',
  'month_month',
  'month_leas',
  'leas_move',
  'move_move',
  'move_marriag',
  'marriag_rent',
  'rent_super',
  'super_cheap',
  'cheap_parent',
  'parent_recent',
  'recent_came',
  'came_ask',
  'ask_could',
  'could_park',
  'park_rv',
  'rv_home',
  'home_see',
  'see_problem',
  'problem_yard',
  'yard_realli',
  'realli_big',
  'big_space',
  'space_citi',
  'citi_ordin',
  'ordin_rv',
  'rv_park',
  'park_back',
  'back_yard',
  'yard_rv',
  'rv_gate',
  'gate_fenc',
  'fenc_husband',
  'husband_went',
  'went_aunt',
  'aunt_ask',
  'ask_could',
  'could_instal',
  'instal_rv',
  'rv_gate',
  'gate_aunt',
  'aunt_said',
  'said_husband',
  'husband_relay',
  'relay_messag',
  'messag_parent',
  'parent_seem',
  'seem_upset',
  'upset_told',
  'told_day',
  'day_ago',
  'ago_came',
  'came_home',
  'home_work',
  'work_saw',
  'saw_dad',
  'dad_construct',
  'construct_crew',
  'crew_home',
  'home_remov',
  'remov_part',
  'part_fenc',
  'fenc_gate',
  'gate_appl',
  'appl_tree',
  'tree_way',
  'way_fit',
  'fit_rv',
  'rv_yard',
  'yard_husband',
  'husband_angri',
  'angri_told',
  'told_dad',
  'dad_continu',
  'continu_need',
  'need_repair',
  'repair_fenc',
  'fenc_point',
  'point_felt',
  'felt_like',
  'like_pointless',
  'pointless_fenc',
  'fenc_guy',
  'guy_alreadi',
  'alreadi_built',
  'built_column',
  'column_gate',
  'gate_would',
  'would_cost',
  'cost_lot',
  'lot_money',
  'money_rebuild',
  'rebuild_fenc',
  'fenc_told',
  'told_dad',
  'dad_finish',
  'finish_job',
  'job_make',
  'make_sure',
  'sure_left',
  'left_super',
  'super_clean',
  'clean_look',
  'look_nice',
  'nice_plan',
  'plan_talk',
  'talk_aunt',
  'aunt_later',
  'later_explain',
  'explain_happen',
  'happen_know',
  'know_dad',
  'dad_told',
  'told_guy',
  'guy_remov',
  'remov_tree',
  'tree_husband',
  'husband_aunt',
  'aunt_came',
  'came_saw',
  'saw_tree',
  'tree_cut',
  'cut_start',
  'start_cri',
  'cri_refus',
  'refus_talk',
  'talk_dad',
  'dad_husband',
  'husband_came',
  'came_home',
  'home_found',
  'found_day',
  'day_notic',
  'notic_door',
  'door_termin',
  'termin_leas',
  'leas_tri',
  'tri_call',
  'call_aunt',
  'aunt_answer',
  'answer_phone',
  'phone_call',
  'call_mil',
  'mil_went',
  'went_talk',
  'talk_aunt',
  'aunt_later',
  'later_got',
  'got_sever',
  'sever_messag',
  'messag_call',
  'call_cut',
  'cut_aunt',
  'aunt_late',
  'late_husband',
  'husband_tree',
  'tree_idea',
  'idea_plant',
  'plant_tree',
  'tree_husband',
  'husband_whole',
  'whole_famili',
  'famili_realli',
  'realli_angri',
  'angri_never',
  'never_told',
  'told_remov',
  'remov_tree',
  'tree_feel',
  'feel_like',
  'like_thrown',
  'thrown_bu',
  'husband_rent_aunt',
  'rent_aunt_home',
  'aunt_home_got',
  'home_got_marri',
  'got_marri_sign',
  'marri_sign_month',
  'sign_month_month',
  'month_month_leas',
  'month_leas_move',
  'leas_move_move',
  'move_move_marriag',
  'move_marriag_rent',
  'marriag_rent_super',
  'rent_super_cheap',
  'super_cheap_parent',
  'cheap_parent_recent',
  'parent_recent_came',
  'recent_came_ask',
  'came_ask_could',
  'ask_could_park',
  'could_park_rv',
  'park_rv_home',
  'rv_home_see',
  'home_see_problem',
  'see_problem_yard',
  'problem_yard_realli',
  'yard_realli_big',
  'realli_big_space',
  'big_space_citi',
  'space_citi_ordin',
  'citi_ordin_rv',
  'ordin_rv_park',
  'rv_park_back',
  'park_back_yard',
  'back_yard_rv',
  'yard_rv_gate',
  'rv_gate_fenc',
  'gate_fenc_husband',
  'fenc_husband_went',
  'husband_went_aunt',
  'went_aunt_ask',
  'aunt_ask_could',
  'ask_could_instal',
  'could_instal_rv',
  'instal_rv_gate',
  'rv_gate_aunt',
  'gate_aunt_said',
  'aunt_said_husband',
  'said_husband_relay',
  'husband_relay_messag',
  'relay_messag_parent',
  'messag_parent_seem',
  'parent_seem_upset',
  'seem_upset_told',
  'upset_told_day',
  'told_day_ago',
  'day_ago_came',
  'ago_came_home',
  'came_home_work',
  'home_work_saw',
  'work_saw_dad',
  'saw_dad_construct',
  'dad_construct_crew',
  'construct_crew_home',
  'crew_home_remov',
  'home_remov_part',
  'remov_part_fenc',
  'part_fenc_gate',
  'fenc_gate_appl',
  'gate_appl_tree',
  'appl_tree_way',
  'tree_way_fit',
  'way_fit_rv',
  'fit_rv_yard',
  'rv_yard_husband',
  'yard_husband_angri',
  'husband_angri_told',
  'angri_told_dad',
  'told_dad_continu',
  'dad_continu_need',
  'continu_need_repair',
  'need_repair_fenc',
  'repair_fenc_point',
  'fenc_point_felt',
  'point_felt_like',
  'felt_like_pointless',
  'like_pointless_fenc',
  'pointless_fenc_guy',
  'fenc_guy_alreadi',
  'guy_alreadi_built',
  'alreadi_built_column',
  'built_column_gate',
  'column_gate_would',
  'gate_would_cost',
  'would_cost_lot',
  'cost_lot_money',
  'lot_money_rebuild',
  'money_rebuild_fenc',
  'rebuild_fenc_told',
  'fenc_told_dad',
  'told_dad_finish',
  'dad_finish_job',
  'finish_job_make',
  'job_make_sure',
  'make_sure_left',
  'sure_left_super',
  'left_super_clean',
  'super_clean_look',
  'clean_look_nice',
  'look_nice_plan',
  'nice_plan_talk',
  'plan_talk_aunt',
  'talk_aunt_later',
  'aunt_later_explain',
  'later_explain_happen',
  'explain_happen_know',
  'happen_know_dad',
  'know_dad_told',
  'dad_told_guy',
  'told_guy_remov',
  'guy_remov_tree',
  'remov_tree_husband',
  'tree_husband_aunt',
  'husband_aunt_came',
  'aunt_came_saw',
  'came_saw_tree',
  'saw_tree_cut',
  'tree_cut_start',
  'cut_start_cri',
  'start_cri_refus',
  'cri_refus_talk',
  'refus_talk_dad',
  'talk_dad_husband',
  'dad_husband_came',
  'husband_came_home',
  'came_home_found',
  'home_found_day',
  'found_day_notic',
  'day_notic_door',
  'notic_door_termin',
  'door_termin_leas',
  'termin_leas_tri',
  'leas_tri_call',
  'tri_call_aunt',
  'call_aunt_answer',
  'aunt_answer_phone',
  'answer_phone_call',
  'phone_call_mil',
  'call_mil_went',
  'mil_went_talk',
  'went_talk_aunt',
  'talk_aunt_later',
  'aunt_later_got',
  'later_got_sever',
  'got_sever_messag',
  'sever_messag_call',
  'messag_call_cut',
  'call_cut_aunt',
  'cut_aunt_late',
  'aunt_late_husband',
  'late_husband_tree',
  'husband_tree_idea',
  'tree_idea_plant',
  'idea_plant_tree',
  'plant_tree_husband',
  'tree_husband_whole',
  'husband_whole_famili',
  'whole_famili_realli',
  'famili_realli_angri',
  'realli_angri_never',
  'angri_never_told',
  'never_told_remov',
  'told_remov_tree',
  'remov_tree_feel',
  'tree_feel_like',
  'feel_like_thrown',
  'like_thrown_bu'],
 ['figur',
  'read',
  'post',
  'would',
  'appreci',
  'updat',
  'regard',
  'student',
  'tri',
  'protect',
  'read',
  'comment',
  'right',
  'wouldv',
  'ass',
  'fail',
  'pronunci',
  'excel',
  'would',
  'shame',
  'forc',
  'chang',
  'made',
  'decis',
  'think',
  'happi',
  'find',
  'exam',
  'went',
  'chat',
  'ava',
  'told',
  'well',
  'done',
  'year',
  'explain',
  'student',
  'taught',
  'specif',
  'pronunci',
  'correctincorrect',
  'accent',
  'expect',
  'chang',
  'see',
  'well',
  'sinc',
  'teach',
  'certain',
  'pronunci',
  'expect',
  'know',
  'pronunci',
  'rule',
  'teach',
  'told',
  'know',
  'differ',
  'pronunci',
  'without',
  'actual',
  'implement',
  'exam',
  'ask',
  'question',
  'regard',
  'pronunci',
  'differ',
  'rest',
  'standard',
  'exam',
  'convers',
  'present',
  'mark',
  'base',
  'dialect',
  'speak',
  'pass',
  'fli',
  'color',
  'know',
  'yet',
  'receiv',
  'scholarship',
  'next',
  'year',
  'grade',
  'go',
  'forward',
  'well',
  'make',
  'sure',
  'student',
  'speak',
  'differ',
  'dialect',
  'get',
  'full',
  'grade',
  'long',
  'know',
  'differ',
  'pronunci',
  'region',
  'requir',
  'anyway',
  'part',
  'exam',
  'figur_read',
  'read_post',
  'post_would',
  'would_appreci',
  'appreci_updat',
  'updat_regard',
  'regard_student',
  'student_tri',
  'tri_protect',
  'protect_read',
  'read_comment',
  'comment_right',
  'right_wouldv',
  'wouldv_ass',
  'ass_fail',
  'fail_pronunci',
  'pronunci_excel',
  'excel_would',
  'would_shame',
  'shame_forc',
  'forc_chang',
  'chang_made',
  'made_decis',
  'decis_think',
  'think_happi',
  'happi_find',
  'find_exam',
  'exam_went',
  'went_chat',
  'chat_ava',
  'ava_told',
  'told_well',
  'well_done',
  'done_year',
  'year_explain',
  'explain_student',
  'student_taught',
  'taught_specif',
  'specif_pronunci',
  'pronunci_correctincorrect',
  'correctincorrect_accent',
  'accent_expect',
  'expect_chang',
  'chang_see',
  'see_well',
  'well_sinc',
  'sinc_teach',
  'teach_certain',
  'certain_pronunci',
  'pronunci_expect',
  'expect_know',
  'know_pronunci',
  'pronunci_rule',
  'rule_teach',
  'teach_told',
  'told_know',
  'know_differ',
  'differ_pronunci',
  'pronunci_without',
  'without_actual',
  'actual_implement',
  'implement_exam',
  'exam_ask',
  'ask_question',
  'question_regard',
  'regard_pronunci',
  'pronunci_differ',
  'differ_rest',
  'rest_standard',
  'standard_exam',
  'exam_convers',
  'convers_present',
  'present_mark',
  'mark_base',
  'base_dialect',
  'dialect_speak',
  'speak_pass',
  'pass_fli',
  'fli_color',
  'color_know',
  'know_yet',
  'yet_receiv',
  'receiv_scholarship',
  'scholarship_next',
  'next_year',
  'year_grade',
  'grade_go',
  'go_forward',
  'forward_well',
  'well_make',
  'make_sure',
  'sure_student',
  'student_speak',
  'speak_differ',
  'differ_dialect',
  'dialect_get',
  'get_full',
  'full_grade',
  'grade_long',
  'long_know',
  'know_differ',
  'differ_pronunci',
  'pronunci_region',
  'region_requir',
  'requir_anyway',
  'anyway_part',
  'part_exam',
  'figur_read_post',
  'read_post_would',
  'post_would_appreci',
  'would_appreci_updat',
  'appreci_updat_regard',
  'updat_regard_student',
  'regard_student_tri',
  'student_tri_protect',
  'tri_protect_read',
  'protect_read_comment',
  'read_comment_right',
  'comment_right_wouldv',
  'right_wouldv_ass',
  'wouldv_ass_fail',
  'ass_fail_pronunci',
  'fail_pronunci_excel',
  'pronunci_excel_would',
  'excel_would_shame',
  'would_shame_forc',
  'shame_forc_chang',
  'forc_chang_made',
  'chang_made_decis',
  'made_decis_think',
  'decis_think_happi',
  'think_happi_find',
  'happi_find_exam',
  'find_exam_went',
  'exam_went_chat',
  'went_chat_ava',
  'chat_ava_told',
  'ava_told_well',
  'told_well_done',
  'well_done_year',
  'done_year_explain',
  'year_explain_student',
  'explain_student_taught',
  'student_taught_specif',
  'taught_specif_pronunci',
  'specif_pronunci_correctincorrect',
  'pronunci_correctincorrect_accent',
  'correctincorrect_accent_expect',
  'accent_expect_chang',
  'expect_chang_see',
  'chang_see_well',
  'see_well_sinc',
  'well_sinc_teach',
  'sinc_teach_certain',
  'teach_certain_pronunci',
  'certain_pronunci_expect',
  'pronunci_expect_know',
  'expect_know_pronunci',
  'know_pronunci_rule',
  'pronunci_rule_teach',
  'rule_teach_told',
  'teach_told_know',
  'told_know_differ',
  'know_differ_pronunci',
  'differ_pronunci_without',
  'pronunci_without_actual',
  'without_actual_implement',
  'actual_implement_exam',
  'implement_exam_ask',
  'exam_ask_question',
  'ask_question_regard',
  'question_regard_pronunci',
  'regard_pronunci_differ',
  'pronunci_differ_rest',
  'differ_rest_standard',
  'rest_standard_exam',
  'standard_exam_convers',
  'exam_convers_present',
  'convers_present_mark',
  'present_mark_base',
  'mark_base_dialect',
  'base_dialect_speak',
  'dialect_speak_pass',
  'speak_pass_fli',
  'pass_fli_color',
  'fli_color_know',
  'color_know_yet',
  'know_yet_receiv',
  'yet_receiv_scholarship',
  'receiv_scholarship_next',
  'scholarship_next_year',
  'next_year_grade',
  'year_grade_go',
  'grade_go_forward',
  'go_forward_well',
  'forward_well_make',
  'well_make_sure',
  'make_sure_student',
  'sure_student_speak',
  'student_speak_differ',
  'speak_differ_dialect',
  'differ_dialect_get',
  'dialect_get_full',
  'get_full_grade',
  'full_grade_long',
  'grade_long_know',
  'long_know_differ',
  'know_differ_pronunci',
  'differ_pronunci_region',
  'pronunci_region_requir',
  'region_requir_anyway',
  'requir_anyway_part',
  'anyway_part_exam'],
 ['wife',
  'grade',
  '+',
  'picki',
  'eater',
  'bothersom',
  'certain',
  'degre',
  'holiday',
  'basic',
  'shitshow',
  'begin',
  'shed',
  'refus',
  'eat',
  'certain',
  'meal',
  'mom',
  'would',
  'take',
  'personallywhich',
  'result',
  'seri',
  'argument',
  'compromis',
  'year',
  'wife',
  'offer',
  'bring',
  'food',
  'thanksgiv',
  'dinner',
  'stun',
  'ask',
  'thought',
  'look',
  'confus',
  'told',
  'weird',
  'itd',
  'bring',
  'food',
  'especi',
  'woudlnt',
  'share',
  'anybodi',
  'els',
  'told',
  'think',
  'mom',
  'react',
  'shed',
  'get',
  'offend',
  'upset',
  'wife',
  'said',
  'problem',
  'tri',
  'make',
  'work',
  'bring',
  'meal',
  'told',
  'mom',
  'might',
  'like',
  'even',
  'allow',
  'blew',
  'ask',
  'want',
  'either',
  'eat',
  'food',
  'like',
  'go',
  'hungri',
  'suggest',
  'give',
  'mom',
  'food',
  'chanc',
  'said',
  'mom',
  'cook',
  'like',
  'certain',
  'food',
  'argument',
  'end',
  'tell',
  'could',
  'stay',
  'home',
  'thanksgiv',
  'whatev',
  'meal',
  'like',
  'got',
  'quiet',
  'lash',
  'call',
  'insensit',
  'neg',
  'say',
  'repeatedli',
  'ask',
  'calm',
  'stop',
  'rant',
  'basic',
  'exclud',
  'major',
  'event',
  'start',
  'cold',
  'shoulder',
  'time',
  'guilt',
  'say',
  'im',
  'treat',
  'poorli',
  'offer',
  'perfect',
  'compromis',
  'updat',
  'wife',
  'decid',
  'go',
  'spend',
  'thankgiv',
  'famili',
  'way',
  'live',
  'hour',
  'away',
  'mean',
  'unnecesari',
  'travel',
  'expens',
  'instead',
  'basic',
  'ditch',
  'whole',
  'week',
  'yall',
  'happi',
  'though',
  'appreci',
  'insight',
  'comment',
  'situat',
  'othersnot',
  'much',
  'especi',
  'assumpt',
  'claim',
  'wife',
  'allergi',
  'yall',
  'get',
  'anyway',
  'sall',
  'good',
  'guess',
  'though',
  'im',
  'thrill',
  'decis',
  'feel',
  'like',
  'spite',
  'get',
  'cave',
  'wife_grade',
  'grade_+',
  '+_picki',
  'picki_eater',
  'eater_bothersom',
  'bothersom_certain',
  'certain_degre',
  'degre_holiday',
  'holiday_basic',
  'basic_shitshow',
  'shitshow_begin',
  'begin_shed',
  'shed_refus',
  'refus_eat',
  'eat_certain',
  'certain_meal',
  'meal_mom',
  'mom_would',
  'would_take',
  'take_personallywhich',
  'personallywhich_result',
  'result_seri',
  'seri_argument',
  'argument_compromis',
  'compromis_year',
  'year_wife',
  'wife_offer',
  'offer_bring',
  'bring_food',
  'food_thanksgiv',
  'thanksgiv_dinner',
  'dinner_stun',
  'stun_ask',
  'ask_thought',
  'thought_look',
  'look_confus',
  'confus_told',
  'told_weird',
  'weird_itd',
  'itd_bring',
  'bring_food',
  'food_especi',
  'especi_woudlnt',
  'woudlnt_share',
  'share_anybodi',
  'anybodi_els',
  'els_told',
  'told_think',
  'think_mom',
  'mom_react',
  'react_shed',
  'shed_get',
  'get_offend',
  'offend_upset',
  'upset_wife',
  'wife_said',
  'said_problem',
  'problem_tri',
  'tri_make',
  'make_work',
  'work_bring',
  'bring_meal',
  'meal_told',
  'told_mom',
  'mom_might',
  'might_like',
  'like_even',
  'even_allow',
  'allow_blew',
  'blew_ask',
  'ask_want',
  'want_either',
  'either_eat',
  'eat_food',
  'food_like',
  'like_go',
  'go_hungri',
  'hungri_suggest',
  'suggest_give',
  'give_mom',
  'mom_food',
  'food_chanc',
  'chanc_said',
  'said_mom',
  'mom_cook',
  'cook_like',
  'like_certain',
  'certain_food',
  'food_argument',
  'argument_end',
  'end_tell',
  'tell_could',
  'could_stay',
  'stay_home',
  'home_thanksgiv',
  'thanksgiv_whatev',
  'whatev_meal',
  'meal_like',
  'like_got',
  'got_quiet',
  'quiet_lash',
  'lash_call',
  'call_insensit',
  'insensit_neg',
  'neg_say',
  'say_repeatedli',
  'repeatedli_ask',
  'ask_calm',
  'calm_stop',
  'stop_rant',
  'rant_basic',
  'basic_exclud',
  'exclud_major',
  'major_event',
  'event_start',
  'start_cold',
  'cold_shoulder',
  'shoulder_time',
  'time_guilt',
  'guilt_say',
  'say_im',
  'im_treat',
  'treat_poorli',
  'poorli_offer',
  'offer_perfect',
  'perfect_compromis',
  'compromis_updat',
  'updat_wife',
  'wife_decid',
  'decid_go',
  'go_spend',
  'spend_thankgiv',
  'thankgiv_famili',
  'famili_way',
  'way_live',
  'live_hour',
  'hour_away',
  'away_mean',
  'mean_unnecesari',
  'unnecesari_travel',
  'travel_expens',
  'expens_instead',
  'instead_basic',
  'basic_ditch',
  'ditch_whole',
  'whole_week',
  'week_yall',
  'yall_happi',
  'happi_though',
  'though_appreci',
  'appreci_insight',
  'insight_comment',
  'comment_situat',
  'situat_othersnot',
  'othersnot_much',
  'much_especi',
  'especi_assumpt',
  'assumpt_claim',
  'claim_wife',
  'wife_allergi',
  'allergi_yall',
  'yall_get',
  'get_anyway',
  'anyway_sall',
  'sall_good',
  'good_guess',
  'guess_though',
  'though_im',
  'im_thrill',
  'thrill_decis',
  'decis_feel',
  'feel_like',
  'like_spite',
  'spite_get',
  'get_cave',
  'wife_grade_+',
  'grade_+_picki',
  '+_picki_eater',
  'picki_eater_bothersom',
  'eater_bothersom_certain',
  'bothersom_certain_degre',
  'certain_degre_holiday',
  'degre_holiday_basic',
  'holiday_basic_shitshow',
  'basic_shitshow_begin',
  'shitshow_begin_shed',
  'begin_shed_refus',
  'shed_refus_eat',
  'refus_eat_certain',
  'eat_certain_meal',
  'certain_meal_mom',
  'meal_mom_would',
  'mom_would_take',
  'would_take_personallywhich',
  'take_personallywhich_result',
  'personallywhich_result_seri',
  'result_seri_argument',
  'seri_argument_compromis',
  'argument_compromis_year',
  'compromis_year_wife',
  'year_wife_offer',
  'wife_offer_bring',
  'offer_bring_food',
  'bring_food_thanksgiv',
  'food_thanksgiv_dinner',
  'thanksgiv_dinner_stun',
  'dinner_stun_ask',
  'stun_ask_thought',
  'ask_thought_look',
  'thought_look_confus',
  'look_confus_told',
  'confus_told_weird',
  'told_weird_itd',
  'weird_itd_bring',
  'itd_bring_food',
  'bring_food_especi',
  'food_especi_woudlnt',
  'especi_woudlnt_share',
  'woudlnt_share_anybodi',
  'share_anybodi_els',
  'anybodi_els_told',
  'els_told_think',
  'told_think_mom',
  'think_mom_react',
  'mom_react_shed',
  'react_shed_get',
  'shed_get_offend',
  'get_offend_upset',
  'offend_upset_wife',
  'upset_wife_said',
  'wife_said_problem',
  'said_problem_tri',
  'problem_tri_make',
  'tri_make_work',
  'make_work_bring',
  'work_bring_meal',
  'bring_meal_told',
  'meal_told_mom',
  'told_mom_might',
  'mom_might_like',
  'might_like_even',
  'like_even_allow',
  'even_allow_blew',
  'allow_blew_ask',
  'blew_ask_want',
  'ask_want_either',
  'want_either_eat',
  'either_eat_food',
  'eat_food_like',
  'food_like_go',
  'like_go_hungri',
  'go_hungri_suggest',
  'hungri_suggest_give',
  'suggest_give_mom',
  'give_mom_food',
  'mom_food_chanc',
  'food_chanc_said',
  'chanc_said_mom',
  'said_mom_cook',
  'mom_cook_like',
  'cook_like_certain',
  'like_certain_food',
  'certain_food_argument',
  'food_argument_end',
  'argument_end_tell',
  'end_tell_could',
  'tell_could_stay',
  'could_stay_home',
  'stay_home_thanksgiv',
  'home_thanksgiv_whatev',
  'thanksgiv_whatev_meal',
  'whatev_meal_like',
  'meal_like_got',
  'like_got_quiet',
  'got_quiet_lash',
  'quiet_lash_call',
  'lash_call_insensit',
  'call_insensit_neg',
  'insensit_neg_say',
  'neg_say_repeatedli',
  'say_repeatedli_ask',
  'repeatedli_ask_calm',
  'ask_calm_stop',
  'calm_stop_rant',
  'stop_rant_basic',
  'rant_basic_exclud',
  'basic_exclud_major',
  'exclud_major_event',
  'major_event_start',
  'event_start_cold',
  'start_cold_shoulder',
  'cold_shoulder_time',
  'shoulder_time_guilt',
  'time_guilt_say',
  'guilt_say_im',
  'say_im_treat',
  'im_treat_poorli',
  'treat_poorli_offer',
  'poorli_offer_perfect',
  'offer_perfect_compromis',
  'perfect_compromis_updat',
  'compromis_updat_wife',
  'updat_wife_decid',
  'wife_decid_go',
  'decid_go_spend',
  'go_spend_thankgiv',
  'spend_thankgiv_famili',
  'thankgiv_famili_way',
  'famili_way_live',
  'way_live_hour',
  'live_hour_away',
  'hour_away_mean',
  'away_mean_unnecesari',
  'mean_unnecesari_travel',
  'unnecesari_travel_expens',
  'travel_expens_instead',
  'expens_instead_basic',
  'instead_basic_ditch',
  'basic_ditch_whole',
  'ditch_whole_week',
  'whole_week_yall',
  'week_yall_happi',
  'yall_happi_though',
  'happi_though_appreci',
  'though_appreci_insight',
  'appreci_insight_comment',
  'insight_comment_situat',
  'comment_situat_othersnot',
  'situat_othersnot_much',
  'othersnot_much_especi',
  'much_especi_assumpt',
  'especi_assumpt_claim',
  'assumpt_claim_wife',
  'claim_wife_allergi',
  'wife_allergi_yall',
  'allergi_yall_get',
  'yall_get_anyway',
  'get_anyway_sall',
  'anyway_sall_good',
  'sall_good_guess',
  'good_guess_though',
  'guess_though_im',
  'though_im_thrill',
  'im_thrill_decis',
  'thrill_decis_feel',
  'decis_feel_like',
  'feel_like_spite',
  'like_spite_get',
  'spite_get_cave'],
 ['muslim',
  'moroccan',
  'obvious',
  'muslim',
  'guess',
  'wear',
  'hijab',
  'first',
  'first',
  'name',
  'name',
  'common',
  'western',
  'countri',
  'think',
  'sarah',
  'lina',
  'nadia',
  'miriam',
  'last',
  'name',
  'came',
  'know',
  'actual',
  'jewish',
  'name',
  'jewish',
  'ancestor',
  'common',
  'countri',
  'name',
  'would',
  'think',
  'moroccan',
  'sinc',
  'amazigh',
  'moroccan',
  'nativ',
  'light',
  'skin',
  'light',
  'hair',
  'eye',
  'would',
  'think',
  'hear',
  'african',
  'came',
  'us',
  'accent',
  'pandem',
  'specif',
  'august',
  'hire',
  'compani',
  'work',
  'remot',
  '%',
  'time',
  'septemb',
  'st',
  'start',
  'go',
  'offic',
  'cowork',
  'let',
  'call',
  'sort',
  'friend',
  'belong',
  'team',
  'even',
  'work',
  'remot',
  'use',
  'friendli',
  'chat',
  'sometim',
  'start',
  'work',
  'site',
  'happi',
  'friend',
  'chat',
  'first',
  'day',
  'want',
  'share',
  'lunch',
  'declin',
  'abl',
  'tell',
  'sure',
  'pan',
  'cook',
  'chicken',
  'use',
  'cook',
  'pork',
  'said',
  'follow',
  'kosher',
  'letter',
  'huh',
  'repli',
  'actual',
  'halal',
  'obvious',
  'confus',
  'grasp',
  'situat',
  'becam',
  'cold',
  'spot',
  'sad',
  'say',
  'use',
  'reaction',
  'mind',
  'heard',
  'anoth',
  'one',
  'bite',
  'dust',
  'move',
  'life',
  'start',
  'act',
  'hostil',
  'toward',
  'exampl',
  'see',
  'hear',
  'distanc',
  'would',
  'make',
  'blatantli',
  'islamophob',
  'comment',
  'follow',
  'around',
  'offic',
  'cowork',
  'ask',
  'coff',
  'would',
  'loudli',
  'say',
  'come',
  'us',
  '*',
  '*',
  'go',
  'etc',
  'make',
  'everyon',
  'els',
  'uncomfort',
  'last',
  'straw',
  'thursday',
  'go',
  'coff',
  'run',
  'take',
  'turn',
  'want',
  'take',
  'bag',
  'big',
  'tote',
  'bag',
  'well',
  'threw',
  'fit',
  'said',
  'either',
  'take',
  'bag',
  'call',
  'secur',
  'ask',
  'go',
  'said',
  'meant',
  'told',
  'god',
  'know',
  'peopl',
  'exactli',
  'known',
  'harmless',
  'bag',
  'everyon',
  'shock',
  'said',
  'went',
  'far',
  'went',
  'hr',
  'directli',
  'report',
  'coupl',
  'cowork',
  'call',
  'friday',
  'said',
  'longer',
  'work',
  'space',
  'today',
  'receiv',
  'email',
  'transfer',
  'anoth',
  'depart',
  'felt',
  'reliev',
  'mom',
  'said',
  'know',
  'better',
  'dealt',
  'without',
  'impact',
  'livelihood',
  'aita',
  'muslim_moroccan',
  'moroccan_obvious',
  'obvious_muslim',
  'muslim_guess',
  'guess_wear',
  'wear_hijab',
  'hijab_first',
  'first_first',
  'first_name',
  'name_name',
  'name_common',
  'common_western',
  'western_countri',
  'countri_think',
  'think_sarah',
  'sarah_lina',
  'lina_nadia',
  'nadia_miriam',
  'miriam_last',
  'last_name',
  'name_came',
  'came_know',
  'know_actual',
  'actual_jewish',
  'jewish_name',
  'name_jewish',
  'jewish_ancestor',
  'ancestor_common',
  'common_countri',
  'countri_name',
  'name_would',
  'would_think',
  'think_moroccan',
  'moroccan_sinc',
  'sinc_amazigh',
  'amazigh_moroccan',
  'moroccan_nativ',
  'nativ_light',
  'light_skin',
  'skin_light',
  'light_hair',
  'hair_eye',
  'eye_would',
  'would_think',
  'think_hear',
  'hear_african',
  'african_came',
  'came_us',
  'us_accent',
  'accent_pandem',
  'pandem_specif',
  'specif_august',
  'august_hire',
  'hire_compani',
  'compani_work',
  'work_remot',
  'remot_%',
  '%_time',
  'time_septemb',
  'septemb_st',
  'st_start',
  'start_go',
  'go_offic',
  'offic_cowork',
  'cowork_let',
  'let_call',
  'call_sort',
  'sort_friend',
  'friend_belong',
  'belong_team',
  'team_even',
  'even_work',
  'work_remot',
  'remot_use',
  'use_friendli',
  'friendli_chat',
  'chat_sometim',
  'sometim_start',
  'start_work',
  'work_site',
  'site_happi',
  'happi_friend',
  'friend_chat',
  'chat_first',
  'first_day',
  'day_want',
  'want_share',
  'share_lunch',
  'lunch_declin',
  'declin_abl',
  'abl_tell',
  'tell_sure',
  'sure_pan',
  'pan_cook',
  'cook_chicken',
  'chicken_use',
  'use_cook',
  'cook_pork',
  'pork_said',
  'said_follow',
  'follow_kosher',
  'kosher_letter',
  'letter_huh',
  'huh_repli',
  'repli_actual',
  'actual_halal',
  'halal_obvious',
  'obvious_confus',
  'confus_grasp',
  'grasp_situat',
  'situat_becam',
  'becam_cold',
  'cold_spot',
  'spot_sad',
  'sad_say',
  'say_use',
  'use_reaction',
  'reaction_mind',
  'mind_heard',
  'heard_anoth',
  'anoth_one',
  'one_bite',
  'bite_dust',
  'dust_move',
  'move_life',
  'life_start',
  'start_act',
  'act_hostil',
  'hostil_toward',
  'toward_exampl',
  'exampl_see',
  'see_hear',
  'hear_distanc',
  'distanc_would',
  'would_make',
  'make_blatantli',
  'blatantli_islamophob',
  'islamophob_comment',
  'comment_follow',
  'follow_around',
  'around_offic',
  'offic_cowork',
  'cowork_ask',
  'ask_coff',
  'coff_would',
  'would_loudli',
  'loudli_say',
  'say_come',
  'come_us',
  'us_*',
  '*_*',
  '*_go',
  'go_etc',
  'etc_make',
  'make_everyon',
  'everyon_els',
  'els_uncomfort',
  'uncomfort_last',
  'last_straw',
  'straw_thursday',
  'thursday_go',
  'go_coff',
  'coff_run',
  'run_take',
  'take_turn',
  'turn_want',
  'want_take',
  'take_bag',
  'bag_big',
  'big_tote',
  'tote_bag',
  'bag_well',
  'well_threw',
  'threw_fit',
  'fit_said',
  'said_either',
  'either_take',
  'take_bag',
  'bag_call',
  'call_secur',
  'secur_ask',
  'ask_go',
  'go_said',
  'said_meant',
  'meant_told',
  'told_god',
  'god_know',
  'know_peopl',
  'peopl_exactli',
  'exactli_known',
  'known_harmless',
  'harmless_bag',
  'bag_everyon',
  'everyon_shock',
  'shock_said',
  'said_went',
  'went_far',
  'far_went',
  'went_hr',
  'hr_directli',
  'directli_report',
  'report_coupl',
  'coupl_cowork',
  'cowork_call',
  'call_friday',
  'friday_said',
  'said_longer',
  'longer_work',
  'work_space',
  'space_today',
  'today_receiv',
  'receiv_email',
  'email_transfer',
  'transfer_anoth',
  'anoth_depart',
  'depart_felt',
  'felt_reliev',
  'reliev_mom',
  'mom_said',
  'said_know',
  'know_better',
  'better_dealt',
  'dealt_without',
  'without_impact',
  'impact_livelihood',
  'livelihood_aita',
  'muslim_moroccan_obvious',
  'moroccan_obvious_muslim',
  'obvious_muslim_guess',
  'muslim_guess_wear',
  'guess_wear_hijab',
  'wear_hijab_first',
  'hijab_first_first',
  'first_first_name',
  'first_name_name',
  'name_name_common',
  'name_common_western',
  'common_western_countri',
  'western_countri_think',
  'countri_think_sarah',
  'think_sarah_lina',
  'sarah_lina_nadia',
  'lina_nadia_miriam',
  'nadia_miriam_last',
  'miriam_last_name',
  'last_name_came',
  'name_came_know',
  'came_know_actual',
  'know_actual_jewish',
  'actual_jewish_name',
  'jewish_name_jewish',
  'name_jewish_ancestor',
  'jewish_ancestor_common',
  'ancestor_common_countri',
  'common_countri_name',
  'countri_name_would',
  'name_would_think',
  'would_think_moroccan',
  'think_moroccan_sinc',
  'moroccan_sinc_amazigh',
  'sinc_amazigh_moroccan',
  'amazigh_moroccan_nativ',
  'moroccan_nativ_light',
  'nativ_light_skin',
  'light_skin_light',
  'skin_light_hair',
  'light_hair_eye',
  'hair_eye_would',
  'eye_would_think',
  'would_think_hear',
  'think_hear_african',
  'hear_african_came',
  'african_came_us',
  'came_us_accent',
  'us_accent_pandem',
  'accent_pandem_specif',
  'pandem_specif_august',
  'specif_august_hire',
  'august_hire_compani',
  'hire_compani_work',
  'compani_work_remot',
  'work_remot_%',
  'remot_%_time',
  '%_time_septemb',
  'time_septemb_st',
  'septemb_st_start',
  'st_start_go',
  'start_go_offic',
  'go_offic_cowork',
  'offic_cowork_let',
  'cowork_let_call',
  'let_call_sort',
  'call_sort_friend',
  'sort_friend_belong',
  'friend_belong_team',
  'belong_team_even',
  'team_even_work',
  'even_work_remot',
  'work_remot_use',
  'remot_use_friendli',
  'use_friendli_chat',
  'friendli_chat_sometim',
  'chat_sometim_start',
  'sometim_start_work',
  'start_work_site',
  'work_site_happi',
  'site_happi_friend',
  'happi_friend_chat',
  'friend_chat_first',
  'chat_first_day',
  'first_day_want',
  'day_want_share',
  'want_share_lunch',
  'share_lunch_declin',
  'lunch_declin_abl',
  'declin_abl_tell',
  'abl_tell_sure',
  'tell_sure_pan',
  'sure_pan_cook',
  'pan_cook_chicken',
  'cook_chicken_use',
  'chicken_use_cook',
  'use_cook_pork',
  'cook_pork_said',
  'pork_said_follow',
  'said_follow_kosher',
  'follow_kosher_letter',
  'kosher_letter_huh',
  'letter_huh_repli',
  'huh_repli_actual',
  'repli_actual_halal',
  'actual_halal_obvious',
  'halal_obvious_confus',
  'obvious_confus_grasp',
  'confus_grasp_situat',
  'grasp_situat_becam',
  'situat_becam_cold',
  'becam_cold_spot',
  'cold_spot_sad',
  'spot_sad_say',
  'sad_say_use',
  'say_use_reaction',
  'use_reaction_mind',
  'reaction_mind_heard',
  'mind_heard_anoth',
  'heard_anoth_one',
  'anoth_one_bite',
  'one_bite_dust',
  'bite_dust_move',
  'dust_move_life',
  'move_life_start',
  'life_start_act',
  'start_act_hostil',
  'act_hostil_toward',
  'hostil_toward_exampl',
  'toward_exampl_see',
  'exampl_see_hear',
  'see_hear_distanc',
  'hear_distanc_would',
  'distanc_would_make',
  'would_make_blatantli',
  'make_blatantli_islamophob',
  'blatantli_islamophob_comment',
  'islamophob_comment_follow',
  'comment_follow_around',
  'follow_around_offic',
  'around_offic_cowork',
  'offic_cowork_ask',
  'cowork_ask_coff',
  'ask_coff_would',
  'coff_would_loudli',
  'would_loudli_say',
  'loudli_say_come',
  'say_come_us',
  'come_us_*',
  'us_*_*',
  '*_*_go',
  '*_go_etc',
  'go_etc_make',
  'etc_make_everyon',
  'make_everyon_els',
  'everyon_els_uncomfort',
  'els_uncomfort_last',
  'uncomfort_last_straw',
  'last_straw_thursday',
  'straw_thursday_go',
  'thursday_go_coff',
  'go_coff_run',
  'coff_run_take',
  'run_take_turn',
  'take_turn_want',
  'turn_want_take',
  'want_take_bag',
  'take_bag_big',
  'bag_big_tote',
  'big_tote_bag',
  'tote_bag_well',
  'bag_well_threw',
  'well_threw_fit',
  'threw_fit_said',
  'fit_said_either',
  'said_either_take',
  'either_take_bag',
  'take_bag_call',
  'bag_call_secur',
  'call_secur_ask',
  'secur_ask_go',
  'ask_go_said',
  'go_said_meant',
  'said_meant_told',
  'meant_told_god',
  'told_god_know',
  'god_know_peopl',
  'know_peopl_exactli',
  'peopl_exactli_known',
  'exactli_known_harmless',
  'known_harmless_bag',
  'harmless_bag_everyon',
  'bag_everyon_shock',
  'everyon_shock_said',
  'shock_said_went',
  'said_went_far',
  'went_far_went',
  'far_went_hr',
  'went_hr_directli',
  'hr_directli_report',
  'directli_report_coupl',
  'report_coupl_cowork',
  'coupl_cowork_call',
  'cowork_call_friday',
  'call_friday_said',
  'friday_said_longer',
  'said_longer_work',
  'longer_work_space',
  'work_space_today',
  'space_today_receiv',
  'today_receiv_email',
  'receiv_email_transfer',
  'email_transfer_anoth',
  'transfer_anoth_depart',
  'anoth_depart_felt',
  'depart_felt_reliev',
  'felt_reliev_mom',
  'reliev_mom_said',
  'mom_said_know',
  'said_know_better',
  'know_better_dealt',
  'better_dealt_without',
  'dealt_without_impact',
  'without_impact_livelihood',
  'impact_livelihood_aita'],
 ['cousin',
  'delaneyf',
  'get',
  'marri',
  'soon',
  'ask',
  'flower',
  'girl',
  'wed',
  'know',
  'im',
  'bit',
  'old',
  'im',
  'youngest',
  'girl',
  'side',
  'famili',
  'around',
  'month',
  'ask',
  'flower',
  'girl',
  'diagnos',
  'anaplast',
  'ependymoma',
  'grade',
  'start',
  'chemotherapi',
  'hair',
  'start',
  'fall',
  'pretti',
  'quickli',
  'call',
  'delaney',
  'ask',
  'hell',
  'suppos',
  'hair',
  'told',
  'itd',
  'fine',
  'leav',
  'alon',
  'long',
  'could',
  'knew',
  'hair',
  'probabl',
  'go',
  'last',
  'till',
  'wed',
  'day',
  'brother',
  'order',
  'wig',
  'onlin',
  'wig',
  'look',
  'lot',
  'like',
  'actual',
  'hair',
  'hair',
  'continu',
  'come',
  'clump',
  'get',
  'extrem',
  'tangl',
  'realli',
  'uncomfort',
  'one',
  'ever',
  'told',
  'lose',
  'hair',
  'would',
  'physic',
  'pain',
  'eventu',
  'coupl',
  'day',
  'bridal',
  'shower',
  'rehears',
  'dinner',
  'happen',
  'day',
  'nearli',
  'half',
  'hair',
  'come',
  'sick',
  'hot',
  'mess',
  'hair',
  'becom',
  'cut',
  'hair',
  'day',
  'rehears',
  'dinner',
  'wore',
  'wig',
  'braelyn',
  'famili',
  'friend',
  'delaney',
  'ask',
  'hair',
  'stylist',
  'could',
  'figur',
  'style',
  'delaney',
  'walk',
  'braelyn',
  'show',
  'use',
  'wig',
  'glue',
  'absolut',
  'lost',
  'ask',
  'hair',
  'told',
  '‘',
  'cancer',
  'lost',
  'hair',
  'kept',
  'berat',
  'eventu',
  'admit',
  'shave',
  'head',
  'aw',
  'hair',
  'look',
  'call',
  'selfish',
  'brat',
  'said',
  'permiss',
  'anyth',
  'drastic',
  'hair',
  'wed',
  'cousin_delaneyf',
  'delaneyf_get',
  'get_marri',
  'marri_soon',
  'soon_ask',
  'ask_flower',
  'flower_girl',
  'girl_wed',
  'wed_know',
  'know_im',
  'im_bit',
  'bit_old',
  'old_im',
  'im_youngest',
  'youngest_girl',
  'girl_side',
  'side_famili',
  'famili_around',
  'around_month',
  'month_ask',
  'ask_flower',
  'flower_girl',
  'girl_diagnos',
  'diagnos_anaplast',
  'anaplast_ependymoma',
  'ependymoma_grade',
  'grade_start',
  'start_chemotherapi',
  'chemotherapi_hair',
  'hair_start',
  'start_fall',
  'fall_pretti',
  'pretti_quickli',
  'quickli_call',
  'call_delaney',
  'delaney_ask',
  'ask_hell',
  'hell_suppos',
  'suppos_hair',
  'hair_told',
  'told_itd',
  'itd_fine',
  'fine_leav',
  'leav_alon',
  'alon_long',
  'long_could',
  'could_knew',
  'knew_hair',
  'hair_probabl',
  'probabl_go',
  'go_last',
  'last_till',
  'till_wed',
  'wed_day',
  'day_brother',
  'brother_order',
  'order_wig',
  'wig_onlin',
  'onlin_wig',
  'wig_look',
  'look_lot',
  'lot_like',
  'like_actual',
  'actual_hair',
  'hair_hair',
  'hair_continu',
  'continu_come',
  'come_clump',
  'clump_get',
  'get_extrem',
  'extrem_tangl',
  'tangl_realli',
  'realli_uncomfort',
  'uncomfort_one',
  'one_ever',
  'ever_told',
  'told_lose',
  'lose_hair',
  'hair_would',
  'would_physic',
  'physic_pain',
  'pain_eventu',
  'eventu_coupl',
  'coupl_day',
  'day_bridal',
  'bridal_shower',
  'shower_rehears',
  'rehears_dinner',
  'dinner_happen',
  'happen_day',
  'day_nearli',
  'nearli_half',
  'half_hair',
  'hair_come',
  'come_sick',
  'sick_hot',
  'hot_mess',
  'mess_hair',
  'hair_becom',
  'becom_cut',
  'cut_hair',
  'hair_day',
  'day_rehears',
  'rehears_dinner',
  'dinner_wore',
  'wore_wig',
  'wig_braelyn',
  'braelyn_famili',
  'famili_friend',
  'friend_delaney',
  'delaney_ask',
  'ask_hair',
  'hair_stylist',
  'stylist_could',
  'could_figur',
  'figur_style',
  'style_delaney',
  'delaney_walk',
  'walk_braelyn',
  'braelyn_show',
  'show_use',
  'use_wig',
  'wig_glue',
  'glue_absolut',
  'absolut_lost',
  'lost_ask',
  'ask_hair',
  'hair_told',
  'told_‘',
  '‘_cancer',
  'cancer_lost',
  'lost_hair',
  'hair_kept',
  'kept_berat',
  'berat_eventu',
  'eventu_admit',
  'admit_shave',
  'shave_head',
  'head_aw',
  'aw_hair',
  'hair_look',
  'look_call',
  'call_selfish',
  'selfish_brat',
  'brat_said',
  'said_permiss',
  'permiss_anyth',
  'anyth_drastic',
  'drastic_hair',
  'hair_wed',
  'cousin_delaneyf_get',
  'delaneyf_get_marri',
  'get_marri_soon',
  'marri_soon_ask',
  'soon_ask_flower',
  'ask_flower_girl',
  'flower_girl_wed',
  'girl_wed_know',
  'wed_know_im',
  'know_im_bit',
  'im_bit_old',
  'bit_old_im',
  'old_im_youngest',
  'im_youngest_girl',
  'youngest_girl_side',
  'girl_side_famili',
  'side_famili_around',
  'famili_around_month',
  'around_month_ask',
  'month_ask_flower',
  'ask_flower_girl',
  'flower_girl_diagnos',
  'girl_diagnos_anaplast',
  'diagnos_anaplast_ependymoma',
  'anaplast_ependymoma_grade',
  'ependymoma_grade_start',
  'grade_start_chemotherapi',
  'start_chemotherapi_hair',
  'chemotherapi_hair_start',
  'hair_start_fall',
  'start_fall_pretti',
  'fall_pretti_quickli',
  'pretti_quickli_call',
  'quickli_call_delaney',
  'call_delaney_ask',
  'delaney_ask_hell',
  'ask_hell_suppos',
  'hell_suppos_hair',
  'suppos_hair_told',
  'hair_told_itd',
  'told_itd_fine',
  'itd_fine_leav',
  'fine_leav_alon',
  'leav_alon_long',
  'alon_long_could',
  'long_could_knew',
  'could_knew_hair',
  'knew_hair_probabl',
  'hair_probabl_go',
  'probabl_go_last',
  'go_last_till',
  'last_till_wed',
  'till_wed_day',
  'wed_day_brother',
  'day_brother_order',
  'brother_order_wig',
  'order_wig_onlin',
  'wig_onlin_wig',
  'onlin_wig_look',
  'wig_look_lot',
  'look_lot_like',
  'lot_like_actual',
  'like_actual_hair',
  'actual_hair_hair',
  'hair_hair_continu',
  'hair_continu_come',
  'continu_come_clump',
  'come_clump_get',
  'clump_get_extrem',
  'get_extrem_tangl',
  'extrem_tangl_realli',
  'tangl_realli_uncomfort',
  'realli_uncomfort_one',
  'uncomfort_one_ever',
  'one_ever_told',
  'ever_told_lose',
  'told_lose_hair',
  'lose_hair_would',
  'hair_would_physic',
  'would_physic_pain',
  'physic_pain_eventu',
  'pain_eventu_coupl',
  'eventu_coupl_day',
  'coupl_day_bridal',
  'day_bridal_shower',
  'bridal_shower_rehears',
  'shower_rehears_dinner',
  'rehears_dinner_happen',
  'dinner_happen_day',
  'happen_day_nearli',
  'day_nearli_half',
  'nearli_half_hair',
  'half_hair_come',
  'hair_come_sick',
  'come_sick_hot',
  'sick_hot_mess',
  'hot_mess_hair',
  'mess_hair_becom',
  'hair_becom_cut',
  'becom_cut_hair',
  'cut_hair_day',
  'hair_day_rehears',
  'day_rehears_dinner',
  'rehears_dinner_wore',
  'dinner_wore_wig',
  'wore_wig_braelyn',
  'wig_braelyn_famili',
  'braelyn_famili_friend',
  'famili_friend_delaney',
  'friend_delaney_ask',
  'delaney_ask_hair',
  'ask_hair_stylist',
  'hair_stylist_could',
  'stylist_could_figur',
  'could_figur_style',
  'figur_style_delaney',
  'style_delaney_walk',
  'delaney_walk_braelyn',
  'walk_braelyn_show',
  'braelyn_show_use',
  'show_use_wig',
  'use_wig_glue',
  'wig_glue_absolut',
  'glue_absolut_lost',
  'absolut_lost_ask',
  'lost_ask_hair',
  'ask_hair_told',
  'hair_told_‘',
  'told_‘_cancer',
  '‘_cancer_lost',
  'cancer_lost_hair',
  'lost_hair_kept',
  'hair_kept_berat',
  'kept_berat_eventu',
  'berat_eventu_admit',
  'eventu_admit_shave',
  'admit_shave_head',
  'shave_head_aw',
  'head_aw_hair',
  'aw_hair_look',
  'hair_look_call',
  'look_call_selfish',
  'call_selfish_brat',
  'selfish_brat_said',
  'brat_said_permiss',
  'said_permiss_anyth',
  'permiss_anyth_drastic',
  'anyth_drastic_hair',
  'drastic_hair_wed'],
 ['sister',
  'pass',
  'away',
  'month',
  'ago',
  'cancer',
  'devast',
  'word',
  'cant',
  'express',
  'feel',
  'husband',
  'struggl',
  'pay',
  'debt',
  'ask',
  'husband',
  'take',
  'niec',
  'age',
  '&',
  'time',
  'say',
  'im',
  'good',
  'term',
  'weve',
  'fair',
  'share',
  'disagr',
  'past',
  'tri',
  'sue',
  'husband',
  'mother',
  'hous',
  'im',
  'live',
  'husband',
  'daughter',
  'claim',
  'need',
  'money',
  'pay',
  'sister',
  'treatment',
  'way',
  'get',
  'brother',
  'refus',
  'yo',
  'help',
  'long',
  'stori',
  'good',
  'term',
  'agre',
  'take',
  'niec',
  'tri',
  'negoti',
  'say',
  'daughter',
  'griev',
  'need',
  'remain',
  'parent',
  'around',
  'said',
  'could',
  'see',
  'visit',
  'husband',
  'agre',
  'first',
  'brother',
  'inlaw',
  'show',
  'niec',
  'day',
  'ago',
  'let',
  'girl',
  'turn',
  'away',
  'tri',
  'talk',
  'let',
  'stay',
  'huge',
  'argument',
  'girl',
  'went',
  'insid',
  'cri',
  'dad',
  'left',
  'repeatedli',
  'say',
  'want',
  'husband',
  'back',
  'say',
  'might',
  'make',
  'mistak',
  'seper',
  'girl',
  'dad',
  'theyr',
  'griev',
  'aunt',
  'berat',
  'say',
  'mess',
  'entir',
  'argu',
  'home',
  'font',
  'feel',
  'comfort',
  'stay',
  'done',
  'call',
  'selfish',
  'bitter',
  'said',
  'im',
  'make',
  'difficult',
  'girl',
  'lost',
  'mom',
  'girl',
  'quiet',
  'yo',
  'niec',
  'keep',
  'argu',
  'want',
  'dad',
  'husband',
  'still',
  'think',
  'make',
  'mistak',
  'get',
  'girl',
  'resent',
  'dad',
  'griev',
  'sister_pass',
  'pass_away',
  'away_month',
  'month_ago',
  'ago_cancer',
  'cancer_devast',
  'devast_word',
  'word_cant',
  'cant_express',
  'express_feel',
  'feel_husband',
  'husband_struggl',
  'struggl_pay',
  'pay_debt',
  'debt_ask',
  'ask_husband',
  'husband_take',
  'take_niec',
  'niec_age',
  'age_&',
  '&_time',
  'time_say',
  'say_im',
  'im_good',
  'good_term',
  'term_weve',
  'weve_fair',
  'fair_share',
  'share_disagr',
  'disagr_past',
  'past_tri',
  'tri_sue',
  'sue_husband',
  'husband_mother',
  'mother_hous',
  'hous_im',
  'im_live',
  'live_husband',
  'husband_daughter',
  'daughter_claim',
  'claim_need',
  'need_money',
  'money_pay',
  'pay_sister',
  'sister_treatment',
  'treatment_way',
  'way_get',
  'get_brother',
  'brother_refus',
  'refus_yo',
  'yo_help',
  'help_long',
  'long_stori',
  'stori_good',
  'good_term',
  'term_agre',
  'agre_take',
  'take_niec',
  'niec_tri',
  'tri_negoti',
  'negoti_say',
  'say_daughter',
  'daughter_griev',
  'griev_need',
  'need_remain',
  'remain_parent',
  'parent_around',
  'around_said',
  'said_could',
  'could_see',
  'see_visit',
  'visit_husband',
  'husband_agre',
  'agre_first',
  'first_brother',
  'brother_inlaw',
  'inlaw_show',
  'show_niec',
  'niec_day',
  'day_ago',
  'ago_let',
  'let_girl',
  'girl_turn',
  'turn_away',
  'away_tri',
  'tri_talk',
  'talk_let',
  'let_stay',
  'stay_huge',
  'huge_argument',
  'argument_girl',
  'girl_went',
  'went_insid',
  'insid_cri',
  'cri_dad',
  'dad_left',
  'left_repeatedli',
  'repeatedli_say',
  'say_want',
  'want_husband',
  'husband_back',
  'back_say',
  'say_might',
  'might_make',
  'make_mistak',
  'mistak_seper',
  'seper_girl',
  'girl_dad',
  'dad_theyr',
  'theyr_griev',
  'griev_aunt',
  'aunt_berat',
  'berat_say',
  'say_mess',
  'mess_entir',
  'entir_argu',
  'argu_home',
  'home_font',
  'font_feel',
  'feel_comfort',
  'comfort_stay',
  'stay_done',
  'done_call',
  'call_selfish',
  'selfish_bitter',
  'bitter_said',
  'said_im',
  'im_make',
  'make_difficult',
  'difficult_girl',
  'girl_lost',
  'lost_mom',
  'mom_girl',
  'girl_quiet',
  'quiet_yo',
  'yo_niec',
  'niec_keep',
  'keep_argu',
  'argu_want',
  'want_dad',
  'dad_husband',
  'husband_still',
  'still_think',
  'think_make',
  'make_mistak',
  'mistak_get',
  'get_girl',
  'girl_resent',
  'resent_dad',
  'dad_griev',
  'sister_pass_away',
  'pass_away_month',
  'away_month_ago',
  'month_ago_cancer',
  'ago_cancer_devast',
  'cancer_devast_word',
  'devast_word_cant',
  'word_cant_express',
  'cant_express_feel',
  'express_feel_husband',
  'feel_husband_struggl',
  'husband_struggl_pay',
  'struggl_pay_debt',
  'pay_debt_ask',
  'debt_ask_husband',
  'ask_husband_take',
  'husband_take_niec',
  'take_niec_age',
  'niec_age_&',
  'age_&_time',
  '&_time_say',
  'time_say_im',
  'say_im_good',
  'im_good_term',
  'good_term_weve',
  'term_weve_fair',
  'weve_fair_share',
  'fair_share_disagr',
  'share_disagr_past',
  'disagr_past_tri',
  'past_tri_sue',
  'tri_sue_husband',
  'sue_husband_mother',
  'husband_mother_hous',
  'mother_hous_im',
  'hous_im_live',
  'im_live_husband',
  'live_husband_daughter',
  'husband_daughter_claim',
  'daughter_claim_need',
  'claim_need_money',
  'need_money_pay',
  'money_pay_sister',
  'pay_sister_treatment',
  'sister_treatment_way',
  'treatment_way_get',
  'way_get_brother',
  'get_brother_refus',
  'brother_refus_yo',
  'refus_yo_help',
  'yo_help_long',
  'help_long_stori',
  'long_stori_good',
  'stori_good_term',
  'good_term_agre',
  'term_agre_take',
  'agre_take_niec',
  'take_niec_tri',
  'niec_tri_negoti',
  'tri_negoti_say',
  'negoti_say_daughter',
  'say_daughter_griev',
  'daughter_griev_need',
  'griev_need_remain',
  'need_remain_parent',
  'remain_parent_around',
  'parent_around_said',
  'around_said_could',
  'said_could_see',
  'could_see_visit',
  'see_visit_husband',
  'visit_husband_agre',
  'husband_agre_first',
  'agre_first_brother',
  'first_brother_inlaw',
  'brother_inlaw_show',
  'inlaw_show_niec',
  'show_niec_day',
  'niec_day_ago',
  'day_ago_let',
  'ago_let_girl',
  'let_girl_turn',
  'girl_turn_away',
  'turn_away_tri',
  'away_tri_talk',
  'tri_talk_let',
  'talk_let_stay',
  'let_stay_huge',
  'stay_huge_argument',
  'huge_argument_girl',
  'argument_girl_went',
  'girl_went_insid',
  'went_insid_cri',
  'insid_cri_dad',
  'cri_dad_left',
  'dad_left_repeatedli',
  'left_repeatedli_say',
  'repeatedli_say_want',
  'say_want_husband',
  'want_husband_back',
  'husband_back_say',
  'back_say_might',
  'say_might_make',
  'might_make_mistak',
  'make_mistak_seper',
  'mistak_seper_girl',
  'seper_girl_dad',
  'girl_dad_theyr',
  'dad_theyr_griev',
  'theyr_griev_aunt',
  'griev_aunt_berat',
  'aunt_berat_say',
  'berat_say_mess',
  'say_mess_entir',
  'mess_entir_argu',
  'entir_argu_home',
  'argu_home_font',
  'home_font_feel',
  'font_feel_comfort',
  'feel_comfort_stay',
  'comfort_stay_done',
  'stay_done_call',
  'done_call_selfish',
  'call_selfish_bitter',
  'selfish_bitter_said',
  'bitter_said_im',
  'said_im_make',
  'im_make_difficult',
  'make_difficult_girl',
  'difficult_girl_lost',
  'girl_lost_mom',
  'lost_mom_girl',
  'mom_girl_quiet',
  'girl_quiet_yo',
  'quiet_yo_niec',
  'yo_niec_keep',
  'niec_keep_argu',
  'keep_argu_want',
  'argu_want_dad',
  'want_dad_husband',
  'dad_husband_still',
  'husband_still_think',
  'still_think_make',
  'think_make_mistak',
  'make_mistak_get',
  'mistak_get_girl',
  'get_girl_resent',
  'girl_resent_dad',
  'resent_dad_griev'],
 ['team',
  'work',
  'day',
  'wfo',
  'day',
  'wfh',
  'sensit',
  'physic',
  'paper',
  'file',
  'work',
  'part',
  'work',
  'still',
  'come',
  'offic',
  'one',
  'team',
  'member',
  'sarah',
  'appeal',
  'day',
  'wfo',
  'day',
  'wfh',
  'instead',
  'basi',
  'kid',
  'look',
  'although',
  'team',
  'member',
  'also',
  'kid',
  'sarah',
  'problem',
  'come',
  'day',
  'week',
  'pandem',
  'relent',
  'request',
  'becam',
  'upset',
  'accus',
  'inflex',
  'start',
  'cri',
  'offic',
  'also',
  'check',
  'rest',
  'team',
  'make',
  'sure',
  'ok',
  'ive',
  'notic',
  'late',
  'sarah',
  'wfh',
  'tendenc',
  'go',
  'offlin',
  'away',
  'skype',
  'offic',
  'hour',
  'usual',
  'offlin',
  'away',
  'hour',
  'time',
  'yesterday',
  'final',
  'ask',
  'told',
  'peopl',
  'intern',
  'client',
  'extern',
  'stakehold',
  'come',
  'work',
  'matter',
  'handl',
  'could',
  'locat',
  'one',
  'extern',
  'stakehold',
  'even',
  'told',
  'sarah',
  'leav',
  'clarifi',
  'sarah',
  'leav',
  'stakehold',
  'bewild',
  'offlin',
  'whole',
  'morn',
  'sarah',
  'defens',
  'sarcast',
  'apologis',
  'repli',
  'messag',
  'immedi',
  'ad',
  'long',
  'got',
  'work',
  'done',
  'matter',
  'onlin',
  'offlin',
  'told',
  'onlin',
  'entir',
  'pm',
  'durat',
  'minim',
  'pm',
  'break',
  'lunch',
  'peopl',
  'reach',
  'need',
  'team',
  'member',
  'notic',
  'start',
  'follow',
  'exampl',
  'particularli',
  'sinc',
  'sarah',
  'senior',
  'sarah',
  'unhappi',
  'sinc',
  'ive',
  'come',
  'awar',
  'say',
  'thing',
  'rest',
  'team',
  'includ',
  'dinosaur',
  'still',
  'work',
  'accord',
  'former',
  'work',
  'norm',
  'aita',
  'edit',
  'entir',
  'divis',
  'includ',
  'sarah',
  'report',
  'sarah',
  'salari',
  'hourli',
  'sarah',
  'work',
  'affect',
  'behaviour',
  'part',
  'job',
  'avail',
  'intern',
  'client',
  'applic',
  'extern',
  'stakehold',
  'extern',
  'stakehold',
  'see',
  'whether',
  'sarah',
  'onlin',
  'offlin',
  'link',
  'singl',
  'public',
  'skype',
  'network',
  'compris',
  'relat',
  'agenc',
  'organis',
  'compani',
  'ministri',
  'separ',
  'sarah',
  'conduct',
  'affect',
  'team',
  'member',
  'sinc',
  'respond',
  'queri',
  'meant',
  'sarah',
  'particularli',
  'urgent',
  'also',
  'reflect',
  'badli',
  'divis',
  'whole',
  'sarah',
  'unreach',
  'team_work',
  'work_day',
  'day_wfo',
  'wfo_day',
  'day_wfh',
  'wfh_sensit',
  'sensit_physic',
  'physic_paper',
  'paper_file',
  'file_work',
  'work_part',
  'part_work',
  'work_still',
  'still_come',
  'come_offic',
  'offic_one',
  'one_team',
  'team_member',
  'member_sarah',
  'sarah_appeal',
  'appeal_day',
  'day_wfo',
  'wfo_day',
  'day_wfh',
  'wfh_instead',
  'instead_basi',
  'basi_kid',
  'kid_look',
  'look_although',
  'although_team',
  'team_member',
  'member_also',
  'also_kid',
  'kid_sarah',
  'sarah_problem',
  'problem_come',
  'come_day',
  'day_week',
  'week_pandem',
  'pandem_relent',
  'relent_request',
  'request_becam',
  'becam_upset',
  'upset_accus',
  'accus_inflex',
  'inflex_start',
  'start_cri',
  'cri_offic',
  'offic_also',
  'also_check',
  'check_rest',
  'rest_team',
  'team_make',
  'make_sure',
  'sure_ok',
  'ok_ive',
  'ive_notic',
  'notic_late',
  'late_sarah',
  'sarah_wfh',
  'wfh_tendenc',
  'tendenc_go',
  'go_offlin',
  'offlin_away',
  'away_skype',
  'skype_offic',
  'offic_hour',
  'hour_usual',
  'usual_offlin',
  'offlin_away',
  'away_hour',
  'hour_time',
  'time_yesterday',
  'yesterday_final',
  'final_ask',
  'ask_told',
  'told_peopl',
  'peopl_intern',
  'intern_client',
  'client_extern',
  'extern_stakehold',
  'stakehold_come',
  'come_work',
  'work_matter',
  'matter_handl',
  'handl_could',
  'could_locat',
  'locat_one',
  'one_extern',
  'extern_stakehold',
  'stakehold_even',
  'even_told',
  'told_sarah',
  'sarah_leav',
  'leav_clarifi',
  'clarifi_sarah',
  'sarah_leav',
  'leav_stakehold',
  'stakehold_bewild',
  'bewild_offlin',
  'offlin_whole',
  'whole_morn',
  'morn_sarah',
  'sarah_defens',
  'defens_sarcast',
  'sarcast_apologis',
  'apologis_repli',
  'repli_messag',
  'messag_immedi',
  'immedi_ad',
  'ad_long',
  'long_got',
  'got_work',
  'work_done',
  'done_matter',
  'matter_onlin',
  'onlin_offlin',
  'offlin_told',
  'told_onlin',
  'onlin_entir',
  'entir_pm',
  'pm_durat',
  'durat_minim',
  'minim_pm',
  'pm_break',
  'break_lunch',
  'lunch_peopl',
  'peopl_reach',
  'reach_need',
  'need_team',
  'team_member',
  'member_notic',
  'notic_start',
  'start_follow',
  'follow_exampl',
  'exampl_particularli',
  'particularli_sinc',
  'sinc_sarah',
  'sarah_senior',
  'senior_sarah',
  'sarah_unhappi',
  'unhappi_sinc',
  'sinc_ive',
  'ive_come',
  'come_awar',
  'awar_say',
  'say_thing',
  'thing_rest',
  'rest_team',
  'team_includ',
  'includ_dinosaur',
  'dinosaur_still',
  'still_work',
  'work_accord',
  'accord_former',
  'former_work',
  'work_norm',
  'norm_aita',
  'aita_edit',
  'edit_entir',
  'entir_divis',
  'divis_includ',
  'includ_sarah',
  'sarah_report',
  'report_sarah',
  'sarah_salari',
  'salari_hourli',
  'hourli_sarah',
  'sarah_work',
  'work_affect',
  'affect_behaviour',
  'behaviour_part',
  'part_job',
  'job_avail',
  'avail_intern',
  'intern_client',
  'client_applic',
  'applic_extern',
  'extern_stakehold',
  'stakehold_extern',
  'extern_stakehold',
  'stakehold_see',
  'see_whether',
  'whether_sarah',
  'sarah_onlin',
  'onlin_offlin',
  'offlin_link',
  'link_singl',
  'singl_public',
  'public_skype',
  'skype_network',
  'network_compris',
  'compris_relat',
  'relat_agenc',
  'agenc_organis',
  'organis_compani',
  'compani_ministri',
  'ministri_separ',
  'separ_sarah',
  'sarah_conduct',
  'conduct_affect',
  'affect_team',
  'team_member',
  'member_sinc',
  'sinc_respond',
  'respond_queri',
  'queri_meant',
  'meant_sarah',
  'sarah_particularli',
  'particularli_urgent',
  'urgent_also',
  'also_reflect',
  'reflect_badli',
  'badli_divis',
  'divis_whole',
  'whole_sarah',
  'sarah_unreach',
  'team_work_day',
  'work_day_wfo',
  'day_wfo_day',
  'wfo_day_wfh',
  'day_wfh_sensit',
  'wfh_sensit_physic',
  'sensit_physic_paper',
  'physic_paper_file',
  'paper_file_work',
  'file_work_part',
  'work_part_work',
  'part_work_still',
  'work_still_come',
  'still_come_offic',
  'come_offic_one',
  'offic_one_team',
  'one_team_member',
  'team_member_sarah',
  'member_sarah_appeal',
  'sarah_appeal_day',
  'appeal_day_wfo',
  'day_wfo_day',
  'wfo_day_wfh',
  'day_wfh_instead',
  'wfh_instead_basi',
  'instead_basi_kid',
  'basi_kid_look',
  'kid_look_although',
  'look_although_team',
  'although_team_member',
  'team_member_also',
  'member_also_kid',
  'also_kid_sarah',
  'kid_sarah_problem',
  'sarah_problem_come',
  'problem_come_day',
  'come_day_week',
  'day_week_pandem',
  'week_pandem_relent',
  'pandem_relent_request',
  'relent_request_becam',
  'request_becam_upset',
  'becam_upset_accus',
  'upset_accus_inflex',
  'accus_inflex_start',
  'inflex_start_cri',
  'start_cri_offic',
  'cri_offic_also',
  'offic_also_check',
  'also_check_rest',
  'check_rest_team',
  'rest_team_make',
  'team_make_sure',
  'make_sure_ok',
  'sure_ok_ive',
  'ok_ive_notic',
  'ive_notic_late',
  'notic_late_sarah',
  'late_sarah_wfh',
  'sarah_wfh_tendenc',
  'wfh_tendenc_go',
  'tendenc_go_offlin',
  'go_offlin_away',
  'offlin_away_skype',
  'away_skype_offic',
  'skype_offic_hour',
  'offic_hour_usual',
  'hour_usual_offlin',
  'usual_offlin_away',
  'offlin_away_hour',
  'away_hour_time',
  'hour_time_yesterday',
  'time_yesterday_final',
  'yesterday_final_ask',
  'final_ask_told',
  'ask_told_peopl',
  'told_peopl_intern',
  'peopl_intern_client',
  'intern_client_extern',
  'client_extern_stakehold',
  'extern_stakehold_come',
  'stakehold_come_work',
  'come_work_matter',
  'work_matter_handl',
  'matter_handl_could',
  'handl_could_locat',
  'could_locat_one',
  'locat_one_extern',
  'one_extern_stakehold',
  'extern_stakehold_even',
  'stakehold_even_told',
  'even_told_sarah',
  'told_sarah_leav',
  'sarah_leav_clarifi',
  'leav_clarifi_sarah',
  'clarifi_sarah_leav',
  'sarah_leav_stakehold',
  'leav_stakehold_bewild',
  'stakehold_bewild_offlin',
  'bewild_offlin_whole',
  'offlin_whole_morn',
  'whole_morn_sarah',
  'morn_sarah_defens',
  'sarah_defens_sarcast',
  'defens_sarcast_apologis',
  'sarcast_apologis_repli',
  'apologis_repli_messag',
  'repli_messag_immedi',
  'messag_immedi_ad',
  'immedi_ad_long',
  'ad_long_got',
  'long_got_work',
  'got_work_done',
  'work_done_matter',
  'done_matter_onlin',
  'matter_onlin_offlin',
  'onlin_offlin_told',
  'offlin_told_onlin',
  'told_onlin_entir',
  'onlin_entir_pm',
  'entir_pm_durat',
  'pm_durat_minim',
  'durat_minim_pm',
  'minim_pm_break',
  'pm_break_lunch',
  'break_lunch_peopl',
  'lunch_peopl_reach',
  'peopl_reach_need',
  'reach_need_team',
  'need_team_member',
  'team_member_notic',
  'member_notic_start',
  'notic_start_follow',
  'start_follow_exampl',
  'follow_exampl_particularli',
  'exampl_particularli_sinc',
  'particularli_sinc_sarah',
  'sinc_sarah_senior',
  'sarah_senior_sarah',
  'senior_sarah_unhappi',
  'sarah_unhappi_sinc',
  'unhappi_sinc_ive',
  'sinc_ive_come',
  'ive_come_awar',
  'come_awar_say',
  'awar_say_thing',
  'say_thing_rest',
  'thing_rest_team',
  'rest_team_includ',
  'team_includ_dinosaur',
  'includ_dinosaur_still',
  'dinosaur_still_work',
  'still_work_accord',
  'work_accord_former',
  'accord_former_work',
  'former_work_norm',
  'work_norm_aita',
  'norm_aita_edit',
  'aita_edit_entir',
  'edit_entir_divis',
  'entir_divis_includ',
  'divis_includ_sarah',
  'includ_sarah_report',
  'sarah_report_sarah',
  'report_sarah_salari',
  'sarah_salari_hourli',
  'salari_hourli_sarah',
  'hourli_sarah_work',
  'sarah_work_affect',
  'work_affect_behaviour',
  'affect_behaviour_part',
  'behaviour_part_job',
  'part_job_avail',
  'job_avail_intern',
  'avail_intern_client',
  'intern_client_applic',
  'client_applic_extern',
  'applic_extern_stakehold',
  'extern_stakehold_extern',
  'stakehold_extern_stakehold',
  'extern_stakehold_see',
  'stakehold_see_whether',
  'see_whether_sarah',
  'whether_sarah_onlin',
  'sarah_onlin_offlin',
  'onlin_offlin_link',
  'offlin_link_singl',
  'link_singl_public',
  'singl_public_skype',
  'public_skype_network',
  'skype_network_compris',
  'network_compris_relat',
  'compris_relat_agenc',
  'relat_agenc_organis',
  'agenc_organis_compani',
  'organis_compani_ministri',
  'compani_ministri_separ',
  'ministri_separ_sarah',
  'separ_sarah_conduct',
  'sarah_conduct_affect',
  'conduct_affect_team',
  'affect_team_member',
  'team_member_sinc',
  'member_sinc_respond',
  'sinc_respond_queri',
  'respond_queri_meant',
  'queri_meant_sarah',
  'meant_sarah_particularli',
  'sarah_particularli_urgent',
  'particularli_urgent_also',
  'urgent_also_reflect',
  'also_reflect_badli',
  'reflect_badli_divis',
  'badli_divis_whole',
  'divis_whole_sarah',
  'whole_sarah_unreach'],
 ['son',
  'wife',
  'babi',
  'boy',
  'everyon',
  'overjoy',
  'excit',
  'issu',
  'risen',
  'recent',
  'dil',
  'pregnant',
  'suggest',
  'host',
  'welcom',
  'parti',
  'grandson',
  'right',
  'get',
  'discharg',
  'hospit',
  'ive',
  'made',
  'arrang',
  'even',
  'empti',
  'room',
  'stay',
  'reason',
  'said',
  'shed',
  'rather',
  'spend',
  'first',
  'week',
  'home',
  'newborn',
  'said',
  'welcom',
  'parti',
  'husband',
  'talk',
  'son',
  'said',
  'well',
  'see',
  'coupl',
  'day',
  'ago',
  'found',
  'daughter',
  'law',
  'given',
  'birth',
  'week',
  'ago',
  'one',
  'knew',
  'nephew',
  'told',
  'immedi',
  'call',
  'son',
  'confirm',
  'wife',
  'lie',
  'hid',
  'date',
  'birth',
  'famili',
  'told',
  'accept',
  'lie',
  'want',
  'welcom',
  'parti',
  'love',
  'support',
  'given',
  'famili',
  'told',
  'disappoint',
  'oneh',
  'ruin',
  'welcom',
  'grandbabi',
  'also',
  'invit',
  'famili',
  'member',
  'theyr',
  'right',
  'disappoint',
  'well',
  'said',
  'last',
  'resort',
  'kept',
  'push',
  'made',
  'wife',
  'uncomfort',
  'appreci',
  'tri',
  'celebr',
  'new',
  'famili',
  'member',
  'proper',
  'manner',
  'argument',
  'end',
  'call',
  'upon',
  'say',
  'ruin',
  'joy',
  'newborn',
  'husband',
  'start',
  'text',
  'sinc',
  'stop',
  'repli',
  'phonecal',
  'threaten',
  'block',
  'nephew',
  'tattl',
  'think',
  'nephew',
  'decent',
  'enough',
  'inform',
  'famili',
  'otherwis',
  'god',
  'know',
  'long',
  'son',
  'wife',
  'go',
  'hide',
  'son',
  'keep',
  'us',
  'arm',
  'length',
  'weve',
  'alway',
  'kind',
  'welcom',
  'daughter',
  'law',
  'ger',
  'famili',
  'would',
  'disrespect',
  'famili',
  'like',
  'hand',
  'famili',
  'member',
  'see',
  'justifi',
  'action',
  'insist',
  'parti',
  'ps',
  'folk',
  'id',
  'appreci',
  'leav',
  'nephew',
  'conflict',
  'part',
  'son_wife',
  'wife_babi',
  'babi_boy',
  'boy_everyon',
  'everyon_overjoy',
  'overjoy_excit',
  'excit_issu',
  'issu_risen',
  'risen_recent',
  'recent_dil',
  'dil_pregnant',
  'pregnant_suggest',
  'suggest_host',
  'host_welcom',
  'welcom_parti',
  'parti_grandson',
  'grandson_right',
  'right_get',
  'get_discharg',
  'discharg_hospit',
  'hospit_ive',
  'ive_made',
  'made_arrang',
  'arrang_even',
  'even_empti',
  'empti_room',
  'room_stay',
  'stay_reason',
  'reason_said',
  'said_shed',
  'shed_rather',
  'rather_spend',
  'spend_first',
  'first_week',
  'week_home',
  'home_newborn',
  'newborn_said',
  'said_welcom',
  'welcom_parti',
  'parti_husband',
  'husband_talk',
  'talk_son',
  'son_said',
  'said_well',
  'well_see',
  'see_coupl',
  'coupl_day',
  'day_ago',
  'ago_found',
  'found_daughter',
  'daughter_law',
  'law_given',
  'given_birth',
  'birth_week',
  'week_ago',
  'ago_one',
  'one_knew',
  'knew_nephew',
  'nephew_told',
  'told_immedi',
  'immedi_call',
  'call_son',
  'son_confirm',
  'confirm_wife',
  'wife_lie',
  'lie_hid',
  'hid_date',
  'date_birth',
  'birth_famili',
  'famili_told',
  'told_accept',
  'accept_lie',
  'lie_want',
  'want_welcom',
  'welcom_parti',
  'parti_love',
  'love_support',
  'support_given',
  'given_famili',
  'famili_told',
  'told_disappoint',
  'disappoint_oneh',
  'oneh_ruin',
  'ruin_welcom',
  'welcom_grandbabi',
  'grandbabi_also',
  'also_invit',
  'invit_famili',
  'famili_member',
  'member_theyr',
  'theyr_right',
  'right_disappoint',
  'disappoint_well',
  'well_said',
  'said_last',
  'last_resort',
  'resort_kept',
  'kept_push',
  'push_made',
  'made_wife',
  'wife_uncomfort',
  'uncomfort_appreci',
  'appreci_tri',
  'tri_celebr',
  'celebr_new',
  'new_famili',
  'famili_member',
  'member_proper',
  'proper_manner',
  'manner_argument',
  'argument_end',
  'end_call',
  'call_upon',
  'upon_say',
  'say_ruin',
  'ruin_joy',
  'joy_newborn',
  'newborn_husband',
  'husband_start',
  'start_text',
  'text_sinc',
  'sinc_stop',
  'stop_repli',
  'repli_phonecal',
  'phonecal_threaten',
  'threaten_block',
  'block_nephew',
  'nephew_tattl',
  'tattl_think',
  'think_nephew',
  'nephew_decent',
  'decent_enough',
  'enough_inform',
  'inform_famili',
  'famili_otherwis',
  'otherwis_god',
  'god_know',
  'know_long',
  'long_son',
  'son_wife',
  'wife_go',
  'go_hide',
  'hide_son',
  'son_keep',
  'keep_us',
  'us_arm',
  'arm_length',
  'length_weve',
  'weve_alway',
  'alway_kind',
  'kind_welcom',
  'welcom_daughter',
  'daughter_law',
  'law_ger',
  'ger_famili',
  'famili_would',
  'would_disrespect',
  'disrespect_famili',
  'famili_like',
  'like_hand',
  'hand_famili',
  'famili_member',
  'member_see',
  'see_justifi',
  'justifi_action',
  'action_insist',
  'insist_parti',
  'parti_ps',
  'ps_folk',
  'folk_id',
  'id_appreci',
  'appreci_leav',
  'leav_nephew',
  'nephew_conflict',
  'conflict_part',
  'son_wife_babi',
  'wife_babi_boy',
  'babi_boy_everyon',
  'boy_everyon_overjoy',
  'everyon_overjoy_excit',
  'overjoy_excit_issu',
  'excit_issu_risen',
  'issu_risen_recent',
  'risen_recent_dil',
  'recent_dil_pregnant',
  'dil_pregnant_suggest',
  'pregnant_suggest_host',
  'suggest_host_welcom',
  'host_welcom_parti',
  'welcom_parti_grandson',
  'parti_grandson_right',
  'grandson_right_get',
  'right_get_discharg',
  'get_discharg_hospit',
  'discharg_hospit_ive',
  'hospit_ive_made',
  'ive_made_arrang',
  'made_arrang_even',
  'arrang_even_empti',
  'even_empti_room',
  'empti_room_stay',
  'room_stay_reason',
  'stay_reason_said',
  'reason_said_shed',
  'said_shed_rather',
  'shed_rather_spend',
  'rather_spend_first',
  'spend_first_week',
  'first_week_home',
  'week_home_newborn',
  'home_newborn_said',
  'newborn_said_welcom',
  'said_welcom_parti',
  'welcom_parti_husband',
  'parti_husband_talk',
  'husband_talk_son',
  'talk_son_said',
  'son_said_well',
  'said_well_see',
  'well_see_coupl',
  'see_coupl_day',
  'coupl_day_ago',
  'day_ago_found',
  'ago_found_daughter',
  'found_daughter_law',
  'daughter_law_given',
  'law_given_birth',
  'given_birth_week',
  'birth_week_ago',
  'week_ago_one',
  'ago_one_knew',
  'one_knew_nephew',
  'knew_nephew_told',
  'nephew_told_immedi',
  'told_immedi_call',
  'immedi_call_son',
  'call_son_confirm',
  'son_confirm_wife',
  'confirm_wife_lie',
  'wife_lie_hid',
  'lie_hid_date',
  'hid_date_birth',
  'date_birth_famili',
  'birth_famili_told',
  'famili_told_accept',
  'told_accept_lie',
  'accept_lie_want',
  'lie_want_welcom',
  'want_welcom_parti',
  'welcom_parti_love',
  'parti_love_support',
  'love_support_given',
  'support_given_famili',
  'given_famili_told',
  'famili_told_disappoint',
  'told_disappoint_oneh',
  'disappoint_oneh_ruin',
  'oneh_ruin_welcom',
  'ruin_welcom_grandbabi',
  'welcom_grandbabi_also',
  'grandbabi_also_invit',
  'also_invit_famili',
  'invit_famili_member',
  'famili_member_theyr',
  'member_theyr_right',
  'theyr_right_disappoint',
  'right_disappoint_well',
  'disappoint_well_said',
  'well_said_last',
  'said_last_resort',
  'last_resort_kept',
  'resort_kept_push',
  'kept_push_made',
  'push_made_wife',
  'made_wife_uncomfort',
  'wife_uncomfort_appreci',
  'uncomfort_appreci_tri',
  'appreci_tri_celebr',
  'tri_celebr_new',
  'celebr_new_famili',
  'new_famili_member',
  'famili_member_proper',
  'member_proper_manner',
  'proper_manner_argument',
  'manner_argument_end',
  'argument_end_call',
  'end_call_upon',
  'call_upon_say',
  'upon_say_ruin',
  'say_ruin_joy',
  'ruin_joy_newborn',
  'joy_newborn_husband',
  'newborn_husband_start',
  'husband_start_text',
  'start_text_sinc',
  'text_sinc_stop',
  'sinc_stop_repli',
  'stop_repli_phonecal',
  'repli_phonecal_threaten',
  'phonecal_threaten_block',
  'threaten_block_nephew',
  'block_nephew_tattl',
  'nephew_tattl_think',
  'tattl_think_nephew',
  'think_nephew_decent',
  'nephew_decent_enough',
  'decent_enough_inform',
  'enough_inform_famili',
  'inform_famili_otherwis',
  'famili_otherwis_god',
  'otherwis_god_know',
  'god_know_long',
  'know_long_son',
  'long_son_wife',
  'son_wife_go',
  'wife_go_hide',
  'go_hide_son',
  'hide_son_keep',
  'son_keep_us',
  'keep_us_arm',
  'us_arm_length',
  'arm_length_weve',
  'length_weve_alway',
  'weve_alway_kind',
  'alway_kind_welcom',
  'kind_welcom_daughter',
  'welcom_daughter_law',
  'daughter_law_ger',
  'law_ger_famili',
  'ger_famili_would',
  'famili_would_disrespect',
  'would_disrespect_famili',
  'disrespect_famili_like',
  'famili_like_hand',
  'like_hand_famili',
  'hand_famili_member',
  'famili_member_see',
  'member_see_justifi',
  'see_justifi_action',
  'justifi_action_insist',
  'action_insist_parti',
  'insist_parti_ps',
  'parti_ps_folk',
  'ps_folk_id',
  'folk_id_appreci',
  'id_appreci_leav',
  'appreci_leav_nephew',
  'leav_nephew_conflict',
  'nephew_conflict_part'],
 ['friend',
  'zoey',
  'boyfriend',
  'rent',
  'apart',
  'near',
  'us',
  'love',
  'live',
  'landlord',
  'announc',
  'sell',
  'soon',
  'zoey',
  'boyfriend',
  'devast',
  'even',
  'talk',
  'someon',
  'bank',
  'sadli',
  'cant',
  'afford',
  'buy',
  'place',
  'husband',
  'talk',
  'realiz',
  'enough',
  'money',
  'buy',
  'apart',
  'told',
  'zoey',
  'boyfriend',
  'could',
  'buy',
  'could',
  'keep',
  'live',
  'differ',
  'would',
  'send',
  'rent',
  'money',
  'differ',
  'account',
  'zoey',
  'boyfriend',
  'lost',
  'basic',
  'start',
  'yell',
  'us',
  'said',
  'need',
  'us',
  'take',
  'away',
  'apart',
  'get',
  'rich',
  'rent',
  'money',
  'said',
  'someth',
  'us',
  'make',
  '*',
  '*',
  'buy',
  'apart',
  'us',
  'mortgag',
  'paid',
  'rent',
  'would',
  'use',
  'call',
  'us',
  'arrog',
  'among',
  'thing',
  'meanwhil',
  'im',
  'baffl',
  'overreact',
  'im',
  'wander',
  'offer',
  'realli',
  'offens',
  'aita',
  'friend_zoey',
  'zoey_boyfriend',
  'boyfriend_rent',
  'rent_apart',
  'apart_near',
  'near_us',
  'us_love',
  'love_live',
  'live_landlord',
  'landlord_announc',
  'announc_sell',
  'sell_soon',
  'soon_zoey',
  'zoey_boyfriend',
  'boyfriend_devast',
  'devast_even',
  'even_talk',
  'talk_someon',
  'someon_bank',
  'bank_sadli',
  'sadli_cant',
  'cant_afford',
  'afford_buy',
  'buy_place',
  'place_husband',
  'husband_talk',
  'talk_realiz',
  'realiz_enough',
  'enough_money',
  'money_buy',
  'buy_apart',
  'apart_told',
  'told_zoey',
  'zoey_boyfriend',
  'boyfriend_could',
  'could_buy',
  'buy_could',
  'could_keep',
  'keep_live',
  'live_differ',
  'differ_would',
  'would_send',
  'send_rent',
  'rent_money',
  'money_differ',
  'differ_account',
  'account_zoey',
  'zoey_boyfriend',
  'boyfriend_lost',
  'lost_basic',
  'basic_start',
  'start_yell',
  'yell_us',
  'us_said',
  'said_need',
  'need_us',
  'us_take',
  'take_away',
  'away_apart',
  'apart_get',
  'get_rich',
  'rich_rent',
  'rent_money',
  'money_said',
  'said_someth',
  'someth_us',
  'us_make',
  'make_*',
  '*_*',
  '*_buy',
  'buy_apart',
  'apart_us',
  'us_mortgag',
  'mortgag_paid',
  'paid_rent',
  'rent_would',
  'would_use',
  'use_call',
  'call_us',
  'us_arrog',
  'arrog_among',
  'among_thing',
  'thing_meanwhil',
  'meanwhil_im',
  'im_baffl',
  'baffl_overreact',
  'overreact_im',
  'im_wander',
  'wander_offer',
  'offer_realli',
  'realli_offens',
  'offens_aita',
  'friend_zoey_boyfriend',
  'zoey_boyfriend_rent',
  'boyfriend_rent_apart',
  'rent_apart_near',
  'apart_near_us',
  'near_us_love',
  'us_love_live',
  'love_live_landlord',
  'live_landlord_announc',
  'landlord_announc_sell',
  'announc_sell_soon',
  'sell_soon_zoey',
  'soon_zoey_boyfriend',
  'zoey_boyfriend_devast',
  'boyfriend_devast_even',
  'devast_even_talk',
  'even_talk_someon',
  'talk_someon_bank',
  'someon_bank_sadli',
  'bank_sadli_cant',
  'sadli_cant_afford',
  'cant_afford_buy',
  'afford_buy_place',
  'buy_place_husband',
  'place_husband_talk',
  'husband_talk_realiz',
  'talk_realiz_enough',
  'realiz_enough_money',
  'enough_money_buy',
  'money_buy_apart',
  'buy_apart_told',
  'apart_told_zoey',
  'told_zoey_boyfriend',
  'zoey_boyfriend_could',
  'boyfriend_could_buy',
  'could_buy_could',
  'buy_could_keep',
  'could_keep_live',
  'keep_live_differ',
  'live_differ_would',
  'differ_would_send',
  'would_send_rent',
  'send_rent_money',
  'rent_money_differ',
  'money_differ_account',
  'differ_account_zoey',
  'account_zoey_boyfriend',
  'zoey_boyfriend_lost',
  'boyfriend_lost_basic',
  'lost_basic_start',
  'basic_start_yell',
  'start_yell_us',
  'yell_us_said',
  'us_said_need',
  'said_need_us',
  'need_us_take',
  'us_take_away',
  'take_away_apart',
  'away_apart_get',
  'apart_get_rich',
  'get_rich_rent',
  'rich_rent_money',
  'rent_money_said',
  'money_said_someth',
  'said_someth_us',
  'someth_us_make',
  'us_make_*',
  'make_*_*',
  '*_*_buy',
  '*_buy_apart',
  'buy_apart_us',
  'apart_us_mortgag',
  'us_mortgag_paid',
  'mortgag_paid_rent',
  'paid_rent_would',
  'rent_would_use',
  'would_use_call',
  'use_call_us',
  'call_us_arrog',
  'us_arrog_among',
  'arrog_among_thing',
  'among_thing_meanwhil',
  'thing_meanwhil_im',
  'meanwhil_im_baffl',
  'im_baffl_overreact',
  'baffl_overreact_im',
  'overreact_im_wander',
  'im_wander_offer',
  'wander_offer_realli',
  'offer_realli_offens',
  'realli_offens_aita'],
 ['sister',
  'cancer',
  'singl',
  'mom',
  'year',
  'old',
  'son',
  'ask',
  'take',
  'get',
  'treat',
  'could',
  'help',
  'focu',
  'studi',
  'provid',
  'normal',
  'routin',
  'husband',
  'asthma',
  'need',
  'inhal',
  'throughout',
  'day',
  'thing',
  'nephew',
  'prankster',
  'hed',
  'hide',
  'inhal',
  'prank',
  'give',
  'back',
  'soon',
  'panic',
  'hous',
  'far',
  'done',
  'time',
  'thought',
  'mess',
  'around',
  'day',
  'husband',
  'call',
  'work',
  'panic',
  'say',
  'inhal',
  'lost',
  'ask',
  'nephew',
  'taken',
  'prankmbut',
  'doubt',
  'sinc',
  'nephew',
  'would',
  'give',
  'back',
  'instantli',
  'panic',
  'got',
  'home',
  'look',
  'hour',
  'go',
  'thd',
  'hospit',
  'eventu',
  'got',
  'back',
  'found',
  'sit',
  'coffe',
  'tabl',
  'husband',
  'look',
  'next',
  'thing',
  'knew',
  'nephew',
  'giggl',
  'upstair',
  'moment',
  'lost',
  'yell',
  'told',
  'longer',
  'welcom',
  'home',
  'start',
  'panick',
  'parent',
  'call',
  'get',
  'bottom',
  'happen',
  'still',
  'defend',
  'say',
  'prank',
  'took',
  'thing',
  'far',
  'kick',
  'mom',
  'struggl',
  'insist',
  'take',
  'back',
  'refus',
  'theyr',
  'give',
  'hell',
  'unsupport',
  'make',
  'thing',
  'difficult',
  'struggl',
  'sister',
  'even',
  'blame',
  'husband',
  'keep',
  'thing',
  'lock',
  'away',
  'aita',
  'make',
  'hasti',
  'decidion',
  'sister_cancer',
  'cancer_singl',
  'singl_mom',
  'mom_year',
  'year_old',
  'old_son',
  'son_ask',
  'ask_take',
  'take_get',
  'get_treat',
  'treat_could',
  'could_help',
  'help_focu',
  'focu_studi',
  'studi_provid',
  'provid_normal',
  'normal_routin',
  'routin_husband',
  'husband_asthma',
  'asthma_need',
  'need_inhal',
  'inhal_throughout',
  'throughout_day',
  'day_thing',
  'thing_nephew',
  'nephew_prankster',
  'prankster_hed',
  'hed_hide',
  'hide_inhal',
  'inhal_prank',
  'prank_give',
  'give_back',
  'back_soon',
  'soon_panic',
  'panic_hous',
  'hous_far',
  'far_done',
  'done_time',
  'time_thought',
  'thought_mess',
  'mess_around',
  'around_day',
  'day_husband',
  'husband_call',
  'call_work',
  'work_panic',
  'panic_say',
  'say_inhal',
  'inhal_lost',
  'lost_ask',
  'ask_nephew',
  'nephew_taken',
  'taken_prankmbut',
  'prankmbut_doubt',
  'doubt_sinc',
  'sinc_nephew',
  'nephew_would',
  'would_give',
  'give_back',
  'back_instantli',
  'instantli_panic',
  'panic_got',
  'got_home',
  'home_look',
  'look_hour',
  'hour_go',
  'go_thd',
  'thd_hospit',
  'hospit_eventu',
  'eventu_got',
  'got_back',
  'back_found',
  'found_sit',
  'sit_coffe',
  'coffe_tabl',
  'tabl_husband',
  'husband_look',
  'look_next',
  'next_thing',
  'thing_knew',
  'knew_nephew',
  'nephew_giggl',
  'giggl_upstair',
  'upstair_moment',
  'moment_lost',
  'lost_yell',
  'yell_told',
  'told_longer',
  'longer_welcom',
  'welcom_home',
  'home_start',
  'start_panick',
  'panick_parent',
  'parent_call',
  'call_get',
  'get_bottom',
  'bottom_happen',
  'happen_still',
  'still_defend',
  'defend_say',
  'say_prank',
  'prank_took',
  'took_thing',
  'thing_far',
  'far_kick',
  'kick_mom',
  'mom_struggl',
  'struggl_insist',
  'insist_take',
  'take_back',
  'back_refus',
  'refus_theyr',
  'theyr_give',
  'give_hell',
  'hell_unsupport',
  'unsupport_make',
  'make_thing',
  'thing_difficult',
  'difficult_struggl',
  'struggl_sister',
  'sister_even',
  'even_blame',
  'blame_husband',
  'husband_keep',
  'keep_thing',
  'thing_lock',
  'lock_away',
  'away_aita',
  'aita_make',
  'make_hasti',
  'hasti_decidion',
  'sister_cancer_singl',
  'cancer_singl_mom',
  'singl_mom_year',
  'mom_year_old',
  'year_old_son',
  'old_son_ask',
  'son_ask_take',
  'ask_take_get',
  'take_get_treat',
  'get_treat_could',
  'treat_could_help',
  'could_help_focu',
  'help_focu_studi',
  'focu_studi_provid',
  'studi_provid_normal',
  'provid_normal_routin',
  'normal_routin_husband',
  'routin_husband_asthma',
  'husband_asthma_need',
  'asthma_need_inhal',
  'need_inhal_throughout',
  'inhal_throughout_day',
  'throughout_day_thing',
  'day_thing_nephew',
  'thing_nephew_prankster',
  'nephew_prankster_hed',
  'prankster_hed_hide',
  'hed_hide_inhal',
  'hide_inhal_prank',
  'inhal_prank_give',
  'prank_give_back',
  'give_back_soon',
  'back_soon_panic',
  'soon_panic_hous',
  'panic_hous_far',
  'hous_far_done',
  'far_done_time',
  'done_time_thought',
  'time_thought_mess',
  'thought_mess_around',
  'mess_around_day',
  'around_day_husband',
  'day_husband_call',
  'husband_call_work',
  'call_work_panic',
  'work_panic_say',
  'panic_say_inhal',
  'say_inhal_lost',
  'inhal_lost_ask',
  'lost_ask_nephew',
  'ask_nephew_taken',
  'nephew_taken_prankmbut',
  'taken_prankmbut_doubt',
  'prankmbut_doubt_sinc',
  'doubt_sinc_nephew',
  'sinc_nephew_would',
  'nephew_would_give',
  'would_give_back',
  'give_back_instantli',
  'back_instantli_panic',
  'instantli_panic_got',
  'panic_got_home',
  'got_home_look',
  'home_look_hour',
  'look_hour_go',
  'hour_go_thd',
  'go_thd_hospit',
  'thd_hospit_eventu',
  'hospit_eventu_got',
  'eventu_got_back',
  'got_back_found',
  'back_found_sit',
  'found_sit_coffe',
  'sit_coffe_tabl',
  'coffe_tabl_husband',
  'tabl_husband_look',
  'husband_look_next',
  'look_next_thing',
  'next_thing_knew',
  'thing_knew_nephew',
  'knew_nephew_giggl',
  'nephew_giggl_upstair',
  'giggl_upstair_moment',
  'upstair_moment_lost',
  'moment_lost_yell',
  'lost_yell_told',
  'yell_told_longer',
  'told_longer_welcom',
  'longer_welcom_home',
  'welcom_home_start',
  'home_start_panick',
  'start_panick_parent',
  'panick_parent_call',
  'parent_call_get',
  'call_get_bottom',
  'get_bottom_happen',
  'bottom_happen_still',
  'happen_still_defend',
  'still_defend_say',
  'defend_say_prank',
  'say_prank_took',
  'prank_took_thing',
  'took_thing_far',
  'thing_far_kick',
  'far_kick_mom',
  'kick_mom_struggl',
  'mom_struggl_insist',
  'struggl_insist_take',
  'insist_take_back',
  'take_back_refus',
  'back_refus_theyr',
  'refus_theyr_give',
  'theyr_give_hell',
  'give_hell_unsupport',
  'hell_unsupport_make',
  'unsupport_make_thing',
  'make_thing_difficult',
  'thing_difficult_struggl',
  'difficult_struggl_sister',
  'struggl_sister_even',
  'sister_even_blame',
  'even_blame_husband',
  'blame_husband_keep',
  'husband_keep_thing',
  'keep_thing_lock',
  'thing_lock_away',
  'lock_away_aita',
  'away_aita_make',
  'aita_make_hasti',
  'make_hasti_decidion'],
 ['im',
  'sahm',
  'kid',
  'dad',
  'sole',
  'incom',
  'earner',
  'hous',
  'respons',
  'bill',
  'groceri',
  'recent',
  'tightn',
  'grip',
  'expens',
  'would',
  'get',
  'mad',
  'littl',
  'thing',
  'like',
  'laundri',
  'twice',
  'week',
  'kid',
  'use',
  'clean',
  'product',
  'usual',
  'yesterday',
  'make',
  'breakfast',
  'kid',
  'use',
  'egg',
  'make',
  'scrambl',
  'egg',
  'came',
  'tabl',
  'found',
  'use',
  'start',
  'lash',
  'call',
  'irresponsbil',
  'use',
  'egg',
  'instead',
  'call',
  'unreason',
  'egg',
  'us',
  'kid',
  'get',
  'enough',
  'yell',
  'say',
  'keep',
  'mind',
  'one',
  'expect',
  'pay',
  'worri',
  'run',
  'groceri',
  'got',
  'upset',
  'lost',
  'appetit',
  'told',
  'could',
  'whole',
  'thing',
  'call',
  'childish',
  'immatur',
  'sulk',
  'honest',
  'straightforward',
  'end',
  'coffe',
  'breakfast',
  'left',
  'work',
  'without',
  'speak',
  'amitheasshol',
  'use',
  'egg',
  'instead',
  'whole',
  'famili',
  'could',
  'eat',
  'im_sahm',
  'sahm_kid',
  'kid_dad',
  'dad_sole',
  'sole_incom',
  'incom_earner',
  'earner_hous',
  'hous_respons',
  'respons_bill',
  'bill_groceri',
  'groceri_recent',
  'recent_tightn',
  'tightn_grip',
  'grip_expens',
  'expens_would',
  'would_get',
  'get_mad',
  'mad_littl',
  'littl_thing',
  'thing_like',
  'like_laundri',
  'laundri_twice',
  'twice_week',
  'week_kid',
  'kid_use',
  'use_clean',
  'clean_product',
  'product_usual',
  'usual_yesterday',
  'yesterday_make',
  'make_breakfast',
  'breakfast_kid',
  'kid_use',
  'use_egg',
  'egg_make',
  'make_scrambl',
  'scrambl_egg',
  'egg_came',
  'came_tabl',
  'tabl_found',
  'found_use',
  'use_start',
  'start_lash',
  'lash_call',
  'call_irresponsbil',
  'irresponsbil_use',
  'use_egg',
  'egg_instead',
  'instead_call',
  'call_unreason',
  'unreason_egg',
  'egg_us',
  'us_kid',
  'kid_get',
  'get_enough',
  'enough_yell',
  'yell_say',
  'say_keep',
  'keep_mind',
  'mind_one',
  'one_expect',
  'expect_pay',
  'pay_worri',
  'worri_run',
  'run_groceri',
  'groceri_got',
  'got_upset',
  'upset_lost',
  'lost_appetit',
  'appetit_told',
  'told_could',
  'could_whole',
  'whole_thing',
  'thing_call',
  'call_childish',
  'childish_immatur',
  'immatur_sulk',
  'sulk_honest',
  'honest_straightforward',
  'straightforward_end',
  'end_coffe',
  'coffe_breakfast',
  'breakfast_left',
  'left_work',
  'work_without',
  'without_speak',
  'speak_amitheasshol',
  'amitheasshol_use',
  'use_egg',
  'egg_instead',
  'instead_whole',
  'whole_famili',
  'famili_could',
  'could_eat',
  'im_sahm_kid',
  'sahm_kid_dad',
  'kid_dad_sole',
  'dad_sole_incom',
  'sole_incom_earner',
  'incom_earner_hous',
  'earner_hous_respons',
  'hous_respons_bill',
  'respons_bill_groceri',
  'bill_groceri_recent',
  'groceri_recent_tightn',
  'recent_tightn_grip',
  'tightn_grip_expens',
  'grip_expens_would',
  'expens_would_get',
  'would_get_mad',
  'get_mad_littl',
  'mad_littl_thing',
  'littl_thing_like',
  'thing_like_laundri',
  'like_laundri_twice',
  'laundri_twice_week',
  'twice_week_kid',
  'week_kid_use',
  'kid_use_clean',
  'use_clean_product',
  'clean_product_usual',
  'product_usual_yesterday',
  'usual_yesterday_make',
  'yesterday_make_breakfast',
  'make_breakfast_kid',
  'breakfast_kid_use',
  'kid_use_egg',
  'use_egg_make',
  'egg_make_scrambl',
  'make_scrambl_egg',
  'scrambl_egg_came',
  'egg_came_tabl',
  'came_tabl_found',
  'tabl_found_use',
  'found_use_start',
  'use_start_lash',
  'start_lash_call',
  'lash_call_irresponsbil',
  'call_irresponsbil_use',
  'irresponsbil_use_egg',
  'use_egg_instead',
  'egg_instead_call',
  'instead_call_unreason',
  'call_unreason_egg',
  'unreason_egg_us',
  'egg_us_kid',
  'us_kid_get',
  'kid_get_enough',
  'get_enough_yell',
  'enough_yell_say',
  'yell_say_keep',
  'say_keep_mind',
  'keep_mind_one',
  'mind_one_expect',
  'one_expect_pay',
  'expect_pay_worri',
  'pay_worri_run',
  'worri_run_groceri',
  'run_groceri_got',
  'groceri_got_upset',
  'got_upset_lost',
  'upset_lost_appetit',
  'lost_appetit_told',
  'appetit_told_could',
  'told_could_whole',
  'could_whole_thing',
  'whole_thing_call',
  'thing_call_childish',
  'call_childish_immatur',
  'childish_immatur_sulk',
  'immatur_sulk_honest',
  'sulk_honest_straightforward',
  'honest_straightforward_end',
  'straightforward_end_coffe',
  'end_coffe_breakfast',
  'coffe_breakfast_left',
  'breakfast_left_work',
  'left_work_without',
  'work_without_speak',
  'without_speak_amitheasshol',
  'speak_amitheasshol_use',
  'amitheasshol_use_egg',
  'use_egg_instead',
  'egg_instead_whole',
  'instead_whole_famili',
  'whole_famili_could',
  'famili_could_eat'],
 ['wife',
  'friend',
  'childhood',
  'name',
  'anthoni',
  'im',
  'complet',
  'honest',
  'say',
  'get',
  'along',
  'like',
  'rude',
  'disrespect',
  'noth',
  'like',
  'feel',
  'toward',
  'annoy',
  'sort',
  'speak',
  'much',
  'wife',
  'see',
  'live',
  'alon',
  'suffer',
  'medic',
  'condit',
  'cancer',
  'requir',
  'go',
  'hospit',
  'regularli',
  'receiv',
  'treatment',
  'found',
  'wife',
  'promis',
  'go',
  'everi',
  'chemo',
  'treatment',
  'support',
  'said',
  'commit',
  'made',
  'rough',
  'time',
  'sinc',
  'one',
  'els',
  'besid',
  'okayi',
  'issu',
  'first',
  'start',
  'affect',
  'eg',
  'cant',
  'go',
  'see',
  'friend',
  'stay',
  'son',
  'day',
  'wife',
  'could',
  'anthoni',
  'treatment',
  'etc',
  'etc',
  'ive',
  'talk',
  'said',
  'anthoni',
  'need',
  'compani',
  'support',
  'need',
  'let',
  'go',
  'last',
  'week',
  'kind',
  'last',
  'straw',
  'anthoni',
  'chemo',
  'session',
  'treatment',
  'wife',
  'want',
  'go',
  'ask',
  'stay',
  'home',
  'son',
  'told',
  'meet',
  'mom',
  'sister',
  'eat',
  'lunch',
  'home',
  'said',
  'need',
  'go',
  'kind',
  'flip',
  'said',
  'need',
  'could',
  'liter',
  'go',
  'see',
  'home',
  'next',
  'day',
  'someth',
  'threw',
  'fit',
  'call',
  'cruel',
  'forc',
  'leav',
  'anthoni',
  'sinc',
  'make',
  'look',
  'bad',
  'also',
  'said',
  'appoint',
  'mom',
  'sister',
  'import',
  'chemo',
  'session',
  'decid',
  'leav',
  'end',
  'argument',
  'end',
  'stay',
  'home',
  'kept',
  'ignor',
  'got',
  'back',
  'call',
  'selfish',
  'let',
  'support',
  'anthoni',
  'go',
  'girlfriend',
  'think',
  'im',
  'control',
  'jerk',
  'consider',
  'anthoni',
  'go',
  'aita',
  'wife_friend',
  'friend_childhood',
  'childhood_name',
  'name_anthoni',
  'anthoni_im',
  'im_complet',
  'complet_honest',
  'honest_say',
  'say_get',
  'get_along',
  'along_like',
  'like_rude',
  'rude_disrespect',
  'disrespect_noth',
  'noth_like',
  'like_feel',
  'feel_toward',
  'toward_annoy',
  'annoy_sort',
  'sort_speak',
  'speak_much',
  'much_wife',
  'wife_see',
  'see_live',
  'live_alon',
  'alon_suffer',
  'suffer_medic',
  'medic_condit',
  'condit_cancer',
  'cancer_requir',
  'requir_go',
  'go_hospit',
  'hospit_regularli',
  'regularli_receiv',
  'receiv_treatment',
  'treatment_found',
  'found_wife',
  'wife_promis',
  'promis_go',
  'go_everi',
  'everi_chemo',
  'chemo_treatment',
  'treatment_support',
  'support_said',
  'said_commit',
  'commit_made',
  'made_rough',
  'rough_time',
  'time_sinc',
  'sinc_one',
  'one_els',
  'els_besid',
  'besid_okayi',
  'okayi_issu',
  'issu_first',
  'first_start',
  'start_affect',
  'affect_eg',
  'eg_cant',
  'cant_go',
  'go_see',
  'see_friend',
  'friend_stay',
  'stay_son',
  'son_day',
  'day_wife',
  'wife_could',
  'could_anthoni',
  'anthoni_treatment',
  'treatment_etc',
  'etc_etc',
  'etc_ive',
  'ive_talk',
  'talk_said',
  'said_anthoni',
  'anthoni_need',
  'need_compani',
  'compani_support',
  'support_need',
  'need_let',
  'let_go',
  'go_last',
  'last_week',
  'week_kind',
  'kind_last',
  'last_straw',
  'straw_anthoni',
  'anthoni_chemo',
  'chemo_session',
  'session_treatment',
  'treatment_wife',
  'wife_want',
  'want_go',
  'go_ask',
  'ask_stay',
  'stay_home',
  'home_son',
  'son_told',
  'told_meet',
  'meet_mom',
  'mom_sister',
  'sister_eat',
  'eat_lunch',
  'lunch_home',
  'home_said',
  'said_need',
  'need_go',
  'go_kind',
  'kind_flip',
  'flip_said',
  'said_need',
  'need_could',
  'could_liter',
  'liter_go',
  'go_see',
  'see_home',
  'home_next',
  'next_day',
  'day_someth',
  'someth_threw',
  'threw_fit',
  'fit_call',
  'call_cruel',
  'cruel_forc',
  'forc_leav',
  'leav_anthoni',
  'anthoni_sinc',
  'sinc_make',
  'make_look',
  'look_bad',
  'bad_also',
  'also_said',
  'said_appoint',
  'appoint_mom',
  'mom_sister',
  'sister_import',
  'import_chemo',
  'chemo_session',
  'session_decid',
  'decid_leav',
  'leav_end',
  'end_argument',
  'argument_end',
  'end_stay',
  'stay_home',
  'home_kept',
  'kept_ignor',
  'ignor_got',
  'got_back',
  'back_call',
  'call_selfish',
  'selfish_let',
  'let_support',
  'support_anthoni',
  'anthoni_go',
  'go_girlfriend',
  'girlfriend_think',
  'think_im',
  'im_control',
  'control_jerk',
  'jerk_consider',
  'consider_anthoni',
  'anthoni_go',
  'go_aita',
  'wife_friend_childhood',
  'friend_childhood_name',
  'childhood_name_anthoni',
  'name_anthoni_im',
  'anthoni_im_complet',
  'im_complet_honest',
  'complet_honest_say',
  'honest_say_get',
  'say_get_along',
  'get_along_like',
  'along_like_rude',
  'like_rude_disrespect',
  'rude_disrespect_noth',
  'disrespect_noth_like',
  'noth_like_feel',
  'like_feel_toward',
  'feel_toward_annoy',
  'toward_annoy_sort',
  'annoy_sort_speak',
  'sort_speak_much',
  'speak_much_wife',
  'much_wife_see',
  'wife_see_live',
  'see_live_alon',
  'live_alon_suffer',
  'alon_suffer_medic',
  'suffer_medic_condit',
  'medic_condit_cancer',
  'condit_cancer_requir',
  'cancer_requir_go',
  'requir_go_hospit',
  'go_hospit_regularli',
  'hospit_regularli_receiv',
  'regularli_receiv_treatment',
  'receiv_treatment_found',
  'treatment_found_wife',
  'found_wife_promis',
  'wife_promis_go',
  'promis_go_everi',
  'go_everi_chemo',
  'everi_chemo_treatment',
  'chemo_treatment_support',
  'treatment_support_said',
  'support_said_commit',
  'said_commit_made',
  'commit_made_rough',
  'made_rough_time',
  'rough_time_sinc',
  'time_sinc_one',
  'sinc_one_els',
  'one_els_besid',
  'els_besid_okayi',
  'besid_okayi_issu',
  'okayi_issu_first',
  'issu_first_start',
  'first_start_affect',
  'start_affect_eg',
  'affect_eg_cant',
  'eg_cant_go',
  'cant_go_see',
  'go_see_friend',
  'see_friend_stay',
  'friend_stay_son',
  'stay_son_day',
  'son_day_wife',
  'day_wife_could',
  'wife_could_anthoni',
  'could_anthoni_treatment',
  'anthoni_treatment_etc',
  'treatment_etc_etc',
  'etc_etc_ive',
  'etc_ive_talk',
  'ive_talk_said',
  'talk_said_anthoni',
  'said_anthoni_need',
  'anthoni_need_compani',
  'need_compani_support',
  'compani_support_need',
  'support_need_let',
  'need_let_go',
  'let_go_last',
  'go_last_week',
  'last_week_kind',
  'week_kind_last',
  'kind_last_straw',
  'last_straw_anthoni',
  'straw_anthoni_chemo',
  'anthoni_chemo_session',
  'chemo_session_treatment',
  'session_treatment_wife',
  'treatment_wife_want',
  'wife_want_go',
  'want_go_ask',
  'go_ask_stay',
  'ask_stay_home',
  'stay_home_son',
  'home_son_told',
  'son_told_meet',
  'told_meet_mom',
  'meet_mom_sister',
  'mom_sister_eat',
  'sister_eat_lunch',
  'eat_lunch_home',
  'lunch_home_said',
  'home_said_need',
  'said_need_go',
  'need_go_kind',
  'go_kind_flip',
  'kind_flip_said',
  'flip_said_need',
  'said_need_could',
  'need_could_liter',
  'could_liter_go',
  'liter_go_see',
  'go_see_home',
  'see_home_next',
  'home_next_day',
  'next_day_someth',
  'day_someth_threw',
  'someth_threw_fit',
  'threw_fit_call',
  'fit_call_cruel',
  'call_cruel_forc',
  'cruel_forc_leav',
  'forc_leav_anthoni',
  'leav_anthoni_sinc',
  'anthoni_sinc_make',
  'sinc_make_look',
  'make_look_bad',
  'look_bad_also',
  'bad_also_said',
  'also_said_appoint',
  'said_appoint_mom',
  'appoint_mom_sister',
  'mom_sister_import',
  'sister_import_chemo',
  'import_chemo_session',
  'chemo_session_decid',
  'session_decid_leav',
  'decid_leav_end',
  'leav_end_argument',
  'end_argument_end',
  'argument_end_stay',
  'end_stay_home',
  'stay_home_kept',
  'home_kept_ignor',
  'kept_ignor_got',
  'ignor_got_back',
  'got_back_call',
  'back_call_selfish',
  'call_selfish_let',
  'selfish_let_support',
  'let_support_anthoni',
  'support_anthoni_go',
  'anthoni_go_girlfriend',
  'go_girlfriend_think',
  'girlfriend_think_im',
  'think_im_control',
  'im_control_jerk',
  'control_jerk_consider',
  'jerk_consider_anthoni',
  'consider_anthoni_go',
  'anthoni_go_aita'],
 ['recent',
  'found',
  'husband',
  'instal',
  'track',
  'devic',
  'sister',
  'car',
  'mechan',
  'fix',
  'confront',
  'refus',
  'tell',
  'go',
  'expand',
  'situat',
  'sister',
  'close',
  'threaten',
  'tell',
  'husband',
  'lash',
  'say',
  'noth',
  'line',
  'get',
  'involv',
  'told',
  'complic',
  'cant',
  'say',
  'anyth',
  'keep',
  'nose',
  'argument',
  'start',
  'avoid',
  'say',
  'gon',
  'na',
  'issu',
  'go',
  'threat',
  'aita',
  'threatn',
  'tell',
  'back',
  'context',
  'ask',
  'put',
  'context',
  'im',
  'sure',
  'relev',
  'found',
  'track',
  'devic',
  'heard',
  'talk',
  'phone',
  'said',
  'mom',
  'phone',
  'knew',
  'doubt',
  'close',
  'sil',
  'also',
  'talk',
  'phone',
  'sound',
  'like',
  'talk',
  'mom',
  'tone',
  'formal',
  'usual',
  'recent_found',
  'found_husband',
  'husband_instal',
  'instal_track',
  'track_devic',
  'devic_sister',
  'sister_car',
  'car_mechan',
  'mechan_fix',
  'fix_confront',
  'confront_refus',
  'refus_tell',
  'tell_go',
  'go_expand',
  'expand_situat',
  'situat_sister',
  'sister_close',
  'close_threaten',
  'threaten_tell',
  'tell_husband',
  'husband_lash',
  'lash_say',
  'say_noth',
  'noth_line',
  'line_get',
  'get_involv',
  'involv_told',
  'told_complic',
  'complic_cant',
  'cant_say',
  'say_anyth',
  'anyth_keep',
  'keep_nose',
  'nose_argument',
  'argument_start',
  'start_avoid',
  'avoid_say',
  'say_gon',
  'gon_na',
  'na_issu',
  'issu_go',
  'go_threat',
  'threat_aita',
  'aita_threatn',
  'threatn_tell',
  'tell_back',
  'back_context',
  'context_ask',
  'ask_put',
  'put_context',
  'context_im',
  'im_sure',
  'sure_relev',
  'relev_found',
  'found_track',
  'track_devic',
  'devic_heard',
  'heard_talk',
  'talk_phone',
  'phone_said',
  'said_mom',
  'mom_phone',
  'phone_knew',
  'knew_doubt',
  'doubt_close',
  'close_sil',
  'sil_also',
  'also_talk',
  'talk_phone',
  'phone_sound',
  'sound_like',
  'like_talk',
  'talk_mom',
  'mom_tone',
  'tone_formal',
  'formal_usual',
  'recent_found_husband',
  'found_husband_instal',
  'husband_instal_track',
  'instal_track_devic',
  'track_devic_sister',
  'devic_sister_car',
  'sister_car_mechan',
  'car_mechan_fix',
  'mechan_fix_confront',
  'fix_confront_refus',
  'confront_refus_tell',
  'refus_tell_go',
  'tell_go_expand',
  'go_expand_situat',
  'expand_situat_sister',
  'situat_sister_close',
  'sister_close_threaten',
  'close_threaten_tell',
  'threaten_tell_husband',
  'tell_husband_lash',
  'husband_lash_say',
  'lash_say_noth',
  'say_noth_line',
  'noth_line_get',
  'line_get_involv',
  'get_involv_told',
  'involv_told_complic',
  'told_complic_cant',
  'complic_cant_say',
  'cant_say_anyth',
  'say_anyth_keep',
  'anyth_keep_nose',
  'keep_nose_argument',
  'nose_argument_start',
  'argument_start_avoid',
  'start_avoid_say',
  'avoid_say_gon',
  'say_gon_na',
  'gon_na_issu',
  'na_issu_go',
  'issu_go_threat',
  'go_threat_aita',
  'threat_aita_threatn',
  'aita_threatn_tell',
  'threatn_tell_back',
  'tell_back_context',
  'back_context_ask',
  'context_ask_put',
  'ask_put_context',
  'put_context_im',
  'context_im_sure',
  'im_sure_relev',
  'sure_relev_found',
  'relev_found_track',
  'found_track_devic',
  'track_devic_heard',
  'devic_heard_talk',
  'heard_talk_phone',
  'talk_phone_said',
  'phone_said_mom',
  'said_mom_phone',
  'mom_phone_knew',
  'phone_knew_doubt',
  'knew_doubt_close',
  'doubt_close_sil',
  'close_sil_also',
  'sil_also_talk',
  'also_talk_phone',
  'talk_phone_sound',
  'phone_sound_like',
  'sound_like_talk',
  'like_talk_mom',
  'talk_mom_tone',
  'mom_tone_formal',
  'tone_formal_usual'],
 ['[',
  ']',
  'marri',
  'wife',
  '[',
  ']',
  'year',
  'wonder',
  '-year-old',
  'daughter',
  '-year-old',
  'son',
  'wife',
  'mother',
  'view',
  'agre',
  'two',
  'year',
  'ago',
  'daughter',
  'th',
  'birthday',
  'sent',
  'book',
  'crash',
  'diet',
  'promis',
  'someth',
  'like',
  'pound',
  'weight',
  'loss',
  'three',
  'day',
  'daughter',
  'devast',
  'underli',
  'messag',
  'clear',
  'day',
  'month',
  'start',
  'eat',
  'whole',
  'plate',
  'food',
  'dinner',
  'daughter',
  'healthi',
  'girl',
  'highli',
  'activ',
  'studiou',
  'importantli',
  'happi',
  'grandmoth',
  'believ',
  'reach',
  'full',
  'potenti',
  'whatev',
  'mean',
  'think',
  'shell',
  'front',
  'cover',
  'magazin',
  'shed',
  'weight',
  'sinc',
  'made',
  'view',
  'clear',
  'made',
  'mission',
  'block',
  'unsupervis',
  'contact',
  'includ',
  'gift',
  'month',
  'ago',
  'daughter',
  'upcom',
  'th',
  'birthday',
  'grandma',
  'text',
  'ask',
  'new',
  'address',
  'normal',
  'would',
  'ask',
  'wife',
  'sinc',
  'answer',
  'within',
  'minut',
  'text',
  'instead',
  'wife',
  'would',
  'given',
  'real',
  'address',
  'abl',
  'respond',
  'first',
  'fake',
  'one',
  'tell',
  'wife',
  'respons',
  'necessari',
  'guarante',
  'id',
  'home',
  'intercept',
  'gift',
  'daughter',
  'would',
  'open',
  'someth',
  'address',
  'gave',
  'numbersa',
  'street',
  'somewher',
  'even',
  'sure',
  'exist',
  'coupl',
  'week',
  'later',
  'daughter',
  'birthday',
  'realiz',
  'fact',
  'exist',
  'packag',
  'return',
  'wife',
  'furiou',
  'wife',
  'amend',
  'address',
  'gave',
  'grandma',
  'insist',
  'complet',
  'innoc',
  'packag',
  'well',
  'day',
  'schedul',
  'deliveri',
  'decid',
  'work',
  'home',
  'arriv',
  'open',
  'found',
  'baton',
  'twirl',
  'uniform',
  'daughter',
  'hobbi',
  'sound',
  'innoc',
  'enough',
  'least',
  'two',
  'size',
  'small',
  'sat',
  'wife',
  'stupid',
  'thing',
  'front',
  'us',
  'said',
  'clearli',
  'intent',
  'wife',
  'refus',
  'acknowledg',
  'mother',
  'even',
  'madder',
  'throw',
  'uniform',
  'neighbor',
  'garbag',
  'neighbor',
  'permiss',
  'handl',
  'correctli',
  '[_]',
  ']_marri',
  'marri_wife',
  'wife_[',
  '[_]',
  ']_year',
  'year_wonder',
  'wonder_-year-old',
  '-year-old_daughter',
  'daughter_-year-old',
  '-year-old_son',
  'son_wife',
  'wife_mother',
  'mother_view',
  'view_agre',
  'agre_two',
  'two_year',
  'year_ago',
  'ago_daughter',
  'daughter_th',
  'th_birthday',
  'birthday_sent',
  'sent_book',
  'book_crash',
  'crash_diet',
  'diet_promis',
  'promis_someth',
  'someth_like',
  'like_pound',
  'pound_weight',
  'weight_loss',
  'loss_three',
  'three_day',
  'day_daughter',
  'daughter_devast',
  'devast_underli',
  'underli_messag',
  'messag_clear',
  'clear_day',
  'day_month',
  'month_start',
  'start_eat',
  'eat_whole',
  'whole_plate',
  'plate_food',
  'food_dinner',
  'dinner_daughter',
  'daughter_healthi',
  'healthi_girl',
  'girl_highli',
  'highli_activ',
  'activ_studiou',
  'studiou_importantli',
  'importantli_happi',
  'happi_grandmoth',
  'grandmoth_believ',
  'believ_reach',
  'reach_full',
  'full_potenti',
  'potenti_whatev',
  'whatev_mean',
  'mean_think',
  'think_shell',
  'shell_front',
  'front_cover',
  'cover_magazin',
  'magazin_shed',
  'shed_weight',
  'weight_sinc',
  'sinc_made',
  'made_view',
  'view_clear',
  'clear_made',
  'made_mission',
  'mission_block',
  'block_unsupervis',
  'unsupervis_contact',
  'contact_includ',
  'includ_gift',
  'gift_month',
  'month_ago',
  'ago_daughter',
  'daughter_upcom',
  'upcom_th',
  'th_birthday',
  'birthday_grandma',
  'grandma_text',
  'text_ask',
  'ask_new',
  'new_address',
  'address_normal',
  'normal_would',
  'would_ask',
  'ask_wife',
  'wife_sinc',
  'sinc_answer',
  'answer_within',
  'within_minut',
  'minut_text',
  'text_instead',
  'instead_wife',
  'wife_would',
  'would_given',
  'given_real',
  'real_address',
  'address_abl',
  'abl_respond',
  'respond_first',
  'first_fake',
  'fake_one',
  'one_tell',
  'tell_wife',
  'wife_respons',
  'respons_necessari',
  'necessari_guarante',
  'guarante_id',
  'id_home',
  'home_intercept',
  'intercept_gift',
  'gift_daughter',
  'daughter_would',
  'would_open',
  'open_someth',
  'someth_address',
  'address_gave',
  'gave_numbersa',
  'numbersa_street',
  'street_somewher',
  'somewher_even',
  'even_sure',
  'sure_exist',
  'exist_coupl',
  'coupl_week',
  'week_later',
  'later_daughter',
  'daughter_birthday',
  'birthday_realiz',
  'realiz_fact',
  'fact_exist',
  'exist_packag',
  'packag_return',
  'return_wife',
  'wife_furiou',
  'furiou_wife',
  'wife_amend',
  'amend_address',
  'address_gave',
  'gave_grandma',
  'grandma_insist',
  'insist_complet',
  'complet_innoc',
  'innoc_packag',
  'packag_well',
  'well_day',
  'day_schedul',
  'schedul_deliveri',
  'deliveri_decid',
  'decid_work',
  'work_home',
  'home_arriv',
  'arriv_open',
  'open_found',
  'found_baton',
  'baton_twirl',
  'twirl_uniform',
  'uniform_daughter',
  'daughter_hobbi',
  'hobbi_sound',
  'sound_innoc',
  'innoc_enough',
  'enough_least',
  'least_two',
  'two_size',
  'size_small',
  'small_sat',
  'sat_wife',
  'wife_stupid',
  'stupid_thing',
  'thing_front',
  'front_us',
  'us_said',
  'said_clearli',
  'clearli_intent',
  'intent_wife',
  'wife_refus',
  'refus_acknowledg',
  'acknowledg_mother',
  'mother_even',
  'even_madder',
  'madder_throw',
  'throw_uniform',
  'uniform_neighbor',
  'neighbor_garbag',
  'garbag_neighbor',
  'neighbor_permiss',
  'permiss_handl',
  'handl_correctli',
  '[_]_marri',
  ']_marri_wife',
  'marri_wife_[',
  'wife_[_]',
  '[_]_year',
  ']_year_wonder',
  'year_wonder_-year-old',
  'wonder_-year-old_daughter',
  '-year-old_daughter_-year-old',
  'daughter_-year-old_son',
  '-year-old_son_wife',
  'son_wife_mother',
  'wife_mother_view',
  'mother_view_agre',
  'view_agre_two',
  'agre_two_year',
  'two_year_ago',
  'year_ago_daughter',
  'ago_daughter_th',
  'daughter_th_birthday',
  'th_birthday_sent',
  'birthday_sent_book',
  'sent_book_crash',
  'book_crash_diet',
  'crash_diet_promis',
  'diet_promis_someth',
  'promis_someth_like',
  'someth_like_pound',
  'like_pound_weight',
  'pound_weight_loss',
  'weight_loss_three',
  'loss_three_day',
  'three_day_daughter',
  'day_daughter_devast',
  'daughter_devast_underli',
  'devast_underli_messag',
  'underli_messag_clear',
  'messag_clear_day',
  'clear_day_month',
  'day_month_start',
  'month_start_eat',
  'start_eat_whole',
  'eat_whole_plate',
  'whole_plate_food',
  'plate_food_dinner',
  'food_dinner_daughter',
  'dinner_daughter_healthi',
  'daughter_healthi_girl',
  'healthi_girl_highli',
  'girl_highli_activ',
  'highli_activ_studiou',
  'activ_studiou_importantli',
  'studiou_importantli_happi',
  'importantli_happi_grandmoth',
  'happi_grandmoth_believ',
  'grandmoth_believ_reach',
  'believ_reach_full',
  'reach_full_potenti',
  'full_potenti_whatev',
  'potenti_whatev_mean',
  'whatev_mean_think',
  'mean_think_shell',
  'think_shell_front',
  'shell_front_cover',
  'front_cover_magazin',
  'cover_magazin_shed',
  'magazin_shed_weight',
  'shed_weight_sinc',
  'weight_sinc_made',
  'sinc_made_view',
  'made_view_clear',
  'view_clear_made',
  'clear_made_mission',
  'made_mission_block',
  'mission_block_unsupervis',
  'block_unsupervis_contact',
  'unsupervis_contact_includ',
  'contact_includ_gift',
  'includ_gift_month',
  'gift_month_ago',
  'month_ago_daughter',
  'ago_daughter_upcom',
  'daughter_upcom_th',
  'upcom_th_birthday',
  'th_birthday_grandma',
  'birthday_grandma_text',
  'grandma_text_ask',
  'text_ask_new',
  'ask_new_address',
  'new_address_normal',
  'address_normal_would',
  'normal_would_ask',
  'would_ask_wife',
  'ask_wife_sinc',
  'wife_sinc_answer',
  'sinc_answer_within',
  'answer_within_minut',
  'within_minut_text',
  'minut_text_instead',
  'text_instead_wife',
  'instead_wife_would',
  'wife_would_given',
  'would_given_real',
  'given_real_address',
  'real_address_abl',
  'address_abl_respond',
  'abl_respond_first',
  'respond_first_fake',
  'first_fake_one',
  'fake_one_tell',
  'one_tell_wife',
  'tell_wife_respons',
  'wife_respons_necessari',
  'respons_necessari_guarante',
  'necessari_guarante_id',
  'guarante_id_home',
  'id_home_intercept',
  'home_intercept_gift',
  'intercept_gift_daughter',
  'gift_daughter_would',
  'daughter_would_open',
  'would_open_someth',
  'open_someth_address',
  'someth_address_gave',
  'address_gave_numbersa',
  'gave_numbersa_street',
  'numbersa_street_somewher',
  'street_somewher_even',
  'somewher_even_sure',
  'even_sure_exist',
  'sure_exist_coupl',
  'exist_coupl_week',
  'coupl_week_later',
  'week_later_daughter',
  'later_daughter_birthday',
  'daughter_birthday_realiz',
  'birthday_realiz_fact',
  'realiz_fact_exist',
  'fact_exist_packag',
  'exist_packag_return',
  'packag_return_wife',
  'return_wife_furiou',
  'wife_furiou_wife',
  'furiou_wife_amend',
  'wife_amend_address',
  'amend_address_gave',
  'address_gave_grandma',
  'gave_grandma_insist',
  'grandma_insist_complet',
  'insist_complet_innoc',
  'complet_innoc_packag',
  'innoc_packag_well',
  'packag_well_day',
  'well_day_schedul',
  'day_schedul_deliveri',
  'schedul_deliveri_decid',
  'deliveri_decid_work',
  'decid_work_home',
  'work_home_arriv',
  'home_arriv_open',
  'arriv_open_found',
  'open_found_baton',
  'found_baton_twirl',
  'baton_twirl_uniform',
  'twirl_uniform_daughter',
  'uniform_daughter_hobbi',
  'daughter_hobbi_sound',
  'hobbi_sound_innoc',
  'sound_innoc_enough',
  'innoc_enough_least',
  'enough_least_two',
  'least_two_size',
  'two_size_small',
  'size_small_sat',
  'small_sat_wife',
  'sat_wife_stupid',
  'wife_stupid_thing',
  'stupid_thing_front',
  'thing_front_us',
  'front_us_said',
  'us_said_clearli',
  'said_clearli_intent',
  'clearli_intent_wife',
  'intent_wife_refus',
  'wife_refus_acknowledg',
  'refus_acknowledg_mother',
  'acknowledg_mother_even',
  'mother_even_madder',
  'even_madder_throw',
  'madder_throw_uniform',
  'throw_uniform_neighbor',
  'uniform_neighbor_garbag',
  'neighbor_garbag_neighbor',
  'garbag_neighbor_permiss',
  'neighbor_permiss_handl',
  'permiss_handl_correctli'],
 ['get',
  'marri',
  'fiancé',
  'decid',
  'dri',
  'wed',
  'sinc',
  'drink',
  'see',
  'point',
  'spend',
  'money',
  'alcohol',
  'debat',
  'get',
  'cash',
  'bar',
  'decid',
  'alcohol',
  'wide',
  'rang',
  'drink',
  'juic',
  'soda',
  'provid',
  'inform',
  'guest',
  'via',
  'invit',
  'someth',
  'along',
  'line',
  'worri',
  'choos',
  'driver',
  'pay',
  'taxi',
  'sinc',
  'everybodi',
  'abl',
  'drive',
  'friend',
  'call',
  'ask',
  'joke',
  'dri',
  'wed',
  'deni',
  'ask',
  'two',
  'time',
  'still',
  'deni',
  'joke',
  'ask',
  'wrong',
  'suppos',
  'fun',
  'without',
  'alcohol',
  'function',
  'night',
  'alright',
  'chose',
  'dri',
  'wed',
  'might',
  'ah',
  'told',
  'oblig',
  'provid',
  'alcohol',
  'abl',
  'fun',
  'without',
  'need',
  'alcohol',
  'badli',
  'function',
  'without',
  'even',
  'one',
  'night',
  'peopl',
  'knew',
  'might',
  'alcohol',
  'problem',
  'consid',
  'therapi',
  'treat',
  'flip',
  'took',
  'invit',
  'back',
  'apologis',
  'use',
  'mani',
  'slur',
  'friend',
  'divid',
  'asshol',
  'say',
  'right',
  'say',
  'right',
  'reddit',
  'aita',
  'someon',
  'said',
  'edit',
  'cash',
  'bar',
  '-',
  'debat',
  'decid',
  'sinc',
  'would',
  'pay',
  'fee',
  'open',
  'cash',
  'bar',
  'want',
  'pay',
  'alcohol',
  'event',
  'wed',
  'host',
  'dinnerspartysev',
  'regularli',
  'friend',
  'never',
  'provid',
  'alcohol',
  'peopl',
  'know',
  'us',
  'known',
  'never',
  'one',
  'provid',
  'alcohol',
  'one',
  'want',
  'would',
  'bring',
  'beer',
  'two',
  'garden',
  'parti',
  'drank',
  'avail',
  'edit',
  'serious',
  'shock',
  '„',
  'hate',
  'wed',
  'drink',
  'comment',
  'despis',
  'wed',
  'come',
  'hammer',
  'instead',
  'stay',
  'away',
  'one',
  'forc',
  'come',
  'hate',
  'wed',
  'much',
  'edit',
  'still',
  'amaz',
  'mani',
  'peopl',
  'need',
  'alcohol',
  'social',
  'gather',
  'say',
  'need',
  'function',
  'fun',
  'bore',
  'without',
  '-',
  'still',
  'firmli',
  'believ',
  'healthi',
  'thank',
  'info',
  'less',
  'peopl',
  'come',
  'wed',
  'afraid',
  'peopl',
  'come',
  'coupl',
  'declin',
  'grandma',
  'birthday',
  'day',
  'happi',
  'birthday',
  'advanc',
  'see',
  'reddit',
  'also',
  'decid',
  'ah',
  'take',
  'thank',
  'respect',
  'convers',
  'discuss',
  'get_marri',
  'marri_fiancé',
  'fiancé_decid',
  'decid_dri',
  'dri_wed',
  'wed_sinc',
  'sinc_drink',
  'drink_see',
  'see_point',
  'point_spend',
  'spend_money',
  'money_alcohol',
  'alcohol_debat',
  'debat_get',
  'get_cash',
  'cash_bar',
  'bar_decid',
  'decid_alcohol',
  'alcohol_wide',
  'wide_rang',
  'rang_drink',
  'drink_juic',
  'juic_soda',
  'soda_provid',
  'provid_inform',
  'inform_guest',
  'guest_via',
  'via_invit',
  'invit_someth',
  'someth_along',
  'along_line',
  'line_worri',
  'worri_choos',
  'choos_driver',
  'driver_pay',
  'pay_taxi',
  'taxi_sinc',
  'sinc_everybodi',
  'everybodi_abl',
  'abl_drive',
  'drive_friend',
  'friend_call',
  'call_ask',
  'ask_joke',
  'joke_dri',
  'dri_wed',
  'wed_deni',
  'deni_ask',
  'ask_two',
  'two_time',
  'time_still',
  'still_deni',
  'deni_joke',
  'joke_ask',
  'ask_wrong',
  'wrong_suppos',
  'suppos_fun',
  'fun_without',
  'without_alcohol',
  'alcohol_function',
  'function_night',
  'night_alright',
  'alright_chose',
  'chose_dri',
  'dri_wed',
  'wed_might',
  'might_ah',
  'ah_told',
  'told_oblig',
  'oblig_provid',
  'provid_alcohol',
  'alcohol_abl',
  'abl_fun',
  'fun_without',
  'without_need',
  'need_alcohol',
  'alcohol_badli',
  'badli_function',
  'function_without',
  'without_even',
  'even_one',
  'one_night',
  'night_peopl',
  'peopl_knew',
  'knew_might',
  'might_alcohol',
  'alcohol_problem',
  'problem_consid',
  'consid_therapi',
  'therapi_treat',
  'treat_flip',
  'flip_took',
  'took_invit',
  'invit_back',
  'back_apologis',
  'apologis_use',
  'use_mani',
  'mani_slur',
  'slur_friend',
  'friend_divid',
  'divid_asshol',
  'asshol_say',
  'say_right',
  'right_say',
  'say_right',
  'right_reddit',
  'reddit_aita',
  'aita_someon',
  'someon_said',
  'said_edit',
  'edit_cash',
  'cash_bar',
  'bar_-',
  '-_debat',
  'debat_decid',
  'decid_sinc',
  'sinc_would',
  'would_pay',
  'pay_fee',
  'fee_open',
  'open_cash',
  'cash_bar',
  'bar_want',
  'want_pay',
  'pay_alcohol',
  'alcohol_event',
  'event_wed',
  'wed_host',
  'host_dinnerspartysev',
  'dinnerspartysev_regularli',
  'regularli_friend',
  'friend_never',
  'never_provid',
  'provid_alcohol',
  'alcohol_peopl',
  'peopl_know',
  'know_us',
  'us_known',
  'known_never',
  'never_one',
  'one_provid',
  'provid_alcohol',
  'alcohol_one',
  'one_want',
  'want_would',
  'would_bring',
  'bring_beer',
  'beer_two',
  'two_garden',
  'garden_parti',
  'parti_drank',
  'drank_avail',
  'avail_edit',
  'edit_serious',
  'serious_shock',
  'shock_„',
  '„_hate',
  'hate_wed',
  'wed_drink',
  'drink_comment',
  'comment_despis',
  'despis_wed',
  'wed_come',
  'come_hammer',
  'hammer_instead',
  'instead_stay',
  'stay_away',
  'away_one',
  'one_forc',
  'forc_come',
  'come_hate',
  'hate_wed',
  'wed_much',
  'much_edit',
  'edit_still',
  'still_amaz',
  'amaz_mani',
  'mani_peopl',
  'peopl_need',
  'need_alcohol',
  'alcohol_social',
  'social_gather',
  'gather_say',
  'say_need',
  'need_function',
  'function_fun',
  'fun_bore',
  'bore_without',
  'without_-',
  '-_still',
  'still_firmli',
  'firmli_believ',
  'believ_healthi',
  'healthi_thank',
  'thank_info',
  'info_less',
  'less_peopl',
  'peopl_come',
  'come_wed',
  'wed_afraid',
  'afraid_peopl',
  'peopl_come',
  'come_coupl',
  'coupl_declin',
  'declin_grandma',
  'grandma_birthday',
  'birthday_day',
  'day_happi',
  'happi_birthday',
  'birthday_advanc',
  'advanc_see',
  'see_reddit',
  'reddit_also',
  'also_decid',
  'decid_ah',
  'ah_take',
  'take_thank',
  'thank_respect',
  'respect_convers',
  'convers_discuss',
  'get_marri_fiancé',
  'marri_fiancé_decid',
  'fiancé_decid_dri',
  'decid_dri_wed',
  'dri_wed_sinc',
  'wed_sinc_drink',
  'sinc_drink_see',
  'drink_see_point',
  'see_point_spend',
  'point_spend_money',
  'spend_money_alcohol',
  'money_alcohol_debat',
  'alcohol_debat_get',
  'debat_get_cash',
  'get_cash_bar',
  'cash_bar_decid',
  'bar_decid_alcohol',
  'decid_alcohol_wide',
  'alcohol_wide_rang',
  'wide_rang_drink',
  'rang_drink_juic',
  'drink_juic_soda',
  'juic_soda_provid',
  'soda_provid_inform',
  'provid_inform_guest',
  'inform_guest_via',
  'guest_via_invit',
  'via_invit_someth',
  'invit_someth_along',
  'someth_along_line',
  'along_line_worri',
  'line_worri_choos',
  'worri_choos_driver',
  'choos_driver_pay',
  'driver_pay_taxi',
  'pay_taxi_sinc',
  'taxi_sinc_everybodi',
  'sinc_everybodi_abl',
  'everybodi_abl_drive',
  'abl_drive_friend',
  'drive_friend_call',
  'friend_call_ask',
  'call_ask_joke',
  'ask_joke_dri',
  'joke_dri_wed',
  'dri_wed_deni',
  'wed_deni_ask',
  'deni_ask_two',
  'ask_two_time',
  'two_time_still',
  'time_still_deni',
  'still_deni_joke',
  'deni_joke_ask',
  'joke_ask_wrong',
  'ask_wrong_suppos',
  'wrong_suppos_fun',
  'suppos_fun_without',
  'fun_without_alcohol',
  'without_alcohol_function',
  'alcohol_function_night',
  'function_night_alright',
  'night_alright_chose',
  'alright_chose_dri',
  'chose_dri_wed',
  'dri_wed_might',
  'wed_might_ah',
  'might_ah_told',
  'ah_told_oblig',
  'told_oblig_provid',
  'oblig_provid_alcohol',
  'provid_alcohol_abl',
  'alcohol_abl_fun',
  'abl_fun_without',
  'fun_without_need',
  'without_need_alcohol',
  'need_alcohol_badli',
  'alcohol_badli_function',
  'badli_function_without',
  'function_without_even',
  'without_even_one',
  'even_one_night',
  'one_night_peopl',
  'night_peopl_knew',
  'peopl_knew_might',
  'knew_might_alcohol',
  'might_alcohol_problem',
  'alcohol_problem_consid',
  'problem_consid_therapi',
  'consid_therapi_treat',
  'therapi_treat_flip',
  'treat_flip_took',
  'flip_took_invit',
  'took_invit_back',
  'invit_back_apologis',
  'back_apologis_use',
  'apologis_use_mani',
  'use_mani_slur',
  'mani_slur_friend',
  'slur_friend_divid',
  'friend_divid_asshol',
  'divid_asshol_say',
  'asshol_say_right',
  'say_right_say',
  'right_say_right',
  'say_right_reddit',
  'right_reddit_aita',
  'reddit_aita_someon',
  'aita_someon_said',
  'someon_said_edit',
  'said_edit_cash',
  'edit_cash_bar',
  'cash_bar_-',
  'bar_-_debat',
  '-_debat_decid',
  'debat_decid_sinc',
  'decid_sinc_would',
  'sinc_would_pay',
  'would_pay_fee',
  'pay_fee_open',
  'fee_open_cash',
  'open_cash_bar',
  'cash_bar_want',
  'bar_want_pay',
  'want_pay_alcohol',
  'pay_alcohol_event',
  'alcohol_event_wed',
  'event_wed_host',
  'wed_host_dinnerspartysev',
  'host_dinnerspartysev_regularli',
  'dinnerspartysev_regularli_friend',
  'regularli_friend_never',
  'friend_never_provid',
  'never_provid_alcohol',
  'provid_alcohol_peopl',
  'alcohol_peopl_know',
  'peopl_know_us',
  'know_us_known',
  'us_known_never',
  'known_never_one',
  'never_one_provid',
  'one_provid_alcohol',
  'provid_alcohol_one',
  'alcohol_one_want',
  'one_want_would',
  'want_would_bring',
  'would_bring_beer',
  'bring_beer_two',
  'beer_two_garden',
  'two_garden_parti',
  'garden_parti_drank',
  'parti_drank_avail',
  'drank_avail_edit',
  'avail_edit_serious',
  'edit_serious_shock',
  'serious_shock_„',
  'shock_„_hate',
  '„_hate_wed',
  'hate_wed_drink',
  'wed_drink_comment',
  'drink_comment_despis',
  'comment_despis_wed',
  'despis_wed_come',
  'wed_come_hammer',
  'come_hammer_instead',
  'hammer_instead_stay',
  'instead_stay_away',
  'stay_away_one',
  'away_one_forc',
  'one_forc_come',
  'forc_come_hate',
  'come_hate_wed',
  'hate_wed_much',
  'wed_much_edit',
  'much_edit_still',
  'edit_still_amaz',
  'still_amaz_mani',
  'amaz_mani_peopl',
  'mani_peopl_need',
  'peopl_need_alcohol',
  'need_alcohol_social',
  'alcohol_social_gather',
  'social_gather_say',
  'gather_say_need',
  'say_need_function',
  'need_function_fun',
  'function_fun_bore',
  'fun_bore_without',
  'bore_without_-',
  'without_-_still',
  '-_still_firmli',
  'still_firmli_believ',
  'firmli_believ_healthi',
  'believ_healthi_thank',
  'healthi_thank_info',
  'thank_info_less',
  'info_less_peopl',
  'less_peopl_come',
  'peopl_come_wed',
  'come_wed_afraid',
  'wed_afraid_peopl',
  'afraid_peopl_come',
  'peopl_come_coupl',
  'come_coupl_declin',
  'coupl_declin_grandma',
  'declin_grandma_birthday',
  'grandma_birthday_day',
  'birthday_day_happi',
  'day_happi_birthday',
  'happi_birthday_advanc',
  'birthday_advanc_see',
  'advanc_see_reddit',
  'see_reddit_also',
  'reddit_also_decid',
  'also_decid_ah',
  'decid_ah_take',
  'ah_take_thank',
  'take_thank_respect',
  'thank_respect_convers',
  'respect_convers_discuss'],
 ['fianc',
  'invit',
  'go',
  'along',
  'trip',
  'california',
  'week',
  'children',
  'due',
  'father',
  'wrestl',
  'tournament',
  'miss',
  'alreadi',
  'spent',
  'hundr',
  'nonrefund',
  'ticket',
  'particip',
  'drove',
  'famili',
  'alreadi',
  'quit',
  'exhaust',
  'get',
  'resort',
  'listen',
  'month',
  'old',
  'scream',
  'practic',
  'entir',
  'ride',
  'hour',
  'insist',
  'go',
  'drive',
  'swap',
  'drive',
  'site',
  'see',
  'cram',
  'vehicl',
  'like',
  'sardin',
  'floor',
  'famili',
  'dog',
  'lb',
  'bull',
  'mastiff',
  'two',
  'puppi',
  'ye',
  'dog',
  'shit',
  'also',
  'present',
  'quick',
  'clean',
  'still',
  'car',
  'putrid',
  'get',
  'resort',
  'quickli',
  'notic',
  'seen',
  'built',
  'babysitt',
  'fianc',
  'sister',
  'month',
  'old',
  'daughter',
  'everytim',
  'fsil',
  'husband',
  'want',
  'take',
  'shower',
  'swim',
  'eat',
  'even',
  'feel',
  'like',
  'hold',
  'child',
  'thrown',
  'lap',
  'basic',
  'everi',
  'singl',
  'time',
  'adult',
  'claim',
  'child',
  'want',
  'cant',
  'exactli',
  'argu',
  'point',
  'held',
  'babi',
  'much',
  'put',
  'arm',
  'quit',
  'often',
  'even',
  'pass',
  'hallway',
  'hit',
  'point',
  'get',
  'piss',
  'pool',
  'yesterday',
  'fsil',
  'get',
  'within',
  'minut',
  'pass',
  'babi',
  'hand',
  'back',
  'mayb',
  'minut',
  'later',
  'claim',
  'need',
  'use',
  'restroom',
  'stay',
  'indoor',
  'mayb',
  'minut',
  'later',
  'come',
  'insid',
  'pass',
  'babi',
  'say',
  'need',
  'shower',
  'ask',
  'bring',
  'child',
  'minut',
  'pass',
  'babi',
  'lock',
  'room',
  'ive',
  'bare',
  'left',
  'sinc',
  'fianc',
  'come',
  'bit',
  'ago',
  'tell',
  'go',
  'eat',
  'told',
  'feel',
  'like',
  'go',
  'becom',
  'highchair',
  'babi',
  'parent',
  'ate',
  'ive',
  'alreadi',
  'held',
  'child',
  'enough',
  'sever',
  'drink',
  'spill',
  'octopu',
  'arm',
  'said',
  'cant',
  'sit',
  'avoid',
  'hold',
  'babi',
  'wast',
  'trip',
  'say',
  'half',
  'time',
  'ask',
  'though',
  'babi',
  'practic',
  'toss',
  'aita',
  'fianc_invit',
  'invit_go',
  'go_along',
  'along_trip',
  'trip_california',
  'california_week',
  'week_children',
  'children_due',
  'due_father',
  'father_wrestl',
  'wrestl_tournament',
  'tournament_miss',
  'miss_alreadi',
  'alreadi_spent',
  'spent_hundr',
  'hundr_nonrefund',
  'nonrefund_ticket',
  'ticket_particip',
  'particip_drove',
  'drove_famili',
  'famili_alreadi',
  'alreadi_quit',
  'quit_exhaust',
  'exhaust_get',
  'get_resort',
  'resort_listen',
  'listen_month',
  'month_old',
  'old_scream',
  'scream_practic',
  'practic_entir',
  'entir_ride',
  'ride_hour',
  'hour_insist',
  'insist_go',
  'go_drive',
  'drive_swap',
  'swap_drive',
  'drive_site',
  'site_see',
  'see_cram',
  'cram_vehicl',
  'vehicl_like',
  'like_sardin',
  'sardin_floor',
  'floor_famili',
  'famili_dog',
  'dog_lb',
  'lb_bull',
  'bull_mastiff',
  'mastiff_two',
  'two_puppi',
  'puppi_ye',
  'ye_dog',
  'dog_shit',
  'shit_also',
  'also_present',
  'present_quick',
  'quick_clean',
  'clean_still',
  'still_car',
  'car_putrid',
  'putrid_get',
  'get_resort',
  'resort_quickli',
  'quickli_notic',
  'notic_seen',
  'seen_built',
  'built_babysitt',
  'babysitt_fianc',
  'fianc_sister',
  'sister_month',
  'month_old',
  'old_daughter',
  'daughter_everytim',
  'everytim_fsil',
  'fsil_husband',
  'husband_want',
  'want_take',
  'take_shower',
  'shower_swim',
  'swim_eat',
  'eat_even',
  'even_feel',
  'feel_like',
  'like_hold',
  'hold_child',
  'child_thrown',
  'thrown_lap',
  'lap_basic',
  'basic_everi',
  'everi_singl',
  'singl_time',
  'time_adult',
  'adult_claim',
  'claim_child',
  'child_want',
  'want_cant',
  'cant_exactli',
  'exactli_argu',
  'argu_point',
  'point_held',
  'held_babi',
  'babi_much',
  'much_put',
  'put_arm',
  'arm_quit',
  'quit_often',
  'often_even',
  'even_pass',
  'pass_hallway',
  'hallway_hit',
  'hit_point',
  'point_get',
  'get_piss',
  'piss_pool',
  'pool_yesterday',
  'yesterday_fsil',
  'fsil_get',
  'get_within',
  'within_minut',
  'minut_pass',
  'pass_babi',
  'babi_hand',
  'hand_back',
  'back_mayb',
  'mayb_minut',
  'minut_later',
  'later_claim',
  'claim_need',
  'need_use',
  'use_restroom',
  'restroom_stay',
  'stay_indoor',
  'indoor_mayb',
  'mayb_minut',
  'minut_later',
  'later_come',
  'come_insid',
  'insid_pass',
  'pass_babi',
  'babi_say',
  'say_need',
  'need_shower',
  'shower_ask',
  'ask_bring',
  'bring_child',
  'child_minut',
  'minut_pass',
  'pass_babi',
  'babi_lock',
  'lock_room',
  'room_ive',
  'ive_bare',
  'bare_left',
  'left_sinc',
  'sinc_fianc',
  'fianc_come',
  'come_bit',
  'bit_ago',
  'ago_tell',
  'tell_go',
  'go_eat',
  'eat_told',
  'told_feel',
  'feel_like',
  'like_go',
  'go_becom',
  'becom_highchair',
  'highchair_babi',
  'babi_parent',
  'parent_ate',
  'ate_ive',
  'ive_alreadi',
  'alreadi_held',
  'held_child',
  'child_enough',
  'enough_sever',
  'sever_drink',
  'drink_spill',
  'spill_octopu',
  'octopu_arm',
  'arm_said',
  'said_cant',
  'cant_sit',
  'sit_avoid',
  'avoid_hold',
  'hold_babi',
  'babi_wast',
  'wast_trip',
  'trip_say',
  'say_half',
  'half_time',
  'time_ask',
  'ask_though',
  'though_babi',
  'babi_practic',
  'practic_toss',
  'toss_aita',
  'fianc_invit_go',
  'invit_go_along',
  'go_along_trip',
  'along_trip_california',
  'trip_california_week',
  'california_week_children',
  'week_children_due',
  'children_due_father',
  'due_father_wrestl',
  'father_wrestl_tournament',
  'wrestl_tournament_miss',
  'tournament_miss_alreadi',
  'miss_alreadi_spent',
  'alreadi_spent_hundr',
  'spent_hundr_nonrefund',
  'hundr_nonrefund_ticket',
  'nonrefund_ticket_particip',
  'ticket_particip_drove',
  'particip_drove_famili',
  'drove_famili_alreadi',
  'famili_alreadi_quit',
  'alreadi_quit_exhaust',
  'quit_exhaust_get',
  'exhaust_get_resort',
  'get_resort_listen',
  'resort_listen_month',
  'listen_month_old',
  'month_old_scream',
  'old_scream_practic',
  'scream_practic_entir',
  'practic_entir_ride',
  'entir_ride_hour',
  'ride_hour_insist',
  'hour_insist_go',
  'insist_go_drive',
  'go_drive_swap',
  'drive_swap_drive',
  'swap_drive_site',
  'drive_site_see',
  'site_see_cram',
  'see_cram_vehicl',
  'cram_vehicl_like',
  'vehicl_like_sardin',
  'like_sardin_floor',
  'sardin_floor_famili',
  'floor_famili_dog',
  'famili_dog_lb',
  'dog_lb_bull',
  'lb_bull_mastiff',
  'bull_mastiff_two',
  'mastiff_two_puppi',
  'two_puppi_ye',
  'puppi_ye_dog',
  'ye_dog_shit',
  'dog_shit_also',
  'shit_also_present',
  'also_present_quick',
  'present_quick_clean',
  'quick_clean_still',
  'clean_still_car',
  'still_car_putrid',
  'car_putrid_get',
  'putrid_get_resort',
  'get_resort_quickli',
  'resort_quickli_notic',
  'quickli_notic_seen',
  'notic_seen_built',
  'seen_built_babysitt',
  'built_babysitt_fianc',
  'babysitt_fianc_sister',
  'fianc_sister_month',
  'sister_month_old',
  'month_old_daughter',
  'old_daughter_everytim',
  'daughter_everytim_fsil',
  'everytim_fsil_husband',
  'fsil_husband_want',
  'husband_want_take',
  'want_take_shower',
  'take_shower_swim',
  'shower_swim_eat',
  'swim_eat_even',
  'eat_even_feel',
  'even_feel_like',
  'feel_like_hold',
  'like_hold_child',
  'hold_child_thrown',
  'child_thrown_lap',
  'thrown_lap_basic',
  'lap_basic_everi',
  'basic_everi_singl',
  'everi_singl_time',
  'singl_time_adult',
  'time_adult_claim',
  'adult_claim_child',
  'claim_child_want',
  'child_want_cant',
  'want_cant_exactli',
  'cant_exactli_argu',
  'exactli_argu_point',
  'argu_point_held',
  'point_held_babi',
  'held_babi_much',
  'babi_much_put',
  'much_put_arm',
  'put_arm_quit',
  'arm_quit_often',
  'quit_often_even',
  'often_even_pass',
  'even_pass_hallway',
  'pass_hallway_hit',
  'hallway_hit_point',
  'hit_point_get',
  'point_get_piss',
  'get_piss_pool',
  'piss_pool_yesterday',
  'pool_yesterday_fsil',
  'yesterday_fsil_get',
  'fsil_get_within',
  'get_within_minut',
  'within_minut_pass',
  'minut_pass_babi',
  'pass_babi_hand',
  'babi_hand_back',
  'hand_back_mayb',
  'back_mayb_minut',
  'mayb_minut_later',
  'minut_later_claim',
  'later_claim_need',
  'claim_need_use',
  'need_use_restroom',
  'use_restroom_stay',
  'restroom_stay_indoor',
  'stay_indoor_mayb',
  'indoor_mayb_minut',
  'mayb_minut_later',
  'minut_later_come',
  'later_come_insid',
  'come_insid_pass',
  'insid_pass_babi',
  'pass_babi_say',
  'babi_say_need',
  'say_need_shower',
  'need_shower_ask',
  'shower_ask_bring',
  'ask_bring_child',
  'bring_child_minut',
  'child_minut_pass',
  'minut_pass_babi',
  'pass_babi_lock',
  'babi_lock_room',
  'lock_room_ive',
  'room_ive_bare',
  'ive_bare_left',
  'bare_left_sinc',
  'left_sinc_fianc',
  'sinc_fianc_come',
  'fianc_come_bit',
  'come_bit_ago',
  'bit_ago_tell',
  'ago_tell_go',
  'tell_go_eat',
  'go_eat_told',
  'eat_told_feel',
  'told_feel_like',
  'feel_like_go',
  'like_go_becom',
  'go_becom_highchair',
  'becom_highchair_babi',
  'highchair_babi_parent',
  'babi_parent_ate',
  'parent_ate_ive',
  'ate_ive_alreadi',
  'ive_alreadi_held',
  'alreadi_held_child',
  'held_child_enough',
  'child_enough_sever',
  'enough_sever_drink',
  'sever_drink_spill',
  'drink_spill_octopu',
  'spill_octopu_arm',
  'octopu_arm_said',
  'arm_said_cant',
  'said_cant_sit',
  'cant_sit_avoid',
  'sit_avoid_hold',
  'avoid_hold_babi',
  'hold_babi_wast',
  'babi_wast_trip',
  'wast_trip_say',
  'trip_say_half',
  'say_half_time',
  'half_time_ask',
  'time_ask_though',
  'ask_though_babi',
  'though_babi_practic',
  'babi_practic_toss',
  'practic_toss_aita'],
 ['began',
  'work',
  'home',
  'month',
  'ago',
  'husband',
  'bought',
  'hous',
  'live',
  'got',
  'togeth',
  'call',
  'properti',
  'fine',
  'hous',
  'small',
  'room',
  'one',
  'use',
  'empti',
  'til',
  'start',
  'use',
  'offic',
  'wfh',
  'job',
  'go',
  'fine',
  'job',
  'til',
  'sat',
  'last',
  'night',
  'say',
  'expect',
  '%',
  'profit',
  'whatev',
  'get',
  'job',
  'sinc',
  'provid',
  'offic',
  'work',
  'complet',
  'caught',
  'guard',
  'ask',
  'seriou',
  'went',
  'home',
  'could',
  'use',
  'room',
  'purpos',
  'sinc',
  'properti',
  'said',
  'call',
  'unreason',
  'led',
  'blowup',
  'yell',
  'say',
  'get',
  'penni',
  'pitch',
  'fit',
  'accus',
  'take',
  'full',
  'advantag',
  'even',
  'though',
  'mortgag',
  'paid',
  'chore',
  'hous',
  'well',
  'share',
  'pay',
  'bill',
  'half',
  'got',
  'famili',
  'involv',
  'theyr',
  'split',
  'mom',
  'think',
  'im',
  'difficult',
  '%',
  'huge',
  'amout',
  'room',
  'provid',
  'stabil',
  'wfh',
  'husband',
  'get',
  'sort',
  'benefit',
  'aita',
  'put',
  'foot',
  'refus',
  'pay',
  'penni',
  'began_work',
  'work_home',
  'home_month',
  'month_ago',
  'ago_husband',
  'husband_bought',
  'bought_hous',
  'hous_live',
  'live_got',
  'got_togeth',
  'togeth_call',
  'call_properti',
  'properti_fine',
  'fine_hous',
  'hous_small',
  'small_room',
  'room_one',
  'one_use',
  'use_empti',
  'empti_til',
  'til_start',
  'start_use',
  'use_offic',
  'offic_wfh',
  'wfh_job',
  'job_go',
  'go_fine',
  'fine_job',
  'job_til',
  'til_sat',
  'sat_last',
  'last_night',
  'night_say',
  'say_expect',
  'expect_%',
  '%_profit',
  'profit_whatev',
  'whatev_get',
  'get_job',
  'job_sinc',
  'sinc_provid',
  'provid_offic',
  'offic_work',
  'work_complet',
  'complet_caught',
  'caught_guard',
  'guard_ask',
  'ask_seriou',
  'seriou_went',
  'went_home',
  'home_could',
  'could_use',
  'use_room',
  'room_purpos',
  'purpos_sinc',
  'sinc_properti',
  'properti_said',
  'said_call',
  'call_unreason',
  'unreason_led',
  'led_blowup',
  'blowup_yell',
  'yell_say',
  'say_get',
  'get_penni',
  'penni_pitch',
  'pitch_fit',
  'fit_accus',
  'accus_take',
  'take_full',
  'full_advantag',
  'advantag_even',
  'even_though',
  'though_mortgag',
  'mortgag_paid',
  'paid_chore',
  'chore_hous',
  'hous_well',
  'well_share',
  'share_pay',
  'pay_bill',
  'bill_half',
  'half_got',
  'got_famili',
  'famili_involv',
  'involv_theyr',
  'theyr_split',
  'split_mom',
  'mom_think',
  'think_im',
  'im_difficult',
  'difficult_%',
  '%_huge',
  'huge_amout',
  'amout_room',
  'room_provid',
  'provid_stabil',
  'stabil_wfh',
  'wfh_husband',
  'husband_get',
  'get_sort',
  'sort_benefit',
  'benefit_aita',
  'aita_put',
  'put_foot',
  'foot_refus',
  'refus_pay',
  'pay_penni',
  'began_work_home',
  'work_home_month',
  'home_month_ago',
  'month_ago_husband',
  'ago_husband_bought',
  'husband_bought_hous',
  'bought_hous_live',
  'hous_live_got',
  'live_got_togeth',
  'got_togeth_call',
  'togeth_call_properti',
  'call_properti_fine',
  'properti_fine_hous',
  'fine_hous_small',
  'hous_small_room',
  'small_room_one',
  'room_one_use',
  'one_use_empti',
  'use_empti_til',
  'empti_til_start',
  'til_start_use',
  'start_use_offic',
  'use_offic_wfh',
  'offic_wfh_job',
  'wfh_job_go',
  'job_go_fine',
  'go_fine_job',
  'fine_job_til',
  'job_til_sat',
  'til_sat_last',
  'sat_last_night',
  'last_night_say',
  'night_say_expect',
  'say_expect_%',
  'expect_%_profit',
  '%_profit_whatev',
  'profit_whatev_get',
  'whatev_get_job',
  'get_job_sinc',
  'job_sinc_provid',
  'sinc_provid_offic',
  'provid_offic_work',
  'offic_work_complet',
  'work_complet_caught',
  'complet_caught_guard',
  'caught_guard_ask',
  'guard_ask_seriou',
  'ask_seriou_went',
  'seriou_went_home',
  'went_home_could',
  'home_could_use',
  'could_use_room',
  'use_room_purpos',
  'room_purpos_sinc',
  'purpos_sinc_properti',
  'sinc_properti_said',
  'properti_said_call',
  'said_call_unreason',
  'call_unreason_led',
  'unreason_led_blowup',
  'led_blowup_yell',
  'blowup_yell_say',
  'yell_say_get',
  'say_get_penni',
  'get_penni_pitch',
  'penni_pitch_fit',
  'pitch_fit_accus',
  'fit_accus_take',
  'accus_take_full',
  'take_full_advantag',
  'full_advantag_even',
  'advantag_even_though',
  'even_though_mortgag',
  'though_mortgag_paid',
  'mortgag_paid_chore',
  'paid_chore_hous',
  'chore_hous_well',
  'hous_well_share',
  'well_share_pay',
  'share_pay_bill',
  'pay_bill_half',
  'bill_half_got',
  'half_got_famili',
  'got_famili_involv',
  'famili_involv_theyr',
  'involv_theyr_split',
  'theyr_split_mom',
  'split_mom_think',
  'mom_think_im',
  'think_im_difficult',
  'im_difficult_%',
  'difficult_%_huge',
  '%_huge_amout',
  'huge_amout_room',
  'amout_room_provid',
  'room_provid_stabil',
  'provid_stabil_wfh',
  'stabil_wfh_husband',
  'wfh_husband_get',
  'husband_get_sort',
  'get_sort_benefit',
  'sort_benefit_aita',
  'benefit_aita_put',
  'aita_put_foot',
  'put_foot_refus',
  'foot_refus_pay',
  'refus_pay_penni'],
 ['date',
  'john',
  'year',
  'singl',
  'dad',
  'kid',
  '[',
  'jr',
  'mm',
  ']',
  'move',
  'kid',
  'littl',
  'ago',
  'gave',
  'say',
  'super',
  'protect',
  'kid',
  'abl',
  'meet',
  'til',
  'later',
  'said',
  'might',
  'like',
  'start',
  'eas',
  'accept',
  'encourag',
  'push',
  'extra',
  'friendli',
  'buy',
  'stuff',
  'cook',
  'daili',
  'busi',
  'often',
  'time',
  'boy',
  'cling',
  'see',
  'see',
  'get',
  'wrong',
  'im',
  'grate',
  'outcom',
  'issu',
  'cant',
  'away',
  'long',
  'time',
  'hour',
  'id',
  'move',
  'cant',
  'go',
  'anywher',
  'without',
  'take',
  'bare',
  'time',
  'wors',
  'work',
  'got',
  'interrupt',
  'john',
  'suggest',
  'work',
  'less',
  'hour',
  'happen',
  'sister',
  'get',
  'marri',
  'soon',
  'itll',
  'held',
  'hour',
  'away',
  'ill',
  'travel',
  'invit',
  'state',
  'child-fre',
  'cant',
  'take',
  'kid',
  'john',
  'heard',
  'told',
  'immedi',
  'call',
  'apolog',
  'caus',
  'attend',
  'stun',
  'ask',
  'went',
  'much',
  'kid',
  'ador',
  'theyll',
  'go',
  'crazi',
  'im',
  'hour',
  'away',
  'besid',
  'busi',
  'look',
  'said',
  'fault',
  'either',
  'take',
  'time',
  'work',
  'stay',
  'get',
  'babysitt',
  'threw',
  'fit',
  'selfish',
  'unfeel',
  'let',
  'attend',
  'wed',
  'tell',
  'sister',
  'let',
  'kid',
  'come',
  'cant',
  'ask',
  'thing',
  'insist',
  'go',
  'kept',
  'say',
  'go',
  'went',
  'told',
  'boy',
  'look',
  'excus',
  'get',
  'time',
  'away',
  'even',
  'speak',
  'confront',
  'said',
  'result',
  'insist',
  'go',
  'wed',
  'choos',
  'sister',
  'stepkid',
  'even',
  'said',
  'thank',
  'kid',
  'accept',
  'give',
  'much',
  'attent',
  'speechless',
  'felt',
  'offend',
  'aita',
  'stand',
  'ground',
  'want',
  'go',
  'sister',
  'great',
  'relationship',
  'attend',
  'wed',
  'caus',
  'issu',
  'edit',
  'inform',
  'answer',
  'question',
  'biolog',
  'mom',
  'eldest',
  'late',
  'wife',
  'date',
  'ex',
  'girlfriend',
  'middl',
  'youngest',
  'child',
  'pictur',
  'eldest',
  'user',
  'kind',
  'distant',
  'half',
  'brother',
  'issu',
  'year',
  'left',
  'navig',
  'help',
  're-bond',
  'like',
  'said',
  'like',
  'spend',
  'time',
  'result',
  'bond',
  'togeth',
  'great',
  'thing',
  'john',
  'clearli',
  'busi',
  'tri',
  'fix',
  'problem',
  'long',
  'time',
  'ago',
  'date_john',
  'john_year',
  'year_singl',
  'singl_dad',
  'dad_kid',
  'kid_[',
  '[_jr',
  'jr_mm',
  'mm_]',
  ']_move',
  'move_kid',
  'kid_littl',
  'littl_ago',
  'ago_gave',
  'gave_say',
  'say_super',
  'super_protect',
  'protect_kid',
  'kid_abl',
  'abl_meet',
  'meet_til',
  'til_later',
  'later_said',
  'said_might',
  'might_like',
  'like_start',
  'start_eas',
  'eas_accept',
  'accept_encourag',
  'encourag_push',
  'push_extra',
  'extra_friendli',
  'friendli_buy',
  'buy_stuff',
  'stuff_cook',
  'cook_daili',
  'daili_busi',
  'busi_often',
  'often_time',
  'time_boy',
  'boy_cling',
  'cling_see',
  'see_see',
  'see_get',
  'get_wrong',
  'wrong_im',
  'im_grate',
  'grate_outcom',
  'outcom_issu',
  'issu_cant',
  'cant_away',
  'away_long',
  'long_time',
  'time_hour',
  'hour_id',
  'id_move',
  'move_cant',
  'cant_go',
  'go_anywher',
  'anywher_without',
  'without_take',
  'take_bare',
  'bare_time',
  'time_wors',
  'wors_work',
  'work_got',
  'got_interrupt',
  'interrupt_john',
  'john_suggest',
  'suggest_work',
  'work_less',
  'less_hour',
  'hour_happen',
  'happen_sister',
  'sister_get',
  'get_marri',
  'marri_soon',
  'soon_itll',
  'itll_held',
  'held_hour',
  'hour_away',
  'away_ill',
  'ill_travel',
  'travel_invit',
  'invit_state',
  'state_child-fre',
  'child-fre_cant',
  'cant_take',
  'take_kid',
  'kid_john',
  'john_heard',
  'heard_told',
  'told_immedi',
  'immedi_call',
  'call_apolog',
  'apolog_caus',
  'caus_attend',
  'attend_stun',
  'stun_ask',
  'ask_went',
  'went_much',
  'much_kid',
  'kid_ador',
  'ador_theyll',
  'theyll_go',
  'go_crazi',
  'crazi_im',
  'im_hour',
  'hour_away',
  'away_besid',
  'besid_busi',
  'busi_look',
  'look_said',
  'said_fault',
  'fault_either',
  'either_take',
  'take_time',
  'time_work',
  'work_stay',
  'stay_get',
  'get_babysitt',
  'babysitt_threw',
  'threw_fit',
  'fit_selfish',
  'selfish_unfeel',
  'unfeel_let',
  'let_attend',
  'attend_wed',
  'wed_tell',
  'tell_sister',
  'sister_let',
  'let_kid',
  'kid_come',
  'come_cant',
  'cant_ask',
  'ask_thing',
  'thing_insist',
  'insist_go',
  'go_kept',
  'kept_say',
  'say_go',
  'go_went',
  'went_told',
  'told_boy',
  'boy_look',
  'look_excus',
  'excus_get',
  'get_time',
  'time_away',
  'away_even',
  'even_speak',
  'speak_confront',
  'confront_said',
  'said_result',
  'result_insist',
  'insist_go',
  'go_wed',
  'wed_choos',
  'choos_sister',
  'sister_stepkid',
  'stepkid_even',
  'even_said',
  'said_thank',
  'thank_kid',
  'kid_accept',
  'accept_give',
  'give_much',
  'much_attent',
  'attent_speechless',
  'speechless_felt',
  'felt_offend',
  'offend_aita',
  'aita_stand',
  'stand_ground',
  'ground_want',
  'want_go',
  'go_sister',
  'sister_great',
  'great_relationship',
  'relationship_attend',
  'attend_wed',
  'wed_caus',
  'caus_issu',
  'issu_edit',
  'edit_inform',
  'inform_answer',
  'answer_question',
  'question_biolog',
  'biolog_mom',
  'mom_eldest',
  'eldest_late',
  'late_wife',
  'wife_date',
  'date_ex',
  'ex_girlfriend',
  'girlfriend_middl',
  'middl_youngest',
  'youngest_child',
  'child_pictur',
  'pictur_eldest',
  'eldest_user',
  'user_kind',
  'kind_distant',
  'distant_half',
  'half_brother',
  'brother_issu',
  'issu_year',
  'year_left',
  'left_navig',
  'navig_help',
  'help_re-bond',
  're-bond_like',
  'like_said',
  'said_like',
  'like_spend',
  'spend_time',
  'time_result',
  'result_bond',
  'bond_togeth',
  'togeth_great',
  'great_thing',
  'thing_john',
  'john_clearli',
  'clearli_busi',
  'busi_tri',
  'tri_fix',
  'fix_problem',
  'problem_long',
  'long_time',
  'time_ago',
  'date_john_year',
  'john_year_singl',
  'year_singl_dad',
  'singl_dad_kid',
  'dad_kid_[',
  'kid_[_jr',
  '[_jr_mm',
  'jr_mm_]',
  'mm_]_move',
  ']_move_kid',
  'move_kid_littl',
  'kid_littl_ago',
  'littl_ago_gave',
  'ago_gave_say',
  'gave_say_super',
  'say_super_protect',
  'super_protect_kid',
  'protect_kid_abl',
  'kid_abl_meet',
  'abl_meet_til',
  'meet_til_later',
  'til_later_said',
  'later_said_might',
  'said_might_like',
  'might_like_start',
  'like_start_eas',
  'start_eas_accept',
  'eas_accept_encourag',
  'accept_encourag_push',
  'encourag_push_extra',
  'push_extra_friendli',
  'extra_friendli_buy',
  'friendli_buy_stuff',
  'buy_stuff_cook',
  'stuff_cook_daili',
  'cook_daili_busi',
  'daili_busi_often',
  'busi_often_time',
  'often_time_boy',
  'time_boy_cling',
  'boy_cling_see',
  'cling_see_see',
  'see_see_get',
  'see_get_wrong',
  'get_wrong_im',
  'wrong_im_grate',
  'im_grate_outcom',
  'grate_outcom_issu',
  'outcom_issu_cant',
  'issu_cant_away',
  'cant_away_long',
  'away_long_time',
  'long_time_hour',
  'time_hour_id',
  'hour_id_move',
  'id_move_cant',
  'move_cant_go',
  'cant_go_anywher',
  'go_anywher_without',
  'anywher_without_take',
  'without_take_bare',
  'take_bare_time',
  'bare_time_wors',
  'time_wors_work',
  'wors_work_got',
  'work_got_interrupt',
  'got_interrupt_john',
  'interrupt_john_suggest',
  'john_suggest_work',
  'suggest_work_less',
  'work_less_hour',
  'less_hour_happen',
  'hour_happen_sister',
  'happen_sister_get',
  'sister_get_marri',
  'get_marri_soon',
  'marri_soon_itll',
  'soon_itll_held',
  'itll_held_hour',
  'held_hour_away',
  'hour_away_ill',
  'away_ill_travel',
  'ill_travel_invit',
  'travel_invit_state',
  'invit_state_child-fre',
  'state_child-fre_cant',
  'child-fre_cant_take',
  'cant_take_kid',
  'take_kid_john',
  'kid_john_heard',
  'john_heard_told',
  'heard_told_immedi',
  'told_immedi_call',
  'immedi_call_apolog',
  'call_apolog_caus',
  'apolog_caus_attend',
  'caus_attend_stun',
  'attend_stun_ask',
  'stun_ask_went',
  'ask_went_much',
  'went_much_kid',
  'much_kid_ador',
  'kid_ador_theyll',
  'ador_theyll_go',
  'theyll_go_crazi',
  'go_crazi_im',
  'crazi_im_hour',
  'im_hour_away',
  'hour_away_besid',
  'away_besid_busi',
  'besid_busi_look',
  'busi_look_said',
  'look_said_fault',
  'said_fault_either',
  'fault_either_take',
  'either_take_time',
  'take_time_work',
  'time_work_stay',
  'work_stay_get',
  'stay_get_babysitt',
  'get_babysitt_threw',
  'babysitt_threw_fit',
  'threw_fit_selfish',
  'fit_selfish_unfeel',
  'selfish_unfeel_let',
  'unfeel_let_attend',
  'let_attend_wed',
  'attend_wed_tell',
  'wed_tell_sister',
  'tell_sister_let',
  'sister_let_kid',
  'let_kid_come',
  'kid_come_cant',
  'come_cant_ask',
  'cant_ask_thing',
  'ask_thing_insist',
  'thing_insist_go',
  'insist_go_kept',
  'go_kept_say',
  'kept_say_go',
  'say_go_went',
  'go_went_told',
  'went_told_boy',
  'told_boy_look',
  'boy_look_excus',
  'look_excus_get',
  'excus_get_time',
  'get_time_away',
  'time_away_even',
  'away_even_speak',
  'even_speak_confront',
  'speak_confront_said',
  'confront_said_result',
  'said_result_insist',
  'result_insist_go',
  'insist_go_wed',
  'go_wed_choos',
  'wed_choos_sister',
  'choos_sister_stepkid',
  'sister_stepkid_even',
  'stepkid_even_said',
  'even_said_thank',
  'said_thank_kid',
  'thank_kid_accept',
  'kid_accept_give',
  'accept_give_much',
  'give_much_attent',
  'much_attent_speechless',
  'attent_speechless_felt',
  'speechless_felt_offend',
  'felt_offend_aita',
  'offend_aita_stand',
  'aita_stand_ground',
  'stand_ground_want',
  'ground_want_go',
  'want_go_sister',
  'go_sister_great',
  'sister_great_relationship',
  'great_relationship_attend',
  'relationship_attend_wed',
  'attend_wed_caus',
  'wed_caus_issu',
  'caus_issu_edit',
  'issu_edit_inform',
  'edit_inform_answer',
  'inform_answer_question',
  'answer_question_biolog',
  'question_biolog_mom',
  'biolog_mom_eldest',
  'mom_eldest_late',
  'eldest_late_wife',
  'late_wife_date',
  'wife_date_ex',
  'date_ex_girlfriend',
  'ex_girlfriend_middl',
  'girlfriend_middl_youngest',
  'middl_youngest_child',
  'youngest_child_pictur',
  'child_pictur_eldest',
  'pictur_eldest_user',
  'eldest_user_kind',
  'user_kind_distant',
  'kind_distant_half',
  'distant_half_brother',
  'half_brother_issu',
  'brother_issu_year',
  'issu_year_left',
  'year_left_navig',
  'left_navig_help',
  'navig_help_re-bond',
  'help_re-bond_like',
  're-bond_like_said',
  'like_said_like',
  'said_like_spend',
  'like_spend_time',
  'spend_time_result',
  'time_result_bond',
  'result_bond_togeth',
  'bond_togeth_great',
  'togeth_great_thing',
  'great_thing_john',
  'thing_john_clearli',
  'john_clearli_busi',
  'clearli_busi_tri',
  'busi_tri_fix',
  'tri_fix_problem',
  'fix_problem_long',
  'problem_long_time',
  'long_time_ago'],
 ['cant',
  'believ',
  'happen',
  'go',
  'daughter',
  'alway',
  'natur',
  'blond',
  'howev',
  'last',
  'month',
  'brown',
  'hair',
  'come',
  'root',
  'ask',
  'us',
  'dye',
  'earlierbthi',
  'month',
  'said',
  'ye',
  'done',
  'profession',
  '-',
  'appoint',
  'book',
  'th',
  'februari',
  'popular',
  'salon',
  'good',
  'reput',
  'mean',
  'long',
  'wait',
  'time',
  'done',
  'done',
  'right',
  'reason',
  'sister',
  'wife',
  'sensit',
  'scalp',
  'last',
  'time',
  'older',
  'daughter',
  'use',
  'home',
  'kit',
  'went',
  'badli',
  'wrong',
  'doctor',
  'kind',
  'wrong',
  'youngest',
  'daughter',
  'happi',
  'agre',
  'wait',
  'weekend',
  'went',
  'friend',
  'bought',
  'home',
  'kit',
  'die',
  'hair',
  'friend',
  'hous',
  'without',
  'adult',
  'assist',
  'well',
  'orang',
  'offer',
  'buy',
  'brown',
  'black',
  'kit',
  'cover',
  'appoint',
  'scream',
  'blond',
  'brunett',
  'realli',
  'left',
  'room',
  'sinc',
  'refus',
  'go',
  'school',
  'fix',
  'said',
  'magic',
  'hair',
  'fix',
  'spell',
  'choic',
  'go',
  'dark',
  'week',
  'put',
  'orang',
  'colour',
  'phone',
  'salon',
  'move',
  'appoint',
  'contact',
  'case',
  'cancel',
  'reddit',
  'aita',
  'send',
  'daughter',
  'school',
  'self',
  'inflict',
  'orang',
  'hair',
  'edit',
  'clear',
  'mention',
  'time',
  'brownbrunett',
  'option',
  'temporari',
  'colour',
  'perman',
  'itd',
  'wash',
  'week',
  'anyway',
  'edit',
  'tri',
  'salon',
  'aswel',
  'howev',
  'similar',
  'wait',
  'time',
  'one',
  'fitnusnin',
  'earlier',
  'th',
  'jan',
  'honestli',
  'googl',
  'review',
  'mix',
  'bag-',
  'star',
  'overli',
  'confid',
  'one',
  'edit',
  'thank',
  'respons',
  'advic',
  'die',
  'tri',
  'purpleblu',
  'shampoo',
  'instead',
  'hope',
  'tone',
  'also',
  'wife',
  'got',
  'phone',
  'salon',
  'get',
  'friday',
  'shell',
  'suck',
  'rest',
  'week',
  'go',
  'costbu',
  'nearli',
  'twice',
  'much',
  'normal',
  'salon',
  'guess',
  'extra',
  'chore',
  'final',
  'edit',
  'wife',
  'sourc',
  'silver',
  'shampoo',
  'shortli',
  'daughter',
  'emerg',
  'room',
  'apologis',
  'us',
  'tantrum',
  'accept',
  'apologis',
  'ruin',
  'hair',
  'laugh',
  'said',
  'hair',
  'apologis',
  'grab',
  'mirror',
  'stroke',
  'hair',
  'said',
  'heartfelt',
  'sorri',
  'seem',
  'right',
  'world',
  'cant_believ',
  'believ_happen',
  'happen_go',
  'go_daughter',
  'daughter_alway',
  'alway_natur',
  'natur_blond',
  'blond_howev',
  'howev_last',
  'last_month',
  'month_brown',
  'brown_hair',
  'hair_come',
  'come_root',
  'root_ask',
  'ask_us',
  'us_dye',
  'dye_earlierbthi',
  'earlierbthi_month',
  'month_said',
  'said_ye',
  'ye_done',
  'done_profession',
  'profession_-',
  '-_appoint',
  'appoint_book',
  'book_th',
  'th_februari',
  'februari_popular',
  'popular_salon',
  'salon_good',
  'good_reput',
  'reput_mean',
  'mean_long',
  'long_wait',
  'wait_time',
  'time_done',
  'done_done',
  'done_right',
  'right_reason',
  'reason_sister',
  'sister_wife',
  'wife_sensit',
  'sensit_scalp',
  'scalp_last',
  'last_time',
  'time_older',
  'older_daughter',
  'daughter_use',
  'use_home',
  'home_kit',
  'kit_went',
  'went_badli',
  'badli_wrong',
  'wrong_doctor',
  'doctor_kind',
  'kind_wrong',
  'wrong_youngest',
  'youngest_daughter',
  'daughter_happi',
  'happi_agre',
  'agre_wait',
  'wait_weekend',
  'weekend_went',
  'went_friend',
  'friend_bought',
  'bought_home',
  'home_kit',
  'kit_die',
  'die_hair',
  'hair_friend',
  'friend_hous',
  'hous_without',
  'without_adult',
  'adult_assist',
  'assist_well',
  'well_orang',
  'orang_offer',
  'offer_buy',
  'buy_brown',
  'brown_black',
  'black_kit',
  'kit_cover',
  'cover_appoint',
  'appoint_scream',
  'scream_blond',
  'blond_brunett',
  'brunett_realli',
  'realli_left',
  'left_room',
  'room_sinc',
  'sinc_refus',
  'refus_go',
  'go_school',
  'school_fix',
  'fix_said',
  'said_magic',
  'magic_hair',
  'hair_fix',
  'fix_spell',
  'spell_choic',
  'choic_go',
  'go_dark',
  'dark_week',
  'week_put',
  'put_orang',
  'orang_colour',
  'colour_phone',
  'phone_salon',
  'salon_move',
  'move_appoint',
  'appoint_contact',
  'contact_case',
  'case_cancel',
  'cancel_reddit',
  'reddit_aita',
  'aita_send',
  'send_daughter',
  'daughter_school',
  'school_self',
  'self_inflict',
  'inflict_orang',
  'orang_hair',
  'hair_edit',
  'edit_clear',
  'clear_mention',
  'mention_time',
  'time_brownbrunett',
  'brownbrunett_option',
  'option_temporari',
  'temporari_colour',
  'colour_perman',
  'perman_itd',
  'itd_wash',
  'wash_week',
  'week_anyway',
  'anyway_edit',
  'edit_tri',
  'tri_salon',
  'salon_aswel',
  'aswel_howev',
  'howev_similar',
  'similar_wait',
  'wait_time',
  'time_one',
  'one_fitnusnin',
  'fitnusnin_earlier',
  'earlier_th',
  'th_jan',
  'jan_honestli',
  'honestli_googl',
  'googl_review',
  'review_mix',
  'mix_bag-',
  'bag-_star',
  'star_overli',
  'overli_confid',
  'confid_one',
  'one_edit',
  'edit_thank',
  'thank_respons',
  'respons_advic',
  'advic_die',
  'die_tri',
  'tri_purpleblu',
  'purpleblu_shampoo',
  'shampoo_instead',
  'instead_hope',
  'hope_tone',
  'tone_also',
  'also_wife',
  'wife_got',
  'got_phone',
  'phone_salon',
  'salon_get',
  'get_friday',
  'friday_shell',
  'shell_suck',
  'suck_rest',
  'rest_week',
  'week_go',
  'go_costbu',
  'costbu_nearli',
  'nearli_twice',
  'twice_much',
  'much_normal',
  'normal_salon',
  'salon_guess',
  'guess_extra',
  'extra_chore',
  'chore_final',
  'final_edit',
  'edit_wife',
  'wife_sourc',
  'sourc_silver',
  'silver_shampoo',
  'shampoo_shortli',
  'shortli_daughter',
  'daughter_emerg',
  'emerg_room',
  'room_apologis',
  'apologis_us',
  'us_tantrum',
  'tantrum_accept',
  'accept_apologis',
  'apologis_ruin',
  'ruin_hair',
  'hair_laugh',
  'laugh_said',
  'said_hair',
  'hair_apologis',
  'apologis_grab',
  'grab_mirror',
  'mirror_stroke',
  'stroke_hair',
  'hair_said',
  'said_heartfelt',
  'heartfelt_sorri',
  'sorri_seem',
  'seem_right',
  'right_world',
  'cant_believ_happen',
  'believ_happen_go',
  'happen_go_daughter',
  'go_daughter_alway',
  'daughter_alway_natur',
  'alway_natur_blond',
  'natur_blond_howev',
  'blond_howev_last',
  'howev_last_month',
  'last_month_brown',
  'month_brown_hair',
  'brown_hair_come',
  'hair_come_root',
  'come_root_ask',
  'root_ask_us',
  'ask_us_dye',
  'us_dye_earlierbthi',
  'dye_earlierbthi_month',
  'earlierbthi_month_said',
  'month_said_ye',
  'said_ye_done',
  'ye_done_profession',
  'done_profession_-',
  'profession_-_appoint',
  '-_appoint_book',
  'appoint_book_th',
  'book_th_februari',
  'th_februari_popular',
  'februari_popular_salon',
  'popular_salon_good',
  'salon_good_reput',
  'good_reput_mean',
  'reput_mean_long',
  'mean_long_wait',
  'long_wait_time',
  'wait_time_done',
  'time_done_done',
  'done_done_right',
  'done_right_reason',
  'right_reason_sister',
  'reason_sister_wife',
  'sister_wife_sensit',
  'wife_sensit_scalp',
  'sensit_scalp_last',
  'scalp_last_time',
  'last_time_older',
  'time_older_daughter',
  'older_daughter_use',
  'daughter_use_home',
  'use_home_kit',
  'home_kit_went',
  'kit_went_badli',
  'went_badli_wrong',
  'badli_wrong_doctor',
  'wrong_doctor_kind',
  'doctor_kind_wrong',
  'kind_wrong_youngest',
  'wrong_youngest_daughter',
  'youngest_daughter_happi',
  'daughter_happi_agre',
  'happi_agre_wait',
  'agre_wait_weekend',
  'wait_weekend_went',
  'weekend_went_friend',
  'went_friend_bought',
  'friend_bought_home',
  'bought_home_kit',
  'home_kit_die',
  'kit_die_hair',
  'die_hair_friend',
  'hair_friend_hous',
  'friend_hous_without',
  'hous_without_adult',
  'without_adult_assist',
  'adult_assist_well',
  'assist_well_orang',
  'well_orang_offer',
  'orang_offer_buy',
  'offer_buy_brown',
  'buy_brown_black',
  'brown_black_kit',
  'black_kit_cover',
  'kit_cover_appoint',
  'cover_appoint_scream',
  'appoint_scream_blond',
  'scream_blond_brunett',
  'blond_brunett_realli',
  'brunett_realli_left',
  'realli_left_room',
  'left_room_sinc',
  'room_sinc_refus',
  'sinc_refus_go',
  'refus_go_school',
  'go_school_fix',
  'school_fix_said',
  'fix_said_magic',
  'said_magic_hair',
  'magic_hair_fix',
  'hair_fix_spell',
  'fix_spell_choic',
  'spell_choic_go',
  'choic_go_dark',
  'go_dark_week',
  'dark_week_put',
  'week_put_orang',
  'put_orang_colour',
  'orang_colour_phone',
  'colour_phone_salon',
  'phone_salon_move',
  'salon_move_appoint',
  'move_appoint_contact',
  'appoint_contact_case',
  'contact_case_cancel',
  'case_cancel_reddit',
  'cancel_reddit_aita',
  'reddit_aita_send',
  'aita_send_daughter',
  'send_daughter_school',
  'daughter_school_self',
  'school_self_inflict',
  'self_inflict_orang',
  'inflict_orang_hair',
  'orang_hair_edit',
  'hair_edit_clear',
  'edit_clear_mention',
  'clear_mention_time',
  'mention_time_brownbrunett',
  'time_brownbrunett_option',
  'brownbrunett_option_temporari',
  'option_temporari_colour',
  'temporari_colour_perman',
  'colour_perman_itd',
  'perman_itd_wash',
  'itd_wash_week',
  'wash_week_anyway',
  'week_anyway_edit',
  'anyway_edit_tri',
  'edit_tri_salon',
  'tri_salon_aswel',
  'salon_aswel_howev',
  'aswel_howev_similar',
  'howev_similar_wait',
  'similar_wait_time',
  'wait_time_one',
  'time_one_fitnusnin',
  'one_fitnusnin_earlier',
  'fitnusnin_earlier_th',
  'earlier_th_jan',
  'th_jan_honestli',
  'jan_honestli_googl',
  'honestli_googl_review',
  'googl_review_mix',
  'review_mix_bag-',
  'mix_bag-_star',
  'bag-_star_overli',
  'star_overli_confid',
  'overli_confid_one',
  'confid_one_edit',
  'one_edit_thank',
  'edit_thank_respons',
  'thank_respons_advic',
  'respons_advic_die',
  'advic_die_tri',
  'die_tri_purpleblu',
  'tri_purpleblu_shampoo',
  'purpleblu_shampoo_instead',
  'shampoo_instead_hope',
  'instead_hope_tone',
  'hope_tone_also',
  'tone_also_wife',
  'also_wife_got',
  'wife_got_phone',
  'got_phone_salon',
  'phone_salon_get',
  'salon_get_friday',
  'get_friday_shell',
  'friday_shell_suck',
  'shell_suck_rest',
  'suck_rest_week',
  'rest_week_go',
  'week_go_costbu',
  'go_costbu_nearli',
  'costbu_nearli_twice',
  'nearli_twice_much',
  'twice_much_normal',
  'much_normal_salon',
  'normal_salon_guess',
  'salon_guess_extra',
  'guess_extra_chore',
  'extra_chore_final',
  'chore_final_edit',
  'final_edit_wife',
  'edit_wife_sourc',
  'wife_sourc_silver',
  'sourc_silver_shampoo',
  'silver_shampoo_shortli',
  'shampoo_shortli_daughter',
  'shortli_daughter_emerg',
  'daughter_emerg_room',
  'emerg_room_apologis',
  'room_apologis_us',
  'apologis_us_tantrum',
  'us_tantrum_accept',
  'tantrum_accept_apologis',
  'accept_apologis_ruin',
  'apologis_ruin_hair',
  'ruin_hair_laugh',
  'hair_laugh_said',
  'laugh_said_hair',
  'said_hair_apologis',
  'hair_apologis_grab',
  'apologis_grab_mirror',
  'grab_mirror_stroke',
  'mirror_stroke_hair',
  'stroke_hair_said',
  'hair_said_heartfelt',
  'said_heartfelt_sorri',
  'heartfelt_sorri_seem',
  'sorri_seem_right',
  'seem_right_world'],
 ['recent',
  'threw',
  'year-old',
  'birthday',
  'parti',
  'real',
  'birthday',
  'parti',
  'sinc',
  'year',
  'old',
  'due',
  'covid',
  'first',
  'one',
  'hed',
  'actual',
  'rememb',
  'want',
  'make',
  'special',
  'invit',
  'closest',
  'friend',
  'famili',
  'member',
  'kid',
  'one',
  'cousin',
  'singl',
  'mom',
  'unruli',
  'year-old',
  'loud',
  'disobedi',
  'nightmar',
  'public',
  'came',
  'time',
  'blow',
  'candl',
  'cut',
  'birthday',
  'cake',
  'came',
  'stood',
  'directli',
  'next',
  'son',
  'anticip',
  'go',
  'happen',
  'next',
  'ask',
  'husband',
  'stand',
  'behind',
  'kid',
  'case',
  'tri',
  'pull',
  'anyth',
  'sang',
  'kid',
  'kept',
  'tri',
  'blow',
  'candl',
  'husband',
  'kept',
  'block',
  'pull',
  'back',
  'could',
  'tell',
  'kid',
  'get',
  'frustrat',
  'eventu',
  'son',
  'blew',
  'candl',
  'kid',
  'absolut',
  'lost',
  'threw',
  'tantrum',
  'slam',
  'entir',
  'arm',
  'cake',
  'knock',
  'tabl',
  'awkward',
  'everyon',
  'gasp',
  'got',
  'quiet',
  'son',
  'look',
  'us',
  'could',
  'tell',
  'start',
  'cri',
  'effort',
  'caus',
  'bigger',
  'scene',
  'husband',
  'pick',
  'whisper',
  'anoth',
  'special',
  'cake',
  'seem',
  'calm',
  'meanwhil',
  'cousin',
  'still',
  'stand',
  'scream',
  'cri',
  'arm',
  'cover',
  'cake',
  'mom',
  'nowher',
  'seen',
  'walk',
  'sink',
  'wash',
  'quietli',
  'told',
  'done',
  'cake',
  'apolog',
  'cousin',
  'scream',
  'face',
  'ran',
  'away',
  'husband',
  'end',
  'run',
  'buy',
  'sheet',
  'cake',
  'cut',
  'serv',
  'everyon',
  'spoke',
  'cousin',
  'parti',
  'happen',
  'sinc',
  'room',
  'brush',
  'say',
  'kid',
  'kid',
  'complet',
  'disagre',
  'ive',
  'plenti',
  'birthday',
  'parti',
  'kid',
  'let',
  'birthday',
  'boygirl',
  'moment',
  'suggest',
  'pay',
  'ruin',
  'cake',
  'look',
  'like',
  'crazi',
  'told',
  'import',
  'us',
  'birthday',
  'special',
  'son',
  'sinc',
  'would',
  'first',
  'one',
  'rememb',
  'would',
  'rememb',
  'cousin',
  'ruin',
  'special',
  'moment',
  'got',
  'extrem',
  'defens',
  'refus',
  'pay',
  'anyth',
  'accus',
  'act',
  'like',
  'perfect',
  'mom',
  'began',
  'list',
  'way',
  'fact',
  'perfect',
  'hurt',
  'convers',
  'spoken',
  'sinc',
  'sent',
  'bill',
  'ruin',
  'cake',
  'paid',
  'us',
  'actual',
  'feel',
  'pay',
  'cake',
  'sinc',
  'kid',
  'reason',
  'get',
  'new',
  'one',
  'go',
  'far',
  'husband',
  'think',
  'shell',
  'never',
  'pay',
  'us',
  'drop',
  'issu',
  'point',
  'say',
  'sinc',
  'singl',
  'mom',
  'probabl',
  'hard',
  'cut',
  'slack',
  'understand',
  'feel',
  'like',
  'let',
  'son',
  'hook',
  'lead',
  'even',
  'bigger',
  'problem',
  'futur',
  'hold',
  'account',
  'aita',
  'recent_threw',
  'threw_year-old',
  'year-old_birthday',
  'birthday_parti',
  'parti_real',
  'real_birthday',
  'birthday_parti',
  'parti_sinc',
  'sinc_year',
  'year_old',
  'old_due',
  'due_covid',
  'covid_first',
  'first_one',
  'one_hed',
  'hed_actual',
  'actual_rememb',
  'rememb_want',
  'want_make',
  'make_special',
  'special_invit',
  'invit_closest',
  'closest_friend',
  'friend_famili',
  'famili_member',
  'member_kid',
  'kid_one',
  'one_cousin',
  'cousin_singl',
  'singl_mom',
  'mom_unruli',
  'unruli_year-old',
  'year-old_loud',
  'loud_disobedi',
  'disobedi_nightmar',
  'nightmar_public',
  'public_came',
  'came_time',
  'time_blow',
  'blow_candl',
  'candl_cut',
  'cut_birthday',
  'birthday_cake',
  'cake_came',
  'came_stood',
  'stood_directli',
  'directli_next',
  'next_son',
  'son_anticip',
  'anticip_go',
  'go_happen',
  'happen_next',
  'next_ask',
  'ask_husband',
  'husband_stand',
  'stand_behind',
  'behind_kid',
  'kid_case',
  'case_tri',
  'tri_pull',
  'pull_anyth',
  'anyth_sang',
  'sang_kid',
  'kid_kept',
  'kept_tri',
  'tri_blow',
  'blow_candl',
  'candl_husband',
  'husband_kept',
  'kept_block',
  'block_pull',
  'pull_back',
  'back_could',
  'could_tell',
  'tell_kid',
  'kid_get',
  'get_frustrat',
  'frustrat_eventu',
  'eventu_son',
  'son_blew',
  'blew_candl',
  'candl_kid',
  'kid_absolut',
  'absolut_lost',
  'lost_threw',
  'threw_tantrum',
  'tantrum_slam',
  'slam_entir',
  'entir_arm',
  'arm_cake',
  'cake_knock',
  'knock_tabl',
  'tabl_awkward',
  'awkward_everyon',
  'everyon_gasp',
  'gasp_got',
  'got_quiet',
  'quiet_son',
  'son_look',
  'look_us',
  'us_could',
  'could_tell',
  'tell_start',
  'start_cri',
  'cri_effort',
  'effort_caus',
  'caus_bigger',
  'bigger_scene',
  'scene_husband',
  'husband_pick',
  'pick_whisper',
  'whisper_anoth',
  'anoth_special',
  'special_cake',
  'cake_seem',
  'seem_calm',
  'calm_meanwhil',
  'meanwhil_cousin',
  'cousin_still',
  'still_stand',
  'stand_scream',
  'scream_cri',
  'cri_arm',
  'arm_cover',
  'cover_cake',
  'cake_mom',
  'mom_nowher',
  'nowher_seen',
  'seen_walk',
  'walk_sink',
  'sink_wash',
  'wash_quietli',
  'quietli_told',
  'told_done',
  'done_cake',
  'cake_apolog',
  'apolog_cousin',
  'cousin_scream',
  'scream_face',
  'face_ran',
  'ran_away',
  'away_husband',
  'husband_end',
  'end_run',
  'run_buy',
  'buy_sheet',
  'sheet_cake',
  'cake_cut',
  'cut_serv',
  'serv_everyon',
  'everyon_spoke',
  'spoke_cousin',
  'cousin_parti',
  'parti_happen',
  'happen_sinc',
  'sinc_room',
  'room_brush',
  'brush_say',
  'say_kid',
  'kid_kid',
  'kid_complet',
  'complet_disagre',
  'disagre_ive',
  'ive_plenti',
  'plenti_birthday',
  'birthday_parti',
  'parti_kid',
  'kid_let',
  'let_birthday',
  'birthday_boygirl',
  'boygirl_moment',
  'moment_suggest',
  'suggest_pay',
  'pay_ruin',
  'ruin_cake',
  'cake_look',
  'look_like',
  'like_crazi',
  'crazi_told',
  'told_import',
  'import_us',
  'us_birthday',
  'birthday_special',
  'special_son',
  'son_sinc',
  'sinc_would',
  'would_first',
  'first_one',
  'one_rememb',
  'rememb_would',
  'would_rememb',
  'rememb_cousin',
  'cousin_ruin',
  'ruin_special',
  'special_moment',
  'moment_got',
  'got_extrem',
  'extrem_defens',
  'defens_refus',
  'refus_pay',
  'pay_anyth',
  'anyth_accus',
  'accus_act',
  'act_like',
  'like_perfect',
  'perfect_mom',
  'mom_began',
  'began_list',
  'list_way',
  'way_fact',
  'fact_perfect',
  'perfect_hurt',
  'hurt_convers',
  'convers_spoken',
  'spoken_sinc',
  'sinc_sent',
  'sent_bill',
  'bill_ruin',
  'ruin_cake',
  'cake_paid',
  'paid_us',
  'us_actual',
  'actual_feel',
  'feel_pay',
  'pay_cake',
  'cake_sinc',
  'sinc_kid',
  'kid_reason',
  'reason_get',
  'get_new',
  'new_one',
  'one_go',
  'go_far',
  'far_husband',
  'husband_think',
  'think_shell',
  'shell_never',
  'never_pay',
  'pay_us',
  'us_drop',
  'drop_issu',
  'issu_point',
  'point_say',
  'say_sinc',
  'sinc_singl',
  'singl_mom',
  'mom_probabl',
  'probabl_hard',
  'hard_cut',
  'cut_slack',
  'slack_understand',
  'understand_feel',
  'feel_like',
  'like_let',
  'let_son',
  'son_hook',
  'hook_lead',
  'lead_even',
  'even_bigger',
  'bigger_problem',
  'problem_futur',
  'futur_hold',
  'hold_account',
  'account_aita',
  'recent_threw_year-old',
  'threw_year-old_birthday',
  'year-old_birthday_parti',
  'birthday_parti_real',
  'parti_real_birthday',
  'real_birthday_parti',
  'birthday_parti_sinc',
  'parti_sinc_year',
  'sinc_year_old',
  'year_old_due',
  'old_due_covid',
  'due_covid_first',
  'covid_first_one',
  'first_one_hed',
  'one_hed_actual',
  'hed_actual_rememb',
  'actual_rememb_want',
  'rememb_want_make',
  'want_make_special',
  'make_special_invit',
  'special_invit_closest',
  'invit_closest_friend',
  'closest_friend_famili',
  'friend_famili_member',
  'famili_member_kid',
  'member_kid_one',
  'kid_one_cousin',
  'one_cousin_singl',
  'cousin_singl_mom',
  'singl_mom_unruli',
  'mom_unruli_year-old',
  'unruli_year-old_loud',
  'year-old_loud_disobedi',
  'loud_disobedi_nightmar',
  'disobedi_nightmar_public',
  'nightmar_public_came',
  'public_came_time',
  'came_time_blow',
  'time_blow_candl',
  'blow_candl_cut',
  'candl_cut_birthday',
  'cut_birthday_cake',
  'birthday_cake_came',
  'cake_came_stood',
  'came_stood_directli',
  'stood_directli_next',
  'directli_next_son',
  'next_son_anticip',
  'son_anticip_go',
  'anticip_go_happen',
  'go_happen_next',
  'happen_next_ask',
  'next_ask_husband',
  'ask_husband_stand',
  'husband_stand_behind',
  'stand_behind_kid',
  'behind_kid_case',
  'kid_case_tri',
  'case_tri_pull',
  'tri_pull_anyth',
  'pull_anyth_sang',
  'anyth_sang_kid',
  'sang_kid_kept',
  'kid_kept_tri',
  'kept_tri_blow',
  'tri_blow_candl',
  'blow_candl_husband',
  'candl_husband_kept',
  'husband_kept_block',
  'kept_block_pull',
  'block_pull_back',
  'pull_back_could',
  'back_could_tell',
  'could_tell_kid',
  'tell_kid_get',
  'kid_get_frustrat',
  'get_frustrat_eventu',
  'frustrat_eventu_son',
  'eventu_son_blew',
  'son_blew_candl',
  'blew_candl_kid',
  'candl_kid_absolut',
  'kid_absolut_lost',
  'absolut_lost_threw',
  'lost_threw_tantrum',
  'threw_tantrum_slam',
  'tantrum_slam_entir',
  'slam_entir_arm',
  'entir_arm_cake',
  'arm_cake_knock',
  'cake_knock_tabl',
  'knock_tabl_awkward',
  'tabl_awkward_everyon',
  'awkward_everyon_gasp',
  'everyon_gasp_got',
  'gasp_got_quiet',
  'got_quiet_son',
  'quiet_son_look',
  'son_look_us',
  'look_us_could',
  'us_could_tell',
  'could_tell_start',
  'tell_start_cri',
  'start_cri_effort',
  'cri_effort_caus',
  'effort_caus_bigger',
  'caus_bigger_scene',
  'bigger_scene_husband',
  'scene_husband_pick',
  'husband_pick_whisper',
  'pick_whisper_anoth',
  'whisper_anoth_special',
  'anoth_special_cake',
  'special_cake_seem',
  'cake_seem_calm',
  'seem_calm_meanwhil',
  'calm_meanwhil_cousin',
  'meanwhil_cousin_still',
  'cousin_still_stand',
  'still_stand_scream',
  'stand_scream_cri',
  'scream_cri_arm',
  'cri_arm_cover',
  'arm_cover_cake',
  'cover_cake_mom',
  'cake_mom_nowher',
  'mom_nowher_seen',
  'nowher_seen_walk',
  'seen_walk_sink',
  'walk_sink_wash',
  'sink_wash_quietli',
  'wash_quietli_told',
  'quietli_told_done',
  'told_done_cake',
  'done_cake_apolog',
  'cake_apolog_cousin',
  'apolog_cousin_scream',
  'cousin_scream_face',
  'scream_face_ran',
  'face_ran_away',
  'ran_away_husband',
  'away_husband_end',
  'husband_end_run',
  'end_run_buy',
  'run_buy_sheet',
  'buy_sheet_cake',
  'sheet_cake_cut',
  'cake_cut_serv',
  'cut_serv_everyon',
  'serv_everyon_spoke',
  'everyon_spoke_cousin',
  'spoke_cousin_parti',
  'cousin_parti_happen',
  'parti_happen_sinc',
  'happen_sinc_room',
  'sinc_room_brush',
  'room_brush_say',
  'brush_say_kid',
  'say_kid_kid',
  'kid_kid_complet',
  'kid_complet_disagre',
  'complet_disagre_ive',
  'disagre_ive_plenti',
  'ive_plenti_birthday',
  'plenti_birthday_parti',
  'birthday_parti_kid',
  'parti_kid_let',
  'kid_let_birthday',
  'let_birthday_boygirl',
  'birthday_boygirl_moment',
  'boygirl_moment_suggest',
  'moment_suggest_pay',
  'suggest_pay_ruin',
  'pay_ruin_cake',
  'ruin_cake_look',
  'cake_look_like',
  'look_like_crazi',
  'like_crazi_told',
  'crazi_told_import',
  'told_import_us',
  'import_us_birthday',
  'us_birthday_special',
  'birthday_special_son',
  'special_son_sinc',
  'son_sinc_would',
  'sinc_would_first',
  'would_first_one',
  'first_one_rememb',
  'one_rememb_would',
  'rememb_would_rememb',
  'would_rememb_cousin',
  'rememb_cousin_ruin',
  'cousin_ruin_special',
  'ruin_special_moment',
  'special_moment_got',
  'moment_got_extrem',
  'got_extrem_defens',
  'extrem_defens_refus',
  'defens_refus_pay',
  'refus_pay_anyth',
  'pay_anyth_accus',
  'anyth_accus_act',
  'accus_act_like',
  'act_like_perfect',
  'like_perfect_mom',
  'perfect_mom_began',
  'mom_began_list',
  'began_list_way',
  'list_way_fact',
  'way_fact_perfect',
  'fact_perfect_hurt',
  'perfect_hurt_convers',
  'hurt_convers_spoken',
  'convers_spoken_sinc',
  'spoken_sinc_sent',
  'sinc_sent_bill',
  'sent_bill_ruin',
  'bill_ruin_cake',
  'ruin_cake_paid',
  'cake_paid_us',
  'paid_us_actual',
  'us_actual_feel',
  'actual_feel_pay',
  'feel_pay_cake',
  'pay_cake_sinc',
  'cake_sinc_kid',
  'sinc_kid_reason',
  'kid_reason_get',
  'reason_get_new',
  'get_new_one',
  'new_one_go',
  'one_go_far',
  'go_far_husband',
  'far_husband_think',
  'husband_think_shell',
  'think_shell_never',
  'shell_never_pay',
  'never_pay_us',
  'pay_us_drop',
  'us_drop_issu',
  'drop_issu_point',
  'issu_point_say',
  'point_say_sinc',
  'say_sinc_singl',
  'sinc_singl_mom',
  'singl_mom_probabl',
  'mom_probabl_hard',
  'probabl_hard_cut',
  'hard_cut_slack',
  'cut_slack_understand',
  'slack_understand_feel',
  'understand_feel_like',
  'feel_like_let',
  'like_let_son',
  'let_son_hook',
  'son_hook_lead',
  'hook_lead_even',
  'lead_even_bigger',
  'even_bigger_problem',
  'bigger_problem_futur',
  'problem_futur_hold',
  'futur_hold_account',
  'hold_account_aita'],
 ['father',
  'also',
  'take',
  'care',
  'niec',
  'father',
  'pass',
  'away',
  'wife',
  'alway',
  'treat',
  'like',
  'famili',
  'give',
  'thing',
  'equal',
  'feel',
  'left',
  'honestli',
  'realli',
  'care',
  'financi',
  'cant',
  'support',
  'life',
  'eldest',
  'move',
  'away',
  'money',
  'spare',
  'abl',
  'get',
  'thing',
  'daughter',
  'go',
  'away',
  'colleg',
  'neic',
  'excit',
  'came',
  'wife',
  'colleg',
  'like',
  'told',
  'great',
  'think',
  'colleg',
  'said',
  'would',
  'good',
  'appli',
  'scholarship',
  'would',
  'easier',
  'later',
  'laugh',
  'ask',
  'tuition',
  'would',
  'pay',
  'told',
  'money',
  'pay',
  'kid',
  'would',
  'help',
  'basic',
  'necess',
  'silent',
  'went',
  'room',
  'appar',
  'spoke',
  'father',
  'call',
  'rage',
  'said',
  'cruel',
  'especi',
  'sinc',
  'brother',
  'alway',
  'close',
  'aliv',
  'told',
  'type',
  'money',
  'save',
  'said',
  'care',
  'wouldv',
  'start',
  'save',
  'soon',
  'took',
  'brother',
  'die',
  'young',
  'much',
  'save',
  'niec',
  'mother',
  'side',
  'offer',
  'anyth',
  'admit',
  'couldv',
  'told',
  'earlier',
  'pay',
  'tuition',
  'aita',
  'edit',
  'addit',
  'inform',
  'ye',
  'receiv',
  'ss',
  'brother',
  'littl',
  'credit',
  'much',
  'pay',
  'im',
  'legal',
  'guardian',
  'adopt',
  'im',
  'look',
  'fafsa',
  'father_also',
  'also_take',
  'take_care',
  'care_niec',
  'niec_father',
  'father_pass',
  'pass_away',
  'away_wife',
  'wife_alway',
  'alway_treat',
  'treat_like',
  'like_famili',
  'famili_give',
  'give_thing',
  'thing_equal',
  'equal_feel',
  'feel_left',
  'left_honestli',
  'honestli_realli',
  'realli_care',
  'care_financi',
  'financi_cant',
  'cant_support',
  'support_life',
  'life_eldest',
  'eldest_move',
  'move_away',
  'away_money',
  'money_spare',
  'spare_abl',
  'abl_get',
  'get_thing',
  'thing_daughter',
  'daughter_go',
  'go_away',
  'away_colleg',
  'colleg_neic',
  'neic_excit',
  'excit_came',
  'came_wife',
  'wife_colleg',
  'colleg_like',
  'like_told',
  'told_great',
  'great_think',
  'think_colleg',
  'colleg_said',
  'said_would',
  'would_good',
  'good_appli',
  'appli_scholarship',
  'scholarship_would',
  'would_easier',
  'easier_later',
  'later_laugh',
  'laugh_ask',
  'ask_tuition',
  'tuition_would',
  'would_pay',
  'pay_told',
  'told_money',
  'money_pay',
  'pay_kid',
  'kid_would',
  'would_help',
  'help_basic',
  'basic_necess',
  'necess_silent',
  'silent_went',
  'went_room',
  'room_appar',
  'appar_spoke',
  'spoke_father',
  'father_call',
  'call_rage',
  'rage_said',
  'said_cruel',
  'cruel_especi',
  'especi_sinc',
  'sinc_brother',
  'brother_alway',
  'alway_close',
  'close_aliv',
  'aliv_told',
  'told_type',
  'type_money',
  'money_save',
  'save_said',
  'said_care',
  'care_wouldv',
  'wouldv_start',
  'start_save',
  'save_soon',
  'soon_took',
  'took_brother',
  'brother_die',
  'die_young',
  'young_much',
  'much_save',
  'save_niec',
  'niec_mother',
  'mother_side',
  'side_offer',
  'offer_anyth',
  'anyth_admit',
  'admit_couldv',
  'couldv_told',
  'told_earlier',
  'earlier_pay',
  'pay_tuition',
  'tuition_aita',
  'aita_edit',
  'edit_addit',
  'addit_inform',
  'inform_ye',
  'ye_receiv',
  'receiv_ss',
  'ss_brother',
  'brother_littl',
  'littl_credit',
  'credit_much',
  'much_pay',
  'pay_im',
  'im_legal',
  'legal_guardian',
  'guardian_adopt',
  'adopt_im',
  'im_look',
  'look_fafsa',
  'father_also_take',
  'also_take_care',
  'take_care_niec',
  'care_niec_father',
  'niec_father_pass',
  'father_pass_away',
  'pass_away_wife',
  'away_wife_alway',
  'wife_alway_treat',
  'alway_treat_like',
  'treat_like_famili',
  'like_famili_give',
  'famili_give_thing',
  'give_thing_equal',
  'thing_equal_feel',
  'equal_feel_left',
  'feel_left_honestli',
  'left_honestli_realli',
  'honestli_realli_care',
  'realli_care_financi',
  'care_financi_cant',
  'financi_cant_support',
  'cant_support_life',
  'support_life_eldest',
  'life_eldest_move',
  'eldest_move_away',
  'move_away_money',
  'away_money_spare',
  'money_spare_abl',
  'spare_abl_get',
  'abl_get_thing',
  'get_thing_daughter',
  'thing_daughter_go',
  'daughter_go_away',
  'go_away_colleg',
  'away_colleg_neic',
  'colleg_neic_excit',
  'neic_excit_came',
  'excit_came_wife',
  'came_wife_colleg',
  'wife_colleg_like',
  'colleg_like_told',
  'like_told_great',
  'told_great_think',
  'great_think_colleg',
  'think_colleg_said',
  'colleg_said_would',
  'said_would_good',
  'would_good_appli',
  'good_appli_scholarship',
  'appli_scholarship_would',
  'scholarship_would_easier',
  'would_easier_later',
  'easier_later_laugh',
  'later_laugh_ask',
  'laugh_ask_tuition',
  'ask_tuition_would',
  'tuition_would_pay',
  'would_pay_told',
  'pay_told_money',
  'told_money_pay',
  'money_pay_kid',
  'pay_kid_would',
  'kid_would_help',
  'would_help_basic',
  'help_basic_necess',
  'basic_necess_silent',
  'necess_silent_went',
  'silent_went_room',
  'went_room_appar',
  'room_appar_spoke',
  'appar_spoke_father',
  'spoke_father_call',
  'father_call_rage',
  'call_rage_said',
  'rage_said_cruel',
  'said_cruel_especi',
  'cruel_especi_sinc',
  'especi_sinc_brother',
  'sinc_brother_alway',
  'brother_alway_close',
  'alway_close_aliv',
  'close_aliv_told',
  'aliv_told_type',
  'told_type_money',
  'type_money_save',
  'money_save_said',
  'save_said_care',
  'said_care_wouldv',
  'care_wouldv_start',
  'wouldv_start_save',
  'start_save_soon',
  'save_soon_took',
  'soon_took_brother',
  'took_brother_die',
  'brother_die_young',
  'die_young_much',
  'young_much_save',
  'much_save_niec',
  'save_niec_mother',
  'niec_mother_side',
  'mother_side_offer',
  'side_offer_anyth',
  'offer_anyth_admit',
  'anyth_admit_couldv',
  'admit_couldv_told',
  'couldv_told_earlier',
  'told_earlier_pay',
  'earlier_pay_tuition',
  'pay_tuition_aita',
  'tuition_aita_edit',
  'aita_edit_addit',
  'edit_addit_inform',
  'addit_inform_ye',
  'inform_ye_receiv',
  'ye_receiv_ss',
  'receiv_ss_brother',
  'ss_brother_littl',
  'brother_littl_credit',
  'littl_credit_much',
  'credit_much_pay',
  'much_pay_im',
  'pay_im_legal',
  'im_legal_guardian',
  'legal_guardian_adopt',
  'guardian_adopt_im',
  'adopt_im_look',
  'im_look_fafsa'],
 ['happen',
  'yesterday',
  'morn',
  'morn',
  'kitchen',
  'eat',
  'breakfast',
  'wear',
  'regular',
  'underwar',
  'suddenli',
  'heard',
  'gasp',
  'sound',
  'come',
  'toward',
  'turn',
  'saw',
  'mother',
  'sister',
  'law',
  'yell',
  'wear',
  'utter',
  'shock',
  'froze',
  'seat',
  'husband',
  'asleep',
  'time',
  'mustv',
  'heard',
  'mom',
  'sister',
  'scream',
  'ran',
  'downstair',
  'ask',
  'go',
  'mom',
  'start',
  'rant',
  'loudli',
  'appropri',
  'scene',
  'daughter',
  'saw',
  'im',
  'still',
  'sit',
  'shock',
  'husband',
  'start',
  'yell',
  'go',
  'put',
  'someth',
  'quickli',
  'went',
  'upstair',
  'mom',
  'kept',
  'yell',
  'call',
  'shameless',
  'inappropri',
  'heard',
  'husband',
  'say',
  'happen',
  'mad',
  'put',
  'coat',
  'went',
  'downstair',
  'start',
  'argu',
  'mother',
  'law',
  'told',
  'come',
  'without',
  'notic',
  'turn',
  'husband',
  'told',
  'come',
  'discuss',
  'famili',
  'crisi',
  'mother',
  'law',
  'said',
  'wrong',
  'walk',
  'around',
  'half',
  'nake',
  'know',
  'key',
  'might',
  'show',
  'minut',
  'told',
  'home',
  'said',
  'son',
  'home',
  'argu',
  'husband',
  'told',
  'knock',
  'apolog',
  'refus',
  'went',
  'bavk',
  'upstair',
  'mom',
  'sister',
  'left',
  'call',
  'childish',
  'inappropri',
  'tri',
  'explain',
  'side',
  'said',
  'done',
  'done',
  'promis',
  'mom',
  'apolog',
  'said',
  'never',
  'apolog',
  'gon',
  'na',
  'wait',
  'decad',
  'got',
  'upset',
  'call',
  'disreslect',
  'toward',
  'guest',
  'mother',
  'in-law',
  'technic',
  'guest',
  'still',
  'nag',
  'apolog',
  'mom',
  'via',
  'email',
  'get',
  'aita',
  'apolog',
  'ill',
  'apolog',
  'turn',
  'im',
  'ta',
  'edit',
  '-',
  'wow',
  'mani',
  'comment',
  'cant',
  'respond',
  'howev',
  'ju',
  'saw',
  'info',
  'question',
  '-',
  'ill',
  'answer',
  '*',
  'first',
  'formost',
  'im',
  'american',
  'wish',
  'lol',
  'guy',
  'probabl',
  'figur',
  'horrif',
  'grammar',
  'lol',
  'best',
  '*',
  'mother',
  'in-law',
  'copi',
  'key',
  'happen',
  'told',
  'husband',
  'tell',
  'mom',
  'give',
  'key',
  'back',
  'said',
  'punish',
  'someth',
  '*',
  'ye',
  'tend',
  'take',
  'side',
  'often',
  'super',
  'conserv',
  'like',
  'much',
  '*',
  'oh',
  'one',
  'thing',
  'countri',
  'live',
  'countri',
  'origin',
  'treat',
  'women',
  'possess',
  'eg',
  'instead',
  'call',
  'name',
  'would',
  'say',
  'eric',
  'wife',
  'woman',
  'rude',
  'offens',
  'anoth',
  'eg',
  'lot',
  'place',
  'women',
  'access',
  'see',
  'woman',
  'drive',
  'seen',
  'unusu',
  'thing',
  'reason',
  'marri',
  'husband',
  'differ',
  'truth',
  'told',
  'ive',
  'feel',
  'overwhelm',
  'depress',
  'late',
  'mom',
  'near',
  'could',
  'visit',
  'vent',
  'happen_yesterday',
  'yesterday_morn',
  'morn_morn',
  'morn_kitchen',
  'kitchen_eat',
  'eat_breakfast',
  'breakfast_wear',
  'wear_regular',
  'regular_underwar',
  'underwar_suddenli',
  'suddenli_heard',
  'heard_gasp',
  'gasp_sound',
  'sound_come',
  'come_toward',
  'toward_turn',
  'turn_saw',
  'saw_mother',
  'mother_sister',
  'sister_law',
  'law_yell',
  'yell_wear',
  'wear_utter',
  'utter_shock',
  'shock_froze',
  'froze_seat',
  'seat_husband',
  'husband_asleep',
  'asleep_time',
  'time_mustv',
  'mustv_heard',
  'heard_mom',
  'mom_sister',
  'sister_scream',
  'scream_ran',
  'ran_downstair',
  'downstair_ask',
  'ask_go',
  'go_mom',
  'mom_start',
  'start_rant',
  'rant_loudli',
  'loudli_appropri',
  'appropri_scene',
  'scene_daughter',
  'daughter_saw',
  'saw_im',
  'im_still',
  'still_sit',
  'sit_shock',
  'shock_husband',
  'husband_start',
  'start_yell',
  'yell_go',
  'go_put',
  'put_someth',
  'someth_quickli',
  'quickli_went',
  'went_upstair',
  'upstair_mom',
  'mom_kept',
  'kept_yell',
  'yell_call',
  'call_shameless',
  'shameless_inappropri',
  'inappropri_heard',
  'heard_husband',
  'husband_say',
  'say_happen',
  'happen_mad',
  'mad_put',
  'put_coat',
  'coat_went',
  'went_downstair',
  'downstair_start',
  'start_argu',
  'argu_mother',
  'mother_law',
  'law_told',
  'told_come',
  'come_without',
  'without_notic',
  'notic_turn',
  'turn_husband',
  'husband_told',
  'told_come',
  'come_discuss',
  'discuss_famili',
  'famili_crisi',
  'crisi_mother',
  'mother_law',
  'law_said',
  'said_wrong',
  'wrong_walk',
  'walk_around',
  'around_half',
  'half_nake',
  'nake_know',
  'know_key',
  'key_might',
  'might_show',
  'show_minut',
  'minut_told',
  'told_home',
  'home_said',
  'said_son',
  'son_home',
  'home_argu',
  'argu_husband',
  'husband_told',
  'told_knock',
  'knock_apolog',
  'apolog_refus',
  'refus_went',
  'went_bavk',
  'bavk_upstair',
  'upstair_mom',
  'mom_sister',
  'sister_left',
  'left_call',
  'call_childish',
  'childish_inappropri',
  'inappropri_tri',
  'tri_explain',
  'explain_side',
  'side_said',
  'said_done',
  'done_done',
  'done_promis',
  'promis_mom',
  'mom_apolog',
  'apolog_said',
  'said_never',
  'never_apolog',
  'apolog_gon',
  'gon_na',
  'na_wait',
  'wait_decad',
  'decad_got',
  'got_upset',
  'upset_call',
  'call_disreslect',
  'disreslect_toward',
  'toward_guest',
  'guest_mother',
  'mother_in-law',
  'in-law_technic',
  'technic_guest',
  'guest_still',
  'still_nag',
  'nag_apolog',
  'apolog_mom',
  'mom_via',
  'via_email',
  'email_get',
  'get_aita',
  'aita_apolog',
  'apolog_ill',
  'ill_apolog',
  'apolog_turn',
  'turn_im',
  'im_ta',
  'ta_edit',
  'edit_-',
  '-_wow',
  'wow_mani',
  'mani_comment',
  'comment_cant',
  'cant_respond',
  'respond_howev',
  'howev_ju',
  'ju_saw',
  'saw_info',
  'info_question',
  'question_-',
  '-_ill',
  'ill_answer',
  'answer_*',
  '*_first',
  'first_formost',
  'formost_im',
  'im_american',
  'american_wish',
  'wish_lol',
  'lol_guy',
  'guy_probabl',
  'probabl_figur',
  'figur_horrif',
  'horrif_grammar',
  'grammar_lol',
  'lol_best',
  'best_*',
  '*_mother',
  'mother_in-law',
  'in-law_copi',
  'copi_key',
  'key_happen',
  'happen_told',
  'told_husband',
  'husband_tell',
  'tell_mom',
  'mom_give',
  'give_key',
  'key_back',
  'back_said',
  'said_punish',
  'punish_someth',
  'someth_*',
  '*_ye',
  'ye_tend',
  'tend_take',
  'take_side',
  'side_often',
  'often_super',
  'super_conserv',
  'conserv_like',
  'like_much',
  'much_*',
  '*_oh',
  'oh_one',
  'one_thing',
  'thing_countri',
  'countri_live',
  'live_countri',
  'countri_origin',
  'origin_treat',
  'treat_women',
  'women_possess',
  'possess_eg',
  'eg_instead',
  'instead_call',
  'call_name',
  'name_would',
  'would_say',
  'say_eric',
  'eric_wife',
  'wife_woman',
  'woman_rude',
  'rude_offens',
  'offens_anoth',
  'anoth_eg',
  'eg_lot',
  'lot_place',
  'place_women',
  'women_access',
  'access_see',
  'see_woman',
  'woman_drive',
  'drive_seen',
  'seen_unusu',
  'unusu_thing',
  'thing_reason',
  'reason_marri',
  'marri_husband',
  'husband_differ',
  'differ_truth',
  'truth_told',
  'told_ive',
  'ive_feel',
  'feel_overwhelm',
  'overwhelm_depress',
  'depress_late',
  'late_mom',
  'mom_near',
  'near_could',
  'could_visit',
  'visit_vent',
  'happen_yesterday_morn',
  'yesterday_morn_morn',
  'morn_morn_kitchen',
  'morn_kitchen_eat',
  'kitchen_eat_breakfast',
  'eat_breakfast_wear',
  'breakfast_wear_regular',
  'wear_regular_underwar',
  'regular_underwar_suddenli',
  'underwar_suddenli_heard',
  'suddenli_heard_gasp',
  'heard_gasp_sound',
  'gasp_sound_come',
  'sound_come_toward',
  'come_toward_turn',
  'toward_turn_saw',
  'turn_saw_mother',
  'saw_mother_sister',
  'mother_sister_law',
  'sister_law_yell',
  'law_yell_wear',
  'yell_wear_utter',
  'wear_utter_shock',
  'utter_shock_froze',
  'shock_froze_seat',
  'froze_seat_husband',
  'seat_husband_asleep',
  'husband_asleep_time',
  'asleep_time_mustv',
  'time_mustv_heard',
  'mustv_heard_mom',
  'heard_mom_sister',
  'mom_sister_scream',
  'sister_scream_ran',
  'scream_ran_downstair',
  'ran_downstair_ask',
  'downstair_ask_go',
  'ask_go_mom',
  'go_mom_start',
  'mom_start_rant',
  'start_rant_loudli',
  'rant_loudli_appropri',
  'loudli_appropri_scene',
  'appropri_scene_daughter',
  'scene_daughter_saw',
  'daughter_saw_im',
  'saw_im_still',
  'im_still_sit',
  'still_sit_shock',
  'sit_shock_husband',
  'shock_husband_start',
  'husband_start_yell',
  'start_yell_go',
  'yell_go_put',
  'go_put_someth',
  'put_someth_quickli',
  'someth_quickli_went',
  'quickli_went_upstair',
  'went_upstair_mom',
  'upstair_mom_kept',
  'mom_kept_yell',
  'kept_yell_call',
  'yell_call_shameless',
  'call_shameless_inappropri',
  'shameless_inappropri_heard',
  'inappropri_heard_husband',
  'heard_husband_say',
  'husband_say_happen',
  'say_happen_mad',
  'happen_mad_put',
  'mad_put_coat',
  'put_coat_went',
  'coat_went_downstair',
  'went_downstair_start',
  'downstair_start_argu',
  'start_argu_mother',
  'argu_mother_law',
  'mother_law_told',
  'law_told_come',
  'told_come_without',
  'come_without_notic',
  'without_notic_turn',
  'notic_turn_husband',
  'turn_husband_told',
  'husband_told_come',
  'told_come_discuss',
  'come_discuss_famili',
  'discuss_famili_crisi',
  'famili_crisi_mother',
  'crisi_mother_law',
  'mother_law_said',
  'law_said_wrong',
  'said_wrong_walk',
  'wrong_walk_around',
  'walk_around_half',
  'around_half_nake',
  'half_nake_know',
  'nake_know_key',
  'know_key_might',
  'key_might_show',
  'might_show_minut',
  'show_minut_told',
  'minut_told_home',
  'told_home_said',
  'home_said_son',
  'said_son_home',
  'son_home_argu',
  'home_argu_husband',
  'argu_husband_told',
  'husband_told_knock',
  'told_knock_apolog',
  'knock_apolog_refus',
  'apolog_refus_went',
  'refus_went_bavk',
  'went_bavk_upstair',
  'bavk_upstair_mom',
  'upstair_mom_sister',
  'mom_sister_left',
  'sister_left_call',
  'left_call_childish',
  'call_childish_inappropri',
  'childish_inappropri_tri',
  'inappropri_tri_explain',
  'tri_explain_side',
  'explain_side_said',
  'side_said_done',
  'said_done_done',
  'done_done_promis',
  'done_promis_mom',
  'promis_mom_apolog',
  'mom_apolog_said',
  'apolog_said_never',
  'said_never_apolog',
  'never_apolog_gon',
  'apolog_gon_na',
  'gon_na_wait',
  'na_wait_decad',
  'wait_decad_got',
  'decad_got_upset',
  'got_upset_call',
  'upset_call_disreslect',
  'call_disreslect_toward',
  'disreslect_toward_guest',
  'toward_guest_mother',
  'guest_mother_in-law',
  'mother_in-law_technic',
  'in-law_technic_guest',
  'technic_guest_still',
  'guest_still_nag',
  'still_nag_apolog',
  'nag_apolog_mom',
  'apolog_mom_via',
  'mom_via_email',
  'via_email_get',
  'email_get_aita',
  'get_aita_apolog',
  'aita_apolog_ill',
  'apolog_ill_apolog',
  'ill_apolog_turn',
  'apolog_turn_im',
  'turn_im_ta',
  'im_ta_edit',
  'ta_edit_-',
  'edit_-_wow',
  '-_wow_mani',
  'wow_mani_comment',
  'mani_comment_cant',
  'comment_cant_respond',
  'cant_respond_howev',
  'respond_howev_ju',
  'howev_ju_saw',
  'ju_saw_info',
  'saw_info_question',
  'info_question_-',
  'question_-_ill',
  '-_ill_answer',
  'ill_answer_*',
  'answer_*_first',
  '*_first_formost',
  'first_formost_im',
  'formost_im_american',
  'im_american_wish',
  'american_wish_lol',
  'wish_lol_guy',
  'lol_guy_probabl',
  'guy_probabl_figur',
  'probabl_figur_horrif',
  'figur_horrif_grammar',
  'horrif_grammar_lol',
  'grammar_lol_best',
  'lol_best_*',
  'best_*_mother',
  '*_mother_in-law',
  'mother_in-law_copi',
  'in-law_copi_key',
  'copi_key_happen',
  'key_happen_told',
  'happen_told_husband',
  'told_husband_tell',
  'husband_tell_mom',
  'tell_mom_give',
  'mom_give_key',
  'give_key_back',
  'key_back_said',
  'back_said_punish',
  'said_punish_someth',
  'punish_someth_*',
  'someth_*_ye',
  '*_ye_tend',
  'ye_tend_take',
  'tend_take_side',
  'take_side_often',
  'side_often_super',
  'often_super_conserv',
  'super_conserv_like',
  'conserv_like_much',
  'like_much_*',
  'much_*_oh',
  '*_oh_one',
  'oh_one_thing',
  'one_thing_countri',
  'thing_countri_live',
  'countri_live_countri',
  'live_countri_origin',
  'countri_origin_treat',
  'origin_treat_women',
  'treat_women_possess',
  'women_possess_eg',
  'possess_eg_instead',
  'eg_instead_call',
  'instead_call_name',
  'call_name_would',
  'name_would_say',
  'would_say_eric',
  'say_eric_wife',
  'eric_wife_woman',
  'wife_woman_rude',
  'woman_rude_offens',
  'rude_offens_anoth',
  'offens_anoth_eg',
  'anoth_eg_lot',
  'eg_lot_place',
  'lot_place_women',
  'place_women_access',
  'women_access_see',
  'access_see_woman',
  'see_woman_drive',
  'woman_drive_seen',
  'drive_seen_unusu',
  'seen_unusu_thing',
  'unusu_thing_reason',
  'thing_reason_marri',
  'reason_marri_husband',
  'marri_husband_differ',
  'husband_differ_truth',
  'differ_truth_told',
  'truth_told_ive',
  'told_ive_feel',
  'ive_feel_overwhelm',
  'feel_overwhelm_depress',
  'overwhelm_depress_late',
  'depress_late_mom',
  'late_mom_near',
  'mom_near_could',
  'near_could_visit',
  'could_visit_vent'],
 ['english',
  'first',
  'languag',
  'us',
  'stream',
  'devic',
  'price',
  'realli',
  'ill',
  'tri',
  'keep',
  'short',
  'mom',
  'pass',
  'away',
  'four',
  'year',
  'ago',
  'one',
  'thing',
  'dadm',
  'clang',
  'ever',
  'sinc',
  'movi',
  'realli',
  'enjoy',
  'togeth',
  'guess',
  'took',
  'comfort',
  'keep',
  'activ',
  'time',
  'sisterf',
  'got',
  'two',
  'screen',
  'netflix',
  'subscript',
  'gave',
  'one',
  'dad',
  'could',
  'use',
  'whenev',
  'want',
  'four',
  'year',
  'abl',
  'get',
  'pretti',
  'much',
  'rest',
  'sinc',
  'sister',
  'pay',
  'dad',
  'netflix',
  'thought',
  'gave',
  'one',
  'screen',
  'use',
  'biggi',
  'ive',
  'town',
  'ever',
  'sinc',
  'new',
  'year',
  'eve',
  'final',
  'came',
  'back',
  'home',
  'week',
  'ago',
  'told',
  'dad',
  'see',
  'movi',
  'togeth',
  'netflix',
  'sum',
  'said',
  'netflix',
  'work',
  'found',
  'odd',
  'ask',
  'meant',
  'take',
  'phone',
  'said',
  'ask',
  'sister',
  'month',
  'ago',
  'said',
  'work',
  'theyd',
  'wait',
  'work',
  'hum',
  'tri',
  'log',
  'let',
  'call',
  'sister',
  'ask',
  'password',
  'said',
  'share',
  'account',
  'anymor',
  'nephew',
  'use',
  'one',
  'screen',
  'anoth',
  'husband',
  'enrag',
  'ask',
  'told',
  'lie',
  'dad',
  'said',
  'heart',
  'tell',
  'told',
  'heart',
  'lie',
  'hang',
  'sinc',
  'ive',
  'gotten',
  'dad',
  'new',
  'netflix',
  'account',
  'ive',
  'chang',
  'password',
  'dad',
  'two',
  'day',
  'ago',
  'call',
  'say',
  'bil',
  'want',
  'watch',
  'got',
  'account',
  'kick',
  'told',
  'yeah',
  'flip',
  'ask',
  'password',
  'cant',
  'afford',
  'said',
  'well',
  'heart',
  'tell',
  'hang',
  'phone',
  'bil',
  'text',
  'call',
  'petti',
  'ah',
  'dad',
  'oblivi',
  'sister',
  'call',
  'ask',
  'password',
  'one',
  'platform',
  'know',
  'children-friendli',
  'one',
  'nephew',
  'want',
  'see',
  'encanto',
  'said',
  'apolog',
  'dad',
  'first',
  'least',
  'said',
  'nephew',
  'discomfort',
  'english_first',
  'first_languag',
  'languag_us',
  'us_stream',
  'stream_devic',
  'devic_price',
  'price_realli',
  'realli_ill',
  'ill_tri',
  'tri_keep',
  'keep_short',
  'short_mom',
  'mom_pass',
  'pass_away',
  'away_four',
  'four_year',
  'year_ago',
  'ago_one',
  'one_thing',
  'thing_dadm',
  'dadm_clang',
  'clang_ever',
  'ever_sinc',
  'sinc_movi',
  'movi_realli',
  'realli_enjoy',
  'enjoy_togeth',
  'togeth_guess',
  'guess_took',
  'took_comfort',
  'comfort_keep',
  'keep_activ',
  'activ_time',
  'time_sisterf',
  'sisterf_got',
  'got_two',
  'two_screen',
  'screen_netflix',
  'netflix_subscript',
  'subscript_gave',
  'gave_one',
  'one_dad',
  'dad_could',
  'could_use',
  'use_whenev',
  'whenev_want',
  'want_four',
  'four_year',
  'year_abl',
  'abl_get',
  'get_pretti',
  'pretti_much',
  'much_rest',
  'rest_sinc',
  'sinc_sister',
  'sister_pay',
  'pay_dad',
  'dad_netflix',
  'netflix_thought',
  'thought_gave',
  'gave_one',
  'one_screen',
  'screen_use',
  'use_biggi',
  'biggi_ive',
  'ive_town',
  'town_ever',
  'ever_sinc',
  'sinc_new',
  'new_year',
  'year_eve',
  'eve_final',
  'final_came',
  'came_back',
  'back_home',
  'home_week',
  'week_ago',
  'ago_told',
  'told_dad',
  'dad_see',
  'see_movi',
  'movi_togeth',
  'togeth_netflix',
  'netflix_sum',
  'sum_said',
  'said_netflix',
  'netflix_work',
  'work_found',
  'found_odd',
  'odd_ask',
  'ask_meant',
  'meant_take',
  'take_phone',
  'phone_said',
  'said_ask',
  'ask_sister',
  'sister_month',
  'month_ago',
  'ago_said',
  'said_work',
  'work_theyd',
  'theyd_wait',
  'wait_work',
  'work_hum',
  'hum_tri',
  'tri_log',
  'log_let',
  'let_call',
  'call_sister',
  'sister_ask',
  'ask_password',
  'password_said',
  'said_share',
  'share_account',
  'account_anymor',
  'anymor_nephew',
  'nephew_use',
  'use_one',
  'one_screen',
  'screen_anoth',
  'anoth_husband',
  'husband_enrag',
  'enrag_ask',
  'ask_told',
  'told_lie',
  'lie_dad',
  'dad_said',
  'said_heart',
  'heart_tell',
  'tell_told',
  'told_heart',
  'heart_lie',
  'lie_hang',
  'hang_sinc',
  'sinc_ive',
  'ive_gotten',
  'gotten_dad',
  'dad_new',
  'new_netflix',
  'netflix_account',
  'account_ive',
  'ive_chang',
  'chang_password',
  'password_dad',
  'dad_two',
  'two_day',
  'day_ago',
  'ago_call',
  'call_say',
  'say_bil',
  'bil_want',
  'want_watch',
  'watch_got',
  'got_account',
  'account_kick',
  'kick_told',
  'told_yeah',
  'yeah_flip',
  'flip_ask',
  'ask_password',
  'password_cant',
  'cant_afford',
  'afford_said',
  'said_well',
  'well_heart',
  'heart_tell',
  'tell_hang',
  'hang_phone',
  'phone_bil',
  'bil_text',
  'text_call',
  'call_petti',
  'petti_ah',
  'ah_dad',
  'dad_oblivi',
  'oblivi_sister',
  'sister_call',
  'call_ask',
  'ask_password',
  'password_one',
  'one_platform',
  'platform_know',
  'know_children-friendli',
  'children-friendli_one',
  'one_nephew',
  'nephew_want',
  'want_see',
  'see_encanto',
  'encanto_said',
  'said_apolog',
  'apolog_dad',
  'dad_first',
  'first_least',
  'least_said',
  'said_nephew',
  'nephew_discomfort',
  'english_first_languag',
  'first_languag_us',
  'languag_us_stream',
  'us_stream_devic',
  'stream_devic_price',
  'devic_price_realli',
  'price_realli_ill',
  'realli_ill_tri',
  'ill_tri_keep',
  'tri_keep_short',
  'keep_short_mom',
  'short_mom_pass',
  'mom_pass_away',
  'pass_away_four',
  'away_four_year',
  'four_year_ago',
  'year_ago_one',
  'ago_one_thing',
  'one_thing_dadm',
  'thing_dadm_clang',
  'dadm_clang_ever',
  'clang_ever_sinc',
  'ever_sinc_movi',
  'sinc_movi_realli',
  'movi_realli_enjoy',
  'realli_enjoy_togeth',
  'enjoy_togeth_guess',
  'togeth_guess_took',
  'guess_took_comfort',
  'took_comfort_keep',
  'comfort_keep_activ',
  'keep_activ_time',
  'activ_time_sisterf',
  'time_sisterf_got',
  'sisterf_got_two',
  'got_two_screen',
  'two_screen_netflix',
  'screen_netflix_subscript',
  'netflix_subscript_gave',
  'subscript_gave_one',
  'gave_one_dad',
  'one_dad_could',
  'dad_could_use',
  'could_use_whenev',
  'use_whenev_want',
  'whenev_want_four',
  'want_four_year',
  'four_year_abl',
  'year_abl_get',
  'abl_get_pretti',
  'get_pretti_much',
  'pretti_much_rest',
  'much_rest_sinc',
  'rest_sinc_sister',
  'sinc_sister_pay',
  'sister_pay_dad',
  'pay_dad_netflix',
  'dad_netflix_thought',
  'netflix_thought_gave',
  'thought_gave_one',
  'gave_one_screen',
  'one_screen_use',
  'screen_use_biggi',
  'use_biggi_ive',
  'biggi_ive_town',
  'ive_town_ever',
  'town_ever_sinc',
  'ever_sinc_new',
  'sinc_new_year',
  'new_year_eve',
  'year_eve_final',
  'eve_final_came',
  'final_came_back',
  'came_back_home',
  'back_home_week',
  'home_week_ago',
  'week_ago_told',
  'ago_told_dad',
  'told_dad_see',
  'dad_see_movi',
  'see_movi_togeth',
  'movi_togeth_netflix',
  'togeth_netflix_sum',
  'netflix_sum_said',
  'sum_said_netflix',
  'said_netflix_work',
  'netflix_work_found',
  'work_found_odd',
  'found_odd_ask',
  'odd_ask_meant',
  'ask_meant_take',
  'meant_take_phone',
  'take_phone_said',
  'phone_said_ask',
  'said_ask_sister',
  'ask_sister_month',
  'sister_month_ago',
  'month_ago_said',
  'ago_said_work',
  'said_work_theyd',
  'work_theyd_wait',
  'theyd_wait_work',
  'wait_work_hum',
  'work_hum_tri',
  'hum_tri_log',
  'tri_log_let',
  'log_let_call',
  'let_call_sister',
  'call_sister_ask',
  'sister_ask_password',
  'ask_password_said',
  'password_said_share',
  'said_share_account',
  'share_account_anymor',
  'account_anymor_nephew',
  'anymor_nephew_use',
  'nephew_use_one',
  'use_one_screen',
  'one_screen_anoth',
  'screen_anoth_husband',
  'anoth_husband_enrag',
  'husband_enrag_ask',
  'enrag_ask_told',
  'ask_told_lie',
  'told_lie_dad',
  'lie_dad_said',
  'dad_said_heart',
  'said_heart_tell',
  'heart_tell_told',
  'tell_told_heart',
  'told_heart_lie',
  'heart_lie_hang',
  'lie_hang_sinc',
  'hang_sinc_ive',
  'sinc_ive_gotten',
  'ive_gotten_dad',
  'gotten_dad_new',
  'dad_new_netflix',
  'new_netflix_account',
  'netflix_account_ive',
  'account_ive_chang',
  'ive_chang_password',
  'chang_password_dad',
  'password_dad_two',
  'dad_two_day',
  'two_day_ago',
  'day_ago_call',
  'ago_call_say',
  'call_say_bil',
  'say_bil_want',
  'bil_want_watch',
  'want_watch_got',
  'watch_got_account',
  'got_account_kick',
  'account_kick_told',
  'kick_told_yeah',
  'told_yeah_flip',
  'yeah_flip_ask',
  'flip_ask_password',
  'ask_password_cant',
  'password_cant_afford',
  'cant_afford_said',
  'afford_said_well',
  'said_well_heart',
  'well_heart_tell',
  'heart_tell_hang',
  'tell_hang_phone',
  'hang_phone_bil',
  'phone_bil_text',
  'bil_text_call',
  'text_call_petti',
  'call_petti_ah',
  'petti_ah_dad',
  'ah_dad_oblivi',
  'dad_oblivi_sister',
  'oblivi_sister_call',
  'sister_call_ask',
  'call_ask_password',
  'ask_password_one',
  'password_one_platform',
  'one_platform_know',
  'platform_know_children-friendli',
  'know_children-friendli_one',
  'children-friendli_one_nephew',
  'one_nephew_want',
  'nephew_want_see',
  'want_see_encanto',
  'see_encanto_said',
  'encanto_said_apolog',
  'said_apolog_dad',
  'apolog_dad_first',
  'dad_first_least',
  'first_least_said',
  'least_said_nephew',
  'said_nephew_discomfort'],
 ['husband',
  'expect',
  'babi',
  'may',
  'know',
  'new',
  'batman',
  'movi',
  'releas',
  'earli',
  'march',
  'husband',
  'big',
  'fan',
  'kind',
  'stuff',
  'want',
  'see',
  'open',
  'day',
  'issu',
  'estim',
  'due',
  'date',
  'exactli',
  'day',
  'know',
  'fraction',
  'babi',
  'actual',
  'born',
  'exact',
  'due',
  'day',
  'alway',
  'regular',
  'period',
  'feel',
  'may',
  'one',
  'case',
  'say',
  'import',
  'see',
  'movi',
  'first',
  'day',
  'spoiler',
  'even',
  'end',
  'babi',
  'day',
  'watch',
  'movi',
  'worst',
  'would',
  'arriv',
  'hour',
  'late',
  'big',
  'deal',
  'say',
  'irrat',
  'emot',
  'pregnant',
  'upset',
  'feel',
  'depriorit',
  'asshol',
  'husband_expect',
  'expect_babi',
  'babi_may',
  'may_know',
  'know_new',
  'new_batman',
  'batman_movi',
  'movi_releas',
  'releas_earli',
  'earli_march',
  'march_husband',
  'husband_big',
  'big_fan',
  'fan_kind',
  'kind_stuff',
  'stuff_want',
  'want_see',
  'see_open',
  'open_day',
  'day_issu',
  'issu_estim',
  'estim_due',
  'due_date',
  'date_exactli',
  'exactli_day',
  'day_know',
  'know_fraction',
  'fraction_babi',
  'babi_actual',
  'actual_born',
  'born_exact',
  'exact_due',
  'due_day',
  'day_alway',
  'alway_regular',
  'regular_period',
  'period_feel',
  'feel_may',
  'may_one',
  'one_case',
  'case_say',
  'say_import',
  'import_see',
  'see_movi',
  'movi_first',
  'first_day',
  'day_spoiler',
  'spoiler_even',
  'even_end',
  'end_babi',
  'babi_day',
  'day_watch',
  'watch_movi',
  'movi_worst',
  'worst_would',
  'would_arriv',
  'arriv_hour',
  'hour_late',
  'late_big',
  'big_deal',
  'deal_say',
  'say_irrat',
  'irrat_emot',
  'emot_pregnant',
  'pregnant_upset',
  'upset_feel',
  'feel_depriorit',
  'depriorit_asshol',
  'husband_expect_babi',
  'expect_babi_may',
  'babi_may_know',
  'may_know_new',
  'know_new_batman',
  'new_batman_movi',
  'batman_movi_releas',
  'movi_releas_earli',
  'releas_earli_march',
  'earli_march_husband',
  'march_husband_big',
  'husband_big_fan',
  'big_fan_kind',
  'fan_kind_stuff',
  'kind_stuff_want',
  'stuff_want_see',
  'want_see_open',
  'see_open_day',
  'open_day_issu',
  'day_issu_estim',
  'issu_estim_due',
  'estim_due_date',
  'due_date_exactli',
  'date_exactli_day',
  'exactli_day_know',
  'day_know_fraction',
  'know_fraction_babi',
  'fraction_babi_actual',
  'babi_actual_born',
  'actual_born_exact',
  'born_exact_due',
  'exact_due_day',
  'due_day_alway',
  'day_alway_regular',
  'alway_regular_period',
  'regular_period_feel',
  'period_feel_may',
  'feel_may_one',
  'may_one_case',
  'one_case_say',
  'case_say_import',
  'say_import_see',
  'import_see_movi',
  'see_movi_first',
  'movi_first_day',
  'first_day_spoiler',
  'day_spoiler_even',
  'spoiler_even_end',
  'even_end_babi',
  'end_babi_day',
  'babi_day_watch',
  'day_watch_movi',
  'watch_movi_worst',
  'movi_worst_would',
  'worst_would_arriv',
  'would_arriv_hour',
  'arriv_hour_late',
  'hour_late_big',
  'late_big_deal',
  'big_deal_say',
  'deal_say_irrat',
  'say_irrat_emot',
  'irrat_emot_pregnant',
  'emot_pregnant_upset',
  'pregnant_upset_feel',
  'upset_feel_depriorit',
  'feel_depriorit_asshol'],
 ['marri',
  'wife',
  'last',
  'year',
  'four',
  'year',
  'date',
  'mix',
  'famili',
  'two',
  'boy',
  'dylan',
  'tyler',
  'girl',
  'sam',
  'children',
  'accommod',
  'idea',
  'live',
  'togeth',
  'pretti',
  'well',
  'dylan',
  'ty',
  'father',
  'wife',
  'got',
  'divorc',
  'tyler',
  'born',
  'agre',
  'would',
  'visit',
  'right',
  'around',
  'two',
  'three',
  'year',
  'ago',
  'tyler',
  'call',
  'dad',
  'dinner',
  'night',
  'wife',
  'ask',
  'correct',
  'children',
  'call',
  'dad',
  'respect',
  'actual',
  'father',
  'found',
  'weird',
  'agre',
  'caus',
  'end',
  'theyr',
  'children',
  'although',
  'never',
  'end',
  'week',
  'dylan',
  'footbal',
  'match',
  'tyler',
  'piano',
  'lesson',
  'wife',
  'usual',
  'pick',
  'time',
  'work',
  'suggest',
  'pick',
  'togeth',
  'dylan',
  'practic',
  'jump',
  'car',
  'went',
  'pick',
  'tyler',
  'sinc',
  'decid',
  'meet',
  'piano',
  'teacher',
  'met',
  'wife',
  'dylan',
  'greet',
  'us',
  'ask',
  'kid',
  'dad',
  'sincer',
  'forgot',
  'promis',
  'made',
  'year',
  'ago',
  'said',
  'inde',
  'father',
  'wife',
  'almost',
  'instantli',
  'correct',
  'stepfath',
  'dylan',
  'said',
  'loud',
  'mom',
  'return',
  'home',
  'awkward',
  'arriv',
  'call',
  'break',
  'promis',
  'say',
  'im',
  'kid',
  'dad',
  'make',
  'wors',
  'morn',
  'notic',
  'kid',
  'act',
  'distant',
  'toward',
  'mother',
  'deliber',
  'call',
  'dad',
  'whenev',
  'around',
  'feel',
  'guilti',
  'caus',
  'first',
  'time',
  'tension',
  'fault',
  'aita',
  'call',
  'kid',
  'updat',
  'thank',
  'comment',
  'read',
  'still',
  'appreci',
  'hour',
  'ago',
  'lunch',
  'decid',
  'bring',
  'topic',
  'ask',
  'wife',
  'kid',
  'call',
  'dad',
  'someth',
  'want',
  'said',
  'afraid',
  'call',
  'dad',
  'public',
  'would',
  'make',
  'kid',
  'believ',
  'forc',
  'view',
  'dad',
  'dylan',
  'told',
  'ridicul',
  'agre',
  'said',
  'caus',
  'thought',
  'would',
  'creat',
  'conflict',
  'ask',
  'sam',
  'dylan',
  'take',
  'tyler',
  'room',
  'open',
  'feel',
  'interact',
  'ex',
  'know',
  'kid',
  'father',
  'stuff',
  'still',
  'told',
  'thought',
  'guy',
  'trash',
  'parent',
  'give',
  'bad',
  'exampl',
  'kid',
  'interact',
  'much',
  'said',
  'want',
  'keep',
  'good',
  'relationship',
  'dude',
  'case',
  'kid',
  'want',
  'live',
  'told',
  'hurt',
  'kid',
  'focu',
  'spend',
  'time',
  'instead',
  'sinc',
  'mother',
  'know',
  'feel',
  'mani',
  'year',
  'final',
  'told',
  'anyth',
  'dylan',
  'tyler',
  'call',
  'dad',
  'im',
  'happi',
  'want',
  'stop',
  'whatev',
  'ridicul',
  'reason',
  'may',
  'shell',
  'ask',
  'kid',
  'cant',
  'mean',
  'must',
  'realiz',
  'shitti',
  'request',
  'admit',
  'got',
  'littl',
  'heat',
  'use',
  'harsher',
  'word',
  'wouldv',
  'like',
  'use',
  'im',
  'still',
  'glad',
  'could',
  'final',
  'tell',
  'ill',
  'start',
  'direct',
  'toward',
  'touch',
  'adopt',
  'subject',
  'thought',
  'much',
  'later',
  'ill',
  'bring',
  'updat',
  'happen',
  'sinc',
  'support',
  'idea',
  'thank',
  'help',
  'thank',
  'award',
  'pleas',
  'use',
  'money',
  'reddit',
  'haha',
  'marri_wife',
  'wife_last',
  'last_year',
  'year_four',
  'four_year',
  'year_date',
  'date_mix',
  'mix_famili',
  'famili_two',
  'two_boy',
  'boy_dylan',
  'dylan_tyler',
  'tyler_girl',
  'girl_sam',
  'sam_children',
  'children_accommod',
  'accommod_idea',
  'idea_live',
  'live_togeth',
  'togeth_pretti',
  'pretti_well',
  'well_dylan',
  'dylan_ty',
  'ty_father',
  'father_wife',
  'wife_got',
  'got_divorc',
  'divorc_tyler',
  'tyler_born',
  'born_agre',
  'agre_would',
  'would_visit',
  'visit_right',
  'right_around',
  'around_two',
  'two_three',
  'three_year',
  'year_ago',
  'ago_tyler',
  'tyler_call',
  'call_dad',
  'dad_dinner',
  'dinner_night',
  'night_wife',
  'wife_ask',
  'ask_correct',
  'correct_children',
  'children_call',
  'call_dad',
  'dad_respect',
  'respect_actual',
  'actual_father',
  'father_found',
  'found_weird',
  'weird_agre',
  'agre_caus',
  'caus_end',
  'end_theyr',
  'theyr_children',
  'children_although',
  'although_never',
  'never_end',
  'end_week',
  'week_dylan',
  'dylan_footbal',
  'footbal_match',
  'match_tyler',
  'tyler_piano',
  'piano_lesson',
  'lesson_wife',
  'wife_usual',
  'usual_pick',
  'pick_time',
  'time_work',
  'work_suggest',
  'suggest_pick',
  'pick_togeth',
  'togeth_dylan',
  'dylan_practic',
  'practic_jump',
  'jump_car',
  'car_went',
  'went_pick',
  'pick_tyler',
  'tyler_sinc',
  'sinc_decid',
  'decid_meet',
  'meet_piano',
  'piano_teacher',
  'teacher_met',
  'met_wife',
  'wife_dylan',
  'dylan_greet',
  'greet_us',
  'us_ask',
  'ask_kid',
  'kid_dad',
  'dad_sincer',
  'sincer_forgot',
  'forgot_promis',
  'promis_made',
  'made_year',
  'year_ago',
  'ago_said',
  'said_inde',
  'inde_father',
  'father_wife',
  'wife_almost',
  'almost_instantli',
  'instantli_correct',
  'correct_stepfath',
  'stepfath_dylan',
  'dylan_said',
  'said_loud',
  'loud_mom',
  'mom_return',
  'return_home',
  'home_awkward',
  'awkward_arriv',
  'arriv_call',
  'call_break',
  'break_promis',
  'promis_say',
  'say_im',
  'im_kid',
  'kid_dad',
  'dad_make',
  'make_wors',
  'wors_morn',
  'morn_notic',
  'notic_kid',
  'kid_act',
  'act_distant',
  'distant_toward',
  'toward_mother',
  'mother_deliber',
  'deliber_call',
  'call_dad',
  'dad_whenev',
  'whenev_around',
  'around_feel',
  'feel_guilti',
  'guilti_caus',
  'caus_first',
  'first_time',
  'time_tension',
  'tension_fault',
  'fault_aita',
  'aita_call',
  'call_kid',
  'kid_updat',
  'updat_thank',
  'thank_comment',
  'comment_read',
  'read_still',
  'still_appreci',
  'appreci_hour',
  'hour_ago',
  'ago_lunch',
  'lunch_decid',
  'decid_bring',
  'bring_topic',
  'topic_ask',
  'ask_wife',
  'wife_kid',
  'kid_call',
  'call_dad',
  'dad_someth',
  'someth_want',
  'want_said',
  'said_afraid',
  'afraid_call',
  'call_dad',
  'dad_public',
  'public_would',
  'would_make',
  'make_kid',
  'kid_believ',
  'believ_forc',
  'forc_view',
  'view_dad',
  'dad_dylan',
  'dylan_told',
  'told_ridicul',
  'ridicul_agre',
  'agre_said',
  'said_caus',
  'caus_thought',
  'thought_would',
  'would_creat',
  'creat_conflict',
  'conflict_ask',
  'ask_sam',
  'sam_dylan',
  'dylan_take',
  'take_tyler',
  'tyler_room',
  'room_open',
  'open_feel',
  'feel_interact',
  'interact_ex',
  'ex_know',
  'know_kid',
  'kid_father',
  'father_stuff',
  'stuff_still',
  'still_told',
  'told_thought',
  'thought_guy',
  'guy_trash',
  'trash_parent',
  'parent_give',
  'give_bad',
  'bad_exampl',
  'exampl_kid',
  'kid_interact',
  'interact_much',
  'much_said',
  'said_want',
  'want_keep',
  'keep_good',
  'good_relationship',
  'relationship_dude',
  'dude_case',
  'case_kid',
  'kid_want',
  'want_live',
  'live_told',
  'told_hurt',
  'hurt_kid',
  'kid_focu',
  'focu_spend',
  'spend_time',
  'time_instead',
  'instead_sinc',
  'sinc_mother',
  'mother_know',
  'know_feel',
  'feel_mani',
  'mani_year',
  'year_final',
  'final_told',
  'told_anyth',
  'anyth_dylan',
  'dylan_tyler',
  'tyler_call',
  'call_dad',
  'dad_im',
  'im_happi',
  'happi_want',
  'want_stop',
  'stop_whatev',
  'whatev_ridicul',
  'ridicul_reason',
  'reason_may',
  'may_shell',
  'shell_ask',
  'ask_kid',
  'kid_cant',
  'cant_mean',
  'mean_must',
  'must_realiz',
  'realiz_shitti',
  'shitti_request',
  'request_admit',
  'admit_got',
  'got_littl',
  'littl_heat',
  'heat_use',
  'use_harsher',
  'harsher_word',
  'word_wouldv',
  'wouldv_like',
  'like_use',
  'use_im',
  'im_still',
  'still_glad',
  'glad_could',
  'could_final',
  'final_tell',
  'tell_ill',
  'ill_start',
  'start_direct',
  'direct_toward',
  'toward_touch',
  'touch_adopt',
  'adopt_subject',
  'subject_thought',
  'thought_much',
  'much_later',
  'later_ill',
  'ill_bring',
  'bring_updat',
  'updat_happen',
  'happen_sinc',
  'sinc_support',
  'support_idea',
  'idea_thank',
  'thank_help',
  'help_thank',
  'thank_award',
  'award_pleas',
  'pleas_use',
  'use_money',
  'money_reddit',
  'reddit_haha',
  'marri_wife_last',
  'wife_last_year',
  'last_year_four',
  'year_four_year',
  'four_year_date',
  'year_date_mix',
  'date_mix_famili',
  'mix_famili_two',
  'famili_two_boy',
  'two_boy_dylan',
  'boy_dylan_tyler',
  'dylan_tyler_girl',
  'tyler_girl_sam',
  'girl_sam_children',
  'sam_children_accommod',
  'children_accommod_idea',
  'accommod_idea_live',
  'idea_live_togeth',
  'live_togeth_pretti',
  'togeth_pretti_well',
  'pretti_well_dylan',
  'well_dylan_ty',
  'dylan_ty_father',
  'ty_father_wife',
  'father_wife_got',
  'wife_got_divorc',
  'got_divorc_tyler',
  'divorc_tyler_born',
  'tyler_born_agre',
  'born_agre_would',
  'agre_would_visit',
  'would_visit_right',
  'visit_right_around',
  'right_around_two',
  'around_two_three',
  'two_three_year',
  'three_year_ago',
  'year_ago_tyler',
  'ago_tyler_call',
  'tyler_call_dad',
  'call_dad_dinner',
  'dad_dinner_night',
  'dinner_night_wife',
  'night_wife_ask',
  'wife_ask_correct',
  'ask_correct_children',
  'correct_children_call',
  'children_call_dad',
  'call_dad_respect',
  'dad_respect_actual',
  'respect_actual_father',
  'actual_father_found',
  'father_found_weird',
  'found_weird_agre',
  'weird_agre_caus',
  'agre_caus_end',
  'caus_end_theyr',
  'end_theyr_children',
  'theyr_children_although',
  'children_although_never',
  'although_never_end',
  'never_end_week',
  'end_week_dylan',
  'week_dylan_footbal',
  'dylan_footbal_match',
  'footbal_match_tyler',
  'match_tyler_piano',
  'tyler_piano_lesson',
  'piano_lesson_wife',
  'lesson_wife_usual',
  'wife_usual_pick',
  'usual_pick_time',
  'pick_time_work',
  'time_work_suggest',
  'work_suggest_pick',
  'suggest_pick_togeth',
  'pick_togeth_dylan',
  'togeth_dylan_practic',
  'dylan_practic_jump',
  'practic_jump_car',
  'jump_car_went',
  'car_went_pick',
  'went_pick_tyler',
  'pick_tyler_sinc',
  'tyler_sinc_decid',
  'sinc_decid_meet',
  'decid_meet_piano',
  'meet_piano_teacher',
  'piano_teacher_met',
  'teacher_met_wife',
  'met_wife_dylan',
  'wife_dylan_greet',
  'dylan_greet_us',
  'greet_us_ask',
  'us_ask_kid',
  'ask_kid_dad',
  'kid_dad_sincer',
  'dad_sincer_forgot',
  'sincer_forgot_promis',
  'forgot_promis_made',
  'promis_made_year',
  'made_year_ago',
  'year_ago_said',
  'ago_said_inde',
  'said_inde_father',
  'inde_father_wife',
  'father_wife_almost',
  'wife_almost_instantli',
  'almost_instantli_correct',
  'instantli_correct_stepfath',
  'correct_stepfath_dylan',
  'stepfath_dylan_said',
  'dylan_said_loud',
  'said_loud_mom',
  'loud_mom_return',
  'mom_return_home',
  'return_home_awkward',
  'home_awkward_arriv',
  'awkward_arriv_call',
  'arriv_call_break',
  'call_break_promis',
  'break_promis_say',
  'promis_say_im',
  'say_im_kid',
  'im_kid_dad',
  'kid_dad_make',
  'dad_make_wors',
  'make_wors_morn',
  'wors_morn_notic',
  'morn_notic_kid',
  'notic_kid_act',
  'kid_act_distant',
  'act_distant_toward',
  'distant_toward_mother',
  'toward_mother_deliber',
  'mother_deliber_call',
  'deliber_call_dad',
  'call_dad_whenev',
  'dad_whenev_around',
  'whenev_around_feel',
  'around_feel_guilti',
  'feel_guilti_caus',
  'guilti_caus_first',
  'caus_first_time',
  'first_time_tension',
  'time_tension_fault',
  'tension_fault_aita',
  'fault_aita_call',
  'aita_call_kid',
  'call_kid_updat',
  'kid_updat_thank',
  'updat_thank_comment',
  'thank_comment_read',
  'comment_read_still',
  'read_still_appreci',
  'still_appreci_hour',
  'appreci_hour_ago',
  'hour_ago_lunch',
  'ago_lunch_decid',
  'lunch_decid_bring',
  'decid_bring_topic',
  'bring_topic_ask',
  'topic_ask_wife',
  'ask_wife_kid',
  'wife_kid_call',
  'kid_call_dad',
  'call_dad_someth',
  'dad_someth_want',
  'someth_want_said',
  'want_said_afraid',
  'said_afraid_call',
  'afraid_call_dad',
  'call_dad_public',
  'dad_public_would',
  'public_would_make',
  'would_make_kid',
  'make_kid_believ',
  'kid_believ_forc',
  'believ_forc_view',
  'forc_view_dad',
  'view_dad_dylan',
  'dad_dylan_told',
  'dylan_told_ridicul',
  'told_ridicul_agre',
  'ridicul_agre_said',
  'agre_said_caus',
  'said_caus_thought',
  'caus_thought_would',
  'thought_would_creat',
  'would_creat_conflict',
  'creat_conflict_ask',
  'conflict_ask_sam',
  'ask_sam_dylan',
  'sam_dylan_take',
  'dylan_take_tyler',
  'take_tyler_room',
  'tyler_room_open',
  'room_open_feel',
  'open_feel_interact',
  'feel_interact_ex',
  'interact_ex_know',
  'ex_know_kid',
  'know_kid_father',
  'kid_father_stuff',
  'father_stuff_still',
  'stuff_still_told',
  'still_told_thought',
  'told_thought_guy',
  'thought_guy_trash',
  'guy_trash_parent',
  'trash_parent_give',
  'parent_give_bad',
  'give_bad_exampl',
  'bad_exampl_kid',
  'exampl_kid_interact',
  'kid_interact_much',
  'interact_much_said',
  'much_said_want',
  'said_want_keep',
  'want_keep_good',
  'keep_good_relationship',
  'good_relationship_dude',
  'relationship_dude_case',
  'dude_case_kid',
  'case_kid_want',
  'kid_want_live',
  'want_live_told',
  'live_told_hurt',
  'told_hurt_kid',
  'hurt_kid_focu',
  'kid_focu_spend',
  'focu_spend_time',
  'spend_time_instead',
  'time_instead_sinc',
  'instead_sinc_mother',
  'sinc_mother_know',
  'mother_know_feel',
  'know_feel_mani',
  'feel_mani_year',
  'mani_year_final',
  'year_final_told',
  'final_told_anyth',
  'told_anyth_dylan',
  'anyth_dylan_tyler',
  'dylan_tyler_call',
  'tyler_call_dad',
  'call_dad_im',
  'dad_im_happi',
  'im_happi_want',
  'happi_want_stop',
  'want_stop_whatev',
  'stop_whatev_ridicul',
  'whatev_ridicul_reason',
  'ridicul_reason_may',
  'reason_may_shell',
  'may_shell_ask',
  'shell_ask_kid',
  'ask_kid_cant',
  'kid_cant_mean',
  'cant_mean_must',
  'mean_must_realiz',
  'must_realiz_shitti',
  'realiz_shitti_request',
  'shitti_request_admit',
  'request_admit_got',
  'admit_got_littl',
  'got_littl_heat',
  'littl_heat_use',
  'heat_use_harsher',
  'use_harsher_word',
  'harsher_word_wouldv',
  'word_wouldv_like',
  'wouldv_like_use',
  'like_use_im',
  'use_im_still',
  'im_still_glad',
  'still_glad_could',
  'glad_could_final',
  'could_final_tell',
  'final_tell_ill',
  'tell_ill_start',
  'ill_start_direct',
  'start_direct_toward',
  'direct_toward_touch',
  'toward_touch_adopt',
  'touch_adopt_subject',
  'adopt_subject_thought',
  'subject_thought_much',
  'thought_much_later',
  'much_later_ill',
  'later_ill_bring',
  'ill_bring_updat',
  'bring_updat_happen',
  'updat_happen_sinc',
  'happen_sinc_support',
  'sinc_support_idea',
  'support_idea_thank',
  'idea_thank_help',
  'thank_help_thank',
  'help_thank_award',
  'thank_award_pleas',
  'award_pleas_use',
  'pleas_use_money',
  'use_money_reddit',
  'money_reddit_haha'],
 ['rent',
  'spare',
  'bedroom',
  'hous',
  '$',
  'month',
  'market',
  'rate',
  'area',
  'know',
  'roommat',
  'well',
  'work',
  'compani',
  'work',
  'earli',
  'morn',
  'work',
  'late',
  'even',
  'often',
  'ship',
  'pass',
  'night',
  'friday',
  'hot',
  'water',
  'heater',
  'broke',
  'home',
  'warranti',
  'guy',
  'said',
  'get',
  'anyon',
  'monday',
  'morn',
  'hot',
  'ball',
  'right',
  'upset',
  'cold',
  'shower',
  'kill',
  'anyon',
  'text',
  'tenant',
  'hot',
  'water',
  'monday',
  'respond',
  '👍',
  'see',
  'weekend',
  'normal',
  'said',
  'guy',
  'got',
  'fix',
  'heater',
  'done',
  'text',
  'let',
  'know',
  'hot',
  'water',
  'back',
  'hit',
  'gem',
  'hotel',
  'bill',
  '$',
  'want',
  'reimburs',
  'deduct',
  'next',
  'month',
  'rent',
  'stare',
  'text',
  'good',
  'even',
  'know',
  'gone',
  'got',
  'hotel',
  'room',
  'hot',
  'water',
  'extra',
  'could',
  'shower',
  'work',
  'got',
  'hotel',
  'room',
  'text',
  'hey',
  'know',
  'left',
  'rent',
  'still',
  'due',
  'full',
  'first',
  'month',
  'regardless',
  'choos',
  'sleep',
  'elsewher',
  'weekend',
  'text',
  'back',
  'water',
  'stay',
  'landlord',
  'provid',
  'livabl',
  'accomod',
  'text',
  'back',
  'water',
  'hot',
  'winter',
  'might',
  'point',
  'rent',
  'still',
  'due',
  'full',
  'failur',
  'pay',
  'rent',
  'result',
  'file',
  'court',
  'impact',
  'credit',
  'stop',
  'respond',
  'text',
  'friend',
  'said',
  'way',
  'harsh',
  'counter',
  '$',
  'discount',
  'two',
  'day',
  'someth',
  'sure',
  'shed',
  'ask',
  '$',
  'reduct',
  'would',
  'reason',
  'im',
  'pay',
  'hotel',
  'audac',
  'ask',
  'piss',
  'know',
  'jump',
  'talk',
  'file',
  'thirti',
  'day',
  'bit',
  'dramat',
  'ta',
  'rent_spare',
  'spare_bedroom',
  'bedroom_hous',
  'hous_$',
  '$_month',
  'month_market',
  'market_rate',
  'rate_area',
  'area_know',
  'know_roommat',
  'roommat_well',
  'well_work',
  'work_compani',
  'compani_work',
  'work_earli',
  'earli_morn',
  'morn_work',
  'work_late',
  'late_even',
  'even_often',
  'often_ship',
  'ship_pass',
  'pass_night',
  'night_friday',
  'friday_hot',
  'hot_water',
  'water_heater',
  'heater_broke',
  'broke_home',
  'home_warranti',
  'warranti_guy',
  'guy_said',
  'said_get',
  'get_anyon',
  'anyon_monday',
  'monday_morn',
  'morn_hot',
  'hot_ball',
  'ball_right',
  'right_upset',
  'upset_cold',
  'cold_shower',
  'shower_kill',
  'kill_anyon',
  'anyon_text',
  'text_tenant',
  'tenant_hot',
  'hot_water',
  'water_monday',
  'monday_respond',
  'respond_👍',
  '👍_see',
  'see_weekend',
  'weekend_normal',
  'normal_said',
  'said_guy',
  'guy_got',
  'got_fix',
  'fix_heater',
  'heater_done',
  'done_text',
  'text_let',
  'let_know',
  'know_hot',
  'hot_water',
  'water_back',
  'back_hit',
  'hit_gem',
  'gem_hotel',
  'hotel_bill',
  'bill_$',
  '$_want',
  'want_reimburs',
  'reimburs_deduct',
  'deduct_next',
  'next_month',
  'month_rent',
  'rent_stare',
  'stare_text',
  'text_good',
  'good_even',
  'even_know',
  'know_gone',
  'gone_got',
  'got_hotel',
  'hotel_room',
  'room_hot',
  'hot_water',
  'water_extra',
  'extra_could',
  'could_shower',
  'shower_work',
  'work_got',
  'got_hotel',
  'hotel_room',
  'room_text',
  'text_hey',
  'hey_know',
  'know_left',
  'left_rent',
  'rent_still',
  'still_due',
  'due_full',
  'full_first',
  'first_month',
  'month_regardless',
  'regardless_choos',
  'choos_sleep',
  'sleep_elsewher',
  'elsewher_weekend',
  'weekend_text',
  'text_back',
  'back_water',
  'water_stay',
  'stay_landlord',
  'landlord_provid',
  'provid_livabl',
  'livabl_accomod',
  'accomod_text',
  'text_back',
  'back_water',
  'water_hot',
  'hot_winter',
  'winter_might',
  'might_point',
  'point_rent',
  'rent_still',
  'still_due',
  'due_full',
  'full_failur',
  'failur_pay',
  'pay_rent',
  'rent_result',
  'result_file',
  'file_court',
  'court_impact',
  'impact_credit',
  'credit_stop',
  'stop_respond',
  'respond_text',
  'text_friend',
  'friend_said',
  'said_way',
  'way_harsh',
  'harsh_counter',
  'counter_$',
  '$_discount',
  'discount_two',
  'two_day',
  'day_someth',
  'someth_sure',
  'sure_shed',
  'shed_ask',
  'ask_$',
  '$_reduct',
  'reduct_would',
  'would_reason',
  'reason_im',
  'im_pay',
  'pay_hotel',
  'hotel_audac',
  'audac_ask',
  'ask_piss',
  'piss_know',
  'know_jump',
  'jump_talk',
  'talk_file',
  'file_thirti',
  'thirti_day',
  'day_bit',
  'bit_dramat',
  'dramat_ta',
  'rent_spare_bedroom',
  'spare_bedroom_hous',
  'bedroom_hous_$',
  'hous_$_month',
  '$_month_market',
  'month_market_rate',
  'market_rate_area',
  'rate_area_know',
  'area_know_roommat',
  'know_roommat_well',
  'roommat_well_work',
  'well_work_compani',
  'work_compani_work',
  'compani_work_earli',
  'work_earli_morn',
  'earli_morn_work',
  'morn_work_late',
  'work_late_even',
  'late_even_often',
  'even_often_ship',
  'often_ship_pass',
  'ship_pass_night',
  'pass_night_friday',
  'night_friday_hot',
  'friday_hot_water',
  'hot_water_heater',
  'water_heater_broke',
  'heater_broke_home',
  'broke_home_warranti',
  'home_warranti_guy',
  'warranti_guy_said',
  'guy_said_get',
  'said_get_anyon',
  'get_anyon_monday',
  'anyon_monday_morn',
  'monday_morn_hot',
  'morn_hot_ball',
  'hot_ball_right',
  'ball_right_upset',
  'right_upset_cold',
  'upset_cold_shower',
  'cold_shower_kill',
  'shower_kill_anyon',
  'kill_anyon_text',
  'anyon_text_tenant',
  'text_tenant_hot',
  'tenant_hot_water',
  'hot_water_monday',
  'water_monday_respond',
  'monday_respond_👍',
  'respond_👍_see',
  '👍_see_weekend',
  'see_weekend_normal',
  'weekend_normal_said',
  'normal_said_guy',
  'said_guy_got',
  'guy_got_fix',
  'got_fix_heater',
  'fix_heater_done',
  'heater_done_text',
  'done_text_let',
  'text_let_know',
  'let_know_hot',
  'know_hot_water',
  'hot_water_back',
  'water_back_hit',
  'back_hit_gem',
  'hit_gem_hotel',
  'gem_hotel_bill',
  'hotel_bill_$',
  'bill_$_want',
  '$_want_reimburs',
  'want_reimburs_deduct',
  'reimburs_deduct_next',
  'deduct_next_month',
  'next_month_rent',
  'month_rent_stare',
  'rent_stare_text',
  'stare_text_good',
  'text_good_even',
  'good_even_know',
  'even_know_gone',
  'know_gone_got',
  'gone_got_hotel',
  'got_hotel_room',
  'hotel_room_hot',
  'room_hot_water',
  'hot_water_extra',
  'water_extra_could',
  'extra_could_shower',
  'could_shower_work',
  'shower_work_got',
  'work_got_hotel',
  'got_hotel_room',
  'hotel_room_text',
  'room_text_hey',
  'text_hey_know',
  'hey_know_left',
  'know_left_rent',
  'left_rent_still',
  'rent_still_due',
  'still_due_full',
  'due_full_first',
  'full_first_month',
  'first_month_regardless',
  'month_regardless_choos',
  'regardless_choos_sleep',
  'choos_sleep_elsewher',
  'sleep_elsewher_weekend',
  'elsewher_weekend_text',
  'weekend_text_back',
  'text_back_water',
  'back_water_stay',
  'water_stay_landlord',
  'stay_landlord_provid',
  'landlord_provid_livabl',
  'provid_livabl_accomod',
  'livabl_accomod_text',
  'accomod_text_back',
  'text_back_water',
  'back_water_hot',
  'water_hot_winter',
  'hot_winter_might',
  'winter_might_point',
  'might_point_rent',
  'point_rent_still',
  'rent_still_due',
  'still_due_full',
  'due_full_failur',
  'full_failur_pay',
  'failur_pay_rent',
  'pay_rent_result',
  'rent_result_file',
  'result_file_court',
  'file_court_impact',
  'court_impact_credit',
  'impact_credit_stop',
  'credit_stop_respond',
  'stop_respond_text',
  'respond_text_friend',
  'text_friend_said',
  'friend_said_way',
  'said_way_harsh',
  'way_harsh_counter',
  'harsh_counter_$',
  'counter_$_discount',
  '$_discount_two',
  'discount_two_day',
  'two_day_someth',
  'day_someth_sure',
  'someth_sure_shed',
  'sure_shed_ask',
  'shed_ask_$',
  'ask_$_reduct',
  '$_reduct_would',
  'reduct_would_reason',
  'would_reason_im',
  'reason_im_pay',
  'im_pay_hotel',
  'pay_hotel_audac',
  'hotel_audac_ask',
  'audac_ask_piss',
  'ask_piss_know',
  'piss_know_jump',
  'know_jump_talk',
  'jump_talk_file',
  'talk_file_thirti',
  'file_thirti_day',
  'thirti_day_bit',
  'day_bit_dramat',
  'bit_dramat_ta'],
 ['ill',
  'prefac',
  'say',
  'boyfriend',
  'togeth',
  'year',
  'half',
  'ive',
  'jump',
  'one',
  'job',
  'anoth',
  'unemploy',
  'due',
  'health',
  'issu',
  'affect',
  'perform',
  'work',
  'usual',
  'im',
  'one',
  'handl',
  'rent',
  'bill',
  'groceri',
  'etc',
  'use',
  'credit',
  'card',
  'make',
  'purchas',
  'want',
  'last',
  'week',
  'boyfriend',
  'nowher',
  'ask',
  'credit',
  'card',
  'ask',
  'sinc',
  'im',
  'one',
  'handl',
  'payment',
  'supermarket',
  'trip',
  'told',
  'want',
  'buy',
  'food',
  'agre',
  'let',
  'take',
  'told',
  'return',
  'later',
  'got',
  'back',
  'later',
  'ask',
  'credit',
  'card',
  'like',
  'credit',
  'card',
  'thought',
  'joke',
  'told',
  'give',
  'back',
  'said',
  'hed',
  'keep',
  'ask',
  'said',
  'could',
  'start',
  'handl',
  'pay',
  'stuff',
  'behalf',
  'felt',
  'uncomfort',
  'said',
  'id',
  'rather',
  'burden',
  'stuff',
  'ask',
  'hand',
  'credit',
  'card',
  'refus',
  'said',
  'hell',
  'keep',
  'sinc',
  'much',
  'money',
  'anyway',
  'livid',
  'tri',
  'argu',
  'told',
  'trust',
  'let',
  'keep',
  'swore',
  'spend',
  'penni',
  'next',
  'morn',
  'went',
  'cancel',
  'regist',
  'new',
  'one',
  'mustv',
  'tri',
  'use',
  'call',
  'confus',
  'ask',
  'credit',
  'card',
  'valid',
  'anymor',
  'told',
  'cancel',
  'regist',
  'new',
  'one',
  'lost',
  'start',
  'scold',
  'say',
  'believ',
  'level',
  'petti',
  'kept',
  'trust',
  'financ',
  'financi',
  'abus',
  'becom',
  'late',
  'hung',
  'argument',
  'continu',
  'home',
  'call',
  'paranoid',
  'unreason',
  'start',
  'cold',
  'shoulder',
  'sulk',
  'day',
  'feel',
  'like',
  'hurt',
  'feel',
  'show',
  'amount',
  'distrust',
  'toward',
  'aita',
  'canel',
  'credit',
  'card',
  'edit',
  'ad',
  'info',
  '*',
  'like',
  'said',
  'physic',
  'disabl',
  'limit',
  'opportun',
  'work',
  'receiv',
  'disabl',
  'benefit',
  'want',
  'refus',
  'acknowledg',
  'disabl',
  'pretend',
  'exist',
  '*',
  'tell',
  'look',
  'job',
  'hed',
  'blame',
  'peopl',
  'purpos',
  'refus',
  'employ',
  'say',
  'look',
  'like',
  'lack',
  'beneaath',
  '*',
  'come',
  'humbl',
  'background',
  'longer',
  'contact',
  'famili',
  'due',
  'abandon',
  'issu',
  'friend',
  'lean',
  '*',
  'sinc',
  'someon',
  'ask',
  'answer',
  'almost',
  '%',
  'chore',
  '%',
  'reason',
  'disabl',
  '*',
  'final',
  'pay',
  'rent',
  'bill',
  'groceri',
  'med',
  'transport',
  'well',
  'need',
  'card',
  'constantli',
  'ill_prefac',
  'prefac_say',
  'say_boyfriend',
  'boyfriend_togeth',
  'togeth_year',
  'year_half',
  'half_ive',
  'ive_jump',
  'jump_one',
  'one_job',
  'job_anoth',
  'anoth_unemploy',
  'unemploy_due',
  'due_health',
  'health_issu',
  'issu_affect',
  'affect_perform',
  'perform_work',
  'work_usual',
  'usual_im',
  'im_one',
  'one_handl',
  'handl_rent',
  'rent_bill',
  'bill_groceri',
  'groceri_etc',
  'etc_use',
  'use_credit',
  'credit_card',
  'card_make',
  'make_purchas',
  'purchas_want',
  'want_last',
  'last_week',
  'week_boyfriend',
  'boyfriend_nowher',
  'nowher_ask',
  'ask_credit',
  'credit_card',
  'card_ask',
  'ask_sinc',
  'sinc_im',
  'im_one',
  'one_handl',
  'handl_payment',
  'payment_supermarket',
  'supermarket_trip',
  'trip_told',
  'told_want',
  'want_buy',
  'buy_food',
  'food_agre',
  'agre_let',
  'let_take',
  'take_told',
  'told_return',
  'return_later',
  'later_got',
  'got_back',
  'back_later',
  'later_ask',
  'ask_credit',
  'credit_card',
  'card_like',
  'like_credit',
  'credit_card',
  'card_thought',
  'thought_joke',
  'joke_told',
  'told_give',
  'give_back',
  'back_said',
  'said_hed',
  'hed_keep',
  'keep_ask',
  'ask_said',
  'said_could',
  'could_start',
  'start_handl',
  'handl_pay',
  'pay_stuff',
  'stuff_behalf',
  'behalf_felt',
  'felt_uncomfort',
  'uncomfort_said',
  'said_id',
  'id_rather',
  'rather_burden',
  'burden_stuff',
  'stuff_ask',
  'ask_hand',
  'hand_credit',
  'credit_card',
  'card_refus',
  'refus_said',
  'said_hell',
  'hell_keep',
  'keep_sinc',
  'sinc_much',
  'much_money',
  'money_anyway',
  'anyway_livid',
  'livid_tri',
  'tri_argu',
  'argu_told',
  'told_trust',
  'trust_let',
  'let_keep',
  'keep_swore',
  'swore_spend',
  'spend_penni',
  'penni_next',
  'next_morn',
  'morn_went',
  'went_cancel',
  'cancel_regist',
  'regist_new',
  'new_one',
  'one_mustv',
  'mustv_tri',
  'tri_use',
  'use_call',
  'call_confus',
  'confus_ask',
  'ask_credit',
  'credit_card',
  'card_valid',
  'valid_anymor',
  'anymor_told',
  'told_cancel',
  'cancel_regist',
  'regist_new',
  'new_one',
  'one_lost',
  'lost_start',
  'start_scold',
  'scold_say',
  'say_believ',
  'believ_level',
  'level_petti',
  'petti_kept',
  'kept_trust',
  'trust_financ',
  'financ_financi',
  'financi_abus',
  'abus_becom',
  'becom_late',
  'late_hung',
  'hung_argument',
  'argument_continu',
  'continu_home',
  'home_call',
  'call_paranoid',
  'paranoid_unreason',
  'unreason_start',
  'start_cold',
  'cold_shoulder',
  'shoulder_sulk',
  'sulk_day',
  'day_feel',
  'feel_like',
  'like_hurt',
  'hurt_feel',
  'feel_show',
  'show_amount',
  'amount_distrust',
  'distrust_toward',
  'toward_aita',
  'aita_canel',
  'canel_credit',
  'credit_card',
  'card_edit',
  'edit_ad',
  'ad_info',
  'info_*',
  '*_like',
  'like_said',
  'said_physic',
  'physic_disabl',
  'disabl_limit',
  'limit_opportun',
  'opportun_work',
  'work_receiv',
  'receiv_disabl',
  'disabl_benefit',
  'benefit_want',
  'want_refus',
  'refus_acknowledg',
  'acknowledg_disabl',
  'disabl_pretend',
  'pretend_exist',
  'exist_*',
  '*_tell',
  'tell_look',
  'look_job',
  'job_hed',
  'hed_blame',
  'blame_peopl',
  'peopl_purpos',
  'purpos_refus',
  'refus_employ',
  'employ_say',
  'say_look',
  'look_like',
  'like_lack',
  'lack_beneaath',
  'beneaath_*',
  '*_come',
  'come_humbl',
  'humbl_background',
  'background_longer',
  'longer_contact',
  'contact_famili',
  'famili_due',
  'due_abandon',
  'abandon_issu',
  'issu_friend',
  'friend_lean',
  'lean_*',
  '*_sinc',
  'sinc_someon',
  'someon_ask',
  'ask_answer',
  'answer_almost',
  'almost_%',
  '%_chore',
  'chore_%',
  '%_reason',
  'reason_disabl',
  'disabl_*',
  '*_final',
  'final_pay',
  'pay_rent',
  'rent_bill',
  'bill_groceri',
  'groceri_med',
  'med_transport',
  'transport_well',
  'well_need',
  'need_card',
  'card_constantli',
  'ill_prefac_say',
  'prefac_say_boyfriend',
  'say_boyfriend_togeth',
  'boyfriend_togeth_year',
  'togeth_year_half',
  'year_half_ive',
  'half_ive_jump',
  'ive_jump_one',
  'jump_one_job',
  'one_job_anoth',
  'job_anoth_unemploy',
  'anoth_unemploy_due',
  'unemploy_due_health',
  'due_health_issu',
  'health_issu_affect',
  'issu_affect_perform',
  'affect_perform_work',
  'perform_work_usual',
  'work_usual_im',
  'usual_im_one',
  'im_one_handl',
  'one_handl_rent',
  'handl_rent_bill',
  'rent_bill_groceri',
  'bill_groceri_etc',
  'groceri_etc_use',
  'etc_use_credit',
  'use_credit_card',
  'credit_card_make',
  'card_make_purchas',
  'make_purchas_want',
  'purchas_want_last',
  'want_last_week',
  'last_week_boyfriend',
  'week_boyfriend_nowher',
  'boyfriend_nowher_ask',
  'nowher_ask_credit',
  'ask_credit_card',
  'credit_card_ask',
  'card_ask_sinc',
  'ask_sinc_im',
  'sinc_im_one',
  'im_one_handl',
  'one_handl_payment',
  'handl_payment_supermarket',
  'payment_supermarket_trip',
  'supermarket_trip_told',
  'trip_told_want',
  'told_want_buy',
  'want_buy_food',
  'buy_food_agre',
  'food_agre_let',
  'agre_let_take',
  'let_take_told',
  'take_told_return',
  'told_return_later',
  'return_later_got',
  'later_got_back',
  'got_back_later',
  'back_later_ask',
  'later_ask_credit',
  'ask_credit_card',
  'credit_card_like',
  'card_like_credit',
  'like_credit_card',
  'credit_card_thought',
  'card_thought_joke',
  'thought_joke_told',
  'joke_told_give',
  'told_give_back',
  'give_back_said',
  'back_said_hed',
  'said_hed_keep',
  'hed_keep_ask',
  'keep_ask_said',
  'ask_said_could',
  'said_could_start',
  'could_start_handl',
  'start_handl_pay',
  'handl_pay_stuff',
  'pay_stuff_behalf',
  'stuff_behalf_felt',
  'behalf_felt_uncomfort',
  'felt_uncomfort_said',
  'uncomfort_said_id',
  'said_id_rather',
  'id_rather_burden',
  'rather_burden_stuff',
  'burden_stuff_ask',
  'stuff_ask_hand',
  'ask_hand_credit',
  'hand_credit_card',
  'credit_card_refus',
  'card_refus_said',
  'refus_said_hell',
  'said_hell_keep',
  'hell_keep_sinc',
  'keep_sinc_much',
  'sinc_much_money',
  'much_money_anyway',
  'money_anyway_livid',
  'anyway_livid_tri',
  'livid_tri_argu',
  'tri_argu_told',
  'argu_told_trust',
  'told_trust_let',
  'trust_let_keep',
  'let_keep_swore',
  'keep_swore_spend',
  'swore_spend_penni',
  'spend_penni_next',
  'penni_next_morn',
  'next_morn_went',
  'morn_went_cancel',
  'went_cancel_regist',
  'cancel_regist_new',
  'regist_new_one',
  'new_one_mustv',
  'one_mustv_tri',
  'mustv_tri_use',
  'tri_use_call',
  'use_call_confus',
  'call_confus_ask',
  'confus_ask_credit',
  'ask_credit_card',
  'credit_card_valid',
  'card_valid_anymor',
  'valid_anymor_told',
  'anymor_told_cancel',
  'told_cancel_regist',
  'cancel_regist_new',
  'regist_new_one',
  'new_one_lost',
  'one_lost_start',
  'lost_start_scold',
  'start_scold_say',
  'scold_say_believ',
  'say_believ_level',
  'believ_level_petti',
  'level_petti_kept',
  'petti_kept_trust',
  'kept_trust_financ',
  'trust_financ_financi',
  'financ_financi_abus',
  'financi_abus_becom',
  'abus_becom_late',
  'becom_late_hung',
  'late_hung_argument',
  'hung_argument_continu',
  'argument_continu_home',
  'continu_home_call',
  'home_call_paranoid',
  'call_paranoid_unreason',
  'paranoid_unreason_start',
  'unreason_start_cold',
  'start_cold_shoulder',
  'cold_shoulder_sulk',
  'shoulder_sulk_day',
  'sulk_day_feel',
  'day_feel_like',
  'feel_like_hurt',
  'like_hurt_feel',
  'hurt_feel_show',
  'feel_show_amount',
  'show_amount_distrust',
  'amount_distrust_toward',
  'distrust_toward_aita',
  'toward_aita_canel',
  'aita_canel_credit',
  'canel_credit_card',
  'credit_card_edit',
  'card_edit_ad',
  'edit_ad_info',
  'ad_info_*',
  'info_*_like',
  '*_like_said',
  'like_said_physic',
  'said_physic_disabl',
  'physic_disabl_limit',
  'disabl_limit_opportun',
  'limit_opportun_work',
  'opportun_work_receiv',
  'work_receiv_disabl',
  'receiv_disabl_benefit',
  'disabl_benefit_want',
  'benefit_want_refus',
  'want_refus_acknowledg',
  'refus_acknowledg_disabl',
  'acknowledg_disabl_pretend',
  'disabl_pretend_exist',
  'pretend_exist_*',
  'exist_*_tell',
  '*_tell_look',
  'tell_look_job',
  'look_job_hed',
  'job_hed_blame',
  'hed_blame_peopl',
  'blame_peopl_purpos',
  'peopl_purpos_refus',
  'purpos_refus_employ',
  'refus_employ_say',
  'employ_say_look',
  'say_look_like',
  'look_like_lack',
  'like_lack_beneaath',
  'lack_beneaath_*',
  'beneaath_*_come',
  '*_come_humbl',
  'come_humbl_background',
  'humbl_background_longer',
  'background_longer_contact',
  'longer_contact_famili',
  'contact_famili_due',
  'famili_due_abandon',
  'due_abandon_issu',
  'abandon_issu_friend',
  'issu_friend_lean',
  'friend_lean_*',
  'lean_*_sinc',
  '*_sinc_someon',
  'sinc_someon_ask',
  'someon_ask_answer',
  'ask_answer_almost',
  'answer_almost_%',
  'almost_%_chore',
  '%_chore_%',
  'chore_%_reason',
  '%_reason_disabl',
  'reason_disabl_*',
  'disabl_*_final',
  '*_final_pay',
  'final_pay_rent',
  'pay_rent_bill',
  'rent_bill_groceri',
  'bill_groceri_med',
  'groceri_med_transport',
  'med_transport_well',
  'transport_well_need',
  'well_need_card',
  'need_card_constantli'],
 ['grandpar',
  'lot',
  'next',
  'hous',
  'use',
  'yard',
  'space',
  'sister',
  'born',
  'grandpa',
  'knock',
  'old',
  'shed',
  'empti',
  'lot',
  'built',
  'playground',
  'us',
  'everyth',
  'made',
  'two',
  'hand',
  'kid',
  'dream',
  'play',
  'chanc',
  'got',
  'grew',
  'let',
  'kid',
  'neighborhood',
  'use',
  'place',
  'play',
  'issu',
  'year',
  'later',
  'pass',
  'hous',
  'went',
  'mom',
  'found',
  'im',
  'expect',
  'husband',
  'andr',
  'start',
  'serious',
  'look',
  'hous',
  'wed',
  'half',
  'tri',
  'mom',
  'suggest',
  'buy',
  'grandpar',
  'hous',
  'sinc',
  'know',
  'good',
  'place',
  'us',
  'buy',
  'would',
  'keep',
  'famili',
  'still',
  'good',
  'shape',
  'hoa',
  'close',
  'good',
  'school',
  'bought',
  'steal',
  'move',
  'asap',
  'right',
  'away',
  'notic',
  'parent',
  'hang',
  'playground',
  'kid',
  'mind',
  'first',
  'use',
  'chanc',
  'introduc',
  'everyon',
  'love',
  'younger',
  'id',
  'expect',
  'seem',
  'bunch',
  'coupl',
  'kid',
  'taken',
  'street',
  'past',
  'year',
  'problem',
  'aros',
  'neighbor',
  'witch',
  'nw',
  'brought',
  'kid',
  'one',
  'afternoon',
  'happen',
  'window',
  'saw',
  'flash',
  'red',
  'outsid',
  'kid',
  'red',
  'shirt',
  'liter',
  'stand',
  'roof',
  'one',
  'stori',
  'playhous',
  'almost',
  'feet',
  'ground',
  'ran',
  'outsid',
  'think',
  'alon',
  'said',
  'need',
  'get',
  'right',
  'nw',
  'storm',
  'know',
  'yell',
  'fuck',
  'tell',
  'kid',
  'shit',
  'ask',
  'mom',
  'get',
  'ye',
  'ask',
  'make',
  'son',
  'get',
  'got',
  'hurt',
  'argu',
  'say',
  'make',
  'anyth',
  'told',
  'properti',
  'ye',
  'could',
  'kid',
  'fell',
  'thank',
  'halfway',
  'onto',
  'grass',
  'still',
  'wail',
  'like',
  'die',
  'fine',
  'got',
  'without',
  'issu',
  'ran',
  'nw',
  'pick',
  'said',
  'hed',
  'hurt',
  'shed',
  'su',
  'threaten',
  'cop',
  'leav',
  'flip',
  'call',
  'gin',
  'jockey',
  'random',
  'af',
  'drink',
  'let',
  'alon',
  'gin',
  'left',
  'andr',
  'worri',
  'peopl',
  'might',
  'tri',
  'sue',
  'us',
  'kid',
  'got',
  'hurt',
  'land',
  'even',
  'thought',
  'put',
  'fenc',
  'parent',
  'came',
  'ask',
  'fenc',
  'told',
  'thank',
  'nw',
  'heard',
  'shun',
  'parent',
  'none',
  'let',
  'kid',
  'play',
  'feel',
  'guilti',
  'son',
  'get',
  'punish',
  'action',
  'mayb',
  'say',
  'want',
  'fenc',
  'instead',
  'tell',
  'nw',
  'would',
  'kinder',
  'aita',
  'grandpar_lot',
  'lot_next',
  'next_hous',
  'hous_use',
  'use_yard',
  'yard_space',
  'space_sister',
  'sister_born',
  'born_grandpa',
  'grandpa_knock',
  'knock_old',
  'old_shed',
  'shed_empti',
  'empti_lot',
  'lot_built',
  'built_playground',
  'playground_us',
  'us_everyth',
  'everyth_made',
  'made_two',
  'two_hand',
  'hand_kid',
  'kid_dream',
  'dream_play',
  'play_chanc',
  'chanc_got',
  'got_grew',
  'grew_let',
  'let_kid',
  'kid_neighborhood',
  'neighborhood_use',
  'use_place',
  'place_play',
  'play_issu',
  'issu_year',
  'year_later',
  'later_pass',
  'pass_hous',
  'hous_went',
  'went_mom',
  'mom_found',
  'found_im',
  'im_expect',
  'expect_husband',
  'husband_andr',
  'andr_start',
  'start_serious',
  'serious_look',
  'look_hous',
  'hous_wed',
  'wed_half',
  'half_tri',
  'tri_mom',
  'mom_suggest',
  'suggest_buy',
  'buy_grandpar',
  'grandpar_hous',
  'hous_sinc',
  'sinc_know',
  'know_good',
  'good_place',
  'place_us',
  'us_buy',
  'buy_would',
  'would_keep',
  'keep_famili',
  'famili_still',
  'still_good',
  'good_shape',
  'shape_hoa',
  'hoa_close',
  'close_good',
  'good_school',
  'school_bought',
  'bought_steal',
  'steal_move',
  'move_asap',
  'asap_right',
  'right_away',
  'away_notic',
  'notic_parent',
  'parent_hang',
  'hang_playground',
  'playground_kid',
  'kid_mind',
  'mind_first',
  'first_use',
  'use_chanc',
  'chanc_introduc',
  'introduc_everyon',
  'everyon_love',
  'love_younger',
  'younger_id',
  'id_expect',
  'expect_seem',
  'seem_bunch',
  'bunch_coupl',
  'coupl_kid',
  'kid_taken',
  'taken_street',
  'street_past',
  'past_year',
  'year_problem',
  'problem_aros',
  'aros_neighbor',
  'neighbor_witch',
  'witch_nw',
  'nw_brought',
  'brought_kid',
  'kid_one',
  'one_afternoon',
  'afternoon_happen',
  'happen_window',
  'window_saw',
  'saw_flash',
  'flash_red',
  'red_outsid',
  'outsid_kid',
  'kid_red',
  'red_shirt',
  'shirt_liter',
  'liter_stand',
  'stand_roof',
  'roof_one',
  'one_stori',
  'stori_playhous',
  'playhous_almost',
  'almost_feet',
  'feet_ground',
  'ground_ran',
  'ran_outsid',
  'outsid_think',
  'think_alon',
  'alon_said',
  'said_need',
  'need_get',
  'get_right',
  'right_nw',
  'nw_storm',
  'storm_know',
  'know_yell',
  'yell_fuck',
  'fuck_tell',
  'tell_kid',
  'kid_shit',
  'shit_ask',
  'ask_mom',
  'mom_get',
  'get_ye',
  'ye_ask',
  'ask_make',
  'make_son',
  'son_get',
  'get_got',
  'got_hurt',
  'hurt_argu',
  'argu_say',
  'say_make',
  'make_anyth',
  'anyth_told',
  'told_properti',
  'properti_ye',
  'ye_could',
  'could_kid',
  'kid_fell',
  'fell_thank',
  'thank_halfway',
  'halfway_onto',
  'onto_grass',
  'grass_still',
  'still_wail',
  'wail_like',
  'like_die',
  'die_fine',
  'fine_got',
  'got_without',
  'without_issu',
  'issu_ran',
  'ran_nw',
  'nw_pick',
  'pick_said',
  'said_hed',
  'hed_hurt',
  'hurt_shed',
  'shed_su',
  'su_threaten',
  'threaten_cop',
  'cop_leav',
  'leav_flip',
  'flip_call',
  'call_gin',
  'gin_jockey',
  'jockey_random',
  'random_af',
  'af_drink',
  'drink_let',
  'let_alon',
  'alon_gin',
  'gin_left',
  'left_andr',
  'andr_worri',
  'worri_peopl',
  'peopl_might',
  'might_tri',
  'tri_sue',
  'sue_us',
  'us_kid',
  'kid_got',
  'got_hurt',
  'hurt_land',
  'land_even',
  'even_thought',
  'thought_put',
  'put_fenc',
  'fenc_parent',
  'parent_came',
  'came_ask',
  'ask_fenc',
  'fenc_told',
  'told_thank',
  'thank_nw',
  'nw_heard',
  'heard_shun',
  'shun_parent',
  'parent_none',
  'none_let',
  'let_kid',
  'kid_play',
  'play_feel',
  'feel_guilti',
  'guilti_son',
  'son_get',
  'get_punish',
  'punish_action',
  'action_mayb',
  'mayb_say',
  'say_want',
  'want_fenc',
  'fenc_instead',
  'instead_tell',
  'tell_nw',
  'nw_would',
  'would_kinder',
  'kinder_aita',
  'grandpar_lot_next',
  'lot_next_hous',
  'next_hous_use',
  'hous_use_yard',
  'use_yard_space',
  'yard_space_sister',
  'space_sister_born',
  'sister_born_grandpa',
  'born_grandpa_knock',
  'grandpa_knock_old',
  'knock_old_shed',
  'old_shed_empti',
  'shed_empti_lot',
  'empti_lot_built',
  'lot_built_playground',
  'built_playground_us',
  'playground_us_everyth',
  'us_everyth_made',
  'everyth_made_two',
  'made_two_hand',
  'two_hand_kid',
  'hand_kid_dream',
  'kid_dream_play',
  'dream_play_chanc',
  'play_chanc_got',
  'chanc_got_grew',
  'got_grew_let',
  'grew_let_kid',
  'let_kid_neighborhood',
  'kid_neighborhood_use',
  'neighborhood_use_place',
  'use_place_play',
  'place_play_issu',
  'play_issu_year',
  'issu_year_later',
  'year_later_pass',
  'later_pass_hous',
  'pass_hous_went',
  'hous_went_mom',
  'went_mom_found',
  'mom_found_im',
  'found_im_expect',
  'im_expect_husband',
  'expect_husband_andr',
  'husband_andr_start',
  'andr_start_serious',
  'start_serious_look',
  'serious_look_hous',
  'look_hous_wed',
  'hous_wed_half',
  'wed_half_tri',
  'half_tri_mom',
  'tri_mom_suggest',
  'mom_suggest_buy',
  'suggest_buy_grandpar',
  'buy_grandpar_hous',
  'grandpar_hous_sinc',
  'hous_sinc_know',
  'sinc_know_good',
  'know_good_place',
  'good_place_us',
  'place_us_buy',
  'us_buy_would',
  'buy_would_keep',
  'would_keep_famili',
  'keep_famili_still',
  'famili_still_good',
  'still_good_shape',
  'good_shape_hoa',
  'shape_hoa_close',
  'hoa_close_good',
  'close_good_school',
  'good_school_bought',
  'school_bought_steal',
  'bought_steal_move',
  'steal_move_asap',
  'move_asap_right',
  'asap_right_away',
  'right_away_notic',
  'away_notic_parent',
  'notic_parent_hang',
  'parent_hang_playground',
  'hang_playground_kid',
  'playground_kid_mind',
  'kid_mind_first',
  'mind_first_use',
  'first_use_chanc',
  'use_chanc_introduc',
  'chanc_introduc_everyon',
  'introduc_everyon_love',
  'everyon_love_younger',
  'love_younger_id',
  'younger_id_expect',
  'id_expect_seem',
  'expect_seem_bunch',
  'seem_bunch_coupl',
  'bunch_coupl_kid',
  'coupl_kid_taken',
  'kid_taken_street',
  'taken_street_past',
  'street_past_year',
  'past_year_problem',
  'year_problem_aros',
  'problem_aros_neighbor',
  'aros_neighbor_witch',
  'neighbor_witch_nw',
  'witch_nw_brought',
  'nw_brought_kid',
  'brought_kid_one',
  'kid_one_afternoon',
  'one_afternoon_happen',
  'afternoon_happen_window',
  'happen_window_saw',
  'window_saw_flash',
  'saw_flash_red',
  'flash_red_outsid',
  'red_outsid_kid',
  'outsid_kid_red',
  'kid_red_shirt',
  'red_shirt_liter',
  'shirt_liter_stand',
  'liter_stand_roof',
  'stand_roof_one',
  'roof_one_stori',
  'one_stori_playhous',
  'stori_playhous_almost',
  'playhous_almost_feet',
  'almost_feet_ground',
  'feet_ground_ran',
  'ground_ran_outsid',
  'ran_outsid_think',
  'outsid_think_alon',
  'think_alon_said',
  'alon_said_need',
  'said_need_get',
  'need_get_right',
  'get_right_nw',
  'right_nw_storm',
  'nw_storm_know',
  'storm_know_yell',
  'know_yell_fuck',
  'yell_fuck_tell',
  'fuck_tell_kid',
  'tell_kid_shit',
  'kid_shit_ask',
  'shit_ask_mom',
  'ask_mom_get',
  'mom_get_ye',
  'get_ye_ask',
  'ye_ask_make',
  'ask_make_son',
  'make_son_get',
  'son_get_got',
  'get_got_hurt',
  'got_hurt_argu',
  'hurt_argu_say',
  'argu_say_make',
  'say_make_anyth',
  'make_anyth_told',
  'anyth_told_properti',
  'told_properti_ye',
  'properti_ye_could',
  'ye_could_kid',
  'could_kid_fell',
  'kid_fell_thank',
  'fell_thank_halfway',
  'thank_halfway_onto',
  'halfway_onto_grass',
  'onto_grass_still',
  'grass_still_wail',
  'still_wail_like',
  'wail_like_die',
  'like_die_fine',
  'die_fine_got',
  'fine_got_without',
  'got_without_issu',
  'without_issu_ran',
  'issu_ran_nw',
  'ran_nw_pick',
  'nw_pick_said',
  'pick_said_hed',
  'said_hed_hurt',
  'hed_hurt_shed',
  'hurt_shed_su',
  'shed_su_threaten',
  'su_threaten_cop',
  'threaten_cop_leav',
  'cop_leav_flip',
  'leav_flip_call',
  'flip_call_gin',
  'call_gin_jockey',
  'gin_jockey_random',
  'jockey_random_af',
  'random_af_drink',
  'af_drink_let',
  'drink_let_alon',
  'let_alon_gin',
  'alon_gin_left',
  'gin_left_andr',
  'left_andr_worri',
  'andr_worri_peopl',
  'worri_peopl_might',
  'peopl_might_tri',
  'might_tri_sue',
  'tri_sue_us',
  'sue_us_kid',
  'us_kid_got',
  'kid_got_hurt',
  'got_hurt_land',
  'hurt_land_even',
  'land_even_thought',
  'even_thought_put',
  'thought_put_fenc',
  'put_fenc_parent',
  'fenc_parent_came',
  'parent_came_ask',
  'came_ask_fenc',
  'ask_fenc_told',
  'fenc_told_thank',
  'told_thank_nw',
  'thank_nw_heard',
  'nw_heard_shun',
  'heard_shun_parent',
  'shun_parent_none',
  'parent_none_let',
  'none_let_kid',
  'let_kid_play',
  'kid_play_feel',
  'play_feel_guilti',
  'feel_guilti_son',
  'guilti_son_get',
  'son_get_punish',
  'get_punish_action',
  'punish_action_mayb',
  'action_mayb_say',
  'mayb_say_want',
  'say_want_fenc',
  'want_fenc_instead',
  'fenc_instead_tell',
  'instead_tell_nw',
  'tell_nw_would',
  'nw_would_kinder',
  'would_kinder_aita'],
 ['husband',
  'togeth',
  'year',
  'marri',
  'month',
  'relationship',
  'without',
  'problem',
  'week',
  'wed',
  'husband',
  'close',
  'friend',
  'woman',
  'let',
  'call',
  'ava',
  'known',
  'sinc',
  'sophomor',
  'high',
  'school',
  'never',
  'problem',
  'ava',
  'thought',
  'obviou',
  'husband',
  'friend',
  'mean',
  'long-term',
  'boyfriend',
  'felt',
  'jealousi',
  'anyth',
  'actual',
  'got',
  'along',
  'ava',
  'pretti',
  'well',
  'hung',
  'togeth',
  'regularli',
  'husband',
  'drop',
  'bombshel',
  'week',
  'got',
  'marri',
  'rememb',
  'sat',
  'told',
  'ava',
  'reveal',
  'feel',
  'tri',
  'convinc',
  'get',
  'marri',
  'even',
  'broke',
  'boyfriend',
  'year',
  'prove',
  'seriou',
  'husband',
  'husband',
  'agre',
  'cut',
  'uninvit',
  'wed',
  'neither',
  'one',
  'us',
  'contact',
  'sinc',
  'husband',
  'th',
  'birthday',
  'yesterday',
  'want',
  'dinner',
  'famili',
  'friend',
  'restaur',
  'eat',
  'sudden',
  'ava',
  'walk',
  'walk',
  'tabl',
  'say',
  'mean',
  'intrud',
  'get',
  'dinner',
  'saw',
  'us',
  'wish',
  'husband',
  'happi',
  'birthday',
  'expect',
  'leav',
  'husband',
  'ask',
  'want',
  'join',
  'us',
  'look',
  'husband',
  'like',
  'fuck',
  'im',
  'visibl',
  'uncomfort',
  'irrit',
  'stand',
  'tell',
  'ava',
  'seat',
  'walk',
  'get',
  'uber',
  'home',
  'want',
  'absolut',
  'noth',
  'husband',
  'come',
  'home',
  'almost',
  'two',
  'hour',
  'later',
  'immedi',
  'start',
  'argument',
  'tell',
  'overreact',
  'act',
  'immatur',
  'ask',
  'ask',
  'ava',
  'eat',
  'us',
  'thought',
  'page',
  'repli',
  'nice',
  'think',
  'would',
  'big',
  'deal',
  'long',
  'time',
  'sinc',
  'seen',
  'probabl',
  'feel',
  'anymor',
  'tell',
  'ruin',
  'birthday',
  'im',
  'still',
  'upset',
  'think',
  'im',
  'one',
  'wrong',
  'mean',
  'woman',
  'liter',
  'tri',
  'steal',
  'partner',
  'aita',
  'husband_togeth',
  'togeth_year',
  'year_marri',
  'marri_month',
  'month_relationship',
  'relationship_without',
  'without_problem',
  'problem_week',
  'week_wed',
  'wed_husband',
  'husband_close',
  'close_friend',
  'friend_woman',
  'woman_let',
  'let_call',
  'call_ava',
  'ava_known',
  'known_sinc',
  'sinc_sophomor',
  'sophomor_high',
  'high_school',
  'school_never',
  'never_problem',
  'problem_ava',
  'ava_thought',
  'thought_obviou',
  'obviou_husband',
  'husband_friend',
  'friend_mean',
  'mean_long-term',
  'long-term_boyfriend',
  'boyfriend_felt',
  'felt_jealousi',
  'jealousi_anyth',
  'anyth_actual',
  'actual_got',
  'got_along',
  'along_ava',
  'ava_pretti',
  'pretti_well',
  'well_hung',
  'hung_togeth',
  'togeth_regularli',
  'regularli_husband',
  'husband_drop',
  'drop_bombshel',
  'bombshel_week',
  'week_got',
  'got_marri',
  'marri_rememb',
  'rememb_sat',
  'sat_told',
  'told_ava',
  'ava_reveal',
  'reveal_feel',
  'feel_tri',
  'tri_convinc',
  'convinc_get',
  'get_marri',
  'marri_even',
  'even_broke',
  'broke_boyfriend',
  'boyfriend_year',
  'year_prove',
  'prove_seriou',
  'seriou_husband',
  'husband_husband',
  'husband_agre',
  'agre_cut',
  'cut_uninvit',
  'uninvit_wed',
  'wed_neither',
  'neither_one',
  'one_us',
  'us_contact',
  'contact_sinc',
  'sinc_husband',
  'husband_th',
  'th_birthday',
  'birthday_yesterday',
  'yesterday_want',
  'want_dinner',
  'dinner_famili',
  'famili_friend',
  'friend_restaur',
  'restaur_eat',
  'eat_sudden',
  'sudden_ava',
  'ava_walk',
  'walk_walk',
  'walk_tabl',
  'tabl_say',
  'say_mean',
  'mean_intrud',
  'intrud_get',
  'get_dinner',
  'dinner_saw',
  'saw_us',
  'us_wish',
  'wish_husband',
  'husband_happi',
  'happi_birthday',
  'birthday_expect',
  'expect_leav',
  'leav_husband',
  'husband_ask',
  'ask_want',
  'want_join',
  'join_us',
  'us_look',
  'look_husband',
  'husband_like',
  'like_fuck',
  'fuck_im',
  'im_visibl',
  'visibl_uncomfort',
  'uncomfort_irrit',
  'irrit_stand',
  'stand_tell',
  'tell_ava',
  'ava_seat',
  'seat_walk',
  'walk_get',
  'get_uber',
  'uber_home',
  'home_want',
  'want_absolut',
  'absolut_noth',
  'noth_husband',
  'husband_come',
  'come_home',
  'home_almost',
  'almost_two',
  'two_hour',
  'hour_later',
  'later_immedi',
  'immedi_start',
  'start_argument',
  'argument_tell',
  'tell_overreact',
  'overreact_act',
  'act_immatur',
  'immatur_ask',
  'ask_ask',
  'ask_ava',
  'ava_eat',
  'eat_us',
  'us_thought',
  'thought_page',
  'page_repli',
  'repli_nice',
  'nice_think',
  'think_would',
  'would_big',
  'big_deal',
  'deal_long',
  'long_time',
  'time_sinc',
  'sinc_seen',
  'seen_probabl',
  'probabl_feel',
  'feel_anymor',
  'anymor_tell',
  'tell_ruin',
  'ruin_birthday',
  'birthday_im',
  'im_still',
  'still_upset',
  'upset_think',
  'think_im',
  'im_one',
  'one_wrong',
  'wrong_mean',
  'mean_woman',
  'woman_liter',
  'liter_tri',
  'tri_steal',
  'steal_partner',
  'partner_aita',
  'husband_togeth_year',
  'togeth_year_marri',
  'year_marri_month',
  'marri_month_relationship',
  'month_relationship_without',
  'relationship_without_problem',
  'without_problem_week',
  'problem_week_wed',
  'week_wed_husband',
  'wed_husband_close',
  'husband_close_friend',
  'close_friend_woman',
  'friend_woman_let',
  'woman_let_call',
  'let_call_ava',
  'call_ava_known',
  'ava_known_sinc',
  'known_sinc_sophomor',
  'sinc_sophomor_high',
  'sophomor_high_school',
  'high_school_never',
  'school_never_problem',
  'never_problem_ava',
  'problem_ava_thought',
  'ava_thought_obviou',
  'thought_obviou_husband',
  'obviou_husband_friend',
  'husband_friend_mean',
  'friend_mean_long-term',
  'mean_long-term_boyfriend',
  'long-term_boyfriend_felt',
  'boyfriend_felt_jealousi',
  'felt_jealousi_anyth',
  'jealousi_anyth_actual',
  'anyth_actual_got',
  'actual_got_along',
  'got_along_ava',
  'along_ava_pretti',
  'ava_pretti_well',
  'pretti_well_hung',
  'well_hung_togeth',
  'hung_togeth_regularli',
  'togeth_regularli_husband',
  'regularli_husband_drop',
  'husband_drop_bombshel',
  'drop_bombshel_week',
  'bombshel_week_got',
  'week_got_marri',
  'got_marri_rememb',
  'marri_rememb_sat',
  'rememb_sat_told',
  'sat_told_ava',
  'told_ava_reveal',
  'ava_reveal_feel',
  'reveal_feel_tri',
  'feel_tri_convinc',
  'tri_convinc_get',
  'convinc_get_marri',
  'get_marri_even',
  'marri_even_broke',
  'even_broke_boyfriend',
  'broke_boyfriend_year',
  'boyfriend_year_prove',
  'year_prove_seriou',
  'prove_seriou_husband',
  'seriou_husband_husband',
  'husband_husband_agre',
  'husband_agre_cut',
  'agre_cut_uninvit',
  'cut_uninvit_wed',
  'uninvit_wed_neither',
  'wed_neither_one',
  'neither_one_us',
  'one_us_contact',
  'us_contact_sinc',
  'contact_sinc_husband',
  'sinc_husband_th',
  'husband_th_birthday',
  'th_birthday_yesterday',
  'birthday_yesterday_want',
  'yesterday_want_dinner',
  'want_dinner_famili',
  'dinner_famili_friend',
  'famili_friend_restaur',
  'friend_restaur_eat',
  'restaur_eat_sudden',
  'eat_sudden_ava',
  'sudden_ava_walk',
  'ava_walk_walk',
  'walk_walk_tabl',
  'walk_tabl_say',
  'tabl_say_mean',
  'say_mean_intrud',
  'mean_intrud_get',
  'intrud_get_dinner',
  'get_dinner_saw',
  'dinner_saw_us',
  'saw_us_wish',
  'us_wish_husband',
  'wish_husband_happi',
  'husband_happi_birthday',
  'happi_birthday_expect',
  'birthday_expect_leav',
  'expect_leav_husband',
  'leav_husband_ask',
  'husband_ask_want',
  'ask_want_join',
  'want_join_us',
  'join_us_look',
  'us_look_husband',
  'look_husband_like',
  'husband_like_fuck',
  'like_fuck_im',
  'fuck_im_visibl',
  'im_visibl_uncomfort',
  'visibl_uncomfort_irrit',
  'uncomfort_irrit_stand',
  'irrit_stand_tell',
  'stand_tell_ava',
  'tell_ava_seat',
  'ava_seat_walk',
  'seat_walk_get',
  'walk_get_uber',
  'get_uber_home',
  'uber_home_want',
  'home_want_absolut',
  'want_absolut_noth',
  'absolut_noth_husband',
  'noth_husband_come',
  'husband_come_home',
  'come_home_almost',
  'home_almost_two',
  'almost_two_hour',
  'two_hour_later',
  'hour_later_immedi',
  'later_immedi_start',
  'immedi_start_argument',
  'start_argument_tell',
  'argument_tell_overreact',
  'tell_overreact_act',
  'overreact_act_immatur',
  'act_immatur_ask',
  'immatur_ask_ask',
  'ask_ask_ava',
  'ask_ava_eat',
  'ava_eat_us',
  'eat_us_thought',
  'us_thought_page',
  'thought_page_repli',
  'page_repli_nice',
  'repli_nice_think',
  'nice_think_would',
  'think_would_big',
  'would_big_deal',
  'big_deal_long',
  'deal_long_time',
  'long_time_sinc',
  'time_sinc_seen',
  'sinc_seen_probabl',
  'seen_probabl_feel',
  'probabl_feel_anymor',
  'feel_anymor_tell',
  'anymor_tell_ruin',
  'tell_ruin_birthday',
  'ruin_birthday_im',
  'birthday_im_still',
  'im_still_upset',
  'still_upset_think',
  'upset_think_im',
  'think_im_one',
  'im_one_wrong',
  'one_wrong_mean',
  'wrong_mean_woman',
  'mean_woman_liter',
  'woman_liter_tri',
  'liter_tri_steal',
  'tri_steal_partner',
  'steal_partner_aita'],
 ['son',
  'year',
  'old',
  'recent',
  'attend',
  'friend',
  'th',
  'birthday',
  'parti',
  'friend',
  'best',
  'friend',
  'son',
  'let',
  'son',
  'anymuch',
  'junk',
  'food',
  'usual',
  'bring',
  'snack',
  'incid',
  'carrot',
  'stick',
  'ranch',
  'event',
  'lot',
  'sugari',
  'food',
  'best',
  'friend',
  'bake',
  'lot',
  'made',
  'special',
  'chocol',
  'cake',
  'son',
  'birthday',
  'come',
  'son',
  'let',
  'cake',
  'person',
  'prefer',
  'health',
  'allergi',
  'reason',
  'diabet',
  'gluten',
  'free',
  'son',
  'know',
  'allow',
  'cake',
  'addit',
  'told',
  'best',
  'friend',
  'parti',
  'friend',
  'appar',
  'got',
  'upset',
  'told',
  'good',
  'cake',
  'bad',
  'like',
  'say',
  'mom',
  'made',
  'birthday',
  'cake',
  'son',
  'ate',
  'cake',
  'got',
  'sugar',
  'rush',
  'crash',
  'make',
  'cranki',
  'rest',
  'day',
  'left',
  'parti',
  'told',
  'friend',
  'need',
  'kind',
  'consequ',
  'son',
  'teach',
  'peer',
  'pressur',
  'children',
  'eat',
  'thing',
  'theyr',
  'allow',
  'said',
  'issu',
  'allergi',
  'health',
  'sorri',
  'son',
  'cranki',
  'punish',
  'son',
  'talk',
  'birthday',
  'say',
  'also',
  'shell',
  'shell',
  'watch',
  'closelymak',
  'sure',
  'husband',
  'futur',
  'well',
  'chat',
  'anoth',
  'day',
  'respect',
  'food',
  'habit',
  'love',
  'friend',
  'histor',
  'husband',
  'alway',
  'said',
  'ye',
  'son',
  'given',
  'consequ',
  'anyth',
  'us',
  'present',
  'parti',
  'see',
  'share',
  'cake',
  'outsid',
  'eat',
  'backyard',
  'father',
  'parent',
  'supervis',
  'clean',
  'issu',
  'anyon',
  'go',
  'behind',
  'anyon',
  'back',
  'teach',
  'children',
  'boundari',
  'respect',
  'let',
  'son',
  'stay',
  'rest',
  'parti',
  'friend',
  'like',
  'ruin',
  'day',
  'aita',
  'upset',
  'friend',
  'son',
  'fact',
  'punish',
  'son',
  'pressur',
  'son',
  'eat',
  'cake',
  'son_year',
  'year_old',
  'old_recent',
  'recent_attend',
  'attend_friend',
  'friend_th',
  'th_birthday',
  'birthday_parti',
  'parti_friend',
  'friend_best',
  'best_friend',
  'friend_son',
  'son_let',
  'let_son',
  'son_anymuch',
  'anymuch_junk',
  'junk_food',
  'food_usual',
  'usual_bring',
  'bring_snack',
  'snack_incid',
  'incid_carrot',
  'carrot_stick',
  'stick_ranch',
  'ranch_event',
  'event_lot',
  'lot_sugari',
  'sugari_food',
  'food_best',
  'best_friend',
  'friend_bake',
  'bake_lot',
  'lot_made',
  'made_special',
  'special_chocol',
  'chocol_cake',
  'cake_son',
  'son_birthday',
  'birthday_come',
  'come_son',
  'son_let',
  'let_cake',
  'cake_person',
  'person_prefer',
  'prefer_health',
  'health_allergi',
  'allergi_reason',
  'reason_diabet',
  'diabet_gluten',
  'gluten_free',
  'free_son',
  'son_know',
  'know_allow',
  'allow_cake',
  'cake_addit',
  'addit_told',
  'told_best',
  'best_friend',
  'friend_parti',
  'parti_friend',
  'friend_appar',
  'appar_got',
  'got_upset',
  'upset_told',
  'told_good',
  'good_cake',
  'cake_bad',
  'bad_like',
  'like_say',
  'say_mom',
  'mom_made',
  'made_birthday',
  'birthday_cake',
  'cake_son',
  'son_ate',
  'ate_cake',
  'cake_got',
  'got_sugar',
  'sugar_rush',
  'rush_crash',
  'crash_make',
  'make_cranki',
  'cranki_rest',
  'rest_day',
  'day_left',
  'left_parti',
  'parti_told',
  'told_friend',
  'friend_need',
  'need_kind',
  'kind_consequ',
  'consequ_son',
  'son_teach',
  'teach_peer',
  'peer_pressur',
  'pressur_children',
  'children_eat',
  'eat_thing',
  'thing_theyr',
  'theyr_allow',
  'allow_said',
  'said_issu',
  'issu_allergi',
  'allergi_health',
  'health_sorri',
  'sorri_son',
  'son_cranki',
  'cranki_punish',
  'punish_son',
  'son_talk',
  'talk_birthday',
  'birthday_say',
  'say_also',
  'also_shell',
  'shell_shell',
  'shell_watch',
  'watch_closelymak',
  'closelymak_sure',
  'sure_husband',
  'husband_futur',
  'futur_well',
  'well_chat',
  'chat_anoth',
  'anoth_day',
  'day_respect',
  'respect_food',
  'food_habit',
  'habit_love',
  'love_friend',
  'friend_histor',
  'histor_husband',
  'husband_alway',
  'alway_said',
  'said_ye',
  'ye_son',
  'son_given',
  'given_consequ',
  'consequ_anyth',
  'anyth_us',
  'us_present',
  'present_parti',
  'parti_see',
  'see_share',
  'share_cake',
  'cake_outsid',
  'outsid_eat',
  'eat_backyard',
  'backyard_father',
  'father_parent',
  'parent_supervis',
  'supervis_clean',
  'clean_issu',
  'issu_anyon',
  'anyon_go',
  'go_behind',
  'behind_anyon',
  'anyon_back',
  'back_teach',
  'teach_children',
  'children_boundari',
  'boundari_respect',
  'respect_let',
  'let_son',
  'son_stay',
  'stay_rest',
  'rest_parti',
  'parti_friend',
  'friend_like',
  'like_ruin',
  'ruin_day',
  'day_aita',
  'aita_upset',
  'upset_friend',
  'friend_son',
  'son_fact',
  'fact_punish',
  'punish_son',
  'son_pressur',
  'pressur_son',
  'son_eat',
  'eat_cake',
  'son_year_old',
  'year_old_recent',
  'old_recent_attend',
  'recent_attend_friend',
  'attend_friend_th',
  'friend_th_birthday',
  'th_birthday_parti',
  'birthday_parti_friend',
  'parti_friend_best',
  'friend_best_friend',
  'best_friend_son',
  'friend_son_let',
  'son_let_son',
  'let_son_anymuch',
  'son_anymuch_junk',
  'anymuch_junk_food',
  'junk_food_usual',
  'food_usual_bring',
  'usual_bring_snack',
  'bring_snack_incid',
  'snack_incid_carrot',
  'incid_carrot_stick',
  'carrot_stick_ranch',
  'stick_ranch_event',
  'ranch_event_lot',
  'event_lot_sugari',
  'lot_sugari_food',
  'sugari_food_best',
  'food_best_friend',
  'best_friend_bake',
  'friend_bake_lot',
  'bake_lot_made',
  'lot_made_special',
  'made_special_chocol',
  'special_chocol_cake',
  'chocol_cake_son',
  'cake_son_birthday',
  'son_birthday_come',
  'birthday_come_son',
  'come_son_let',
  'son_let_cake',
  'let_cake_person',
  'cake_person_prefer',
  'person_prefer_health',
  'prefer_health_allergi',
  'health_allergi_reason',
  'allergi_reason_diabet',
  'reason_diabet_gluten',
  'diabet_gluten_free',
  'gluten_free_son',
  'free_son_know',
  'son_know_allow',
  'know_allow_cake',
  'allow_cake_addit',
  'cake_addit_told',
  'addit_told_best',
  'told_best_friend',
  'best_friend_parti',
  'friend_parti_friend',
  'parti_friend_appar',
  'friend_appar_got',
  'appar_got_upset',
  'got_upset_told',
  'upset_told_good',
  'told_good_cake',
  'good_cake_bad',
  'cake_bad_like',
  'bad_like_say',
  'like_say_mom',
  'say_mom_made',
  'mom_made_birthday',
  'made_birthday_cake',
  'birthday_cake_son',
  'cake_son_ate',
  'son_ate_cake',
  'ate_cake_got',
  'cake_got_sugar',
  'got_sugar_rush',
  'sugar_rush_crash',
  'rush_crash_make',
  'crash_make_cranki',
  'make_cranki_rest',
  'cranki_rest_day',
  'rest_day_left',
  'day_left_parti',
  'left_parti_told',
  'parti_told_friend',
  'told_friend_need',
  'friend_need_kind',
  'need_kind_consequ',
  'kind_consequ_son',
  'consequ_son_teach',
  'son_teach_peer',
  'teach_peer_pressur',
  'peer_pressur_children',
  'pressur_children_eat',
  'children_eat_thing',
  'eat_thing_theyr',
  'thing_theyr_allow',
  'theyr_allow_said',
  'allow_said_issu',
  'said_issu_allergi',
  'issu_allergi_health',
  'allergi_health_sorri',
  'health_sorri_son',
  'sorri_son_cranki',
  'son_cranki_punish',
  'cranki_punish_son',
  'punish_son_talk',
  'son_talk_birthday',
  'talk_birthday_say',
  'birthday_say_also',
  'say_also_shell',
  'also_shell_shell',
  'shell_shell_watch',
  'shell_watch_closelymak',
  'watch_closelymak_sure',
  'closelymak_sure_husband',
  'sure_husband_futur',
  'husband_futur_well',
  'futur_well_chat',
  'well_chat_anoth',
  'chat_anoth_day',
  'anoth_day_respect',
  'day_respect_food',
  'respect_food_habit',
  'food_habit_love',
  'habit_love_friend',
  'love_friend_histor',
  'friend_histor_husband',
  'histor_husband_alway',
  'husband_alway_said',
  'alway_said_ye',
  'said_ye_son',
  'ye_son_given',
  'son_given_consequ',
  'given_consequ_anyth',
  'consequ_anyth_us',
  'anyth_us_present',
  'us_present_parti',
  'present_parti_see',
  'parti_see_share',
  'see_share_cake',
  'share_cake_outsid',
  'cake_outsid_eat',
  'outsid_eat_backyard',
  'eat_backyard_father',
  'backyard_father_parent',
  'father_parent_supervis',
  'parent_supervis_clean',
  'supervis_clean_issu',
  'clean_issu_anyon',
  'issu_anyon_go',
  'anyon_go_behind',
  'go_behind_anyon',
  'behind_anyon_back',
  'anyon_back_teach',
  'back_teach_children',
  'teach_children_boundari',
  'children_boundari_respect',
  'boundari_respect_let',
  'respect_let_son',
  'let_son_stay',
  'son_stay_rest',
  'stay_rest_parti',
  'rest_parti_friend',
  'parti_friend_like',
  'friend_like_ruin',
  'like_ruin_day',
  'ruin_day_aita',
  'day_aita_upset',
  'aita_upset_friend',
  'upset_friend_son',
  'friend_son_fact',
  'son_fact_punish',
  'fact_punish_son',
  'punish_son_pressur',
  'son_pressur_son',
  'pressur_son_eat',
  'son_eat_cake'],
 ['sever',
  'year',
  'ago',
  'grandpar',
  'th',
  'anniversari',
  'parti',
  'set',
  'kinda',
  'like',
  'wed',
  'recept',
  'choic',
  'meal',
  'option',
  'differ',
  'german',
  'food',
  'steak',
  'like',
  'chose',
  'steak',
  'actual',
  'event',
  'someon',
  'come',
  'order',
  'mix',
  'end',
  'pickl',
  'wrap',
  'meat',
  'everyon',
  'insist',
  'pick',
  'tri',
  'gave',
  'dad',
  'like',
  'later',
  'realiz',
  'end',
  'person',
  'come',
  'food',
  'big',
  'deal',
  'well',
  'sinc',
  'becom',
  'joke',
  'famili',
  'theyv',
  'done',
  '-',
  'time',
  'sinc',
  'whenev',
  'weddingev',
  'food',
  'select',
  'grandma',
  'aliv',
  'yell',
  'dad',
  'sinc',
  'instig',
  'im',
  'sure',
  'get',
  'meal',
  'annoy',
  'make',
  'mad',
  'deal',
  'cousin',
  'got',
  'marri',
  'saturday',
  'week',
  'ago',
  'sent',
  'card',
  'pick',
  'meal',
  'sent',
  'dad',
  'mine',
  'sister',
  'dad',
  'hous',
  'one',
  'return',
  'envelop',
  'option',
  'steak',
  'chicken',
  'stuf',
  'portobello',
  'mushroom',
  'select',
  'steak',
  'specif',
  'told',
  'dad',
  'let',
  'damn',
  'steak',
  'instead',
  'mess',
  'said',
  'write',
  'anyth',
  'card',
  'fast',
  'forward',
  'saturday',
  'everyth',
  'go',
  'well',
  'wed',
  'nice',
  'sit',
  'dinner',
  'give',
  'mushroom',
  'stuf',
  'vegetarian',
  'pilaf',
  'said',
  'must',
  'mistak',
  'select',
  'beef',
  'server',
  'said',
  'star',
  'place',
  'card',
  'meant',
  'order',
  'vegetarian',
  'look',
  'dad',
  'laugh',
  'said',
  'call',
  'natali',
  'sent',
  'card',
  'told',
  'becam',
  'vegetarian',
  'want',
  'chang',
  'choic',
  'sister',
  'said',
  'dad',
  'think',
  'get',
  'old',
  'said',
  'said',
  'mess',
  'said',
  'said',
  'write',
  'card',
  'call',
  'eat',
  'mushroom',
  'said',
  'time',
  'pass',
  'dad',
  'said',
  'serious',
  'even',
  'go',
  'tri',
  'theyrejust',
  'mushroom',
  'hurt',
  'shook',
  'head',
  'hate',
  'mushroom',
  'im',
  'sick',
  'joke',
  'sat',
  'til',
  'peopl',
  'start',
  'get',
  'got',
  'went',
  'bar',
  'beer',
  'avoid',
  'dad',
  'til',
  'left',
  'sister',
  'later',
  'said',
  'least',
  'tri',
  'littl',
  'kinda',
  'rude',
  'leav',
  'whole',
  'plate',
  'food',
  'sit',
  'said',
  'could',
  'rice',
  'stuff',
  'know',
  'mushroom',
  'pilaf',
  'honestli',
  'make',
  'want',
  'go',
  'anymor',
  'famili',
  'event',
  'meal',
  'aita',
  'eat',
  'food',
  'wed',
  'sever_year',
  'year_ago',
  'ago_grandpar',
  'grandpar_th',
  'th_anniversari',
  'anniversari_parti',
  'parti_set',
  'set_kinda',
  'kinda_like',
  'like_wed',
  'wed_recept',
  'recept_choic',
  'choic_meal',
  'meal_option',
  'option_differ',
  'differ_german',
  'german_food',
  'food_steak',
  'steak_like',
  'like_chose',
  'chose_steak',
  'steak_actual',
  'actual_event',
  'event_someon',
  'someon_come',
  'come_order',
  'order_mix',
  'mix_end',
  'end_pickl',
  'pickl_wrap',
  'wrap_meat',
  'meat_everyon',
  'everyon_insist',
  'insist_pick',
  'pick_tri',
  'tri_gave',
  'gave_dad',
  'dad_like',
  'like_later',
  'later_realiz',
  'realiz_end',
  'end_person',
  'person_come',
  'come_food',
  'food_big',
  'big_deal',
  'deal_well',
  'well_sinc',
  'sinc_becom',
  'becom_joke',
  'joke_famili',
  'famili_theyv',
  'theyv_done',
  'done_-',
  '-_time',
  'time_sinc',
  'sinc_whenev',
  'whenev_weddingev',
  'weddingev_food',
  'food_select',
  'select_grandma',
  'grandma_aliv',
  'aliv_yell',
  'yell_dad',
  'dad_sinc',
  'sinc_instig',
  'instig_im',
  'im_sure',
  'sure_get',
  'get_meal',
  'meal_annoy',
  'annoy_make',
  'make_mad',
  'mad_deal',
  'deal_cousin',
  'cousin_got',
  'got_marri',
  'marri_saturday',
  'saturday_week',
  'week_ago',
  'ago_sent',
  'sent_card',
  'card_pick',
  'pick_meal',
  'meal_sent',
  'sent_dad',
  'dad_mine',
  'mine_sister',
  'sister_dad',
  'dad_hous',
  'hous_one',
  'one_return',
  'return_envelop',
  'envelop_option',
  'option_steak',
  'steak_chicken',
  'chicken_stuf',
  'stuf_portobello',
  'portobello_mushroom',
  'mushroom_select',
  'select_steak',
  'steak_specif',
  'specif_told',
  'told_dad',
  'dad_let',
  'let_damn',
  'damn_steak',
  'steak_instead',
  'instead_mess',
  'mess_said',
  'said_write',
  'write_anyth',
  'anyth_card',
  'card_fast',
  'fast_forward',
  'forward_saturday',
  'saturday_everyth',
  'everyth_go',
  'go_well',
  'well_wed',
  'wed_nice',
  'nice_sit',
  'sit_dinner',
  'dinner_give',
  'give_mushroom',
  'mushroom_stuf',
  'stuf_vegetarian',
  'vegetarian_pilaf',
  'pilaf_said',
  'said_must',
  'must_mistak',
  'mistak_select',
  'select_beef',
  'beef_server',
  'server_said',
  'said_star',
  'star_place',
  'place_card',
  'card_meant',
  'meant_order',
  'order_vegetarian',
  'vegetarian_look',
  'look_dad',
  'dad_laugh',
  'laugh_said',
  'said_call',
  'call_natali',
  'natali_sent',
  'sent_card',
  'card_told',
  'told_becam',
  'becam_vegetarian',
  'vegetarian_want',
  'want_chang',
  'chang_choic',
  'choic_sister',
  'sister_said',
  'said_dad',
  'dad_think',
  'think_get',
  'get_old',
  'old_said',
  'said_said',
  'said_mess',
  'mess_said',
  'said_said',
  'said_write',
  'write_card',
  'card_call',
  'call_eat',
  'eat_mushroom',
  'mushroom_said',
  'said_time',
  'time_pass',
  'pass_dad',
  'dad_said',
  'said_serious',
  'serious_even',
  'even_go',
  'go_tri',
  'tri_theyrejust',
  'theyrejust_mushroom',
  'mushroom_hurt',
  'hurt_shook',
  'shook_head',
  'head_hate',
  'hate_mushroom',
  'mushroom_im',
  'im_sick',
  'sick_joke',
  'joke_sat',
  'sat_til',
  'til_peopl',
  'peopl_start',
  'start_get',
  'get_got',
  'got_went',
  'went_bar',
  'bar_beer',
  'beer_avoid',
  'avoid_dad',
  'dad_til',
  'til_left',
  'left_sister',
  'sister_later',
  'later_said',
  'said_least',
  'least_tri',
  'tri_littl',
  'littl_kinda',
  'kinda_rude',
  'rude_leav',
  'leav_whole',
  'whole_plate',
  'plate_food',
  'food_sit',
  'sit_said',
  'said_could',
  'could_rice',
  'rice_stuff',
  'stuff_know',
  'know_mushroom',
  'mushroom_pilaf',
  'pilaf_honestli',
  'honestli_make',
  'make_want',
  'want_go',
  'go_anymor',
  'anymor_famili',
  'famili_event',
  'event_meal',
  'meal_aita',
  'aita_eat',
  'eat_food',
  'food_wed',
  'sever_year_ago',
  'year_ago_grandpar',
  'ago_grandpar_th',
  'grandpar_th_anniversari',
  'th_anniversari_parti',
  'anniversari_parti_set',
  'parti_set_kinda',
  'set_kinda_like',
  'kinda_like_wed',
  'like_wed_recept',
  'wed_recept_choic',
  'recept_choic_meal',
  'choic_meal_option',
  'meal_option_differ',
  'option_differ_german',
  'differ_german_food',
  'german_food_steak',
  'food_steak_like',
  'steak_like_chose',
  'like_chose_steak',
  'chose_steak_actual',
  'steak_actual_event',
  'actual_event_someon',
  'event_someon_come',
  'someon_come_order',
  'come_order_mix',
  'order_mix_end',
  'mix_end_pickl',
  'end_pickl_wrap',
  'pickl_wrap_meat',
  'wrap_meat_everyon',
  'meat_everyon_insist',
  'everyon_insist_pick',
  'insist_pick_tri',
  'pick_tri_gave',
  'tri_gave_dad',
  'gave_dad_like',
  'dad_like_later',
  'like_later_realiz',
  'later_realiz_end',
  'realiz_end_person',
  'end_person_come',
  'person_come_food',
  'come_food_big',
  'food_big_deal',
  'big_deal_well',
  'deal_well_sinc',
  'well_sinc_becom',
  'sinc_becom_joke',
  'becom_joke_famili',
  'joke_famili_theyv',
  'famili_theyv_done',
  'theyv_done_-',
  'done_-_time',
  '-_time_sinc',
  'time_sinc_whenev',
  'sinc_whenev_weddingev',
  'whenev_weddingev_food',
  'weddingev_food_select',
  'food_select_grandma',
  'select_grandma_aliv',
  'grandma_aliv_yell',
  'aliv_yell_dad',
  'yell_dad_sinc',
  'dad_sinc_instig',
  'sinc_instig_im',
  'instig_im_sure',
  'im_sure_get',
  'sure_get_meal',
  'get_meal_annoy',
  'meal_annoy_make',
  'annoy_make_mad',
  'make_mad_deal',
  'mad_deal_cousin',
  'deal_cousin_got',
  'cousin_got_marri',
  'got_marri_saturday',
  'marri_saturday_week',
  'saturday_week_ago',
  'week_ago_sent',
  'ago_sent_card',
  'sent_card_pick',
  'card_pick_meal',
  'pick_meal_sent',
  'meal_sent_dad',
  'sent_dad_mine',
  'dad_mine_sister',
  'mine_sister_dad',
  'sister_dad_hous',
  'dad_hous_one',
  'hous_one_return',
  'one_return_envelop',
  'return_envelop_option',
  'envelop_option_steak',
  'option_steak_chicken',
  'steak_chicken_stuf',
  'chicken_stuf_portobello',
  'stuf_portobello_mushroom',
  'portobello_mushroom_select',
  'mushroom_select_steak',
  'select_steak_specif',
  'steak_specif_told',
  'specif_told_dad',
  'told_dad_let',
  'dad_let_damn',
  'let_damn_steak',
  'damn_steak_instead',
  'steak_instead_mess',
  'instead_mess_said',
  'mess_said_write',
  'said_write_anyth',
  'write_anyth_card',
  'anyth_card_fast',
  'card_fast_forward',
  'fast_forward_saturday',
  'forward_saturday_everyth',
  'saturday_everyth_go',
  'everyth_go_well',
  'go_well_wed',
  'well_wed_nice',
  'wed_nice_sit',
  'nice_sit_dinner',
  'sit_dinner_give',
  'dinner_give_mushroom',
  'give_mushroom_stuf',
  'mushroom_stuf_vegetarian',
  'stuf_vegetarian_pilaf',
  'vegetarian_pilaf_said',
  'pilaf_said_must',
  'said_must_mistak',
  'must_mistak_select',
  'mistak_select_beef',
  'select_beef_server',
  'beef_server_said',
  'server_said_star',
  'said_star_place',
  'star_place_card',
  'place_card_meant',
  'card_meant_order',
  'meant_order_vegetarian',
  'order_vegetarian_look',
  'vegetarian_look_dad',
  'look_dad_laugh',
  'dad_laugh_said',
  'laugh_said_call',
  'said_call_natali',
  'call_natali_sent',
  'natali_sent_card',
  'sent_card_told',
  'card_told_becam',
  'told_becam_vegetarian',
  'becam_vegetarian_want',
  'vegetarian_want_chang',
  'want_chang_choic',
  'chang_choic_sister',
  'choic_sister_said',
  'sister_said_dad',
  'said_dad_think',
  'dad_think_get',
  'think_get_old',
  'get_old_said',
  'old_said_said',
  'said_said_mess',
  'said_mess_said',
  'mess_said_said',
  'said_said_write',
  'said_write_card',
  'write_card_call',
  'card_call_eat',
  'call_eat_mushroom',
  'eat_mushroom_said',
  'mushroom_said_time',
  'said_time_pass',
  'time_pass_dad',
  'pass_dad_said',
  'dad_said_serious',
  'said_serious_even',
  'serious_even_go',
  'even_go_tri',
  'go_tri_theyrejust',
  'tri_theyrejust_mushroom',
  'theyrejust_mushroom_hurt',
  'mushroom_hurt_shook',
  'hurt_shook_head',
  'shook_head_hate',
  'head_hate_mushroom',
  'hate_mushroom_im',
  'mushroom_im_sick',
  'im_sick_joke',
  'sick_joke_sat',
  'joke_sat_til',
  'sat_til_peopl',
  'til_peopl_start',
  'peopl_start_get',
  'start_get_got',
  'get_got_went',
  'got_went_bar',
  'went_bar_beer',
  'bar_beer_avoid',
  'beer_avoid_dad',
  'avoid_dad_til',
  'dad_til_left',
  'til_left_sister',
  'left_sister_later',
  'sister_later_said',
  'later_said_least',
  'said_least_tri',
  'least_tri_littl',
  'tri_littl_kinda',
  'littl_kinda_rude',
  'kinda_rude_leav',
  'rude_leav_whole',
  'leav_whole_plate',
  'whole_plate_food',
  'plate_food_sit',
  'food_sit_said',
  'sit_said_could',
  'said_could_rice',
  'could_rice_stuff',
  'rice_stuff_know',
  'stuff_know_mushroom',
  'know_mushroom_pilaf',
  'mushroom_pilaf_honestli',
  'pilaf_honestli_make',
  'honestli_make_want',
  'make_want_go',
  'want_go_anymor',
  'go_anymor_famili',
  'anymor_famili_event',
  'famili_event_meal',
  'event_meal_aita',
  'meal_aita_eat',
  'aita_eat_food',
  'eat_food_wed'],
 ['ex',
  'husband',
  'got',
  'divorc',
  'year',
  'ago',
  'share',
  'custodi',
  'year',
  'old',
  'daughter',
  'got',
  'marri',
  'year',
  'old',
  'daughter',
  'wife',
  'daughter',
  'would',
  'spend',
  'time',
  'daughter',
  'regularli',
  'ador',
  'come',
  'hous',
  'rare',
  'meet',
  'wife',
  'diagnos',
  'cancer',
  'start',
  'treatment',
  'recent',
  'day',
  'came',
  'drop',
  'daughter',
  'ask',
  'speak',
  'talk',
  'wife',
  'circumst',
  'famili',
  'abl',
  'christma',
  'celebr',
  'year',
  'said',
  'fair',
  'daughter',
  'ask',
  'could',
  'includ',
  'famili',
  'celebr',
  'point',
  'girl',
  'great',
  'time',
  'togeth',
  'bond',
  'make',
  'memori',
  'said',
  'sorri',
  'famili',
  'tradit',
  'celebr',
  'sacr',
  'thing',
  'feel',
  'comfort',
  'includ',
  'anyon',
  'els',
  'plu',
  'itd',
  'awkward',
  'home',
  'said',
  'daughter',
  'may',
  'famili',
  'sure',
  'halfsist',
  'ask',
  'stop',
  'think',
  'best',
  'kid',
  'suggest',
  'take',
  'daughter',
  'spend',
  'christma',
  'grandpar',
  'said',
  'parent',
  'nc',
  'tri',
  'cut',
  'convers',
  'short',
  'stop',
  'start',
  'go',
  'cruel',
  'declin',
  'includ',
  'daughter',
  'alreadi',
  'hard',
  'time',
  'adjust',
  'saw',
  'begin',
  'cri',
  'step',
  'back',
  'said',
  'longer',
  'feel',
  'comfort',
  'convers',
  'ask',
  'leav',
  'still',
  'text',
  'ask',
  'agre',
  'let',
  'daughter',
  'come',
  'spend',
  'christma',
  'even',
  'offer',
  'stay',
  'away',
  'make',
  'less',
  'uncomfort',
  'said',
  'call',
  'selfish',
  'unfeel',
  '*',
  'point',
  'worth',
  'mention',
  'famili',
  'go',
  'attend',
  'said',
  'feel',
  'comfort',
  'situat',
  'thu',
  'said',
  'itd',
  'awkward',
  '*',
  'ex_husband',
  'husband_got',
  'got_divorc',
  'divorc_year',
  'year_ago',
  'ago_share',
  'share_custodi',
  'custodi_year',
  'year_old',
  'old_daughter',
  'daughter_got',
  'got_marri',
  'marri_year',
  'year_old',
  'old_daughter',
  'daughter_wife',
  'wife_daughter',
  'daughter_would',
  'would_spend',
  'spend_time',
  'time_daughter',
  'daughter_regularli',
  'regularli_ador',
  'ador_come',
  'come_hous',
  'hous_rare',
  'rare_meet',
  'meet_wife',
  'wife_diagnos',
  'diagnos_cancer',
  'cancer_start',
  'start_treatment',
  'treatment_recent',
  'recent_day',
  'day_came',
  'came_drop',
  'drop_daughter',
  'daughter_ask',
  'ask_speak',
  'speak_talk',
  'talk_wife',
  'wife_circumst',
  'circumst_famili',
  'famili_abl',
  'abl_christma',
  'christma_celebr',
  'celebr_year',
  'year_said',
  'said_fair',
  'fair_daughter',
  'daughter_ask',
  'ask_could',
  'could_includ',
  'includ_famili',
  'famili_celebr',
  'celebr_point',
  'point_girl',
  'girl_great',
  'great_time',
  'time_togeth',
  'togeth_bond',
  'bond_make',
  'make_memori',
  'memori_said',
  'said_sorri',
  'sorri_famili',
  'famili_tradit',
  'tradit_celebr',
  'celebr_sacr',
  'sacr_thing',
  'thing_feel',
  'feel_comfort',
  'comfort_includ',
  'includ_anyon',
  'anyon_els',
  'els_plu',
  'plu_itd',
  'itd_awkward',
  'awkward_home',
  'home_said',
  'said_daughter',
  'daughter_may',
  'may_famili',
  'famili_sure',
  'sure_halfsist',
  'halfsist_ask',
  'ask_stop',
  'stop_think',
  'think_best',
  'best_kid',
  'kid_suggest',
  'suggest_take',
  'take_daughter',
  'daughter_spend',
  'spend_christma',
  'christma_grandpar',
  'grandpar_said',
  'said_parent',
  'parent_nc',
  'nc_tri',
  'tri_cut',
  'cut_convers',
  'convers_short',
  'short_stop',
  'stop_start',
  'start_go',
  'go_cruel',
  'cruel_declin',
  'declin_includ',
  'includ_daughter',
  'daughter_alreadi',
  'alreadi_hard',
  'hard_time',
  'time_adjust',
  'adjust_saw',
  'saw_begin',
  'begin_cri',
  'cri_step',
  'step_back',
  'back_said',
  'said_longer',
  'longer_feel',
  'feel_comfort',
  'comfort_convers',
  'convers_ask',
  'ask_leav',
  'leav_still',
  'still_text',
  'text_ask',
  'ask_agre',
  'agre_let',
  'let_daughter',
  'daughter_come',
  'come_spend',
  'spend_christma',
  'christma_even',
  'even_offer',
  'offer_stay',
  'stay_away',
  'away_make',
  'make_less',
  'less_uncomfort',
  'uncomfort_said',
  'said_call',
  'call_selfish',
  'selfish_unfeel',
  'unfeel_*',
  '*_point',
  'point_worth',
  'worth_mention',
  'mention_famili',
  'famili_go',
  'go_attend',
  'attend_said',
  'said_feel',
  'feel_comfort',
  'comfort_situat',
  'situat_thu',
  'thu_said',
  'said_itd',
  'itd_awkward',
  'awkward_*',
  'ex_husband_got',
  'husband_got_divorc',
  'got_divorc_year',
  'divorc_year_ago',
  'year_ago_share',
  'ago_share_custodi',
  'share_custodi_year',
  'custodi_year_old',
  'year_old_daughter',
  'old_daughter_got',
  'daughter_got_marri',
  'got_marri_year',
  'marri_year_old',
  'year_old_daughter',
  'old_daughter_wife',
  'daughter_wife_daughter',
  'wife_daughter_would',
  'daughter_would_spend',
  'would_spend_time',
  'spend_time_daughter',
  'time_daughter_regularli',
  'daughter_regularli_ador',
  'regularli_ador_come',
  'ador_come_hous',
  'come_hous_rare',
  'hous_rare_meet',
  'rare_meet_wife',
  'meet_wife_diagnos',
  'wife_diagnos_cancer',
  'diagnos_cancer_start',
  'cancer_start_treatment',
  'start_treatment_recent',
  'treatment_recent_day',
  'recent_day_came',
  'day_came_drop',
  'came_drop_daughter',
  'drop_daughter_ask',
  'daughter_ask_speak',
  'ask_speak_talk',
  'speak_talk_wife',
  'talk_wife_circumst',
  'wife_circumst_famili',
  'circumst_famili_abl',
  'famili_abl_christma',
  'abl_christma_celebr',
  'christma_celebr_year',
  'celebr_year_said',
  'year_said_fair',
  'said_fair_daughter',
  'fair_daughter_ask',
  'daughter_ask_could',
  'ask_could_includ',
  'could_includ_famili',
  'includ_famili_celebr',
  'famili_celebr_point',
  'celebr_point_girl',
  'point_girl_great',
  'girl_great_time',
  'great_time_togeth',
  'time_togeth_bond',
  'togeth_bond_make',
  'bond_make_memori',
  'make_memori_said',
  'memori_said_sorri',
  'said_sorri_famili',
  'sorri_famili_tradit',
  'famili_tradit_celebr',
  'tradit_celebr_sacr',
  'celebr_sacr_thing',
  'sacr_thing_feel',
  'thing_feel_comfort',
  'feel_comfort_includ',
  'comfort_includ_anyon',
  'includ_anyon_els',
  'anyon_els_plu',
  'els_plu_itd',
  'plu_itd_awkward',
  'itd_awkward_home',
  'awkward_home_said',
  'home_said_daughter',
  'said_daughter_may',
  'daughter_may_famili',
  'may_famili_sure',
  'famili_sure_halfsist',
  'sure_halfsist_ask',
  'halfsist_ask_stop',
  'ask_stop_think',
  'stop_think_best',
  'think_best_kid',
  'best_kid_suggest',
  'kid_suggest_take',
  'suggest_take_daughter',
  'take_daughter_spend',
  'daughter_spend_christma',
  'spend_christma_grandpar',
  'christma_grandpar_said',
  'grandpar_said_parent',
  'said_parent_nc',
  'parent_nc_tri',
  'nc_tri_cut',
  'tri_cut_convers',
  'cut_convers_short',
  'convers_short_stop',
  'short_stop_start',
  'stop_start_go',
  'start_go_cruel',
  'go_cruel_declin',
  'cruel_declin_includ',
  'declin_includ_daughter',
  'includ_daughter_alreadi',
  'daughter_alreadi_hard',
  'alreadi_hard_time',
  'hard_time_adjust',
  'time_adjust_saw',
  'adjust_saw_begin',
  'saw_begin_cri',
  'begin_cri_step',
  'cri_step_back',
  'step_back_said',
  'back_said_longer',
  'said_longer_feel',
  'longer_feel_comfort',
  'feel_comfort_convers',
  'comfort_convers_ask',
  'convers_ask_leav',
  'ask_leav_still',
  'leav_still_text',
  'still_text_ask',
  'text_ask_agre',
  'ask_agre_let',
  'agre_let_daughter',
  'let_daughter_come',
  'daughter_come_spend',
  'come_spend_christma',
  'spend_christma_even',
  'christma_even_offer',
  'even_offer_stay',
  'offer_stay_away',
  'stay_away_make',
  'away_make_less',
  'make_less_uncomfort',
  'less_uncomfort_said',
  'uncomfort_said_call',
  'said_call_selfish',
  'call_selfish_unfeel',
  'selfish_unfeel_*',
  'unfeel_*_point',
  '*_point_worth',
  'point_worth_mention',
  'worth_mention_famili',
  'mention_famili_go',
  'famili_go_attend',
  'go_attend_said',
  'attend_said_feel',
  'said_feel_comfort',
  'feel_comfort_situat',
  'comfort_situat_thu',
  'situat_thu_said',
  'thu_said_itd',
  'said_itd_awkward',
  'itd_awkward_*'],
 ['cant',
  'figur',
  'anyth',
  'wrong',
  'honestli',
  'idea',
  'go',
  'hope',
  'someon',
  'give',
  'clue',
  'relev',
  'info',
  'far',
  'know',
  'brother',
  'wife',
  'expect',
  'first',
  'girl',
  'two',
  'boy',
  'love',
  'ricki',
  'jace',
  'sil',
  'alway',
  'want',
  'girl',
  'excit',
  'one',
  'also',
  'want',
  'name',
  'girl',
  'chloe',
  'love',
  'name',
  'brother',
  'hate',
  'name',
  'chloe',
  'realli',
  'want',
  'name',
  'daughter',
  'stephani',
  'argu',
  'week',
  'sinc',
  'find',
  'gender',
  'got',
  'parent',
  'hous',
  'late',
  'last',
  'night',
  'sil',
  'person',
  'still',
  'awak',
  'talk',
  'littl',
  'bit',
  'ask',
  'weirdest',
  'question',
  'ask',
  'knew',
  'stori',
  'great',
  'aunt',
  'stephani',
  'confus',
  'liter',
  'said',
  'sil',
  'clarifi',
  'talk',
  'grandmoth',
  'older',
  'sister',
  'die',
  'grandma',
  'littl',
  'girl',
  'grandma',
  'two',
  'sister',
  'name',
  'judi',
  'lynn',
  'one',
  'famili',
  'name',
  'stephani',
  'far',
  'know',
  'told',
  'much',
  'sil',
  'chang',
  'subject',
  'soon',
  'went',
  'bed',
  'morn',
  'brother',
  'wife',
  'sulk',
  'breakfast',
  'even',
  'kid',
  'could',
  'tell',
  'ricki',
  'kept',
  'say',
  'stop',
  'grumpi',
  'christma',
  'imagin',
  'got',
  'brother',
  'alon',
  'confront',
  'snap',
  'meddl',
  'told',
  'stay',
  'marriag',
  'brother',
  'piss',
  'sil',
  'even',
  'talk',
  'im',
  'afraid',
  'say',
  'anyth',
  'parent',
  'drag',
  'especi',
  'sinc',
  'still',
  'know',
  'either',
  'grandmoth',
  'secret',
  'sister',
  'know',
  'brother',
  'reason',
  'brother',
  'lie',
  'wife',
  'convinc',
  'name',
  'babi',
  'stephani',
  'option',
  'seem',
  'equal',
  'weird',
  'mayb',
  'third',
  'possibl',
  'im',
  'see',
  'reddit',
  'asshol',
  'pleas',
  'explain',
  'want',
  'reason',
  'christma',
  'ruin',
  'updat',
  'awkward',
  'christma',
  'eve',
  'dinner',
  'ever',
  'got',
  'ta',
  'keep',
  'short',
  'lot',
  'go',
  'everyon',
  'know',
  'brother',
  'kid',
  'namesexcept',
  'kid',
  'obvious',
  'piss',
  'weirdli',
  'mom',
  'piss',
  'christma',
  'truce',
  'place',
  'kid',
  'fight',
  'holiday',
  'howev',
  'babi',
  'definit',
  'go',
  'name',
  'chloe',
  'brother',
  'quickli',
  'back',
  'mom',
  'said',
  'choic',
  'word',
  'topic',
  'complet',
  'ban',
  'rest',
  'festiv',
  'least',
  'theyv',
  'tie',
  'bow',
  'situat',
  'christma',
  'morn',
  'updat',
  'asid',
  'glare',
  'coupl',
  'boy',
  'stock',
  'stuffer',
  'robin',
  'funko',
  'pop',
  'everyth',
  'went',
  'well',
  'gift',
  'open',
  'well',
  'woken',
  'jump',
  'one',
  'nephew',
  'think',
  'brother',
  'realiz',
  'cross',
  'line',
  'attent',
  'wife',
  'mention',
  'get',
  'chloe',
  'name',
  'embroid',
  'stuff',
  'get',
  'home',
  'even',
  'told',
  'mom',
  'would',
  'christma',
  'breakfast',
  'could',
  'break',
  'gave',
  'im',
  'sorri',
  'grin',
  'open',
  'gift',
  'think',
  'everyth',
  'go',
  'fine',
  'cant_figur',
  'figur_anyth',
  'anyth_wrong',
  'wrong_honestli',
  'honestli_idea',
  'idea_go',
  'go_hope',
  'hope_someon',
  'someon_give',
  'give_clue',
  'clue_relev',
  'relev_info',
  'info_far',
  'far_know',
  'know_brother',
  'brother_wife',
  'wife_expect',
  'expect_first',
  'first_girl',
  'girl_two',
  'two_boy',
  'boy_love',
  'love_ricki',
  'ricki_jace',
  'jace_sil',
  'sil_alway',
  'alway_want',
  'want_girl',
  'girl_excit',
  'excit_one',
  'one_also',
  'also_want',
  'want_name',
  'name_girl',
  'girl_chloe',
  'chloe_love',
  'love_name',
  'name_brother',
  'brother_hate',
  'hate_name',
  'name_chloe',
  'chloe_realli',
  'realli_want',
  'want_name',
  'name_daughter',
  'daughter_stephani',
  'stephani_argu',
  'argu_week',
  'week_sinc',
  'sinc_find',
  'find_gender',
  'gender_got',
  'got_parent',
  'parent_hous',
  'hous_late',
  'late_last',
  'last_night',
  'night_sil',
  'sil_person',
  'person_still',
  'still_awak',
  'awak_talk',
  'talk_littl',
  'littl_bit',
  'bit_ask',
  'ask_weirdest',
  'weirdest_question',
  'question_ask',
  'ask_knew',
  'knew_stori',
  'stori_great',
  'great_aunt',
  'aunt_stephani',
  'stephani_confus',
  'confus_liter',
  'liter_said',
  'said_sil',
  'sil_clarifi',
  'clarifi_talk',
  'talk_grandmoth',
  'grandmoth_older',
  'older_sister',
  'sister_die',
  'die_grandma',
  'grandma_littl',
  'littl_girl',
  'girl_grandma',
  'grandma_two',
  'two_sister',
  'sister_name',
  'name_judi',
  'judi_lynn',
  'lynn_one',
  'one_famili',
  'famili_name',
  'name_stephani',
  'stephani_far',
  'far_know',
  'know_told',
  'told_much',
  'much_sil',
  'sil_chang',
  'chang_subject',
  'subject_soon',
  'soon_went',
  'went_bed',
  'bed_morn',
  'morn_brother',
  'brother_wife',
  'wife_sulk',
  'sulk_breakfast',
  'breakfast_even',
  'even_kid',
  'kid_could',
  'could_tell',
  'tell_ricki',
  'ricki_kept',
  'kept_say',
  'say_stop',
  'stop_grumpi',
  'grumpi_christma',
  'christma_imagin',
  'imagin_got',
  'got_brother',
  'brother_alon',
  'alon_confront',
  'confront_snap',
  'snap_meddl',
  'meddl_told',
  'told_stay',
  'stay_marriag',
  'marriag_brother',
  'brother_piss',
  'piss_sil',
  'sil_even',
  'even_talk',
  'talk_im',
  'im_afraid',
  'afraid_say',
  'say_anyth',
  'anyth_parent',
  'parent_drag',
  'drag_especi',
  'especi_sinc',
  'sinc_still',
  'still_know',
  'know_either',
  'either_grandmoth',
  'grandmoth_secret',
  'secret_sister',
  'sister_know',
  'know_brother',
  'brother_reason',
  'reason_brother',
  'brother_lie',
  'lie_wife',
  'wife_convinc',
  'convinc_name',
  'name_babi',
  'babi_stephani',
  'stephani_option',
  'option_seem',
  'seem_equal',
  'equal_weird',
  'weird_mayb',
  'mayb_third',
  'third_possibl',
  'possibl_im',
  'im_see',
  'see_reddit',
  'reddit_asshol',
  'asshol_pleas',
  'pleas_explain',
  'explain_want',
  'want_reason',
  'reason_christma',
  'christma_ruin',
  'ruin_updat',
  'updat_awkward',
  'awkward_christma',
  'christma_eve',
  'eve_dinner',
  'dinner_ever',
  'ever_got',
  'got_ta',
  'ta_keep',
  'keep_short',
  'short_lot',
  'lot_go',
  'go_everyon',
  'everyon_know',
  'know_brother',
  'brother_kid',
  'kid_namesexcept',
  'namesexcept_kid',
  'kid_obvious',
  'obvious_piss',
  'piss_weirdli',
  'weirdli_mom',
  'mom_piss',
  'piss_christma',
  'christma_truce',
  'truce_place',
  'place_kid',
  'kid_fight',
  'fight_holiday',
  'holiday_howev',
  'howev_babi',
  'babi_definit',
  'definit_go',
  'go_name',
  'name_chloe',
  'chloe_brother',
  'brother_quickli',
  'quickli_back',
  'back_mom',
  'mom_said',
  'said_choic',
  'choic_word',
  'word_topic',
  'topic_complet',
  'complet_ban',
  'ban_rest',
  'rest_festiv',
  'festiv_least',
  'least_theyv',
  'theyv_tie',
  'tie_bow',
  'bow_situat',
  'situat_christma',
  'christma_morn',
  'morn_updat',
  'updat_asid',
  'asid_glare',
  'glare_coupl',
  'coupl_boy',
  'boy_stock',
  'stock_stuffer',
  'stuffer_robin',
  'robin_funko',
  'funko_pop',
  'pop_everyth',
  'everyth_went',
  'went_well',
  'well_gift',
  'gift_open',
  'open_well',
  'well_woken',
  'woken_jump',
  'jump_one',
  'one_nephew',
  'nephew_think',
  'think_brother',
  'brother_realiz',
  'realiz_cross',
  'cross_line',
  'line_attent',
  'attent_wife',
  'wife_mention',
  'mention_get',
  'get_chloe',
  'chloe_name',
  'name_embroid',
  'embroid_stuff',
  'stuff_get',
  'get_home',
  'home_even',
  'even_told',
  'told_mom',
  'mom_would',
  'would_christma',
  'christma_breakfast',
  'breakfast_could',
  'could_break',
  'break_gave',
  'gave_im',
  'im_sorri',
  'sorri_grin',
  'grin_open',
  'open_gift',
  'gift_think',
  'think_everyth',
  'everyth_go',
  'go_fine',
  'cant_figur_anyth',
  'figur_anyth_wrong',
  'anyth_wrong_honestli',
  'wrong_honestli_idea',
  'honestli_idea_go',
  'idea_go_hope',
  'go_hope_someon',
  'hope_someon_give',
  'someon_give_clue',
  'give_clue_relev',
  'clue_relev_info',
  'relev_info_far',
  'info_far_know',
  'far_know_brother',
  'know_brother_wife',
  'brother_wife_expect',
  'wife_expect_first',
  'expect_first_girl',
  'first_girl_two',
  'girl_two_boy',
  'two_boy_love',
  'boy_love_ricki',
  'love_ricki_jace',
  'ricki_jace_sil',
  'jace_sil_alway',
  'sil_alway_want',
  'alway_want_girl',
  'want_girl_excit',
  'girl_excit_one',
  'excit_one_also',
  'one_also_want',
  'also_want_name',
  'want_name_girl',
  'name_girl_chloe',
  'girl_chloe_love',
  'chloe_love_name',
  'love_name_brother',
  'name_brother_hate',
  'brother_hate_name',
  'hate_name_chloe',
  'name_chloe_realli',
  'chloe_realli_want',
  'realli_want_name',
  'want_name_daughter',
  'name_daughter_stephani',
  'daughter_stephani_argu',
  'stephani_argu_week',
  'argu_week_sinc',
  'week_sinc_find',
  'sinc_find_gender',
  'find_gender_got',
  'gender_got_parent',
  'got_parent_hous',
  'parent_hous_late',
  'hous_late_last',
  'late_last_night',
  'last_night_sil',
  'night_sil_person',
  'sil_person_still',
  'person_still_awak',
  'still_awak_talk',
  'awak_talk_littl',
  'talk_littl_bit',
  'littl_bit_ask',
  'bit_ask_weirdest',
  'ask_weirdest_question',
  'weirdest_question_ask',
  'question_ask_knew',
  'ask_knew_stori',
  'knew_stori_great',
  'stori_great_aunt',
  'great_aunt_stephani',
  'aunt_stephani_confus',
  'stephani_confus_liter',
  'confus_liter_said',
  'liter_said_sil',
  'said_sil_clarifi',
  'sil_clarifi_talk',
  'clarifi_talk_grandmoth',
  'talk_grandmoth_older',
  'grandmoth_older_sister',
  'older_sister_die',
  'sister_die_grandma',
  'die_grandma_littl',
  'grandma_littl_girl',
  'littl_girl_grandma',
  'girl_grandma_two',
  'grandma_two_sister',
  'two_sister_name',
  'sister_name_judi',
  'name_judi_lynn',
  'judi_lynn_one',
  'lynn_one_famili',
  'one_famili_name',
  'famili_name_stephani',
  'name_stephani_far',
  'stephani_far_know',
  'far_know_told',
  'know_told_much',
  'told_much_sil',
  'much_sil_chang',
  'sil_chang_subject',
  'chang_subject_soon',
  'subject_soon_went',
  'soon_went_bed',
  'went_bed_morn',
  'bed_morn_brother',
  'morn_brother_wife',
  'brother_wife_sulk',
  'wife_sulk_breakfast',
  'sulk_breakfast_even',
  'breakfast_even_kid',
  'even_kid_could',
  'kid_could_tell',
  'could_tell_ricki',
  'tell_ricki_kept',
  'ricki_kept_say',
  'kept_say_stop',
  'say_stop_grumpi',
  'stop_grumpi_christma',
  'grumpi_christma_imagin',
  'christma_imagin_got',
  'imagin_got_brother',
  'got_brother_alon',
  'brother_alon_confront',
  'alon_confront_snap',
  'confront_snap_meddl',
  'snap_meddl_told',
  'meddl_told_stay',
  'told_stay_marriag',
  'stay_marriag_brother',
  'marriag_brother_piss',
  'brother_piss_sil',
  'piss_sil_even',
  'sil_even_talk',
  'even_talk_im',
  'talk_im_afraid',
  'im_afraid_say',
  'afraid_say_anyth',
  'say_anyth_parent',
  'anyth_parent_drag',
  'parent_drag_especi',
  'drag_especi_sinc',
  'especi_sinc_still',
  'sinc_still_know',
  'still_know_either',
  'know_either_grandmoth',
  'either_grandmoth_secret',
  'grandmoth_secret_sister',
  'secret_sister_know',
  'sister_know_brother',
  'know_brother_reason',
  'brother_reason_brother',
  'reason_brother_lie',
  'brother_lie_wife',
  'lie_wife_convinc',
  'wife_convinc_name',
  'convinc_name_babi',
  'name_babi_stephani',
  'babi_stephani_option',
  'stephani_option_seem',
  'option_seem_equal',
  'seem_equal_weird',
  'equal_weird_mayb',
  'weird_mayb_third',
  'mayb_third_possibl',
  'third_possibl_im',
  'possibl_im_see',
  'im_see_reddit',
  'see_reddit_asshol',
  'reddit_asshol_pleas',
  'asshol_pleas_explain',
  'pleas_explain_want',
  'explain_want_reason',
  'want_reason_christma',
  'reason_christma_ruin',
  'christma_ruin_updat',
  'ruin_updat_awkward',
  'updat_awkward_christma',
  'awkward_christma_eve',
  'christma_eve_dinner',
  'eve_dinner_ever',
  'dinner_ever_got',
  'ever_got_ta',
  'got_ta_keep',
  'ta_keep_short',
  'keep_short_lot',
  'short_lot_go',
  'lot_go_everyon',
  'go_everyon_know',
  'everyon_know_brother',
  'know_brother_kid',
  'brother_kid_namesexcept',
  'kid_namesexcept_kid',
  'namesexcept_kid_obvious',
  'kid_obvious_piss',
  'obvious_piss_weirdli',
  'piss_weirdli_mom',
  'weirdli_mom_piss',
  'mom_piss_christma',
  'piss_christma_truce',
  'christma_truce_place',
  'truce_place_kid',
  'place_kid_fight',
  'kid_fight_holiday',
  'fight_holiday_howev',
  'holiday_howev_babi',
  'howev_babi_definit',
  'babi_definit_go',
  'definit_go_name',
  'go_name_chloe',
  'name_chloe_brother',
  'chloe_brother_quickli',
  'brother_quickli_back',
  'quickli_back_mom',
  'back_mom_said',
  'mom_said_choic',
  'said_choic_word',
  'choic_word_topic',
  'word_topic_complet',
  'topic_complet_ban',
  'complet_ban_rest',
  'ban_rest_festiv',
  'rest_festiv_least',
  'festiv_least_theyv',
  'least_theyv_tie',
  'theyv_tie_bow',
  'tie_bow_situat',
  'bow_situat_christma',
  'situat_christma_morn',
  'christma_morn_updat',
  'morn_updat_asid',
  'updat_asid_glare',
  'asid_glare_coupl',
  'glare_coupl_boy',
  'coupl_boy_stock',
  'boy_stock_stuffer',
  'stock_stuffer_robin',
  'stuffer_robin_funko',
  'robin_funko_pop',
  'funko_pop_everyth',
  'pop_everyth_went',
  'everyth_went_well',
  'went_well_gift',
  'well_gift_open',
  'gift_open_well',
  'open_well_woken',
  'well_woken_jump',
  'woken_jump_one',
  'jump_one_nephew',
  'one_nephew_think',
  'nephew_think_brother',
  'think_brother_realiz',
  'brother_realiz_cross',
  'realiz_cross_line',
  'cross_line_attent',
  'line_attent_wife',
  'attent_wife_mention',
  'wife_mention_get',
  'mention_get_chloe',
  'get_chloe_name',
  'chloe_name_embroid',
  'name_embroid_stuff',
  'embroid_stuff_get',
  'stuff_get_home',
  'get_home_even',
  'home_even_told',
  'even_told_mom',
  'told_mom_would',
  'mom_would_christma',
  'would_christma_breakfast',
  'christma_breakfast_could',
  'breakfast_could_break',
  'could_break_gave',
  'break_gave_im',
  'gave_im_sorri',
  'im_sorri_grin',
  'sorri_grin_open',
  'grin_open_gift',
  'open_gift_think',
  'gift_think_everyth',
  'think_everyth_go',
  'everyth_go_fine'],
 ['live',
  'famili',
  'cottag',
  'given',
  'ownership',
  'cottag',
  'waterfront',
  'properti',
  'face',
  'medium-s',
  'lake',
  'famili',
  'live',
  'gener',
  'great',
  'grandfath',
  'origin',
  'bought',
  'pass',
  'eventu',
  'lead',
  'neighbor',
  'differ',
  'stori',
  'mani',
  'peopl',
  'known',
  'sinc',
  'childhood',
  'move',
  'hous',
  'neighbor',
  'torn',
  'replac',
  'design',
  'style',
  'home',
  'construct',
  'home',
  'came',
  'new',
  'neighbor',
  'hoa',
  'member',
  '&',
  'xb',
  'problem',
  'start',
  'next-door',
  'neighbor',
  'sophief-',
  'fish',
  'one',
  'day',
  'cano',
  'fish',
  'approach',
  'sophi',
  'beach',
  'start',
  'ask',
  'legal',
  'fish',
  'lake',
  'said',
  'long',
  'pay',
  '$',
  'per',
  'year',
  'licens',
  'said',
  'go',
  'caught',
  'fish',
  'want',
  'start',
  'process',
  'dinner',
  'get',
  'lake',
  'convers',
  'hear',
  'two',
  'week',
  'encount',
  'time',
  'person',
  'letter',
  'letter',
  'wrote',
  'danger',
  'fish',
  'environ',
  'stop',
  'respons',
  'chose',
  'simpli',
  'chuck',
  'recycl',
  'bin',
  'ignor',
  'worth',
  'time',
  '&',
  'xb',
  'recent',
  'encount',
  'two',
  'day',
  'ago',
  'friend',
  'afternoon',
  'ran',
  'back',
  'hous',
  'beer',
  'along',
  'one',
  'friend',
  'grab',
  'drink',
  'heard',
  'knock',
  'door',
  'answer',
  'door',
  'sophi',
  'anoth',
  'letter',
  'hand',
  'letter',
  'said',
  'tri',
  'diplomat',
  'enough',
  'letter',
  'hoa',
  'admittedli',
  'bit',
  'tipsi',
  'time',
  'respons',
  'laugh',
  'call',
  'stupid',
  'believ',
  'hoa',
  'anyth',
  'close',
  'door',
  '&',
  'xb',
  'sober',
  'feel',
  'conflict',
  'one',
  'hand',
  'feel',
  'justifi',
  'action',
  'fish',
  'none',
  'busi',
  'hand',
  'feel',
  'could',
  'dealt',
  'tact',
  'way',
  'asshol',
  'live_famili',
  'famili_cottag',
  'cottag_given',
  'given_ownership',
  'ownership_cottag',
  'cottag_waterfront',
  'waterfront_properti',
  'properti_face',
  'face_medium-s',
  'medium-s_lake',
  'lake_famili',
  'famili_live',
  'live_gener',
  'gener_great',
  'great_grandfath',
  'grandfath_origin',
  'origin_bought',
  'bought_pass',
  'pass_eventu',
  'eventu_lead',
  'lead_neighbor',
  'neighbor_differ',
  'differ_stori',
  'stori_mani',
  'mani_peopl',
  'peopl_known',
  'known_sinc',
  'sinc_childhood',
  'childhood_move',
  'move_hous',
  'hous_neighbor',
  'neighbor_torn',
  'torn_replac',
  'replac_design',
  'design_style',
  'style_home',
  'home_construct',
  'construct_home',
  'home_came',
  'came_new',
  'new_neighbor',
  'neighbor_hoa',
  'hoa_member',
  'member_&',
  '&_xb',
  'xb_problem',
  'problem_start',
  'start_next-door',
  'next-door_neighbor',
  'neighbor_sophief-',
  'sophief-_fish',
  'fish_one',
  'one_day',
  'day_cano',
  'cano_fish',
  'fish_approach',
  'approach_sophi',
  'sophi_beach',
  'beach_start',
  'start_ask',
  'ask_legal',
  'legal_fish',
  'fish_lake',
  'lake_said',
  'said_long',
  'long_pay',
  'pay_$',
  '$_per',
  'per_year',
  'year_licens',
  'licens_said',
  'said_go',
  'go_caught',
  'caught_fish',
  'fish_want',
  'want_start',
  'start_process',
  'process_dinner',
  'dinner_get',
  'get_lake',
  'lake_convers',
  'convers_hear',
  'hear_two',
  'two_week',
  'week_encount',
  'encount_time',
  'time_person',
  'person_letter',
  'letter_letter',
  'letter_wrote',
  'wrote_danger',
  'danger_fish',
  'fish_environ',
  'environ_stop',
  'stop_respons',
  'respons_chose',
  'chose_simpli',
  'simpli_chuck',
  'chuck_recycl',
  'recycl_bin',
  'bin_ignor',
  'ignor_worth',
  'worth_time',
  'time_&',
  '&_xb',
  'xb_recent',
  'recent_encount',
  'encount_two',
  'two_day',
  'day_ago',
  'ago_friend',
  'friend_afternoon',
  'afternoon_ran',
  'ran_back',
  'back_hous',
  'hous_beer',
  'beer_along',
  'along_one',
  'one_friend',
  'friend_grab',
  'grab_drink',
  'drink_heard',
  'heard_knock',
  'knock_door',
  'door_answer',
  'answer_door',
  'door_sophi',
  'sophi_anoth',
  'anoth_letter',
  'letter_hand',
  'hand_letter',
  'letter_said',
  'said_tri',
  'tri_diplomat',
  'diplomat_enough',
  'enough_letter',
  'letter_hoa',
  'hoa_admittedli',
  'admittedli_bit',
  'bit_tipsi',
  'tipsi_time',
  'time_respons',
  'respons_laugh',
  'laugh_call',
  'call_stupid',
  'stupid_believ',
  'believ_hoa',
  'hoa_anyth',
  'anyth_close',
  'close_door',
  'door_&',
  '&_xb',
  'xb_sober',
  'sober_feel',
  'feel_conflict',
  'conflict_one',
  'one_hand',
  'hand_feel',
  'feel_justifi',
  'justifi_action',
  'action_fish',
  'fish_none',
  'none_busi',
  'busi_hand',
  'hand_feel',
  'feel_could',
  'could_dealt',
  'dealt_tact',
  'tact_way',
  'way_asshol',
  'live_famili_cottag',
  'famili_cottag_given',
  'cottag_given_ownership',
  'given_ownership_cottag',
  'ownership_cottag_waterfront',
  'cottag_waterfront_properti',
  'waterfront_properti_face',
  'properti_face_medium-s',
  'face_medium-s_lake',
  'medium-s_lake_famili',
  'lake_famili_live',
  'famili_live_gener',
  'live_gener_great',
  'gener_great_grandfath',
  'great_grandfath_origin',
  'grandfath_origin_bought',
  'origin_bought_pass',
  'bought_pass_eventu',
  'pass_eventu_lead',
  'eventu_lead_neighbor',
  'lead_neighbor_differ',
  'neighbor_differ_stori',
  'differ_stori_mani',
  'stori_mani_peopl',
  'mani_peopl_known',
  'peopl_known_sinc',
  'known_sinc_childhood',
  'sinc_childhood_move',
  'childhood_move_hous',
  'move_hous_neighbor',
  'hous_neighbor_torn',
  'neighbor_torn_replac',
  'torn_replac_design',
  'replac_design_style',
  'design_style_home',
  'style_home_construct',
  'home_construct_home',
  'construct_home_came',
  'home_came_new',
  'came_new_neighbor',
  'new_neighbor_hoa',
  'neighbor_hoa_member',
  'hoa_member_&',
  'member_&_xb',
  '&_xb_problem',
  'xb_problem_start',
  'problem_start_next-door',
  'start_next-door_neighbor',
  'next-door_neighbor_sophief-',
  'neighbor_sophief-_fish',
  'sophief-_fish_one',
  'fish_one_day',
  'one_day_cano',
  'day_cano_fish',
  'cano_fish_approach',
  'fish_approach_sophi',
  'approach_sophi_beach',
  'sophi_beach_start',
  'beach_start_ask',
  'start_ask_legal',
  'ask_legal_fish',
  'legal_fish_lake',
  'fish_lake_said',
  'lake_said_long',
  'said_long_pay',
  'long_pay_$',
  'pay_$_per',
  '$_per_year',
  'per_year_licens',
  'year_licens_said',
  'licens_said_go',
  'said_go_caught',
  'go_caught_fish',
  'caught_fish_want',
  'fish_want_start',
  'want_start_process',
  'start_process_dinner',
  'process_dinner_get',
  'dinner_get_lake',
  'get_lake_convers',
  'lake_convers_hear',
  'convers_hear_two',
  'hear_two_week',
  'two_week_encount',
  'week_encount_time',
  'encount_time_person',
  'time_person_letter',
  'person_letter_letter',
  'letter_letter_wrote',
  'letter_wrote_danger',
  'wrote_danger_fish',
  'danger_fish_environ',
  'fish_environ_stop',
  'environ_stop_respons',
  'stop_respons_chose',
  'respons_chose_simpli',
  'chose_simpli_chuck',
  'simpli_chuck_recycl',
  'chuck_recycl_bin',
  'recycl_bin_ignor',
  'bin_ignor_worth',
  'ignor_worth_time',
  'worth_time_&',
  'time_&_xb',
  '&_xb_recent',
  'xb_recent_encount',
  'recent_encount_two',
  'encount_two_day',
  'two_day_ago',
  'day_ago_friend',
  'ago_friend_afternoon',
  'friend_afternoon_ran',
  'afternoon_ran_back',
  'ran_back_hous',
  'back_hous_beer',
  'hous_beer_along',
  'beer_along_one',
  'along_one_friend',
  'one_friend_grab',
  'friend_grab_drink',
  'grab_drink_heard',
  'drink_heard_knock',
  'heard_knock_door',
  'knock_door_answer',
  'door_answer_door',
  'answer_door_sophi',
  'door_sophi_anoth',
  'sophi_anoth_letter',
  'anoth_letter_hand',
  'letter_hand_letter',
  'hand_letter_said',
  'letter_said_tri',
  'said_tri_diplomat',
  'tri_diplomat_enough',
  'diplomat_enough_letter',
  'enough_letter_hoa',
  'letter_hoa_admittedli',
  'hoa_admittedli_bit',
  'admittedli_bit_tipsi',
  'bit_tipsi_time',
  'tipsi_time_respons',
  'time_respons_laugh',
  'respons_laugh_call',
  'laugh_call_stupid',
  'call_stupid_believ',
  'stupid_believ_hoa',
  'believ_hoa_anyth',
  'hoa_anyth_close',
  'anyth_close_door',
  'close_door_&',
  'door_&_xb',
  '&_xb_sober',
  'xb_sober_feel',
  'sober_feel_conflict',
  'feel_conflict_one',
  'conflict_one_hand',
  'one_hand_feel',
  'hand_feel_justifi',
  'feel_justifi_action',
  'justifi_action_fish',
  'action_fish_none',
  'fish_none_busi',
  'none_busi_hand',
  'busi_hand_feel',
  'hand_feel_could',
  'feel_could_dealt',
  'could_dealt_tact',
  'dealt_tact_way',
  'tact_way_asshol'],
 ['husband',
  'first',
  'babi',
  'four',
  'month',
  'ago',
  'recent',
  'visit',
  'famili',
  'let',
  'peopl',
  'outsid',
  'parent',
  'meet',
  'child',
  'fil',
  'birthday',
  'yesterday',
  'throw',
  'small',
  'parti',
  'husband',
  'decid',
  'join',
  'took',
  'babi',
  'us',
  'import',
  'add',
  'bilm',
  'husband',
  'sisterfhusband',
  'like',
  'much',
  'way',
  'dree',
  'express',
  'talk',
  'say',
  'lot',
  'bad',
  'word',
  'favorit',
  'thing',
  'say',
  'woman\\\\\\',
  'follow',
  'someth',
  'realli',
  'stupid',
  'husband',
  'think',
  'might',
  'thing',
  'care',
  'neither',
  'tbh',
  'find',
  'funni',
  'two',
  'kid',
  'tho',
  'sweet',
  'boy',
  'realli',
  'polit',
  'well',
  'behav',
  'act',
  'misbehav',
  'noth',
  'sil',
  'bil',
  'realli',
  'type',
  'parent',
  'let',
  'kid',
  'run',
  'around',
  'break',
  'thing',
  'whatev',
  'want',
  'ill',
  'give',
  'much',
  'yesterday',
  'parti',
  'babi',
  'got',
  'hungri',
  'eat',
  'cake',
  'alreadi',
  'ask',
  'mother',
  'father',
  'law',
  'okay',
  'nurs',
  'wherev',
  'want',
  'might',
  'get',
  'hungri',
  'chat',
  'hang',
  'would',
  'prefer',
  'insid',
  'mind',
  'fil',
  'birthday',
  'said',
  'could',
  'wherev',
  'want',
  'sil',
  'got',
  'pregnant',
  'never',
  'ask',
  'somewher',
  'els',
  'fair',
  'thank',
  'wear',
  'sundress',
  'cri',
  'pop',
  'boob',
  'nurs',
  'right',
  'nephew',
  'told',
  'bil',
  'daddi',
  'boobi',
  'boobi',
  'aunt',
  '\\',
  '[',
  'op\\',
  ']',
  'boobi',
  'said',
  'boobi',
  'sweetest',
  'voic',
  'bil',
  'clear',
  'throat',
  'ask',
  'go',
  'insid',
  'kid',
  'see',
  'said',
  'fil',
  'mil',
  'alreadi',
  'said',
  'okay',
  'kid',
  'deal',
  'sil',
  'ask',
  'stop',
  'truth',
  'care',
  'long',
  'kid',
  'went',
  'back',
  'cake',
  'quickli',
  'seat',
  'near',
  'got',
  'littl',
  'close',
  'whisper',
  'swear',
  'woman',
  'wouldv',
  'breastfe',
  'insid',
  'smile',
  'said',
  'loud',
  'breastfe',
  'insid',
  'go',
  'insuffer',
  'somewher',
  'els',
  'sweeti',
  'got',
  'hella',
  'mad',
  'cours',
  'said',
  'noth',
  'els',
  'leav',
  'sil',
  'said',
  'wrong',
  'mil',
  'kinda',
  'agre',
  'sinc',
  'mil',
  'host',
  'im',
  'feel',
  'bit',
  'bad',
  'aita',
  'husband_first',
  'first_babi',
  'babi_four',
  'four_month',
  'month_ago',
  'ago_recent',
  'recent_visit',
  'visit_famili',
  'famili_let',
  'let_peopl',
  'peopl_outsid',
  'outsid_parent',
  'parent_meet',
  'meet_child',
  'child_fil',
  'fil_birthday',
  'birthday_yesterday',
  'yesterday_throw',
  'throw_small',
  'small_parti',
  'parti_husband',
  'husband_decid',
  'decid_join',
  'join_took',
  'took_babi',
  'babi_us',
  'us_import',
  'import_add',
  'add_bilm',
  'bilm_husband',
  'husband_sisterfhusband',
  'sisterfhusband_like',
  'like_much',
  'much_way',
  'way_dree',
  'dree_express',
  'express_talk',
  'talk_say',
  'say_lot',
  'lot_bad',
  'bad_word',
  'word_favorit',
  'favorit_thing',
  'thing_say',
  'say_woman\\\\\\',
  'woman\\\\\\_follow',
  'follow_someth',
  'someth_realli',
  'realli_stupid',
  'stupid_husband',
  'husband_think',
  'think_might',
  'might_thing',
  'thing_care',
  'care_neither',
  'neither_tbh',
  'tbh_find',
  'find_funni',
  'funni_two',
  'two_kid',
  'kid_tho',
  'tho_sweet',
  'sweet_boy',
  'boy_realli',
  'realli_polit',
  'polit_well',
  'well_behav',
  'behav_act',
  'act_misbehav',
  'misbehav_noth',
  'noth_sil',
  'sil_bil',
  'bil_realli',
  'realli_type',
  'type_parent',
  'parent_let',
  'let_kid',
  'kid_run',
  'run_around',
  'around_break',
  'break_thing',
  'thing_whatev',
  'whatev_want',
  'want_ill',
  'ill_give',
  'give_much',
  'much_yesterday',
  'yesterday_parti',
  'parti_babi',
  'babi_got',
  'got_hungri',
  'hungri_eat',
  'eat_cake',
  'cake_alreadi',
  'alreadi_ask',
  'ask_mother',
  'mother_father',
  'father_law',
  'law_okay',
  'okay_nurs',
  'nurs_wherev',
  'wherev_want',
  'want_might',
  'might_get',
  'get_hungri',
  'hungri_chat',
  'chat_hang',
  'hang_would',
  'would_prefer',
  'prefer_insid',
  'insid_mind',
  'mind_fil',
  'fil_birthday',
  'birthday_said',
  'said_could',
  'could_wherev',
  'wherev_want',
  'want_sil',
  'sil_got',
  'got_pregnant',
  'pregnant_never',
  'never_ask',
  'ask_somewher',
  'somewher_els',
  'els_fair',
  'fair_thank',
  'thank_wear',
  'wear_sundress',
  'sundress_cri',
  'cri_pop',
  'pop_boob',
  'boob_nurs',
  'nurs_right',
  'right_nephew',
  'nephew_told',
  'told_bil',
  'bil_daddi',
  'daddi_boobi',
  'boobi_boobi',
  'boobi_aunt',
  'aunt_\\',
  '\\_[',
  '[_op\\',
  'op\\_]',
  ']_boobi',
  'boobi_said',
  'said_boobi',
  'boobi_sweetest',
  'sweetest_voic',
  'voic_bil',
  'bil_clear',
  'clear_throat',
  'throat_ask',
  'ask_go',
  'go_insid',
  'insid_kid',
  'kid_see',
  'see_said',
  'said_fil',
  'fil_mil',
  'mil_alreadi',
  'alreadi_said',
  'said_okay',
  'okay_kid',
  'kid_deal',
  'deal_sil',
  'sil_ask',
  'ask_stop',
  'stop_truth',
  'truth_care',
  'care_long',
  'long_kid',
  'kid_went',
  'went_back',
  'back_cake',
  'cake_quickli',
  'quickli_seat',
  'seat_near',
  'near_got',
  'got_littl',
  'littl_close',
  'close_whisper',
  'whisper_swear',
  'swear_woman',
  'woman_wouldv',
  'wouldv_breastfe',
  'breastfe_insid',
  'insid_smile',
  'smile_said',
  'said_loud',
  'loud_breastfe',
  'breastfe_insid',
  'insid_go',
  'go_insuffer',
  'insuffer_somewher',
  'somewher_els',
  'els_sweeti',
  'sweeti_got',
  'got_hella',
  'hella_mad',
  'mad_cours',
  'cours_said',
  'said_noth',
  'noth_els',
  'els_leav',
  'leav_sil',
  'sil_said',
  'said_wrong',
  'wrong_mil',
  'mil_kinda',
  'kinda_agre',
  'agre_sinc',
  'sinc_mil',
  'mil_host',
  'host_im',
  'im_feel',
  'feel_bit',
  'bit_bad',
  'bad_aita',
  'husband_first_babi',
  'first_babi_four',
  'babi_four_month',
  'four_month_ago',
  'month_ago_recent',
  'ago_recent_visit',
  'recent_visit_famili',
  'visit_famili_let',
  'famili_let_peopl',
  'let_peopl_outsid',
  'peopl_outsid_parent',
  'outsid_parent_meet',
  'parent_meet_child',
  'meet_child_fil',
  'child_fil_birthday',
  'fil_birthday_yesterday',
  'birthday_yesterday_throw',
  'yesterday_throw_small',
  'throw_small_parti',
  'small_parti_husband',
  'parti_husband_decid',
  'husband_decid_join',
  'decid_join_took',
  'join_took_babi',
  'took_babi_us',
  'babi_us_import',
  'us_import_add',
  'import_add_bilm',
  'add_bilm_husband',
  'bilm_husband_sisterfhusband',
  'husband_sisterfhusband_like',
  'sisterfhusband_like_much',
  'like_much_way',
  'much_way_dree',
  'way_dree_express',
  'dree_express_talk',
  'express_talk_say',
  'talk_say_lot',
  'say_lot_bad',
  'lot_bad_word',
  'bad_word_favorit',
  'word_favorit_thing',
  'favorit_thing_say',
  'thing_say_woman\\\\\\',
  'say_woman\\\\\\_follow',
  'woman\\\\\\_follow_someth',
  'follow_someth_realli',
  'someth_realli_stupid',
  'realli_stupid_husband',
  'stupid_husband_think',
  'husband_think_might',
  'think_might_thing',
  'might_thing_care',
  'thing_care_neither',
  'care_neither_tbh',
  'neither_tbh_find',
  'tbh_find_funni',
  'find_funni_two',
  'funni_two_kid',
  'two_kid_tho',
  'kid_tho_sweet',
  'tho_sweet_boy',
  'sweet_boy_realli',
  'boy_realli_polit',
  'realli_polit_well',
  'polit_well_behav',
  'well_behav_act',
  'behav_act_misbehav',
  'act_misbehav_noth',
  'misbehav_noth_sil',
  'noth_sil_bil',
  'sil_bil_realli',
  'bil_realli_type',
  'realli_type_parent',
  'type_parent_let',
  'parent_let_kid',
  'let_kid_run',
  'kid_run_around',
  'run_around_break',
  'around_break_thing',
  'break_thing_whatev',
  'thing_whatev_want',
  'whatev_want_ill',
  'want_ill_give',
  'ill_give_much',
  'give_much_yesterday',
  'much_yesterday_parti',
  'yesterday_parti_babi',
  'parti_babi_got',
  'babi_got_hungri',
  'got_hungri_eat',
  'hungri_eat_cake',
  'eat_cake_alreadi',
  'cake_alreadi_ask',
  'alreadi_ask_mother',
  'ask_mother_father',
  'mother_father_law',
  'father_law_okay',
  'law_okay_nurs',
  'okay_nurs_wherev',
  'nurs_wherev_want',
  'wherev_want_might',
  'want_might_get',
  'might_get_hungri',
  'get_hungri_chat',
  'hungri_chat_hang',
  'chat_hang_would',
  'hang_would_prefer',
  'would_prefer_insid',
  'prefer_insid_mind',
  'insid_mind_fil',
  'mind_fil_birthday',
  'fil_birthday_said',
  'birthday_said_could',
  'said_could_wherev',
  'could_wherev_want',
  'wherev_want_sil',
  'want_sil_got',
  'sil_got_pregnant',
  'got_pregnant_never',
  'pregnant_never_ask',
  'never_ask_somewher',
  'ask_somewher_els',
  'somewher_els_fair',
  'els_fair_thank',
  'fair_thank_wear',
  'thank_wear_sundress',
  'wear_sundress_cri',
  'sundress_cri_pop',
  'cri_pop_boob',
  'pop_boob_nurs',
  'boob_nurs_right',
  'nurs_right_nephew',
  'right_nephew_told',
  'nephew_told_bil',
  'told_bil_daddi',
  'bil_daddi_boobi',
  'daddi_boobi_boobi',
  'boobi_boobi_aunt',
  'boobi_aunt_\\',
  'aunt_\\_[',
  '\\_[_op\\',
  '[_op\\_]',
  'op\\_]_boobi',
  ']_boobi_said',
  'boobi_said_boobi',
  'said_boobi_sweetest',
  'boobi_sweetest_voic',
  'sweetest_voic_bil',
  'voic_bil_clear',
  'bil_clear_throat',
  'clear_throat_ask',
  'throat_ask_go',
  'ask_go_insid',
  'go_insid_kid',
  'insid_kid_see',
  'kid_see_said',
  'see_said_fil',
  'said_fil_mil',
  'fil_mil_alreadi',
  'mil_alreadi_said',
  'alreadi_said_okay',
  'said_okay_kid',
  'okay_kid_deal',
  'kid_deal_sil',
  'deal_sil_ask',
  'sil_ask_stop',
  'ask_stop_truth',
  'stop_truth_care',
  'truth_care_long',
  'care_long_kid',
  'long_kid_went',
  'kid_went_back',
  'went_back_cake',
  'back_cake_quickli',
  'cake_quickli_seat',
  'quickli_seat_near',
  'seat_near_got',
  'near_got_littl',
  'got_littl_close',
  'littl_close_whisper',
  'close_whisper_swear',
  'whisper_swear_woman',
  'swear_woman_wouldv',
  'woman_wouldv_breastfe',
  'wouldv_breastfe_insid',
  'breastfe_insid_smile',
  'insid_smile_said',
  'smile_said_loud',
  'said_loud_breastfe',
  'loud_breastfe_insid',
  'breastfe_insid_go',
  'insid_go_insuffer',
  'go_insuffer_somewher',
  'insuffer_somewher_els',
  'somewher_els_sweeti',
  'els_sweeti_got',
  'sweeti_got_hella',
  'got_hella_mad',
  'hella_mad_cours',
  'mad_cours_said',
  'cours_said_noth',
  'said_noth_els',
  'noth_els_leav',
  'els_leav_sil',
  'leav_sil_said',
  'sil_said_wrong',
  'said_wrong_mil',
  'wrong_mil_kinda',
  'mil_kinda_agre',
  'kinda_agre_sinc',
  'agre_sinc_mil',
  'sinc_mil_host',
  'mil_host_im',
  'host_im_feel',
  'im_feel_bit',
  'feel_bit_bad',
  'bit_bad_aita'],
 ['context',
  'mom',
  'marri',
  'step-dad',
  'year',
  'ago',
  'brother',
  'scott',
  'see',
  'step-dad',
  'father',
  'famili',
  'patern',
  'famili',
  'ill',
  'refer',
  'dad',
  'step-grandad',
  'gran',
  'dad',
  'gtr',
  'gran',
  'gave',
  'year',
  'ago',
  'car',
  'sick',
  'fuck',
  'also',
  'normal',
  'car',
  'drive',
  'work',
  'gtr',
  'fun',
  'show',
  'bro',
  'love',
  'car',
  'dad',
  'let',
  'drive',
  'whenev',
  'want',
  'even',
  'ad',
  'insur',
  'turn',
  'use',
  'car',
  'almost',
  'everyday',
  'abl',
  'buy',
  'last',
  'week',
  'notic',
  'scott',
  'bit',
  'sad',
  'said',
  'kid',
  'bulli',
  'parent',
  'went',
  'school',
  'talk',
  'princip',
  'problem',
  'somewhat',
  'fix',
  'still',
  'bum',
  'decid',
  'surpris',
  'yesterday',
  'pick',
  'dad',
  'car',
  'park',
  'car',
  'got',
  'wait',
  'sit',
  'trunk',
  'guy',
  'approach',
  'said',
  'sit',
  'peopl',
  'car',
  'laugh',
  'said',
  'mine',
  'problem',
  'must',
  'admit',
  'look',
  'younger',
  'mightv',
  'mistaken',
  'high',
  'schooler',
  'believ',
  'said',
  'car',
  'mine',
  'go',
  'owner',
  'got',
  'back',
  'said',
  'car',
  'got',
  'mad',
  'said',
  'look',
  'son',
  'car',
  'get',
  'ill',
  'even',
  'take',
  'pictur',
  'two',
  'get',
  'nervou',
  'get',
  'nervou',
  'tend',
  'laugh',
  'thought',
  'mock',
  'yell',
  'get',
  'car',
  'belong',
  'show',
  'proof',
  'yell',
  'tri',
  'steal',
  'car',
  'ask',
  'leav',
  'alon',
  'wait',
  'brother',
  'move',
  'meter',
  'notic',
  'make',
  'call',
  'tune',
  'call',
  'polic',
  'brother',
  'get',
  'time',
  'realli',
  'happi',
  'see',
  'dad',
  'car',
  'ran',
  'hug',
  'tri',
  'pick',
  'get',
  'guy',
  'stop',
  'mean',
  'open',
  'door',
  'obviou',
  'car',
  'mine',
  'point',
  'either',
  'way',
  'polic',
  'came',
  'ask',
  'normal',
  'question',
  'explain',
  'dad',
  'car',
  'guy',
  'said',
  'ja',
  'knew',
  'show',
  'proof',
  'licens',
  'dad',
  'paper',
  'insur',
  'paper',
  'name',
  'even',
  'text',
  'dad',
  'said',
  'hey',
  'im',
  'gon',
  'na',
  'pick',
  'scott',
  'car',
  'answer',
  'ok',
  'offer',
  'call',
  'could',
  'ask',
  'said',
  'need',
  'polic',
  'let',
  'leav',
  'scold',
  'guy',
  'drive',
  'guy',
  'call',
  'ah',
  'couldv',
  'show',
  'prefer',
  'dick',
  'context_mom',
  'mom_marri',
  'marri_step-dad',
  'step-dad_year',
  'year_ago',
  'ago_brother',
  'brother_scott',
  'scott_see',
  'see_step-dad',
  'step-dad_father',
  'father_famili',
  'famili_patern',
  'patern_famili',
  'famili_ill',
  'ill_refer',
  'refer_dad',
  'dad_step-grandad',
  'step-grandad_gran',
  'gran_dad',
  'dad_gtr',
  'gtr_gran',
  'gran_gave',
  'gave_year',
  'year_ago',
  'ago_car',
  'car_sick',
  'sick_fuck',
  'fuck_also',
  'also_normal',
  'normal_car',
  'car_drive',
  'drive_work',
  'work_gtr',
  'gtr_fun',
  'fun_show',
  'show_bro',
  'bro_love',
  'love_car',
  'car_dad',
  'dad_let',
  'let_drive',
  'drive_whenev',
  'whenev_want',
  'want_even',
  'even_ad',
  'ad_insur',
  'insur_turn',
  'turn_use',
  'use_car',
  'car_almost',
  'almost_everyday',
  'everyday_abl',
  'abl_buy',
  'buy_last',
  'last_week',
  'week_notic',
  'notic_scott',
  'scott_bit',
  'bit_sad',
  'sad_said',
  'said_kid',
  'kid_bulli',
  'bulli_parent',
  'parent_went',
  'went_school',
  'school_talk',
  'talk_princip',
  'princip_problem',
  'problem_somewhat',
  'somewhat_fix',
  'fix_still',
  'still_bum',
  'bum_decid',
  'decid_surpris',
  'surpris_yesterday',
  'yesterday_pick',
  'pick_dad',
  'dad_car',
  'car_park',
  'park_car',
  'car_got',
  'got_wait',
  'wait_sit',
  'sit_trunk',
  'trunk_guy',
  'guy_approach',
  'approach_said',
  'said_sit',
  'sit_peopl',
  'peopl_car',
  'car_laugh',
  'laugh_said',
  'said_mine',
  'mine_problem',
  'problem_must',
  'must_admit',
  'admit_look',
  'look_younger',
  'younger_mightv',
  'mightv_mistaken',
  'mistaken_high',
  'high_schooler',
  'schooler_believ',
  'believ_said',
  'said_car',
  'car_mine',
  'mine_go',
  'go_owner',
  'owner_got',
  'got_back',
  'back_said',
  'said_car',
  'car_got',
  'got_mad',
  'mad_said',
  'said_look',
  'look_son',
  'son_car',
  'car_get',
  'get_ill',
  'ill_even',
  'even_take',
  'take_pictur',
  'pictur_two',
  'two_get',
  'get_nervou',
  'nervou_get',
  'get_nervou',
  'nervou_tend',
  'tend_laugh',
  'laugh_thought',
  'thought_mock',
  'mock_yell',
  'yell_get',
  'get_car',
  'car_belong',
  'belong_show',
  'show_proof',
  'proof_yell',
  'yell_tri',
  'tri_steal',
  'steal_car',
  'car_ask',
  'ask_leav',
  'leav_alon',
  'alon_wait',
  'wait_brother',
  'brother_move',
  'move_meter',
  'meter_notic',
  'notic_make',
  'make_call',
  'call_tune',
  'tune_call',
  'call_polic',
  'polic_brother',
  'brother_get',
  'get_time',
  'time_realli',
  'realli_happi',
  'happi_see',
  'see_dad',
  'dad_car',
  'car_ran',
  'ran_hug',
  'hug_tri',
  'tri_pick',
  'pick_get',
  'get_guy',
  'guy_stop',
  'stop_mean',
  'mean_open',
  'open_door',
  'door_obviou',
  'obviou_car',
  'car_mine',
  'mine_point',
  'point_either',
  'either_way',
  'way_polic',
  'polic_came',
  'came_ask',
  'ask_normal',
  'normal_question',
  'question_explain',
  'explain_dad',
  'dad_car',
  'car_guy',
  'guy_said',
  'said_ja',
  'ja_knew',
  'knew_show',
  'show_proof',
  'proof_licens',
  'licens_dad',
  'dad_paper',
  'paper_insur',
  'insur_paper',
  'paper_name',
  'name_even',
  'even_text',
  'text_dad',
  'dad_said',
  'said_hey',
  'hey_im',
  'im_gon',
  'gon_na',
  'na_pick',
  'pick_scott',
  'scott_car',
  'car_answer',
  'answer_ok',
  'ok_offer',
  'offer_call',
  'call_could',
  'could_ask',
  'ask_said',
  'said_need',
  'need_polic',
  'polic_let',
  'let_leav',
  'leav_scold',
  'scold_guy',
  'guy_drive',
  'drive_guy',
  'guy_call',
  'call_ah',
  'ah_couldv',
  'couldv_show',
  'show_prefer',
  'prefer_dick',
  'context_mom_marri',
  'mom_marri_step-dad',
  'marri_step-dad_year',
  'step-dad_year_ago',
  'year_ago_brother',
  'ago_brother_scott',
  'brother_scott_see',
  'scott_see_step-dad',
  'see_step-dad_father',
  'step-dad_father_famili',
  'father_famili_patern',
  'famili_patern_famili',
  'patern_famili_ill',
  'famili_ill_refer',
  'ill_refer_dad',
  'refer_dad_step-grandad',
  'dad_step-grandad_gran',
  'step-grandad_gran_dad',
  'gran_dad_gtr',
  'dad_gtr_gran',
  'gtr_gran_gave',
  'gran_gave_year',
  'gave_year_ago',
  'year_ago_car',
  'ago_car_sick',
  'car_sick_fuck',
  'sick_fuck_also',
  'fuck_also_normal',
  'also_normal_car',
  'normal_car_drive',
  'car_drive_work',
  'drive_work_gtr',
  'work_gtr_fun',
  'gtr_fun_show',
  'fun_show_bro',
  'show_bro_love',
  'bro_love_car',
  'love_car_dad',
  'car_dad_let',
  'dad_let_drive',
  'let_drive_whenev',
  'drive_whenev_want',
  'whenev_want_even',
  'want_even_ad',
  'even_ad_insur',
  'ad_insur_turn',
  'insur_turn_use',
  'turn_use_car',
  'use_car_almost',
  'car_almost_everyday',
  'almost_everyday_abl',
  'everyday_abl_buy',
  'abl_buy_last',
  'buy_last_week',
  'last_week_notic',
  'week_notic_scott',
  'notic_scott_bit',
  'scott_bit_sad',
  'bit_sad_said',
  'sad_said_kid',
  'said_kid_bulli',
  'kid_bulli_parent',
  'bulli_parent_went',
  'parent_went_school',
  'went_school_talk',
  'school_talk_princip',
  'talk_princip_problem',
  'princip_problem_somewhat',
  'problem_somewhat_fix',
  'somewhat_fix_still',
  'fix_still_bum',
  'still_bum_decid',
  'bum_decid_surpris',
  'decid_surpris_yesterday',
  'surpris_yesterday_pick',
  'yesterday_pick_dad',
  'pick_dad_car',
  'dad_car_park',
  'car_park_car',
  'park_car_got',
  'car_got_wait',
  'got_wait_sit',
  'wait_sit_trunk',
  'sit_trunk_guy',
  'trunk_guy_approach',
  'guy_approach_said',
  'approach_said_sit',
  'said_sit_peopl',
  'sit_peopl_car',
  'peopl_car_laugh',
  'car_laugh_said',
  'laugh_said_mine',
  'said_mine_problem',
  'mine_problem_must',
  'problem_must_admit',
  'must_admit_look',
  'admit_look_younger',
  'look_younger_mightv',
  'younger_mightv_mistaken',
  'mightv_mistaken_high',
  'mistaken_high_schooler',
  'high_schooler_believ',
  'schooler_believ_said',
  'believ_said_car',
  'said_car_mine',
  'car_mine_go',
  'mine_go_owner',
  'go_owner_got',
  'owner_got_back',
  'got_back_said',
  'back_said_car',
  'said_car_got',
  'car_got_mad',
  'got_mad_said',
  'mad_said_look',
  'said_look_son',
  'look_son_car',
  'son_car_get',
  'car_get_ill',
  'get_ill_even',
  'ill_even_take',
  'even_take_pictur',
  'take_pictur_two',
  'pictur_two_get',
  'two_get_nervou',
  'get_nervou_get',
  'nervou_get_nervou',
  'get_nervou_tend',
  'nervou_tend_laugh',
  'tend_laugh_thought',
  'laugh_thought_mock',
  'thought_mock_yell',
  'mock_yell_get',
  'yell_get_car',
  'get_car_belong',
  'car_belong_show',
  'belong_show_proof',
  'show_proof_yell',
  'proof_yell_tri',
  'yell_tri_steal',
  'tri_steal_car',
  'steal_car_ask',
  'car_ask_leav',
  'ask_leav_alon',
  'leav_alon_wait',
  'alon_wait_brother',
  'wait_brother_move',
  'brother_move_meter',
  'move_meter_notic',
  'meter_notic_make',
  'notic_make_call',
  'make_call_tune',
  'call_tune_call',
  'tune_call_polic',
  'call_polic_brother',
  'polic_brother_get',
  'brother_get_time',
  'get_time_realli',
  'time_realli_happi',
  'realli_happi_see',
  'happi_see_dad',
  'see_dad_car',
  'dad_car_ran',
  'car_ran_hug',
  'ran_hug_tri',
  'hug_tri_pick',
  'tri_pick_get',
  'pick_get_guy',
  'get_guy_stop',
  'guy_stop_mean',
  'stop_mean_open',
  'mean_open_door',
  'open_door_obviou',
  'door_obviou_car',
  'obviou_car_mine',
  'car_mine_point',
  'mine_point_either',
  'point_either_way',
  'either_way_polic',
  'way_polic_came',
  'polic_came_ask',
  'came_ask_normal',
  'ask_normal_question',
  'normal_question_explain',
  'question_explain_dad',
  'explain_dad_car',
  'dad_car_guy',
  'car_guy_said',
  'guy_said_ja',
  'said_ja_knew',
  'ja_knew_show',
  'knew_show_proof',
  'show_proof_licens',
  'proof_licens_dad',
  'licens_dad_paper',
  'dad_paper_insur',
  'paper_insur_paper',
  'insur_paper_name',
  'paper_name_even',
  'name_even_text',
  'even_text_dad',
  'text_dad_said',
  'dad_said_hey',
  'said_hey_im',
  'hey_im_gon',
  'im_gon_na',
  'gon_na_pick',
  'na_pick_scott',
  'pick_scott_car',
  'scott_car_answer',
  'car_answer_ok',
  'answer_ok_offer',
  'ok_offer_call',
  'offer_call_could',
  'call_could_ask',
  'could_ask_said',
  'ask_said_need',
  'said_need_polic',
  'need_polic_let',
  'polic_let_leav',
  'let_leav_scold',
  'leav_scold_guy',
  'scold_guy_drive',
  'guy_drive_guy',
  'drive_guy_call',
  'guy_call_ah',
  'call_ah_couldv',
  'ah_couldv_show',
  'couldv_show_prefer',
  'show_prefer_dick'],
 ['edit',
  'phew',
  'im',
  'glad',
  'im',
  'nut',
  'wan',
  'na',
  'clarifi',
  'boss',
  'throw',
  'bu',
  'told',
  'ladi',
  'profession',
  'go',
  'away',
  'quit',
  'bother',
  'us',
  'laugh',
  'afterward',
  'retrospect',
  'pretti',
  'funni',
  'edit',
  'second',
  'hour',
  'post',
  'encount',
  'someon',
  'call',
  'children',
  'littl',
  'peopl',
  'second',
  'time',
  'life',
  'hell',
  'guess',
  'thing',
  'ok',
  'sound',
  'stupid',
  'hell',
  'drive',
  'nut',
  'recent',
  'got',
  'job',
  'climb',
  'gym',
  'boulder',
  'rope',
  'got',
  'call',
  'ladi',
  'ask',
  'appropri',
  'group',
  'littl',
  'peopl',
  'assum',
  'meant',
  'know',
  'peopl',
  'dwarfism',
  'short-statur',
  'peopl',
  'etc',
  'like',
  'polici',
  'know',
  'peopl',
  'form',
  'dwarfism',
  'might',
  'issu',
  'bone',
  'joint',
  'whatev',
  'tell',
  'ok',
  'climb',
  'risk',
  'medic',
  'issu',
  'ask',
  'doctor',
  'well',
  'day',
  'book',
  'come',
  'around',
  'turn',
  'littl',
  'peopl',
  'actual',
  'like',
  'dozen',
  'small',
  'children',
  'fuck',
  'disast',
  'strict',
  'kid',
  'per',
  'adult',
  'ratio',
  'kid',
  'gym',
  'also',
  'kid',
  'allow',
  'belay',
  'theyv',
  'assess',
  'pretti',
  'much',
  'tell',
  'come',
  'insid',
  'ladi',
  'goe',
  'ruin',
  'weekend',
  'get',
  'manag',
  'bail',
  'laugh',
  'ass',
  'also',
  'call',
  'dumbass',
  'understand',
  'talk',
  'kid',
  'fuck',
  'refer',
  'children',
  'littl',
  'peopl',
  'realli',
  'suppos',
  'anticip',
  'woman',
  'use',
  'extrem',
  'specif',
  'term',
  'actual',
  'refer',
  'anoth',
  'group',
  'peopl',
  'entir',
  'help',
  'reddit',
  'assholedumbass',
  'edit_phew',
  'phew_im',
  'im_glad',
  'glad_im',
  'im_nut',
  'nut_wan',
  'wan_na',
  'na_clarifi',
  'clarifi_boss',
  'boss_throw',
  'throw_bu',
  'bu_told',
  'told_ladi',
  'ladi_profession',
  'profession_go',
  'go_away',
  'away_quit',
  'quit_bother',
  'bother_us',
  'us_laugh',
  'laugh_afterward',
  'afterward_retrospect',
  'retrospect_pretti',
  'pretti_funni',
  'funni_edit',
  'edit_second',
  'second_hour',
  'hour_post',
  'post_encount',
  'encount_someon',
  'someon_call',
  'call_children',
  'children_littl',
  'littl_peopl',
  'peopl_second',
  'second_time',
  'time_life',
  'life_hell',
  'hell_guess',
  'guess_thing',
  'thing_ok',
  'ok_sound',
  'sound_stupid',
  'stupid_hell',
  'hell_drive',
  'drive_nut',
  'nut_recent',
  'recent_got',
  'got_job',
  'job_climb',
  'climb_gym',
  'gym_boulder',
  'boulder_rope',
  'rope_got',
  'got_call',
  'call_ladi',
  'ladi_ask',
  'ask_appropri',
  'appropri_group',
  'group_littl',
  'littl_peopl',
  'peopl_assum',
  'assum_meant',
  'meant_know',
  'know_peopl',
  'peopl_dwarfism',
  'dwarfism_short-statur',
  'short-statur_peopl',
  'peopl_etc',
  'etc_like',
  'like_polici',
  'polici_know',
  'know_peopl',
  'peopl_form',
  'form_dwarfism',
  'dwarfism_might',
  'might_issu',
  'issu_bone',
  'bone_joint',
  'joint_whatev',
  'whatev_tell',
  'tell_ok',
  'ok_climb',
  'climb_risk',
  'risk_medic',
  'medic_issu',
  'issu_ask',
  'ask_doctor',
  'doctor_well',
  'well_day',
  'day_book',
  'book_come',
  'come_around',
  'around_turn',
  'turn_littl',
  'littl_peopl',
  'peopl_actual',
  'actual_like',
  'like_dozen',
  'dozen_small',
  'small_children',
  'children_fuck',
  'fuck_disast',
  'disast_strict',
  'strict_kid',
  'kid_per',
  'per_adult',
  'adult_ratio',
  'ratio_kid',
  'kid_gym',
  'gym_also',
  'also_kid',
  'kid_allow',
  'allow_belay',
  'belay_theyv',
  'theyv_assess',
  'assess_pretti',
  'pretti_much',
  'much_tell',
  'tell_come',
  'come_insid',
  'insid_ladi',
  'ladi_goe',
  'goe_ruin',
  'ruin_weekend',
  'weekend_get',
  'get_manag',
  'manag_bail',
  'bail_laugh',
  'laugh_ass',
  'ass_also',
  'also_call',
  'call_dumbass',
  'dumbass_understand',
  'understand_talk',
  'talk_kid',
  'kid_fuck',
  'fuck_refer',
  'refer_children',
  'children_littl',
  'littl_peopl',
  'peopl_realli',
  'realli_suppos',
  'suppos_anticip',
  'anticip_woman',
  'woman_use',
  'use_extrem',
  'extrem_specif',
  'specif_term',
  'term_actual',
  'actual_refer',
  'refer_anoth',
  'anoth_group',
  'group_peopl',
  'peopl_entir',
  'entir_help',
  'help_reddit',
  'reddit_assholedumbass',
  'edit_phew_im',
  'phew_im_glad',
  'im_glad_im',
  'glad_im_nut',
  'im_nut_wan',
  'nut_wan_na',
  'wan_na_clarifi',
  'na_clarifi_boss',
  'clarifi_boss_throw',
  'boss_throw_bu',
  'throw_bu_told',
  'bu_told_ladi',
  'told_ladi_profession',
  'ladi_profession_go',
  'profession_go_away',
  'go_away_quit',
  'away_quit_bother',
  'quit_bother_us',
  'bother_us_laugh',
  'us_laugh_afterward',
  'laugh_afterward_retrospect',
  'afterward_retrospect_pretti',
  'retrospect_pretti_funni',
  'pretti_funni_edit',
  'funni_edit_second',
  'edit_second_hour',
  'second_hour_post',
  'hour_post_encount',
  'post_encount_someon',
  'encount_someon_call',
  'someon_call_children',
  'call_children_littl',
  'children_littl_peopl',
  'littl_peopl_second',
  'peopl_second_time',
  'second_time_life',
  'time_life_hell',
  'life_hell_guess',
  'hell_guess_thing',
  'guess_thing_ok',
  'thing_ok_sound',
  'ok_sound_stupid',
  'sound_stupid_hell',
  'stupid_hell_drive',
  'hell_drive_nut',
  'drive_nut_recent',
  'nut_recent_got',
  'recent_got_job',
  'got_job_climb',
  'job_climb_gym',
  'climb_gym_boulder',
  'gym_boulder_rope',
  'boulder_rope_got',
  'rope_got_call',
  'got_call_ladi',
  'call_ladi_ask',
  'ladi_ask_appropri',
  'ask_appropri_group',
  'appropri_group_littl',
  'group_littl_peopl',
  'littl_peopl_assum',
  'peopl_assum_meant',
  'assum_meant_know',
  'meant_know_peopl',
  'know_peopl_dwarfism',
  'peopl_dwarfism_short-statur',
  'dwarfism_short-statur_peopl',
  'short-statur_peopl_etc',
  'peopl_etc_like',
  'etc_like_polici',
  'like_polici_know',
  'polici_know_peopl',
  'know_peopl_form',
  'peopl_form_dwarfism',
  'form_dwarfism_might',
  'dwarfism_might_issu',
  'might_issu_bone',
  'issu_bone_joint',
  'bone_joint_whatev',
  'joint_whatev_tell',
  'whatev_tell_ok',
  'tell_ok_climb',
  'ok_climb_risk',
  'climb_risk_medic',
  'risk_medic_issu',
  'medic_issu_ask',
  'issu_ask_doctor',
  'ask_doctor_well',
  'doctor_well_day',
  'well_day_book',
  'day_book_come',
  'book_come_around',
  'come_around_turn',
  'around_turn_littl',
  'turn_littl_peopl',
  'littl_peopl_actual',
  'peopl_actual_like',
  'actual_like_dozen',
  'like_dozen_small',
  'dozen_small_children',
  'small_children_fuck',
  'children_fuck_disast',
  'fuck_disast_strict',
  'disast_strict_kid',
  'strict_kid_per',
  'kid_per_adult',
  'per_adult_ratio',
  'adult_ratio_kid',
  'ratio_kid_gym',
  'kid_gym_also',
  'gym_also_kid',
  'also_kid_allow',
  'kid_allow_belay',
  'allow_belay_theyv',
  'belay_theyv_assess',
  'theyv_assess_pretti',
  'assess_pretti_much',
  'pretti_much_tell',
  'much_tell_come',
  'tell_come_insid',
  'come_insid_ladi',
  'insid_ladi_goe',
  'ladi_goe_ruin',
  'goe_ruin_weekend',
  'ruin_weekend_get',
  'weekend_get_manag',
  'get_manag_bail',
  'manag_bail_laugh',
  'bail_laugh_ass',
  'laugh_ass_also',
  'ass_also_call',
  'also_call_dumbass',
  'call_dumbass_understand',
  'dumbass_understand_talk',
  'understand_talk_kid',
  'talk_kid_fuck',
  'kid_fuck_refer',
  'fuck_refer_children',
  'refer_children_littl',
  'children_littl_peopl',
  'littl_peopl_realli',
  'peopl_realli_suppos',
  'realli_suppos_anticip',
  'suppos_anticip_woman',
  'anticip_woman_use',
  'woman_use_extrem',
  'use_extrem_specif',
  'extrem_specif_term',
  'specif_term_actual',
  'term_actual_refer',
  'actual_refer_anoth',
  'refer_anoth_group',
  'anoth_group_peopl',
  'group_peopl_entir',
  'peopl_entir_help',
  'entir_help_reddit',
  'help_reddit_assholedumbass'],
 ['throwaway',
  'husband',
  'spend',
  'two',
  'month',
  'differ',
  'state',
  'work',
  'came',
  'back',
  'day',
  'ago',
  'obvious',
  'thrill',
  'back',
  'ive',
  'miss',
  'lot',
  'hope',
  'would',
  'abl',
  'spend',
  'time',
  'togeth',
  'two',
  'us',
  'howev',
  'mom',
  'came',
  'suppos',
  'come',
  'home',
  'slightli',
  'annoy',
  'know',
  'excit',
  'son',
  'back',
  'howev',
  'never',
  'left',
  'like',
  'prepar',
  'deal',
  'day',
  'two',
  'day',
  'nine',
  'day',
  'second',
  'time',
  'togeth',
  'insist',
  'stay',
  'instead',
  'hotel',
  'record',
  'live',
  'hour',
  'away',
  'guest',
  'room',
  'right',
  'next',
  'wall',
  'thin',
  'two',
  'us',
  'go',
  'come',
  'us',
  'make',
  'one',
  'us',
  'stay',
  'bc',
  'otherwis',
  'would',
  'bad',
  'host',
  'follow',
  'us',
  'around',
  'hous',
  'constantli',
  'want',
  'cuddl',
  'watch',
  'movi',
  'sit',
  'arm',
  'chair',
  'want',
  'go',
  'romant',
  'restaur',
  'better',
  'make',
  'tabl',
  'three',
  'even',
  'left',
  'live',
  'room',
  'go',
  'chat',
  'room',
  'follow',
  'us',
  'earlier',
  'today',
  'ask',
  'leav',
  'even',
  'though',
  'us',
  'hint',
  'need',
  'go',
  'kept',
  'say',
  'readi',
  'go',
  'yet',
  'want',
  'time',
  'son',
  'tri',
  'tell',
  'want',
  'alon',
  'time',
  'kept',
  'insist',
  'join',
  'us',
  'final',
  'snap',
  'said',
  'sinc',
  'seem',
  'oblivi',
  'put',
  'bluntli',
  'want',
  'fuck',
  'son',
  'want',
  'see',
  'hear',
  'need',
  'leav',
  'ik',
  'classiest',
  'respons',
  'ever',
  'frustrat',
  'anyway',
  'yell',
  'eventu',
  'left',
  'final',
  'got',
  'alon',
  'time',
  'blow',
  'phone',
  'say',
  'disgust',
  'respect',
  'son',
  'keep',
  'tell',
  'husband',
  'someon',
  'crude',
  'dare',
  'let',
  'speak',
  'like',
  'im',
  'sure',
  'get',
  'idea',
  'ik',
  'said',
  'realli',
  'inappropri',
  'aita',
  'edit',
  'read',
  'comment',
  'definit',
  'let',
  'husband',
  'know',
  'need',
  'step',
  'agre',
  'made',
  'leav',
  'love',
  'death',
  'want',
  'accommod',
  'fear',
  'make',
  'angri',
  'nasti',
  'angri',
  'turn',
  'whole',
  'famili',
  'howev',
  'need',
  'set',
  'boundari',
  'throwaway_husband',
  'husband_spend',
  'spend_two',
  'two_month',
  'month_differ',
  'differ_state',
  'state_work',
  'work_came',
  'came_back',
  'back_day',
  'day_ago',
  'ago_obvious',
  'obvious_thrill',
  'thrill_back',
  'back_ive',
  'ive_miss',
  'miss_lot',
  'lot_hope',
  'hope_would',
  'would_abl',
  'abl_spend',
  'spend_time',
  'time_togeth',
  'togeth_two',
  'two_us',
  'us_howev',
  'howev_mom',
  'mom_came',
  'came_suppos',
  'suppos_come',
  'come_home',
  'home_slightli',
  'slightli_annoy',
  'annoy_know',
  'know_excit',
  'excit_son',
  'son_back',
  'back_howev',
  'howev_never',
  'never_left',
  'left_like',
  'like_prepar',
  'prepar_deal',
  'deal_day',
  'day_two',
  'two_day',
  'day_nine',
  'nine_day',
  'day_second',
  'second_time',
  'time_togeth',
  'togeth_insist',
  'insist_stay',
  'stay_instead',
  'instead_hotel',
  'hotel_record',
  'record_live',
  'live_hour',
  'hour_away',
  'away_guest',
  'guest_room',
  'room_right',
  'right_next',
  'next_wall',
  'wall_thin',
  'thin_two',
  'two_us',
  'us_go',
  'go_come',
  'come_us',
  'us_make',
  'make_one',
  'one_us',
  'us_stay',
  'stay_bc',
  'bc_otherwis',
  'otherwis_would',
  'would_bad',
  'bad_host',
  'host_follow',
  'follow_us',
  'us_around',
  'around_hous',
  'hous_constantli',
  'constantli_want',
  'want_cuddl',
  'cuddl_watch',
  'watch_movi',
  'movi_sit',
  'sit_arm',
  'arm_chair',
  'chair_want',
  'want_go',
  'go_romant',
  'romant_restaur',
  'restaur_better',
  'better_make',
  'make_tabl',
  'tabl_three',
  'three_even',
  'even_left',
  'left_live',
  'live_room',
  'room_go',
  'go_chat',
  'chat_room',
  'room_follow',
  'follow_us',
  'us_earlier',
  'earlier_today',
  'today_ask',
  'ask_leav',
  'leav_even',
  'even_though',
  'though_us',
  'us_hint',
  'hint_need',
  'need_go',
  'go_kept',
  'kept_say',
  'say_readi',
  'readi_go',
  'go_yet',
  'yet_want',
  'want_time',
  'time_son',
  'son_tri',
  'tri_tell',
  'tell_want',
  'want_alon',
  'alon_time',
  'time_kept',
  'kept_insist',
  'insist_join',
  'join_us',
  'us_final',
  'final_snap',
  'snap_said',
  'said_sinc',
  'sinc_seem',
  'seem_oblivi',
  'oblivi_put',
  'put_bluntli',
  'bluntli_want',
  'want_fuck',
  'fuck_son',
  'son_want',
  'want_see',
  'see_hear',
  'hear_need',
  'need_leav',
  'leav_ik',
  'ik_classiest',
  'classiest_respons',
  'respons_ever',
  'ever_frustrat',
  'frustrat_anyway',
  'anyway_yell',
  'yell_eventu',
  'eventu_left',
  'left_final',
  'final_got',
  'got_alon',
  'alon_time',
  'time_blow',
  'blow_phone',
  'phone_say',
  'say_disgust',
  'disgust_respect',
  'respect_son',
  'son_keep',
  'keep_tell',
  'tell_husband',
  'husband_someon',
  'someon_crude',
  'crude_dare',
  'dare_let',
  'let_speak',
  'speak_like',
  'like_im',
  'im_sure',
  'sure_get',
  'get_idea',
  'idea_ik',
  'ik_said',
  'said_realli',
  'realli_inappropri',
  'inappropri_aita',
  'aita_edit',
  'edit_read',
  'read_comment',
  'comment_definit',
  'definit_let',
  'let_husband',
  'husband_know',
  'know_need',
  'need_step',
  'step_agre',
  'agre_made',
  'made_leav',
  'leav_love',
  'love_death',
  'death_want',
  'want_accommod',
  'accommod_fear',
  'fear_make',
  'make_angri',
  'angri_nasti',
  'nasti_angri',
  'angri_turn',
  'turn_whole',
  'whole_famili',
  'famili_howev',
  'howev_need',
  'need_set',
  'set_boundari',
  'throwaway_husband_spend',
  'husband_spend_two',
  'spend_two_month',
  'two_month_differ',
  'month_differ_state',
  'differ_state_work',
  'state_work_came',
  'work_came_back',
  'came_back_day',
  'back_day_ago',
  'day_ago_obvious',
  'ago_obvious_thrill',
  'obvious_thrill_back',
  'thrill_back_ive',
  'back_ive_miss',
  'ive_miss_lot',
  'miss_lot_hope',
  'lot_hope_would',
  'hope_would_abl',
  'would_abl_spend',
  'abl_spend_time',
  'spend_time_togeth',
  'time_togeth_two',
  'togeth_two_us',
  'two_us_howev',
  'us_howev_mom',
  'howev_mom_came',
  'mom_came_suppos',
  'came_suppos_come',
  'suppos_come_home',
  'come_home_slightli',
  'home_slightli_annoy',
  'slightli_annoy_know',
  'annoy_know_excit',
  'know_excit_son',
  'excit_son_back',
  'son_back_howev',
  'back_howev_never',
  'howev_never_left',
  'never_left_like',
  'left_like_prepar',
  'like_prepar_deal',
  'prepar_deal_day',
  'deal_day_two',
  'day_two_day',
  'two_day_nine',
  'day_nine_day',
  'nine_day_second',
  'day_second_time',
  'second_time_togeth',
  'time_togeth_insist',
  'togeth_insist_stay',
  'insist_stay_instead',
  'stay_instead_hotel',
  'instead_hotel_record',
  'hotel_record_live',
  'record_live_hour',
  'live_hour_away',
  'hour_away_guest',
  'away_guest_room',
  'guest_room_right',
  'room_right_next',
  'right_next_wall',
  'next_wall_thin',
  'wall_thin_two',
  'thin_two_us',
  'two_us_go',
  'us_go_come',
  'go_come_us',
  'come_us_make',
  'us_make_one',
  'make_one_us',
  'one_us_stay',
  'us_stay_bc',
  'stay_bc_otherwis',
  'bc_otherwis_would',
  'otherwis_would_bad',
  'would_bad_host',
  'bad_host_follow',
  'host_follow_us',
  'follow_us_around',
  'us_around_hous',
  'around_hous_constantli',
  'hous_constantli_want',
  'constantli_want_cuddl',
  'want_cuddl_watch',
  'cuddl_watch_movi',
  'watch_movi_sit',
  'movi_sit_arm',
  'sit_arm_chair',
  'arm_chair_want',
  'chair_want_go',
  'want_go_romant',
  'go_romant_restaur',
  'romant_restaur_better',
  'restaur_better_make',
  'better_make_tabl',
  'make_tabl_three',
  'tabl_three_even',
  'three_even_left',
  'even_left_live',
  'left_live_room',
  'live_room_go',
  'room_go_chat',
  'go_chat_room',
  'chat_room_follow',
  'room_follow_us',
  'follow_us_earlier',
  'us_earlier_today',
  'earlier_today_ask',
  'today_ask_leav',
  'ask_leav_even',
  'leav_even_though',
  'even_though_us',
  'though_us_hint',
  'us_hint_need',
  'hint_need_go',
  'need_go_kept',
  'go_kept_say',
  'kept_say_readi',
  'say_readi_go',
  'readi_go_yet',
  'go_yet_want',
  'yet_want_time',
  'want_time_son',
  'time_son_tri',
  'son_tri_tell',
  'tri_tell_want',
  'tell_want_alon',
  'want_alon_time',
  'alon_time_kept',
  'time_kept_insist',
  'kept_insist_join',
  'insist_join_us',
  'join_us_final',
  'us_final_snap',
  'final_snap_said',
  'snap_said_sinc',
  'said_sinc_seem',
  'sinc_seem_oblivi',
  'seem_oblivi_put',
  'oblivi_put_bluntli',
  'put_bluntli_want',
  'bluntli_want_fuck',
  'want_fuck_son',
  'fuck_son_want',
  'son_want_see',
  'want_see_hear',
  'see_hear_need',
  'hear_need_leav',
  'need_leav_ik',
  'leav_ik_classiest',
  'ik_classiest_respons',
  'classiest_respons_ever',
  'respons_ever_frustrat',
  'ever_frustrat_anyway',
  'frustrat_anyway_yell',
  'anyway_yell_eventu',
  'yell_eventu_left',
  'eventu_left_final',
  'left_final_got',
  'final_got_alon',
  'got_alon_time',
  'alon_time_blow',
  'time_blow_phone',
  'blow_phone_say',
  'phone_say_disgust',
  'say_disgust_respect',
  'disgust_respect_son',
  'respect_son_keep',
  'son_keep_tell',
  'keep_tell_husband',
  'tell_husband_someon',
  'husband_someon_crude',
  'someon_crude_dare',
  'crude_dare_let',
  'dare_let_speak',
  'let_speak_like',
  'speak_like_im',
  'like_im_sure',
  'im_sure_get',
  'sure_get_idea',
  'get_idea_ik',
  'idea_ik_said',
  'ik_said_realli',
  'said_realli_inappropri',
  'realli_inappropri_aita',
  'inappropri_aita_edit',
  'aita_edit_read',
  'edit_read_comment',
  'read_comment_definit',
  'comment_definit_let',
  'definit_let_husband',
  'let_husband_know',
  'husband_know_need',
  'know_need_step',
  'need_step_agre',
  'step_agre_made',
  'agre_made_leav',
  'made_leav_love',
  'leav_love_death',
  'love_death_want',
  'death_want_accommod',
  'want_accommod_fear',
  'accommod_fear_make',
  'fear_make_angri',
  'make_angri_nasti',
  'angri_nasti_angri',
  'nasti_angri_turn',
  'angri_turn_whole',
  'turn_whole_famili',
  'whole_famili_howev',
  'famili_howev_need',
  'howev_need_set',
  'need_set_boundari'],
 ['im',
  'engag',
  'noah',
  'first',
  'christma',
  'spent',
  'famili',
  'met',
  'summer',
  'move',
  'near',
  'famili',
  'finish',
  'colleg',
  'get',
  'marri',
  'februari',
  'expect',
  'first',
  'child',
  'togeth',
  'may',
  'someon',
  'famili',
  'see',
  'close',
  'famili',
  'want',
  'make',
  'sure',
  'show',
  'appreci',
  'gift',
  'gave',
  'tri',
  'get',
  'someth',
  'person',
  'would',
  'love',
  'one',
  'sister',
  'love',
  'read',
  'made',
  'book',
  'sleev',
  'littl',
  'detail',
  'favorit',
  'book',
  'one',
  'niec',
  'spectrum',
  'want',
  'cloth',
  'stuffi',
  'made',
  'cloth',
  'put',
  'stuffi',
  'bought',
  'mom',
  'jewelri',
  'box',
  'admir',
  'coupl',
  'time',
  'mention',
  'never',
  'real',
  'one',
  'dad',
  'bought',
  'frame',
  'offic',
  'big',
  'enough',
  'hold',
  'photo',
  'whole',
  'famili',
  'sinc',
  'alway',
  'complain',
  'find',
  'one',
  'big',
  'enough',
  'nice',
  'enough',
  'room',
  'individu',
  'frame',
  'includ',
  'photo',
  'noah',
  'provid',
  'got',
  'sister',
  'favorit',
  'makeup',
  'mention',
  'afford',
  'buy',
  'late',
  'got',
  'brother',
  'sign',
  'piec',
  'memorabilia',
  'favorit',
  'sport',
  'team',
  'rest',
  'niec',
  'nephew',
  'bought',
  'wish',
  'list',
  'item',
  'parent',
  'get',
  'noah',
  'thought',
  'would',
  'love',
  'everyth',
  'told',
  'need',
  'go',
  'effort',
  'spent',
  'week',
  'track',
  'everyth',
  'search',
  'certain',
  'item',
  'realli',
  'thought',
  'theyd',
  'like',
  'christma',
  'day',
  'happen',
  'could',
  'tell',
  'someth',
  'spent',
  'whole',
  'time',
  'worri',
  'bought',
  'stuff',
  'like',
  'anymor',
  'someth',
  'said',
  'noth',
  'next',
  'day',
  'ask',
  'noah',
  'hell',
  'think',
  'like',
  'kind',
  'stalker',
  'buy',
  'person',
  'stuff',
  'im',
  'almost',
  'stranger',
  'next',
  'day',
  'saw',
  'apolog',
  'gift',
  'gave',
  'told',
  'would',
  'lot',
  'mind',
  'futur',
  'offer',
  'make',
  'one',
  'sister',
  'call',
  'stalker',
  'face',
  'told',
  'wonder',
  'famili',
  'want',
  'creepi',
  'stuff',
  'like',
  'noah',
  'yell',
  'apolog',
  'told',
  'want',
  'hurt',
  'anyon',
  'would',
  'learn',
  'told',
  'overstep',
  'noah',
  'said',
  'leav',
  'owe',
  'apolog',
  'feel',
  'bad',
  'noah',
  'support',
  'told',
  'noth',
  'wrong',
  'sure',
  'much',
  'offens',
  'true',
  'need',
  'ask',
  'aita',
  'also',
  'sure',
  'relev',
  'grew',
  'unhappi',
  'home',
  'parent',
  'unkind',
  'sister',
  'much',
  'older',
  'also',
  'hate',
  'think',
  'mayb',
  'parent',
  'treat',
  'end',
  'nobodi',
  'want',
  'time',
  'homeless',
  'good',
  'period',
  'noah',
  'sister',
  'meant',
  'told',
  'honestli',
  'ask',
  'eta',
  'want',
  'clarifi',
  'someth',
  'might',
  'sound',
  'strang',
  'spoken',
  'phone',
  'met',
  'person',
  'year',
  'covid',
  'us',
  'live',
  'differ',
  'citi',
  'time',
  'gotten',
  'chanc',
  'genuin',
  'close',
  'sorri',
  'anoth',
  'edit',
  'want',
  'clarifi',
  'met',
  'person',
  'christma',
  'feel',
  'like',
  'mess',
  'express',
  'met',
  'first',
  'time',
  'summer',
  'also',
  'sinc',
  'peopl',
  'ask',
  'got',
  'gift',
  'card',
  'return',
  'gift',
  'want',
  'thank',
  'everyon',
  'comment',
  'go',
  'talk',
  'happen',
  'therapist',
  'work',
  'build',
  'confid',
  'im',
  'work',
  'progress',
  'therapi',
  'first',
  'time',
  'abl',
  'see',
  'realli',
  'good',
  'therapist',
  'histori',
  'left',
  'much',
  'belief',
  'confid',
  'never',
  'good',
  'never',
  'ever',
  'meant',
  'make',
  'anyon',
  'awkward',
  'uncomfort',
  'make',
  'someon',
  'feel',
  'bad',
  'see',
  'comment',
  'believ',
  'majorli',
  'wrong',
  'known',
  'better',
  'first',
  'christma',
  'famili',
  'set',
  'fianc',
  'person',
  'share',
  'christma',
  'know',
  'want',
  'famili',
  'accept',
  'work',
  'okay',
  'apolog',
  'tri',
  'hard',
  'noah',
  'want',
  'talk',
  'famili',
  'calm',
  'might',
  'take',
  'bit',
  'angri',
  'readi',
  'see',
  'apolog',
  'kind',
  'mani',
  'peopl',
  'made',
  'cri',
  'help',
  'take',
  'comfort',
  'fact',
  'wrong',
  'appreci',
  'honesti',
  'also',
  'peopl',
  'would',
  'like',
  'see',
  'much',
  'im_engag',
  'engag_noah',
  'noah_first',
  'first_christma',
  'christma_spent',
  'spent_famili',
  'famili_met',
  'met_summer',
  'summer_move',
  'move_near',
  'near_famili',
  'famili_finish',
  'finish_colleg',
  'colleg_get',
  'get_marri',
  'marri_februari',
  'februari_expect',
  'expect_first',
  'first_child',
  'child_togeth',
  'togeth_may',
  'may_someon',
  'someon_famili',
  'famili_see',
  'see_close',
  'close_famili',
  'famili_want',
  'want_make',
  'make_sure',
  'sure_show',
  'show_appreci',
  'appreci_gift',
  'gift_gave',
  'gave_tri',
  'tri_get',
  'get_someth',
  'someth_person',
  'person_would',
  'would_love',
  'love_one',
  'one_sister',
  'sister_love',
  'love_read',
  'read_made',
  'made_book',
  'book_sleev',
  'sleev_littl',
  'littl_detail',
  'detail_favorit',
  'favorit_book',
  'book_one',
  'one_niec',
  'niec_spectrum',
  'spectrum_want',
  'want_cloth',
  'cloth_stuffi',
  'stuffi_made',
  'made_cloth',
  'cloth_put',
  'put_stuffi',
  'stuffi_bought',
  'bought_mom',
  'mom_jewelri',
  'jewelri_box',
  'box_admir',
  'admir_coupl',
  'coupl_time',
  'time_mention',
  'mention_never',
  'never_real',
  'real_one',
  'one_dad',
  'dad_bought',
  'bought_frame',
  'frame_offic',
  'offic_big',
  'big_enough',
  'enough_hold',
  'hold_photo',
  'photo_whole',
  'whole_famili',
  'famili_sinc',
  'sinc_alway',
  'alway_complain',
  'complain_find',
  'find_one',
  'one_big',
  'big_enough',
  'enough_nice',
  'nice_enough',
  'enough_room',
  'room_individu',
  'individu_frame',
  'frame_includ',
  'includ_photo',
  'photo_noah',
  'noah_provid',
  'provid_got',
  'got_sister',
  'sister_favorit',
  'favorit_makeup',
  'makeup_mention',
  'mention_afford',
  'afford_buy',
  'buy_late',
  'late_got',
  'got_brother',
  'brother_sign',
  'sign_piec',
  'piec_memorabilia',
  'memorabilia_favorit',
  'favorit_sport',
  'sport_team',
  'team_rest',
  'rest_niec',
  'niec_nephew',
  'nephew_bought',
  'bought_wish',
  'wish_list',
  'list_item',
  'item_parent',
  'parent_get',
  'get_noah',
  'noah_thought',
  'thought_would',
  'would_love',
  'love_everyth',
  'everyth_told',
  'told_need',
  'need_go',
  'go_effort',
  'effort_spent',
  'spent_week',
  'week_track',
  'track_everyth',
  'everyth_search',
  'search_certain',
  'certain_item',
  'item_realli',
  'realli_thought',
  'thought_theyd',
  'theyd_like',
  'like_christma',
  'christma_day',
  'day_happen',
  'happen_could',
  'could_tell',
  'tell_someth',
  'someth_spent',
  'spent_whole',
  'whole_time',
  'time_worri',
  'worri_bought',
  'bought_stuff',
  'stuff_like',
  'like_anymor',
  'anymor_someth',
  'someth_said',
  'said_noth',
  'noth_next',
  'next_day',
  'day_ask',
  'ask_noah',
  'noah_hell',
  'hell_think',
  'think_like',
  'like_kind',
  'kind_stalker',
  'stalker_buy',
  'buy_person',
  'person_stuff',
  'stuff_im',
  'im_almost',
  'almost_stranger',
  'stranger_next',
  'next_day',
  'day_saw',
  'saw_apolog',
  'apolog_gift',
  'gift_gave',
  'gave_told',
  'told_would',
  'would_lot',
  'lot_mind',
  'mind_futur',
  'futur_offer',
  'offer_make',
  'make_one',
  'one_sister',
  'sister_call',
  'call_stalker',
  'stalker_face',
  'face_told',
  'told_wonder',
  'wonder_famili',
  'famili_want',
  'want_creepi',
  'creepi_stuff',
  'stuff_like',
  'like_noah',
  'noah_yell',
  'yell_apolog',
  'apolog_told',
  'told_want',
  'want_hurt',
  'hurt_anyon',
  'anyon_would',
  'would_learn',
  'learn_told',
  'told_overstep',
  'overstep_noah',
  'noah_said',
  'said_leav',
  'leav_owe',
  'owe_apolog',
  'apolog_feel',
  'feel_bad',
  'bad_noah',
  'noah_support',
  'support_told',
  'told_noth',
  'noth_wrong',
  'wrong_sure',
  'sure_much',
  'much_offens',
  'offens_true',
  'true_need',
  'need_ask',
  'ask_aita',
  'aita_also',
  'also_sure',
  'sure_relev',
  'relev_grew',
  'grew_unhappi',
  'unhappi_home',
  'home_parent',
  'parent_unkind',
  'unkind_sister',
  'sister_much',
  'much_older',
  'older_also',
  'also_hate',
  'hate_think',
  'think_mayb',
  'mayb_parent',
  'parent_treat',
  'treat_end',
  'end_nobodi',
  'nobodi_want',
  'want_time',
  'time_homeless',
  'homeless_good',
  'good_period',
  'period_noah',
  'noah_sister',
  'sister_meant',
  'meant_told',
  'told_honestli',
  'honestli_ask',
  'ask_eta',
  'eta_want',
  'want_clarifi',
  'clarifi_someth',
  'someth_might',
  'might_sound',
  'sound_strang',
  'strang_spoken',
  'spoken_phone',
  'phone_met',
  'met_person',
  'person_year',
  'year_covid',
  'covid_us',
  'us_live',
  'live_differ',
  'differ_citi',
  'citi_time',
  'time_gotten',
  'gotten_chanc',
  'chanc_genuin',
  'genuin_close',
  'close_sorri',
  'sorri_anoth',
  'anoth_edit',
  'edit_want',
  'want_clarifi',
  'clarifi_met',
  'met_person',
  'person_christma',
  'christma_feel',
  'feel_like',
  'like_mess',
  'mess_express',
  'express_met',
  'met_first',
  'first_time',
  'time_summer',
  'summer_also',
  'also_sinc',
  'sinc_peopl',
  'peopl_ask',
  'ask_got',
  'got_gift',
  'gift_card',
  'card_return',
  'return_gift',
  'gift_want',
  'want_thank',
  'thank_everyon',
  'everyon_comment',
  'comment_go',
  'go_talk',
  'talk_happen',
  'happen_therapist',
  'therapist_work',
  'work_build',
  'build_confid',
  'confid_im',
  'im_work',
  'work_progress',
  'progress_therapi',
  'therapi_first',
  'first_time',
  'time_abl',
  'abl_see',
  'see_realli',
  'realli_good',
  'good_therapist',
  'therapist_histori',
  'histori_left',
  'left_much',
  'much_belief',
  'belief_confid',
  'confid_never',
  'never_good',
  'good_never',
  'never_ever',
  'ever_meant',
  'meant_make',
  'make_anyon',
  'anyon_awkward',
  'awkward_uncomfort',
  'uncomfort_make',
  'make_someon',
  'someon_feel',
  'feel_bad',
  'bad_see',
  'see_comment',
  'comment_believ',
  'believ_majorli',
  'majorli_wrong',
  'wrong_known',
  'known_better',
  'better_first',
  'first_christma',
  'christma_famili',
  'famili_set',
  'set_fianc',
  'fianc_person',
  'person_share',
  'share_christma',
  'christma_know',
  'know_want',
  'want_famili',
  'famili_accept',
  'accept_work',
  'work_okay',
  'okay_apolog',
  'apolog_tri',
  'tri_hard',
  'hard_noah',
  'noah_want',
  'want_talk',
  'talk_famili',
  'famili_calm',
  'calm_might',
  'might_take',
  'take_bit',
  'bit_angri',
  'angri_readi',
  'readi_see',
  'see_apolog',
  'apolog_kind',
  'kind_mani',
  'mani_peopl',
  'peopl_made',
  'made_cri',
  'cri_help',
  'help_take',
  'take_comfort',
  'comfort_fact',
  'fact_wrong',
  'wrong_appreci',
  'appreci_honesti',
  'honesti_also',
  'also_peopl',
  'peopl_would',
  'would_like',
  'like_see',
  'see_much',
  'im_engag_noah',
  'engag_noah_first',
  'noah_first_christma',
  'first_christma_spent',
  'christma_spent_famili',
  'spent_famili_met',
  'famili_met_summer',
  'met_summer_move',
  'summer_move_near',
  'move_near_famili',
  'near_famili_finish',
  'famili_finish_colleg',
  'finish_colleg_get',
  'colleg_get_marri',
  'get_marri_februari',
  'marri_februari_expect',
  'februari_expect_first',
  'expect_first_child',
  'first_child_togeth',
  'child_togeth_may',
  'togeth_may_someon',
  'may_someon_famili',
  'someon_famili_see',
  'famili_see_close',
  'see_close_famili',
  'close_famili_want',
  'famili_want_make',
  'want_make_sure',
  'make_sure_show',
  'sure_show_appreci',
  'show_appreci_gift',
  'appreci_gift_gave',
  'gift_gave_tri',
  'gave_tri_get',
  'tri_get_someth',
  'get_someth_person',
  'someth_person_would',
  'person_would_love',
  'would_love_one',
  'love_one_sister',
  'one_sister_love',
  'sister_love_read',
  'love_read_made',
  'read_made_book',
  'made_book_sleev',
  'book_sleev_littl',
  'sleev_littl_detail',
  'littl_detail_favorit',
  'detail_favorit_book',
  'favorit_book_one',
  'book_one_niec',
  'one_niec_spectrum',
  'niec_spectrum_want',
  'spectrum_want_cloth',
  'want_cloth_stuffi',
  'cloth_stuffi_made',
  'stuffi_made_cloth',
  'made_cloth_put',
  'cloth_put_stuffi',
  'put_stuffi_bought',
  'stuffi_bought_mom',
  'bought_mom_jewelri',
  'mom_jewelri_box',
  'jewelri_box_admir',
  'box_admir_coupl',
  'admir_coupl_time',
  'coupl_time_mention',
  'time_mention_never',
  'mention_never_real',
  'never_real_one',
  'real_one_dad',
  'one_dad_bought',
  'dad_bought_frame',
  'bought_frame_offic',
  'frame_offic_big',
  'offic_big_enough',
  'big_enough_hold',
  'enough_hold_photo',
  'hold_photo_whole',
  'photo_whole_famili',
  'whole_famili_sinc',
  'famili_sinc_alway',
  'sinc_alway_complain',
  'alway_complain_find',
  'complain_find_one',
  'find_one_big',
  'one_big_enough',
  'big_enough_nice',
  'enough_nice_enough',
  'nice_enough_room',
  'enough_room_individu',
  'room_individu_frame',
  'individu_frame_includ',
  'frame_includ_photo',
  'includ_photo_noah',
  'photo_noah_provid',
  'noah_provid_got',
  'provid_got_sister',
  'got_sister_favorit',
  'sister_favorit_makeup',
  'favorit_makeup_mention',
  'makeup_mention_afford',
  'mention_afford_buy',
  'afford_buy_late',
  'buy_late_got',
  'late_got_brother',
  'got_brother_sign',
  'brother_sign_piec',
  'sign_piec_memorabilia',
  'piec_memorabilia_favorit',
  'memorabilia_favorit_sport',
  'favorit_sport_team',
  'sport_team_rest',
  'team_rest_niec',
  'rest_niec_nephew',
  'niec_nephew_bought',
  'nephew_bought_wish',
  'bought_wish_list',
  'wish_list_item',
  'list_item_parent',
  'item_parent_get',
  'parent_get_noah',
  'get_noah_thought',
  'noah_thought_would',
  'thought_would_love',
  'would_love_everyth',
  'love_everyth_told',
  'everyth_told_need',
  'told_need_go',
  'need_go_effort',
  'go_effort_spent',
  'effort_spent_week',
  'spent_week_track',
  'week_track_everyth',
  'track_everyth_search',
  'everyth_search_certain',
  'search_certain_item',
  'certain_item_realli',
  'item_realli_thought',
  'realli_thought_theyd',
  'thought_theyd_like',
  'theyd_like_christma',
  'like_christma_day',
  'christma_day_happen',
  'day_happen_could',
  'happen_could_tell',
  'could_tell_someth',
  'tell_someth_spent',
  'someth_spent_whole',
  'spent_whole_time',
  'whole_time_worri',
  'time_worri_bought',
  'worri_bought_stuff',
  'bought_stuff_like',
  'stuff_like_anymor',
  'like_anymor_someth',
  'anymor_someth_said',
  'someth_said_noth',
  'said_noth_next',
  'noth_next_day',
  'next_day_ask',
  'day_ask_noah',
  'ask_noah_hell',
  'noah_hell_think',
  'hell_think_like',
  'think_like_kind',
  'like_kind_stalker',
  'kind_stalker_buy',
  'stalker_buy_person',
  'buy_person_stuff',
  'person_stuff_im',
  'stuff_im_almost',
  'im_almost_stranger',
  'almost_stranger_next',
  'stranger_next_day',
  'next_day_saw',
  'day_saw_apolog',
  'saw_apolog_gift',
  'apolog_gift_gave',
  'gift_gave_told',
  'gave_told_would',
  'told_would_lot',
  'would_lot_mind',
  'lot_mind_futur',
  'mind_futur_offer',
  'futur_offer_make',
  'offer_make_one',
  'make_one_sister',
  'one_sister_call',
  'sister_call_stalker',
  'call_stalker_face',
  'stalker_face_told',
  'face_told_wonder',
  'told_wonder_famili',
  'wonder_famili_want',
  'famili_want_creepi',
  'want_creepi_stuff',
  'creepi_stuff_like',
  'stuff_like_noah',
  ...],
 ['turn',
  'earli',
  'august',
  'th',
  'birthday',
  'want',
  'go',
  'celebr',
  'famili',
  'go',
  'favorit',
  'chines',
  'restaur',
  'im',
  'quit',
  'picki',
  'eater',
  'im',
  'autist',
  'issu',
  'textur',
  'type',
  'asian',
  'food',
  'safe',
  'food',
  'come',
  'western',
  'cuisin',
  'lot',
  'option',
  'unless',
  'make',
  'home',
  'everyth',
  'organis',
  'readi',
  'go',
  'week',
  'prior',
  'birthday',
  'brother',
  'fiancé',
  'vicki',
  'said',
  'cant',
  'go',
  'said',
  'seafood',
  'allergi',
  'contact',
  'restaur',
  'said',
  'cant',
  'realist',
  'cater',
  'polit',
  'advis',
  'eat',
  'vicki',
  'brother',
  'suggest',
  'go',
  'italian',
  'restaur',
  'instead',
  'everyon',
  'board',
  'buti',
  'hate',
  'italian',
  'food',
  'textur',
  'chees',
  'pasta',
  'gross',
  'got',
  'upset',
  'suppos',
  'dinner',
  '*',
  '*',
  'birthday',
  'like',
  'got',
  'forgotten',
  'talk',
  'parent',
  'told',
  'stop',
  'complain',
  'vicki',
  'cant',
  'help',
  'allergi',
  'suck',
  'went',
  'spent',
  'birthday',
  'miser',
  'end',
  'sneak',
  'snack',
  'restaur',
  'well',
  'last',
  'weekend',
  'spontan',
  'went',
  'brother',
  'hous',
  'warn',
  'forgotten',
  'hoodi',
  'day',
  'prior',
  'brother',
  'let',
  'insid',
  'saw',
  'vicki',
  'sat',
  'couch',
  'scof',
  'tuna',
  'like',
  'nobodi',
  'busi',
  'thought',
  'allerg',
  'seafood',
  'vicki',
  'talk',
  'th',
  'birthday',
  'last',
  'month',
  'said',
  'go',
  'chines',
  'restaur',
  'allerg',
  'seafood',
  'vicki',
  'well',
  'im',
  '*',
  'medic',
  '*',
  'allerg',
  'cant',
  'stand',
  'smell',
  'shrimp',
  'prawn',
  'make',
  'feel',
  'nauseou',
  'ruin',
  'th',
  'birthday',
  'like',
  'seafood',
  'smell',
  'wow',
  'storm',
  'block',
  'vicki',
  'brother',
  'everyth',
  'believ',
  'talk',
  'parent',
  'think',
  'im',
  'dramat',
  'restaur',
  'told',
  'apologis',
  'vicki',
  'speak',
  'like',
  'home',
  'angri',
  'went',
  'go',
  'stay',
  'bf',
  'famili',
  'day',
  'kindli',
  'let',
  'stay',
  'famili',
  'think',
  'went',
  'super',
  'overboard',
  'call',
  'brat',
  'entitl',
  'know',
  'feel',
  'ah',
  'edit',
  'thank',
  'wonder',
  'comment',
  'award',
  'hope',
  'great',
  'day',
  'turn_earli',
  'earli_august',
  'august_th',
  'th_birthday',
  'birthday_want',
  'want_go',
  'go_celebr',
  'celebr_famili',
  'famili_go',
  'go_favorit',
  'favorit_chines',
  'chines_restaur',
  'restaur_im',
  'im_quit',
  'quit_picki',
  'picki_eater',
  'eater_im',
  'im_autist',
  'autist_issu',
  'issu_textur',
  'textur_type',
  'type_asian',
  'asian_food',
  'food_safe',
  'safe_food',
  'food_come',
  'come_western',
  'western_cuisin',
  'cuisin_lot',
  'lot_option',
  'option_unless',
  'unless_make',
  'make_home',
  'home_everyth',
  'everyth_organis',
  'organis_readi',
  'readi_go',
  'go_week',
  'week_prior',
  'prior_birthday',
  'birthday_brother',
  'brother_fiancé',
  'fiancé_vicki',
  'vicki_said',
  'said_cant',
  'cant_go',
  'go_said',
  'said_seafood',
  'seafood_allergi',
  'allergi_contact',
  'contact_restaur',
  'restaur_said',
  'said_cant',
  'cant_realist',
  'realist_cater',
  'cater_polit',
  'polit_advis',
  'advis_eat',
  'eat_vicki',
  'vicki_brother',
  'brother_suggest',
  'suggest_go',
  'go_italian',
  'italian_restaur',
  'restaur_instead',
  'instead_everyon',
  'everyon_board',
  'board_buti',
  'buti_hate',
  'hate_italian',
  'italian_food',
  'food_textur',
  'textur_chees',
  'chees_pasta',
  'pasta_gross',
  'gross_got',
  'got_upset',
  'upset_suppos',
  'suppos_dinner',
  'dinner_*',
  '*_*',
  '*_birthday',
  'birthday_like',
  'like_got',
  'got_forgotten',
  'forgotten_talk',
  'talk_parent',
  'parent_told',
  'told_stop',
  'stop_complain',
  'complain_vicki',
  'vicki_cant',
  'cant_help',
  'help_allergi',
  'allergi_suck',
  'suck_went',
  'went_spent',
  'spent_birthday',
  'birthday_miser',
  'miser_end',
  'end_sneak',
  'sneak_snack',
  'snack_restaur',
  'restaur_well',
  'well_last',
  'last_weekend',
  'weekend_spontan',
  'spontan_went',
  'went_brother',
  'brother_hous',
  'hous_warn',
  'warn_forgotten',
  'forgotten_hoodi',
  'hoodi_day',
  'day_prior',
  'prior_brother',
  'brother_let',
  'let_insid',
  'insid_saw',
  'saw_vicki',
  'vicki_sat',
  'sat_couch',
  'couch_scof',
  'scof_tuna',
  'tuna_like',
  'like_nobodi',
  'nobodi_busi',
  'busi_thought',
  'thought_allerg',
  'allerg_seafood',
  'seafood_vicki',
  'vicki_talk',
  'talk_th',
  'th_birthday',
  'birthday_last',
  'last_month',
  'month_said',
  'said_go',
  'go_chines',
  'chines_restaur',
  'restaur_allerg',
  'allerg_seafood',
  'seafood_vicki',
  'vicki_well',
  'well_im',
  'im_*',
  '*_medic',
  'medic_*',
  '*_allerg',
  'allerg_cant',
  'cant_stand',
  'stand_smell',
  'smell_shrimp',
  'shrimp_prawn',
  'prawn_make',
  'make_feel',
  'feel_nauseou',
  'nauseou_ruin',
  'ruin_th',
  'th_birthday',
  'birthday_like',
  'like_seafood',
  'seafood_smell',
  'smell_wow',
  'wow_storm',
  'storm_block',
  'block_vicki',
  'vicki_brother',
  'brother_everyth',
  'everyth_believ',
  'believ_talk',
  'talk_parent',
  'parent_think',
  'think_im',
  'im_dramat',
  'dramat_restaur',
  'restaur_told',
  'told_apologis',
  'apologis_vicki',
  'vicki_speak',
  'speak_like',
  'like_home',
  'home_angri',
  'angri_went',
  'went_go',
  'go_stay',
  'stay_bf',
  'bf_famili',
  'famili_day',
  'day_kindli',
  'kindli_let',
  'let_stay',
  'stay_famili',
  'famili_think',
  'think_went',
  'went_super',
  'super_overboard',
  'overboard_call',
  'call_brat',
  'brat_entitl',
  'entitl_know',
  'know_feel',
  'feel_ah',
  'ah_edit',
  'edit_thank',
  'thank_wonder',
  'wonder_comment',
  'comment_award',
  'award_hope',
  'hope_great',
  'great_day',
  'turn_earli_august',
  'earli_august_th',
  'august_th_birthday',
  'th_birthday_want',
  'birthday_want_go',
  'want_go_celebr',
  'go_celebr_famili',
  'celebr_famili_go',
  'famili_go_favorit',
  'go_favorit_chines',
  'favorit_chines_restaur',
  'chines_restaur_im',
  'restaur_im_quit',
  'im_quit_picki',
  'quit_picki_eater',
  'picki_eater_im',
  'eater_im_autist',
  'im_autist_issu',
  'autist_issu_textur',
  'issu_textur_type',
  'textur_type_asian',
  'type_asian_food',
  'asian_food_safe',
  'food_safe_food',
  'safe_food_come',
  'food_come_western',
  'come_western_cuisin',
  'western_cuisin_lot',
  'cuisin_lot_option',
  'lot_option_unless',
  'option_unless_make',
  'unless_make_home',
  'make_home_everyth',
  'home_everyth_organis',
  'everyth_organis_readi',
  'organis_readi_go',
  'readi_go_week',
  'go_week_prior',
  'week_prior_birthday',
  'prior_birthday_brother',
  'birthday_brother_fiancé',
  'brother_fiancé_vicki',
  'fiancé_vicki_said',
  'vicki_said_cant',
  'said_cant_go',
  'cant_go_said',
  'go_said_seafood',
  'said_seafood_allergi',
  'seafood_allergi_contact',
  'allergi_contact_restaur',
  'contact_restaur_said',
  'restaur_said_cant',
  'said_cant_realist',
  'cant_realist_cater',
  'realist_cater_polit',
  'cater_polit_advis',
  'polit_advis_eat',
  'advis_eat_vicki',
  'eat_vicki_brother',
  'vicki_brother_suggest',
  'brother_suggest_go',
  'suggest_go_italian',
  'go_italian_restaur',
  'italian_restaur_instead',
  'restaur_instead_everyon',
  'instead_everyon_board',
  'everyon_board_buti',
  'board_buti_hate',
  'buti_hate_italian',
  'hate_italian_food',
  'italian_food_textur',
  'food_textur_chees',
  'textur_chees_pasta',
  'chees_pasta_gross',
  'pasta_gross_got',
  'gross_got_upset',
  'got_upset_suppos',
  'upset_suppos_dinner',
  'suppos_dinner_*',
  'dinner_*_*',
  '*_*_birthday',
  '*_birthday_like',
  'birthday_like_got',
  'like_got_forgotten',
  'got_forgotten_talk',
  'forgotten_talk_parent',
  'talk_parent_told',
  'parent_told_stop',
  'told_stop_complain',
  'stop_complain_vicki',
  'complain_vicki_cant',
  'vicki_cant_help',
  'cant_help_allergi',
  'help_allergi_suck',
  'allergi_suck_went',
  'suck_went_spent',
  'went_spent_birthday',
  'spent_birthday_miser',
  'birthday_miser_end',
  'miser_end_sneak',
  'end_sneak_snack',
  'sneak_snack_restaur',
  'snack_restaur_well',
  'restaur_well_last',
  'well_last_weekend',
  'last_weekend_spontan',
  'weekend_spontan_went',
  'spontan_went_brother',
  'went_brother_hous',
  'brother_hous_warn',
  'hous_warn_forgotten',
  'warn_forgotten_hoodi',
  'forgotten_hoodi_day',
  'hoodi_day_prior',
  'day_prior_brother',
  'prior_brother_let',
  'brother_let_insid',
  'let_insid_saw',
  'insid_saw_vicki',
  'saw_vicki_sat',
  'vicki_sat_couch',
  'sat_couch_scof',
  'couch_scof_tuna',
  'scof_tuna_like',
  'tuna_like_nobodi',
  'like_nobodi_busi',
  'nobodi_busi_thought',
  'busi_thought_allerg',
  'thought_allerg_seafood',
  'allerg_seafood_vicki',
  'seafood_vicki_talk',
  'vicki_talk_th',
  'talk_th_birthday',
  'th_birthday_last',
  'birthday_last_month',
  'last_month_said',
  'month_said_go',
  'said_go_chines',
  'go_chines_restaur',
  'chines_restaur_allerg',
  'restaur_allerg_seafood',
  'allerg_seafood_vicki',
  'seafood_vicki_well',
  'vicki_well_im',
  'well_im_*',
  'im_*_medic',
  '*_medic_*',
  'medic_*_allerg',
  '*_allerg_cant',
  'allerg_cant_stand',
  'cant_stand_smell',
  'stand_smell_shrimp',
  'smell_shrimp_prawn',
  'shrimp_prawn_make',
  'prawn_make_feel',
  'make_feel_nauseou',
  'feel_nauseou_ruin',
  'nauseou_ruin_th',
  'ruin_th_birthday',
  'th_birthday_like',
  'birthday_like_seafood',
  'like_seafood_smell',
  'seafood_smell_wow',
  'smell_wow_storm',
  'wow_storm_block',
  'storm_block_vicki',
  'block_vicki_brother',
  'vicki_brother_everyth',
  'brother_everyth_believ',
  'everyth_believ_talk',
  'believ_talk_parent',
  'talk_parent_think',
  'parent_think_im',
  'think_im_dramat',
  'im_dramat_restaur',
  'dramat_restaur_told',
  'restaur_told_apologis',
  'told_apologis_vicki',
  'apologis_vicki_speak',
  'vicki_speak_like',
  'speak_like_home',
  'like_home_angri',
  'home_angri_went',
  'angri_went_go',
  'went_go_stay',
  'go_stay_bf',
  'stay_bf_famili',
  'bf_famili_day',
  'famili_day_kindli',
  'day_kindli_let',
  'kindli_let_stay',
  'let_stay_famili',
  'stay_famili_think',
  'famili_think_went',
  'think_went_super',
  'went_super_overboard',
  'super_overboard_call',
  'overboard_call_brat',
  'call_brat_entitl',
  'brat_entitl_know',
  'entitl_know_feel',
  'know_feel_ah',
  'feel_ah_edit',
  'ah_edit_thank',
  'edit_thank_wonder',
  'thank_wonder_comment',
  'wonder_comment_award',
  'comment_award_hope',
  'award_hope_great',
  'hope_great_day'],
 ['parent',
  'split',
  'custodi',
  'pretti',
  'random',
  'day',
  'im',
  'home',
  'sometim',
  'im',
  'dad',
  'im',
  'dad',
  'start',
  'date',
  'jane',
  'ago',
  'mayb',
  'year',
  'daughter',
  'mandi',
  'think',
  'start',
  'spend',
  'lot',
  'time',
  'dad',
  'apart',
  'theyr',
  'still',
  'alway',
  'first',
  'time',
  'stay',
  'somehow',
  'mandi',
  'end',
  'bed',
  'mom',
  'cotb',
  'thing',
  'brought',
  'dad',
  'somehow',
  'woke',
  'middl',
  'night',
  'bed',
  'kick',
  'dad',
  'jane',
  'said',
  'mean',
  'full',
  'anyway',
  'share',
  'stuff',
  'chair',
  'dad',
  'live',
  'room',
  'got',
  'gift',
  'comfi',
  'move',
  'itll',
  'go',
  'well',
  'mandi',
  'alway',
  'want',
  'race',
  'chair',
  'even',
  'win',
  'race',
  'dad',
  'make',
  'let',
  'sit',
  'theyr',
  'guest',
  'end',
  'sit',
  'floor',
  'dad',
  'reclin',
  'jane',
  'lay',
  'across',
  'couch',
  'stay',
  'room',
  'instead',
  'dad',
  'tri',
  'get',
  'come',
  'sit',
  'floor',
  'like',
  'dog',
  'keep',
  'say',
  'im',
  'difficult',
  'teenag',
  'though',
  'one',
  'time',
  'mom',
  'went',
  'stuff',
  'drop',
  'bought',
  'blanket',
  'favorit',
  'team',
  'logo',
  'excit',
  'sleep',
  'stupid',
  'know',
  'let',
  'take',
  'dad',
  'dad',
  'made',
  'share',
  'mandi',
  'fair',
  'got',
  'someth',
  'mandi',
  'blanket',
  'happen',
  'anyth',
  'share',
  'mandi',
  'someth',
  'id',
  'like',
  'use',
  'tell',
  'want',
  'let',
  'one',
  'time',
  'mandi',
  'read',
  'one',
  'book',
  'jane',
  'dad',
  'start',
  'fight',
  'jane',
  'want',
  'leav',
  'mandi',
  'want',
  'take',
  'book',
  'said',
  'leav',
  'dad',
  'yell',
  'let',
  'made',
  'got',
  'back',
  'would',
  'lost',
  'one',
  'favorit',
  'book',
  'dad',
  'plan',
  'go',
  'ice',
  'fish',
  'someth',
  'weve',
  'done',
  'sinc',
  'well',
  'brought',
  'jane',
  'mandi',
  'along',
  'complain',
  'cold',
  'fish',
  'gross',
  'bore',
  'left',
  'earli',
  'said',
  'sometim',
  'compromis',
  'got',
  'home',
  'mad',
  'mom',
  'annoy',
  'call',
  'argu',
  'talk',
  'repeat',
  'compromis',
  'crap',
  'suppos',
  'go',
  'back',
  'day',
  'later',
  'decid',
  'want',
  'never',
  'even',
  'spend',
  'time',
  'anymor',
  'point',
  'go',
  'told',
  'mom',
  'said',
  'choic',
  'told',
  'said',
  'im',
  'use',
  'child',
  'cant',
  'spoil',
  'whole',
  'life',
  'cant',
  'run',
  'away',
  'whenev',
  'problem',
  'well',
  'sinc',
  'famili',
  'tri',
  'get',
  'go',
  'back',
  'aita',
  'visit',
  'dad',
  'anymor',
  'edit',
  'peopl',
  'said',
  'go',
  'famili',
  'counsel',
  'put',
  'therapi',
  'year',
  'back',
  'homework',
  'serious',
  'reason',
  'therapist',
  'start',
  'call',
  'parent',
  'want',
  'go',
  'anymor',
  'mom',
  'take',
  'therapist',
  'even',
  'call',
  'tri',
  'talk',
  'dad',
  'ignor',
  'parent_split',
  'split_custodi',
  'custodi_pretti',
  'pretti_random',
  'random_day',
  'day_im',
  'im_home',
  'home_sometim',
  'sometim_im',
  'im_dad',
  'dad_im',
  'im_dad',
  'dad_start',
  'start_date',
  'date_jane',
  'jane_ago',
  'ago_mayb',
  'mayb_year',
  'year_daughter',
  'daughter_mandi',
  'mandi_think',
  'think_start',
  'start_spend',
  'spend_lot',
  'lot_time',
  'time_dad',
  'dad_apart',
  'apart_theyr',
  'theyr_still',
  'still_alway',
  'alway_first',
  'first_time',
  'time_stay',
  'stay_somehow',
  'somehow_mandi',
  'mandi_end',
  'end_bed',
  'bed_mom',
  'mom_cotb',
  'cotb_thing',
  'thing_brought',
  'brought_dad',
  'dad_somehow',
  'somehow_woke',
  'woke_middl',
  'middl_night',
  'night_bed',
  'bed_kick',
  'kick_dad',
  'dad_jane',
  'jane_said',
  'said_mean',
  'mean_full',
  'full_anyway',
  'anyway_share',
  'share_stuff',
  'stuff_chair',
  'chair_dad',
  'dad_live',
  'live_room',
  'room_got',
  'got_gift',
  'gift_comfi',
  'comfi_move',
  'move_itll',
  'itll_go',
  'go_well',
  'well_mandi',
  'mandi_alway',
  'alway_want',
  'want_race',
  'race_chair',
  'chair_even',
  'even_win',
  'win_race',
  'race_dad',
  'dad_make',
  'make_let',
  'let_sit',
  'sit_theyr',
  'theyr_guest',
  'guest_end',
  'end_sit',
  'sit_floor',
  'floor_dad',
  'dad_reclin',
  'reclin_jane',
  'jane_lay',
  'lay_across',
  'across_couch',
  'couch_stay',
  'stay_room',
  'room_instead',
  'instead_dad',
  'dad_tri',
  'tri_get',
  'get_come',
  'come_sit',
  'sit_floor',
  'floor_like',
  'like_dog',
  'dog_keep',
  'keep_say',
  'say_im',
  'im_difficult',
  'difficult_teenag',
  'teenag_though',
  'though_one',
  'one_time',
  'time_mom',
  'mom_went',
  'went_stuff',
  'stuff_drop',
  'drop_bought',
  'bought_blanket',
  'blanket_favorit',
  'favorit_team',
  'team_logo',
  'logo_excit',
  'excit_sleep',
  'sleep_stupid',
  'stupid_know',
  'know_let',
  'let_take',
  'take_dad',
  'dad_dad',
  'dad_made',
  'made_share',
  'share_mandi',
  'mandi_fair',
  'fair_got',
  'got_someth',
  'someth_mandi',
  'mandi_blanket',
  'blanket_happen',
  'happen_anyth',
  'anyth_share',
  'share_mandi',
  'mandi_someth',
  'someth_id',
  'id_like',
  'like_use',
  'use_tell',
  'tell_want',
  'want_let',
  'let_one',
  'one_time',
  'time_mandi',
  'mandi_read',
  'read_one',
  'one_book',
  'book_jane',
  'jane_dad',
  'dad_start',
  'start_fight',
  'fight_jane',
  'jane_want',
  'want_leav',
  'leav_mandi',
  'mandi_want',
  'want_take',
  'take_book',
  'book_said',
  'said_leav',
  'leav_dad',
  'dad_yell',
  'yell_let',
  'let_made',
  'made_got',
  'got_back',
  'back_would',
  'would_lost',
  'lost_one',
  'one_favorit',
  'favorit_book',
  'book_dad',
  'dad_plan',
  'plan_go',
  'go_ice',
  'ice_fish',
  'fish_someth',
  'someth_weve',
  'weve_done',
  'done_sinc',
  'sinc_well',
  'well_brought',
  'brought_jane',
  'jane_mandi',
  'mandi_along',
  'along_complain',
  'complain_cold',
  'cold_fish',
  'fish_gross',
  'gross_bore',
  'bore_left',
  'left_earli',
  'earli_said',
  'said_sometim',
  'sometim_compromis',
  'compromis_got',
  'got_home',
  'home_mad',
  'mad_mom',
  'mom_annoy',
  'annoy_call',
  'call_argu',
  'argu_talk',
  'talk_repeat',
  'repeat_compromis',
  'compromis_crap',
  'crap_suppos',
  'suppos_go',
  'go_back',
  'back_day',
  'day_later',
  'later_decid',
  'decid_want',
  'want_never',
  'never_even',
  'even_spend',
  'spend_time',
  'time_anymor',
  'anymor_point',
  'point_go',
  'go_told',
  'told_mom',
  'mom_said',
  'said_choic',
  'choic_told',
  'told_said',
  'said_im',
  'im_use',
  'use_child',
  'child_cant',
  'cant_spoil',
  'spoil_whole',
  'whole_life',
  'life_cant',
  'cant_run',
  'run_away',
  'away_whenev',
  'whenev_problem',
  'problem_well',
  'well_sinc',
  'sinc_famili',
  'famili_tri',
  'tri_get',
  'get_go',
  'go_back',
  'back_aita',
  'aita_visit',
  'visit_dad',
  'dad_anymor',
  'anymor_edit',
  'edit_peopl',
  'peopl_said',
  'said_go',
  'go_famili',
  'famili_counsel',
  'counsel_put',
  'put_therapi',
  'therapi_year',
  'year_back',
  'back_homework',
  'homework_serious',
  'serious_reason',
  'reason_therapist',
  'therapist_start',
  'start_call',
  'call_parent',
  'parent_want',
  'want_go',
  'go_anymor',
  'anymor_mom',
  'mom_take',
  'take_therapist',
  'therapist_even',
  'even_call',
  'call_tri',
  'tri_talk',
  'talk_dad',
  'dad_ignor',
  'parent_split_custodi',
  'split_custodi_pretti',
  'custodi_pretti_random',
  'pretti_random_day',
  'random_day_im',
  'day_im_home',
  'im_home_sometim',
  'home_sometim_im',
  'sometim_im_dad',
  'im_dad_im',
  'dad_im_dad',
  'im_dad_start',
  'dad_start_date',
  'start_date_jane',
  'date_jane_ago',
  'jane_ago_mayb',
  'ago_mayb_year',
  'mayb_year_daughter',
  'year_daughter_mandi',
  'daughter_mandi_think',
  'mandi_think_start',
  'think_start_spend',
  'start_spend_lot',
  'spend_lot_time',
  'lot_time_dad',
  'time_dad_apart',
  'dad_apart_theyr',
  'apart_theyr_still',
  'theyr_still_alway',
  'still_alway_first',
  'alway_first_time',
  'first_time_stay',
  'time_stay_somehow',
  'stay_somehow_mandi',
  'somehow_mandi_end',
  'mandi_end_bed',
  'end_bed_mom',
  'bed_mom_cotb',
  'mom_cotb_thing',
  'cotb_thing_brought',
  'thing_brought_dad',
  'brought_dad_somehow',
  'dad_somehow_woke',
  'somehow_woke_middl',
  'woke_middl_night',
  'middl_night_bed',
  'night_bed_kick',
  'bed_kick_dad',
  'kick_dad_jane',
  'dad_jane_said',
  'jane_said_mean',
  'said_mean_full',
  'mean_full_anyway',
  'full_anyway_share',
  'anyway_share_stuff',
  'share_stuff_chair',
  'stuff_chair_dad',
  'chair_dad_live',
  'dad_live_room',
  'live_room_got',
  'room_got_gift',
  'got_gift_comfi',
  'gift_comfi_move',
  'comfi_move_itll',
  'move_itll_go',
  'itll_go_well',
  'go_well_mandi',
  'well_mandi_alway',
  'mandi_alway_want',
  'alway_want_race',
  'want_race_chair',
  'race_chair_even',
  'chair_even_win',
  'even_win_race',
  'win_race_dad',
  'race_dad_make',
  'dad_make_let',
  'make_let_sit',
  'let_sit_theyr',
  'sit_theyr_guest',
  'theyr_guest_end',
  'guest_end_sit',
  'end_sit_floor',
  'sit_floor_dad',
  'floor_dad_reclin',
  'dad_reclin_jane',
  'reclin_jane_lay',
  'jane_lay_across',
  'lay_across_couch',
  'across_couch_stay',
  'couch_stay_room',
  'stay_room_instead',
  'room_instead_dad',
  'instead_dad_tri',
  'dad_tri_get',
  'tri_get_come',
  'get_come_sit',
  'come_sit_floor',
  'sit_floor_like',
  'floor_like_dog',
  'like_dog_keep',
  'dog_keep_say',
  'keep_say_im',
  'say_im_difficult',
  'im_difficult_teenag',
  'difficult_teenag_though',
  'teenag_though_one',
  'though_one_time',
  'one_time_mom',
  'time_mom_went',
  'mom_went_stuff',
  'went_stuff_drop',
  'stuff_drop_bought',
  'drop_bought_blanket',
  'bought_blanket_favorit',
  'blanket_favorit_team',
  'favorit_team_logo',
  'team_logo_excit',
  'logo_excit_sleep',
  'excit_sleep_stupid',
  'sleep_stupid_know',
  'stupid_know_let',
  'know_let_take',
  'let_take_dad',
  'take_dad_dad',
  'dad_dad_made',
  'dad_made_share',
  'made_share_mandi',
  'share_mandi_fair',
  'mandi_fair_got',
  'fair_got_someth',
  'got_someth_mandi',
  'someth_mandi_blanket',
  'mandi_blanket_happen',
  'blanket_happen_anyth',
  'happen_anyth_share',
  'anyth_share_mandi',
  'share_mandi_someth',
  'mandi_someth_id',
  'someth_id_like',
  'id_like_use',
  'like_use_tell',
  'use_tell_want',
  'tell_want_let',
  'want_let_one',
  'let_one_time',
  'one_time_mandi',
  'time_mandi_read',
  'mandi_read_one',
  'read_one_book',
  'one_book_jane',
  'book_jane_dad',
  'jane_dad_start',
  'dad_start_fight',
  'start_fight_jane',
  'fight_jane_want',
  'jane_want_leav',
  'want_leav_mandi',
  'leav_mandi_want',
  'mandi_want_take',
  'want_take_book',
  'take_book_said',
  'book_said_leav',
  'said_leav_dad',
  'leav_dad_yell',
  'dad_yell_let',
  'yell_let_made',
  'let_made_got',
  'made_got_back',
  'got_back_would',
  'back_would_lost',
  'would_lost_one',
  'lost_one_favorit',
  'one_favorit_book',
  'favorit_book_dad',
  'book_dad_plan',
  'dad_plan_go',
  'plan_go_ice',
  'go_ice_fish',
  'ice_fish_someth',
  'fish_someth_weve',
  'someth_weve_done',
  'weve_done_sinc',
  'done_sinc_well',
  'sinc_well_brought',
  'well_brought_jane',
  'brought_jane_mandi',
  'jane_mandi_along',
  'mandi_along_complain',
  'along_complain_cold',
  'complain_cold_fish',
  'cold_fish_gross',
  'fish_gross_bore',
  'gross_bore_left',
  'bore_left_earli',
  'left_earli_said',
  'earli_said_sometim',
  'said_sometim_compromis',
  'sometim_compromis_got',
  'compromis_got_home',
  'got_home_mad',
  'home_mad_mom',
  'mad_mom_annoy',
  'mom_annoy_call',
  'annoy_call_argu',
  'call_argu_talk',
  'argu_talk_repeat',
  'talk_repeat_compromis',
  'repeat_compromis_crap',
  'compromis_crap_suppos',
  'crap_suppos_go',
  'suppos_go_back',
  'go_back_day',
  'back_day_later',
  'day_later_decid',
  'later_decid_want',
  'decid_want_never',
  'want_never_even',
  'never_even_spend',
  'even_spend_time',
  'spend_time_anymor',
  'time_anymor_point',
  'anymor_point_go',
  'point_go_told',
  'go_told_mom',
  'told_mom_said',
  'mom_said_choic',
  'said_choic_told',
  'choic_told_said',
  'told_said_im',
  'said_im_use',
  'im_use_child',
  'use_child_cant',
  'child_cant_spoil',
  'cant_spoil_whole',
  'spoil_whole_life',
  'whole_life_cant',
  'life_cant_run',
  'cant_run_away',
  'run_away_whenev',
  'away_whenev_problem',
  'whenev_problem_well',
  'problem_well_sinc',
  'well_sinc_famili',
  'sinc_famili_tri',
  'famili_tri_get',
  'tri_get_go',
  'get_go_back',
  'go_back_aita',
  'back_aita_visit',
  'aita_visit_dad',
  'visit_dad_anymor',
  'dad_anymor_edit',
  'anymor_edit_peopl',
  'edit_peopl_said',
  'peopl_said_go',
  'said_go_famili',
  'go_famili_counsel',
  'famili_counsel_put',
  'counsel_put_therapi',
  'put_therapi_year',
  'therapi_year_back',
  'year_back_homework',
  'back_homework_serious',
  'homework_serious_reason',
  'serious_reason_therapist',
  'reason_therapist_start',
  'therapist_start_call',
  'start_call_parent',
  'call_parent_want',
  'parent_want_go',
  'want_go_anymor',
  'go_anymor_mom',
  'anymor_mom_take',
  'mom_take_therapist',
  'take_therapist_even',
  'therapist_even_call',
  'even_call_tri',
  'call_tri_talk',
  'tri_talk_dad',
  'talk_dad_ignor'],
 ['hire',
  'babysitt',
  'year',
  'old',
  'kid',
  'week',
  'ago',
  'husband',
  'work',
  'shift',
  'work',
  'long',
  'hour',
  'market',
  'compani',
  'far',
  'weve',
  'issu',
  'til',
  'yesterday',
  'came',
  'home',
  'pm',
  'notic',
  'babysitt',
  'wet',
  'hair',
  'new',
  'cloth',
  'told',
  'took',
  'shower',
  'one',
  'kid',
  'spill',
  'milk',
  'confus',
  'visibl',
  'upset',
  'tri',
  'reassur',
  'kid',
  'fine',
  'husband',
  'watch',
  'took',
  'shower',
  'last',
  'minut',
  'confus',
  'husband',
  'home',
  'shift',
  'cover',
  'told',
  'think',
  'appropri',
  'shower',
  'home',
  'like',
  'argu',
  'fine',
  'choic',
  'leav',
  'milk',
  'like',
  'argu',
  'husband',
  'heard',
  'commot',
  'got',
  'involv',
  'said',
  'big',
  'deal',
  'make',
  'told',
  'babysitt',
  'appreci',
  'basic',
  'ignor',
  'felt',
  'dismiss',
  'feel',
  'still',
  'went',
  'home',
  'still',
  'argu',
  'phone',
  'think',
  'done',
  'noth',
  'wrong',
  'said',
  'unfair',
  'mention',
  'potenti',
  'cut',
  'salari',
  'husband',
  'keep',
  'say',
  'im',
  'overreact',
  'poor',
  'girl',
  'handl',
  'milk',
  'stain',
  'bodi',
  'cloth',
  'help',
  'feel',
  'inappropri',
  'check',
  'aita',
  'reaction',
  'info',
  'im',
  'one',
  'pay',
  'husband',
  'told',
  'call',
  'text',
  'alway',
  'avail',
  'anyth',
  'happen',
  'even',
  'know',
  'husband',
  'home',
  'time',
  'notic',
  'said',
  'argu',
  'even',
  'told',
  'husband',
  'home',
  'know',
  'big',
  'stain',
  'argu',
  'cover',
  'milk',
  '+hr',
  'question',
  'husband',
  'go',
  'work',
  'said',
  'feel',
  'bit',
  'sick',
  'swap',
  'shift',
  'cowork',
  'babysitt',
  'said',
  'experi',
  'ye',
  'normal',
  'bring',
  'bag',
  'cloth',
  'wet',
  'wipe',
  'stuff',
  'like',
  'hire_babysitt',
  'babysitt_year',
  'year_old',
  'old_kid',
  'kid_week',
  'week_ago',
  'ago_husband',
  'husband_work',
  'work_shift',
  'shift_work',
  'work_long',
  'long_hour',
  'hour_market',
  'market_compani',
  'compani_far',
  'far_weve',
  'weve_issu',
  'issu_til',
  'til_yesterday',
  'yesterday_came',
  'came_home',
  'home_pm',
  'pm_notic',
  'notic_babysitt',
  'babysitt_wet',
  'wet_hair',
  'hair_new',
  'new_cloth',
  'cloth_told',
  'told_took',
  'took_shower',
  'shower_one',
  'one_kid',
  'kid_spill',
  'spill_milk',
  'milk_confus',
  'confus_visibl',
  'visibl_upset',
  'upset_tri',
  'tri_reassur',
  'reassur_kid',
  'kid_fine',
  'fine_husband',
  'husband_watch',
  'watch_took',
  'took_shower',
  'shower_last',
  'last_minut',
  'minut_confus',
  'confus_husband',
  'husband_home',
  'home_shift',
  'shift_cover',
  'cover_told',
  'told_think',
  'think_appropri',
  'appropri_shower',
  'shower_home',
  'home_like',
  'like_argu',
  'argu_fine',
  'fine_choic',
  'choic_leav',
  'leav_milk',
  'milk_like',
  'like_argu',
  'argu_husband',
  'husband_heard',
  'heard_commot',
  'commot_got',
  'got_involv',
  'involv_said',
  'said_big',
  'big_deal',
  'deal_make',
  'make_told',
  'told_babysitt',
  'babysitt_appreci',
  'appreci_basic',
  'basic_ignor',
  'ignor_felt',
  'felt_dismiss',
  'dismiss_feel',
  'feel_still',
  'still_went',
  'went_home',
  'home_still',
  'still_argu',
  'argu_phone',
  'phone_think',
  'think_done',
  'done_noth',
  'noth_wrong',
  'wrong_said',
  'said_unfair',
  'unfair_mention',
  'mention_potenti',
  'potenti_cut',
  'cut_salari',
  'salari_husband',
  'husband_keep',
  'keep_say',
  'say_im',
  'im_overreact',
  'overreact_poor',
  'poor_girl',
  'girl_handl',
  'handl_milk',
  'milk_stain',
  'stain_bodi',
  'bodi_cloth',
  'cloth_help',
  'help_feel',
  'feel_inappropri',
  'inappropri_check',
  'check_aita',
  'aita_reaction',
  'reaction_info',
  'info_im',
  'im_one',
  'one_pay',
  'pay_husband',
  'husband_told',
  'told_call',
  'call_text',
  'text_alway',
  'alway_avail',
  'avail_anyth',
  'anyth_happen',
  'happen_even',
  'even_know',
  'know_husband',
  'husband_home',
  'home_time',
  'time_notic',
  'notic_said',
  'said_argu',
  'argu_even',
  'even_told',
  'told_husband',
  'husband_home',
  'home_know',
  'know_big',
  'big_stain',
  'stain_argu',
  'argu_cover',
  'cover_milk',
  'milk_+hr',
  '+hr_question',
  'question_husband',
  'husband_go',
  'go_work',
  'work_said',
  'said_feel',
  'feel_bit',
  'bit_sick',
  'sick_swap',
  'swap_shift',
  'shift_cowork',
  'cowork_babysitt',
  'babysitt_said',
  'said_experi',
  'experi_ye',
  'ye_normal',
  'normal_bring',
  'bring_bag',
  'bag_cloth',
  'cloth_wet',
  'wet_wipe',
  'wipe_stuff',
  'stuff_like',
  'hire_babysitt_year',
  'babysitt_year_old',
  'year_old_kid',
  'old_kid_week',
  'kid_week_ago',
  'week_ago_husband',
  'ago_husband_work',
  'husband_work_shift',
  'work_shift_work',
  'shift_work_long',
  'work_long_hour',
  'long_hour_market',
  'hour_market_compani',
  'market_compani_far',
  'compani_far_weve',
  'far_weve_issu',
  'weve_issu_til',
  'issu_til_yesterday',
  'til_yesterday_came',
  'yesterday_came_home',
  'came_home_pm',
  'home_pm_notic',
  'pm_notic_babysitt',
  'notic_babysitt_wet',
  'babysitt_wet_hair',
  'wet_hair_new',
  'hair_new_cloth',
  'new_cloth_told',
  'cloth_told_took',
  'told_took_shower',
  'took_shower_one',
  'shower_one_kid',
  'one_kid_spill',
  'kid_spill_milk',
  'spill_milk_confus',
  'milk_confus_visibl',
  'confus_visibl_upset',
  'visibl_upset_tri',
  'upset_tri_reassur',
  'tri_reassur_kid',
  'reassur_kid_fine',
  'kid_fine_husband',
  'fine_husband_watch',
  'husband_watch_took',
  'watch_took_shower',
  'took_shower_last',
  'shower_last_minut',
  'last_minut_confus',
  'minut_confus_husband',
  'confus_husband_home',
  'husband_home_shift',
  'home_shift_cover',
  'shift_cover_told',
  'cover_told_think',
  'told_think_appropri',
  'think_appropri_shower',
  'appropri_shower_home',
  'shower_home_like',
  'home_like_argu',
  'like_argu_fine',
  'argu_fine_choic',
  'fine_choic_leav',
  'choic_leav_milk',
  'leav_milk_like',
  'milk_like_argu',
  'like_argu_husband',
  'argu_husband_heard',
  'husband_heard_commot',
  'heard_commot_got',
  'commot_got_involv',
  'got_involv_said',
  'involv_said_big',
  'said_big_deal',
  'big_deal_make',
  'deal_make_told',
  'make_told_babysitt',
  'told_babysitt_appreci',
  'babysitt_appreci_basic',
  'appreci_basic_ignor',
  'basic_ignor_felt',
  'ignor_felt_dismiss',
  'felt_dismiss_feel',
  'dismiss_feel_still',
  'feel_still_went',
  'still_went_home',
  'went_home_still',
  'home_still_argu',
  'still_argu_phone',
  'argu_phone_think',
  'phone_think_done',
  'think_done_noth',
  'done_noth_wrong',
  'noth_wrong_said',
  'wrong_said_unfair',
  'said_unfair_mention',
  'unfair_mention_potenti',
  'mention_potenti_cut',
  'potenti_cut_salari',
  'cut_salari_husband',
  'salari_husband_keep',
  'husband_keep_say',
  'keep_say_im',
  'say_im_overreact',
  'im_overreact_poor',
  'overreact_poor_girl',
  'poor_girl_handl',
  'girl_handl_milk',
  'handl_milk_stain',
  'milk_stain_bodi',
  'stain_bodi_cloth',
  'bodi_cloth_help',
  'cloth_help_feel',
  'help_feel_inappropri',
  'feel_inappropri_check',
  'inappropri_check_aita',
  'check_aita_reaction',
  'aita_reaction_info',
  'reaction_info_im',
  'info_im_one',
  'im_one_pay',
  'one_pay_husband',
  'pay_husband_told',
  'husband_told_call',
  'told_call_text',
  'call_text_alway',
  'text_alway_avail',
  'alway_avail_anyth',
  'avail_anyth_happen',
  'anyth_happen_even',
  'happen_even_know',
  'even_know_husband',
  'know_husband_home',
  'husband_home_time',
  'home_time_notic',
  'time_notic_said',
  'notic_said_argu',
  'said_argu_even',
  'argu_even_told',
  'even_told_husband',
  'told_husband_home',
  'husband_home_know',
  'home_know_big',
  'know_big_stain',
  'big_stain_argu',
  'stain_argu_cover',
  'argu_cover_milk',
  'cover_milk_+hr',
  'milk_+hr_question',
  '+hr_question_husband',
  'question_husband_go',
  'husband_go_work',
  'go_work_said',
  'work_said_feel',
  'said_feel_bit',
  'feel_bit_sick',
  'bit_sick_swap',
  'sick_swap_shift',
  'swap_shift_cowork',
  'shift_cowork_babysitt',
  'cowork_babysitt_said',
  'babysitt_said_experi',
  'said_experi_ye',
  'experi_ye_normal',
  'ye_normal_bring',
  'normal_bring_bag',
  'bring_bag_cloth',
  'bag_cloth_wet',
  'cloth_wet_wipe',
  'wet_wipe_stuff',
  'wipe_stuff_like'],
 ['date',
  'boyfriend',
  'smith',
  '+',
  'month',
  'plan',
  'go',
  'roadtrip',
  'happen',
  'kept',
  'insist',
  'let',
  'friend',
  'tag',
  'along',
  'brought',
  'promis',
  'ask',
  'let',
  'bring',
  'friend',
  'sinc',
  'im',
  'one',
  'pay',
  'expens',
  'car',
  'alway',
  'want',
  'us',
  'go',
  'alon',
  'without',
  'friend',
  'tag',
  'along',
  'wan',
  'na',
  'pay',
  'friend',
  'agre',
  'id',
  'come',
  'pick',
  'morn',
  'could',
  'ago',
  'came',
  'car',
  'enter',
  'neighborhood',
  'howev',
  'saw',
  'stand',
  'outsid',
  'bag',
  'friend',
  'also',
  'stand',
  'bag',
  'shock',
  'furiou',
  'pull',
  'turn',
  'around',
  'kept',
  'drive',
  'went',
  'back',
  'home',
  'saw',
  'run',
  'rearview',
  'mirror',
  'stop',
  'start',
  'call',
  'respond',
  'til',
  'got',
  'home',
  'lash',
  'phone',
  'ask',
  'hell',
  'turn',
  'around',
  'left',
  'told',
  'appreci',
  'basic',
  'tri',
  'forc',
  'take',
  'friend',
  'us',
  'said',
  'alreadi',
  'call',
  'aw',
  'amd',
  'said',
  'ruin',
  'entir',
  'thing',
  'us',
  'act',
  'immatur',
  'spite',
  'said',
  'couldv',
  'accept',
  'told',
  'would',
  'never',
  'accept',
  'put',
  'situat',
  'im',
  'expect',
  'suck',
  'hung',
  'yell',
  'minut',
  'call',
  'back',
  'got',
  'respons',
  'text',
  'embarrass',
  'infront',
  'friend',
  'refus',
  'speak',
  'til',
  'apolog',
  'aita',
  'turn',
  'around',
  'car',
  'go',
  'home',
  'make',
  'right',
  'call',
  'date_boyfriend',
  'boyfriend_smith',
  'smith_+',
  '+_month',
  'month_plan',
  'plan_go',
  'go_roadtrip',
  'roadtrip_happen',
  'happen_kept',
  'kept_insist',
  'insist_let',
  'let_friend',
  'friend_tag',
  'tag_along',
  'along_brought',
  'brought_promis',
  'promis_ask',
  'ask_let',
  'let_bring',
  'bring_friend',
  'friend_sinc',
  'sinc_im',
  'im_one',
  'one_pay',
  'pay_expens',
  'expens_car',
  'car_alway',
  'alway_want',
  'want_us',
  'us_go',
  'go_alon',
  'alon_without',
  'without_friend',
  'friend_tag',
  'tag_along',
  'along_wan',
  'wan_na',
  'na_pay',
  'pay_friend',
  'friend_agre',
  'agre_id',
  'id_come',
  'come_pick',
  'pick_morn',
  'morn_could',
  'could_ago',
  'ago_came',
  'came_car',
  'car_enter',
  'enter_neighborhood',
  'neighborhood_howev',
  'howev_saw',
  'saw_stand',
  'stand_outsid',
  'outsid_bag',
  'bag_friend',
  'friend_also',
  'also_stand',
  'stand_bag',
  'bag_shock',
  'shock_furiou',
  'furiou_pull',
  'pull_turn',
  'turn_around',
  'around_kept',
  'kept_drive',
  'drive_went',
  'went_back',
  'back_home',
  'home_saw',
  'saw_run',
  'run_rearview',
  'rearview_mirror',
  'mirror_stop',
  'stop_start',
  'start_call',
  'call_respond',
  'respond_til',
  'til_got',
  'got_home',
  'home_lash',
  'lash_phone',
  'phone_ask',
  'ask_hell',
  'hell_turn',
  'turn_around',
  'around_left',
  'left_told',
  'told_appreci',
  'appreci_basic',
  'basic_tri',
  'tri_forc',
  'forc_take',
  'take_friend',
  'friend_us',
  'us_said',
  'said_alreadi',
  'alreadi_call',
  'call_aw',
  'aw_amd',
  'amd_said',
  'said_ruin',
  'ruin_entir',
  'entir_thing',
  'thing_us',
  'us_act',
  'act_immatur',
  'immatur_spite',
  'spite_said',
  'said_couldv',
  'couldv_accept',
  'accept_told',
  'told_would',
  'would_never',
  'never_accept',
  'accept_put',
  'put_situat',
  'situat_im',
  'im_expect',
  'expect_suck',
  'suck_hung',
  'hung_yell',
  'yell_minut',
  'minut_call',
  'call_back',
  'back_got',
  'got_respons',
  'respons_text',
  'text_embarrass',
  'embarrass_infront',
  'infront_friend',
  'friend_refus',
  'refus_speak',
  'speak_til',
  'til_apolog',
  'apolog_aita',
  'aita_turn',
  'turn_around',
  'around_car',
  'car_go',
  'go_home',
  'home_make',
  'make_right',
  'right_call',
  'date_boyfriend_smith',
  'boyfriend_smith_+',
  'smith_+_month',
  '+_month_plan',
  'month_plan_go',
  'plan_go_roadtrip',
  'go_roadtrip_happen',
  'roadtrip_happen_kept',
  'happen_kept_insist',
  'kept_insist_let',
  'insist_let_friend',
  'let_friend_tag',
  'friend_tag_along',
  'tag_along_brought',
  'along_brought_promis',
  'brought_promis_ask',
  'promis_ask_let',
  'ask_let_bring',
  'let_bring_friend',
  'bring_friend_sinc',
  'friend_sinc_im',
  'sinc_im_one',
  'im_one_pay',
  'one_pay_expens',
  'pay_expens_car',
  'expens_car_alway',
  'car_alway_want',
  'alway_want_us',
  'want_us_go',
  'us_go_alon',
  'go_alon_without',
  'alon_without_friend',
  'without_friend_tag',
  'friend_tag_along',
  'tag_along_wan',
  'along_wan_na',
  'wan_na_pay',
  'na_pay_friend',
  'pay_friend_agre',
  'friend_agre_id',
  'agre_id_come',
  'id_come_pick',
  'come_pick_morn',
  'pick_morn_could',
  'morn_could_ago',
  'could_ago_came',
  'ago_came_car',
  'came_car_enter',
  'car_enter_neighborhood',
  'enter_neighborhood_howev',
  'neighborhood_howev_saw',
  'howev_saw_stand',
  'saw_stand_outsid',
  'stand_outsid_bag',
  'outsid_bag_friend',
  'bag_friend_also',
  'friend_also_stand',
  'also_stand_bag',
  'stand_bag_shock',
  'bag_shock_furiou',
  'shock_furiou_pull',
  'furiou_pull_turn',
  'pull_turn_around',
  'turn_around_kept',
  'around_kept_drive',
  'kept_drive_went',
  'drive_went_back',
  'went_back_home',
  'back_home_saw',
  'home_saw_run',
  'saw_run_rearview',
  'run_rearview_mirror',
  'rearview_mirror_stop',
  'mirror_stop_start',
  'stop_start_call',
  'start_call_respond',
  'call_respond_til',
  'respond_til_got',
  'til_got_home',
  'got_home_lash',
  'home_lash_phone',
  'lash_phone_ask',
  'phone_ask_hell',
  'ask_hell_turn',
  'hell_turn_around',
  'turn_around_left',
  'around_left_told',
  'left_told_appreci',
  'told_appreci_basic',
  'appreci_basic_tri',
  'basic_tri_forc',
  'tri_forc_take',
  'forc_take_friend',
  'take_friend_us',
  'friend_us_said',
  'us_said_alreadi',
  'said_alreadi_call',
  'alreadi_call_aw',
  'call_aw_amd',
  'aw_amd_said',
  'amd_said_ruin',
  'said_ruin_entir',
  'ruin_entir_thing',
  'entir_thing_us',
  'thing_us_act',
  'us_act_immatur',
  'act_immatur_spite',
  'immatur_spite_said',
  'spite_said_couldv',
  'said_couldv_accept',
  'couldv_accept_told',
  'accept_told_would',
  'told_would_never',
  'would_never_accept',
  'never_accept_put',
  'accept_put_situat',
  'put_situat_im',
  'situat_im_expect',
  'im_expect_suck',
  'expect_suck_hung',
  'suck_hung_yell',
  'hung_yell_minut',
  'yell_minut_call',
  'minut_call_back',
  'call_back_got',
  'back_got_respons',
  'got_respons_text',
  'respons_text_embarrass',
  'text_embarrass_infront',
  'embarrass_infront_friend',
  'infront_friend_refus',
  'friend_refus_speak',
  'refus_speak_til',
  'speak_til_apolog',
  'til_apolog_aita',
  'apolog_aita_turn',
  'aita_turn_around',
  'turn_around_car',
  'around_car_go',
  'car_go_home',
  'go_home_make',
  'home_make_right',
  'make_right_call'],
 ['use',
  'ta',
  'stori',
  'medic',
  'inform',
  'want',
  'peopl',
  'main',
  'know',
  'english',
  'second',
  'languag',
  'free',
  'correct',
  'fat',
  'girl',
  'sinc',
  'young',
  'last',
  'year',
  'got',
  'point',
  'weight',
  'kg',
  'pound',
  'cm',
  'ft',
  'height',
  'matter',
  'hard',
  'tri',
  'exercis',
  'diet',
  'enough',
  'went',
  'endocrinologist',
  'start',
  'medicin',
  'new',
  'trend',
  'obes',
  'patient',
  'give',
  'name',
  'safeti',
  'reason',
  'treatment',
  'like',
  'miracl',
  'year',
  'obvious',
  'exercis',
  'diet',
  'kg',
  'pound',
  'away',
  'ideal',
  'weight',
  'know',
  'sound',
  'like',
  'lot',
  'believ',
  'huge',
  'step',
  'forward',
  'never',
  'skinni',
  'show',
  'enter',
  'friend',
  'jess',
  'jess',
  'also',
  'chubbi',
  'girl',
  'level',
  'still',
  'enough',
  'affect',
  'self',
  '-',
  'esteem',
  'long',
  'stori',
  'short',
  'jess',
  'ask',
  'done',
  'told',
  'medicin',
  'dosag',
  'use',
  'thought',
  'would',
  'tri',
  'therapi',
  'know',
  'help',
  'doctor',
  'bought',
  'medicin',
  'use',
  'guy',
  'medicin',
  'manag',
  'care',
  'start',
  'low',
  'volum',
  'increas',
  'current',
  'one',
  'process',
  'take',
  'month',
  'use',
  'full',
  'dosi',
  'first',
  'tri',
  'basic',
  'complet',
  'reset',
  'digest',
  'system',
  'pain',
  'worst',
  'append',
  'projectil',
  'puke',
  'explos',
  'diarrhea',
  'among',
  'probabl',
  'mild',
  'damag',
  'pancrea',
  'enter',
  'er',
  'left',
  'hospit',
  'day',
  'later',
  'jess',
  'famili',
  'even',
  'common',
  'friend',
  'blame',
  'happen',
  'also',
  'ask',
  'pay',
  'money',
  'spent',
  'drug',
  'less',
  '$',
  'usa',
  'dollar',
  'also',
  'hospit',
  'cost',
  'insur',
  'cover',
  'poison',
  'drug',
  'send',
  'doctor',
  'aita',
  'use_ta',
  'ta_stori',
  'stori_medic',
  'medic_inform',
  'inform_want',
  'want_peopl',
  'peopl_main',
  'main_know',
  'know_english',
  'english_second',
  'second_languag',
  'languag_free',
  'free_correct',
  'correct_fat',
  'fat_girl',
  'girl_sinc',
  'sinc_young',
  'young_last',
  'last_year',
  'year_got',
  'got_point',
  'point_weight',
  'weight_kg',
  'kg_pound',
  'pound_cm',
  'cm_ft',
  'ft_height',
  'height_matter',
  'matter_hard',
  'hard_tri',
  'tri_exercis',
  'exercis_diet',
  'diet_enough',
  'enough_went',
  'went_endocrinologist',
  'endocrinologist_start',
  'start_medicin',
  'medicin_new',
  'new_trend',
  'trend_obes',
  'obes_patient',
  'patient_give',
  'give_name',
  'name_safeti',
  'safeti_reason',
  'reason_treatment',
  'treatment_like',
  'like_miracl',
  'miracl_year',
  'year_obvious',
  'obvious_exercis',
  'exercis_diet',
  'diet_kg',
  'kg_pound',
  'pound_away',
  'away_ideal',
  'ideal_weight',
  'weight_know',
  'know_sound',
  'sound_like',
  'like_lot',
  'lot_believ',
  'believ_huge',
  'huge_step',
  'step_forward',
  'forward_never',
  'never_skinni',
  'skinni_show',
  'show_enter',
  'enter_friend',
  'friend_jess',
  'jess_jess',
  'jess_also',
  'also_chubbi',
  'chubbi_girl',
  'girl_level',
  'level_still',
  'still_enough',
  'enough_affect',
  'affect_self',
  'self_-',
  '-_esteem',
  'esteem_long',
  'long_stori',
  'stori_short',
  'short_jess',
  'jess_ask',
  'ask_done',
  'done_told',
  'told_medicin',
  'medicin_dosag',
  'dosag_use',
  'use_thought',
  'thought_would',
  'would_tri',
  'tri_therapi',
  'therapi_know',
  'know_help',
  'help_doctor',
  'doctor_bought',
  'bought_medicin',
  'medicin_use',
  'use_guy',
  'guy_medicin',
  'medicin_manag',
  'manag_care',
  'care_start',
  'start_low',
  'low_volum',
  'volum_increas',
  'increas_current',
  'current_one',
  'one_process',
  'process_take',
  'take_month',
  'month_use',
  'use_full',
  'full_dosi',
  'dosi_first',
  'first_tri',
  'tri_basic',
  'basic_complet',
  'complet_reset',
  'reset_digest',
  'digest_system',
  'system_pain',
  'pain_worst',
  'worst_append',
  'append_projectil',
  'projectil_puke',
  'puke_explos',
  'explos_diarrhea',
  'diarrhea_among',
  'among_probabl',
  'probabl_mild',
  'mild_damag',
  'damag_pancrea',
  'pancrea_enter',
  'enter_er',
  'er_left',
  'left_hospit',
  'hospit_day',
  'day_later',
  'later_jess',
  'jess_famili',
  'famili_even',
  'even_common',
  'common_friend',
  'friend_blame',
  'blame_happen',
  'happen_also',
  'also_ask',
  'ask_pay',
  'pay_money',
  'money_spent',
  'spent_drug',
  'drug_less',
  'less_$',
  '$_usa',
  'usa_dollar',
  'dollar_also',
  'also_hospit',
  'hospit_cost',
  'cost_insur',
  'insur_cover',
  'cover_poison',
  'poison_drug',
  'drug_send',
  'send_doctor',
  'doctor_aita',
  'use_ta_stori',
  'ta_stori_medic',
  'stori_medic_inform',
  'medic_inform_want',
  'inform_want_peopl',
  'want_peopl_main',
  'peopl_main_know',
  'main_know_english',
  'know_english_second',
  'english_second_languag',
  'second_languag_free',
  'languag_free_correct',
  'free_correct_fat',
  'correct_fat_girl',
  'fat_girl_sinc',
  'girl_sinc_young',
  'sinc_young_last',
  'young_last_year',
  'last_year_got',
  'year_got_point',
  'got_point_weight',
  'point_weight_kg',
  'weight_kg_pound',
  'kg_pound_cm',
  'pound_cm_ft',
  'cm_ft_height',
  'ft_height_matter',
  'height_matter_hard',
  'matter_hard_tri',
  'hard_tri_exercis',
  'tri_exercis_diet',
  'exercis_diet_enough',
  'diet_enough_went',
  'enough_went_endocrinologist',
  'went_endocrinologist_start',
  'endocrinologist_start_medicin',
  'start_medicin_new',
  'medicin_new_trend',
  'new_trend_obes',
  'trend_obes_patient',
  'obes_patient_give',
  'patient_give_name',
  'give_name_safeti',
  'name_safeti_reason',
  'safeti_reason_treatment',
  'reason_treatment_like',
  'treatment_like_miracl',
  'like_miracl_year',
  'miracl_year_obvious',
  'year_obvious_exercis',
  'obvious_exercis_diet',
  'exercis_diet_kg',
  'diet_kg_pound',
  'kg_pound_away',
  'pound_away_ideal',
  'away_ideal_weight',
  'ideal_weight_know',
  'weight_know_sound',
  'know_sound_like',
  'sound_like_lot',
  'like_lot_believ',
  'lot_believ_huge',
  'believ_huge_step',
  'huge_step_forward',
  'step_forward_never',
  'forward_never_skinni',
  'never_skinni_show',
  'skinni_show_enter',
  'show_enter_friend',
  'enter_friend_jess',
  'friend_jess_jess',
  'jess_jess_also',
  'jess_also_chubbi',
  'also_chubbi_girl',
  'chubbi_girl_level',
  'girl_level_still',
  'level_still_enough',
  'still_enough_affect',
  'enough_affect_self',
  'affect_self_-',
  'self_-_esteem',
  '-_esteem_long',
  'esteem_long_stori',
  'long_stori_short',
  'stori_short_jess',
  'short_jess_ask',
  'jess_ask_done',
  'ask_done_told',
  'done_told_medicin',
  'told_medicin_dosag',
  'medicin_dosag_use',
  'dosag_use_thought',
  'use_thought_would',
  'thought_would_tri',
  'would_tri_therapi',
  'tri_therapi_know',
  'therapi_know_help',
  'know_help_doctor',
  'help_doctor_bought',
  'doctor_bought_medicin',
  'bought_medicin_use',
  'medicin_use_guy',
  'use_guy_medicin',
  'guy_medicin_manag',
  'medicin_manag_care',
  'manag_care_start',
  'care_start_low',
  'start_low_volum',
  'low_volum_increas',
  'volum_increas_current',
  'increas_current_one',
  'current_one_process',
  'one_process_take',
  'process_take_month',
  'take_month_use',
  'month_use_full',
  'use_full_dosi',
  'full_dosi_first',
  'dosi_first_tri',
  'first_tri_basic',
  'tri_basic_complet',
  'basic_complet_reset',
  'complet_reset_digest',
  'reset_digest_system',
  'digest_system_pain',
  'system_pain_worst',
  'pain_worst_append',
  'worst_append_projectil',
  'append_projectil_puke',
  'projectil_puke_explos',
  'puke_explos_diarrhea',
  'explos_diarrhea_among',
  'diarrhea_among_probabl',
  'among_probabl_mild',
  'probabl_mild_damag',
  'mild_damag_pancrea',
  'damag_pancrea_enter',
  'pancrea_enter_er',
  'enter_er_left',
  'er_left_hospit',
  'left_hospit_day',
  'hospit_day_later',
  'day_later_jess',
  'later_jess_famili',
  'jess_famili_even',
  'famili_even_common',
  'even_common_friend',
  'common_friend_blame',
  'friend_blame_happen',
  'blame_happen_also',
  'happen_also_ask',
  'also_ask_pay',
  'ask_pay_money',
  'pay_money_spent',
  'money_spent_drug',
  'spent_drug_less',
  'drug_less_$',
  'less_$_usa',
  '$_usa_dollar',
  'usa_dollar_also',
  'dollar_also_hospit',
  'also_hospit_cost',
  'hospit_cost_insur',
  'cost_insur_cover',
  'insur_cover_poison',
  'cover_poison_drug',
  'poison_drug_send',
  'drug_send_doctor',
  'send_doctor_aita'],
 ['im',
  'gon',
  'na',
  'quick',
  'husband',
  'disabl',
  'expand',
  'privaci',
  'got',
  'servic',
  'dog',
  'month',
  'ago',
  'help',
  'daili',
  'basi',
  'brother',
  'famili',
  'lost',
  'home',
  'ask',
  'move',
  'us',
  'week',
  'til',
  'find',
  'anoth',
  'place',
  'stay',
  'thing',
  'niec',
  'start',
  'complain',
  'servic',
  'dog',
  'make',
  'uncomfort',
  'strang',
  'allergi',
  'noth',
  'uncomfort',
  'told',
  'brother',
  'ask',
  'could',
  'move',
  'dog',
  'said',
  'absolut',
  'dog',
  'liter',
  'help',
  'human',
  'come',
  'peopl',
  'disabl',
  'incred',
  'smart',
  'importantli',
  'mind',
  'busi',
  'never',
  'bother',
  'niec',
  'uncomfort',
  'reason',
  'brother',
  'wife',
  'start',
  'beg',
  'say',
  'temporari',
  'refus',
  'said',
  'husband',
  'realli',
  'need',
  'dog',
  'much',
  'sinc',
  'home',
  'time',
  'yet',
  'still',
  'refus',
  'tri',
  'talk',
  'husband',
  'directli',
  'shut',
  'immedietli',
  'brother',
  'wife',
  'start',
  'argument',
  'right',
  'brother',
  'went',
  'work',
  'start',
  'yell',
  'valu',
  'dog',
  'niec',
  'comfort',
  'said',
  'dog',
  'husband',
  'need',
  'brother',
  'came',
  'home',
  'kept',
  'argu',
  'said',
  'unsupport',
  'cruel',
  'niec',
  'alreadi',
  'enough',
  'husband',
  'got',
  'involv',
  'ask',
  'take',
  'father',
  'hous',
  'dog',
  'said',
  'dad',
  'said',
  'dog',
  'stay',
  'brother',
  'wife',
  'guest',
  'room',
  'sulk',
  'hard',
  'niec',
  'ignor',
  'meanwhil',
  'husband',
  'sit',
  'kitchen',
  'tri',
  'convinc',
  'let',
  'go',
  'stay',
  'dad',
  'keep',
  'peac',
  'brother',
  'man',
  'husband',
  'like',
  'time',
  'alway',
  'want',
  'keep',
  'peac',
  'liter',
  'cuss',
  'hell',
  'apolog',
  'like',
  'fault',
  'think',
  'owe',
  'peopl',
  'accept',
  'disabl',
  'man',
  'sad',
  'true',
  'home',
  'time',
  'still',
  'need',
  'servic',
  'dog',
  'throughout',
  'day',
  'amitheasshol',
  'refus',
  'move',
  'dog',
  'temporarili',
  'niec',
  'upset',
  'im_gon',
  'gon_na',
  'na_quick',
  'quick_husband',
  'husband_disabl',
  'disabl_expand',
  'expand_privaci',
  'privaci_got',
  'got_servic',
  'servic_dog',
  'dog_month',
  'month_ago',
  'ago_help',
  'help_daili',
  'daili_basi',
  'basi_brother',
  'brother_famili',
  'famili_lost',
  'lost_home',
  'home_ask',
  'ask_move',
  'move_us',
  'us_week',
  'week_til',
  'til_find',
  'find_anoth',
  'anoth_place',
  'place_stay',
  'stay_thing',
  'thing_niec',
  'niec_start',
  'start_complain',
  'complain_servic',
  'servic_dog',
  'dog_make',
  'make_uncomfort',
  'uncomfort_strang',
  'strang_allergi',
  'allergi_noth',
  'noth_uncomfort',
  'uncomfort_told',
  'told_brother',
  'brother_ask',
  'ask_could',
  'could_move',
  'move_dog',
  'dog_said',
  'said_absolut',
  'absolut_dog',
  'dog_liter',
  'liter_help',
  'help_human',
  'human_come',
  'come_peopl',
  'peopl_disabl',
  'disabl_incred',
  'incred_smart',
  'smart_importantli',
  'importantli_mind',
  'mind_busi',
  'busi_never',
  'never_bother',
  'bother_niec',
  'niec_uncomfort',
  'uncomfort_reason',
  'reason_brother',
  'brother_wife',
  'wife_start',
  'start_beg',
  'beg_say',
  'say_temporari',
  'temporari_refus',
  'refus_said',
  'said_husband',
  'husband_realli',
  'realli_need',
  'need_dog',
  'dog_much',
  'much_sinc',
  'sinc_home',
  'home_time',
  'time_yet',
  'yet_still',
  'still_refus',
  'refus_tri',
  'tri_talk',
  'talk_husband',
  'husband_directli',
  'directli_shut',
  'shut_immedietli',
  'immedietli_brother',
  'brother_wife',
  'wife_start',
  'start_argument',
  'argument_right',
  'right_brother',
  'brother_went',
  'went_work',
  'work_start',
  'start_yell',
  'yell_valu',
  'valu_dog',
  'dog_niec',
  'niec_comfort',
  'comfort_said',
  'said_dog',
  'dog_husband',
  'husband_need',
  'need_brother',
  'brother_came',
  'came_home',
  'home_kept',
  'kept_argu',
  'argu_said',
  'said_unsupport',
  'unsupport_cruel',
  'cruel_niec',
  'niec_alreadi',
  'alreadi_enough',
  'enough_husband',
  'husband_got',
  'got_involv',
  'involv_ask',
  'ask_take',
  'take_father',
  'father_hous',
  'hous_dog',
  'dog_said',
  'said_dad',
  'dad_said',
  'said_dog',
  'dog_stay',
  'stay_brother',
  'brother_wife',
  'wife_guest',
  'guest_room',
  'room_sulk',
  'sulk_hard',
  'hard_niec',
  'niec_ignor',
  'ignor_meanwhil',
  'meanwhil_husband',
  'husband_sit',
  'sit_kitchen',
  'kitchen_tri',
  'tri_convinc',
  'convinc_let',
  'let_go',
  'go_stay',
  'stay_dad',
  'dad_keep',
  'keep_peac',
  'peac_brother',
  'brother_man',
  'man_husband',
  'husband_like',
  'like_time',
  'time_alway',
  'alway_want',
  'want_keep',
  'keep_peac',
  'peac_liter',
  'liter_cuss',
  'cuss_hell',
  'hell_apolog',
  'apolog_like',
  'like_fault',
  'fault_think',
  'think_owe',
  'owe_peopl',
  'peopl_accept',
  'accept_disabl',
  'disabl_man',
  'man_sad',
  'sad_true',
  'true_home',
  'home_time',
  'time_still',
  'still_need',
  'need_servic',
  'servic_dog',
  'dog_throughout',
  'throughout_day',
  'day_amitheasshol',
  'amitheasshol_refus',
  'refus_move',
  'move_dog',
  'dog_temporarili',
  'temporarili_niec',
  'niec_upset',
  'im_gon_na',
  'gon_na_quick',
  'na_quick_husband',
  'quick_husband_disabl',
  'husband_disabl_expand',
  'disabl_expand_privaci',
  'expand_privaci_got',
  'privaci_got_servic',
  'got_servic_dog',
  'servic_dog_month',
  'dog_month_ago',
  'month_ago_help',
  'ago_help_daili',
  'help_daili_basi',
  'daili_basi_brother',
  'basi_brother_famili',
  'brother_famili_lost',
  'famili_lost_home',
  'lost_home_ask',
  'home_ask_move',
  'ask_move_us',
  'move_us_week',
  'us_week_til',
  'week_til_find',
  'til_find_anoth',
  'find_anoth_place',
  'anoth_place_stay',
  'place_stay_thing',
  'stay_thing_niec',
  'thing_niec_start',
  'niec_start_complain',
  'start_complain_servic',
  'complain_servic_dog',
  'servic_dog_make',
  'dog_make_uncomfort',
  'make_uncomfort_strang',
  'uncomfort_strang_allergi',
  'strang_allergi_noth',
  'allergi_noth_uncomfort',
  'noth_uncomfort_told',
  'uncomfort_told_brother',
  'told_brother_ask',
  'brother_ask_could',
  'ask_could_move',
  'could_move_dog',
  'move_dog_said',
  'dog_said_absolut',
  'said_absolut_dog',
  'absolut_dog_liter',
  'dog_liter_help',
  'liter_help_human',
  'help_human_come',
  'human_come_peopl',
  'come_peopl_disabl',
  'peopl_disabl_incred',
  'disabl_incred_smart',
  'incred_smart_importantli',
  'smart_importantli_mind',
  'importantli_mind_busi',
  'mind_busi_never',
  'busi_never_bother',
  'never_bother_niec',
  'bother_niec_uncomfort',
  'niec_uncomfort_reason',
  'uncomfort_reason_brother',
  'reason_brother_wife',
  'brother_wife_start',
  'wife_start_beg',
  'start_beg_say',
  'beg_say_temporari',
  'say_temporari_refus',
  'temporari_refus_said',
  'refus_said_husband',
  'said_husband_realli',
  'husband_realli_need',
  'realli_need_dog',
  'need_dog_much',
  'dog_much_sinc',
  'much_sinc_home',
  'sinc_home_time',
  'home_time_yet',
  'time_yet_still',
  'yet_still_refus',
  'still_refus_tri',
  'refus_tri_talk',
  'tri_talk_husband',
  'talk_husband_directli',
  'husband_directli_shut',
  'directli_shut_immedietli',
  'shut_immedietli_brother',
  'immedietli_brother_wife',
  'brother_wife_start',
  'wife_start_argument',
  'start_argument_right',
  'argument_right_brother',
  'right_brother_went',
  'brother_went_work',
  'went_work_start',
  'work_start_yell',
  'start_yell_valu',
  'yell_valu_dog',
  'valu_dog_niec',
  'dog_niec_comfort',
  'niec_comfort_said',
  'comfort_said_dog',
  'said_dog_husband',
  'dog_husband_need',
  'husband_need_brother',
  'need_brother_came',
  'brother_came_home',
  'came_home_kept',
  'home_kept_argu',
  'kept_argu_said',
  'argu_said_unsupport',
  'said_unsupport_cruel',
  'unsupport_cruel_niec',
  'cruel_niec_alreadi',
  'niec_alreadi_enough',
  'alreadi_enough_husband',
  'enough_husband_got',
  'husband_got_involv',
  'got_involv_ask',
  'involv_ask_take',
  'ask_take_father',
  'take_father_hous',
  'father_hous_dog',
  'hous_dog_said',
  'dog_said_dad',
  'said_dad_said',
  'dad_said_dog',
  'said_dog_stay',
  'dog_stay_brother',
  'stay_brother_wife',
  'brother_wife_guest',
  'wife_guest_room',
  'guest_room_sulk',
  'room_sulk_hard',
  'sulk_hard_niec',
  'hard_niec_ignor',
  'niec_ignor_meanwhil',
  'ignor_meanwhil_husband',
  'meanwhil_husband_sit',
  'husband_sit_kitchen',
  'sit_kitchen_tri',
  'kitchen_tri_convinc',
  'tri_convinc_let',
  'convinc_let_go',
  'let_go_stay',
  'go_stay_dad',
  'stay_dad_keep',
  'dad_keep_peac',
  'keep_peac_brother',
  'peac_brother_man',
  'brother_man_husband',
  'man_husband_like',
  'husband_like_time',
  'like_time_alway',
  'time_alway_want',
  'alway_want_keep',
  'want_keep_peac',
  'keep_peac_liter',
  'peac_liter_cuss',
  'liter_cuss_hell',
  'cuss_hell_apolog',
  'hell_apolog_like',
  'apolog_like_fault',
  'like_fault_think',
  'fault_think_owe',
  'think_owe_peopl',
  'owe_peopl_accept',
  'peopl_accept_disabl',
  'accept_disabl_man',
  'disabl_man_sad',
  'man_sad_true',
  'sad_true_home',
  'true_home_time',
  'home_time_still',
  'time_still_need',
  'still_need_servic',
  'need_servic_dog',
  'servic_dog_throughout',
  'dog_throughout_day',
  'throughout_day_amitheasshol',
  'day_amitheasshol_refus',
  'amitheasshol_refus_move',
  'refus_move_dog',
  'move_dog_temporarili',
  'dog_temporarili_niec',
  'temporarili_niec_upset'],
 ['tri',
  'save',
  'money',
  'possibl',
  'wed',
  'ceremoni',
  'use',
  'publix',
  'cater',
  'wife',
  'think',
  'guest',
  'ok',
  'eat',
  'finger',
  'food',
  'fruitveget',
  'tray',
  'assort',
  'chees',
  'wing',
  'chicken',
  'tender',
  'know',
  'shell',
  'hungri',
  'satisfi',
  'want',
  'also',
  'roast',
  'chicken',
  'tabl',
  'think',
  'side',
  'think',
  'would',
  'incred',
  'rude',
  'openli',
  'much',
  'better',
  'meal',
  'guest',
  'would',
  'us',
  'tear',
  'apart',
  'full',
  'bird',
  'munch',
  'tender',
  'convers',
  'id',
  'perfectli',
  'fine',
  'appet',
  'everyon',
  'us',
  'includ',
  'cost',
  'everi',
  'tabl',
  'get',
  'roast',
  'chicken',
  'would',
  'put',
  'us',
  'like',
  '$',
  'plate',
  'accord',
  'save',
  'money',
  'everi',
  'decis',
  'make',
  'justifi',
  'go',
  'wed',
  'anybodi',
  'els',
  'want',
  'wide',
  'varieti',
  'option',
  'cater',
  'either',
  'want',
  'stuff',
  'shed',
  'like',
  'think',
  'wed',
  'total',
  'asshol',
  'go',
  'idea',
  'thought',
  'tri_save',
  'save_money',
  'money_possibl',
  'possibl_wed',
  'wed_ceremoni',
  'ceremoni_use',
  'use_publix',
  'publix_cater',
  'cater_wife',
  'wife_think',
  'think_guest',
  'guest_ok',
  'ok_eat',
  'eat_finger',
  'finger_food',
  'food_fruitveget',
  'fruitveget_tray',
  'tray_assort',
  'assort_chees',
  'chees_wing',
  'wing_chicken',
  'chicken_tender',
  'tender_know',
  'know_shell',
  'shell_hungri',
  'hungri_satisfi',
  'satisfi_want',
  'want_also',
  'also_roast',
  'roast_chicken',
  'chicken_tabl',
  'tabl_think',
  'think_side',
  'side_think',
  'think_would',
  'would_incred',
  'incred_rude',
  'rude_openli',
  'openli_much',
  'much_better',
  'better_meal',
  'meal_guest',
  'guest_would',
  'would_us',
  'us_tear',
  'tear_apart',
  'apart_full',
  'full_bird',
  'bird_munch',
  'munch_tender',
  'tender_convers',
  'convers_id',
  'id_perfectli',
  'perfectli_fine',
  'fine_appet',
  'appet_everyon',
  'everyon_us',
  'us_includ',
  'includ_cost',
  'cost_everi',
  'everi_tabl',
  'tabl_get',
  'get_roast',
  'roast_chicken',
  'chicken_would',
  'would_put',
  'put_us',
  'us_like',
  'like_$',
  '$_plate',
  'plate_accord',
  'accord_save',
  'save_money',
  'money_everi',
  'everi_decis',
  'decis_make',
  'make_justifi',
  'justifi_go',
  'go_wed',
  'wed_anybodi',
  'anybodi_els',
  'els_want',
  'want_wide',
  'wide_varieti',
  'varieti_option',
  'option_cater',
  'cater_either',
  'either_want',
  'want_stuff',
  'stuff_shed',
  'shed_like',
  'like_think',
  'think_wed',
  'wed_total',
  'total_asshol',
  'asshol_go',
  'go_idea',
  'idea_thought',
  'tri_save_money',
  'save_money_possibl',
  'money_possibl_wed',
  'possibl_wed_ceremoni',
  'wed_ceremoni_use',
  'ceremoni_use_publix',
  'use_publix_cater',
  'publix_cater_wife',
  'cater_wife_think',
  'wife_think_guest',
  'think_guest_ok',
  'guest_ok_eat',
  'ok_eat_finger',
  'eat_finger_food',
  'finger_food_fruitveget',
  'food_fruitveget_tray',
  'fruitveget_tray_assort',
  'tray_assort_chees',
  'assort_chees_wing',
  'chees_wing_chicken',
  'wing_chicken_tender',
  'chicken_tender_know',
  'tender_know_shell',
  'know_shell_hungri',
  'shell_hungri_satisfi',
  'hungri_satisfi_want',
  'satisfi_want_also',
  'want_also_roast',
  'also_roast_chicken',
  'roast_chicken_tabl',
  'chicken_tabl_think',
  'tabl_think_side',
  'think_side_think',
  'side_think_would',
  'think_would_incred',
  'would_incred_rude',
  'incred_rude_openli',
  'rude_openli_much',
  'openli_much_better',
  'much_better_meal',
  'better_meal_guest',
  'meal_guest_would',
  'guest_would_us',
  'would_us_tear',
  'us_tear_apart',
  'tear_apart_full',
  'apart_full_bird',
  'full_bird_munch',
  'bird_munch_tender',
  'munch_tender_convers',
  'tender_convers_id',
  'convers_id_perfectli',
  'id_perfectli_fine',
  'perfectli_fine_appet',
  'fine_appet_everyon',
  'appet_everyon_us',
  'everyon_us_includ',
  'us_includ_cost',
  'includ_cost_everi',
  'cost_everi_tabl',
  'everi_tabl_get',
  'tabl_get_roast',
  'get_roast_chicken',
  'roast_chicken_would',
  'chicken_would_put',
  'would_put_us',
  'put_us_like',
  'us_like_$',
  'like_$_plate',
  '$_plate_accord',
  'plate_accord_save',
  'accord_save_money',
  'save_money_everi',
  'money_everi_decis',
  'everi_decis_make',
  'decis_make_justifi',
  'make_justifi_go',
  'justifi_go_wed',
  'go_wed_anybodi',
  'wed_anybodi_els',
  'anybodi_els_want',
  'els_want_wide',
  'want_wide_varieti',
  'wide_varieti_option',
  'varieti_option_cater',
  'option_cater_either',
  'cater_either_want',
  'either_want_stuff',
  'want_stuff_shed',
  'stuff_shed_like',
  'shed_like_think',
  'like_think_wed',
  'think_wed_total',
  'wed_total_asshol',
  'total_asshol_go',
  'asshol_go_idea',
  'go_idea_thought'],
 ['flew',
  'home',
  'thanksgiv',
  'week',
  'got',
  'earli',
  'flight',
  'morn',
  'would',
  'abl',
  'laundri',
  'tomorrow',
  'relax',
  'go',
  'back',
  'work',
  'plus-siz',
  'woman',
  'caus',
  'final',
  'diagnos',
  'three',
  'year',
  'weight',
  'gain',
  'ive',
  'lost',
  'lb',
  'last',
  'four',
  'week',
  'book',
  'flight',
  'spent',
  'extra',
  'money',
  'book',
  'two',
  'adjac',
  'seat',
  'whoever',
  'third',
  'seat',
  'row',
  'would',
  'squish',
  'busi',
  'fli',
  'great',
  'person',
  'row',
  'cool',
  'share',
  'middl',
  'seat',
  'snack',
  'play',
  'pokemon',
  'switch',
  'visit',
  'anim',
  'cross',
  'island',
  'fli',
  'home',
  'thing',
  'becam',
  'bit',
  'problemat',
  'settl',
  'pair',
  'seat',
  'gentleman',
  'tri',
  'sit',
  'daughter',
  '\\~',
  'waif',
  'overweight',
  'dad',
  'middl',
  'seat',
  'bum',
  'take',
  'good',
  'third',
  'middl',
  'seat',
  'said',
  'polit',
  'im',
  'sorri',
  'seat',
  'book',
  'daughter',
  'cant',
  'sit',
  'put',
  'hand',
  'seat',
  'immedi',
  'complain',
  'abl',
  'book',
  'seat',
  'togeth',
  'need',
  'sit',
  'daughter',
  'shrug',
  'said',
  'sorri',
  'problem',
  'seat',
  'call',
  'stewardess',
  'complain',
  'explain',
  'situat',
  'show',
  'pair',
  'ticket',
  'flight',
  'attend',
  'offer',
  'comp',
  'extra',
  'seat',
  'said',
  'thank',
  'need',
  'extra',
  'room',
  'wave',
  'bum',
  'partway',
  'middl',
  'seat',
  'stewardess',
  'came',
  'back',
  'ten',
  'minut',
  'later',
  'wife',
  'coupl',
  'agre',
  'switch',
  'seat',
  'man',
  'could',
  'sit',
  'daughter',
  'without',
  'attempt',
  'shame',
  'help',
  'dad',
  'need',
  'comment',
  'selfish',
  'edit',
  'woman',
  'switch',
  'seat',
  'rude',
  'stewardess',
  'stewardess',
  'noth',
  'polit',
  'said',
  'book',
  'earli',
  'book',
  'two',
  'seat',
  'togeth',
  'put',
  'plainli',
  'im',
  'fat',
  'two',
  'seat',
  'separ',
  'seat',
  'exactli',
  'propos',
  'split',
  'fat',
  'ass',
  'half',
  'sit',
  'one',
  'half',
  'one',
  'seat',
  'half',
  'seat',
  'woman',
  'turn',
  'red',
  'face',
  'bitch',
  'disgust',
  'repli',
  'lack',
  'plan',
  'emerg',
  'scowl',
  'entir',
  'rest',
  'flight',
  'told',
  'folk',
  'land',
  'dad',
  'thought',
  'funniest',
  'thing',
  'hed',
  'ever',
  'heard',
  'mom',
  'yell',
  'encourag',
  'said',
  'help',
  'dad',
  'kid',
  'two',
  'seat',
  'want',
  'know',
  'aita',
  'edit',
  'oh',
  'expect',
  'much',
  'respons',
  'folk',
  'although',
  'thank',
  'everyon',
  'went',
  'eat',
  'pass',
  'jet',
  'lag',
  'ill',
  'start',
  'go',
  'comment',
  'today',
  'flew_home',
  'home_thanksgiv',
  'thanksgiv_week',
  'week_got',
  'got_earli',
  'earli_flight',
  'flight_morn',
  'morn_would',
  'would_abl',
  'abl_laundri',
  'laundri_tomorrow',
  'tomorrow_relax',
  'relax_go',
  'go_back',
  'back_work',
  'work_plus-siz',
  'plus-siz_woman',
  'woman_caus',
  'caus_final',
  'final_diagnos',
  'diagnos_three',
  'three_year',
  'year_weight',
  'weight_gain',
  'gain_ive',
  'ive_lost',
  'lost_lb',
  'lb_last',
  'last_four',
  'four_week',
  'week_book',
  'book_flight',
  'flight_spent',
  'spent_extra',
  'extra_money',
  'money_book',
  'book_two',
  'two_adjac',
  'adjac_seat',
  'seat_whoever',
  'whoever_third',
  'third_seat',
  'seat_row',
  'row_would',
  'would_squish',
  'squish_busi',
  'busi_fli',
  'fli_great',
  'great_person',
  'person_row',
  'row_cool',
  'cool_share',
  'share_middl',
  'middl_seat',
  'seat_snack',
  'snack_play',
  'play_pokemon',
  'pokemon_switch',
  'switch_visit',
  'visit_anim',
  'anim_cross',
  'cross_island',
  'island_fli',
  'fli_home',
  'home_thing',
  'thing_becam',
  'becam_bit',
  'bit_problemat',
  'problemat_settl',
  'settl_pair',
  'pair_seat',
  'seat_gentleman',
  'gentleman_tri',
  'tri_sit',
  'sit_daughter',
  'daughter_\\~',
  '\\~_waif',
  'waif_overweight',
  'overweight_dad',
  'dad_middl',
  'middl_seat',
  'seat_bum',
  'bum_take',
  'take_good',
  'good_third',
  'third_middl',
  'middl_seat',
  'seat_said',
  'said_polit',
  'polit_im',
  'im_sorri',
  'sorri_seat',
  'seat_book',
  'book_daughter',
  'daughter_cant',
  'cant_sit',
  'sit_put',
  'put_hand',
  'hand_seat',
  'seat_immedi',
  'immedi_complain',
  'complain_abl',
  'abl_book',
  'book_seat',
  'seat_togeth',
  'togeth_need',
  'need_sit',
  'sit_daughter',
  'daughter_shrug',
  'shrug_said',
  'said_sorri',
  'sorri_problem',
  'problem_seat',
  'seat_call',
  'call_stewardess',
  'stewardess_complain',
  'complain_explain',
  'explain_situat',
  'situat_show',
  'show_pair',
  'pair_ticket',
  'ticket_flight',
  'flight_attend',
  'attend_offer',
  'offer_comp',
  'comp_extra',
  'extra_seat',
  'seat_said',
  'said_thank',
  'thank_need',
  'need_extra',
  'extra_room',
  'room_wave',
  'wave_bum',
  'bum_partway',
  'partway_middl',
  'middl_seat',
  'seat_stewardess',
  'stewardess_came',
  'came_back',
  'back_ten',
  'ten_minut',
  'minut_later',
  'later_wife',
  'wife_coupl',
  'coupl_agre',
  'agre_switch',
  'switch_seat',
  'seat_man',
  'man_could',
  'could_sit',
  'sit_daughter',
  'daughter_without',
  'without_attempt',
  'attempt_shame',
  'shame_help',
  'help_dad',
  'dad_need',
  'need_comment',
  'comment_selfish',
  'selfish_edit',
  'edit_woman',
  'woman_switch',
  'switch_seat',
  'seat_rude',
  'rude_stewardess',
  'stewardess_stewardess',
  'stewardess_noth',
  'noth_polit',
  'polit_said',
  'said_book',
  'book_earli',
  'earli_book',
  'book_two',
  'two_seat',
  'seat_togeth',
  'togeth_put',
  'put_plainli',
  'plainli_im',
  'im_fat',
  'fat_two',
  'two_seat',
  'seat_separ',
  'separ_seat',
  'seat_exactli',
  'exactli_propos',
  'propos_split',
  'split_fat',
  'fat_ass',
  'ass_half',
  'half_sit',
  'sit_one',
  'one_half',
  'half_one',
  'one_seat',
  'seat_half',
  'half_seat',
  'seat_woman',
  'woman_turn',
  'turn_red',
  'red_face',
  'face_bitch',
  'bitch_disgust',
  'disgust_repli',
  'repli_lack',
  'lack_plan',
  'plan_emerg',
  'emerg_scowl',
  'scowl_entir',
  'entir_rest',
  'rest_flight',
  'flight_told',
  'told_folk',
  'folk_land',
  'land_dad',
  'dad_thought',
  'thought_funniest',
  'funniest_thing',
  'thing_hed',
  'hed_ever',
  'ever_heard',
  'heard_mom',
  'mom_yell',
  'yell_encourag',
  'encourag_said',
  'said_help',
  'help_dad',
  'dad_kid',
  'kid_two',
  'two_seat',
  'seat_want',
  'want_know',
  'know_aita',
  'aita_edit',
  'edit_oh',
  'oh_expect',
  'expect_much',
  'much_respons',
  'respons_folk',
  'folk_although',
  'although_thank',
  'thank_everyon',
  'everyon_went',
  'went_eat',
  'eat_pass',
  'pass_jet',
  'jet_lag',
  'lag_ill',
  'ill_start',
  'start_go',
  'go_comment',
  'comment_today',
  'flew_home_thanksgiv',
  'home_thanksgiv_week',
  'thanksgiv_week_got',
  'week_got_earli',
  'got_earli_flight',
  'earli_flight_morn',
  'flight_morn_would',
  'morn_would_abl',
  'would_abl_laundri',
  'abl_laundri_tomorrow',
  'laundri_tomorrow_relax',
  'tomorrow_relax_go',
  'relax_go_back',
  'go_back_work',
  'back_work_plus-siz',
  'work_plus-siz_woman',
  'plus-siz_woman_caus',
  'woman_caus_final',
  'caus_final_diagnos',
  'final_diagnos_three',
  'diagnos_three_year',
  'three_year_weight',
  'year_weight_gain',
  'weight_gain_ive',
  'gain_ive_lost',
  'ive_lost_lb',
  'lost_lb_last',
  'lb_last_four',
  'last_four_week',
  'four_week_book',
  'week_book_flight',
  'book_flight_spent',
  'flight_spent_extra',
  'spent_extra_money',
  'extra_money_book',
  'money_book_two',
  'book_two_adjac',
  'two_adjac_seat',
  'adjac_seat_whoever',
  'seat_whoever_third',
  'whoever_third_seat',
  'third_seat_row',
  'seat_row_would',
  'row_would_squish',
  'would_squish_busi',
  'squish_busi_fli',
  'busi_fli_great',
  'fli_great_person',
  'great_person_row',
  'person_row_cool',
  'row_cool_share',
  'cool_share_middl',
  'share_middl_seat',
  'middl_seat_snack',
  'seat_snack_play',
  'snack_play_pokemon',
  'play_pokemon_switch',
  'pokemon_switch_visit',
  'switch_visit_anim',
  'visit_anim_cross',
  'anim_cross_island',
  'cross_island_fli',
  'island_fli_home',
  'fli_home_thing',
  'home_thing_becam',
  'thing_becam_bit',
  'becam_bit_problemat',
  'bit_problemat_settl',
  'problemat_settl_pair',
  'settl_pair_seat',
  'pair_seat_gentleman',
  'seat_gentleman_tri',
  'gentleman_tri_sit',
  'tri_sit_daughter',
  'sit_daughter_\\~',
  'daughter_\\~_waif',
  '\\~_waif_overweight',
  'waif_overweight_dad',
  'overweight_dad_middl',
  'dad_middl_seat',
  'middl_seat_bum',
  'seat_bum_take',
  'bum_take_good',
  'take_good_third',
  'good_third_middl',
  'third_middl_seat',
  'middl_seat_said',
  'seat_said_polit',
  'said_polit_im',
  'polit_im_sorri',
  'im_sorri_seat',
  'sorri_seat_book',
  'seat_book_daughter',
  'book_daughter_cant',
  'daughter_cant_sit',
  'cant_sit_put',
  'sit_put_hand',
  'put_hand_seat',
  'hand_seat_immedi',
  'seat_immedi_complain',
  'immedi_complain_abl',
  'complain_abl_book',
  'abl_book_seat',
  'book_seat_togeth',
  'seat_togeth_need',
  'togeth_need_sit',
  'need_sit_daughter',
  'sit_daughter_shrug',
  'daughter_shrug_said',
  'shrug_said_sorri',
  'said_sorri_problem',
  'sorri_problem_seat',
  'problem_seat_call',
  'seat_call_stewardess',
  'call_stewardess_complain',
  'stewardess_complain_explain',
  'complain_explain_situat',
  'explain_situat_show',
  'situat_show_pair',
  'show_pair_ticket',
  'pair_ticket_flight',
  'ticket_flight_attend',
  'flight_attend_offer',
  'attend_offer_comp',
  'offer_comp_extra',
  'comp_extra_seat',
  'extra_seat_said',
  'seat_said_thank',
  'said_thank_need',
  'thank_need_extra',
  'need_extra_room',
  'extra_room_wave',
  'room_wave_bum',
  'wave_bum_partway',
  'bum_partway_middl',
  'partway_middl_seat',
  'middl_seat_stewardess',
  'seat_stewardess_came',
  'stewardess_came_back',
  'came_back_ten',
  'back_ten_minut',
  'ten_minut_later',
  'minut_later_wife',
  'later_wife_coupl',
  'wife_coupl_agre',
  'coupl_agre_switch',
  'agre_switch_seat',
  'switch_seat_man',
  'seat_man_could',
  'man_could_sit',
  'could_sit_daughter',
  'sit_daughter_without',
  'daughter_without_attempt',
  'without_attempt_shame',
  'attempt_shame_help',
  'shame_help_dad',
  'help_dad_need',
  'dad_need_comment',
  'need_comment_selfish',
  'comment_selfish_edit',
  'selfish_edit_woman',
  'edit_woman_switch',
  'woman_switch_seat',
  'switch_seat_rude',
  'seat_rude_stewardess',
  'rude_stewardess_stewardess',
  'stewardess_stewardess_noth',
  'stewardess_noth_polit',
  'noth_polit_said',
  'polit_said_book',
  'said_book_earli',
  'book_earli_book',
  'earli_book_two',
  'book_two_seat',
  'two_seat_togeth',
  'seat_togeth_put',
  'togeth_put_plainli',
  'put_plainli_im',
  'plainli_im_fat',
  'im_fat_two',
  'fat_two_seat',
  'two_seat_separ',
  'seat_separ_seat',
  'separ_seat_exactli',
  'seat_exactli_propos',
  'exactli_propos_split',
  'propos_split_fat',
  'split_fat_ass',
  'fat_ass_half',
  'ass_half_sit',
  'half_sit_one',
  'sit_one_half',
  'one_half_one',
  'half_one_seat',
  'one_seat_half',
  'seat_half_seat',
  'half_seat_woman',
  'seat_woman_turn',
  'woman_turn_red',
  'turn_red_face',
  'red_face_bitch',
  'face_bitch_disgust',
  'bitch_disgust_repli',
  'disgust_repli_lack',
  'repli_lack_plan',
  'lack_plan_emerg',
  'plan_emerg_scowl',
  'emerg_scowl_entir',
  'scowl_entir_rest',
  'entir_rest_flight',
  'rest_flight_told',
  'flight_told_folk',
  'told_folk_land',
  'folk_land_dad',
  'land_dad_thought',
  'dad_thought_funniest',
  'thought_funniest_thing',
  'funniest_thing_hed',
  'thing_hed_ever',
  'hed_ever_heard',
  'ever_heard_mom',
  'heard_mom_yell',
  'mom_yell_encourag',
  'yell_encourag_said',
  'encourag_said_help',
  'said_help_dad',
  'help_dad_kid',
  'dad_kid_two',
  'kid_two_seat',
  'two_seat_want',
  'seat_want_know',
  'want_know_aita',
  'know_aita_edit',
  'aita_edit_oh',
  'edit_oh_expect',
  'oh_expect_much',
  'expect_much_respons',
  'much_respons_folk',
  'respons_folk_although',
  'folk_although_thank',
  'although_thank_everyon',
  'thank_everyon_went',
  'everyon_went_eat',
  'went_eat_pass',
  'eat_pass_jet',
  'pass_jet_lag',
  'jet_lag_ill',
  'lag_ill_start',
  'ill_start_go',
  'start_go_comment',
  'go_comment_today'],
 ['marri',
  'husband',
  'year',
  'ive',
  'never',
  'marri',
  'marri',
  'twice',
  'kid',
  'request',
  'financ',
  'split',
  'fine',
  'see',
  'blow',
  'money',
  'frusrtat',
  'say',
  'kid',
  'commit',
  'provid',
  'think',
  'kid',
  'would',
  'need',
  'much',
  'money',
  'live',
  'like',
  'kid',
  'bank',
  'account',
  'alway',
  'almost',
  'empti',
  'whilea',
  'mine',
  'take',
  'turn',
  'pay',
  'daili',
  'expens',
  'stuff',
  'late',
  'struggl',
  'money',
  'borrow',
  'number',
  'peopl',
  'includ',
  'brother',
  'week',
  'ago',
  'seem',
  'desper',
  'money',
  'ask',
  'deal',
  'said',
  'need',
  'money',
  'kid',
  'seem',
  'fishi',
  'sinc',
  'kid',
  'realli',
  'need',
  'much',
  'money',
  'expens',
  'eldest',
  'came',
  'ask',
  'borrow',
  'pull',
  'account',
  'tri',
  'ask',
  'need',
  'money',
  'said',
  'none',
  'busi',
  'insist',
  'hell',
  'return',
  'asap',
  'said',
  'okay',
  'condit',
  'sign',
  'contract',
  'state',
  'hell',
  'return',
  'money',
  'full',
  'act',
  'shock',
  'offend',
  'went',
  'trust',
  'word',
  'told',
  'got',
  'one',
  'condit',
  'kept',
  'rant',
  'im',
  'refus',
  'help',
  'make',
  'situat',
  'difficult',
  'instead',
  'co-oper',
  'insist',
  'contract',
  'sign',
  'even',
  'pull',
  'penni',
  'morn',
  'told',
  'one',
  'time',
  'blew',
  'said',
  'famili',
  'asham',
  'involv',
  'court',
  'lawyer',
  'famili',
  'left',
  'hous',
  'upset',
  'respond',
  'call',
  'yet',
  'aita',
  'stand',
  'ground',
  'condit',
  '*',
  '*',
  'updat',
  '*',
  'weve',
  'talk',
  'got',
  'home',
  'tri',
  'press',
  'tell',
  'need',
  'money',
  'gave',
  'attitud',
  'said',
  'worri',
  'still',
  'stood',
  'condit',
  'made',
  'call',
  'fuck',
  'useless',
  'storm',
  'spend',
  'night',
  'withat',
  'god',
  'know',
  'marri_husband',
  'husband_year',
  'year_ive',
  'ive_never',
  'never_marri',
  'marri_marri',
  'marri_twice',
  'twice_kid',
  'kid_request',
  'request_financ',
  'financ_split',
  'split_fine',
  'fine_see',
  'see_blow',
  'blow_money',
  'money_frusrtat',
  'frusrtat_say',
  'say_kid',
  'kid_commit',
  'commit_provid',
  'provid_think',
  'think_kid',
  'kid_would',
  'would_need',
  'need_much',
  'much_money',
  'money_live',
  'live_like',
  'like_kid',
  'kid_bank',
  'bank_account',
  'account_alway',
  'alway_almost',
  'almost_empti',
  'empti_whilea',
  'whilea_mine',
  'mine_take',
  'take_turn',
  'turn_pay',
  'pay_daili',
  'daili_expens',
  'expens_stuff',
  'stuff_late',
  'late_struggl',
  'struggl_money',
  'money_borrow',
  'borrow_number',
  'number_peopl',
  'peopl_includ',
  'includ_brother',
  'brother_week',
  'week_ago',
  'ago_seem',
  'seem_desper',
  'desper_money',
  'money_ask',
  'ask_deal',
  'deal_said',
  'said_need',
  'need_money',
  'money_kid',
  'kid_seem',
  'seem_fishi',
  'fishi_sinc',
  'sinc_kid',
  'kid_realli',
  'realli_need',
  'need_much',
  'much_money',
  'money_expens',
  'expens_eldest',
  'eldest_came',
  'came_ask',
  'ask_borrow',
  'borrow_pull',
  'pull_account',
  'account_tri',
  'tri_ask',
  'ask_need',
  'need_money',
  'money_said',
  'said_none',
  'none_busi',
  'busi_insist',
  'insist_hell',
  'hell_return',
  'return_asap',
  'asap_said',
  'said_okay',
  'okay_condit',
  'condit_sign',
  'sign_contract',
  'contract_state',
  'state_hell',
  'hell_return',
  'return_money',
  'money_full',
  'full_act',
  'act_shock',
  'shock_offend',
  'offend_went',
  'went_trust',
  'trust_word',
  'word_told',
  'told_got',
  'got_one',
  'one_condit',
  'condit_kept',
  'kept_rant',
  'rant_im',
  'im_refus',
  'refus_help',
  'help_make',
  'make_situat',
  'situat_difficult',
  'difficult_instead',
  'instead_co-oper',
  'co-oper_insist',
  'insist_contract',
  'contract_sign',
  'sign_even',
  'even_pull',
  'pull_penni',
  'penni_morn',
  'morn_told',
  'told_one',
  'one_time',
  'time_blew',
  'blew_said',
  'said_famili',
  'famili_asham',
  'asham_involv',
  'involv_court',
  'court_lawyer',
  'lawyer_famili',
  'famili_left',
  'left_hous',
  'hous_upset',
  'upset_respond',
  'respond_call',
  'call_yet',
  'yet_aita',
  'aita_stand',
  'stand_ground',
  'ground_condit',
  'condit_*',
  '*_*',
  '*_updat',
  'updat_*',
  '*_weve',
  'weve_talk',
  'talk_got',
  'got_home',
  'home_tri',
  'tri_press',
  'press_tell',
  'tell_need',
  'need_money',
  'money_gave',
  'gave_attitud',
  'attitud_said',
  'said_worri',
  'worri_still',
  'still_stood',
  'stood_condit',
  'condit_made',
  'made_call',
  'call_fuck',
  'fuck_useless',
  'useless_storm',
  'storm_spend',
  'spend_night',
  'night_withat',
  'withat_god',
  'god_know',
  'marri_husband_year',
  'husband_year_ive',
  'year_ive_never',
  'ive_never_marri',
  'never_marri_marri',
  'marri_marri_twice',
  'marri_twice_kid',
  'twice_kid_request',
  'kid_request_financ',
  'request_financ_split',
  'financ_split_fine',
  'split_fine_see',
  'fine_see_blow',
  'see_blow_money',
  'blow_money_frusrtat',
  'money_frusrtat_say',
  'frusrtat_say_kid',
  'say_kid_commit',
  'kid_commit_provid',
  'commit_provid_think',
  'provid_think_kid',
  'think_kid_would',
  'kid_would_need',
  'would_need_much',
  'need_much_money',
  'much_money_live',
  'money_live_like',
  'live_like_kid',
  'like_kid_bank',
  'kid_bank_account',
  'bank_account_alway',
  'account_alway_almost',
  'alway_almost_empti',
  'almost_empti_whilea',
  'empti_whilea_mine',
  'whilea_mine_take',
  'mine_take_turn',
  'take_turn_pay',
  'turn_pay_daili',
  'pay_daili_expens',
  'daili_expens_stuff',
  'expens_stuff_late',
  'stuff_late_struggl',
  'late_struggl_money',
  'struggl_money_borrow',
  'money_borrow_number',
  'borrow_number_peopl',
  'number_peopl_includ',
  'peopl_includ_brother',
  'includ_brother_week',
  'brother_week_ago',
  'week_ago_seem',
  'ago_seem_desper',
  'seem_desper_money',
  'desper_money_ask',
  'money_ask_deal',
  'ask_deal_said',
  'deal_said_need',
  'said_need_money',
  'need_money_kid',
  'money_kid_seem',
  'kid_seem_fishi',
  'seem_fishi_sinc',
  'fishi_sinc_kid',
  'sinc_kid_realli',
  'kid_realli_need',
  'realli_need_much',
  'need_much_money',
  'much_money_expens',
  'money_expens_eldest',
  'expens_eldest_came',
  'eldest_came_ask',
  'came_ask_borrow',
  'ask_borrow_pull',
  'borrow_pull_account',
  'pull_account_tri',
  'account_tri_ask',
  'tri_ask_need',
  'ask_need_money',
  'need_money_said',
  'money_said_none',
  'said_none_busi',
  'none_busi_insist',
  'busi_insist_hell',
  'insist_hell_return',
  'hell_return_asap',
  'return_asap_said',
  'asap_said_okay',
  'said_okay_condit',
  'okay_condit_sign',
  'condit_sign_contract',
  'sign_contract_state',
  'contract_state_hell',
  'state_hell_return',
  'hell_return_money',
  'return_money_full',
  'money_full_act',
  'full_act_shock',
  'act_shock_offend',
  'shock_offend_went',
  'offend_went_trust',
  'went_trust_word',
  'trust_word_told',
  'word_told_got',
  'told_got_one',
  'got_one_condit',
  'one_condit_kept',
  'condit_kept_rant',
  'kept_rant_im',
  'rant_im_refus',
  'im_refus_help',
  'refus_help_make',
  'help_make_situat',
  'make_situat_difficult',
  'situat_difficult_instead',
  'difficult_instead_co-oper',
  'instead_co-oper_insist',
  'co-oper_insist_contract',
  'insist_contract_sign',
  'contract_sign_even',
  'sign_even_pull',
  'even_pull_penni',
  'pull_penni_morn',
  'penni_morn_told',
  'morn_told_one',
  'told_one_time',
  'one_time_blew',
  'time_blew_said',
  'blew_said_famili',
  'said_famili_asham',
  'famili_asham_involv',
  'asham_involv_court',
  'involv_court_lawyer',
  'court_lawyer_famili',
  'lawyer_famili_left',
  'famili_left_hous',
  'left_hous_upset',
  'hous_upset_respond',
  'upset_respond_call',
  'respond_call_yet',
  'call_yet_aita',
  'yet_aita_stand',
  'aita_stand_ground',
  'stand_ground_condit',
  'ground_condit_*',
  'condit_*_*',
  '*_*_updat',
  '*_updat_*',
  'updat_*_weve',
  '*_weve_talk',
  'weve_talk_got',
  'talk_got_home',
  'got_home_tri',
  'home_tri_press',
  'tri_press_tell',
  'press_tell_need',
  'tell_need_money',
  'need_money_gave',
  'money_gave_attitud',
  'gave_attitud_said',
  'attitud_said_worri',
  'said_worri_still',
  'worri_still_stood',
  'still_stood_condit',
  'stood_condit_made',
  'condit_made_call',
  'made_call_fuck',
  'call_fuck_useless',
  'fuck_useless_storm',
  'useless_storm_spend',
  'storm_spend_night',
  'spend_night_withat',
  'night_withat_god',
  'withat_god_know'],
 ['ill',
  'prefac',
  'say',
  'widow',
  'kid',
  'recent',
  'got',
  'back',
  'work',
  'sinc',
  'work',
  'nightshift',
  'get',
  'kid',
  'babysitt',
  'theyr',
  'school',
  'day',
  'sister',
  'stay',
  'abl',
  'find',
  'babysitt',
  'help',
  'co',
  'worker',
  'actual',
  'theyr',
  'relat',
  'thing',
  'go',
  'pretti',
  'well',
  'except',
  'day',
  'ago',
  'babysitt',
  'call',
  'work',
  'tell',
  'year',
  'old',
  'daughter',
  'broke',
  'glass',
  'got',
  'home',
  'heard',
  'side',
  'stori',
  'came',
  'conclus',
  'fact',
  'accid',
  'babysitt',
  'said',
  'daughter',
  'broke',
  'intent',
  'refus',
  'let',
  'outsid',
  'late',
  'even',
  'ask',
  'year',
  'old',
  'daughter',
  'said',
  'babysitt',
  'stori',
  'accur',
  'sinc',
  'sister',
  'beef',
  'figur',
  'lie',
  'set',
  'sister',
  'year',
  'old',
  'daughter',
  'cri',
  'said',
  'mean',
  'accid',
  'apolog',
  'babysitt',
  'misunderstand',
  'insist',
  'misunderstand',
  'ask',
  'pay',
  'pair',
  'new',
  'glass',
  'taken',
  'aback',
  'request',
  'told',
  'thought',
  'talk',
  'roll',
  'accid',
  'insist',
  'accid',
  'apolog',
  'refus',
  'said',
  'unfair',
  'expect',
  'pay',
  'especi',
  'sinc',
  'pay',
  'attent',
  'keep',
  'glass',
  'safe',
  'regardless',
  'wether',
  'accid',
  'babysitt',
  'argu',
  'start',
  'cri',
  'swear',
  'daughter',
  'broke',
  'get',
  'back',
  'year',
  'old',
  'daughter',
  'side',
  'year',
  'old',
  'said',
  'side',
  'babysitt',
  'benefit',
  'girl',
  'start',
  'fight',
  'end',
  'tell',
  'babysitt',
  'leav',
  'got',
  'co',
  'worker',
  'involv',
  'said',
  'take',
  'respons',
  'pay',
  'babysitt',
  'new',
  'glass',
  'sinc',
  'afford',
  'broke',
  'colleg',
  'student',
  'need',
  'glass',
  'apolog',
  'refus',
  'pay',
  'co',
  'worker',
  'got',
  'upset',
  'shame',
  'condon',
  'younger',
  'daughter',
  'action',
  'treat',
  'babysitt',
  'poorli',
  'victim',
  'situat',
  'day',
  'babysitt',
  'still',
  'want',
  'pay',
  'new',
  'glass',
  'feel',
  'like',
  'tri',
  'use',
  'fact',
  'im',
  'dire',
  'need',
  'help',
  'hope',
  'get',
  'extra',
  'money',
  'pocket',
  'ill_prefac',
  'prefac_say',
  'say_widow',
  'widow_kid',
  'kid_recent',
  'recent_got',
  'got_back',
  'back_work',
  'work_sinc',
  'sinc_work',
  'work_nightshift',
  'nightshift_get',
  'get_kid',
  'kid_babysitt',
  'babysitt_theyr',
  'theyr_school',
  'school_day',
  'day_sister',
  'sister_stay',
  'stay_abl',
  'abl_find',
  'find_babysitt',
  'babysitt_help',
  'help_co',
  'co_worker',
  'worker_actual',
  'actual_theyr',
  'theyr_relat',
  'relat_thing',
  'thing_go',
  'go_pretti',
  'pretti_well',
  'well_except',
  'except_day',
  'day_ago',
  'ago_babysitt',
  'babysitt_call',
  'call_work',
  'work_tell',
  'tell_year',
  'year_old',
  'old_daughter',
  'daughter_broke',
  'broke_glass',
  'glass_got',
  'got_home',
  'home_heard',
  'heard_side',
  'side_stori',
  'stori_came',
  'came_conclus',
  'conclus_fact',
  'fact_accid',
  'accid_babysitt',
  'babysitt_said',
  'said_daughter',
  'daughter_broke',
  'broke_intent',
  'intent_refus',
  'refus_let',
  'let_outsid',
  'outsid_late',
  'late_even',
  'even_ask',
  'ask_year',
  'year_old',
  'old_daughter',
  'daughter_said',
  'said_babysitt',
  'babysitt_stori',
  'stori_accur',
  'accur_sinc',
  'sinc_sister',
  'sister_beef',
  'beef_figur',
  'figur_lie',
  'lie_set',
  'set_sister',
  'sister_year',
  'year_old',
  'old_daughter',
  'daughter_cri',
  'cri_said',
  'said_mean',
  'mean_accid',
  'accid_apolog',
  'apolog_babysitt',
  'babysitt_misunderstand',
  'misunderstand_insist',
  'insist_misunderstand',
  'misunderstand_ask',
  'ask_pay',
  'pay_pair',
  'pair_new',
  'new_glass',
  'glass_taken',
  'taken_aback',
  'aback_request',
  'request_told',
  'told_thought',
  'thought_talk',
  'talk_roll',
  'roll_accid',
  'accid_insist',
  'insist_accid',
  'accid_apolog',
  'apolog_refus',
  'refus_said',
  'said_unfair',
  'unfair_expect',
  'expect_pay',
  'pay_especi',
  'especi_sinc',
  'sinc_pay',
  'pay_attent',
  'attent_keep',
  'keep_glass',
  'glass_safe',
  'safe_regardless',
  'regardless_wether',
  'wether_accid',
  'accid_babysitt',
  'babysitt_argu',
  'argu_start',
  'start_cri',
  'cri_swear',
  'swear_daughter',
  'daughter_broke',
  'broke_get',
  'get_back',
  'back_year',
  'year_old',
  'old_daughter',
  'daughter_side',
  'side_year',
  'year_old',
  'old_said',
  'said_side',
  'side_babysitt',
  'babysitt_benefit',
  'benefit_girl',
  'girl_start',
  'start_fight',
  'fight_end',
  'end_tell',
  'tell_babysitt',
  'babysitt_leav',
  'leav_got',
  'got_co',
  'co_worker',
  'worker_involv',
  'involv_said',
  'said_take',
  'take_respons',
  'respons_pay',
  'pay_babysitt',
  'babysitt_new',
  'new_glass',
  'glass_sinc',
  'sinc_afford',
  'afford_broke',
  'broke_colleg',
  'colleg_student',
  'student_need',
  'need_glass',
  'glass_apolog',
  'apolog_refus',
  'refus_pay',
  'pay_co',
  'co_worker',
  'worker_got',
  'got_upset',
  'upset_shame',
  'shame_condon',
  'condon_younger',
  'younger_daughter',
  'daughter_action',
  'action_treat',
  'treat_babysitt',
  'babysitt_poorli',
  'poorli_victim',
  'victim_situat',
  'situat_day',
  'day_babysitt',
  'babysitt_still',
  'still_want',
  'want_pay',
  'pay_new',
  'new_glass',
  'glass_feel',
  'feel_like',
  'like_tri',
  'tri_use',
  'use_fact',
  'fact_im',
  'im_dire',
  'dire_need',
  'need_help',
  'help_hope',
  'hope_get',
  'get_extra',
  'extra_money',
  'money_pocket',
  'ill_prefac_say',
  'prefac_say_widow',
  'say_widow_kid',
  'widow_kid_recent',
  'kid_recent_got',
  'recent_got_back',
  'got_back_work',
  'back_work_sinc',
  'work_sinc_work',
  'sinc_work_nightshift',
  'work_nightshift_get',
  'nightshift_get_kid',
  'get_kid_babysitt',
  'kid_babysitt_theyr',
  'babysitt_theyr_school',
  'theyr_school_day',
  'school_day_sister',
  'day_sister_stay',
  'sister_stay_abl',
  'stay_abl_find',
  'abl_find_babysitt',
  'find_babysitt_help',
  'babysitt_help_co',
  'help_co_worker',
  'co_worker_actual',
  'worker_actual_theyr',
  'actual_theyr_relat',
  'theyr_relat_thing',
  'relat_thing_go',
  'thing_go_pretti',
  'go_pretti_well',
  'pretti_well_except',
  'well_except_day',
  'except_day_ago',
  'day_ago_babysitt',
  'ago_babysitt_call',
  'babysitt_call_work',
  'call_work_tell',
  'work_tell_year',
  'tell_year_old',
  'year_old_daughter',
  'old_daughter_broke',
  'daughter_broke_glass',
  'broke_glass_got',
  'glass_got_home',
  'got_home_heard',
  'home_heard_side',
  'heard_side_stori',
  'side_stori_came',
  'stori_came_conclus',
  'came_conclus_fact',
  'conclus_fact_accid',
  'fact_accid_babysitt',
  'accid_babysitt_said',
  'babysitt_said_daughter',
  'said_daughter_broke',
  'daughter_broke_intent',
  'broke_intent_refus',
  'intent_refus_let',
  'refus_let_outsid',
  'let_outsid_late',
  'outsid_late_even',
  'late_even_ask',
  'even_ask_year',
  'ask_year_old',
  'year_old_daughter',
  'old_daughter_said',
  'daughter_said_babysitt',
  'said_babysitt_stori',
  'babysitt_stori_accur',
  'stori_accur_sinc',
  'accur_sinc_sister',
  'sinc_sister_beef',
  'sister_beef_figur',
  'beef_figur_lie',
  'figur_lie_set',
  'lie_set_sister',
  'set_sister_year',
  'sister_year_old',
  'year_old_daughter',
  'old_daughter_cri',
  'daughter_cri_said',
  'cri_said_mean',
  'said_mean_accid',
  'mean_accid_apolog',
  'accid_apolog_babysitt',
  'apolog_babysitt_misunderstand',
  'babysitt_misunderstand_insist',
  'misunderstand_insist_misunderstand',
  'insist_misunderstand_ask',
  'misunderstand_ask_pay',
  'ask_pay_pair',
  'pay_pair_new',
  'pair_new_glass',
  'new_glass_taken',
  'glass_taken_aback',
  'taken_aback_request',
  'aback_request_told',
  'request_told_thought',
  'told_thought_talk',
  'thought_talk_roll',
  'talk_roll_accid',
  'roll_accid_insist',
  'accid_insist_accid',
  'insist_accid_apolog',
  'accid_apolog_refus',
  'apolog_refus_said',
  'refus_said_unfair',
  'said_unfair_expect',
  'unfair_expect_pay',
  'expect_pay_especi',
  'pay_especi_sinc',
  'especi_sinc_pay',
  'sinc_pay_attent',
  'pay_attent_keep',
  'attent_keep_glass',
  'keep_glass_safe',
  'glass_safe_regardless',
  'safe_regardless_wether',
  'regardless_wether_accid',
  'wether_accid_babysitt',
  'accid_babysitt_argu',
  'babysitt_argu_start',
  'argu_start_cri',
  'start_cri_swear',
  'cri_swear_daughter',
  'swear_daughter_broke',
  'daughter_broke_get',
  'broke_get_back',
  'get_back_year',
  'back_year_old',
  'year_old_daughter',
  'old_daughter_side',
  'daughter_side_year',
  'side_year_old',
  'year_old_said',
  'old_said_side',
  'said_side_babysitt',
  'side_babysitt_benefit',
  'babysitt_benefit_girl',
  'benefit_girl_start',
  'girl_start_fight',
  'start_fight_end',
  'fight_end_tell',
  'end_tell_babysitt',
  'tell_babysitt_leav',
  'babysitt_leav_got',
  'leav_got_co',
  'got_co_worker',
  'co_worker_involv',
  'worker_involv_said',
  'involv_said_take',
  'said_take_respons',
  'take_respons_pay',
  'respons_pay_babysitt',
  'pay_babysitt_new',
  'babysitt_new_glass',
  'new_glass_sinc',
  'glass_sinc_afford',
  'sinc_afford_broke',
  'afford_broke_colleg',
  'broke_colleg_student',
  'colleg_student_need',
  'student_need_glass',
  'need_glass_apolog',
  'glass_apolog_refus',
  'apolog_refus_pay',
  'refus_pay_co',
  'pay_co_worker',
  'co_worker_got',
  'worker_got_upset',
  'got_upset_shame',
  'upset_shame_condon',
  'shame_condon_younger',
  'condon_younger_daughter',
  'younger_daughter_action',
  'daughter_action_treat',
  'action_treat_babysitt',
  'treat_babysitt_poorli',
  'babysitt_poorli_victim',
  'poorli_victim_situat',
  'victim_situat_day',
  'situat_day_babysitt',
  'day_babysitt_still',
  'babysitt_still_want',
  'still_want_pay',
  'want_pay_new',
  'pay_new_glass',
  'new_glass_feel',
  'glass_feel_like',
  'feel_like_tri',
  'like_tri_use',
  'tri_use_fact',
  'use_fact_im',
  'fact_im_dire',
  'im_dire_need',
  'dire_need_help',
  'need_help_hope',
  'help_hope_get',
  'hope_get_extra',
  'get_extra_money',
  'extra_money_pocket'],
 ['five',
  'month',
  'ago',
  'struck',
  'agreement',
  'roommat',
  'husband',
  'live',
  'two',
  'peopl',
  'pretti',
  'small',
  'fridg',
  'never',
  'room',
  'anyth',
  'alway',
  'two',
  'household',
  'worth',
  'ingredi',
  'stock',
  'plu',
  'get',
  'pretti',
  'annoy',
  'two',
  'set',
  'peopl',
  'fight',
  'realli',
  'kitchen',
  'everi',
  'day',
  'time',
  'cook',
  'dinner',
  'propos',
  'deal',
  'everyon',
  'contribut',
  'commun',
  'dinner',
  'budget',
  'would',
  'cook',
  'dinner',
  'four',
  'us',
  'everi',
  'day',
  'im',
  'great',
  'economis',
  'cook',
  'low',
  'budget',
  'toot',
  'horn',
  'anyth',
  'cook',
  'huge',
  'hobbi',
  'mine',
  'feel',
  'confid',
  'say',
  'im',
  'shabbi',
  'either',
  'like',
  'cook',
  'wide',
  'rang',
  'food',
  'someth',
  'husband',
  'love',
  'exampl',
  'japanese-styl',
  'ramen',
  'chines',
  'brais',
  'pork',
  'rice',
  'moroccan',
  'curri',
  'shakshuka',
  'pasta',
  'salad',
  'grill',
  'fish',
  'roast',
  'veget',
  'authent',
  'italian',
  'carbonara',
  'thing',
  'might',
  'show',
  'dinner',
  'tabl',
  'cook',
  'thing',
  'went',
  'well',
  'coupl',
  'month',
  'roommat',
  'start',
  'make',
  'request',
  'fine',
  'sometim',
  'would',
  'even',
  'ask',
  'idea',
  'cook',
  'restrict',
  'came',
  'came',
  'came',
  'kept',
  'pile',
  'list',
  'pasta',
  'curri',
  'rosemari',
  'thyme',
  'oregano',
  'provinci',
  'herb',
  'oliv',
  'asian',
  'noodl',
  'soy',
  'sauc',
  'oyster',
  'sauc',
  'peanut-bas',
  'sauc',
  'chickpea',
  'lamb',
  'pesto',
  'basmati',
  'rice',
  'pork',
  'belli',
  'sun-dri',
  'tomato',
  'szechuan',
  'pepper',
  'szechuan',
  'pepper',
  'oil',
  'vinegar',
  'balsam',
  'couscou',
  'shrimp',
  'fennel',
  'garam',
  'masala',
  'sugar',
  'low',
  'salt',
  'sure',
  'plenti',
  'forgot',
  'would',
  'definit',
  'mention',
  'use',
  'like',
  'adventur',
  'cook',
  'got',
  'realli',
  'realli',
  'tire',
  'limit',
  'honestli',
  'felt',
  'like',
  'hand',
  'new',
  'restrict',
  'everi',
  'day',
  'stop',
  'cook',
  'went',
  'back',
  'cook',
  'husband',
  'roommat',
  'pretti',
  'upset',
  'im',
  'cook',
  'anymor',
  'start',
  'hint',
  'would',
  'like',
  'cook',
  'say',
  'asshol',
  'edit',
  'move',
  'week',
  'tomorrow',
  'buy',
  'applianc',
  'rent',
  'place',
  'short',
  'term',
  'wait',
  'close',
  'hous',
  'five_month',
  'month_ago',
  'ago_struck',
  'struck_agreement',
  'agreement_roommat',
  'roommat_husband',
  'husband_live',
  'live_two',
  'two_peopl',
  'peopl_pretti',
  'pretti_small',
  'small_fridg',
  'fridg_never',
  'never_room',
  'room_anyth',
  'anyth_alway',
  'alway_two',
  'two_household',
  'household_worth',
  'worth_ingredi',
  'ingredi_stock',
  'stock_plu',
  'plu_get',
  'get_pretti',
  'pretti_annoy',
  'annoy_two',
  'two_set',
  'set_peopl',
  'peopl_fight',
  'fight_realli',
  'realli_kitchen',
  'kitchen_everi',
  'everi_day',
  'day_time',
  'time_cook',
  'cook_dinner',
  'dinner_propos',
  'propos_deal',
  'deal_everyon',
  'everyon_contribut',
  'contribut_commun',
  'commun_dinner',
  'dinner_budget',
  'budget_would',
  'would_cook',
  'cook_dinner',
  'dinner_four',
  'four_us',
  'us_everi',
  'everi_day',
  'day_im',
  'im_great',
  'great_economis',
  'economis_cook',
  'cook_low',
  'low_budget',
  'budget_toot',
  'toot_horn',
  'horn_anyth',
  'anyth_cook',
  'cook_huge',
  'huge_hobbi',
  'hobbi_mine',
  'mine_feel',
  'feel_confid',
  'confid_say',
  'say_im',
  'im_shabbi',
  'shabbi_either',
  'either_like',
  'like_cook',
  'cook_wide',
  'wide_rang',
  'rang_food',
  'food_someth',
  'someth_husband',
  'husband_love',
  'love_exampl',
  'exampl_japanese-styl',
  'japanese-styl_ramen',
  'ramen_chines',
  'chines_brais',
  'brais_pork',
  'pork_rice',
  'rice_moroccan',
  'moroccan_curri',
  'curri_shakshuka',
  'shakshuka_pasta',
  'pasta_salad',
  'salad_grill',
  'grill_fish',
  'fish_roast',
  'roast_veget',
  'veget_authent',
  'authent_italian',
  'italian_carbonara',
  'carbonara_thing',
  'thing_might',
  'might_show',
  'show_dinner',
  'dinner_tabl',
  'tabl_cook',
  'cook_thing',
  'thing_went',
  'went_well',
  'well_coupl',
  'coupl_month',
  'month_roommat',
  'roommat_start',
  'start_make',
  'make_request',
  'request_fine',
  'fine_sometim',
  'sometim_would',
  'would_even',
  'even_ask',
  'ask_idea',
  'idea_cook',
  'cook_restrict',
  'restrict_came',
  'came_came',
  'came_came',
  'came_kept',
  'kept_pile',
  'pile_list',
  'list_pasta',
  'pasta_curri',
  'curri_rosemari',
  'rosemari_thyme',
  'thyme_oregano',
  'oregano_provinci',
  'provinci_herb',
  'herb_oliv',
  'oliv_asian',
  'asian_noodl',
  'noodl_soy',
  'soy_sauc',
  'sauc_oyster',
  'oyster_sauc',
  'sauc_peanut-bas',
  'peanut-bas_sauc',
  'sauc_chickpea',
  'chickpea_lamb',
  'lamb_pesto',
  'pesto_basmati',
  'basmati_rice',
  'rice_pork',
  'pork_belli',
  'belli_sun-dri',
  'sun-dri_tomato',
  'tomato_szechuan',
  'szechuan_pepper',
  'pepper_szechuan',
  'szechuan_pepper',
  'pepper_oil',
  'oil_vinegar',
  'vinegar_balsam',
  'balsam_couscou',
  'couscou_shrimp',
  'shrimp_fennel',
  'fennel_garam',
  'garam_masala',
  'masala_sugar',
  'sugar_low',
  'low_salt',
  'salt_sure',
  'sure_plenti',
  'plenti_forgot',
  'forgot_would',
  'would_definit',
  'definit_mention',
  'mention_use',
  'use_like',
  'like_adventur',
  'adventur_cook',
  'cook_got',
  'got_realli',
  'realli_realli',
  'realli_tire',
  'tire_limit',
  'limit_honestli',
  'honestli_felt',
  'felt_like',
  'like_hand',
  'hand_new',
  'new_restrict',
  'restrict_everi',
  'everi_day',
  'day_stop',
  'stop_cook',
  'cook_went',
  'went_back',
  'back_cook',
  'cook_husband',
  'husband_roommat',
  'roommat_pretti',
  'pretti_upset',
  'upset_im',
  'im_cook',
  'cook_anymor',
  'anymor_start',
  'start_hint',
  'hint_would',
  'would_like',
  'like_cook',
  'cook_say',
  'say_asshol',
  'asshol_edit',
  'edit_move',
  'move_week',
  'week_tomorrow',
  'tomorrow_buy',
  'buy_applianc',
  'applianc_rent',
  'rent_place',
  'place_short',
  'short_term',
  'term_wait',
  'wait_close',
  'close_hous',
  'five_month_ago',
  'month_ago_struck',
  'ago_struck_agreement',
  'struck_agreement_roommat',
  'agreement_roommat_husband',
  'roommat_husband_live',
  'husband_live_two',
  'live_two_peopl',
  'two_peopl_pretti',
  'peopl_pretti_small',
  'pretti_small_fridg',
  'small_fridg_never',
  'fridg_never_room',
  'never_room_anyth',
  'room_anyth_alway',
  'anyth_alway_two',
  'alway_two_household',
  'two_household_worth',
  'household_worth_ingredi',
  'worth_ingredi_stock',
  'ingredi_stock_plu',
  'stock_plu_get',
  'plu_get_pretti',
  'get_pretti_annoy',
  'pretti_annoy_two',
  'annoy_two_set',
  'two_set_peopl',
  'set_peopl_fight',
  'peopl_fight_realli',
  'fight_realli_kitchen',
  'realli_kitchen_everi',
  'kitchen_everi_day',
  'everi_day_time',
  'day_time_cook',
  'time_cook_dinner',
  'cook_dinner_propos',
  'dinner_propos_deal',
  'propos_deal_everyon',
  'deal_everyon_contribut',
  'everyon_contribut_commun',
  'contribut_commun_dinner',
  'commun_dinner_budget',
  'dinner_budget_would',
  'budget_would_cook',
  'would_cook_dinner',
  'cook_dinner_four',
  'dinner_four_us',
  'four_us_everi',
  'us_everi_day',
  'everi_day_im',
  'day_im_great',
  'im_great_economis',
  'great_economis_cook',
  'economis_cook_low',
  'cook_low_budget',
  'low_budget_toot',
  'budget_toot_horn',
  'toot_horn_anyth',
  'horn_anyth_cook',
  'anyth_cook_huge',
  'cook_huge_hobbi',
  'huge_hobbi_mine',
  'hobbi_mine_feel',
  'mine_feel_confid',
  'feel_confid_say',
  'confid_say_im',
  'say_im_shabbi',
  'im_shabbi_either',
  'shabbi_either_like',
  'either_like_cook',
  'like_cook_wide',
  'cook_wide_rang',
  'wide_rang_food',
  'rang_food_someth',
  'food_someth_husband',
  'someth_husband_love',
  'husband_love_exampl',
  'love_exampl_japanese-styl',
  'exampl_japanese-styl_ramen',
  'japanese-styl_ramen_chines',
  'ramen_chines_brais',
  'chines_brais_pork',
  'brais_pork_rice',
  'pork_rice_moroccan',
  'rice_moroccan_curri',
  'moroccan_curri_shakshuka',
  'curri_shakshuka_pasta',
  'shakshuka_pasta_salad',
  'pasta_salad_grill',
  'salad_grill_fish',
  'grill_fish_roast',
  'fish_roast_veget',
  'roast_veget_authent',
  'veget_authent_italian',
  'authent_italian_carbonara',
  'italian_carbonara_thing',
  'carbonara_thing_might',
  'thing_might_show',
  'might_show_dinner',
  'show_dinner_tabl',
  'dinner_tabl_cook',
  'tabl_cook_thing',
  'cook_thing_went',
  'thing_went_well',
  'went_well_coupl',
  'well_coupl_month',
  'coupl_month_roommat',
  'month_roommat_start',
  'roommat_start_make',
  'start_make_request',
  'make_request_fine',
  'request_fine_sometim',
  'fine_sometim_would',
  'sometim_would_even',
  'would_even_ask',
  'even_ask_idea',
  'ask_idea_cook',
  'idea_cook_restrict',
  'cook_restrict_came',
  'restrict_came_came',
  'came_came_came',
  'came_came_kept',
  'came_kept_pile',
  'kept_pile_list',
  'pile_list_pasta',
  'list_pasta_curri',
  'pasta_curri_rosemari',
  'curri_rosemari_thyme',
  'rosemari_thyme_oregano',
  'thyme_oregano_provinci',
  'oregano_provinci_herb',
  'provinci_herb_oliv',
  'herb_oliv_asian',
  'oliv_asian_noodl',
  'asian_noodl_soy',
  'noodl_soy_sauc',
  'soy_sauc_oyster',
  'sauc_oyster_sauc',
  'oyster_sauc_peanut-bas',
  'sauc_peanut-bas_sauc',
  'peanut-bas_sauc_chickpea',
  'sauc_chickpea_lamb',
  'chickpea_lamb_pesto',
  'lamb_pesto_basmati',
  'pesto_basmati_rice',
  'basmati_rice_pork',
  'rice_pork_belli',
  'pork_belli_sun-dri',
  'belli_sun-dri_tomato',
  'sun-dri_tomato_szechuan',
  'tomato_szechuan_pepper',
  'szechuan_pepper_szechuan',
  'pepper_szechuan_pepper',
  'szechuan_pepper_oil',
  'pepper_oil_vinegar',
  'oil_vinegar_balsam',
  'vinegar_balsam_couscou',
  'balsam_couscou_shrimp',
  'couscou_shrimp_fennel',
  'shrimp_fennel_garam',
  'fennel_garam_masala',
  'garam_masala_sugar',
  'masala_sugar_low',
  'sugar_low_salt',
  'low_salt_sure',
  'salt_sure_plenti',
  'sure_plenti_forgot',
  'plenti_forgot_would',
  'forgot_would_definit',
  'would_definit_mention',
  'definit_mention_use',
  'mention_use_like',
  'use_like_adventur',
  'like_adventur_cook',
  'adventur_cook_got',
  'cook_got_realli',
  'got_realli_realli',
  'realli_realli_tire',
  'realli_tire_limit',
  'tire_limit_honestli',
  'limit_honestli_felt',
  'honestli_felt_like',
  'felt_like_hand',
  'like_hand_new',
  'hand_new_restrict',
  'new_restrict_everi',
  'restrict_everi_day',
  'everi_day_stop',
  'day_stop_cook',
  'stop_cook_went',
  'cook_went_back',
  'went_back_cook',
  'back_cook_husband',
  'cook_husband_roommat',
  'husband_roommat_pretti',
  'roommat_pretti_upset',
  'pretti_upset_im',
  'upset_im_cook',
  'im_cook_anymor',
  'cook_anymor_start',
  'anymor_start_hint',
  'start_hint_would',
  'hint_would_like',
  'would_like_cook',
  'like_cook_say',
  'cook_say_asshol',
  'say_asshol_edit',
  'asshol_edit_move',
  'edit_move_week',
  'move_week_tomorrow',
  'week_tomorrow_buy',
  'tomorrow_buy_applianc',
  'buy_applianc_rent',
  'applianc_rent_place',
  'rent_place_short',
  'place_short_term',
  'short_term_wait',
  'term_wait_close',
  'wait_close_hous'],
 ['let',
  'prefac',
  'say',
  'struggl',
  'alcohol',
  'year',
  'difficult',
  'period',
  'life',
  'im',
  'year',
  'sober',
  'much',
  'better',
  'life',
  'got',
  'marri',
  'wife',
  'last',
  'year',
  'stepson',
  'jake',
  'jake',
  'realli',
  'close',
  'cordial',
  'relationship',
  'dad',
  'pictur',
  'pretti',
  'clear',
  'never',
  'see',
  'dad',
  'jake',
  'done',
  'number',
  'thing',
  'past',
  'caus',
  'us',
  'fight',
  'like',
  'get',
  'troubl',
  'make',
  'pay',
  'damag',
  'damag',
  'thing',
  'pay',
  'also',
  'constantli',
  'mock',
  'soberti',
  'everi',
  'chanc',
  'get',
  'issu',
  'got',
  'work',
  'time',
  'mock',
  'pretti',
  'much',
  'still',
  'told',
  'told',
  'wife',
  'make',
  'feel',
  'got',
  'nowher',
  'father',
  'day',
  'come',
  'wife',
  'famili',
  'came',
  'celebr',
  'us',
  'dinner',
  'jake',
  'surpris',
  'gift',
  'say',
  'father',
  'day',
  'thought',
  'sweet',
  'complet',
  'charact',
  'get',
  'anyth',
  'howev',
  'way',
  'smug',
  'smile',
  'feel',
  'comfort',
  'anywayi',
  'open',
  'beholdther',
  'flask',
  'glassfrankli',
  'felt',
  'like',
  'made',
  'fun',
  'mock',
  'one',
  'biggest',
  'difficult',
  'struggl',
  'entir',
  'life',
  'frozei',
  'know',
  'say',
  'act',
  'sinc',
  'everyon',
  'liter',
  'watch',
  'jake',
  'giggl',
  'hard',
  'got',
  'piss',
  'put',
  'everyth',
  'back',
  'grab',
  'box',
  'told',
  'belong',
  'hous',
  'open',
  'door',
  'walk',
  'trash',
  'threw',
  'entir',
  'thing',
  'wife',
  'mom',
  'stepson',
  'door',
  'watch',
  'jake',
  'went',
  'downstair',
  'wife',
  'start',
  'argu',
  'got',
  'argument',
  'parent',
  'left',
  'wife',
  'got',
  'upset',
  'say',
  'react',
  'childish',
  'jake',
  'teas',
  'loosen',
  'stop',
  'dramat',
  'refus',
  'get',
  'engag',
  'much',
  'tension',
  'hous',
  'silenc',
  'in-law',
  'aita',
  'handl',
  'let_prefac',
  'prefac_say',
  'say_struggl',
  'struggl_alcohol',
  'alcohol_year',
  'year_difficult',
  'difficult_period',
  'period_life',
  'life_im',
  'im_year',
  'year_sober',
  'sober_much',
  'much_better',
  'better_life',
  'life_got',
  'got_marri',
  'marri_wife',
  'wife_last',
  'last_year',
  'year_stepson',
  'stepson_jake',
  'jake_jake',
  'jake_realli',
  'realli_close',
  'close_cordial',
  'cordial_relationship',
  'relationship_dad',
  'dad_pictur',
  'pictur_pretti',
  'pretti_clear',
  'clear_never',
  'never_see',
  'see_dad',
  'dad_jake',
  'jake_done',
  'done_number',
  'number_thing',
  'thing_past',
  'past_caus',
  'caus_us',
  'us_fight',
  'fight_like',
  'like_get',
  'get_troubl',
  'troubl_make',
  'make_pay',
  'pay_damag',
  'damag_damag',
  'damag_thing',
  'thing_pay',
  'pay_also',
  'also_constantli',
  'constantli_mock',
  'mock_soberti',
  'soberti_everi',
  'everi_chanc',
  'chanc_get',
  'get_issu',
  'issu_got',
  'got_work',
  'work_time',
  'time_mock',
  'mock_pretti',
  'pretti_much',
  'much_still',
  'still_told',
  'told_told',
  'told_wife',
  'wife_make',
  'make_feel',
  'feel_got',
  'got_nowher',
  'nowher_father',
  'father_day',
  'day_come',
  'come_wife',
  'wife_famili',
  'famili_came',
  'came_celebr',
  'celebr_us',
  'us_dinner',
  'dinner_jake',
  'jake_surpris',
  'surpris_gift',
  'gift_say',
  'say_father',
  'father_day',
  'day_thought',
  'thought_sweet',
  'sweet_complet',
  'complet_charact',
  'charact_get',
  'get_anyth',
  'anyth_howev',
  'howev_way',
  'way_smug',
  'smug_smile',
  'smile_feel',
  'feel_comfort',
  'comfort_anywayi',
  'anywayi_open',
  'open_beholdther',
  'beholdther_flask',
  'flask_glassfrankli',
  'glassfrankli_felt',
  'felt_like',
  'like_made',
  'made_fun',
  'fun_mock',
  'mock_one',
  'one_biggest',
  'biggest_difficult',
  'difficult_struggl',
  'struggl_entir',
  'entir_life',
  'life_frozei',
  'frozei_know',
  'know_say',
  'say_act',
  'act_sinc',
  'sinc_everyon',
  'everyon_liter',
  'liter_watch',
  'watch_jake',
  'jake_giggl',
  'giggl_hard',
  'hard_got',
  'got_piss',
  'piss_put',
  'put_everyth',
  'everyth_back',
  'back_grab',
  'grab_box',
  'box_told',
  'told_belong',
  'belong_hous',
  'hous_open',
  'open_door',
  'door_walk',
  'walk_trash',
  'trash_threw',
  'threw_entir',
  'entir_thing',
  'thing_wife',
  'wife_mom',
  'mom_stepson',
  'stepson_door',
  'door_watch',
  'watch_jake',
  'jake_went',
  'went_downstair',
  'downstair_wife',
  'wife_start',
  'start_argu',
  'argu_got',
  'got_argument',
  'argument_parent',
  'parent_left',
  'left_wife',
  'wife_got',
  'got_upset',
  'upset_say',
  'say_react',
  'react_childish',
  'childish_jake',
  'jake_teas',
  'teas_loosen',
  'loosen_stop',
  'stop_dramat',
  'dramat_refus',
  'refus_get',
  'get_engag',
  'engag_much',
  'much_tension',
  'tension_hous',
  'hous_silenc',
  'silenc_in-law',
  'in-law_aita',
  'aita_handl',
  'let_prefac_say',
  'prefac_say_struggl',
  'say_struggl_alcohol',
  'struggl_alcohol_year',
  'alcohol_year_difficult',
  'year_difficult_period',
  'difficult_period_life',
  'period_life_im',
  'life_im_year',
  'im_year_sober',
  'year_sober_much',
  'sober_much_better',
  'much_better_life',
  'better_life_got',
  'life_got_marri',
  'got_marri_wife',
  'marri_wife_last',
  'wife_last_year',
  'last_year_stepson',
  'year_stepson_jake',
  'stepson_jake_jake',
  'jake_jake_realli',
  'jake_realli_close',
  'realli_close_cordial',
  'close_cordial_relationship',
  'cordial_relationship_dad',
  'relationship_dad_pictur',
  'dad_pictur_pretti',
  'pictur_pretti_clear',
  'pretti_clear_never',
  'clear_never_see',
  'never_see_dad',
  'see_dad_jake',
  'dad_jake_done',
  'jake_done_number',
  'done_number_thing',
  'number_thing_past',
  'thing_past_caus',
  'past_caus_us',
  'caus_us_fight',
  'us_fight_like',
  'fight_like_get',
  'like_get_troubl',
  'get_troubl_make',
  'troubl_make_pay',
  'make_pay_damag',
  'pay_damag_damag',
  'damag_damag_thing',
  'damag_thing_pay',
  'thing_pay_also',
  'pay_also_constantli',
  'also_constantli_mock',
  'constantli_mock_soberti',
  'mock_soberti_everi',
  'soberti_everi_chanc',
  'everi_chanc_get',
  'chanc_get_issu',
  'get_issu_got',
  'issu_got_work',
  'got_work_time',
  'work_time_mock',
  'time_mock_pretti',
  'mock_pretti_much',
  'pretti_much_still',
  'much_still_told',
  'still_told_told',
  'told_told_wife',
  'told_wife_make',
  'wife_make_feel',
  'make_feel_got',
  'feel_got_nowher',
  'got_nowher_father',
  'nowher_father_day',
  'father_day_come',
  'day_come_wife',
  'come_wife_famili',
  'wife_famili_came',
  'famili_came_celebr',
  'came_celebr_us',
  'celebr_us_dinner',
  'us_dinner_jake',
  'dinner_jake_surpris',
  'jake_surpris_gift',
  'surpris_gift_say',
  'gift_say_father',
  'say_father_day',
  'father_day_thought',
  'day_thought_sweet',
  'thought_sweet_complet',
  'sweet_complet_charact',
  'complet_charact_get',
  'charact_get_anyth',
  'get_anyth_howev',
  'anyth_howev_way',
  'howev_way_smug',
  'way_smug_smile',
  'smug_smile_feel',
  'smile_feel_comfort',
  'feel_comfort_anywayi',
  'comfort_anywayi_open',
  'anywayi_open_beholdther',
  'open_beholdther_flask',
  'beholdther_flask_glassfrankli',
  'flask_glassfrankli_felt',
  'glassfrankli_felt_like',
  'felt_like_made',
  'like_made_fun',
  'made_fun_mock',
  'fun_mock_one',
  'mock_one_biggest',
  'one_biggest_difficult',
  'biggest_difficult_struggl',
  'difficult_struggl_entir',
  'struggl_entir_life',
  'entir_life_frozei',
  'life_frozei_know',
  'frozei_know_say',
  'know_say_act',
  'say_act_sinc',
  'act_sinc_everyon',
  'sinc_everyon_liter',
  'everyon_liter_watch',
  'liter_watch_jake',
  'watch_jake_giggl',
  'jake_giggl_hard',
  'giggl_hard_got',
  'hard_got_piss',
  'got_piss_put',
  'piss_put_everyth',
  'put_everyth_back',
  'everyth_back_grab',
  'back_grab_box',
  'grab_box_told',
  'box_told_belong',
  'told_belong_hous',
  'belong_hous_open',
  'hous_open_door',
  'open_door_walk',
  'door_walk_trash',
  'walk_trash_threw',
  'trash_threw_entir',
  'threw_entir_thing',
  'entir_thing_wife',
  'thing_wife_mom',
  'wife_mom_stepson',
  'mom_stepson_door',
  'stepson_door_watch',
  'door_watch_jake',
  'watch_jake_went',
  'jake_went_downstair',
  'went_downstair_wife',
  'downstair_wife_start',
  'wife_start_argu',
  'start_argu_got',
  'argu_got_argument',
  'got_argument_parent',
  'argument_parent_left',
  'parent_left_wife',
  'left_wife_got',
  'wife_got_upset',
  'got_upset_say',
  'upset_say_react',
  'say_react_childish',
  'react_childish_jake',
  'childish_jake_teas',
  'jake_teas_loosen',
  'teas_loosen_stop',
  'loosen_stop_dramat',
  'stop_dramat_refus',
  'dramat_refus_get',
  'refus_get_engag',
  'get_engag_much',
  'engag_much_tension',
  'much_tension_hous',
  'tension_hous_silenc',
  'hous_silenc_in-law',
  'silenc_in-law_aita',
  'in-law_aita_handl'],
 ['complet',
  'treatment',
  'medic',
  'issu',
  'affect',
  'bodi',
  'gain',
  'weight',
  'due',
  'medic',
  'condit',
  'also',
  'medic',
  'none',
  'old',
  'cloth',
  'fit',
  'anymor',
  'bought',
  'new',
  'fit',
  'cloth',
  'husband',
  'birthday',
  'parti',
  'ask',
  'wear',
  'one',
  'old',
  'dress',
  'one',
  'favorit',
  'appeas',
  'said',
  'ye',
  'although',
  'feel',
  'comfort',
  'wear',
  'especi',
  'weight',
  'gain',
  'restaur',
  'famili',
  'friend',
  'arriv',
  'sister',
  'soon',
  'saw',
  'walk',
  'bust',
  'laughingh',
  'point',
  'dress',
  'go',
  'hyster',
  'say',
  'oh',
  'god',
  'felt',
  'incred',
  'mad',
  'especi',
  'start',
  'laugh',
  'well',
  'one',
  'friend',
  'start',
  'whistl',
  'mock',
  'tone',
  'turn',
  'around',
  'instantli',
  'walk',
  'sister',
  'follow',
  'went',
  'home',
  'cri',
  'littl',
  'kept',
  'call',
  'non',
  'stop',
  'came',
  'home',
  'start',
  'talk',
  'oversensit',
  'natur',
  'reaction',
  'upon',
  'see',
  'dress',
  'time',
  'said',
  'overreact',
  'made',
  'scene',
  'noth',
  'also',
  'said',
  'ruin',
  'birthay',
  'urg',
  'get',
  'therapi',
  'oversensit',
  'im',
  'inflict',
  'upon',
  'aita',
  'overreact',
  'upset',
  'refus',
  'even',
  'reciev',
  'gift',
  'edit',
  'need',
  'explain',
  'way',
  'laugh',
  'first',
  'start',
  'giggl',
  'tri',
  'cover',
  'mouth',
  'matter',
  'second',
  'burst',
  'laugh',
  'middl',
  'restaur',
  'guest',
  'confus',
  'mustv',
  'understood',
  'laugh',
  'join',
  'friend',
  'whistl',
  'mockingli',
  'repeatedli',
  'turn',
  'head',
  'like',
  'someth',
  'caught',
  'attent',
  'could',
  'overreact',
  'could',
  'get',
  'overwhelm',
  'joke',
  'laugh',
  'new',
  'come',
  'kind',
  'teas',
  'everyth',
  'even',
  'famili',
  'kid',
  'also',
  'also',
  'said',
  'caught',
  'guard',
  'blame',
  'reaction',
  'complet_treatment',
  'treatment_medic',
  'medic_issu',
  'issu_affect',
  'affect_bodi',
  'bodi_gain',
  'gain_weight',
  'weight_due',
  'due_medic',
  'medic_condit',
  'condit_also',
  'also_medic',
  'medic_none',
  'none_old',
  'old_cloth',
  'cloth_fit',
  'fit_anymor',
  'anymor_bought',
  'bought_new',
  'new_fit',
  'fit_cloth',
  'cloth_husband',
  'husband_birthday',
  'birthday_parti',
  'parti_ask',
  'ask_wear',
  'wear_one',
  'one_old',
  'old_dress',
  'dress_one',
  'one_favorit',
  'favorit_appeas',
  'appeas_said',
  'said_ye',
  'ye_although',
  'although_feel',
  'feel_comfort',
  'comfort_wear',
  'wear_especi',
  'especi_weight',
  'weight_gain',
  'gain_restaur',
  'restaur_famili',
  'famili_friend',
  'friend_arriv',
  'arriv_sister',
  'sister_soon',
  'soon_saw',
  'saw_walk',
  'walk_bust',
  'bust_laughingh',
  'laughingh_point',
  'point_dress',
  'dress_go',
  'go_hyster',
  'hyster_say',
  'say_oh',
  'oh_god',
  'god_felt',
  'felt_incred',
  'incred_mad',
  'mad_especi',
  'especi_start',
  'start_laugh',
  'laugh_well',
  'well_one',
  'one_friend',
  'friend_start',
  'start_whistl',
  'whistl_mock',
  'mock_tone',
  'tone_turn',
  'turn_around',
  'around_instantli',
  'instantli_walk',
  'walk_sister',
  'sister_follow',
  'follow_went',
  'went_home',
  'home_cri',
  'cri_littl',
  'littl_kept',
  'kept_call',
  'call_non',
  'non_stop',
  'stop_came',
  'came_home',
  'home_start',
  'start_talk',
  'talk_oversensit',
  'oversensit_natur',
  'natur_reaction',
  'reaction_upon',
  'upon_see',
  'see_dress',
  'dress_time',
  'time_said',
  'said_overreact',
  'overreact_made',
  'made_scene',
  'scene_noth',
  'noth_also',
  'also_said',
  'said_ruin',
  'ruin_birthay',
  'birthay_urg',
  'urg_get',
  'get_therapi',
  'therapi_oversensit',
  'oversensit_im',
  'im_inflict',
  'inflict_upon',
  'upon_aita',
  'aita_overreact',
  'overreact_upset',
  'upset_refus',
  'refus_even',
  'even_reciev',
  'reciev_gift',
  'gift_edit',
  'edit_need',
  'need_explain',
  'explain_way',
  'way_laugh',
  'laugh_first',
  'first_start',
  'start_giggl',
  'giggl_tri',
  'tri_cover',
  'cover_mouth',
  'mouth_matter',
  'matter_second',
  'second_burst',
  'burst_laugh',
  'laugh_middl',
  'middl_restaur',
  'restaur_guest',
  'guest_confus',
  'confus_mustv',
  'mustv_understood',
  'understood_laugh',
  'laugh_join',
  'join_friend',
  'friend_whistl',
  'whistl_mockingli',
  'mockingli_repeatedli',
  'repeatedli_turn',
  'turn_head',
  'head_like',
  'like_someth',
  'someth_caught',
  'caught_attent',
  'attent_could',
  'could_overreact',
  'overreact_could',
  'could_get',
  'get_overwhelm',
  'overwhelm_joke',
  'joke_laugh',
  'laugh_new',
  'new_come',
  'come_kind',
  'kind_teas',
  'teas_everyth',
  'everyth_even',
  'even_famili',
  'famili_kid',
  'kid_also',
  'also_also',
  'also_said',
  'said_caught',
  'caught_guard',
  'guard_blame',
  'blame_reaction',
  'complet_treatment_medic',
  'treatment_medic_issu',
  'medic_issu_affect',
  'issu_affect_bodi',
  'affect_bodi_gain',
  'bodi_gain_weight',
  'gain_weight_due',
  'weight_due_medic',
  'due_medic_condit',
  'medic_condit_also',
  'condit_also_medic',
  'also_medic_none',
  'medic_none_old',
  'none_old_cloth',
  'old_cloth_fit',
  'cloth_fit_anymor',
  'fit_anymor_bought',
  'anymor_bought_new',
  'bought_new_fit',
  'new_fit_cloth',
  'fit_cloth_husband',
  'cloth_husband_birthday',
  'husband_birthday_parti',
  'birthday_parti_ask',
  'parti_ask_wear',
  'ask_wear_one',
  'wear_one_old',
  'one_old_dress',
  'old_dress_one',
  'dress_one_favorit',
  'one_favorit_appeas',
  'favorit_appeas_said',
  'appeas_said_ye',
  'said_ye_although',
  'ye_although_feel',
  'although_feel_comfort',
  'feel_comfort_wear',
  'comfort_wear_especi',
  'wear_especi_weight',
  'especi_weight_gain',
  'weight_gain_restaur',
  'gain_restaur_famili',
  'restaur_famili_friend',
  'famili_friend_arriv',
  'friend_arriv_sister',
  'arriv_sister_soon',
  'sister_soon_saw',
  'soon_saw_walk',
  'saw_walk_bust',
  'walk_bust_laughingh',
  'bust_laughingh_point',
  'laughingh_point_dress',
  'point_dress_go',
  'dress_go_hyster',
  'go_hyster_say',
  'hyster_say_oh',
  'say_oh_god',
  'oh_god_felt',
  'god_felt_incred',
  'felt_incred_mad',
  'incred_mad_especi',
  'mad_especi_start',
  'especi_start_laugh',
  'start_laugh_well',
  'laugh_well_one',
  'well_one_friend',
  'one_friend_start',
  'friend_start_whistl',
  'start_whistl_mock',
  'whistl_mock_tone',
  'mock_tone_turn',
  'tone_turn_around',
  'turn_around_instantli',
  'around_instantli_walk',
  'instantli_walk_sister',
  'walk_sister_follow',
  'sister_follow_went',
  'follow_went_home',
  'went_home_cri',
  'home_cri_littl',
  'cri_littl_kept',
  'littl_kept_call',
  'kept_call_non',
  'call_non_stop',
  'non_stop_came',
  'stop_came_home',
  'came_home_start',
  'home_start_talk',
  'start_talk_oversensit',
  'talk_oversensit_natur',
  'oversensit_natur_reaction',
  'natur_reaction_upon',
  'reaction_upon_see',
  'upon_see_dress',
  'see_dress_time',
  'dress_time_said',
  'time_said_overreact',
  'said_overreact_made',
  'overreact_made_scene',
  'made_scene_noth',
  'scene_noth_also',
  'noth_also_said',
  'also_said_ruin',
  'said_ruin_birthay',
  'ruin_birthay_urg',
  'birthay_urg_get',
  'urg_get_therapi',
  'get_therapi_oversensit',
  'therapi_oversensit_im',
  'oversensit_im_inflict',
  'im_inflict_upon',
  'inflict_upon_aita',
  'upon_aita_overreact',
  'aita_overreact_upset',
  'overreact_upset_refus',
  'upset_refus_even',
  'refus_even_reciev',
  'even_reciev_gift',
  'reciev_gift_edit',
  'gift_edit_need',
  'edit_need_explain',
  'need_explain_way',
  'explain_way_laugh',
  'way_laugh_first',
  'laugh_first_start',
  'first_start_giggl',
  'start_giggl_tri',
  'giggl_tri_cover',
  'tri_cover_mouth',
  'cover_mouth_matter',
  'mouth_matter_second',
  'matter_second_burst',
  'second_burst_laugh',
  'burst_laugh_middl',
  'laugh_middl_restaur',
  'middl_restaur_guest',
  'restaur_guest_confus',
  'guest_confus_mustv',
  'confus_mustv_understood',
  'mustv_understood_laugh',
  'understood_laugh_join',
  'laugh_join_friend',
  'join_friend_whistl',
  'friend_whistl_mockingli',
  'whistl_mockingli_repeatedli',
  'mockingli_repeatedli_turn',
  'repeatedli_turn_head',
  'turn_head_like',
  'head_like_someth',
  'like_someth_caught',
  'someth_caught_attent',
  'caught_attent_could',
  'attent_could_overreact',
  'could_overreact_could',
  'overreact_could_get',
  'could_get_overwhelm',
  'get_overwhelm_joke',
  'overwhelm_joke_laugh',
  'joke_laugh_new',
  'laugh_new_come',
  'new_come_kind',
  'come_kind_teas',
  'kind_teas_everyth',
  'teas_everyth_even',
  'everyth_even_famili',
  'even_famili_kid',
  'famili_kid_also',
  'kid_also_also',
  'also_also_said',
  'also_said_caught',
  'said_caught_guard',
  'caught_guard_blame',
  'guard_blame_reaction'],
 ['daughter',
  'grade',
  'remot',
  'month',
  'ago',
  'physic',
  'school',
  'long',
  'recent',
  'told',
  'want',
  'pack',
  'lunch',
  'anymor',
  'eat',
  'kid',
  'eat',
  'want',
  'eat',
  'favourit',
  'food',
  'opt',
  'ask',
  'pizza',
  'ask',
  'eat',
  'favourit',
  'food',
  'anymor',
  'told',
  'want',
  'abl',
  'sit',
  'student',
  'shock',
  'know',
  'sit',
  'student',
  'told',
  'teacher',
  'made',
  'sit',
  'room',
  'lunch',
  'time',
  'brought',
  'smelli',
  'food',
  'clear',
  'grow',
  'also',
  'target',
  'teacher',
  'let',
  'bring',
  'shrimp',
  'anyth',
  'garlic',
  'onion',
  'hate',
  'smell',
  'tri',
  'pack',
  'anyth',
  'could',
  'caus',
  'target',
  'child',
  'like',
  'spam',
  'sushi',
  'egg',
  'fri',
  'rice',
  'realli',
  'upset',
  'half',
  'chines',
  'clearli',
  'look',
  'asian',
  'felt',
  'childhood',
  'trauma',
  'happen',
  'call',
  'home',
  'room',
  'teacher',
  'meet',
  'teacher',
  'said',
  'make',
  'sit',
  'room',
  'eat',
  'daughter',
  'told',
  'ask',
  'best',
  'friend',
  'confirm',
  'ye',
  'anoth',
  'teacher',
  'confirm',
  'seen',
  'eat',
  'alon',
  'home',
  'room',
  'teacher',
  'switch',
  'stori',
  'daughter',
  'brought',
  'persimmon',
  'school',
  'distract',
  'kid',
  'thought',
  'eat',
  'tomato',
  'want',
  'distract',
  'student',
  'foreign',
  'food',
  'refus',
  'believ',
  'inappropri',
  'said',
  'see',
  'anyth',
  'wrong',
  'send',
  'eat',
  'go',
  'principl',
  'take',
  'daughter',
  'anoth',
  'home',
  'room',
  'finish',
  'school',
  'year',
  'teacher',
  'said',
  'happen',
  'despit',
  'daughter',
  'swear',
  'happen',
  'everi',
  'day',
  'week',
  'told',
  'told',
  'specif',
  'time',
  'brought',
  'tomato',
  'egg',
  'stir',
  'fri',
  'boy',
  'bulli',
  'look',
  'like',
  'blood',
  'teacher',
  'send',
  'eat',
  'room',
  'rather',
  'tell',
  'stop',
  'husband',
  'believ',
  'say',
  'teacher',
  'would',
  'said',
  'someth',
  'send',
  'eat',
  'think',
  'understand',
  'white',
  'daughter_grade',
  'grade_remot',
  'remot_month',
  'month_ago',
  'ago_physic',
  'physic_school',
  'school_long',
  'long_recent',
  'recent_told',
  'told_want',
  'want_pack',
  'pack_lunch',
  'lunch_anymor',
  'anymor_eat',
  'eat_kid',
  'kid_eat',
  'eat_want',
  'want_eat',
  'eat_favourit',
  'favourit_food',
  'food_opt',
  'opt_ask',
  'ask_pizza',
  'pizza_ask',
  'ask_eat',
  'eat_favourit',
  'favourit_food',
  'food_anymor',
  'anymor_told',
  'told_want',
  'want_abl',
  'abl_sit',
  'sit_student',
  'student_shock',
  'shock_know',
  'know_sit',
  'sit_student',
  'student_told',
  'told_teacher',
  'teacher_made',
  'made_sit',
  'sit_room',
  'room_lunch',
  'lunch_time',
  'time_brought',
  'brought_smelli',
  'smelli_food',
  'food_clear',
  'clear_grow',
  'grow_also',
  'also_target',
  'target_teacher',
  'teacher_let',
  'let_bring',
  'bring_shrimp',
  'shrimp_anyth',
  'anyth_garlic',
  'garlic_onion',
  'onion_hate',
  'hate_smell',
  'smell_tri',
  'tri_pack',
  'pack_anyth',
  'anyth_could',
  'could_caus',
  'caus_target',
  'target_child',
  'child_like',
  'like_spam',
  'spam_sushi',
  'sushi_egg',
  'egg_fri',
  'fri_rice',
  'rice_realli',
  'realli_upset',
  'upset_half',
  'half_chines',
  'chines_clearli',
  'clearli_look',
  'look_asian',
  'asian_felt',
  'felt_childhood',
  'childhood_trauma',
  'trauma_happen',
  'happen_call',
  'call_home',
  'home_room',
  'room_teacher',
  'teacher_meet',
  'meet_teacher',
  'teacher_said',
  'said_make',
  'make_sit',
  'sit_room',
  'room_eat',
  'eat_daughter',
  'daughter_told',
  'told_ask',
  'ask_best',
  'best_friend',
  'friend_confirm',
  'confirm_ye',
  'ye_anoth',
  'anoth_teacher',
  'teacher_confirm',
  'confirm_seen',
  'seen_eat',
  'eat_alon',
  'alon_home',
  'home_room',
  'room_teacher',
  'teacher_switch',
  'switch_stori',
  'stori_daughter',
  'daughter_brought',
  'brought_persimmon',
  'persimmon_school',
  'school_distract',
  'distract_kid',
  'kid_thought',
  'thought_eat',
  'eat_tomato',
  'tomato_want',
  'want_distract',
  'distract_student',
  'student_foreign',
  'foreign_food',
  'food_refus',
  'refus_believ',
  'believ_inappropri',
  'inappropri_said',
  'said_see',
  'see_anyth',
  'anyth_wrong',
  'wrong_send',
  'send_eat',
  'eat_go',
  'go_principl',
  'principl_take',
  'take_daughter',
  'daughter_anoth',
  'anoth_home',
  'home_room',
  'room_finish',
  'finish_school',
  'school_year',
  'year_teacher',
  'teacher_said',
  'said_happen',
  'happen_despit',
  'despit_daughter',
  'daughter_swear',
  'swear_happen',
  'happen_everi',
  'everi_day',
  'day_week',
  'week_told',
  'told_told',
  'told_specif',
  'specif_time',
  'time_brought',
  'brought_tomato',
  'tomato_egg',
  'egg_stir',
  'stir_fri',
  'fri_boy',
  'boy_bulli',
  'bulli_look',
  'look_like',
  'like_blood',
  'blood_teacher',
  'teacher_send',
  'send_eat',
  'eat_room',
  'room_rather',
  'rather_tell',
  'tell_stop',
  'stop_husband',
  'husband_believ',
  'believ_say',
  'say_teacher',
  'teacher_would',
  'would_said',
  'said_someth',
  'someth_send',
  'send_eat',
  'eat_think',
  'think_understand',
  'understand_white',
  'daughter_grade_remot',
  'grade_remot_month',
  'remot_month_ago',
  'month_ago_physic',
  'ago_physic_school',
  'physic_school_long',
  'school_long_recent',
  'long_recent_told',
  'recent_told_want',
  'told_want_pack',
  'want_pack_lunch',
  'pack_lunch_anymor',
  'lunch_anymor_eat',
  'anymor_eat_kid',
  'eat_kid_eat',
  'kid_eat_want',
  'eat_want_eat',
  'want_eat_favourit',
  'eat_favourit_food',
  'favourit_food_opt',
  'food_opt_ask',
  'opt_ask_pizza',
  'ask_pizza_ask',
  'pizza_ask_eat',
  'ask_eat_favourit',
  'eat_favourit_food',
  'favourit_food_anymor',
  'food_anymor_told',
  'anymor_told_want',
  'told_want_abl',
  'want_abl_sit',
  'abl_sit_student',
  'sit_student_shock',
  'student_shock_know',
  'shock_know_sit',
  'know_sit_student',
  'sit_student_told',
  'student_told_teacher',
  'told_teacher_made',
  'teacher_made_sit',
  'made_sit_room',
  'sit_room_lunch',
  'room_lunch_time',
  'lunch_time_brought',
  'time_brought_smelli',
  'brought_smelli_food',
  'smelli_food_clear',
  'food_clear_grow',
  'clear_grow_also',
  'grow_also_target',
  'also_target_teacher',
  'target_teacher_let',
  'teacher_let_bring',
  'let_bring_shrimp',
  'bring_shrimp_anyth',
  'shrimp_anyth_garlic',
  'anyth_garlic_onion',
  'garlic_onion_hate',
  'onion_hate_smell',
  'hate_smell_tri',
  'smell_tri_pack',
  'tri_pack_anyth',
  'pack_anyth_could',
  'anyth_could_caus',
  'could_caus_target',
  'caus_target_child',
  'target_child_like',
  'child_like_spam',
  'like_spam_sushi',
  'spam_sushi_egg',
  'sushi_egg_fri',
  'egg_fri_rice',
  'fri_rice_realli',
  'rice_realli_upset',
  'realli_upset_half',
  'upset_half_chines',
  'half_chines_clearli',
  'chines_clearli_look',
  'clearli_look_asian',
  'look_asian_felt',
  'asian_felt_childhood',
  'felt_childhood_trauma',
  'childhood_trauma_happen',
  'trauma_happen_call',
  'happen_call_home',
  'call_home_room',
  'home_room_teacher',
  'room_teacher_meet',
  'teacher_meet_teacher',
  'meet_teacher_said',
  'teacher_said_make',
  'said_make_sit',
  'make_sit_room',
  'sit_room_eat',
  'room_eat_daughter',
  'eat_daughter_told',
  'daughter_told_ask',
  'told_ask_best',
  'ask_best_friend',
  'best_friend_confirm',
  'friend_confirm_ye',
  'confirm_ye_anoth',
  'ye_anoth_teacher',
  'anoth_teacher_confirm',
  'teacher_confirm_seen',
  'confirm_seen_eat',
  'seen_eat_alon',
  'eat_alon_home',
  'alon_home_room',
  'home_room_teacher',
  'room_teacher_switch',
  'teacher_switch_stori',
  'switch_stori_daughter',
  'stori_daughter_brought',
  'daughter_brought_persimmon',
  'brought_persimmon_school',
  'persimmon_school_distract',
  'school_distract_kid',
  'distract_kid_thought',
  'kid_thought_eat',
  'thought_eat_tomato',
  'eat_tomato_want',
  'tomato_want_distract',
  'want_distract_student',
  'distract_student_foreign',
  'student_foreign_food',
  'foreign_food_refus',
  'food_refus_believ',
  'refus_believ_inappropri',
  'believ_inappropri_said',
  'inappropri_said_see',
  'said_see_anyth',
  'see_anyth_wrong',
  'anyth_wrong_send',
  'wrong_send_eat',
  'send_eat_go',
  'eat_go_principl',
  'go_principl_take',
  'principl_take_daughter',
  'take_daughter_anoth',
  'daughter_anoth_home',
  'anoth_home_room',
  'home_room_finish',
  'room_finish_school',
  'finish_school_year',
  'school_year_teacher',
  'year_teacher_said',
  'teacher_said_happen',
  'said_happen_despit',
  'happen_despit_daughter',
  'despit_daughter_swear',
  'daughter_swear_happen',
  'swear_happen_everi',
  'happen_everi_day',
  'everi_day_week',
  'day_week_told',
  'week_told_told',
  'told_told_specif',
  'told_specif_time',
  'specif_time_brought',
  'time_brought_tomato',
  'brought_tomato_egg',
  'tomato_egg_stir',
  'egg_stir_fri',
  'stir_fri_boy',
  'fri_boy_bulli',
  'boy_bulli_look',
  'bulli_look_like',
  'look_like_blood',
  'like_blood_teacher',
  'blood_teacher_send',
  'teacher_send_eat',
  'send_eat_room',
  'eat_room_rather',
  'room_rather_tell',
  'rather_tell_stop',
  'tell_stop_husband',
  'stop_husband_believ',
  'husband_believ_say',
  'believ_say_teacher',
  'say_teacher_would',
  'teacher_would_said',
  'would_said_someth',
  'said_someth_send',
  'someth_send_eat',
  'send_eat_think',
  'eat_think_understand',
  'think_understand_white'],
 ['seriou',
  'post',
  'feel',
  'bit',
  'guilti',
  'thought',
  'ask',
  'train',
  'yesterday',
  'busi',
  'sinc',
  'long',
  'trip',
  'start',
  'read',
  'book',
  'phone',
  'explicit',
  'matur',
  'scene',
  'man',
  'sit',
  'besid',
  'obvious',
  'read',
  'shoulder',
  '-which',
  'thought',
  'rude',
  'stop',
  'him-',
  'got',
  'steami',
  'scene',
  'bare',
  'second',
  'make',
  'disgust',
  'nois',
  'say',
  'could',
  'read',
  'filth',
  'public',
  'pervert',
  'sexual',
  'harass',
  'surpris',
  'thought',
  'would',
  'embarrass',
  'avert',
  'eye',
  'well',
  'shame',
  'said',
  'one',
  'told',
  'look',
  'phone',
  'screen',
  'realli',
  'harass',
  'start',
  'read',
  'loud',
  'turn',
  'red',
  'chang',
  'seat',
  'cool',
  'felt',
  'bit',
  'bad',
  'respons',
  'also',
  'know',
  'peopl',
  'would',
  'feel',
  'awkward',
  'read',
  'smut',
  'public',
  'aita',
  'seriou_post',
  'post_feel',
  'feel_bit',
  'bit_guilti',
  'guilti_thought',
  'thought_ask',
  'ask_train',
  'train_yesterday',
  'yesterday_busi',
  'busi_sinc',
  'sinc_long',
  'long_trip',
  'trip_start',
  'start_read',
  'read_book',
  'book_phone',
  'phone_explicit',
  'explicit_matur',
  'matur_scene',
  'scene_man',
  'man_sit',
  'sit_besid',
  'besid_obvious',
  'obvious_read',
  'read_shoulder',
  'shoulder_-which',
  '-which_thought',
  'thought_rude',
  'rude_stop',
  'stop_him-',
  'him-_got',
  'got_steami',
  'steami_scene',
  'scene_bare',
  'bare_second',
  'second_make',
  'make_disgust',
  'disgust_nois',
  'nois_say',
  'say_could',
  'could_read',
  'read_filth',
  'filth_public',
  'public_pervert',
  'pervert_sexual',
  'sexual_harass',
  'harass_surpris',
  'surpris_thought',
  'thought_would',
  'would_embarrass',
  'embarrass_avert',
  'avert_eye',
  'eye_well',
  'well_shame',
  'shame_said',
  'said_one',
  'one_told',
  'told_look',
  'look_phone',
  'phone_screen',
  'screen_realli',
  'realli_harass',
  'harass_start',
  'start_read',
  'read_loud',
  'loud_turn',
  'turn_red',
  'red_chang',
  'chang_seat',
  'seat_cool',
  'cool_felt',
  'felt_bit',
  'bit_bad',
  'bad_respons',
  'respons_also',
  'also_know',
  'know_peopl',
  'peopl_would',
  'would_feel',
  'feel_awkward',
  'awkward_read',
  'read_smut',
  'smut_public',
  'public_aita',
  'seriou_post_feel',
  'post_feel_bit',
  'feel_bit_guilti',
  'bit_guilti_thought',
  'guilti_thought_ask',
  'thought_ask_train',
  'ask_train_yesterday',
  'train_yesterday_busi',
  'yesterday_busi_sinc',
  'busi_sinc_long',
  'sinc_long_trip',
  'long_trip_start',
  'trip_start_read',
  'start_read_book',
  'read_book_phone',
  'book_phone_explicit',
  'phone_explicit_matur',
  'explicit_matur_scene',
  'matur_scene_man',
  'scene_man_sit',
  'man_sit_besid',
  'sit_besid_obvious',
  'besid_obvious_read',
  'obvious_read_shoulder',
  'read_shoulder_-which',
  'shoulder_-which_thought',
  '-which_thought_rude',
  'thought_rude_stop',
  'rude_stop_him-',
  'stop_him-_got',
  'him-_got_steami',
  'got_steami_scene',
  'steami_scene_bare',
  'scene_bare_second',
  'bare_second_make',
  'second_make_disgust',
  'make_disgust_nois',
  'disgust_nois_say',
  'nois_say_could',
  'say_could_read',
  'could_read_filth',
  'read_filth_public',
  'filth_public_pervert',
  'public_pervert_sexual',
  'pervert_sexual_harass',
  'sexual_harass_surpris',
  'harass_surpris_thought',
  'surpris_thought_would',
  'thought_would_embarrass',
  'would_embarrass_avert',
  'embarrass_avert_eye',
  'avert_eye_well',
  'eye_well_shame',
  'well_shame_said',
  'shame_said_one',
  'said_one_told',
  'one_told_look',
  'told_look_phone',
  'look_phone_screen',
  'phone_screen_realli',
  'screen_realli_harass',
  'realli_harass_start',
  'harass_start_read',
  'start_read_loud',
  'read_loud_turn',
  'loud_turn_red',
  'turn_red_chang',
  'red_chang_seat',
  'chang_seat_cool',
  'seat_cool_felt',
  'cool_felt_bit',
  'felt_bit_bad',
  'bit_bad_respons',
  'bad_respons_also',
  'respons_also_know',
  'also_know_peopl',
  'know_peopl_would',
  'peopl_would_feel',
  'would_feel_awkward',
  'feel_awkward_read',
  'awkward_read_smut',
  'read_smut_public',
  'smut_public_aita'],
 ['got',
  'daughter',
  'new',
  'car',
  'month',
  'ago',
  'stepbroth',
  'gone',
  'crazi',
  'ever',
  'sinc',
  'bern',
  'attempt',
  'drive',
  'daughter',
  'made',
  'clear',
  'want',
  'hed',
  'refer',
  'car',
  'would',
  'get',
  'mad',
  'daughter',
  'decor',
  'pink',
  'add',
  'teddi',
  'bear',
  'necklac',
  'decor',
  'hed',
  'get',
  'angri',
  'say',
  'ruin',
  'car',
  'embarrass',
  'infront',
  'friend',
  'although',
  'never',
  'let',
  'get',
  'insid',
  'ask',
  'husband',
  'talk',
  'son',
  'said',
  'daughter',
  'need',
  'chill',
  'fastforward',
  'past',
  'friday',
  'daughter',
  'call',
  'work',
  'say',
  'stepbroth',
  'took',
  'car',
  'upstair',
  'demand',
  'key',
  'refus',
  'call',
  'phone',
  'respond',
  'call',
  'husband',
  'told',
  'happen',
  'told',
  'need',
  'go',
  'bring',
  'car',
  'back',
  'id',
  'call',
  'polic',
  'call',
  'son',
  'call',
  'back',
  'say',
  'son',
  'take',
  'go',
  'movi',
  'friend',
  'bring',
  'back',
  'pm',
  'wait',
  'watn',
  'one',
  'time',
  'bring',
  'back',
  'stall',
  'call',
  'polic',
  'report',
  'stolen',
  'stepson',
  'pick',
  'locat',
  'brought',
  'local',
  'polic',
  'station',
  'got',
  'car',
  'back',
  'mess',
  'decor',
  'toy',
  'gone',
  'daughter',
  'stop',
  'cri',
  'husband',
  'blew',
  'phone',
  'call',
  'polic',
  'son',
  'caus',
  'spend',
  'night',
  'came',
  'home',
  'next',
  'day',
  'huge',
  'argument',
  'ensu',
  'husband',
  'say',
  'made',
  'mistak',
  'report',
  'car',
  'miss',
  'said',
  'escal',
  'situat',
  'one',
  'creat',
  'got',
  'son',
  'similar',
  'car',
  'least',
  'told',
  'daughter',
  'share',
  'otherwis',
  'deal',
  'son',
  'temper',
  'tantrum',
  'hous',
  'full',
  'tension',
  'sinc',
  'everyon',
  'mad',
  'want',
  'polic',
  'involv',
  'see',
  'daughter',
  'cri',
  'take',
  'got_daughter',
  'daughter_new',
  'new_car',
  'car_month',
  'month_ago',
  'ago_stepbroth',
  'stepbroth_gone',
  'gone_crazi',
  'crazi_ever',
  'ever_sinc',
  'sinc_bern',
  'bern_attempt',
  'attempt_drive',
  'drive_daughter',
  'daughter_made',
  'made_clear',
  'clear_want',
  'want_hed',
  'hed_refer',
  'refer_car',
  'car_would',
  'would_get',
  'get_mad',
  'mad_daughter',
  'daughter_decor',
  'decor_pink',
  'pink_add',
  'add_teddi',
  'teddi_bear',
  'bear_necklac',
  'necklac_decor',
  'decor_hed',
  'hed_get',
  'get_angri',
  'angri_say',
  'say_ruin',
  'ruin_car',
  'car_embarrass',
  'embarrass_infront',
  'infront_friend',
  'friend_although',
  'although_never',
  'never_let',
  'let_get',
  'get_insid',
  'insid_ask',
  'ask_husband',
  'husband_talk',
  'talk_son',
  'son_said',
  'said_daughter',
  'daughter_need',
  'need_chill',
  'chill_fastforward',
  'fastforward_past',
  'past_friday',
  'friday_daughter',
  'daughter_call',
  'call_work',
  'work_say',
  'say_stepbroth',
  'stepbroth_took',
  'took_car',
  'car_upstair',
  'upstair_demand',
  'demand_key',
  'key_refus',
  'refus_call',
  'call_phone',
  'phone_respond',
  'respond_call',
  'call_husband',
  'husband_told',
  'told_happen',
  'happen_told',
  'told_need',
  'need_go',
  'go_bring',
  'bring_car',
  'car_back',
  'back_id',
  'id_call',
  'call_polic',
  'polic_call',
  'call_son',
  'son_call',
  'call_back',
  'back_say',
  'say_son',
  'son_take',
  'take_go',
  'go_movi',
  'movi_friend',
  'friend_bring',
  'bring_back',
  'back_pm',
  'pm_wait',
  'wait_watn',
  'watn_one',
  'one_time',
  'time_bring',
  'bring_back',
  'back_stall',
  'stall_call',
  'call_polic',
  'polic_report',
  'report_stolen',
  'stolen_stepson',
  'stepson_pick',
  'pick_locat',
  'locat_brought',
  'brought_local',
  'local_polic',
  'polic_station',
  'station_got',
  'got_car',
  'car_back',
  'back_mess',
  'mess_decor',
  'decor_toy',
  'toy_gone',
  'gone_daughter',
  'daughter_stop',
  'stop_cri',
  'cri_husband',
  'husband_blew',
  'blew_phone',
  'phone_call',
  'call_polic',
  'polic_son',
  'son_caus',
  'caus_spend',
  'spend_night',
  'night_came',
  'came_home',
  'home_next',
  'next_day',
  'day_huge',
  'huge_argument',
  'argument_ensu',
  'ensu_husband',
  'husband_say',
  'say_made',
  'made_mistak',
  'mistak_report',
  'report_car',
  'car_miss',
  'miss_said',
  'said_escal',
  'escal_situat',
  'situat_one',
  'one_creat',
  'creat_got',
  'got_son',
  'son_similar',
  'similar_car',
  'car_least',
  'least_told',
  'told_daughter',
  'daughter_share',
  'share_otherwis',
  'otherwis_deal',
  'deal_son',
  'son_temper',
  'temper_tantrum',
  'tantrum_hous',
  'hous_full',
  'full_tension',
  'tension_sinc',
  'sinc_everyon',
  'everyon_mad',
  'mad_want',
  'want_polic',
  'polic_involv',
  'involv_see',
  'see_daughter',
  'daughter_cri',
  'cri_take',
  'got_daughter_new',
  'daughter_new_car',
  'new_car_month',
  'car_month_ago',
  'month_ago_stepbroth',
  'ago_stepbroth_gone',
  'stepbroth_gone_crazi',
  'gone_crazi_ever',
  'crazi_ever_sinc',
  'ever_sinc_bern',
  'sinc_bern_attempt',
  'bern_attempt_drive',
  'attempt_drive_daughter',
  'drive_daughter_made',
  'daughter_made_clear',
  'made_clear_want',
  'clear_want_hed',
  'want_hed_refer',
  'hed_refer_car',
  'refer_car_would',
  'car_would_get',
  'would_get_mad',
  'get_mad_daughter',
  'mad_daughter_decor',
  'daughter_decor_pink',
  'decor_pink_add',
  'pink_add_teddi',
  'add_teddi_bear',
  'teddi_bear_necklac',
  'bear_necklac_decor',
  'necklac_decor_hed',
  'decor_hed_get',
  'hed_get_angri',
  'get_angri_say',
  'angri_say_ruin',
  'say_ruin_car',
  'ruin_car_embarrass',
  'car_embarrass_infront',
  'embarrass_infront_friend',
  'infront_friend_although',
  'friend_although_never',
  'although_never_let',
  'never_let_get',
  'let_get_insid',
  'get_insid_ask',
  'insid_ask_husband',
  'ask_husband_talk',
  'husband_talk_son',
  'talk_son_said',
  'son_said_daughter',
  'said_daughter_need',
  'daughter_need_chill',
  'need_chill_fastforward',
  'chill_fastforward_past',
  'fastforward_past_friday',
  'past_friday_daughter',
  'friday_daughter_call',
  'daughter_call_work',
  'call_work_say',
  'work_say_stepbroth',
  'say_stepbroth_took',
  'stepbroth_took_car',
  'took_car_upstair',
  'car_upstair_demand',
  'upstair_demand_key',
  'demand_key_refus',
  'key_refus_call',
  'refus_call_phone',
  'call_phone_respond',
  'phone_respond_call',
  'respond_call_husband',
  'call_husband_told',
  'husband_told_happen',
  'told_happen_told',
  'happen_told_need',
  'told_need_go',
  'need_go_bring',
  'go_bring_car',
  'bring_car_back',
  'car_back_id',
  'back_id_call',
  'id_call_polic',
  'call_polic_call',
  'polic_call_son',
  'call_son_call',
  'son_call_back',
  'call_back_say',
  'back_say_son',
  'say_son_take',
  'son_take_go',
  'take_go_movi',
  'go_movi_friend',
  'movi_friend_bring',
  'friend_bring_back',
  'bring_back_pm',
  'back_pm_wait',
  'pm_wait_watn',
  'wait_watn_one',
  'watn_one_time',
  'one_time_bring',
  'time_bring_back',
  'bring_back_stall',
  'back_stall_call',
  'stall_call_polic',
  'call_polic_report',
  'polic_report_stolen',
  'report_stolen_stepson',
  'stolen_stepson_pick',
  'stepson_pick_locat',
  'pick_locat_brought',
  'locat_brought_local',
  'brought_local_polic',
  'local_polic_station',
  'polic_station_got',
  'station_got_car',
  'got_car_back',
  'car_back_mess',
  'back_mess_decor',
  'mess_decor_toy',
  'decor_toy_gone',
  'toy_gone_daughter',
  'gone_daughter_stop',
  'daughter_stop_cri',
  'stop_cri_husband',
  'cri_husband_blew',
  'husband_blew_phone',
  'blew_phone_call',
  'phone_call_polic',
  'call_polic_son',
  'polic_son_caus',
  'son_caus_spend',
  'caus_spend_night',
  'spend_night_came',
  'night_came_home',
  'came_home_next',
  'home_next_day',
  'next_day_huge',
  'day_huge_argument',
  'huge_argument_ensu',
  'argument_ensu_husband',
  'ensu_husband_say',
  'husband_say_made',
  'say_made_mistak',
  'made_mistak_report',
  'mistak_report_car',
  'report_car_miss',
  'car_miss_said',
  'miss_said_escal',
  'said_escal_situat',
  'escal_situat_one',
  'situat_one_creat',
  'one_creat_got',
  'creat_got_son',
  'got_son_similar',
  'son_similar_car',
  'similar_car_least',
  'car_least_told',
  'least_told_daughter',
  'told_daughter_share',
  'daughter_share_otherwis',
  'share_otherwis_deal',
  'otherwis_deal_son',
  'deal_son_temper',
  'son_temper_tantrum',
  'temper_tantrum_hous',
  'tantrum_hous_full',
  'hous_full_tension',
  'full_tension_sinc',
  'tension_sinc_everyon',
  'sinc_everyon_mad',
  'everyon_mad_want',
  'mad_want_polic',
  'want_polic_involv',
  'polic_involv_see',
  'involv_see_daughter',
  'see_daughter_cri',
  'daughter_cri_take'],
 ['hello',
  'work',
  'law',
  'firm',
  'year',
  'high',
  'school',
  'sweetheart',
  'die',
  'die',
  'propos',
  'said',
  'ye',
  'struck',
  'grief',
  'could',
  'never',
  'bring',
  'take',
  'ring',
  'gave',
  'around',
  'year',
  'ago',
  'final',
  'move',
  'chose',
  'adopt',
  'girl',
  'everyon',
  'firm',
  'assum',
  'im',
  'marri',
  'due',
  'ring',
  'kid',
  'one',
  'co-work',
  'appar',
  'crush',
  'invit',
  'group',
  'friend',
  'work',
  'birthday',
  'ask',
  'husband',
  'told',
  'pass',
  'daughter',
  'bit',
  'shock',
  'say',
  'except',
  'lost',
  'said',
  'lie',
  'us',
  'year',
  'cant',
  'believ',
  'storm',
  'show',
  'work',
  'day',
  'return',
  'even',
  'look',
  'eye',
  'co-work',
  'ask',
  'apolog',
  'think',
  'need',
  'im',
  'wonder',
  'im',
  'asshol',
  'hello_work',
  'work_law',
  'law_firm',
  'firm_year',
  'year_high',
  'high_school',
  'school_sweetheart',
  'sweetheart_die',
  'die_die',
  'die_propos',
  'propos_said',
  'said_ye',
  'ye_struck',
  'struck_grief',
  'grief_could',
  'could_never',
  'never_bring',
  'bring_take',
  'take_ring',
  'ring_gave',
  'gave_around',
  'around_year',
  'year_ago',
  'ago_final',
  'final_move',
  'move_chose',
  'chose_adopt',
  'adopt_girl',
  'girl_everyon',
  'everyon_firm',
  'firm_assum',
  'assum_im',
  'im_marri',
  'marri_due',
  'due_ring',
  'ring_kid',
  'kid_one',
  'one_co-work',
  'co-work_appar',
  'appar_crush',
  'crush_invit',
  'invit_group',
  'group_friend',
  'friend_work',
  'work_birthday',
  'birthday_ask',
  'ask_husband',
  'husband_told',
  'told_pass',
  'pass_daughter',
  'daughter_bit',
  'bit_shock',
  'shock_say',
  'say_except',
  'except_lost',
  'lost_said',
  'said_lie',
  'lie_us',
  'us_year',
  'year_cant',
  'cant_believ',
  'believ_storm',
  'storm_show',
  'show_work',
  'work_day',
  'day_return',
  'return_even',
  'even_look',
  'look_eye',
  'eye_co-work',
  'co-work_ask',
  'ask_apolog',
  'apolog_think',
  'think_need',
  'need_im',
  'im_wonder',
  'wonder_im',
  'im_asshol',
  'hello_work_law',
  'work_law_firm',
  'law_firm_year',
  'firm_year_high',
  'year_high_school',
  'high_school_sweetheart',
  'school_sweetheart_die',
  'sweetheart_die_die',
  'die_die_propos',
  'die_propos_said',
  'propos_said_ye',
  'said_ye_struck',
  'ye_struck_grief',
  'struck_grief_could',
  'grief_could_never',
  'could_never_bring',
  'never_bring_take',
  'bring_take_ring',
  'take_ring_gave',
  'ring_gave_around',
  'gave_around_year',
  'around_year_ago',
  'year_ago_final',
  'ago_final_move',
  'final_move_chose',
  'move_chose_adopt',
  'chose_adopt_girl',
  'adopt_girl_everyon',
  'girl_everyon_firm',
  'everyon_firm_assum',
  'firm_assum_im',
  'assum_im_marri',
  'im_marri_due',
  'marri_due_ring',
  'due_ring_kid',
  'ring_kid_one',
  'kid_one_co-work',
  'one_co-work_appar',
  'co-work_appar_crush',
  'appar_crush_invit',
  'crush_invit_group',
  'invit_group_friend',
  'group_friend_work',
  'friend_work_birthday',
  'work_birthday_ask',
  'birthday_ask_husband',
  'ask_husband_told',
  'husband_told_pass',
  'told_pass_daughter',
  'pass_daughter_bit',
  'daughter_bit_shock',
  'bit_shock_say',
  'shock_say_except',
  'say_except_lost',
  'except_lost_said',
  'lost_said_lie',
  'said_lie_us',
  'lie_us_year',
  'us_year_cant',
  'year_cant_believ',
  'cant_believ_storm',
  'believ_storm_show',
  'storm_show_work',
  'show_work_day',
  'work_day_return',
  'day_return_even',
  'return_even_look',
  'even_look_eye',
  'look_eye_co-work',
  'eye_co-work_ask',
  'co-work_ask_apolog',
  'ask_apolog_think',
  'apolog_think_need',
  'think_need_im',
  'need_im_wonder',
  'im_wonder_im',
  'wonder_im_asshol'],
 ['situat',
  'bit',
  'mess',
  'ill',
  'mention',
  'relev',
  'conflict',
  'hand',
  'wife',
  'liz',
  'marri',
  'year',
  'preschool',
  'age',
  'kid',
  'current',
  'live',
  'citi',
  'parent',
  'mom',
  'would',
  'take',
  'kid',
  'wife',
  'work',
  'liz',
  'one',
  'much',
  'larger',
  'incom',
  'got',
  'even',
  'better',
  'job',
  'opportun',
  'requir',
  'us',
  'move',
  'anoth',
  'citi',
  'agre',
  'sinc',
  'could',
  'easili',
  'find',
  'job',
  'field',
  'citi',
  'move',
  'famili',
  'heard',
  'sell',
  'hous',
  'move',
  'hell',
  'broke',
  'loos',
  'sunday',
  'mom',
  'liz',
  'got',
  'huge',
  'fight',
  'liz',
  'told',
  'mom',
  'well',
  'move',
  'away',
  'hire',
  'babysitt',
  'kid',
  'longer',
  'need',
  'mom',
  'said',
  'want',
  'grandkid',
  'move',
  'away',
  'even',
  'said',
  'let',
  'kid',
  'live',
  'hous',
  'move',
  'liz',
  'laugh',
  'mom',
  'lost',
  'basic',
  'say',
  'liz',
  'ungrat',
  'witch',
  'grandkid',
  'move',
  'happen',
  'dead',
  'bodi',
  'began',
  'exchang',
  'harsher',
  'word',
  'liz',
  'snap',
  'told',
  'mom',
  'butt',
  'privat',
  'matter',
  'concern',
  'said',
  'right',
  'decid',
  'thing',
  'regard',
  'kid',
  'mom',
  'firmli',
  'told',
  'dead',
  'wrong',
  'proceed',
  'tell',
  'involv',
  'grandmoth',
  'know',
  'right',
  'take',
  'liz',
  'court',
  'ensur',
  'still',
  'get',
  'see',
  'grankid',
  'liz',
  'shock',
  'look',
  'left',
  'saw',
  'sit',
  'say',
  'anyth',
  'told',
  'check',
  'mom',
  'told',
  'unfair',
  'mom',
  'mom',
  'feel',
  'upset',
  'longer',
  'abl',
  'see',
  'grandchildren',
  '-',
  'honestli',
  'told',
  'liz',
  'bit',
  'selfish',
  'consid',
  'mom',
  'feel',
  'crucial',
  'presenc',
  'kid',
  'life',
  'first',
  'liz',
  'start',
  'argu',
  'say',
  'believ',
  'stand',
  'behind',
  'defend',
  'hear',
  'mom',
  'say',
  'shed',
  'get',
  'court',
  'involv',
  'said',
  'mom',
  'upset',
  'blame',
  'reaction',
  'liz',
  'start',
  'yell',
  'call',
  'unsupport',
  'enabl',
  'went',
  'home',
  'kid',
  'insist',
  'famili',
  'problem',
  'handl',
  'although',
  'whole',
  'move',
  'thing',
  'idea',
  'situat',
  'resolv',
  'liz',
  'mom',
  'get',
  'intens',
  'fight',
  'choos',
  'stay',
  'valid',
  'argument',
  'liz',
  'call',
  'aw',
  'side',
  'see',
  'mom',
  'spoke',
  'okay',
  'fact',
  'mom',
  'caus',
  'us',
  'issu',
  'court',
  'aita',
  'get',
  'liz',
  'want',
  'support',
  'feel',
  'like',
  'mom',
  'punish',
  'fault',
  'love',
  'grandmoth',
  'kid',
  'situat_bit',
  'bit_mess',
  'mess_ill',
  'ill_mention',
  'mention_relev',
  'relev_conflict',
  'conflict_hand',
  'hand_wife',
  'wife_liz',
  'liz_marri',
  'marri_year',
  'year_preschool',
  'preschool_age',
  'age_kid',
  'kid_current',
  'current_live',
  'live_citi',
  'citi_parent',
  'parent_mom',
  'mom_would',
  'would_take',
  'take_kid',
  'kid_wife',
  'wife_work',
  'work_liz',
  'liz_one',
  'one_much',
  'much_larger',
  'larger_incom',
  'incom_got',
  'got_even',
  'even_better',
  'better_job',
  'job_opportun',
  'opportun_requir',
  'requir_us',
  'us_move',
  'move_anoth',
  'anoth_citi',
  'citi_agre',
  'agre_sinc',
  'sinc_could',
  'could_easili',
  'easili_find',
  'find_job',
  'job_field',
  'field_citi',
  'citi_move',
  'move_famili',
  'famili_heard',
  'heard_sell',
  'sell_hous',
  'hous_move',
  'move_hell',
  'hell_broke',
  'broke_loos',
  'loos_sunday',
  'sunday_mom',
  'mom_liz',
  'liz_got',
  'got_huge',
  'huge_fight',
  'fight_liz',
  'liz_told',
  'told_mom',
  'mom_well',
  'well_move',
  'move_away',
  'away_hire',
  'hire_babysitt',
  'babysitt_kid',
  'kid_longer',
  'longer_need',
  'need_mom',
  'mom_said',
  'said_want',
  'want_grandkid',
  'grandkid_move',
  'move_away',
  'away_even',
  'even_said',
  'said_let',
  'let_kid',
  'kid_live',
  'live_hous',
  'hous_move',
  'move_liz',
  'liz_laugh',
  'laugh_mom',
  'mom_lost',
  'lost_basic',
  'basic_say',
  'say_liz',
  'liz_ungrat',
  'ungrat_witch',
  'witch_grandkid',
  'grandkid_move',
  'move_happen',
  'happen_dead',
  'dead_bodi',
  'bodi_began',
  'began_exchang',
  'exchang_harsher',
  'harsher_word',
  'word_liz',
  'liz_snap',
  'snap_told',
  'told_mom',
  'mom_butt',
  'butt_privat',
  'privat_matter',
  'matter_concern',
  'concern_said',
  'said_right',
  'right_decid',
  'decid_thing',
  'thing_regard',
  'regard_kid',
  'kid_mom',
  'mom_firmli',
  'firmli_told',
  'told_dead',
  'dead_wrong',
  'wrong_proceed',
  'proceed_tell',
  'tell_involv',
  'involv_grandmoth',
  'grandmoth_know',
  'know_right',
  'right_take',
  'take_liz',
  'liz_court',
  'court_ensur',
  'ensur_still',
  'still_get',
  'get_see',
  'see_grankid',
  'grankid_liz',
  'liz_shock',
  'shock_look',
  'look_left',
  'left_saw',
  'saw_sit',
  'sit_say',
  'say_anyth',
  'anyth_told',
  'told_check',
  'check_mom',
  'mom_told',
  'told_unfair',
  'unfair_mom',
  'mom_mom',
  'mom_feel',
  'feel_upset',
  'upset_longer',
  'longer_abl',
  'abl_see',
  'see_grandchildren',
  'grandchildren_-',
  '-_honestli',
  'honestli_told',
  'told_liz',
  'liz_bit',
  'bit_selfish',
  'selfish_consid',
  'consid_mom',
  'mom_feel',
  'feel_crucial',
  'crucial_presenc',
  'presenc_kid',
  'kid_life',
  'life_first',
  'first_liz',
  'liz_start',
  'start_argu',
  'argu_say',
  'say_believ',
  'believ_stand',
  'stand_behind',
  'behind_defend',
  'defend_hear',
  'hear_mom',
  'mom_say',
  'say_shed',
  'shed_get',
  'get_court',
  'court_involv',
  'involv_said',
  'said_mom',
  'mom_upset',
  'upset_blame',
  'blame_reaction',
  'reaction_liz',
  'liz_start',
  'start_yell',
  'yell_call',
  'call_unsupport',
  'unsupport_enabl',
  'enabl_went',
  'went_home',
  'home_kid',
  'kid_insist',
  'insist_famili',
  'famili_problem',
  'problem_handl',
  'handl_although',
  'although_whole',
  'whole_move',
  'move_thing',
  'thing_idea',
  'idea_situat',
  'situat_resolv',
  'resolv_liz',
  'liz_mom',
  'mom_get',
  'get_intens',
  'intens_fight',
  'fight_choos',
  'choos_stay',
  'stay_valid',
  'valid_argument',
  'argument_liz',
  'liz_call',
  'call_aw',
  'aw_side',
  'side_see',
  'see_mom',
  'mom_spoke',
  'spoke_okay',
  'okay_fact',
  'fact_mom',
  'mom_caus',
  'caus_us',
  'us_issu',
  'issu_court',
  'court_aita',
  'aita_get',
  'get_liz',
  'liz_want',
  'want_support',
  'support_feel',
  'feel_like',
  'like_mom',
  'mom_punish',
  'punish_fault',
  'fault_love',
  'love_grandmoth',
  'grandmoth_kid',
  'situat_bit_mess',
  'bit_mess_ill',
  'mess_ill_mention',
  'ill_mention_relev',
  'mention_relev_conflict',
  'relev_conflict_hand',
  'conflict_hand_wife',
  'hand_wife_liz',
  'wife_liz_marri',
  'liz_marri_year',
  'marri_year_preschool',
  'year_preschool_age',
  'preschool_age_kid',
  'age_kid_current',
  'kid_current_live',
  'current_live_citi',
  'live_citi_parent',
  'citi_parent_mom',
  'parent_mom_would',
  'mom_would_take',
  'would_take_kid',
  'take_kid_wife',
  'kid_wife_work',
  'wife_work_liz',
  'work_liz_one',
  'liz_one_much',
  'one_much_larger',
  'much_larger_incom',
  'larger_incom_got',
  'incom_got_even',
  'got_even_better',
  'even_better_job',
  'better_job_opportun',
  'job_opportun_requir',
  'opportun_requir_us',
  'requir_us_move',
  'us_move_anoth',
  'move_anoth_citi',
  'anoth_citi_agre',
  'citi_agre_sinc',
  'agre_sinc_could',
  'sinc_could_easili',
  'could_easili_find',
  'easili_find_job',
  'find_job_field',
  'job_field_citi',
  'field_citi_move',
  'citi_move_famili',
  'move_famili_heard',
  'famili_heard_sell',
  'heard_sell_hous',
  'sell_hous_move',
  'hous_move_hell',
  'move_hell_broke',
  'hell_broke_loos',
  'broke_loos_sunday',
  'loos_sunday_mom',
  'sunday_mom_liz',
  'mom_liz_got',
  'liz_got_huge',
  'got_huge_fight',
  'huge_fight_liz',
  'fight_liz_told',
  'liz_told_mom',
  'told_mom_well',
  'mom_well_move',
  'well_move_away',
  'move_away_hire',
  'away_hire_babysitt',
  'hire_babysitt_kid',
  'babysitt_kid_longer',
  'kid_longer_need',
  'longer_need_mom',
  'need_mom_said',
  'mom_said_want',
  'said_want_grandkid',
  'want_grandkid_move',
  'grandkid_move_away',
  'move_away_even',
  'away_even_said',
  'even_said_let',
  'said_let_kid',
  'let_kid_live',
  'kid_live_hous',
  'live_hous_move',
  'hous_move_liz',
  'move_liz_laugh',
  'liz_laugh_mom',
  'laugh_mom_lost',
  'mom_lost_basic',
  'lost_basic_say',
  'basic_say_liz',
  'say_liz_ungrat',
  'liz_ungrat_witch',
  'ungrat_witch_grandkid',
  'witch_grandkid_move',
  'grandkid_move_happen',
  'move_happen_dead',
  'happen_dead_bodi',
  'dead_bodi_began',
  'bodi_began_exchang',
  'began_exchang_harsher',
  'exchang_harsher_word',
  'harsher_word_liz',
  'word_liz_snap',
  'liz_snap_told',
  'snap_told_mom',
  'told_mom_butt',
  'mom_butt_privat',
  'butt_privat_matter',
  'privat_matter_concern',
  'matter_concern_said',
  'concern_said_right',
  'said_right_decid',
  'right_decid_thing',
  'decid_thing_regard',
  'thing_regard_kid',
  'regard_kid_mom',
  'kid_mom_firmli',
  'mom_firmli_told',
  'firmli_told_dead',
  'told_dead_wrong',
  'dead_wrong_proceed',
  'wrong_proceed_tell',
  'proceed_tell_involv',
  'tell_involv_grandmoth',
  'involv_grandmoth_know',
  'grandmoth_know_right',
  'know_right_take',
  'right_take_liz',
  'take_liz_court',
  'liz_court_ensur',
  'court_ensur_still',
  'ensur_still_get',
  'still_get_see',
  'get_see_grankid',
  'see_grankid_liz',
  'grankid_liz_shock',
  'liz_shock_look',
  'shock_look_left',
  'look_left_saw',
  'left_saw_sit',
  'saw_sit_say',
  'sit_say_anyth',
  'say_anyth_told',
  'anyth_told_check',
  'told_check_mom',
  'check_mom_told',
  'mom_told_unfair',
  'told_unfair_mom',
  'unfair_mom_mom',
  'mom_mom_feel',
  'mom_feel_upset',
  'feel_upset_longer',
  'upset_longer_abl',
  'longer_abl_see',
  'abl_see_grandchildren',
  'see_grandchildren_-',
  'grandchildren_-_honestli',
  '-_honestli_told',
  'honestli_told_liz',
  'told_liz_bit',
  'liz_bit_selfish',
  'bit_selfish_consid',
  'selfish_consid_mom',
  'consid_mom_feel',
  'mom_feel_crucial',
  'feel_crucial_presenc',
  'crucial_presenc_kid',
  'presenc_kid_life',
  'kid_life_first',
  'life_first_liz',
  'first_liz_start',
  'liz_start_argu',
  'start_argu_say',
  'argu_say_believ',
  'say_believ_stand',
  'believ_stand_behind',
  'stand_behind_defend',
  'behind_defend_hear',
  'defend_hear_mom',
  'hear_mom_say',
  'mom_say_shed',
  'say_shed_get',
  'shed_get_court',
  'get_court_involv',
  'court_involv_said',
  'involv_said_mom',
  'said_mom_upset',
  'mom_upset_blame',
  'upset_blame_reaction',
  'blame_reaction_liz',
  'reaction_liz_start',
  'liz_start_yell',
  'start_yell_call',
  'yell_call_unsupport',
  'call_unsupport_enabl',
  'unsupport_enabl_went',
  'enabl_went_home',
  'went_home_kid',
  'home_kid_insist',
  'kid_insist_famili',
  'insist_famili_problem',
  'famili_problem_handl',
  'problem_handl_although',
  'handl_although_whole',
  'although_whole_move',
  'whole_move_thing',
  'move_thing_idea',
  'thing_idea_situat',
  'idea_situat_resolv',
  'situat_resolv_liz',
  'resolv_liz_mom',
  'liz_mom_get',
  'mom_get_intens',
  'get_intens_fight',
  'intens_fight_choos',
  'fight_choos_stay',
  'choos_stay_valid',
  'stay_valid_argument',
  'valid_argument_liz',
  'argument_liz_call',
  'liz_call_aw',
  'call_aw_side',
  'aw_side_see',
  'side_see_mom',
  'see_mom_spoke',
  'mom_spoke_okay',
  'spoke_okay_fact',
  'okay_fact_mom',
  'fact_mom_caus',
  'mom_caus_us',
  'caus_us_issu',
  'us_issu_court',
  'issu_court_aita',
  'court_aita_get',
  'aita_get_liz',
  'get_liz_want',
  'liz_want_support',
  'want_support_feel',
  'support_feel_like',
  'feel_like_mom',
  'like_mom_punish',
  'mom_punish_fault',
  'punish_fault_love',
  'fault_love_grandmoth',
  'love_grandmoth_kid'],
 ['updat',
  'httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'im',
  'regular',
  'local',
  'coffe',
  'shop',
  'stop',
  'nearli',
  'everyday',
  'lunch',
  'break',
  'ive',
  'gotten',
  'know',
  'owner',
  'staff',
  'theyr',
  'great',
  'usual',
  'leav',
  '%',
  'tip',
  'yesterday',
  'went',
  'girl',
  'recogn',
  'behind',
  'counter',
  'assum',
  'new',
  'place',
  'usual',
  'order',
  'medium',
  'light',
  'roast',
  'coffe',
  'black',
  'room',
  'turn',
  'around',
  'pour',
  'coffe',
  'notic',
  'fill',
  'cup',
  'halfway',
  'light',
  'roast',
  'fill',
  'rest',
  'dark',
  'roast',
  'put',
  'cup',
  'front',
  'ask',
  'fill',
  'cup',
  'dark',
  'roast',
  'order',
  'light',
  'roast',
  'said',
  'ran',
  'light',
  'roast',
  'use',
  'dark',
  'roast',
  'top',
  'told',
  'drink',
  'dark',
  'roast',
  'respond',
  'make',
  'differ',
  'feel',
  'like',
  'put',
  'new',
  'pot',
  'would',
  'take',
  'min',
  'told',
  'label',
  'differ',
  'wouldv',
  'wait',
  'fresh',
  'pot',
  'order',
  'someth',
  'els',
  'gave',
  'wtf',
  'look',
  'said',
  'industri',
  'standard',
  'walk',
  'back',
  'come',
  'back',
  'sent',
  'anoth',
  'worker',
  'im',
  'friendli',
  'apolog',
  'got',
  'correct',
  'coffe',
  'went',
  'today',
  'owner',
  'half-jokingli',
  'half-seri',
  'ask',
  'caus',
  'problem',
  'employe',
  'feel',
  'comfort',
  'go',
  'anymor',
  'im',
  'wonder',
  'realli',
  'standard',
  'practic',
  'ah',
  'updat_httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar',
  'httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_im',
  'im_regular',
  'regular_local',
  'local_coffe',
  'coffe_shop',
  'shop_stop',
  'stop_nearli',
  'nearli_everyday',
  'everyday_lunch',
  'lunch_break',
  'break_ive',
  'ive_gotten',
  'gotten_know',
  'know_owner',
  'owner_staff',
  'staff_theyr',
  'theyr_great',
  'great_usual',
  'usual_leav',
  'leav_%',
  '%_tip',
  'tip_yesterday',
  'yesterday_went',
  'went_girl',
  'girl_recogn',
  'recogn_behind',
  'behind_counter',
  'counter_assum',
  'assum_new',
  'new_place',
  'place_usual',
  'usual_order',
  'order_medium',
  'medium_light',
  'light_roast',
  'roast_coffe',
  'coffe_black',
  'black_room',
  'room_turn',
  'turn_around',
  'around_pour',
  'pour_coffe',
  'coffe_notic',
  'notic_fill',
  'fill_cup',
  'cup_halfway',
  'halfway_light',
  'light_roast',
  'roast_fill',
  'fill_rest',
  'rest_dark',
  'dark_roast',
  'roast_put',
  'put_cup',
  'cup_front',
  'front_ask',
  'ask_fill',
  'fill_cup',
  'cup_dark',
  'dark_roast',
  'roast_order',
  'order_light',
  'light_roast',
  'roast_said',
  'said_ran',
  'ran_light',
  'light_roast',
  'roast_use',
  'use_dark',
  'dark_roast',
  'roast_top',
  'top_told',
  'told_drink',
  'drink_dark',
  'dark_roast',
  'roast_respond',
  'respond_make',
  'make_differ',
  'differ_feel',
  'feel_like',
  'like_put',
  'put_new',
  'new_pot',
  'pot_would',
  'would_take',
  'take_min',
  'min_told',
  'told_label',
  'label_differ',
  'differ_wouldv',
  'wouldv_wait',
  'wait_fresh',
  'fresh_pot',
  'pot_order',
  'order_someth',
  'someth_els',
  'els_gave',
  'gave_wtf',
  'wtf_look',
  'look_said',
  'said_industri',
  'industri_standard',
  'standard_walk',
  'walk_back',
  'back_come',
  'come_back',
  'back_sent',
  'sent_anoth',
  'anoth_worker',
  'worker_im',
  'im_friendli',
  'friendli_apolog',
  'apolog_got',
  'got_correct',
  'correct_coffe',
  'coffe_went',
  'went_today',
  'today_owner',
  'owner_half-jokingli',
  'half-jokingli_half-seri',
  'half-seri_ask',
  'ask_caus',
  'caus_problem',
  'problem_employe',
  'employe_feel',
  'feel_comfort',
  'comfort_go',
  'go_anymor',
  'anymor_im',
  'im_wonder',
  'wonder_realli',
  'realli_standard',
  'standard_practic',
  'practic_ah',
  'updat_httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar_&',
  'httpswwwredditcomuseranonymous_girlcommentsspaltdupdate_aita_for_asking_for_the_coffee_i_orderedutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_im',
  'utm_name=iossmf_im_regular',
  'im_regular_local',
  'regular_local_coffe',
  'local_coffe_shop',
  'coffe_shop_stop',
  'shop_stop_nearli',
  'stop_nearli_everyday',
  'nearli_everyday_lunch',
  'everyday_lunch_break',
  'lunch_break_ive',
  'break_ive_gotten',
  'ive_gotten_know',
  'gotten_know_owner',
  'know_owner_staff',
  'owner_staff_theyr',
  'staff_theyr_great',
  'theyr_great_usual',
  'great_usual_leav',
  'usual_leav_%',
  'leav_%_tip',
  '%_tip_yesterday',
  'tip_yesterday_went',
  'yesterday_went_girl',
  'went_girl_recogn',
  'girl_recogn_behind',
  'recogn_behind_counter',
  'behind_counter_assum',
  'counter_assum_new',
  'assum_new_place',
  'new_place_usual',
  'place_usual_order',
  'usual_order_medium',
  'order_medium_light',
  'medium_light_roast',
  'light_roast_coffe',
  'roast_coffe_black',
  'coffe_black_room',
  'black_room_turn',
  'room_turn_around',
  'turn_around_pour',
  'around_pour_coffe',
  'pour_coffe_notic',
  'coffe_notic_fill',
  'notic_fill_cup',
  'fill_cup_halfway',
  'cup_halfway_light',
  'halfway_light_roast',
  'light_roast_fill',
  'roast_fill_rest',
  'fill_rest_dark',
  'rest_dark_roast',
  'dark_roast_put',
  'roast_put_cup',
  'put_cup_front',
  'cup_front_ask',
  'front_ask_fill',
  'ask_fill_cup',
  'fill_cup_dark',
  'cup_dark_roast',
  'dark_roast_order',
  'roast_order_light',
  'order_light_roast',
  'light_roast_said',
  'roast_said_ran',
  'said_ran_light',
  'ran_light_roast',
  'light_roast_use',
  'roast_use_dark',
  'use_dark_roast',
  'dark_roast_top',
  'roast_top_told',
  'top_told_drink',
  'told_drink_dark',
  'drink_dark_roast',
  'dark_roast_respond',
  'roast_respond_make',
  'respond_make_differ',
  'make_differ_feel',
  'differ_feel_like',
  'feel_like_put',
  'like_put_new',
  'put_new_pot',
  'new_pot_would',
  'pot_would_take',
  'would_take_min',
  'take_min_told',
  'min_told_label',
  'told_label_differ',
  'label_differ_wouldv',
  'differ_wouldv_wait',
  'wouldv_wait_fresh',
  'wait_fresh_pot',
  'fresh_pot_order',
  'pot_order_someth',
  'order_someth_els',
  'someth_els_gave',
  'els_gave_wtf',
  'gave_wtf_look',
  'wtf_look_said',
  'look_said_industri',
  'said_industri_standard',
  'industri_standard_walk',
  'standard_walk_back',
  'walk_back_come',
  'back_come_back',
  'come_back_sent',
  'back_sent_anoth',
  'sent_anoth_worker',
  'anoth_worker_im',
  'worker_im_friendli',
  'im_friendli_apolog',
  'friendli_apolog_got',
  'apolog_got_correct',
  'got_correct_coffe',
  'correct_coffe_went',
  'coffe_went_today',
  'went_today_owner',
  'today_owner_half-jokingli',
  'owner_half-jokingli_half-seri',
  'half-jokingli_half-seri_ask',
  'half-seri_ask_caus',
  'ask_caus_problem',
  'caus_problem_employe',
  'problem_employe_feel',
  'employe_feel_comfort',
  'feel_comfort_go',
  'comfort_go_anymor',
  'go_anymor_im',
  'anymor_im_wonder',
  'im_wonder_realli',
  'wonder_realli_standard',
  'realli_standard_practic',
  'standard_practic_ah'],
 ['see',
  'bottom',
  'updat',
  'work',
  'tech',
  'compani',
  'im',
  'one',
  'two',
  'women',
  'technic',
  'role',
  'introvert',
  'great',
  'recruit',
  'everi',
  'time',
  'recruit',
  'event',
  'get',
  'volun-told',
  'especi',
  'frustrat',
  'whole',
  'team',
  'crunch',
  'time',
  'day',
  'spend',
  'recruit',
  'day',
  'make',
  'later',
  'recruit',
  'event',
  'local',
  'colleg',
  'young',
  'woman',
  'think',
  'appli',
  'ask',
  'divers',
  'compani',
  'look',
  'good',
  'panel',
  'promot',
  'materi',
  'side',
  'note',
  'almost',
  'everi',
  'person',
  'color',
  'woman',
  'queer',
  'present',
  'person',
  'promo',
  'materi',
  'either',
  'quit',
  'never',
  'work',
  'first',
  'place',
  'answer',
  'honestli',
  'front',
  'small',
  'group',
  'well',
  'two',
  'women',
  'technic',
  'role',
  'one',
  'sometim',
  'feel',
  'like',
  'work',
  'two',
  'job',
  'one',
  'engin',
  'one',
  'token',
  'girl',
  'engin',
  'get',
  'pull',
  'away',
  'work',
  'everi',
  'photo',
  'op',
  'recruit',
  'event',
  'honestli',
  'like',
  'trailblaz',
  'prepar',
  'take',
  'extra',
  'unspoken',
  'pr',
  'girl',
  'engin',
  'might',
  'find',
  'role',
  'fulfil',
  'prefer',
  'keep',
  'head',
  'focu',
  'technic',
  'side',
  'easier',
  'compani',
  'gender',
  'racial',
  'divers',
  'appreci',
  'honestli',
  'manag',
  'run',
  'event',
  'told',
  'leav',
  'meet',
  'hr',
  'manag',
  'tomorrow',
  'think',
  'opinion',
  'news',
  'ive',
  'alreadi',
  'told',
  'im',
  'interest',
  'assign',
  'photo',
  'op',
  'recruit',
  'disproportion',
  'gender',
  'ive',
  'told',
  'import',
  'help',
  'recruit',
  'divers',
  'staff',
  'sinc',
  'compani',
  'tri',
  'improv',
  'feel',
  'like',
  'theyr',
  'mad',
  'said',
  'quiet',
  'part',
  'loud',
  'recruit',
  'event',
  'honest',
  'answer',
  'question',
  'keep',
  'brought',
  'thing',
  'uniqu',
  'perspect',
  'whatnot',
  'think',
  'might',
  'also',
  'see',
  'someth',
  'good',
  'tri',
  'outreach',
  'divers',
  'applic',
  'pool',
  'see',
  'ruin',
  'aita',
  'said',
  'job',
  '--',
  '-upadt',
  'meet',
  '--',
  '-',
  'edit',
  '-',
  'meet',
  'record',
  'consent',
  'even',
  'though',
  'hard',
  'come',
  'agreement',
  'basic',
  'said',
  'understood',
  'ask',
  'recruit',
  'want',
  'femal',
  'applic',
  'felt',
  'could',
  'help',
  'recruit',
  'way',
  'men',
  'team',
  'want',
  'share',
  'uniqu',
  'perspect',
  'woman',
  'feild',
  'correct',
  'manag',
  'hr',
  'confirm',
  'said',
  'role',
  'often',
  'refer',
  'trailblaz',
  'also',
  'often',
  'refer',
  'token',
  'certain',
  'gender',
  'race',
  'either',
  'way',
  'role',
  'publicli',
  'present',
  'divers',
  'compani',
  'understood',
  'part',
  'role',
  'mandat',
  'manag',
  'assist',
  'recruit',
  'women',
  'said',
  'ask',
  'experi',
  'potenti',
  'applic',
  'answer',
  'felt',
  'honest',
  'way',
  'say',
  '-',
  'two',
  'women',
  '-',
  'feel',
  'top',
  'technic',
  'role',
  'role',
  'woman',
  'trailblaz',
  'token',
  'women',
  '-',
  'dual',
  'role',
  'appeal',
  'would',
  'good',
  'fit',
  'pure',
  'technic',
  'role',
  'appeal',
  'may',
  'good',
  'fit',
  'see',
  'similar',
  'recruit',
  'say',
  'fast',
  'pace',
  'role',
  'enjoy',
  'role',
  'would',
  'good',
  'fit',
  'may',
  'wonder',
  'call',
  'meet',
  'employe',
  'describ',
  'role',
  'sort',
  'person',
  'want',
  'fill',
  'role',
  'hr',
  'guy',
  'said',
  'token',
  'often',
  'seen',
  'neg',
  'connot',
  'deter',
  'applic',
  'said',
  'fast',
  'pace',
  'also',
  'seen',
  'neg',
  'peopl',
  'outsid',
  'oblig',
  'exampl',
  'understand',
  'frank',
  'natur',
  'role',
  'problem',
  'fact',
  'recruit',
  'often',
  'encourag',
  'frank',
  'attract',
  'candid',
  'genuin',
  'good',
  'match',
  'would',
  'help',
  'attract',
  'sort',
  'woman',
  'would',
  'like',
  'token',
  'femal',
  'engin',
  'deter',
  'type',
  'woman',
  'would',
  'manag',
  'got',
  'frustrat',
  'rais',
  'voic',
  'say',
  'nobodi',
  'want',
  'token',
  'honestli',
  'look',
  'shit',
  'face',
  'said',
  'realli',
  'track',
  'previou',
  'comment',
  'frequent',
  'said',
  'proud',
  'repres',
  'compani',
  'much',
  'need',
  'event',
  'sound',
  'like',
  'see',
  'admir',
  'much',
  'appreci',
  'role',
  'said',
  'smartass',
  'said',
  'apolog',
  'im',
  'frustrat',
  'number',
  'contradict',
  'messag',
  'around',
  'role',
  'frank',
  'job',
  'expect',
  'recruit',
  'good',
  'fit',
  'candid',
  'howev',
  'frank',
  'person',
  'job',
  'expect',
  'despit',
  'never',
  'commun',
  'hear',
  'proud',
  'happi',
  'repres',
  'compani',
  'femal',
  'engin',
  'attract',
  'women',
  'hear',
  'nobodi',
  'want',
  'shoe',
  'describ',
  'role',
  'deter',
  'applic',
  'hear',
  'compani',
  'make',
  'effort',
  'toward',
  'divers',
  'howev',
  'effort',
  'seem',
  'continu',
  'retent',
  'year',
  'four',
  'femal',
  'employe',
  'quit',
  'two',
  'hire',
  'rapidli',
  'quit',
  'retent',
  'rate',
  'far',
  'lower',
  'averag',
  'im',
  'frankli',
  'confus',
  'role',
  'compani',
  'want',
  'engin',
  'want',
  'token',
  'manag',
  'snap',
  'said',
  'engin',
  'said',
  'would',
  'like',
  'job',
  'duti',
  'reflect',
  'hr',
  'guy',
  'said',
  'permit',
  'publicli',
  'repres',
  'compani',
  'anymor',
  'said',
  'okay',
  'mad',
  'feel',
  'like',
  'manag',
  'piss',
  'im',
  'well',
  'along',
  'interview',
  'process',
  'sever',
  'compani',
  'hope',
  'problem',
  'anymor',
  'im',
  'quit',
  'till',
  'new',
  'offer',
  'sign',
  'im',
  'concern',
  'get',
  'fire',
  'get',
  'unemploy',
  'see_bottom',
  'bottom_updat',
  'updat_work',
  'work_tech',
  'tech_compani',
  'compani_im',
  'im_one',
  'one_two',
  'two_women',
  'women_technic',
  'technic_role',
  'role_introvert',
  'introvert_great',
  'great_recruit',
  'recruit_everi',
  'everi_time',
  'time_recruit',
  'recruit_event',
  'event_get',
  'get_volun-told',
  'volun-told_especi',
  'especi_frustrat',
  'frustrat_whole',
  'whole_team',
  'team_crunch',
  'crunch_time',
  'time_day',
  'day_spend',
  'spend_recruit',
  'recruit_day',
  'day_make',
  'make_later',
  'later_recruit',
  'recruit_event',
  'event_local',
  'local_colleg',
  'colleg_young',
  'young_woman',
  'woman_think',
  'think_appli',
  'appli_ask',
  'ask_divers',
  'divers_compani',
  'compani_look',
  'look_good',
  'good_panel',
  'panel_promot',
  'promot_materi',
  'materi_side',
  'side_note',
  'note_almost',
  'almost_everi',
  'everi_person',
  'person_color',
  'color_woman',
  'woman_queer',
  'queer_present',
  'present_person',
  'person_promo',
  'promo_materi',
  'materi_either',
  'either_quit',
  'quit_never',
  'never_work',
  'work_first',
  'first_place',
  'place_answer',
  'answer_honestli',
  'honestli_front',
  'front_small',
  'small_group',
  'group_well',
  'well_two',
  'two_women',
  'women_technic',
  'technic_role',
  'role_one',
  'one_sometim',
  'sometim_feel',
  'feel_like',
  'like_work',
  'work_two',
  'two_job',
  'job_one',
  'one_engin',
  'engin_one',
  'one_token',
  'token_girl',
  'girl_engin',
  'engin_get',
  'get_pull',
  'pull_away',
  'away_work',
  'work_everi',
  'everi_photo',
  'photo_op',
  'op_recruit',
  'recruit_event',
  'event_honestli',
  'honestli_like',
  'like_trailblaz',
  'trailblaz_prepar',
  'prepar_take',
  'take_extra',
  'extra_unspoken',
  'unspoken_pr',
  'pr_girl',
  'girl_engin',
  'engin_might',
  'might_find',
  'find_role',
  'role_fulfil',
  'fulfil_prefer',
  'prefer_keep',
  'keep_head',
  'head_focu',
  'focu_technic',
  'technic_side',
  'side_easier',
  'easier_compani',
  'compani_gender',
  'gender_racial',
  'racial_divers',
  'divers_appreci',
  'appreci_honestli',
  'honestli_manag',
  'manag_run',
  'run_event',
  'event_told',
  'told_leav',
  'leav_meet',
  'meet_hr',
  'hr_manag',
  'manag_tomorrow',
  'tomorrow_think',
  'think_opinion',
  'opinion_news',
  'news_ive',
  'ive_alreadi',
  'alreadi_told',
  'told_im',
  'im_interest',
  'interest_assign',
  'assign_photo',
  'photo_op',
  'op_recruit',
  'recruit_disproportion',
  'disproportion_gender',
  'gender_ive',
  'ive_told',
  'told_import',
  'import_help',
  'help_recruit',
  'recruit_divers',
  'divers_staff',
  'staff_sinc',
  'sinc_compani',
  'compani_tri',
  'tri_improv',
  'improv_feel',
  'feel_like',
  'like_theyr',
  'theyr_mad',
  'mad_said',
  'said_quiet',
  'quiet_part',
  'part_loud',
  'loud_recruit',
  'recruit_event',
  'event_honest',
  'honest_answer',
  'answer_question',
  'question_keep',
  'keep_brought',
  'brought_thing',
  'thing_uniqu',
  'uniqu_perspect',
  'perspect_whatnot',
  'whatnot_think',
  'think_might',
  'might_also',
  'also_see',
  'see_someth',
  'someth_good',
  'good_tri',
  'tri_outreach',
  'outreach_divers',
  'divers_applic',
  'applic_pool',
  'pool_see',
  'see_ruin',
  'ruin_aita',
  'aita_said',
  'said_job',
  'job_--',
  '--_-upadt',
  '-upadt_meet',
  'meet_--',
  '--_-',
  '-_edit',
  'edit_-',
  '-_meet',
  'meet_record',
  'record_consent',
  'consent_even',
  'even_though',
  'though_hard',
  'hard_come',
  'come_agreement',
  'agreement_basic',
  'basic_said',
  'said_understood',
  'understood_ask',
  'ask_recruit',
  'recruit_want',
  'want_femal',
  'femal_applic',
  'applic_felt',
  'felt_could',
  'could_help',
  'help_recruit',
  'recruit_way',
  'way_men',
  'men_team',
  'team_want',
  'want_share',
  'share_uniqu',
  'uniqu_perspect',
  'perspect_woman',
  'woman_feild',
  'feild_correct',
  'correct_manag',
  'manag_hr',
  'hr_confirm',
  'confirm_said',
  'said_role',
  'role_often',
  'often_refer',
  'refer_trailblaz',
  'trailblaz_also',
  'also_often',
  'often_refer',
  'refer_token',
  'token_certain',
  'certain_gender',
  'gender_race',
  'race_either',
  'either_way',
  'way_role',
  'role_publicli',
  'publicli_present',
  'present_divers',
  'divers_compani',
  'compani_understood',
  'understood_part',
  'part_role',
  'role_mandat',
  'mandat_manag',
  'manag_assist',
  'assist_recruit',
  'recruit_women',
  'women_said',
  'said_ask',
  'ask_experi',
  'experi_potenti',
  'potenti_applic',
  'applic_answer',
  'answer_felt',
  'felt_honest',
  'honest_way',
  'way_say',
  'say_-',
  '-_two',
  'two_women',
  'women_-',
  '-_feel',
  'feel_top',
  'top_technic',
  'technic_role',
  'role_role',
  'role_woman',
  'woman_trailblaz',
  'trailblaz_token',
  'token_women',
  'women_-',
  '-_dual',
  'dual_role',
  'role_appeal',
  'appeal_would',
  'would_good',
  'good_fit',
  'fit_pure',
  'pure_technic',
  'technic_role',
  'role_appeal',
  'appeal_may',
  'may_good',
  'good_fit',
  'fit_see',
  'see_similar',
  'similar_recruit',
  'recruit_say',
  'say_fast',
  'fast_pace',
  'pace_role',
  'role_enjoy',
  'enjoy_role',
  'role_would',
  'would_good',
  'good_fit',
  'fit_may',
  'may_wonder',
  'wonder_call',
  'call_meet',
  'meet_employe',
  'employe_describ',
  'describ_role',
  'role_sort',
  'sort_person',
  'person_want',
  'want_fill',
  'fill_role',
  'role_hr',
  'hr_guy',
  'guy_said',
  'said_token',
  'token_often',
  'often_seen',
  'seen_neg',
  'neg_connot',
  'connot_deter',
  'deter_applic',
  'applic_said',
  'said_fast',
  'fast_pace',
  'pace_also',
  'also_seen',
  'seen_neg',
  'neg_peopl',
  'peopl_outsid',
  'outsid_oblig',
  'oblig_exampl',
  'exampl_understand',
  'understand_frank',
  'frank_natur',
  'natur_role',
  'role_problem',
  'problem_fact',
  'fact_recruit',
  'recruit_often',
  'often_encourag',
  'encourag_frank',
  'frank_attract',
  'attract_candid',
  'candid_genuin',
  'genuin_good',
  'good_match',
  'match_would',
  'would_help',
  'help_attract',
  'attract_sort',
  'sort_woman',
  'woman_would',
  'would_like',
  'like_token',
  'token_femal',
  'femal_engin',
  'engin_deter',
  'deter_type',
  'type_woman',
  'woman_would',
  'would_manag',
  'manag_got',
  'got_frustrat',
  'frustrat_rais',
  'rais_voic',
  'voic_say',
  'say_nobodi',
  'nobodi_want',
  'want_token',
  'token_honestli',
  'honestli_look',
  'look_shit',
  'shit_face',
  'face_said',
  'said_realli',
  'realli_track',
  'track_previou',
  'previou_comment',
  'comment_frequent',
  'frequent_said',
  'said_proud',
  'proud_repres',
  'repres_compani',
  'compani_much',
  'much_need',
  'need_event',
  'event_sound',
  'sound_like',
  'like_see',
  'see_admir',
  'admir_much',
  'much_appreci',
  'appreci_role',
  'role_said',
  'said_smartass',
  'smartass_said',
  'said_apolog',
  'apolog_im',
  'im_frustrat',
  'frustrat_number',
  'number_contradict',
  'contradict_messag',
  'messag_around',
  'around_role',
  'role_frank',
  'frank_job',
  'job_expect',
  'expect_recruit',
  'recruit_good',
  'good_fit',
  'fit_candid',
  'candid_howev',
  'howev_frank',
  'frank_person',
  'person_job',
  'job_expect',
  'expect_despit',
  'despit_never',
  'never_commun',
  'commun_hear',
  'hear_proud',
  'proud_happi',
  'happi_repres',
  'repres_compani',
  'compani_femal',
  'femal_engin',
  'engin_attract',
  'attract_women',
  'women_hear',
  'hear_nobodi',
  'nobodi_want',
  'want_shoe',
  'shoe_describ',
  'describ_role',
  'role_deter',
  'deter_applic',
  'applic_hear',
  'hear_compani',
  'compani_make',
  'make_effort',
  'effort_toward',
  'toward_divers',
  'divers_howev',
  'howev_effort',
  'effort_seem',
  'seem_continu',
  'continu_retent',
  'retent_year',
  'year_four',
  'four_femal',
  'femal_employe',
  'employe_quit',
  'quit_two',
  'two_hire',
  'hire_rapidli',
  'rapidli_quit',
  'quit_retent',
  'retent_rate',
  'rate_far',
  'far_lower',
  ...],
 ['saw',
  'similar',
  'post',
  'hour',
  'ago',
  'want',
  'ask',
  'myf',
  'sister',
  'marri',
  'man',
  'twice',
  'age',
  'woman',
  'year',
  'got',
  'pregnant',
  'nephew',
  'year',
  'male',
  'husband',
  'ex-wif',
  'obvious',
  'kick',
  'oldest',
  'follow',
  'took',
  'month',
  'ago',
  'wife',
  'hous',
  'divorc',
  'ask',
  'stay',
  'year',
  'unlit',
  'theyr',
  'abl',
  'buy',
  'hous',
  'said',
  'ye',
  'honestli',
  'mind',
  'love',
  'nephew',
  'heart',
  'home',
  'famili',
  'home',
  'dad',
  'left',
  'quit',
  'big',
  'thing',
  'okay',
  'sister',
  'husband',
  'alway',
  'paid',
  'rent',
  'time',
  'son',
  'actual',
  'help',
  'around',
  'hous',
  'said',
  'love',
  'nephew',
  'happi',
  'sister',
  'around',
  'context',
  'im',
  'sex',
  'worker',
  'real',
  'life',
  'sister',
  'know',
  'never',
  'comment',
  'recent',
  'think',
  'famili',
  'happen',
  'sister',
  'step-son',
  'ill',
  'call',
  'aaron',
  'alway',
  'mess',
  'room',
  'okay',
  'space',
  'like',
  'notic',
  'start',
  'leav',
  'food',
  'drink',
  'around',
  'want',
  'rat',
  'cockroach',
  'hous',
  'ask',
  'bunch',
  'time',
  '*',
  'gentli',
  '*',
  'pleas',
  'clean',
  'room',
  'unsanitari',
  'live',
  'babi',
  'alway',
  'like',
  'yeah',
  'yeah',
  'dad',
  'sister',
  'ask',
  'fought',
  'said',
  'room',
  'clean',
  'sunday',
  'gon',
  'na',
  'throw',
  'away',
  'everyth',
  'find',
  'floor',
  'believ',
  'neither',
  'clean',
  'hire',
  'someon',
  'ask',
  'throw',
  'everyth',
  'away',
  'separ',
  'cloth',
  'bag',
  'food',
  'came',
  'back',
  'saw',
  'room',
  'got',
  'angri',
  'said',
  'right',
  'thing',
  'throw',
  'away',
  'like',
  '%',
  'cloth',
  'blabla',
  'threaten',
  'tell',
  'everyon',
  'whore',
  'taken',
  'aback',
  'ask',
  'meant',
  'said',
  'found',
  'gon',
  'na',
  'get',
  'video',
  'dunno',
  'send',
  'famili',
  'bitch',
  'teach',
  'bitch',
  'behav',
  'said',
  'room',
  'cleaner',
  'fuck',
  'dirti',
  'needl',
  'say',
  'kick',
  'sister',
  'defend',
  'impli',
  'brought',
  'kick',
  'crash',
  'couch',
  'husband',
  'got',
  'apt',
  'claim',
  'tell',
  'everyon',
  'ah',
  'eta',
  'im',
  'ask',
  'legal',
  'advic',
  'legal',
  'wrong',
  'saw_similar',
  'similar_post',
  'post_hour',
  'hour_ago',
  'ago_want',
  'want_ask',
  'ask_myf',
  'myf_sister',
  'sister_marri',
  'marri_man',
  'man_twice',
  'twice_age',
  'age_woman',
  'woman_year',
  'year_got',
  'got_pregnant',
  'pregnant_nephew',
  'nephew_year',
  'year_male',
  'male_husband',
  'husband_ex-wif',
  'ex-wif_obvious',
  'obvious_kick',
  'kick_oldest',
  'oldest_follow',
  'follow_took',
  'took_month',
  'month_ago',
  'ago_wife',
  'wife_hous',
  'hous_divorc',
  'divorc_ask',
  'ask_stay',
  'stay_year',
  'year_unlit',
  'unlit_theyr',
  'theyr_abl',
  'abl_buy',
  'buy_hous',
  'hous_said',
  'said_ye',
  'ye_honestli',
  'honestli_mind',
  'mind_love',
  'love_nephew',
  'nephew_heart',
  'heart_home',
  'home_famili',
  'famili_home',
  'home_dad',
  'dad_left',
  'left_quit',
  'quit_big',
  'big_thing',
  'thing_okay',
  'okay_sister',
  'sister_husband',
  'husband_alway',
  'alway_paid',
  'paid_rent',
  'rent_time',
  'time_son',
  'son_actual',
  'actual_help',
  'help_around',
  'around_hous',
  'hous_said',
  'said_love',
  'love_nephew',
  'nephew_happi',
  'happi_sister',
  'sister_around',
  'around_context',
  'context_im',
  'im_sex',
  'sex_worker',
  'worker_real',
  'real_life',
  'life_sister',
  'sister_know',
  'know_never',
  'never_comment',
  'comment_recent',
  'recent_think',
  'think_famili',
  'famili_happen',
  'happen_sister',
  'sister_step-son',
  'step-son_ill',
  'ill_call',
  'call_aaron',
  'aaron_alway',
  'alway_mess',
  'mess_room',
  'room_okay',
  'okay_space',
  'space_like',
  'like_notic',
  'notic_start',
  'start_leav',
  'leav_food',
  'food_drink',
  'drink_around',
  'around_want',
  'want_rat',
  'rat_cockroach',
  'cockroach_hous',
  'hous_ask',
  'ask_bunch',
  'bunch_time',
  'time_*',
  '*_gentli',
  'gentli_*',
  '*_pleas',
  'pleas_clean',
  'clean_room',
  'room_unsanitari',
  'unsanitari_live',
  'live_babi',
  'babi_alway',
  'alway_like',
  'like_yeah',
  'yeah_yeah',
  'yeah_dad',
  'dad_sister',
  'sister_ask',
  'ask_fought',
  'fought_said',
  'said_room',
  'room_clean',
  'clean_sunday',
  'sunday_gon',
  'gon_na',
  'na_throw',
  'throw_away',
  'away_everyth',
  'everyth_find',
  'find_floor',
  'floor_believ',
  'believ_neither',
  'neither_clean',
  'clean_hire',
  'hire_someon',
  'someon_ask',
  'ask_throw',
  'throw_everyth',
  'everyth_away',
  'away_separ',
  'separ_cloth',
  'cloth_bag',
  'bag_food',
  'food_came',
  'came_back',
  'back_saw',
  'saw_room',
  'room_got',
  'got_angri',
  'angri_said',
  'said_right',
  'right_thing',
  'thing_throw',
  'throw_away',
  'away_like',
  'like_%',
  '%_cloth',
  'cloth_blabla',
  'blabla_threaten',
  'threaten_tell',
  'tell_everyon',
  'everyon_whore',
  'whore_taken',
  'taken_aback',
  'aback_ask',
  'ask_meant',
  'meant_said',
  'said_found',
  'found_gon',
  'gon_na',
  'na_get',
  'get_video',
  'video_dunno',
  'dunno_send',
  'send_famili',
  'famili_bitch',
  'bitch_teach',
  'teach_bitch',
  'bitch_behav',
  'behav_said',
  'said_room',
  'room_cleaner',
  'cleaner_fuck',
  'fuck_dirti',
  'dirti_needl',
  'needl_say',
  'say_kick',
  'kick_sister',
  'sister_defend',
  'defend_impli',
  'impli_brought',
  'brought_kick',
  'kick_crash',
  'crash_couch',
  'couch_husband',
  'husband_got',
  'got_apt',
  'apt_claim',
  'claim_tell',
  'tell_everyon',
  'everyon_ah',
  'ah_eta',
  'eta_im',
  'im_ask',
  'ask_legal',
  'legal_advic',
  'advic_legal',
  'legal_wrong',
  'saw_similar_post',
  'similar_post_hour',
  'post_hour_ago',
  'hour_ago_want',
  'ago_want_ask',
  'want_ask_myf',
  'ask_myf_sister',
  'myf_sister_marri',
  'sister_marri_man',
  'marri_man_twice',
  'man_twice_age',
  'twice_age_woman',
  'age_woman_year',
  'woman_year_got',
  'year_got_pregnant',
  'got_pregnant_nephew',
  'pregnant_nephew_year',
  'nephew_year_male',
  'year_male_husband',
  'male_husband_ex-wif',
  'husband_ex-wif_obvious',
  'ex-wif_obvious_kick',
  'obvious_kick_oldest',
  'kick_oldest_follow',
  'oldest_follow_took',
  'follow_took_month',
  'took_month_ago',
  'month_ago_wife',
  'ago_wife_hous',
  'wife_hous_divorc',
  'hous_divorc_ask',
  'divorc_ask_stay',
  'ask_stay_year',
  'stay_year_unlit',
  'year_unlit_theyr',
  'unlit_theyr_abl',
  'theyr_abl_buy',
  'abl_buy_hous',
  'buy_hous_said',
  'hous_said_ye',
  'said_ye_honestli',
  'ye_honestli_mind',
  'honestli_mind_love',
  'mind_love_nephew',
  'love_nephew_heart',
  'nephew_heart_home',
  'heart_home_famili',
  'home_famili_home',
  'famili_home_dad',
  'home_dad_left',
  'dad_left_quit',
  'left_quit_big',
  'quit_big_thing',
  'big_thing_okay',
  'thing_okay_sister',
  'okay_sister_husband',
  'sister_husband_alway',
  'husband_alway_paid',
  'alway_paid_rent',
  'paid_rent_time',
  'rent_time_son',
  'time_son_actual',
  'son_actual_help',
  'actual_help_around',
  'help_around_hous',
  'around_hous_said',
  'hous_said_love',
  'said_love_nephew',
  'love_nephew_happi',
  'nephew_happi_sister',
  'happi_sister_around',
  'sister_around_context',
  'around_context_im',
  'context_im_sex',
  'im_sex_worker',
  'sex_worker_real',
  'worker_real_life',
  'real_life_sister',
  'life_sister_know',
  'sister_know_never',
  'know_never_comment',
  'never_comment_recent',
  'comment_recent_think',
  'recent_think_famili',
  'think_famili_happen',
  'famili_happen_sister',
  'happen_sister_step-son',
  'sister_step-son_ill',
  'step-son_ill_call',
  'ill_call_aaron',
  'call_aaron_alway',
  'aaron_alway_mess',
  'alway_mess_room',
  'mess_room_okay',
  'room_okay_space',
  'okay_space_like',
  'space_like_notic',
  'like_notic_start',
  'notic_start_leav',
  'start_leav_food',
  'leav_food_drink',
  'food_drink_around',
  'drink_around_want',
  'around_want_rat',
  'want_rat_cockroach',
  'rat_cockroach_hous',
  'cockroach_hous_ask',
  'hous_ask_bunch',
  'ask_bunch_time',
  'bunch_time_*',
  'time_*_gentli',
  '*_gentli_*',
  'gentli_*_pleas',
  '*_pleas_clean',
  'pleas_clean_room',
  'clean_room_unsanitari',
  'room_unsanitari_live',
  'unsanitari_live_babi',
  'live_babi_alway',
  'babi_alway_like',
  'alway_like_yeah',
  'like_yeah_yeah',
  'yeah_yeah_dad',
  'yeah_dad_sister',
  'dad_sister_ask',
  'sister_ask_fought',
  'ask_fought_said',
  'fought_said_room',
  'said_room_clean',
  'room_clean_sunday',
  'clean_sunday_gon',
  'sunday_gon_na',
  'gon_na_throw',
  'na_throw_away',
  'throw_away_everyth',
  'away_everyth_find',
  'everyth_find_floor',
  'find_floor_believ',
  'floor_believ_neither',
  'believ_neither_clean',
  'neither_clean_hire',
  'clean_hire_someon',
  'hire_someon_ask',
  'someon_ask_throw',
  'ask_throw_everyth',
  'throw_everyth_away',
  'everyth_away_separ',
  'away_separ_cloth',
  'separ_cloth_bag',
  'cloth_bag_food',
  'bag_food_came',
  'food_came_back',
  'came_back_saw',
  'back_saw_room',
  'saw_room_got',
  'room_got_angri',
  'got_angri_said',
  'angri_said_right',
  'said_right_thing',
  'right_thing_throw',
  'thing_throw_away',
  'throw_away_like',
  'away_like_%',
  'like_%_cloth',
  '%_cloth_blabla',
  'cloth_blabla_threaten',
  'blabla_threaten_tell',
  'threaten_tell_everyon',
  'tell_everyon_whore',
  'everyon_whore_taken',
  'whore_taken_aback',
  'taken_aback_ask',
  'aback_ask_meant',
  'ask_meant_said',
  'meant_said_found',
  'said_found_gon',
  'found_gon_na',
  'gon_na_get',
  'na_get_video',
  'get_video_dunno',
  'video_dunno_send',
  'dunno_send_famili',
  'send_famili_bitch',
  'famili_bitch_teach',
  'bitch_teach_bitch',
  'teach_bitch_behav',
  'bitch_behav_said',
  'behav_said_room',
  'said_room_cleaner',
  'room_cleaner_fuck',
  'cleaner_fuck_dirti',
  'fuck_dirti_needl',
  'dirti_needl_say',
  'needl_say_kick',
  'say_kick_sister',
  'kick_sister_defend',
  'sister_defend_impli',
  'defend_impli_brought',
  'impli_brought_kick',
  'brought_kick_crash',
  'kick_crash_couch',
  'crash_couch_husband',
  'couch_husband_got',
  'husband_got_apt',
  'got_apt_claim',
  'apt_claim_tell',
  'claim_tell_everyon',
  'tell_everyon_ah',
  'everyon_ah_eta',
  'ah_eta_im',
  'eta_im_ask',
  'im_ask_legal',
  'ask_legal_advic',
  'legal_advic_legal',
  'advic_legal_wrong'],
 ['son',
  'grew',
  'live',
  'ex-wif',
  'ex',
  'extrem',
  'high',
  'conflict',
  'due',
  'job',
  'lawyer',
  'use',
  'court',
  'inflict',
  'much',
  'damag',
  'life',
  'could',
  'never',
  'understand',
  'push',
  'divorc',
  'claim',
  'lost',
  'feel',
  'natur',
  'avoid',
  'share',
  'detail',
  'usual',
  'gave',
  'one',
  'word',
  'text',
  'repli',
  'thing',
  'involv',
  'son',
  'work',
  'son',
  'turn',
  'found',
  'son',
  'tell',
  'ex',
  'everyth',
  'hear',
  'home',
  'even',
  'record',
  'video',
  'send',
  'continu',
  'even',
  'therapi',
  'son',
  'explain',
  'damag',
  'over-shar',
  'wast',
  'thousand',
  'dollar',
  'pointless',
  'legal',
  'fight',
  'start',
  'pure',
  'son',
  'spi',
  'wife',
  'made',
  'decis',
  'longer',
  'share',
  'inform',
  'could',
  'potenti',
  'caus',
  'issu',
  'therapist',
  'suggest',
  'approach',
  'unfortun',
  'meant',
  'kept',
  'news',
  'promot',
  'vacat',
  'plan',
  'extend',
  'famili',
  'issu',
  'son',
  'found',
  'trip',
  'way',
  'continu',
  'son',
  'turn',
  'ex',
  'remarri',
  'remov',
  'focu',
  'son',
  'found',
  'purpos',
  'childhood',
  'furiou',
  'say',
  'treat',
  'outsid',
  'apolog',
  'profus',
  'wife',
  'tri',
  'explain',
  'refus',
  'give',
  'chanc',
  'resolv',
  'gone',
  'tirad',
  'parent',
  'sibl',
  'call',
  'neglig',
  'parent',
  'also',
  'told',
  'ex',
  'ex',
  'su',
  'someth',
  'complet',
  'unrel',
  'stand',
  'ill',
  'wast',
  'thousand',
  'lawyer',
  'anyway',
  'want',
  'aita',
  'son_grew',
  'grew_live',
  'live_ex-wif',
  'ex-wif_ex',
  'ex_extrem',
  'extrem_high',
  'high_conflict',
  'conflict_due',
  'due_job',
  'job_lawyer',
  'lawyer_use',
  'use_court',
  'court_inflict',
  'inflict_much',
  'much_damag',
  'damag_life',
  'life_could',
  'could_never',
  'never_understand',
  'understand_push',
  'push_divorc',
  'divorc_claim',
  'claim_lost',
  'lost_feel',
  'feel_natur',
  'natur_avoid',
  'avoid_share',
  'share_detail',
  'detail_usual',
  'usual_gave',
  'gave_one',
  'one_word',
  'word_text',
  'text_repli',
  'repli_thing',
  'thing_involv',
  'involv_son',
  'son_work',
  'work_son',
  'son_turn',
  'turn_found',
  'found_son',
  'son_tell',
  'tell_ex',
  'ex_everyth',
  'everyth_hear',
  'hear_home',
  'home_even',
  'even_record',
  'record_video',
  'video_send',
  'send_continu',
  'continu_even',
  'even_therapi',
  'therapi_son',
  'son_explain',
  'explain_damag',
  'damag_over-shar',
  'over-shar_wast',
  'wast_thousand',
  'thousand_dollar',
  'dollar_pointless',
  'pointless_legal',
  'legal_fight',
  'fight_start',
  'start_pure',
  'pure_son',
  'son_spi',
  'spi_wife',
  'wife_made',
  'made_decis',
  'decis_longer',
  'longer_share',
  'share_inform',
  'inform_could',
  'could_potenti',
  'potenti_caus',
  'caus_issu',
  'issu_therapist',
  'therapist_suggest',
  'suggest_approach',
  'approach_unfortun',
  'unfortun_meant',
  'meant_kept',
  'kept_news',
  'news_promot',
  'promot_vacat',
  'vacat_plan',
  'plan_extend',
  'extend_famili',
  'famili_issu',
  'issu_son',
  'son_found',
  'found_trip',
  'trip_way',
  'way_continu',
  'continu_son',
  'son_turn',
  'turn_ex',
  'ex_remarri',
  'remarri_remov',
  'remov_focu',
  'focu_son',
  'son_found',
  'found_purpos',
  'purpos_childhood',
  'childhood_furiou',
  'furiou_say',
  'say_treat',
  'treat_outsid',
  'outsid_apolog',
  'apolog_profus',
  'profus_wife',
  'wife_tri',
  'tri_explain',
  'explain_refus',
  'refus_give',
  'give_chanc',
  'chanc_resolv',
  'resolv_gone',
  'gone_tirad',
  'tirad_parent',
  'parent_sibl',
  'sibl_call',
  'call_neglig',
  'neglig_parent',
  'parent_also',
  'also_told',
  'told_ex',
  'ex_ex',
  'ex_su',
  'su_someth',
  'someth_complet',
  'complet_unrel',
  'unrel_stand',
  'stand_ill',
  'ill_wast',
  'wast_thousand',
  'thousand_lawyer',
  'lawyer_anyway',
  'anyway_want',
  'want_aita',
  'son_grew_live',
  'grew_live_ex-wif',
  'live_ex-wif_ex',
  'ex-wif_ex_extrem',
  'ex_extrem_high',
  'extrem_high_conflict',
  'high_conflict_due',
  'conflict_due_job',
  'due_job_lawyer',
  'job_lawyer_use',
  'lawyer_use_court',
  'use_court_inflict',
  'court_inflict_much',
  'inflict_much_damag',
  'much_damag_life',
  'damag_life_could',
  'life_could_never',
  'could_never_understand',
  'never_understand_push',
  'understand_push_divorc',
  'push_divorc_claim',
  'divorc_claim_lost',
  'claim_lost_feel',
  'lost_feel_natur',
  'feel_natur_avoid',
  'natur_avoid_share',
  'avoid_share_detail',
  'share_detail_usual',
  'detail_usual_gave',
  'usual_gave_one',
  'gave_one_word',
  'one_word_text',
  'word_text_repli',
  'text_repli_thing',
  'repli_thing_involv',
  'thing_involv_son',
  'involv_son_work',
  'son_work_son',
  'work_son_turn',
  'son_turn_found',
  'turn_found_son',
  'found_son_tell',
  'son_tell_ex',
  'tell_ex_everyth',
  'ex_everyth_hear',
  'everyth_hear_home',
  'hear_home_even',
  'home_even_record',
  'even_record_video',
  'record_video_send',
  'video_send_continu',
  'send_continu_even',
  'continu_even_therapi',
  'even_therapi_son',
  'therapi_son_explain',
  'son_explain_damag',
  'explain_damag_over-shar',
  'damag_over-shar_wast',
  'over-shar_wast_thousand',
  'wast_thousand_dollar',
  'thousand_dollar_pointless',
  'dollar_pointless_legal',
  'pointless_legal_fight',
  'legal_fight_start',
  'fight_start_pure',
  'start_pure_son',
  'pure_son_spi',
  'son_spi_wife',
  'spi_wife_made',
  'wife_made_decis',
  'made_decis_longer',
  'decis_longer_share',
  'longer_share_inform',
  'share_inform_could',
  'inform_could_potenti',
  'could_potenti_caus',
  'potenti_caus_issu',
  'caus_issu_therapist',
  'issu_therapist_suggest',
  'therapist_suggest_approach',
  'suggest_approach_unfortun',
  'approach_unfortun_meant',
  'unfortun_meant_kept',
  'meant_kept_news',
  'kept_news_promot',
  'news_promot_vacat',
  'promot_vacat_plan',
  'vacat_plan_extend',
  'plan_extend_famili',
  'extend_famili_issu',
  'famili_issu_son',
  'issu_son_found',
  'son_found_trip',
  'found_trip_way',
  'trip_way_continu',
  'way_continu_son',
  'continu_son_turn',
  'son_turn_ex',
  'turn_ex_remarri',
  'ex_remarri_remov',
  'remarri_remov_focu',
  'remov_focu_son',
  'focu_son_found',
  'son_found_purpos',
  'found_purpos_childhood',
  'purpos_childhood_furiou',
  'childhood_furiou_say',
  'furiou_say_treat',
  'say_treat_outsid',
  'treat_outsid_apolog',
  'outsid_apolog_profus',
  'apolog_profus_wife',
  'profus_wife_tri',
  'wife_tri_explain',
  'tri_explain_refus',
  'explain_refus_give',
  'refus_give_chanc',
  'give_chanc_resolv',
  'chanc_resolv_gone',
  'resolv_gone_tirad',
  'gone_tirad_parent',
  'tirad_parent_sibl',
  'parent_sibl_call',
  'sibl_call_neglig',
  'call_neglig_parent',
  'neglig_parent_also',
  'parent_also_told',
  'also_told_ex',
  'told_ex_ex',
  'ex_ex_su',
  'ex_su_someth',
  'su_someth_complet',
  'someth_complet_unrel',
  'complet_unrel_stand',
  'unrel_stand_ill',
  'stand_ill_wast',
  'ill_wast_thousand',
  'wast_thousand_lawyer',
  'thousand_lawyer_anyway',
  'lawyer_anyway_want',
  'anyway_want_aita'],
 ['husband',
  'togeth',
  'year',
  'month',
  'pregnant',
  'almost',
  'girl',
  'husband',
  'famili',
  'tradit',
  'name',
  'babi',
  'born',
  'name',
  'embroid',
  'onto',
  'blanket',
  'pass',
  'gener',
  'gener',
  'babi',
  'wrap',
  'blanket',
  'born',
  'im',
  'tri',
  'come',
  'name',
  'like',
  'name',
  'suggest',
  'reson',
  'husband',
  'get',
  'annoy',
  'late',
  'tell',
  'pick',
  'name',
  'babi',
  'grandmoth',
  'name',
  'beatric',
  'want',
  'name',
  'like',
  'want',
  'list',
  'name',
  'see',
  'name',
  'think',
  'appropri',
  'although',
  'sound',
  'odd',
  'want',
  'see',
  'name',
  'decid',
  'pleas',
  'famili',
  'honour',
  'late',
  'sister',
  'want',
  'name',
  'jessica',
  'name',
  'pass',
  'away',
  'heart',
  'attack',
  'mean',
  'lot',
  'told',
  'particular',
  'name',
  'want',
  'hear',
  'insult',
  'everi',
  'time',
  'suggest',
  'name',
  'hell',
  'attack',
  'call',
  'ugli',
  'varieti',
  'way',
  'today',
  'mother',
  'pressur',
  'suggest',
  'name',
  'blurt',
  'name',
  'jessica',
  'paus',
  'laugh',
  'said',
  'name',
  'larg',
  'girl',
  'unsuit',
  'name',
  'went',
  'ask',
  'want',
  'babi',
  'ugli',
  'tri',
  'ruin',
  'life',
  'even',
  'born',
  'initi',
  'overwhelm',
  'anger',
  'ask',
  'stop',
  'talk',
  'harshli',
  'right',
  'impli',
  'ugli',
  'beyonc',
  'annoy',
  'told',
  'leav',
  'hous',
  'want',
  'caus',
  'argument',
  'left',
  'return',
  'home',
  'husband',
  'explain',
  'extrem',
  'disappoint',
  'action',
  'look',
  'close',
  'sister',
  'struggl',
  'frustrat',
  'mother',
  'next',
  'day',
  'doorstep',
  'told',
  'decid',
  'name',
  'said',
  'decor',
  'tacki',
  'said',
  'name',
  'babi',
  'conni',
  'mother',
  'name',
  'neither',
  'husband',
  'pick',
  'caus',
  'argument',
  'us',
  'told',
  'ask',
  'leav',
  'eventu',
  'insult',
  'issu',
  'ask',
  'hubbi',
  'said',
  'right',
  'speak',
  'also',
  'open',
  'name',
  'suggest',
  'said',
  'incred',
  'selfish',
  'said',
  'go',
  'pack',
  'thing',
  'went',
  'older',
  'sister',
  'hous',
  'fume',
  'husband',
  'insult',
  'younger',
  'sister',
  'name',
  'tri',
  'contact',
  'day',
  'apologis',
  'want',
  'speak',
  'ive',
  'also',
  'decid',
  'im',
  'tell',
  'famili',
  'go',
  'labour',
  'must',
  'allow',
  'anywher',
  'near',
  'im',
  'birth',
  'child',
  'aita',
  'husband_togeth',
  'togeth_year',
  'year_month',
  'month_pregnant',
  'pregnant_almost',
  'almost_girl',
  'girl_husband',
  'husband_famili',
  'famili_tradit',
  'tradit_name',
  'name_babi',
  'babi_born',
  'born_name',
  'name_embroid',
  'embroid_onto',
  'onto_blanket',
  'blanket_pass',
  'pass_gener',
  'gener_gener',
  'gener_babi',
  'babi_wrap',
  'wrap_blanket',
  'blanket_born',
  'born_im',
  'im_tri',
  'tri_come',
  'come_name',
  'name_like',
  'like_name',
  'name_suggest',
  'suggest_reson',
  'reson_husband',
  'husband_get',
  'get_annoy',
  'annoy_late',
  'late_tell',
  'tell_pick',
  'pick_name',
  'name_babi',
  'babi_grandmoth',
  'grandmoth_name',
  'name_beatric',
  'beatric_want',
  'want_name',
  'name_like',
  'like_want',
  'want_list',
  'list_name',
  'name_see',
  'see_name',
  'name_think',
  'think_appropri',
  'appropri_although',
  'although_sound',
  'sound_odd',
  'odd_want',
  'want_see',
  'see_name',
  'name_decid',
  'decid_pleas',
  'pleas_famili',
  'famili_honour',
  'honour_late',
  'late_sister',
  'sister_want',
  'want_name',
  'name_jessica',
  'jessica_name',
  'name_pass',
  'pass_away',
  'away_heart',
  'heart_attack',
  'attack_mean',
  'mean_lot',
  'lot_told',
  'told_particular',
  'particular_name',
  'name_want',
  'want_hear',
  'hear_insult',
  'insult_everi',
  'everi_time',
  'time_suggest',
  'suggest_name',
  'name_hell',
  'hell_attack',
  'attack_call',
  'call_ugli',
  'ugli_varieti',
  'varieti_way',
  'way_today',
  'today_mother',
  'mother_pressur',
  'pressur_suggest',
  'suggest_name',
  'name_blurt',
  'blurt_name',
  'name_jessica',
  'jessica_paus',
  'paus_laugh',
  'laugh_said',
  'said_name',
  'name_larg',
  'larg_girl',
  'girl_unsuit',
  'unsuit_name',
  'name_went',
  'went_ask',
  'ask_want',
  'want_babi',
  'babi_ugli',
  'ugli_tri',
  'tri_ruin',
  'ruin_life',
  'life_even',
  'even_born',
  'born_initi',
  'initi_overwhelm',
  'overwhelm_anger',
  'anger_ask',
  'ask_stop',
  'stop_talk',
  'talk_harshli',
  'harshli_right',
  'right_impli',
  'impli_ugli',
  'ugli_beyonc',
  'beyonc_annoy',
  'annoy_told',
  'told_leav',
  'leav_hous',
  'hous_want',
  'want_caus',
  'caus_argument',
  'argument_left',
  'left_return',
  'return_home',
  'home_husband',
  'husband_explain',
  'explain_extrem',
  'extrem_disappoint',
  'disappoint_action',
  'action_look',
  'look_close',
  'close_sister',
  'sister_struggl',
  'struggl_frustrat',
  'frustrat_mother',
  'mother_next',
  'next_day',
  'day_doorstep',
  'doorstep_told',
  'told_decid',
  'decid_name',
  'name_said',
  'said_decor',
  'decor_tacki',
  'tacki_said',
  'said_name',
  'name_babi',
  'babi_conni',
  'conni_mother',
  'mother_name',
  'name_neither',
  'neither_husband',
  'husband_pick',
  'pick_caus',
  'caus_argument',
  'argument_us',
  'us_told',
  'told_ask',
  'ask_leav',
  'leav_eventu',
  'eventu_insult',
  'insult_issu',
  'issu_ask',
  'ask_hubbi',
  'hubbi_said',
  'said_right',
  'right_speak',
  'speak_also',
  'also_open',
  'open_name',
  'name_suggest',
  'suggest_said',
  'said_incred',
  'incred_selfish',
  'selfish_said',
  'said_go',
  'go_pack',
  'pack_thing',
  'thing_went',
  'went_older',
  'older_sister',
  'sister_hous',
  'hous_fume',
  'fume_husband',
  'husband_insult',
  'insult_younger',
  'younger_sister',
  'sister_name',
  'name_tri',
  'tri_contact',
  'contact_day',
  'day_apologis',
  'apologis_want',
  'want_speak',
  'speak_ive',
  'ive_also',
  'also_decid',
  'decid_im',
  'im_tell',
  'tell_famili',
  'famili_go',
  'go_labour',
  'labour_must',
  'must_allow',
  'allow_anywher',
  'anywher_near',
  'near_im',
  'im_birth',
  'birth_child',
  'child_aita',
  'husband_togeth_year',
  'togeth_year_month',
  'year_month_pregnant',
  'month_pregnant_almost',
  'pregnant_almost_girl',
  'almost_girl_husband',
  'girl_husband_famili',
  'husband_famili_tradit',
  'famili_tradit_name',
  'tradit_name_babi',
  'name_babi_born',
  'babi_born_name',
  'born_name_embroid',
  'name_embroid_onto',
  'embroid_onto_blanket',
  'onto_blanket_pass',
  'blanket_pass_gener',
  'pass_gener_gener',
  'gener_gener_babi',
  'gener_babi_wrap',
  'babi_wrap_blanket',
  'wrap_blanket_born',
  'blanket_born_im',
  'born_im_tri',
  'im_tri_come',
  'tri_come_name',
  'come_name_like',
  'name_like_name',
  'like_name_suggest',
  'name_suggest_reson',
  'suggest_reson_husband',
  'reson_husband_get',
  'husband_get_annoy',
  'get_annoy_late',
  'annoy_late_tell',
  'late_tell_pick',
  'tell_pick_name',
  'pick_name_babi',
  'name_babi_grandmoth',
  'babi_grandmoth_name',
  'grandmoth_name_beatric',
  'name_beatric_want',
  'beatric_want_name',
  'want_name_like',
  'name_like_want',
  'like_want_list',
  'want_list_name',
  'list_name_see',
  'name_see_name',
  'see_name_think',
  'name_think_appropri',
  'think_appropri_although',
  'appropri_although_sound',
  'although_sound_odd',
  'sound_odd_want',
  'odd_want_see',
  'want_see_name',
  'see_name_decid',
  'name_decid_pleas',
  'decid_pleas_famili',
  'pleas_famili_honour',
  'famili_honour_late',
  'honour_late_sister',
  'late_sister_want',
  'sister_want_name',
  'want_name_jessica',
  'name_jessica_name',
  'jessica_name_pass',
  'name_pass_away',
  'pass_away_heart',
  'away_heart_attack',
  'heart_attack_mean',
  'attack_mean_lot',
  'mean_lot_told',
  'lot_told_particular',
  'told_particular_name',
  'particular_name_want',
  'name_want_hear',
  'want_hear_insult',
  'hear_insult_everi',
  'insult_everi_time',
  'everi_time_suggest',
  'time_suggest_name',
  'suggest_name_hell',
  'name_hell_attack',
  'hell_attack_call',
  'attack_call_ugli',
  'call_ugli_varieti',
  'ugli_varieti_way',
  'varieti_way_today',
  'way_today_mother',
  'today_mother_pressur',
  'mother_pressur_suggest',
  'pressur_suggest_name',
  'suggest_name_blurt',
  'name_blurt_name',
  'blurt_name_jessica',
  'name_jessica_paus',
  'jessica_paus_laugh',
  'paus_laugh_said',
  'laugh_said_name',
  'said_name_larg',
  'name_larg_girl',
  'larg_girl_unsuit',
  'girl_unsuit_name',
  'unsuit_name_went',
  'name_went_ask',
  'went_ask_want',
  'ask_want_babi',
  'want_babi_ugli',
  'babi_ugli_tri',
  'ugli_tri_ruin',
  'tri_ruin_life',
  'ruin_life_even',
  'life_even_born',
  'even_born_initi',
  'born_initi_overwhelm',
  'initi_overwhelm_anger',
  'overwhelm_anger_ask',
  'anger_ask_stop',
  'ask_stop_talk',
  'stop_talk_harshli',
  'talk_harshli_right',
  'harshli_right_impli',
  'right_impli_ugli',
  'impli_ugli_beyonc',
  'ugli_beyonc_annoy',
  'beyonc_annoy_told',
  'annoy_told_leav',
  'told_leav_hous',
  'leav_hous_want',
  'hous_want_caus',
  'want_caus_argument',
  'caus_argument_left',
  'argument_left_return',
  'left_return_home',
  'return_home_husband',
  'home_husband_explain',
  'husband_explain_extrem',
  'explain_extrem_disappoint',
  'extrem_disappoint_action',
  'disappoint_action_look',
  'action_look_close',
  'look_close_sister',
  'close_sister_struggl',
  'sister_struggl_frustrat',
  'struggl_frustrat_mother',
  'frustrat_mother_next',
  'mother_next_day',
  'next_day_doorstep',
  'day_doorstep_told',
  'doorstep_told_decid',
  'told_decid_name',
  'decid_name_said',
  'name_said_decor',
  'said_decor_tacki',
  'decor_tacki_said',
  'tacki_said_name',
  'said_name_babi',
  'name_babi_conni',
  'babi_conni_mother',
  'conni_mother_name',
  'mother_name_neither',
  'name_neither_husband',
  'neither_husband_pick',
  'husband_pick_caus',
  'pick_caus_argument',
  'caus_argument_us',
  'argument_us_told',
  'us_told_ask',
  'told_ask_leav',
  'ask_leav_eventu',
  'leav_eventu_insult',
  'eventu_insult_issu',
  'insult_issu_ask',
  'issu_ask_hubbi',
  'ask_hubbi_said',
  'hubbi_said_right',
  'said_right_speak',
  'right_speak_also',
  'speak_also_open',
  'also_open_name',
  'open_name_suggest',
  'name_suggest_said',
  'suggest_said_incred',
  'said_incred_selfish',
  'incred_selfish_said',
  'selfish_said_go',
  'said_go_pack',
  'go_pack_thing',
  'pack_thing_went',
  'thing_went_older',
  'went_older_sister',
  'older_sister_hous',
  'sister_hous_fume',
  'hous_fume_husband',
  'fume_husband_insult',
  'husband_insult_younger',
  'insult_younger_sister',
  'younger_sister_name',
  'sister_name_tri',
  'name_tri_contact',
  'tri_contact_day',
  'contact_day_apologis',
  'day_apologis_want',
  'apologis_want_speak',
  'want_speak_ive',
  'speak_ive_also',
  'ive_also_decid',
  'also_decid_im',
  'decid_im_tell',
  'im_tell_famili',
  'tell_famili_go',
  'famili_go_labour',
  'go_labour_must',
  'labour_must_allow',
  'must_allow_anywher',
  'allow_anywher_near',
  'anywher_near_im',
  'near_im_birth',
  'im_birth_child',
  'birth_child_aita'],
 ['marri',
  'ex',
  'year',
  'divorc',
  'went',
  'separ',
  'way',
  'year',
  'ago',
  'divorc',
  'kept',
  'surnam',
  'necessarili',
  'like',
  'felt',
  'like',
  'still',
  'attach',
  'famili',
  'could',
  'understand',
  'practic',
  'reason',
  'enough',
  'let',
  'bother',
  'recent',
  'gave',
  'birth',
  'babi',
  'post',
  'pictur',
  'said',
  'child',
  'reveal',
  'name',
  'friend',
  'sent',
  'comment',
  'surnam',
  'ask',
  'knock',
  'follow',
  'four',
  'peopl',
  'directli',
  'contact',
  'either',
  'congratul',
  'ask',
  'confirm',
  'whether',
  'child',
  'mother',
  'say',
  'catch',
  'whisper',
  'church',
  'bump',
  'sister',
  'town',
  'obvious',
  'congratul',
  'ask',
  'kid',
  'name',
  'said',
  'name',
  'ask',
  'surnam',
  'confirm',
  'child',
  'legal',
  'surnam',
  'obvious',
  'xyz',
  '[',
  'mine',
  ']',
  'ask',
  'problem',
  'piss',
  'surnam',
  'uniqu',
  'especi',
  'area',
  'sinc',
  'famili',
  'origin',
  'peopl',
  'hear',
  'surnam',
  'natur',
  'think',
  'famili',
  'assum',
  'kid',
  'fuck',
  'wors',
  'father',
  'appar',
  'pictur',
  'know',
  'fuck',
  'go',
  'straight',
  'said',
  'fuck',
  'weird',
  'give',
  'newborn',
  'surnam',
  'man',
  'divorc',
  'way',
  'link',
  'kid',
  'sound',
  'almost',
  'obsess',
  'said',
  'gave',
  'daughter',
  'surnam',
  'mother',
  'mine',
  'asshol',
  'edit',
  'children',
  'one',
  'child',
  'apart',
  'one',
  'previou',
  'saw',
  'ask',
  'comment',
  'answer',
  'also',
  'surnam',
  'impact',
  'profession',
  'know',
  'father',
  'surnam',
  'use',
  'marri_ex',
  'ex_year',
  'year_divorc',
  'divorc_went',
  'went_separ',
  'separ_way',
  'way_year',
  'year_ago',
  'ago_divorc',
  'divorc_kept',
  'kept_surnam',
  'surnam_necessarili',
  'necessarili_like',
  'like_felt',
  'felt_like',
  'like_still',
  'still_attach',
  'attach_famili',
  'famili_could',
  'could_understand',
  'understand_practic',
  'practic_reason',
  'reason_enough',
  'enough_let',
  'let_bother',
  'bother_recent',
  'recent_gave',
  'gave_birth',
  'birth_babi',
  'babi_post',
  'post_pictur',
  'pictur_said',
  'said_child',
  'child_reveal',
  'reveal_name',
  'name_friend',
  'friend_sent',
  'sent_comment',
  'comment_surnam',
  'surnam_ask',
  'ask_knock',
  'knock_follow',
  'follow_four',
  'four_peopl',
  'peopl_directli',
  'directli_contact',
  'contact_either',
  'either_congratul',
  'congratul_ask',
  'ask_confirm',
  'confirm_whether',
  'whether_child',
  'child_mother',
  'mother_say',
  'say_catch',
  'catch_whisper',
  'whisper_church',
  'church_bump',
  'bump_sister',
  'sister_town',
  'town_obvious',
  'obvious_congratul',
  'congratul_ask',
  'ask_kid',
  'kid_name',
  'name_said',
  'said_name',
  'name_ask',
  'ask_surnam',
  'surnam_confirm',
  'confirm_child',
  'child_legal',
  'legal_surnam',
  'surnam_obvious',
  'obvious_xyz',
  'xyz_[',
  '[_mine',
  'mine_]',
  ']_ask',
  'ask_problem',
  'problem_piss',
  'piss_surnam',
  'surnam_uniqu',
  'uniqu_especi',
  'especi_area',
  'area_sinc',
  'sinc_famili',
  'famili_origin',
  'origin_peopl',
  'peopl_hear',
  'hear_surnam',
  'surnam_natur',
  'natur_think',
  'think_famili',
  'famili_assum',
  'assum_kid',
  'kid_fuck',
  'fuck_wors',
  'wors_father',
  'father_appar',
  'appar_pictur',
  'pictur_know',
  'know_fuck',
  'fuck_go',
  'go_straight',
  'straight_said',
  'said_fuck',
  'fuck_weird',
  'weird_give',
  'give_newborn',
  'newborn_surnam',
  'surnam_man',
  'man_divorc',
  'divorc_way',
  'way_link',
  'link_kid',
  'kid_sound',
  'sound_almost',
  'almost_obsess',
  'obsess_said',
  'said_gave',
  'gave_daughter',
  'daughter_surnam',
  'surnam_mother',
  'mother_mine',
  'mine_asshol',
  'asshol_edit',
  'edit_children',
  'children_one',
  'one_child',
  'child_apart',
  'apart_one',
  'one_previou',
  'previou_saw',
  'saw_ask',
  'ask_comment',
  'comment_answer',
  'answer_also',
  'also_surnam',
  'surnam_impact',
  'impact_profession',
  'profession_know',
  'know_father',
  'father_surnam',
  'surnam_use',
  'marri_ex_year',
  'ex_year_divorc',
  'year_divorc_went',
  'divorc_went_separ',
  'went_separ_way',
  'separ_way_year',
  'way_year_ago',
  'year_ago_divorc',
  'ago_divorc_kept',
  'divorc_kept_surnam',
  'kept_surnam_necessarili',
  'surnam_necessarili_like',
  'necessarili_like_felt',
  'like_felt_like',
  'felt_like_still',
  'like_still_attach',
  'still_attach_famili',
  'attach_famili_could',
  'famili_could_understand',
  'could_understand_practic',
  'understand_practic_reason',
  'practic_reason_enough',
  'reason_enough_let',
  'enough_let_bother',
  'let_bother_recent',
  'bother_recent_gave',
  'recent_gave_birth',
  'gave_birth_babi',
  'birth_babi_post',
  'babi_post_pictur',
  'post_pictur_said',
  'pictur_said_child',
  'said_child_reveal',
  'child_reveal_name',
  'reveal_name_friend',
  'name_friend_sent',
  'friend_sent_comment',
  'sent_comment_surnam',
  'comment_surnam_ask',
  'surnam_ask_knock',
  'ask_knock_follow',
  'knock_follow_four',
  'follow_four_peopl',
  'four_peopl_directli',
  'peopl_directli_contact',
  'directli_contact_either',
  'contact_either_congratul',
  'either_congratul_ask',
  'congratul_ask_confirm',
  'ask_confirm_whether',
  'confirm_whether_child',
  'whether_child_mother',
  'child_mother_say',
  'mother_say_catch',
  'say_catch_whisper',
  'catch_whisper_church',
  'whisper_church_bump',
  'church_bump_sister',
  'bump_sister_town',
  'sister_town_obvious',
  'town_obvious_congratul',
  'obvious_congratul_ask',
  'congratul_ask_kid',
  'ask_kid_name',
  'kid_name_said',
  'name_said_name',
  'said_name_ask',
  'name_ask_surnam',
  'ask_surnam_confirm',
  'surnam_confirm_child',
  'confirm_child_legal',
  'child_legal_surnam',
  'legal_surnam_obvious',
  'surnam_obvious_xyz',
  'obvious_xyz_[',
  'xyz_[_mine',
  '[_mine_]',
  'mine_]_ask',
  ']_ask_problem',
  'ask_problem_piss',
  'problem_piss_surnam',
  'piss_surnam_uniqu',
  'surnam_uniqu_especi',
  'uniqu_especi_area',
  'especi_area_sinc',
  'area_sinc_famili',
  'sinc_famili_origin',
  'famili_origin_peopl',
  'origin_peopl_hear',
  'peopl_hear_surnam',
  'hear_surnam_natur',
  'surnam_natur_think',
  'natur_think_famili',
  'think_famili_assum',
  'famili_assum_kid',
  'assum_kid_fuck',
  'kid_fuck_wors',
  'fuck_wors_father',
  'wors_father_appar',
  'father_appar_pictur',
  'appar_pictur_know',
  'pictur_know_fuck',
  'know_fuck_go',
  'fuck_go_straight',
  'go_straight_said',
  'straight_said_fuck',
  'said_fuck_weird',
  'fuck_weird_give',
  'weird_give_newborn',
  'give_newborn_surnam',
  'newborn_surnam_man',
  'surnam_man_divorc',
  'man_divorc_way',
  'divorc_way_link',
  'way_link_kid',
  'link_kid_sound',
  'kid_sound_almost',
  'sound_almost_obsess',
  'almost_obsess_said',
  'obsess_said_gave',
  'said_gave_daughter',
  'gave_daughter_surnam',
  'daughter_surnam_mother',
  'surnam_mother_mine',
  'mother_mine_asshol',
  'mine_asshol_edit',
  'asshol_edit_children',
  'edit_children_one',
  'children_one_child',
  'one_child_apart',
  'child_apart_one',
  'apart_one_previou',
  'one_previou_saw',
  'previou_saw_ask',
  'saw_ask_comment',
  'ask_comment_answer',
  'comment_answer_also',
  'answer_also_surnam',
  'also_surnam_impact',
  'surnam_impact_profession',
  'impact_profession_know',
  'profession_know_father',
  'know_father_surnam',
  'father_surnam_use'],
 ['updat',
  '[',
  ']',
  'httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'relationship',
  'wife',
  'sam',
  'rocki',
  'sinc',
  'son',
  'oliv',
  'born',
  'two',
  'year',
  'ago',
  'got',
  'pregnant',
  'month',
  'got',
  'marri',
  'thing',
  'fine',
  'oliv',
  'deliveri',
  'assum',
  'postpartum',
  'depress',
  'sam',
  'never',
  'sought',
  'specif',
  'diagnosi',
  'born',
  'like',
  'care',
  'less',
  'child',
  'plan',
  'children',
  'earli',
  'marriag',
  'scari',
  'cant',
  'describ',
  'all-encompass',
  'love',
  'come',
  'parent',
  'fear',
  'worth',
  'still',
  'alway',
  'throughout',
  'oliv',
  'life',
  'especi',
  'first',
  'year',
  'essenti',
  'act',
  'singl',
  'parent',
  'help',
  'mean',
  'sound',
  'diminish',
  'man',
  'godsend',
  'best',
  'friend',
  'matt',
  'plan',
  'oliv',
  'breastf',
  'wife',
  'interest',
  'born',
  'one',
  'chang',
  'diaper',
  'mix',
  'formula',
  'bottl',
  'hous',
  'share',
  'felt',
  'oppress',
  'like',
  'joy',
  'bond',
  'son',
  'suck',
  'energi',
  'would',
  'take',
  'oliv',
  'matt',
  'want',
  'rambl',
  'long',
  'exactli',
  'zero',
  'time',
  'life',
  'matt',
  'shown',
  'ive',
  'known',
  'sinc',
  'safe',
  'say',
  'even',
  'time',
  'wonder',
  'thing',
  'given',
  'could',
  'sleep',
  'soundli',
  'know',
  'babi',
  'would',
  'taken',
  'care',
  'place',
  'refug',
  'good',
  'oliv',
  'shoulder',
  'cri',
  'think',
  'ill',
  'ever',
  'abl',
  'repay',
  'im',
  'definit',
  'tri',
  'everi',
  'singl',
  'day',
  'thing',
  'wife',
  'kind',
  'start',
  'look',
  'recent',
  'event',
  'sent',
  'us',
  'huge',
  'downward',
  'spiral',
  'oliv',
  'speech',
  'delay',
  'realli',
  'pick',
  'thing',
  'third',
  'birthday',
  'near',
  'babbl',
  'dadada',
  'toward',
  'matt',
  'daddi',
  'sinc',
  'ad',
  'vocabulari',
  'use',
  'refer',
  'us',
  'never',
  'correct',
  'check',
  'matt',
  'make',
  'sure',
  'fine',
  'said',
  'honor',
  'bestow',
  'titl',
  'sam',
  'got',
  'hear',
  'recent',
  'facetim',
  'matt',
  'basic',
  'went',
  'ballist',
  'much',
  'hate',
  'admit',
  'say',
  'parent',
  'true',
  'hurt',
  'need',
  'outsid',
  'opinion',
  'aita',
  'allow',
  'call',
  'dad',
  'updat_[',
  '[_]',
  ']_httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar',
  'httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_relationship',
  'relationship_wife',
  'wife_sam',
  'sam_rocki',
  'rocki_sinc',
  'sinc_son',
  'son_oliv',
  'oliv_born',
  'born_two',
  'two_year',
  'year_ago',
  'ago_got',
  'got_pregnant',
  'pregnant_month',
  'month_got',
  'got_marri',
  'marri_thing',
  'thing_fine',
  'fine_oliv',
  'oliv_deliveri',
  'deliveri_assum',
  'assum_postpartum',
  'postpartum_depress',
  'depress_sam',
  'sam_never',
  'never_sought',
  'sought_specif',
  'specif_diagnosi',
  'diagnosi_born',
  'born_like',
  'like_care',
  'care_less',
  'less_child',
  'child_plan',
  'plan_children',
  'children_earli',
  'earli_marriag',
  'marriag_scari',
  'scari_cant',
  'cant_describ',
  'describ_all-encompass',
  'all-encompass_love',
  'love_come',
  'come_parent',
  'parent_fear',
  'fear_worth',
  'worth_still',
  'still_alway',
  'alway_throughout',
  'throughout_oliv',
  'oliv_life',
  'life_especi',
  'especi_first',
  'first_year',
  'year_essenti',
  'essenti_act',
  'act_singl',
  'singl_parent',
  'parent_help',
  'help_mean',
  'mean_sound',
  'sound_diminish',
  'diminish_man',
  'man_godsend',
  'godsend_best',
  'best_friend',
  'friend_matt',
  'matt_plan',
  'plan_oliv',
  'oliv_breastf',
  'breastf_wife',
  'wife_interest',
  'interest_born',
  'born_one',
  'one_chang',
  'chang_diaper',
  'diaper_mix',
  'mix_formula',
  'formula_bottl',
  'bottl_hous',
  'hous_share',
  'share_felt',
  'felt_oppress',
  'oppress_like',
  'like_joy',
  'joy_bond',
  'bond_son',
  'son_suck',
  'suck_energi',
  'energi_would',
  'would_take',
  'take_oliv',
  'oliv_matt',
  'matt_want',
  'want_rambl',
  'rambl_long',
  'long_exactli',
  'exactli_zero',
  'zero_time',
  'time_life',
  'life_matt',
  'matt_shown',
  'shown_ive',
  'ive_known',
  'known_sinc',
  'sinc_safe',
  'safe_say',
  'say_even',
  'even_time',
  'time_wonder',
  'wonder_thing',
  'thing_given',
  'given_could',
  'could_sleep',
  'sleep_soundli',
  'soundli_know',
  'know_babi',
  'babi_would',
  'would_taken',
  'taken_care',
  'care_place',
  'place_refug',
  'refug_good',
  'good_oliv',
  'oliv_shoulder',
  'shoulder_cri',
  'cri_think',
  'think_ill',
  'ill_ever',
  'ever_abl',
  'abl_repay',
  'repay_im',
  'im_definit',
  'definit_tri',
  'tri_everi',
  'everi_singl',
  'singl_day',
  'day_thing',
  'thing_wife',
  'wife_kind',
  'kind_start',
  'start_look',
  'look_recent',
  'recent_event',
  'event_sent',
  'sent_us',
  'us_huge',
  'huge_downward',
  'downward_spiral',
  'spiral_oliv',
  'oliv_speech',
  'speech_delay',
  'delay_realli',
  'realli_pick',
  'pick_thing',
  'thing_third',
  'third_birthday',
  'birthday_near',
  'near_babbl',
  'babbl_dadada',
  'dadada_toward',
  'toward_matt',
  'matt_daddi',
  'daddi_sinc',
  'sinc_ad',
  'ad_vocabulari',
  'vocabulari_use',
  'use_refer',
  'refer_us',
  'us_never',
  'never_correct',
  'correct_check',
  'check_matt',
  'matt_make',
  'make_sure',
  'sure_fine',
  'fine_said',
  'said_honor',
  'honor_bestow',
  'bestow_titl',
  'titl_sam',
  'sam_got',
  'got_hear',
  'hear_recent',
  'recent_facetim',
  'facetim_matt',
  'matt_basic',
  'basic_went',
  'went_ballist',
  'ballist_much',
  'much_hate',
  'hate_admit',
  'admit_say',
  'say_parent',
  'parent_true',
  'true_hurt',
  'hurt_need',
  'need_outsid',
  'outsid_opinion',
  'opinion_aita',
  'aita_allow',
  'allow_call',
  'call_dad',
  'updat_[_]',
  '[_]_httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar',
  ']_httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentswuwseupdate_aita_for_letting_my_son_call_my_bestutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_relationship',
  'utm_name=iossmf_relationship_wife',
  'relationship_wife_sam',
  'wife_sam_rocki',
  'sam_rocki_sinc',
  'rocki_sinc_son',
  'sinc_son_oliv',
  'son_oliv_born',
  'oliv_born_two',
  'born_two_year',
  'two_year_ago',
  'year_ago_got',
  'ago_got_pregnant',
  'got_pregnant_month',
  'pregnant_month_got',
  'month_got_marri',
  'got_marri_thing',
  'marri_thing_fine',
  'thing_fine_oliv',
  'fine_oliv_deliveri',
  'oliv_deliveri_assum',
  'deliveri_assum_postpartum',
  'assum_postpartum_depress',
  'postpartum_depress_sam',
  'depress_sam_never',
  'sam_never_sought',
  'never_sought_specif',
  'sought_specif_diagnosi',
  'specif_diagnosi_born',
  'diagnosi_born_like',
  'born_like_care',
  'like_care_less',
  'care_less_child',
  'less_child_plan',
  'child_plan_children',
  'plan_children_earli',
  'children_earli_marriag',
  'earli_marriag_scari',
  'marriag_scari_cant',
  'scari_cant_describ',
  'cant_describ_all-encompass',
  'describ_all-encompass_love',
  'all-encompass_love_come',
  'love_come_parent',
  'come_parent_fear',
  'parent_fear_worth',
  'fear_worth_still',
  'worth_still_alway',
  'still_alway_throughout',
  'alway_throughout_oliv',
  'throughout_oliv_life',
  'oliv_life_especi',
  'life_especi_first',
  'especi_first_year',
  'first_year_essenti',
  'year_essenti_act',
  'essenti_act_singl',
  'act_singl_parent',
  'singl_parent_help',
  'parent_help_mean',
  'help_mean_sound',
  'mean_sound_diminish',
  'sound_diminish_man',
  'diminish_man_godsend',
  'man_godsend_best',
  'godsend_best_friend',
  'best_friend_matt',
  'friend_matt_plan',
  'matt_plan_oliv',
  'plan_oliv_breastf',
  'oliv_breastf_wife',
  'breastf_wife_interest',
  'wife_interest_born',
  'interest_born_one',
  'born_one_chang',
  'one_chang_diaper',
  'chang_diaper_mix',
  'diaper_mix_formula',
  'mix_formula_bottl',
  'formula_bottl_hous',
  'bottl_hous_share',
  'hous_share_felt',
  'share_felt_oppress',
  'felt_oppress_like',
  'oppress_like_joy',
  'like_joy_bond',
  'joy_bond_son',
  'bond_son_suck',
  'son_suck_energi',
  'suck_energi_would',
  'energi_would_take',
  'would_take_oliv',
  'take_oliv_matt',
  'oliv_matt_want',
  'matt_want_rambl',
  'want_rambl_long',
  'rambl_long_exactli',
  'long_exactli_zero',
  'exactli_zero_time',
  'zero_time_life',
  'time_life_matt',
  'life_matt_shown',
  'matt_shown_ive',
  'shown_ive_known',
  'ive_known_sinc',
  'known_sinc_safe',
  'sinc_safe_say',
  'safe_say_even',
  'say_even_time',
  'even_time_wonder',
  'time_wonder_thing',
  'wonder_thing_given',
  'thing_given_could',
  'given_could_sleep',
  'could_sleep_soundli',
  'sleep_soundli_know',
  'soundli_know_babi',
  'know_babi_would',
  'babi_would_taken',
  'would_taken_care',
  'taken_care_place',
  'care_place_refug',
  'place_refug_good',
  'refug_good_oliv',
  'good_oliv_shoulder',
  'oliv_shoulder_cri',
  'shoulder_cri_think',
  'cri_think_ill',
  'think_ill_ever',
  'ill_ever_abl',
  'ever_abl_repay',
  'abl_repay_im',
  'repay_im_definit',
  'im_definit_tri',
  'definit_tri_everi',
  'tri_everi_singl',
  'everi_singl_day',
  'singl_day_thing',
  'day_thing_wife',
  'thing_wife_kind',
  'wife_kind_start',
  'kind_start_look',
  'start_look_recent',
  'look_recent_event',
  'recent_event_sent',
  'event_sent_us',
  'sent_us_huge',
  'us_huge_downward',
  'huge_downward_spiral',
  'downward_spiral_oliv',
  'spiral_oliv_speech',
  'oliv_speech_delay',
  'speech_delay_realli',
  'delay_realli_pick',
  'realli_pick_thing',
  'pick_thing_third',
  'thing_third_birthday',
  'third_birthday_near',
  'birthday_near_babbl',
  'near_babbl_dadada',
  'babbl_dadada_toward',
  'dadada_toward_matt',
  'toward_matt_daddi',
  'matt_daddi_sinc',
  'daddi_sinc_ad',
  'sinc_ad_vocabulari',
  'ad_vocabulari_use',
  'vocabulari_use_refer',
  'use_refer_us',
  'refer_us_never',
  'us_never_correct',
  'never_correct_check',
  'correct_check_matt',
  'check_matt_make',
  'matt_make_sure',
  'make_sure_fine',
  'sure_fine_said',
  'fine_said_honor',
  'said_honor_bestow',
  'honor_bestow_titl',
  'bestow_titl_sam',
  'titl_sam_got',
  'sam_got_hear',
  'got_hear_recent',
  'hear_recent_facetim',
  'recent_facetim_matt',
  'facetim_matt_basic',
  'matt_basic_went',
  'basic_went_ballist',
  'went_ballist_much',
  'ballist_much_hate',
  'much_hate_admit',
  'hate_admit_say',
  'admit_say_parent',
  'say_parent_true',
  'parent_true_hurt',
  'true_hurt_need',
  'hurt_need_outsid',
  'need_outsid_opinion',
  'outsid_opinion_aita',
  'opinion_aita_allow',
  'aita_allow_call',
  'allow_call_dad'],
 ['recent',
  'got',
  'marri',
  'matt',
  'matt',
  'stepsist',
  'tiffani',
  'met',
  'less',
  'time',
  'five',
  'year',
  'date',
  'matt',
  'live',
  'nearbi',
  'close',
  'husband',
  'howev',
  'invit',
  'wed',
  'mention',
  'tiffani',
  'attract',
  'pretti',
  'current',
  'fashion',
  'bodi',
  'type',
  'also',
  'dress',
  'well',
  'spend',
  'money',
  'appear',
  'well',
  'known',
  'even',
  'though',
  'ive',
  'met',
  'time',
  'whenev',
  'brought',
  'law',
  'alway',
  'mention',
  'invest',
  'imag',
  'begrudg',
  'ceremoni',
  'went',
  'fine',
  'afterward',
  'law',
  'congratul',
  'fil',
  'comment',
  'look',
  'beauti',
  'next',
  'breath',
  'mention',
  'tiffani',
  'wife',
  'caught',
  'eye',
  'shook',
  'head',
  'ignor',
  'tiffani',
  'came',
  'say',
  'congratul',
  'look',
  'stun',
  'dress',
  'beauti',
  'fit',
  'perfectli',
  'hair',
  'make',
  'look',
  'like',
  'theyd',
  'done',
  'profession',
  'wear',
  'pair',
  'obvious',
  'design',
  'shoe',
  'outfit',
  'total',
  'appropri',
  'event',
  'still',
  'weirdli',
  'upset',
  'look',
  'immedi',
  'felt',
  'self',
  'consciou',
  'next',
  'even',
  'matt',
  'told',
  'look',
  'great',
  'rare',
  'talk',
  'rest',
  'night',
  'everi',
  'singl',
  'male',
  'guest',
  'wed',
  'ask',
  'tiffani',
  'know',
  'singl',
  'etc',
  'speech',
  'fed',
  'almost',
  'tear',
  'even',
  'best',
  'man',
  'mention',
  'speech',
  'cuff',
  'let',
  'go',
  'went',
  'honeymoon',
  'tri',
  'forget',
  'whole',
  'thing',
  'came',
  'back',
  'week',
  'ago',
  'past',
  'weekend',
  'dinner',
  'law',
  'tiffani',
  'visit',
  'learn',
  'got',
  'engag',
  'show',
  'us',
  'comic',
  'larg',
  'ring',
  'said',
  'plan',
  'wed',
  'next',
  'year',
  'would',
  'black',
  'tie',
  'event',
  'could',
  'stop',
  'jokingli',
  'said',
  'pretti',
  'sure',
  'id',
  'alreadi',
  'wed',
  'one',
  'white',
  'dress',
  'ask',
  'meant',
  'thought',
  'point',
  'lie',
  'admit',
  'felt',
  'upstag',
  'wed',
  'laugh',
  'said',
  'cant',
  'upstag',
  'bride',
  'ask',
  'could',
  'wear',
  'white',
  'wed',
  'shrug',
  'said',
  'think',
  'itll',
  'help',
  'apologis',
  'felt',
  'outfit',
  'inappropri',
  'law',
  'move',
  'convers',
  'went',
  'dinner',
  'got',
  'home',
  'husband',
  'blew',
  'say',
  'embarrass',
  'petti',
  'jealou',
  'tiffani',
  'said',
  'even',
  'like',
  'even',
  'know',
  'cant',
  'anyth',
  'look',
  'like',
  'cloth',
  'afford',
  'made',
  'look',
  'bitter',
  'childish',
  'associ',
  'admit',
  'best',
  'moment',
  'thought',
  'would',
  'least',
  'understand',
  'felt',
  'given',
  'heard',
  'everyon',
  'comment',
  'night',
  'demand',
  'apologis',
  'tiffani',
  'parent',
  'think',
  'said',
  'anyth',
  'heinou',
  'aita',
  'recent_got',
  'got_marri',
  'marri_matt',
  'matt_matt',
  'matt_stepsist',
  'stepsist_tiffani',
  'tiffani_met',
  'met_less',
  'less_time',
  'time_five',
  'five_year',
  'year_date',
  'date_matt',
  'matt_live',
  'live_nearbi',
  'nearbi_close',
  'close_husband',
  'husband_howev',
  'howev_invit',
  'invit_wed',
  'wed_mention',
  'mention_tiffani',
  'tiffani_attract',
  'attract_pretti',
  'pretti_current',
  'current_fashion',
  'fashion_bodi',
  'bodi_type',
  'type_also',
  'also_dress',
  'dress_well',
  'well_spend',
  'spend_money',
  'money_appear',
  'appear_well',
  'well_known',
  'known_even',
  'even_though',
  'though_ive',
  'ive_met',
  'met_time',
  'time_whenev',
  'whenev_brought',
  'brought_law',
  'law_alway',
  'alway_mention',
  'mention_invest',
  'invest_imag',
  'imag_begrudg',
  'begrudg_ceremoni',
  'ceremoni_went',
  'went_fine',
  'fine_afterward',
  'afterward_law',
  'law_congratul',
  'congratul_fil',
  'fil_comment',
  'comment_look',
  'look_beauti',
  'beauti_next',
  'next_breath',
  'breath_mention',
  'mention_tiffani',
  'tiffani_wife',
  'wife_caught',
  'caught_eye',
  'eye_shook',
  'shook_head',
  'head_ignor',
  'ignor_tiffani',
  'tiffani_came',
  'came_say',
  'say_congratul',
  'congratul_look',
  'look_stun',
  'stun_dress',
  'dress_beauti',
  'beauti_fit',
  'fit_perfectli',
  'perfectli_hair',
  'hair_make',
  'make_look',
  'look_like',
  'like_theyd',
  'theyd_done',
  'done_profession',
  'profession_wear',
  'wear_pair',
  'pair_obvious',
  'obvious_design',
  'design_shoe',
  'shoe_outfit',
  'outfit_total',
  'total_appropri',
  'appropri_event',
  'event_still',
  'still_weirdli',
  'weirdli_upset',
  'upset_look',
  'look_immedi',
  'immedi_felt',
  'felt_self',
  'self_consciou',
  'consciou_next',
  'next_even',
  'even_matt',
  'matt_told',
  'told_look',
  'look_great',
  'great_rare',
  'rare_talk',
  'talk_rest',
  'rest_night',
  'night_everi',
  'everi_singl',
  'singl_male',
  'male_guest',
  'guest_wed',
  'wed_ask',
  'ask_tiffani',
  'tiffani_know',
  'know_singl',
  'singl_etc',
  'etc_speech',
  'speech_fed',
  'fed_almost',
  'almost_tear',
  'tear_even',
  'even_best',
  'best_man',
  'man_mention',
  'mention_speech',
  'speech_cuff',
  'cuff_let',
  'let_go',
  'go_went',
  'went_honeymoon',
  'honeymoon_tri',
  'tri_forget',
  'forget_whole',
  'whole_thing',
  'thing_came',
  'came_back',
  'back_week',
  'week_ago',
  'ago_past',
  'past_weekend',
  'weekend_dinner',
  'dinner_law',
  'law_tiffani',
  'tiffani_visit',
  'visit_learn',
  'learn_got',
  'got_engag',
  'engag_show',
  'show_us',
  'us_comic',
  'comic_larg',
  'larg_ring',
  'ring_said',
  'said_plan',
  'plan_wed',
  'wed_next',
  'next_year',
  'year_would',
  'would_black',
  'black_tie',
  'tie_event',
  'event_could',
  'could_stop',
  'stop_jokingli',
  'jokingli_said',
  'said_pretti',
  'pretti_sure',
  'sure_id',
  'id_alreadi',
  'alreadi_wed',
  'wed_one',
  'one_white',
  'white_dress',
  'dress_ask',
  'ask_meant',
  'meant_thought',
  'thought_point',
  'point_lie',
  'lie_admit',
  'admit_felt',
  'felt_upstag',
  'upstag_wed',
  'wed_laugh',
  'laugh_said',
  'said_cant',
  'cant_upstag',
  'upstag_bride',
  'bride_ask',
  'ask_could',
  'could_wear',
  'wear_white',
  'white_wed',
  'wed_shrug',
  'shrug_said',
  'said_think',
  'think_itll',
  'itll_help',
  'help_apologis',
  'apologis_felt',
  'felt_outfit',
  'outfit_inappropri',
  'inappropri_law',
  'law_move',
  'move_convers',
  'convers_went',
  'went_dinner',
  'dinner_got',
  'got_home',
  'home_husband',
  'husband_blew',
  'blew_say',
  'say_embarrass',
  'embarrass_petti',
  'petti_jealou',
  'jealou_tiffani',
  'tiffani_said',
  'said_even',
  'even_like',
  'like_even',
  'even_know',
  'know_cant',
  'cant_anyth',
  'anyth_look',
  'look_like',
  'like_cloth',
  'cloth_afford',
  'afford_made',
  'made_look',
  'look_bitter',
  'bitter_childish',
  'childish_associ',
  'associ_admit',
  'admit_best',
  'best_moment',
  'moment_thought',
  'thought_would',
  'would_least',
  'least_understand',
  'understand_felt',
  'felt_given',
  'given_heard',
  'heard_everyon',
  'everyon_comment',
  'comment_night',
  'night_demand',
  'demand_apologis',
  'apologis_tiffani',
  'tiffani_parent',
  'parent_think',
  'think_said',
  'said_anyth',
  'anyth_heinou',
  'heinou_aita',
  'recent_got_marri',
  'got_marri_matt',
  'marri_matt_matt',
  'matt_matt_stepsist',
  'matt_stepsist_tiffani',
  'stepsist_tiffani_met',
  'tiffani_met_less',
  'met_less_time',
  'less_time_five',
  'time_five_year',
  'five_year_date',
  'year_date_matt',
  'date_matt_live',
  'matt_live_nearbi',
  'live_nearbi_close',
  'nearbi_close_husband',
  'close_husband_howev',
  'husband_howev_invit',
  'howev_invit_wed',
  'invit_wed_mention',
  'wed_mention_tiffani',
  'mention_tiffani_attract',
  'tiffani_attract_pretti',
  'attract_pretti_current',
  'pretti_current_fashion',
  'current_fashion_bodi',
  'fashion_bodi_type',
  'bodi_type_also',
  'type_also_dress',
  'also_dress_well',
  'dress_well_spend',
  'well_spend_money',
  'spend_money_appear',
  'money_appear_well',
  'appear_well_known',
  'well_known_even',
  'known_even_though',
  'even_though_ive',
  'though_ive_met',
  'ive_met_time',
  'met_time_whenev',
  'time_whenev_brought',
  'whenev_brought_law',
  'brought_law_alway',
  'law_alway_mention',
  'alway_mention_invest',
  'mention_invest_imag',
  'invest_imag_begrudg',
  'imag_begrudg_ceremoni',
  'begrudg_ceremoni_went',
  'ceremoni_went_fine',
  'went_fine_afterward',
  'fine_afterward_law',
  'afterward_law_congratul',
  'law_congratul_fil',
  'congratul_fil_comment',
  'fil_comment_look',
  'comment_look_beauti',
  'look_beauti_next',
  'beauti_next_breath',
  'next_breath_mention',
  'breath_mention_tiffani',
  'mention_tiffani_wife',
  'tiffani_wife_caught',
  'wife_caught_eye',
  'caught_eye_shook',
  'eye_shook_head',
  'shook_head_ignor',
  'head_ignor_tiffani',
  'ignor_tiffani_came',
  'tiffani_came_say',
  'came_say_congratul',
  'say_congratul_look',
  'congratul_look_stun',
  'look_stun_dress',
  'stun_dress_beauti',
  'dress_beauti_fit',
  'beauti_fit_perfectli',
  'fit_perfectli_hair',
  'perfectli_hair_make',
  'hair_make_look',
  'make_look_like',
  'look_like_theyd',
  'like_theyd_done',
  'theyd_done_profession',
  'done_profession_wear',
  'profession_wear_pair',
  'wear_pair_obvious',
  'pair_obvious_design',
  'obvious_design_shoe',
  'design_shoe_outfit',
  'shoe_outfit_total',
  'outfit_total_appropri',
  'total_appropri_event',
  'appropri_event_still',
  'event_still_weirdli',
  'still_weirdli_upset',
  'weirdli_upset_look',
  'upset_look_immedi',
  'look_immedi_felt',
  'immedi_felt_self',
  'felt_self_consciou',
  'self_consciou_next',
  'consciou_next_even',
  'next_even_matt',
  'even_matt_told',
  'matt_told_look',
  'told_look_great',
  'look_great_rare',
  'great_rare_talk',
  'rare_talk_rest',
  'talk_rest_night',
  'rest_night_everi',
  'night_everi_singl',
  'everi_singl_male',
  'singl_male_guest',
  'male_guest_wed',
  'guest_wed_ask',
  'wed_ask_tiffani',
  'ask_tiffani_know',
  'tiffani_know_singl',
  'know_singl_etc',
  'singl_etc_speech',
  'etc_speech_fed',
  'speech_fed_almost',
  'fed_almost_tear',
  'almost_tear_even',
  'tear_even_best',
  'even_best_man',
  'best_man_mention',
  'man_mention_speech',
  'mention_speech_cuff',
  'speech_cuff_let',
  'cuff_let_go',
  'let_go_went',
  'go_went_honeymoon',
  'went_honeymoon_tri',
  'honeymoon_tri_forget',
  'tri_forget_whole',
  'forget_whole_thing',
  'whole_thing_came',
  'thing_came_back',
  'came_back_week',
  'back_week_ago',
  'week_ago_past',
  'ago_past_weekend',
  'past_weekend_dinner',
  'weekend_dinner_law',
  'dinner_law_tiffani',
  'law_tiffani_visit',
  'tiffani_visit_learn',
  'visit_learn_got',
  'learn_got_engag',
  'got_engag_show',
  'engag_show_us',
  'show_us_comic',
  'us_comic_larg',
  'comic_larg_ring',
  'larg_ring_said',
  'ring_said_plan',
  'said_plan_wed',
  'plan_wed_next',
  'wed_next_year',
  'next_year_would',
  'year_would_black',
  'would_black_tie',
  'black_tie_event',
  'tie_event_could',
  'event_could_stop',
  'could_stop_jokingli',
  'stop_jokingli_said',
  'jokingli_said_pretti',
  'said_pretti_sure',
  'pretti_sure_id',
  'sure_id_alreadi',
  'id_alreadi_wed',
  'alreadi_wed_one',
  'wed_one_white',
  'one_white_dress',
  'white_dress_ask',
  'dress_ask_meant',
  'ask_meant_thought',
  'meant_thought_point',
  'thought_point_lie',
  'point_lie_admit',
  'lie_admit_felt',
  'admit_felt_upstag',
  'felt_upstag_wed',
  'upstag_wed_laugh',
  'wed_laugh_said',
  'laugh_said_cant',
  'said_cant_upstag',
  'cant_upstag_bride',
  'upstag_bride_ask',
  'bride_ask_could',
  'ask_could_wear',
  'could_wear_white',
  'wear_white_wed',
  'white_wed_shrug',
  'wed_shrug_said',
  'shrug_said_think',
  'said_think_itll',
  'think_itll_help',
  'itll_help_apologis',
  'help_apologis_felt',
  'apologis_felt_outfit',
  'felt_outfit_inappropri',
  'outfit_inappropri_law',
  'inappropri_law_move',
  'law_move_convers',
  'move_convers_went',
  'convers_went_dinner',
  'went_dinner_got',
  'dinner_got_home',
  'got_home_husband',
  'home_husband_blew',
  'husband_blew_say',
  'blew_say_embarrass',
  'say_embarrass_petti',
  'embarrass_petti_jealou',
  'petti_jealou_tiffani',
  'jealou_tiffani_said',
  'tiffani_said_even',
  'said_even_like',
  'even_like_even',
  'like_even_know',
  'even_know_cant',
  'know_cant_anyth',
  'cant_anyth_look',
  'anyth_look_like',
  'look_like_cloth',
  'like_cloth_afford',
  'cloth_afford_made',
  'afford_made_look',
  'made_look_bitter',
  'look_bitter_childish',
  'bitter_childish_associ',
  'childish_associ_admit',
  'associ_admit_best',
  'admit_best_moment',
  'best_moment_thought',
  'moment_thought_would',
  'thought_would_least',
  'would_least_understand',
  'least_understand_felt',
  'understand_felt_given',
  'felt_given_heard',
  'given_heard_everyon',
  'heard_everyon_comment',
  'everyon_comment_night',
  'comment_night_demand',
  'night_demand_apologis',
  'demand_apologis_tiffani',
  'apologis_tiffani_parent',
  'tiffani_parent_think',
  'parent_think_said',
  'think_said_anyth',
  'said_anyth_heinou',
  'anyth_heinou_aita'],
 ['origin',
  'post',
  'httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar',
  '&',
  'utm_medium=android_app',
  '&',
  'utm_name=androidcss',
  '&',
  'utm_term=',
  '&',
  'utm_content=share_button',
  'would',
  'like',
  'updat',
  'anyon',
  'left',
  'kind',
  'comment',
  'might',
  'stumbl',
  'upon',
  'updat',
  'post',
  'comment',
  'chat',
  'receiv',
  'push',
  'accept',
  'job',
  'move',
  'citi',
  'januari',
  'th',
  'start',
  'job',
  'januari',
  'th',
  'happen',
  'quickli',
  'realis',
  'need',
  'put',
  'first',
  'asshol',
  'live',
  'life',
  'despit',
  'incred',
  'pain',
  'boyfriend',
  'mother',
  'agre',
  'longer',
  'speak',
  'allow',
  'see',
  'boyfriend',
  'guess',
  'longer',
  'boyfriend',
  'year',
  'knew',
  'would',
  'happen',
  'said',
  'goodby',
  'told',
  'want',
  'repeat',
  'said',
  'howev',
  'aw',
  'say',
  'ruin',
  'christma',
  'made',
  'decis',
  'rd',
  'knew',
  'possibl',
  'time',
  'sensit',
  'offer',
  'one',
  'comment',
  'said',
  'never',
  'go',
  'good',
  'time',
  'plu',
  'side',
  'hate',
  'made',
  'leav',
  'job',
  'tie',
  'anymor',
  'may',
  'asshol',
  'eye',
  'need',
  'fleet',
  'moment',
  'regret',
  'famili',
  'therapist',
  'said',
  'day',
  'sinc',
  'make',
  'decis',
  'seem',
  'lighter',
  'excit',
  'new',
  'chapter',
  'thank',
  'kind',
  'comment',
  'origin_post',
  'post_httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar',
  'httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar_&',
  '&_utm_medium=android_app',
  'utm_medium=android_app_&',
  '&_utm_name=androidcss',
  'utm_name=androidcss_&',
  '&_utm_term=',
  'utm_term=_&',
  '&_utm_content=share_button',
  'utm_content=share_button_would',
  'would_like',
  'like_updat',
  'updat_anyon',
  'anyon_left',
  'left_kind',
  'kind_comment',
  'comment_might',
  'might_stumbl',
  'stumbl_upon',
  'upon_updat',
  'updat_post',
  'post_comment',
  'comment_chat',
  'chat_receiv',
  'receiv_push',
  'push_accept',
  'accept_job',
  'job_move',
  'move_citi',
  'citi_januari',
  'januari_th',
  'th_start',
  'start_job',
  'job_januari',
  'januari_th',
  'th_happen',
  'happen_quickli',
  'quickli_realis',
  'realis_need',
  'need_put',
  'put_first',
  'first_asshol',
  'asshol_live',
  'live_life',
  'life_despit',
  'despit_incred',
  'incred_pain',
  'pain_boyfriend',
  'boyfriend_mother',
  'mother_agre',
  'agre_longer',
  'longer_speak',
  'speak_allow',
  'allow_see',
  'see_boyfriend',
  'boyfriend_guess',
  'guess_longer',
  'longer_boyfriend',
  'boyfriend_year',
  'year_knew',
  'knew_would',
  'would_happen',
  'happen_said',
  'said_goodby',
  'goodby_told',
  'told_want',
  'want_repeat',
  'repeat_said',
  'said_howev',
  'howev_aw',
  'aw_say',
  'say_ruin',
  'ruin_christma',
  'christma_made',
  'made_decis',
  'decis_rd',
  'rd_knew',
  'knew_possibl',
  'possibl_time',
  'time_sensit',
  'sensit_offer',
  'offer_one',
  'one_comment',
  'comment_said',
  'said_never',
  'never_go',
  'go_good',
  'good_time',
  'time_plu',
  'plu_side',
  'side_hate',
  'hate_made',
  'made_leav',
  'leav_job',
  'job_tie',
  'tie_anymor',
  'anymor_may',
  'may_asshol',
  'asshol_eye',
  'eye_need',
  'need_fleet',
  'fleet_moment',
  'moment_regret',
  'regret_famili',
  'famili_therapist',
  'therapist_said',
  'said_day',
  'day_sinc',
  'sinc_make',
  'make_decis',
  'decis_seem',
  'seem_lighter',
  'lighter_excit',
  'excit_new',
  'new_chapter',
  'chapter_thank',
  'thank_kind',
  'kind_comment',
  'origin_post_httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar',
  'post_httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentszokivwibta_the_asshole_for_moving_away_from_myutm_source=shar_&_utm_medium=android_app',
  '&_utm_medium=android_app_&',
  'utm_medium=android_app_&_utm_name=androidcss',
  '&_utm_name=androidcss_&',
  'utm_name=androidcss_&_utm_term=',
  '&_utm_term=_&',
  'utm_term=_&_utm_content=share_button',
  '&_utm_content=share_button_would',
  'utm_content=share_button_would_like',
  'would_like_updat',
  'like_updat_anyon',
  'updat_anyon_left',
  'anyon_left_kind',
  'left_kind_comment',
  'kind_comment_might',
  'comment_might_stumbl',
  'might_stumbl_upon',
  'stumbl_upon_updat',
  'upon_updat_post',
  'updat_post_comment',
  'post_comment_chat',
  'comment_chat_receiv',
  'chat_receiv_push',
  'receiv_push_accept',
  'push_accept_job',
  'accept_job_move',
  'job_move_citi',
  'move_citi_januari',
  'citi_januari_th',
  'januari_th_start',
  'th_start_job',
  'start_job_januari',
  'job_januari_th',
  'januari_th_happen',
  'th_happen_quickli',
  'happen_quickli_realis',
  'quickli_realis_need',
  'realis_need_put',
  'need_put_first',
  'put_first_asshol',
  'first_asshol_live',
  'asshol_live_life',
  'live_life_despit',
  'life_despit_incred',
  'despit_incred_pain',
  'incred_pain_boyfriend',
  'pain_boyfriend_mother',
  'boyfriend_mother_agre',
  'mother_agre_longer',
  'agre_longer_speak',
  'longer_speak_allow',
  'speak_allow_see',
  'allow_see_boyfriend',
  'see_boyfriend_guess',
  'boyfriend_guess_longer',
  'guess_longer_boyfriend',
  'longer_boyfriend_year',
  'boyfriend_year_knew',
  'year_knew_would',
  'knew_would_happen',
  'would_happen_said',
  'happen_said_goodby',
  'said_goodby_told',
  'goodby_told_want',
  'told_want_repeat',
  'want_repeat_said',
  'repeat_said_howev',
  'said_howev_aw',
  'howev_aw_say',
  'aw_say_ruin',
  'say_ruin_christma',
  'ruin_christma_made',
  'christma_made_decis',
  'made_decis_rd',
  'decis_rd_knew',
  'rd_knew_possibl',
  'knew_possibl_time',
  'possibl_time_sensit',
  'time_sensit_offer',
  'sensit_offer_one',
  'offer_one_comment',
  'one_comment_said',
  'comment_said_never',
  'said_never_go',
  'never_go_good',
  'go_good_time',
  'good_time_plu',
  'time_plu_side',
  'plu_side_hate',
  'side_hate_made',
  'hate_made_leav',
  'made_leav_job',
  'leav_job_tie',
  'job_tie_anymor',
  'tie_anymor_may',
  'anymor_may_asshol',
  'may_asshol_eye',
  'asshol_eye_need',
  'eye_need_fleet',
  'need_fleet_moment',
  'fleet_moment_regret',
  'moment_regret_famili',
  'regret_famili_therapist',
  'famili_therapist_said',
  'therapist_said_day',
  'said_day_sinc',
  'day_sinc_make',
  'sinc_make_decis',
  'make_decis_seem',
  'decis_seem_lighter',
  'seem_lighter_excit',
  'lighter_excit_new',
  'excit_new_chapter',
  'new_chapter_thank',
  'chapter_thank_kind',
  'thank_kind_comment'],
 ['fiancé',
  'plan',
  'wed',
  'come',
  'larg',
  'famili',
  'sister',
  'kid',
  'sister',
  'bridesmaid',
  'one',
  'serv',
  'maid',
  'honor',
  'come',
  'smaller',
  'famili',
  'parent',
  'sister',
  'niec',
  'brynn',
  'brynn',
  'year',
  'old',
  'pretti',
  'much',
  'best',
  'pal',
  'im',
  'godfatheri',
  'love',
  'bit',
  'care',
  'fiancé',
  'choos',
  'sister',
  'bridesmaid',
  'likewis',
  'sister',
  'cool',
  'feel',
  'sort',
  'way',
  'fiancé',
  'brother-in-law',
  'wed',
  'parti',
  'fiancé',
  'request',
  'ultim',
  'side',
  'parti',
  'want',
  'came',
  'time',
  'pick',
  'younger',
  'role',
  'wed',
  'older',
  'nephew',
  'junior',
  'groomsmen',
  'younger',
  'ring',
  'bearer',
  'one',
  'niec',
  'aubrey',
  'fiancé',
  'want',
  'flower',
  'girl',
  'said',
  'fine',
  'also',
  'want',
  'brynn',
  'one',
  'walk',
  'aisl',
  'togeth',
  'itd',
  'super',
  'cute',
  'brynn',
  'love',
  'play',
  'aubrey',
  'get',
  'along',
  'fiancé',
  'say',
  'want',
  'wed',
  'tradit',
  'one',
  'flower',
  'girl',
  'suggest',
  'brynn',
  'could',
  'hold',
  'sign',
  'someth',
  'aubrey',
  'threw',
  'flower',
  'fiancé',
  'said',
  'sit',
  'sister',
  'parent',
  'point',
  'insist',
  'said',
  'brynn',
  'would',
  'flower',
  'girl',
  'text',
  'sister',
  'ask',
  'agre',
  'fiancé',
  'got',
  'piss',
  'said',
  'day',
  'brynn',
  'mean',
  'great',
  'deal',
  'shell',
  'wed',
  'fiancé',
  'aubrey',
  'mom',
  'mad',
  'say',
  'im',
  'steal',
  'aubrey',
  'spotlight',
  'aita',
  'updat',
  'okay',
  'wow',
  'expect',
  'blow',
  'way',
  'thank',
  'everyon',
  'reach',
  'morn',
  'fiancé',
  'sat',
  'talk',
  'wed',
  'gener',
  'brought',
  'brynn',
  'aubrey',
  'fiancé',
  'kept',
  'parrot',
  'tradit',
  'let',
  'aubrey',
  'spotlight',
  'shot',
  'compromis',
  'compromis',
  'aubrey',
  'walk',
  'first',
  'brynn',
  'blow',
  'bubbl',
  'hold',
  'sign',
  'etc',
  'final',
  'fiancé',
  'honest',
  'want',
  'brynn',
  'wed',
  'brynn',
  'syndrom',
  'said',
  'everyon',
  'look',
  'take',
  'piti',
  'etc',
  'turn',
  'spotlight',
  'aubrey',
  'fuck',
  'fiancé',
  'told',
  'fuck',
  'call',
  'ableist',
  'said',
  'worri',
  'spotlight',
  'steal',
  'anymor',
  'wed',
  'ive',
  'left',
  'apart',
  'stay',
  'sister',
  'play',
  'brynn',
  'phone',
  'blow',
  'text',
  'call',
  'fiancé',
  'magic',
  'readi',
  'compromis',
  'need',
  'time',
  'like',
  'done',
  'yall',
  'right',
  'fiancé_plan',
  'plan_wed',
  'wed_come',
  'come_larg',
  'larg_famili',
  'famili_sister',
  'sister_kid',
  'kid_sister',
  'sister_bridesmaid',
  'bridesmaid_one',
  'one_serv',
  'serv_maid',
  'maid_honor',
  'honor_come',
  'come_smaller',
  'smaller_famili',
  'famili_parent',
  'parent_sister',
  'sister_niec',
  'niec_brynn',
  'brynn_brynn',
  'brynn_year',
  'year_old',
  'old_pretti',
  'pretti_much',
  'much_best',
  'best_pal',
  'pal_im',
  'im_godfatheri',
  'godfatheri_love',
  'love_bit',
  'bit_care',
  'care_fiancé',
  'fiancé_choos',
  'choos_sister',
  'sister_bridesmaid',
  'bridesmaid_likewis',
  'likewis_sister',
  'sister_cool',
  'cool_feel',
  'feel_sort',
  'sort_way',
  'way_fiancé',
  'fiancé_brother-in-law',
  'brother-in-law_wed',
  'wed_parti',
  'parti_fiancé',
  'fiancé_request',
  'request_ultim',
  'ultim_side',
  'side_parti',
  'parti_want',
  'want_came',
  'came_time',
  'time_pick',
  'pick_younger',
  'younger_role',
  'role_wed',
  'wed_older',
  'older_nephew',
  'nephew_junior',
  'junior_groomsmen',
  'groomsmen_younger',
  'younger_ring',
  'ring_bearer',
  'bearer_one',
  'one_niec',
  'niec_aubrey',
  'aubrey_fiancé',
  'fiancé_want',
  'want_flower',
  'flower_girl',
  'girl_said',
  'said_fine',
  'fine_also',
  'also_want',
  'want_brynn',
  'brynn_one',
  'one_walk',
  'walk_aisl',
  'aisl_togeth',
  'togeth_itd',
  'itd_super',
  'super_cute',
  'cute_brynn',
  'brynn_love',
  'love_play',
  'play_aubrey',
  'aubrey_get',
  'get_along',
  'along_fiancé',
  'fiancé_say',
  'say_want',
  'want_wed',
  'wed_tradit',
  'tradit_one',
  'one_flower',
  'flower_girl',
  'girl_suggest',
  'suggest_brynn',
  'brynn_could',
  'could_hold',
  'hold_sign',
  'sign_someth',
  'someth_aubrey',
  'aubrey_threw',
  'threw_flower',
  'flower_fiancé',
  'fiancé_said',
  'said_sit',
  'sit_sister',
  'sister_parent',
  'parent_point',
  'point_insist',
  'insist_said',
  'said_brynn',
  'brynn_would',
  'would_flower',
  'flower_girl',
  'girl_text',
  'text_sister',
  'sister_ask',
  'ask_agre',
  'agre_fiancé',
  'fiancé_got',
  'got_piss',
  'piss_said',
  'said_day',
  'day_brynn',
  'brynn_mean',
  'mean_great',
  'great_deal',
  'deal_shell',
  'shell_wed',
  'wed_fiancé',
  'fiancé_aubrey',
  'aubrey_mom',
  'mom_mad',
  'mad_say',
  'say_im',
  'im_steal',
  'steal_aubrey',
  'aubrey_spotlight',
  'spotlight_aita',
  'aita_updat',
  'updat_okay',
  'okay_wow',
  'wow_expect',
  'expect_blow',
  'blow_way',
  'way_thank',
  'thank_everyon',
  'everyon_reach',
  'reach_morn',
  'morn_fiancé',
  'fiancé_sat',
  'sat_talk',
  'talk_wed',
  'wed_gener',
  'gener_brought',
  'brought_brynn',
  'brynn_aubrey',
  'aubrey_fiancé',
  'fiancé_kept',
  'kept_parrot',
  'parrot_tradit',
  'tradit_let',
  'let_aubrey',
  'aubrey_spotlight',
  'spotlight_shot',
  'shot_compromis',
  'compromis_compromis',
  'compromis_aubrey',
  'aubrey_walk',
  'walk_first',
  'first_brynn',
  'brynn_blow',
  'blow_bubbl',
  'bubbl_hold',
  'hold_sign',
  'sign_etc',
  'etc_final',
  'final_fiancé',
  'fiancé_honest',
  'honest_want',
  'want_brynn',
  'brynn_wed',
  'wed_brynn',
  'brynn_syndrom',
  'syndrom_said',
  'said_everyon',
  'everyon_look',
  'look_take',
  'take_piti',
  'piti_etc',
  'etc_turn',
  'turn_spotlight',
  'spotlight_aubrey',
  'aubrey_fuck',
  'fuck_fiancé',
  'fiancé_told',
  'told_fuck',
  'fuck_call',
  'call_ableist',
  'ableist_said',
  'said_worri',
  'worri_spotlight',
  'spotlight_steal',
  'steal_anymor',
  'anymor_wed',
  'wed_ive',
  'ive_left',
  'left_apart',
  'apart_stay',
  'stay_sister',
  'sister_play',
  'play_brynn',
  'brynn_phone',
  'phone_blow',
  'blow_text',
  'text_call',
  'call_fiancé',
  'fiancé_magic',
  'magic_readi',
  'readi_compromis',
  'compromis_need',
  'need_time',
  'time_like',
  'like_done',
  'done_yall',
  'yall_right',
  'fiancé_plan_wed',
  'plan_wed_come',
  'wed_come_larg',
  'come_larg_famili',
  'larg_famili_sister',
  'famili_sister_kid',
  'sister_kid_sister',
  'kid_sister_bridesmaid',
  'sister_bridesmaid_one',
  'bridesmaid_one_serv',
  'one_serv_maid',
  'serv_maid_honor',
  'maid_honor_come',
  'honor_come_smaller',
  'come_smaller_famili',
  'smaller_famili_parent',
  'famili_parent_sister',
  'parent_sister_niec',
  'sister_niec_brynn',
  'niec_brynn_brynn',
  'brynn_brynn_year',
  'brynn_year_old',
  'year_old_pretti',
  'old_pretti_much',
  'pretti_much_best',
  'much_best_pal',
  'best_pal_im',
  'pal_im_godfatheri',
  'im_godfatheri_love',
  'godfatheri_love_bit',
  'love_bit_care',
  'bit_care_fiancé',
  'care_fiancé_choos',
  'fiancé_choos_sister',
  'choos_sister_bridesmaid',
  'sister_bridesmaid_likewis',
  'bridesmaid_likewis_sister',
  'likewis_sister_cool',
  'sister_cool_feel',
  'cool_feel_sort',
  'feel_sort_way',
  'sort_way_fiancé',
  'way_fiancé_brother-in-law',
  'fiancé_brother-in-law_wed',
  'brother-in-law_wed_parti',
  'wed_parti_fiancé',
  'parti_fiancé_request',
  'fiancé_request_ultim',
  'request_ultim_side',
  'ultim_side_parti',
  'side_parti_want',
  'parti_want_came',
  'want_came_time',
  'came_time_pick',
  'time_pick_younger',
  'pick_younger_role',
  'younger_role_wed',
  'role_wed_older',
  'wed_older_nephew',
  'older_nephew_junior',
  'nephew_junior_groomsmen',
  'junior_groomsmen_younger',
  'groomsmen_younger_ring',
  'younger_ring_bearer',
  'ring_bearer_one',
  'bearer_one_niec',
  'one_niec_aubrey',
  'niec_aubrey_fiancé',
  'aubrey_fiancé_want',
  'fiancé_want_flower',
  'want_flower_girl',
  'flower_girl_said',
  'girl_said_fine',
  'said_fine_also',
  'fine_also_want',
  'also_want_brynn',
  'want_brynn_one',
  'brynn_one_walk',
  'one_walk_aisl',
  'walk_aisl_togeth',
  'aisl_togeth_itd',
  'togeth_itd_super',
  'itd_super_cute',
  'super_cute_brynn',
  'cute_brynn_love',
  'brynn_love_play',
  'love_play_aubrey',
  'play_aubrey_get',
  'aubrey_get_along',
  'get_along_fiancé',
  'along_fiancé_say',
  'fiancé_say_want',
  'say_want_wed',
  'want_wed_tradit',
  'wed_tradit_one',
  'tradit_one_flower',
  'one_flower_girl',
  'flower_girl_suggest',
  'girl_suggest_brynn',
  'suggest_brynn_could',
  'brynn_could_hold',
  'could_hold_sign',
  'hold_sign_someth',
  'sign_someth_aubrey',
  'someth_aubrey_threw',
  'aubrey_threw_flower',
  'threw_flower_fiancé',
  'flower_fiancé_said',
  'fiancé_said_sit',
  'said_sit_sister',
  'sit_sister_parent',
  'sister_parent_point',
  'parent_point_insist',
  'point_insist_said',
  'insist_said_brynn',
  'said_brynn_would',
  'brynn_would_flower',
  'would_flower_girl',
  'flower_girl_text',
  'girl_text_sister',
  'text_sister_ask',
  'sister_ask_agre',
  'ask_agre_fiancé',
  'agre_fiancé_got',
  'fiancé_got_piss',
  'got_piss_said',
  'piss_said_day',
  'said_day_brynn',
  'day_brynn_mean',
  'brynn_mean_great',
  'mean_great_deal',
  'great_deal_shell',
  'deal_shell_wed',
  'shell_wed_fiancé',
  'wed_fiancé_aubrey',
  'fiancé_aubrey_mom',
  'aubrey_mom_mad',
  'mom_mad_say',
  'mad_say_im',
  'say_im_steal',
  'im_steal_aubrey',
  'steal_aubrey_spotlight',
  'aubrey_spotlight_aita',
  'spotlight_aita_updat',
  'aita_updat_okay',
  'updat_okay_wow',
  'okay_wow_expect',
  'wow_expect_blow',
  'expect_blow_way',
  'blow_way_thank',
  'way_thank_everyon',
  'thank_everyon_reach',
  'everyon_reach_morn',
  'reach_morn_fiancé',
  'morn_fiancé_sat',
  'fiancé_sat_talk',
  'sat_talk_wed',
  'talk_wed_gener',
  'wed_gener_brought',
  'gener_brought_brynn',
  'brought_brynn_aubrey',
  'brynn_aubrey_fiancé',
  'aubrey_fiancé_kept',
  'fiancé_kept_parrot',
  'kept_parrot_tradit',
  'parrot_tradit_let',
  'tradit_let_aubrey',
  'let_aubrey_spotlight',
  'aubrey_spotlight_shot',
  'spotlight_shot_compromis',
  'shot_compromis_compromis',
  'compromis_compromis_aubrey',
  'compromis_aubrey_walk',
  'aubrey_walk_first',
  'walk_first_brynn',
  'first_brynn_blow',
  'brynn_blow_bubbl',
  'blow_bubbl_hold',
  'bubbl_hold_sign',
  'hold_sign_etc',
  'sign_etc_final',
  'etc_final_fiancé',
  'final_fiancé_honest',
  'fiancé_honest_want',
  'honest_want_brynn',
  'want_brynn_wed',
  'brynn_wed_brynn',
  'wed_brynn_syndrom',
  'brynn_syndrom_said',
  'syndrom_said_everyon',
  'said_everyon_look',
  'everyon_look_take',
  'look_take_piti',
  'take_piti_etc',
  'piti_etc_turn',
  'etc_turn_spotlight',
  'turn_spotlight_aubrey',
  'spotlight_aubrey_fuck',
  'aubrey_fuck_fiancé',
  'fuck_fiancé_told',
  'fiancé_told_fuck',
  'told_fuck_call',
  'fuck_call_ableist',
  'call_ableist_said',
  'ableist_said_worri',
  'said_worri_spotlight',
  'worri_spotlight_steal',
  'spotlight_steal_anymor',
  'steal_anymor_wed',
  'anymor_wed_ive',
  'wed_ive_left',
  'ive_left_apart',
  'left_apart_stay',
  'apart_stay_sister',
  'stay_sister_play',
  'sister_play_brynn',
  'play_brynn_phone',
  'brynn_phone_blow',
  'phone_blow_text',
  'blow_text_call',
  'text_call_fiancé',
  'call_fiancé_magic',
  'fiancé_magic_readi',
  'magic_readi_compromis',
  'readi_compromis_need',
  'compromis_need_time',
  'need_time_like',
  'time_like_done',
  'like_done_yall',
  'done_yall_right'],
 ['throwaway',
  'account',
  'fake',
  'name',
  'wife',
  'also',
  'reddit',
  'sorri',
  'long',
  'post',
  'wife',
  'three',
  'son',
  'alex',
  'dylan',
  'jake',
  'kid',
  'alway',
  'want',
  'dog',
  'parent',
  'said',
  'never',
  'got',
  'chanc',
  'get',
  'one',
  'twenti',
  'recent',
  'interest',
  'one',
  'spark',
  'ask',
  'famili',
  'thought',
  'get',
  'dog',
  'wife',
  'enthusiast',
  'relent',
  'week',
  'ask',
  'alex',
  'jake',
  'excit',
  'get',
  'one',
  'dylan',
  'immedi',
  'oppos',
  'idea',
  'dylan',
  'alway',
  'differ',
  'son',
  'never',
  'interest',
  'sport',
  'alway',
  'subdu',
  'brother',
  'alway',
  'made',
  'hard',
  'connect',
  'remain',
  'oppos',
  'idea',
  'get',
  'dog',
  'son',
  'manag',
  'wear',
  'final',
  'relent',
  'howev',
  'said',
  'get',
  'dog',
  'go',
  'interact',
  'take',
  'care',
  'would',
  'complet',
  'brother',
  'found',
  'ridicul',
  'agre',
  'moment',
  'hope',
  'would',
  'chang',
  'mind',
  'meet',
  'dog',
  'problem',
  'chang',
  'mind',
  'yet',
  'weve',
  'zeu',
  'seven',
  'month',
  'dylan',
  'warm',
  'slightest',
  'play',
  'dog',
  'cuddl',
  'let',
  'zeu',
  'room',
  'destroy',
  'stuff',
  'whenev',
  'near',
  'dog',
  'ignor',
  'find',
  'complet',
  'ridicul',
  'zeu',
  'love',
  'dylan',
  'follow',
  'around',
  'whenev',
  'see',
  'jump',
  'get',
  'attent',
  'play',
  'dylan',
  'recept',
  'chang',
  'told',
  'dylan',
  'last',
  'week',
  'would',
  'charg',
  'walk',
  'dog',
  'everi',
  'day',
  'school',
  'dylan',
  'straight',
  'refus',
  'shut',
  'convers',
  'everi',
  'time',
  'bring',
  'week',
  'walk',
  'dog',
  'frustrat',
  'told',
  'start',
  'listen',
  'allow',
  'go',
  'comic',
  'book',
  'store',
  'anymor',
  'freak',
  'told',
  'wife',
  'wife',
  'upset',
  'claim',
  'knew',
  'get',
  'knew',
  'dylan',
  'play',
  'dog',
  'intoler',
  'dog',
  'weird',
  'refus',
  'entertain',
  'longer',
  'wife',
  'short',
  'ever',
  'sinc',
  'convers',
  'dylan',
  'cold',
  'well',
  'alex',
  'agre',
  'mother',
  'make',
  'second',
  'thought',
  'reddit',
  'aita',
  'throwaway_account',
  'account_fake',
  'fake_name',
  'name_wife',
  'wife_also',
  'also_reddit',
  'reddit_sorri',
  'sorri_long',
  'long_post',
  'post_wife',
  'wife_three',
  'three_son',
  'son_alex',
  'alex_dylan',
  'dylan_jake',
  'jake_kid',
  'kid_alway',
  'alway_want',
  'want_dog',
  'dog_parent',
  'parent_said',
  'said_never',
  'never_got',
  'got_chanc',
  'chanc_get',
  'get_one',
  'one_twenti',
  'twenti_recent',
  'recent_interest',
  'interest_one',
  'one_spark',
  'spark_ask',
  'ask_famili',
  'famili_thought',
  'thought_get',
  'get_dog',
  'dog_wife',
  'wife_enthusiast',
  'enthusiast_relent',
  'relent_week',
  'week_ask',
  'ask_alex',
  'alex_jake',
  'jake_excit',
  'excit_get',
  'get_one',
  'one_dylan',
  'dylan_immedi',
  'immedi_oppos',
  'oppos_idea',
  'idea_dylan',
  'dylan_alway',
  'alway_differ',
  'differ_son',
  'son_never',
  'never_interest',
  'interest_sport',
  'sport_alway',
  'alway_subdu',
  'subdu_brother',
  'brother_alway',
  'alway_made',
  'made_hard',
  'hard_connect',
  'connect_remain',
  'remain_oppos',
  'oppos_idea',
  'idea_get',
  'get_dog',
  'dog_son',
  'son_manag',
  'manag_wear',
  'wear_final',
  'final_relent',
  'relent_howev',
  'howev_said',
  'said_get',
  'get_dog',
  'dog_go',
  'go_interact',
  'interact_take',
  'take_care',
  'care_would',
  'would_complet',
  'complet_brother',
  'brother_found',
  'found_ridicul',
  'ridicul_agre',
  'agre_moment',
  'moment_hope',
  'hope_would',
  'would_chang',
  'chang_mind',
  'mind_meet',
  'meet_dog',
  'dog_problem',
  'problem_chang',
  'chang_mind',
  'mind_yet',
  'yet_weve',
  'weve_zeu',
  'zeu_seven',
  'seven_month',
  'month_dylan',
  'dylan_warm',
  'warm_slightest',
  'slightest_play',
  'play_dog',
  'dog_cuddl',
  'cuddl_let',
  'let_zeu',
  'zeu_room',
  'room_destroy',
  'destroy_stuff',
  'stuff_whenev',
  'whenev_near',
  'near_dog',
  'dog_ignor',
  'ignor_find',
  'find_complet',
  'complet_ridicul',
  'ridicul_zeu',
  'zeu_love',
  'love_dylan',
  'dylan_follow',
  'follow_around',
  'around_whenev',
  'whenev_see',
  'see_jump',
  'jump_get',
  'get_attent',
  'attent_play',
  'play_dylan',
  'dylan_recept',
  'recept_chang',
  'chang_told',
  'told_dylan',
  'dylan_last',
  'last_week',
  'week_would',
  'would_charg',
  'charg_walk',
  'walk_dog',
  'dog_everi',
  'everi_day',
  'day_school',
  'school_dylan',
  'dylan_straight',
  'straight_refus',
  'refus_shut',
  'shut_convers',
  'convers_everi',
  'everi_time',
  'time_bring',
  'bring_week',
  'week_walk',
  'walk_dog',
  'dog_frustrat',
  'frustrat_told',
  'told_start',
  'start_listen',
  'listen_allow',
  'allow_go',
  'go_comic',
  'comic_book',
  'book_store',
  'store_anymor',
  'anymor_freak',
  'freak_told',
  'told_wife',
  'wife_wife',
  'wife_upset',
  'upset_claim',
  'claim_knew',
  'knew_get',
  'get_knew',
  'knew_dylan',
  'dylan_play',
  'play_dog',
  'dog_intoler',
  'intoler_dog',
  'dog_weird',
  'weird_refus',
  'refus_entertain',
  'entertain_longer',
  'longer_wife',
  'wife_short',
  'short_ever',
  'ever_sinc',
  'sinc_convers',
  'convers_dylan',
  'dylan_cold',
  'cold_well',
  'well_alex',
  'alex_agre',
  'agre_mother',
  'mother_make',
  'make_second',
  'second_thought',
  'thought_reddit',
  'reddit_aita',
  'throwaway_account_fake',
  'account_fake_name',
  'fake_name_wife',
  'name_wife_also',
  'wife_also_reddit',
  'also_reddit_sorri',
  'reddit_sorri_long',
  'sorri_long_post',
  'long_post_wife',
  'post_wife_three',
  'wife_three_son',
  'three_son_alex',
  'son_alex_dylan',
  'alex_dylan_jake',
  'dylan_jake_kid',
  'jake_kid_alway',
  'kid_alway_want',
  'alway_want_dog',
  'want_dog_parent',
  'dog_parent_said',
  'parent_said_never',
  'said_never_got',
  'never_got_chanc',
  'got_chanc_get',
  'chanc_get_one',
  'get_one_twenti',
  'one_twenti_recent',
  'twenti_recent_interest',
  'recent_interest_one',
  'interest_one_spark',
  'one_spark_ask',
  'spark_ask_famili',
  'ask_famili_thought',
  'famili_thought_get',
  'thought_get_dog',
  'get_dog_wife',
  'dog_wife_enthusiast',
  'wife_enthusiast_relent',
  'enthusiast_relent_week',
  'relent_week_ask',
  'week_ask_alex',
  'ask_alex_jake',
  'alex_jake_excit',
  'jake_excit_get',
  'excit_get_one',
  'get_one_dylan',
  'one_dylan_immedi',
  'dylan_immedi_oppos',
  'immedi_oppos_idea',
  'oppos_idea_dylan',
  'idea_dylan_alway',
  'dylan_alway_differ',
  'alway_differ_son',
  'differ_son_never',
  'son_never_interest',
  'never_interest_sport',
  'interest_sport_alway',
  'sport_alway_subdu',
  'alway_subdu_brother',
  'subdu_brother_alway',
  'brother_alway_made',
  'alway_made_hard',
  'made_hard_connect',
  'hard_connect_remain',
  'connect_remain_oppos',
  'remain_oppos_idea',
  'oppos_idea_get',
  'idea_get_dog',
  'get_dog_son',
  'dog_son_manag',
  'son_manag_wear',
  'manag_wear_final',
  'wear_final_relent',
  'final_relent_howev',
  'relent_howev_said',
  'howev_said_get',
  'said_get_dog',
  'get_dog_go',
  'dog_go_interact',
  'go_interact_take',
  'interact_take_care',
  'take_care_would',
  'care_would_complet',
  'would_complet_brother',
  'complet_brother_found',
  'brother_found_ridicul',
  'found_ridicul_agre',
  'ridicul_agre_moment',
  'agre_moment_hope',
  'moment_hope_would',
  'hope_would_chang',
  'would_chang_mind',
  'chang_mind_meet',
  'mind_meet_dog',
  'meet_dog_problem',
  'dog_problem_chang',
  'problem_chang_mind',
  'chang_mind_yet',
  'mind_yet_weve',
  'yet_weve_zeu',
  'weve_zeu_seven',
  'zeu_seven_month',
  'seven_month_dylan',
  'month_dylan_warm',
  'dylan_warm_slightest',
  'warm_slightest_play',
  'slightest_play_dog',
  'play_dog_cuddl',
  'dog_cuddl_let',
  'cuddl_let_zeu',
  'let_zeu_room',
  'zeu_room_destroy',
  'room_destroy_stuff',
  'destroy_stuff_whenev',
  'stuff_whenev_near',
  'whenev_near_dog',
  'near_dog_ignor',
  'dog_ignor_find',
  'ignor_find_complet',
  'find_complet_ridicul',
  'complet_ridicul_zeu',
  'ridicul_zeu_love',
  'zeu_love_dylan',
  'love_dylan_follow',
  'dylan_follow_around',
  'follow_around_whenev',
  'around_whenev_see',
  'whenev_see_jump',
  'see_jump_get',
  'jump_get_attent',
  'get_attent_play',
  'attent_play_dylan',
  'play_dylan_recept',
  'dylan_recept_chang',
  'recept_chang_told',
  'chang_told_dylan',
  'told_dylan_last',
  'dylan_last_week',
  'last_week_would',
  'week_would_charg',
  'would_charg_walk',
  'charg_walk_dog',
  'walk_dog_everi',
  'dog_everi_day',
  'everi_day_school',
  'day_school_dylan',
  'school_dylan_straight',
  'dylan_straight_refus',
  'straight_refus_shut',
  'refus_shut_convers',
  'shut_convers_everi',
  'convers_everi_time',
  'everi_time_bring',
  'time_bring_week',
  'bring_week_walk',
  'week_walk_dog',
  'walk_dog_frustrat',
  'dog_frustrat_told',
  'frustrat_told_start',
  'told_start_listen',
  'start_listen_allow',
  'listen_allow_go',
  'allow_go_comic',
  'go_comic_book',
  'comic_book_store',
  'book_store_anymor',
  'store_anymor_freak',
  'anymor_freak_told',
  'freak_told_wife',
  'told_wife_wife',
  'wife_wife_upset',
  'wife_upset_claim',
  'upset_claim_knew',
  'claim_knew_get',
  'knew_get_knew',
  'get_knew_dylan',
  'knew_dylan_play',
  'dylan_play_dog',
  'play_dog_intoler',
  'dog_intoler_dog',
  'intoler_dog_weird',
  'dog_weird_refus',
  'weird_refus_entertain',
  'refus_entertain_longer',
  'entertain_longer_wife',
  'longer_wife_short',
  'wife_short_ever',
  'short_ever_sinc',
  'ever_sinc_convers',
  'sinc_convers_dylan',
  'convers_dylan_cold',
  'dylan_cold_well',
  'cold_well_alex',
  'well_alex_agre',
  'alex_agre_mother',
  'agre_mother_make',
  'mother_make_second',
  'make_second_thought',
  'second_thought_reddit',
  'thought_reddit_aita'],
 ['fparent',
  'remodel',
  'hous',
  'dad',
  'tore',
  'big',
  'chunk',
  'back',
  'brother',
  'sister',
  'husband',
  'clean',
  'pick',
  'rubbish',
  'left',
  'import',
  'say',
  'like',
  'bil',
  'quit',
  'misogynist',
  'disrespect',
  'boundari',
  'know',
  'badli',
  'speak',
  'famili',
  'brother',
  'father',
  'noth',
  'like',
  'believ',
  'aw',
  'wrong',
  'much',
  'sister',
  'claim',
  'happi',
  'tri',
  'interact',
  'less',
  'feel',
  'uncomfort',
  'presenc',
  'year',
  'ago',
  'use',
  'made',
  'fun',
  'anyth',
  'also',
  'use',
  'sister',
  'mom',
  'thing',
  'like',
  'cook',
  'serv',
  'plate',
  'laundri',
  'childcar',
  'anyth',
  'said',
  'father',
  'bil',
  'usual',
  'leav',
  'hour',
  'work',
  'dad',
  'work',
  'construct',
  'bil',
  'compani',
  'ive',
  'dad',
  'lunch',
  'two',
  'year',
  'sinc',
  'got',
  'like',
  'cook',
  'cook',
  'dinner',
  'us',
  'pack',
  'exampl',
  'instanc',
  'made',
  'enchilada',
  'pack',
  'side',
  'lettuc',
  'sour',
  'cream',
  'green',
  'salsa',
  'small',
  'contain',
  'bag',
  'chip',
  'chunk',
  'slice',
  'fruit',
  'appl',
  'pear',
  'also',
  'pack',
  'water',
  'coke',
  'came',
  'kitchen',
  'mom',
  'told',
  'dad',
  'lunch',
  'alreadi',
  'car',
  'could',
  'eat',
  'someth',
  'leav',
  'without',
  'worri',
  'bil',
  'said',
  'shrug',
  'shoulder',
  'said',
  'left',
  'contain',
  'island',
  'welcom',
  'pack',
  'stuff',
  'water',
  'coke',
  'fridg',
  'gave',
  'dirti',
  'look',
  'ask',
  'said',
  'dad',
  'mom',
  'got',
  'middl',
  'told',
  'start',
  'pack',
  'bil',
  'lunch',
  '*',
  'smirk',
  '*',
  'said',
  'sat',
  'plate',
  'said',
  'could',
  'pack',
  'lunch',
  'buy',
  'someth',
  'job',
  'mom',
  'said',
  '*',
  'embarrass',
  '*',
  'dad',
  'cut',
  'told',
  'bil',
  'stop',
  'fight',
  'pack',
  'stuff',
  'alreadi',
  'cook',
  'us',
  'end',
  'say',
  'would',
  'eat',
  'someth',
  'work',
  'left',
  'earli',
  'mom',
  'tri',
  'berat',
  'dad',
  'cut',
  'said',
  'bil',
  'alreadi',
  'adult',
  'said',
  'pack',
  'lunch',
  'dad',
  'said',
  'yeah',
  'demand',
  'left',
  'mom',
  'call',
  'ah',
  'rais',
  'better',
  'aita',
  'eta',
  'post',
  'got',
  'distract',
  'homework',
  'wow',
  'thought',
  'would',
  'get',
  'much',
  'attent',
  'thank',
  'judgment',
  'ill',
  'read',
  'comment',
  'answer',
  'eta',
  'thank',
  'everyon',
  'kind',
  'comment',
  'dad',
  'truli',
  'best',
  'love',
  'heart',
  'im',
  'realli',
  'happi',
  'say',
  'awesom',
  'thing',
  'read',
  'post',
  'comment',
  'brother',
  'happi',
  'thank',
  'fparent_remodel',
  'remodel_hous',
  'hous_dad',
  'dad_tore',
  'tore_big',
  'big_chunk',
  'chunk_back',
  'back_brother',
  'brother_sister',
  'sister_husband',
  'husband_clean',
  'clean_pick',
  'pick_rubbish',
  'rubbish_left',
  'left_import',
  'import_say',
  'say_like',
  'like_bil',
  'bil_quit',
  'quit_misogynist',
  'misogynist_disrespect',
  'disrespect_boundari',
  'boundari_know',
  'know_badli',
  'badli_speak',
  'speak_famili',
  'famili_brother',
  'brother_father',
  'father_noth',
  'noth_like',
  'like_believ',
  'believ_aw',
  'aw_wrong',
  'wrong_much',
  'much_sister',
  'sister_claim',
  'claim_happi',
  'happi_tri',
  'tri_interact',
  'interact_less',
  'less_feel',
  'feel_uncomfort',
  'uncomfort_presenc',
  'presenc_year',
  'year_ago',
  'ago_use',
  'use_made',
  'made_fun',
  'fun_anyth',
  'anyth_also',
  'also_use',
  'use_sister',
  'sister_mom',
  'mom_thing',
  'thing_like',
  'like_cook',
  'cook_serv',
  'serv_plate',
  'plate_laundri',
  'laundri_childcar',
  'childcar_anyth',
  'anyth_said',
  'said_father',
  'father_bil',
  'bil_usual',
  'usual_leav',
  'leav_hour',
  'hour_work',
  'work_dad',
  'dad_work',
  'work_construct',
  'construct_bil',
  'bil_compani',
  'compani_ive',
  'ive_dad',
  'dad_lunch',
  'lunch_two',
  'two_year',
  'year_sinc',
  'sinc_got',
  'got_like',
  'like_cook',
  'cook_cook',
  'cook_dinner',
  'dinner_us',
  'us_pack',
  'pack_exampl',
  'exampl_instanc',
  'instanc_made',
  'made_enchilada',
  'enchilada_pack',
  'pack_side',
  'side_lettuc',
  'lettuc_sour',
  'sour_cream',
  'cream_green',
  'green_salsa',
  'salsa_small',
  'small_contain',
  'contain_bag',
  'bag_chip',
  'chip_chunk',
  'chunk_slice',
  'slice_fruit',
  'fruit_appl',
  'appl_pear',
  'pear_also',
  'also_pack',
  'pack_water',
  'water_coke',
  'coke_came',
  'came_kitchen',
  'kitchen_mom',
  'mom_told',
  'told_dad',
  'dad_lunch',
  'lunch_alreadi',
  'alreadi_car',
  'car_could',
  'could_eat',
  'eat_someth',
  'someth_leav',
  'leav_without',
  'without_worri',
  'worri_bil',
  'bil_said',
  'said_shrug',
  'shrug_shoulder',
  'shoulder_said',
  'said_left',
  'left_contain',
  'contain_island',
  'island_welcom',
  'welcom_pack',
  'pack_stuff',
  'stuff_water',
  'water_coke',
  'coke_fridg',
  'fridg_gave',
  'gave_dirti',
  'dirti_look',
  'look_ask',
  'ask_said',
  'said_dad',
  'dad_mom',
  'mom_got',
  'got_middl',
  'middl_told',
  'told_start',
  'start_pack',
  'pack_bil',
  'bil_lunch',
  'lunch_*',
  '*_smirk',
  'smirk_*',
  '*_said',
  'said_sat',
  'sat_plate',
  'plate_said',
  'said_could',
  'could_pack',
  'pack_lunch',
  'lunch_buy',
  'buy_someth',
  'someth_job',
  'job_mom',
  'mom_said',
  'said_*',
  '*_embarrass',
  'embarrass_*',
  '*_dad',
  'dad_cut',
  'cut_told',
  'told_bil',
  'bil_stop',
  'stop_fight',
  'fight_pack',
  'pack_stuff',
  'stuff_alreadi',
  'alreadi_cook',
  'cook_us',
  'us_end',
  'end_say',
  'say_would',
  'would_eat',
  'eat_someth',
  'someth_work',
  'work_left',
  'left_earli',
  'earli_mom',
  'mom_tri',
  'tri_berat',
  'berat_dad',
  'dad_cut',
  'cut_said',
  'said_bil',
  'bil_alreadi',
  'alreadi_adult',
  'adult_said',
  'said_pack',
  'pack_lunch',
  'lunch_dad',
  'dad_said',
  'said_yeah',
  'yeah_demand',
  'demand_left',
  'left_mom',
  'mom_call',
  'call_ah',
  'ah_rais',
  'rais_better',
  'better_aita',
  'aita_eta',
  'eta_post',
  'post_got',
  'got_distract',
  'distract_homework',
  'homework_wow',
  'wow_thought',
  'thought_would',
  'would_get',
  'get_much',
  'much_attent',
  'attent_thank',
  'thank_judgment',
  'judgment_ill',
  'ill_read',
  'read_comment',
  'comment_answer',
  'answer_eta',
  'eta_thank',
  'thank_everyon',
  'everyon_kind',
  'kind_comment',
  'comment_dad',
  'dad_truli',
  'truli_best',
  'best_love',
  'love_heart',
  'heart_im',
  'im_realli',
  'realli_happi',
  'happi_say',
  'say_awesom',
  'awesom_thing',
  'thing_read',
  'read_post',
  'post_comment',
  'comment_brother',
  'brother_happi',
  'happi_thank',
  'fparent_remodel_hous',
  'remodel_hous_dad',
  'hous_dad_tore',
  'dad_tore_big',
  'tore_big_chunk',
  'big_chunk_back',
  'chunk_back_brother',
  'back_brother_sister',
  'brother_sister_husband',
  'sister_husband_clean',
  'husband_clean_pick',
  'clean_pick_rubbish',
  'pick_rubbish_left',
  'rubbish_left_import',
  'left_import_say',
  'import_say_like',
  'say_like_bil',
  'like_bil_quit',
  'bil_quit_misogynist',
  'quit_misogynist_disrespect',
  'misogynist_disrespect_boundari',
  'disrespect_boundari_know',
  'boundari_know_badli',
  'know_badli_speak',
  'badli_speak_famili',
  'speak_famili_brother',
  'famili_brother_father',
  'brother_father_noth',
  'father_noth_like',
  'noth_like_believ',
  'like_believ_aw',
  'believ_aw_wrong',
  'aw_wrong_much',
  'wrong_much_sister',
  'much_sister_claim',
  'sister_claim_happi',
  'claim_happi_tri',
  'happi_tri_interact',
  'tri_interact_less',
  'interact_less_feel',
  'less_feel_uncomfort',
  'feel_uncomfort_presenc',
  'uncomfort_presenc_year',
  'presenc_year_ago',
  'year_ago_use',
  'ago_use_made',
  'use_made_fun',
  'made_fun_anyth',
  'fun_anyth_also',
  'anyth_also_use',
  'also_use_sister',
  'use_sister_mom',
  'sister_mom_thing',
  'mom_thing_like',
  'thing_like_cook',
  'like_cook_serv',
  'cook_serv_plate',
  'serv_plate_laundri',
  'plate_laundri_childcar',
  'laundri_childcar_anyth',
  'childcar_anyth_said',
  'anyth_said_father',
  'said_father_bil',
  'father_bil_usual',
  'bil_usual_leav',
  'usual_leav_hour',
  'leav_hour_work',
  'hour_work_dad',
  'work_dad_work',
  'dad_work_construct',
  'work_construct_bil',
  'construct_bil_compani',
  'bil_compani_ive',
  'compani_ive_dad',
  'ive_dad_lunch',
  'dad_lunch_two',
  'lunch_two_year',
  'two_year_sinc',
  'year_sinc_got',
  'sinc_got_like',
  'got_like_cook',
  'like_cook_cook',
  'cook_cook_dinner',
  'cook_dinner_us',
  'dinner_us_pack',
  'us_pack_exampl',
  'pack_exampl_instanc',
  'exampl_instanc_made',
  'instanc_made_enchilada',
  'made_enchilada_pack',
  'enchilada_pack_side',
  'pack_side_lettuc',
  'side_lettuc_sour',
  'lettuc_sour_cream',
  'sour_cream_green',
  'cream_green_salsa',
  'green_salsa_small',
  'salsa_small_contain',
  'small_contain_bag',
  'contain_bag_chip',
  'bag_chip_chunk',
  'chip_chunk_slice',
  'chunk_slice_fruit',
  'slice_fruit_appl',
  'fruit_appl_pear',
  'appl_pear_also',
  'pear_also_pack',
  'also_pack_water',
  'pack_water_coke',
  'water_coke_came',
  'coke_came_kitchen',
  'came_kitchen_mom',
  'kitchen_mom_told',
  'mom_told_dad',
  'told_dad_lunch',
  'dad_lunch_alreadi',
  'lunch_alreadi_car',
  'alreadi_car_could',
  'car_could_eat',
  'could_eat_someth',
  'eat_someth_leav',
  'someth_leav_without',
  'leav_without_worri',
  'without_worri_bil',
  'worri_bil_said',
  'bil_said_shrug',
  'said_shrug_shoulder',
  'shrug_shoulder_said',
  'shoulder_said_left',
  'said_left_contain',
  'left_contain_island',
  'contain_island_welcom',
  'island_welcom_pack',
  'welcom_pack_stuff',
  'pack_stuff_water',
  'stuff_water_coke',
  'water_coke_fridg',
  'coke_fridg_gave',
  'fridg_gave_dirti',
  'gave_dirti_look',
  'dirti_look_ask',
  'look_ask_said',
  'ask_said_dad',
  'said_dad_mom',
  'dad_mom_got',
  'mom_got_middl',
  'got_middl_told',
  'middl_told_start',
  'told_start_pack',
  'start_pack_bil',
  'pack_bil_lunch',
  'bil_lunch_*',
  'lunch_*_smirk',
  '*_smirk_*',
  'smirk_*_said',
  '*_said_sat',
  'said_sat_plate',
  'sat_plate_said',
  'plate_said_could',
  'said_could_pack',
  'could_pack_lunch',
  'pack_lunch_buy',
  'lunch_buy_someth',
  'buy_someth_job',
  'someth_job_mom',
  'job_mom_said',
  'mom_said_*',
  'said_*_embarrass',
  '*_embarrass_*',
  'embarrass_*_dad',
  '*_dad_cut',
  'dad_cut_told',
  'cut_told_bil',
  'told_bil_stop',
  'bil_stop_fight',
  'stop_fight_pack',
  'fight_pack_stuff',
  'pack_stuff_alreadi',
  'stuff_alreadi_cook',
  'alreadi_cook_us',
  'cook_us_end',
  'us_end_say',
  'end_say_would',
  'say_would_eat',
  'would_eat_someth',
  'eat_someth_work',
  'someth_work_left',
  'work_left_earli',
  'left_earli_mom',
  'earli_mom_tri',
  'mom_tri_berat',
  'tri_berat_dad',
  'berat_dad_cut',
  'dad_cut_said',
  'cut_said_bil',
  'said_bil_alreadi',
  'bil_alreadi_adult',
  'alreadi_adult_said',
  'adult_said_pack',
  'said_pack_lunch',
  'pack_lunch_dad',
  'lunch_dad_said',
  'dad_said_yeah',
  'said_yeah_demand',
  'yeah_demand_left',
  'demand_left_mom',
  'left_mom_call',
  'mom_call_ah',
  'call_ah_rais',
  'ah_rais_better',
  'rais_better_aita',
  'better_aita_eta',
  'aita_eta_post',
  'eta_post_got',
  'post_got_distract',
  'got_distract_homework',
  'distract_homework_wow',
  'homework_wow_thought',
  'wow_thought_would',
  'thought_would_get',
  'would_get_much',
  'get_much_attent',
  'much_attent_thank',
  'attent_thank_judgment',
  'thank_judgment_ill',
  'judgment_ill_read',
  'ill_read_comment',
  'read_comment_answer',
  'comment_answer_eta',
  'answer_eta_thank',
  'eta_thank_everyon',
  'thank_everyon_kind',
  'everyon_kind_comment',
  'kind_comment_dad',
  'comment_dad_truli',
  'dad_truli_best',
  'truli_best_love',
  'best_love_heart',
  'love_heart_im',
  'heart_im_realli',
  'im_realli_happi',
  'realli_happi_say',
  'happi_say_awesom',
  'say_awesom_thing',
  'awesom_thing_read',
  'thing_read_post',
  'read_post_comment',
  'post_comment_brother',
  'comment_brother_happi',
  'brother_happi_thank'],
 ['husband',
  'got',
  'marri',
  'week',
  'ago',
  'obvious',
  'still',
  'upset',
  'think',
  'wrong',
  'thought',
  'would',
  'ask',
  'gave',
  'plu',
  'one',
  'marri',
  'coupl',
  'knew',
  'well',
  'husband',
  'one',
  'childhood',
  'friend',
  'come',
  'state',
  'attend',
  'ive',
  'met',
  'bunch',
  'girlfriend',
  'three',
  'year',
  'time',
  'distanc',
  'want',
  'give',
  'plu',
  'one',
  'husband',
  'beg',
  'sinc',
  'travel',
  'know',
  'anyon',
  'els',
  'wed',
  'want',
  'uncomfort',
  'travel',
  'alon',
  'said',
  'fine',
  'make',
  'happi',
  'flash',
  'forward',
  'recept',
  'see',
  'girl',
  'never',
  'seen',
  'ask',
  'husband',
  'told',
  'friend',
  'gf',
  'broke',
  'day',
  'wed',
  'sinc',
  'alreadi',
  'rsvped',
  'brought',
  'friend',
  'piss',
  'sinc',
  'made',
  'except',
  'want',
  'anyon',
  'random',
  'wed',
  'one',
  'bridesmaid',
  'go',
  'tell',
  'could',
  'stay',
  'date',
  'pleas',
  'go',
  'back',
  'hotel',
  'privat',
  'event',
  'said',
  'ok',
  'make',
  'fuss',
  'left',
  'come',
  'back',
  'though',
  'everyth',
  'fine',
  'great',
  'night',
  'husband',
  'found',
  'next',
  'day',
  'got',
  'argument',
  'mad',
  'friend',
  'travel',
  'kick',
  'without',
  'talk',
  'kick',
  'date',
  'week',
  'later',
  'husband',
  'still',
  'bring',
  'time',
  'time',
  'friend',
  'answer',
  'text',
  'kind',
  'feel',
  'bad',
  'wed',
  'want',
  'stranger',
  'husband_got',
  'got_marri',
  'marri_week',
  'week_ago',
  'ago_obvious',
  'obvious_still',
  'still_upset',
  'upset_think',
  'think_wrong',
  'wrong_thought',
  'thought_would',
  'would_ask',
  'ask_gave',
  'gave_plu',
  'plu_one',
  'one_marri',
  'marri_coupl',
  'coupl_knew',
  'knew_well',
  'well_husband',
  'husband_one',
  'one_childhood',
  'childhood_friend',
  'friend_come',
  'come_state',
  'state_attend',
  'attend_ive',
  'ive_met',
  'met_bunch',
  'bunch_girlfriend',
  'girlfriend_three',
  'three_year',
  'year_time',
  'time_distanc',
  'distanc_want',
  'want_give',
  'give_plu',
  'plu_one',
  'one_husband',
  'husband_beg',
  'beg_sinc',
  'sinc_travel',
  'travel_know',
  'know_anyon',
  'anyon_els',
  'els_wed',
  'wed_want',
  'want_uncomfort',
  'uncomfort_travel',
  'travel_alon',
  'alon_said',
  'said_fine',
  'fine_make',
  'make_happi',
  'happi_flash',
  'flash_forward',
  'forward_recept',
  'recept_see',
  'see_girl',
  'girl_never',
  'never_seen',
  'seen_ask',
  'ask_husband',
  'husband_told',
  'told_friend',
  'friend_gf',
  'gf_broke',
  'broke_day',
  'day_wed',
  'wed_sinc',
  'sinc_alreadi',
  'alreadi_rsvped',
  'rsvped_brought',
  'brought_friend',
  'friend_piss',
  'piss_sinc',
  'sinc_made',
  'made_except',
  'except_want',
  'want_anyon',
  'anyon_random',
  'random_wed',
  'wed_one',
  'one_bridesmaid',
  'bridesmaid_go',
  'go_tell',
  'tell_could',
  'could_stay',
  'stay_date',
  'date_pleas',
  'pleas_go',
  'go_back',
  'back_hotel',
  'hotel_privat',
  'privat_event',
  'event_said',
  'said_ok',
  'ok_make',
  'make_fuss',
  'fuss_left',
  'left_come',
  'come_back',
  'back_though',
  'though_everyth',
  'everyth_fine',
  'fine_great',
  'great_night',
  'night_husband',
  'husband_found',
  'found_next',
  'next_day',
  'day_got',
  'got_argument',
  'argument_mad',
  'mad_friend',
  'friend_travel',
  'travel_kick',
  'kick_without',
  'without_talk',
  'talk_kick',
  'kick_date',
  'date_week',
  'week_later',
  'later_husband',
  'husband_still',
  'still_bring',
  'bring_time',
  'time_time',
  'time_friend',
  'friend_answer',
  'answer_text',
  'text_kind',
  'kind_feel',
  'feel_bad',
  'bad_wed',
  'wed_want',
  'want_stranger',
  'husband_got_marri',
  'got_marri_week',
  'marri_week_ago',
  'week_ago_obvious',
  'ago_obvious_still',
  'obvious_still_upset',
  'still_upset_think',
  'upset_think_wrong',
  'think_wrong_thought',
  'wrong_thought_would',
  'thought_would_ask',
  'would_ask_gave',
  'ask_gave_plu',
  'gave_plu_one',
  'plu_one_marri',
  'one_marri_coupl',
  'marri_coupl_knew',
  'coupl_knew_well',
  'knew_well_husband',
  'well_husband_one',
  'husband_one_childhood',
  'one_childhood_friend',
  'childhood_friend_come',
  'friend_come_state',
  'come_state_attend',
  'state_attend_ive',
  'attend_ive_met',
  'ive_met_bunch',
  'met_bunch_girlfriend',
  'bunch_girlfriend_three',
  'girlfriend_three_year',
  'three_year_time',
  'year_time_distanc',
  'time_distanc_want',
  'distanc_want_give',
  'want_give_plu',
  'give_plu_one',
  'plu_one_husband',
  'one_husband_beg',
  'husband_beg_sinc',
  'beg_sinc_travel',
  'sinc_travel_know',
  'travel_know_anyon',
  'know_anyon_els',
  'anyon_els_wed',
  'els_wed_want',
  'wed_want_uncomfort',
  'want_uncomfort_travel',
  'uncomfort_travel_alon',
  'travel_alon_said',
  'alon_said_fine',
  'said_fine_make',
  'fine_make_happi',
  'make_happi_flash',
  'happi_flash_forward',
  'flash_forward_recept',
  'forward_recept_see',
  'recept_see_girl',
  'see_girl_never',
  'girl_never_seen',
  'never_seen_ask',
  'seen_ask_husband',
  'ask_husband_told',
  'husband_told_friend',
  'told_friend_gf',
  'friend_gf_broke',
  'gf_broke_day',
  'broke_day_wed',
  'day_wed_sinc',
  'wed_sinc_alreadi',
  'sinc_alreadi_rsvped',
  'alreadi_rsvped_brought',
  'rsvped_brought_friend',
  'brought_friend_piss',
  'friend_piss_sinc',
  'piss_sinc_made',
  'sinc_made_except',
  'made_except_want',
  'except_want_anyon',
  'want_anyon_random',
  'anyon_random_wed',
  'random_wed_one',
  'wed_one_bridesmaid',
  'one_bridesmaid_go',
  'bridesmaid_go_tell',
  'go_tell_could',
  'tell_could_stay',
  'could_stay_date',
  'stay_date_pleas',
  'date_pleas_go',
  'pleas_go_back',
  'go_back_hotel',
  'back_hotel_privat',
  'hotel_privat_event',
  'privat_event_said',
  'event_said_ok',
  'said_ok_make',
  'ok_make_fuss',
  'make_fuss_left',
  'fuss_left_come',
  'left_come_back',
  'come_back_though',
  'back_though_everyth',
  'though_everyth_fine',
  'everyth_fine_great',
  'fine_great_night',
  'great_night_husband',
  'night_husband_found',
  'husband_found_next',
  'found_next_day',
  'next_day_got',
  'day_got_argument',
  'got_argument_mad',
  'argument_mad_friend',
  'mad_friend_travel',
  'friend_travel_kick',
  'travel_kick_without',
  'kick_without_talk',
  'without_talk_kick',
  'talk_kick_date',
  'kick_date_week',
  'date_week_later',
  'week_later_husband',
  'later_husband_still',
  'husband_still_bring',
  'still_bring_time',
  'bring_time_time',
  'time_time_friend',
  'time_friend_answer',
  'friend_answer_text',
  'answer_text_kind',
  'text_kind_feel',
  'kind_feel_bad',
  'feel_bad_wed',
  'bad_wed_want',
  'wed_want_stranger'],
 ['husband',
  'togeth',
  'year',
  'marri',
  'athlet',
  'peopl',
  'least',
  'use',
  'weve',
  'plan',
  'holiday',
  'past',
  'year',
  'without',
  'go',
  'major',
  'detail',
  'expens',
  'standard',
  'holiday',
  'wouldv',
  'involv',
  'lot',
  'hike',
  'look',
  'forward',
  'accid',
  'recent',
  'without',
  'go',
  'much',
  'detail',
  'trigger',
  'lost',
  'leg',
  'upset',
  'im',
  'place',
  'openli',
  'speak',
  'outsid',
  'therapi',
  'obvious',
  'due',
  'recent…restrict',
  'im',
  'unabl',
  'wed',
  'plan',
  'holiday',
  'thought',
  'holiday',
  'non',
  'refundable…',
  'expect',
  'husband',
  'want',
  'go',
  'current',
  'famili',
  'ask',
  'famili',
  'claim',
  'hard',
  'around',
  'know',
  'support',
  'whatev',
  'said',
  'yesterday',
  'invit',
  'sister',
  'place',
  'baffl',
  'expect',
  'support',
  '-',
  'said',
  'two',
  'month',
  'im',
  'like',
  'cancel',
  'someth',
  'said',
  'need',
  'break',
  '-',
  'support',
  'deserv',
  'also',
  'look',
  'forward',
  'it…',
  'said',
  'go',
  'paid',
  'spot',
  'cant',
  'use',
  'ask',
  'im',
  'seriou',
  'spite',
  'sister',
  'done',
  'anything…',
  'said',
  'ask',
  'im',
  'text',
  'last',
  'week',
  '£',
  'get',
  'free',
  'holiday',
  'anyway',
  'upset',
  'claim',
  'hell',
  'still',
  'go',
  'pay',
  'sister',
  'sinc',
  'expens',
  'last',
  'check',
  'fulli',
  'book',
  'aita',
  'id',
  'ask',
  'famili',
  'friend',
  'feel',
  'like',
  'text',
  'husband_togeth',
  'togeth_year',
  'year_marri',
  'marri_athlet',
  'athlet_peopl',
  'peopl_least',
  'least_use',
  'use_weve',
  'weve_plan',
  'plan_holiday',
  'holiday_past',
  'past_year',
  'year_without',
  'without_go',
  'go_major',
  'major_detail',
  'detail_expens',
  'expens_standard',
  'standard_holiday',
  'holiday_wouldv',
  'wouldv_involv',
  'involv_lot',
  'lot_hike',
  'hike_look',
  'look_forward',
  'forward_accid',
  'accid_recent',
  'recent_without',
  'without_go',
  'go_much',
  'much_detail',
  'detail_trigger',
  'trigger_lost',
  'lost_leg',
  'leg_upset',
  'upset_im',
  'im_place',
  'place_openli',
  'openli_speak',
  'speak_outsid',
  'outsid_therapi',
  'therapi_obvious',
  'obvious_due',
  'due_recent…restrict',
  'recent…restrict_im',
  'im_unabl',
  'unabl_wed',
  'wed_plan',
  'plan_holiday',
  'holiday_thought',
  'thought_holiday',
  'holiday_non',
  'non_refundable…',
  'refundable…_expect',
  'expect_husband',
  'husband_want',
  'want_go',
  'go_current',
  'current_famili',
  'famili_ask',
  'ask_famili',
  'famili_claim',
  'claim_hard',
  'hard_around',
  'around_know',
  'know_support',
  'support_whatev',
  'whatev_said',
  'said_yesterday',
  'yesterday_invit',
  'invit_sister',
  'sister_place',
  'place_baffl',
  'baffl_expect',
  'expect_support',
  'support_-',
  '-_said',
  'said_two',
  'two_month',
  'month_im',
  'im_like',
  'like_cancel',
  'cancel_someth',
  'someth_said',
  'said_need',
  'need_break',
  'break_-',
  '-_support',
  'support_deserv',
  'deserv_also',
  'also_look',
  'look_forward',
  'forward_it…',
  'it…_said',
  'said_go',
  'go_paid',
  'paid_spot',
  'spot_cant',
  'cant_use',
  'use_ask',
  'ask_im',
  'im_seriou',
  'seriou_spite',
  'spite_sister',
  'sister_done',
  'done_anything…',
  'anything…_said',
  'said_ask',
  'ask_im',
  'im_text',
  'text_last',
  'last_week',
  'week_£',
  '£_get',
  'get_free',
  'free_holiday',
  'holiday_anyway',
  'anyway_upset',
  'upset_claim',
  'claim_hell',
  'hell_still',
  'still_go',
  'go_pay',
  'pay_sister',
  'sister_sinc',
  'sinc_expens',
  'expens_last',
  'last_check',
  'check_fulli',
  'fulli_book',
  'book_aita',
  'aita_id',
  'id_ask',
  'ask_famili',
  'famili_friend',
  'friend_feel',
  'feel_like',
  'like_text',
  'husband_togeth_year',
  'togeth_year_marri',
  'year_marri_athlet',
  'marri_athlet_peopl',
  'athlet_peopl_least',
  'peopl_least_use',
  'least_use_weve',
  'use_weve_plan',
  'weve_plan_holiday',
  'plan_holiday_past',
  'holiday_past_year',
  'past_year_without',
  'year_without_go',
  'without_go_major',
  'go_major_detail',
  'major_detail_expens',
  'detail_expens_standard',
  'expens_standard_holiday',
  'standard_holiday_wouldv',
  'holiday_wouldv_involv',
  'wouldv_involv_lot',
  'involv_lot_hike',
  'lot_hike_look',
  'hike_look_forward',
  'look_forward_accid',
  'forward_accid_recent',
  'accid_recent_without',
  'recent_without_go',
  'without_go_much',
  'go_much_detail',
  'much_detail_trigger',
  'detail_trigger_lost',
  'trigger_lost_leg',
  'lost_leg_upset',
  'leg_upset_im',
  'upset_im_place',
  'im_place_openli',
  'place_openli_speak',
  'openli_speak_outsid',
  'speak_outsid_therapi',
  'outsid_therapi_obvious',
  'therapi_obvious_due',
  'obvious_due_recent…restrict',
  'due_recent…restrict_im',
  'recent…restrict_im_unabl',
  'im_unabl_wed',
  'unabl_wed_plan',
  'wed_plan_holiday',
  'plan_holiday_thought',
  'holiday_thought_holiday',
  'thought_holiday_non',
  'holiday_non_refundable…',
  'non_refundable…_expect',
  'refundable…_expect_husband',
  'expect_husband_want',
  'husband_want_go',
  'want_go_current',
  'go_current_famili',
  'current_famili_ask',
  'famili_ask_famili',
  'ask_famili_claim',
  'famili_claim_hard',
  'claim_hard_around',
  'hard_around_know',
  'around_know_support',
  'know_support_whatev',
  'support_whatev_said',
  'whatev_said_yesterday',
  'said_yesterday_invit',
  'yesterday_invit_sister',
  'invit_sister_place',
  'sister_place_baffl',
  'place_baffl_expect',
  'baffl_expect_support',
  'expect_support_-',
  'support_-_said',
  '-_said_two',
  'said_two_month',
  'two_month_im',
  'month_im_like',
  'im_like_cancel',
  'like_cancel_someth',
  'cancel_someth_said',
  'someth_said_need',
  'said_need_break',
  'need_break_-',
  'break_-_support',
  '-_support_deserv',
  'support_deserv_also',
  'deserv_also_look',
  'also_look_forward',
  'look_forward_it…',
  'forward_it…_said',
  'it…_said_go',
  'said_go_paid',
  'go_paid_spot',
  'paid_spot_cant',
  'spot_cant_use',
  'cant_use_ask',
  'use_ask_im',
  'ask_im_seriou',
  'im_seriou_spite',
  'seriou_spite_sister',
  'spite_sister_done',
  'sister_done_anything…',
  'done_anything…_said',
  'anything…_said_ask',
  'said_ask_im',
  'ask_im_text',
  'im_text_last',
  'text_last_week',
  'last_week_£',
  'week_£_get',
  '£_get_free',
  'get_free_holiday',
  'free_holiday_anyway',
  'holiday_anyway_upset',
  'anyway_upset_claim',
  'upset_claim_hell',
  'claim_hell_still',
  'hell_still_go',
  'still_go_pay',
  'go_pay_sister',
  'pay_sister_sinc',
  'sister_sinc_expens',
  'sinc_expens_last',
  'expens_last_check',
  'last_check_fulli',
  'check_fulli_book',
  'fulli_book_aita',
  'book_aita_id',
  'aita_id_ask',
  'id_ask_famili',
  'ask_famili_friend',
  'famili_friend_feel',
  'friend_feel_like',
  'feel_like_text'],
 ['live',
  'next',
  'door',
  'jenni',
  'live',
  'husband',
  'child',
  'work',
  'almost',
  'day',
  'outsid',
  'spare',
  'time',
  'play',
  'game',
  'ps',
  'week',
  'pay',
  'good',
  'internet',
  'like',
  'lag',
  'play',
  'internet',
  'slow',
  'ps',
  'room',
  'internet',
  'router',
  'live',
  'room',
  'wi-fi',
  'cabl',
  'constantli',
  'check',
  'internet',
  'speed',
  'alway',
  'month',
  'ago',
  'invit',
  'jenni',
  'famili',
  'dinner',
  'gave',
  'wifi',
  'password',
  'appar',
  'weak',
  'hous',
  'went',
  'polit',
  'last',
  'month',
  'start',
  'notic',
  'bad',
  'internet',
  'speed',
  'th',
  'technic',
  'visit',
  'resolv',
  'technician',
  'ask',
  'pass',
  'password',
  'someon',
  'build',
  'put',
  'piec',
  'togeth',
  'chang',
  'password',
  'internet',
  'crap',
  'want',
  'share',
  'peopl',
  'last',
  'week',
  'neighbor',
  'knock',
  'door',
  'ask',
  'wi-fi',
  'password',
  'internet',
  'work',
  'comment',
  'say',
  'chang',
  'peopl',
  'apart',
  'use',
  'got',
  'messag',
  'said',
  'hard',
  'time',
  'pay',
  'internet',
  'desper',
  'use',
  'mine',
  'give',
  'new',
  'password',
  'promis',
  'would',
  'use',
  'night',
  'got',
  'home',
  'work',
  'deni',
  'say',
  'night',
  'leisur',
  'time',
  'want',
  'bad',
  'internet',
  'want',
  'pay',
  'internet',
  'good',
  'peopl',
  'even',
  'use',
  'month',
  'without',
  'permiss',
  'stomp',
  'oh',
  'gosh',
  'new',
  'imag',
  'build',
  'petti',
  'bitch',
  'want',
  'share',
  'wi-fi',
  'peopl',
  'struggl',
  'financi',
  'aita',
  'live_next',
  'next_door',
  'door_jenni',
  'jenni_live',
  'live_husband',
  'husband_child',
  'child_work',
  'work_almost',
  'almost_day',
  'day_outsid',
  'outsid_spare',
  'spare_time',
  'time_play',
  'play_game',
  'game_ps',
  'ps_week',
  'week_pay',
  'pay_good',
  'good_internet',
  'internet_like',
  'like_lag',
  'lag_play',
  'play_internet',
  'internet_slow',
  'slow_ps',
  'ps_room',
  'room_internet',
  'internet_router',
  'router_live',
  'live_room',
  'room_wi-fi',
  'wi-fi_cabl',
  'cabl_constantli',
  'constantli_check',
  'check_internet',
  'internet_speed',
  'speed_alway',
  'alway_month',
  'month_ago',
  'ago_invit',
  'invit_jenni',
  'jenni_famili',
  'famili_dinner',
  'dinner_gave',
  'gave_wifi',
  'wifi_password',
  'password_appar',
  'appar_weak',
  'weak_hous',
  'hous_went',
  'went_polit',
  'polit_last',
  'last_month',
  'month_start',
  'start_notic',
  'notic_bad',
  'bad_internet',
  'internet_speed',
  'speed_th',
  'th_technic',
  'technic_visit',
  'visit_resolv',
  'resolv_technician',
  'technician_ask',
  'ask_pass',
  'pass_password',
  'password_someon',
  'someon_build',
  'build_put',
  'put_piec',
  'piec_togeth',
  'togeth_chang',
  'chang_password',
  'password_internet',
  'internet_crap',
  'crap_want',
  'want_share',
  'share_peopl',
  'peopl_last',
  'last_week',
  'week_neighbor',
  'neighbor_knock',
  'knock_door',
  'door_ask',
  'ask_wi-fi',
  'wi-fi_password',
  'password_internet',
  'internet_work',
  'work_comment',
  'comment_say',
  'say_chang',
  'chang_peopl',
  'peopl_apart',
  'apart_use',
  'use_got',
  'got_messag',
  'messag_said',
  'said_hard',
  'hard_time',
  'time_pay',
  'pay_internet',
  'internet_desper',
  'desper_use',
  'use_mine',
  'mine_give',
  'give_new',
  'new_password',
  'password_promis',
  'promis_would',
  'would_use',
  'use_night',
  'night_got',
  'got_home',
  'home_work',
  'work_deni',
  'deni_say',
  'say_night',
  'night_leisur',
  'leisur_time',
  'time_want',
  'want_bad',
  'bad_internet',
  'internet_want',
  'want_pay',
  'pay_internet',
  'internet_good',
  'good_peopl',
  'peopl_even',
  'even_use',
  'use_month',
  'month_without',
  'without_permiss',
  'permiss_stomp',
  'stomp_oh',
  'oh_gosh',
  'gosh_new',
  'new_imag',
  'imag_build',
  'build_petti',
  'petti_bitch',
  'bitch_want',
  'want_share',
  'share_wi-fi',
  'wi-fi_peopl',
  'peopl_struggl',
  'struggl_financi',
  'financi_aita',
  'live_next_door',
  'next_door_jenni',
  'door_jenni_live',
  'jenni_live_husband',
  'live_husband_child',
  'husband_child_work',
  'child_work_almost',
  'work_almost_day',
  'almost_day_outsid',
  'day_outsid_spare',
  'outsid_spare_time',
  'spare_time_play',
  'time_play_game',
  'play_game_ps',
  'game_ps_week',
  'ps_week_pay',
  'week_pay_good',
  'pay_good_internet',
  'good_internet_like',
  'internet_like_lag',
  'like_lag_play',
  'lag_play_internet',
  'play_internet_slow',
  'internet_slow_ps',
  'slow_ps_room',
  'ps_room_internet',
  'room_internet_router',
  'internet_router_live',
  'router_live_room',
  'live_room_wi-fi',
  'room_wi-fi_cabl',
  'wi-fi_cabl_constantli',
  'cabl_constantli_check',
  'constantli_check_internet',
  'check_internet_speed',
  'internet_speed_alway',
  'speed_alway_month',
  'alway_month_ago',
  'month_ago_invit',
  'ago_invit_jenni',
  'invit_jenni_famili',
  'jenni_famili_dinner',
  'famili_dinner_gave',
  'dinner_gave_wifi',
  'gave_wifi_password',
  'wifi_password_appar',
  'password_appar_weak',
  'appar_weak_hous',
  'weak_hous_went',
  'hous_went_polit',
  'went_polit_last',
  'polit_last_month',
  'last_month_start',
  'month_start_notic',
  'start_notic_bad',
  'notic_bad_internet',
  'bad_internet_speed',
  'internet_speed_th',
  'speed_th_technic',
  'th_technic_visit',
  'technic_visit_resolv',
  'visit_resolv_technician',
  'resolv_technician_ask',
  'technician_ask_pass',
  'ask_pass_password',
  'pass_password_someon',
  'password_someon_build',
  'someon_build_put',
  'build_put_piec',
  'put_piec_togeth',
  'piec_togeth_chang',
  'togeth_chang_password',
  'chang_password_internet',
  'password_internet_crap',
  'internet_crap_want',
  'crap_want_share',
  'want_share_peopl',
  'share_peopl_last',
  'peopl_last_week',
  'last_week_neighbor',
  'week_neighbor_knock',
  'neighbor_knock_door',
  'knock_door_ask',
  'door_ask_wi-fi',
  'ask_wi-fi_password',
  'wi-fi_password_internet',
  'password_internet_work',
  'internet_work_comment',
  'work_comment_say',
  'comment_say_chang',
  'say_chang_peopl',
  'chang_peopl_apart',
  'peopl_apart_use',
  'apart_use_got',
  'use_got_messag',
  'got_messag_said',
  'messag_said_hard',
  'said_hard_time',
  'hard_time_pay',
  'time_pay_internet',
  'pay_internet_desper',
  'internet_desper_use',
  'desper_use_mine',
  'use_mine_give',
  'mine_give_new',
  'give_new_password',
  'new_password_promis',
  'password_promis_would',
  'promis_would_use',
  'would_use_night',
  'use_night_got',
  'night_got_home',
  'got_home_work',
  'home_work_deni',
  'work_deni_say',
  'deni_say_night',
  'say_night_leisur',
  'night_leisur_time',
  'leisur_time_want',
  'time_want_bad',
  'want_bad_internet',
  'bad_internet_want',
  'internet_want_pay',
  'want_pay_internet',
  'pay_internet_good',
  'internet_good_peopl',
  'good_peopl_even',
  'peopl_even_use',
  'even_use_month',
  'use_month_without',
  'month_without_permiss',
  'without_permiss_stomp',
  'permiss_stomp_oh',
  'stomp_oh_gosh',
  'oh_gosh_new',
  'gosh_new_imag',
  'new_imag_build',
  'imag_build_petti',
  'build_petti_bitch',
  'petti_bitch_want',
  'bitch_want_share',
  'want_share_wi-fi',
  'share_wi-fi_peopl',
  'wi-fi_peopl_struggl',
  'peopl_struggl_financi',
  'struggl_financi_aita'],
 ['ta',
  'account',
  'got',
  'marri',
  'two',
  'month',
  'ago',
  'moder',
  'affair',
  'open',
  'bar',
  'nice',
  'dress',
  'kid',
  'slightli',
  'upscal',
  'place',
  'would',
  'like',
  'guess',
  'live',
  'hire',
  'photograph',
  'compani',
  'midsiz',
  'place',
  'assign',
  'employe',
  'met',
  'time',
  'go',
  'expect',
  'venu',
  'etc',
  'red',
  'flag',
  'noth',
  'weird',
  'day',
  'wed',
  'show',
  'sheer',
  'white',
  'blous',
  'lace',
  'complet',
  'see',
  'bra',
  'notic',
  'husband',
  'notic',
  'everyon',
  'notic',
  'guest',
  'spent',
  'even',
  'tri',
  'look',
  'away',
  'recept',
  'could',
  'overhear',
  'peopl',
  'talk',
  'joke',
  'husband',
  'good',
  'laugh',
  'everyth',
  'done',
  'sort',
  'wtf',
  'realli',
  'happen',
  'guess',
  'everi',
  'wed',
  'need',
  'weird',
  'stori',
  'least',
  'mine',
  'involv',
  'guest',
  'coupl',
  'week',
  'ago',
  'got',
  'photo',
  'packag',
  'good',
  'line',
  'paid',
  'day',
  'later',
  'get',
  'one',
  'automat',
  'email',
  'survey',
  'ask',
  'overal',
  'rate',
  'well',
  'even',
  'rate',
  'photograph',
  'well',
  'except',
  'profession',
  'categori',
  'gave',
  'box',
  'fill',
  'felt',
  'cloth',
  'could',
  'profession',
  'manag',
  'call',
  'clariti',
  'explain',
  'outfit',
  'said',
  'big',
  'deal',
  'realli',
  'situat',
  'appropri',
  'manag',
  'say',
  'much',
  'sound',
  'seriou',
  'thank',
  'inform',
  'end',
  'stori',
  'right',
  'well',
  'nope',
  'weekend',
  'photograph',
  'girl',
  'show',
  'drunk',
  'lawn',
  'wear',
  'three',
  'bra',
  'start',
  'scream',
  'hous',
  'long',
  'stori',
  'short',
  'let',
  'go',
  'job',
  'felt',
  'ah',
  'blame',
  'eventu',
  'call',
  'polic',
  'remov',
  'peopl',
  'know',
  'torn',
  'think',
  'funni',
  'let',
  'go',
  'think',
  'deserv',
  'call',
  'aita',
  'ta_account',
  'account_got',
  'got_marri',
  'marri_two',
  'two_month',
  'month_ago',
  'ago_moder',
  'moder_affair',
  'affair_open',
  'open_bar',
  'bar_nice',
  'nice_dress',
  'dress_kid',
  'kid_slightli',
  'slightli_upscal',
  'upscal_place',
  'place_would',
  'would_like',
  'like_guess',
  'guess_live',
  'live_hire',
  'hire_photograph',
  'photograph_compani',
  'compani_midsiz',
  'midsiz_place',
  'place_assign',
  'assign_employe',
  'employe_met',
  'met_time',
  'time_go',
  'go_expect',
  'expect_venu',
  'venu_etc',
  'etc_red',
  'red_flag',
  'flag_noth',
  'noth_weird',
  'weird_day',
  'day_wed',
  'wed_show',
  'show_sheer',
  'sheer_white',
  'white_blous',
  'blous_lace',
  'lace_complet',
  'complet_see',
  'see_bra',
  'bra_notic',
  'notic_husband',
  'husband_notic',
  'notic_everyon',
  'everyon_notic',
  'notic_guest',
  'guest_spent',
  'spent_even',
  'even_tri',
  'tri_look',
  'look_away',
  'away_recept',
  'recept_could',
  'could_overhear',
  'overhear_peopl',
  'peopl_talk',
  'talk_joke',
  'joke_husband',
  'husband_good',
  'good_laugh',
  'laugh_everyth',
  'everyth_done',
  'done_sort',
  'sort_wtf',
  'wtf_realli',
  'realli_happen',
  'happen_guess',
  'guess_everi',
  'everi_wed',
  'wed_need',
  'need_weird',
  'weird_stori',
  'stori_least',
  'least_mine',
  'mine_involv',
  'involv_guest',
  'guest_coupl',
  'coupl_week',
  'week_ago',
  'ago_got',
  'got_photo',
  'photo_packag',
  'packag_good',
  'good_line',
  'line_paid',
  'paid_day',
  'day_later',
  'later_get',
  'get_one',
  'one_automat',
  'automat_email',
  'email_survey',
  'survey_ask',
  'ask_overal',
  'overal_rate',
  'rate_well',
  'well_even',
  'even_rate',
  'rate_photograph',
  'photograph_well',
  'well_except',
  'except_profession',
  'profession_categori',
  'categori_gave',
  'gave_box',
  'box_fill',
  'fill_felt',
  'felt_cloth',
  'cloth_could',
  'could_profession',
  'profession_manag',
  'manag_call',
  'call_clariti',
  'clariti_explain',
  'explain_outfit',
  'outfit_said',
  'said_big',
  'big_deal',
  'deal_realli',
  'realli_situat',
  'situat_appropri',
  'appropri_manag',
  'manag_say',
  'say_much',
  'much_sound',
  'sound_seriou',
  'seriou_thank',
  'thank_inform',
  'inform_end',
  'end_stori',
  'stori_right',
  'right_well',
  'well_nope',
  'nope_weekend',
  'weekend_photograph',
  'photograph_girl',
  'girl_show',
  'show_drunk',
  'drunk_lawn',
  'lawn_wear',
  'wear_three',
  'three_bra',
  'bra_start',
  'start_scream',
  'scream_hous',
  'hous_long',
  'long_stori',
  'stori_short',
  'short_let',
  'let_go',
  'go_job',
  'job_felt',
  'felt_ah',
  'ah_blame',
  'blame_eventu',
  'eventu_call',
  'call_polic',
  'polic_remov',
  'remov_peopl',
  'peopl_know',
  'know_torn',
  'torn_think',
  'think_funni',
  'funni_let',
  'let_go',
  'go_think',
  'think_deserv',
  'deserv_call',
  'call_aita',
  'ta_account_got',
  'account_got_marri',
  'got_marri_two',
  'marri_two_month',
  'two_month_ago',
  'month_ago_moder',
  'ago_moder_affair',
  'moder_affair_open',
  'affair_open_bar',
  'open_bar_nice',
  'bar_nice_dress',
  'nice_dress_kid',
  'dress_kid_slightli',
  'kid_slightli_upscal',
  'slightli_upscal_place',
  'upscal_place_would',
  'place_would_like',
  'would_like_guess',
  'like_guess_live',
  'guess_live_hire',
  'live_hire_photograph',
  'hire_photograph_compani',
  'photograph_compani_midsiz',
  'compani_midsiz_place',
  'midsiz_place_assign',
  'place_assign_employe',
  'assign_employe_met',
  'employe_met_time',
  'met_time_go',
  'time_go_expect',
  'go_expect_venu',
  'expect_venu_etc',
  'venu_etc_red',
  'etc_red_flag',
  'red_flag_noth',
  'flag_noth_weird',
  'noth_weird_day',
  'weird_day_wed',
  'day_wed_show',
  'wed_show_sheer',
  'show_sheer_white',
  'sheer_white_blous',
  'white_blous_lace',
  'blous_lace_complet',
  'lace_complet_see',
  'complet_see_bra',
  'see_bra_notic',
  'bra_notic_husband',
  'notic_husband_notic',
  'husband_notic_everyon',
  'notic_everyon_notic',
  'everyon_notic_guest',
  'notic_guest_spent',
  'guest_spent_even',
  'spent_even_tri',
  'even_tri_look',
  'tri_look_away',
  'look_away_recept',
  'away_recept_could',
  'recept_could_overhear',
  'could_overhear_peopl',
  'overhear_peopl_talk',
  'peopl_talk_joke',
  'talk_joke_husband',
  'joke_husband_good',
  'husband_good_laugh',
  'good_laugh_everyth',
  'laugh_everyth_done',
  'everyth_done_sort',
  'done_sort_wtf',
  'sort_wtf_realli',
  'wtf_realli_happen',
  'realli_happen_guess',
  'happen_guess_everi',
  'guess_everi_wed',
  'everi_wed_need',
  'wed_need_weird',
  'need_weird_stori',
  'weird_stori_least',
  'stori_least_mine',
  'least_mine_involv',
  'mine_involv_guest',
  'involv_guest_coupl',
  'guest_coupl_week',
  'coupl_week_ago',
  'week_ago_got',
  'ago_got_photo',
  'got_photo_packag',
  'photo_packag_good',
  'packag_good_line',
  'good_line_paid',
  'line_paid_day',
  'paid_day_later',
  'day_later_get',
  'later_get_one',
  'get_one_automat',
  'one_automat_email',
  'automat_email_survey',
  'email_survey_ask',
  'survey_ask_overal',
  'ask_overal_rate',
  'overal_rate_well',
  'rate_well_even',
  'well_even_rate',
  'even_rate_photograph',
  'rate_photograph_well',
  'photograph_well_except',
  'well_except_profession',
  'except_profession_categori',
  'profession_categori_gave',
  'categori_gave_box',
  'gave_box_fill',
  'box_fill_felt',
  'fill_felt_cloth',
  'felt_cloth_could',
  'cloth_could_profession',
  'could_profession_manag',
  'profession_manag_call',
  'manag_call_clariti',
  'call_clariti_explain',
  'clariti_explain_outfit',
  'explain_outfit_said',
  'outfit_said_big',
  'said_big_deal',
  'big_deal_realli',
  'deal_realli_situat',
  'realli_situat_appropri',
  'situat_appropri_manag',
  'appropri_manag_say',
  'manag_say_much',
  'say_much_sound',
  'much_sound_seriou',
  'sound_seriou_thank',
  'seriou_thank_inform',
  'thank_inform_end',
  'inform_end_stori',
  'end_stori_right',
  'stori_right_well',
  'right_well_nope',
  'well_nope_weekend',
  'nope_weekend_photograph',
  'weekend_photograph_girl',
  'photograph_girl_show',
  'girl_show_drunk',
  'show_drunk_lawn',
  'drunk_lawn_wear',
  'lawn_wear_three',
  'wear_three_bra',
  'three_bra_start',
  'bra_start_scream',
  'start_scream_hous',
  'scream_hous_long',
  'hous_long_stori',
  'long_stori_short',
  'stori_short_let',
  'short_let_go',
  'let_go_job',
  'go_job_felt',
  'job_felt_ah',
  'felt_ah_blame',
  'ah_blame_eventu',
  'blame_eventu_call',
  'eventu_call_polic',
  'call_polic_remov',
  'polic_remov_peopl',
  'remov_peopl_know',
  'peopl_know_torn',
  'know_torn_think',
  'torn_think_funni',
  'think_funni_let',
  'funni_let_go',
  'let_go_think',
  'go_think_deserv',
  'think_deserv_call',
  'deserv_call_aita'],
 ['girlfriend',
  'year',
  'boy',
  '&',
  'previou',
  'relationship',
  'mom',
  'pictur',
  'work',
  'full',
  'time',
  'girlfriend',
  'use',
  'stay',
  'home',
  'take',
  'care',
  'everyth',
  'els',
  'still',
  'help',
  'yet',
  'would',
  'complain',
  'kid',
  'caus',
  'constant',
  'mess',
  'receiv',
  'proper',
  'desciplin',
  'accid',
  'like',
  'break',
  'vase',
  'list',
  'goe',
  'complain',
  'parent',
  'true',
  'sinc',
  'provid',
  'incom',
  'yet',
  'decid',
  'want',
  'go',
  'back',
  'work',
  'start',
  'look',
  'found',
  'potenti',
  'job',
  'interview',
  'yesterday',
  'call',
  'remind',
  'pick',
  'kid',
  'school',
  'sinc',
  'respons',
  'said',
  'start',
  'interview',
  'told',
  'go',
  'get',
  'stun',
  'told',
  'work',
  'said',
  'could',
  'take',
  'break',
  'refus',
  'wouldv',
  'affect',
  'job',
  'ask',
  'shed',
  'take',
  'minut',
  'quickli',
  'go',
  'pick',
  'refus',
  'end',
  'get',
  'argument',
  'tell',
  'figur',
  'someth',
  'beforehand',
  'blew',
  'say',
  'im',
  'parent',
  'tire',
  'beck',
  'call',
  'time',
  'kid',
  'end',
  'pick',
  'friend',
  'minut',
  'later',
  'made',
  'upset',
  'home',
  'got',
  'huge',
  'argument',
  'girlfriend',
  'call',
  'selfish',
  'kid',
  'ditch',
  'like',
  'said',
  'import',
  'interview',
  'parent',
  'couldv',
  'figur',
  'someth',
  'instead',
  'expect',
  'drop',
  'pick',
  'kid',
  'call',
  'asshol',
  'went',
  'stay',
  'mom',
  'girlfriend_year',
  'year_boy',
  'boy_&',
  '&_previou',
  'previou_relationship',
  'relationship_mom',
  'mom_pictur',
  'pictur_work',
  'work_full',
  'full_time',
  'time_girlfriend',
  'girlfriend_use',
  'use_stay',
  'stay_home',
  'home_take',
  'take_care',
  'care_everyth',
  'everyth_els',
  'els_still',
  'still_help',
  'help_yet',
  'yet_would',
  'would_complain',
  'complain_kid',
  'kid_caus',
  'caus_constant',
  'constant_mess',
  'mess_receiv',
  'receiv_proper',
  'proper_desciplin',
  'desciplin_accid',
  'accid_like',
  'like_break',
  'break_vase',
  'vase_list',
  'list_goe',
  'goe_complain',
  'complain_parent',
  'parent_true',
  'true_sinc',
  'sinc_provid',
  'provid_incom',
  'incom_yet',
  'yet_decid',
  'decid_want',
  'want_go',
  'go_back',
  'back_work',
  'work_start',
  'start_look',
  'look_found',
  'found_potenti',
  'potenti_job',
  'job_interview',
  'interview_yesterday',
  'yesterday_call',
  'call_remind',
  'remind_pick',
  'pick_kid',
  'kid_school',
  'school_sinc',
  'sinc_respons',
  'respons_said',
  'said_start',
  'start_interview',
  'interview_told',
  'told_go',
  'go_get',
  'get_stun',
  'stun_told',
  'told_work',
  'work_said',
  'said_could',
  'could_take',
  'take_break',
  'break_refus',
  'refus_wouldv',
  'wouldv_affect',
  'affect_job',
  'job_ask',
  'ask_shed',
  'shed_take',
  'take_minut',
  'minut_quickli',
  'quickli_go',
  'go_pick',
  'pick_refus',
  'refus_end',
  'end_get',
  'get_argument',
  'argument_tell',
  'tell_figur',
  'figur_someth',
  'someth_beforehand',
  'beforehand_blew',
  'blew_say',
  'say_im',
  'im_parent',
  'parent_tire',
  'tire_beck',
  'beck_call',
  'call_time',
  'time_kid',
  'kid_end',
  'end_pick',
  'pick_friend',
  'friend_minut',
  'minut_later',
  'later_made',
  'made_upset',
  'upset_home',
  'home_got',
  'got_huge',
  'huge_argument',
  'argument_girlfriend',
  'girlfriend_call',
  'call_selfish',
  'selfish_kid',
  'kid_ditch',
  'ditch_like',
  'like_said',
  'said_import',
  'import_interview',
  'interview_parent',
  'parent_couldv',
  'couldv_figur',
  'figur_someth',
  'someth_instead',
  'instead_expect',
  'expect_drop',
  'drop_pick',
  'pick_kid',
  'kid_call',
  'call_asshol',
  'asshol_went',
  'went_stay',
  'stay_mom',
  'girlfriend_year_boy',
  'year_boy_&',
  'boy_&_previou',
  '&_previou_relationship',
  'previou_relationship_mom',
  'relationship_mom_pictur',
  'mom_pictur_work',
  'pictur_work_full',
  'work_full_time',
  'full_time_girlfriend',
  'time_girlfriend_use',
  'girlfriend_use_stay',
  'use_stay_home',
  'stay_home_take',
  'home_take_care',
  'take_care_everyth',
  'care_everyth_els',
  'everyth_els_still',
  'els_still_help',
  'still_help_yet',
  'help_yet_would',
  'yet_would_complain',
  'would_complain_kid',
  'complain_kid_caus',
  'kid_caus_constant',
  'caus_constant_mess',
  'constant_mess_receiv',
  'mess_receiv_proper',
  'receiv_proper_desciplin',
  'proper_desciplin_accid',
  'desciplin_accid_like',
  'accid_like_break',
  'like_break_vase',
  'break_vase_list',
  'vase_list_goe',
  'list_goe_complain',
  'goe_complain_parent',
  'complain_parent_true',
  'parent_true_sinc',
  'true_sinc_provid',
  'sinc_provid_incom',
  'provid_incom_yet',
  'incom_yet_decid',
  'yet_decid_want',
  'decid_want_go',
  'want_go_back',
  'go_back_work',
  'back_work_start',
  'work_start_look',
  'start_look_found',
  'look_found_potenti',
  'found_potenti_job',
  'potenti_job_interview',
  'job_interview_yesterday',
  'interview_yesterday_call',
  'yesterday_call_remind',
  'call_remind_pick',
  'remind_pick_kid',
  'pick_kid_school',
  'kid_school_sinc',
  'school_sinc_respons',
  'sinc_respons_said',
  'respons_said_start',
  'said_start_interview',
  'start_interview_told',
  'interview_told_go',
  'told_go_get',
  'go_get_stun',
  'get_stun_told',
  'stun_told_work',
  'told_work_said',
  'work_said_could',
  'said_could_take',
  'could_take_break',
  'take_break_refus',
  'break_refus_wouldv',
  'refus_wouldv_affect',
  'wouldv_affect_job',
  'affect_job_ask',
  'job_ask_shed',
  'ask_shed_take',
  'shed_take_minut',
  'take_minut_quickli',
  'minut_quickli_go',
  'quickli_go_pick',
  'go_pick_refus',
  'pick_refus_end',
  'refus_end_get',
  'end_get_argument',
  'get_argument_tell',
  'argument_tell_figur',
  'tell_figur_someth',
  'figur_someth_beforehand',
  'someth_beforehand_blew',
  'beforehand_blew_say',
  'blew_say_im',
  'say_im_parent',
  'im_parent_tire',
  'parent_tire_beck',
  'tire_beck_call',
  'beck_call_time',
  'call_time_kid',
  'time_kid_end',
  'kid_end_pick',
  'end_pick_friend',
  'pick_friend_minut',
  'friend_minut_later',
  'minut_later_made',
  'later_made_upset',
  'made_upset_home',
  'upset_home_got',
  'home_got_huge',
  'got_huge_argument',
  'huge_argument_girlfriend',
  'argument_girlfriend_call',
  'girlfriend_call_selfish',
  'call_selfish_kid',
  'selfish_kid_ditch',
  'kid_ditch_like',
  'ditch_like_said',
  'like_said_import',
  'said_import_interview',
  'import_interview_parent',
  'interview_parent_couldv',
  'parent_couldv_figur',
  'couldv_figur_someth',
  'figur_someth_instead',
  'someth_instead_expect',
  'instead_expect_drop',
  'expect_drop_pick',
  'drop_pick_kid',
  'pick_kid_call',
  'kid_call_asshol',
  'call_asshol_went',
  'asshol_went_stay',
  'went_stay_mom'],
 ['cousin',
  'get',
  'marri',
  'novemb',
  'daughter',
  'dad',
  'brother',
  'context',
  'get',
  'along',
  'bulli',
  'grow',
  'uncl',
  'pass',
  'away',
  'tri',
  'steal',
  'dad',
  'never',
  'allow',
  'made',
  'time',
  'us',
  'day',
  'cousin',
  'still',
  'say',
  'bitch',
  'let',
  'patern',
  'figur',
  'true',
  'neither',
  'mom',
  'dad',
  'allow',
  'mistreat',
  'abus',
  'much',
  'parent',
  'use',
  'watch',
  'afraid',
  'tell',
  'could',
  'see',
  'import',
  'dad',
  'relationship',
  'kept',
  'quiet',
  'bulli',
  'decreas',
  'never',
  'went',
  'away',
  'still',
  'make',
  'fun',
  'im',
  'singl',
  'im',
  'dumb',
  'etc',
  'etc',
  'got',
  'engag',
  'exclud',
  'bridal',
  'parti',
  'matter',
  'fact',
  'includ',
  'rest',
  'famili',
  'mom',
  'side',
  'brother',
  'dad',
  'found',
  'suspici',
  'thing',
  'got',
  'lot',
  'wors',
  'funni',
  'comment',
  'ill',
  'probabl',
  'attend',
  'alon',
  'think',
  'bridesmaid',
  'dress',
  'would',
  'flatter',
  'size',
  'etc',
  'took',
  'parent',
  'dinner',
  'last',
  'week',
  'ask',
  'dad',
  'walk',
  'aisl',
  'know',
  'excus',
  'gave',
  'came',
  'room',
  'ask',
  'would',
  'okay',
  'honest',
  'said',
  'told',
  'made',
  'life',
  'hell',
  'even',
  'uncl',
  'pass',
  'away',
  'sinc',
  'daughter',
  'thought',
  'would',
  'experi',
  'us',
  'knew',
  'would',
  'ask',
  'want',
  'make',
  'feel',
  'clear',
  'end',
  'day',
  'decis',
  'ill',
  'accept',
  'whatev',
  'decid',
  'know',
  'import',
  'told',
  'love',
  'daughter',
  'well',
  'dad',
  'told',
  'cousin',
  'blame',
  'tell',
  'everyon',
  'forc',
  'jealou',
  'littl',
  'fix',
  'welcom',
  'wed',
  'mom',
  'aunt',
  'side',
  'low',
  'blow',
  'part',
  'famili',
  'say',
  'fair',
  'mom',
  'call',
  'yesterday',
  'told',
  'lie',
  'import',
  'moment',
  'brother',
  'told',
  'stop',
  'harass',
  'theyll',
  'drop',
  'parti',
  'help',
  'think',
  'caus',
  'big',
  'mess',
  'cousin_get',
  'get_marri',
  'marri_novemb',
  'novemb_daughter',
  'daughter_dad',
  'dad_brother',
  'brother_context',
  'context_get',
  'get_along',
  'along_bulli',
  'bulli_grow',
  'grow_uncl',
  'uncl_pass',
  'pass_away',
  'away_tri',
  'tri_steal',
  'steal_dad',
  'dad_never',
  'never_allow',
  'allow_made',
  'made_time',
  'time_us',
  'us_day',
  'day_cousin',
  'cousin_still',
  'still_say',
  'say_bitch',
  'bitch_let',
  'let_patern',
  'patern_figur',
  'figur_true',
  'true_neither',
  'neither_mom',
  'mom_dad',
  'dad_allow',
  'allow_mistreat',
  'mistreat_abus',
  'abus_much',
  'much_parent',
  'parent_use',
  'use_watch',
  'watch_afraid',
  'afraid_tell',
  'tell_could',
  'could_see',
  'see_import',
  'import_dad',
  'dad_relationship',
  'relationship_kept',
  'kept_quiet',
  'quiet_bulli',
  'bulli_decreas',
  'decreas_never',
  'never_went',
  'went_away',
  'away_still',
  'still_make',
  'make_fun',
  'fun_im',
  'im_singl',
  'singl_im',
  'im_dumb',
  'dumb_etc',
  'etc_etc',
  'etc_got',
  'got_engag',
  'engag_exclud',
  'exclud_bridal',
  'bridal_parti',
  'parti_matter',
  'matter_fact',
  'fact_includ',
  'includ_rest',
  'rest_famili',
  'famili_mom',
  'mom_side',
  'side_brother',
  'brother_dad',
  'dad_found',
  'found_suspici',
  'suspici_thing',
  'thing_got',
  'got_lot',
  'lot_wors',
  'wors_funni',
  'funni_comment',
  'comment_ill',
  'ill_probabl',
  'probabl_attend',
  'attend_alon',
  'alon_think',
  'think_bridesmaid',
  'bridesmaid_dress',
  'dress_would',
  'would_flatter',
  'flatter_size',
  'size_etc',
  'etc_took',
  'took_parent',
  'parent_dinner',
  'dinner_last',
  'last_week',
  'week_ask',
  'ask_dad',
  'dad_walk',
  'walk_aisl',
  'aisl_know',
  'know_excus',
  'excus_gave',
  'gave_came',
  'came_room',
  'room_ask',
  'ask_would',
  'would_okay',
  'okay_honest',
  'honest_said',
  'said_told',
  'told_made',
  'made_life',
  'life_hell',
  'hell_even',
  'even_uncl',
  'uncl_pass',
  'pass_away',
  'away_sinc',
  'sinc_daughter',
  'daughter_thought',
  'thought_would',
  'would_experi',
  'experi_us',
  'us_knew',
  'knew_would',
  'would_ask',
  'ask_want',
  'want_make',
  'make_feel',
  'feel_clear',
  'clear_end',
  'end_day',
  'day_decis',
  'decis_ill',
  'ill_accept',
  'accept_whatev',
  'whatev_decid',
  'decid_know',
  'know_import',
  'import_told',
  'told_love',
  'love_daughter',
  'daughter_well',
  'well_dad',
  'dad_told',
  'told_cousin',
  'cousin_blame',
  'blame_tell',
  'tell_everyon',
  'everyon_forc',
  'forc_jealou',
  'jealou_littl',
  'littl_fix',
  'fix_welcom',
  'welcom_wed',
  'wed_mom',
  'mom_aunt',
  'aunt_side',
  'side_low',
  'low_blow',
  'blow_part',
  'part_famili',
  'famili_say',
  'say_fair',
  'fair_mom',
  'mom_call',
  'call_yesterday',
  'yesterday_told',
  'told_lie',
  'lie_import',
  'import_moment',
  'moment_brother',
  'brother_told',
  'told_stop',
  'stop_harass',
  'harass_theyll',
  'theyll_drop',
  'drop_parti',
  'parti_help',
  'help_think',
  'think_caus',
  'caus_big',
  'big_mess',
  'cousin_get_marri',
  'get_marri_novemb',
  'marri_novemb_daughter',
  'novemb_daughter_dad',
  'daughter_dad_brother',
  'dad_brother_context',
  'brother_context_get',
  'context_get_along',
  'get_along_bulli',
  'along_bulli_grow',
  'bulli_grow_uncl',
  'grow_uncl_pass',
  'uncl_pass_away',
  'pass_away_tri',
  'away_tri_steal',
  'tri_steal_dad',
  'steal_dad_never',
  'dad_never_allow',
  'never_allow_made',
  'allow_made_time',
  'made_time_us',
  'time_us_day',
  'us_day_cousin',
  'day_cousin_still',
  'cousin_still_say',
  'still_say_bitch',
  'say_bitch_let',
  'bitch_let_patern',
  'let_patern_figur',
  'patern_figur_true',
  'figur_true_neither',
  'true_neither_mom',
  'neither_mom_dad',
  'mom_dad_allow',
  'dad_allow_mistreat',
  'allow_mistreat_abus',
  'mistreat_abus_much',
  'abus_much_parent',
  'much_parent_use',
  'parent_use_watch',
  'use_watch_afraid',
  'watch_afraid_tell',
  'afraid_tell_could',
  'tell_could_see',
  'could_see_import',
  'see_import_dad',
  'import_dad_relationship',
  'dad_relationship_kept',
  'relationship_kept_quiet',
  'kept_quiet_bulli',
  'quiet_bulli_decreas',
  'bulli_decreas_never',
  'decreas_never_went',
  'never_went_away',
  'went_away_still',
  'away_still_make',
  'still_make_fun',
  'make_fun_im',
  'fun_im_singl',
  'im_singl_im',
  'singl_im_dumb',
  'im_dumb_etc',
  'dumb_etc_etc',
  'etc_etc_got',
  'etc_got_engag',
  'got_engag_exclud',
  'engag_exclud_bridal',
  'exclud_bridal_parti',
  'bridal_parti_matter',
  'parti_matter_fact',
  'matter_fact_includ',
  'fact_includ_rest',
  'includ_rest_famili',
  'rest_famili_mom',
  'famili_mom_side',
  'mom_side_brother',
  'side_brother_dad',
  'brother_dad_found',
  'dad_found_suspici',
  'found_suspici_thing',
  'suspici_thing_got',
  'thing_got_lot',
  'got_lot_wors',
  'lot_wors_funni',
  'wors_funni_comment',
  'funni_comment_ill',
  'comment_ill_probabl',
  'ill_probabl_attend',
  'probabl_attend_alon',
  'attend_alon_think',
  'alon_think_bridesmaid',
  'think_bridesmaid_dress',
  'bridesmaid_dress_would',
  'dress_would_flatter',
  'would_flatter_size',
  'flatter_size_etc',
  'size_etc_took',
  'etc_took_parent',
  'took_parent_dinner',
  'parent_dinner_last',
  'dinner_last_week',
  'last_week_ask',
  'week_ask_dad',
  'ask_dad_walk',
  'dad_walk_aisl',
  'walk_aisl_know',
  'aisl_know_excus',
  'know_excus_gave',
  'excus_gave_came',
  'gave_came_room',
  'came_room_ask',
  'room_ask_would',
  'ask_would_okay',
  'would_okay_honest',
  'okay_honest_said',
  'honest_said_told',
  'said_told_made',
  'told_made_life',
  'made_life_hell',
  'life_hell_even',
  'hell_even_uncl',
  'even_uncl_pass',
  'uncl_pass_away',
  'pass_away_sinc',
  'away_sinc_daughter',
  'sinc_daughter_thought',
  'daughter_thought_would',
  'thought_would_experi',
  'would_experi_us',
  'experi_us_knew',
  'us_knew_would',
  'knew_would_ask',
  'would_ask_want',
  'ask_want_make',
  'want_make_feel',
  'make_feel_clear',
  'feel_clear_end',
  'clear_end_day',
  'end_day_decis',
  'day_decis_ill',
  'decis_ill_accept',
  'ill_accept_whatev',
  'accept_whatev_decid',
  'whatev_decid_know',
  'decid_know_import',
  'know_import_told',
  'import_told_love',
  'told_love_daughter',
  'love_daughter_well',
  'daughter_well_dad',
  'well_dad_told',
  'dad_told_cousin',
  'told_cousin_blame',
  'cousin_blame_tell',
  'blame_tell_everyon',
  'tell_everyon_forc',
  'everyon_forc_jealou',
  'forc_jealou_littl',
  'jealou_littl_fix',
  'littl_fix_welcom',
  'fix_welcom_wed',
  'welcom_wed_mom',
  'wed_mom_aunt',
  'mom_aunt_side',
  'aunt_side_low',
  'side_low_blow',
  'low_blow_part',
  'blow_part_famili',
  'part_famili_say',
  'famili_say_fair',
  'say_fair_mom',
  'fair_mom_call',
  'mom_call_yesterday',
  'call_yesterday_told',
  'yesterday_told_lie',
  'told_lie_import',
  'lie_import_moment',
  'import_moment_brother',
  'moment_brother_told',
  'brother_told_stop',
  'told_stop_harass',
  'stop_harass_theyll',
  'harass_theyll_drop',
  'theyll_drop_parti',
  'drop_parti_help',
  'parti_help_think',
  'help_think_caus',
  'think_caus_big',
  'caus_big_mess'],
 ['tri',
  'type',
  'without',
  'use',
  'name',
  'comprehens',
  'anyon',
  'know',
  'see',
  'happen',
  'son',
  'name',
  'robin',
  'five',
  'letter',
  'nicknam',
  'mom',
  'one',
  'kid',
  'class',
  'convinc',
  'name',
  'robert',
  'volunt',
  'pickup',
  'ill',
  'drive',
  'shell',
  'go',
  'get',
  'son',
  'yell',
  'robert',
  'robert',
  'first',
  'week',
  'brush',
  'learn',
  'name',
  'bunch',
  'differ',
  'kid',
  'hard',
  'would',
  'tell',
  'came',
  'back',
  'son',
  'actual',
  'name',
  'robin',
  'ive',
  'said',
  'almost',
  'everi',
  'singl',
  'day',
  'month',
  'last',
  'week',
  'saw',
  'school',
  'function',
  'went',
  'introduc',
  'basic',
  'said',
  'im',
  'robin',
  'father',
  'might',
  'recogn',
  'pickup',
  'way',
  'name',
  'robert',
  'respons',
  'confound',
  'said',
  'robin',
  'girl',
  'name',
  'unisex',
  'way',
  'common',
  'boy',
  'good',
  'nicknam',
  'robert',
  'shell',
  'call',
  'real',
  'name',
  'instead',
  'tri',
  'correct',
  'sinc',
  'robin',
  'nicknam',
  'wander',
  'away',
  'next',
  'time',
  'walk',
  'car',
  'got',
  'annoy',
  'said',
  'im',
  'robin',
  'friday',
  'call',
  'son',
  'robert',
  'ask',
  'problem',
  'loud',
  'voic',
  'shout',
  'loud',
  'enough',
  'teacher',
  'ran',
  'volunt',
  'mom',
  'ran',
  'away',
  'tri',
  'explain',
  'teacher',
  'look',
  'like',
  'three',
  'head',
  'said',
  'would',
  'go',
  'get',
  'son',
  'got',
  'email',
  'later',
  'ask',
  'come',
  'monday',
  'meet',
  'know',
  'approach',
  'apolog',
  'yell',
  'demand',
  'apolog',
  'constant',
  'disrespect',
  'ask',
  'mom',
  'allow',
  'volunt',
  'anymor',
  'least',
  'get',
  'son',
  'feel',
  'like',
  'tri',
  'reason',
  'mayb',
  'sensit',
  'small',
  'updat',
  'wife',
  'reach',
  'charli',
  'mom',
  'facebook',
  'ask',
  'weird',
  'pickup',
  'mom',
  'call',
  'charli',
  'differ',
  'name',
  'well',
  'accord',
  'charli',
  'mom',
  'weird',
  'pickup',
  'mom',
  'call',
  'charli',
  'charlott',
  'charli',
  'legal',
  'name',
  'matter',
  'charli',
  'mom',
  'fan',
  'assum',
  'mistak',
  'want',
  'say',
  'anyth',
  'know',
  'pickup',
  'hectic',
  'confus',
  'lot',
  'kid',
  'similar',
  'name',
  'wife',
  'share',
  'stori',
  'charli',
  'mom',
  'agre',
  'email',
  'inform',
  'could',
  'bring',
  'meet',
  'need',
  'charli',
  'mom',
  'also',
  'said',
  'would',
  'reach',
  'parent',
  'question',
  'weird',
  'pickup',
  'mom',
  'lot',
  'kid',
  'went',
  'kindergarten',
  'togeth',
  'son',
  'know',
  'mani',
  'parent',
  'well',
  'yet',
  'charli',
  'mom',
  'realli',
  'nice',
  'help',
  'wife',
  'even',
  'set',
  'playdat',
  'kid',
  'regardless',
  'meet',
  'turn',
  'one',
  'nice',
  'thing',
  'came',
  'meet',
  '&',
  'pickup',
  'first',
  'wife',
  'came',
  'meet',
  'huge',
  'inconveni',
  'im',
  'glad',
  'realli',
  'toler',
  'bs',
  'got',
  'teacher',
  'princip',
  'wife',
  'realli',
  'let',
  'say',
  'anyth',
  'shed',
  'gone',
  'everyth',
  'weird',
  'pickup',
  'mom',
  'relat',
  'son',
  'also',
  'charli',
  'potenci',
  'kid',
  'princip',
  'realli',
  'surpris',
  'princip',
  'said',
  'teacher',
  'would',
  'talk',
  'mom',
  'apolog',
  'yell',
  'shook',
  'hand',
  'pickup',
  'day',
  'weird',
  'pickup',
  'mom',
  'look',
  'eye',
  'call',
  'robin',
  'robert',
  'actual',
  'name',
  'quiet',
  'whole',
  'time',
  'sorri',
  'anticlimact',
  'tri_type',
  'type_without',
  'without_use',
  'use_name',
  'name_comprehens',
  'comprehens_anyon',
  'anyon_know',
  'know_see',
  'see_happen',
  'happen_son',
  'son_name',
  'name_robin',
  'robin_five',
  'five_letter',
  'letter_nicknam',
  'nicknam_mom',
  'mom_one',
  'one_kid',
  'kid_class',
  'class_convinc',
  'convinc_name',
  'name_robert',
  'robert_volunt',
  'volunt_pickup',
  'pickup_ill',
  'ill_drive',
  'drive_shell',
  'shell_go',
  'go_get',
  'get_son',
  'son_yell',
  'yell_robert',
  'robert_robert',
  'robert_first',
  'first_week',
  'week_brush',
  'brush_learn',
  'learn_name',
  'name_bunch',
  'bunch_differ',
  'differ_kid',
  'kid_hard',
  'hard_would',
  'would_tell',
  'tell_came',
  'came_back',
  'back_son',
  'son_actual',
  'actual_name',
  'name_robin',
  'robin_ive',
  'ive_said',
  'said_almost',
  'almost_everi',
  'everi_singl',
  'singl_day',
  'day_month',
  'month_last',
  'last_week',
  'week_saw',
  'saw_school',
  'school_function',
  'function_went',
  'went_introduc',
  'introduc_basic',
  'basic_said',
  'said_im',
  'im_robin',
  'robin_father',
  'father_might',
  'might_recogn',
  'recogn_pickup',
  'pickup_way',
  'way_name',
  'name_robert',
  'robert_respons',
  'respons_confound',
  'confound_said',
  'said_robin',
  'robin_girl',
  'girl_name',
  'name_unisex',
  'unisex_way',
  'way_common',
  'common_boy',
  'boy_good',
  'good_nicknam',
  'nicknam_robert',
  'robert_shell',
  'shell_call',
  'call_real',
  'real_name',
  'name_instead',
  'instead_tri',
  'tri_correct',
  'correct_sinc',
  'sinc_robin',
  'robin_nicknam',
  'nicknam_wander',
  'wander_away',
  'away_next',
  'next_time',
  'time_walk',
  'walk_car',
  'car_got',
  'got_annoy',
  'annoy_said',
  'said_im',
  'im_robin',
  'robin_friday',
  'friday_call',
  'call_son',
  'son_robert',
  'robert_ask',
  'ask_problem',
  'problem_loud',
  'loud_voic',
  'voic_shout',
  'shout_loud',
  'loud_enough',
  'enough_teacher',
  'teacher_ran',
  'ran_volunt',
  'volunt_mom',
  'mom_ran',
  'ran_away',
  'away_tri',
  'tri_explain',
  'explain_teacher',
  'teacher_look',
  'look_like',
  'like_three',
  'three_head',
  'head_said',
  'said_would',
  'would_go',
  'go_get',
  'get_son',
  'son_got',
  'got_email',
  'email_later',
  'later_ask',
  'ask_come',
  'come_monday',
  'monday_meet',
  'meet_know',
  'know_approach',
  'approach_apolog',
  'apolog_yell',
  'yell_demand',
  'demand_apolog',
  'apolog_constant',
  'constant_disrespect',
  'disrespect_ask',
  'ask_mom',
  'mom_allow',
  'allow_volunt',
  'volunt_anymor',
  'anymor_least',
  'least_get',
  'get_son',
  'son_feel',
  'feel_like',
  'like_tri',
  'tri_reason',
  'reason_mayb',
  'mayb_sensit',
  'sensit_small',
  'small_updat',
  'updat_wife',
  'wife_reach',
  'reach_charli',
  'charli_mom',
  'mom_facebook',
  'facebook_ask',
  'ask_weird',
  'weird_pickup',
  'pickup_mom',
  'mom_call',
  'call_charli',
  'charli_differ',
  'differ_name',
  'name_well',
  'well_accord',
  'accord_charli',
  'charli_mom',
  'mom_weird',
  'weird_pickup',
  'pickup_mom',
  'mom_call',
  'call_charli',
  'charli_charlott',
  'charlott_charli',
  'charli_legal',
  'legal_name',
  'name_matter',
  'matter_charli',
  'charli_mom',
  'mom_fan',
  'fan_assum',
  'assum_mistak',
  'mistak_want',
  'want_say',
  'say_anyth',
  'anyth_know',
  'know_pickup',
  'pickup_hectic',
  'hectic_confus',
  'confus_lot',
  'lot_kid',
  'kid_similar',
  'similar_name',
  'name_wife',
  'wife_share',
  'share_stori',
  'stori_charli',
  'charli_mom',
  'mom_agre',
  'agre_email',
  'email_inform',
  'inform_could',
  'could_bring',
  'bring_meet',
  'meet_need',
  'need_charli',
  'charli_mom',
  'mom_also',
  'also_said',
  'said_would',
  'would_reach',
  'reach_parent',
  'parent_question',
  'question_weird',
  'weird_pickup',
  'pickup_mom',
  'mom_lot',
  'lot_kid',
  'kid_went',
  'went_kindergarten',
  'kindergarten_togeth',
  'togeth_son',
  'son_know',
  'know_mani',
  'mani_parent',
  'parent_well',
  'well_yet',
  'yet_charli',
  'charli_mom',
  'mom_realli',
  'realli_nice',
  'nice_help',
  'help_wife',
  'wife_even',
  'even_set',
  'set_playdat',
  'playdat_kid',
  'kid_regardless',
  'regardless_meet',
  'meet_turn',
  'turn_one',
  'one_nice',
  'nice_thing',
  'thing_came',
  'came_meet',
  'meet_&',
  '&_pickup',
  'pickup_first',
  'first_wife',
  'wife_came',
  'came_meet',
  'meet_huge',
  'huge_inconveni',
  'inconveni_im',
  'im_glad',
  'glad_realli',
  'realli_toler',
  'toler_bs',
  'bs_got',
  'got_teacher',
  'teacher_princip',
  'princip_wife',
  'wife_realli',
  'realli_let',
  'let_say',
  'say_anyth',
  'anyth_shed',
  'shed_gone',
  'gone_everyth',
  'everyth_weird',
  'weird_pickup',
  'pickup_mom',
  'mom_relat',
  'relat_son',
  'son_also',
  'also_charli',
  'charli_potenci',
  'potenci_kid',
  'kid_princip',
  'princip_realli',
  'realli_surpris',
  'surpris_princip',
  'princip_said',
  'said_teacher',
  'teacher_would',
  'would_talk',
  'talk_mom',
  'mom_apolog',
  'apolog_yell',
  'yell_shook',
  'shook_hand',
  'hand_pickup',
  'pickup_day',
  'day_weird',
  'weird_pickup',
  'pickup_mom',
  'mom_look',
  'look_eye',
  'eye_call',
  'call_robin',
  'robin_robert',
  'robert_actual',
  'actual_name',
  'name_quiet',
  'quiet_whole',
  'whole_time',
  'time_sorri',
  'sorri_anticlimact',
  'tri_type_without',
  'type_without_use',
  'without_use_name',
  'use_name_comprehens',
  'name_comprehens_anyon',
  'comprehens_anyon_know',
  'anyon_know_see',
  'know_see_happen',
  'see_happen_son',
  'happen_son_name',
  'son_name_robin',
  'name_robin_five',
  'robin_five_letter',
  'five_letter_nicknam',
  'letter_nicknam_mom',
  'nicknam_mom_one',
  'mom_one_kid',
  'one_kid_class',
  'kid_class_convinc',
  'class_convinc_name',
  'convinc_name_robert',
  'name_robert_volunt',
  'robert_volunt_pickup',
  'volunt_pickup_ill',
  'pickup_ill_drive',
  'ill_drive_shell',
  'drive_shell_go',
  'shell_go_get',
  'go_get_son',
  'get_son_yell',
  'son_yell_robert',
  'yell_robert_robert',
  'robert_robert_first',
  'robert_first_week',
  'first_week_brush',
  'week_brush_learn',
  'brush_learn_name',
  'learn_name_bunch',
  'name_bunch_differ',
  'bunch_differ_kid',
  'differ_kid_hard',
  'kid_hard_would',
  'hard_would_tell',
  'would_tell_came',
  'tell_came_back',
  'came_back_son',
  'back_son_actual',
  'son_actual_name',
  'actual_name_robin',
  'name_robin_ive',
  'robin_ive_said',
  'ive_said_almost',
  'said_almost_everi',
  'almost_everi_singl',
  'everi_singl_day',
  'singl_day_month',
  'day_month_last',
  'month_last_week',
  'last_week_saw',
  'week_saw_school',
  'saw_school_function',
  'school_function_went',
  'function_went_introduc',
  'went_introduc_basic',
  'introduc_basic_said',
  'basic_said_im',
  'said_im_robin',
  'im_robin_father',
  'robin_father_might',
  'father_might_recogn',
  'might_recogn_pickup',
  'recogn_pickup_way',
  'pickup_way_name',
  'way_name_robert',
  'name_robert_respons',
  'robert_respons_confound',
  'respons_confound_said',
  'confound_said_robin',
  'said_robin_girl',
  'robin_girl_name',
  'girl_name_unisex',
  'name_unisex_way',
  'unisex_way_common',
  'way_common_boy',
  'common_boy_good',
  'boy_good_nicknam',
  'good_nicknam_robert',
  'nicknam_robert_shell',
  'robert_shell_call',
  'shell_call_real',
  'call_real_name',
  'real_name_instead',
  'name_instead_tri',
  'instead_tri_correct',
  'tri_correct_sinc',
  'correct_sinc_robin',
  'sinc_robin_nicknam',
  'robin_nicknam_wander',
  'nicknam_wander_away',
  'wander_away_next',
  'away_next_time',
  'next_time_walk',
  'time_walk_car',
  'walk_car_got',
  'car_got_annoy',
  'got_annoy_said',
  'annoy_said_im',
  'said_im_robin',
  'im_robin_friday',
  'robin_friday_call',
  'friday_call_son',
  'call_son_robert',
  'son_robert_ask',
  'robert_ask_problem',
  'ask_problem_loud',
  'problem_loud_voic',
  'loud_voic_shout',
  'voic_shout_loud',
  'shout_loud_enough',
  'loud_enough_teacher',
  'enough_teacher_ran',
  'teacher_ran_volunt',
  'ran_volunt_mom',
  'volunt_mom_ran',
  'mom_ran_away',
  'ran_away_tri',
  'away_tri_explain',
  'tri_explain_teacher',
  'explain_teacher_look',
  'teacher_look_like',
  'look_like_three',
  'like_three_head',
  'three_head_said',
  'head_said_would',
  'said_would_go',
  'would_go_get',
  'go_get_son',
  'get_son_got',
  'son_got_email',
  'got_email_later',
  'email_later_ask',
  'later_ask_come',
  'ask_come_monday',
  'come_monday_meet',
  'monday_meet_know',
  'meet_know_approach',
  'know_approach_apolog',
  'approach_apolog_yell',
  'apolog_yell_demand',
  'yell_demand_apolog',
  'demand_apolog_constant',
  'apolog_constant_disrespect',
  'constant_disrespect_ask',
  'disrespect_ask_mom',
  'ask_mom_allow',
  'mom_allow_volunt',
  'allow_volunt_anymor',
  'volunt_anymor_least',
  'anymor_least_get',
  'least_get_son',
  'get_son_feel',
  'son_feel_like',
  'feel_like_tri',
  'like_tri_reason',
  'tri_reason_mayb',
  'reason_mayb_sensit',
  'mayb_sensit_small',
  'sensit_small_updat',
  'small_updat_wife',
  'updat_wife_reach',
  'wife_reach_charli',
  'reach_charli_mom',
  'charli_mom_facebook',
  'mom_facebook_ask',
  'facebook_ask_weird',
  'ask_weird_pickup',
  'weird_pickup_mom',
  'pickup_mom_call',
  'mom_call_charli',
  'call_charli_differ',
  'charli_differ_name',
  'differ_name_well',
  'name_well_accord',
  'well_accord_charli',
  'accord_charli_mom',
  'charli_mom_weird',
  'mom_weird_pickup',
  'weird_pickup_mom',
  'pickup_mom_call',
  'mom_call_charli',
  'call_charli_charlott',
  'charli_charlott_charli',
  'charlott_charli_legal',
  'charli_legal_name',
  'legal_name_matter',
  'name_matter_charli',
  'matter_charli_mom',
  'charli_mom_fan',
  'mom_fan_assum',
  'fan_assum_mistak',
  'assum_mistak_want',
  'mistak_want_say',
  'want_say_anyth',
  'say_anyth_know',
  'anyth_know_pickup',
  'know_pickup_hectic',
  'pickup_hectic_confus',
  'hectic_confus_lot',
  'confus_lot_kid',
  'lot_kid_similar',
  'kid_similar_name',
  'similar_name_wife',
  'name_wife_share',
  'wife_share_stori',
  'share_stori_charli',
  'stori_charli_mom',
  'charli_mom_agre',
  'mom_agre_email',
  'agre_email_inform',
  'email_inform_could',
  'inform_could_bring',
  'could_bring_meet',
  'bring_meet_need',
  'meet_need_charli',
  'need_charli_mom',
  'charli_mom_also',
  'mom_also_said',
  'also_said_would',
  'said_would_reach',
  'would_reach_parent',
  'reach_parent_question',
  'parent_question_weird',
  'question_weird_pickup',
  'weird_pickup_mom',
  'pickup_mom_lot',
  'mom_lot_kid',
  'lot_kid_went',
  'kid_went_kindergarten',
  'went_kindergarten_togeth',
  'kindergarten_togeth_son',
  'togeth_son_know',
  'son_know_mani',
  'know_mani_parent',
  'mani_parent_well',
  'parent_well_yet',
  'well_yet_charli',
  'yet_charli_mom',
  'charli_mom_realli',
  'mom_realli_nice',
  'realli_nice_help',
  'nice_help_wife',
  'help_wife_even',
  'wife_even_set',
  'even_set_playdat',
  'set_playdat_kid',
  'playdat_kid_regardless',
  'kid_regardless_meet',
  'regardless_meet_turn',
  'meet_turn_one',
  'turn_one_nice',
  'one_nice_thing',
  'nice_thing_came',
  'thing_came_meet',
  'came_meet_&',
  'meet_&_pickup',
  '&_pickup_first',
  'pickup_first_wife',
  'first_wife_came',
  'wife_came_meet',
  'came_meet_huge',
  'meet_huge_inconveni',
  'huge_inconveni_im',
  'inconveni_im_glad',
  'im_glad_realli',
  'glad_realli_toler',
  'realli_toler_bs',
  'toler_bs_got',
  'bs_got_teacher',
  'got_teacher_princip',
  'teacher_princip_wife',
  'princip_wife_realli',
  'wife_realli_let',
  'realli_let_say',
  'let_say_anyth',
  'say_anyth_shed',
  'anyth_shed_gone',
  'shed_gone_everyth',
  'gone_everyth_weird',
  'everyth_weird_pickup',
  'weird_pickup_mom',
  'pickup_mom_relat',
  'mom_relat_son',
  'relat_son_also',
  'son_also_charli',
  'also_charli_potenci',
  'charli_potenci_kid',
  'potenci_kid_princip',
  'kid_princip_realli',
  'princip_realli_surpris',
  'realli_surpris_princip',
  'surpris_princip_said',
  'princip_said_teacher',
  'said_teacher_would',
  'teacher_would_talk',
  'would_talk_mom',
  'talk_mom_apolog',
  'mom_apolog_yell',
  'apolog_yell_shook',
  'yell_shook_hand',
  'shook_hand_pickup',
  'hand_pickup_day',
  'pickup_day_weird',
  'day_weird_pickup',
  'weird_pickup_mom',
  'pickup_mom_look',
  'mom_look_eye',
  'look_eye_call',
  'eye_call_robin',
  'call_robin_robert',
  'robin_robert_actual',
  'robert_actual_name',
  'actual_name_quiet',
  'name_quiet_whole',
  'quiet_whole_time',
  'whole_time_sorri',
  'time_sorri_anticlimact'],
 ['becom',
  'common',
  'surround',
  'gym',
  'realli',
  'annoy',
  'reason',
  'ive',
  'chang',
  'gym',
  'year',
  'alon',
  'work',
  'pillar',
  'everyday',
  'life',
  'past',
  'ten',
  'year',
  'im',
  'gym',
  'everi',
  'day',
  'week',
  'go',
  'gym',
  'talk',
  'peopl',
  'make',
  'friend',
  'make',
  'funni',
  'video',
  'go',
  'train',
  'go',
  'home',
  'howev',
  'new',
  'video',
  'trend',
  'mani',
  'folk',
  'want',
  'record',
  'exercis',
  'post',
  'social',
  'media',
  'busi',
  'mine',
  'whatev',
  'want',
  'also',
  'think',
  'need',
  'stop',
  'work-out',
  'accommod',
  'last',
  'night',
  'squat',
  'smith',
  'machin',
  'work',
  'head-phon',
  'notic',
  'someon',
  'tri',
  'get',
  'attent',
  'suddenli',
  'felt',
  'tap',
  'shoulder',
  'mid-squat',
  'notic',
  'woman',
  'annoy',
  'express',
  'bare',
  'allow',
  'finish',
  'movement',
  'start',
  'talk',
  'muffl',
  'due',
  'headphon',
  'long',
  'stori',
  'short',
  'annoy',
  'train',
  'smith',
  'machin',
  'want',
  'record',
  'regular',
  'squat',
  'howev',
  'said',
  'best',
  'spot',
  'front',
  'smith',
  'machin',
  'one',
  'want',
  'frame',
  'want',
  'stop',
  'seri',
  'record',
  'usual',
  'someon',
  'come',
  'good',
  'attitud',
  'ask',
  'ok',
  'stop',
  'seri',
  'two',
  'record',
  'even',
  'move',
  'machin',
  'would',
  'absolut',
  'mind',
  'compli',
  'woman',
  'noth',
  'sort',
  'extrem',
  'arrog',
  'honestli',
  'extrem',
  'annoy',
  'petti',
  'told',
  'record',
  'done',
  'proceed',
  'everi',
  'singl',
  'exercis',
  'could',
  'smith',
  'machin',
  'squat',
  'smith',
  'hip',
  'thrust',
  'smith',
  'petti',
  'know',
  'done',
  'felt',
  'vindic',
  'see',
  'annoy',
  'express',
  'said',
  'peopl',
  'said',
  'asshol',
  'machin',
  'could',
  'use',
  'honestli',
  'might',
  'right',
  'hey',
  'thought',
  'id',
  'ask',
  'internet',
  'much',
  'asshol',
  'becom_common',
  'common_surround',
  'surround_gym',
  'gym_realli',
  'realli_annoy',
  'annoy_reason',
  'reason_ive',
  'ive_chang',
  'chang_gym',
  'gym_year',
  'year_alon',
  'alon_work',
  'work_pillar',
  'pillar_everyday',
  'everyday_life',
  'life_past',
  'past_ten',
  'ten_year',
  'year_im',
  'im_gym',
  'gym_everi',
  'everi_day',
  'day_week',
  'week_go',
  'go_gym',
  'gym_talk',
  'talk_peopl',
  'peopl_make',
  'make_friend',
  'friend_make',
  'make_funni',
  'funni_video',
  'video_go',
  'go_train',
  'train_go',
  'go_home',
  'home_howev',
  'howev_new',
  'new_video',
  'video_trend',
  'trend_mani',
  'mani_folk',
  'folk_want',
  'want_record',
  'record_exercis',
  'exercis_post',
  'post_social',
  'social_media',
  'media_busi',
  'busi_mine',
  'mine_whatev',
  'whatev_want',
  'want_also',
  'also_think',
  'think_need',
  'need_stop',
  'stop_work-out',
  'work-out_accommod',
  'accommod_last',
  'last_night',
  'night_squat',
  'squat_smith',
  'smith_machin',
  'machin_work',
  'work_head-phon',
  'head-phon_notic',
  'notic_someon',
  'someon_tri',
  'tri_get',
  'get_attent',
  'attent_suddenli',
  'suddenli_felt',
  'felt_tap',
  'tap_shoulder',
  'shoulder_mid-squat',
  'mid-squat_notic',
  'notic_woman',
  'woman_annoy',
  'annoy_express',
  'express_bare',
  'bare_allow',
  'allow_finish',
  'finish_movement',
  'movement_start',
  'start_talk',
  'talk_muffl',
  'muffl_due',
  'due_headphon',
  'headphon_long',
  'long_stori',
  'stori_short',
  'short_annoy',
  'annoy_train',
  'train_smith',
  'smith_machin',
  'machin_want',
  'want_record',
  'record_regular',
  'regular_squat',
  'squat_howev',
  'howev_said',
  'said_best',
  'best_spot',
  'spot_front',
  'front_smith',
  'smith_machin',
  'machin_one',
  'one_want',
  'want_frame',
  'frame_want',
  'want_stop',
  'stop_seri',
  'seri_record',
  'record_usual',
  'usual_someon',
  'someon_come',
  'come_good',
  'good_attitud',
  'attitud_ask',
  'ask_ok',
  'ok_stop',
  'stop_seri',
  'seri_two',
  'two_record',
  'record_even',
  'even_move',
  'move_machin',
  'machin_would',
  'would_absolut',
  'absolut_mind',
  'mind_compli',
  'compli_woman',
  'woman_noth',
  'noth_sort',
  'sort_extrem',
  'extrem_arrog',
  'arrog_honestli',
  'honestli_extrem',
  'extrem_annoy',
  'annoy_petti',
  'petti_told',
  'told_record',
  'record_done',
  'done_proceed',
  'proceed_everi',
  'everi_singl',
  'singl_exercis',
  'exercis_could',
  'could_smith',
  'smith_machin',
  'machin_squat',
  'squat_smith',
  'smith_hip',
  'hip_thrust',
  'thrust_smith',
  'smith_petti',
  'petti_know',
  'know_done',
  'done_felt',
  'felt_vindic',
  'vindic_see',
  'see_annoy',
  'annoy_express',
  'express_said',
  'said_peopl',
  'peopl_said',
  'said_asshol',
  'asshol_machin',
  'machin_could',
  'could_use',
  'use_honestli',
  'honestli_might',
  'might_right',
  'right_hey',
  'hey_thought',
  'thought_id',
  'id_ask',
  'ask_internet',
  'internet_much',
  'much_asshol',
  'becom_common_surround',
  'common_surround_gym',
  'surround_gym_realli',
  'gym_realli_annoy',
  'realli_annoy_reason',
  'annoy_reason_ive',
  'reason_ive_chang',
  'ive_chang_gym',
  'chang_gym_year',
  'gym_year_alon',
  'year_alon_work',
  'alon_work_pillar',
  'work_pillar_everyday',
  'pillar_everyday_life',
  'everyday_life_past',
  'life_past_ten',
  'past_ten_year',
  'ten_year_im',
  'year_im_gym',
  'im_gym_everi',
  'gym_everi_day',
  'everi_day_week',
  'day_week_go',
  'week_go_gym',
  'go_gym_talk',
  'gym_talk_peopl',
  'talk_peopl_make',
  'peopl_make_friend',
  'make_friend_make',
  'friend_make_funni',
  'make_funni_video',
  'funni_video_go',
  'video_go_train',
  'go_train_go',
  'train_go_home',
  'go_home_howev',
  'home_howev_new',
  'howev_new_video',
  'new_video_trend',
  'video_trend_mani',
  'trend_mani_folk',
  'mani_folk_want',
  'folk_want_record',
  'want_record_exercis',
  'record_exercis_post',
  'exercis_post_social',
  'post_social_media',
  'social_media_busi',
  'media_busi_mine',
  'busi_mine_whatev',
  'mine_whatev_want',
  'whatev_want_also',
  'want_also_think',
  'also_think_need',
  'think_need_stop',
  'need_stop_work-out',
  'stop_work-out_accommod',
  'work-out_accommod_last',
  'accommod_last_night',
  'last_night_squat',
  'night_squat_smith',
  'squat_smith_machin',
  'smith_machin_work',
  'machin_work_head-phon',
  'work_head-phon_notic',
  'head-phon_notic_someon',
  'notic_someon_tri',
  'someon_tri_get',
  'tri_get_attent',
  'get_attent_suddenli',
  'attent_suddenli_felt',
  'suddenli_felt_tap',
  'felt_tap_shoulder',
  'tap_shoulder_mid-squat',
  'shoulder_mid-squat_notic',
  'mid-squat_notic_woman',
  'notic_woman_annoy',
  'woman_annoy_express',
  'annoy_express_bare',
  'express_bare_allow',
  'bare_allow_finish',
  'allow_finish_movement',
  'finish_movement_start',
  'movement_start_talk',
  'start_talk_muffl',
  'talk_muffl_due',
  'muffl_due_headphon',
  'due_headphon_long',
  'headphon_long_stori',
  'long_stori_short',
  'stori_short_annoy',
  'short_annoy_train',
  'annoy_train_smith',
  'train_smith_machin',
  'smith_machin_want',
  'machin_want_record',
  'want_record_regular',
  'record_regular_squat',
  'regular_squat_howev',
  'squat_howev_said',
  'howev_said_best',
  'said_best_spot',
  'best_spot_front',
  'spot_front_smith',
  'front_smith_machin',
  'smith_machin_one',
  'machin_one_want',
  'one_want_frame',
  'want_frame_want',
  'frame_want_stop',
  'want_stop_seri',
  'stop_seri_record',
  'seri_record_usual',
  'record_usual_someon',
  'usual_someon_come',
  'someon_come_good',
  'come_good_attitud',
  'good_attitud_ask',
  'attitud_ask_ok',
  'ask_ok_stop',
  'ok_stop_seri',
  'stop_seri_two',
  'seri_two_record',
  'two_record_even',
  'record_even_move',
  'even_move_machin',
  'move_machin_would',
  'machin_would_absolut',
  'would_absolut_mind',
  'absolut_mind_compli',
  'mind_compli_woman',
  'compli_woman_noth',
  'woman_noth_sort',
  'noth_sort_extrem',
  'sort_extrem_arrog',
  'extrem_arrog_honestli',
  'arrog_honestli_extrem',
  'honestli_extrem_annoy',
  'extrem_annoy_petti',
  'annoy_petti_told',
  'petti_told_record',
  'told_record_done',
  'record_done_proceed',
  'done_proceed_everi',
  'proceed_everi_singl',
  'everi_singl_exercis',
  'singl_exercis_could',
  'exercis_could_smith',
  'could_smith_machin',
  'smith_machin_squat',
  'machin_squat_smith',
  'squat_smith_hip',
  'smith_hip_thrust',
  'hip_thrust_smith',
  'thrust_smith_petti',
  'smith_petti_know',
  'petti_know_done',
  'know_done_felt',
  'done_felt_vindic',
  'felt_vindic_see',
  'vindic_see_annoy',
  'see_annoy_express',
  'annoy_express_said',
  'express_said_peopl',
  'said_peopl_said',
  'peopl_said_asshol',
  'said_asshol_machin',
  'asshol_machin_could',
  'machin_could_use',
  'could_use_honestli',
  'use_honestli_might',
  'honestli_might_right',
  'might_right_hey',
  'right_hey_thought',
  'hey_thought_id',
  'thought_id_ask',
  'id_ask_internet',
  'ask_internet_much',
  'internet_much_asshol'],
 ['mom',
  'pass',
  'away',
  'childbirth',
  'pretti',
  'much',
  'father',
  'occasion',
  'visit',
  'grandpar',
  'side',
  'sinc',
  'live',
  'took',
  'masculin',
  'style',
  'like',
  'like',
  'one',
  'boy',
  'boy',
  'father',
  'rexi',
  '-rex',
  'obsess',
  'year',
  'barbi',
  'bought',
  'like',
  'ew',
  'almost',
  'dress',
  'skirt',
  'also',
  'hair',
  'realli',
  'aw',
  'everi',
  'time',
  'around',
  'began',
  'date',
  'woman',
  'call',
  'maria',
  'daughter',
  'time',
  'name',
  'staci',
  'maria',
  'total',
  'sweetheart',
  'staci',
  'horribl',
  'bulli',
  'look',
  'like',
  'girl',
  'like',
  'man',
  'stuff',
  'like',
  'car',
  'bike',
  'stuff',
  'like',
  'admit',
  'also',
  'mani',
  'friend',
  'grow',
  'neither',
  'femal',
  'male',
  'person',
  'dad',
  'grew',
  'got',
  'involv',
  'like',
  'make',
  'thing',
  'short',
  'staci',
  'would',
  'often',
  'throw',
  'aw',
  'comment',
  'boy',
  'weirdo',
  'etc',
  'dad',
  'would',
  'comment',
  'less-bulli',
  'way',
  'hurt',
  'confirm',
  'staci',
  'daughter',
  'son',
  'broke',
  'heart',
  'call',
  'staci',
  'peach',
  'like',
  'mario',
  'princess',
  '-rex',
  '°',
  'look',
  'brought',
  'dress',
  'skirt',
  'dy',
  'part',
  'hair',
  'sweet',
  'pink',
  'made',
  'staci',
  'laugh',
  'even',
  'dad',
  'like',
  'woa',
  'pink',
  'girl',
  'th',
  'birthday',
  'staci',
  'put',
  'black',
  'dye',
  'shampoo',
  'ruin',
  'whole',
  'look',
  'guess',
  'stick',
  'broke',
  'camel',
  'back',
  'cri',
  'horribl',
  'point',
  'breath',
  'told',
  'dad',
  'front',
  'maria',
  'staci',
  'done',
  'year',
  'along',
  'dad',
  'aw',
  'remark',
  'subtli',
  'enabl',
  'staci',
  'aw',
  'comment',
  'end',
  'left',
  'maria',
  'staci',
  'obviou',
  'go',
  'back',
  'eventu',
  'marri',
  'step-mom',
  'turn',
  'dad',
  'apolog',
  'talk',
  'year',
  'attend',
  'therapi',
  'like',
  'talk',
  'think',
  'broke',
  'relationship',
  'dad',
  'away',
  'never',
  'abl',
  'fix',
  'know',
  'back',
  'yesterday',
  'talk',
  'tri',
  'joke',
  'said',
  'want',
  'rememb',
  'ill',
  'never',
  'forgiv',
  'join',
  'staci',
  'bulli',
  'said',
  'possibl',
  'im',
  'still',
  'hold',
  'grudg',
  'say',
  'alway',
  'absolut',
  'broke',
  'heart',
  'confid',
  'tri',
  'argu',
  'step-mom',
  'said',
  'need',
  'let',
  'go',
  'feel',
  'feel',
  'still',
  'cri',
  'rememb',
  'say',
  'im',
  'ah',
  'left',
  'made',
  'amend',
  'mom_pass',
  'pass_away',
  'away_childbirth',
  'childbirth_pretti',
  'pretti_much',
  'much_father',
  'father_occasion',
  'occasion_visit',
  'visit_grandpar',
  'grandpar_side',
  'side_sinc',
  'sinc_live',
  'live_took',
  'took_masculin',
  'masculin_style',
  'style_like',
  'like_like',
  'like_one',
  'one_boy',
  'boy_boy',
  'boy_father',
  'father_rexi',
  'rexi_-rex',
  '-rex_obsess',
  'obsess_year',
  'year_barbi',
  'barbi_bought',
  'bought_like',
  'like_ew',
  'ew_almost',
  'almost_dress',
  'dress_skirt',
  'skirt_also',
  'also_hair',
  'hair_realli',
  'realli_aw',
  'aw_everi',
  'everi_time',
  'time_around',
  'around_began',
  'began_date',
  'date_woman',
  'woman_call',
  'call_maria',
  'maria_daughter',
  'daughter_time',
  'time_name',
  'name_staci',
  'staci_maria',
  'maria_total',
  'total_sweetheart',
  'sweetheart_staci',
  'staci_horribl',
  'horribl_bulli',
  'bulli_look',
  'look_like',
  'like_girl',
  'girl_like',
  'like_man',
  'man_stuff',
  'stuff_like',
  'like_car',
  'car_bike',
  'bike_stuff',
  'stuff_like',
  'like_admit',
  'admit_also',
  'also_mani',
  'mani_friend',
  'friend_grow',
  'grow_neither',
  'neither_femal',
  'femal_male',
  'male_person',
  'person_dad',
  'dad_grew',
  'grew_got',
  'got_involv',
  'involv_like',
  'like_make',
  'make_thing',
  'thing_short',
  'short_staci',
  'staci_would',
  'would_often',
  'often_throw',
  'throw_aw',
  'aw_comment',
  'comment_boy',
  'boy_weirdo',
  'weirdo_etc',
  'etc_dad',
  'dad_would',
  'would_comment',
  'comment_less-bulli',
  'less-bulli_way',
  'way_hurt',
  'hurt_confirm',
  'confirm_staci',
  'staci_daughter',
  'daughter_son',
  'son_broke',
  'broke_heart',
  'heart_call',
  'call_staci',
  'staci_peach',
  'peach_like',
  'like_mario',
  'mario_princess',
  'princess_-rex',
  '-rex_°',
  '°_look',
  'look_brought',
  'brought_dress',
  'dress_skirt',
  'skirt_dy',
  'dy_part',
  'part_hair',
  'hair_sweet',
  'sweet_pink',
  'pink_made',
  'made_staci',
  'staci_laugh',
  'laugh_even',
  'even_dad',
  'dad_like',
  'like_woa',
  'woa_pink',
  'pink_girl',
  'girl_th',
  'th_birthday',
  'birthday_staci',
  'staci_put',
  'put_black',
  'black_dye',
  'dye_shampoo',
  'shampoo_ruin',
  'ruin_whole',
  'whole_look',
  'look_guess',
  'guess_stick',
  'stick_broke',
  'broke_camel',
  'camel_back',
  'back_cri',
  'cri_horribl',
  'horribl_point',
  'point_breath',
  'breath_told',
  'told_dad',
  'dad_front',
  'front_maria',
  'maria_staci',
  'staci_done',
  'done_year',
  'year_along',
  'along_dad',
  'dad_aw',
  'aw_remark',
  'remark_subtli',
  'subtli_enabl',
  'enabl_staci',
  'staci_aw',
  'aw_comment',
  'comment_end',
  'end_left',
  'left_maria',
  'maria_staci',
  'staci_obviou',
  'obviou_go',
  'go_back',
  'back_eventu',
  'eventu_marri',
  'marri_step-mom',
  'step-mom_turn',
  'turn_dad',
  'dad_apolog',
  'apolog_talk',
  'talk_year',
  'year_attend',
  'attend_therapi',
  'therapi_like',
  'like_talk',
  'talk_think',
  'think_broke',
  'broke_relationship',
  'relationship_dad',
  'dad_away',
  'away_never',
  'never_abl',
  'abl_fix',
  'fix_know',
  'know_back',
  'back_yesterday',
  'yesterday_talk',
  'talk_tri',
  'tri_joke',
  'joke_said',
  'said_want',
  'want_rememb',
  'rememb_ill',
  'ill_never',
  'never_forgiv',
  'forgiv_join',
  'join_staci',
  'staci_bulli',
  'bulli_said',
  'said_possibl',
  'possibl_im',
  'im_still',
  'still_hold',
  'hold_grudg',
  'grudg_say',
  'say_alway',
  'alway_absolut',
  'absolut_broke',
  'broke_heart',
  'heart_confid',
  'confid_tri',
  'tri_argu',
  'argu_step-mom',
  'step-mom_said',
  'said_need',
  'need_let',
  'let_go',
  'go_feel',
  'feel_feel',
  'feel_still',
  'still_cri',
  'cri_rememb',
  'rememb_say',
  'say_im',
  'im_ah',
  'ah_left',
  'left_made',
  'made_amend',
  'mom_pass_away',
  'pass_away_childbirth',
  'away_childbirth_pretti',
  'childbirth_pretti_much',
  'pretti_much_father',
  'much_father_occasion',
  'father_occasion_visit',
  'occasion_visit_grandpar',
  'visit_grandpar_side',
  'grandpar_side_sinc',
  'side_sinc_live',
  'sinc_live_took',
  'live_took_masculin',
  'took_masculin_style',
  'masculin_style_like',
  'style_like_like',
  'like_like_one',
  'like_one_boy',
  'one_boy_boy',
  'boy_boy_father',
  'boy_father_rexi',
  'father_rexi_-rex',
  'rexi_-rex_obsess',
  '-rex_obsess_year',
  'obsess_year_barbi',
  'year_barbi_bought',
  'barbi_bought_like',
  'bought_like_ew',
  'like_ew_almost',
  'ew_almost_dress',
  'almost_dress_skirt',
  'dress_skirt_also',
  'skirt_also_hair',
  'also_hair_realli',
  'hair_realli_aw',
  'realli_aw_everi',
  'aw_everi_time',
  'everi_time_around',
  'time_around_began',
  'around_began_date',
  'began_date_woman',
  'date_woman_call',
  'woman_call_maria',
  'call_maria_daughter',
  'maria_daughter_time',
  'daughter_time_name',
  'time_name_staci',
  'name_staci_maria',
  'staci_maria_total',
  'maria_total_sweetheart',
  'total_sweetheart_staci',
  'sweetheart_staci_horribl',
  'staci_horribl_bulli',
  'horribl_bulli_look',
  'bulli_look_like',
  'look_like_girl',
  'like_girl_like',
  'girl_like_man',
  'like_man_stuff',
  'man_stuff_like',
  'stuff_like_car',
  'like_car_bike',
  'car_bike_stuff',
  'bike_stuff_like',
  'stuff_like_admit',
  'like_admit_also',
  'admit_also_mani',
  'also_mani_friend',
  'mani_friend_grow',
  'friend_grow_neither',
  'grow_neither_femal',
  'neither_femal_male',
  'femal_male_person',
  'male_person_dad',
  'person_dad_grew',
  'dad_grew_got',
  'grew_got_involv',
  'got_involv_like',
  'involv_like_make',
  'like_make_thing',
  'make_thing_short',
  'thing_short_staci',
  'short_staci_would',
  'staci_would_often',
  'would_often_throw',
  'often_throw_aw',
  'throw_aw_comment',
  'aw_comment_boy',
  'comment_boy_weirdo',
  'boy_weirdo_etc',
  'weirdo_etc_dad',
  'etc_dad_would',
  'dad_would_comment',
  'would_comment_less-bulli',
  'comment_less-bulli_way',
  'less-bulli_way_hurt',
  'way_hurt_confirm',
  'hurt_confirm_staci',
  'confirm_staci_daughter',
  'staci_daughter_son',
  'daughter_son_broke',
  'son_broke_heart',
  'broke_heart_call',
  'heart_call_staci',
  'call_staci_peach',
  'staci_peach_like',
  'peach_like_mario',
  'like_mario_princess',
  'mario_princess_-rex',
  'princess_-rex_°',
  '-rex_°_look',
  '°_look_brought',
  'look_brought_dress',
  'brought_dress_skirt',
  'dress_skirt_dy',
  'skirt_dy_part',
  'dy_part_hair',
  'part_hair_sweet',
  'hair_sweet_pink',
  'sweet_pink_made',
  'pink_made_staci',
  'made_staci_laugh',
  'staci_laugh_even',
  'laugh_even_dad',
  'even_dad_like',
  'dad_like_woa',
  'like_woa_pink',
  'woa_pink_girl',
  'pink_girl_th',
  'girl_th_birthday',
  'th_birthday_staci',
  'birthday_staci_put',
  'staci_put_black',
  'put_black_dye',
  'black_dye_shampoo',
  'dye_shampoo_ruin',
  'shampoo_ruin_whole',
  'ruin_whole_look',
  'whole_look_guess',
  'look_guess_stick',
  'guess_stick_broke',
  'stick_broke_camel',
  'broke_camel_back',
  'camel_back_cri',
  'back_cri_horribl',
  'cri_horribl_point',
  'horribl_point_breath',
  'point_breath_told',
  'breath_told_dad',
  'told_dad_front',
  'dad_front_maria',
  'front_maria_staci',
  'maria_staci_done',
  'staci_done_year',
  'done_year_along',
  'year_along_dad',
  'along_dad_aw',
  'dad_aw_remark',
  'aw_remark_subtli',
  'remark_subtli_enabl',
  'subtli_enabl_staci',
  'enabl_staci_aw',
  'staci_aw_comment',
  'aw_comment_end',
  'comment_end_left',
  'end_left_maria',
  'left_maria_staci',
  'maria_staci_obviou',
  'staci_obviou_go',
  'obviou_go_back',
  'go_back_eventu',
  'back_eventu_marri',
  'eventu_marri_step-mom',
  'marri_step-mom_turn',
  'step-mom_turn_dad',
  'turn_dad_apolog',
  'dad_apolog_talk',
  'apolog_talk_year',
  'talk_year_attend',
  'year_attend_therapi',
  'attend_therapi_like',
  'therapi_like_talk',
  'like_talk_think',
  'talk_think_broke',
  'think_broke_relationship',
  'broke_relationship_dad',
  'relationship_dad_away',
  'dad_away_never',
  'away_never_abl',
  'never_abl_fix',
  'abl_fix_know',
  'fix_know_back',
  'know_back_yesterday',
  'back_yesterday_talk',
  'yesterday_talk_tri',
  'talk_tri_joke',
  'tri_joke_said',
  'joke_said_want',
  'said_want_rememb',
  'want_rememb_ill',
  'rememb_ill_never',
  'ill_never_forgiv',
  'never_forgiv_join',
  'forgiv_join_staci',
  'join_staci_bulli',
  'staci_bulli_said',
  'bulli_said_possibl',
  'said_possibl_im',
  'possibl_im_still',
  'im_still_hold',
  'still_hold_grudg',
  'hold_grudg_say',
  'grudg_say_alway',
  'say_alway_absolut',
  'alway_absolut_broke',
  'absolut_broke_heart',
  'broke_heart_confid',
  'heart_confid_tri',
  'confid_tri_argu',
  'tri_argu_step-mom',
  'argu_step-mom_said',
  'step-mom_said_need',
  'said_need_let',
  'need_let_go',
  'let_go_feel',
  'go_feel_feel',
  'feel_feel_still',
  'feel_still_cri',
  'still_cri_rememb',
  'cri_rememb_say',
  'rememb_say_im',
  'say_im_ah',
  'im_ah_left',
  'ah_left_made',
  'left_made_amend'],
 ['husband',
  'disagr',
  'time',
  'time',
  'noth',
  'major',
  'normal',
  'stuff',
  'habit',
  'throw',
  'someth',
  'mine',
  'way',
  'teach',
  'lesson',
  'whenev',
  'upset',
  'argument',
  'time',
  'threw',
  'handmad',
  'necklac',
  'daughter',
  'made',
  'mother',
  'day',
  'argument',
  'want',
  'hang',
  'buddi',
  'day',
  'mom',
  'surgeri',
  'want',
  'stay',
  'home',
  'daughter',
  'refus',
  'yesterday',
  'found',
  'threw',
  'necklac',
  'admit',
  'went',
  'also',
  'told',
  'necklac',
  'special',
  'daughter',
  'spent',
  'much',
  'time',
  'effort',
  'make',
  'comfort',
  'told',
  'shed',
  'make',
  'ident',
  'one',
  'buy',
  'tool',
  'went',
  'husband',
  'told',
  'expect',
  'cough',
  'money',
  'pay',
  'thr',
  'tool',
  'daughter',
  'could',
  'make',
  'similar',
  'necklac',
  'laugh',
  'said',
  'delusion',
  'expect',
  'pay',
  'even',
  'apolog',
  'part',
  'argument',
  'felt',
  'like',
  'noth',
  'apolog',
  'ye',
  'stay',
  'home',
  'famili',
  'emerg',
  'said',
  'one',
  'friend',
  'come',
  'stay',
  'chloe',
  'oh',
  'ye',
  'piss',
  'said',
  'pay',
  'told',
  'daughter',
  'knew',
  'set',
  'say',
  'tri',
  'turn',
  'daughter',
  'brainwash',
  'think',
  'bad',
  'guy',
  'scenario',
  'told',
  'im',
  'still',
  'expect',
  'pay',
  'say',
  'im',
  'gang',
  'daughter',
  'husband_disagr',
  'disagr_time',
  'time_time',
  'time_noth',
  'noth_major',
  'major_normal',
  'normal_stuff',
  'stuff_habit',
  'habit_throw',
  'throw_someth',
  'someth_mine',
  'mine_way',
  'way_teach',
  'teach_lesson',
  'lesson_whenev',
  'whenev_upset',
  'upset_argument',
  'argument_time',
  'time_threw',
  'threw_handmad',
  'handmad_necklac',
  'necklac_daughter',
  'daughter_made',
  'made_mother',
  'mother_day',
  'day_argument',
  'argument_want',
  'want_hang',
  'hang_buddi',
  'buddi_day',
  'day_mom',
  'mom_surgeri',
  'surgeri_want',
  'want_stay',
  'stay_home',
  'home_daughter',
  'daughter_refus',
  'refus_yesterday',
  'yesterday_found',
  'found_threw',
  'threw_necklac',
  'necklac_admit',
  'admit_went',
  'went_also',
  'also_told',
  'told_necklac',
  'necklac_special',
  'special_daughter',
  'daughter_spent',
  'spent_much',
  'much_time',
  'time_effort',
  'effort_make',
  'make_comfort',
  'comfort_told',
  'told_shed',
  'shed_make',
  'make_ident',
  'ident_one',
  'one_buy',
  'buy_tool',
  'tool_went',
  'went_husband',
  'husband_told',
  'told_expect',
  'expect_cough',
  'cough_money',
  'money_pay',
  'pay_thr',
  'thr_tool',
  'tool_daughter',
  'daughter_could',
  'could_make',
  'make_similar',
  'similar_necklac',
  'necklac_laugh',
  'laugh_said',
  'said_delusion',
  'delusion_expect',
  'expect_pay',
  'pay_even',
  'even_apolog',
  'apolog_part',
  'part_argument',
  'argument_felt',
  'felt_like',
  'like_noth',
  'noth_apolog',
  'apolog_ye',
  'ye_stay',
  'stay_home',
  'home_famili',
  'famili_emerg',
  'emerg_said',
  'said_one',
  'one_friend',
  'friend_come',
  'come_stay',
  'stay_chloe',
  'chloe_oh',
  'oh_ye',
  'ye_piss',
  'piss_said',
  'said_pay',
  'pay_told',
  'told_daughter',
  'daughter_knew',
  'knew_set',
  'set_say',
  'say_tri',
  'tri_turn',
  'turn_daughter',
  'daughter_brainwash',
  'brainwash_think',
  'think_bad',
  'bad_guy',
  'guy_scenario',
  'scenario_told',
  'told_im',
  'im_still',
  'still_expect',
  'expect_pay',
  'pay_say',
  'say_im',
  'im_gang',
  'gang_daughter',
  'husband_disagr_time',
  'disagr_time_time',
  'time_time_noth',
  'time_noth_major',
  'noth_major_normal',
  'major_normal_stuff',
  'normal_stuff_habit',
  'stuff_habit_throw',
  'habit_throw_someth',
  'throw_someth_mine',
  'someth_mine_way',
  'mine_way_teach',
  'way_teach_lesson',
  'teach_lesson_whenev',
  'lesson_whenev_upset',
  'whenev_upset_argument',
  'upset_argument_time',
  'argument_time_threw',
  'time_threw_handmad',
  'threw_handmad_necklac',
  'handmad_necklac_daughter',
  'necklac_daughter_made',
  'daughter_made_mother',
  'made_mother_day',
  'mother_day_argument',
  'day_argument_want',
  'argument_want_hang',
  'want_hang_buddi',
  'hang_buddi_day',
  'buddi_day_mom',
  'day_mom_surgeri',
  'mom_surgeri_want',
  'surgeri_want_stay',
  'want_stay_home',
  'stay_home_daughter',
  'home_daughter_refus',
  'daughter_refus_yesterday',
  'refus_yesterday_found',
  'yesterday_found_threw',
  'found_threw_necklac',
  'threw_necklac_admit',
  'necklac_admit_went',
  'admit_went_also',
  'went_also_told',
  'also_told_necklac',
  'told_necklac_special',
  'necklac_special_daughter',
  'special_daughter_spent',
  'daughter_spent_much',
  'spent_much_time',
  'much_time_effort',
  'time_effort_make',
  'effort_make_comfort',
  'make_comfort_told',
  'comfort_told_shed',
  'told_shed_make',
  'shed_make_ident',
  'make_ident_one',
  'ident_one_buy',
  'one_buy_tool',
  'buy_tool_went',
  'tool_went_husband',
  'went_husband_told',
  'husband_told_expect',
  'told_expect_cough',
  'expect_cough_money',
  'cough_money_pay',
  'money_pay_thr',
  'pay_thr_tool',
  'thr_tool_daughter',
  'tool_daughter_could',
  'daughter_could_make',
  'could_make_similar',
  'make_similar_necklac',
  'similar_necklac_laugh',
  'necklac_laugh_said',
  'laugh_said_delusion',
  'said_delusion_expect',
  'delusion_expect_pay',
  'expect_pay_even',
  'pay_even_apolog',
  'even_apolog_part',
  'apolog_part_argument',
  'part_argument_felt',
  'argument_felt_like',
  'felt_like_noth',
  'like_noth_apolog',
  'noth_apolog_ye',
  'apolog_ye_stay',
  'ye_stay_home',
  'stay_home_famili',
  'home_famili_emerg',
  'famili_emerg_said',
  'emerg_said_one',
  'said_one_friend',
  'one_friend_come',
  'friend_come_stay',
  'come_stay_chloe',
  'stay_chloe_oh',
  'chloe_oh_ye',
  'oh_ye_piss',
  'ye_piss_said',
  'piss_said_pay',
  'said_pay_told',
  'pay_told_daughter',
  'told_daughter_knew',
  'daughter_knew_set',
  'knew_set_say',
  'set_say_tri',
  'say_tri_turn',
  'tri_turn_daughter',
  'turn_daughter_brainwash',
  'daughter_brainwash_think',
  'brainwash_think_bad',
  'think_bad_guy',
  'bad_guy_scenario',
  'guy_scenario_told',
  'scenario_told_im',
  'told_im_still',
  'im_still_expect',
  'still_expect_pay',
  'expect_pay_say',
  'pay_say_im',
  'say_im_gang',
  'im_gang_daughter'],
 ['husband',
  'bought',
  'first',
  'singl',
  'stori',
  'hous',
  'week',
  'ago',
  'put',
  'money',
  'toward',
  'name',
  'titl',
  'day',
  'ago',
  'host',
  'dinner',
  'famili',
  'famili',
  'live',
  'anoth',
  'state',
  'friend',
  'celebr',
  'occas',
  'brought',
  'gift',
  'took',
  'tour',
  'around',
  'hous',
  'overal',
  'good',
  'time',
  'til',
  'dinner',
  'husband',
  'suddenli',
  'start',
  'tell',
  'stori',
  'much',
  'sacrific',
  'mani',
  'extra',
  'job',
  'took',
  'mani',
  'year',
  'spent',
  'save',
  'buy',
  'hous',
  'complet',
  'ignor',
  'part',
  'role',
  'confus',
  'kept',
  'stare',
  'went',
  'found',
  'hous',
  'much',
  'troubl',
  'got',
  'get',
  'famili',
  'friend',
  'look',
  'impress',
  'kept',
  'say',
  'hous',
  'hous',
  'said',
  'hold',
  'told',
  'hous',
  'hous',
  'equal',
  'save',
  'conribut',
  'equal',
  'abl',
  'purchas',
  'mom',
  'ask',
  'seriou',
  'offer',
  'show',
  'legal',
  'document',
  'husband',
  'look',
  'shock',
  'got',
  'quiet',
  'friend',
  'famili',
  'kept',
  'look',
  'excus',
  'bathroom',
  'minut',
  'say',
  'goodby',
  'guest',
  'later',
  'blew',
  'ask',
  'wth',
  'said',
  'lie',
  'first',
  'place',
  'ask',
  'could',
  'possibl',
  'gain',
  'say',
  'said',
  'could',
  'possibl',
  'lost',
  'ever',
  'think',
  'speak',
  'got',
  'mad',
  'repli',
  'dismiss',
  'role',
  'buy',
  'hous',
  'like',
  'like',
  'oh',
  'decid',
  'humili',
  'infront',
  'famili',
  'friend',
  'appear',
  'import',
  'preteni',
  'much',
  'found',
  'insult',
  'argu',
  'mess',
  'ruin',
  'joy',
  'new',
  'home',
  'couldv',
  'avoid',
  'got',
  'tire',
  'argu',
  'went',
  'sleep',
  'gone',
  'radio',
  'silenc',
  'next',
  'day',
  'act',
  'upset',
  'day',
  'husband_bought',
  'bought_first',
  'first_singl',
  'singl_stori',
  'stori_hous',
  'hous_week',
  'week_ago',
  'ago_put',
  'put_money',
  'money_toward',
  'toward_name',
  'name_titl',
  'titl_day',
  'day_ago',
  'ago_host',
  'host_dinner',
  'dinner_famili',
  'famili_famili',
  'famili_live',
  'live_anoth',
  'anoth_state',
  'state_friend',
  'friend_celebr',
  'celebr_occas',
  'occas_brought',
  'brought_gift',
  'gift_took',
  'took_tour',
  'tour_around',
  'around_hous',
  'hous_overal',
  'overal_good',
  'good_time',
  'time_til',
  'til_dinner',
  'dinner_husband',
  'husband_suddenli',
  'suddenli_start',
  'start_tell',
  'tell_stori',
  'stori_much',
  'much_sacrific',
  'sacrific_mani',
  'mani_extra',
  'extra_job',
  'job_took',
  'took_mani',
  'mani_year',
  'year_spent',
  'spent_save',
  'save_buy',
  'buy_hous',
  'hous_complet',
  'complet_ignor',
  'ignor_part',
  'part_role',
  'role_confus',
  'confus_kept',
  'kept_stare',
  'stare_went',
  'went_found',
  'found_hous',
  'hous_much',
  'much_troubl',
  'troubl_got',
  'got_get',
  'get_famili',
  'famili_friend',
  'friend_look',
  'look_impress',
  'impress_kept',
  'kept_say',
  'say_hous',
  'hous_hous',
  'hous_said',
  'said_hold',
  'hold_told',
  'told_hous',
  'hous_hous',
  'hous_equal',
  'equal_save',
  'save_conribut',
  'conribut_equal',
  'equal_abl',
  'abl_purchas',
  'purchas_mom',
  'mom_ask',
  'ask_seriou',
  'seriou_offer',
  'offer_show',
  'show_legal',
  'legal_document',
  'document_husband',
  'husband_look',
  'look_shock',
  'shock_got',
  'got_quiet',
  'quiet_friend',
  'friend_famili',
  'famili_kept',
  'kept_look',
  'look_excus',
  'excus_bathroom',
  'bathroom_minut',
  'minut_say',
  'say_goodby',
  'goodby_guest',
  'guest_later',
  'later_blew',
  'blew_ask',
  'ask_wth',
  'wth_said',
  'said_lie',
  'lie_first',
  'first_place',
  'place_ask',
  'ask_could',
  'could_possibl',
  'possibl_gain',
  'gain_say',
  'say_said',
  'said_could',
  'could_possibl',
  'possibl_lost',
  'lost_ever',
  'ever_think',
  'think_speak',
  'speak_got',
  'got_mad',
  'mad_repli',
  'repli_dismiss',
  'dismiss_role',
  'role_buy',
  'buy_hous',
  'hous_like',
  'like_like',
  'like_oh',
  'oh_decid',
  'decid_humili',
  'humili_infront',
  'infront_famili',
  'famili_friend',
  'friend_appear',
  'appear_import',
  'import_preteni',
  'preteni_much',
  'much_found',
  'found_insult',
  'insult_argu',
  'argu_mess',
  'mess_ruin',
  'ruin_joy',
  'joy_new',
  'new_home',
  'home_couldv',
  'couldv_avoid',
  'avoid_got',
  'got_tire',
  'tire_argu',
  'argu_went',
  'went_sleep',
  'sleep_gone',
  'gone_radio',
  'radio_silenc',
  'silenc_next',
  'next_day',
  'day_act',
  'act_upset',
  'upset_day',
  'husband_bought_first',
  'bought_first_singl',
  'first_singl_stori',
  'singl_stori_hous',
  'stori_hous_week',
  'hous_week_ago',
  'week_ago_put',
  'ago_put_money',
  'put_money_toward',
  'money_toward_name',
  'toward_name_titl',
  'name_titl_day',
  'titl_day_ago',
  'day_ago_host',
  'ago_host_dinner',
  'host_dinner_famili',
  'dinner_famili_famili',
  'famili_famili_live',
  'famili_live_anoth',
  'live_anoth_state',
  'anoth_state_friend',
  'state_friend_celebr',
  'friend_celebr_occas',
  'celebr_occas_brought',
  'occas_brought_gift',
  'brought_gift_took',
  'gift_took_tour',
  'took_tour_around',
  'tour_around_hous',
  'around_hous_overal',
  'hous_overal_good',
  'overal_good_time',
  'good_time_til',
  'time_til_dinner',
  'til_dinner_husband',
  'dinner_husband_suddenli',
  'husband_suddenli_start',
  'suddenli_start_tell',
  'start_tell_stori',
  'tell_stori_much',
  'stori_much_sacrific',
  'much_sacrific_mani',
  'sacrific_mani_extra',
  'mani_extra_job',
  'extra_job_took',
  'job_took_mani',
  'took_mani_year',
  'mani_year_spent',
  'year_spent_save',
  'spent_save_buy',
  'save_buy_hous',
  'buy_hous_complet',
  'hous_complet_ignor',
  'complet_ignor_part',
  'ignor_part_role',
  'part_role_confus',
  'role_confus_kept',
  'confus_kept_stare',
  'kept_stare_went',
  'stare_went_found',
  'went_found_hous',
  'found_hous_much',
  'hous_much_troubl',
  'much_troubl_got',
  'troubl_got_get',
  'got_get_famili',
  'get_famili_friend',
  'famili_friend_look',
  'friend_look_impress',
  'look_impress_kept',
  'impress_kept_say',
  'kept_say_hous',
  'say_hous_hous',
  'hous_hous_said',
  'hous_said_hold',
  'said_hold_told',
  'hold_told_hous',
  'told_hous_hous',
  'hous_hous_equal',
  'hous_equal_save',
  'equal_save_conribut',
  'save_conribut_equal',
  'conribut_equal_abl',
  'equal_abl_purchas',
  'abl_purchas_mom',
  'purchas_mom_ask',
  'mom_ask_seriou',
  'ask_seriou_offer',
  'seriou_offer_show',
  'offer_show_legal',
  'show_legal_document',
  'legal_document_husband',
  'document_husband_look',
  'husband_look_shock',
  'look_shock_got',
  'shock_got_quiet',
  'got_quiet_friend',
  'quiet_friend_famili',
  'friend_famili_kept',
  'famili_kept_look',
  'kept_look_excus',
  'look_excus_bathroom',
  'excus_bathroom_minut',
  'bathroom_minut_say',
  'minut_say_goodby',
  'say_goodby_guest',
  'goodby_guest_later',
  'guest_later_blew',
  'later_blew_ask',
  'blew_ask_wth',
  'ask_wth_said',
  'wth_said_lie',
  'said_lie_first',
  'lie_first_place',
  'first_place_ask',
  'place_ask_could',
  'ask_could_possibl',
  'could_possibl_gain',
  'possibl_gain_say',
  'gain_say_said',
  'say_said_could',
  'said_could_possibl',
  'could_possibl_lost',
  'possibl_lost_ever',
  'lost_ever_think',
  'ever_think_speak',
  'think_speak_got',
  'speak_got_mad',
  'got_mad_repli',
  'mad_repli_dismiss',
  'repli_dismiss_role',
  'dismiss_role_buy',
  'role_buy_hous',
  'buy_hous_like',
  'hous_like_like',
  'like_like_oh',
  'like_oh_decid',
  'oh_decid_humili',
  'decid_humili_infront',
  'humili_infront_famili',
  'infront_famili_friend',
  'famili_friend_appear',
  'friend_appear_import',
  'appear_import_preteni',
  'import_preteni_much',
  'preteni_much_found',
  'much_found_insult',
  'found_insult_argu',
  'insult_argu_mess',
  'argu_mess_ruin',
  'mess_ruin_joy',
  'ruin_joy_new',
  'joy_new_home',
  'new_home_couldv',
  'home_couldv_avoid',
  'couldv_avoid_got',
  'avoid_got_tire',
  'got_tire_argu',
  'tire_argu_went',
  'argu_went_sleep',
  'went_sleep_gone',
  'sleep_gone_radio',
  'gone_radio_silenc',
  'radio_silenc_next',
  'silenc_next_day',
  'next_day_act',
  'day_act_upset',
  'act_upset_day'],
 ['gf',
  'date',
  'year',
  'want',
  'move',
  'togeth',
  'want',
  'bedroom',
  'bath',
  'apart',
  'townhous',
  'near',
  'work',
  'im',
  'nd',
  'year',
  'patholog',
  'resid',
  'resid',
  'year',
  'long',
  'work',
  'home',
  'want',
  'offic',
  'also',
  'make',
  'make',
  'rent',
  '$',
  'month',
  '+',
  'util',
  'want',
  'go',
  'half',
  'rent',
  'util',
  'would',
  'pay',
  'roughli',
  'month',
  'use',
  'one',
  'room',
  'offic',
  'feel',
  'like',
  'pay',
  'pay',
  '$',
  'pay',
  '$',
  'think',
  'even',
  'use',
  'extra',
  'room',
  'live',
  'near',
  'hospit',
  'expens',
  'pay',
  'half',
  'could',
  'get',
  'cheaper',
  'place',
  'live',
  'near',
  'work',
  'think',
  'pay',
  'live',
  'near',
  'work',
  'pay',
  'ga',
  'pay',
  'half',
  'rent',
  'find',
  'selfish',
  'make',
  'much',
  'mean',
  'complet',
  'resid',
  'easili',
  'make',
  '$',
  'year',
  'accord',
  'fair',
  'wait',
  'year',
  'potenti',
  'get',
  'paid',
  'back',
  'could',
  'breakup',
  'would',
  'subsid',
  'pay',
  'bit',
  'put',
  'skin',
  'game',
  'gold',
  'digger',
  'wait',
  'make',
  'bank',
  'without',
  'give',
  'anyth',
  'first',
  'place',
  'argu',
  'time',
  'want',
  'know',
  'im',
  'crazi',
  'think',
  'selfish',
  'gf_date',
  'date_year',
  'year_want',
  'want_move',
  'move_togeth',
  'togeth_want',
  'want_bedroom',
  'bedroom_bath',
  'bath_apart',
  'apart_townhous',
  'townhous_near',
  'near_work',
  'work_im',
  'im_nd',
  'nd_year',
  'year_patholog',
  'patholog_resid',
  'resid_resid',
  'resid_year',
  'year_long',
  'long_work',
  'work_home',
  'home_want',
  'want_offic',
  'offic_also',
  'also_make',
  'make_make',
  'make_rent',
  'rent_$',
  '$_month',
  'month_+',
  '+_util',
  'util_want',
  'want_go',
  'go_half',
  'half_rent',
  'rent_util',
  'util_would',
  'would_pay',
  'pay_roughli',
  'roughli_month',
  'month_use',
  'use_one',
  'one_room',
  'room_offic',
  'offic_feel',
  'feel_like',
  'like_pay',
  'pay_pay',
  'pay_$',
  '$_pay',
  'pay_$',
  '$_think',
  'think_even',
  'even_use',
  'use_extra',
  'extra_room',
  'room_live',
  'live_near',
  'near_hospit',
  'hospit_expens',
  'expens_pay',
  'pay_half',
  'half_could',
  'could_get',
  'get_cheaper',
  'cheaper_place',
  'place_live',
  'live_near',
  'near_work',
  'work_think',
  'think_pay',
  'pay_live',
  'live_near',
  'near_work',
  'work_pay',
  'pay_ga',
  'ga_pay',
  'pay_half',
  'half_rent',
  'rent_find',
  'find_selfish',
  'selfish_make',
  'make_much',
  'much_mean',
  'mean_complet',
  'complet_resid',
  'resid_easili',
  'easili_make',
  'make_$',
  '$_year',
  'year_accord',
  'accord_fair',
  'fair_wait',
  'wait_year',
  'year_potenti',
  'potenti_get',
  'get_paid',
  'paid_back',
  'back_could',
  'could_breakup',
  'breakup_would',
  'would_subsid',
  'subsid_pay',
  'pay_bit',
  'bit_put',
  'put_skin',
  'skin_game',
  'game_gold',
  'gold_digger',
  'digger_wait',
  'wait_make',
  'make_bank',
  'bank_without',
  'without_give',
  'give_anyth',
  'anyth_first',
  'first_place',
  'place_argu',
  'argu_time',
  'time_want',
  'want_know',
  'know_im',
  'im_crazi',
  'crazi_think',
  'think_selfish',
  'gf_date_year',
  'date_year_want',
  'year_want_move',
  'want_move_togeth',
  'move_togeth_want',
  'togeth_want_bedroom',
  'want_bedroom_bath',
  'bedroom_bath_apart',
  'bath_apart_townhous',
  'apart_townhous_near',
  'townhous_near_work',
  'near_work_im',
  'work_im_nd',
  'im_nd_year',
  'nd_year_patholog',
  'year_patholog_resid',
  'patholog_resid_resid',
  'resid_resid_year',
  'resid_year_long',
  'year_long_work',
  'long_work_home',
  'work_home_want',
  'home_want_offic',
  'want_offic_also',
  'offic_also_make',
  'also_make_make',
  'make_make_rent',
  'make_rent_$',
  'rent_$_month',
  '$_month_+',
  'month_+_util',
  '+_util_want',
  'util_want_go',
  'want_go_half',
  'go_half_rent',
  'half_rent_util',
  'rent_util_would',
  'util_would_pay',
  'would_pay_roughli',
  'pay_roughli_month',
  'roughli_month_use',
  'month_use_one',
  'use_one_room',
  'one_room_offic',
  'room_offic_feel',
  'offic_feel_like',
  'feel_like_pay',
  'like_pay_pay',
  'pay_pay_$',
  'pay_$_pay',
  '$_pay_$',
  'pay_$_think',
  '$_think_even',
  'think_even_use',
  'even_use_extra',
  'use_extra_room',
  'extra_room_live',
  'room_live_near',
  'live_near_hospit',
  'near_hospit_expens',
  'hospit_expens_pay',
  'expens_pay_half',
  'pay_half_could',
  'half_could_get',
  'could_get_cheaper',
  'get_cheaper_place',
  'cheaper_place_live',
  'place_live_near',
  'live_near_work',
  'near_work_think',
  'work_think_pay',
  'think_pay_live',
  'pay_live_near',
  'live_near_work',
  'near_work_pay',
  'work_pay_ga',
  'pay_ga_pay',
  'ga_pay_half',
  'pay_half_rent',
  'half_rent_find',
  'rent_find_selfish',
  'find_selfish_make',
  'selfish_make_much',
  'make_much_mean',
  'much_mean_complet',
  'mean_complet_resid',
  'complet_resid_easili',
  'resid_easili_make',
  'easili_make_$',
  'make_$_year',
  '$_year_accord',
  'year_accord_fair',
  'accord_fair_wait',
  'fair_wait_year',
  'wait_year_potenti',
  'year_potenti_get',
  'potenti_get_paid',
  'get_paid_back',
  'paid_back_could',
  'back_could_breakup',
  'could_breakup_would',
  'breakup_would_subsid',
  'would_subsid_pay',
  'subsid_pay_bit',
  'pay_bit_put',
  'bit_put_skin',
  'put_skin_game',
  'skin_game_gold',
  'game_gold_digger',
  'gold_digger_wait',
  'digger_wait_make',
  'wait_make_bank',
  'make_bank_without',
  'bank_without_give',
  'without_give_anyth',
  'give_anyth_first',
  'anyth_first_place',
  'first_place_argu',
  'place_argu_time',
  'argu_time_want',
  'time_want_know',
  'want_know_im',
  'know_im_crazi',
  'im_crazi_think',
  'crazi_think_selfish'],
 ['son',
  'go',
  'attend',
  'commun',
  'colleg',
  'live',
  'husband',
  'younger',
  'half',
  'sister',
  'day',
  'found',
  'found',
  'accept',
  'job',
  'without',
  'tell',
  'upset',
  'reason',
  'first',
  'told',
  'sinc',
  'live',
  'hous',
  'also',
  'importantli',
  'im',
  'left',
  'without',
  'someon',
  'stay',
  'girl',
  'shift',
  'start-end',
  'son',
  'usual',
  'one',
  'stay',
  'home',
  'girl',
  'new',
  'job',
  'hour',
  'one',
  'way',
  'anoth',
  'impact',
  'told',
  'friend',
  'found',
  'job',
  'happen',
  '-',
  'think',
  'knew',
  'give',
  'stay',
  'sister',
  'work',
  'husband',
  'travel',
  'time',
  'pilot',
  'paid',
  'child',
  'care',
  'son',
  'said',
  'surpris',
  'tri',
  'work',
  'save',
  'money',
  'abl',
  'pay',
  'absurd',
  'sinc',
  'liter',
  'live',
  'us',
  'without',
  'pay',
  'anyth',
  'except',
  'entertain',
  'said',
  'need',
  'job',
  'reallist',
  'go',
  'stay',
  'watch',
  'sister',
  'day',
  'end',
  'especi',
  'get',
  'paid',
  'kept',
  'argu',
  'husband',
  'got',
  'involv',
  'upset',
  'say',
  'son',
  'respect',
  'us',
  'son',
  'basic',
  'like',
  'attitud',
  'us',
  'kept',
  'refus',
  'discuss',
  'wirh',
  'us',
  'say',
  'right',
  'upset',
  'accept',
  'im',
  'justi',
  'think',
  'inconsider',
  'husband',
  'struggl',
  'provid',
  'famili',
  'whole',
  'mean',
  'someth',
  'act',
  'selfishli',
  'eta',
  'okay',
  'seem',
  'mention',
  'reason',
  'babysitt',
  'option',
  'ideal',
  'daughter',
  'want',
  'babysitt',
  'theyr',
  'deal',
  'issu',
  'unconfort',
  'stranger',
  'home',
  'besid',
  'son',
  'decid',
  'stay',
  'ask',
  'anyth',
  'eta',
  'okay',
  'impli',
  'suggest',
  'im',
  'make',
  'son',
  'girl',
  'babysitt',
  'fact',
  'true',
  'much',
  'stay',
  'home',
  'studi',
  'play',
  'video',
  'game',
  'ador',
  'sister',
  'stay',
  'want',
  'otherwis',
  'forc',
  'also',
  'husband',
  'said',
  'girl',
  'young',
  'therapi',
  'agre',
  'son_go',
  'go_attend',
  'attend_commun',
  'commun_colleg',
  'colleg_live',
  'live_husband',
  'husband_younger',
  'younger_half',
  'half_sister',
  'sister_day',
  'day_found',
  'found_found',
  'found_accept',
  'accept_job',
  'job_without',
  'without_tell',
  'tell_upset',
  'upset_reason',
  'reason_first',
  'first_told',
  'told_sinc',
  'sinc_live',
  'live_hous',
  'hous_also',
  'also_importantli',
  'importantli_im',
  'im_left',
  'left_without',
  'without_someon',
  'someon_stay',
  'stay_girl',
  'girl_shift',
  'shift_start-end',
  'start-end_son',
  'son_usual',
  'usual_one',
  'one_stay',
  'stay_home',
  'home_girl',
  'girl_new',
  'new_job',
  'job_hour',
  'hour_one',
  'one_way',
  'way_anoth',
  'anoth_impact',
  'impact_told',
  'told_friend',
  'friend_found',
  'found_job',
  'job_happen',
  'happen_-',
  '-_think',
  'think_knew',
  'knew_give',
  'give_stay',
  'stay_sister',
  'sister_work',
  'work_husband',
  'husband_travel',
  'travel_time',
  'time_pilot',
  'pilot_paid',
  'paid_child',
  'child_care',
  'care_son',
  'son_said',
  'said_surpris',
  'surpris_tri',
  'tri_work',
  'work_save',
  'save_money',
  'money_abl',
  'abl_pay',
  'pay_absurd',
  'absurd_sinc',
  'sinc_liter',
  'liter_live',
  'live_us',
  'us_without',
  'without_pay',
  'pay_anyth',
  'anyth_except',
  'except_entertain',
  'entertain_said',
  'said_need',
  'need_job',
  'job_reallist',
  'reallist_go',
  'go_stay',
  'stay_watch',
  'watch_sister',
  'sister_day',
  'day_end',
  'end_especi',
  'especi_get',
  'get_paid',
  'paid_kept',
  'kept_argu',
  'argu_husband',
  'husband_got',
  'got_involv',
  'involv_upset',
  'upset_say',
  'say_son',
  'son_respect',
  'respect_us',
  'us_son',
  'son_basic',
  'basic_like',
  'like_attitud',
  'attitud_us',
  'us_kept',
  'kept_refus',
  'refus_discuss',
  'discuss_wirh',
  'wirh_us',
  'us_say',
  'say_right',
  'right_upset',
  'upset_accept',
  'accept_im',
  'im_justi',
  'justi_think',
  'think_inconsider',
  'inconsider_husband',
  'husband_struggl',
  'struggl_provid',
  'provid_famili',
  'famili_whole',
  'whole_mean',
  'mean_someth',
  'someth_act',
  'act_selfishli',
  'selfishli_eta',
  'eta_okay',
  'okay_seem',
  'seem_mention',
  'mention_reason',
  'reason_babysitt',
  'babysitt_option',
  'option_ideal',
  'ideal_daughter',
  'daughter_want',
  'want_babysitt',
  'babysitt_theyr',
  'theyr_deal',
  'deal_issu',
  'issu_unconfort',
  'unconfort_stranger',
  'stranger_home',
  'home_besid',
  'besid_son',
  'son_decid',
  'decid_stay',
  'stay_ask',
  'ask_anyth',
  'anyth_eta',
  'eta_okay',
  'okay_impli',
  'impli_suggest',
  'suggest_im',
  'im_make',
  'make_son',
  'son_girl',
  'girl_babysitt',
  'babysitt_fact',
  'fact_true',
  'true_much',
  'much_stay',
  'stay_home',
  'home_studi',
  'studi_play',
  'play_video',
  'video_game',
  'game_ador',
  'ador_sister',
  'sister_stay',
  'stay_want',
  'want_otherwis',
  'otherwis_forc',
  'forc_also',
  'also_husband',
  'husband_said',
  'said_girl',
  'girl_young',
  'young_therapi',
  'therapi_agre',
  'son_go_attend',
  'go_attend_commun',
  'attend_commun_colleg',
  'commun_colleg_live',
  'colleg_live_husband',
  'live_husband_younger',
  'husband_younger_half',
  'younger_half_sister',
  'half_sister_day',
  'sister_day_found',
  'day_found_found',
  'found_found_accept',
  'found_accept_job',
  'accept_job_without',
  'job_without_tell',
  'without_tell_upset',
  'tell_upset_reason',
  'upset_reason_first',
  'reason_first_told',
  'first_told_sinc',
  'told_sinc_live',
  'sinc_live_hous',
  'live_hous_also',
  'hous_also_importantli',
  'also_importantli_im',
  'importantli_im_left',
  'im_left_without',
  'left_without_someon',
  'without_someon_stay',
  'someon_stay_girl',
  'stay_girl_shift',
  'girl_shift_start-end',
  'shift_start-end_son',
  'start-end_son_usual',
  'son_usual_one',
  'usual_one_stay',
  'one_stay_home',
  'stay_home_girl',
  'home_girl_new',
  'girl_new_job',
  'new_job_hour',
  'job_hour_one',
  'hour_one_way',
  'one_way_anoth',
  'way_anoth_impact',
  'anoth_impact_told',
  'impact_told_friend',
  'told_friend_found',
  'friend_found_job',
  'found_job_happen',
  'job_happen_-',
  'happen_-_think',
  '-_think_knew',
  'think_knew_give',
  'knew_give_stay',
  'give_stay_sister',
  'stay_sister_work',
  'sister_work_husband',
  'work_husband_travel',
  'husband_travel_time',
  'travel_time_pilot',
  'time_pilot_paid',
  'pilot_paid_child',
  'paid_child_care',
  'child_care_son',
  'care_son_said',
  'son_said_surpris',
  'said_surpris_tri',
  'surpris_tri_work',
  'tri_work_save',
  'work_save_money',
  'save_money_abl',
  'money_abl_pay',
  'abl_pay_absurd',
  'pay_absurd_sinc',
  'absurd_sinc_liter',
  'sinc_liter_live',
  'liter_live_us',
  'live_us_without',
  'us_without_pay',
  'without_pay_anyth',
  'pay_anyth_except',
  'anyth_except_entertain',
  'except_entertain_said',
  'entertain_said_need',
  'said_need_job',
  'need_job_reallist',
  'job_reallist_go',
  'reallist_go_stay',
  'go_stay_watch',
  'stay_watch_sister',
  'watch_sister_day',
  'sister_day_end',
  'day_end_especi',
  'end_especi_get',
  'especi_get_paid',
  'get_paid_kept',
  'paid_kept_argu',
  'kept_argu_husband',
  'argu_husband_got',
  'husband_got_involv',
  'got_involv_upset',
  'involv_upset_say',
  'upset_say_son',
  'say_son_respect',
  'son_respect_us',
  'respect_us_son',
  'us_son_basic',
  'son_basic_like',
  'basic_like_attitud',
  'like_attitud_us',
  'attitud_us_kept',
  'us_kept_refus',
  'kept_refus_discuss',
  'refus_discuss_wirh',
  'discuss_wirh_us',
  'wirh_us_say',
  'us_say_right',
  'say_right_upset',
  'right_upset_accept',
  'upset_accept_im',
  'accept_im_justi',
  'im_justi_think',
  'justi_think_inconsider',
  'think_inconsider_husband',
  'inconsider_husband_struggl',
  'husband_struggl_provid',
  'struggl_provid_famili',
  'provid_famili_whole',
  'famili_whole_mean',
  'whole_mean_someth',
  'mean_someth_act',
  'someth_act_selfishli',
  'act_selfishli_eta',
  'selfishli_eta_okay',
  'eta_okay_seem',
  'okay_seem_mention',
  'seem_mention_reason',
  'mention_reason_babysitt',
  'reason_babysitt_option',
  'babysitt_option_ideal',
  'option_ideal_daughter',
  'ideal_daughter_want',
  'daughter_want_babysitt',
  'want_babysitt_theyr',
  'babysitt_theyr_deal',
  'theyr_deal_issu',
  'deal_issu_unconfort',
  'issu_unconfort_stranger',
  'unconfort_stranger_home',
  'stranger_home_besid',
  'home_besid_son',
  'besid_son_decid',
  'son_decid_stay',
  'decid_stay_ask',
  'stay_ask_anyth',
  'ask_anyth_eta',
  'anyth_eta_okay',
  'eta_okay_impli',
  'okay_impli_suggest',
  'impli_suggest_im',
  'suggest_im_make',
  'im_make_son',
  'make_son_girl',
  'son_girl_babysitt',
  'girl_babysitt_fact',
  'babysitt_fact_true',
  'fact_true_much',
  'true_much_stay',
  'much_stay_home',
  'stay_home_studi',
  'home_studi_play',
  'studi_play_video',
  'play_video_game',
  'video_game_ador',
  'game_ador_sister',
  'ador_sister_stay',
  'sister_stay_want',
  'stay_want_otherwis',
  'want_otherwis_forc',
  'otherwis_forc_also',
  'forc_also_husband',
  'also_husband_said',
  'husband_said_girl',
  'said_girl_young',
  'girl_young_therapi',
  'young_therapi_agre'],
 ['miscarriag',
  'last',
  'year',
  'worst',
  'moment',
  'life',
  'took',
  'big',
  'hit',
  'relationship',
  'husband',
  'divorc',
  'got',
  'final',
  'last',
  'month',
  'honestli',
  'differ',
  'type',
  'pain',
  'thank',
  'wonder',
  'friend',
  'famili',
  'whove',
  'support',
  'way',
  'christma',
  'dinner',
  'famili',
  'lot',
  'rel',
  'kept',
  'check',
  'ask',
  'okay',
  'bring',
  'food',
  'felt',
  'realli',
  'love',
  'pretti',
  'fun',
  'overal',
  'took',
  'mind',
  'everyth',
  'bit',
  'cousin',
  'fianc',
  'recent',
  'pass',
  'dinner',
  'talk',
  'much',
  'mostli',
  'kept',
  'saw',
  'get',
  'soda',
  'ask',
  'could',
  'bring',
  'one',
  'well',
  'go',
  'well',
  'got',
  'upset',
  'start',
  'go',
  'bring',
  'thing',
  'get',
  'told',
  'complet',
  'fine',
  'ask',
  'sinc',
  'alreadi',
  'make',
  'big',
  'deal',
  'look',
  'like',
  'cri',
  'kept',
  'go',
  'expect',
  'everyon',
  'fawn',
  'one',
  'care',
  'fianc',
  'told',
  'best',
  'im',
  'sorri',
  'feel',
  'way',
  'grief',
  'competit',
  'understand',
  'peopl',
  'overheard',
  'us',
  'convers',
  'chang',
  'huge',
  'issu',
  'sister',
  'messag',
  'later',
  'said',
  'aw',
  'aw',
  'told',
  'best',
  'friend',
  'happen',
  'suggest',
  'post',
  'opinion',
  'think',
  'big',
  'deal',
  'thought',
  'otherwis',
  'asshol',
  'miscarriag_last',
  'last_year',
  'year_worst',
  'worst_moment',
  'moment_life',
  'life_took',
  'took_big',
  'big_hit',
  'hit_relationship',
  'relationship_husband',
  'husband_divorc',
  'divorc_got',
  'got_final',
  'final_last',
  'last_month',
  'month_honestli',
  'honestli_differ',
  'differ_type',
  'type_pain',
  'pain_thank',
  'thank_wonder',
  'wonder_friend',
  'friend_famili',
  'famili_whove',
  'whove_support',
  'support_way',
  'way_christma',
  'christma_dinner',
  'dinner_famili',
  'famili_lot',
  'lot_rel',
  'rel_kept',
  'kept_check',
  'check_ask',
  'ask_okay',
  'okay_bring',
  'bring_food',
  'food_felt',
  'felt_realli',
  'realli_love',
  'love_pretti',
  'pretti_fun',
  'fun_overal',
  'overal_took',
  'took_mind',
  'mind_everyth',
  'everyth_bit',
  'bit_cousin',
  'cousin_fianc',
  'fianc_recent',
  'recent_pass',
  'pass_dinner',
  'dinner_talk',
  'talk_much',
  'much_mostli',
  'mostli_kept',
  'kept_saw',
  'saw_get',
  'get_soda',
  'soda_ask',
  'ask_could',
  'could_bring',
  'bring_one',
  'one_well',
  'well_go',
  'go_well',
  'well_got',
  'got_upset',
  'upset_start',
  'start_go',
  'go_bring',
  'bring_thing',
  'thing_get',
  'get_told',
  'told_complet',
  'complet_fine',
  'fine_ask',
  'ask_sinc',
  'sinc_alreadi',
  'alreadi_make',
  'make_big',
  'big_deal',
  'deal_look',
  'look_like',
  'like_cri',
  'cri_kept',
  'kept_go',
  'go_expect',
  'expect_everyon',
  'everyon_fawn',
  'fawn_one',
  'one_care',
  'care_fianc',
  'fianc_told',
  'told_best',
  'best_im',
  'im_sorri',
  'sorri_feel',
  'feel_way',
  'way_grief',
  'grief_competit',
  'competit_understand',
  'understand_peopl',
  'peopl_overheard',
  'overheard_us',
  'us_convers',
  'convers_chang',
  'chang_huge',
  'huge_issu',
  'issu_sister',
  'sister_messag',
  'messag_later',
  'later_said',
  'said_aw',
  'aw_aw',
  'aw_told',
  'told_best',
  'best_friend',
  'friend_happen',
  'happen_suggest',
  'suggest_post',
  'post_opinion',
  'opinion_think',
  'think_big',
  'big_deal',
  'deal_thought',
  'thought_otherwis',
  'otherwis_asshol',
  'miscarriag_last_year',
  'last_year_worst',
  'year_worst_moment',
  'worst_moment_life',
  'moment_life_took',
  'life_took_big',
  'took_big_hit',
  'big_hit_relationship',
  'hit_relationship_husband',
  'relationship_husband_divorc',
  'husband_divorc_got',
  'divorc_got_final',
  'got_final_last',
  'final_last_month',
  'last_month_honestli',
  'month_honestli_differ',
  'honestli_differ_type',
  'differ_type_pain',
  'type_pain_thank',
  'pain_thank_wonder',
  'thank_wonder_friend',
  'wonder_friend_famili',
  'friend_famili_whove',
  'famili_whove_support',
  'whove_support_way',
  'support_way_christma',
  'way_christma_dinner',
  'christma_dinner_famili',
  'dinner_famili_lot',
  'famili_lot_rel',
  'lot_rel_kept',
  'rel_kept_check',
  'kept_check_ask',
  'check_ask_okay',
  'ask_okay_bring',
  'okay_bring_food',
  'bring_food_felt',
  'food_felt_realli',
  'felt_realli_love',
  'realli_love_pretti',
  'love_pretti_fun',
  'pretti_fun_overal',
  'fun_overal_took',
  'overal_took_mind',
  'took_mind_everyth',
  'mind_everyth_bit',
  'everyth_bit_cousin',
  'bit_cousin_fianc',
  'cousin_fianc_recent',
  'fianc_recent_pass',
  'recent_pass_dinner',
  'pass_dinner_talk',
  'dinner_talk_much',
  'talk_much_mostli',
  'much_mostli_kept',
  'mostli_kept_saw',
  'kept_saw_get',
  'saw_get_soda',
  'get_soda_ask',
  'soda_ask_could',
  'ask_could_bring',
  'could_bring_one',
  'bring_one_well',
  'one_well_go',
  'well_go_well',
  'go_well_got',
  'well_got_upset',
  'got_upset_start',
  'upset_start_go',
  'start_go_bring',
  'go_bring_thing',
  'bring_thing_get',
  'thing_get_told',
  'get_told_complet',
  'told_complet_fine',
  'complet_fine_ask',
  'fine_ask_sinc',
  'ask_sinc_alreadi',
  'sinc_alreadi_make',
  'alreadi_make_big',
  'make_big_deal',
  'big_deal_look',
  'deal_look_like',
  'look_like_cri',
  'like_cri_kept',
  'cri_kept_go',
  'kept_go_expect',
  'go_expect_everyon',
  'expect_everyon_fawn',
  'everyon_fawn_one',
  'fawn_one_care',
  'one_care_fianc',
  'care_fianc_told',
  'fianc_told_best',
  'told_best_im',
  'best_im_sorri',
  'im_sorri_feel',
  'sorri_feel_way',
  'feel_way_grief',
  'way_grief_competit',
  'grief_competit_understand',
  'competit_understand_peopl',
  'understand_peopl_overheard',
  'peopl_overheard_us',
  'overheard_us_convers',
  'us_convers_chang',
  'convers_chang_huge',
  'chang_huge_issu',
  'huge_issu_sister',
  'issu_sister_messag',
  'sister_messag_later',
  'messag_later_said',
  'later_said_aw',
  'said_aw_aw',
  'aw_aw_told',
  'aw_told_best',
  'told_best_friend',
  'best_friend_happen',
  'friend_happen_suggest',
  'happen_suggest_post',
  'suggest_post_opinion',
  'post_opinion_think',
  'opinion_think_big',
  'think_big_deal',
  'big_deal_thought',
  'deal_thought_otherwis',
  'thought_otherwis_asshol'],
 ['daughter',
  'th',
  'grade',
  'thursday',
  'night',
  'got',
  'first',
  'period',
  'freak',
  'sad',
  'get',
  'older',
  'night',
  'like',
  'deal',
  'lot',
  'unfamiliar',
  'hormon',
  'end',
  'take',
  'next',
  'day',
  'mental',
  'health',
  'day',
  'call',
  'school',
  'said',
  'wed',
  'person',
  'matter',
  'male',
  'teacher',
  'realli',
  'get',
  'suffic',
  'say',
  'want',
  'keep',
  'privat',
  'next',
  'day',
  'teacher',
  'stop',
  'drop',
  'kind',
  'corner',
  'outsid',
  'build',
  'block',
  'path',
  'leav',
  'alreadi',
  'grate',
  'nerv',
  'ask',
  'daughter',
  'day',
  'prior',
  'said',
  'wed',
  'person',
  'matter',
  'home',
  'resolv',
  'thank',
  'concern',
  'said',
  'realli',
  'must',
  'work',
  'said',
  '*',
  '*',
  'tell',
  'kind',
  'lean',
  'drop',
  'voic',
  'octav',
  'though',
  'tri',
  'lord',
  'one',
  'kid',
  'fan',
  'either',
  'told',
  '*',
  '*',
  'anyth',
  'continu',
  'speak',
  'way',
  'might',
  'chat',
  'administr',
  'said',
  'tell',
  'would',
  'unexcus',
  'absenc',
  'need',
  'someth',
  'like',
  'five',
  'matter',
  'would',
  'daughter',
  'first',
  'shrug',
  'shoulder',
  'mention',
  'could',
  'get',
  'expung',
  'higher',
  'level',
  'final',
  'said',
  'realli',
  'late',
  'work',
  'push',
  'past',
  'left',
  'call',
  'expect',
  'job',
  'left',
  'loop',
  'thing',
  'like',
  'keep',
  'child',
  'school',
  'told',
  'hed',
  'manag',
  'got',
  'car',
  'vent',
  'husband',
  'felt',
  'mayb',
  'id',
  'bit',
  'brash',
  'teacher',
  'come',
  'place',
  'genuin',
  'concern',
  'daughter',
  'feel',
  'bit',
  'badli',
  'though',
  'mayb',
  'jump',
  'conclus',
  'stonewal',
  'way',
  'asshol',
  'daughter_th',
  'th_grade',
  'grade_thursday',
  'thursday_night',
  'night_got',
  'got_first',
  'first_period',
  'period_freak',
  'freak_sad',
  'sad_get',
  'get_older',
  'older_night',
  'night_like',
  'like_deal',
  'deal_lot',
  'lot_unfamiliar',
  'unfamiliar_hormon',
  'hormon_end',
  'end_take',
  'take_next',
  'next_day',
  'day_mental',
  'mental_health',
  'health_day',
  'day_call',
  'call_school',
  'school_said',
  'said_wed',
  'wed_person',
  'person_matter',
  'matter_male',
  'male_teacher',
  'teacher_realli',
  'realli_get',
  'get_suffic',
  'suffic_say',
  'say_want',
  'want_keep',
  'keep_privat',
  'privat_next',
  'next_day',
  'day_teacher',
  'teacher_stop',
  'stop_drop',
  'drop_kind',
  'kind_corner',
  'corner_outsid',
  'outsid_build',
  'build_block',
  'block_path',
  'path_leav',
  'leav_alreadi',
  'alreadi_grate',
  'grate_nerv',
  'nerv_ask',
  'ask_daughter',
  'daughter_day',
  'day_prior',
  'prior_said',
  'said_wed',
  'wed_person',
  'person_matter',
  'matter_home',
  'home_resolv',
  'resolv_thank',
  'thank_concern',
  'concern_said',
  'said_realli',
  'realli_must',
  'must_work',
  'work_said',
  'said_*',
  '*_*',
  '*_tell',
  'tell_kind',
  'kind_lean',
  'lean_drop',
  'drop_voic',
  'voic_octav',
  'octav_though',
  'though_tri',
  'tri_lord',
  'lord_one',
  'one_kid',
  'kid_fan',
  'fan_either',
  'either_told',
  'told_*',
  '*_*',
  '*_anyth',
  'anyth_continu',
  'continu_speak',
  'speak_way',
  'way_might',
  'might_chat',
  'chat_administr',
  'administr_said',
  'said_tell',
  'tell_would',
  'would_unexcus',
  'unexcus_absenc',
  'absenc_need',
  'need_someth',
  'someth_like',
  'like_five',
  'five_matter',
  'matter_would',
  'would_daughter',
  'daughter_first',
  'first_shrug',
  'shrug_shoulder',
  'shoulder_mention',
  'mention_could',
  'could_get',
  'get_expung',
  'expung_higher',
  'higher_level',
  'level_final',
  'final_said',
  'said_realli',
  'realli_late',
  'late_work',
  'work_push',
  'push_past',
  'past_left',
  'left_call',
  'call_expect',
  'expect_job',
  'job_left',
  'left_loop',
  'loop_thing',
  'thing_like',
  'like_keep',
  'keep_child',
  'child_school',
  'school_told',
  'told_hed',
  'hed_manag',
  'manag_got',
  'got_car',
  'car_vent',
  'vent_husband',
  'husband_felt',
  'felt_mayb',
  'mayb_id',
  'id_bit',
  'bit_brash',
  'brash_teacher',
  'teacher_come',
  'come_place',
  'place_genuin',
  'genuin_concern',
  'concern_daughter',
  'daughter_feel',
  'feel_bit',
  'bit_badli',
  'badli_though',
  'though_mayb',
  'mayb_jump',
  'jump_conclus',
  'conclus_stonewal',
  'stonewal_way',
  'way_asshol',
  'daughter_th_grade',
  'th_grade_thursday',
  'grade_thursday_night',
  'thursday_night_got',
  'night_got_first',
  'got_first_period',
  'first_period_freak',
  'period_freak_sad',
  'freak_sad_get',
  'sad_get_older',
  'get_older_night',
  'older_night_like',
  'night_like_deal',
  'like_deal_lot',
  'deal_lot_unfamiliar',
  'lot_unfamiliar_hormon',
  'unfamiliar_hormon_end',
  'hormon_end_take',
  'end_take_next',
  'take_next_day',
  'next_day_mental',
  'day_mental_health',
  'mental_health_day',
  'health_day_call',
  'day_call_school',
  'call_school_said',
  'school_said_wed',
  'said_wed_person',
  'wed_person_matter',
  'person_matter_male',
  'matter_male_teacher',
  'male_teacher_realli',
  'teacher_realli_get',
  'realli_get_suffic',
  'get_suffic_say',
  'suffic_say_want',
  'say_want_keep',
  'want_keep_privat',
  'keep_privat_next',
  'privat_next_day',
  'next_day_teacher',
  'day_teacher_stop',
  'teacher_stop_drop',
  'stop_drop_kind',
  'drop_kind_corner',
  'kind_corner_outsid',
  'corner_outsid_build',
  'outsid_build_block',
  'build_block_path',
  'block_path_leav',
  'path_leav_alreadi',
  'leav_alreadi_grate',
  'alreadi_grate_nerv',
  'grate_nerv_ask',
  'nerv_ask_daughter',
  'ask_daughter_day',
  'daughter_day_prior',
  'day_prior_said',
  'prior_said_wed',
  'said_wed_person',
  'wed_person_matter',
  'person_matter_home',
  'matter_home_resolv',
  'home_resolv_thank',
  'resolv_thank_concern',
  'thank_concern_said',
  'concern_said_realli',
  'said_realli_must',
  'realli_must_work',
  'must_work_said',
  'work_said_*',
  'said_*_*',
  '*_*_tell',
  '*_tell_kind',
  'tell_kind_lean',
  'kind_lean_drop',
  'lean_drop_voic',
  'drop_voic_octav',
  'voic_octav_though',
  'octav_though_tri',
  'though_tri_lord',
  'tri_lord_one',
  'lord_one_kid',
  'one_kid_fan',
  'kid_fan_either',
  'fan_either_told',
  'either_told_*',
  'told_*_*',
  '*_*_anyth',
  '*_anyth_continu',
  'anyth_continu_speak',
  'continu_speak_way',
  'speak_way_might',
  'way_might_chat',
  'might_chat_administr',
  'chat_administr_said',
  'administr_said_tell',
  'said_tell_would',
  'tell_would_unexcus',
  'would_unexcus_absenc',
  'unexcus_absenc_need',
  'absenc_need_someth',
  'need_someth_like',
  'someth_like_five',
  'like_five_matter',
  'five_matter_would',
  'matter_would_daughter',
  'would_daughter_first',
  'daughter_first_shrug',
  'first_shrug_shoulder',
  'shrug_shoulder_mention',
  'shoulder_mention_could',
  'mention_could_get',
  'could_get_expung',
  'get_expung_higher',
  'expung_higher_level',
  'higher_level_final',
  'level_final_said',
  'final_said_realli',
  'said_realli_late',
  'realli_late_work',
  'late_work_push',
  'work_push_past',
  'push_past_left',
  'past_left_call',
  'left_call_expect',
  'call_expect_job',
  'expect_job_left',
  'job_left_loop',
  'left_loop_thing',
  'loop_thing_like',
  'thing_like_keep',
  'like_keep_child',
  'keep_child_school',
  'child_school_told',
  'school_told_hed',
  'told_hed_manag',
  'hed_manag_got',
  'manag_got_car',
  'got_car_vent',
  'car_vent_husband',
  'vent_husband_felt',
  'husband_felt_mayb',
  'felt_mayb_id',
  'mayb_id_bit',
  'id_bit_brash',
  'bit_brash_teacher',
  'brash_teacher_come',
  'teacher_come_place',
  'come_place_genuin',
  'place_genuin_concern',
  'genuin_concern_daughter',
  'concern_daughter_feel',
  'daughter_feel_bit',
  'feel_bit_badli',
  'bit_badli_though',
  'badli_though_mayb',
  'though_mayb_jump',
  'mayb_jump_conclus',
  'jump_conclus_stonewal',
  'conclus_stonewal_way',
  'stonewal_way_asshol'],
 ['buddi',
  'kalen',
  'suppos',
  'get',
  'marri',
  'ex',
  'fiance',
  'kayley',
  'next',
  'weekend',
  'togeth',
  'like',
  '-',
  'year',
  'seem',
  'like',
  'perfect',
  'coupl',
  'love',
  'happi',
  'alway',
  'sweet',
  'thing',
  'etc',
  'alway',
  'joke',
  'relationship',
  'goal',
  'everyon',
  'shock',
  'kayley',
  'call',
  'us',
  'last',
  'week',
  'frantic',
  'ask',
  'knew',
  'kalen',
  'come',
  'home',
  'work',
  'day',
  'warn',
  'noth',
  'know',
  'went',
  'coupl',
  'day',
  'ago',
  'kayley',
  'make',
  'post',
  'wed',
  'still',
  'go',
  'un-wed',
  'partyrecept',
  'late',
  'get',
  'refund',
  'immedi',
  'kalen',
  'start',
  'messag',
  'us',
  'upset',
  'ask',
  'go',
  'appar',
  'go',
  'someth',
  'want',
  'stay',
  'togeth',
  'kayley',
  'broke',
  'instead',
  'devast',
  'furiou',
  'think',
  'parti',
  'hard',
  'day',
  'need',
  'support',
  'friend',
  'split',
  'way',
  'see',
  'alreadi',
  'took',
  'time',
  'wed',
  'cabin',
  'alreadi',
  'book',
  'know',
  'get',
  'refund',
  'alreadi',
  'bought',
  'new',
  'cloth',
  'wed',
  'look',
  'forward',
  'romant',
  'weekend',
  'away',
  'mountain',
  'suck',
  'kalen',
  'heartbroken',
  'kind',
  'brought',
  'plu',
  'kayley',
  'upgrad',
  'cash',
  'bar',
  'open',
  'bar',
  'friend',
  'think',
  'sinc',
  'friend',
  'first',
  'go',
  'hard',
  'time',
  'even',
  'dumbass',
  'fault',
  'well',
  'respons',
  'harm',
  'parti',
  'drink',
  'say',
  'use',
  'time',
  'someth',
  'nice',
  'instead',
  'buddi_kalen',
  'kalen_suppos',
  'suppos_get',
  'get_marri',
  'marri_ex',
  'ex_fiance',
  'fiance_kayley',
  'kayley_next',
  'next_weekend',
  'weekend_togeth',
  'togeth_like',
  'like_-',
  '-_year',
  'year_seem',
  'seem_like',
  'like_perfect',
  'perfect_coupl',
  'coupl_love',
  'love_happi',
  'happi_alway',
  'alway_sweet',
  'sweet_thing',
  'thing_etc',
  'etc_alway',
  'alway_joke',
  'joke_relationship',
  'relationship_goal',
  'goal_everyon',
  'everyon_shock',
  'shock_kayley',
  'kayley_call',
  'call_us',
  'us_last',
  'last_week',
  'week_frantic',
  'frantic_ask',
  'ask_knew',
  'knew_kalen',
  'kalen_come',
  'come_home',
  'home_work',
  'work_day',
  'day_warn',
  'warn_noth',
  'noth_know',
  'know_went',
  'went_coupl',
  'coupl_day',
  'day_ago',
  'ago_kayley',
  'kayley_make',
  'make_post',
  'post_wed',
  'wed_still',
  'still_go',
  'go_un-wed',
  'un-wed_partyrecept',
  'partyrecept_late',
  'late_get',
  'get_refund',
  'refund_immedi',
  'immedi_kalen',
  'kalen_start',
  'start_messag',
  'messag_us',
  'us_upset',
  'upset_ask',
  'ask_go',
  'go_appar',
  'appar_go',
  'go_someth',
  'someth_want',
  'want_stay',
  'stay_togeth',
  'togeth_kayley',
  'kayley_broke',
  'broke_instead',
  'instead_devast',
  'devast_furiou',
  'furiou_think',
  'think_parti',
  'parti_hard',
  'hard_day',
  'day_need',
  'need_support',
  'support_friend',
  'friend_split',
  'split_way',
  'way_see',
  'see_alreadi',
  'alreadi_took',
  'took_time',
  'time_wed',
  'wed_cabin',
  'cabin_alreadi',
  'alreadi_book',
  'book_know',
  'know_get',
  'get_refund',
  'refund_alreadi',
  'alreadi_bought',
  'bought_new',
  'new_cloth',
  'cloth_wed',
  'wed_look',
  'look_forward',
  'forward_romant',
  'romant_weekend',
  'weekend_away',
  'away_mountain',
  'mountain_suck',
  'suck_kalen',
  'kalen_heartbroken',
  'heartbroken_kind',
  'kind_brought',
  'brought_plu',
  'plu_kayley',
  'kayley_upgrad',
  'upgrad_cash',
  'cash_bar',
  'bar_open',
  'open_bar',
  'bar_friend',
  'friend_think',
  'think_sinc',
  'sinc_friend',
  'friend_first',
  'first_go',
  'go_hard',
  'hard_time',
  'time_even',
  'even_dumbass',
  'dumbass_fault',
  'fault_well',
  'well_respons',
  'respons_harm',
  'harm_parti',
  'parti_drink',
  'drink_say',
  'say_use',
  'use_time',
  'time_someth',
  'someth_nice',
  'nice_instead',
  'buddi_kalen_suppos',
  'kalen_suppos_get',
  'suppos_get_marri',
  'get_marri_ex',
  'marri_ex_fiance',
  'ex_fiance_kayley',
  'fiance_kayley_next',
  'kayley_next_weekend',
  'next_weekend_togeth',
  'weekend_togeth_like',
  'togeth_like_-',
  'like_-_year',
  '-_year_seem',
  'year_seem_like',
  'seem_like_perfect',
  'like_perfect_coupl',
  'perfect_coupl_love',
  'coupl_love_happi',
  'love_happi_alway',
  'happi_alway_sweet',
  'alway_sweet_thing',
  'sweet_thing_etc',
  'thing_etc_alway',
  'etc_alway_joke',
  'alway_joke_relationship',
  'joke_relationship_goal',
  'relationship_goal_everyon',
  'goal_everyon_shock',
  'everyon_shock_kayley',
  'shock_kayley_call',
  'kayley_call_us',
  'call_us_last',
  'us_last_week',
  'last_week_frantic',
  'week_frantic_ask',
  'frantic_ask_knew',
  'ask_knew_kalen',
  'knew_kalen_come',
  'kalen_come_home',
  'come_home_work',
  'home_work_day',
  'work_day_warn',
  'day_warn_noth',
  'warn_noth_know',
  'noth_know_went',
  'know_went_coupl',
  'went_coupl_day',
  'coupl_day_ago',
  'day_ago_kayley',
  'ago_kayley_make',
  'kayley_make_post',
  'make_post_wed',
  'post_wed_still',
  'wed_still_go',
  'still_go_un-wed',
  'go_un-wed_partyrecept',
  'un-wed_partyrecept_late',
  'partyrecept_late_get',
  'late_get_refund',
  'get_refund_immedi',
  'refund_immedi_kalen',
  'immedi_kalen_start',
  'kalen_start_messag',
  'start_messag_us',
  'messag_us_upset',
  'us_upset_ask',
  'upset_ask_go',
  'ask_go_appar',
  'go_appar_go',
  'appar_go_someth',
  'go_someth_want',
  'someth_want_stay',
  'want_stay_togeth',
  'stay_togeth_kayley',
  'togeth_kayley_broke',
  'kayley_broke_instead',
  'broke_instead_devast',
  'instead_devast_furiou',
  'devast_furiou_think',
  'furiou_think_parti',
  'think_parti_hard',
  'parti_hard_day',
  'hard_day_need',
  'day_need_support',
  'need_support_friend',
  'support_friend_split',
  'friend_split_way',
  'split_way_see',
  'way_see_alreadi',
  'see_alreadi_took',
  'alreadi_took_time',
  'took_time_wed',
  'time_wed_cabin',
  'wed_cabin_alreadi',
  'cabin_alreadi_book',
  'alreadi_book_know',
  'book_know_get',
  'know_get_refund',
  'get_refund_alreadi',
  'refund_alreadi_bought',
  'alreadi_bought_new',
  'bought_new_cloth',
  'new_cloth_wed',
  'cloth_wed_look',
  'wed_look_forward',
  'look_forward_romant',
  'forward_romant_weekend',
  'romant_weekend_away',
  'weekend_away_mountain',
  'away_mountain_suck',
  'mountain_suck_kalen',
  'suck_kalen_heartbroken',
  'kalen_heartbroken_kind',
  'heartbroken_kind_brought',
  'kind_brought_plu',
  'brought_plu_kayley',
  'plu_kayley_upgrad',
  'kayley_upgrad_cash',
  'upgrad_cash_bar',
  'cash_bar_open',
  'bar_open_bar',
  'open_bar_friend',
  'bar_friend_think',
  'friend_think_sinc',
  'think_sinc_friend',
  'sinc_friend_first',
  'friend_first_go',
  'first_go_hard',
  'go_hard_time',
  'hard_time_even',
  'time_even_dumbass',
  'even_dumbass_fault',
  'dumbass_fault_well',
  'fault_well_respons',
  'well_respons_harm',
  'respons_harm_parti',
  'harm_parti_drink',
  'parti_drink_say',
  'drink_say_use',
  'say_use_time',
  'use_time_someth',
  'time_someth_nice',
  'someth_nice_instead'],
 ['brother',
  'wife',
  'live',
  'mom',
  'hous',
  'mom',
  'tend',
  'get',
  'involv',
  'marriag',
  'constantli',
  'brother',
  'let',
  'sil',
  'alway',
  'complain',
  'mom',
  'steamrol',
  'decis',
  'violat',
  'privaci',
  'sil',
  'got',
  'pregnant',
  'mom',
  'got',
  'wors',
  'went',
  'brought',
  'whole',
  'nurseri',
  'put',
  'room',
  'despit',
  'sil',
  'one',
  'room',
  'recent',
  'conflict',
  'mom',
  'push',
  'deliveri',
  'room',
  'sil',
  'say',
  'brother',
  'side',
  'mom',
  'make',
  'promis',
  'keep',
  'happi',
  'last',
  'week',
  'gather',
  'mom',
  'hous',
  'brother',
  'birthday',
  'friend',
  'came',
  'ask',
  'sil',
  'dinner',
  'tabl',
  'brother',
  'nonchantli',
  'said',
  'princess',
  'act',
  'spoil',
  'immatur',
  'everyth',
  'shock',
  'hurt',
  'behalf',
  'respond',
  'actuallysh',
  'probabl',
  'upset',
  'realiz',
  'grade',
  'mama',
  'boy',
  'readi',
  'whatev',
  'mom',
  'say',
  'ignor',
  'wife',
  'wish',
  'brief',
  'silenc',
  'friend',
  'stare',
  'start',
  'argu',
  'disrespect',
  'told',
  'husband',
  'say',
  'someth',
  'husband',
  'said',
  'mind',
  'meim',
  'bystand',
  '--',
  'sitter',
  'dinner',
  'got',
  'awkward',
  'brother',
  'friend',
  'left',
  'earli',
  'went',
  'say',
  'embarrasse',
  'friend',
  'ruin',
  'birthday',
  'dinner',
  'decid',
  'go',
  'home',
  'caus',
  'kept',
  'yell',
  'mom',
  'call',
  'demand',
  'apolog',
  'rude',
  'thing',
  'said',
  'dinner',
  'refus',
  'aita',
  'brother_wife',
  'wife_live',
  'live_mom',
  'mom_hous',
  'hous_mom',
  'mom_tend',
  'tend_get',
  'get_involv',
  'involv_marriag',
  'marriag_constantli',
  'constantli_brother',
  'brother_let',
  'let_sil',
  'sil_alway',
  'alway_complain',
  'complain_mom',
  'mom_steamrol',
  'steamrol_decis',
  'decis_violat',
  'violat_privaci',
  'privaci_sil',
  'sil_got',
  'got_pregnant',
  'pregnant_mom',
  'mom_got',
  'got_wors',
  'wors_went',
  'went_brought',
  'brought_whole',
  'whole_nurseri',
  'nurseri_put',
  'put_room',
  'room_despit',
  'despit_sil',
  'sil_one',
  'one_room',
  'room_recent',
  'recent_conflict',
  'conflict_mom',
  'mom_push',
  'push_deliveri',
  'deliveri_room',
  'room_sil',
  'sil_say',
  'say_brother',
  'brother_side',
  'side_mom',
  'mom_make',
  'make_promis',
  'promis_keep',
  'keep_happi',
  'happi_last',
  'last_week',
  'week_gather',
  'gather_mom',
  'mom_hous',
  'hous_brother',
  'brother_birthday',
  'birthday_friend',
  'friend_came',
  'came_ask',
  'ask_sil',
  'sil_dinner',
  'dinner_tabl',
  'tabl_brother',
  'brother_nonchantli',
  'nonchantli_said',
  'said_princess',
  'princess_act',
  'act_spoil',
  'spoil_immatur',
  'immatur_everyth',
  'everyth_shock',
  'shock_hurt',
  'hurt_behalf',
  'behalf_respond',
  'respond_actuallysh',
  'actuallysh_probabl',
  'probabl_upset',
  'upset_realiz',
  'realiz_grade',
  'grade_mama',
  'mama_boy',
  'boy_readi',
  'readi_whatev',
  'whatev_mom',
  'mom_say',
  'say_ignor',
  'ignor_wife',
  'wife_wish',
  'wish_brief',
  'brief_silenc',
  'silenc_friend',
  'friend_stare',
  'stare_start',
  'start_argu',
  'argu_disrespect',
  'disrespect_told',
  'told_husband',
  'husband_say',
  'say_someth',
  'someth_husband',
  'husband_said',
  'said_mind',
  'mind_meim',
  'meim_bystand',
  'bystand_--',
  '--_sitter',
  'sitter_dinner',
  'dinner_got',
  'got_awkward',
  'awkward_brother',
  'brother_friend',
  'friend_left',
  'left_earli',
  'earli_went',
  'went_say',
  'say_embarrasse',
  'embarrasse_friend',
  'friend_ruin',
  'ruin_birthday',
  'birthday_dinner',
  'dinner_decid',
  'decid_go',
  'go_home',
  'home_caus',
  'caus_kept',
  'kept_yell',
  'yell_mom',
  'mom_call',
  'call_demand',
  'demand_apolog',
  'apolog_rude',
  'rude_thing',
  'thing_said',
  'said_dinner',
  'dinner_refus',
  'refus_aita',
  'brother_wife_live',
  'wife_live_mom',
  'live_mom_hous',
  'mom_hous_mom',
  'hous_mom_tend',
  'mom_tend_get',
  'tend_get_involv',
  'get_involv_marriag',
  'involv_marriag_constantli',
  'marriag_constantli_brother',
  'constantli_brother_let',
  'brother_let_sil',
  'let_sil_alway',
  'sil_alway_complain',
  'alway_complain_mom',
  'complain_mom_steamrol',
  'mom_steamrol_decis',
  'steamrol_decis_violat',
  'decis_violat_privaci',
  'violat_privaci_sil',
  'privaci_sil_got',
  'sil_got_pregnant',
  'got_pregnant_mom',
  'pregnant_mom_got',
  'mom_got_wors',
  'got_wors_went',
  'wors_went_brought',
  'went_brought_whole',
  'brought_whole_nurseri',
  'whole_nurseri_put',
  'nurseri_put_room',
  'put_room_despit',
  'room_despit_sil',
  'despit_sil_one',
  'sil_one_room',
  'one_room_recent',
  'room_recent_conflict',
  'recent_conflict_mom',
  'conflict_mom_push',
  'mom_push_deliveri',
  'push_deliveri_room',
  'deliveri_room_sil',
  'room_sil_say',
  'sil_say_brother',
  'say_brother_side',
  'brother_side_mom',
  'side_mom_make',
  'mom_make_promis',
  'make_promis_keep',
  'promis_keep_happi',
  'keep_happi_last',
  'happi_last_week',
  'last_week_gather',
  'week_gather_mom',
  'gather_mom_hous',
  'mom_hous_brother',
  'hous_brother_birthday',
  'brother_birthday_friend',
  'birthday_friend_came',
  'friend_came_ask',
  'came_ask_sil',
  'ask_sil_dinner',
  'sil_dinner_tabl',
  'dinner_tabl_brother',
  'tabl_brother_nonchantli',
  'brother_nonchantli_said',
  'nonchantli_said_princess',
  'said_princess_act',
  'princess_act_spoil',
  'act_spoil_immatur',
  'spoil_immatur_everyth',
  'immatur_everyth_shock',
  'everyth_shock_hurt',
  'shock_hurt_behalf',
  'hurt_behalf_respond',
  'behalf_respond_actuallysh',
  'respond_actuallysh_probabl',
  'actuallysh_probabl_upset',
  'probabl_upset_realiz',
  'upset_realiz_grade',
  'realiz_grade_mama',
  'grade_mama_boy',
  'mama_boy_readi',
  'boy_readi_whatev',
  'readi_whatev_mom',
  'whatev_mom_say',
  'mom_say_ignor',
  'say_ignor_wife',
  'ignor_wife_wish',
  'wife_wish_brief',
  'wish_brief_silenc',
  'brief_silenc_friend',
  'silenc_friend_stare',
  'friend_stare_start',
  'stare_start_argu',
  'start_argu_disrespect',
  'argu_disrespect_told',
  'disrespect_told_husband',
  'told_husband_say',
  'husband_say_someth',
  'say_someth_husband',
  'someth_husband_said',
  'husband_said_mind',
  'said_mind_meim',
  'mind_meim_bystand',
  'meim_bystand_--',
  'bystand_--_sitter',
  '--_sitter_dinner',
  'sitter_dinner_got',
  'dinner_got_awkward',
  'got_awkward_brother',
  'awkward_brother_friend',
  'brother_friend_left',
  'friend_left_earli',
  'left_earli_went',
  'earli_went_say',
  'went_say_embarrasse',
  'say_embarrasse_friend',
  'embarrasse_friend_ruin',
  'friend_ruin_birthday',
  'ruin_birthday_dinner',
  'birthday_dinner_decid',
  'dinner_decid_go',
  'decid_go_home',
  'go_home_caus',
  'home_caus_kept',
  'caus_kept_yell',
  'kept_yell_mom',
  'yell_mom_call',
  'mom_call_demand',
  'call_demand_apolog',
  'demand_apolog_rude',
  'apolog_rude_thing',
  'rude_thing_said',
  'thing_said_dinner',
  'said_dinner_refus',
  'dinner_refus_aita'],
 ['hey',
  'yall',
  'husband',
  'wan',
  'na',
  'thank',
  'everyon',
  'overwhelm',
  'amount',
  'support',
  'love',
  'updat',
  'peopl',
  'ask',
  'mom',
  'support',
  'husband',
  '&',
  'relationship',
  'agre',
  'gave',
  'aunt',
  '&',
  'uncl',
  'chanc',
  'apolog',
  'could',
  'tell',
  'dad',
  'tell',
  'whole',
  'stori',
  'evict',
  'press',
  'mom',
  'found',
  'truth',
  'day',
  'ago',
  'ive',
  'hard',
  'time',
  'day',
  'told',
  'dad',
  'reach',
  'aunt',
  '&',
  'uncl',
  'show',
  'remors',
  'said',
  'want',
  'kid',
  '*',
  'ggot',
  'us',
  'yeah',
  'realli',
  'said',
  'ask',
  'would',
  'invit',
  'us',
  'stay',
  'truli',
  'felt',
  'get',
  'bad',
  'one',
  'thing',
  'live',
  'vermont',
  'gay',
  'anoth',
  'thing',
  'visit',
  'hometown',
  'throw',
  'lifestyl',
  'everyon',
  'face',
  'shack',
  'motel',
  'local',
  'motel',
  'owner',
  'whose',
  'famili',
  'childhood',
  'friend',
  'mom',
  'gossip',
  'us',
  'everi',
  'time',
  'nice',
  'face',
  'behind',
  'back',
  'differ',
  'stori',
  'everyon',
  'know',
  'would',
  'becom',
  'talk',
  'town',
  'stay',
  'idea',
  'toler',
  'never',
  'stay',
  'long',
  'visit',
  'could',
  'sens',
  'someth',
  'push',
  'feel',
  'asid',
  'face',
  'nice',
  'peopl',
  'know',
  'claim',
  'love',
  'mom',
  'said',
  'aunt',
  '&',
  'uncl',
  'tri',
  'save',
  'face',
  'rest',
  'town',
  '&',
  'tri',
  'control',
  'behavior',
  'time',
  'evict',
  'dad',
  'ask',
  'mom',
  'reach',
  'gossip',
  'friend',
  'accord',
  'friend',
  '&',
  'major',
  'part',
  'shit',
  'talk',
  'one',
  'ever',
  'said',
  'anyth',
  'face',
  'feel',
  'disgust',
  'betray',
  'naiv',
  'enrag',
  'dad',
  'decid',
  'evict',
  'told',
  'freeload',
  'somewher',
  'els',
  '&',
  'never',
  'accept',
  'anyon',
  'famili',
  'would',
  'treat',
  'son',
  'way',
  'mom',
  'say',
  'gone',
  'nc',
  'mom',
  'told',
  'think',
  'brother',
  'husband',
  '&',
  'pride',
  'joy',
  'feel',
  'proud',
  'dad',
  'like',
  'mention',
  'hero',
  'ice',
  'cake',
  'alway',
  'support',
  'told',
  'came',
  'bi',
  'would',
  'alway',
  'back',
  'kept',
  'promis',
  'dad',
  'know',
  'internet',
  'famou',
  'still',
  'know',
  'break',
  'lol',
  'humbl',
  'guy',
  'dad',
  'use',
  'social',
  'media',
  'safe',
  'bro',
  'know',
  'post',
  'weve',
  'tri',
  'figur',
  'plan',
  'action',
  'weve',
  'contact',
  'journalist',
  'weve',
  'gotten',
  'mani',
  'love',
  'messag',
  'end',
  'day',
  'im',
  'averag',
  'guy',
  'still',
  'tri',
  'process',
  'fact',
  'got',
  'betray',
  'scale',
  'cant',
  'even',
  'comprehend',
  'say',
  'ah',
  'let',
  'cousin',
  'go',
  'homeless',
  'confid',
  'say',
  'parent',
  'thank',
  'hey_yall',
  'yall_husband',
  'husband_wan',
  'wan_na',
  'na_thank',
  'thank_everyon',
  'everyon_overwhelm',
  'overwhelm_amount',
  'amount_support',
  'support_love',
  'love_updat',
  'updat_peopl',
  'peopl_ask',
  'ask_mom',
  'mom_support',
  'support_husband',
  'husband_&',
  '&_relationship',
  'relationship_agre',
  'agre_gave',
  'gave_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_chanc',
  'chanc_apolog',
  'apolog_could',
  'could_tell',
  'tell_dad',
  'dad_tell',
  'tell_whole',
  'whole_stori',
  'stori_evict',
  'evict_press',
  'press_mom',
  'mom_found',
  'found_truth',
  'truth_day',
  'day_ago',
  'ago_ive',
  'ive_hard',
  'hard_time',
  'time_day',
  'day_told',
  'told_dad',
  'dad_reach',
  'reach_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_show',
  'show_remors',
  'remors_said',
  'said_want',
  'want_kid',
  'kid_*',
  '*_ggot',
  'ggot_us',
  'us_yeah',
  'yeah_realli',
  'realli_said',
  'said_ask',
  'ask_would',
  'would_invit',
  'invit_us',
  'us_stay',
  'stay_truli',
  'truli_felt',
  'felt_get',
  'get_bad',
  'bad_one',
  'one_thing',
  'thing_live',
  'live_vermont',
  'vermont_gay',
  'gay_anoth',
  'anoth_thing',
  'thing_visit',
  'visit_hometown',
  'hometown_throw',
  'throw_lifestyl',
  'lifestyl_everyon',
  'everyon_face',
  'face_shack',
  'shack_motel',
  'motel_local',
  'local_motel',
  'motel_owner',
  'owner_whose',
  'whose_famili',
  'famili_childhood',
  'childhood_friend',
  'friend_mom',
  'mom_gossip',
  'gossip_us',
  'us_everi',
  'everi_time',
  'time_nice',
  'nice_face',
  'face_behind',
  'behind_back',
  'back_differ',
  'differ_stori',
  'stori_everyon',
  'everyon_know',
  'know_would',
  'would_becom',
  'becom_talk',
  'talk_town',
  'town_stay',
  'stay_idea',
  'idea_toler',
  'toler_never',
  'never_stay',
  'stay_long',
  'long_visit',
  'visit_could',
  'could_sens',
  'sens_someth',
  'someth_push',
  'push_feel',
  'feel_asid',
  'asid_face',
  'face_nice',
  'nice_peopl',
  'peopl_know',
  'know_claim',
  'claim_love',
  'love_mom',
  'mom_said',
  'said_aunt',
  'aunt_&',
  '&_uncl',
  'uncl_tri',
  'tri_save',
  'save_face',
  'face_rest',
  'rest_town',
  'town_&',
  '&_tri',
  'tri_control',
  'control_behavior',
  'behavior_time',
  'time_evict',
  'evict_dad',
  'dad_ask',
  'ask_mom',
  'mom_reach',
  'reach_gossip',
  'gossip_friend',
  'friend_accord',
  'accord_friend',
  'friend_&',
  '&_major',
  'major_part',
  'part_shit',
  'shit_talk',
  'talk_one',
  'one_ever',
  'ever_said',
  'said_anyth',
  'anyth_face',
  'face_feel',
  'feel_disgust',
  'disgust_betray',
  'betray_naiv',
  'naiv_enrag',
  'enrag_dad',
  'dad_decid',
  'decid_evict',
  'evict_told',
  'told_freeload',
  'freeload_somewher',
  'somewher_els',
  'els_&',
  '&_never',
  'never_accept',
  'accept_anyon',
  'anyon_famili',
  'famili_would',
  'would_treat',
  'treat_son',
  'son_way',
  'way_mom',
  'mom_say',
  'say_gone',
  'gone_nc',
  'nc_mom',
  'mom_told',
  'told_think',
  'think_brother',
  'brother_husband',
  'husband_&',
  '&_pride',
  'pride_joy',
  'joy_feel',
  'feel_proud',
  'proud_dad',
  'dad_like',
  'like_mention',
  'mention_hero',
  'hero_ice',
  'ice_cake',
  'cake_alway',
  'alway_support',
  'support_told',
  'told_came',
  'came_bi',
  'bi_would',
  'would_alway',
  'alway_back',
  'back_kept',
  'kept_promis',
  'promis_dad',
  'dad_know',
  'know_internet',
  'internet_famou',
  'famou_still',
  'still_know',
  'know_break',
  'break_lol',
  'lol_humbl',
  'humbl_guy',
  'guy_dad',
  'dad_use',
  'use_social',
  'social_media',
  'media_safe',
  'safe_bro',
  'bro_know',
  'know_post',
  'post_weve',
  'weve_tri',
  'tri_figur',
  'figur_plan',
  'plan_action',
  'action_weve',
  'weve_contact',
  'contact_journalist',
  'journalist_weve',
  'weve_gotten',
  'gotten_mani',
  'mani_love',
  'love_messag',
  'messag_end',
  'end_day',
  'day_im',
  'im_averag',
  'averag_guy',
  'guy_still',
  'still_tri',
  'tri_process',
  'process_fact',
  'fact_got',
  'got_betray',
  'betray_scale',
  'scale_cant',
  'cant_even',
  'even_comprehend',
  'comprehend_say',
  'say_ah',
  'ah_let',
  'let_cousin',
  'cousin_go',
  'go_homeless',
  'homeless_confid',
  'confid_say',
  'say_parent',
  'parent_thank',
  'hey_yall_husband',
  'yall_husband_wan',
  'husband_wan_na',
  'wan_na_thank',
  'na_thank_everyon',
  'thank_everyon_overwhelm',
  'everyon_overwhelm_amount',
  'overwhelm_amount_support',
  'amount_support_love',
  'support_love_updat',
  'love_updat_peopl',
  'updat_peopl_ask',
  'peopl_ask_mom',
  'ask_mom_support',
  'mom_support_husband',
  'support_husband_&',
  'husband_&_relationship',
  '&_relationship_agre',
  'relationship_agre_gave',
  'agre_gave_aunt',
  'gave_aunt_&',
  'aunt_&_uncl',
  '&_uncl_chanc',
  'uncl_chanc_apolog',
  'chanc_apolog_could',
  'apolog_could_tell',
  'could_tell_dad',
  'tell_dad_tell',
  'dad_tell_whole',
  'tell_whole_stori',
  'whole_stori_evict',
  'stori_evict_press',
  'evict_press_mom',
  'press_mom_found',
  'mom_found_truth',
  'found_truth_day',
  'truth_day_ago',
  'day_ago_ive',
  'ago_ive_hard',
  'ive_hard_time',
  'hard_time_day',
  'time_day_told',
  'day_told_dad',
  'told_dad_reach',
  'dad_reach_aunt',
  'reach_aunt_&',
  'aunt_&_uncl',
  '&_uncl_show',
  'uncl_show_remors',
  'show_remors_said',
  'remors_said_want',
  'said_want_kid',
  'want_kid_*',
  'kid_*_ggot',
  '*_ggot_us',
  'ggot_us_yeah',
  'us_yeah_realli',
  'yeah_realli_said',
  'realli_said_ask',
  'said_ask_would',
  'ask_would_invit',
  'would_invit_us',
  'invit_us_stay',
  'us_stay_truli',
  'stay_truli_felt',
  'truli_felt_get',
  'felt_get_bad',
  'get_bad_one',
  'bad_one_thing',
  'one_thing_live',
  'thing_live_vermont',
  'live_vermont_gay',
  'vermont_gay_anoth',
  'gay_anoth_thing',
  'anoth_thing_visit',
  'thing_visit_hometown',
  'visit_hometown_throw',
  'hometown_throw_lifestyl',
  'throw_lifestyl_everyon',
  'lifestyl_everyon_face',
  'everyon_face_shack',
  'face_shack_motel',
  'shack_motel_local',
  'motel_local_motel',
  'local_motel_owner',
  'motel_owner_whose',
  'owner_whose_famili',
  'whose_famili_childhood',
  'famili_childhood_friend',
  'childhood_friend_mom',
  'friend_mom_gossip',
  'mom_gossip_us',
  'gossip_us_everi',
  'us_everi_time',
  'everi_time_nice',
  'time_nice_face',
  'nice_face_behind',
  'face_behind_back',
  'behind_back_differ',
  'back_differ_stori',
  'differ_stori_everyon',
  'stori_everyon_know',
  'everyon_know_would',
  'know_would_becom',
  'would_becom_talk',
  'becom_talk_town',
  'talk_town_stay',
  'town_stay_idea',
  'stay_idea_toler',
  'idea_toler_never',
  'toler_never_stay',
  'never_stay_long',
  'stay_long_visit',
  'long_visit_could',
  'visit_could_sens',
  'could_sens_someth',
  'sens_someth_push',
  'someth_push_feel',
  'push_feel_asid',
  'feel_asid_face',
  'asid_face_nice',
  'face_nice_peopl',
  'nice_peopl_know',
  'peopl_know_claim',
  'know_claim_love',
  'claim_love_mom',
  'love_mom_said',
  'mom_said_aunt',
  'said_aunt_&',
  'aunt_&_uncl',
  '&_uncl_tri',
  'uncl_tri_save',
  'tri_save_face',
  'save_face_rest',
  'face_rest_town',
  'rest_town_&',
  'town_&_tri',
  '&_tri_control',
  'tri_control_behavior',
  'control_behavior_time',
  'behavior_time_evict',
  'time_evict_dad',
  'evict_dad_ask',
  'dad_ask_mom',
  'ask_mom_reach',
  'mom_reach_gossip',
  'reach_gossip_friend',
  'gossip_friend_accord',
  'friend_accord_friend',
  'accord_friend_&',
  'friend_&_major',
  '&_major_part',
  'major_part_shit',
  'part_shit_talk',
  'shit_talk_one',
  'talk_one_ever',
  'one_ever_said',
  'ever_said_anyth',
  'said_anyth_face',
  'anyth_face_feel',
  'face_feel_disgust',
  'feel_disgust_betray',
  'disgust_betray_naiv',
  'betray_naiv_enrag',
  'naiv_enrag_dad',
  'enrag_dad_decid',
  'dad_decid_evict',
  'decid_evict_told',
  'evict_told_freeload',
  'told_freeload_somewher',
  'freeload_somewher_els',
  'somewher_els_&',
  'els_&_never',
  '&_never_accept',
  'never_accept_anyon',
  'accept_anyon_famili',
  'anyon_famili_would',
  'famili_would_treat',
  'would_treat_son',
  'treat_son_way',
  'son_way_mom',
  'way_mom_say',
  'mom_say_gone',
  'say_gone_nc',
  'gone_nc_mom',
  'nc_mom_told',
  'mom_told_think',
  'told_think_brother',
  'think_brother_husband',
  'brother_husband_&',
  'husband_&_pride',
  '&_pride_joy',
  'pride_joy_feel',
  'joy_feel_proud',
  'feel_proud_dad',
  'proud_dad_like',
  'dad_like_mention',
  'like_mention_hero',
  'mention_hero_ice',
  'hero_ice_cake',
  'ice_cake_alway',
  'cake_alway_support',
  'alway_support_told',
  'support_told_came',
  'told_came_bi',
  'came_bi_would',
  'bi_would_alway',
  'would_alway_back',
  'alway_back_kept',
  'back_kept_promis',
  'kept_promis_dad',
  'promis_dad_know',
  'dad_know_internet',
  'know_internet_famou',
  'internet_famou_still',
  'famou_still_know',
  'still_know_break',
  'know_break_lol',
  'break_lol_humbl',
  'lol_humbl_guy',
  'humbl_guy_dad',
  'guy_dad_use',
  'dad_use_social',
  'use_social_media',
  'social_media_safe',
  'media_safe_bro',
  'safe_bro_know',
  'bro_know_post',
  'know_post_weve',
  'post_weve_tri',
  'weve_tri_figur',
  'tri_figur_plan',
  'figur_plan_action',
  'plan_action_weve',
  'action_weve_contact',
  'weve_contact_journalist',
  'contact_journalist_weve',
  'journalist_weve_gotten',
  'weve_gotten_mani',
  'gotten_mani_love',
  'mani_love_messag',
  'love_messag_end',
  'messag_end_day',
  'end_day_im',
  'day_im_averag',
  'im_averag_guy',
  'averag_guy_still',
  'guy_still_tri',
  'still_tri_process',
  'tri_process_fact',
  'process_fact_got',
  'fact_got_betray',
  'got_betray_scale',
  'betray_scale_cant',
  'scale_cant_even',
  'cant_even_comprehend',
  'even_comprehend_say',
  'comprehend_say_ah',
  'say_ah_let',
  'ah_let_cousin',
  'let_cousin_go',
  'cousin_go_homeless',
  'go_homeless_confid',
  'homeless_confid_say',
  'confid_say_parent',
  'say_parent_thank'],
 ['updat',
  'thank',
  'everyon',
  'im',
  'sorri',
  'cant',
  'repli',
  'mani',
  'first',
  'point',
  'hate',
  'kid',
  'would',
  'want',
  'hurt',
  'wish',
  'exact',
  'opposit',
  'two',
  'unblock',
  'famili',
  'sent',
  'pretti',
  'long',
  'msg',
  'calmli',
  'explain',
  'happen',
  'concern',
  'also',
  'includ',
  'link',
  'child',
  'fall',
  'hors',
  'size',
  'mine',
  'explain',
  'want',
  'kid',
  'face',
  'injuri',
  'disabilityor',
  'death',
  'respons',
  'posit',
  'third',
  'reach',
  'famili',
  'birthday',
  'girl',
  'explain',
  'happen',
  'mortifi',
  'idea',
  'given',
  'permiss',
  'set',
  'meet-the-horsey',
  'weekend',
  'landown',
  'permiss',
  'set',
  'arena',
  'temp',
  'fenc',
  'etc',
  'know',
  'also',
  'two',
  'poni',
  'hire',
  'place',
  'poni',
  'ride',
  'friend',
  'long',
  'stori',
  'short',
  'hors',
  'year',
  'rescu',
  'knackeri',
  'month',
  'old',
  'foal',
  'stori',
  'keep',
  'huge',
  'field',
  'hors',
  'absolut',
  'appl',
  'eye',
  'mind',
  'peopl',
  'say',
  'fenc',
  'live',
  'suburb',
  'obvious',
  'go',
  'happen',
  'hate',
  'mother',
  'keep',
  'offer',
  'friend',
  'grandkid',
  'poni',
  'ride',
  'neither',
  'hors',
  'kid',
  'uhpeopl',
  'im',
  'sick',
  'show',
  'properti',
  'met',
  'gaggl',
  'kid',
  'expect',
  'poni',
  'ride',
  'ive',
  'laid',
  'law',
  'told',
  'mum',
  'explod',
  'ive',
  'stay',
  'firm',
  'spoke',
  'properti',
  'owner',
  'worri',
  'mum',
  'show',
  'tri',
  'give',
  'kid',
  'poni',
  'ride',
  'without',
  'supervis',
  'agre',
  'liabil',
  'mark',
  'allow',
  'properti',
  'without',
  'yesterday',
  'call',
  'say',
  'kid',
  'go',
  'rocker',
  'allow',
  'properti',
  'spoke',
  'phone',
  'told',
  'bugger',
  'never',
  'tri',
  'rubbish',
  'sinc',
  'ive',
  'block',
  'famili',
  'omg',
  'fli',
  'monkey',
  'scream',
  'im',
  'privledg',
  'selfish',
  'child',
  'hate',
  'monster',
  'think',
  'wrong',
  'start',
  'realli',
  'get',
  'ah',
  'updat_thank',
  'thank_everyon',
  'everyon_im',
  'im_sorri',
  'sorri_cant',
  'cant_repli',
  'repli_mani',
  'mani_first',
  'first_point',
  'point_hate',
  'hate_kid',
  'kid_would',
  'would_want',
  'want_hurt',
  'hurt_wish',
  'wish_exact',
  'exact_opposit',
  'opposit_two',
  'two_unblock',
  'unblock_famili',
  'famili_sent',
  'sent_pretti',
  'pretti_long',
  'long_msg',
  'msg_calmli',
  'calmli_explain',
  'explain_happen',
  'happen_concern',
  'concern_also',
  'also_includ',
  'includ_link',
  'link_child',
  'child_fall',
  'fall_hors',
  'hors_size',
  'size_mine',
  'mine_explain',
  'explain_want',
  'want_kid',
  'kid_face',
  'face_injuri',
  'injuri_disabilityor',
  'disabilityor_death',
  'death_respons',
  'respons_posit',
  'posit_third',
  'third_reach',
  'reach_famili',
  'famili_birthday',
  'birthday_girl',
  'girl_explain',
  'explain_happen',
  'happen_mortifi',
  'mortifi_idea',
  'idea_given',
  'given_permiss',
  'permiss_set',
  'set_meet-the-horsey',
  'meet-the-horsey_weekend',
  'weekend_landown',
  'landown_permiss',
  'permiss_set',
  'set_arena',
  'arena_temp',
  'temp_fenc',
  'fenc_etc',
  'etc_know',
  'know_also',
  'also_two',
  'two_poni',
  'poni_hire',
  'hire_place',
  'place_poni',
  'poni_ride',
  'ride_friend',
  'friend_long',
  'long_stori',
  'stori_short',
  'short_hors',
  'hors_year',
  'year_rescu',
  'rescu_knackeri',
  'knackeri_month',
  'month_old',
  'old_foal',
  'foal_stori',
  'stori_keep',
  'keep_huge',
  'huge_field',
  'field_hors',
  'hors_absolut',
  'absolut_appl',
  'appl_eye',
  'eye_mind',
  'mind_peopl',
  'peopl_say',
  'say_fenc',
  'fenc_live',
  'live_suburb',
  'suburb_obvious',
  'obvious_go',
  'go_happen',
  'happen_hate',
  'hate_mother',
  'mother_keep',
  'keep_offer',
  'offer_friend',
  'friend_grandkid',
  'grandkid_poni',
  'poni_ride',
  'ride_neither',
  'neither_hors',
  'hors_kid',
  'kid_uhpeopl',
  'uhpeopl_im',
  'im_sick',
  'sick_show',
  'show_properti',
  'properti_met',
  'met_gaggl',
  'gaggl_kid',
  'kid_expect',
  'expect_poni',
  'poni_ride',
  'ride_ive',
  'ive_laid',
  'laid_law',
  'law_told',
  'told_mum',
  'mum_explod',
  'explod_ive',
  'ive_stay',
  'stay_firm',
  'firm_spoke',
  'spoke_properti',
  'properti_owner',
  'owner_worri',
  'worri_mum',
  'mum_show',
  'show_tri',
  'tri_give',
  'give_kid',
  'kid_poni',
  'poni_ride',
  'ride_without',
  'without_supervis',
  'supervis_agre',
  'agre_liabil',
  'liabil_mark',
  'mark_allow',
  'allow_properti',
  'properti_without',
  'without_yesterday',
  'yesterday_call',
  'call_say',
  'say_kid',
  'kid_go',
  'go_rocker',
  'rocker_allow',
  'allow_properti',
  'properti_spoke',
  'spoke_phone',
  'phone_told',
  'told_bugger',
  'bugger_never',
  'never_tri',
  'tri_rubbish',
  'rubbish_sinc',
  'sinc_ive',
  'ive_block',
  'block_famili',
  'famili_omg',
  'omg_fli',
  'fli_monkey',
  'monkey_scream',
  'scream_im',
  'im_privledg',
  'privledg_selfish',
  'selfish_child',
  'child_hate',
  'hate_monster',
  'monster_think',
  'think_wrong',
  'wrong_start',
  'start_realli',
  'realli_get',
  'get_ah',
  'updat_thank_everyon',
  'thank_everyon_im',
  'everyon_im_sorri',
  'im_sorri_cant',
  'sorri_cant_repli',
  'cant_repli_mani',
  'repli_mani_first',
  'mani_first_point',
  'first_point_hate',
  'point_hate_kid',
  'hate_kid_would',
  'kid_would_want',
  'would_want_hurt',
  'want_hurt_wish',
  'hurt_wish_exact',
  'wish_exact_opposit',
  'exact_opposit_two',
  'opposit_two_unblock',
  'two_unblock_famili',
  'unblock_famili_sent',
  'famili_sent_pretti',
  'sent_pretti_long',
  'pretti_long_msg',
  'long_msg_calmli',
  'msg_calmli_explain',
  'calmli_explain_happen',
  'explain_happen_concern',
  'happen_concern_also',
  'concern_also_includ',
  'also_includ_link',
  'includ_link_child',
  'link_child_fall',
  'child_fall_hors',
  'fall_hors_size',
  'hors_size_mine',
  'size_mine_explain',
  'mine_explain_want',
  'explain_want_kid',
  'want_kid_face',
  'kid_face_injuri',
  'face_injuri_disabilityor',
  'injuri_disabilityor_death',
  'disabilityor_death_respons',
  'death_respons_posit',
  'respons_posit_third',
  'posit_third_reach',
  'third_reach_famili',
  'reach_famili_birthday',
  'famili_birthday_girl',
  'birthday_girl_explain',
  'girl_explain_happen',
  'explain_happen_mortifi',
  'happen_mortifi_idea',
  'mortifi_idea_given',
  'idea_given_permiss',
  'given_permiss_set',
  'permiss_set_meet-the-horsey',
  'set_meet-the-horsey_weekend',
  'meet-the-horsey_weekend_landown',
  'weekend_landown_permiss',
  'landown_permiss_set',
  'permiss_set_arena',
  'set_arena_temp',
  'arena_temp_fenc',
  'temp_fenc_etc',
  'fenc_etc_know',
  'etc_know_also',
  'know_also_two',
  'also_two_poni',
  'two_poni_hire',
  'poni_hire_place',
  'hire_place_poni',
  'place_poni_ride',
  'poni_ride_friend',
  'ride_friend_long',
  'friend_long_stori',
  'long_stori_short',
  'stori_short_hors',
  'short_hors_year',
  'hors_year_rescu',
  'year_rescu_knackeri',
  'rescu_knackeri_month',
  'knackeri_month_old',
  'month_old_foal',
  'old_foal_stori',
  'foal_stori_keep',
  'stori_keep_huge',
  'keep_huge_field',
  'huge_field_hors',
  'field_hors_absolut',
  'hors_absolut_appl',
  'absolut_appl_eye',
  'appl_eye_mind',
  'eye_mind_peopl',
  'mind_peopl_say',
  'peopl_say_fenc',
  'say_fenc_live',
  'fenc_live_suburb',
  'live_suburb_obvious',
  'suburb_obvious_go',
  'obvious_go_happen',
  'go_happen_hate',
  'happen_hate_mother',
  'hate_mother_keep',
  'mother_keep_offer',
  'keep_offer_friend',
  'offer_friend_grandkid',
  'friend_grandkid_poni',
  'grandkid_poni_ride',
  'poni_ride_neither',
  'ride_neither_hors',
  'neither_hors_kid',
  'hors_kid_uhpeopl',
  'kid_uhpeopl_im',
  'uhpeopl_im_sick',
  'im_sick_show',
  'sick_show_properti',
  'show_properti_met',
  'properti_met_gaggl',
  'met_gaggl_kid',
  'gaggl_kid_expect',
  'kid_expect_poni',
  'expect_poni_ride',
  'poni_ride_ive',
  'ride_ive_laid',
  'ive_laid_law',
  'laid_law_told',
  'law_told_mum',
  'told_mum_explod',
  'mum_explod_ive',
  'explod_ive_stay',
  'ive_stay_firm',
  'stay_firm_spoke',
  'firm_spoke_properti',
  'spoke_properti_owner',
  'properti_owner_worri',
  'owner_worri_mum',
  'worri_mum_show',
  'mum_show_tri',
  'show_tri_give',
  'tri_give_kid',
  'give_kid_poni',
  'kid_poni_ride',
  'poni_ride_without',
  'ride_without_supervis',
  'without_supervis_agre',
  'supervis_agre_liabil',
  'agre_liabil_mark',
  'liabil_mark_allow',
  'mark_allow_properti',
  'allow_properti_without',
  'properti_without_yesterday',
  'without_yesterday_call',
  'yesterday_call_say',
  'call_say_kid',
  'say_kid_go',
  'kid_go_rocker',
  'go_rocker_allow',
  'rocker_allow_properti',
  'allow_properti_spoke',
  'properti_spoke_phone',
  'spoke_phone_told',
  'phone_told_bugger',
  'told_bugger_never',
  'bugger_never_tri',
  'never_tri_rubbish',
  'tri_rubbish_sinc',
  'rubbish_sinc_ive',
  'sinc_ive_block',
  'ive_block_famili',
  'block_famili_omg',
  'famili_omg_fli',
  'omg_fli_monkey',
  'fli_monkey_scream',
  'monkey_scream_im',
  'scream_im_privledg',
  'im_privledg_selfish',
  'privledg_selfish_child',
  'selfish_child_hate',
  'child_hate_monster',
  'hate_monster_think',
  'monster_think_wrong',
  'think_wrong_start',
  'wrong_start_realli',
  'start_realli_get',
  'realli_get_ah'],
 ['feel',
  'like',
  'insan',
  'person',
  'make',
  'new',
  'reddit',
  'know',
  'sil',
  'follow',
  'reddit',
  'sil',
  'obsses',
  'swear',
  'god',
  'weve',
  'known',
  'year',
  'start',
  'date',
  'brother',
  'start',
  'got',
  'weird',
  'vibe',
  'ask',
  'got',
  'certain',
  'piec',
  'cloth',
  'jewelri',
  'buy',
  'exact',
  'one',
  'dye',
  'hair',
  'dye',
  'hair',
  'colour',
  'post',
  'instagram',
  'certain',
  'restaur',
  'go',
  'next',
  'day',
  'week',
  'got',
  'new',
  'hair',
  'stylist',
  'tag',
  'quick',
  'edit',
  'meant',
  'tag',
  'stylist',
  'sil',
  'instagram',
  'month',
  'later',
  'visit',
  'thank',
  'send',
  'new',
  'client',
  'guess',
  'post',
  'photo',
  'room',
  'month',
  'ago',
  'next',
  'time',
  'visit',
  'place',
  'sheet',
  'say',
  'age',
  'coincid',
  'kind',
  'thing',
  'happen',
  'time',
  'sometim',
  'ill',
  'run',
  'groceri',
  'store',
  'shell',
  'ask',
  'im',
  'pick',
  'tell',
  'say',
  'oh',
  'funni',
  'buy',
  'exact',
  'thing',
  'ive',
  'peopl',
  'tell',
  'say',
  'thought',
  'stress',
  'similar',
  'hair',
  'wish',
  'see',
  'kicker',
  'husband',
  'best',
  'friendsbusi',
  'partner',
  'live',
  'block',
  'away',
  'us',
  'ive',
  'brought',
  'husband',
  'sinc',
  'start',
  'weve',
  'talk',
  'either',
  'deni',
  'say',
  'coincid',
  'say',
  'think',
  'good',
  'tast',
  'cant',
  'help',
  'promis',
  'shell',
  'stop',
  'never',
  'husband',
  'realiz',
  'frustrat',
  'ultim',
  'say',
  'harmless',
  'sister',
  'cant',
  'cut',
  'copi',
  'day',
  'ask',
  'shampoo',
  'use',
  'refus',
  'tell',
  'knew',
  'go',
  'buy',
  'start',
  'cri',
  'husband',
  'told',
  'big',
  'deal',
  'told',
  'assur',
  'go',
  'buy',
  'curiou',
  'hair',
  'alway',
  'nice',
  'yesterday',
  'went',
  'place',
  'dinner',
  'use',
  'washroom',
  'decid',
  'check',
  'suspicion',
  'look',
  'tub',
  'saw',
  'bought',
  'shampoo',
  'frustrat',
  'brought',
  'bottl',
  'tabl',
  'front',
  'husband',
  'told',
  'allow',
  'buy',
  'shampoo',
  'shit',
  'got',
  'stop',
  'els',
  'cut',
  'husband',
  'regardless',
  'husband',
  'say',
  'never',
  'see',
  'obvious',
  'husband',
  'said',
  'embarrass',
  'start',
  'cri',
  'left',
  'may',
  'react',
  'situat',
  'make',
  'crazi',
  'friend',
  'know',
  'said',
  'overreact',
  'understand',
  'posit',
  'im',
  'constantli',
  'husband',
  'want',
  'apolog',
  'want',
  'eta',
  'forgot',
  'mention',
  'someth',
  'import',
  'block',
  'instagram',
  'account',
  'privat',
  'know',
  'secret',
  'account',
  'follow',
  'sometim',
  'mention',
  'thing',
  'ive',
  'post',
  'like',
  'went',
  'beach',
  'tell',
  'next',
  'time',
  'hung',
  'ask',
  'nice',
  'time',
  'beach',
  'ask',
  'husband',
  'told',
  'deni',
  'tell',
  'etc',
  'feel_like',
  'like_insan',
  'insan_person',
  'person_make',
  'make_new',
  'new_reddit',
  'reddit_know',
  'know_sil',
  'sil_follow',
  'follow_reddit',
  'reddit_sil',
  'sil_obsses',
  'obsses_swear',
  'swear_god',
  'god_weve',
  'weve_known',
  'known_year',
  'year_start',
  'start_date',
  'date_brother',
  'brother_start',
  'start_got',
  'got_weird',
  'weird_vibe',
  'vibe_ask',
  'ask_got',
  'got_certain',
  'certain_piec',
  'piec_cloth',
  'cloth_jewelri',
  'jewelri_buy',
  'buy_exact',
  'exact_one',
  'one_dye',
  'dye_hair',
  'hair_dye',
  'dye_hair',
  'hair_colour',
  'colour_post',
  'post_instagram',
  'instagram_certain',
  'certain_restaur',
  'restaur_go',
  'go_next',
  'next_day',
  'day_week',
  'week_got',
  'got_new',
  'new_hair',
  'hair_stylist',
  'stylist_tag',
  'tag_quick',
  'quick_edit',
  'edit_meant',
  'meant_tag',
  'tag_stylist',
  'stylist_sil',
  'sil_instagram',
  'instagram_month',
  'month_later',
  'later_visit',
  'visit_thank',
  'thank_send',
  'send_new',
  'new_client',
  'client_guess',
  'guess_post',
  'post_photo',
  'photo_room',
  'room_month',
  'month_ago',
  'ago_next',
  'next_time',
  'time_visit',
  'visit_place',
  'place_sheet',
  'sheet_say',
  'say_age',
  'age_coincid',
  'coincid_kind',
  'kind_thing',
  'thing_happen',
  'happen_time',
  'time_sometim',
  'sometim_ill',
  'ill_run',
  'run_groceri',
  'groceri_store',
  'store_shell',
  'shell_ask',
  'ask_im',
  'im_pick',
  'pick_tell',
  'tell_say',
  'say_oh',
  'oh_funni',
  'funni_buy',
  'buy_exact',
  'exact_thing',
  'thing_ive',
  'ive_peopl',
  'peopl_tell',
  'tell_say',
  'say_thought',
  'thought_stress',
  'stress_similar',
  'similar_hair',
  'hair_wish',
  'wish_see',
  'see_kicker',
  'kicker_husband',
  'husband_best',
  'best_friendsbusi',
  'friendsbusi_partner',
  'partner_live',
  'live_block',
  'block_away',
  'away_us',
  'us_ive',
  'ive_brought',
  'brought_husband',
  'husband_sinc',
  'sinc_start',
  'start_weve',
  'weve_talk',
  'talk_either',
  'either_deni',
  'deni_say',
  'say_coincid',
  'coincid_say',
  'say_think',
  'think_good',
  'good_tast',
  'tast_cant',
  'cant_help',
  'help_promis',
  'promis_shell',
  'shell_stop',
  'stop_never',
  'never_husband',
  'husband_realiz',
  'realiz_frustrat',
  'frustrat_ultim',
  'ultim_say',
  'say_harmless',
  'harmless_sister',
  'sister_cant',
  'cant_cut',
  'cut_copi',
  'copi_day',
  'day_ask',
  'ask_shampoo',
  'shampoo_use',
  'use_refus',
  'refus_tell',
  'tell_knew',
  'knew_go',
  'go_buy',
  'buy_start',
  'start_cri',
  'cri_husband',
  'husband_told',
  'told_big',
  'big_deal',
  'deal_told',
  'told_assur',
  'assur_go',
  'go_buy',
  'buy_curiou',
  'curiou_hair',
  'hair_alway',
  'alway_nice',
  'nice_yesterday',
  'yesterday_went',
  'went_place',
  'place_dinner',
  'dinner_use',
  'use_washroom',
  'washroom_decid',
  'decid_check',
  'check_suspicion',
  'suspicion_look',
  'look_tub',
  'tub_saw',
  'saw_bought',
  'bought_shampoo',
  'shampoo_frustrat',
  'frustrat_brought',
  'brought_bottl',
  'bottl_tabl',
  'tabl_front',
  'front_husband',
  'husband_told',
  'told_allow',
  'allow_buy',
  'buy_shampoo',
  'shampoo_shit',
  'shit_got',
  'got_stop',
  'stop_els',
  'els_cut',
  'cut_husband',
  'husband_regardless',
  'regardless_husband',
  'husband_say',
  'say_never',
  'never_see',
  'see_obvious',
  'obvious_husband',
  'husband_said',
  'said_embarrass',
  'embarrass_start',
  'start_cri',
  'cri_left',
  'left_may',
  'may_react',
  'react_situat',
  'situat_make',
  'make_crazi',
  'crazi_friend',
  'friend_know',
  'know_said',
  'said_overreact',
  'overreact_understand',
  'understand_posit',
  'posit_im',
  'im_constantli',
  'constantli_husband',
  'husband_want',
  'want_apolog',
  'apolog_want',
  'want_eta',
  'eta_forgot',
  'forgot_mention',
  'mention_someth',
  'someth_import',
  'import_block',
  'block_instagram',
  'instagram_account',
  'account_privat',
  'privat_know',
  'know_secret',
  'secret_account',
  'account_follow',
  'follow_sometim',
  'sometim_mention',
  'mention_thing',
  'thing_ive',
  'ive_post',
  'post_like',
  'like_went',
  'went_beach',
  'beach_tell',
  'tell_next',
  'next_time',
  'time_hung',
  'hung_ask',
  'ask_nice',
  'nice_time',
  'time_beach',
  'beach_ask',
  'ask_husband',
  'husband_told',
  'told_deni',
  'deni_tell',
  'tell_etc',
  'feel_like_insan',
  'like_insan_person',
  'insan_person_make',
  'person_make_new',
  'make_new_reddit',
  'new_reddit_know',
  'reddit_know_sil',
  'know_sil_follow',
  'sil_follow_reddit',
  'follow_reddit_sil',
  'reddit_sil_obsses',
  'sil_obsses_swear',
  'obsses_swear_god',
  'swear_god_weve',
  'god_weve_known',
  'weve_known_year',
  'known_year_start',
  'year_start_date',
  'start_date_brother',
  'date_brother_start',
  'brother_start_got',
  'start_got_weird',
  'got_weird_vibe',
  'weird_vibe_ask',
  'vibe_ask_got',
  'ask_got_certain',
  'got_certain_piec',
  'certain_piec_cloth',
  'piec_cloth_jewelri',
  'cloth_jewelri_buy',
  'jewelri_buy_exact',
  'buy_exact_one',
  'exact_one_dye',
  'one_dye_hair',
  'dye_hair_dye',
  'hair_dye_hair',
  'dye_hair_colour',
  'hair_colour_post',
  'colour_post_instagram',
  'post_instagram_certain',
  'instagram_certain_restaur',
  'certain_restaur_go',
  'restaur_go_next',
  'go_next_day',
  'next_day_week',
  'day_week_got',
  'week_got_new',
  'got_new_hair',
  'new_hair_stylist',
  'hair_stylist_tag',
  'stylist_tag_quick',
  'tag_quick_edit',
  'quick_edit_meant',
  'edit_meant_tag',
  'meant_tag_stylist',
  'tag_stylist_sil',
  'stylist_sil_instagram',
  'sil_instagram_month',
  'instagram_month_later',
  'month_later_visit',
  'later_visit_thank',
  'visit_thank_send',
  'thank_send_new',
  'send_new_client',
  'new_client_guess',
  'client_guess_post',
  'guess_post_photo',
  'post_photo_room',
  'photo_room_month',
  'room_month_ago',
  'month_ago_next',
  'ago_next_time',
  'next_time_visit',
  'time_visit_place',
  'visit_place_sheet',
  'place_sheet_say',
  'sheet_say_age',
  'say_age_coincid',
  'age_coincid_kind',
  'coincid_kind_thing',
  'kind_thing_happen',
  'thing_happen_time',
  'happen_time_sometim',
  'time_sometim_ill',
  'sometim_ill_run',
  'ill_run_groceri',
  'run_groceri_store',
  'groceri_store_shell',
  'store_shell_ask',
  'shell_ask_im',
  'ask_im_pick',
  'im_pick_tell',
  'pick_tell_say',
  'tell_say_oh',
  'say_oh_funni',
  'oh_funni_buy',
  'funni_buy_exact',
  'buy_exact_thing',
  'exact_thing_ive',
  'thing_ive_peopl',
  'ive_peopl_tell',
  'peopl_tell_say',
  'tell_say_thought',
  'say_thought_stress',
  'thought_stress_similar',
  'stress_similar_hair',
  'similar_hair_wish',
  'hair_wish_see',
  'wish_see_kicker',
  'see_kicker_husband',
  'kicker_husband_best',
  'husband_best_friendsbusi',
  'best_friendsbusi_partner',
  'friendsbusi_partner_live',
  'partner_live_block',
  'live_block_away',
  'block_away_us',
  'away_us_ive',
  'us_ive_brought',
  'ive_brought_husband',
  'brought_husband_sinc',
  'husband_sinc_start',
  'sinc_start_weve',
  'start_weve_talk',
  'weve_talk_either',
  'talk_either_deni',
  'either_deni_say',
  'deni_say_coincid',
  'say_coincid_say',
  'coincid_say_think',
  'say_think_good',
  'think_good_tast',
  'good_tast_cant',
  'tast_cant_help',
  'cant_help_promis',
  'help_promis_shell',
  'promis_shell_stop',
  'shell_stop_never',
  'stop_never_husband',
  'never_husband_realiz',
  'husband_realiz_frustrat',
  'realiz_frustrat_ultim',
  'frustrat_ultim_say',
  'ultim_say_harmless',
  'say_harmless_sister',
  'harmless_sister_cant',
  'sister_cant_cut',
  'cant_cut_copi',
  'cut_copi_day',
  'copi_day_ask',
  'day_ask_shampoo',
  'ask_shampoo_use',
  'shampoo_use_refus',
  'use_refus_tell',
  'refus_tell_knew',
  'tell_knew_go',
  'knew_go_buy',
  'go_buy_start',
  'buy_start_cri',
  'start_cri_husband',
  'cri_husband_told',
  'husband_told_big',
  'told_big_deal',
  'big_deal_told',
  'deal_told_assur',
  'told_assur_go',
  'assur_go_buy',
  'go_buy_curiou',
  'buy_curiou_hair',
  'curiou_hair_alway',
  'hair_alway_nice',
  'alway_nice_yesterday',
  'nice_yesterday_went',
  'yesterday_went_place',
  'went_place_dinner',
  'place_dinner_use',
  'dinner_use_washroom',
  'use_washroom_decid',
  'washroom_decid_check',
  'decid_check_suspicion',
  'check_suspicion_look',
  'suspicion_look_tub',
  'look_tub_saw',
  'tub_saw_bought',
  'saw_bought_shampoo',
  'bought_shampoo_frustrat',
  'shampoo_frustrat_brought',
  'frustrat_brought_bottl',
  'brought_bottl_tabl',
  'bottl_tabl_front',
  'tabl_front_husband',
  'front_husband_told',
  'husband_told_allow',
  'told_allow_buy',
  'allow_buy_shampoo',
  'buy_shampoo_shit',
  'shampoo_shit_got',
  'shit_got_stop',
  'got_stop_els',
  'stop_els_cut',
  'els_cut_husband',
  'cut_husband_regardless',
  'husband_regardless_husband',
  'regardless_husband_say',
  'husband_say_never',
  'say_never_see',
  'never_see_obvious',
  'see_obvious_husband',
  'obvious_husband_said',
  'husband_said_embarrass',
  'said_embarrass_start',
  'embarrass_start_cri',
  'start_cri_left',
  'cri_left_may',
  'left_may_react',
  'may_react_situat',
  'react_situat_make',
  'situat_make_crazi',
  'make_crazi_friend',
  'crazi_friend_know',
  'friend_know_said',
  'know_said_overreact',
  'said_overreact_understand',
  'overreact_understand_posit',
  'understand_posit_im',
  'posit_im_constantli',
  'im_constantli_husband',
  'constantli_husband_want',
  'husband_want_apolog',
  'want_apolog_want',
  'apolog_want_eta',
  'want_eta_forgot',
  'eta_forgot_mention',
  'forgot_mention_someth',
  'mention_someth_import',
  'someth_import_block',
  'import_block_instagram',
  'block_instagram_account',
  'instagram_account_privat',
  'account_privat_know',
  'privat_know_secret',
  'know_secret_account',
  'secret_account_follow',
  'account_follow_sometim',
  'follow_sometim_mention',
  'sometim_mention_thing',
  'mention_thing_ive',
  'thing_ive_post',
  'ive_post_like',
  'post_like_went',
  'like_went_beach',
  'went_beach_tell',
  'beach_tell_next',
  'tell_next_time',
  'next_time_hung',
  'time_hung_ask',
  'hung_ask_nice',
  'ask_nice_time',
  'nice_time_beach',
  'time_beach_ask',
  'beach_ask_husband',
  'ask_husband_told',
  'husband_told_deni',
  'told_deni_tell',
  'deni_tell_etc'],
 ['move',
  'apart',
  'back',
  'keep',
  'minimalist',
  'lifestyl',
  'actual',
  'much',
  'like',
  'good',
  'invest',
  'long',
  'run',
  'relev',
  'later',
  'ran',
  'plumb',
  'issu',
  'easi',
  'fix-',
  'least',
  'know',
  'plumb',
  'call',
  'uncl',
  'ask',
  'could',
  'help',
  'came',
  'aunt',
  'take',
  'look',
  'go',
  'like',
  'quit',
  'reason',
  'took',
  'grandmoth',
  'ring',
  'despit',
  'push',
  'peopl',
  'get',
  'want',
  'use',
  'mother',
  'death',
  'excus',
  'alway',
  'leav',
  'father',
  '&',
  'accord',
  'knew',
  'except',
  'cruel',
  'mother',
  'uncl',
  'use',
  'realli',
  'great',
  'came',
  'along',
  'bend',
  'everi',
  'whim',
  'digress',
  'come',
  'complain',
  'look',
  'like',
  'dirt',
  'poor',
  'minim',
  'funish',
  'look',
  'uptight',
  'say',
  'id',
  'rather',
  'make',
  'memori',
  'stuff',
  'leav',
  'notic',
  'silver',
  'box',
  'keep',
  'sterl',
  'flatwar',
  'spent',
  'good',
  'year',
  'save',
  'money',
  'buy',
  'nice',
  'flatwar',
  'reason',
  'grow',
  'valu',
  'pass',
  'along',
  'children',
  'last',
  'long',
  'time',
  'start',
  'ask',
  'brush',
  'keep',
  'say',
  'heirloom',
  'true',
  'still',
  'keep',
  'break',
  'say',
  'flatwar',
  'ask',
  'mani',
  'place',
  'set',
  'say',
  'cant',
  'rememb',
  'goe',
  'say',
  'small',
  'dinner',
  'parti',
  'borrow',
  'say',
  'pout',
  'rest',
  'time',
  'leav',
  'uncl',
  'say',
  'need',
  'tool',
  'specif',
  'part',
  'fix',
  'plumb',
  'come',
  'back',
  'later',
  'thank',
  'say',
  'bye',
  'arrang',
  'week',
  'later',
  'come',
  'back',
  'key',
  'left',
  'lockbox',
  'sinc',
  'would',
  'work',
  'come',
  'home',
  'look',
  'around',
  'damn',
  'silver',
  'box',
  'miss',
  'know',
  '*',
  'exactli',
  '*',
  'call',
  'polic',
  'give',
  'inform',
  'show',
  'photo',
  'took',
  'insur',
  'long',
  'stori',
  'short',
  'box',
  'dine',
  'room',
  'show',
  'uncl',
  'arrest',
  'theft',
  'aunt',
  'keep',
  'call',
  'screech',
  'horribl',
  'go',
  'hell',
  'give',
  'crimin',
  'record',
  'say',
  'thought',
  'made',
  'abl',
  'take',
  'answer',
  'silver',
  'rarer',
  'pattern',
  'easili',
  'replac',
  'threw',
  'comment',
  'back',
  'face',
  'say',
  'thought',
  'want',
  'memori',
  'stuff',
  'hung',
  'think',
  'ta',
  'uncl',
  'aunt',
  'opinion',
  'effect',
  'punish',
  'someon',
  'done',
  'influenc',
  'get',
  'mad',
  'think',
  'breach',
  'trust',
  'feel',
  'fine',
  'asshol',
  'edit',
  'clarif',
  'regard',
  'ring',
  'ill',
  'put',
  'comment',
  'got',
  'buri',
  'went',
  'miss',
  'quit',
  'actual',
  'know',
  'aunt',
  'taken',
  'saw',
  'wear',
  'famili',
  'function',
  'year',
  'later',
  'tri',
  'play',
  'differ',
  'ring',
  'money',
  'time',
  'willpow',
  'deal',
  'time',
  'school',
  'everyth',
  'mom',
  'deal',
  'cancer',
  'put',
  'back',
  'burner',
  'also',
  'edit',
  'call',
  'tri',
  'retreiv',
  'ring',
  'want',
  'go',
  'miss',
  'gave',
  'head',
  'thank',
  'repli',
  'far',
  'move_apart',
  'apart_back',
  'back_keep',
  'keep_minimalist',
  'minimalist_lifestyl',
  'lifestyl_actual',
  'actual_much',
  'much_like',
  'like_good',
  'good_invest',
  'invest_long',
  'long_run',
  'run_relev',
  'relev_later',
  'later_ran',
  'ran_plumb',
  'plumb_issu',
  'issu_easi',
  'easi_fix-',
  'fix-_least',
  'least_know',
  'know_plumb',
  'plumb_call',
  'call_uncl',
  'uncl_ask',
  'ask_could',
  'could_help',
  'help_came',
  'came_aunt',
  'aunt_take',
  'take_look',
  'look_go',
  'go_like',
  'like_quit',
  'quit_reason',
  'reason_took',
  'took_grandmoth',
  'grandmoth_ring',
  'ring_despit',
  'despit_push',
  'push_peopl',
  'peopl_get',
  'get_want',
  'want_use',
  'use_mother',
  'mother_death',
  'death_excus',
  'excus_alway',
  'alway_leav',
  'leav_father',
  'father_&',
  '&_accord',
  'accord_knew',
  'knew_except',
  'except_cruel',
  'cruel_mother',
  'mother_uncl',
  'uncl_use',
  'use_realli',
  'realli_great',
  'great_came',
  'came_along',
  'along_bend',
  'bend_everi',
  'everi_whim',
  'whim_digress',
  'digress_come',
  'come_complain',
  'complain_look',
  'look_like',
  'like_dirt',
  'dirt_poor',
  'poor_minim',
  'minim_funish',
  'funish_look',
  'look_uptight',
  'uptight_say',
  'say_id',
  'id_rather',
  'rather_make',
  'make_memori',
  'memori_stuff',
  'stuff_leav',
  'leav_notic',
  'notic_silver',
  'silver_box',
  'box_keep',
  'keep_sterl',
  'sterl_flatwar',
  'flatwar_spent',
  'spent_good',
  'good_year',
  'year_save',
  'save_money',
  'money_buy',
  'buy_nice',
  'nice_flatwar',
  'flatwar_reason',
  'reason_grow',
  'grow_valu',
  'valu_pass',
  'pass_along',
  'along_children',
  'children_last',
  'last_long',
  'long_time',
  'time_start',
  'start_ask',
  'ask_brush',
  'brush_keep',
  'keep_say',
  'say_heirloom',
  'heirloom_true',
  'true_still',
  'still_keep',
  'keep_break',
  'break_say',
  'say_flatwar',
  'flatwar_ask',
  'ask_mani',
  'mani_place',
  'place_set',
  'set_say',
  'say_cant',
  'cant_rememb',
  'rememb_goe',
  'goe_say',
  'say_small',
  'small_dinner',
  'dinner_parti',
  'parti_borrow',
  'borrow_say',
  'say_pout',
  'pout_rest',
  'rest_time',
  'time_leav',
  'leav_uncl',
  'uncl_say',
  'say_need',
  'need_tool',
  'tool_specif',
  'specif_part',
  'part_fix',
  'fix_plumb',
  'plumb_come',
  'come_back',
  'back_later',
  'later_thank',
  'thank_say',
  'say_bye',
  'bye_arrang',
  'arrang_week',
  'week_later',
  'later_come',
  'come_back',
  'back_key',
  'key_left',
  'left_lockbox',
  'lockbox_sinc',
  'sinc_would',
  'would_work',
  'work_come',
  'come_home',
  'home_look',
  'look_around',
  'around_damn',
  'damn_silver',
  'silver_box',
  'box_miss',
  'miss_know',
  'know_*',
  '*_exactli',
  'exactli_*',
  '*_call',
  'call_polic',
  'polic_give',
  'give_inform',
  'inform_show',
  'show_photo',
  'photo_took',
  'took_insur',
  'insur_long',
  'long_stori',
  'stori_short',
  'short_box',
  'box_dine',
  'dine_room',
  'room_show',
  'show_uncl',
  'uncl_arrest',
  'arrest_theft',
  'theft_aunt',
  'aunt_keep',
  'keep_call',
  'call_screech',
  'screech_horribl',
  'horribl_go',
  'go_hell',
  'hell_give',
  'give_crimin',
  'crimin_record',
  'record_say',
  'say_thought',
  'thought_made',
  'made_abl',
  'abl_take',
  'take_answer',
  'answer_silver',
  'silver_rarer',
  'rarer_pattern',
  'pattern_easili',
  'easili_replac',
  'replac_threw',
  'threw_comment',
  'comment_back',
  'back_face',
  'face_say',
  'say_thought',
  'thought_want',
  'want_memori',
  'memori_stuff',
  'stuff_hung',
  'hung_think',
  'think_ta',
  'ta_uncl',
  'uncl_aunt',
  'aunt_opinion',
  'opinion_effect',
  'effect_punish',
  'punish_someon',
  'someon_done',
  'done_influenc',
  'influenc_get',
  'get_mad',
  'mad_think',
  'think_breach',
  'breach_trust',
  'trust_feel',
  'feel_fine',
  'fine_asshol',
  'asshol_edit',
  'edit_clarif',
  'clarif_regard',
  'regard_ring',
  'ring_ill',
  'ill_put',
  'put_comment',
  'comment_got',
  'got_buri',
  'buri_went',
  'went_miss',
  'miss_quit',
  'quit_actual',
  'actual_know',
  'know_aunt',
  'aunt_taken',
  'taken_saw',
  'saw_wear',
  'wear_famili',
  'famili_function',
  'function_year',
  'year_later',
  'later_tri',
  'tri_play',
  'play_differ',
  'differ_ring',
  'ring_money',
  'money_time',
  'time_willpow',
  'willpow_deal',
  'deal_time',
  'time_school',
  'school_everyth',
  'everyth_mom',
  'mom_deal',
  'deal_cancer',
  'cancer_put',
  'put_back',
  'back_burner',
  'burner_also',
  'also_edit',
  'edit_call',
  'call_tri',
  'tri_retreiv',
  'retreiv_ring',
  'ring_want',
  'want_go',
  'go_miss',
  'miss_gave',
  'gave_head',
  'head_thank',
  'thank_repli',
  'repli_far',
  'move_apart_back',
  'apart_back_keep',
  'back_keep_minimalist',
  'keep_minimalist_lifestyl',
  'minimalist_lifestyl_actual',
  'lifestyl_actual_much',
  'actual_much_like',
  'much_like_good',
  'like_good_invest',
  'good_invest_long',
  'invest_long_run',
  'long_run_relev',
  'run_relev_later',
  'relev_later_ran',
  'later_ran_plumb',
  'ran_plumb_issu',
  'plumb_issu_easi',
  'issu_easi_fix-',
  'easi_fix-_least',
  'fix-_least_know',
  'least_know_plumb',
  'know_plumb_call',
  'plumb_call_uncl',
  'call_uncl_ask',
  'uncl_ask_could',
  'ask_could_help',
  'could_help_came',
  'help_came_aunt',
  'came_aunt_take',
  'aunt_take_look',
  'take_look_go',
  'look_go_like',
  'go_like_quit',
  'like_quit_reason',
  'quit_reason_took',
  'reason_took_grandmoth',
  'took_grandmoth_ring',
  'grandmoth_ring_despit',
  'ring_despit_push',
  'despit_push_peopl',
  'push_peopl_get',
  'peopl_get_want',
  'get_want_use',
  'want_use_mother',
  'use_mother_death',
  'mother_death_excus',
  'death_excus_alway',
  'excus_alway_leav',
  'alway_leav_father',
  'leav_father_&',
  'father_&_accord',
  '&_accord_knew',
  'accord_knew_except',
  'knew_except_cruel',
  'except_cruel_mother',
  'cruel_mother_uncl',
  'mother_uncl_use',
  'uncl_use_realli',
  'use_realli_great',
  'realli_great_came',
  'great_came_along',
  'came_along_bend',
  'along_bend_everi',
  'bend_everi_whim',
  'everi_whim_digress',
  'whim_digress_come',
  'digress_come_complain',
  'come_complain_look',
  'complain_look_like',
  'look_like_dirt',
  'like_dirt_poor',
  'dirt_poor_minim',
  'poor_minim_funish',
  'minim_funish_look',
  'funish_look_uptight',
  'look_uptight_say',
  'uptight_say_id',
  'say_id_rather',
  'id_rather_make',
  'rather_make_memori',
  'make_memori_stuff',
  'memori_stuff_leav',
  'stuff_leav_notic',
  'leav_notic_silver',
  'notic_silver_box',
  'silver_box_keep',
  'box_keep_sterl',
  'keep_sterl_flatwar',
  'sterl_flatwar_spent',
  'flatwar_spent_good',
  'spent_good_year',
  'good_year_save',
  'year_save_money',
  'save_money_buy',
  'money_buy_nice',
  'buy_nice_flatwar',
  'nice_flatwar_reason',
  'flatwar_reason_grow',
  'reason_grow_valu',
  'grow_valu_pass',
  'valu_pass_along',
  'pass_along_children',
  'along_children_last',
  'children_last_long',
  'last_long_time',
  'long_time_start',
  'time_start_ask',
  'start_ask_brush',
  'ask_brush_keep',
  'brush_keep_say',
  'keep_say_heirloom',
  'say_heirloom_true',
  'heirloom_true_still',
  'true_still_keep',
  'still_keep_break',
  'keep_break_say',
  'break_say_flatwar',
  'say_flatwar_ask',
  'flatwar_ask_mani',
  'ask_mani_place',
  'mani_place_set',
  'place_set_say',
  'set_say_cant',
  'say_cant_rememb',
  'cant_rememb_goe',
  'rememb_goe_say',
  'goe_say_small',
  'say_small_dinner',
  'small_dinner_parti',
  'dinner_parti_borrow',
  'parti_borrow_say',
  'borrow_say_pout',
  'say_pout_rest',
  'pout_rest_time',
  'rest_time_leav',
  'time_leav_uncl',
  'leav_uncl_say',
  'uncl_say_need',
  'say_need_tool',
  'need_tool_specif',
  'tool_specif_part',
  'specif_part_fix',
  'part_fix_plumb',
  'fix_plumb_come',
  'plumb_come_back',
  'come_back_later',
  'back_later_thank',
  'later_thank_say',
  'thank_say_bye',
  'say_bye_arrang',
  'bye_arrang_week',
  'arrang_week_later',
  'week_later_come',
  'later_come_back',
  'come_back_key',
  'back_key_left',
  'key_left_lockbox',
  'left_lockbox_sinc',
  'lockbox_sinc_would',
  'sinc_would_work',
  'would_work_come',
  'work_come_home',
  'come_home_look',
  'home_look_around',
  'look_around_damn',
  'around_damn_silver',
  'damn_silver_box',
  'silver_box_miss',
  'box_miss_know',
  'miss_know_*',
  'know_*_exactli',
  '*_exactli_*',
  'exactli_*_call',
  '*_call_polic',
  'call_polic_give',
  'polic_give_inform',
  'give_inform_show',
  'inform_show_photo',
  'show_photo_took',
  'photo_took_insur',
  'took_insur_long',
  'insur_long_stori',
  'long_stori_short',
  'stori_short_box',
  'short_box_dine',
  'box_dine_room',
  'dine_room_show',
  'room_show_uncl',
  'show_uncl_arrest',
  'uncl_arrest_theft',
  'arrest_theft_aunt',
  'theft_aunt_keep',
  'aunt_keep_call',
  'keep_call_screech',
  'call_screech_horribl',
  'screech_horribl_go',
  'horribl_go_hell',
  'go_hell_give',
  'hell_give_crimin',
  'give_crimin_record',
  'crimin_record_say',
  'record_say_thought',
  'say_thought_made',
  'thought_made_abl',
  'made_abl_take',
  'abl_take_answer',
  'take_answer_silver',
  'answer_silver_rarer',
  'silver_rarer_pattern',
  'rarer_pattern_easili',
  'pattern_easili_replac',
  'easili_replac_threw',
  'replac_threw_comment',
  'threw_comment_back',
  'comment_back_face',
  'back_face_say',
  'face_say_thought',
  'say_thought_want',
  'thought_want_memori',
  'want_memori_stuff',
  'memori_stuff_hung',
  'stuff_hung_think',
  'hung_think_ta',
  'think_ta_uncl',
  'ta_uncl_aunt',
  'uncl_aunt_opinion',
  'aunt_opinion_effect',
  'opinion_effect_punish',
  'effect_punish_someon',
  'punish_someon_done',
  'someon_done_influenc',
  'done_influenc_get',
  'influenc_get_mad',
  'get_mad_think',
  'mad_think_breach',
  'think_breach_trust',
  'breach_trust_feel',
  'trust_feel_fine',
  'feel_fine_asshol',
  'fine_asshol_edit',
  'asshol_edit_clarif',
  'edit_clarif_regard',
  'clarif_regard_ring',
  'regard_ring_ill',
  'ring_ill_put',
  'ill_put_comment',
  'put_comment_got',
  'comment_got_buri',
  'got_buri_went',
  'buri_went_miss',
  'went_miss_quit',
  'miss_quit_actual',
  'quit_actual_know',
  'actual_know_aunt',
  'know_aunt_taken',
  'aunt_taken_saw',
  'taken_saw_wear',
  'saw_wear_famili',
  'wear_famili_function',
  'famili_function_year',
  'function_year_later',
  'year_later_tri',
  'later_tri_play',
  'tri_play_differ',
  'play_differ_ring',
  'differ_ring_money',
  'ring_money_time',
  'money_time_willpow',
  'time_willpow_deal',
  'willpow_deal_time',
  'deal_time_school',
  'time_school_everyth',
  'school_everyth_mom',
  'everyth_mom_deal',
  'mom_deal_cancer',
  'deal_cancer_put',
  'cancer_put_back',
  'put_back_burner',
  'back_burner_also',
  'burner_also_edit',
  'also_edit_call',
  'edit_call_tri',
  'call_tri_retreiv',
  'tri_retreiv_ring',
  'retreiv_ring_want',
  'ring_want_go',
  'want_go_miss',
  'go_miss_gave',
  'miss_gave_head',
  'gave_head_thank',
  'head_thank_repli',
  'thank_repli_far'],
 ['throwaway',
  'mobil',
  'account',
  'get',
  'marri',
  'wonder',
  'fiancé',
  'fall',
  'week',
  'ago',
  'bachelorett',
  'parti',
  'girl',
  'dream',
  'wed',
  'dreamt',
  'bachelorett',
  'weekend',
  'put',
  'lot',
  'plan',
  'weekend',
  'made',
  'lot',
  'phone',
  'call',
  'reserv',
  'everyth',
  'basic',
  'thursday',
  'night',
  '-',
  'sunday',
  'morn',
  'closest',
  'girlfriend',
  'rent',
  'hous',
  'start',
  'disast',
  'told',
  'girl',
  'get',
  'hous',
  'earli',
  'thursday',
  'could',
  'decor',
  'set',
  'got',
  'well',
  'got',
  'hous',
  'done',
  'decor',
  'bum',
  'want',
  'wow',
  'moment',
  'came',
  'saw',
  'set',
  'felt',
  'rob',
  'still',
  'decent',
  'first',
  'night',
  'friday',
  'woke',
  'everyon',
  'make',
  'breakfast',
  'get',
  'readi',
  'pack',
  'day',
  '-',
  'vineyard',
  'boat',
  'lunch',
  'happi',
  'hour',
  'drink',
  'dinner',
  'club',
  'get',
  'shade',
  'afternoon',
  'peopl',
  'said',
  'rush',
  'place',
  'place',
  'carri',
  'chang',
  'cloth',
  'day',
  'limit',
  'time',
  'citi',
  'want',
  'make',
  'saturday',
  'wors',
  'brunch',
  'one',
  'awak',
  'time',
  'end',
  'loyal',
  'bridesmaid',
  'went',
  'shop',
  'hour',
  'got',
  'back',
  'hous',
  'one',
  'even',
  'apologet',
  'even',
  'though',
  'close',
  'tear',
  'day',
  'last',
  'straw',
  'later',
  'night',
  'go',
  'dinner',
  'nobodi',
  'wear',
  'match',
  'shirt',
  'got',
  'weekend',
  'peopl',
  'want',
  'wear',
  'stuff',
  'agre',
  'even',
  'though',
  'moh',
  'notifi',
  'everyon',
  'point',
  'said',
  'fuck',
  'weekend',
  'ruin',
  'lock',
  'room',
  'cri',
  'even',
  'wors',
  'came',
  'hour',
  'later',
  'half',
  'girl',
  'gone',
  'anyway',
  'without',
  'aka',
  'actual',
  'bride',
  'end',
  'drive',
  'home',
  'earli',
  'sunday',
  'left',
  'hous',
  'mess',
  'girl',
  'pick',
  'upset',
  'almost',
  'week',
  'one',
  'realli',
  'text',
  'except',
  'bridesmaid',
  'moh',
  'know',
  'sound',
  'bridezilla-ish',
  'suppos',
  'friend',
  'suppos',
  'celebr',
  'weekend',
  'felt',
  'neglect',
  'im',
  'realli',
  'upset',
  'understand',
  'expect',
  'may',
  'seem',
  'like',
  'lot',
  'made',
  'expect',
  'clear',
  'group',
  'let',
  'bad',
  'tell',
  'aita',
  'edit',
  'peopl',
  'ask',
  'question',
  'ye',
  'peopl',
  'genuin',
  'want',
  'celebr',
  'wed',
  'parti',
  'colleg',
  'friend',
  'childhood',
  'friend',
  'work',
  'friend',
  'etc',
  'moh',
  'sent',
  'itinerari',
  'month',
  'ago',
  'clear',
  'activ',
  'plan',
  'price',
  'per',
  'person',
  'someon',
  'want',
  'skip',
  'problem',
  'girl',
  'paid',
  'accordingli',
  'knew',
  'get',
  'edit',
  'well',
  'im',
  'clearli',
  'ta',
  'ive',
  'decid',
  'apolog',
  'want',
  'one',
  'weekend',
  'need',
  'rethink',
  'friend',
  'group',
  'make',
  'chang',
  'wed',
  'invit',
  'list',
  'thank',
  'throwaway_mobil',
  'mobil_account',
  'account_get',
  'get_marri',
  'marri_wonder',
  'wonder_fiancé',
  'fiancé_fall',
  'fall_week',
  'week_ago',
  'ago_bachelorett',
  'bachelorett_parti',
  'parti_girl',
  'girl_dream',
  'dream_wed',
  'wed_dreamt',
  'dreamt_bachelorett',
  'bachelorett_weekend',
  'weekend_put',
  'put_lot',
  'lot_plan',
  'plan_weekend',
  'weekend_made',
  'made_lot',
  'lot_phone',
  'phone_call',
  'call_reserv',
  'reserv_everyth',
  'everyth_basic',
  'basic_thursday',
  'thursday_night',
  'night_-',
  '-_sunday',
  'sunday_morn',
  'morn_closest',
  'closest_girlfriend',
  'girlfriend_rent',
  'rent_hous',
  'hous_start',
  'start_disast',
  'disast_told',
  'told_girl',
  'girl_get',
  'get_hous',
  'hous_earli',
  'earli_thursday',
  'thursday_could',
  'could_decor',
  'decor_set',
  'set_got',
  'got_well',
  'well_got',
  'got_hous',
  'hous_done',
  'done_decor',
  'decor_bum',
  'bum_want',
  'want_wow',
  'wow_moment',
  'moment_came',
  'came_saw',
  'saw_set',
  'set_felt',
  'felt_rob',
  'rob_still',
  'still_decent',
  'decent_first',
  'first_night',
  'night_friday',
  'friday_woke',
  'woke_everyon',
  'everyon_make',
  'make_breakfast',
  'breakfast_get',
  'get_readi',
  'readi_pack',
  'pack_day',
  'day_-',
  '-_vineyard',
  'vineyard_boat',
  'boat_lunch',
  'lunch_happi',
  'happi_hour',
  'hour_drink',
  'drink_dinner',
  'dinner_club',
  'club_get',
  'get_shade',
  'shade_afternoon',
  'afternoon_peopl',
  'peopl_said',
  'said_rush',
  'rush_place',
  'place_place',
  'place_carri',
  'carri_chang',
  'chang_cloth',
  'cloth_day',
  'day_limit',
  'limit_time',
  'time_citi',
  'citi_want',
  'want_make',
  'make_saturday',
  'saturday_wors',
  'wors_brunch',
  'brunch_one',
  'one_awak',
  'awak_time',
  'time_end',
  'end_loyal',
  'loyal_bridesmaid',
  'bridesmaid_went',
  'went_shop',
  'shop_hour',
  'hour_got',
  'got_back',
  'back_hous',
  'hous_one',
  'one_even',
  'even_apologet',
  'apologet_even',
  'even_though',
  'though_close',
  'close_tear',
  'tear_day',
  'day_last',
  'last_straw',
  'straw_later',
  'later_night',
  'night_go',
  'go_dinner',
  'dinner_nobodi',
  'nobodi_wear',
  'wear_match',
  'match_shirt',
  'shirt_got',
  'got_weekend',
  'weekend_peopl',
  'peopl_want',
  'want_wear',
  'wear_stuff',
  'stuff_agre',
  'agre_even',
  'even_though',
  'though_moh',
  'moh_notifi',
  'notifi_everyon',
  'everyon_point',
  'point_said',
  'said_fuck',
  'fuck_weekend',
  'weekend_ruin',
  'ruin_lock',
  'lock_room',
  'room_cri',
  'cri_even',
  'even_wors',
  'wors_came',
  'came_hour',
  'hour_later',
  'later_half',
  'half_girl',
  'girl_gone',
  'gone_anyway',
  'anyway_without',
  'without_aka',
  'aka_actual',
  'actual_bride',
  'bride_end',
  'end_drive',
  'drive_home',
  'home_earli',
  'earli_sunday',
  'sunday_left',
  'left_hous',
  'hous_mess',
  'mess_girl',
  'girl_pick',
  'pick_upset',
  'upset_almost',
  'almost_week',
  'week_one',
  'one_realli',
  'realli_text',
  'text_except',
  'except_bridesmaid',
  'bridesmaid_moh',
  'moh_know',
  'know_sound',
  'sound_bridezilla-ish',
  'bridezilla-ish_suppos',
  'suppos_friend',
  'friend_suppos',
  'suppos_celebr',
  'celebr_weekend',
  'weekend_felt',
  'felt_neglect',
  'neglect_im',
  'im_realli',
  'realli_upset',
  'upset_understand',
  'understand_expect',
  'expect_may',
  'may_seem',
  'seem_like',
  'like_lot',
  'lot_made',
  'made_expect',
  'expect_clear',
  'clear_group',
  'group_let',
  'let_bad',
  'bad_tell',
  'tell_aita',
  'aita_edit',
  'edit_peopl',
  'peopl_ask',
  'ask_question',
  'question_ye',
  'ye_peopl',
  'peopl_genuin',
  'genuin_want',
  'want_celebr',
  'celebr_wed',
  'wed_parti',
  'parti_colleg',
  'colleg_friend',
  'friend_childhood',
  'childhood_friend',
  'friend_work',
  'work_friend',
  'friend_etc',
  'etc_moh',
  'moh_sent',
  'sent_itinerari',
  'itinerari_month',
  'month_ago',
  'ago_clear',
  'clear_activ',
  'activ_plan',
  'plan_price',
  'price_per',
  'per_person',
  'person_someon',
  'someon_want',
  'want_skip',
  'skip_problem',
  'problem_girl',
  'girl_paid',
  'paid_accordingli',
  'accordingli_knew',
  'knew_get',
  'get_edit',
  'edit_well',
  'well_im',
  'im_clearli',
  'clearli_ta',
  'ta_ive',
  'ive_decid',
  'decid_apolog',
  'apolog_want',
  'want_one',
  'one_weekend',
  'weekend_need',
  'need_rethink',
  'rethink_friend',
  'friend_group',
  'group_make',
  'make_chang',
  'chang_wed',
  'wed_invit',
  'invit_list',
  'list_thank',
  'throwaway_mobil_account',
  'mobil_account_get',
  'account_get_marri',
  'get_marri_wonder',
  'marri_wonder_fiancé',
  'wonder_fiancé_fall',
  'fiancé_fall_week',
  'fall_week_ago',
  'week_ago_bachelorett',
  'ago_bachelorett_parti',
  'bachelorett_parti_girl',
  'parti_girl_dream',
  'girl_dream_wed',
  'dream_wed_dreamt',
  'wed_dreamt_bachelorett',
  'dreamt_bachelorett_weekend',
  'bachelorett_weekend_put',
  'weekend_put_lot',
  'put_lot_plan',
  'lot_plan_weekend',
  'plan_weekend_made',
  'weekend_made_lot',
  'made_lot_phone',
  'lot_phone_call',
  'phone_call_reserv',
  'call_reserv_everyth',
  'reserv_everyth_basic',
  'everyth_basic_thursday',
  'basic_thursday_night',
  'thursday_night_-',
  'night_-_sunday',
  '-_sunday_morn',
  'sunday_morn_closest',
  'morn_closest_girlfriend',
  'closest_girlfriend_rent',
  'girlfriend_rent_hous',
  'rent_hous_start',
  'hous_start_disast',
  'start_disast_told',
  'disast_told_girl',
  'told_girl_get',
  'girl_get_hous',
  'get_hous_earli',
  'hous_earli_thursday',
  'earli_thursday_could',
  'thursday_could_decor',
  'could_decor_set',
  'decor_set_got',
  'set_got_well',
  'got_well_got',
  'well_got_hous',
  'got_hous_done',
  'hous_done_decor',
  'done_decor_bum',
  'decor_bum_want',
  'bum_want_wow',
  'want_wow_moment',
  'wow_moment_came',
  'moment_came_saw',
  'came_saw_set',
  'saw_set_felt',
  'set_felt_rob',
  'felt_rob_still',
  'rob_still_decent',
  'still_decent_first',
  'decent_first_night',
  'first_night_friday',
  'night_friday_woke',
  'friday_woke_everyon',
  'woke_everyon_make',
  'everyon_make_breakfast',
  'make_breakfast_get',
  'breakfast_get_readi',
  'get_readi_pack',
  'readi_pack_day',
  'pack_day_-',
  'day_-_vineyard',
  '-_vineyard_boat',
  'vineyard_boat_lunch',
  'boat_lunch_happi',
  'lunch_happi_hour',
  'happi_hour_drink',
  'hour_drink_dinner',
  'drink_dinner_club',
  'dinner_club_get',
  'club_get_shade',
  'get_shade_afternoon',
  'shade_afternoon_peopl',
  'afternoon_peopl_said',
  'peopl_said_rush',
  'said_rush_place',
  'rush_place_place',
  'place_place_carri',
  'place_carri_chang',
  'carri_chang_cloth',
  'chang_cloth_day',
  'cloth_day_limit',
  'day_limit_time',
  'limit_time_citi',
  'time_citi_want',
  'citi_want_make',
  'want_make_saturday',
  'make_saturday_wors',
  'saturday_wors_brunch',
  'wors_brunch_one',
  'brunch_one_awak',
  'one_awak_time',
  'awak_time_end',
  'time_end_loyal',
  'end_loyal_bridesmaid',
  'loyal_bridesmaid_went',
  'bridesmaid_went_shop',
  'went_shop_hour',
  'shop_hour_got',
  'hour_got_back',
  'got_back_hous',
  'back_hous_one',
  'hous_one_even',
  'one_even_apologet',
  'even_apologet_even',
  'apologet_even_though',
  'even_though_close',
  'though_close_tear',
  'close_tear_day',
  'tear_day_last',
  'day_last_straw',
  'last_straw_later',
  'straw_later_night',
  'later_night_go',
  'night_go_dinner',
  'go_dinner_nobodi',
  'dinner_nobodi_wear',
  'nobodi_wear_match',
  'wear_match_shirt',
  'match_shirt_got',
  'shirt_got_weekend',
  'got_weekend_peopl',
  'weekend_peopl_want',
  'peopl_want_wear',
  'want_wear_stuff',
  'wear_stuff_agre',
  'stuff_agre_even',
  'agre_even_though',
  'even_though_moh',
  'though_moh_notifi',
  'moh_notifi_everyon',
  'notifi_everyon_point',
  'everyon_point_said',
  'point_said_fuck',
  'said_fuck_weekend',
  'fuck_weekend_ruin',
  'weekend_ruin_lock',
  'ruin_lock_room',
  'lock_room_cri',
  'room_cri_even',
  'cri_even_wors',
  'even_wors_came',
  'wors_came_hour',
  'came_hour_later',
  'hour_later_half',
  'later_half_girl',
  'half_girl_gone',
  'girl_gone_anyway',
  'gone_anyway_without',
  'anyway_without_aka',
  'without_aka_actual',
  'aka_actual_bride',
  'actual_bride_end',
  'bride_end_drive',
  'end_drive_home',
  'drive_home_earli',
  'home_earli_sunday',
  'earli_sunday_left',
  'sunday_left_hous',
  'left_hous_mess',
  'hous_mess_girl',
  'mess_girl_pick',
  'girl_pick_upset',
  'pick_upset_almost',
  'upset_almost_week',
  'almost_week_one',
  'week_one_realli',
  'one_realli_text',
  'realli_text_except',
  'text_except_bridesmaid',
  'except_bridesmaid_moh',
  'bridesmaid_moh_know',
  'moh_know_sound',
  'know_sound_bridezilla-ish',
  'sound_bridezilla-ish_suppos',
  'bridezilla-ish_suppos_friend',
  'suppos_friend_suppos',
  'friend_suppos_celebr',
  'suppos_celebr_weekend',
  'celebr_weekend_felt',
  'weekend_felt_neglect',
  'felt_neglect_im',
  'neglect_im_realli',
  'im_realli_upset',
  'realli_upset_understand',
  'upset_understand_expect',
  'understand_expect_may',
  'expect_may_seem',
  'may_seem_like',
  'seem_like_lot',
  'like_lot_made',
  'lot_made_expect',
  'made_expect_clear',
  'expect_clear_group',
  'clear_group_let',
  'group_let_bad',
  'let_bad_tell',
  'bad_tell_aita',
  'tell_aita_edit',
  'aita_edit_peopl',
  'edit_peopl_ask',
  'peopl_ask_question',
  'ask_question_ye',
  'question_ye_peopl',
  'ye_peopl_genuin',
  'peopl_genuin_want',
  'genuin_want_celebr',
  'want_celebr_wed',
  'celebr_wed_parti',
  'wed_parti_colleg',
  'parti_colleg_friend',
  'colleg_friend_childhood',
  'friend_childhood_friend',
  'childhood_friend_work',
  'friend_work_friend',
  'work_friend_etc',
  'friend_etc_moh',
  'etc_moh_sent',
  'moh_sent_itinerari',
  'sent_itinerari_month',
  'itinerari_month_ago',
  'month_ago_clear',
  'ago_clear_activ',
  'clear_activ_plan',
  'activ_plan_price',
  'plan_price_per',
  'price_per_person',
  'per_person_someon',
  'person_someon_want',
  'someon_want_skip',
  'want_skip_problem',
  'skip_problem_girl',
  'problem_girl_paid',
  'girl_paid_accordingli',
  'paid_accordingli_knew',
  'accordingli_knew_get',
  'knew_get_edit',
  'get_edit_well',
  'edit_well_im',
  'well_im_clearli',
  'im_clearli_ta',
  'clearli_ta_ive',
  'ta_ive_decid',
  'ive_decid_apolog',
  'decid_apolog_want',
  'apolog_want_one',
  'want_one_weekend',
  'one_weekend_need',
  'weekend_need_rethink',
  'need_rethink_friend',
  'rethink_friend_group',
  'friend_group_make',
  'group_make_chang',
  'make_chang_wed',
  'chang_wed_invit',
  'wed_invit_list',
  'invit_list_thank'],
 ['still',
  'girlfriend',
  'almost',
  'year',
  'last',
  'year',
  'gave',
  'key',
  'hous',
  'spend',
  'day',
  'live',
  'togeth',
  'full',
  'time',
  'day',
  'ago',
  'make',
  'quick',
  'trip',
  'work',
  'ask',
  'could',
  'invit',
  'friend',
  'hous',
  'girl',
  'night',
  'thursday',
  'accept',
  'return',
  'yesterday',
  'morn',
  'fir',
  'thing',
  'notic',
  'rag',
  'doll',
  'miss',
  'wall',
  'first',
  'instinct',
  'call',
  'girlfriend',
  'ask',
  'put',
  'somewher',
  'els',
  'deni',
  'said',
  'doll',
  'check',
  'gp',
  'doll',
  'ye',
  'gp',
  'gp',
  'mark',
  'hous',
  'one',
  'friend',
  'let',
  'call',
  'jess',
  'tri',
  'nice',
  'told',
  'gf',
  'tell',
  'friend',
  'bring',
  'back',
  'pm',
  'ill',
  'pretend',
  'never',
  'happen',
  'ill',
  'involv',
  'polic',
  'tri',
  'fight',
  'told',
  'gp',
  'well',
  'gf',
  'call',
  'back',
  'say',
  'jess',
  'deni',
  'doll',
  'huge',
  'argument',
  'warn',
  'play',
  'get',
  'polic',
  'involv',
  'wait',
  'went',
  'polic',
  'went',
  'hous',
  'got',
  'doll',
  'back',
  'press',
  'charg',
  'gf',
  'bigger',
  'argument',
  'press',
  'charg',
  'includ',
  'known',
  'doll',
  'made',
  'father',
  'could',
  'stolen',
  'anyth',
  'els',
  'bat',
  'eye',
  'gave',
  'friend',
  'chanc',
  'tri',
  'play',
  'stupid',
  'call',
  'asshol',
  'drop',
  'charg',
  'edit',
  'answer',
  'question',
  'wll',
  'tri',
  'answer',
  '*',
  'doll',
  'rag',
  'doll',
  'better',
  'said',
  'raggedi',
  'ann',
  'doll',
  '*',
  'father',
  'mani',
  'hobbi',
  'tri',
  'make',
  'doll',
  'plan',
  'sell',
  'first',
  'one',
  'made',
  'freak',
  'raggedi',
  'ann',
  'doll',
  'last',
  'manli',
  'sell',
  'raggedi',
  'ann',
  'doll',
  'ridicul',
  'know',
  'gave',
  'one',
  'actual',
  'made',
  'best',
  'friend',
  'doll',
  'hang',
  'room',
  'pass',
  'away',
  'hung',
  'live',
  'room',
  'xs',
  'eye',
  'look',
  'creepi',
  'look',
  'dead',
  '*',
  'gp',
  'home',
  'rob',
  'month',
  'ago',
  'care',
  'clean',
  'hous',
  'far',
  'leav',
  'doll',
  'ive',
  'expens',
  'item',
  'could',
  'stolen',
  'know',
  'would',
  'steal',
  'bloodi',
  'doll',
  'sick',
  'joke',
  '*',
  'gf',
  'never',
  'complain',
  'least',
  'talk',
  'tell',
  'drop',
  'charg',
  'talk',
  'tomorrow',
  'find',
  'let',
  'friend',
  'take',
  'doll',
  'theyv',
  'never',
  'anyth',
  'like',
  'relationship',
  'right',
  'im',
  'think',
  'break',
  '&',
  'xb',
  'hope',
  'right',
  'updat',
  'want',
  'give',
  'context',
  'doll',
  'import',
  'correct',
  'say',
  'manli',
  'sell',
  'doll',
  'father',
  'got',
  'sick',
  'kidney',
  'failur',
  'retir',
  'fill',
  'time',
  'hobbi',
  'year',
  'diagnosi',
  'came',
  'school',
  'one',
  'day',
  'finish',
  'doll',
  'ask',
  'go',
  'sell',
  'said',
  'ye',
  'anymor',
  'ask',
  'repli',
  'would',
  'buy',
  'doll',
  'man',
  'look',
  'angri',
  'diagnosi',
  'father',
  'would',
  'laugh',
  'would',
  'made',
  'fill',
  'big',
  'box',
  'knock',
  'everi',
  'door',
  'sell',
  'worri',
  'peopl',
  'would',
  'say',
  'could',
  'sell',
  'anxiou',
  'less',
  'energet',
  'less',
  'confid',
  'doubt',
  'afraid',
  'none',
  'mind',
  'ill',
  'beat',
  'bodi',
  'also',
  'mind',
  'thought',
  'made',
  'peac',
  'deseas',
  'time',
  'left',
  'realiti',
  'final',
  'caught',
  'us',
  'turn',
  'point',
  'way',
  'move',
  'forward',
  'thing',
  'father',
  'made',
  'carri',
  'safe',
  'tri',
  'put',
  'doll',
  'box',
  'closet',
  'even',
  'tri',
  'give',
  'away',
  'heart',
  'give',
  'peac',
  'see',
  'tracker',
  'may',
  'seem',
  'excess',
  'ex',
  'knew',
  'updat',
  'mani',
  'hit',
  'nail',
  'ex',
  'came',
  'yesterday',
  'mess',
  'explain',
  'actual',
  'problem',
  'doll',
  'instead',
  'tell',
  'went',
  'friend',
  'told',
  'creepi',
  'weird',
  'grown',
  'man',
  'doll',
  'attach',
  'reinforc',
  'feel',
  'regular',
  'topic',
  'came',
  'idea',
  'get',
  'rid',
  'doll',
  'never',
  'follow',
  'thursday',
  'friend',
  'fed',
  'someth',
  'plan',
  'move',
  'togeth',
  'left',
  'ex',
  'jess',
  'talk',
  'agre',
  'jess',
  'would',
  'take',
  'doll',
  'ex',
  'would',
  'take',
  'care',
  'rest',
  'ex',
  'forgot',
  'gp',
  'confront',
  'panick',
  'actual',
  'call',
  'jess',
  'told',
  'jess',
  'told',
  'worri',
  'anyth',
  'obvious',
  'wrong',
  'broke',
  'tri',
  'plead',
  'even',
  'suggest',
  'coupl',
  'therapi',
  'stand',
  'anymor',
  'call',
  'mr',
  'lawyer',
  'told',
  'continu',
  'process',
  'noth',
  'come',
  'even',
  'ex',
  'confess',
  'tri',
  'either',
  'way',
  'ive',
  'alreadi',
  'chang',
  'lock',
  'im',
  'buy',
  'camera',
  'whole',
  'hous',
  'like',
  'thank',
  'took',
  'time',
  'mess',
  'never',
  'thought',
  'get',
  'attent',
  'got',
  'tri',
  'answer',
  'question',
  'hope',
  'everyth',
  'goe',
  'well',
  'thank',
  'still_girlfriend',
  'girlfriend_almost',
  'almost_year',
  'year_last',
  'last_year',
  'year_gave',
  'gave_key',
  'key_hous',
  'hous_spend',
  'spend_day',
  'day_live',
  'live_togeth',
  'togeth_full',
  'full_time',
  'time_day',
  'day_ago',
  'ago_make',
  'make_quick',
  'quick_trip',
  'trip_work',
  'work_ask',
  'ask_could',
  'could_invit',
  'invit_friend',
  'friend_hous',
  'hous_girl',
  'girl_night',
  'night_thursday',
  'thursday_accept',
  'accept_return',
  'return_yesterday',
  'yesterday_morn',
  'morn_fir',
  'fir_thing',
  'thing_notic',
  'notic_rag',
  'rag_doll',
  'doll_miss',
  'miss_wall',
  'wall_first',
  'first_instinct',
  'instinct_call',
  'call_girlfriend',
  'girlfriend_ask',
  'ask_put',
  'put_somewher',
  'somewher_els',
  'els_deni',
  'deni_said',
  'said_doll',
  'doll_check',
  'check_gp',
  'gp_doll',
  'doll_ye',
  'ye_gp',
  'gp_gp',
  'gp_mark',
  'mark_hous',
  'hous_one',
  'one_friend',
  'friend_let',
  'let_call',
  'call_jess',
  'jess_tri',
  'tri_nice',
  'nice_told',
  'told_gf',
  'gf_tell',
  'tell_friend',
  'friend_bring',
  'bring_back',
  'back_pm',
  'pm_ill',
  'ill_pretend',
  'pretend_never',
  'never_happen',
  'happen_ill',
  'ill_involv',
  'involv_polic',
  'polic_tri',
  'tri_fight',
  'fight_told',
  'told_gp',
  'gp_well',
  'well_gf',
  'gf_call',
  'call_back',
  'back_say',
  'say_jess',
  'jess_deni',
  'deni_doll',
  'doll_huge',
  'huge_argument',
  'argument_warn',
  'warn_play',
  'play_get',
  'get_polic',
  'polic_involv',
  'involv_wait',
  'wait_went',
  'went_polic',
  'polic_went',
  'went_hous',
  'hous_got',
  'got_doll',
  'doll_back',
  'back_press',
  'press_charg',
  'charg_gf',
  'gf_bigger',
  'bigger_argument',
  'argument_press',
  'press_charg',
  'charg_includ',
  'includ_known',
  'known_doll',
  'doll_made',
  'made_father',
  'father_could',
  'could_stolen',
  'stolen_anyth',
  'anyth_els',
  'els_bat',
  'bat_eye',
  'eye_gave',
  'gave_friend',
  'friend_chanc',
  'chanc_tri',
  'tri_play',
  'play_stupid',
  'stupid_call',
  'call_asshol',
  'asshol_drop',
  'drop_charg',
  'charg_edit',
  'edit_answer',
  'answer_question',
  'question_wll',
  'wll_tri',
  'tri_answer',
  'answer_*',
  '*_doll',
  'doll_rag',
  'rag_doll',
  'doll_better',
  'better_said',
  'said_raggedi',
  'raggedi_ann',
  'ann_doll',
  'doll_*',
  '*_father',
  'father_mani',
  'mani_hobbi',
  'hobbi_tri',
  'tri_make',
  'make_doll',
  'doll_plan',
  'plan_sell',
  'sell_first',
  'first_one',
  'one_made',
  'made_freak',
  'freak_raggedi',
  'raggedi_ann',
  'ann_doll',
  'doll_last',
  'last_manli',
  'manli_sell',
  'sell_raggedi',
  'raggedi_ann',
  'ann_doll',
  'doll_ridicul',
  'ridicul_know',
  'know_gave',
  'gave_one',
  'one_actual',
  'actual_made',
  'made_best',
  'best_friend',
  'friend_doll',
  'doll_hang',
  'hang_room',
  'room_pass',
  'pass_away',
  'away_hung',
  'hung_live',
  'live_room',
  'room_xs',
  'xs_eye',
  'eye_look',
  'look_creepi',
  'creepi_look',
  'look_dead',
  'dead_*',
  '*_gp',
  'gp_home',
  'home_rob',
  'rob_month',
  'month_ago',
  'ago_care',
  'care_clean',
  'clean_hous',
  'hous_far',
  'far_leav',
  'leav_doll',
  'doll_ive',
  'ive_expens',
  'expens_item',
  'item_could',
  'could_stolen',
  'stolen_know',
  'know_would',
  'would_steal',
  'steal_bloodi',
  'bloodi_doll',
  'doll_sick',
  'sick_joke',
  'joke_*',
  '*_gf',
  'gf_never',
  'never_complain',
  'complain_least',
  'least_talk',
  'talk_tell',
  'tell_drop',
  'drop_charg',
  'charg_talk',
  'talk_tomorrow',
  'tomorrow_find',
  'find_let',
  'let_friend',
  'friend_take',
  'take_doll',
  'doll_theyv',
  'theyv_never',
  'never_anyth',
  'anyth_like',
  'like_relationship',
  'relationship_right',
  'right_im',
  'im_think',
  'think_break',
  'break_&',
  '&_xb',
  'xb_hope',
  'hope_right',
  'right_updat',
  'updat_want',
  'want_give',
  'give_context',
  'context_doll',
  'doll_import',
  'import_correct',
  'correct_say',
  'say_manli',
  'manli_sell',
  'sell_doll',
  'doll_father',
  'father_got',
  'got_sick',
  'sick_kidney',
  'kidney_failur',
  'failur_retir',
  'retir_fill',
  'fill_time',
  'time_hobbi',
  'hobbi_year',
  'year_diagnosi',
  'diagnosi_came',
  'came_school',
  'school_one',
  'one_day',
  'day_finish',
  'finish_doll',
  'doll_ask',
  'ask_go',
  'go_sell',
  'sell_said',
  'said_ye',
  'ye_anymor',
  'anymor_ask',
  'ask_repli',
  'repli_would',
  'would_buy',
  'buy_doll',
  'doll_man',
  'man_look',
  'look_angri',
  'angri_diagnosi',
  'diagnosi_father',
  'father_would',
  'would_laugh',
  'laugh_would',
  'would_made',
  'made_fill',
  'fill_big',
  'big_box',
  'box_knock',
  'knock_everi',
  'everi_door',
  'door_sell',
  'sell_worri',
  'worri_peopl',
  'peopl_would',
  'would_say',
  'say_could',
  'could_sell',
  'sell_anxiou',
  'anxiou_less',
  'less_energet',
  'energet_less',
  'less_confid',
  'confid_doubt',
  'doubt_afraid',
  'afraid_none',
  'none_mind',
  'mind_ill',
  'ill_beat',
  'beat_bodi',
  'bodi_also',
  'also_mind',
  'mind_thought',
  'thought_made',
  'made_peac',
  'peac_deseas',
  'deseas_time',
  'time_left',
  'left_realiti',
  'realiti_final',
  'final_caught',
  'caught_us',
  'us_turn',
  'turn_point',
  'point_way',
  'way_move',
  'move_forward',
  'forward_thing',
  'thing_father',
  'father_made',
  'made_carri',
  'carri_safe',
  'safe_tri',
  'tri_put',
  'put_doll',
  'doll_box',
  'box_closet',
  'closet_even',
  'even_tri',
  'tri_give',
  'give_away',
  'away_heart',
  'heart_give',
  'give_peac',
  'peac_see',
  'see_tracker',
  'tracker_may',
  'may_seem',
  'seem_excess',
  'excess_ex',
  'ex_knew',
  'knew_updat',
  'updat_mani',
  'mani_hit',
  'hit_nail',
  'nail_ex',
  'ex_came',
  'came_yesterday',
  'yesterday_mess',
  'mess_explain',
  'explain_actual',
  'actual_problem',
  'problem_doll',
  'doll_instead',
  'instead_tell',
  'tell_went',
  'went_friend',
  'friend_told',
  'told_creepi',
  'creepi_weird',
  'weird_grown',
  'grown_man',
  'man_doll',
  'doll_attach',
  'attach_reinforc',
  'reinforc_feel',
  'feel_regular',
  'regular_topic',
  'topic_came',
  'came_idea',
  'idea_get',
  'get_rid',
  'rid_doll',
  'doll_never',
  'never_follow',
  'follow_thursday',
  'thursday_friend',
  'friend_fed',
  'fed_someth',
  'someth_plan',
  'plan_move',
  'move_togeth',
  'togeth_left',
  'left_ex',
  'ex_jess',
  'jess_talk',
  'talk_agre',
  'agre_jess',
  'jess_would',
  'would_take',
  'take_doll',
  'doll_ex',
  'ex_would',
  'would_take',
  'take_care',
  'care_rest',
  'rest_ex',
  'ex_forgot',
  'forgot_gp',
  'gp_confront',
  'confront_panick',
  'panick_actual',
  'actual_call',
  'call_jess',
  'jess_told',
  'told_jess',
  'jess_told',
  'told_worri',
  'worri_anyth',
  'anyth_obvious',
  'obvious_wrong',
  'wrong_broke',
  'broke_tri',
  'tri_plead',
  'plead_even',
  'even_suggest',
  'suggest_coupl',
  'coupl_therapi',
  'therapi_stand',
  'stand_anymor',
  'anymor_call',
  'call_mr',
  'mr_lawyer',
  'lawyer_told',
  'told_continu',
  'continu_process',
  'process_noth',
  'noth_come',
  'come_even',
  'even_ex',
  'ex_confess',
  'confess_tri',
  'tri_either',
  'either_way',
  'way_ive',
  'ive_alreadi',
  'alreadi_chang',
  'chang_lock',
  'lock_im',
  'im_buy',
  'buy_camera',
  'camera_whole',
  'whole_hous',
  'hous_like',
  'like_thank',
  'thank_took',
  'took_time',
  'time_mess',
  'mess_never',
  'never_thought',
  'thought_get',
  'get_attent',
  'attent_got',
  'got_tri',
  'tri_answer',
  'answer_question',
  'question_hope',
  'hope_everyth',
  'everyth_goe',
  'goe_well',
  'well_thank',
  'still_girlfriend_almost',
  'girlfriend_almost_year',
  'almost_year_last',
  'year_last_year',
  'last_year_gave',
  'year_gave_key',
  'gave_key_hous',
  'key_hous_spend',
  'hous_spend_day',
  'spend_day_live',
  'day_live_togeth',
  'live_togeth_full',
  'togeth_full_time',
  'full_time_day',
  'time_day_ago',
  'day_ago_make',
  'ago_make_quick',
  'make_quick_trip',
  'quick_trip_work',
  'trip_work_ask',
  'work_ask_could',
  'ask_could_invit',
  'could_invit_friend',
  'invit_friend_hous',
  'friend_hous_girl',
  'hous_girl_night',
  'girl_night_thursday',
  'night_thursday_accept',
  'thursday_accept_return',
  'accept_return_yesterday',
  'return_yesterday_morn',
  'yesterday_morn_fir',
  'morn_fir_thing',
  'fir_thing_notic',
  'thing_notic_rag',
  'notic_rag_doll',
  'rag_doll_miss',
  'doll_miss_wall',
  'miss_wall_first',
  ...],
 ['year',
  'old',
  'foster',
  'daughter',
  'name',
  'may',
  'around',
  'month',
  'love',
  'piec',
  'im',
  'consid',
  'adopt',
  'even',
  'sister',
  'kate',
  'recent',
  'suffer',
  'miscarriag',
  'took',
  'real',
  'toll',
  'marriag',
  'get',
  'divorc',
  'husband',
  'stay',
  'cant',
  'bear',
  'live',
  'right',
  'kate',
  'howev',
  'horribl',
  'guest',
  'may',
  'everytim',
  'may',
  'ask',
  'someth',
  'talk',
  'kate',
  'burst',
  'tear',
  'yell',
  'kate',
  'great',
  'sister',
  'understand',
  'griev',
  'mean',
  'lash',
  'may',
  'simpli',
  'exist',
  'ive',
  'told',
  'multipl',
  'time',
  'yell',
  'may',
  'came',
  'head',
  'confront',
  'morn',
  'may',
  'ask',
  'kate',
  'could',
  'move',
  'could',
  'get',
  'snack',
  'cabinet',
  'kate',
  'snap',
  'wait',
  'damn',
  'second',
  'brat',
  'overheard',
  'live',
  'room',
  'made',
  'kate',
  'move',
  'way',
  'told',
  'apolog',
  'may',
  'kate',
  'burst',
  'tear',
  'say',
  'take',
  'may',
  'remind',
  'lost',
  'told',
  'grown',
  'adult',
  'know',
  'better',
  'bulli',
  'child',
  'problem',
  'told',
  'may',
  'go',
  'room',
  'real',
  'quick',
  'kate',
  'got',
  'huge',
  'argument',
  'end',
  'tell',
  'take',
  'see',
  'foster',
  'daughter',
  'could',
  'find',
  'somewher',
  'els',
  'stay',
  'left',
  'parent',
  'hous',
  'told',
  'everyth',
  'ive',
  'get',
  'massag',
  'day',
  'tell',
  'horribl',
  'sister',
  'said',
  'griev',
  'ask',
  'could',
  'put',
  'someon',
  'els',
  'kid',
  'think',
  'disgust',
  'thing',
  'send',
  'anyon',
  'person',
  'think',
  'insensit',
  'daughter',
  'relationship',
  'accord',
  'mom',
  'cri',
  'hour',
  'stop',
  'talk',
  'im',
  'monster',
  'think',
  'feel',
  'aita',
  'think',
  'right',
  'yell',
  'kid',
  'lost',
  'year_old',
  'old_foster',
  'foster_daughter',
  'daughter_name',
  'name_may',
  'may_around',
  'around_month',
  'month_love',
  'love_piec',
  'piec_im',
  'im_consid',
  'consid_adopt',
  'adopt_even',
  'even_sister',
  'sister_kate',
  'kate_recent',
  'recent_suffer',
  'suffer_miscarriag',
  'miscarriag_took',
  'took_real',
  'real_toll',
  'toll_marriag',
  'marriag_get',
  'get_divorc',
  'divorc_husband',
  'husband_stay',
  'stay_cant',
  'cant_bear',
  'bear_live',
  'live_right',
  'right_kate',
  'kate_howev',
  'howev_horribl',
  'horribl_guest',
  'guest_may',
  'may_everytim',
  'everytim_may',
  'may_ask',
  'ask_someth',
  'someth_talk',
  'talk_kate',
  'kate_burst',
  'burst_tear',
  'tear_yell',
  'yell_kate',
  'kate_great',
  'great_sister',
  'sister_understand',
  'understand_griev',
  'griev_mean',
  'mean_lash',
  'lash_may',
  'may_simpli',
  'simpli_exist',
  'exist_ive',
  'ive_told',
  'told_multipl',
  'multipl_time',
  'time_yell',
  'yell_may',
  'may_came',
  'came_head',
  'head_confront',
  'confront_morn',
  'morn_may',
  'may_ask',
  'ask_kate',
  'kate_could',
  'could_move',
  'move_could',
  'could_get',
  'get_snack',
  'snack_cabinet',
  'cabinet_kate',
  'kate_snap',
  'snap_wait',
  'wait_damn',
  'damn_second',
  'second_brat',
  'brat_overheard',
  'overheard_live',
  'live_room',
  'room_made',
  'made_kate',
  'kate_move',
  'move_way',
  'way_told',
  'told_apolog',
  'apolog_may',
  'may_kate',
  'kate_burst',
  'burst_tear',
  'tear_say',
  'say_take',
  'take_may',
  'may_remind',
  'remind_lost',
  'lost_told',
  'told_grown',
  'grown_adult',
  'adult_know',
  'know_better',
  'better_bulli',
  'bulli_child',
  'child_problem',
  'problem_told',
  'told_may',
  'may_go',
  'go_room',
  'room_real',
  'real_quick',
  'quick_kate',
  'kate_got',
  'got_huge',
  'huge_argument',
  'argument_end',
  'end_tell',
  'tell_take',
  'take_see',
  'see_foster',
  'foster_daughter',
  'daughter_could',
  'could_find',
  'find_somewher',
  'somewher_els',
  'els_stay',
  'stay_left',
  'left_parent',
  'parent_hous',
  'hous_told',
  'told_everyth',
  'everyth_ive',
  'ive_get',
  'get_massag',
  'massag_day',
  'day_tell',
  'tell_horribl',
  'horribl_sister',
  'sister_said',
  'said_griev',
  'griev_ask',
  'ask_could',
  'could_put',
  'put_someon',
  'someon_els',
  'els_kid',
  'kid_think',
  'think_disgust',
  'disgust_thing',
  'thing_send',
  'send_anyon',
  'anyon_person',
  'person_think',
  'think_insensit',
  'insensit_daughter',
  'daughter_relationship',
  'relationship_accord',
  'accord_mom',
  'mom_cri',
  'cri_hour',
  'hour_stop',
  'stop_talk',
  'talk_im',
  'im_monster',
  'monster_think',
  'think_feel',
  'feel_aita',
  'aita_think',
  'think_right',
  'right_yell',
  'yell_kid',
  'kid_lost',
  'year_old_foster',
  'old_foster_daughter',
  'foster_daughter_name',
  'daughter_name_may',
  'name_may_around',
  'may_around_month',
  'around_month_love',
  'month_love_piec',
  'love_piec_im',
  'piec_im_consid',
  'im_consid_adopt',
  'consid_adopt_even',
  'adopt_even_sister',
  'even_sister_kate',
  'sister_kate_recent',
  'kate_recent_suffer',
  'recent_suffer_miscarriag',
  'suffer_miscarriag_took',
  'miscarriag_took_real',
  'took_real_toll',
  'real_toll_marriag',
  'toll_marriag_get',
  'marriag_get_divorc',
  'get_divorc_husband',
  'divorc_husband_stay',
  'husband_stay_cant',
  'stay_cant_bear',
  'cant_bear_live',
  'bear_live_right',
  'live_right_kate',
  'right_kate_howev',
  'kate_howev_horribl',
  'howev_horribl_guest',
  'horribl_guest_may',
  'guest_may_everytim',
  'may_everytim_may',
  'everytim_may_ask',
  'may_ask_someth',
  'ask_someth_talk',
  'someth_talk_kate',
  'talk_kate_burst',
  'kate_burst_tear',
  'burst_tear_yell',
  'tear_yell_kate',
  'yell_kate_great',
  'kate_great_sister',
  'great_sister_understand',
  'sister_understand_griev',
  'understand_griev_mean',
  'griev_mean_lash',
  'mean_lash_may',
  'lash_may_simpli',
  'may_simpli_exist',
  'simpli_exist_ive',
  'exist_ive_told',
  'ive_told_multipl',
  'told_multipl_time',
  'multipl_time_yell',
  'time_yell_may',
  'yell_may_came',
  'may_came_head',
  'came_head_confront',
  'head_confront_morn',
  'confront_morn_may',
  'morn_may_ask',
  'may_ask_kate',
  'ask_kate_could',
  'kate_could_move',
  'could_move_could',
  'move_could_get',
  'could_get_snack',
  'get_snack_cabinet',
  'snack_cabinet_kate',
  'cabinet_kate_snap',
  'kate_snap_wait',
  'snap_wait_damn',
  'wait_damn_second',
  'damn_second_brat',
  'second_brat_overheard',
  'brat_overheard_live',
  'overheard_live_room',
  'live_room_made',
  'room_made_kate',
  'made_kate_move',
  'kate_move_way',
  'move_way_told',
  'way_told_apolog',
  'told_apolog_may',
  'apolog_may_kate',
  'may_kate_burst',
  'kate_burst_tear',
  'burst_tear_say',
  'tear_say_take',
  'say_take_may',
  'take_may_remind',
  'may_remind_lost',
  'remind_lost_told',
  'lost_told_grown',
  'told_grown_adult',
  'grown_adult_know',
  'adult_know_better',
  'know_better_bulli',
  'better_bulli_child',
  'bulli_child_problem',
  'child_problem_told',
  'problem_told_may',
  'told_may_go',
  'may_go_room',
  'go_room_real',
  'room_real_quick',
  'real_quick_kate',
  'quick_kate_got',
  'kate_got_huge',
  'got_huge_argument',
  'huge_argument_end',
  'argument_end_tell',
  'end_tell_take',
  'tell_take_see',
  'take_see_foster',
  'see_foster_daughter',
  'foster_daughter_could',
  'daughter_could_find',
  'could_find_somewher',
  'find_somewher_els',
  'somewher_els_stay',
  'els_stay_left',
  'stay_left_parent',
  'left_parent_hous',
  'parent_hous_told',
  'hous_told_everyth',
  'told_everyth_ive',
  'everyth_ive_get',
  'ive_get_massag',
  'get_massag_day',
  'massag_day_tell',
  'day_tell_horribl',
  'tell_horribl_sister',
  'horribl_sister_said',
  'sister_said_griev',
  'said_griev_ask',
  'griev_ask_could',
  'ask_could_put',
  'could_put_someon',
  'put_someon_els',
  'someon_els_kid',
  'els_kid_think',
  'kid_think_disgust',
  'think_disgust_thing',
  'disgust_thing_send',
  'thing_send_anyon',
  'send_anyon_person',
  'anyon_person_think',
  'person_think_insensit',
  'think_insensit_daughter',
  'insensit_daughter_relationship',
  'daughter_relationship_accord',
  'relationship_accord_mom',
  'accord_mom_cri',
  'mom_cri_hour',
  'cri_hour_stop',
  'hour_stop_talk',
  'stop_talk_im',
  'talk_im_monster',
  'im_monster_think',
  'monster_think_feel',
  'think_feel_aita',
  'feel_aita_think',
  'aita_think_right',
  'think_right_yell',
  'right_yell_kid',
  'yell_kid_lost'],
 ['girlfriend',
  'togeth',
  'almost',
  'year',
  'gift',
  'sorta',
  'sore',
  'spot',
  'least',
  'first',
  'year',
  'togeth',
  'made',
  'cake',
  'thing',
  'birthday',
  'nice',
  'everyth',
  'took',
  'like',
  'half',
  'back',
  'give',
  'famili',
  'seem',
  'kinda',
  'weird',
  'like',
  'present',
  'im',
  'take',
  'part',
  'back',
  'birthday',
  'came',
  'year',
  'bunch',
  'stuff',
  'got',
  'balloon',
  'flower',
  'card',
  'gift',
  'christma',
  'came',
  'gave',
  'gift',
  'get',
  'anyth',
  'fallow',
  'birthday',
  'mine',
  'noth',
  'birthday',
  'year',
  'got',
  'gift',
  'go',
  'like',
  'first',
  'year',
  'last',
  'christma',
  'want',
  'seat',
  'cover',
  'car',
  'bought',
  'want',
  'see',
  'even',
  'gave',
  'card',
  'anyth',
  'went',
  'lunch',
  'day',
  'christma',
  'kept',
  'insist',
  'come',
  'felt',
  'like',
  'give',
  'sinc',
  'still',
  'wrap',
  'sit',
  'live',
  'room',
  'sorta',
  'last',
  'straw',
  'gift',
  'birthday',
  'came',
  'thing',
  'noth',
  'almost',
  'year',
  'birthday',
  'christmas',
  'got',
  'half',
  'gift',
  'ive',
  'tri',
  'talk',
  'claim',
  'forgot',
  'mani',
  'peopl',
  'shop',
  'christma',
  'etc',
  'drop',
  'hint',
  'birthday',
  'differ',
  'stuff',
  'knew',
  'want',
  'want',
  'buy',
  'birthday',
  'came',
  'get',
  'anyth',
  'figur',
  'keep',
  'put',
  'effort',
  'buy',
  'gift',
  'someon',
  'cant',
  'bother',
  'even',
  'make',
  'card',
  'financi',
  'thing',
  'either',
  'make',
  'amount',
  'like',
  'said',
  'id',
  'appreci',
  'homemad',
  'card',
  'drew',
  'someth',
  'went',
  'celebr',
  'saturday',
  'kept',
  'say',
  'excit',
  'get',
  'gift',
  'took',
  'dinner',
  'want',
  'come',
  'came',
  'hous',
  'kept',
  'look',
  'around',
  'said',
  'okay',
  'im',
  'readi',
  'open',
  'gift',
  'said',
  'gift',
  'said',
  'serious',
  'birthdayyyi',
  'said',
  'knowww',
  'said',
  'quit',
  'mess',
  'around',
  'said',
  'im',
  'mess',
  'around',
  'realli',
  'get',
  'anyth',
  'said',
  'come',
  'said',
  'know',
  'want',
  'said',
  'realli',
  'even',
  'get',
  'card',
  'said',
  'figur',
  'gift',
  'anymor',
  'mean',
  'give',
  'gave',
  'usual',
  'excus',
  'hard',
  'shop',
  'im',
  'tell',
  'id',
  'like',
  'stuff',
  '-',
  'buck',
  'well',
  'forget',
  'thing',
  'said',
  'reciev',
  'give',
  'thank',
  'passiv',
  'aggress',
  'asshol',
  'ruin',
  'birthday',
  'aita',
  'get',
  'girlfriend',
  'birthday',
  'present',
  'girlfriend_togeth',
  'togeth_almost',
  'almost_year',
  'year_gift',
  'gift_sorta',
  'sorta_sore',
  'sore_spot',
  'spot_least',
  'least_first',
  'first_year',
  'year_togeth',
  'togeth_made',
  'made_cake',
  'cake_thing',
  'thing_birthday',
  'birthday_nice',
  'nice_everyth',
  'everyth_took',
  'took_like',
  'like_half',
  'half_back',
  'back_give',
  'give_famili',
  'famili_seem',
  'seem_kinda',
  'kinda_weird',
  'weird_like',
  'like_present',
  'present_im',
  'im_take',
  'take_part',
  'part_back',
  'back_birthday',
  'birthday_came',
  'came_year',
  'year_bunch',
  'bunch_stuff',
  'stuff_got',
  'got_balloon',
  'balloon_flower',
  'flower_card',
  'card_gift',
  'gift_christma',
  'christma_came',
  'came_gave',
  'gave_gift',
  'gift_get',
  'get_anyth',
  'anyth_fallow',
  'fallow_birthday',
  'birthday_mine',
  'mine_noth',
  'noth_birthday',
  'birthday_year',
  'year_got',
  'got_gift',
  'gift_go',
  'go_like',
  'like_first',
  'first_year',
  'year_last',
  'last_christma',
  'christma_want',
  'want_seat',
  'seat_cover',
  'cover_car',
  'car_bought',
  'bought_want',
  'want_see',
  'see_even',
  'even_gave',
  'gave_card',
  'card_anyth',
  'anyth_went',
  'went_lunch',
  'lunch_day',
  'day_christma',
  'christma_kept',
  'kept_insist',
  'insist_come',
  'come_felt',
  'felt_like',
  'like_give',
  'give_sinc',
  'sinc_still',
  'still_wrap',
  'wrap_sit',
  'sit_live',
  'live_room',
  'room_sorta',
  'sorta_last',
  'last_straw',
  'straw_gift',
  'gift_birthday',
  'birthday_came',
  'came_thing',
  'thing_noth',
  'noth_almost',
  'almost_year',
  'year_birthday',
  'birthday_christmas',
  'christmas_got',
  'got_half',
  'half_gift',
  'gift_ive',
  'ive_tri',
  'tri_talk',
  'talk_claim',
  'claim_forgot',
  'forgot_mani',
  'mani_peopl',
  'peopl_shop',
  'shop_christma',
  'christma_etc',
  'etc_drop',
  'drop_hint',
  'hint_birthday',
  'birthday_differ',
  'differ_stuff',
  'stuff_knew',
  'knew_want',
  'want_want',
  'want_buy',
  'buy_birthday',
  'birthday_came',
  'came_get',
  'get_anyth',
  'anyth_figur',
  'figur_keep',
  'keep_put',
  'put_effort',
  'effort_buy',
  'buy_gift',
  'gift_someon',
  'someon_cant',
  'cant_bother',
  'bother_even',
  'even_make',
  'make_card',
  'card_financi',
  'financi_thing',
  'thing_either',
  'either_make',
  'make_amount',
  'amount_like',
  'like_said',
  'said_id',
  'id_appreci',
  'appreci_homemad',
  'homemad_card',
  'card_drew',
  'drew_someth',
  'someth_went',
  'went_celebr',
  'celebr_saturday',
  'saturday_kept',
  'kept_say',
  'say_excit',
  'excit_get',
  'get_gift',
  'gift_took',
  'took_dinner',
  'dinner_want',
  'want_come',
  'come_came',
  'came_hous',
  'hous_kept',
  'kept_look',
  'look_around',
  'around_said',
  'said_okay',
  'okay_im',
  'im_readi',
  'readi_open',
  'open_gift',
  'gift_said',
  'said_gift',
  'gift_said',
  'said_serious',
  'serious_birthdayyyi',
  'birthdayyyi_said',
  'said_knowww',
  'knowww_said',
  'said_quit',
  'quit_mess',
  'mess_around',
  'around_said',
  'said_im',
  'im_mess',
  'mess_around',
  'around_realli',
  'realli_get',
  'get_anyth',
  'anyth_said',
  'said_come',
  'come_said',
  'said_know',
  'know_want',
  'want_said',
  'said_realli',
  'realli_even',
  'even_get',
  'get_card',
  'card_said',
  'said_figur',
  'figur_gift',
  'gift_anymor',
  'anymor_mean',
  'mean_give',
  'give_gave',
  'gave_usual',
  'usual_excus',
  'excus_hard',
  'hard_shop',
  'shop_im',
  'im_tell',
  'tell_id',
  'id_like',
  'like_stuff',
  'stuff_-',
  '-_buck',
  'buck_well',
  'well_forget',
  'forget_thing',
  'thing_said',
  'said_reciev',
  'reciev_give',
  'give_thank',
  'thank_passiv',
  'passiv_aggress',
  'aggress_asshol',
  'asshol_ruin',
  'ruin_birthday',
  'birthday_aita',
  'aita_get',
  'get_girlfriend',
  'girlfriend_birthday',
  'birthday_present',
  'girlfriend_togeth_almost',
  'togeth_almost_year',
  'almost_year_gift',
  'year_gift_sorta',
  'gift_sorta_sore',
  'sorta_sore_spot',
  'sore_spot_least',
  'spot_least_first',
  'least_first_year',
  'first_year_togeth',
  'year_togeth_made',
  'togeth_made_cake',
  'made_cake_thing',
  'cake_thing_birthday',
  'thing_birthday_nice',
  'birthday_nice_everyth',
  'nice_everyth_took',
  'everyth_took_like',
  'took_like_half',
  'like_half_back',
  'half_back_give',
  'back_give_famili',
  'give_famili_seem',
  'famili_seem_kinda',
  'seem_kinda_weird',
  'kinda_weird_like',
  'weird_like_present',
  'like_present_im',
  'present_im_take',
  'im_take_part',
  'take_part_back',
  'part_back_birthday',
  'back_birthday_came',
  'birthday_came_year',
  'came_year_bunch',
  'year_bunch_stuff',
  'bunch_stuff_got',
  'stuff_got_balloon',
  'got_balloon_flower',
  'balloon_flower_card',
  'flower_card_gift',
  'card_gift_christma',
  'gift_christma_came',
  'christma_came_gave',
  'came_gave_gift',
  'gave_gift_get',
  'gift_get_anyth',
  'get_anyth_fallow',
  'anyth_fallow_birthday',
  'fallow_birthday_mine',
  'birthday_mine_noth',
  'mine_noth_birthday',
  'noth_birthday_year',
  'birthday_year_got',
  'year_got_gift',
  'got_gift_go',
  'gift_go_like',
  'go_like_first',
  'like_first_year',
  'first_year_last',
  'year_last_christma',
  'last_christma_want',
  'christma_want_seat',
  'want_seat_cover',
  'seat_cover_car',
  'cover_car_bought',
  'car_bought_want',
  'bought_want_see',
  'want_see_even',
  'see_even_gave',
  'even_gave_card',
  'gave_card_anyth',
  'card_anyth_went',
  'anyth_went_lunch',
  'went_lunch_day',
  'lunch_day_christma',
  'day_christma_kept',
  'christma_kept_insist',
  'kept_insist_come',
  'insist_come_felt',
  'come_felt_like',
  'felt_like_give',
  'like_give_sinc',
  'give_sinc_still',
  'sinc_still_wrap',
  'still_wrap_sit',
  'wrap_sit_live',
  'sit_live_room',
  'live_room_sorta',
  'room_sorta_last',
  'sorta_last_straw',
  'last_straw_gift',
  'straw_gift_birthday',
  'gift_birthday_came',
  'birthday_came_thing',
  'came_thing_noth',
  'thing_noth_almost',
  'noth_almost_year',
  'almost_year_birthday',
  'year_birthday_christmas',
  'birthday_christmas_got',
  'christmas_got_half',
  'got_half_gift',
  'half_gift_ive',
  'gift_ive_tri',
  'ive_tri_talk',
  'tri_talk_claim',
  'talk_claim_forgot',
  'claim_forgot_mani',
  'forgot_mani_peopl',
  'mani_peopl_shop',
  'peopl_shop_christma',
  'shop_christma_etc',
  'christma_etc_drop',
  'etc_drop_hint',
  'drop_hint_birthday',
  'hint_birthday_differ',
  'birthday_differ_stuff',
  'differ_stuff_knew',
  'stuff_knew_want',
  'knew_want_want',
  'want_want_buy',
  'want_buy_birthday',
  'buy_birthday_came',
  'birthday_came_get',
  'came_get_anyth',
  'get_anyth_figur',
  'anyth_figur_keep',
  'figur_keep_put',
  'keep_put_effort',
  'put_effort_buy',
  'effort_buy_gift',
  'buy_gift_someon',
  'gift_someon_cant',
  'someon_cant_bother',
  'cant_bother_even',
  'bother_even_make',
  'even_make_card',
  'make_card_financi',
  'card_financi_thing',
  'financi_thing_either',
  'thing_either_make',
  'either_make_amount',
  'make_amount_like',
  'amount_like_said',
  'like_said_id',
  'said_id_appreci',
  'id_appreci_homemad',
  'appreci_homemad_card',
  'homemad_card_drew',
  'card_drew_someth',
  'drew_someth_went',
  'someth_went_celebr',
  'went_celebr_saturday',
  'celebr_saturday_kept',
  'saturday_kept_say',
  'kept_say_excit',
  'say_excit_get',
  'excit_get_gift',
  'get_gift_took',
  'gift_took_dinner',
  'took_dinner_want',
  'dinner_want_come',
  'want_come_came',
  'come_came_hous',
  'came_hous_kept',
  'hous_kept_look',
  'kept_look_around',
  'look_around_said',
  'around_said_okay',
  'said_okay_im',
  'okay_im_readi',
  'im_readi_open',
  'readi_open_gift',
  'open_gift_said',
  'gift_said_gift',
  'said_gift_said',
  'gift_said_serious',
  'said_serious_birthdayyyi',
  'serious_birthdayyyi_said',
  'birthdayyyi_said_knowww',
  'said_knowww_said',
  'knowww_said_quit',
  'said_quit_mess',
  'quit_mess_around',
  'mess_around_said',
  'around_said_im',
  'said_im_mess',
  'im_mess_around',
  'mess_around_realli',
  'around_realli_get',
  'realli_get_anyth',
  'get_anyth_said',
  'anyth_said_come',
  'said_come_said',
  'come_said_know',
  'said_know_want',
  'know_want_said',
  'want_said_realli',
  'said_realli_even',
  'realli_even_get',
  'even_get_card',
  'get_card_said',
  'card_said_figur',
  'said_figur_gift',
  'figur_gift_anymor',
  'gift_anymor_mean',
  'anymor_mean_give',
  'mean_give_gave',
  'give_gave_usual',
  'gave_usual_excus',
  'usual_excus_hard',
  'excus_hard_shop',
  'hard_shop_im',
  'shop_im_tell',
  'im_tell_id',
  'tell_id_like',
  'id_like_stuff',
  'like_stuff_-',
  'stuff_-_buck',
  '-_buck_well',
  'buck_well_forget',
  'well_forget_thing',
  'forget_thing_said',
  'thing_said_reciev',
  'said_reciev_give',
  'reciev_give_thank',
  'give_thank_passiv',
  'thank_passiv_aggress',
  'passiv_aggress_asshol',
  'aggress_asshol_ruin',
  'asshol_ruin_birthday',
  'ruin_birthday_aita',
  'birthday_aita_get',
  'aita_get_girlfriend',
  'get_girlfriend_birthday',
  'girlfriend_birthday_present'],
 ['famili',
  'south',
  'asia',
  'live',
  'state',
  'parent',
  'love',
  'older',
  'brother',
  'toler',
  'expect',
  'stay',
  'home',
  'take',
  'care',
  'brother',
  'got',
  'partial',
  'scholarship',
  'state',
  'school',
  'gtfo',
  'work',
  'four',
  'year',
  'undergrad',
  'fortun',
  'enough',
  'get',
  'full',
  'scholarship',
  'degre',
  'graduat',
  'univers',
  'small',
  'debt',
  'two',
  'degre',
  'found',
  'career',
  'realli',
  'enjoy',
  'husband',
  'love',
  'parent',
  'paid',
  'brother',
  'educ',
  'well',
  'chosen',
  'five',
  'children',
  'go',
  'privat',
  'school',
  'kind',
  'extra',
  'curricular',
  'activ',
  'wife',
  'sahm',
  'even',
  'though',
  'nanni',
  'know',
  'five',
  'young',
  'children',
  'would',
  'difficult',
  'manag',
  'im',
  'say',
  'degre',
  'well',
  'chosen',
  'one',
  'incom',
  'household',
  'expect',
  'first',
  'child',
  'wait',
  'year',
  'decid',
  'start',
  'famili',
  'stop',
  'two',
  'husband',
  'get',
  'vasectomi',
  'afterward',
  'much',
  'agreement',
  'futur',
  'parent',
  'howev',
  'decid',
  'go',
  'sell',
  'home',
  'come',
  'live',
  'us',
  'larg',
  'properti',
  'in-law',
  'suit',
  'hcol',
  'citi',
  'west',
  'coast',
  'told',
  'husband',
  'want',
  'live',
  'us',
  'concur',
  'told',
  'said',
  'alreadi',
  'list',
  'home',
  'duti',
  'daughter',
  'would',
  'take',
  'care',
  'parent',
  'old',
  'age',
  'said',
  'gave',
  'money',
  'sale',
  'home',
  'would',
  'find',
  'nice',
  'retir',
  'home',
  'could',
  'live',
  'would',
  'pay',
  'bill',
  'pass',
  'away',
  'like',
  'idea',
  'much',
  'call',
  'ungrat',
  'child',
  'expect',
  'sent',
  'check',
  'one',
  'year',
  'worth',
  'rent',
  'food',
  'util',
  'sundri',
  'said',
  'move',
  'one',
  'year',
  'turn',
  'respons',
  'point',
  'told',
  'contact',
  'without',
  'go',
  'lawyer',
  'play',
  'whack',
  'mole',
  'block',
  'attempt',
  'reach',
  'famili',
  'member',
  'state',
  'back',
  'home',
  'call',
  'asshol',
  'brother',
  'contact',
  'said',
  'make',
  'famili',
  'look',
  'bad',
  'take',
  'gave',
  'choic',
  'either',
  'take',
  'never',
  'bring',
  'would',
  'go',
  'nc',
  'well',
  'harsh',
  'make',
  'asshol',
  'probabl',
  'add',
  'approv',
  'marri',
  'person',
  'cultur',
  'religion',
  'contribut',
  'wed',
  'even',
  'though',
  'attend',
  'famili_south',
  'south_asia',
  'asia_live',
  'live_state',
  'state_parent',
  'parent_love',
  'love_older',
  'older_brother',
  'brother_toler',
  'toler_expect',
  'expect_stay',
  'stay_home',
  'home_take',
  'take_care',
  'care_brother',
  'brother_got',
  'got_partial',
  'partial_scholarship',
  'scholarship_state',
  'state_school',
  'school_gtfo',
  'gtfo_work',
  'work_four',
  'four_year',
  'year_undergrad',
  'undergrad_fortun',
  'fortun_enough',
  'enough_get',
  'get_full',
  'full_scholarship',
  'scholarship_degre',
  'degre_graduat',
  'graduat_univers',
  'univers_small',
  'small_debt',
  'debt_two',
  'two_degre',
  'degre_found',
  'found_career',
  'career_realli',
  'realli_enjoy',
  'enjoy_husband',
  'husband_love',
  'love_parent',
  'parent_paid',
  'paid_brother',
  'brother_educ',
  'educ_well',
  'well_chosen',
  'chosen_five',
  'five_children',
  'children_go',
  'go_privat',
  'privat_school',
  'school_kind',
  'kind_extra',
  'extra_curricular',
  'curricular_activ',
  'activ_wife',
  'wife_sahm',
  'sahm_even',
  'even_though',
  'though_nanni',
  'nanni_know',
  'know_five',
  'five_young',
  'young_children',
  'children_would',
  'would_difficult',
  'difficult_manag',
  'manag_im',
  'im_say',
  'say_degre',
  'degre_well',
  'well_chosen',
  'chosen_one',
  'one_incom',
  'incom_household',
  'household_expect',
  'expect_first',
  'first_child',
  'child_wait',
  'wait_year',
  'year_decid',
  'decid_start',
  'start_famili',
  'famili_stop',
  'stop_two',
  'two_husband',
  'husband_get',
  'get_vasectomi',
  'vasectomi_afterward',
  'afterward_much',
  'much_agreement',
  'agreement_futur',
  'futur_parent',
  'parent_howev',
  'howev_decid',
  'decid_go',
  'go_sell',
  'sell_home',
  'home_come',
  'come_live',
  'live_us',
  'us_larg',
  'larg_properti',
  'properti_in-law',
  'in-law_suit',
  'suit_hcol',
  'hcol_citi',
  'citi_west',
  'west_coast',
  'coast_told',
  'told_husband',
  'husband_want',
  'want_live',
  'live_us',
  'us_concur',
  'concur_told',
  'told_said',
  'said_alreadi',
  'alreadi_list',
  'list_home',
  'home_duti',
  'duti_daughter',
  'daughter_would',
  'would_take',
  'take_care',
  'care_parent',
  'parent_old',
  'old_age',
  'age_said',
  'said_gave',
  'gave_money',
  'money_sale',
  'sale_home',
  'home_would',
  'would_find',
  'find_nice',
  'nice_retir',
  'retir_home',
  'home_could',
  'could_live',
  'live_would',
  'would_pay',
  'pay_bill',
  'bill_pass',
  'pass_away',
  'away_like',
  'like_idea',
  'idea_much',
  'much_call',
  'call_ungrat',
  'ungrat_child',
  'child_expect',
  'expect_sent',
  'sent_check',
  'check_one',
  'one_year',
  'year_worth',
  'worth_rent',
  'rent_food',
  'food_util',
  'util_sundri',
  'sundri_said',
  'said_move',
  'move_one',
  'one_year',
  'year_turn',
  'turn_respons',
  'respons_point',
  'point_told',
  'told_contact',
  'contact_without',
  'without_go',
  'go_lawyer',
  'lawyer_play',
  'play_whack',
  'whack_mole',
  'mole_block',
  'block_attempt',
  'attempt_reach',
  'reach_famili',
  'famili_member',
  'member_state',
  'state_back',
  'back_home',
  'home_call',
  'call_asshol',
  'asshol_brother',
  'brother_contact',
  'contact_said',
  'said_make',
  'make_famili',
  'famili_look',
  'look_bad',
  'bad_take',
  'take_gave',
  'gave_choic',
  'choic_either',
  'either_take',
  'take_never',
  'never_bring',
  'bring_would',
  'would_go',
  'go_nc',
  'nc_well',
  'well_harsh',
  'harsh_make',
  'make_asshol',
  'asshol_probabl',
  'probabl_add',
  'add_approv',
  'approv_marri',
  'marri_person',
  'person_cultur',
  'cultur_religion',
  'religion_contribut',
  'contribut_wed',
  'wed_even',
  'even_though',
  'though_attend',
  'famili_south_asia',
  'south_asia_live',
  'asia_live_state',
  'live_state_parent',
  'state_parent_love',
  'parent_love_older',
  'love_older_brother',
  'older_brother_toler',
  'brother_toler_expect',
  'toler_expect_stay',
  'expect_stay_home',
  'stay_home_take',
  'home_take_care',
  'take_care_brother',
  'care_brother_got',
  'brother_got_partial',
  'got_partial_scholarship',
  'partial_scholarship_state',
  'scholarship_state_school',
  'state_school_gtfo',
  'school_gtfo_work',
  'gtfo_work_four',
  'work_four_year',
  'four_year_undergrad',
  'year_undergrad_fortun',
  'undergrad_fortun_enough',
  'fortun_enough_get',
  'enough_get_full',
  'get_full_scholarship',
  'full_scholarship_degre',
  'scholarship_degre_graduat',
  'degre_graduat_univers',
  'graduat_univers_small',
  'univers_small_debt',
  'small_debt_two',
  'debt_two_degre',
  'two_degre_found',
  'degre_found_career',
  'found_career_realli',
  'career_realli_enjoy',
  'realli_enjoy_husband',
  'enjoy_husband_love',
  'husband_love_parent',
  'love_parent_paid',
  'parent_paid_brother',
  'paid_brother_educ',
  'brother_educ_well',
  'educ_well_chosen',
  'well_chosen_five',
  'chosen_five_children',
  'five_children_go',
  'children_go_privat',
  'go_privat_school',
  'privat_school_kind',
  'school_kind_extra',
  'kind_extra_curricular',
  'extra_curricular_activ',
  'curricular_activ_wife',
  'activ_wife_sahm',
  'wife_sahm_even',
  'sahm_even_though',
  'even_though_nanni',
  'though_nanni_know',
  'nanni_know_five',
  'know_five_young',
  'five_young_children',
  'young_children_would',
  'children_would_difficult',
  'would_difficult_manag',
  'difficult_manag_im',
  'manag_im_say',
  'im_say_degre',
  'say_degre_well',
  'degre_well_chosen',
  'well_chosen_one',
  'chosen_one_incom',
  'one_incom_household',
  'incom_household_expect',
  'household_expect_first',
  'expect_first_child',
  'first_child_wait',
  'child_wait_year',
  'wait_year_decid',
  'year_decid_start',
  'decid_start_famili',
  'start_famili_stop',
  'famili_stop_two',
  'stop_two_husband',
  'two_husband_get',
  'husband_get_vasectomi',
  'get_vasectomi_afterward',
  'vasectomi_afterward_much',
  'afterward_much_agreement',
  'much_agreement_futur',
  'agreement_futur_parent',
  'futur_parent_howev',
  'parent_howev_decid',
  'howev_decid_go',
  'decid_go_sell',
  'go_sell_home',
  'sell_home_come',
  'home_come_live',
  'come_live_us',
  'live_us_larg',
  'us_larg_properti',
  'larg_properti_in-law',
  'properti_in-law_suit',
  'in-law_suit_hcol',
  'suit_hcol_citi',
  'hcol_citi_west',
  'citi_west_coast',
  'west_coast_told',
  'coast_told_husband',
  'told_husband_want',
  'husband_want_live',
  'want_live_us',
  'live_us_concur',
  'us_concur_told',
  'concur_told_said',
  'told_said_alreadi',
  'said_alreadi_list',
  'alreadi_list_home',
  'list_home_duti',
  'home_duti_daughter',
  'duti_daughter_would',
  'daughter_would_take',
  'would_take_care',
  'take_care_parent',
  'care_parent_old',
  'parent_old_age',
  'old_age_said',
  'age_said_gave',
  'said_gave_money',
  'gave_money_sale',
  'money_sale_home',
  'sale_home_would',
  'home_would_find',
  'would_find_nice',
  'find_nice_retir',
  'nice_retir_home',
  'retir_home_could',
  'home_could_live',
  'could_live_would',
  'live_would_pay',
  'would_pay_bill',
  'pay_bill_pass',
  'bill_pass_away',
  'pass_away_like',
  'away_like_idea',
  'like_idea_much',
  'idea_much_call',
  'much_call_ungrat',
  'call_ungrat_child',
  'ungrat_child_expect',
  'child_expect_sent',
  'expect_sent_check',
  'sent_check_one',
  'check_one_year',
  'one_year_worth',
  'year_worth_rent',
  'worth_rent_food',
  'rent_food_util',
  'food_util_sundri',
  'util_sundri_said',
  'sundri_said_move',
  'said_move_one',
  'move_one_year',
  'one_year_turn',
  'year_turn_respons',
  'turn_respons_point',
  'respons_point_told',
  'point_told_contact',
  'told_contact_without',
  'contact_without_go',
  'without_go_lawyer',
  'go_lawyer_play',
  'lawyer_play_whack',
  'play_whack_mole',
  'whack_mole_block',
  'mole_block_attempt',
  'block_attempt_reach',
  'attempt_reach_famili',
  'reach_famili_member',
  'famili_member_state',
  'member_state_back',
  'state_back_home',
  'back_home_call',
  'home_call_asshol',
  'call_asshol_brother',
  'asshol_brother_contact',
  'brother_contact_said',
  'contact_said_make',
  'said_make_famili',
  'make_famili_look',
  'famili_look_bad',
  'look_bad_take',
  'bad_take_gave',
  'take_gave_choic',
  'gave_choic_either',
  'choic_either_take',
  'either_take_never',
  'take_never_bring',
  'never_bring_would',
  'bring_would_go',
  'would_go_nc',
  'go_nc_well',
  'nc_well_harsh',
  'well_harsh_make',
  'harsh_make_asshol',
  'make_asshol_probabl',
  'asshol_probabl_add',
  'probabl_add_approv',
  'add_approv_marri',
  'approv_marri_person',
  'marri_person_cultur',
  'person_cultur_religion',
  'cultur_religion_contribut',
  'religion_contribut_wed',
  'contribut_wed_even',
  'wed_even_though',
  'even_though_attend'],
 ['engag',
  'met',
  'becam',
  'bff',
  'lost',
  'contact',
  'move',
  'dad',
  'stepmom',
  'sm',
  'step-si',
  'yr',
  'ago',
  'found',
  'one',
  'anoth',
  'discov',
  'wed',
  'feel',
  'afraid',
  'say',
  'anyth',
  'afraid',
  'ruin',
  'friendship',
  'insecur',
  'appear',
  'believ',
  'deserv',
  'better',
  'accid',
  'caus',
  'injuri',
  'face',
  'neck',
  'shoulder',
  'surgeri',
  'accid',
  'scar',
  'facial',
  'prosthet',
  'struggl',
  'self-imag',
  'due',
  'peopl',
  'percept',
  'took',
  'lot',
  'convinc',
  'find',
  'handsom',
  'sm',
  'obsess',
  'appear',
  'judgment',
  'anyon',
  'fit',
  'beauti',
  'standard',
  'go',
  'public',
  'berat',
  'stranger',
  'dad',
  'knew',
  'hesit',
  'introduc',
  'sm',
  'know',
  'propos',
  'dad',
  'insist',
  'visit',
  'celebr',
  'dinner',
  'could',
  'meet',
  'warn',
  'advanc',
  'told',
  'go',
  'want',
  'disappoint',
  'dad',
  'one',
  'point',
  'sm',
  'ask',
  'plan',
  'photog',
  'wed',
  'wed',
  'thought',
  'date',
  'closer',
  'halloween',
  'could',
  'wear',
  'mask',
  'fun',
  'cue',
  'sm',
  'giggl',
  'piss',
  'uncomfort',
  'turn',
  'ask',
  'serious',
  'happen',
  'face',
  'look',
  'like',
  'someon',
  'set',
  'fire',
  'tri',
  'put',
  'hatchet',
  'lost',
  'mind',
  'carri',
  'hous',
  'wouldv',
  'hurt',
  'told',
  'relax',
  'fine',
  'insult',
  'person',
  'care',
  'noth',
  'cordial',
  'expect',
  'retali',
  'dad',
  'blew',
  'phone',
  'tri',
  'apolog',
  'told',
  'hurt',
  'theyd',
  'disgust',
  'two',
  'adult',
  'degrad',
  'anoth',
  'human',
  'someth',
  'control',
  'told',
  'sm',
  'upset',
  'id',
  'hurt',
  'expect',
  'apolog',
  'told',
  'happen',
  'week',
  'later',
  'dad',
  'tell',
  'car',
  'accid',
  'end',
  'nasti',
  'lacer',
  'forehead',
  'may',
  'ta',
  'went',
  'dad',
  'get',
  'stuff',
  'lay',
  'couch',
  'cri',
  'phone',
  'life',
  'ugli',
  'disfigur',
  'couldv',
  'ignor',
  'said',
  'outsid',
  'match',
  'insid',
  'next',
  'time',
  'feel',
  'need',
  'insult',
  'someon',
  'look',
  'mayb',
  'take',
  'look',
  'mirror',
  'first',
  'open',
  'mouth',
  'burst',
  'tear',
  'sm',
  'came',
  'see',
  'rucku',
  'told',
  'see',
  'vs',
  'face',
  'idea',
  'halloween',
  'wed',
  'grow',
  'go',
  'well',
  'caus',
  'meltdown',
  'dad',
  'hous',
  'upset',
  'upset',
  'vulner',
  'time',
  'sm',
  'accus',
  'lack',
  'empathi',
  'theyr',
  'demand',
  'apolog',
  'im',
  'refus',
  'understand',
  'believ',
  'kick',
  'engag_met',
  'met_becam',
  'becam_bff',
  'bff_lost',
  'lost_contact',
  'contact_move',
  'move_dad',
  'dad_stepmom',
  'stepmom_sm',
  'sm_step-si',
  'step-si_yr',
  'yr_ago',
  'ago_found',
  'found_one',
  'one_anoth',
  'anoth_discov',
  'discov_wed',
  'wed_feel',
  'feel_afraid',
  'afraid_say',
  'say_anyth',
  'anyth_afraid',
  'afraid_ruin',
  'ruin_friendship',
  'friendship_insecur',
  'insecur_appear',
  'appear_believ',
  'believ_deserv',
  'deserv_better',
  'better_accid',
  'accid_caus',
  'caus_injuri',
  'injuri_face',
  'face_neck',
  'neck_shoulder',
  'shoulder_surgeri',
  'surgeri_accid',
  'accid_scar',
  'scar_facial',
  'facial_prosthet',
  'prosthet_struggl',
  'struggl_self-imag',
  'self-imag_due',
  'due_peopl',
  'peopl_percept',
  'percept_took',
  'took_lot',
  'lot_convinc',
  'convinc_find',
  'find_handsom',
  'handsom_sm',
  'sm_obsess',
  'obsess_appear',
  'appear_judgment',
  'judgment_anyon',
  'anyon_fit',
  'fit_beauti',
  'beauti_standard',
  'standard_go',
  'go_public',
  'public_berat',
  'berat_stranger',
  'stranger_dad',
  'dad_knew',
  'knew_hesit',
  'hesit_introduc',
  'introduc_sm',
  'sm_know',
  'know_propos',
  'propos_dad',
  'dad_insist',
  'insist_visit',
  'visit_celebr',
  'celebr_dinner',
  'dinner_could',
  'could_meet',
  'meet_warn',
  'warn_advanc',
  'advanc_told',
  'told_go',
  'go_want',
  'want_disappoint',
  'disappoint_dad',
  'dad_one',
  'one_point',
  'point_sm',
  'sm_ask',
  'ask_plan',
  'plan_photog',
  'photog_wed',
  'wed_wed',
  'wed_thought',
  'thought_date',
  'date_closer',
  'closer_halloween',
  'halloween_could',
  'could_wear',
  'wear_mask',
  'mask_fun',
  'fun_cue',
  'cue_sm',
  'sm_giggl',
  'giggl_piss',
  'piss_uncomfort',
  'uncomfort_turn',
  'turn_ask',
  'ask_serious',
  'serious_happen',
  'happen_face',
  'face_look',
  'look_like',
  'like_someon',
  'someon_set',
  'set_fire',
  'fire_tri',
  'tri_put',
  'put_hatchet',
  'hatchet_lost',
  'lost_mind',
  'mind_carri',
  'carri_hous',
  'hous_wouldv',
  'wouldv_hurt',
  'hurt_told',
  'told_relax',
  'relax_fine',
  'fine_insult',
  'insult_person',
  'person_care',
  'care_noth',
  'noth_cordial',
  'cordial_expect',
  'expect_retali',
  'retali_dad',
  'dad_blew',
  'blew_phone',
  'phone_tri',
  'tri_apolog',
  'apolog_told',
  'told_hurt',
  'hurt_theyd',
  'theyd_disgust',
  'disgust_two',
  'two_adult',
  'adult_degrad',
  'degrad_anoth',
  'anoth_human',
  'human_someth',
  'someth_control',
  'control_told',
  'told_sm',
  'sm_upset',
  'upset_id',
  'id_hurt',
  'hurt_expect',
  'expect_apolog',
  'apolog_told',
  'told_happen',
  'happen_week',
  'week_later',
  'later_dad',
  'dad_tell',
  'tell_car',
  'car_accid',
  'accid_end',
  'end_nasti',
  'nasti_lacer',
  'lacer_forehead',
  'forehead_may',
  'may_ta',
  'ta_went',
  'went_dad',
  'dad_get',
  'get_stuff',
  'stuff_lay',
  'lay_couch',
  'couch_cri',
  'cri_phone',
  'phone_life',
  'life_ugli',
  'ugli_disfigur',
  'disfigur_couldv',
  'couldv_ignor',
  'ignor_said',
  'said_outsid',
  'outsid_match',
  'match_insid',
  'insid_next',
  'next_time',
  'time_feel',
  'feel_need',
  'need_insult',
  'insult_someon',
  'someon_look',
  'look_mayb',
  'mayb_take',
  'take_look',
  'look_mirror',
  'mirror_first',
  'first_open',
  'open_mouth',
  'mouth_burst',
  'burst_tear',
  'tear_sm',
  'sm_came',
  'came_see',
  'see_rucku',
  'rucku_told',
  'told_see',
  'see_vs',
  'vs_face',
  'face_idea',
  'idea_halloween',
  'halloween_wed',
  'wed_grow',
  'grow_go',
  'go_well',
  'well_caus',
  'caus_meltdown',
  'meltdown_dad',
  'dad_hous',
  'hous_upset',
  'upset_upset',
  'upset_vulner',
  'vulner_time',
  'time_sm',
  'sm_accus',
  'accus_lack',
  'lack_empathi',
  'empathi_theyr',
  'theyr_demand',
  'demand_apolog',
  'apolog_im',
  'im_refus',
  'refus_understand',
  'understand_believ',
  'believ_kick',
  'engag_met_becam',
  'met_becam_bff',
  'becam_bff_lost',
  'bff_lost_contact',
  'lost_contact_move',
  'contact_move_dad',
  'move_dad_stepmom',
  'dad_stepmom_sm',
  'stepmom_sm_step-si',
  'sm_step-si_yr',
  'step-si_yr_ago',
  'yr_ago_found',
  'ago_found_one',
  'found_one_anoth',
  'one_anoth_discov',
  'anoth_discov_wed',
  'discov_wed_feel',
  'wed_feel_afraid',
  'feel_afraid_say',
  'afraid_say_anyth',
  'say_anyth_afraid',
  'anyth_afraid_ruin',
  'afraid_ruin_friendship',
  'ruin_friendship_insecur',
  'friendship_insecur_appear',
  'insecur_appear_believ',
  'appear_believ_deserv',
  'believ_deserv_better',
  'deserv_better_accid',
  'better_accid_caus',
  'accid_caus_injuri',
  'caus_injuri_face',
  'injuri_face_neck',
  'face_neck_shoulder',
  'neck_shoulder_surgeri',
  'shoulder_surgeri_accid',
  'surgeri_accid_scar',
  'accid_scar_facial',
  'scar_facial_prosthet',
  'facial_prosthet_struggl',
  'prosthet_struggl_self-imag',
  'struggl_self-imag_due',
  'self-imag_due_peopl',
  'due_peopl_percept',
  'peopl_percept_took',
  'percept_took_lot',
  'took_lot_convinc',
  'lot_convinc_find',
  'convinc_find_handsom',
  'find_handsom_sm',
  'handsom_sm_obsess',
  'sm_obsess_appear',
  'obsess_appear_judgment',
  'appear_judgment_anyon',
  'judgment_anyon_fit',
  'anyon_fit_beauti',
  'fit_beauti_standard',
  'beauti_standard_go',
  'standard_go_public',
  'go_public_berat',
  'public_berat_stranger',
  'berat_stranger_dad',
  'stranger_dad_knew',
  'dad_knew_hesit',
  'knew_hesit_introduc',
  'hesit_introduc_sm',
  'introduc_sm_know',
  'sm_know_propos',
  'know_propos_dad',
  'propos_dad_insist',
  'dad_insist_visit',
  'insist_visit_celebr',
  'visit_celebr_dinner',
  'celebr_dinner_could',
  'dinner_could_meet',
  'could_meet_warn',
  'meet_warn_advanc',
  'warn_advanc_told',
  'advanc_told_go',
  'told_go_want',
  'go_want_disappoint',
  'want_disappoint_dad',
  'disappoint_dad_one',
  'dad_one_point',
  'one_point_sm',
  'point_sm_ask',
  'sm_ask_plan',
  'ask_plan_photog',
  'plan_photog_wed',
  'photog_wed_wed',
  'wed_wed_thought',
  'wed_thought_date',
  'thought_date_closer',
  'date_closer_halloween',
  'closer_halloween_could',
  'halloween_could_wear',
  'could_wear_mask',
  'wear_mask_fun',
  'mask_fun_cue',
  'fun_cue_sm',
  'cue_sm_giggl',
  'sm_giggl_piss',
  'giggl_piss_uncomfort',
  'piss_uncomfort_turn',
  'uncomfort_turn_ask',
  'turn_ask_serious',
  'ask_serious_happen',
  'serious_happen_face',
  'happen_face_look',
  'face_look_like',
  'look_like_someon',
  'like_someon_set',
  'someon_set_fire',
  'set_fire_tri',
  'fire_tri_put',
  'tri_put_hatchet',
  'put_hatchet_lost',
  'hatchet_lost_mind',
  'lost_mind_carri',
  'mind_carri_hous',
  'carri_hous_wouldv',
  'hous_wouldv_hurt',
  'wouldv_hurt_told',
  'hurt_told_relax',
  'told_relax_fine',
  'relax_fine_insult',
  'fine_insult_person',
  'insult_person_care',
  'person_care_noth',
  'care_noth_cordial',
  'noth_cordial_expect',
  'cordial_expect_retali',
  'expect_retali_dad',
  'retali_dad_blew',
  'dad_blew_phone',
  'blew_phone_tri',
  'phone_tri_apolog',
  'tri_apolog_told',
  'apolog_told_hurt',
  'told_hurt_theyd',
  'hurt_theyd_disgust',
  'theyd_disgust_two',
  'disgust_two_adult',
  'two_adult_degrad',
  'adult_degrad_anoth',
  'degrad_anoth_human',
  'anoth_human_someth',
  'human_someth_control',
  'someth_control_told',
  'control_told_sm',
  'told_sm_upset',
  'sm_upset_id',
  'upset_id_hurt',
  'id_hurt_expect',
  'hurt_expect_apolog',
  'expect_apolog_told',
  'apolog_told_happen',
  'told_happen_week',
  'happen_week_later',
  'week_later_dad',
  'later_dad_tell',
  'dad_tell_car',
  'tell_car_accid',
  'car_accid_end',
  'accid_end_nasti',
  'end_nasti_lacer',
  'nasti_lacer_forehead',
  'lacer_forehead_may',
  'forehead_may_ta',
  'may_ta_went',
  'ta_went_dad',
  'went_dad_get',
  'dad_get_stuff',
  'get_stuff_lay',
  'stuff_lay_couch',
  'lay_couch_cri',
  'couch_cri_phone',
  'cri_phone_life',
  'phone_life_ugli',
  'life_ugli_disfigur',
  'ugli_disfigur_couldv',
  'disfigur_couldv_ignor',
  'couldv_ignor_said',
  'ignor_said_outsid',
  'said_outsid_match',
  'outsid_match_insid',
  'match_insid_next',
  'insid_next_time',
  'next_time_feel',
  'time_feel_need',
  'feel_need_insult',
  'need_insult_someon',
  'insult_someon_look',
  'someon_look_mayb',
  'look_mayb_take',
  'mayb_take_look',
  'take_look_mirror',
  'look_mirror_first',
  'mirror_first_open',
  'first_open_mouth',
  'open_mouth_burst',
  'mouth_burst_tear',
  'burst_tear_sm',
  'tear_sm_came',
  'sm_came_see',
  'came_see_rucku',
  'see_rucku_told',
  'rucku_told_see',
  'told_see_vs',
  'see_vs_face',
  'vs_face_idea',
  'face_idea_halloween',
  'idea_halloween_wed',
  'halloween_wed_grow',
  'wed_grow_go',
  'grow_go_well',
  'go_well_caus',
  'well_caus_meltdown',
  'caus_meltdown_dad',
  'meltdown_dad_hous',
  'dad_hous_upset',
  'hous_upset_upset',
  'upset_upset_vulner',
  'upset_vulner_time',
  'vulner_time_sm',
  'time_sm_accus',
  'sm_accus_lack',
  'accus_lack_empathi',
  'lack_empathi_theyr',
  'empathi_theyr_demand',
  'theyr_demand_apolog',
  'demand_apolog_im',
  'apolog_im_refus',
  'im_refus_understand',
  'refus_understand_believ',
  'understand_believ_kick'],
 ['born',
  'teen',
  'mom',
  'mom',
  'later',
  'marri',
  'stepdad',
  'sibl',
  'respect',
  'im',
  'colleg',
  'easter',
  'colleg',
  'found',
  'mom',
  'stepdad',
  'took',
  'famili',
  'photo',
  'without',
  'card',
  'mom',
  'said',
  'need',
  'print',
  'time',
  'colleg',
  'colleg',
  'minut',
  'away',
  'feel',
  'like',
  'stepdad',
  'resent',
  'famili',
  'includ',
  'guy',
  'child',
  'also',
  'describ',
  'photo',
  'close',
  'famili',
  'backped',
  'said',
  'close',
  'physic',
  'im',
  'colleg',
  'decid',
  'play',
  'littl',
  'joke',
  'took',
  'younger',
  'sibl',
  'two',
  'best',
  'friend',
  'walmart',
  'photo',
  'shop',
  'took',
  'deliber',
  'cheesi',
  'famili',
  'photo',
  'wear',
  'blue',
  'jean',
  'jean',
  'jacket',
  'friend',
  'dress',
  'mom',
  'stepdad',
  'femal',
  'friend',
  'wore',
  'bald',
  'cap',
  'stepdad',
  'male',
  'friend',
  'wore',
  'wig',
  'denim',
  'dress',
  'mom',
  'friend',
  'realli',
  'talent',
  'makeup',
  'honestli',
  'great',
  'job',
  'make',
  'look',
  'like',
  'took',
  'bunch',
  'pictur',
  'prop',
  'pick',
  'favorit',
  'us',
  'stand',
  'silli',
  'action',
  'pose',
  'wear',
  'raccoon',
  'skin',
  'hat',
  'makeup',
  'hair',
  'big',
  'hat',
  'agre',
  'friend',
  'look',
  'like',
  'parent',
  'pictur',
  'postcard',
  'size',
  'honestli',
  'realli',
  'fun',
  'photo',
  'realli',
  'differ',
  'seriou',
  'one',
  'famili',
  'alway',
  'take',
  'print',
  'card',
  'sign',
  'love',
  'name',
  'famili',
  'swap',
  'card',
  'envelop',
  'mom',
  'prepar',
  'reseal',
  'sort',
  'sticker',
  'use',
  'appar',
  'coupl',
  'extend',
  'famili',
  'member',
  'look',
  'hard',
  'enough',
  'pictur',
  'notic',
  'someth',
  'display',
  'peopl',
  'mention',
  'mom',
  'pictur',
  'funni',
  'piss',
  'thought',
  'talk',
  'bore',
  'photo',
  'sit',
  'picnic',
  'blanket',
  'giant',
  'easter',
  'basket',
  'aunt',
  'sent',
  'photo',
  'card',
  'famili',
  'group',
  'chat',
  'said',
  'gig',
  'mom',
  'furiou',
  'send',
  'joke',
  'card',
  'embarrass',
  'famili',
  'also',
  'send',
  'card',
  'made',
  'wrote',
  'told',
  'get',
  'upset',
  'left',
  'famili',
  'photo',
  'appar',
  'big',
  'deal',
  'treat',
  'like',
  'part',
  'famili',
  'said',
  'make',
  'mockeri',
  'stepdad',
  'cross',
  'dresser',
  'photo',
  'said',
  'want',
  'photo',
  'close',
  'famili',
  'like',
  'stepdad',
  'consid',
  'friend',
  'mine',
  'closest',
  'famili',
  'guess',
  'someth',
  'choos',
  'mom',
  'got',
  'mad',
  'sass',
  'told',
  'leav',
  'went',
  'back',
  'colleg',
  'aita',
  'pull',
  'stunt',
  'easter',
  'photo',
  'born_teen',
  'teen_mom',
  'mom_mom',
  'mom_later',
  'later_marri',
  'marri_stepdad',
  'stepdad_sibl',
  'sibl_respect',
  'respect_im',
  'im_colleg',
  'colleg_easter',
  'easter_colleg',
  'colleg_found',
  'found_mom',
  'mom_stepdad',
  'stepdad_took',
  'took_famili',
  'famili_photo',
  'photo_without',
  'without_card',
  'card_mom',
  'mom_said',
  'said_need',
  'need_print',
  'print_time',
  'time_colleg',
  'colleg_colleg',
  'colleg_minut',
  'minut_away',
  'away_feel',
  'feel_like',
  'like_stepdad',
  'stepdad_resent',
  'resent_famili',
  'famili_includ',
  'includ_guy',
  'guy_child',
  'child_also',
  'also_describ',
  'describ_photo',
  'photo_close',
  'close_famili',
  'famili_backped',
  'backped_said',
  'said_close',
  'close_physic',
  'physic_im',
  'im_colleg',
  'colleg_decid',
  'decid_play',
  'play_littl',
  'littl_joke',
  'joke_took',
  'took_younger',
  'younger_sibl',
  'sibl_two',
  'two_best',
  'best_friend',
  'friend_walmart',
  'walmart_photo',
  'photo_shop',
  'shop_took',
  'took_deliber',
  'deliber_cheesi',
  'cheesi_famili',
  'famili_photo',
  'photo_wear',
  'wear_blue',
  'blue_jean',
  'jean_jean',
  'jean_jacket',
  'jacket_friend',
  'friend_dress',
  'dress_mom',
  'mom_stepdad',
  'stepdad_femal',
  'femal_friend',
  'friend_wore',
  'wore_bald',
  'bald_cap',
  'cap_stepdad',
  'stepdad_male',
  'male_friend',
  'friend_wore',
  'wore_wig',
  'wig_denim',
  'denim_dress',
  'dress_mom',
  'mom_friend',
  'friend_realli',
  'realli_talent',
  'talent_makeup',
  'makeup_honestli',
  'honestli_great',
  'great_job',
  'job_make',
  'make_look',
  'look_like',
  'like_took',
  'took_bunch',
  'bunch_pictur',
  'pictur_prop',
  'prop_pick',
  'pick_favorit',
  'favorit_us',
  'us_stand',
  'stand_silli',
  'silli_action',
  'action_pose',
  'pose_wear',
  'wear_raccoon',
  'raccoon_skin',
  'skin_hat',
  'hat_makeup',
  'makeup_hair',
  'hair_big',
  'big_hat',
  'hat_agre',
  'agre_friend',
  'friend_look',
  'look_like',
  'like_parent',
  'parent_pictur',
  'pictur_postcard',
  'postcard_size',
  'size_honestli',
  'honestli_realli',
  'realli_fun',
  'fun_photo',
  'photo_realli',
  'realli_differ',
  'differ_seriou',
  'seriou_one',
  'one_famili',
  'famili_alway',
  'alway_take',
  'take_print',
  'print_card',
  'card_sign',
  'sign_love',
  'love_name',
  'name_famili',
  'famili_swap',
  'swap_card',
  'card_envelop',
  'envelop_mom',
  'mom_prepar',
  'prepar_reseal',
  'reseal_sort',
  'sort_sticker',
  'sticker_use',
  'use_appar',
  'appar_coupl',
  'coupl_extend',
  'extend_famili',
  'famili_member',
  'member_look',
  'look_hard',
  'hard_enough',
  'enough_pictur',
  'pictur_notic',
  'notic_someth',
  'someth_display',
  'display_peopl',
  'peopl_mention',
  'mention_mom',
  'mom_pictur',
  'pictur_funni',
  'funni_piss',
  'piss_thought',
  'thought_talk',
  'talk_bore',
  'bore_photo',
  'photo_sit',
  'sit_picnic',
  'picnic_blanket',
  'blanket_giant',
  'giant_easter',
  'easter_basket',
  'basket_aunt',
  'aunt_sent',
  'sent_photo',
  'photo_card',
  'card_famili',
  'famili_group',
  'group_chat',
  'chat_said',
  'said_gig',
  'gig_mom',
  'mom_furiou',
  'furiou_send',
  'send_joke',
  'joke_card',
  'card_embarrass',
  'embarrass_famili',
  'famili_also',
  'also_send',
  'send_card',
  'card_made',
  'made_wrote',
  'wrote_told',
  'told_get',
  'get_upset',
  'upset_left',
  'left_famili',
  'famili_photo',
  'photo_appar',
  'appar_big',
  'big_deal',
  'deal_treat',
  'treat_like',
  'like_part',
  'part_famili',
  'famili_said',
  'said_make',
  'make_mockeri',
  'mockeri_stepdad',
  'stepdad_cross',
  'cross_dresser',
  'dresser_photo',
  'photo_said',
  'said_want',
  'want_photo',
  'photo_close',
  'close_famili',
  'famili_like',
  'like_stepdad',
  'stepdad_consid',
  'consid_friend',
  'friend_mine',
  'mine_closest',
  'closest_famili',
  'famili_guess',
  'guess_someth',
  'someth_choos',
  'choos_mom',
  'mom_got',
  'got_mad',
  'mad_sass',
  'sass_told',
  'told_leav',
  'leav_went',
  'went_back',
  'back_colleg',
  'colleg_aita',
  'aita_pull',
  'pull_stunt',
  'stunt_easter',
  'easter_photo',
  'born_teen_mom',
  'teen_mom_mom',
  'mom_mom_later',
  'mom_later_marri',
  'later_marri_stepdad',
  'marri_stepdad_sibl',
  'stepdad_sibl_respect',
  'sibl_respect_im',
  'respect_im_colleg',
  'im_colleg_easter',
  'colleg_easter_colleg',
  'easter_colleg_found',
  'colleg_found_mom',
  'found_mom_stepdad',
  'mom_stepdad_took',
  'stepdad_took_famili',
  'took_famili_photo',
  'famili_photo_without',
  'photo_without_card',
  'without_card_mom',
  'card_mom_said',
  'mom_said_need',
  'said_need_print',
  'need_print_time',
  'print_time_colleg',
  'time_colleg_colleg',
  'colleg_colleg_minut',
  'colleg_minut_away',
  'minut_away_feel',
  'away_feel_like',
  'feel_like_stepdad',
  'like_stepdad_resent',
  'stepdad_resent_famili',
  'resent_famili_includ',
  'famili_includ_guy',
  'includ_guy_child',
  'guy_child_also',
  'child_also_describ',
  'also_describ_photo',
  'describ_photo_close',
  'photo_close_famili',
  'close_famili_backped',
  'famili_backped_said',
  'backped_said_close',
  'said_close_physic',
  'close_physic_im',
  'physic_im_colleg',
  'im_colleg_decid',
  'colleg_decid_play',
  'decid_play_littl',
  'play_littl_joke',
  'littl_joke_took',
  'joke_took_younger',
  'took_younger_sibl',
  'younger_sibl_two',
  'sibl_two_best',
  'two_best_friend',
  'best_friend_walmart',
  'friend_walmart_photo',
  'walmart_photo_shop',
  'photo_shop_took',
  'shop_took_deliber',
  'took_deliber_cheesi',
  'deliber_cheesi_famili',
  'cheesi_famili_photo',
  'famili_photo_wear',
  'photo_wear_blue',
  'wear_blue_jean',
  'blue_jean_jean',
  'jean_jean_jacket',
  'jean_jacket_friend',
  'jacket_friend_dress',
  'friend_dress_mom',
  'dress_mom_stepdad',
  'mom_stepdad_femal',
  'stepdad_femal_friend',
  'femal_friend_wore',
  'friend_wore_bald',
  'wore_bald_cap',
  'bald_cap_stepdad',
  'cap_stepdad_male',
  'stepdad_male_friend',
  'male_friend_wore',
  'friend_wore_wig',
  'wore_wig_denim',
  'wig_denim_dress',
  'denim_dress_mom',
  'dress_mom_friend',
  'mom_friend_realli',
  'friend_realli_talent',
  'realli_talent_makeup',
  'talent_makeup_honestli',
  'makeup_honestli_great',
  'honestli_great_job',
  'great_job_make',
  'job_make_look',
  'make_look_like',
  'look_like_took',
  'like_took_bunch',
  'took_bunch_pictur',
  'bunch_pictur_prop',
  'pictur_prop_pick',
  'prop_pick_favorit',
  'pick_favorit_us',
  'favorit_us_stand',
  'us_stand_silli',
  'stand_silli_action',
  'silli_action_pose',
  'action_pose_wear',
  'pose_wear_raccoon',
  'wear_raccoon_skin',
  'raccoon_skin_hat',
  'skin_hat_makeup',
  'hat_makeup_hair',
  'makeup_hair_big',
  'hair_big_hat',
  'big_hat_agre',
  'hat_agre_friend',
  'agre_friend_look',
  'friend_look_like',
  'look_like_parent',
  'like_parent_pictur',
  'parent_pictur_postcard',
  'pictur_postcard_size',
  'postcard_size_honestli',
  'size_honestli_realli',
  'honestli_realli_fun',
  'realli_fun_photo',
  'fun_photo_realli',
  'photo_realli_differ',
  'realli_differ_seriou',
  'differ_seriou_one',
  'seriou_one_famili',
  'one_famili_alway',
  'famili_alway_take',
  'alway_take_print',
  'take_print_card',
  'print_card_sign',
  'card_sign_love',
  'sign_love_name',
  'love_name_famili',
  'name_famili_swap',
  'famili_swap_card',
  'swap_card_envelop',
  'card_envelop_mom',
  'envelop_mom_prepar',
  'mom_prepar_reseal',
  'prepar_reseal_sort',
  'reseal_sort_sticker',
  'sort_sticker_use',
  'sticker_use_appar',
  'use_appar_coupl',
  'appar_coupl_extend',
  'coupl_extend_famili',
  'extend_famili_member',
  'famili_member_look',
  'member_look_hard',
  'look_hard_enough',
  'hard_enough_pictur',
  'enough_pictur_notic',
  'pictur_notic_someth',
  'notic_someth_display',
  'someth_display_peopl',
  'display_peopl_mention',
  'peopl_mention_mom',
  'mention_mom_pictur',
  'mom_pictur_funni',
  'pictur_funni_piss',
  'funni_piss_thought',
  'piss_thought_talk',
  'thought_talk_bore',
  'talk_bore_photo',
  'bore_photo_sit',
  'photo_sit_picnic',
  'sit_picnic_blanket',
  'picnic_blanket_giant',
  'blanket_giant_easter',
  'giant_easter_basket',
  'easter_basket_aunt',
  'basket_aunt_sent',
  'aunt_sent_photo',
  'sent_photo_card',
  'photo_card_famili',
  'card_famili_group',
  'famili_group_chat',
  'group_chat_said',
  'chat_said_gig',
  'said_gig_mom',
  'gig_mom_furiou',
  'mom_furiou_send',
  'furiou_send_joke',
  'send_joke_card',
  'joke_card_embarrass',
  'card_embarrass_famili',
  'embarrass_famili_also',
  'famili_also_send',
  'also_send_card',
  'send_card_made',
  'card_made_wrote',
  'made_wrote_told',
  'wrote_told_get',
  'told_get_upset',
  'get_upset_left',
  'upset_left_famili',
  'left_famili_photo',
  'famili_photo_appar',
  'photo_appar_big',
  'appar_big_deal',
  'big_deal_treat',
  'deal_treat_like',
  'treat_like_part',
  'like_part_famili',
  'part_famili_said',
  'famili_said_make',
  'said_make_mockeri',
  'make_mockeri_stepdad',
  'mockeri_stepdad_cross',
  'stepdad_cross_dresser',
  'cross_dresser_photo',
  'dresser_photo_said',
  'photo_said_want',
  'said_want_photo',
  'want_photo_close',
  'photo_close_famili',
  'close_famili_like',
  'famili_like_stepdad',
  'like_stepdad_consid',
  'stepdad_consid_friend',
  'consid_friend_mine',
  'friend_mine_closest',
  'mine_closest_famili',
  'closest_famili_guess',
  'famili_guess_someth',
  'guess_someth_choos',
  'someth_choos_mom',
  'choos_mom_got',
  'mom_got_mad',
  'got_mad_sass',
  'mad_sass_told',
  'sass_told_leav',
  'told_leav_went',
  'leav_went_back',
  'went_back_colleg',
  'back_colleg_aita',
  'colleg_aita_pull',
  'aita_pull_stunt',
  'pull_stunt_easter',
  'stunt_easter_photo'],
 ['husband',
  'wish',
  'decid',
  'get',
  'oldest',
  'bryan',
  'motorcycl',
  'th',
  'birthday',
  'month',
  'ago',
  'could',
  'go',
  'ride',
  'togeth',
  'surpris',
  'last',
  'minut',
  'gift',
  'know',
  'also',
  'appar',
  'went',
  'got',
  'licens',
  'behind',
  'back',
  'take',
  'without',
  'look',
  'like',
  'bad',
  'guy',
  'sinc',
  'alreadi',
  'laid',
  'strict',
  'rule',
  'suppos',
  'ever',
  'drive',
  'speed',
  'limit',
  'could',
  'drive',
  'dad',
  'around',
  'suppos',
  'passeng',
  'husband',
  'separ',
  'right',
  'stay',
  'nearbi',
  'apart',
  'figur',
  'marriag',
  'bryan',
  'stay',
  'week',
  'stay',
  'dad',
  'next',
  'week',
  'last',
  'friday',
  'bryan',
  'dad',
  'get',
  'call',
  'hospit',
  'say',
  'boyfriend',
  'clark',
  'motarcycl',
  'accid',
  'rush',
  'hospit',
  'find',
  'bryan',
  'kinda',
  'bang',
  'gash',
  'forehead',
  'cut',
  'bruis',
  'concuss',
  'ask',
  'happend',
  'look',
  'final',
  'got',
  'neve',
  'tell',
  'wreck',
  'motorcycl',
  'take',
  'clark',
  'home',
  'basebal',
  'practic',
  'decid',
  'street',
  'race',
  'guy',
  'lost',
  'control',
  'bike',
  'flip',
  'steam',
  'ask',
  'hell',
  'ride',
  'motorcycl',
  'without',
  'dad',
  'would',
  'someth',
  'stupid',
  'especi',
  'ride',
  'someon',
  'els',
  'start',
  'cri',
  'say',
  'sorri',
  'want',
  'know',
  'clark',
  'ok',
  'went',
  'check',
  'found',
  'clark',
  'parent',
  'piss',
  'told',
  'clark',
  'broken',
  'rib',
  'leg',
  'two',
  'finger',
  'promis',
  'take',
  'care',
  'medic',
  'bill',
  'calm',
  'husband',
  'show',
  'tri',
  'explain',
  'apolog',
  'let',
  'bryan',
  'ride',
  'around',
  'bf',
  'went',
  'middl',
  'hospit',
  'yell',
  'reason',
  'separ',
  'irrespons',
  'parent',
  'never',
  'took',
  'anyth',
  'serious',
  'went',
  'talk',
  'bryan',
  'still',
  'mad',
  'told',
  'hed',
  'pay',
  'clark',
  'medic',
  'bill',
  'colleg',
  'fund',
  'money',
  'hed',
  'save',
  'sinc',
  'ive',
  'get',
  'call',
  'husband',
  'inlaw',
  '*',
  '*',
  '*',
  'tch',
  'husband',
  'possibl',
  'take',
  'colleg',
  'away',
  'bryan',
  'mistak',
  'aita',
  'husband_wish',
  'wish_decid',
  'decid_get',
  'get_oldest',
  'oldest_bryan',
  'bryan_motorcycl',
  'motorcycl_th',
  'th_birthday',
  'birthday_month',
  'month_ago',
  'ago_could',
  'could_go',
  'go_ride',
  'ride_togeth',
  'togeth_surpris',
  'surpris_last',
  'last_minut',
  'minut_gift',
  'gift_know',
  'know_also',
  'also_appar',
  'appar_went',
  'went_got',
  'got_licens',
  'licens_behind',
  'behind_back',
  'back_take',
  'take_without',
  'without_look',
  'look_like',
  'like_bad',
  'bad_guy',
  'guy_sinc',
  'sinc_alreadi',
  'alreadi_laid',
  'laid_strict',
  'strict_rule',
  'rule_suppos',
  'suppos_ever',
  'ever_drive',
  'drive_speed',
  'speed_limit',
  'limit_could',
  'could_drive',
  'drive_dad',
  'dad_around',
  'around_suppos',
  'suppos_passeng',
  'passeng_husband',
  'husband_separ',
  'separ_right',
  'right_stay',
  'stay_nearbi',
  'nearbi_apart',
  'apart_figur',
  'figur_marriag',
  'marriag_bryan',
  'bryan_stay',
  'stay_week',
  'week_stay',
  'stay_dad',
  'dad_next',
  'next_week',
  'week_last',
  'last_friday',
  'friday_bryan',
  'bryan_dad',
  'dad_get',
  'get_call',
  'call_hospit',
  'hospit_say',
  'say_boyfriend',
  'boyfriend_clark',
  'clark_motarcycl',
  'motarcycl_accid',
  'accid_rush',
  'rush_hospit',
  'hospit_find',
  'find_bryan',
  'bryan_kinda',
  'kinda_bang',
  'bang_gash',
  'gash_forehead',
  'forehead_cut',
  'cut_bruis',
  'bruis_concuss',
  'concuss_ask',
  'ask_happend',
  'happend_look',
  'look_final',
  'final_got',
  'got_neve',
  'neve_tell',
  'tell_wreck',
  'wreck_motorcycl',
  'motorcycl_take',
  'take_clark',
  'clark_home',
  'home_basebal',
  'basebal_practic',
  'practic_decid',
  'decid_street',
  'street_race',
  'race_guy',
  'guy_lost',
  'lost_control',
  'control_bike',
  'bike_flip',
  'flip_steam',
  'steam_ask',
  'ask_hell',
  'hell_ride',
  'ride_motorcycl',
  'motorcycl_without',
  'without_dad',
  'dad_would',
  'would_someth',
  'someth_stupid',
  'stupid_especi',
  'especi_ride',
  'ride_someon',
  'someon_els',
  'els_start',
  'start_cri',
  'cri_say',
  'say_sorri',
  'sorri_want',
  'want_know',
  'know_clark',
  'clark_ok',
  'ok_went',
  'went_check',
  'check_found',
  'found_clark',
  'clark_parent',
  'parent_piss',
  'piss_told',
  'told_clark',
  'clark_broken',
  'broken_rib',
  'rib_leg',
  'leg_two',
  'two_finger',
  'finger_promis',
  'promis_take',
  'take_care',
  'care_medic',
  'medic_bill',
  'bill_calm',
  'calm_husband',
  'husband_show',
  'show_tri',
  'tri_explain',
  'explain_apolog',
  'apolog_let',
  'let_bryan',
  'bryan_ride',
  'ride_around',
  'around_bf',
  'bf_went',
  'went_middl',
  'middl_hospit',
  'hospit_yell',
  'yell_reason',
  'reason_separ',
  'separ_irrespons',
  'irrespons_parent',
  'parent_never',
  'never_took',
  'took_anyth',
  'anyth_serious',
  'serious_went',
  'went_talk',
  'talk_bryan',
  'bryan_still',
  'still_mad',
  'mad_told',
  'told_hed',
  'hed_pay',
  'pay_clark',
  'clark_medic',
  'medic_bill',
  'bill_colleg',
  'colleg_fund',
  'fund_money',
  'money_hed',
  'hed_save',
  'save_sinc',
  'sinc_ive',
  'ive_get',
  'get_call',
  'call_husband',
  'husband_inlaw',
  'inlaw_*',
  '*_*',
  '*_*',
  '*_tch',
  'tch_husband',
  'husband_possibl',
  'possibl_take',
  'take_colleg',
  'colleg_away',
  'away_bryan',
  'bryan_mistak',
  'mistak_aita',
  'husband_wish_decid',
  'wish_decid_get',
  'decid_get_oldest',
  'get_oldest_bryan',
  'oldest_bryan_motorcycl',
  'bryan_motorcycl_th',
  'motorcycl_th_birthday',
  'th_birthday_month',
  'birthday_month_ago',
  'month_ago_could',
  'ago_could_go',
  'could_go_ride',
  'go_ride_togeth',
  'ride_togeth_surpris',
  'togeth_surpris_last',
  'surpris_last_minut',
  'last_minut_gift',
  'minut_gift_know',
  'gift_know_also',
  'know_also_appar',
  'also_appar_went',
  'appar_went_got',
  'went_got_licens',
  'got_licens_behind',
  'licens_behind_back',
  'behind_back_take',
  'back_take_without',
  'take_without_look',
  'without_look_like',
  'look_like_bad',
  'like_bad_guy',
  'bad_guy_sinc',
  'guy_sinc_alreadi',
  'sinc_alreadi_laid',
  'alreadi_laid_strict',
  'laid_strict_rule',
  'strict_rule_suppos',
  'rule_suppos_ever',
  'suppos_ever_drive',
  'ever_drive_speed',
  'drive_speed_limit',
  'speed_limit_could',
  'limit_could_drive',
  'could_drive_dad',
  'drive_dad_around',
  'dad_around_suppos',
  'around_suppos_passeng',
  'suppos_passeng_husband',
  'passeng_husband_separ',
  'husband_separ_right',
  'separ_right_stay',
  'right_stay_nearbi',
  'stay_nearbi_apart',
  'nearbi_apart_figur',
  'apart_figur_marriag',
  'figur_marriag_bryan',
  'marriag_bryan_stay',
  'bryan_stay_week',
  'stay_week_stay',
  'week_stay_dad',
  'stay_dad_next',
  'dad_next_week',
  'next_week_last',
  'week_last_friday',
  'last_friday_bryan',
  'friday_bryan_dad',
  'bryan_dad_get',
  'dad_get_call',
  'get_call_hospit',
  'call_hospit_say',
  'hospit_say_boyfriend',
  'say_boyfriend_clark',
  'boyfriend_clark_motarcycl',
  'clark_motarcycl_accid',
  'motarcycl_accid_rush',
  'accid_rush_hospit',
  'rush_hospit_find',
  'hospit_find_bryan',
  'find_bryan_kinda',
  'bryan_kinda_bang',
  'kinda_bang_gash',
  'bang_gash_forehead',
  'gash_forehead_cut',
  'forehead_cut_bruis',
  'cut_bruis_concuss',
  'bruis_concuss_ask',
  'concuss_ask_happend',
  'ask_happend_look',
  'happend_look_final',
  'look_final_got',
  'final_got_neve',
  'got_neve_tell',
  'neve_tell_wreck',
  'tell_wreck_motorcycl',
  'wreck_motorcycl_take',
  'motorcycl_take_clark',
  'take_clark_home',
  'clark_home_basebal',
  'home_basebal_practic',
  'basebal_practic_decid',
  'practic_decid_street',
  'decid_street_race',
  'street_race_guy',
  'race_guy_lost',
  'guy_lost_control',
  'lost_control_bike',
  'control_bike_flip',
  'bike_flip_steam',
  'flip_steam_ask',
  'steam_ask_hell',
  'ask_hell_ride',
  'hell_ride_motorcycl',
  'ride_motorcycl_without',
  'motorcycl_without_dad',
  'without_dad_would',
  'dad_would_someth',
  'would_someth_stupid',
  'someth_stupid_especi',
  'stupid_especi_ride',
  'especi_ride_someon',
  'ride_someon_els',
  'someon_els_start',
  'els_start_cri',
  'start_cri_say',
  'cri_say_sorri',
  'say_sorri_want',
  'sorri_want_know',
  'want_know_clark',
  'know_clark_ok',
  'clark_ok_went',
  'ok_went_check',
  'went_check_found',
  'check_found_clark',
  'found_clark_parent',
  'clark_parent_piss',
  'parent_piss_told',
  'piss_told_clark',
  'told_clark_broken',
  'clark_broken_rib',
  'broken_rib_leg',
  'rib_leg_two',
  'leg_two_finger',
  'two_finger_promis',
  'finger_promis_take',
  'promis_take_care',
  'take_care_medic',
  'care_medic_bill',
  'medic_bill_calm',
  'bill_calm_husband',
  'calm_husband_show',
  'husband_show_tri',
  'show_tri_explain',
  'tri_explain_apolog',
  'explain_apolog_let',
  'apolog_let_bryan',
  'let_bryan_ride',
  'bryan_ride_around',
  'ride_around_bf',
  'around_bf_went',
  'bf_went_middl',
  'went_middl_hospit',
  'middl_hospit_yell',
  'hospit_yell_reason',
  'yell_reason_separ',
  'reason_separ_irrespons',
  'separ_irrespons_parent',
  'irrespons_parent_never',
  'parent_never_took',
  'never_took_anyth',
  'took_anyth_serious',
  'anyth_serious_went',
  'serious_went_talk',
  'went_talk_bryan',
  'talk_bryan_still',
  'bryan_still_mad',
  'still_mad_told',
  'mad_told_hed',
  'told_hed_pay',
  'hed_pay_clark',
  'pay_clark_medic',
  'clark_medic_bill',
  'medic_bill_colleg',
  'bill_colleg_fund',
  'colleg_fund_money',
  'fund_money_hed',
  'money_hed_save',
  'hed_save_sinc',
  'save_sinc_ive',
  'sinc_ive_get',
  'ive_get_call',
  'get_call_husband',
  'call_husband_inlaw',
  'husband_inlaw_*',
  'inlaw_*_*',
  '*_*_*',
  '*_*_tch',
  '*_tch_husband',
  'tch_husband_possibl',
  'husband_possibl_take',
  'possibl_take_colleg',
  'take_colleg_away',
  'colleg_away_bryan',
  'away_bryan_mistak',
  'bryan_mistak_aita'],
 ['husband',
  'recent',
  'host',
  'famili',
  'dinner',
  'announc',
  'pregnanc',
  'import',
  'add',
  'husband',
  'close',
  'relationship',
  'father',
  'keep',
  'around',
  'still',
  'minor',
  'sibl',
  'love',
  'care',
  'fil',
  'type',
  'person',
  'still',
  'think',
  'women',
  'serv',
  'men',
  'din',
  'time',
  'like',
  'serv',
  'first',
  'breadwinn',
  'shit',
  'like',
  'usual',
  'care',
  'sinc',
  'mostli',
  'ignor',
  'howev',
  'time',
  'famili',
  'present',
  'consid',
  'fuck',
  'around',
  'found',
  'dad',
  'favorit',
  'person',
  'world',
  'mom',
  'die',
  'littl',
  'dad',
  'took',
  'care',
  'older',
  'sister',
  'theyr',
  'famili',
  'left',
  'dinner',
  'husband',
  'cook',
  'thing',
  'knew',
  'famili',
  'would',
  'like',
  'first',
  'issu',
  'start',
  'fil',
  'tri',
  'sit',
  'one',
  'head',
  'tabl',
  'husband',
  'said',
  'sad',
  'one',
  'sat',
  'father',
  'sister',
  'either',
  'side',
  'brother',
  'fil',
  'kinda',
  'middl',
  'like',
  'second',
  'problem',
  'caus',
  'everyon',
  'kinda',
  'serv',
  'howev',
  'dad',
  'damag',
  'nerv',
  'right',
  'hand',
  'struggl',
  'hold',
  'spoonsfork',
  'sister',
  'bought',
  'parkinson-frienli',
  'cutleri',
  'set',
  'bring',
  'around',
  'big',
  'spoon',
  'serv',
  'still',
  'hard',
  'offer',
  'serv',
  'plate',
  'sister',
  'serv',
  'drink',
  'sat',
  'eat',
  'chat',
  'three',
  'four',
  'minut',
  'fil',
  'ask',
  'loud',
  'one',
  'go',
  'serv',
  'plate',
  'husband',
  'look',
  'confus',
  'say',
  'mil',
  'get',
  'hurri',
  'take',
  'plate',
  'fil',
  'say',
  'hostess',
  'father',
  'cand',
  'say',
  'ye',
  'father',
  'injur',
  'hand',
  'fine',
  'say',
  'eat',
  'shrug',
  'said',
  'could',
  'starv',
  'care',
  'leav',
  'mil',
  'everyon',
  'agre',
  'father',
  'said',
  'disrespect',
  'thing',
  'say',
  'apolog',
  'way',
  'aita',
  'husband_recent',
  'recent_host',
  'host_famili',
  'famili_dinner',
  'dinner_announc',
  'announc_pregnanc',
  'pregnanc_import',
  'import_add',
  'add_husband',
  'husband_close',
  'close_relationship',
  'relationship_father',
  'father_keep',
  'keep_around',
  'around_still',
  'still_minor',
  'minor_sibl',
  'sibl_love',
  'love_care',
  'care_fil',
  'fil_type',
  'type_person',
  'person_still',
  'still_think',
  'think_women',
  'women_serv',
  'serv_men',
  'men_din',
  'din_time',
  'time_like',
  'like_serv',
  'serv_first',
  'first_breadwinn',
  'breadwinn_shit',
  'shit_like',
  'like_usual',
  'usual_care',
  'care_sinc',
  'sinc_mostli',
  'mostli_ignor',
  'ignor_howev',
  'howev_time',
  'time_famili',
  'famili_present',
  'present_consid',
  'consid_fuck',
  'fuck_around',
  'around_found',
  'found_dad',
  'dad_favorit',
  'favorit_person',
  'person_world',
  'world_mom',
  'mom_die',
  'die_littl',
  'littl_dad',
  'dad_took',
  'took_care',
  'care_older',
  'older_sister',
  'sister_theyr',
  'theyr_famili',
  'famili_left',
  'left_dinner',
  'dinner_husband',
  'husband_cook',
  'cook_thing',
  'thing_knew',
  'knew_famili',
  'famili_would',
  'would_like',
  'like_first',
  'first_issu',
  'issu_start',
  'start_fil',
  'fil_tri',
  'tri_sit',
  'sit_one',
  'one_head',
  'head_tabl',
  'tabl_husband',
  'husband_said',
  'said_sad',
  'sad_one',
  'one_sat',
  'sat_father',
  'father_sister',
  'sister_either',
  'either_side',
  'side_brother',
  'brother_fil',
  'fil_kinda',
  'kinda_middl',
  'middl_like',
  'like_second',
  'second_problem',
  'problem_caus',
  'caus_everyon',
  'everyon_kinda',
  'kinda_serv',
  'serv_howev',
  'howev_dad',
  'dad_damag',
  'damag_nerv',
  'nerv_right',
  'right_hand',
  'hand_struggl',
  'struggl_hold',
  'hold_spoonsfork',
  'spoonsfork_sister',
  'sister_bought',
  'bought_parkinson-frienli',
  'parkinson-frienli_cutleri',
  'cutleri_set',
  'set_bring',
  'bring_around',
  'around_big',
  'big_spoon',
  'spoon_serv',
  'serv_still',
  'still_hard',
  'hard_offer',
  'offer_serv',
  'serv_plate',
  'plate_sister',
  'sister_serv',
  'serv_drink',
  'drink_sat',
  'sat_eat',
  'eat_chat',
  'chat_three',
  'three_four',
  'four_minut',
  'minut_fil',
  'fil_ask',
  'ask_loud',
  'loud_one',
  'one_go',
  'go_serv',
  'serv_plate',
  'plate_husband',
  'husband_look',
  'look_confus',
  'confus_say',
  'say_mil',
  'mil_get',
  'get_hurri',
  'hurri_take',
  'take_plate',
  'plate_fil',
  'fil_say',
  'say_hostess',
  'hostess_father',
  'father_cand',
  'cand_say',
  'say_ye',
  'ye_father',
  'father_injur',
  'injur_hand',
  'hand_fine',
  'fine_say',
  'say_eat',
  'eat_shrug',
  'shrug_said',
  'said_could',
  'could_starv',
  'starv_care',
  'care_leav',
  'leav_mil',
  'mil_everyon',
  'everyon_agre',
  'agre_father',
  'father_said',
  'said_disrespect',
  'disrespect_thing',
  'thing_say',
  'say_apolog',
  'apolog_way',
  'way_aita',
  'husband_recent_host',
  'recent_host_famili',
  'host_famili_dinner',
  'famili_dinner_announc',
  'dinner_announc_pregnanc',
  'announc_pregnanc_import',
  'pregnanc_import_add',
  'import_add_husband',
  'add_husband_close',
  'husband_close_relationship',
  'close_relationship_father',
  'relationship_father_keep',
  'father_keep_around',
  'keep_around_still',
  'around_still_minor',
  'still_minor_sibl',
  'minor_sibl_love',
  'sibl_love_care',
  'love_care_fil',
  'care_fil_type',
  'fil_type_person',
  'type_person_still',
  'person_still_think',
  'still_think_women',
  'think_women_serv',
  'women_serv_men',
  'serv_men_din',
  'men_din_time',
  'din_time_like',
  'time_like_serv',
  'like_serv_first',
  'serv_first_breadwinn',
  'first_breadwinn_shit',
  'breadwinn_shit_like',
  'shit_like_usual',
  'like_usual_care',
  'usual_care_sinc',
  'care_sinc_mostli',
  'sinc_mostli_ignor',
  'mostli_ignor_howev',
  'ignor_howev_time',
  'howev_time_famili',
  'time_famili_present',
  'famili_present_consid',
  'present_consid_fuck',
  'consid_fuck_around',
  'fuck_around_found',
  'around_found_dad',
  'found_dad_favorit',
  'dad_favorit_person',
  'favorit_person_world',
  'person_world_mom',
  'world_mom_die',
  'mom_die_littl',
  'die_littl_dad',
  'littl_dad_took',
  'dad_took_care',
  'took_care_older',
  'care_older_sister',
  'older_sister_theyr',
  'sister_theyr_famili',
  'theyr_famili_left',
  'famili_left_dinner',
  'left_dinner_husband',
  'dinner_husband_cook',
  'husband_cook_thing',
  'cook_thing_knew',
  'thing_knew_famili',
  'knew_famili_would',
  'famili_would_like',
  'would_like_first',
  'like_first_issu',
  'first_issu_start',
  'issu_start_fil',
  'start_fil_tri',
  'fil_tri_sit',
  'tri_sit_one',
  'sit_one_head',
  'one_head_tabl',
  'head_tabl_husband',
  'tabl_husband_said',
  'husband_said_sad',
  'said_sad_one',
  'sad_one_sat',
  'one_sat_father',
  'sat_father_sister',
  'father_sister_either',
  'sister_either_side',
  'either_side_brother',
  'side_brother_fil',
  'brother_fil_kinda',
  'fil_kinda_middl',
  'kinda_middl_like',
  'middl_like_second',
  'like_second_problem',
  'second_problem_caus',
  'problem_caus_everyon',
  'caus_everyon_kinda',
  'everyon_kinda_serv',
  'kinda_serv_howev',
  'serv_howev_dad',
  'howev_dad_damag',
  'dad_damag_nerv',
  'damag_nerv_right',
  'nerv_right_hand',
  'right_hand_struggl',
  'hand_struggl_hold',
  'struggl_hold_spoonsfork',
  'hold_spoonsfork_sister',
  'spoonsfork_sister_bought',
  'sister_bought_parkinson-frienli',
  'bought_parkinson-frienli_cutleri',
  'parkinson-frienli_cutleri_set',
  'cutleri_set_bring',
  'set_bring_around',
  'bring_around_big',
  'around_big_spoon',
  'big_spoon_serv',
  'spoon_serv_still',
  'serv_still_hard',
  'still_hard_offer',
  'hard_offer_serv',
  'offer_serv_plate',
  'serv_plate_sister',
  'plate_sister_serv',
  'sister_serv_drink',
  'serv_drink_sat',
  'drink_sat_eat',
  'sat_eat_chat',
  'eat_chat_three',
  'chat_three_four',
  'three_four_minut',
  'four_minut_fil',
  'minut_fil_ask',
  'fil_ask_loud',
  'ask_loud_one',
  'loud_one_go',
  'one_go_serv',
  'go_serv_plate',
  'serv_plate_husband',
  'plate_husband_look',
  'husband_look_confus',
  'look_confus_say',
  'confus_say_mil',
  'say_mil_get',
  'mil_get_hurri',
  'get_hurri_take',
  'hurri_take_plate',
  'take_plate_fil',
  'plate_fil_say',
  'fil_say_hostess',
  'say_hostess_father',
  'hostess_father_cand',
  'father_cand_say',
  'cand_say_ye',
  'say_ye_father',
  'ye_father_injur',
  'father_injur_hand',
  'injur_hand_fine',
  'hand_fine_say',
  'fine_say_eat',
  'say_eat_shrug',
  'eat_shrug_said',
  'shrug_said_could',
  'said_could_starv',
  'could_starv_care',
  'starv_care_leav',
  'care_leav_mil',
  'leav_mil_everyon',
  'mil_everyon_agre',
  'everyon_agre_father',
  'agre_father_said',
  'father_said_disrespect',
  'said_disrespect_thing',
  'disrespect_thing_say',
  'thing_say_apolog',
  'say_apolog_way',
  'apolog_way_aita'],
 ['feel',
  'like',
  'devil',
  'right',
  'ill',
  'accept',
  'whatev',
  'judgement',
  'run',
  'team',
  'peopl',
  'compani',
  'offer',
  'larg',
  'amount',
  'matern',
  'leav',
  'month',
  'one',
  'employe',
  'got',
  'pregnant',
  'recent',
  'ill',
  'call',
  'jess',
  'team',
  'project',
  'base',
  'work',
  'period',
  'leav',
  'ml',
  'finish',
  'project',
  'work',
  'left',
  'start',
  'work',
  'project',
  'without',
  'period',
  'team',
  'adapt',
  'work',
  'without',
  'expertis',
  'certain',
  'matter',
  'adapt',
  'eventu',
  'us',
  'develop',
  'skill',
  'need',
  'workload',
  'situat',
  'split',
  'half',
  'work',
  'jess',
  'use',
  'hire',
  'someon',
  'new',
  'come',
  'team',
  'handl',
  'part',
  'jesss',
  'workload',
  'new',
  'employe',
  'came',
  'significantli',
  'reduc',
  'cost',
  'straight',
  'uni',
  'pay',
  'fraction',
  'jess',
  'cost',
  'current',
  'jess',
  'come',
  'back',
  'team',
  'anoth',
  'issu',
  'firm',
  'inform',
  'us',
  'fuck',
  'reason',
  'longer',
  'budget',
  'person',
  'team',
  'let',
  'someon',
  'go',
  'news',
  'came',
  'submit',
  'paperwork',
  'jesss',
  'return',
  'month',
  'project',
  'take',
  'estim',
  'month',
  'decis',
  'came',
  'jess',
  'man',
  'hire',
  'replac',
  'reason',
  'hire',
  'replac',
  'normal',
  'anticip',
  'project',
  'workload',
  'would',
  'far',
  'greater',
  'current',
  'capac',
  'tell',
  'titl',
  'chose',
  'replac',
  'follow',
  'reason',
  '*',
  'far',
  'cheaper',
  'thu',
  'free',
  'lot',
  'money',
  'keep',
  'jess',
  '*',
  'date',
  'project',
  'would',
  'abl',
  'move',
  'forward',
  'seamlessli',
  'wherea',
  'jess',
  'would',
  'take',
  'time',
  'catch',
  'speed',
  'half',
  'project',
  '*',
  'client',
  'alreadi',
  'knew',
  'like',
  'work',
  'wherea',
  'know',
  'jess',
  '*',
  'field',
  'prolong',
  'period',
  'whilst',
  'past',
  'month',
  'may',
  'may',
  'find',
  'hard',
  'adapt',
  'back',
  'work',
  'life',
  'whilst',
  'question',
  '*',
  'perform',
  'work',
  'better',
  'interact',
  'better',
  'team',
  'obvious',
  'ideal',
  'situat',
  'want',
  'keep',
  'put',
  'new',
  'singl',
  'mother',
  'job',
  'line',
  'cold',
  'right',
  'team',
  'firm',
  'told',
  'id',
  'write',
  'brilliant',
  'letter',
  'recommend',
  'month',
  'could',
  'tri',
  'appli',
  'job',
  'firm',
  'hope',
  'well',
  'budget',
  'snap',
  'told',
  'bother',
  'call',
  'cunt',
  'left',
  'know',
  'sound',
  'cold',
  'heartless',
  'fair',
  'employe',
  'jess',
  'right',
  'aita',
  'feel_like',
  'like_devil',
  'devil_right',
  'right_ill',
  'ill_accept',
  'accept_whatev',
  'whatev_judgement',
  'judgement_run',
  'run_team',
  'team_peopl',
  'peopl_compani',
  'compani_offer',
  'offer_larg',
  'larg_amount',
  'amount_matern',
  'matern_leav',
  'leav_month',
  'month_one',
  'one_employe',
  'employe_got',
  'got_pregnant',
  'pregnant_recent',
  'recent_ill',
  'ill_call',
  'call_jess',
  'jess_team',
  'team_project',
  'project_base',
  'base_work',
  'work_period',
  'period_leav',
  'leav_ml',
  'ml_finish',
  'finish_project',
  'project_work',
  'work_left',
  'left_start',
  'start_work',
  'work_project',
  'project_without',
  'without_period',
  'period_team',
  'team_adapt',
  'adapt_work',
  'work_without',
  'without_expertis',
  'expertis_certain',
  'certain_matter',
  'matter_adapt',
  'adapt_eventu',
  'eventu_us',
  'us_develop',
  'develop_skill',
  'skill_need',
  'need_workload',
  'workload_situat',
  'situat_split',
  'split_half',
  'half_work',
  'work_jess',
  'jess_use',
  'use_hire',
  'hire_someon',
  'someon_new',
  'new_come',
  'come_team',
  'team_handl',
  'handl_part',
  'part_jesss',
  'jesss_workload',
  'workload_new',
  'new_employe',
  'employe_came',
  'came_significantli',
  'significantli_reduc',
  'reduc_cost',
  'cost_straight',
  'straight_uni',
  'uni_pay',
  'pay_fraction',
  'fraction_jess',
  'jess_cost',
  'cost_current',
  'current_jess',
  'jess_come',
  'come_back',
  'back_team',
  'team_anoth',
  'anoth_issu',
  'issu_firm',
  'firm_inform',
  'inform_us',
  'us_fuck',
  'fuck_reason',
  'reason_longer',
  'longer_budget',
  'budget_person',
  'person_team',
  'team_let',
  'let_someon',
  'someon_go',
  'go_news',
  'news_came',
  'came_submit',
  'submit_paperwork',
  'paperwork_jesss',
  'jesss_return',
  'return_month',
  'month_project',
  'project_take',
  'take_estim',
  'estim_month',
  'month_decis',
  'decis_came',
  'came_jess',
  'jess_man',
  'man_hire',
  'hire_replac',
  'replac_reason',
  'reason_hire',
  'hire_replac',
  'replac_normal',
  'normal_anticip',
  'anticip_project',
  'project_workload',
  'workload_would',
  'would_far',
  'far_greater',
  'greater_current',
  'current_capac',
  'capac_tell',
  'tell_titl',
  'titl_chose',
  'chose_replac',
  'replac_follow',
  'follow_reason',
  'reason_*',
  '*_far',
  'far_cheaper',
  'cheaper_thu',
  'thu_free',
  'free_lot',
  'lot_money',
  'money_keep',
  'keep_jess',
  'jess_*',
  '*_date',
  'date_project',
  'project_would',
  'would_abl',
  'abl_move',
  'move_forward',
  'forward_seamlessli',
  'seamlessli_wherea',
  'wherea_jess',
  'jess_would',
  'would_take',
  'take_time',
  'time_catch',
  'catch_speed',
  'speed_half',
  'half_project',
  'project_*',
  '*_client',
  'client_alreadi',
  'alreadi_knew',
  'knew_like',
  'like_work',
  'work_wherea',
  'wherea_know',
  'know_jess',
  'jess_*',
  '*_field',
  'field_prolong',
  'prolong_period',
  'period_whilst',
  'whilst_past',
  'past_month',
  'month_may',
  'may_may',
  'may_find',
  'find_hard',
  'hard_adapt',
  'adapt_back',
  'back_work',
  'work_life',
  'life_whilst',
  'whilst_question',
  'question_*',
  '*_perform',
  'perform_work',
  'work_better',
  'better_interact',
  'interact_better',
  'better_team',
  'team_obvious',
  'obvious_ideal',
  'ideal_situat',
  'situat_want',
  'want_keep',
  'keep_put',
  'put_new',
  'new_singl',
  'singl_mother',
  'mother_job',
  'job_line',
  'line_cold',
  'cold_right',
  'right_team',
  'team_firm',
  'firm_told',
  'told_id',
  'id_write',
  'write_brilliant',
  'brilliant_letter',
  'letter_recommend',
  'recommend_month',
  'month_could',
  'could_tri',
  'tri_appli',
  'appli_job',
  'job_firm',
  'firm_hope',
  'hope_well',
  'well_budget',
  'budget_snap',
  'snap_told',
  'told_bother',
  'bother_call',
  'call_cunt',
  'cunt_left',
  'left_know',
  'know_sound',
  'sound_cold',
  'cold_heartless',
  'heartless_fair',
  'fair_employe',
  'employe_jess',
  'jess_right',
  'right_aita',
  'feel_like_devil',
  'like_devil_right',
  'devil_right_ill',
  'right_ill_accept',
  'ill_accept_whatev',
  'accept_whatev_judgement',
  'whatev_judgement_run',
  'judgement_run_team',
  'run_team_peopl',
  'team_peopl_compani',
  'peopl_compani_offer',
  'compani_offer_larg',
  'offer_larg_amount',
  'larg_amount_matern',
  'amount_matern_leav',
  'matern_leav_month',
  'leav_month_one',
  'month_one_employe',
  'one_employe_got',
  'employe_got_pregnant',
  'got_pregnant_recent',
  'pregnant_recent_ill',
  'recent_ill_call',
  'ill_call_jess',
  'call_jess_team',
  'jess_team_project',
  'team_project_base',
  'project_base_work',
  'base_work_period',
  'work_period_leav',
  'period_leav_ml',
  'leav_ml_finish',
  'ml_finish_project',
  'finish_project_work',
  'project_work_left',
  'work_left_start',
  'left_start_work',
  'start_work_project',
  'work_project_without',
  'project_without_period',
  'without_period_team',
  'period_team_adapt',
  'team_adapt_work',
  'adapt_work_without',
  'work_without_expertis',
  'without_expertis_certain',
  'expertis_certain_matter',
  'certain_matter_adapt',
  'matter_adapt_eventu',
  'adapt_eventu_us',
  'eventu_us_develop',
  'us_develop_skill',
  'develop_skill_need',
  'skill_need_workload',
  'need_workload_situat',
  'workload_situat_split',
  'situat_split_half',
  'split_half_work',
  'half_work_jess',
  'work_jess_use',
  'jess_use_hire',
  'use_hire_someon',
  'hire_someon_new',
  'someon_new_come',
  'new_come_team',
  'come_team_handl',
  'team_handl_part',
  'handl_part_jesss',
  'part_jesss_workload',
  'jesss_workload_new',
  'workload_new_employe',
  'new_employe_came',
  'employe_came_significantli',
  'came_significantli_reduc',
  'significantli_reduc_cost',
  'reduc_cost_straight',
  'cost_straight_uni',
  'straight_uni_pay',
  'uni_pay_fraction',
  'pay_fraction_jess',
  'fraction_jess_cost',
  'jess_cost_current',
  'cost_current_jess',
  'current_jess_come',
  'jess_come_back',
  'come_back_team',
  'back_team_anoth',
  'team_anoth_issu',
  'anoth_issu_firm',
  'issu_firm_inform',
  'firm_inform_us',
  'inform_us_fuck',
  'us_fuck_reason',
  'fuck_reason_longer',
  'reason_longer_budget',
  'longer_budget_person',
  'budget_person_team',
  'person_team_let',
  'team_let_someon',
  'let_someon_go',
  'someon_go_news',
  'go_news_came',
  'news_came_submit',
  'came_submit_paperwork',
  'submit_paperwork_jesss',
  'paperwork_jesss_return',
  'jesss_return_month',
  'return_month_project',
  'month_project_take',
  'project_take_estim',
  'take_estim_month',
  'estim_month_decis',
  'month_decis_came',
  'decis_came_jess',
  'came_jess_man',
  'jess_man_hire',
  'man_hire_replac',
  'hire_replac_reason',
  'replac_reason_hire',
  'reason_hire_replac',
  'hire_replac_normal',
  'replac_normal_anticip',
  'normal_anticip_project',
  'anticip_project_workload',
  'project_workload_would',
  'workload_would_far',
  'would_far_greater',
  'far_greater_current',
  'greater_current_capac',
  'current_capac_tell',
  'capac_tell_titl',
  'tell_titl_chose',
  'titl_chose_replac',
  'chose_replac_follow',
  'replac_follow_reason',
  'follow_reason_*',
  'reason_*_far',
  '*_far_cheaper',
  'far_cheaper_thu',
  'cheaper_thu_free',
  'thu_free_lot',
  'free_lot_money',
  'lot_money_keep',
  'money_keep_jess',
  'keep_jess_*',
  'jess_*_date',
  '*_date_project',
  'date_project_would',
  'project_would_abl',
  'would_abl_move',
  'abl_move_forward',
  'move_forward_seamlessli',
  'forward_seamlessli_wherea',
  'seamlessli_wherea_jess',
  'wherea_jess_would',
  'jess_would_take',
  'would_take_time',
  'take_time_catch',
  'time_catch_speed',
  'catch_speed_half',
  'speed_half_project',
  'half_project_*',
  'project_*_client',
  '*_client_alreadi',
  'client_alreadi_knew',
  'alreadi_knew_like',
  'knew_like_work',
  'like_work_wherea',
  'work_wherea_know',
  'wherea_know_jess',
  'know_jess_*',
  'jess_*_field',
  '*_field_prolong',
  'field_prolong_period',
  'prolong_period_whilst',
  'period_whilst_past',
  'whilst_past_month',
  'past_month_may',
  'month_may_may',
  'may_may_find',
  'may_find_hard',
  'find_hard_adapt',
  'hard_adapt_back',
  'adapt_back_work',
  'back_work_life',
  'work_life_whilst',
  'life_whilst_question',
  'whilst_question_*',
  'question_*_perform',
  '*_perform_work',
  'perform_work_better',
  'work_better_interact',
  'better_interact_better',
  'interact_better_team',
  'better_team_obvious',
  'team_obvious_ideal',
  'obvious_ideal_situat',
  'ideal_situat_want',
  'situat_want_keep',
  'want_keep_put',
  'keep_put_new',
  'put_new_singl',
  'new_singl_mother',
  'singl_mother_job',
  'mother_job_line',
  'job_line_cold',
  'line_cold_right',
  'cold_right_team',
  'right_team_firm',
  'team_firm_told',
  'firm_told_id',
  'told_id_write',
  'id_write_brilliant',
  'write_brilliant_letter',
  'brilliant_letter_recommend',
  'letter_recommend_month',
  'recommend_month_could',
  'month_could_tri',
  'could_tri_appli',
  'tri_appli_job',
  'appli_job_firm',
  'job_firm_hope',
  'firm_hope_well',
  'hope_well_budget',
  'well_budget_snap',
  'budget_snap_told',
  'snap_told_bother',
  'told_bother_call',
  'bother_call_cunt',
  'call_cunt_left',
  'cunt_left_know',
  'left_know_sound',
  'know_sound_cold',
  'sound_cold_heartless',
  'cold_heartless_fair',
  'heartless_fair_employe',
  'fair_employe_jess',
  'employe_jess_right',
  'jess_right_aita'],
 ['close',
  'famili',
  'live',
  'differ',
  'state',
  'much',
  'contact',
  'brother',
  'got',
  'marri',
  'last',
  'weekend',
  'invit',
  'told',
  'ill',
  'come',
  '+',
  'husband',
  'recent',
  'separ',
  'found',
  'pregnant',
  'extend',
  'famili',
  'know',
  'separ',
  'pregnanc',
  'told',
  'brother',
  'pregnant',
  'spoke',
  'phone',
  'wed',
  'congratul',
  'less',
  'famili',
  'also',
  'knew',
  'marriag',
  'rocki',
  'parent',
  'also',
  'knew',
  'pregnanc',
  'month',
  'pregnant',
  'right',
  'get',
  'divorc',
  'show',
  'wed',
  'everyon',
  'super',
  'shock',
  'see',
  'pregnant',
  'alon',
  'lot',
  'question',
  'follow',
  'answer',
  'littl',
  'info',
  'possibl',
  'ceremoni',
  'priest',
  'mention',
  'pregnanc',
  'small',
  'town',
  'priest',
  'sinc',
  'kid',
  'make',
  'joke',
  'whatev',
  'next',
  'bride',
  'groom',
  '-',
  'babi',
  'someth',
  'like',
  'op',
  'babi',
  'hope',
  'mani',
  'join',
  'beauti',
  'famili',
  'bride',
  'groom',
  'bride',
  'piss',
  'everyon',
  'knew',
  'pregnant',
  'pictur',
  'take',
  'part',
  'recept',
  'brother',
  'say',
  'okay',
  'want',
  'take',
  'pic',
  'favourit',
  'sister',
  'first',
  'nephew',
  'laugh',
  'said',
  'niec',
  'actual',
  'super',
  'happi',
  'took',
  'pic',
  'bride',
  'came',
  'later',
  'call',
  'ah',
  'upstag',
  'wed',
  'pregnanc',
  'also',
  'babi',
  'gender',
  'announc',
  'famili',
  'obvious',
  'side',
  'brother',
  'think',
  'act',
  'crazi',
  'noth',
  'wrong',
  'parent',
  'think',
  'inform',
  'peopl',
  'pregnant',
  'come',
  'wed',
  '+',
  'kept',
  'quit',
  'gender',
  'realli',
  'ah',
  'close_famili',
  'famili_live',
  'live_differ',
  'differ_state',
  'state_much',
  'much_contact',
  'contact_brother',
  'brother_got',
  'got_marri',
  'marri_last',
  'last_weekend',
  'weekend_invit',
  'invit_told',
  'told_ill',
  'ill_come',
  'come_+',
  '+_husband',
  'husband_recent',
  'recent_separ',
  'separ_found',
  'found_pregnant',
  'pregnant_extend',
  'extend_famili',
  'famili_know',
  'know_separ',
  'separ_pregnanc',
  'pregnanc_told',
  'told_brother',
  'brother_pregnant',
  'pregnant_spoke',
  'spoke_phone',
  'phone_wed',
  'wed_congratul',
  'congratul_less',
  'less_famili',
  'famili_also',
  'also_knew',
  'knew_marriag',
  'marriag_rocki',
  'rocki_parent',
  'parent_also',
  'also_knew',
  'knew_pregnanc',
  'pregnanc_month',
  'month_pregnant',
  'pregnant_right',
  'right_get',
  'get_divorc',
  'divorc_show',
  'show_wed',
  'wed_everyon',
  'everyon_super',
  'super_shock',
  'shock_see',
  'see_pregnant',
  'pregnant_alon',
  'alon_lot',
  'lot_question',
  'question_follow',
  'follow_answer',
  'answer_littl',
  'littl_info',
  'info_possibl',
  'possibl_ceremoni',
  'ceremoni_priest',
  'priest_mention',
  'mention_pregnanc',
  'pregnanc_small',
  'small_town',
  'town_priest',
  'priest_sinc',
  'sinc_kid',
  'kid_make',
  'make_joke',
  'joke_whatev',
  'whatev_next',
  'next_bride',
  'bride_groom',
  'groom_-',
  '-_babi',
  'babi_someth',
  'someth_like',
  'like_op',
  'op_babi',
  'babi_hope',
  'hope_mani',
  'mani_join',
  'join_beauti',
  'beauti_famili',
  'famili_bride',
  'bride_groom',
  'groom_bride',
  'bride_piss',
  'piss_everyon',
  'everyon_knew',
  'knew_pregnant',
  'pregnant_pictur',
  'pictur_take',
  'take_part',
  'part_recept',
  'recept_brother',
  'brother_say',
  'say_okay',
  'okay_want',
  'want_take',
  'take_pic',
  'pic_favourit',
  'favourit_sister',
  'sister_first',
  'first_nephew',
  'nephew_laugh',
  'laugh_said',
  'said_niec',
  'niec_actual',
  'actual_super',
  'super_happi',
  'happi_took',
  'took_pic',
  'pic_bride',
  'bride_came',
  'came_later',
  'later_call',
  'call_ah',
  'ah_upstag',
  'upstag_wed',
  'wed_pregnanc',
  'pregnanc_also',
  'also_babi',
  'babi_gender',
  'gender_announc',
  'announc_famili',
  'famili_obvious',
  'obvious_side',
  'side_brother',
  'brother_think',
  'think_act',
  'act_crazi',
  'crazi_noth',
  'noth_wrong',
  'wrong_parent',
  'parent_think',
  'think_inform',
  'inform_peopl',
  'peopl_pregnant',
  'pregnant_come',
  'come_wed',
  'wed_+',
  '+_kept',
  'kept_quit',
  'quit_gender',
  'gender_realli',
  'realli_ah',
  'close_famili_live',
  'famili_live_differ',
  'live_differ_state',
  'differ_state_much',
  'state_much_contact',
  'much_contact_brother',
  'contact_brother_got',
  'brother_got_marri',
  'got_marri_last',
  'marri_last_weekend',
  'last_weekend_invit',
  'weekend_invit_told',
  'invit_told_ill',
  'told_ill_come',
  'ill_come_+',
  'come_+_husband',
  '+_husband_recent',
  'husband_recent_separ',
  'recent_separ_found',
  'separ_found_pregnant',
  'found_pregnant_extend',
  'pregnant_extend_famili',
  'extend_famili_know',
  'famili_know_separ',
  'know_separ_pregnanc',
  'separ_pregnanc_told',
  'pregnanc_told_brother',
  'told_brother_pregnant',
  'brother_pregnant_spoke',
  'pregnant_spoke_phone',
  'spoke_phone_wed',
  'phone_wed_congratul',
  'wed_congratul_less',
  'congratul_less_famili',
  'less_famili_also',
  'famili_also_knew',
  'also_knew_marriag',
  'knew_marriag_rocki',
  'marriag_rocki_parent',
  'rocki_parent_also',
  'parent_also_knew',
  'also_knew_pregnanc',
  'knew_pregnanc_month',
  'pregnanc_month_pregnant',
  'month_pregnant_right',
  'pregnant_right_get',
  'right_get_divorc',
  'get_divorc_show',
  'divorc_show_wed',
  'show_wed_everyon',
  'wed_everyon_super',
  'everyon_super_shock',
  'super_shock_see',
  'shock_see_pregnant',
  'see_pregnant_alon',
  'pregnant_alon_lot',
  'alon_lot_question',
  'lot_question_follow',
  'question_follow_answer',
  'follow_answer_littl',
  'answer_littl_info',
  'littl_info_possibl',
  'info_possibl_ceremoni',
  'possibl_ceremoni_priest',
  'ceremoni_priest_mention',
  'priest_mention_pregnanc',
  'mention_pregnanc_small',
  'pregnanc_small_town',
  'small_town_priest',
  'town_priest_sinc',
  'priest_sinc_kid',
  'sinc_kid_make',
  'kid_make_joke',
  'make_joke_whatev',
  'joke_whatev_next',
  'whatev_next_bride',
  'next_bride_groom',
  'bride_groom_-',
  'groom_-_babi',
  '-_babi_someth',
  'babi_someth_like',
  'someth_like_op',
  'like_op_babi',
  'op_babi_hope',
  'babi_hope_mani',
  'hope_mani_join',
  'mani_join_beauti',
  'join_beauti_famili',
  'beauti_famili_bride',
  'famili_bride_groom',
  'bride_groom_bride',
  'groom_bride_piss',
  'bride_piss_everyon',
  'piss_everyon_knew',
  'everyon_knew_pregnant',
  'knew_pregnant_pictur',
  'pregnant_pictur_take',
  'pictur_take_part',
  'take_part_recept',
  'part_recept_brother',
  'recept_brother_say',
  'brother_say_okay',
  'say_okay_want',
  'okay_want_take',
  'want_take_pic',
  'take_pic_favourit',
  'pic_favourit_sister',
  'favourit_sister_first',
  'sister_first_nephew',
  'first_nephew_laugh',
  'nephew_laugh_said',
  'laugh_said_niec',
  'said_niec_actual',
  'niec_actual_super',
  'actual_super_happi',
  'super_happi_took',
  'happi_took_pic',
  'took_pic_bride',
  'pic_bride_came',
  'bride_came_later',
  'came_later_call',
  'later_call_ah',
  'call_ah_upstag',
  'ah_upstag_wed',
  'upstag_wed_pregnanc',
  'wed_pregnanc_also',
  'pregnanc_also_babi',
  'also_babi_gender',
  'babi_gender_announc',
  'gender_announc_famili',
  'announc_famili_obvious',
  'famili_obvious_side',
  'obvious_side_brother',
  'side_brother_think',
  'brother_think_act',
  'think_act_crazi',
  'act_crazi_noth',
  'crazi_noth_wrong',
  'noth_wrong_parent',
  'wrong_parent_think',
  'parent_think_inform',
  'think_inform_peopl',
  'inform_peopl_pregnant',
  'peopl_pregnant_come',
  'pregnant_come_wed',
  'come_wed_+',
  'wed_+_kept',
  '+_kept_quit',
  'kept_quit_gender',
  'quit_gender_realli',
  'gender_realli_ah'],
 ['ok',
  'wife',
  'habit',
  'put',
  'note',
  'affirm',
  'lunch',
  'pack',
  'year',
  'start',
  'suffer',
  'issu',
  'surround',
  'employ',
  'appreci',
  'lot',
  'give',
  'strength',
  'renew',
  'energi',
  'rest',
  'day',
  'anyway',
  'co-work',
  'know',
  'sometim',
  'would',
  'teas',
  'call',
  'th',
  'th',
  'grader',
  'call',
  'wife',
  'granni',
  'teas',
  'noth',
  'unusu',
  'happen',
  'lunch',
  'guy',
  'depart',
  'sit',
  'togeth',
  'co-work',
  'mine',
  'jimmi',
  'newest',
  'employe',
  'compani',
  'lost',
  'wife',
  'month',
  'ago',
  'sort',
  'pricat',
  'dude',
  'gener',
  'howev',
  'start',
  'sit',
  'us',
  'lunch',
  'break',
  'guy',
  'insist',
  'sit',
  'eat',
  'food',
  'look',
  'note',
  'wife',
  'left',
  'rins',
  'repeat',
  'til',
  'day',
  'ago',
  'one',
  'co-work',
  'pull',
  'asid',
  'began',
  'talk',
  'note',
  'thing',
  'brought',
  'told',
  'jimmi',
  'enjoy',
  'sit',
  'us',
  'lunch',
  'break',
  'help',
  'feel',
  'uncomfort',
  'note',
  'keep',
  'pullinh',
  'packag',
  'everi',
  'day',
  'went',
  'tell',
  'dude',
  'lost',
  'wife',
  'see',
  'get',
  'note',
  'mine',
  'hit',
  'nerv',
  'remind',
  'late',
  'wife',
  'felt',
  'puzzl',
  'ask',
  'ok',
  'suppos',
  'told',
  'consid',
  'tell',
  'wife',
  'stop',
  'put',
  'note',
  'mayb',
  'find',
  'way',
  'instead',
  'bring',
  'work',
  'jimmi',
  'look',
  'likei',
  'sure',
  'say',
  'told',
  'ridicul',
  'remind',
  'jimmi',
  'sent',
  'messag',
  'think',
  'itd',
  'give',
  'space',
  'react',
  'told',
  'liter',
  'lose',
  'noth',
  'consider',
  'poor',
  'guy',
  'andb',
  'less',
  'insensit',
  'told',
  'said',
  'fault',
  'jimmi',
  'struggl',
  'grief',
  'like',
  'even',
  'know',
  'well',
  'acommad',
  'extent',
  'said',
  'cruel',
  'selfish',
  'got',
  'witnesd',
  'argument',
  'shame',
  'stanc',
  'refus',
  'went',
  'back',
  'work',
  'project',
  'thing',
  'tens',
  'workplac',
  'guy',
  'im',
  'close',
  'say',
  'empathet',
  'tri',
  'make',
  'jimmi',
  'uncomfort',
  'went',
  'hell',
  'get',
  'sit',
  'lunchbreak',
  'ok_wife',
  'wife_habit',
  'habit_put',
  'put_note',
  'note_affirm',
  'affirm_lunch',
  'lunch_pack',
  'pack_year',
  'year_start',
  'start_suffer',
  'suffer_issu',
  'issu_surround',
  'surround_employ',
  'employ_appreci',
  'appreci_lot',
  'lot_give',
  'give_strength',
  'strength_renew',
  'renew_energi',
  'energi_rest',
  'rest_day',
  'day_anyway',
  'anyway_co-work',
  'co-work_know',
  'know_sometim',
  'sometim_would',
  'would_teas',
  'teas_call',
  'call_th',
  'th_th',
  'th_grader',
  'grader_call',
  'call_wife',
  'wife_granni',
  'granni_teas',
  'teas_noth',
  'noth_unusu',
  'unusu_happen',
  'happen_lunch',
  'lunch_guy',
  'guy_depart',
  'depart_sit',
  'sit_togeth',
  'togeth_co-work',
  'co-work_mine',
  'mine_jimmi',
  'jimmi_newest',
  'newest_employe',
  'employe_compani',
  'compani_lost',
  'lost_wife',
  'wife_month',
  'month_ago',
  'ago_sort',
  'sort_pricat',
  'pricat_dude',
  'dude_gener',
  'gener_howev',
  'howev_start',
  'start_sit',
  'sit_us',
  'us_lunch',
  'lunch_break',
  'break_guy',
  'guy_insist',
  'insist_sit',
  'sit_eat',
  'eat_food',
  'food_look',
  'look_note',
  'note_wife',
  'wife_left',
  'left_rins',
  'rins_repeat',
  'repeat_til',
  'til_day',
  'day_ago',
  'ago_one',
  'one_co-work',
  'co-work_pull',
  'pull_asid',
  'asid_began',
  'began_talk',
  'talk_note',
  'note_thing',
  'thing_brought',
  'brought_told',
  'told_jimmi',
  'jimmi_enjoy',
  'enjoy_sit',
  'sit_us',
  'us_lunch',
  'lunch_break',
  'break_help',
  'help_feel',
  'feel_uncomfort',
  'uncomfort_note',
  'note_keep',
  'keep_pullinh',
  'pullinh_packag',
  'packag_everi',
  'everi_day',
  'day_went',
  'went_tell',
  'tell_dude',
  'dude_lost',
  'lost_wife',
  'wife_see',
  'see_get',
  'get_note',
  'note_mine',
  'mine_hit',
  'hit_nerv',
  'nerv_remind',
  'remind_late',
  'late_wife',
  'wife_felt',
  'felt_puzzl',
  'puzzl_ask',
  'ask_ok',
  'ok_suppos',
  'suppos_told',
  'told_consid',
  'consid_tell',
  'tell_wife',
  'wife_stop',
  'stop_put',
  'put_note',
  'note_mayb',
  'mayb_find',
  'find_way',
  'way_instead',
  'instead_bring',
  'bring_work',
  'work_jimmi',
  'jimmi_look',
  'look_likei',
  'likei_sure',
  'sure_say',
  'say_told',
  'told_ridicul',
  'ridicul_remind',
  'remind_jimmi',
  'jimmi_sent',
  'sent_messag',
  'messag_think',
  'think_itd',
  'itd_give',
  'give_space',
  'space_react',
  'react_told',
  'told_liter',
  'liter_lose',
  'lose_noth',
  'noth_consider',
  'consider_poor',
  'poor_guy',
  'guy_andb',
  'andb_less',
  'less_insensit',
  'insensit_told',
  'told_said',
  'said_fault',
  'fault_jimmi',
  'jimmi_struggl',
  'struggl_grief',
  'grief_like',
  'like_even',
  'even_know',
  'know_well',
  'well_acommad',
  'acommad_extent',
  'extent_said',
  'said_cruel',
  'cruel_selfish',
  'selfish_got',
  'got_witnesd',
  'witnesd_argument',
  'argument_shame',
  'shame_stanc',
  'stanc_refus',
  'refus_went',
  'went_back',
  'back_work',
  'work_project',
  'project_thing',
  'thing_tens',
  'tens_workplac',
  'workplac_guy',
  'guy_im',
  'im_close',
  'close_say',
  'say_empathet',
  'empathet_tri',
  'tri_make',
  'make_jimmi',
  'jimmi_uncomfort',
  'uncomfort_went',
  'went_hell',
  'hell_get',
  'get_sit',
  'sit_lunchbreak',
  'ok_wife_habit',
  'wife_habit_put',
  'habit_put_note',
  'put_note_affirm',
  'note_affirm_lunch',
  'affirm_lunch_pack',
  'lunch_pack_year',
  'pack_year_start',
  'year_start_suffer',
  'start_suffer_issu',
  'suffer_issu_surround',
  'issu_surround_employ',
  'surround_employ_appreci',
  'employ_appreci_lot',
  'appreci_lot_give',
  'lot_give_strength',
  'give_strength_renew',
  'strength_renew_energi',
  'renew_energi_rest',
  'energi_rest_day',
  'rest_day_anyway',
  'day_anyway_co-work',
  'anyway_co-work_know',
  'co-work_know_sometim',
  'know_sometim_would',
  'sometim_would_teas',
  'would_teas_call',
  'teas_call_th',
  'call_th_th',
  'th_th_grader',
  'th_grader_call',
  'grader_call_wife',
  'call_wife_granni',
  'wife_granni_teas',
  'granni_teas_noth',
  'teas_noth_unusu',
  'noth_unusu_happen',
  'unusu_happen_lunch',
  'happen_lunch_guy',
  'lunch_guy_depart',
  'guy_depart_sit',
  'depart_sit_togeth',
  'sit_togeth_co-work',
  'togeth_co-work_mine',
  'co-work_mine_jimmi',
  'mine_jimmi_newest',
  'jimmi_newest_employe',
  'newest_employe_compani',
  'employe_compani_lost',
  'compani_lost_wife',
  'lost_wife_month',
  'wife_month_ago',
  'month_ago_sort',
  'ago_sort_pricat',
  'sort_pricat_dude',
  'pricat_dude_gener',
  'dude_gener_howev',
  'gener_howev_start',
  'howev_start_sit',
  'start_sit_us',
  'sit_us_lunch',
  'us_lunch_break',
  'lunch_break_guy',
  'break_guy_insist',
  'guy_insist_sit',
  'insist_sit_eat',
  'sit_eat_food',
  'eat_food_look',
  'food_look_note',
  'look_note_wife',
  'note_wife_left',
  'wife_left_rins',
  'left_rins_repeat',
  'rins_repeat_til',
  'repeat_til_day',
  'til_day_ago',
  'day_ago_one',
  'ago_one_co-work',
  'one_co-work_pull',
  'co-work_pull_asid',
  'pull_asid_began',
  'asid_began_talk',
  'began_talk_note',
  'talk_note_thing',
  'note_thing_brought',
  'thing_brought_told',
  'brought_told_jimmi',
  'told_jimmi_enjoy',
  'jimmi_enjoy_sit',
  'enjoy_sit_us',
  'sit_us_lunch',
  'us_lunch_break',
  'lunch_break_help',
  'break_help_feel',
  'help_feel_uncomfort',
  'feel_uncomfort_note',
  'uncomfort_note_keep',
  'note_keep_pullinh',
  'keep_pullinh_packag',
  'pullinh_packag_everi',
  'packag_everi_day',
  'everi_day_went',
  'day_went_tell',
  'went_tell_dude',
  'tell_dude_lost',
  'dude_lost_wife',
  'lost_wife_see',
  'wife_see_get',
  'see_get_note',
  'get_note_mine',
  'note_mine_hit',
  'mine_hit_nerv',
  'hit_nerv_remind',
  'nerv_remind_late',
  'remind_late_wife',
  'late_wife_felt',
  'wife_felt_puzzl',
  'felt_puzzl_ask',
  'puzzl_ask_ok',
  'ask_ok_suppos',
  'ok_suppos_told',
  'suppos_told_consid',
  'told_consid_tell',
  'consid_tell_wife',
  'tell_wife_stop',
  'wife_stop_put',
  'stop_put_note',
  'put_note_mayb',
  'note_mayb_find',
  'mayb_find_way',
  'find_way_instead',
  'way_instead_bring',
  'instead_bring_work',
  'bring_work_jimmi',
  'work_jimmi_look',
  'jimmi_look_likei',
  'look_likei_sure',
  'likei_sure_say',
  'sure_say_told',
  'say_told_ridicul',
  'told_ridicul_remind',
  'ridicul_remind_jimmi',
  'remind_jimmi_sent',
  'jimmi_sent_messag',
  'sent_messag_think',
  'messag_think_itd',
  'think_itd_give',
  'itd_give_space',
  'give_space_react',
  'space_react_told',
  'react_told_liter',
  'told_liter_lose',
  'liter_lose_noth',
  'lose_noth_consider',
  'noth_consider_poor',
  'consider_poor_guy',
  'poor_guy_andb',
  'guy_andb_less',
  'andb_less_insensit',
  'less_insensit_told',
  'insensit_told_said',
  'told_said_fault',
  'said_fault_jimmi',
  'fault_jimmi_struggl',
  'jimmi_struggl_grief',
  'struggl_grief_like',
  'grief_like_even',
  'like_even_know',
  'even_know_well',
  'know_well_acommad',
  'well_acommad_extent',
  'acommad_extent_said',
  'extent_said_cruel',
  'said_cruel_selfish',
  'cruel_selfish_got',
  'selfish_got_witnesd',
  'got_witnesd_argument',
  'witnesd_argument_shame',
  'argument_shame_stanc',
  'shame_stanc_refus',
  'stanc_refus_went',
  'refus_went_back',
  'went_back_work',
  'back_work_project',
  'work_project_thing',
  'project_thing_tens',
  'thing_tens_workplac',
  'tens_workplac_guy',
  'workplac_guy_im',
  'guy_im_close',
  'im_close_say',
  'close_say_empathet',
  'say_empathet_tri',
  'empathet_tri_make',
  'tri_make_jimmi',
  'make_jimmi_uncomfort',
  'jimmi_uncomfort_went',
  'uncomfort_went_hell',
  'went_hell_get',
  'hell_get_sit',
  'get_sit_lunchbreak'],
 ['job',
  'year',
  'also',
  'marri',
  'husbandm',
  'durat',
  'except',
  'year',
  'wfh',
  'husband-',
  'florist-',
  'send',
  'small',
  'bouquet',
  'flower',
  'everi',
  'monday',
  'think',
  'rose',
  'small',
  'bunch',
  'babi',
  'breathjust',
  'small',
  'arrang',
  'small',
  'vase',
  'desk',
  'put',
  'year',
  'new',
  'woman',
  'join',
  'workplac',
  'first',
  'monday',
  'receiv',
  'bouquet',
  'ask',
  'special',
  'day',
  'anoth',
  'cowork',
  'said',
  'weekli',
  'gift',
  'husband',
  'made',
  'face',
  'chang',
  'subject',
  'start',
  'make',
  'comment',
  'everi',
  'singl',
  'monday',
  'receptionist',
  'bring',
  'gift',
  'small',
  'thing',
  'like',
  'well',
  'cant',
  'afford',
  'wast',
  'money',
  'stuff',
  'like',
  'think',
  'bit',
  'tacki',
  'never',
  'react',
  'jab',
  'pro',
  'select',
  'hear',
  'last',
  'monday',
  'went',
  'lign',
  'imo',
  'said',
  'think',
  'hubbi',
  'overcompens',
  'sure',
  'mistress',
  'piss',
  'said',
  'well',
  'us',
  'love',
  'spous',
  'like',
  'show',
  'us',
  'stay',
  'toxic',
  'relationship',
  'sake',
  'keep',
  'appear',
  'low',
  'blow',
  'sinc',
  'knew',
  'troubl',
  'husband',
  'start',
  'sob',
  'left',
  'work',
  'earli',
  'everi',
  'singl',
  'person',
  'offic',
  'say',
  'right',
  'patient',
  'would',
  'situat',
  'cant',
  'help',
  'feel',
  'like',
  'went',
  'far',
  'aita',
  'job_year',
  'year_also',
  'also_marri',
  'marri_husbandm',
  'husbandm_durat',
  'durat_except',
  'except_year',
  'year_wfh',
  'wfh_husband-',
  'husband-_florist-',
  'florist-_send',
  'send_small',
  'small_bouquet',
  'bouquet_flower',
  'flower_everi',
  'everi_monday',
  'monday_think',
  'think_rose',
  'rose_small',
  'small_bunch',
  'bunch_babi',
  'babi_breathjust',
  'breathjust_small',
  'small_arrang',
  'arrang_small',
  'small_vase',
  'vase_desk',
  'desk_put',
  'put_year',
  'year_new',
  'new_woman',
  'woman_join',
  'join_workplac',
  'workplac_first',
  'first_monday',
  'monday_receiv',
  'receiv_bouquet',
  'bouquet_ask',
  'ask_special',
  'special_day',
  'day_anoth',
  'anoth_cowork',
  'cowork_said',
  'said_weekli',
  'weekli_gift',
  'gift_husband',
  'husband_made',
  'made_face',
  'face_chang',
  'chang_subject',
  'subject_start',
  'start_make',
  'make_comment',
  'comment_everi',
  'everi_singl',
  'singl_monday',
  'monday_receptionist',
  'receptionist_bring',
  'bring_gift',
  'gift_small',
  'small_thing',
  'thing_like',
  'like_well',
  'well_cant',
  'cant_afford',
  'afford_wast',
  'wast_money',
  'money_stuff',
  'stuff_like',
  'like_think',
  'think_bit',
  'bit_tacki',
  'tacki_never',
  'never_react',
  'react_jab',
  'jab_pro',
  'pro_select',
  'select_hear',
  'hear_last',
  'last_monday',
  'monday_went',
  'went_lign',
  'lign_imo',
  'imo_said',
  'said_think',
  'think_hubbi',
  'hubbi_overcompens',
  'overcompens_sure',
  'sure_mistress',
  'mistress_piss',
  'piss_said',
  'said_well',
  'well_us',
  'us_love',
  'love_spous',
  'spous_like',
  'like_show',
  'show_us',
  'us_stay',
  'stay_toxic',
  'toxic_relationship',
  'relationship_sake',
  'sake_keep',
  'keep_appear',
  'appear_low',
  'low_blow',
  'blow_sinc',
  'sinc_knew',
  'knew_troubl',
  'troubl_husband',
  'husband_start',
  'start_sob',
  'sob_left',
  'left_work',
  'work_earli',
  'earli_everi',
  'everi_singl',
  'singl_person',
  'person_offic',
  'offic_say',
  'say_right',
  'right_patient',
  'patient_would',
  'would_situat',
  'situat_cant',
  'cant_help',
  'help_feel',
  'feel_like',
  'like_went',
  'went_far',
  'far_aita',
  'job_year_also',
  'year_also_marri',
  'also_marri_husbandm',
  'marri_husbandm_durat',
  'husbandm_durat_except',
  'durat_except_year',
  'except_year_wfh',
  'year_wfh_husband-',
  'wfh_husband-_florist-',
  'husband-_florist-_send',
  'florist-_send_small',
  'send_small_bouquet',
  'small_bouquet_flower',
  'bouquet_flower_everi',
  'flower_everi_monday',
  'everi_monday_think',
  'monday_think_rose',
  'think_rose_small',
  'rose_small_bunch',
  'small_bunch_babi',
  'bunch_babi_breathjust',
  'babi_breathjust_small',
  'breathjust_small_arrang',
  'small_arrang_small',
  'arrang_small_vase',
  'small_vase_desk',
  'vase_desk_put',
  'desk_put_year',
  'put_year_new',
  'year_new_woman',
  'new_woman_join',
  'woman_join_workplac',
  'join_workplac_first',
  'workplac_first_monday',
  'first_monday_receiv',
  'monday_receiv_bouquet',
  'receiv_bouquet_ask',
  'bouquet_ask_special',
  'ask_special_day',
  'special_day_anoth',
  'day_anoth_cowork',
  'anoth_cowork_said',
  'cowork_said_weekli',
  'said_weekli_gift',
  'weekli_gift_husband',
  'gift_husband_made',
  'husband_made_face',
  'made_face_chang',
  'face_chang_subject',
  'chang_subject_start',
  'subject_start_make',
  'start_make_comment',
  'make_comment_everi',
  'comment_everi_singl',
  'everi_singl_monday',
  'singl_monday_receptionist',
  'monday_receptionist_bring',
  'receptionist_bring_gift',
  'bring_gift_small',
  'gift_small_thing',
  'small_thing_like',
  'thing_like_well',
  'like_well_cant',
  'well_cant_afford',
  'cant_afford_wast',
  'afford_wast_money',
  'wast_money_stuff',
  'money_stuff_like',
  'stuff_like_think',
  'like_think_bit',
  'think_bit_tacki',
  'bit_tacki_never',
  'tacki_never_react',
  'never_react_jab',
  'react_jab_pro',
  'jab_pro_select',
  'pro_select_hear',
  'select_hear_last',
  'hear_last_monday',
  'last_monday_went',
  'monday_went_lign',
  'went_lign_imo',
  'lign_imo_said',
  'imo_said_think',
  'said_think_hubbi',
  'think_hubbi_overcompens',
  'hubbi_overcompens_sure',
  'overcompens_sure_mistress',
  'sure_mistress_piss',
  'mistress_piss_said',
  'piss_said_well',
  'said_well_us',
  'well_us_love',
  'us_love_spous',
  'love_spous_like',
  'spous_like_show',
  'like_show_us',
  'show_us_stay',
  'us_stay_toxic',
  'stay_toxic_relationship',
  'toxic_relationship_sake',
  'relationship_sake_keep',
  'sake_keep_appear',
  'keep_appear_low',
  'appear_low_blow',
  'low_blow_sinc',
  'blow_sinc_knew',
  'sinc_knew_troubl',
  'knew_troubl_husband',
  'troubl_husband_start',
  'husband_start_sob',
  'start_sob_left',
  'sob_left_work',
  'left_work_earli',
  'work_earli_everi',
  'earli_everi_singl',
  'everi_singl_person',
  'singl_person_offic',
  'person_offic_say',
  'offic_say_right',
  'say_right_patient',
  'right_patient_would',
  'patient_would_situat',
  'would_situat_cant',
  'situat_cant_help',
  'cant_help_feel',
  'help_feel_like',
  'feel_like_went',
  'like_went_far',
  'went_far_aita'],
 ['im',
  'full',
  'time',
  'student',
  'work',
  'part',
  'time',
  'last',
  'year',
  'one',
  'cowork',
  'ill',
  'linda',
  'lost',
  'yo',
  'accid',
  'terribl',
  'heartbroken',
  'met',
  'kid',
  'bunch',
  'time',
  'sinc',
  'singl',
  'mother',
  'sometim',
  'take',
  '~~retribution~~',
  'contribut',
  'sing',
  'paid',
  'day',
  'could',
  'take',
  'time',
  'came',
  'back',
  'two',
  'month',
  'ive',
  'work',
  'sinc',
  'turn',
  'yo',
  'chang',
  'boss',
  'basic',
  'made',
  'mother',
  'day',
  'christma',
  'new',
  'year',
  'someth',
  'deserv',
  'peopl',
  'kid',
  'said',
  'peopl',
  'kid',
  'obvious',
  'mother',
  'deserv',
  'spent',
  'day',
  'howev',
  'made',
  'compromis',
  'sent',
  'list',
  'name',
  'month',
  'peopl',
  'could',
  'trade',
  'well',
  'asid',
  'guy',
  'alreadi',
  'gave',
  'day',
  'im',
  'non-moth',
  'mother',
  'still',
  'aliv',
  'went',
  'nc',
  'year',
  'ago',
  'either',
  'way',
  'think',
  'itll',
  'nice',
  'day',
  'prepar',
  'final',
  'mom',
  'cowork',
  'ask',
  'day',
  'polit',
  'said',
  'well',
  'linda',
  'approach',
  'said',
  'first',
  'mother',
  'day',
  'without',
  'son',
  'want',
  'ask',
  'could',
  'trade',
  'day',
  'said',
  'told',
  'sorri',
  'said',
  'thank',
  'went',
  'back',
  'space',
  'one',
  'mom',
  'alreadi',
  'trade',
  'day',
  'one',
  'guy',
  'said',
  'ah',
  'give',
  'sinc',
  'even',
  'talk',
  'mom',
  'anymor',
  'deserv',
  'ask',
  'gave',
  'day',
  'answer',
  'mother',
  'agre',
  'let',
  'lost',
  'child',
  'includ',
  'boss',
  'said',
  'im',
  'entitl',
  'keep',
  'ill',
  'use',
  'day',
  'someth',
  'import',
  'linda',
  'silent',
  'sinc',
  'ask',
  'last',
  'wednesday',
  'cowork',
  'call',
  'ah',
  'im',
  'sure',
  'eta',
  'someon',
  'sent',
  'one',
  'cowork',
  'two',
  'send',
  'aw',
  'messag',
  'call',
  'name',
  'get',
  'im',
  'heartless',
  'bitch',
  'im',
  'sorri',
  'ill',
  'give',
  'day',
  'linda',
  'studi',
  'get',
  'home',
  'know',
  'lose',
  'child',
  'feel',
  'even',
  'plan',
  'decid',
  'go',
  'nc',
  'mom',
  'lost',
  'famili',
  'im',
  'also',
  'alon',
  'keep',
  'scholarship',
  'studi',
  'sometim',
  'get',
  'job',
  'freelanc',
  'stuff',
  'pay',
  'place',
  'thing',
  'anoth',
  'job',
  'ill',
  'put',
  'two',
  'week',
  'notic',
  'cant',
  'hardli',
  'take',
  'day',
  'realli',
  'need',
  'money',
  'even',
  'use',
  'day',
  'lay',
  'around',
  'rest',
  'trade',
  'work',
  'work',
  'eta',
  'know',
  'fuck',
  'bulli',
  'someth',
  'benefit',
  'trade',
  'day',
  'eta',
  'someon',
  'suggest',
  'ill',
  'add',
  'linda',
  'take',
  'day',
  'itll',
  'unpaid',
  'allow',
  'linda',
  'day',
  'fall',
  'final',
  'im_full',
  'full_time',
  'time_student',
  'student_work',
  'work_part',
  'part_time',
  'time_last',
  'last_year',
  'year_one',
  'one_cowork',
  'cowork_ill',
  'ill_linda',
  'linda_lost',
  'lost_yo',
  'yo_accid',
  'accid_terribl',
  'terribl_heartbroken',
  'heartbroken_met',
  'met_kid',
  'kid_bunch',
  'bunch_time',
  'time_sinc',
  'sinc_singl',
  'singl_mother',
  'mother_sometim',
  'sometim_take',
  'take_~~retribution~~',
  '~~retribution~~_contribut',
  'contribut_sing',
  'sing_paid',
  'paid_day',
  'day_could',
  'could_take',
  'take_time',
  'time_came',
  'came_back',
  'back_two',
  'two_month',
  'month_ive',
  'ive_work',
  'work_sinc',
  'sinc_turn',
  'turn_yo',
  'yo_chang',
  'chang_boss',
  'boss_basic',
  'basic_made',
  'made_mother',
  'mother_day',
  'day_christma',
  'christma_new',
  'new_year',
  'year_someth',
  'someth_deserv',
  'deserv_peopl',
  'peopl_kid',
  'kid_said',
  'said_peopl',
  'peopl_kid',
  'kid_obvious',
  'obvious_mother',
  'mother_deserv',
  'deserv_spent',
  'spent_day',
  'day_howev',
  'howev_made',
  'made_compromis',
  'compromis_sent',
  'sent_list',
  'list_name',
  'name_month',
  'month_peopl',
  'peopl_could',
  'could_trade',
  'trade_well',
  'well_asid',
  'asid_guy',
  'guy_alreadi',
  'alreadi_gave',
  'gave_day',
  'day_im',
  'im_non-moth',
  'non-moth_mother',
  'mother_still',
  'still_aliv',
  'aliv_went',
  'went_nc',
  'nc_year',
  'year_ago',
  'ago_either',
  'either_way',
  'way_think',
  'think_itll',
  'itll_nice',
  'nice_day',
  'day_prepar',
  'prepar_final',
  'final_mom',
  'mom_cowork',
  'cowork_ask',
  'ask_day',
  'day_polit',
  'polit_said',
  'said_well',
  'well_linda',
  'linda_approach',
  'approach_said',
  'said_first',
  'first_mother',
  'mother_day',
  'day_without',
  'without_son',
  'son_want',
  'want_ask',
  'ask_could',
  'could_trade',
  'trade_day',
  'day_said',
  'said_told',
  'told_sorri',
  'sorri_said',
  'said_thank',
  'thank_went',
  'went_back',
  'back_space',
  'space_one',
  'one_mom',
  'mom_alreadi',
  'alreadi_trade',
  'trade_day',
  'day_one',
  'one_guy',
  'guy_said',
  'said_ah',
  'ah_give',
  'give_sinc',
  'sinc_even',
  'even_talk',
  'talk_mom',
  'mom_anymor',
  'anymor_deserv',
  'deserv_ask',
  'ask_gave',
  'gave_day',
  'day_answer',
  'answer_mother',
  'mother_agre',
  'agre_let',
  'let_lost',
  'lost_child',
  'child_includ',
  'includ_boss',
  'boss_said',
  'said_im',
  'im_entitl',
  'entitl_keep',
  'keep_ill',
  'ill_use',
  'use_day',
  'day_someth',
  'someth_import',
  'import_linda',
  'linda_silent',
  'silent_sinc',
  'sinc_ask',
  'ask_last',
  'last_wednesday',
  'wednesday_cowork',
  'cowork_call',
  'call_ah',
  'ah_im',
  'im_sure',
  'sure_eta',
  'eta_someon',
  'someon_sent',
  'sent_one',
  'one_cowork',
  'cowork_two',
  'two_send',
  'send_aw',
  'aw_messag',
  'messag_call',
  'call_name',
  'name_get',
  'get_im',
  'im_heartless',
  'heartless_bitch',
  'bitch_im',
  'im_sorri',
  'sorri_ill',
  'ill_give',
  'give_day',
  'day_linda',
  'linda_studi',
  'studi_get',
  'get_home',
  'home_know',
  'know_lose',
  'lose_child',
  'child_feel',
  'feel_even',
  'even_plan',
  'plan_decid',
  'decid_go',
  'go_nc',
  'nc_mom',
  'mom_lost',
  'lost_famili',
  'famili_im',
  'im_also',
  'also_alon',
  'alon_keep',
  'keep_scholarship',
  'scholarship_studi',
  'studi_sometim',
  'sometim_get',
  'get_job',
  'job_freelanc',
  'freelanc_stuff',
  'stuff_pay',
  'pay_place',
  'place_thing',
  'thing_anoth',
  'anoth_job',
  'job_ill',
  'ill_put',
  'put_two',
  'two_week',
  'week_notic',
  'notic_cant',
  'cant_hardli',
  'hardli_take',
  'take_day',
  'day_realli',
  'realli_need',
  'need_money',
  'money_even',
  'even_use',
  'use_day',
  'day_lay',
  'lay_around',
  'around_rest',
  'rest_trade',
  'trade_work',
  'work_work',
  'work_eta',
  'eta_know',
  'know_fuck',
  'fuck_bulli',
  'bulli_someth',
  'someth_benefit',
  'benefit_trade',
  'trade_day',
  'day_eta',
  'eta_someon',
  'someon_suggest',
  'suggest_ill',
  'ill_add',
  'add_linda',
  'linda_take',
  'take_day',
  'day_itll',
  'itll_unpaid',
  'unpaid_allow',
  'allow_linda',
  'linda_day',
  'day_fall',
  'fall_final',
  'im_full_time',
  'full_time_student',
  'time_student_work',
  'student_work_part',
  'work_part_time',
  'part_time_last',
  'time_last_year',
  'last_year_one',
  'year_one_cowork',
  'one_cowork_ill',
  'cowork_ill_linda',
  'ill_linda_lost',
  'linda_lost_yo',
  'lost_yo_accid',
  'yo_accid_terribl',
  'accid_terribl_heartbroken',
  'terribl_heartbroken_met',
  'heartbroken_met_kid',
  'met_kid_bunch',
  'kid_bunch_time',
  'bunch_time_sinc',
  'time_sinc_singl',
  'sinc_singl_mother',
  'singl_mother_sometim',
  'mother_sometim_take',
  'sometim_take_~~retribution~~',
  'take_~~retribution~~_contribut',
  '~~retribution~~_contribut_sing',
  'contribut_sing_paid',
  'sing_paid_day',
  'paid_day_could',
  'day_could_take',
  'could_take_time',
  'take_time_came',
  'time_came_back',
  'came_back_two',
  'back_two_month',
  'two_month_ive',
  'month_ive_work',
  'ive_work_sinc',
  'work_sinc_turn',
  'sinc_turn_yo',
  'turn_yo_chang',
  'yo_chang_boss',
  'chang_boss_basic',
  'boss_basic_made',
  'basic_made_mother',
  'made_mother_day',
  'mother_day_christma',
  'day_christma_new',
  'christma_new_year',
  'new_year_someth',
  'year_someth_deserv',
  'someth_deserv_peopl',
  'deserv_peopl_kid',
  'peopl_kid_said',
  'kid_said_peopl',
  'said_peopl_kid',
  'peopl_kid_obvious',
  'kid_obvious_mother',
  'obvious_mother_deserv',
  'mother_deserv_spent',
  'deserv_spent_day',
  'spent_day_howev',
  'day_howev_made',
  'howev_made_compromis',
  'made_compromis_sent',
  'compromis_sent_list',
  'sent_list_name',
  'list_name_month',
  'name_month_peopl',
  'month_peopl_could',
  'peopl_could_trade',
  'could_trade_well',
  'trade_well_asid',
  'well_asid_guy',
  'asid_guy_alreadi',
  'guy_alreadi_gave',
  'alreadi_gave_day',
  'gave_day_im',
  'day_im_non-moth',
  'im_non-moth_mother',
  'non-moth_mother_still',
  'mother_still_aliv',
  'still_aliv_went',
  'aliv_went_nc',
  'went_nc_year',
  'nc_year_ago',
  'year_ago_either',
  'ago_either_way',
  'either_way_think',
  'way_think_itll',
  'think_itll_nice',
  'itll_nice_day',
  'nice_day_prepar',
  'day_prepar_final',
  'prepar_final_mom',
  'final_mom_cowork',
  'mom_cowork_ask',
  'cowork_ask_day',
  'ask_day_polit',
  'day_polit_said',
  'polit_said_well',
  'said_well_linda',
  'well_linda_approach',
  'linda_approach_said',
  'approach_said_first',
  'said_first_mother',
  'first_mother_day',
  'mother_day_without',
  'day_without_son',
  'without_son_want',
  'son_want_ask',
  'want_ask_could',
  'ask_could_trade',
  'could_trade_day',
  'trade_day_said',
  'day_said_told',
  'said_told_sorri',
  'told_sorri_said',
  'sorri_said_thank',
  'said_thank_went',
  'thank_went_back',
  'went_back_space',
  'back_space_one',
  'space_one_mom',
  'one_mom_alreadi',
  'mom_alreadi_trade',
  'alreadi_trade_day',
  'trade_day_one',
  'day_one_guy',
  'one_guy_said',
  'guy_said_ah',
  'said_ah_give',
  'ah_give_sinc',
  'give_sinc_even',
  'sinc_even_talk',
  'even_talk_mom',
  'talk_mom_anymor',
  'mom_anymor_deserv',
  'anymor_deserv_ask',
  'deserv_ask_gave',
  'ask_gave_day',
  'gave_day_answer',
  'day_answer_mother',
  'answer_mother_agre',
  'mother_agre_let',
  'agre_let_lost',
  'let_lost_child',
  'lost_child_includ',
  'child_includ_boss',
  'includ_boss_said',
  'boss_said_im',
  'said_im_entitl',
  'im_entitl_keep',
  'entitl_keep_ill',
  'keep_ill_use',
  'ill_use_day',
  'use_day_someth',
  'day_someth_import',
  'someth_import_linda',
  'import_linda_silent',
  'linda_silent_sinc',
  'silent_sinc_ask',
  'sinc_ask_last',
  'ask_last_wednesday',
  'last_wednesday_cowork',
  'wednesday_cowork_call',
  'cowork_call_ah',
  'call_ah_im',
  'ah_im_sure',
  'im_sure_eta',
  'sure_eta_someon',
  'eta_someon_sent',
  'someon_sent_one',
  'sent_one_cowork',
  'one_cowork_two',
  'cowork_two_send',
  'two_send_aw',
  'send_aw_messag',
  'aw_messag_call',
  'messag_call_name',
  'call_name_get',
  'name_get_im',
  'get_im_heartless',
  'im_heartless_bitch',
  'heartless_bitch_im',
  'bitch_im_sorri',
  'im_sorri_ill',
  'sorri_ill_give',
  'ill_give_day',
  'give_day_linda',
  'day_linda_studi',
  'linda_studi_get',
  'studi_get_home',
  'get_home_know',
  'home_know_lose',
  'know_lose_child',
  'lose_child_feel',
  'child_feel_even',
  'feel_even_plan',
  'even_plan_decid',
  'plan_decid_go',
  'decid_go_nc',
  'go_nc_mom',
  'nc_mom_lost',
  'mom_lost_famili',
  'lost_famili_im',
  'famili_im_also',
  'im_also_alon',
  'also_alon_keep',
  'alon_keep_scholarship',
  'keep_scholarship_studi',
  'scholarship_studi_sometim',
  'studi_sometim_get',
  'sometim_get_job',
  'get_job_freelanc',
  'job_freelanc_stuff',
  'freelanc_stuff_pay',
  'stuff_pay_place',
  'pay_place_thing',
  'place_thing_anoth',
  'thing_anoth_job',
  'anoth_job_ill',
  'job_ill_put',
  'ill_put_two',
  'put_two_week',
  'two_week_notic',
  'week_notic_cant',
  'notic_cant_hardli',
  'cant_hardli_take',
  'hardli_take_day',
  'take_day_realli',
  'day_realli_need',
  'realli_need_money',
  'need_money_even',
  'money_even_use',
  'even_use_day',
  'use_day_lay',
  'day_lay_around',
  'lay_around_rest',
  'around_rest_trade',
  'rest_trade_work',
  'trade_work_work',
  'work_work_eta',
  'work_eta_know',
  'eta_know_fuck',
  'know_fuck_bulli',
  'fuck_bulli_someth',
  'bulli_someth_benefit',
  'someth_benefit_trade',
  'benefit_trade_day',
  'trade_day_eta',
  'day_eta_someon',
  'eta_someon_suggest',
  'someon_suggest_ill',
  'suggest_ill_add',
  'ill_add_linda',
  'add_linda_take',
  'linda_take_day',
  'take_day_itll',
  'day_itll_unpaid',
  'itll_unpaid_allow',
  'unpaid_allow_linda',
  'allow_linda_day',
  'linda_day_fall',
  'day_fall_final'],
 ['*',
  '*',
  'updat',
  'brother',
  'left',
  'appar',
  'sister',
  'steal',
  'goe',
  'place',
  'admit',
  'keep',
  'thing',
  'sometim',
  'cant',
  'help',
  'act',
  'think',
  'much',
  'admit',
  'took',
  'ipad',
  'claim',
  'intent',
  'hurt',
  'left',
  'case',
  'plan',
  'take',
  'school',
  'brag',
  'return',
  'sinc',
  'way',
  'expens',
  'want',
  'take',
  'risk',
  'appar',
  'lost',
  'someon',
  'took',
  'bag',
  'swear',
  'sold',
  'anyth',
  'mean',
  'pointless',
  'keep',
  'lie',
  'went',
  'room',
  'came',
  'back',
  'bunch',
  'thing',
  'mine',
  'brother',
  'belong',
  'cousin',
  'friend',
  'even',
  'one',
  'caleb',
  'ring',
  'know',
  'refus',
  'give',
  'inform',
  'also',
  'refus',
  'tell',
  'broke',
  'safe',
  'parent',
  'outsid',
  'talk',
  'alon',
  'dad',
  'let',
  'caleb',
  'spend',
  'night',
  '*',
  '*',
  'myf',
  'sisterf',
  'habit',
  'take',
  'thing',
  'bedroom',
  'keep',
  'lose',
  'father',
  'talk',
  'ground',
  'make',
  'pay',
  'back',
  'listen',
  'mom',
  'alway',
  'take',
  'side',
  'make',
  'excus',
  'dad',
  'enough',
  'bough',
  'small',
  'safe',
  'mom',
  'wish',
  'keep',
  'jewelri',
  'make-up',
  'diari',
  'gift',
  'boyfriend',
  'caleb',
  'cal',
  'come',
  'upper',
  'class',
  'famili',
  'alway',
  'buy',
  'stuff',
  'get',
  'stolen',
  'sister',
  'preciou',
  'gift',
  'ipad',
  'pro',
  'gave',
  'th',
  'birthday',
  'feb',
  'love',
  'draw',
  'hobbi',
  'form',
  'express',
  'relax',
  'use',
  'laptop',
  'sinc',
  'cal',
  'gave',
  'ipad',
  'free',
  'time',
  'class',
  'train',
  'garden',
  'option',
  'cal',
  'also',
  'made',
  'custom',
  'case',
  'paint',
  'lot',
  'thing',
  'im',
  'home',
  'leav',
  'safe',
  'one',
  'thing',
  'want',
  'lose',
  'honest',
  'want',
  'sister',
  'put',
  'hand',
  'spent',
  'two',
  'day',
  'brothersm',
  'apart',
  'plan',
  'lil',
  'sister',
  'birthday',
  'parti',
  'came',
  'back',
  'went',
  'take',
  'ipad',
  'sketch',
  'idea',
  'found',
  'case',
  'thought',
  'leav',
  'somewher',
  'els',
  'sure',
  'also',
  'never',
  'took',
  'case',
  'favorit',
  'thing',
  'look',
  'around',
  'whole',
  'room',
  'dad',
  'offic',
  'garden',
  'sinc',
  'im',
  'usual',
  'time',
  'also',
  'call',
  'cal',
  'ask',
  'left',
  'hous',
  'said',
  'famili',
  'came',
  'back',
  'aw',
  'cri',
  'kitchen',
  'dad',
  'ask',
  'happen',
  'told',
  'find',
  'ipad',
  'mom',
  'said',
  'lazili',
  'sister',
  'lost',
  'train',
  'yesterday',
  'ask',
  'said',
  'sister',
  'took',
  'school',
  'lost',
  'accid',
  'happen',
  'let',
  'go',
  'actual',
  'livid',
  'said',
  'sister',
  'open',
  'safe',
  'dunno',
  'stole',
  'tablet',
  'mom',
  'told',
  'shut',
  'never',
  'call',
  'sister',
  'theft',
  'dad',
  'got',
  'involv',
  'much',
  'fight',
  'said',
  'sister',
  'pay',
  'back',
  'sister',
  'said',
  'money',
  'attempt',
  'go',
  'room',
  'told',
  'ill',
  'take',
  'money',
  'parti',
  'keep',
  'ipad',
  'came',
  'right',
  'told',
  'mom',
  'side',
  'demand',
  'money',
  'said',
  'owe',
  'get',
  'keep',
  'ran',
  'room',
  'father',
  'said',
  'could',
  'buy',
  'anoth',
  'one',
  'brother',
  'transfer',
  'money',
  'hour',
  'ago',
  'sit',
  'cal',
  'account',
  'one',
  'yet',
  'sister',
  'cri',
  'lost',
  'sweet',
  'sixteen',
  'parti',
  'say',
  'tablet',
  'worth',
  'much',
  'less',
  'eta',
  'brother',
  'come',
  'home',
  'around',
  'min',
  'talk',
  'parent',
  'know',
  'might',
  'sister',
  'cal',
  'also',
  'way',
  'instal',
  'lock',
  'eta',
  'brother',
  'took',
  'parent',
  'sister',
  'im',
  'home',
  'cal',
  'right',
  'alreadi',
  'instal',
  'lock',
  'look',
  'safe',
  '*_*',
  '*_updat',
  'updat_brother',
  'brother_left',
  'left_appar',
  'appar_sister',
  'sister_steal',
  'steal_goe',
  'goe_place',
  'place_admit',
  'admit_keep',
  'keep_thing',
  'thing_sometim',
  'sometim_cant',
  'cant_help',
  'help_act',
  'act_think',
  'think_much',
  'much_admit',
  'admit_took',
  'took_ipad',
  'ipad_claim',
  'claim_intent',
  'intent_hurt',
  'hurt_left',
  'left_case',
  'case_plan',
  'plan_take',
  'take_school',
  'school_brag',
  'brag_return',
  'return_sinc',
  'sinc_way',
  'way_expens',
  'expens_want',
  'want_take',
  'take_risk',
  'risk_appar',
  'appar_lost',
  'lost_someon',
  'someon_took',
  'took_bag',
  'bag_swear',
  'swear_sold',
  'sold_anyth',
  'anyth_mean',
  'mean_pointless',
  'pointless_keep',
  'keep_lie',
  'lie_went',
  'went_room',
  'room_came',
  'came_back',
  'back_bunch',
  'bunch_thing',
  'thing_mine',
  'mine_brother',
  'brother_belong',
  'belong_cousin',
  'cousin_friend',
  'friend_even',
  'even_one',
  'one_caleb',
  'caleb_ring',
  'ring_know',
  'know_refus',
  'refus_give',
  'give_inform',
  'inform_also',
  'also_refus',
  'refus_tell',
  'tell_broke',
  'broke_safe',
  'safe_parent',
  'parent_outsid',
  'outsid_talk',
  'talk_alon',
  'alon_dad',
  'dad_let',
  'let_caleb',
  'caleb_spend',
  'spend_night',
  'night_*',
  '*_*',
  '*_myf',
  'myf_sisterf',
  'sisterf_habit',
  'habit_take',
  'take_thing',
  'thing_bedroom',
  'bedroom_keep',
  'keep_lose',
  'lose_father',
  'father_talk',
  'talk_ground',
  'ground_make',
  'make_pay',
  'pay_back',
  'back_listen',
  'listen_mom',
  'mom_alway',
  'alway_take',
  'take_side',
  'side_make',
  'make_excus',
  'excus_dad',
  'dad_enough',
  'enough_bough',
  'bough_small',
  'small_safe',
  'safe_mom',
  'mom_wish',
  'wish_keep',
  'keep_jewelri',
  'jewelri_make-up',
  'make-up_diari',
  'diari_gift',
  'gift_boyfriend',
  'boyfriend_caleb',
  'caleb_cal',
  'cal_come',
  'come_upper',
  'upper_class',
  'class_famili',
  'famili_alway',
  'alway_buy',
  'buy_stuff',
  'stuff_get',
  'get_stolen',
  'stolen_sister',
  'sister_preciou',
  'preciou_gift',
  'gift_ipad',
  'ipad_pro',
  'pro_gave',
  'gave_th',
  'th_birthday',
  'birthday_feb',
  'feb_love',
  'love_draw',
  'draw_hobbi',
  'hobbi_form',
  'form_express',
  'express_relax',
  'relax_use',
  'use_laptop',
  'laptop_sinc',
  'sinc_cal',
  'cal_gave',
  'gave_ipad',
  'ipad_free',
  'free_time',
  'time_class',
  'class_train',
  'train_garden',
  'garden_option',
  'option_cal',
  'cal_also',
  'also_made',
  'made_custom',
  'custom_case',
  'case_paint',
  'paint_lot',
  'lot_thing',
  'thing_im',
  'im_home',
  'home_leav',
  'leav_safe',
  'safe_one',
  'one_thing',
  'thing_want',
  'want_lose',
  'lose_honest',
  'honest_want',
  'want_sister',
  'sister_put',
  'put_hand',
  'hand_spent',
  'spent_two',
  'two_day',
  'day_brothersm',
  'brothersm_apart',
  'apart_plan',
  'plan_lil',
  'lil_sister',
  'sister_birthday',
  'birthday_parti',
  'parti_came',
  'came_back',
  'back_went',
  'went_take',
  'take_ipad',
  'ipad_sketch',
  'sketch_idea',
  'idea_found',
  'found_case',
  'case_thought',
  'thought_leav',
  'leav_somewher',
  'somewher_els',
  'els_sure',
  'sure_also',
  'also_never',
  'never_took',
  'took_case',
  'case_favorit',
  'favorit_thing',
  'thing_look',
  'look_around',
  'around_whole',
  'whole_room',
  'room_dad',
  'dad_offic',
  'offic_garden',
  'garden_sinc',
  'sinc_im',
  'im_usual',
  'usual_time',
  'time_also',
  'also_call',
  'call_cal',
  'cal_ask',
  'ask_left',
  'left_hous',
  'hous_said',
  'said_famili',
  'famili_came',
  'came_back',
  'back_aw',
  'aw_cri',
  'cri_kitchen',
  'kitchen_dad',
  'dad_ask',
  'ask_happen',
  'happen_told',
  'told_find',
  'find_ipad',
  'ipad_mom',
  'mom_said',
  'said_lazili',
  'lazili_sister',
  'sister_lost',
  'lost_train',
  'train_yesterday',
  'yesterday_ask',
  'ask_said',
  'said_sister',
  'sister_took',
  'took_school',
  'school_lost',
  'lost_accid',
  'accid_happen',
  'happen_let',
  'let_go',
  'go_actual',
  'actual_livid',
  'livid_said',
  'said_sister',
  'sister_open',
  'open_safe',
  'safe_dunno',
  'dunno_stole',
  'stole_tablet',
  'tablet_mom',
  'mom_told',
  'told_shut',
  'shut_never',
  'never_call',
  'call_sister',
  'sister_theft',
  'theft_dad',
  'dad_got',
  'got_involv',
  'involv_much',
  'much_fight',
  'fight_said',
  'said_sister',
  'sister_pay',
  'pay_back',
  'back_sister',
  'sister_said',
  'said_money',
  'money_attempt',
  'attempt_go',
  'go_room',
  'room_told',
  'told_ill',
  'ill_take',
  'take_money',
  'money_parti',
  'parti_keep',
  'keep_ipad',
  'ipad_came',
  'came_right',
  'right_told',
  'told_mom',
  'mom_side',
  'side_demand',
  'demand_money',
  'money_said',
  'said_owe',
  'owe_get',
  'get_keep',
  'keep_ran',
  'ran_room',
  'room_father',
  'father_said',
  'said_could',
  'could_buy',
  'buy_anoth',
  'anoth_one',
  'one_brother',
  'brother_transfer',
  'transfer_money',
  'money_hour',
  'hour_ago',
  'ago_sit',
  'sit_cal',
  'cal_account',
  'account_one',
  'one_yet',
  'yet_sister',
  'sister_cri',
  'cri_lost',
  'lost_sweet',
  'sweet_sixteen',
  'sixteen_parti',
  'parti_say',
  'say_tablet',
  'tablet_worth',
  'worth_much',
  'much_less',
  'less_eta',
  'eta_brother',
  'brother_come',
  'come_home',
  'home_around',
  'around_min',
  'min_talk',
  'talk_parent',
  'parent_know',
  'know_might',
  'might_sister',
  'sister_cal',
  'cal_also',
  'also_way',
  'way_instal',
  'instal_lock',
  'lock_eta',
  'eta_brother',
  'brother_took',
  'took_parent',
  'parent_sister',
  'sister_im',
  'im_home',
  'home_cal',
  'cal_right',
  'right_alreadi',
  'alreadi_instal',
  'instal_lock',
  'lock_look',
  'look_safe',
  '*_*_updat',
  '*_updat_brother',
  'updat_brother_left',
  'brother_left_appar',
  'left_appar_sister',
  'appar_sister_steal',
  'sister_steal_goe',
  'steal_goe_place',
  'goe_place_admit',
  'place_admit_keep',
  'admit_keep_thing',
  'keep_thing_sometim',
  'thing_sometim_cant',
  'sometim_cant_help',
  'cant_help_act',
  'help_act_think',
  'act_think_much',
  'think_much_admit',
  'much_admit_took',
  'admit_took_ipad',
  'took_ipad_claim',
  'ipad_claim_intent',
  'claim_intent_hurt',
  'intent_hurt_left',
  'hurt_left_case',
  'left_case_plan',
  'case_plan_take',
  'plan_take_school',
  'take_school_brag',
  'school_brag_return',
  'brag_return_sinc',
  'return_sinc_way',
  'sinc_way_expens',
  'way_expens_want',
  'expens_want_take',
  'want_take_risk',
  'take_risk_appar',
  'risk_appar_lost',
  'appar_lost_someon',
  'lost_someon_took',
  'someon_took_bag',
  'took_bag_swear',
  'bag_swear_sold',
  'swear_sold_anyth',
  'sold_anyth_mean',
  'anyth_mean_pointless',
  'mean_pointless_keep',
  'pointless_keep_lie',
  'keep_lie_went',
  'lie_went_room',
  'went_room_came',
  'room_came_back',
  'came_back_bunch',
  'back_bunch_thing',
  'bunch_thing_mine',
  'thing_mine_brother',
  'mine_brother_belong',
  'brother_belong_cousin',
  'belong_cousin_friend',
  'cousin_friend_even',
  'friend_even_one',
  'even_one_caleb',
  'one_caleb_ring',
  'caleb_ring_know',
  'ring_know_refus',
  'know_refus_give',
  'refus_give_inform',
  'give_inform_also',
  'inform_also_refus',
  'also_refus_tell',
  'refus_tell_broke',
  'tell_broke_safe',
  'broke_safe_parent',
  'safe_parent_outsid',
  'parent_outsid_talk',
  'outsid_talk_alon',
  'talk_alon_dad',
  'alon_dad_let',
  'dad_let_caleb',
  'let_caleb_spend',
  'caleb_spend_night',
  'spend_night_*',
  'night_*_*',
  '*_*_myf',
  '*_myf_sisterf',
  'myf_sisterf_habit',
  'sisterf_habit_take',
  'habit_take_thing',
  'take_thing_bedroom',
  'thing_bedroom_keep',
  'bedroom_keep_lose',
  'keep_lose_father',
  'lose_father_talk',
  'father_talk_ground',
  'talk_ground_make',
  'ground_make_pay',
  'make_pay_back',
  'pay_back_listen',
  'back_listen_mom',
  'listen_mom_alway',
  'mom_alway_take',
  'alway_take_side',
  'take_side_make',
  'side_make_excus',
  'make_excus_dad',
  'excus_dad_enough',
  'dad_enough_bough',
  'enough_bough_small',
  'bough_small_safe',
  'small_safe_mom',
  'safe_mom_wish',
  'mom_wish_keep',
  'wish_keep_jewelri',
  'keep_jewelri_make-up',
  'jewelri_make-up_diari',
  'make-up_diari_gift',
  'diari_gift_boyfriend',
  'gift_boyfriend_caleb',
  'boyfriend_caleb_cal',
  'caleb_cal_come',
  'cal_come_upper',
  'come_upper_class',
  'upper_class_famili',
  'class_famili_alway',
  'famili_alway_buy',
  'alway_buy_stuff',
  'buy_stuff_get',
  'stuff_get_stolen',
  'get_stolen_sister',
  'stolen_sister_preciou',
  'sister_preciou_gift',
  'preciou_gift_ipad',
  'gift_ipad_pro',
  'ipad_pro_gave',
  'pro_gave_th',
  'gave_th_birthday',
  'th_birthday_feb',
  'birthday_feb_love',
  'feb_love_draw',
  'love_draw_hobbi',
  'draw_hobbi_form',
  'hobbi_form_express',
  'form_express_relax',
  'express_relax_use',
  'relax_use_laptop',
  'use_laptop_sinc',
  'laptop_sinc_cal',
  'sinc_cal_gave',
  'cal_gave_ipad',
  'gave_ipad_free',
  'ipad_free_time',
  'free_time_class',
  'time_class_train',
  'class_train_garden',
  'train_garden_option',
  'garden_option_cal',
  'option_cal_also',
  'cal_also_made',
  'also_made_custom',
  'made_custom_case',
  'custom_case_paint',
  'case_paint_lot',
  'paint_lot_thing',
  'lot_thing_im',
  'thing_im_home',
  'im_home_leav',
  'home_leav_safe',
  'leav_safe_one',
  'safe_one_thing',
  'one_thing_want',
  'thing_want_lose',
  'want_lose_honest',
  'lose_honest_want',
  'honest_want_sister',
  'want_sister_put',
  'sister_put_hand',
  'put_hand_spent',
  'hand_spent_two',
  'spent_two_day',
  'two_day_brothersm',
  'day_brothersm_apart',
  'brothersm_apart_plan',
  'apart_plan_lil',
  'plan_lil_sister',
  'lil_sister_birthday',
  'sister_birthday_parti',
  'birthday_parti_came',
  'parti_came_back',
  'came_back_went',
  'back_went_take',
  'went_take_ipad',
  'take_ipad_sketch',
  'ipad_sketch_idea',
  'sketch_idea_found',
  'idea_found_case',
  'found_case_thought',
  'case_thought_leav',
  'thought_leav_somewher',
  'leav_somewher_els',
  'somewher_els_sure',
  'els_sure_also',
  'sure_also_never',
  'also_never_took',
  'never_took_case',
  'took_case_favorit',
  'case_favorit_thing',
  'favorit_thing_look',
  'thing_look_around',
  'look_around_whole',
  'around_whole_room',
  'whole_room_dad',
  'room_dad_offic',
  'dad_offic_garden',
  'offic_garden_sinc',
  'garden_sinc_im',
  'sinc_im_usual',
  'im_usual_time',
  'usual_time_also',
  'time_also_call',
  'also_call_cal',
  'call_cal_ask',
  'cal_ask_left',
  'ask_left_hous',
  'left_hous_said',
  'hous_said_famili',
  'said_famili_came',
  'famili_came_back',
  'came_back_aw',
  'back_aw_cri',
  'aw_cri_kitchen',
  'cri_kitchen_dad',
  'kitchen_dad_ask',
  'dad_ask_happen',
  'ask_happen_told',
  'happen_told_find',
  'told_find_ipad',
  'find_ipad_mom',
  'ipad_mom_said',
  'mom_said_lazili',
  'said_lazili_sister',
  'lazili_sister_lost',
  'sister_lost_train',
  'lost_train_yesterday',
  'train_yesterday_ask',
  'yesterday_ask_said',
  'ask_said_sister',
  'said_sister_took',
  'sister_took_school',
  'took_school_lost',
  'school_lost_accid',
  'lost_accid_happen',
  'accid_happen_let',
  'happen_let_go',
  'let_go_actual',
  'go_actual_livid',
  'actual_livid_said',
  'livid_said_sister',
  'said_sister_open',
  'sister_open_safe',
  'open_safe_dunno',
  'safe_dunno_stole',
  'dunno_stole_tablet',
  'stole_tablet_mom',
  'tablet_mom_told',
  'mom_told_shut',
  'told_shut_never',
  'shut_never_call',
  'never_call_sister',
  'call_sister_theft',
  'sister_theft_dad',
  'theft_dad_got',
  'dad_got_involv',
  'got_involv_much',
  'involv_much_fight',
  'much_fight_said',
  ...],
 ['throwaway',
  'account',
  'two',
  'older',
  'sister',
  'grow',
  'jane',
  'kim',
  'kim',
  'got',
  'sick',
  'die',
  'give',
  'birth',
  'niec',
  'laura',
  'year',
  'kim',
  'pass',
  'jane',
  'laura',
  'dad',
  'tom',
  'confess',
  'date',
  'engag',
  'everyon',
  'surpris',
  'one',
  'vocal',
  'disgust',
  'accus',
  'cheat',
  'jane',
  'tom',
  'explain',
  'someth',
  'plan',
  'cheat',
  'knew',
  'kim',
  'would',
  'would',
  'want',
  'happi',
  'conveni',
  'sinc',
  'know',
  'dead',
  'attend',
  'wed',
  'upset',
  'everyon',
  'els',
  'accept',
  'relationship',
  'thing',
  'hurt',
  'jane',
  'tom',
  'intend',
  'complet',
  'eras',
  'kim',
  'laura',
  'life',
  'bare',
  'kim',
  'die',
  'decid',
  'would',
  'better',
  'laura',
  'thought',
  'jane',
  'mother',
  'everi',
  'sens',
  'word',
  'adopt',
  'final',
  'tom',
  'got',
  'rid',
  'item',
  'would',
  'suggest',
  'kim',
  'ever',
  'relationship',
  'made',
  'famili',
  'swear',
  'never',
  'tell',
  'laura',
  'truth',
  'jane',
  'expect',
  'everyon',
  'side',
  'famili',
  'refus',
  'deni',
  'access',
  'laura',
  'hurt',
  'thought',
  'time',
  'kim',
  'cri',
  'know',
  'live',
  'long',
  'enough',
  'see',
  'laura',
  'grow',
  'way',
  'could',
  'honor',
  'lie',
  'even',
  'laura',
  'name',
  'legal',
  'chang',
  'someth',
  'jane',
  'like',
  'kim',
  'pick',
  'laura',
  'first',
  'name',
  'distanc',
  'famili',
  'time',
  'parent',
  'alway',
  'tri',
  'get',
  'us',
  'reconcil',
  'cite',
  'like',
  'arrang',
  'either',
  'accept',
  'better',
  'apart',
  'laura',
  'life',
  'grow',
  'laura',
  'known',
  'never',
  'realli',
  'interact',
  'appar',
  'interest',
  'studi',
  'field',
  'work',
  'reach',
  'social',
  'media',
  'last',
  'time',
  'saw',
  'person',
  'start',
  'tear',
  'much',
  'look',
  'like',
  'kim',
  'would',
  'talk',
  'time',
  'time',
  'eventu',
  'laura',
  'ask',
  'around',
  'tri',
  'keep',
  'vagu',
  'laura',
  'knew',
  'stori',
  'seem',
  'like',
  'person',
  'describ',
  'talk',
  'dm',
  'like',
  'probabl',
  'done',
  'video',
  'chat',
  'someth',
  'look',
  'directli',
  'eye',
  'broke',
  'confess',
  'everyth',
  'kim',
  'die',
  'made',
  'seri',
  'video',
  'laura',
  'watch',
  'big',
  'moment',
  'told',
  'ever',
  'want',
  'watch',
  'id',
  'send',
  'laura',
  'ask',
  'send',
  'heard',
  'noth',
  'day',
  'recent',
  'got',
  'call',
  'enrag',
  'jane',
  'tom',
  'berat',
  'ruin',
  'famili',
  'laura',
  'watch',
  'video',
  'confront',
  'parent',
  'confirm',
  'everyth',
  'laura',
  'move',
  'current',
  'speak',
  'anyon',
  'one',
  'know',
  'right',
  'everyon',
  'angri',
  'aita',
  'eta',
  'keep',
  'see',
  'let',
  'clarifi',
  'parent',
  'talk',
  'kim',
  'pictur',
  'hous',
  'laura',
  'knew',
  'know',
  'kim',
  'gave',
  'birth',
  'parent',
  'went',
  'along',
  'tom',
  'jane',
  'threaten',
  'nc',
  'unless',
  'im',
  'upset',
  'understand',
  'still',
  'talk',
  'said',
  'last',
  'time',
  'saw',
  'laura',
  'person',
  'brief',
  'pass',
  'come',
  'visit',
  'parent',
  'hous',
  'watch',
  'get',
  'car',
  'pull',
  'drive',
  'way',
  'actual',
  'speak',
  'last',
  'week',
  'life',
  'kim',
  'made',
  'seri',
  'video',
  'togeth',
  'kim',
  'could',
  'leav',
  'special',
  'messag',
  'laura',
  'import',
  'event',
  'kim',
  'also',
  'wrote',
  'letter',
  'laura',
  'tom',
  'got',
  'rid',
  'letter',
  'got',
  'rid',
  'final',
  'cut',
  'backup',
  'video',
  'still',
  'copi',
  'know',
  'honestli',
  'forgot',
  'found',
  'move',
  'saw',
  'small',
  'box',
  'ye',
  'jane',
  'tom',
  'two',
  'bio',
  'children',
  'togeth',
  'unless',
  'chang',
  'mind',
  'jane',
  'tom',
  'everi',
  'intent',
  'never',
  'tell',
  'laura',
  'think',
  'big',
  'deal',
  'sinc',
  'famili',
  'medic',
  'histori',
  'would',
  'still',
  'updat',
  'laura',
  'reach',
  'parent',
  'safe',
  'girlfriend',
  'throwaway_account',
  'account_two',
  'two_older',
  'older_sister',
  'sister_grow',
  'grow_jane',
  'jane_kim',
  'kim_kim',
  'kim_got',
  'got_sick',
  'sick_die',
  'die_give',
  'give_birth',
  'birth_niec',
  'niec_laura',
  'laura_year',
  'year_kim',
  'kim_pass',
  'pass_jane',
  'jane_laura',
  'laura_dad',
  'dad_tom',
  'tom_confess',
  'confess_date',
  'date_engag',
  'engag_everyon',
  'everyon_surpris',
  'surpris_one',
  'one_vocal',
  'vocal_disgust',
  'disgust_accus',
  'accus_cheat',
  'cheat_jane',
  'jane_tom',
  'tom_explain',
  'explain_someth',
  'someth_plan',
  'plan_cheat',
  'cheat_knew',
  'knew_kim',
  'kim_would',
  'would_would',
  'would_want',
  'want_happi',
  'happi_conveni',
  'conveni_sinc',
  'sinc_know',
  'know_dead',
  'dead_attend',
  'attend_wed',
  'wed_upset',
  'upset_everyon',
  'everyon_els',
  'els_accept',
  'accept_relationship',
  'relationship_thing',
  'thing_hurt',
  'hurt_jane',
  'jane_tom',
  'tom_intend',
  'intend_complet',
  'complet_eras',
  'eras_kim',
  'kim_laura',
  'laura_life',
  'life_bare',
  'bare_kim',
  'kim_die',
  'die_decid',
  'decid_would',
  'would_better',
  'better_laura',
  'laura_thought',
  'thought_jane',
  'jane_mother',
  'mother_everi',
  'everi_sens',
  'sens_word',
  'word_adopt',
  'adopt_final',
  'final_tom',
  'tom_got',
  'got_rid',
  'rid_item',
  'item_would',
  'would_suggest',
  'suggest_kim',
  'kim_ever',
  'ever_relationship',
  'relationship_made',
  'made_famili',
  'famili_swear',
  'swear_never',
  'never_tell',
  'tell_laura',
  'laura_truth',
  'truth_jane',
  'jane_expect',
  'expect_everyon',
  'everyon_side',
  'side_famili',
  'famili_refus',
  'refus_deni',
  'deni_access',
  'access_laura',
  'laura_hurt',
  'hurt_thought',
  'thought_time',
  'time_kim',
  'kim_cri',
  'cri_know',
  'know_live',
  'live_long',
  'long_enough',
  'enough_see',
  'see_laura',
  'laura_grow',
  'grow_way',
  'way_could',
  'could_honor',
  'honor_lie',
  'lie_even',
  'even_laura',
  'laura_name',
  'name_legal',
  'legal_chang',
  'chang_someth',
  'someth_jane',
  'jane_like',
  'like_kim',
  'kim_pick',
  'pick_laura',
  'laura_first',
  'first_name',
  'name_distanc',
  'distanc_famili',
  'famili_time',
  'time_parent',
  'parent_alway',
  'alway_tri',
  'tri_get',
  'get_us',
  'us_reconcil',
  'reconcil_cite',
  'cite_like',
  'like_arrang',
  'arrang_either',
  'either_accept',
  'accept_better',
  'better_apart',
  'apart_laura',
  'laura_life',
  'life_grow',
  'grow_laura',
  'laura_known',
  'known_never',
  'never_realli',
  'realli_interact',
  'interact_appar',
  'appar_interest',
  'interest_studi',
  'studi_field',
  'field_work',
  'work_reach',
  'reach_social',
  'social_media',
  'media_last',
  'last_time',
  'time_saw',
  'saw_person',
  'person_start',
  'start_tear',
  'tear_much',
  'much_look',
  'look_like',
  'like_kim',
  'kim_would',
  'would_talk',
  'talk_time',
  'time_time',
  'time_eventu',
  'eventu_laura',
  'laura_ask',
  'ask_around',
  'around_tri',
  'tri_keep',
  'keep_vagu',
  'vagu_laura',
  'laura_knew',
  'knew_stori',
  'stori_seem',
  'seem_like',
  'like_person',
  'person_describ',
  'describ_talk',
  'talk_dm',
  'dm_like',
  'like_probabl',
  'probabl_done',
  'done_video',
  'video_chat',
  'chat_someth',
  'someth_look',
  'look_directli',
  'directli_eye',
  'eye_broke',
  'broke_confess',
  'confess_everyth',
  'everyth_kim',
  'kim_die',
  'die_made',
  'made_seri',
  'seri_video',
  'video_laura',
  'laura_watch',
  'watch_big',
  'big_moment',
  'moment_told',
  'told_ever',
  'ever_want',
  'want_watch',
  'watch_id',
  'id_send',
  'send_laura',
  'laura_ask',
  'ask_send',
  'send_heard',
  'heard_noth',
  'noth_day',
  'day_recent',
  'recent_got',
  'got_call',
  'call_enrag',
  'enrag_jane',
  'jane_tom',
  'tom_berat',
  'berat_ruin',
  'ruin_famili',
  'famili_laura',
  'laura_watch',
  'watch_video',
  'video_confront',
  'confront_parent',
  'parent_confirm',
  'confirm_everyth',
  'everyth_laura',
  'laura_move',
  'move_current',
  'current_speak',
  'speak_anyon',
  'anyon_one',
  'one_know',
  'know_right',
  'right_everyon',
  'everyon_angri',
  'angri_aita',
  'aita_eta',
  'eta_keep',
  'keep_see',
  'see_let',
  'let_clarifi',
  'clarifi_parent',
  'parent_talk',
  'talk_kim',
  'kim_pictur',
  'pictur_hous',
  'hous_laura',
  'laura_knew',
  'knew_know',
  'know_kim',
  'kim_gave',
  'gave_birth',
  'birth_parent',
  'parent_went',
  'went_along',
  'along_tom',
  'tom_jane',
  'jane_threaten',
  'threaten_nc',
  'nc_unless',
  'unless_im',
  'im_upset',
  'upset_understand',
  'understand_still',
  'still_talk',
  'talk_said',
  'said_last',
  'last_time',
  'time_saw',
  'saw_laura',
  'laura_person',
  'person_brief',
  'brief_pass',
  'pass_come',
  'come_visit',
  'visit_parent',
  'parent_hous',
  'hous_watch',
  'watch_get',
  'get_car',
  'car_pull',
  'pull_drive',
  'drive_way',
  'way_actual',
  'actual_speak',
  'speak_last',
  'last_week',
  'week_life',
  'life_kim',
  'kim_made',
  'made_seri',
  'seri_video',
  'video_togeth',
  'togeth_kim',
  'kim_could',
  'could_leav',
  'leav_special',
  'special_messag',
  'messag_laura',
  'laura_import',
  'import_event',
  'event_kim',
  'kim_also',
  'also_wrote',
  'wrote_letter',
  'letter_laura',
  'laura_tom',
  'tom_got',
  'got_rid',
  'rid_letter',
  'letter_got',
  'got_rid',
  'rid_final',
  'final_cut',
  'cut_backup',
  'backup_video',
  'video_still',
  'still_copi',
  'copi_know',
  'know_honestli',
  'honestli_forgot',
  'forgot_found',
  'found_move',
  'move_saw',
  'saw_small',
  'small_box',
  'box_ye',
  'ye_jane',
  'jane_tom',
  'tom_two',
  'two_bio',
  'bio_children',
  'children_togeth',
  'togeth_unless',
  'unless_chang',
  'chang_mind',
  'mind_jane',
  'jane_tom',
  'tom_everi',
  'everi_intent',
  'intent_never',
  'never_tell',
  'tell_laura',
  'laura_think',
  'think_big',
  'big_deal',
  'deal_sinc',
  'sinc_famili',
  'famili_medic',
  'medic_histori',
  'histori_would',
  'would_still',
  'still_updat',
  'updat_laura',
  'laura_reach',
  'reach_parent',
  'parent_safe',
  'safe_girlfriend',
  'throwaway_account_two',
  'account_two_older',
  'two_older_sister',
  'older_sister_grow',
  'sister_grow_jane',
  'grow_jane_kim',
  'jane_kim_kim',
  'kim_kim_got',
  'kim_got_sick',
  'got_sick_die',
  'sick_die_give',
  'die_give_birth',
  'give_birth_niec',
  'birth_niec_laura',
  'niec_laura_year',
  'laura_year_kim',
  'year_kim_pass',
  'kim_pass_jane',
  'pass_jane_laura',
  'jane_laura_dad',
  'laura_dad_tom',
  'dad_tom_confess',
  'tom_confess_date',
  'confess_date_engag',
  'date_engag_everyon',
  'engag_everyon_surpris',
  'everyon_surpris_one',
  'surpris_one_vocal',
  'one_vocal_disgust',
  'vocal_disgust_accus',
  'disgust_accus_cheat',
  'accus_cheat_jane',
  'cheat_jane_tom',
  'jane_tom_explain',
  'tom_explain_someth',
  'explain_someth_plan',
  'someth_plan_cheat',
  'plan_cheat_knew',
  'cheat_knew_kim',
  'knew_kim_would',
  'kim_would_would',
  'would_would_want',
  'would_want_happi',
  'want_happi_conveni',
  'happi_conveni_sinc',
  'conveni_sinc_know',
  'sinc_know_dead',
  'know_dead_attend',
  'dead_attend_wed',
  'attend_wed_upset',
  'wed_upset_everyon',
  'upset_everyon_els',
  'everyon_els_accept',
  'els_accept_relationship',
  'accept_relationship_thing',
  'relationship_thing_hurt',
  'thing_hurt_jane',
  'hurt_jane_tom',
  'jane_tom_intend',
  'tom_intend_complet',
  'intend_complet_eras',
  'complet_eras_kim',
  'eras_kim_laura',
  'kim_laura_life',
  'laura_life_bare',
  'life_bare_kim',
  'bare_kim_die',
  'kim_die_decid',
  'die_decid_would',
  'decid_would_better',
  'would_better_laura',
  'better_laura_thought',
  'laura_thought_jane',
  'thought_jane_mother',
  'jane_mother_everi',
  'mother_everi_sens',
  'everi_sens_word',
  'sens_word_adopt',
  'word_adopt_final',
  'adopt_final_tom',
  'final_tom_got',
  'tom_got_rid',
  'got_rid_item',
  'rid_item_would',
  'item_would_suggest',
  'would_suggest_kim',
  'suggest_kim_ever',
  'kim_ever_relationship',
  'ever_relationship_made',
  'relationship_made_famili',
  'made_famili_swear',
  'famili_swear_never',
  'swear_never_tell',
  'never_tell_laura',
  'tell_laura_truth',
  'laura_truth_jane',
  'truth_jane_expect',
  'jane_expect_everyon',
  'expect_everyon_side',
  'everyon_side_famili',
  'side_famili_refus',
  'famili_refus_deni',
  'refus_deni_access',
  'deni_access_laura',
  'access_laura_hurt',
  'laura_hurt_thought',
  'hurt_thought_time',
  'thought_time_kim',
  'time_kim_cri',
  'kim_cri_know',
  'cri_know_live',
  'know_live_long',
  'live_long_enough',
  'long_enough_see',
  'enough_see_laura',
  'see_laura_grow',
  'laura_grow_way',
  'grow_way_could',
  'way_could_honor',
  'could_honor_lie',
  'honor_lie_even',
  'lie_even_laura',
  'even_laura_name',
  'laura_name_legal',
  'name_legal_chang',
  'legal_chang_someth',
  'chang_someth_jane',
  'someth_jane_like',
  'jane_like_kim',
  'like_kim_pick',
  'kim_pick_laura',
  'pick_laura_first',
  'laura_first_name',
  'first_name_distanc',
  'name_distanc_famili',
  'distanc_famili_time',
  'famili_time_parent',
  'time_parent_alway',
  'parent_alway_tri',
  'alway_tri_get',
  'tri_get_us',
  'get_us_reconcil',
  'us_reconcil_cite',
  'reconcil_cite_like',
  'cite_like_arrang',
  'like_arrang_either',
  'arrang_either_accept',
  'either_accept_better',
  'accept_better_apart',
  'better_apart_laura',
  'apart_laura_life',
  'laura_life_grow',
  'life_grow_laura',
  'grow_laura_known',
  'laura_known_never',
  'known_never_realli',
  'never_realli_interact',
  'realli_interact_appar',
  'interact_appar_interest',
  'appar_interest_studi',
  'interest_studi_field',
  'studi_field_work',
  'field_work_reach',
  'work_reach_social',
  'reach_social_media',
  'social_media_last',
  'media_last_time',
  'last_time_saw',
  'time_saw_person',
  'saw_person_start',
  'person_start_tear',
  'start_tear_much',
  'tear_much_look',
  'much_look_like',
  'look_like_kim',
  'like_kim_would',
  'kim_would_talk',
  'would_talk_time',
  'talk_time_time',
  'time_time_eventu',
  'time_eventu_laura',
  'eventu_laura_ask',
  'laura_ask_around',
  'ask_around_tri',
  'around_tri_keep',
  'tri_keep_vagu',
  'keep_vagu_laura',
  'vagu_laura_knew',
  'laura_knew_stori',
  'knew_stori_seem',
  'stori_seem_like',
  'seem_like_person',
  'like_person_describ',
  'person_describ_talk',
  'describ_talk_dm',
  'talk_dm_like',
  'dm_like_probabl',
  'like_probabl_done',
  'probabl_done_video',
  'done_video_chat',
  'video_chat_someth',
  'chat_someth_look',
  'someth_look_directli',
  'look_directli_eye',
  'directli_eye_broke',
  'eye_broke_confess',
  'broke_confess_everyth',
  'confess_everyth_kim',
  'everyth_kim_die',
  'kim_die_made',
  'die_made_seri',
  'made_seri_video',
  'seri_video_laura',
  'video_laura_watch',
  'laura_watch_big',
  'watch_big_moment',
  'big_moment_told',
  'moment_told_ever',
  'told_ever_want',
  'ever_want_watch',
  'want_watch_id',
  'watch_id_send',
  'id_send_laura',
  'send_laura_ask',
  'laura_ask_send',
  'ask_send_heard',
  'send_heard_noth',
  'heard_noth_day',
  'noth_day_recent',
  'day_recent_got',
  'recent_got_call',
  'got_call_enrag',
  'call_enrag_jane',
  'enrag_jane_tom',
  'jane_tom_berat',
  'tom_berat_ruin',
  'berat_ruin_famili',
  'ruin_famili_laura',
  'famili_laura_watch',
  'laura_watch_video',
  'watch_video_confront',
  'video_confront_parent',
  'confront_parent_confirm',
  ...],
 ['updat',
  'everyon',
  'think',
  'im',
  'femal',
  'im',
  'male',
  'took',
  'transit',
  'today',
  'street',
  'car',
  'total',
  'open',
  'avail',
  'realli',
  'nice',
  'differ',
  'seat',
  'avail',
  'alon',
  'sit',
  'window',
  'seat',
  'random',
  'stranger',
  'came',
  'sat',
  'next',
  'think',
  'guy',
  'sit',
  'next',
  'like',
  'avail',
  'seat',
  'front',
  'back',
  'sat',
  'next',
  'said',
  'himwhi',
  'sit',
  'next',
  'mani',
  'seat',
  'everywher',
  'street',
  'car',
  'littl',
  'strang',
  'said',
  'well',
  'seat',
  'seat',
  'sit',
  'wherev',
  'want',
  'unreason',
  'said',
  'correct',
  'spot',
  'understand',
  'chose',
  'sit',
  'right',
  'next',
  'entir',
  'street',
  'car',
  'empti',
  'sit',
  'anywher',
  'want',
  'street',
  'car',
  'respond',
  'thing',
  'thought',
  'okay',
  'want',
  'conflict',
  'random',
  'stranger',
  'even',
  'know',
  'end',
  'get',
  'move',
  'situat',
  'perplex',
  'like',
  'unwritten',
  'rule',
  'abund',
  'avail',
  'seat',
  'sit',
  'alon',
  'aita',
  'situat',
  'updat_everyon',
  'everyon_think',
  'think_im',
  'im_femal',
  'femal_im',
  'im_male',
  'male_took',
  'took_transit',
  'transit_today',
  'today_street',
  'street_car',
  'car_total',
  'total_open',
  'open_avail',
  'avail_realli',
  'realli_nice',
  'nice_differ',
  'differ_seat',
  'seat_avail',
  'avail_alon',
  'alon_sit',
  'sit_window',
  'window_seat',
  'seat_random',
  'random_stranger',
  'stranger_came',
  'came_sat',
  'sat_next',
  'next_think',
  'think_guy',
  'guy_sit',
  'sit_next',
  'next_like',
  'like_avail',
  'avail_seat',
  'seat_front',
  'front_back',
  'back_sat',
  'sat_next',
  'next_said',
  'said_himwhi',
  'himwhi_sit',
  'sit_next',
  'next_mani',
  'mani_seat',
  'seat_everywher',
  'everywher_street',
  'street_car',
  'car_littl',
  'littl_strang',
  'strang_said',
  'said_well',
  'well_seat',
  'seat_seat',
  'seat_sit',
  'sit_wherev',
  'wherev_want',
  'want_unreason',
  'unreason_said',
  'said_correct',
  'correct_spot',
  'spot_understand',
  'understand_chose',
  'chose_sit',
  'sit_right',
  'right_next',
  'next_entir',
  'entir_street',
  'street_car',
  'car_empti',
  'empti_sit',
  'sit_anywher',
  'anywher_want',
  'want_street',
  'street_car',
  'car_respond',
  'respond_thing',
  'thing_thought',
  'thought_okay',
  'okay_want',
  'want_conflict',
  'conflict_random',
  'random_stranger',
  'stranger_even',
  'even_know',
  'know_end',
  'end_get',
  'get_move',
  'move_situat',
  'situat_perplex',
  'perplex_like',
  'like_unwritten',
  'unwritten_rule',
  'rule_abund',
  'abund_avail',
  'avail_seat',
  'seat_sit',
  'sit_alon',
  'alon_aita',
  'aita_situat',
  'updat_everyon_think',
  'everyon_think_im',
  'think_im_femal',
  'im_femal_im',
  'femal_im_male',
  'im_male_took',
  'male_took_transit',
  'took_transit_today',
  'transit_today_street',
  'today_street_car',
  'street_car_total',
  'car_total_open',
  'total_open_avail',
  'open_avail_realli',
  'avail_realli_nice',
  'realli_nice_differ',
  'nice_differ_seat',
  'differ_seat_avail',
  'seat_avail_alon',
  'avail_alon_sit',
  'alon_sit_window',
  'sit_window_seat',
  'window_seat_random',
  'seat_random_stranger',
  'random_stranger_came',
  'stranger_came_sat',
  'came_sat_next',
  'sat_next_think',
  'next_think_guy',
  'think_guy_sit',
  'guy_sit_next',
  'sit_next_like',
  'next_like_avail',
  'like_avail_seat',
  'avail_seat_front',
  'seat_front_back',
  'front_back_sat',
  'back_sat_next',
  'sat_next_said',
  'next_said_himwhi',
  'said_himwhi_sit',
  'himwhi_sit_next',
  'sit_next_mani',
  'next_mani_seat',
  'mani_seat_everywher',
  'seat_everywher_street',
  'everywher_street_car',
  'street_car_littl',
  'car_littl_strang',
  'littl_strang_said',
  'strang_said_well',
  'said_well_seat',
  'well_seat_seat',
  'seat_seat_sit',
  'seat_sit_wherev',
  'sit_wherev_want',
  'wherev_want_unreason',
  'want_unreason_said',
  'unreason_said_correct',
  'said_correct_spot',
  'correct_spot_understand',
  'spot_understand_chose',
  'understand_chose_sit',
  'chose_sit_right',
  'sit_right_next',
  'right_next_entir',
  'next_entir_street',
  'entir_street_car',
  'street_car_empti',
  'car_empti_sit',
  'empti_sit_anywher',
  'sit_anywher_want',
  'anywher_want_street',
  'want_street_car',
  'street_car_respond',
  'car_respond_thing',
  'respond_thing_thought',
  'thing_thought_okay',
  'thought_okay_want',
  'okay_want_conflict',
  'want_conflict_random',
  'conflict_random_stranger',
  'random_stranger_even',
  'stranger_even_know',
  'even_know_end',
  'know_end_get',
  'end_get_move',
  'get_move_situat',
  'move_situat_perplex',
  'situat_perplex_like',
  'perplex_like_unwritten',
  'like_unwritten_rule',
  'unwritten_rule_abund',
  'rule_abund_avail',
  'abund_avail_seat',
  'avail_seat_sit',
  'seat_sit_alon',
  'sit_alon_aita',
  'alon_aita_situat'],
 ['edit',
  'marri',
  'refer',
  'dil',
  'easier',
  'sake',
  'storytel',
  'son',
  'dil',
  'yo',
  'togeth',
  'year',
  'live',
  'togeth',
  'weve',
  'alway',
  'thought',
  'nice',
  'girl',
  'seem',
  'make',
  'son',
  'happi',
  'problem',
  'us',
  'son',
  'law',
  'firm',
  'current',
  'tri',
  'get',
  'start',
  'proud',
  'fortun',
  'enough',
  'help',
  'start',
  'loan',
  'dil',
  'work',
  'retail',
  'job',
  'happi',
  'time',
  'ago',
  'husband',
  'apart',
  'decid',
  'order',
  'food',
  'husband',
  'want',
  'pay',
  'sinc',
  'dil',
  'order',
  'phone',
  'gave',
  'card',
  'could',
  'draw',
  'money',
  'account',
  'thought',
  'goe',
  'without',
  'say',
  'draw',
  'amount',
  'lunch',
  'howev',
  'dil',
  'appar',
  'put',
  'card',
  'appl',
  'pay',
  'use',
  'sinc',
  'notic',
  'month',
  'recent',
  'saw',
  'withdraw',
  'recogn',
  'account',
  'look',
  'discov',
  'dil',
  'use',
  'card',
  'phone',
  'spend',
  'around',
  'quit',
  'shock',
  'call',
  'ask',
  'hell',
  'use',
  'card',
  'got',
  'defens',
  'tri',
  'deni',
  'eventu',
  'said',
  'entitl',
  'care',
  'sinc',
  'notic',
  'use',
  'month',
  'told',
  'need',
  'pay',
  'us',
  'back',
  'immedi',
  'wed',
  'report',
  'action',
  'theft',
  'appar',
  'money',
  'pay',
  'us',
  'back',
  'weve',
  'gone',
  'son',
  'offer',
  'pay',
  'us',
  'back',
  'even',
  'though',
  'actual',
  'afford',
  'money',
  'us',
  'fact',
  'stolen',
  'huge',
  'amount',
  'money',
  'comfort',
  'took',
  'us',
  'time',
  'notic',
  'still',
  'recogn',
  'serious',
  'steal',
  'usd',
  'son',
  'complet',
  'dismiss',
  'behavior',
  'excus',
  'stress',
  'taken',
  'respons',
  'honestli',
  'want',
  'go',
  'forward',
  'polic',
  'report',
  'teach',
  'consequ',
  'action',
  'would',
  'ta',
  '&',
  'xb',
  'edit_marri',
  'marri_refer',
  'refer_dil',
  'dil_easier',
  'easier_sake',
  'sake_storytel',
  'storytel_son',
  'son_dil',
  'dil_yo',
  'yo_togeth',
  'togeth_year',
  'year_live',
  'live_togeth',
  'togeth_weve',
  'weve_alway',
  'alway_thought',
  'thought_nice',
  'nice_girl',
  'girl_seem',
  'seem_make',
  'make_son',
  'son_happi',
  'happi_problem',
  'problem_us',
  'us_son',
  'son_law',
  'law_firm',
  'firm_current',
  'current_tri',
  'tri_get',
  'get_start',
  'start_proud',
  'proud_fortun',
  'fortun_enough',
  'enough_help',
  'help_start',
  'start_loan',
  'loan_dil',
  'dil_work',
  'work_retail',
  'retail_job',
  'job_happi',
  'happi_time',
  'time_ago',
  'ago_husband',
  'husband_apart',
  'apart_decid',
  'decid_order',
  'order_food',
  'food_husband',
  'husband_want',
  'want_pay',
  'pay_sinc',
  'sinc_dil',
  'dil_order',
  'order_phone',
  'phone_gave',
  'gave_card',
  'card_could',
  'could_draw',
  'draw_money',
  'money_account',
  'account_thought',
  'thought_goe',
  'goe_without',
  'without_say',
  'say_draw',
  'draw_amount',
  'amount_lunch',
  'lunch_howev',
  'howev_dil',
  'dil_appar',
  'appar_put',
  'put_card',
  'card_appl',
  'appl_pay',
  'pay_use',
  'use_sinc',
  'sinc_notic',
  'notic_month',
  'month_recent',
  'recent_saw',
  'saw_withdraw',
  'withdraw_recogn',
  'recogn_account',
  'account_look',
  'look_discov',
  'discov_dil',
  'dil_use',
  'use_card',
  'card_phone',
  'phone_spend',
  'spend_around',
  'around_quit',
  'quit_shock',
  'shock_call',
  'call_ask',
  'ask_hell',
  'hell_use',
  'use_card',
  'card_got',
  'got_defens',
  'defens_tri',
  'tri_deni',
  'deni_eventu',
  'eventu_said',
  'said_entitl',
  'entitl_care',
  'care_sinc',
  'sinc_notic',
  'notic_use',
  'use_month',
  'month_told',
  'told_need',
  'need_pay',
  'pay_us',
  'us_back',
  'back_immedi',
  'immedi_wed',
  'wed_report',
  'report_action',
  'action_theft',
  'theft_appar',
  'appar_money',
  'money_pay',
  'pay_us',
  'us_back',
  'back_weve',
  'weve_gone',
  'gone_son',
  'son_offer',
  'offer_pay',
  'pay_us',
  'us_back',
  'back_even',
  'even_though',
  'though_actual',
  'actual_afford',
  'afford_money',
  'money_us',
  'us_fact',
  'fact_stolen',
  'stolen_huge',
  'huge_amount',
  'amount_money',
  'money_comfort',
  'comfort_took',
  'took_us',
  'us_time',
  'time_notic',
  'notic_still',
  'still_recogn',
  'recogn_serious',
  'serious_steal',
  'steal_usd',
  'usd_son',
  'son_complet',
  'complet_dismiss',
  'dismiss_behavior',
  'behavior_excus',
  'excus_stress',
  'stress_taken',
  'taken_respons',
  'respons_honestli',
  'honestli_want',
  'want_go',
  'go_forward',
  'forward_polic',
  'polic_report',
  'report_teach',
  'teach_consequ',
  'consequ_action',
  'action_would',
  'would_ta',
  'ta_&',
  '&_xb',
  'edit_marri_refer',
  'marri_refer_dil',
  'refer_dil_easier',
  'dil_easier_sake',
  'easier_sake_storytel',
  'sake_storytel_son',
  'storytel_son_dil',
  'son_dil_yo',
  'dil_yo_togeth',
  'yo_togeth_year',
  'togeth_year_live',
  'year_live_togeth',
  'live_togeth_weve',
  'togeth_weve_alway',
  'weve_alway_thought',
  'alway_thought_nice',
  'thought_nice_girl',
  'nice_girl_seem',
  'girl_seem_make',
  'seem_make_son',
  'make_son_happi',
  'son_happi_problem',
  'happi_problem_us',
  'problem_us_son',
  'us_son_law',
  'son_law_firm',
  'law_firm_current',
  'firm_current_tri',
  'current_tri_get',
  'tri_get_start',
  'get_start_proud',
  'start_proud_fortun',
  'proud_fortun_enough',
  'fortun_enough_help',
  'enough_help_start',
  'help_start_loan',
  'start_loan_dil',
  'loan_dil_work',
  'dil_work_retail',
  'work_retail_job',
  'retail_job_happi',
  'job_happi_time',
  'happi_time_ago',
  'time_ago_husband',
  'ago_husband_apart',
  'husband_apart_decid',
  'apart_decid_order',
  'decid_order_food',
  'order_food_husband',
  'food_husband_want',
  'husband_want_pay',
  'want_pay_sinc',
  'pay_sinc_dil',
  'sinc_dil_order',
  'dil_order_phone',
  'order_phone_gave',
  'phone_gave_card',
  'gave_card_could',
  'card_could_draw',
  'could_draw_money',
  'draw_money_account',
  'money_account_thought',
  'account_thought_goe',
  'thought_goe_without',
  'goe_without_say',
  'without_say_draw',
  'say_draw_amount',
  'draw_amount_lunch',
  'amount_lunch_howev',
  'lunch_howev_dil',
  'howev_dil_appar',
  'dil_appar_put',
  'appar_put_card',
  'put_card_appl',
  'card_appl_pay',
  'appl_pay_use',
  'pay_use_sinc',
  'use_sinc_notic',
  'sinc_notic_month',
  'notic_month_recent',
  'month_recent_saw',
  'recent_saw_withdraw',
  'saw_withdraw_recogn',
  'withdraw_recogn_account',
  'recogn_account_look',
  'account_look_discov',
  'look_discov_dil',
  'discov_dil_use',
  'dil_use_card',
  'use_card_phone',
  'card_phone_spend',
  'phone_spend_around',
  'spend_around_quit',
  'around_quit_shock',
  'quit_shock_call',
  'shock_call_ask',
  'call_ask_hell',
  'ask_hell_use',
  'hell_use_card',
  'use_card_got',
  'card_got_defens',
  'got_defens_tri',
  'defens_tri_deni',
  'tri_deni_eventu',
  'deni_eventu_said',
  'eventu_said_entitl',
  'said_entitl_care',
  'entitl_care_sinc',
  'care_sinc_notic',
  'sinc_notic_use',
  'notic_use_month',
  'use_month_told',
  'month_told_need',
  'told_need_pay',
  'need_pay_us',
  'pay_us_back',
  'us_back_immedi',
  'back_immedi_wed',
  'immedi_wed_report',
  'wed_report_action',
  'report_action_theft',
  'action_theft_appar',
  'theft_appar_money',
  'appar_money_pay',
  'money_pay_us',
  'pay_us_back',
  'us_back_weve',
  'back_weve_gone',
  'weve_gone_son',
  'gone_son_offer',
  'son_offer_pay',
  'offer_pay_us',
  'pay_us_back',
  'us_back_even',
  'back_even_though',
  'even_though_actual',
  'though_actual_afford',
  'actual_afford_money',
  'afford_money_us',
  'money_us_fact',
  'us_fact_stolen',
  'fact_stolen_huge',
  'stolen_huge_amount',
  'huge_amount_money',
  'amount_money_comfort',
  'money_comfort_took',
  'comfort_took_us',
  'took_us_time',
  'us_time_notic',
  'time_notic_still',
  'notic_still_recogn',
  'still_recogn_serious',
  'recogn_serious_steal',
  'serious_steal_usd',
  'steal_usd_son',
  'usd_son_complet',
  'son_complet_dismiss',
  'complet_dismiss_behavior',
  'dismiss_behavior_excus',
  'behavior_excus_stress',
  'excus_stress_taken',
  'stress_taken_respons',
  'taken_respons_honestli',
  'respons_honestli_want',
  'honestli_want_go',
  'want_go_forward',
  'go_forward_polic',
  'forward_polic_report',
  'polic_report_teach',
  'report_teach_consequ',
  'teach_consequ_action',
  'consequ_action_would',
  'action_would_ta',
  'would_ta_&',
  'ta_&_xb'],
 ['sister',
  'recent',
  'move',
  'get',
  'divorc',
  'nowher',
  'stay',
  'daughter',
  'live',
  'two',
  'bedroom',
  'apart',
  'cramp',
  'tension',
  'high',
  'niec',
  'terribl',
  'honest',
  'scream',
  'day',
  'long',
  'top',
  'lung',
  'work',
  'home',
  'tri',
  'get',
  'sister',
  'get',
  'stop',
  'depress',
  'divorc',
  'struggl',
  'get',
  'bed',
  'ask',
  'niec',
  'quiet',
  'smirk',
  'continu',
  'play',
  'screech',
  'gotten',
  'reprimand',
  'work',
  'also',
  'recent',
  'broke',
  'laptop',
  'made',
  'clear',
  'niec',
  'allow',
  'use',
  'electron',
  'minu',
  'live',
  'room',
  'tv',
  'lo',
  'behold',
  'niec',
  'got',
  'hand',
  'laptop',
  'play',
  'game',
  'spill',
  'milk',
  'ruin',
  'furiou',
  'sister',
  'paid',
  'replac',
  'let',
  'go',
  'tri',
  'mani',
  'time',
  'talk',
  'sister',
  'unaccept',
  'keep',
  'get',
  'blown',
  'told',
  'let',
  'griev',
  'peac',
  'feel',
  'bad',
  'best',
  'put',
  'today',
  'came',
  'home',
  'errand',
  'find',
  'niec',
  'play',
  'nintendo',
  'switch',
  'mind',
  'kept',
  'room',
  'must',
  'gone',
  'look',
  'annoy',
  'held',
  'hand',
  'told',
  'give',
  'ignor',
  'call',
  'sister',
  'take',
  'care',
  'daughter',
  'asleep',
  'told',
  'leav',
  'alon',
  'grab',
  'switch',
  'right',
  'niec',
  'hand',
  'took',
  'back',
  'room',
  'start',
  'scream',
  'cri',
  'liter',
  'roll',
  'floor',
  'ignor',
  'well',
  'decid',
  'accept',
  'took',
  'sharpi',
  'drew',
  'live',
  'room',
  'wall',
  'saw',
  'freak',
  'tf',
  'told',
  'spoil',
  'fuck',
  'brat',
  'start',
  'scream',
  'cri',
  'even',
  'wors',
  'final',
  'woke',
  'sister',
  'came',
  'instead',
  'angri',
  'scold',
  'daughter',
  'behavior',
  'scold',
  'yell',
  'call',
  'spoil',
  'brat',
  'proudest',
  'moment',
  'yell',
  'sister',
  'kind',
  'let',
  'stay',
  'rent',
  'free',
  'treat',
  'like',
  'absolut',
  'shit',
  'return',
  'parent',
  'child',
  'go',
  'parent',
  'child',
  'need',
  'get',
  'shit',
  'togeth',
  'daughter',
  'control',
  'could',
  'find',
  'somewher',
  'els',
  'stay',
  'daughter',
  'get',
  'troubl',
  'job',
  'respect',
  'person',
  'belong',
  'probabl',
  'go',
  'lose',
  'secur',
  'deposit',
  'accept',
  'word',
  'sister',
  'start',
  'cri',
  'call',
  'ah',
  'niec',
  'come',
  'room',
  'feel',
  'bad',
  'aita',
  'editclarificafion',
  'prior',
  'incid',
  'rais',
  'voic',
  'niec',
  'singl',
  'time',
  'tri',
  'talk',
  'respect',
  'home',
  'thing',
  'care',
  'less',
  'also',
  'laugh',
  'cri',
  'broken',
  'laptop',
  'even',
  'say',
  'singl',
  'word',
  'talk',
  'sister',
  'tri',
  'convers',
  'sister',
  'niec',
  'behavior',
  'guilt',
  'told',
  'go',
  'hard',
  'time',
  'niec',
  'alway',
  'like',
  'even',
  'divorc',
  'though',
  'im',
  'sure',
  'devast',
  'life',
  'event',
  'made',
  'thing',
  'wors',
  'go',
  'set',
  'date',
  'leav',
  'thing',
  'calm',
  'bit',
  'also',
  'talk',
  'sister',
  'therapi',
  'sister_recent',
  'recent_move',
  'move_get',
  'get_divorc',
  'divorc_nowher',
  'nowher_stay',
  'stay_daughter',
  'daughter_live',
  'live_two',
  'two_bedroom',
  'bedroom_apart',
  'apart_cramp',
  'cramp_tension',
  'tension_high',
  'high_niec',
  'niec_terribl',
  'terribl_honest',
  'honest_scream',
  'scream_day',
  'day_long',
  'long_top',
  'top_lung',
  'lung_work',
  'work_home',
  'home_tri',
  'tri_get',
  'get_sister',
  'sister_get',
  'get_stop',
  'stop_depress',
  'depress_divorc',
  'divorc_struggl',
  'struggl_get',
  'get_bed',
  'bed_ask',
  'ask_niec',
  'niec_quiet',
  'quiet_smirk',
  'smirk_continu',
  'continu_play',
  'play_screech',
  'screech_gotten',
  'gotten_reprimand',
  'reprimand_work',
  'work_also',
  'also_recent',
  'recent_broke',
  'broke_laptop',
  'laptop_made',
  'made_clear',
  'clear_niec',
  'niec_allow',
  'allow_use',
  'use_electron',
  'electron_minu',
  'minu_live',
  'live_room',
  'room_tv',
  'tv_lo',
  'lo_behold',
  'behold_niec',
  'niec_got',
  'got_hand',
  'hand_laptop',
  'laptop_play',
  'play_game',
  'game_spill',
  'spill_milk',
  'milk_ruin',
  'ruin_furiou',
  'furiou_sister',
  'sister_paid',
  'paid_replac',
  'replac_let',
  'let_go',
  'go_tri',
  'tri_mani',
  'mani_time',
  'time_talk',
  'talk_sister',
  'sister_unaccept',
  'unaccept_keep',
  'keep_get',
  'get_blown',
  'blown_told',
  'told_let',
  'let_griev',
  'griev_peac',
  'peac_feel',
  'feel_bad',
  'bad_best',
  'best_put',
  'put_today',
  'today_came',
  'came_home',
  'home_errand',
  'errand_find',
  'find_niec',
  'niec_play',
  'play_nintendo',
  'nintendo_switch',
  'switch_mind',
  'mind_kept',
  'kept_room',
  'room_must',
  'must_gone',
  'gone_look',
  'look_annoy',
  'annoy_held',
  'held_hand',
  'hand_told',
  'told_give',
  'give_ignor',
  'ignor_call',
  'call_sister',
  'sister_take',
  'take_care',
  'care_daughter',
  'daughter_asleep',
  'asleep_told',
  'told_leav',
  'leav_alon',
  'alon_grab',
  'grab_switch',
  'switch_right',
  'right_niec',
  'niec_hand',
  'hand_took',
  'took_back',
  'back_room',
  'room_start',
  'start_scream',
  'scream_cri',
  'cri_liter',
  'liter_roll',
  'roll_floor',
  'floor_ignor',
  'ignor_well',
  'well_decid',
  'decid_accept',
  'accept_took',
  'took_sharpi',
  'sharpi_drew',
  'drew_live',
  'live_room',
  'room_wall',
  'wall_saw',
  'saw_freak',
  'freak_tf',
  'tf_told',
  'told_spoil',
  'spoil_fuck',
  'fuck_brat',
  'brat_start',
  'start_scream',
  'scream_cri',
  'cri_even',
  'even_wors',
  'wors_final',
  'final_woke',
  'woke_sister',
  'sister_came',
  'came_instead',
  'instead_angri',
  'angri_scold',
  'scold_daughter',
  'daughter_behavior',
  'behavior_scold',
  'scold_yell',
  'yell_call',
  'call_spoil',
  'spoil_brat',
  'brat_proudest',
  'proudest_moment',
  'moment_yell',
  'yell_sister',
  'sister_kind',
  'kind_let',
  'let_stay',
  'stay_rent',
  'rent_free',
  'free_treat',
  'treat_like',
  'like_absolut',
  'absolut_shit',
  'shit_return',
  'return_parent',
  'parent_child',
  'child_go',
  'go_parent',
  'parent_child',
  'child_need',
  'need_get',
  'get_shit',
  'shit_togeth',
  'togeth_daughter',
  'daughter_control',
  'control_could',
  'could_find',
  'find_somewher',
  'somewher_els',
  'els_stay',
  'stay_daughter',
  'daughter_get',
  'get_troubl',
  'troubl_job',
  'job_respect',
  'respect_person',
  'person_belong',
  'belong_probabl',
  'probabl_go',
  'go_lose',
  'lose_secur',
  'secur_deposit',
  'deposit_accept',
  'accept_word',
  'word_sister',
  'sister_start',
  'start_cri',
  'cri_call',
  'call_ah',
  'ah_niec',
  'niec_come',
  'come_room',
  'room_feel',
  'feel_bad',
  'bad_aita',
  'aita_editclarificafion',
  'editclarificafion_prior',
  'prior_incid',
  'incid_rais',
  'rais_voic',
  'voic_niec',
  'niec_singl',
  'singl_time',
  'time_tri',
  'tri_talk',
  'talk_respect',
  'respect_home',
  'home_thing',
  'thing_care',
  'care_less',
  'less_also',
  'also_laugh',
  'laugh_cri',
  'cri_broken',
  'broken_laptop',
  'laptop_even',
  'even_say',
  'say_singl',
  'singl_word',
  'word_talk',
  'talk_sister',
  'sister_tri',
  'tri_convers',
  'convers_sister',
  'sister_niec',
  'niec_behavior',
  'behavior_guilt',
  'guilt_told',
  'told_go',
  'go_hard',
  'hard_time',
  'time_niec',
  'niec_alway',
  'alway_like',
  'like_even',
  'even_divorc',
  'divorc_though',
  'though_im',
  'im_sure',
  'sure_devast',
  'devast_life',
  'life_event',
  'event_made',
  'made_thing',
  'thing_wors',
  'wors_go',
  'go_set',
  'set_date',
  'date_leav',
  'leav_thing',
  'thing_calm',
  'calm_bit',
  'bit_also',
  'also_talk',
  'talk_sister',
  'sister_therapi',
  'sister_recent_move',
  'recent_move_get',
  'move_get_divorc',
  'get_divorc_nowher',
  'divorc_nowher_stay',
  'nowher_stay_daughter',
  'stay_daughter_live',
  'daughter_live_two',
  'live_two_bedroom',
  'two_bedroom_apart',
  'bedroom_apart_cramp',
  'apart_cramp_tension',
  'cramp_tension_high',
  'tension_high_niec',
  'high_niec_terribl',
  'niec_terribl_honest',
  'terribl_honest_scream',
  'honest_scream_day',
  'scream_day_long',
  'day_long_top',
  'long_top_lung',
  'top_lung_work',
  'lung_work_home',
  'work_home_tri',
  'home_tri_get',
  'tri_get_sister',
  'get_sister_get',
  'sister_get_stop',
  'get_stop_depress',
  'stop_depress_divorc',
  'depress_divorc_struggl',
  'divorc_struggl_get',
  'struggl_get_bed',
  'get_bed_ask',
  'bed_ask_niec',
  'ask_niec_quiet',
  'niec_quiet_smirk',
  'quiet_smirk_continu',
  'smirk_continu_play',
  'continu_play_screech',
  'play_screech_gotten',
  'screech_gotten_reprimand',
  'gotten_reprimand_work',
  'reprimand_work_also',
  'work_also_recent',
  'also_recent_broke',
  'recent_broke_laptop',
  'broke_laptop_made',
  'laptop_made_clear',
  'made_clear_niec',
  'clear_niec_allow',
  'niec_allow_use',
  'allow_use_electron',
  'use_electron_minu',
  'electron_minu_live',
  'minu_live_room',
  'live_room_tv',
  'room_tv_lo',
  'tv_lo_behold',
  'lo_behold_niec',
  'behold_niec_got',
  'niec_got_hand',
  'got_hand_laptop',
  'hand_laptop_play',
  'laptop_play_game',
  'play_game_spill',
  'game_spill_milk',
  'spill_milk_ruin',
  'milk_ruin_furiou',
  'ruin_furiou_sister',
  'furiou_sister_paid',
  'sister_paid_replac',
  'paid_replac_let',
  'replac_let_go',
  'let_go_tri',
  'go_tri_mani',
  'tri_mani_time',
  'mani_time_talk',
  'time_talk_sister',
  'talk_sister_unaccept',
  'sister_unaccept_keep',
  'unaccept_keep_get',
  'keep_get_blown',
  'get_blown_told',
  'blown_told_let',
  'told_let_griev',
  'let_griev_peac',
  'griev_peac_feel',
  'peac_feel_bad',
  'feel_bad_best',
  'bad_best_put',
  'best_put_today',
  'put_today_came',
  'today_came_home',
  'came_home_errand',
  'home_errand_find',
  'errand_find_niec',
  'find_niec_play',
  'niec_play_nintendo',
  'play_nintendo_switch',
  'nintendo_switch_mind',
  'switch_mind_kept',
  'mind_kept_room',
  'kept_room_must',
  'room_must_gone',
  'must_gone_look',
  'gone_look_annoy',
  'look_annoy_held',
  'annoy_held_hand',
  'held_hand_told',
  'hand_told_give',
  'told_give_ignor',
  'give_ignor_call',
  'ignor_call_sister',
  'call_sister_take',
  'sister_take_care',
  'take_care_daughter',
  'care_daughter_asleep',
  'daughter_asleep_told',
  'asleep_told_leav',
  'told_leav_alon',
  'leav_alon_grab',
  'alon_grab_switch',
  'grab_switch_right',
  'switch_right_niec',
  'right_niec_hand',
  'niec_hand_took',
  'hand_took_back',
  'took_back_room',
  'back_room_start',
  'room_start_scream',
  'start_scream_cri',
  'scream_cri_liter',
  'cri_liter_roll',
  'liter_roll_floor',
  'roll_floor_ignor',
  'floor_ignor_well',
  'ignor_well_decid',
  'well_decid_accept',
  'decid_accept_took',
  'accept_took_sharpi',
  'took_sharpi_drew',
  'sharpi_drew_live',
  'drew_live_room',
  'live_room_wall',
  'room_wall_saw',
  'wall_saw_freak',
  'saw_freak_tf',
  'freak_tf_told',
  'tf_told_spoil',
  'told_spoil_fuck',
  'spoil_fuck_brat',
  'fuck_brat_start',
  'brat_start_scream',
  'start_scream_cri',
  'scream_cri_even',
  'cri_even_wors',
  'even_wors_final',
  'wors_final_woke',
  'final_woke_sister',
  'woke_sister_came',
  'sister_came_instead',
  'came_instead_angri',
  'instead_angri_scold',
  'angri_scold_daughter',
  'scold_daughter_behavior',
  'daughter_behavior_scold',
  'behavior_scold_yell',
  'scold_yell_call',
  'yell_call_spoil',
  'call_spoil_brat',
  'spoil_brat_proudest',
  'brat_proudest_moment',
  'proudest_moment_yell',
  'moment_yell_sister',
  'yell_sister_kind',
  'sister_kind_let',
  'kind_let_stay',
  'let_stay_rent',
  'stay_rent_free',
  'rent_free_treat',
  'free_treat_like',
  'treat_like_absolut',
  'like_absolut_shit',
  'absolut_shit_return',
  'shit_return_parent',
  'return_parent_child',
  'parent_child_go',
  'child_go_parent',
  'go_parent_child',
  'parent_child_need',
  'child_need_get',
  'need_get_shit',
  'get_shit_togeth',
  'shit_togeth_daughter',
  'togeth_daughter_control',
  'daughter_control_could',
  'control_could_find',
  'could_find_somewher',
  'find_somewher_els',
  'somewher_els_stay',
  'els_stay_daughter',
  'stay_daughter_get',
  'daughter_get_troubl',
  'get_troubl_job',
  'troubl_job_respect',
  'job_respect_person',
  'respect_person_belong',
  'person_belong_probabl',
  'belong_probabl_go',
  'probabl_go_lose',
  'go_lose_secur',
  'lose_secur_deposit',
  'secur_deposit_accept',
  'deposit_accept_word',
  'accept_word_sister',
  'word_sister_start',
  'sister_start_cri',
  'start_cri_call',
  'cri_call_ah',
  'call_ah_niec',
  'ah_niec_come',
  'niec_come_room',
  'come_room_feel',
  'room_feel_bad',
  'feel_bad_aita',
  'bad_aita_editclarificafion',
  'aita_editclarificafion_prior',
  'editclarificafion_prior_incid',
  'prior_incid_rais',
  'incid_rais_voic',
  'rais_voic_niec',
  'voic_niec_singl',
  'niec_singl_time',
  'singl_time_tri',
  'time_tri_talk',
  'tri_talk_respect',
  'talk_respect_home',
  'respect_home_thing',
  'home_thing_care',
  'thing_care_less',
  'care_less_also',
  'less_also_laugh',
  'also_laugh_cri',
  'laugh_cri_broken',
  'cri_broken_laptop',
  'broken_laptop_even',
  'laptop_even_say',
  'even_say_singl',
  'say_singl_word',
  'singl_word_talk',
  'word_talk_sister',
  'talk_sister_tri',
  'sister_tri_convers',
  'tri_convers_sister',
  'convers_sister_niec',
  'sister_niec_behavior',
  'niec_behavior_guilt',
  'behavior_guilt_told',
  'guilt_told_go',
  'told_go_hard',
  'go_hard_time',
  'hard_time_niec',
  'time_niec_alway',
  'niec_alway_like',
  'alway_like_even',
  'like_even_divorc',
  'even_divorc_though',
  'divorc_though_im',
  'though_im_sure',
  'im_sure_devast',
  'sure_devast_life',
  'devast_life_event',
  'life_event_made',
  'event_made_thing',
  'made_thing_wors',
  'thing_wors_go',
  'wors_go_set',
  'go_set_date',
  'set_date_leav',
  'date_leav_thing',
  'leav_thing_calm',
  'thing_calm_bit',
  'calm_bit_also',
  'bit_also_talk',
  'also_talk_sister',
  'talk_sister_therapi'],
 ['know',
  'titl',
  'paint',
  'total',
  'ah',
  'pleas',
  'hear',
  'daughter',
  'sara',
  'smart',
  'girl',
  'gpa',
  'valedictorian',
  'class',
  'gotten',
  'word',
  'dream',
  'colleg',
  'receiv',
  'full',
  'ride',
  'scholarship',
  'colleg',
  'fund',
  'found',
  'scholarship',
  'agre',
  'would',
  'still',
  'give',
  'money',
  'pay',
  'thing',
  'would',
  'need',
  'colleg',
  'hous',
  'food',
  'etc',
  'well',
  'came',
  'home',
  'yesterday',
  'kind',
  'sad',
  'ask',
  'matter',
  'said',
  'go',
  'go',
  'colleg',
  'anymor',
  'appar',
  'boyfriend',
  'bryan',
  'told',
  'go',
  'anymor',
  'background',
  'bryan',
  'famili',
  'well',
  'parent',
  'never',
  'issu',
  'disciplin',
  'child',
  'mean',
  'rude',
  'disrespect',
  'although',
  'seem',
  'sweet',
  'daughter',
  'alon',
  'shell',
  'complain',
  'whenev',
  'theyr',
  'friend',
  'bryan',
  'constantli',
  'put',
  'compar',
  'instagram',
  'model',
  'bryan',
  'current',
  'enrol',
  'colleg',
  'set',
  'cours',
  'futur',
  'roll',
  'card',
  'sara',
  'say',
  'background',
  'info',
  'daughter',
  'go',
  'school',
  'marin',
  'biolog',
  'well',
  'daughter',
  'told',
  'convers',
  'tell',
  'bryan',
  'full',
  'ride',
  'scholarship',
  'excit',
  'final',
  'go',
  'school',
  'marin',
  'biolog',
  'never',
  'support',
  'dream',
  'marin',
  'biologist',
  'alway',
  'told',
  'go',
  'colleg',
  'real',
  'job',
  'sat',
  'told',
  'go',
  'colleg',
  'told',
  'wait',
  'town',
  'worri',
  'get',
  'job',
  'even',
  'parent',
  'support',
  'feel',
  'comfort',
  'go',
  'colleg',
  'state',
  'far',
  'away',
  'also',
  'said',
  'made',
  'feel',
  'unmanli',
  'set',
  'cours',
  'futur',
  'give',
  'good',
  'life',
  'none',
  'told',
  'go',
  'make',
  'decis',
  'right',
  'away',
  'knew',
  'go',
  'let',
  'daughter',
  'throw',
  'away',
  'futur',
  'like',
  'ask',
  'colleg',
  'fund',
  'could',
  'help',
  'support',
  'bryan',
  'dream',
  'took',
  'time',
  'think',
  'sat',
  'today',
  'told',
  'colleg',
  'fund',
  'spend',
  'bryan',
  'start',
  'freak',
  'ask',
  'money',
  'ask',
  'listen',
  'ask',
  'actual',
  'could',
  'see',
  'seriou',
  'futur',
  'bryan',
  'said',
  'noth',
  'first',
  'time',
  'start',
  'cri',
  'ask',
  'gentli',
  'time',
  'admit',
  'still',
  'cri',
  'plead',
  'pleas',
  'throw',
  'away',
  'futur',
  'someon',
  'cant',
  'see',
  'life',
  'nod',
  'went',
  'room',
  'time',
  'think',
  'ive',
  'learn',
  'broke',
  'bryan',
  'call',
  'nom',
  'stop',
  'cri',
  'beg',
  'speak',
  'feel',
  'guilti',
  'sort',
  'like',
  'ah',
  'know_titl',
  'titl_paint',
  'paint_total',
  'total_ah',
  'ah_pleas',
  'pleas_hear',
  'hear_daughter',
  'daughter_sara',
  'sara_smart',
  'smart_girl',
  'girl_gpa',
  'gpa_valedictorian',
  'valedictorian_class',
  'class_gotten',
  'gotten_word',
  'word_dream',
  'dream_colleg',
  'colleg_receiv',
  'receiv_full',
  'full_ride',
  'ride_scholarship',
  'scholarship_colleg',
  'colleg_fund',
  'fund_found',
  'found_scholarship',
  'scholarship_agre',
  'agre_would',
  'would_still',
  'still_give',
  'give_money',
  'money_pay',
  'pay_thing',
  'thing_would',
  'would_need',
  'need_colleg',
  'colleg_hous',
  'hous_food',
  'food_etc',
  'etc_well',
  'well_came',
  'came_home',
  'home_yesterday',
  'yesterday_kind',
  'kind_sad',
  'sad_ask',
  'ask_matter',
  'matter_said',
  'said_go',
  'go_go',
  'go_colleg',
  'colleg_anymor',
  'anymor_appar',
  'appar_boyfriend',
  'boyfriend_bryan',
  'bryan_told',
  'told_go',
  'go_anymor',
  'anymor_background',
  'background_bryan',
  'bryan_famili',
  'famili_well',
  'well_parent',
  'parent_never',
  'never_issu',
  'issu_disciplin',
  'disciplin_child',
  'child_mean',
  'mean_rude',
  'rude_disrespect',
  'disrespect_although',
  'although_seem',
  'seem_sweet',
  'sweet_daughter',
  'daughter_alon',
  'alon_shell',
  'shell_complain',
  'complain_whenev',
  'whenev_theyr',
  'theyr_friend',
  'friend_bryan',
  'bryan_constantli',
  'constantli_put',
  'put_compar',
  'compar_instagram',
  'instagram_model',
  'model_bryan',
  'bryan_current',
  'current_enrol',
  'enrol_colleg',
  'colleg_set',
  'set_cours',
  'cours_futur',
  'futur_roll',
  'roll_card',
  'card_sara',
  'sara_say',
  'say_background',
  'background_info',
  'info_daughter',
  'daughter_go',
  'go_school',
  'school_marin',
  'marin_biolog',
  'biolog_well',
  'well_daughter',
  'daughter_told',
  'told_convers',
  'convers_tell',
  'tell_bryan',
  'bryan_full',
  'full_ride',
  'ride_scholarship',
  'scholarship_excit',
  'excit_final',
  'final_go',
  'go_school',
  'school_marin',
  'marin_biolog',
  'biolog_never',
  'never_support',
  'support_dream',
  'dream_marin',
  'marin_biologist',
  'biologist_alway',
  'alway_told',
  'told_go',
  'go_colleg',
  'colleg_real',
  'real_job',
  'job_sat',
  'sat_told',
  'told_go',
  'go_colleg',
  'colleg_told',
  'told_wait',
  'wait_town',
  'town_worri',
  'worri_get',
  'get_job',
  'job_even',
  'even_parent',
  'parent_support',
  'support_feel',
  'feel_comfort',
  'comfort_go',
  'go_colleg',
  'colleg_state',
  'state_far',
  'far_away',
  'away_also',
  'also_said',
  'said_made',
  'made_feel',
  'feel_unmanli',
  'unmanli_set',
  'set_cours',
  'cours_futur',
  'futur_give',
  'give_good',
  'good_life',
  'life_none',
  'none_told',
  'told_go',
  'go_make',
  'make_decis',
  'decis_right',
  'right_away',
  'away_knew',
  'knew_go',
  'go_let',
  'let_daughter',
  'daughter_throw',
  'throw_away',
  'away_futur',
  'futur_like',
  'like_ask',
  'ask_colleg',
  'colleg_fund',
  'fund_could',
  'could_help',
  'help_support',
  'support_bryan',
  'bryan_dream',
  'dream_took',
  'took_time',
  'time_think',
  'think_sat',
  'sat_today',
  'today_told',
  'told_colleg',
  'colleg_fund',
  'fund_spend',
  'spend_bryan',
  'bryan_start',
  'start_freak',
  'freak_ask',
  'ask_money',
  'money_ask',
  'ask_listen',
  'listen_ask',
  'ask_actual',
  'actual_could',
  'could_see',
  'see_seriou',
  'seriou_futur',
  'futur_bryan',
  'bryan_said',
  'said_noth',
  'noth_first',
  'first_time',
  'time_start',
  'start_cri',
  'cri_ask',
  'ask_gentli',
  'gentli_time',
  'time_admit',
  'admit_still',
  'still_cri',
  'cri_plead',
  'plead_pleas',
  'pleas_throw',
  'throw_away',
  'away_futur',
  'futur_someon',
  'someon_cant',
  'cant_see',
  'see_life',
  'life_nod',
  'nod_went',
  'went_room',
  'room_time',
  'time_think',
  'think_ive',
  'ive_learn',
  'learn_broke',
  'broke_bryan',
  'bryan_call',
  'call_nom',
  'nom_stop',
  'stop_cri',
  'cri_beg',
  'beg_speak',
  'speak_feel',
  'feel_guilti',
  'guilti_sort',
  'sort_like',
  'like_ah',
  'know_titl_paint',
  'titl_paint_total',
  'paint_total_ah',
  'total_ah_pleas',
  'ah_pleas_hear',
  'pleas_hear_daughter',
  'hear_daughter_sara',
  'daughter_sara_smart',
  'sara_smart_girl',
  'smart_girl_gpa',
  'girl_gpa_valedictorian',
  'gpa_valedictorian_class',
  'valedictorian_class_gotten',
  'class_gotten_word',
  'gotten_word_dream',
  'word_dream_colleg',
  'dream_colleg_receiv',
  'colleg_receiv_full',
  'receiv_full_ride',
  'full_ride_scholarship',
  'ride_scholarship_colleg',
  'scholarship_colleg_fund',
  'colleg_fund_found',
  'fund_found_scholarship',
  'found_scholarship_agre',
  'scholarship_agre_would',
  'agre_would_still',
  'would_still_give',
  'still_give_money',
  'give_money_pay',
  'money_pay_thing',
  'pay_thing_would',
  'thing_would_need',
  'would_need_colleg',
  'need_colleg_hous',
  'colleg_hous_food',
  'hous_food_etc',
  'food_etc_well',
  'etc_well_came',
  'well_came_home',
  'came_home_yesterday',
  'home_yesterday_kind',
  'yesterday_kind_sad',
  'kind_sad_ask',
  'sad_ask_matter',
  'ask_matter_said',
  'matter_said_go',
  'said_go_go',
  'go_go_colleg',
  'go_colleg_anymor',
  'colleg_anymor_appar',
  'anymor_appar_boyfriend',
  'appar_boyfriend_bryan',
  'boyfriend_bryan_told',
  'bryan_told_go',
  'told_go_anymor',
  'go_anymor_background',
  'anymor_background_bryan',
  'background_bryan_famili',
  'bryan_famili_well',
  'famili_well_parent',
  'well_parent_never',
  'parent_never_issu',
  'never_issu_disciplin',
  'issu_disciplin_child',
  'disciplin_child_mean',
  'child_mean_rude',
  'mean_rude_disrespect',
  'rude_disrespect_although',
  'disrespect_although_seem',
  'although_seem_sweet',
  'seem_sweet_daughter',
  'sweet_daughter_alon',
  'daughter_alon_shell',
  'alon_shell_complain',
  'shell_complain_whenev',
  'complain_whenev_theyr',
  'whenev_theyr_friend',
  'theyr_friend_bryan',
  'friend_bryan_constantli',
  'bryan_constantli_put',
  'constantli_put_compar',
  'put_compar_instagram',
  'compar_instagram_model',
  'instagram_model_bryan',
  'model_bryan_current',
  'bryan_current_enrol',
  'current_enrol_colleg',
  'enrol_colleg_set',
  'colleg_set_cours',
  'set_cours_futur',
  'cours_futur_roll',
  'futur_roll_card',
  'roll_card_sara',
  'card_sara_say',
  'sara_say_background',
  'say_background_info',
  'background_info_daughter',
  'info_daughter_go',
  'daughter_go_school',
  'go_school_marin',
  'school_marin_biolog',
  'marin_biolog_well',
  'biolog_well_daughter',
  'well_daughter_told',
  'daughter_told_convers',
  'told_convers_tell',
  'convers_tell_bryan',
  'tell_bryan_full',
  'bryan_full_ride',
  'full_ride_scholarship',
  'ride_scholarship_excit',
  'scholarship_excit_final',
  'excit_final_go',
  'final_go_school',
  'go_school_marin',
  'school_marin_biolog',
  'marin_biolog_never',
  'biolog_never_support',
  'never_support_dream',
  'support_dream_marin',
  'dream_marin_biologist',
  'marin_biologist_alway',
  'biologist_alway_told',
  'alway_told_go',
  'told_go_colleg',
  'go_colleg_real',
  'colleg_real_job',
  'real_job_sat',
  'job_sat_told',
  'sat_told_go',
  'told_go_colleg',
  'go_colleg_told',
  'colleg_told_wait',
  'told_wait_town',
  'wait_town_worri',
  'town_worri_get',
  'worri_get_job',
  'get_job_even',
  'job_even_parent',
  'even_parent_support',
  'parent_support_feel',
  'support_feel_comfort',
  'feel_comfort_go',
  'comfort_go_colleg',
  'go_colleg_state',
  'colleg_state_far',
  'state_far_away',
  'far_away_also',
  'away_also_said',
  'also_said_made',
  'said_made_feel',
  'made_feel_unmanli',
  'feel_unmanli_set',
  'unmanli_set_cours',
  'set_cours_futur',
  'cours_futur_give',
  'futur_give_good',
  'give_good_life',
  'good_life_none',
  'life_none_told',
  'none_told_go',
  'told_go_make',
  'go_make_decis',
  'make_decis_right',
  'decis_right_away',
  'right_away_knew',
  'away_knew_go',
  'knew_go_let',
  'go_let_daughter',
  'let_daughter_throw',
  'daughter_throw_away',
  'throw_away_futur',
  'away_futur_like',
  'futur_like_ask',
  'like_ask_colleg',
  'ask_colleg_fund',
  'colleg_fund_could',
  'fund_could_help',
  'could_help_support',
  'help_support_bryan',
  'support_bryan_dream',
  'bryan_dream_took',
  'dream_took_time',
  'took_time_think',
  'time_think_sat',
  'think_sat_today',
  'sat_today_told',
  'today_told_colleg',
  'told_colleg_fund',
  'colleg_fund_spend',
  'fund_spend_bryan',
  'spend_bryan_start',
  'bryan_start_freak',
  'start_freak_ask',
  'freak_ask_money',
  'ask_money_ask',
  'money_ask_listen',
  'ask_listen_ask',
  'listen_ask_actual',
  'ask_actual_could',
  'actual_could_see',
  'could_see_seriou',
  'see_seriou_futur',
  'seriou_futur_bryan',
  'futur_bryan_said',
  'bryan_said_noth',
  'said_noth_first',
  'noth_first_time',
  'first_time_start',
  'time_start_cri',
  'start_cri_ask',
  'cri_ask_gentli',
  'ask_gentli_time',
  'gentli_time_admit',
  'time_admit_still',
  'admit_still_cri',
  'still_cri_plead',
  'cri_plead_pleas',
  'plead_pleas_throw',
  'pleas_throw_away',
  'throw_away_futur',
  'away_futur_someon',
  'futur_someon_cant',
  'someon_cant_see',
  'cant_see_life',
  'see_life_nod',
  'life_nod_went',
  'nod_went_room',
  'went_room_time',
  'room_time_think',
  'time_think_ive',
  'think_ive_learn',
  'ive_learn_broke',
  'learn_broke_bryan',
  'broke_bryan_call',
  'bryan_call_nom',
  'call_nom_stop',
  'nom_stop_cri',
  'stop_cri_beg',
  'cri_beg_speak',
  'beg_speak_feel',
  'speak_feel_guilti',
  'feel_guilti_sort',
  'guilti_sort_like',
  'sort_like_ah'],
 ['husband',
  'primari',
  'resid',
  'itali',
  'mine',
  'uk',
  'one',
  'trip',
  'itali',
  'housekeep',
  'told',
  'wife',
  'husband',
  'friend',
  'kept',
  'tri',
  'visit',
  'said',
  'came',
  'everi',
  'singl',
  'day',
  'even',
  'though',
  'day',
  'even',
  'home',
  'work',
  'home',
  'even',
  'say',
  'hello',
  'went',
  'togeth',
  'group',
  'brought',
  'two',
  'us',
  'ask',
  'stop',
  'told',
  'husband',
  'like',
  'disturb',
  'work',
  'realli',
  'arrang',
  'someth',
  'instead',
  'turn',
  'wave',
  'act',
  'like',
  'big',
  'deal',
  'ask',
  'sever',
  'time',
  'stop',
  'continu',
  'minut',
  'back',
  'uk',
  'everi',
  'singl',
  'time',
  'end',
  'fed',
  'contact',
  'husband',
  'ask',
  'tell',
  'wife',
  'stop',
  'awar',
  'go',
  'said',
  'would',
  'speak',
  'wife',
  'angri',
  'claim',
  'im',
  'impli',
  'thing',
  'type',
  'woman',
  'also',
  'said',
  'treat',
  'like',
  'husband',
  'properti',
  'pathet',
  'tell',
  'instead',
  'admit',
  'made',
  'insecur',
  'husband',
  'mostli',
  'indiffer',
  'also',
  'told',
  'caus',
  'chao',
  'friendship',
  'group',
  'everybodi',
  'know',
  'go',
  'caus',
  'lot',
  'gossip',
  'aita',
  'husband_primari',
  'primari_resid',
  'resid_itali',
  'itali_mine',
  'mine_uk',
  'uk_one',
  'one_trip',
  'trip_itali',
  'itali_housekeep',
  'housekeep_told',
  'told_wife',
  'wife_husband',
  'husband_friend',
  'friend_kept',
  'kept_tri',
  'tri_visit',
  'visit_said',
  'said_came',
  'came_everi',
  'everi_singl',
  'singl_day',
  'day_even',
  'even_though',
  'though_day',
  'day_even',
  'even_home',
  'home_work',
  'work_home',
  'home_even',
  'even_say',
  'say_hello',
  'hello_went',
  'went_togeth',
  'togeth_group',
  'group_brought',
  'brought_two',
  'two_us',
  'us_ask',
  'ask_stop',
  'stop_told',
  'told_husband',
  'husband_like',
  'like_disturb',
  'disturb_work',
  'work_realli',
  'realli_arrang',
  'arrang_someth',
  'someth_instead',
  'instead_turn',
  'turn_wave',
  'wave_act',
  'act_like',
  'like_big',
  'big_deal',
  'deal_ask',
  'ask_sever',
  'sever_time',
  'time_stop',
  'stop_continu',
  'continu_minut',
  'minut_back',
  'back_uk',
  'uk_everi',
  'everi_singl',
  'singl_time',
  'time_end',
  'end_fed',
  'fed_contact',
  'contact_husband',
  'husband_ask',
  'ask_tell',
  'tell_wife',
  'wife_stop',
  'stop_awar',
  'awar_go',
  'go_said',
  'said_would',
  'would_speak',
  'speak_wife',
  'wife_angri',
  'angri_claim',
  'claim_im',
  'im_impli',
  'impli_thing',
  'thing_type',
  'type_woman',
  'woman_also',
  'also_said',
  'said_treat',
  'treat_like',
  'like_husband',
  'husband_properti',
  'properti_pathet',
  'pathet_tell',
  'tell_instead',
  'instead_admit',
  'admit_made',
  'made_insecur',
  'insecur_husband',
  'husband_mostli',
  'mostli_indiffer',
  'indiffer_also',
  'also_told',
  'told_caus',
  'caus_chao',
  'chao_friendship',
  'friendship_group',
  'group_everybodi',
  'everybodi_know',
  'know_go',
  'go_caus',
  'caus_lot',
  'lot_gossip',
  'gossip_aita',
  'husband_primari_resid',
  'primari_resid_itali',
  'resid_itali_mine',
  'itali_mine_uk',
  'mine_uk_one',
  'uk_one_trip',
  'one_trip_itali',
  'trip_itali_housekeep',
  'itali_housekeep_told',
  'housekeep_told_wife',
  'told_wife_husband',
  'wife_husband_friend',
  'husband_friend_kept',
  'friend_kept_tri',
  'kept_tri_visit',
  'tri_visit_said',
  'visit_said_came',
  'said_came_everi',
  'came_everi_singl',
  'everi_singl_day',
  'singl_day_even',
  'day_even_though',
  'even_though_day',
  'though_day_even',
  'day_even_home',
  'even_home_work',
  'home_work_home',
  'work_home_even',
  'home_even_say',
  'even_say_hello',
  'say_hello_went',
  'hello_went_togeth',
  'went_togeth_group',
  'togeth_group_brought',
  'group_brought_two',
  'brought_two_us',
  'two_us_ask',
  'us_ask_stop',
  'ask_stop_told',
  'stop_told_husband',
  'told_husband_like',
  'husband_like_disturb',
  'like_disturb_work',
  'disturb_work_realli',
  'work_realli_arrang',
  'realli_arrang_someth',
  'arrang_someth_instead',
  'someth_instead_turn',
  'instead_turn_wave',
  'turn_wave_act',
  'wave_act_like',
  'act_like_big',
  'like_big_deal',
  'big_deal_ask',
  'deal_ask_sever',
  'ask_sever_time',
  'sever_time_stop',
  'time_stop_continu',
  'stop_continu_minut',
  'continu_minut_back',
  'minut_back_uk',
  'back_uk_everi',
  'uk_everi_singl',
  'everi_singl_time',
  'singl_time_end',
  'time_end_fed',
  'end_fed_contact',
  'fed_contact_husband',
  'contact_husband_ask',
  'husband_ask_tell',
  'ask_tell_wife',
  'tell_wife_stop',
  'wife_stop_awar',
  'stop_awar_go',
  'awar_go_said',
  'go_said_would',
  'said_would_speak',
  'would_speak_wife',
  'speak_wife_angri',
  'wife_angri_claim',
  'angri_claim_im',
  'claim_im_impli',
  'im_impli_thing',
  'impli_thing_type',
  'thing_type_woman',
  'type_woman_also',
  'woman_also_said',
  'also_said_treat',
  'said_treat_like',
  'treat_like_husband',
  'like_husband_properti',
  'husband_properti_pathet',
  'properti_pathet_tell',
  'pathet_tell_instead',
  'tell_instead_admit',
  'instead_admit_made',
  'admit_made_insecur',
  'made_insecur_husband',
  'insecur_husband_mostli',
  'husband_mostli_indiffer',
  'mostli_indiffer_also',
  'indiffer_also_told',
  'also_told_caus',
  'told_caus_chao',
  'caus_chao_friendship',
  'chao_friendship_group',
  'friendship_group_everybodi',
  'group_everybodi_know',
  'everybodi_know_go',
  'know_go_caus',
  'go_caus_lot',
  'caus_lot_gossip',
  'lot_gossip_aita'],
 ['wife',
  'babyboy',
  'week',
  'ago',
  'everythibg',
  'go',
  'fine',
  'health',
  'problem',
  'complic',
  'whatsoev',
  'howev',
  'wife',
  'often',
  'exhaust',
  'let',
  'mom',
  'come',
  'help',
  'clean',
  'stuff',
  'bare',
  'time',
  'work',
  'also',
  'time',
  'spend',
  'time',
  'babi',
  'bond',
  'littl',
  'bit',
  'thing',
  'wife',
  'act',
  'strang',
  'whenev',
  'see',
  'mom',
  'son',
  'shed',
  'make',
  'face',
  'talk',
  'descend',
  'tone',
  'even',
  'rais',
  'voic',
  'caus',
  'mom',
  'feel',
  'hurt',
  'ask',
  'wife',
  'said',
  'mom',
  'ask',
  'elapor',
  'complain',
  'mom',
  'hold',
  'babi',
  'long',
  'take',
  'forev',
  'give',
  'back',
  'mom',
  'argu',
  'wife',
  'could',
  'ask',
  'nice',
  'instead',
  'outright',
  'yell',
  'wife',
  'defend',
  'say',
  'start',
  'rais',
  'voic',
  'alreadi',
  'ask',
  'coupl',
  'time',
  'mom',
  'listen',
  'start',
  'argu',
  'mom',
  'start',
  'cri',
  'felt',
  'enrag',
  'pull',
  'wife',
  'asid',
  'told',
  'stop',
  'act',
  'keep',
  'get',
  'anymor',
  'help',
  'mom',
  'argu',
  'tri',
  'feed',
  'son',
  'aw',
  'think',
  'act',
  'said',
  'understood',
  'frustrat',
  'ye',
  'mom',
  'thing',
  'requir',
  'patienc',
  'us',
  'littl',
  'kind',
  'go',
  'long',
  'way',
  'keep',
  'peac',
  'difficult',
  'time',
  'call',
  'selfish',
  'said',
  'easi',
  'say',
  'im',
  'one',
  'deal',
  'argument',
  'escal',
  'despit',
  'tri',
  'cut',
  'short',
  'went',
  'outsid',
  'calm',
  'wife',
  'start',
  'cold',
  'shoulder',
  'told',
  'okay',
  'told',
  'go',
  'sc',
  '*',
  'ew',
  'deal',
  'take',
  'son',
  'back',
  'mom',
  'time',
  'feed',
  'sinc',
  'condon',
  'behabior',
  'realli',
  'condon',
  'anyth',
  'realli',
  'think',
  'stress',
  'ye',
  'way',
  'behav',
  'around',
  'mom',
  'opinion',
  'okay',
  'etm',
  'good',
  'im',
  'see',
  'much',
  'anger',
  'im',
  'sorri',
  'respond',
  'want',
  'peopl',
  'calm',
  'understand',
  'way',
  'agre',
  'mom',
  'behavior',
  'wife',
  'react',
  'isnot',
  'okay',
  'realli',
  'thank',
  'much',
  'though',
  'ok',
  'nice',
  'day',
  'wife_babyboy',
  'babyboy_week',
  'week_ago',
  'ago_everythibg',
  'everythibg_go',
  'go_fine',
  'fine_health',
  'health_problem',
  'problem_complic',
  'complic_whatsoev',
  'whatsoev_howev',
  'howev_wife',
  'wife_often',
  'often_exhaust',
  'exhaust_let',
  'let_mom',
  'mom_come',
  'come_help',
  'help_clean',
  'clean_stuff',
  'stuff_bare',
  'bare_time',
  'time_work',
  'work_also',
  'also_time',
  'time_spend',
  'spend_time',
  'time_babi',
  'babi_bond',
  'bond_littl',
  'littl_bit',
  'bit_thing',
  'thing_wife',
  'wife_act',
  'act_strang',
  'strang_whenev',
  'whenev_see',
  'see_mom',
  'mom_son',
  'son_shed',
  'shed_make',
  'make_face',
  'face_talk',
  'talk_descend',
  'descend_tone',
  'tone_even',
  'even_rais',
  'rais_voic',
  'voic_caus',
  'caus_mom',
  'mom_feel',
  'feel_hurt',
  'hurt_ask',
  'ask_wife',
  'wife_said',
  'said_mom',
  'mom_ask',
  'ask_elapor',
  'elapor_complain',
  'complain_mom',
  'mom_hold',
  'hold_babi',
  'babi_long',
  'long_take',
  'take_forev',
  'forev_give',
  'give_back',
  'back_mom',
  'mom_argu',
  'argu_wife',
  'wife_could',
  'could_ask',
  'ask_nice',
  'nice_instead',
  'instead_outright',
  'outright_yell',
  'yell_wife',
  'wife_defend',
  'defend_say',
  'say_start',
  'start_rais',
  'rais_voic',
  'voic_alreadi',
  'alreadi_ask',
  'ask_coupl',
  'coupl_time',
  'time_mom',
  'mom_listen',
  'listen_start',
  'start_argu',
  'argu_mom',
  'mom_start',
  'start_cri',
  'cri_felt',
  'felt_enrag',
  'enrag_pull',
  'pull_wife',
  'wife_asid',
  'asid_told',
  'told_stop',
  'stop_act',
  'act_keep',
  'keep_get',
  'get_anymor',
  'anymor_help',
  'help_mom',
  'mom_argu',
  'argu_tri',
  'tri_feed',
  'feed_son',
  'son_aw',
  'aw_think',
  'think_act',
  'act_said',
  'said_understood',
  'understood_frustrat',
  'frustrat_ye',
  'ye_mom',
  'mom_thing',
  'thing_requir',
  'requir_patienc',
  'patienc_us',
  'us_littl',
  'littl_kind',
  'kind_go',
  'go_long',
  'long_way',
  'way_keep',
  'keep_peac',
  'peac_difficult',
  'difficult_time',
  'time_call',
  'call_selfish',
  'selfish_said',
  'said_easi',
  'easi_say',
  'say_im',
  'im_one',
  'one_deal',
  'deal_argument',
  'argument_escal',
  'escal_despit',
  'despit_tri',
  'tri_cut',
  'cut_short',
  'short_went',
  'went_outsid',
  'outsid_calm',
  'calm_wife',
  'wife_start',
  'start_cold',
  'cold_shoulder',
  'shoulder_told',
  'told_okay',
  'okay_told',
  'told_go',
  'go_sc',
  'sc_*',
  '*_ew',
  'ew_deal',
  'deal_take',
  'take_son',
  'son_back',
  'back_mom',
  'mom_time',
  'time_feed',
  'feed_sinc',
  'sinc_condon',
  'condon_behabior',
  'behabior_realli',
  'realli_condon',
  'condon_anyth',
  'anyth_realli',
  'realli_think',
  'think_stress',
  'stress_ye',
  'ye_way',
  'way_behav',
  'behav_around',
  'around_mom',
  'mom_opinion',
  'opinion_okay',
  'okay_etm',
  'etm_good',
  'good_im',
  'im_see',
  'see_much',
  'much_anger',
  'anger_im',
  'im_sorri',
  'sorri_respond',
  'respond_want',
  'want_peopl',
  'peopl_calm',
  'calm_understand',
  'understand_way',
  'way_agre',
  'agre_mom',
  'mom_behavior',
  'behavior_wife',
  'wife_react',
  'react_isnot',
  'isnot_okay',
  'okay_realli',
  'realli_thank',
  'thank_much',
  'much_though',
  'though_ok',
  'ok_nice',
  'nice_day',
  'wife_babyboy_week',
  'babyboy_week_ago',
  'week_ago_everythibg',
  'ago_everythibg_go',
  'everythibg_go_fine',
  'go_fine_health',
  'fine_health_problem',
  'health_problem_complic',
  'problem_complic_whatsoev',
  'complic_whatsoev_howev',
  'whatsoev_howev_wife',
  'howev_wife_often',
  'wife_often_exhaust',
  'often_exhaust_let',
  'exhaust_let_mom',
  'let_mom_come',
  'mom_come_help',
  'come_help_clean',
  'help_clean_stuff',
  'clean_stuff_bare',
  'stuff_bare_time',
  'bare_time_work',
  'time_work_also',
  'work_also_time',
  'also_time_spend',
  'time_spend_time',
  'spend_time_babi',
  'time_babi_bond',
  'babi_bond_littl',
  'bond_littl_bit',
  'littl_bit_thing',
  'bit_thing_wife',
  'thing_wife_act',
  'wife_act_strang',
  'act_strang_whenev',
  'strang_whenev_see',
  'whenev_see_mom',
  'see_mom_son',
  'mom_son_shed',
  'son_shed_make',
  'shed_make_face',
  'make_face_talk',
  'face_talk_descend',
  'talk_descend_tone',
  'descend_tone_even',
  'tone_even_rais',
  'even_rais_voic',
  'rais_voic_caus',
  'voic_caus_mom',
  'caus_mom_feel',
  'mom_feel_hurt',
  'feel_hurt_ask',
  'hurt_ask_wife',
  'ask_wife_said',
  'wife_said_mom',
  'said_mom_ask',
  'mom_ask_elapor',
  'ask_elapor_complain',
  'elapor_complain_mom',
  'complain_mom_hold',
  'mom_hold_babi',
  'hold_babi_long',
  'babi_long_take',
  'long_take_forev',
  'take_forev_give',
  'forev_give_back',
  'give_back_mom',
  'back_mom_argu',
  'mom_argu_wife',
  'argu_wife_could',
  'wife_could_ask',
  'could_ask_nice',
  'ask_nice_instead',
  'nice_instead_outright',
  'instead_outright_yell',
  'outright_yell_wife',
  'yell_wife_defend',
  'wife_defend_say',
  'defend_say_start',
  'say_start_rais',
  'start_rais_voic',
  'rais_voic_alreadi',
  'voic_alreadi_ask',
  'alreadi_ask_coupl',
  'ask_coupl_time',
  'coupl_time_mom',
  'time_mom_listen',
  'mom_listen_start',
  'listen_start_argu',
  'start_argu_mom',
  'argu_mom_start',
  'mom_start_cri',
  'start_cri_felt',
  'cri_felt_enrag',
  'felt_enrag_pull',
  'enrag_pull_wife',
  'pull_wife_asid',
  'wife_asid_told',
  'asid_told_stop',
  'told_stop_act',
  'stop_act_keep',
  'act_keep_get',
  'keep_get_anymor',
  'get_anymor_help',
  'anymor_help_mom',
  'help_mom_argu',
  'mom_argu_tri',
  'argu_tri_feed',
  'tri_feed_son',
  'feed_son_aw',
  'son_aw_think',
  'aw_think_act',
  'think_act_said',
  'act_said_understood',
  'said_understood_frustrat',
  'understood_frustrat_ye',
  'frustrat_ye_mom',
  'ye_mom_thing',
  'mom_thing_requir',
  'thing_requir_patienc',
  'requir_patienc_us',
  'patienc_us_littl',
  'us_littl_kind',
  'littl_kind_go',
  'kind_go_long',
  'go_long_way',
  'long_way_keep',
  'way_keep_peac',
  'keep_peac_difficult',
  'peac_difficult_time',
  'difficult_time_call',
  'time_call_selfish',
  'call_selfish_said',
  'selfish_said_easi',
  'said_easi_say',
  'easi_say_im',
  'say_im_one',
  'im_one_deal',
  'one_deal_argument',
  'deal_argument_escal',
  'argument_escal_despit',
  'escal_despit_tri',
  'despit_tri_cut',
  'tri_cut_short',
  'cut_short_went',
  'short_went_outsid',
  'went_outsid_calm',
  'outsid_calm_wife',
  'calm_wife_start',
  'wife_start_cold',
  'start_cold_shoulder',
  'cold_shoulder_told',
  'shoulder_told_okay',
  'told_okay_told',
  'okay_told_go',
  'told_go_sc',
  'go_sc_*',
  'sc_*_ew',
  '*_ew_deal',
  'ew_deal_take',
  'deal_take_son',
  'take_son_back',
  'son_back_mom',
  'back_mom_time',
  'mom_time_feed',
  'time_feed_sinc',
  'feed_sinc_condon',
  'sinc_condon_behabior',
  'condon_behabior_realli',
  'behabior_realli_condon',
  'realli_condon_anyth',
  'condon_anyth_realli',
  'anyth_realli_think',
  'realli_think_stress',
  'think_stress_ye',
  'stress_ye_way',
  'ye_way_behav',
  'way_behav_around',
  'behav_around_mom',
  'around_mom_opinion',
  'mom_opinion_okay',
  'opinion_okay_etm',
  'okay_etm_good',
  'etm_good_im',
  'good_im_see',
  'im_see_much',
  'see_much_anger',
  'much_anger_im',
  'anger_im_sorri',
  'im_sorri_respond',
  'sorri_respond_want',
  'respond_want_peopl',
  'want_peopl_calm',
  'peopl_calm_understand',
  'calm_understand_way',
  'understand_way_agre',
  'way_agre_mom',
  'agre_mom_behavior',
  'mom_behavior_wife',
  'behavior_wife_react',
  'wife_react_isnot',
  'react_isnot_okay',
  'isnot_okay_realli',
  'okay_realli_thank',
  'realli_thank_much',
  'thank_much_though',
  'much_though_ok',
  'though_ok_nice',
  'ok_nice_day'],
 ['get',
  'might',
  'brainer',
  'hear',
  'dad',
  'pass',
  'coupl',
  'day',
  'ago',
  'longtim',
  'come',
  'made',
  'wors',
  'covid',
  'im',
  'handl',
  'funer',
  'arrang',
  'name',
  'executor',
  'estat',
  'includ',
  'aunt',
  'uncl',
  'plan',
  'process',
  'respect',
  'discuss',
  'aunt',
  'said',
  'cousin',
  'diagnos',
  'asperg',
  'syndrom',
  'want',
  'perform',
  'interpret',
  'danc',
  'church',
  'infront',
  'casket',
  'bid',
  'father',
  'farewel',
  'said',
  'absolut',
  'one',
  'happen',
  'church',
  'priest',
  'would',
  'stroke',
  'next',
  'cousin',
  'good',
  'dancer',
  'hobbi',
  'im',
  'happi',
  'found',
  'someth',
  'love',
  'feel',
  'dad',
  'funer',
  'right',
  'venu',
  'showcas',
  'move',
  'candl',
  'wind',
  'aunt',
  'fit',
  'cousin',
  'also',
  'extrem',
  'upset',
  'accus',
  'let',
  'say',
  'goodby',
  'way',
  'told',
  'welcom',
  'danc',
  'grave',
  'whenev',
  'want',
  'funer',
  'time',
  'anoth',
  'cousin',
  'told',
  'plan',
  'record',
  'youtub',
  'video',
  'hard',
  'think',
  'respect',
  'know',
  'dad',
  'wouldv',
  'hate',
  'thing',
  'turn',
  'spectacl',
  'aita',
  'get_might',
  'might_brainer',
  'brainer_hear',
  'hear_dad',
  'dad_pass',
  'pass_coupl',
  'coupl_day',
  'day_ago',
  'ago_longtim',
  'longtim_come',
  'come_made',
  'made_wors',
  'wors_covid',
  'covid_im',
  'im_handl',
  'handl_funer',
  'funer_arrang',
  'arrang_name',
  'name_executor',
  'executor_estat',
  'estat_includ',
  'includ_aunt',
  'aunt_uncl',
  'uncl_plan',
  'plan_process',
  'process_respect',
  'respect_discuss',
  'discuss_aunt',
  'aunt_said',
  'said_cousin',
  'cousin_diagnos',
  'diagnos_asperg',
  'asperg_syndrom',
  'syndrom_want',
  'want_perform',
  'perform_interpret',
  'interpret_danc',
  'danc_church',
  'church_infront',
  'infront_casket',
  'casket_bid',
  'bid_father',
  'father_farewel',
  'farewel_said',
  'said_absolut',
  'absolut_one',
  'one_happen',
  'happen_church',
  'church_priest',
  'priest_would',
  'would_stroke',
  'stroke_next',
  'next_cousin',
  'cousin_good',
  'good_dancer',
  'dancer_hobbi',
  'hobbi_im',
  'im_happi',
  'happi_found',
  'found_someth',
  'someth_love',
  'love_feel',
  'feel_dad',
  'dad_funer',
  'funer_right',
  'right_venu',
  'venu_showcas',
  'showcas_move',
  'move_candl',
  'candl_wind',
  'wind_aunt',
  'aunt_fit',
  'fit_cousin',
  'cousin_also',
  'also_extrem',
  'extrem_upset',
  'upset_accus',
  'accus_let',
  'let_say',
  'say_goodby',
  'goodby_way',
  'way_told',
  'told_welcom',
  'welcom_danc',
  'danc_grave',
  'grave_whenev',
  'whenev_want',
  'want_funer',
  'funer_time',
  'time_anoth',
  'anoth_cousin',
  'cousin_told',
  'told_plan',
  'plan_record',
  'record_youtub',
  'youtub_video',
  'video_hard',
  'hard_think',
  'think_respect',
  'respect_know',
  'know_dad',
  'dad_wouldv',
  'wouldv_hate',
  'hate_thing',
  'thing_turn',
  'turn_spectacl',
  'spectacl_aita',
  'get_might_brainer',
  'might_brainer_hear',
  'brainer_hear_dad',
  'hear_dad_pass',
  'dad_pass_coupl',
  'pass_coupl_day',
  'coupl_day_ago',
  'day_ago_longtim',
  'ago_longtim_come',
  'longtim_come_made',
  'come_made_wors',
  'made_wors_covid',
  'wors_covid_im',
  'covid_im_handl',
  'im_handl_funer',
  'handl_funer_arrang',
  'funer_arrang_name',
  'arrang_name_executor',
  'name_executor_estat',
  'executor_estat_includ',
  'estat_includ_aunt',
  'includ_aunt_uncl',
  'aunt_uncl_plan',
  'uncl_plan_process',
  'plan_process_respect',
  'process_respect_discuss',
  'respect_discuss_aunt',
  'discuss_aunt_said',
  'aunt_said_cousin',
  'said_cousin_diagnos',
  'cousin_diagnos_asperg',
  'diagnos_asperg_syndrom',
  'asperg_syndrom_want',
  'syndrom_want_perform',
  'want_perform_interpret',
  'perform_interpret_danc',
  'interpret_danc_church',
  'danc_church_infront',
  'church_infront_casket',
  'infront_casket_bid',
  'casket_bid_father',
  'bid_father_farewel',
  'father_farewel_said',
  'farewel_said_absolut',
  'said_absolut_one',
  'absolut_one_happen',
  'one_happen_church',
  'happen_church_priest',
  'church_priest_would',
  'priest_would_stroke',
  'would_stroke_next',
  'stroke_next_cousin',
  'next_cousin_good',
  'cousin_good_dancer',
  'good_dancer_hobbi',
  'dancer_hobbi_im',
  'hobbi_im_happi',
  'im_happi_found',
  'happi_found_someth',
  'found_someth_love',
  'someth_love_feel',
  'love_feel_dad',
  'feel_dad_funer',
  'dad_funer_right',
  'funer_right_venu',
  'right_venu_showcas',
  'venu_showcas_move',
  'showcas_move_candl',
  'move_candl_wind',
  'candl_wind_aunt',
  'wind_aunt_fit',
  'aunt_fit_cousin',
  'fit_cousin_also',
  'cousin_also_extrem',
  'also_extrem_upset',
  'extrem_upset_accus',
  'upset_accus_let',
  'accus_let_say',
  'let_say_goodby',
  'say_goodby_way',
  'goodby_way_told',
  'way_told_welcom',
  'told_welcom_danc',
  'welcom_danc_grave',
  'danc_grave_whenev',
  'grave_whenev_want',
  'whenev_want_funer',
  'want_funer_time',
  'funer_time_anoth',
  'time_anoth_cousin',
  'anoth_cousin_told',
  'cousin_told_plan',
  'told_plan_record',
  'plan_record_youtub',
  'record_youtub_video',
  'youtub_video_hard',
  'video_hard_think',
  'hard_think_respect',
  'think_respect_know',
  'respect_know_dad',
  'know_dad_wouldv',
  'dad_wouldv_hate',
  'wouldv_hate_thing',
  'hate_thing_turn',
  'thing_turn_spectacl',
  'turn_spectacl_aita'],
 ['im',
  'yo',
  'femal',
  'recent',
  'start',
  'new',
  'job',
  'well',
  'month',
  'ago',
  'guy',
  'offic',
  'plu',
  'boss',
  'boss',
  'one',
  'guy',
  'think',
  'natur',
  'charm',
  'ladi',
  'would',
  'instantli',
  'fall',
  'look',
  'like',
  'thumb',
  'lot',
  'dumb',
  'confid',
  'make',
  'inappropri',
  'comment',
  'even',
  'talk',
  'work',
  'issu',
  'keep',
  'arm',
  'length',
  'im',
  'profession',
  'workmat',
  'day',
  'ago',
  'chase',
  'workmat',
  'procrastin',
  'send',
  'document',
  'went',
  'make',
  'send',
  'said',
  'ok',
  'took',
  'phone',
  'open',
  'messag',
  'app',
  'sent',
  'file',
  'look',
  'notic',
  'save',
  'number',
  'jessica',
  'rabbit',
  'ask',
  'confus',
  'look',
  'shock',
  'eye',
  'wide',
  'open',
  'said',
  'im',
  'sorri',
  'let',
  'go',
  'interrog',
  'confess',
  'boss',
  'alway',
  'call',
  'jessica',
  'rabbit',
  'clear',
  'im',
  'natur',
  'red',
  'head',
  'got',
  'mom',
  'dye',
  'hair',
  'red',
  'get',
  'darker',
  'look',
  'like',
  'jessica',
  'rabbit',
  'im',
  'flat',
  'tabl',
  'ye',
  'trust',
  'issu',
  'work',
  'hard',
  'like',
  'bodi',
  'despis',
  'thought',
  'compar',
  'hyper',
  'sexual',
  'cartoon',
  'charact',
  'talk',
  'boss',
  'came',
  'offic',
  'ask',
  'nicknam',
  'said',
  'sexi',
  'redhead',
  'told',
  'stop',
  'feel',
  'safe',
  'said',
  'angri',
  'compliment',
  'said',
  'storm',
  'went',
  'hr',
  'formal',
  'complaint',
  'hr',
  'ladi',
  'said',
  'shell',
  'process',
  'complaint',
  'worthless',
  'boss',
  'like',
  'told',
  'like',
  'boss',
  'attitud',
  'need',
  'warrant',
  'stop',
  'sinc',
  'boss',
  'stop',
  'talk',
  'workmat',
  'say',
  'im',
  'way',
  'dramat',
  'know',
  'take',
  'compliment',
  'also',
  'complain',
  'feel',
  'safe',
  'around',
  'know',
  'twist',
  'word',
  'somehow',
  'ta',
  'edit',
  'expect',
  'mani',
  'comment',
  'thank',
  'hard',
  'read',
  'ive',
  'take',
  'note',
  'ill',
  'tri',
  'best',
  'even',
  'tho',
  'afford',
  'jobless',
  'month',
  'im',
  'scare',
  'quit',
  'goe',
  'nowher',
  'clear',
  'snoop',
  'phone',
  'stand',
  'cowork',
  'sit',
  'chair',
  'clear',
  'view',
  'phone',
  'saw',
  'save',
  'number',
  'jessica',
  'rabbit',
  'oh',
  'guy',
  'call',
  'horribl',
  'name',
  'dm',
  'wish',
  'horribl',
  'thing',
  'happen',
  'hope',
  'get',
  'help',
  'otherwis',
  'never',
  'work',
  'relationship',
  'women',
  'sinc',
  'seem',
  'hate',
  'women',
  'much',
  '&',
  'xb',
  'updat',
  'thank',
  'guy',
  'support',
  'ive',
  'mail',
  'hr',
  'ask',
  'thing',
  'write',
  'lack',
  'action',
  'ive',
  'got',
  'absolut',
  'noth',
  'later',
  'found',
  'lawyer',
  'sent',
  'strongli',
  'word',
  'legal',
  'mail',
  'hr',
  'respons',
  'yet',
  'yesterday',
  'friday',
  'let',
  'give',
  'time',
  'cowork',
  'save',
  'jessica',
  'rabbit',
  'spoke',
  'apolog',
  'said',
  'would',
  'help',
  'hr',
  'ask',
  'testimoni',
  'lawsuit',
  'said',
  'thumb',
  'boss',
  'alway',
  'refer',
  'jessica',
  'rabbit',
  'point',
  'cowork',
  'though',
  'jessica',
  'real',
  'name',
  'also',
  'told',
  'chang',
  'nicknam',
  'known',
  'amber',
  'heard',
  'im',
  'furiou',
  'im',
  'keep',
  'straight',
  'face',
  'punish',
  'get',
  'settl',
  'somehow',
  'updat',
  'hello',
  'updat',
  'profil',
  'sorri',
  'miss',
  'day',
  'im_yo',
  'yo_femal',
  'femal_recent',
  'recent_start',
  'start_new',
  'new_job',
  'job_well',
  'well_month',
  'month_ago',
  'ago_guy',
  'guy_offic',
  'offic_plu',
  'plu_boss',
  'boss_boss',
  'boss_one',
  'one_guy',
  'guy_think',
  'think_natur',
  'natur_charm',
  'charm_ladi',
  'ladi_would',
  'would_instantli',
  'instantli_fall',
  'fall_look',
  'look_like',
  'like_thumb',
  'thumb_lot',
  'lot_dumb',
  'dumb_confid',
  'confid_make',
  'make_inappropri',
  'inappropri_comment',
  'comment_even',
  'even_talk',
  'talk_work',
  'work_issu',
  'issu_keep',
  'keep_arm',
  'arm_length',
  'length_im',
  'im_profession',
  'profession_workmat',
  'workmat_day',
  'day_ago',
  'ago_chase',
  'chase_workmat',
  'workmat_procrastin',
  'procrastin_send',
  'send_document',
  'document_went',
  'went_make',
  'make_send',
  'send_said',
  'said_ok',
  'ok_took',
  'took_phone',
  'phone_open',
  'open_messag',
  'messag_app',
  'app_sent',
  'sent_file',
  'file_look',
  'look_notic',
  'notic_save',
  'save_number',
  'number_jessica',
  'jessica_rabbit',
  'rabbit_ask',
  'ask_confus',
  'confus_look',
  'look_shock',
  'shock_eye',
  'eye_wide',
  'wide_open',
  'open_said',
  'said_im',
  'im_sorri',
  'sorri_let',
  'let_go',
  'go_interrog',
  'interrog_confess',
  'confess_boss',
  'boss_alway',
  'alway_call',
  'call_jessica',
  'jessica_rabbit',
  'rabbit_clear',
  'clear_im',
  'im_natur',
  'natur_red',
  'red_head',
  'head_got',
  'got_mom',
  'mom_dye',
  'dye_hair',
  'hair_red',
  'red_get',
  'get_darker',
  'darker_look',
  'look_like',
  'like_jessica',
  'jessica_rabbit',
  'rabbit_im',
  'im_flat',
  'flat_tabl',
  'tabl_ye',
  'ye_trust',
  'trust_issu',
  'issu_work',
  'work_hard',
  'hard_like',
  'like_bodi',
  'bodi_despis',
  'despis_thought',
  'thought_compar',
  'compar_hyper',
  'hyper_sexual',
  'sexual_cartoon',
  'cartoon_charact',
  'charact_talk',
  'talk_boss',
  'boss_came',
  'came_offic',
  'offic_ask',
  'ask_nicknam',
  'nicknam_said',
  'said_sexi',
  'sexi_redhead',
  'redhead_told',
  'told_stop',
  'stop_feel',
  'feel_safe',
  'safe_said',
  'said_angri',
  'angri_compliment',
  'compliment_said',
  'said_storm',
  'storm_went',
  'went_hr',
  'hr_formal',
  'formal_complaint',
  'complaint_hr',
  'hr_ladi',
  'ladi_said',
  'said_shell',
  'shell_process',
  'process_complaint',
  'complaint_worthless',
  'worthless_boss',
  'boss_like',
  'like_told',
  'told_like',
  'like_boss',
  'boss_attitud',
  'attitud_need',
  'need_warrant',
  'warrant_stop',
  'stop_sinc',
  'sinc_boss',
  'boss_stop',
  'stop_talk',
  'talk_workmat',
  'workmat_say',
  'say_im',
  'im_way',
  'way_dramat',
  'dramat_know',
  'know_take',
  'take_compliment',
  'compliment_also',
  'also_complain',
  'complain_feel',
  'feel_safe',
  'safe_around',
  'around_know',
  'know_twist',
  'twist_word',
  'word_somehow',
  'somehow_ta',
  'ta_edit',
  'edit_expect',
  'expect_mani',
  'mani_comment',
  'comment_thank',
  'thank_hard',
  'hard_read',
  'read_ive',
  'ive_take',
  'take_note',
  'note_ill',
  'ill_tri',
  'tri_best',
  'best_even',
  'even_tho',
  'tho_afford',
  'afford_jobless',
  'jobless_month',
  'month_im',
  'im_scare',
  'scare_quit',
  'quit_goe',
  'goe_nowher',
  'nowher_clear',
  'clear_snoop',
  'snoop_phone',
  'phone_stand',
  'stand_cowork',
  'cowork_sit',
  'sit_chair',
  'chair_clear',
  'clear_view',
  'view_phone',
  'phone_saw',
  'saw_save',
  'save_number',
  'number_jessica',
  'jessica_rabbit',
  'rabbit_oh',
  'oh_guy',
  'guy_call',
  'call_horribl',
  'horribl_name',
  'name_dm',
  'dm_wish',
  'wish_horribl',
  'horribl_thing',
  'thing_happen',
  'happen_hope',
  'hope_get',
  'get_help',
  'help_otherwis',
  'otherwis_never',
  'never_work',
  'work_relationship',
  'relationship_women',
  'women_sinc',
  'sinc_seem',
  'seem_hate',
  'hate_women',
  'women_much',
  'much_&',
  '&_xb',
  'xb_updat',
  'updat_thank',
  'thank_guy',
  'guy_support',
  'support_ive',
  'ive_mail',
  'mail_hr',
  'hr_ask',
  'ask_thing',
  'thing_write',
  'write_lack',
  'lack_action',
  'action_ive',
  'ive_got',
  'got_absolut',
  'absolut_noth',
  'noth_later',
  'later_found',
  'found_lawyer',
  'lawyer_sent',
  'sent_strongli',
  'strongli_word',
  'word_legal',
  'legal_mail',
  'mail_hr',
  'hr_respons',
  'respons_yet',
  'yet_yesterday',
  'yesterday_friday',
  'friday_let',
  'let_give',
  'give_time',
  'time_cowork',
  'cowork_save',
  'save_jessica',
  'jessica_rabbit',
  'rabbit_spoke',
  'spoke_apolog',
  'apolog_said',
  'said_would',
  'would_help',
  'help_hr',
  'hr_ask',
  'ask_testimoni',
  'testimoni_lawsuit',
  'lawsuit_said',
  'said_thumb',
  'thumb_boss',
  'boss_alway',
  'alway_refer',
  'refer_jessica',
  'jessica_rabbit',
  'rabbit_point',
  'point_cowork',
  'cowork_though',
  'though_jessica',
  'jessica_real',
  'real_name',
  'name_also',
  'also_told',
  'told_chang',
  'chang_nicknam',
  'nicknam_known',
  'known_amber',
  'amber_heard',
  'heard_im',
  'im_furiou',
  'furiou_im',
  'im_keep',
  'keep_straight',
  'straight_face',
  'face_punish',
  'punish_get',
  'get_settl',
  'settl_somehow',
  'somehow_updat',
  'updat_hello',
  'hello_updat',
  'updat_profil',
  'profil_sorri',
  'sorri_miss',
  'miss_day',
  'im_yo_femal',
  'yo_femal_recent',
  'femal_recent_start',
  'recent_start_new',
  'start_new_job',
  'new_job_well',
  'job_well_month',
  'well_month_ago',
  'month_ago_guy',
  'ago_guy_offic',
  'guy_offic_plu',
  'offic_plu_boss',
  'plu_boss_boss',
  'boss_boss_one',
  'boss_one_guy',
  'one_guy_think',
  'guy_think_natur',
  'think_natur_charm',
  'natur_charm_ladi',
  'charm_ladi_would',
  'ladi_would_instantli',
  'would_instantli_fall',
  'instantli_fall_look',
  'fall_look_like',
  'look_like_thumb',
  'like_thumb_lot',
  'thumb_lot_dumb',
  'lot_dumb_confid',
  'dumb_confid_make',
  'confid_make_inappropri',
  'make_inappropri_comment',
  'inappropri_comment_even',
  'comment_even_talk',
  'even_talk_work',
  'talk_work_issu',
  'work_issu_keep',
  'issu_keep_arm',
  'keep_arm_length',
  'arm_length_im',
  'length_im_profession',
  'im_profession_workmat',
  'profession_workmat_day',
  'workmat_day_ago',
  'day_ago_chase',
  'ago_chase_workmat',
  'chase_workmat_procrastin',
  'workmat_procrastin_send',
  'procrastin_send_document',
  'send_document_went',
  'document_went_make',
  'went_make_send',
  'make_send_said',
  'send_said_ok',
  'said_ok_took',
  'ok_took_phone',
  'took_phone_open',
  'phone_open_messag',
  'open_messag_app',
  'messag_app_sent',
  'app_sent_file',
  'sent_file_look',
  'file_look_notic',
  'look_notic_save',
  'notic_save_number',
  'save_number_jessica',
  'number_jessica_rabbit',
  'jessica_rabbit_ask',
  'rabbit_ask_confus',
  'ask_confus_look',
  'confus_look_shock',
  'look_shock_eye',
  'shock_eye_wide',
  'eye_wide_open',
  'wide_open_said',
  'open_said_im',
  'said_im_sorri',
  'im_sorri_let',
  'sorri_let_go',
  'let_go_interrog',
  'go_interrog_confess',
  'interrog_confess_boss',
  'confess_boss_alway',
  'boss_alway_call',
  'alway_call_jessica',
  'call_jessica_rabbit',
  'jessica_rabbit_clear',
  'rabbit_clear_im',
  'clear_im_natur',
  'im_natur_red',
  'natur_red_head',
  'red_head_got',
  'head_got_mom',
  'got_mom_dye',
  'mom_dye_hair',
  'dye_hair_red',
  'hair_red_get',
  'red_get_darker',
  'get_darker_look',
  'darker_look_like',
  'look_like_jessica',
  'like_jessica_rabbit',
  'jessica_rabbit_im',
  'rabbit_im_flat',
  'im_flat_tabl',
  'flat_tabl_ye',
  'tabl_ye_trust',
  'ye_trust_issu',
  'trust_issu_work',
  'issu_work_hard',
  'work_hard_like',
  'hard_like_bodi',
  'like_bodi_despis',
  'bodi_despis_thought',
  'despis_thought_compar',
  'thought_compar_hyper',
  'compar_hyper_sexual',
  'hyper_sexual_cartoon',
  'sexual_cartoon_charact',
  'cartoon_charact_talk',
  'charact_talk_boss',
  'talk_boss_came',
  'boss_came_offic',
  'came_offic_ask',
  'offic_ask_nicknam',
  'ask_nicknam_said',
  'nicknam_said_sexi',
  'said_sexi_redhead',
  'sexi_redhead_told',
  'redhead_told_stop',
  'told_stop_feel',
  'stop_feel_safe',
  'feel_safe_said',
  'safe_said_angri',
  'said_angri_compliment',
  'angri_compliment_said',
  'compliment_said_storm',
  'said_storm_went',
  'storm_went_hr',
  'went_hr_formal',
  'hr_formal_complaint',
  'formal_complaint_hr',
  'complaint_hr_ladi',
  'hr_ladi_said',
  'ladi_said_shell',
  'said_shell_process',
  'shell_process_complaint',
  'process_complaint_worthless',
  'complaint_worthless_boss',
  'worthless_boss_like',
  'boss_like_told',
  'like_told_like',
  'told_like_boss',
  'like_boss_attitud',
  'boss_attitud_need',
  'attitud_need_warrant',
  'need_warrant_stop',
  'warrant_stop_sinc',
  'stop_sinc_boss',
  'sinc_boss_stop',
  'boss_stop_talk',
  'stop_talk_workmat',
  'talk_workmat_say',
  'workmat_say_im',
  'say_im_way',
  'im_way_dramat',
  'way_dramat_know',
  'dramat_know_take',
  'know_take_compliment',
  'take_compliment_also',
  'compliment_also_complain',
  'also_complain_feel',
  'complain_feel_safe',
  'feel_safe_around',
  'safe_around_know',
  'around_know_twist',
  'know_twist_word',
  'twist_word_somehow',
  'word_somehow_ta',
  'somehow_ta_edit',
  'ta_edit_expect',
  'edit_expect_mani',
  'expect_mani_comment',
  'mani_comment_thank',
  'comment_thank_hard',
  'thank_hard_read',
  'hard_read_ive',
  'read_ive_take',
  'ive_take_note',
  'take_note_ill',
  'note_ill_tri',
  'ill_tri_best',
  'tri_best_even',
  'best_even_tho',
  'even_tho_afford',
  'tho_afford_jobless',
  'afford_jobless_month',
  'jobless_month_im',
  'month_im_scare',
  'im_scare_quit',
  'scare_quit_goe',
  'quit_goe_nowher',
  'goe_nowher_clear',
  'nowher_clear_snoop',
  'clear_snoop_phone',
  'snoop_phone_stand',
  'phone_stand_cowork',
  'stand_cowork_sit',
  'cowork_sit_chair',
  'sit_chair_clear',
  'chair_clear_view',
  'clear_view_phone',
  'view_phone_saw',
  'phone_saw_save',
  'saw_save_number',
  'save_number_jessica',
  'number_jessica_rabbit',
  'jessica_rabbit_oh',
  'rabbit_oh_guy',
  'oh_guy_call',
  'guy_call_horribl',
  'call_horribl_name',
  'horribl_name_dm',
  'name_dm_wish',
  'dm_wish_horribl',
  'wish_horribl_thing',
  'horribl_thing_happen',
  'thing_happen_hope',
  'happen_hope_get',
  'hope_get_help',
  'get_help_otherwis',
  'help_otherwis_never',
  'otherwis_never_work',
  'never_work_relationship',
  'work_relationship_women',
  'relationship_women_sinc',
  'women_sinc_seem',
  'sinc_seem_hate',
  'seem_hate_women',
  'hate_women_much',
  'women_much_&',
  'much_&_xb',
  '&_xb_updat',
  'xb_updat_thank',
  'updat_thank_guy',
  'thank_guy_support',
  'guy_support_ive',
  'support_ive_mail',
  'ive_mail_hr',
  'mail_hr_ask',
  'hr_ask_thing',
  'ask_thing_write',
  'thing_write_lack',
  'write_lack_action',
  'lack_action_ive',
  'action_ive_got',
  'ive_got_absolut',
  'got_absolut_noth',
  'absolut_noth_later',
  'noth_later_found',
  'later_found_lawyer',
  'found_lawyer_sent',
  'lawyer_sent_strongli',
  'sent_strongli_word',
  'strongli_word_legal',
  'word_legal_mail',
  'legal_mail_hr',
  'mail_hr_respons',
  'hr_respons_yet',
  'respons_yet_yesterday',
  'yet_yesterday_friday',
  'yesterday_friday_let',
  'friday_let_give',
  'let_give_time',
  'give_time_cowork',
  'time_cowork_save',
  'cowork_save_jessica',
  'save_jessica_rabbit',
  'jessica_rabbit_spoke',
  'rabbit_spoke_apolog',
  'spoke_apolog_said',
  'apolog_said_would',
  'said_would_help',
  'would_help_hr',
  'help_hr_ask',
  'hr_ask_testimoni',
  'ask_testimoni_lawsuit',
  'testimoni_lawsuit_said',
  'lawsuit_said_thumb',
  'said_thumb_boss',
  'thumb_boss_alway',
  'boss_alway_refer',
  'alway_refer_jessica',
  'refer_jessica_rabbit',
  'jessica_rabbit_point',
  'rabbit_point_cowork',
  'point_cowork_though',
  'cowork_though_jessica',
  'though_jessica_real',
  'jessica_real_name',
  'real_name_also',
  'name_also_told',
  'also_told_chang',
  'told_chang_nicknam',
  'chang_nicknam_known',
  'nicknam_known_amber',
  'known_amber_heard',
  'amber_heard_im',
  'heard_im_furiou',
  'im_furiou_im',
  'furiou_im_keep',
  'im_keep_straight',
  'keep_straight_face',
  'straight_face_punish',
  'face_punish_get',
  'punish_get_settl',
  'get_settl_somehow',
  'settl_somehow_updat',
  'somehow_updat_hello',
  'updat_hello_updat',
  'hello_updat_profil',
  'updat_profil_sorri',
  'profil_sorri_miss',
  'sorri_miss_day'],
 ['two',
  'son',
  'david',
  'shawn',
  'david',
  'alway',
  'quiet',
  'lot',
  'friend',
  'perfectionist',
  'shawn',
  'laid',
  'back',
  'easy-go',
  'let',
  'anyth',
  'bother',
  'shawn',
  'best',
  'friend',
  'sinc',
  'littl',
  'franki',
  'seven',
  'year',
  'ago',
  'franki',
  'father',
  'stroke',
  'left',
  'sever',
  'disabl',
  'franki',
  'mother',
  'beth',
  'sole',
  'earner',
  'famili',
  'summer',
  'come',
  'know',
  'thing',
  'tough',
  'famili',
  'husband',
  'arrang',
  'pay',
  'send',
  'franki',
  'sleep',
  'away',
  'camp',
  'send',
  'son',
  'save',
  'camp',
  'happen',
  'cover',
  'franki',
  'summer',
  'camp',
  'everi',
  'year',
  'david',
  'recent',
  'came',
  'us',
  'gay',
  'cours',
  'accept',
  'love',
  'son',
  'emot',
  'reveal',
  'great',
  'deal',
  'bulli',
  'school',
  'shawn',
  'franki',
  'among',
  'instig',
  'franki',
  'ask',
  'david',
  'figur',
  '[',
  'slur',
  ']',
  'yet',
  'made',
  'comment',
  'stare',
  'boy',
  'locker',
  'room',
  'told',
  'belong',
  'girl',
  'room',
  'confront',
  'shawn',
  'told',
  'play',
  'around',
  'seriou',
  'big',
  'deal',
  'told',
  'brother',
  'took',
  'serious',
  'big',
  'deal',
  'unaccept',
  'ive',
  'taken',
  'away',
  'video',
  'game',
  'end',
  'school',
  'year',
  'ground',
  'month',
  'sinc',
  'apolog',
  'brother',
  'call',
  'beth',
  'told',
  'happen',
  'dismiss',
  'told',
  'son',
  'sexual',
  'punchlin',
  'respect',
  'friendship',
  'shawn',
  'franki',
  'leav',
  'david',
  'alon',
  'beth',
  'repli',
  'david',
  'made',
  'target',
  'overli',
  'sensit',
  'tattletal',
  'told',
  'want',
  'hear',
  'franki',
  'said',
  'anoth',
  'bad',
  'word',
  'david',
  'said',
  'boy',
  'boy',
  'theyll',
  'work',
  'get',
  'involv',
  'first',
  'deposit',
  'camp',
  'due',
  'week',
  'made',
  'decis',
  'sponsor',
  'franki',
  'call',
  'camp',
  'offic',
  'explain',
  'due',
  'bulli',
  'franki',
  'part',
  'would',
  'pay',
  'camp',
  'year',
  'beth',
  'know',
  'ive',
  'sponsor',
  'camp',
  'sinc',
  'franki',
  'told',
  'anonym',
  'donor',
  'cover',
  'camp',
  'peopl',
  'know',
  'husband',
  'camp',
  'offic',
  'told',
  'husband',
  'done',
  'understood',
  'felt',
  'badli',
  'franki',
  'get',
  'go',
  'shawn',
  'would',
  'without',
  'best',
  'friend',
  'camp',
  'point',
  'beth',
  'would',
  'like',
  'said',
  'someth',
  'knew',
  'pay',
  'camp',
  'feel',
  'like',
  'miss',
  'point',
  'act',
  'way',
  'wrong',
  'pay',
  'camp',
  'way',
  'beth',
  'afford',
  'camp',
  'like',
  'go',
  'affect',
  'job',
  'franki',
  'home',
  'day',
  'feel',
  'made',
  'right',
  'choic',
  'protect',
  'son',
  'still',
  'feel',
  'guilti',
  'asshol',
  'two_son',
  'son_david',
  'david_shawn',
  'shawn_david',
  'david_alway',
  'alway_quiet',
  'quiet_lot',
  'lot_friend',
  'friend_perfectionist',
  'perfectionist_shawn',
  'shawn_laid',
  'laid_back',
  'back_easy-go',
  'easy-go_let',
  'let_anyth',
  'anyth_bother',
  'bother_shawn',
  'shawn_best',
  'best_friend',
  'friend_sinc',
  'sinc_littl',
  'littl_franki',
  'franki_seven',
  'seven_year',
  'year_ago',
  'ago_franki',
  'franki_father',
  'father_stroke',
  'stroke_left',
  'left_sever',
  'sever_disabl',
  'disabl_franki',
  'franki_mother',
  'mother_beth',
  'beth_sole',
  'sole_earner',
  'earner_famili',
  'famili_summer',
  'summer_come',
  'come_know',
  'know_thing',
  'thing_tough',
  'tough_famili',
  'famili_husband',
  'husband_arrang',
  'arrang_pay',
  'pay_send',
  'send_franki',
  'franki_sleep',
  'sleep_away',
  'away_camp',
  'camp_send',
  'send_son',
  'son_save',
  'save_camp',
  'camp_happen',
  'happen_cover',
  'cover_franki',
  'franki_summer',
  'summer_camp',
  'camp_everi',
  'everi_year',
  'year_david',
  'david_recent',
  'recent_came',
  'came_us',
  'us_gay',
  'gay_cours',
  'cours_accept',
  'accept_love',
  'love_son',
  'son_emot',
  'emot_reveal',
  'reveal_great',
  'great_deal',
  'deal_bulli',
  'bulli_school',
  'school_shawn',
  'shawn_franki',
  'franki_among',
  'among_instig',
  'instig_franki',
  'franki_ask',
  'ask_david',
  'david_figur',
  'figur_[',
  '[_slur',
  'slur_]',
  ']_yet',
  'yet_made',
  'made_comment',
  'comment_stare',
  'stare_boy',
  'boy_locker',
  'locker_room',
  'room_told',
  'told_belong',
  'belong_girl',
  'girl_room',
  'room_confront',
  'confront_shawn',
  'shawn_told',
  'told_play',
  'play_around',
  'around_seriou',
  'seriou_big',
  'big_deal',
  'deal_told',
  'told_brother',
  'brother_took',
  'took_serious',
  'serious_big',
  'big_deal',
  'deal_unaccept',
  'unaccept_ive',
  'ive_taken',
  'taken_away',
  'away_video',
  'video_game',
  'game_end',
  'end_school',
  'school_year',
  'year_ground',
  'ground_month',
  'month_sinc',
  'sinc_apolog',
  'apolog_brother',
  'brother_call',
  'call_beth',
  'beth_told',
  'told_happen',
  'happen_dismiss',
  'dismiss_told',
  'told_son',
  'son_sexual',
  'sexual_punchlin',
  'punchlin_respect',
  'respect_friendship',
  'friendship_shawn',
  'shawn_franki',
  'franki_leav',
  'leav_david',
  'david_alon',
  'alon_beth',
  'beth_repli',
  'repli_david',
  'david_made',
  'made_target',
  'target_overli',
  'overli_sensit',
  'sensit_tattletal',
  'tattletal_told',
  'told_want',
  'want_hear',
  'hear_franki',
  'franki_said',
  'said_anoth',
  'anoth_bad',
  'bad_word',
  'word_david',
  'david_said',
  'said_boy',
  'boy_boy',
  'boy_theyll',
  'theyll_work',
  'work_get',
  'get_involv',
  'involv_first',
  'first_deposit',
  'deposit_camp',
  'camp_due',
  'due_week',
  'week_made',
  'made_decis',
  'decis_sponsor',
  'sponsor_franki',
  'franki_call',
  'call_camp',
  'camp_offic',
  'offic_explain',
  'explain_due',
  'due_bulli',
  'bulli_franki',
  'franki_part',
  'part_would',
  'would_pay',
  'pay_camp',
  'camp_year',
  'year_beth',
  'beth_know',
  'know_ive',
  'ive_sponsor',
  'sponsor_camp',
  'camp_sinc',
  'sinc_franki',
  'franki_told',
  'told_anonym',
  'anonym_donor',
  'donor_cover',
  'cover_camp',
  'camp_peopl',
  'peopl_know',
  'know_husband',
  'husband_camp',
  'camp_offic',
  'offic_told',
  'told_husband',
  'husband_done',
  'done_understood',
  'understood_felt',
  'felt_badli',
  'badli_franki',
  'franki_get',
  'get_go',
  'go_shawn',
  'shawn_would',
  'would_without',
  'without_best',
  'best_friend',
  'friend_camp',
  'camp_point',
  'point_beth',
  'beth_would',
  'would_like',
  'like_said',
  'said_someth',
  'someth_knew',
  'knew_pay',
  'pay_camp',
  'camp_feel',
  'feel_like',
  'like_miss',
  'miss_point',
  'point_act',
  'act_way',
  'way_wrong',
  'wrong_pay',
  'pay_camp',
  'camp_way',
  'way_beth',
  'beth_afford',
  'afford_camp',
  'camp_like',
  'like_go',
  'go_affect',
  'affect_job',
  'job_franki',
  'franki_home',
  'home_day',
  'day_feel',
  'feel_made',
  'made_right',
  'right_choic',
  'choic_protect',
  'protect_son',
  'son_still',
  'still_feel',
  'feel_guilti',
  'guilti_asshol',
  'two_son_david',
  'son_david_shawn',
  'david_shawn_david',
  'shawn_david_alway',
  'david_alway_quiet',
  'alway_quiet_lot',
  'quiet_lot_friend',
  'lot_friend_perfectionist',
  'friend_perfectionist_shawn',
  'perfectionist_shawn_laid',
  'shawn_laid_back',
  'laid_back_easy-go',
  'back_easy-go_let',
  'easy-go_let_anyth',
  'let_anyth_bother',
  'anyth_bother_shawn',
  'bother_shawn_best',
  'shawn_best_friend',
  'best_friend_sinc',
  'friend_sinc_littl',
  'sinc_littl_franki',
  'littl_franki_seven',
  'franki_seven_year',
  'seven_year_ago',
  'year_ago_franki',
  'ago_franki_father',
  'franki_father_stroke',
  'father_stroke_left',
  'stroke_left_sever',
  'left_sever_disabl',
  'sever_disabl_franki',
  'disabl_franki_mother',
  'franki_mother_beth',
  'mother_beth_sole',
  'beth_sole_earner',
  'sole_earner_famili',
  'earner_famili_summer',
  'famili_summer_come',
  'summer_come_know',
  'come_know_thing',
  'know_thing_tough',
  'thing_tough_famili',
  'tough_famili_husband',
  'famili_husband_arrang',
  'husband_arrang_pay',
  'arrang_pay_send',
  'pay_send_franki',
  'send_franki_sleep',
  'franki_sleep_away',
  'sleep_away_camp',
  'away_camp_send',
  'camp_send_son',
  'send_son_save',
  'son_save_camp',
  'save_camp_happen',
  'camp_happen_cover',
  'happen_cover_franki',
  'cover_franki_summer',
  'franki_summer_camp',
  'summer_camp_everi',
  'camp_everi_year',
  'everi_year_david',
  'year_david_recent',
  'david_recent_came',
  'recent_came_us',
  'came_us_gay',
  'us_gay_cours',
  'gay_cours_accept',
  'cours_accept_love',
  'accept_love_son',
  'love_son_emot',
  'son_emot_reveal',
  'emot_reveal_great',
  'reveal_great_deal',
  'great_deal_bulli',
  'deal_bulli_school',
  'bulli_school_shawn',
  'school_shawn_franki',
  'shawn_franki_among',
  'franki_among_instig',
  'among_instig_franki',
  'instig_franki_ask',
  'franki_ask_david',
  'ask_david_figur',
  'david_figur_[',
  'figur_[_slur',
  '[_slur_]',
  'slur_]_yet',
  ']_yet_made',
  'yet_made_comment',
  'made_comment_stare',
  'comment_stare_boy',
  'stare_boy_locker',
  'boy_locker_room',
  'locker_room_told',
  'room_told_belong',
  'told_belong_girl',
  'belong_girl_room',
  'girl_room_confront',
  'room_confront_shawn',
  'confront_shawn_told',
  'shawn_told_play',
  'told_play_around',
  'play_around_seriou',
  'around_seriou_big',
  'seriou_big_deal',
  'big_deal_told',
  'deal_told_brother',
  'told_brother_took',
  'brother_took_serious',
  'took_serious_big',
  'serious_big_deal',
  'big_deal_unaccept',
  'deal_unaccept_ive',
  'unaccept_ive_taken',
  'ive_taken_away',
  'taken_away_video',
  'away_video_game',
  'video_game_end',
  'game_end_school',
  'end_school_year',
  'school_year_ground',
  'year_ground_month',
  'ground_month_sinc',
  'month_sinc_apolog',
  'sinc_apolog_brother',
  'apolog_brother_call',
  'brother_call_beth',
  'call_beth_told',
  'beth_told_happen',
  'told_happen_dismiss',
  'happen_dismiss_told',
  'dismiss_told_son',
  'told_son_sexual',
  'son_sexual_punchlin',
  'sexual_punchlin_respect',
  'punchlin_respect_friendship',
  'respect_friendship_shawn',
  'friendship_shawn_franki',
  'shawn_franki_leav',
  'franki_leav_david',
  'leav_david_alon',
  'david_alon_beth',
  'alon_beth_repli',
  'beth_repli_david',
  'repli_david_made',
  'david_made_target',
  'made_target_overli',
  'target_overli_sensit',
  'overli_sensit_tattletal',
  'sensit_tattletal_told',
  'tattletal_told_want',
  'told_want_hear',
  'want_hear_franki',
  'hear_franki_said',
  'franki_said_anoth',
  'said_anoth_bad',
  'anoth_bad_word',
  'bad_word_david',
  'word_david_said',
  'david_said_boy',
  'said_boy_boy',
  'boy_boy_theyll',
  'boy_theyll_work',
  'theyll_work_get',
  'work_get_involv',
  'get_involv_first',
  'involv_first_deposit',
  'first_deposit_camp',
  'deposit_camp_due',
  'camp_due_week',
  'due_week_made',
  'week_made_decis',
  'made_decis_sponsor',
  'decis_sponsor_franki',
  'sponsor_franki_call',
  'franki_call_camp',
  'call_camp_offic',
  'camp_offic_explain',
  'offic_explain_due',
  'explain_due_bulli',
  'due_bulli_franki',
  'bulli_franki_part',
  'franki_part_would',
  'part_would_pay',
  'would_pay_camp',
  'pay_camp_year',
  'camp_year_beth',
  'year_beth_know',
  'beth_know_ive',
  'know_ive_sponsor',
  'ive_sponsor_camp',
  'sponsor_camp_sinc',
  'camp_sinc_franki',
  'sinc_franki_told',
  'franki_told_anonym',
  'told_anonym_donor',
  'anonym_donor_cover',
  'donor_cover_camp',
  'cover_camp_peopl',
  'camp_peopl_know',
  'peopl_know_husband',
  'know_husband_camp',
  'husband_camp_offic',
  'camp_offic_told',
  'offic_told_husband',
  'told_husband_done',
  'husband_done_understood',
  'done_understood_felt',
  'understood_felt_badli',
  'felt_badli_franki',
  'badli_franki_get',
  'franki_get_go',
  'get_go_shawn',
  'go_shawn_would',
  'shawn_would_without',
  'would_without_best',
  'without_best_friend',
  'best_friend_camp',
  'friend_camp_point',
  'camp_point_beth',
  'point_beth_would',
  'beth_would_like',
  'would_like_said',
  'like_said_someth',
  'said_someth_knew',
  'someth_knew_pay',
  'knew_pay_camp',
  'pay_camp_feel',
  'camp_feel_like',
  'feel_like_miss',
  'like_miss_point',
  'miss_point_act',
  'point_act_way',
  'act_way_wrong',
  'way_wrong_pay',
  'wrong_pay_camp',
  'pay_camp_way',
  'camp_way_beth',
  'way_beth_afford',
  'beth_afford_camp',
  'afford_camp_like',
  'camp_like_go',
  'like_go_affect',
  'go_affect_job',
  'affect_job_franki',
  'job_franki_home',
  'franki_home_day',
  'home_day_feel',
  'day_feel_made',
  'feel_made_right',
  'made_right_choic',
  'right_choic_protect',
  'choic_protect_son',
  'protect_son_still',
  'son_still_feel',
  'still_feel_guilti',
  'feel_guilti_asshol'],
 ['*',
  '*',
  'final',
  'updat',
  'daughter',
  'came',
  'pick',
  'kid',
  'even',
  'ask',
  'could',
  'talk',
  'much',
  'calmer',
  'time',
  'explain',
  'point',
  'view',
  'anoth',
  'babi',
  'feel',
  'blindsid',
  'declar',
  'babi',
  'said',
  'mention',
  'want',
  'got',
  'marri',
  'recal',
  'convers',
  '*',
  '*',
  '*',
  '*',
  'talk',
  'product',
  'share',
  'one',
  'push',
  'anoth',
  'one',
  'husband',
  'love',
  'idea',
  'complet',
  'confess',
  'doubt',
  'would',
  'still',
  'board',
  'found',
  'would',
  'pay',
  'childcar',
  'time',
  'around',
  'husband',
  'grew',
  'poorer',
  'side',
  'budget',
  'everyth',
  'worri',
  'lose',
  'job',
  'complain',
  'kid',
  'around',
  'covid',
  'let',
  'kid',
  'sympath',
  'share',
  'side',
  'marriag',
  'admit',
  'probabl',
  'right',
  'anoth',
  'babi',
  'go',
  'talk',
  'steve',
  'tonight',
  'move',
  'forward',
  'plan',
  'caveat',
  'babi',
  'would',
  'full-tim',
  'daycar',
  'husband',
  'help',
  'emerg',
  '*',
  '*',
  '*',
  '*',
  'also',
  'abl',
  'discuss',
  'current',
  'situat',
  'express',
  'feel',
  'underappreci',
  'given',
  'everyth',
  'done',
  'famili',
  'share',
  'jealou',
  'cant',
  'instead',
  'felt',
  'work',
  'mom',
  'except',
  'summer',
  'kid',
  'said',
  'would',
  'talk',
  'steve',
  'enrol',
  'kid',
  'beforeaftercar',
  'program',
  'come',
  'septemb',
  'would',
  'take',
  'usual',
  'also',
  'send',
  'program',
  'need',
  '*',
  '*',
  '*',
  '*',
  'also',
  'made',
  'sure',
  'gave',
  'grandkid',
  'extra',
  'tight',
  'hug',
  'today',
  'watch',
  'happen',
  'texa',
  'make',
  'feel',
  'seem',
  'trivial',
  '*',
  '*',
  'husband',
  'rob',
  'kid',
  'erica',
  'mike',
  'kid',
  'marri',
  'erica',
  'husband',
  'steve',
  'live',
  'nearbi',
  'us',
  'issu',
  'concern',
  'work',
  'full-tim',
  'kid',
  '&',
  'year',
  'ago',
  'daughter',
  'ask',
  'husband',
  'would',
  'becom',
  'full-tim',
  'childcar',
  'could',
  'continu',
  'work',
  'afford',
  'comfort',
  'life',
  'agre',
  'discuss',
  'much',
  'watch',
  'babi',
  'expect',
  'teacher',
  'retir',
  'year',
  'could',
  'take',
  'pension',
  'husband',
  'continu',
  'work',
  'made',
  'sacrific',
  'like',
  'vacat',
  'ad',
  'save',
  'abl',
  'make',
  'work',
  'could',
  'take',
  'full',
  'pension',
  'husband',
  'retir',
  'year',
  'later',
  'arrang',
  'work',
  'enjoy',
  'kid',
  'except',
  'year',
  'start',
  'feel',
  'like',
  'take',
  'advantag',
  'help',
  'lockdown',
  'work',
  'home',
  'expect',
  'us',
  'keep',
  'kid',
  'day',
  'want',
  'split',
  'time',
  'week',
  'sinc',
  'preschooldaycar',
  'close',
  'settl',
  'us',
  'sil',
  'complain',
  'pretti',
  'much',
  'everi',
  'day',
  'thing',
  'got',
  'better',
  'kid',
  'abl',
  'school',
  'fast',
  'forward',
  'year',
  'bit',
  'blowup',
  'kindergarten',
  'daughter',
  'want',
  'start',
  'school',
  'unknown',
  'insist',
  'need',
  'go',
  'need',
  'break',
  'also',
  'ask',
  'spend',
  'time',
  'preschooldaycar',
  'program',
  'sil',
  'complain',
  'cost',
  'push',
  'anyway',
  'relent',
  'past',
  'spring',
  'sil',
  'push',
  'us',
  'take',
  'kid',
  'week',
  'could',
  'go',
  'vacat',
  'said',
  'take',
  'kid',
  'said',
  'afford',
  'one',
  'went',
  'vacat',
  'mayb',
  'much',
  'background',
  'feel',
  'like',
  'context',
  'import',
  'said',
  'daughter',
  'casual',
  'convers',
  'day',
  'mention',
  'obgyn',
  'appoint',
  'test',
  'ask',
  'everyth',
  'okay',
  'said',
  'steve',
  'tri',
  'babi',
  'ask',
  'childcar',
  'plan',
  'look',
  'like',
  'crazi',
  'said',
  'us',
  'said',
  'would',
  'nice',
  'told',
  'tri',
  'anoth',
  'babi',
  'said',
  'none',
  'busi',
  'said',
  'im',
  'provid',
  'year',
  'babysit',
  'told',
  'viabl',
  'childcar',
  'option',
  'new',
  'babi',
  'beg',
  'reconsid',
  'go',
  'kindergarten',
  'feel',
  'like',
  'get',
  'day',
  'back',
  'extent',
  'refus',
  'start',
  'infant',
  'erica',
  'said',
  'make',
  'choos',
  'dream',
  'kid',
  'financi',
  'stabil',
  'argu',
  'two',
  'beauti',
  'children',
  'financi',
  'stabl',
  'ruin',
  'anoth',
  'babi',
  'might',
  'ta',
  'erica',
  'feel',
  'like',
  'told',
  'sooner',
  'feel',
  'like',
  'never',
  'agre',
  'lifetim',
  'rais',
  'kid',
  '&',
  'xb',
  'edit',
  'continu',
  'watch',
  'two',
  'grandchildren',
  'school',
  'summer',
  'agre',
  'enjoy',
  'school',
  'provid',
  'nice',
  'break',
  'us',
  'fun',
  'thing',
  'kid',
  'summer',
  'want',
  'start',
  'anoth',
  'babi',
  'edit',
  'add',
  'bit',
  'context',
  'want',
  'answer',
  'comment',
  'see',
  'lot',
  '\\-we',
  'paid',
  'ask',
  'retir',
  'earli',
  'would',
  'stay',
  'longer',
  'watch',
  'grandkid',
  'probabl',
  'would',
  'put',
  'anoth',
  'year',
  'love',
  'job',
  'put',
  'year',
  'help',
  'daughter',
  'grandchildren',
  'problem',
  'husband',
  'good',
  'job',
  'prepar',
  'retir',
  'felt',
  'could',
  'swing',
  '\\-we',
  'take',
  'time',
  'requir',
  'week',
  'year',
  'minimum',
  'travel',
  'visit',
  'son',
  'famili',
  'settl',
  'daughter',
  'get',
  'week',
  'vacat',
  'year',
  'sil',
  'get',
  'first',
  'sil',
  'complain',
  'daughter',
  'would',
  'never',
  'get',
  'vacat',
  'togeth',
  'said',
  'would',
  'simpli',
  'arrang',
  'care',
  'option',
  'want',
  'time',
  'togeth',
  'could',
  'still',
  'week',
  'hold',
  'one',
  'time',
  'past',
  'year',
  'parent',
  'came',
  'stay',
  'watch',
  'kid',
  'week',
  'away',
  'term',
  'tell',
  'anoth',
  'babi',
  'tri',
  'make',
  'see',
  'everyth',
  'focu',
  'less',
  'would',
  'never',
  'tell',
  'woman',
  'bodi',
  'daughter',
  'want',
  'see',
  'hurt',
  'lastli',
  'daughter',
  'sil',
  'plenti',
  'money',
  'respons',
  'come',
  'cost',
  'anyth',
  'sil',
  'cheap',
  'think',
  'version',
  'stabil',
  'mani',
  'differ',
  '*_*',
  '*_final',
  'final_updat',
  'updat_daughter',
  'daughter_came',
  'came_pick',
  'pick_kid',
  'kid_even',
  'even_ask',
  'ask_could',
  'could_talk',
  'talk_much',
  'much_calmer',
  'calmer_time',
  'time_explain',
  'explain_point',
  'point_view',
  'view_anoth',
  'anoth_babi',
  'babi_feel',
  'feel_blindsid',
  'blindsid_declar',
  'declar_babi',
  'babi_said',
  'said_mention',
  'mention_want',
  'want_got',
  'got_marri',
  'marri_recal',
  'recal_convers',
  'convers_*',
  '*_*',
  '*_*',
  '*_*',
  '*_talk',
  'talk_product',
  'product_share',
  'share_one',
  'one_push',
  'push_anoth',
  'anoth_one',
  'one_husband',
  'husband_love',
  'love_idea',
  'idea_complet',
  'complet_confess',
  'confess_doubt',
  'doubt_would',
  'would_still',
  'still_board',
  'board_found',
  'found_would',
  'would_pay',
  'pay_childcar',
  'childcar_time',
  'time_around',
  'around_husband',
  'husband_grew',
  'grew_poorer',
  'poorer_side',
  'side_budget',
  'budget_everyth',
  'everyth_worri',
  'worri_lose',
  'lose_job',
  'job_complain',
  'complain_kid',
  'kid_around',
  'around_covid',
  'covid_let',
  'let_kid',
  'kid_sympath',
  'sympath_share',
  'share_side',
  'side_marriag',
  'marriag_admit',
  'admit_probabl',
  'probabl_right',
  'right_anoth',
  'anoth_babi',
  'babi_go',
  'go_talk',
  'talk_steve',
  'steve_tonight',
  'tonight_move',
  'move_forward',
  'forward_plan',
  'plan_caveat',
  'caveat_babi',
  'babi_would',
  'would_full-tim',
  'full-tim_daycar',
  'daycar_husband',
  'husband_help',
  'help_emerg',
  'emerg_*',
  '*_*',
  '*_*',
  '*_*',
  '*_also',
  'also_abl',
  'abl_discuss',
  'discuss_current',
  'current_situat',
  'situat_express',
  'express_feel',
  'feel_underappreci',
  'underappreci_given',
  'given_everyth',
  'everyth_done',
  'done_famili',
  'famili_share',
  'share_jealou',
  'jealou_cant',
  'cant_instead',
  'instead_felt',
  'felt_work',
  'work_mom',
  'mom_except',
  'except_summer',
  'summer_kid',
  'kid_said',
  'said_would',
  'would_talk',
  'talk_steve',
  'steve_enrol',
  'enrol_kid',
  'kid_beforeaftercar',
  'beforeaftercar_program',
  'program_come',
  'come_septemb',
  'septemb_would',
  'would_take',
  'take_usual',
  'usual_also',
  'also_send',
  'send_program',
  'program_need',
  'need_*',
  '*_*',
  '*_*',
  '*_*',
  '*_also',
  'also_made',
  'made_sure',
  'sure_gave',
  'gave_grandkid',
  'grandkid_extra',
  'extra_tight',
  'tight_hug',
  'hug_today',
  'today_watch',
  'watch_happen',
  'happen_texa',
  'texa_make',
  'make_feel',
  'feel_seem',
  'seem_trivial',
  'trivial_*',
  '*_*',
  '*_husband',
  'husband_rob',
  'rob_kid',
  'kid_erica',
  'erica_mike',
  'mike_kid',
  'kid_marri',
  'marri_erica',
  'erica_husband',
  'husband_steve',
  'steve_live',
  'live_nearbi',
  'nearbi_us',
  'us_issu',
  'issu_concern',
  'concern_work',
  'work_full-tim',
  'full-tim_kid',
  'kid_&',
  '&_year',
  'year_ago',
  'ago_daughter',
  'daughter_ask',
  'ask_husband',
  'husband_would',
  'would_becom',
  'becom_full-tim',
  'full-tim_childcar',
  'childcar_could',
  'could_continu',
  'continu_work',
  'work_afford',
  'afford_comfort',
  'comfort_life',
  'life_agre',
  'agre_discuss',
  'discuss_much',
  'much_watch',
  'watch_babi',
  'babi_expect',
  'expect_teacher',
  'teacher_retir',
  'retir_year',
  'year_could',
  'could_take',
  'take_pension',
  'pension_husband',
  'husband_continu',
  'continu_work',
  'work_made',
  'made_sacrific',
  'sacrific_like',
  'like_vacat',
  'vacat_ad',
  'ad_save',
  'save_abl',
  'abl_make',
  'make_work',
  'work_could',
  'could_take',
  'take_full',
  'full_pension',
  'pension_husband',
  'husband_retir',
  'retir_year',
  'year_later',
  'later_arrang',
  'arrang_work',
  'work_enjoy',
  'enjoy_kid',
  'kid_except',
  'except_year',
  'year_start',
  'start_feel',
  'feel_like',
  'like_take',
  'take_advantag',
  'advantag_help',
  'help_lockdown',
  'lockdown_work',
  'work_home',
  'home_expect',
  'expect_us',
  'us_keep',
  'keep_kid',
  'kid_day',
  'day_want',
  'want_split',
  'split_time',
  'time_week',
  'week_sinc',
  'sinc_preschooldaycar',
  'preschooldaycar_close',
  'close_settl',
  'settl_us',
  'us_sil',
  'sil_complain',
  'complain_pretti',
  'pretti_much',
  'much_everi',
  'everi_day',
  'day_thing',
  'thing_got',
  'got_better',
  'better_kid',
  'kid_abl',
  'abl_school',
  'school_fast',
  'fast_forward',
  'forward_year',
  'year_bit',
  'bit_blowup',
  'blowup_kindergarten',
  'kindergarten_daughter',
  'daughter_want',
  'want_start',
  'start_school',
  'school_unknown',
  'unknown_insist',
  'insist_need',
  'need_go',
  'go_need',
  'need_break',
  'break_also',
  'also_ask',
  'ask_spend',
  'spend_time',
  'time_preschooldaycar',
  'preschooldaycar_program',
  'program_sil',
  'sil_complain',
  'complain_cost',
  'cost_push',
  'push_anyway',
  'anyway_relent',
  'relent_past',
  'past_spring',
  'spring_sil',
  'sil_push',
  'push_us',
  'us_take',
  'take_kid',
  'kid_week',
  'week_could',
  'could_go',
  'go_vacat',
  'vacat_said',
  'said_take',
  'take_kid',
  'kid_said',
  'said_afford',
  'afford_one',
  'one_went',
  'went_vacat',
  'vacat_mayb',
  'mayb_much',
  'much_background',
  'background_feel',
  'feel_like',
  'like_context',
  'context_import',
  'import_said',
  'said_daughter',
  'daughter_casual',
  'casual_convers',
  'convers_day',
  'day_mention',
  'mention_obgyn',
  'obgyn_appoint',
  'appoint_test',
  'test_ask',
  'ask_everyth',
  'everyth_okay',
  'okay_said',
  'said_steve',
  'steve_tri',
  'tri_babi',
  'babi_ask',
  'ask_childcar',
  'childcar_plan',
  'plan_look',
  'look_like',
  'like_crazi',
  'crazi_said',
  'said_us',
  'us_said',
  'said_would',
  'would_nice',
  'nice_told',
  'told_tri',
  'tri_anoth',
  'anoth_babi',
  'babi_said',
  'said_none',
  'none_busi',
  'busi_said',
  'said_im',
  'im_provid',
  'provid_year',
  'year_babysit',
  'babysit_told',
  'told_viabl',
  'viabl_childcar',
  'childcar_option',
  'option_new',
  'new_babi',
  'babi_beg',
  'beg_reconsid',
  'reconsid_go',
  'go_kindergarten',
  'kindergarten_feel',
  'feel_like',
  'like_get',
  'get_day',
  'day_back',
  'back_extent',
  'extent_refus',
  'refus_start',
  'start_infant',
  'infant_erica',
  'erica_said',
  'said_make',
  'make_choos',
  'choos_dream',
  'dream_kid',
  'kid_financi',
  'financi_stabil',
  'stabil_argu',
  'argu_two',
  'two_beauti',
  'beauti_children',
  'children_financi',
  'financi_stabl',
  'stabl_ruin',
  'ruin_anoth',
  'anoth_babi',
  'babi_might',
  'might_ta',
  'ta_erica',
  'erica_feel',
  'feel_like',
  'like_told',
  'told_sooner',
  'sooner_feel',
  'feel_like',
  'like_never',
  'never_agre',
  'agre_lifetim',
  'lifetim_rais',
  'rais_kid',
  'kid_&',
  '&_xb',
  'xb_edit',
  'edit_continu',
  'continu_watch',
  'watch_two',
  'two_grandchildren',
  'grandchildren_school',
  'school_summer',
  'summer_agre',
  'agre_enjoy',
  'enjoy_school',
  'school_provid',
  'provid_nice',
  'nice_break',
  'break_us',
  'us_fun',
  'fun_thing',
  'thing_kid',
  'kid_summer',
  'summer_want',
  'want_start',
  'start_anoth',
  'anoth_babi',
  'babi_edit',
  'edit_add',
  'add_bit',
  'bit_context',
  ...],
 ['older',
  'brother',
  'date',
  'anoth',
  'guy',
  'around',
  'year',
  'issu',
  'brother',
  'gay',
  'one',
  'wear',
  'wed',
  'ring',
  'order',
  'pretend',
  'marri',
  'see',
  'live',
  'countri',
  'gay',
  'marriag',
  'still',
  'allow',
  'romania',
  'despit',
  'brother',
  'boyfriend',
  'start',
  'wear',
  'wed',
  'ring',
  'recent',
  'ask',
  'brother',
  'told',
  'despit',
  'abl',
  'legal',
  'alreadi',
  'consid',
  'marri',
  'spiritu',
  'theyr',
  'hope',
  'one',
  'day',
  'gay',
  'marriag',
  'allow',
  'legal',
  'well',
  'either',
  'leav',
  'countri',
  'wait',
  'till',
  'gay',
  'marriag',
  'made',
  'legal',
  'well',
  'think',
  'nice',
  'told',
  'wear',
  'wed',
  'ring',
  'till',
  'actual',
  'get',
  'offici',
  'marri',
  'think',
  'kind',
  'distast',
  'told',
  'theyr',
  'symbol',
  'love',
  'theyr',
  'hurt',
  'anyon',
  'wear',
  'disagre',
  'theyr',
  'activ',
  'mislead',
  'peopl',
  'think',
  'theyr',
  'actual',
  'marri',
  'frankli',
  'make',
  'mockeri',
  'marriag',
  'brother',
  'told',
  'care',
  'peopl',
  'includ',
  'think',
  'wear',
  'wed',
  'ring',
  'mayb',
  'mind',
  'busi',
  'left',
  'furious',
  'gon',
  'na',
  'lie',
  'think',
  'comment',
  'kind',
  'line',
  'give',
  'opinion',
  'peopl',
  'wear',
  'wed',
  'ring',
  'theyr',
  'actual',
  'marri',
  'yet',
  'seem',
  'take',
  'person',
  'boyfriend',
  'also',
  'contact',
  'later',
  'told',
  'romant',
  'live',
  'concern',
  'stay',
  'aita',
  'older_brother',
  'brother_date',
  'date_anoth',
  'anoth_guy',
  'guy_around',
  'around_year',
  'year_issu',
  'issu_brother',
  'brother_gay',
  'gay_one',
  'one_wear',
  'wear_wed',
  'wed_ring',
  'ring_order',
  'order_pretend',
  'pretend_marri',
  'marri_see',
  'see_live',
  'live_countri',
  'countri_gay',
  'gay_marriag',
  'marriag_still',
  'still_allow',
  'allow_romania',
  'romania_despit',
  'despit_brother',
  'brother_boyfriend',
  'boyfriend_start',
  'start_wear',
  'wear_wed',
  'wed_ring',
  'ring_recent',
  'recent_ask',
  'ask_brother',
  'brother_told',
  'told_despit',
  'despit_abl',
  'abl_legal',
  'legal_alreadi',
  'alreadi_consid',
  'consid_marri',
  'marri_spiritu',
  'spiritu_theyr',
  'theyr_hope',
  'hope_one',
  'one_day',
  'day_gay',
  'gay_marriag',
  'marriag_allow',
  'allow_legal',
  'legal_well',
  'well_either',
  'either_leav',
  'leav_countri',
  'countri_wait',
  'wait_till',
  'till_gay',
  'gay_marriag',
  'marriag_made',
  'made_legal',
  'legal_well',
  'well_think',
  'think_nice',
  'nice_told',
  'told_wear',
  'wear_wed',
  'wed_ring',
  'ring_till',
  'till_actual',
  'actual_get',
  'get_offici',
  'offici_marri',
  'marri_think',
  'think_kind',
  'kind_distast',
  'distast_told',
  'told_theyr',
  'theyr_symbol',
  'symbol_love',
  'love_theyr',
  'theyr_hurt',
  'hurt_anyon',
  'anyon_wear',
  'wear_disagre',
  'disagre_theyr',
  'theyr_activ',
  'activ_mislead',
  'mislead_peopl',
  'peopl_think',
  'think_theyr',
  'theyr_actual',
  'actual_marri',
  'marri_frankli',
  'frankli_make',
  'make_mockeri',
  'mockeri_marriag',
  'marriag_brother',
  'brother_told',
  'told_care',
  'care_peopl',
  'peopl_includ',
  'includ_think',
  'think_wear',
  'wear_wed',
  'wed_ring',
  'ring_mayb',
  'mayb_mind',
  'mind_busi',
  'busi_left',
  'left_furious',
  'furious_gon',
  'gon_na',
  'na_lie',
  'lie_think',
  'think_comment',
  'comment_kind',
  'kind_line',
  'line_give',
  'give_opinion',
  'opinion_peopl',
  'peopl_wear',
  'wear_wed',
  'wed_ring',
  'ring_theyr',
  'theyr_actual',
  'actual_marri',
  'marri_yet',
  'yet_seem',
  'seem_take',
  'take_person',
  'person_boyfriend',
  'boyfriend_also',
  'also_contact',
  'contact_later',
  'later_told',
  'told_romant',
  'romant_live',
  'live_concern',
  'concern_stay',
  'stay_aita',
  'older_brother_date',
  'brother_date_anoth',
  'date_anoth_guy',
  'anoth_guy_around',
  'guy_around_year',
  'around_year_issu',
  'year_issu_brother',
  'issu_brother_gay',
  'brother_gay_one',
  'gay_one_wear',
  'one_wear_wed',
  'wear_wed_ring',
  'wed_ring_order',
  'ring_order_pretend',
  'order_pretend_marri',
  'pretend_marri_see',
  'marri_see_live',
  'see_live_countri',
  'live_countri_gay',
  'countri_gay_marriag',
  'gay_marriag_still',
  'marriag_still_allow',
  'still_allow_romania',
  'allow_romania_despit',
  'romania_despit_brother',
  'despit_brother_boyfriend',
  'brother_boyfriend_start',
  'boyfriend_start_wear',
  'start_wear_wed',
  'wear_wed_ring',
  'wed_ring_recent',
  'ring_recent_ask',
  'recent_ask_brother',
  'ask_brother_told',
  'brother_told_despit',
  'told_despit_abl',
  'despit_abl_legal',
  'abl_legal_alreadi',
  'legal_alreadi_consid',
  'alreadi_consid_marri',
  'consid_marri_spiritu',
  'marri_spiritu_theyr',
  'spiritu_theyr_hope',
  'theyr_hope_one',
  'hope_one_day',
  'one_day_gay',
  'day_gay_marriag',
  'gay_marriag_allow',
  'marriag_allow_legal',
  'allow_legal_well',
  'legal_well_either',
  'well_either_leav',
  'either_leav_countri',
  'leav_countri_wait',
  'countri_wait_till',
  'wait_till_gay',
  'till_gay_marriag',
  'gay_marriag_made',
  'marriag_made_legal',
  'made_legal_well',
  'legal_well_think',
  'well_think_nice',
  'think_nice_told',
  'nice_told_wear',
  'told_wear_wed',
  'wear_wed_ring',
  'wed_ring_till',
  'ring_till_actual',
  'till_actual_get',
  'actual_get_offici',
  'get_offici_marri',
  'offici_marri_think',
  'marri_think_kind',
  'think_kind_distast',
  'kind_distast_told',
  'distast_told_theyr',
  'told_theyr_symbol',
  'theyr_symbol_love',
  'symbol_love_theyr',
  'love_theyr_hurt',
  'theyr_hurt_anyon',
  'hurt_anyon_wear',
  'anyon_wear_disagre',
  'wear_disagre_theyr',
  'disagre_theyr_activ',
  'theyr_activ_mislead',
  'activ_mislead_peopl',
  'mislead_peopl_think',
  'peopl_think_theyr',
  'think_theyr_actual',
  'theyr_actual_marri',
  'actual_marri_frankli',
  'marri_frankli_make',
  'frankli_make_mockeri',
  'make_mockeri_marriag',
  'mockeri_marriag_brother',
  'marriag_brother_told',
  'brother_told_care',
  'told_care_peopl',
  'care_peopl_includ',
  'peopl_includ_think',
  'includ_think_wear',
  'think_wear_wed',
  'wear_wed_ring',
  'wed_ring_mayb',
  'ring_mayb_mind',
  'mayb_mind_busi',
  'mind_busi_left',
  'busi_left_furious',
  'left_furious_gon',
  'furious_gon_na',
  'gon_na_lie',
  'na_lie_think',
  'lie_think_comment',
  'think_comment_kind',
  'comment_kind_line',
  'kind_line_give',
  'line_give_opinion',
  'give_opinion_peopl',
  'opinion_peopl_wear',
  'peopl_wear_wed',
  'wear_wed_ring',
  'wed_ring_theyr',
  'ring_theyr_actual',
  'theyr_actual_marri',
  'actual_marri_yet',
  'marri_yet_seem',
  'yet_seem_take',
  'seem_take_person',
  'take_person_boyfriend',
  'person_boyfriend_also',
  'boyfriend_also_contact',
  'also_contact_later',
  'contact_later_told',
  'later_told_romant',
  'told_romant_live',
  'romant_live_concern',
  'live_concern_stay',
  'concern_stay_aita'],
 ['grew',
  'without',
  'father',
  'long',
  'time',
  'mom',
  'last',
  'year',
  'mom',
  'got',
  'marri',
  'step',
  'dad',
  'brad',
  'brad',
  'kid',
  'tessaf',
  'jakem',
  'dad',
  'pass',
  'away',
  'shortli',
  'born',
  'leav',
  'mom',
  'mountain',
  'debt',
  'one',
  'thing',
  'refus',
  'sell',
  'wed',
  'dress',
  'alway',
  'talk',
  'dream',
  'get',
  'marri',
  'wear',
  'dress',
  'least',
  'veil',
  'gorgeou',
  'simpl',
  'white',
  'dress',
  'long',
  'lace',
  'veil',
  'dad',
  'dress',
  'hand-mad',
  'design',
  'mom',
  'wed',
  'mom',
  'remarri',
  'still',
  'refus',
  'sell',
  'dress',
  'got',
  'new',
  'dress',
  'wed',
  'brad',
  'alway',
  'talk',
  'dress',
  'mine',
  'tessa',
  'got',
  'engag',
  'last',
  'week',
  'excit',
  'show',
  'ring',
  'talk',
  'wed',
  'plan',
  'tessa',
  'know',
  'much',
  'dress',
  'mean',
  'talk',
  'wed',
  'mom',
  'brad',
  'threw',
  'idea',
  'wear',
  'dress',
  'mom',
  'save',
  'wed',
  'caus',
  'itll',
  'save',
  'us',
  'much',
  'money',
  'mom',
  'brought',
  'fact',
  'comfort',
  'sinc',
  'save',
  'dress',
  'brad',
  'said',
  'mom',
  'agre',
  'sinc',
  'two',
  'wed',
  'dress',
  'wear',
  'one',
  'tessa',
  'also',
  'point',
  'dress',
  'would',
  'need',
  'mani',
  'alter',
  'even',
  'fit',
  'sinc',
  'im',
  'much',
  'shorter',
  'mom',
  'im',
  'thin',
  'mom',
  'tessa',
  'also',
  'said',
  'would',
  'year',
  'id',
  'need',
  'gon',
  'na',
  'issu',
  'mom',
  'fenc',
  'brad',
  'pull',
  'dress',
  'storag',
  'hand',
  'tessa',
  'freak',
  'grab',
  'dress',
  'hand',
  'told',
  'allow',
  'wear',
  'mom',
  'dress',
  'get',
  'mom',
  'dress',
  'buy',
  'allow',
  'wear',
  'dress',
  'mom',
  'save',
  'lock',
  'dress',
  'room',
  'all-day',
  'mom',
  'text',
  'come',
  'door',
  'ask',
  'come',
  'talk',
  'brad',
  'brad',
  'call',
  'spoil',
  'selfish',
  'say',
  'im',
  'act',
  'like',
  'huge',
  'brat',
  'cant',
  'let',
  'stranger',
  'wear',
  'thing',
  'dad',
  'left',
  'feel',
  'bad',
  'tessa',
  'realli',
  'upset',
  'cri',
  'text',
  'ask',
  'apolog',
  'give',
  'dress',
  'back',
  'cant',
  'tell',
  'im',
  'wrong',
  'brad',
  'tessa',
  'think',
  'im',
  'ass',
  'stepbroth',
  'friend',
  'agre',
  'stand',
  'ground',
  'grew_without',
  'without_father',
  'father_long',
  'long_time',
  'time_mom',
  'mom_last',
  'last_year',
  'year_mom',
  'mom_got',
  'got_marri',
  'marri_step',
  'step_dad',
  'dad_brad',
  'brad_brad',
  'brad_kid',
  'kid_tessaf',
  'tessaf_jakem',
  'jakem_dad',
  'dad_pass',
  'pass_away',
  'away_shortli',
  'shortli_born',
  'born_leav',
  'leav_mom',
  'mom_mountain',
  'mountain_debt',
  'debt_one',
  'one_thing',
  'thing_refus',
  'refus_sell',
  'sell_wed',
  'wed_dress',
  'dress_alway',
  'alway_talk',
  'talk_dream',
  'dream_get',
  'get_marri',
  'marri_wear',
  'wear_dress',
  'dress_least',
  'least_veil',
  'veil_gorgeou',
  'gorgeou_simpl',
  'simpl_white',
  'white_dress',
  'dress_long',
  'long_lace',
  'lace_veil',
  'veil_dad',
  'dad_dress',
  'dress_hand-mad',
  'hand-mad_design',
  'design_mom',
  'mom_wed',
  'wed_mom',
  'mom_remarri',
  'remarri_still',
  'still_refus',
  'refus_sell',
  'sell_dress',
  'dress_got',
  'got_new',
  'new_dress',
  'dress_wed',
  'wed_brad',
  'brad_alway',
  'alway_talk',
  'talk_dress',
  'dress_mine',
  'mine_tessa',
  'tessa_got',
  'got_engag',
  'engag_last',
  'last_week',
  'week_excit',
  'excit_show',
  'show_ring',
  'ring_talk',
  'talk_wed',
  'wed_plan',
  'plan_tessa',
  'tessa_know',
  'know_much',
  'much_dress',
  'dress_mean',
  'mean_talk',
  'talk_wed',
  'wed_mom',
  'mom_brad',
  'brad_threw',
  'threw_idea',
  'idea_wear',
  'wear_dress',
  'dress_mom',
  'mom_save',
  'save_wed',
  'wed_caus',
  'caus_itll',
  'itll_save',
  'save_us',
  'us_much',
  'much_money',
  'money_mom',
  'mom_brought',
  'brought_fact',
  'fact_comfort',
  'comfort_sinc',
  'sinc_save',
  'save_dress',
  'dress_brad',
  'brad_said',
  'said_mom',
  'mom_agre',
  'agre_sinc',
  'sinc_two',
  'two_wed',
  'wed_dress',
  'dress_wear',
  'wear_one',
  'one_tessa',
  'tessa_also',
  'also_point',
  'point_dress',
  'dress_would',
  'would_need',
  'need_mani',
  'mani_alter',
  'alter_even',
  'even_fit',
  'fit_sinc',
  'sinc_im',
  'im_much',
  'much_shorter',
  'shorter_mom',
  'mom_im',
  'im_thin',
  'thin_mom',
  'mom_tessa',
  'tessa_also',
  'also_said',
  'said_would',
  'would_year',
  'year_id',
  'id_need',
  'need_gon',
  'gon_na',
  'na_issu',
  'issu_mom',
  'mom_fenc',
  'fenc_brad',
  'brad_pull',
  'pull_dress',
  'dress_storag',
  'storag_hand',
  'hand_tessa',
  'tessa_freak',
  'freak_grab',
  'grab_dress',
  'dress_hand',
  'hand_told',
  'told_allow',
  'allow_wear',
  'wear_mom',
  'mom_dress',
  'dress_get',
  'get_mom',
  'mom_dress',
  'dress_buy',
  'buy_allow',
  'allow_wear',
  'wear_dress',
  'dress_mom',
  'mom_save',
  'save_lock',
  'lock_dress',
  'dress_room',
  'room_all-day',
  'all-day_mom',
  'mom_text',
  'text_come',
  'come_door',
  'door_ask',
  'ask_come',
  'come_talk',
  'talk_brad',
  'brad_brad',
  'brad_call',
  'call_spoil',
  'spoil_selfish',
  'selfish_say',
  'say_im',
  'im_act',
  'act_like',
  'like_huge',
  'huge_brat',
  'brat_cant',
  'cant_let',
  'let_stranger',
  'stranger_wear',
  'wear_thing',
  'thing_dad',
  'dad_left',
  'left_feel',
  'feel_bad',
  'bad_tessa',
  'tessa_realli',
  'realli_upset',
  'upset_cri',
  'cri_text',
  'text_ask',
  'ask_apolog',
  'apolog_give',
  'give_dress',
  'dress_back',
  'back_cant',
  'cant_tell',
  'tell_im',
  'im_wrong',
  'wrong_brad',
  'brad_tessa',
  'tessa_think',
  'think_im',
  'im_ass',
  'ass_stepbroth',
  'stepbroth_friend',
  'friend_agre',
  'agre_stand',
  'stand_ground',
  'grew_without_father',
  'without_father_long',
  'father_long_time',
  'long_time_mom',
  'time_mom_last',
  'mom_last_year',
  'last_year_mom',
  'year_mom_got',
  'mom_got_marri',
  'got_marri_step',
  'marri_step_dad',
  'step_dad_brad',
  'dad_brad_brad',
  'brad_brad_kid',
  'brad_kid_tessaf',
  'kid_tessaf_jakem',
  'tessaf_jakem_dad',
  'jakem_dad_pass',
  'dad_pass_away',
  'pass_away_shortli',
  'away_shortli_born',
  'shortli_born_leav',
  'born_leav_mom',
  'leav_mom_mountain',
  'mom_mountain_debt',
  'mountain_debt_one',
  'debt_one_thing',
  'one_thing_refus',
  'thing_refus_sell',
  'refus_sell_wed',
  'sell_wed_dress',
  'wed_dress_alway',
  'dress_alway_talk',
  'alway_talk_dream',
  'talk_dream_get',
  'dream_get_marri',
  'get_marri_wear',
  'marri_wear_dress',
  'wear_dress_least',
  'dress_least_veil',
  'least_veil_gorgeou',
  'veil_gorgeou_simpl',
  'gorgeou_simpl_white',
  'simpl_white_dress',
  'white_dress_long',
  'dress_long_lace',
  'long_lace_veil',
  'lace_veil_dad',
  'veil_dad_dress',
  'dad_dress_hand-mad',
  'dress_hand-mad_design',
  'hand-mad_design_mom',
  'design_mom_wed',
  'mom_wed_mom',
  'wed_mom_remarri',
  'mom_remarri_still',
  'remarri_still_refus',
  'still_refus_sell',
  'refus_sell_dress',
  'sell_dress_got',
  'dress_got_new',
  'got_new_dress',
  'new_dress_wed',
  'dress_wed_brad',
  'wed_brad_alway',
  'brad_alway_talk',
  'alway_talk_dress',
  'talk_dress_mine',
  'dress_mine_tessa',
  'mine_tessa_got',
  'tessa_got_engag',
  'got_engag_last',
  'engag_last_week',
  'last_week_excit',
  'week_excit_show',
  'excit_show_ring',
  'show_ring_talk',
  'ring_talk_wed',
  'talk_wed_plan',
  'wed_plan_tessa',
  'plan_tessa_know',
  'tessa_know_much',
  'know_much_dress',
  'much_dress_mean',
  'dress_mean_talk',
  'mean_talk_wed',
  'talk_wed_mom',
  'wed_mom_brad',
  'mom_brad_threw',
  'brad_threw_idea',
  'threw_idea_wear',
  'idea_wear_dress',
  'wear_dress_mom',
  'dress_mom_save',
  'mom_save_wed',
  'save_wed_caus',
  'wed_caus_itll',
  'caus_itll_save',
  'itll_save_us',
  'save_us_much',
  'us_much_money',
  'much_money_mom',
  'money_mom_brought',
  'mom_brought_fact',
  'brought_fact_comfort',
  'fact_comfort_sinc',
  'comfort_sinc_save',
  'sinc_save_dress',
  'save_dress_brad',
  'dress_brad_said',
  'brad_said_mom',
  'said_mom_agre',
  'mom_agre_sinc',
  'agre_sinc_two',
  'sinc_two_wed',
  'two_wed_dress',
  'wed_dress_wear',
  'dress_wear_one',
  'wear_one_tessa',
  'one_tessa_also',
  'tessa_also_point',
  'also_point_dress',
  'point_dress_would',
  'dress_would_need',
  'would_need_mani',
  'need_mani_alter',
  'mani_alter_even',
  'alter_even_fit',
  'even_fit_sinc',
  'fit_sinc_im',
  'sinc_im_much',
  'im_much_shorter',
  'much_shorter_mom',
  'shorter_mom_im',
  'mom_im_thin',
  'im_thin_mom',
  'thin_mom_tessa',
  'mom_tessa_also',
  'tessa_also_said',
  'also_said_would',
  'said_would_year',
  'would_year_id',
  'year_id_need',
  'id_need_gon',
  'need_gon_na',
  'gon_na_issu',
  'na_issu_mom',
  'issu_mom_fenc',
  'mom_fenc_brad',
  'fenc_brad_pull',
  'brad_pull_dress',
  'pull_dress_storag',
  'dress_storag_hand',
  'storag_hand_tessa',
  'hand_tessa_freak',
  'tessa_freak_grab',
  'freak_grab_dress',
  'grab_dress_hand',
  'dress_hand_told',
  'hand_told_allow',
  'told_allow_wear',
  'allow_wear_mom',
  'wear_mom_dress',
  'mom_dress_get',
  'dress_get_mom',
  'get_mom_dress',
  'mom_dress_buy',
  'dress_buy_allow',
  'buy_allow_wear',
  'allow_wear_dress',
  'wear_dress_mom',
  'dress_mom_save',
  'mom_save_lock',
  'save_lock_dress',
  'lock_dress_room',
  'dress_room_all-day',
  'room_all-day_mom',
  'all-day_mom_text',
  'mom_text_come',
  'text_come_door',
  'come_door_ask',
  'door_ask_come',
  'ask_come_talk',
  'come_talk_brad',
  'talk_brad_brad',
  'brad_brad_call',
  'brad_call_spoil',
  'call_spoil_selfish',
  'spoil_selfish_say',
  'selfish_say_im',
  'say_im_act',
  'im_act_like',
  'act_like_huge',
  'like_huge_brat',
  'huge_brat_cant',
  'brat_cant_let',
  'cant_let_stranger',
  'let_stranger_wear',
  'stranger_wear_thing',
  'wear_thing_dad',
  'thing_dad_left',
  'dad_left_feel',
  'left_feel_bad',
  'feel_bad_tessa',
  'bad_tessa_realli',
  'tessa_realli_upset',
  'realli_upset_cri',
  'upset_cri_text',
  'cri_text_ask',
  'text_ask_apolog',
  'ask_apolog_give',
  'apolog_give_dress',
  'give_dress_back',
  'dress_back_cant',
  'back_cant_tell',
  'cant_tell_im',
  'tell_im_wrong',
  'im_wrong_brad',
  'wrong_brad_tessa',
  'brad_tessa_think',
  'tessa_think_im',
  'think_im_ass',
  'im_ass_stepbroth',
  'ass_stepbroth_friend',
  'stepbroth_friend_agre',
  'friend_agre_stand',
  'agre_stand_ground'],
 ['daughter',
  'amanda',
  'husband',
  'chri',
  'marri',
  'month',
  'ago',
  'amanda',
  'live',
  'sinc',
  'colleg',
  'still',
  'gener',
  'area',
  'current',
  'amanda',
  'chri',
  'focus',
  'futur',
  'mostli',
  'fun',
  'thing',
  'theyr',
  'still',
  'young',
  'noth',
  'wrong',
  'opinion',
  'think',
  'young',
  'peopl',
  'kind',
  'period',
  'life',
  'especi',
  'pandem',
  'got',
  'call',
  'amanda',
  'chri',
  'told',
  'taken',
  'sever',
  'test',
  'confirm',
  'amanda',
  'pregnant',
  'would',
  'host',
  'announc',
  'dinner',
  'want',
  'immedi',
  'famili',
  'know',
  'right',
  'away',
  'could',
  'bare',
  'wait',
  'tri',
  'sinc',
  'marri',
  '*',
  '*',
  'note',
  'intend',
  'pregnanc',
  '*',
  '*',
  'told',
  'thrill',
  'grandpa',
  'dinner',
  'parti',
  'happen',
  'last',
  'week',
  'announc',
  'met',
  'happi',
  'excit',
  'chri',
  'amanda',
  'talk',
  'friend',
  'chri',
  'made',
  'comment',
  'along',
  'line',
  'good',
  'thing',
  'bobbi',
  'work',
  'confus',
  'ask',
  'talk',
  'amanda',
  'reveal',
  'chri',
  'expect',
  'alway',
  'watch',
  'babi',
  'work',
  'could',
  'fun',
  'time',
  'work',
  'love',
  'children',
  'never',
  'regret',
  'dad',
  'sign',
  'new',
  'babi',
  'im',
  'done',
  'want',
  'enjoy',
  'retir',
  'free',
  'without',
  'underag',
  'children',
  'explain',
  'amanda',
  'chri',
  'also',
  'mani',
  'great',
  'daycar',
  'option',
  'area',
  'amanda',
  'began',
  'caus',
  'scene',
  'told',
  'thrill',
  'grandpa',
  'respond',
  'exactli',
  'thrill',
  '*',
  '*',
  'grandpa',
  '*',
  '*',
  'parent',
  'babi',
  'said',
  'help',
  'sinc',
  'worri',
  'work',
  'receiv',
  'pension',
  'young',
  'suppos',
  'best',
  'year',
  'life',
  'think',
  'unfair',
  'chriss',
  'life',
  'babi',
  'frank',
  'respond',
  'amanda',
  'cours',
  'chriss',
  'life',
  'go',
  'babi',
  'mean',
  'parent',
  'gotten',
  'pregnant',
  'expect',
  'someon',
  'els',
  'rais',
  '*',
  '*',
  '*',
  '*',
  'child',
  'amanda',
  'yell',
  'surpris',
  'put',
  'shitti',
  'nurs',
  'home',
  'son',
  'michael',
  'say',
  'harsh',
  'deliveri',
  'messag',
  'son',
  'nathan',
  'agre',
  'amanda',
  'chri',
  'expect',
  'much',
  'irrespons',
  'purpos',
  'get',
  'pregnant',
  'believ',
  'time',
  'rais',
  'babi',
  'sister',
  'sandra',
  'howev',
  'told',
  'comment',
  'callou',
  'misogynist',
  'rais',
  'newborn',
  'twenti',
  'year',
  'realiz',
  'much',
  'harder',
  'parent',
  'gotten',
  'agre',
  'start',
  'provid',
  'least',
  'four',
  'day',
  'childcar',
  'per',
  'week',
  'go',
  'multipl',
  'famili',
  'member',
  'agre',
  'sandra',
  'im',
  'look',
  'unbias',
  'perspect',
  'aita',
  'daughter_amanda',
  'amanda_husband',
  'husband_chri',
  'chri_marri',
  'marri_month',
  'month_ago',
  'ago_amanda',
  'amanda_live',
  'live_sinc',
  'sinc_colleg',
  'colleg_still',
  'still_gener',
  'gener_area',
  'area_current',
  'current_amanda',
  'amanda_chri',
  'chri_focus',
  'focus_futur',
  'futur_mostli',
  'mostli_fun',
  'fun_thing',
  'thing_theyr',
  'theyr_still',
  'still_young',
  'young_noth',
  'noth_wrong',
  'wrong_opinion',
  'opinion_think',
  'think_young',
  'young_peopl',
  'peopl_kind',
  'kind_period',
  'period_life',
  'life_especi',
  'especi_pandem',
  'pandem_got',
  'got_call',
  'call_amanda',
  'amanda_chri',
  'chri_told',
  'told_taken',
  'taken_sever',
  'sever_test',
  'test_confirm',
  'confirm_amanda',
  'amanda_pregnant',
  'pregnant_would',
  'would_host',
  'host_announc',
  'announc_dinner',
  'dinner_want',
  'want_immedi',
  'immedi_famili',
  'famili_know',
  'know_right',
  'right_away',
  'away_could',
  'could_bare',
  'bare_wait',
  'wait_tri',
  'tri_sinc',
  'sinc_marri',
  'marri_*',
  '*_*',
  '*_note',
  'note_intend',
  'intend_pregnanc',
  'pregnanc_*',
  '*_*',
  '*_told',
  'told_thrill',
  'thrill_grandpa',
  'grandpa_dinner',
  'dinner_parti',
  'parti_happen',
  'happen_last',
  'last_week',
  'week_announc',
  'announc_met',
  'met_happi',
  'happi_excit',
  'excit_chri',
  'chri_amanda',
  'amanda_talk',
  'talk_friend',
  'friend_chri',
  'chri_made',
  'made_comment',
  'comment_along',
  'along_line',
  'line_good',
  'good_thing',
  'thing_bobbi',
  'bobbi_work',
  'work_confus',
  'confus_ask',
  'ask_talk',
  'talk_amanda',
  'amanda_reveal',
  'reveal_chri',
  'chri_expect',
  'expect_alway',
  'alway_watch',
  'watch_babi',
  'babi_work',
  'work_could',
  'could_fun',
  'fun_time',
  'time_work',
  'work_love',
  'love_children',
  'children_never',
  'never_regret',
  'regret_dad',
  'dad_sign',
  'sign_new',
  'new_babi',
  'babi_im',
  'im_done',
  'done_want',
  'want_enjoy',
  'enjoy_retir',
  'retir_free',
  'free_without',
  'without_underag',
  'underag_children',
  'children_explain',
  'explain_amanda',
  'amanda_chri',
  'chri_also',
  'also_mani',
  'mani_great',
  'great_daycar',
  'daycar_option',
  'option_area',
  'area_amanda',
  'amanda_began',
  'began_caus',
  'caus_scene',
  'scene_told',
  'told_thrill',
  'thrill_grandpa',
  'grandpa_respond',
  'respond_exactli',
  'exactli_thrill',
  'thrill_*',
  '*_*',
  '*_grandpa',
  'grandpa_*',
  '*_*',
  '*_parent',
  'parent_babi',
  'babi_said',
  'said_help',
  'help_sinc',
  'sinc_worri',
  'worri_work',
  'work_receiv',
  'receiv_pension',
  'pension_young',
  'young_suppos',
  'suppos_best',
  'best_year',
  'year_life',
  'life_think',
  'think_unfair',
  'unfair_chriss',
  'chriss_life',
  'life_babi',
  'babi_frank',
  'frank_respond',
  'respond_amanda',
  'amanda_cours',
  'cours_chriss',
  'chriss_life',
  'life_go',
  'go_babi',
  'babi_mean',
  'mean_parent',
  'parent_gotten',
  'gotten_pregnant',
  'pregnant_expect',
  'expect_someon',
  'someon_els',
  'els_rais',
  'rais_*',
  '*_*',
  '*_*',
  '*_*',
  '*_child',
  'child_amanda',
  'amanda_yell',
  'yell_surpris',
  'surpris_put',
  'put_shitti',
  'shitti_nurs',
  'nurs_home',
  'home_son',
  'son_michael',
  'michael_say',
  'say_harsh',
  'harsh_deliveri',
  'deliveri_messag',
  'messag_son',
  'son_nathan',
  'nathan_agre',
  'agre_amanda',
  'amanda_chri',
  'chri_expect',
  'expect_much',
  'much_irrespons',
  'irrespons_purpos',
  'purpos_get',
  'get_pregnant',
  'pregnant_believ',
  'believ_time',
  'time_rais',
  'rais_babi',
  'babi_sister',
  'sister_sandra',
  'sandra_howev',
  'howev_told',
  'told_comment',
  'comment_callou',
  'callou_misogynist',
  'misogynist_rais',
  'rais_newborn',
  'newborn_twenti',
  'twenti_year',
  'year_realiz',
  'realiz_much',
  'much_harder',
  'harder_parent',
  'parent_gotten',
  'gotten_agre',
  'agre_start',
  'start_provid',
  'provid_least',
  'least_four',
  'four_day',
  'day_childcar',
  'childcar_per',
  'per_week',
  'week_go',
  'go_multipl',
  'multipl_famili',
  'famili_member',
  'member_agre',
  'agre_sandra',
  'sandra_im',
  'im_look',
  'look_unbias',
  'unbias_perspect',
  'perspect_aita',
  'daughter_amanda_husband',
  'amanda_husband_chri',
  'husband_chri_marri',
  'chri_marri_month',
  'marri_month_ago',
  'month_ago_amanda',
  'ago_amanda_live',
  'amanda_live_sinc',
  'live_sinc_colleg',
  'sinc_colleg_still',
  'colleg_still_gener',
  'still_gener_area',
  'gener_area_current',
  'area_current_amanda',
  'current_amanda_chri',
  'amanda_chri_focus',
  'chri_focus_futur',
  'focus_futur_mostli',
  'futur_mostli_fun',
  'mostli_fun_thing',
  'fun_thing_theyr',
  'thing_theyr_still',
  'theyr_still_young',
  'still_young_noth',
  'young_noth_wrong',
  'noth_wrong_opinion',
  'wrong_opinion_think',
  'opinion_think_young',
  'think_young_peopl',
  'young_peopl_kind',
  'peopl_kind_period',
  'kind_period_life',
  'period_life_especi',
  'life_especi_pandem',
  'especi_pandem_got',
  'pandem_got_call',
  'got_call_amanda',
  'call_amanda_chri',
  'amanda_chri_told',
  'chri_told_taken',
  'told_taken_sever',
  'taken_sever_test',
  'sever_test_confirm',
  'test_confirm_amanda',
  'confirm_amanda_pregnant',
  'amanda_pregnant_would',
  'pregnant_would_host',
  'would_host_announc',
  'host_announc_dinner',
  'announc_dinner_want',
  'dinner_want_immedi',
  'want_immedi_famili',
  'immedi_famili_know',
  'famili_know_right',
  'know_right_away',
  'right_away_could',
  'away_could_bare',
  'could_bare_wait',
  'bare_wait_tri',
  'wait_tri_sinc',
  'tri_sinc_marri',
  'sinc_marri_*',
  'marri_*_*',
  '*_*_note',
  '*_note_intend',
  'note_intend_pregnanc',
  'intend_pregnanc_*',
  'pregnanc_*_*',
  '*_*_told',
  '*_told_thrill',
  'told_thrill_grandpa',
  'thrill_grandpa_dinner',
  'grandpa_dinner_parti',
  'dinner_parti_happen',
  'parti_happen_last',
  'happen_last_week',
  'last_week_announc',
  'week_announc_met',
  'announc_met_happi',
  'met_happi_excit',
  'happi_excit_chri',
  'excit_chri_amanda',
  'chri_amanda_talk',
  'amanda_talk_friend',
  'talk_friend_chri',
  'friend_chri_made',
  'chri_made_comment',
  'made_comment_along',
  'comment_along_line',
  'along_line_good',
  'line_good_thing',
  'good_thing_bobbi',
  'thing_bobbi_work',
  'bobbi_work_confus',
  'work_confus_ask',
  'confus_ask_talk',
  'ask_talk_amanda',
  'talk_amanda_reveal',
  'amanda_reveal_chri',
  'reveal_chri_expect',
  'chri_expect_alway',
  'expect_alway_watch',
  'alway_watch_babi',
  'watch_babi_work',
  'babi_work_could',
  'work_could_fun',
  'could_fun_time',
  'fun_time_work',
  'time_work_love',
  'work_love_children',
  'love_children_never',
  'children_never_regret',
  'never_regret_dad',
  'regret_dad_sign',
  'dad_sign_new',
  'sign_new_babi',
  'new_babi_im',
  'babi_im_done',
  'im_done_want',
  'done_want_enjoy',
  'want_enjoy_retir',
  'enjoy_retir_free',
  'retir_free_without',
  'free_without_underag',
  'without_underag_children',
  'underag_children_explain',
  'children_explain_amanda',
  'explain_amanda_chri',
  'amanda_chri_also',
  'chri_also_mani',
  'also_mani_great',
  'mani_great_daycar',
  'great_daycar_option',
  'daycar_option_area',
  'option_area_amanda',
  'area_amanda_began',
  'amanda_began_caus',
  'began_caus_scene',
  'caus_scene_told',
  'scene_told_thrill',
  'told_thrill_grandpa',
  'thrill_grandpa_respond',
  'grandpa_respond_exactli',
  'respond_exactli_thrill',
  'exactli_thrill_*',
  'thrill_*_*',
  '*_*_grandpa',
  '*_grandpa_*',
  'grandpa_*_*',
  '*_*_parent',
  '*_parent_babi',
  'parent_babi_said',
  'babi_said_help',
  'said_help_sinc',
  'help_sinc_worri',
  'sinc_worri_work',
  'worri_work_receiv',
  'work_receiv_pension',
  'receiv_pension_young',
  'pension_young_suppos',
  'young_suppos_best',
  'suppos_best_year',
  'best_year_life',
  'year_life_think',
  'life_think_unfair',
  'think_unfair_chriss',
  'unfair_chriss_life',
  'chriss_life_babi',
  'life_babi_frank',
  'babi_frank_respond',
  'frank_respond_amanda',
  'respond_amanda_cours',
  'amanda_cours_chriss',
  'cours_chriss_life',
  'chriss_life_go',
  'life_go_babi',
  'go_babi_mean',
  'babi_mean_parent',
  'mean_parent_gotten',
  'parent_gotten_pregnant',
  'gotten_pregnant_expect',
  'pregnant_expect_someon',
  'expect_someon_els',
  'someon_els_rais',
  'els_rais_*',
  'rais_*_*',
  '*_*_*',
  '*_*_*',
  '*_*_child',
  '*_child_amanda',
  'child_amanda_yell',
  'amanda_yell_surpris',
  'yell_surpris_put',
  'surpris_put_shitti',
  'put_shitti_nurs',
  'shitti_nurs_home',
  'nurs_home_son',
  'home_son_michael',
  'son_michael_say',
  'michael_say_harsh',
  'say_harsh_deliveri',
  'harsh_deliveri_messag',
  'deliveri_messag_son',
  'messag_son_nathan',
  'son_nathan_agre',
  'nathan_agre_amanda',
  'agre_amanda_chri',
  'amanda_chri_expect',
  'chri_expect_much',
  'expect_much_irrespons',
  'much_irrespons_purpos',
  'irrespons_purpos_get',
  'purpos_get_pregnant',
  'get_pregnant_believ',
  'pregnant_believ_time',
  'believ_time_rais',
  'time_rais_babi',
  'rais_babi_sister',
  'babi_sister_sandra',
  'sister_sandra_howev',
  'sandra_howev_told',
  'howev_told_comment',
  'told_comment_callou',
  'comment_callou_misogynist',
  'callou_misogynist_rais',
  'misogynist_rais_newborn',
  'rais_newborn_twenti',
  'newborn_twenti_year',
  'twenti_year_realiz',
  'year_realiz_much',
  'realiz_much_harder',
  'much_harder_parent',
  'harder_parent_gotten',
  'parent_gotten_agre',
  'gotten_agre_start',
  'agre_start_provid',
  'start_provid_least',
  'provid_least_four',
  'least_four_day',
  'four_day_childcar',
  'day_childcar_per',
  'childcar_per_week',
  'per_week_go',
  'week_go_multipl',
  'go_multipl_famili',
  'multipl_famili_member',
  'famili_member_agre',
  'member_agre_sandra',
  'agre_sandra_im',
  'sandra_im_look',
  'im_look_unbias',
  'look_unbias_perspect',
  'unbias_perspect_aita'],
 ['throwaway',
  'account',
  'ill',
  'tri',
  'keep',
  'brief',
  'possibl',
  'english',
  'first',
  'languag',
  'apologis',
  'mistak',
  'work',
  'offic',
  'job',
  'co-work',
  'ann',
  'ann',
  'current',
  'pregnant',
  'around',
  'month',
  'pregnant',
  'dedic',
  'break',
  'room',
  'go',
  'lunch',
  'allow',
  'eat',
  'anyth',
  'drink',
  'anyth',
  'except',
  'water',
  'bottl',
  'offic',
  'comput',
  'break',
  'schedul',
  'everyday',
  'ann',
  'go',
  'break',
  'togeth',
  'lunch',
  'break',
  'one',
  'els',
  'schedul',
  'take',
  'break',
  'earlier',
  'later',
  'break',
  'room',
  'chair',
  'coupl',
  'couch',
  'past',
  'two',
  'week',
  'ann',
  'start',
  'take',
  'nap',
  'one',
  'couch',
  'lunch',
  'break',
  'know',
  'busi',
  'break',
  'want',
  'last',
  'friday',
  'ann',
  'take',
  'break',
  'usual',
  'listen',
  'music',
  'headphon',
  'around',
  'got',
  'go',
  'back',
  'work',
  'realli',
  'pay',
  'attent',
  'ann',
  'everyon',
  'confus',
  'say',
  'ann',
  'around',
  'need',
  'boss',
  'went',
  'break',
  'room',
  'ann',
  'still',
  'sleep',
  'ann',
  'got',
  'warn',
  'boss',
  'ann',
  'angri',
  'break',
  'end',
  'time',
  'woken',
  'said',
  'im',
  'selfish',
  'careless',
  'lot',
  'cowork',
  'ann',
  'side',
  'agre',
  'told',
  'ann',
  'cant',
  'wake',
  'sleep',
  'break',
  'said',
  'babi',
  'make',
  'tire',
  'accus',
  'call',
  'lazi',
  'insensit',
  'edit',
  'add',
  'break',
  'end',
  'scroll',
  'phone',
  'listen',
  'music',
  'adhd',
  'thing',
  'im',
  'quit',
  'oblivi',
  'surround',
  'wake',
  'ann',
  'malic',
  'ann',
  'ask',
  'wake',
  'wouldv',
  'done',
  'edit',
  'work',
  'place',
  'cant',
  'leav',
  'work',
  'station',
  'left',
  'go',
  'look',
  'ann',
  'get',
  'back',
  'work',
  'wouldv',
  'gotten',
  'troubl',
  'boss',
  'alreadi',
  'look',
  'ann',
  'cowork',
  'need',
  'someth',
  'edit',
  'ann',
  'normal',
  'set',
  'alarm',
  'doze',
  'know',
  'wake',
  'usual',
  'thank',
  'award',
  'throwaway_account',
  'account_ill',
  'ill_tri',
  'tri_keep',
  'keep_brief',
  'brief_possibl',
  'possibl_english',
  'english_first',
  'first_languag',
  'languag_apologis',
  'apologis_mistak',
  'mistak_work',
  'work_offic',
  'offic_job',
  'job_co-work',
  'co-work_ann',
  'ann_ann',
  'ann_current',
  'current_pregnant',
  'pregnant_around',
  'around_month',
  'month_pregnant',
  'pregnant_dedic',
  'dedic_break',
  'break_room',
  'room_go',
  'go_lunch',
  'lunch_allow',
  'allow_eat',
  'eat_anyth',
  'anyth_drink',
  'drink_anyth',
  'anyth_except',
  'except_water',
  'water_bottl',
  'bottl_offic',
  'offic_comput',
  'comput_break',
  'break_schedul',
  'schedul_everyday',
  'everyday_ann',
  'ann_go',
  'go_break',
  'break_togeth',
  'togeth_lunch',
  'lunch_break',
  'break_one',
  'one_els',
  'els_schedul',
  'schedul_take',
  'take_break',
  'break_earlier',
  'earlier_later',
  'later_break',
  'break_room',
  'room_chair',
  'chair_coupl',
  'coupl_couch',
  'couch_past',
  'past_two',
  'two_week',
  'week_ann',
  'ann_start',
  'start_take',
  'take_nap',
  'nap_one',
  'one_couch',
  'couch_lunch',
  'lunch_break',
  'break_know',
  'know_busi',
  'busi_break',
  'break_want',
  'want_last',
  'last_friday',
  'friday_ann',
  'ann_take',
  'take_break',
  'break_usual',
  'usual_listen',
  'listen_music',
  'music_headphon',
  'headphon_around',
  'around_got',
  'got_go',
  'go_back',
  'back_work',
  'work_realli',
  'realli_pay',
  'pay_attent',
  'attent_ann',
  'ann_everyon',
  'everyon_confus',
  'confus_say',
  'say_ann',
  'ann_around',
  'around_need',
  'need_boss',
  'boss_went',
  'went_break',
  'break_room',
  'room_ann',
  'ann_still',
  'still_sleep',
  'sleep_ann',
  'ann_got',
  'got_warn',
  'warn_boss',
  'boss_ann',
  'ann_angri',
  'angri_break',
  'break_end',
  'end_time',
  'time_woken',
  'woken_said',
  'said_im',
  'im_selfish',
  'selfish_careless',
  'careless_lot',
  'lot_cowork',
  'cowork_ann',
  'ann_side',
  'side_agre',
  'agre_told',
  'told_ann',
  'ann_cant',
  'cant_wake',
  'wake_sleep',
  'sleep_break',
  'break_said',
  'said_babi',
  'babi_make',
  'make_tire',
  'tire_accus',
  'accus_call',
  'call_lazi',
  'lazi_insensit',
  'insensit_edit',
  'edit_add',
  'add_break',
  'break_end',
  'end_scroll',
  'scroll_phone',
  'phone_listen',
  'listen_music',
  'music_adhd',
  'adhd_thing',
  'thing_im',
  'im_quit',
  'quit_oblivi',
  'oblivi_surround',
  'surround_wake',
  'wake_ann',
  'ann_malic',
  'malic_ann',
  'ann_ask',
  'ask_wake',
  'wake_wouldv',
  'wouldv_done',
  'done_edit',
  'edit_work',
  'work_place',
  'place_cant',
  'cant_leav',
  'leav_work',
  'work_station',
  'station_left',
  'left_go',
  'go_look',
  'look_ann',
  'ann_get',
  'get_back',
  'back_work',
  'work_wouldv',
  'wouldv_gotten',
  'gotten_troubl',
  'troubl_boss',
  'boss_alreadi',
  'alreadi_look',
  'look_ann',
  'ann_cowork',
  'cowork_need',
  'need_someth',
  'someth_edit',
  'edit_ann',
  'ann_normal',
  'normal_set',
  'set_alarm',
  'alarm_doze',
  'doze_know',
  'know_wake',
  'wake_usual',
  'usual_thank',
  'thank_award',
  'throwaway_account_ill',
  'account_ill_tri',
  'ill_tri_keep',
  'tri_keep_brief',
  'keep_brief_possibl',
  'brief_possibl_english',
  'possibl_english_first',
  'english_first_languag',
  'first_languag_apologis',
  'languag_apologis_mistak',
  'apologis_mistak_work',
  'mistak_work_offic',
  'work_offic_job',
  'offic_job_co-work',
  'job_co-work_ann',
  'co-work_ann_ann',
  'ann_ann_current',
  'ann_current_pregnant',
  'current_pregnant_around',
  'pregnant_around_month',
  'around_month_pregnant',
  'month_pregnant_dedic',
  'pregnant_dedic_break',
  'dedic_break_room',
  'break_room_go',
  'room_go_lunch',
  'go_lunch_allow',
  'lunch_allow_eat',
  'allow_eat_anyth',
  'eat_anyth_drink',
  'anyth_drink_anyth',
  'drink_anyth_except',
  'anyth_except_water',
  'except_water_bottl',
  'water_bottl_offic',
  'bottl_offic_comput',
  'offic_comput_break',
  'comput_break_schedul',
  'break_schedul_everyday',
  'schedul_everyday_ann',
  'everyday_ann_go',
  'ann_go_break',
  'go_break_togeth',
  'break_togeth_lunch',
  'togeth_lunch_break',
  'lunch_break_one',
  'break_one_els',
  'one_els_schedul',
  'els_schedul_take',
  'schedul_take_break',
  'take_break_earlier',
  'break_earlier_later',
  'earlier_later_break',
  'later_break_room',
  'break_room_chair',
  'room_chair_coupl',
  'chair_coupl_couch',
  'coupl_couch_past',
  'couch_past_two',
  'past_two_week',
  'two_week_ann',
  'week_ann_start',
  'ann_start_take',
  'start_take_nap',
  'take_nap_one',
  'nap_one_couch',
  'one_couch_lunch',
  'couch_lunch_break',
  'lunch_break_know',
  'break_know_busi',
  'know_busi_break',
  'busi_break_want',
  'break_want_last',
  'want_last_friday',
  'last_friday_ann',
  'friday_ann_take',
  'ann_take_break',
  'take_break_usual',
  'break_usual_listen',
  'usual_listen_music',
  'listen_music_headphon',
  'music_headphon_around',
  'headphon_around_got',
  'around_got_go',
  'got_go_back',
  'go_back_work',
  'back_work_realli',
  'work_realli_pay',
  'realli_pay_attent',
  'pay_attent_ann',
  'attent_ann_everyon',
  'ann_everyon_confus',
  'everyon_confus_say',
  'confus_say_ann',
  'say_ann_around',
  'ann_around_need',
  'around_need_boss',
  'need_boss_went',
  'boss_went_break',
  'went_break_room',
  'break_room_ann',
  'room_ann_still',
  'ann_still_sleep',
  'still_sleep_ann',
  'sleep_ann_got',
  'ann_got_warn',
  'got_warn_boss',
  'warn_boss_ann',
  'boss_ann_angri',
  'ann_angri_break',
  'angri_break_end',
  'break_end_time',
  'end_time_woken',
  'time_woken_said',
  'woken_said_im',
  'said_im_selfish',
  'im_selfish_careless',
  'selfish_careless_lot',
  'careless_lot_cowork',
  'lot_cowork_ann',
  'cowork_ann_side',
  'ann_side_agre',
  'side_agre_told',
  'agre_told_ann',
  'told_ann_cant',
  'ann_cant_wake',
  'cant_wake_sleep',
  'wake_sleep_break',
  'sleep_break_said',
  'break_said_babi',
  'said_babi_make',
  'babi_make_tire',
  'make_tire_accus',
  'tire_accus_call',
  'accus_call_lazi',
  'call_lazi_insensit',
  'lazi_insensit_edit',
  'insensit_edit_add',
  'edit_add_break',
  'add_break_end',
  'break_end_scroll',
  'end_scroll_phone',
  'scroll_phone_listen',
  'phone_listen_music',
  'listen_music_adhd',
  'music_adhd_thing',
  'adhd_thing_im',
  'thing_im_quit',
  'im_quit_oblivi',
  'quit_oblivi_surround',
  'oblivi_surround_wake',
  'surround_wake_ann',
  'wake_ann_malic',
  'ann_malic_ann',
  'malic_ann_ask',
  'ann_ask_wake',
  'ask_wake_wouldv',
  'wake_wouldv_done',
  'wouldv_done_edit',
  'done_edit_work',
  'edit_work_place',
  'work_place_cant',
  'place_cant_leav',
  'cant_leav_work',
  'leav_work_station',
  'work_station_left',
  'station_left_go',
  'left_go_look',
  'go_look_ann',
  'look_ann_get',
  'ann_get_back',
  'get_back_work',
  'back_work_wouldv',
  'work_wouldv_gotten',
  'wouldv_gotten_troubl',
  'gotten_troubl_boss',
  'troubl_boss_alreadi',
  'boss_alreadi_look',
  'alreadi_look_ann',
  'look_ann_cowork',
  'ann_cowork_need',
  'cowork_need_someth',
  'need_someth_edit',
  'someth_edit_ann',
  'edit_ann_normal',
  'ann_normal_set',
  'normal_set_alarm',
  'set_alarm_doze',
  'alarm_doze_know',
  'doze_know_wake',
  'know_wake_usual',
  'wake_usual_thank',
  'usual_thank_award'],
 ['husband',
  'compani',
  'recent',
  'chose',
  'attend',
  'confer',
  'miami',
  'chose',
  'co-work',
  'ton',
  'candid',
  'quit',
  'honor',
  'compani',
  'told',
  'allow',
  'bring',
  'spousespartn',
  'spring',
  'plane',
  'ticket',
  'us',
  'want',
  'bring',
  'us',
  'theyd',
  'buy',
  'ticket',
  'pocket',
  'husband',
  'ask',
  'want',
  'go',
  'emphat',
  'told',
  'id',
  'never',
  'florida',
  'life',
  'thought',
  'itd',
  'fun',
  'trip',
  'told',
  'great',
  'went',
  'websit',
  'buy',
  'ticket',
  'ask',
  'id',
  'ok',
  'fli',
  'coach',
  'even',
  'though',
  'hed',
  'fli',
  'first',
  'class',
  'way',
  '--',
  'coach',
  'way',
  'home',
  'ask',
  'fli',
  'togeth',
  'repli',
  'first',
  'class',
  'expens',
  'feel',
  'bad',
  'cant',
  'afford',
  'especi',
  'want',
  'go',
  'fun',
  'miami',
  'flight',
  'hour',
  'realli',
  'realli',
  'bother',
  'understood',
  'first',
  'class',
  'ticket',
  'would',
  'strain',
  'budget',
  'bit',
  'kind',
  'man',
  'live',
  'first',
  'class',
  'wife',
  'sit',
  'coach',
  'ask',
  'respond',
  'come',
  'im',
  'take',
  'along',
  'work',
  'trip',
  'earn',
  'first',
  'class',
  'seat',
  'work',
  'hard',
  'reward',
  'insist',
  'truli',
  'afford',
  'first',
  'class',
  'seat',
  'could',
  'would',
  'hurt',
  'littl',
  'could',
  'gentleman',
  'give',
  'seat',
  'argu',
  'ultim',
  'agre',
  'give',
  'seat',
  'good',
  'time',
  'miami',
  'littl',
  'mad',
  'sinc',
  'say',
  'earn',
  'first',
  'class',
  'seat',
  'free',
  'cost',
  'us',
  'noth',
  'unlik',
  'plane',
  'ticket',
  'let',
  'enjoy',
  'hed',
  'earn',
  'instead',
  'guilt',
  'think',
  'babi',
  'put',
  'wife',
  'comfort',
  'especi',
  'sinc',
  'made',
  'choic',
  'cheap',
  'close',
  'parent',
  'weve',
  'taken',
  'argument',
  'mediat',
  'split',
  'father',
  'agre',
  'gentleman',
  'mother',
  'think',
  'earn',
  'first',
  'class',
  'seat',
  'let',
  'ill',
  'ask',
  'aita',
  'husband_compani',
  'compani_recent',
  'recent_chose',
  'chose_attend',
  'attend_confer',
  'confer_miami',
  'miami_chose',
  'chose_co-work',
  'co-work_ton',
  'ton_candid',
  'candid_quit',
  'quit_honor',
  'honor_compani',
  'compani_told',
  'told_allow',
  'allow_bring',
  'bring_spousespartn',
  'spousespartn_spring',
  'spring_plane',
  'plane_ticket',
  'ticket_us',
  'us_want',
  'want_bring',
  'bring_us',
  'us_theyd',
  'theyd_buy',
  'buy_ticket',
  'ticket_pocket',
  'pocket_husband',
  'husband_ask',
  'ask_want',
  'want_go',
  'go_emphat',
  'emphat_told',
  'told_id',
  'id_never',
  'never_florida',
  'florida_life',
  'life_thought',
  'thought_itd',
  'itd_fun',
  'fun_trip',
  'trip_told',
  'told_great',
  'great_went',
  'went_websit',
  'websit_buy',
  'buy_ticket',
  'ticket_ask',
  'ask_id',
  'id_ok',
  'ok_fli',
  'fli_coach',
  'coach_even',
  'even_though',
  'though_hed',
  'hed_fli',
  'fli_first',
  'first_class',
  'class_way',
  'way_--',
  '--_coach',
  'coach_way',
  'way_home',
  'home_ask',
  'ask_fli',
  'fli_togeth',
  'togeth_repli',
  'repli_first',
  'first_class',
  'class_expens',
  'expens_feel',
  'feel_bad',
  'bad_cant',
  'cant_afford',
  'afford_especi',
  'especi_want',
  'want_go',
  'go_fun',
  'fun_miami',
  'miami_flight',
  'flight_hour',
  'hour_realli',
  'realli_realli',
  'realli_bother',
  'bother_understood',
  'understood_first',
  'first_class',
  'class_ticket',
  'ticket_would',
  'would_strain',
  'strain_budget',
  'budget_bit',
  'bit_kind',
  'kind_man',
  'man_live',
  'live_first',
  'first_class',
  'class_wife',
  'wife_sit',
  'sit_coach',
  'coach_ask',
  'ask_respond',
  'respond_come',
  'come_im',
  'im_take',
  'take_along',
  'along_work',
  'work_trip',
  'trip_earn',
  'earn_first',
  'first_class',
  'class_seat',
  'seat_work',
  'work_hard',
  'hard_reward',
  'reward_insist',
  'insist_truli',
  'truli_afford',
  'afford_first',
  'first_class',
  'class_seat',
  'seat_could',
  'could_would',
  'would_hurt',
  'hurt_littl',
  'littl_could',
  'could_gentleman',
  'gentleman_give',
  'give_seat',
  'seat_argu',
  'argu_ultim',
  'ultim_agre',
  'agre_give',
  'give_seat',
  'seat_good',
  'good_time',
  'time_miami',
  'miami_littl',
  'littl_mad',
  'mad_sinc',
  'sinc_say',
  'say_earn',
  'earn_first',
  'first_class',
  'class_seat',
  'seat_free',
  'free_cost',
  'cost_us',
  'us_noth',
  'noth_unlik',
  'unlik_plane',
  'plane_ticket',
  'ticket_let',
  'let_enjoy',
  'enjoy_hed',
  'hed_earn',
  'earn_instead',
  'instead_guilt',
  'guilt_think',
  'think_babi',
  'babi_put',
  'put_wife',
  'wife_comfort',
  'comfort_especi',
  'especi_sinc',
  'sinc_made',
  'made_choic',
  'choic_cheap',
  'cheap_close',
  'close_parent',
  'parent_weve',
  'weve_taken',
  'taken_argument',
  'argument_mediat',
  'mediat_split',
  'split_father',
  'father_agre',
  'agre_gentleman',
  'gentleman_mother',
  'mother_think',
  'think_earn',
  'earn_first',
  'first_class',
  'class_seat',
  'seat_let',
  'let_ill',
  'ill_ask',
  'ask_aita',
  'husband_compani_recent',
  'compani_recent_chose',
  'recent_chose_attend',
  'chose_attend_confer',
  'attend_confer_miami',
  'confer_miami_chose',
  'miami_chose_co-work',
  'chose_co-work_ton',
  'co-work_ton_candid',
  'ton_candid_quit',
  'candid_quit_honor',
  'quit_honor_compani',
  'honor_compani_told',
  'compani_told_allow',
  'told_allow_bring',
  'allow_bring_spousespartn',
  'bring_spousespartn_spring',
  'spousespartn_spring_plane',
  'spring_plane_ticket',
  'plane_ticket_us',
  'ticket_us_want',
  'us_want_bring',
  'want_bring_us',
  'bring_us_theyd',
  'us_theyd_buy',
  'theyd_buy_ticket',
  'buy_ticket_pocket',
  'ticket_pocket_husband',
  'pocket_husband_ask',
  'husband_ask_want',
  'ask_want_go',
  'want_go_emphat',
  'go_emphat_told',
  'emphat_told_id',
  'told_id_never',
  'id_never_florida',
  'never_florida_life',
  'florida_life_thought',
  'life_thought_itd',
  'thought_itd_fun',
  'itd_fun_trip',
  'fun_trip_told',
  'trip_told_great',
  'told_great_went',
  'great_went_websit',
  'went_websit_buy',
  'websit_buy_ticket',
  'buy_ticket_ask',
  'ticket_ask_id',
  'ask_id_ok',
  'id_ok_fli',
  'ok_fli_coach',
  'fli_coach_even',
  'coach_even_though',
  'even_though_hed',
  'though_hed_fli',
  'hed_fli_first',
  'fli_first_class',
  'first_class_way',
  'class_way_--',
  'way_--_coach',
  '--_coach_way',
  'coach_way_home',
  'way_home_ask',
  'home_ask_fli',
  'ask_fli_togeth',
  'fli_togeth_repli',
  'togeth_repli_first',
  'repli_first_class',
  'first_class_expens',
  'class_expens_feel',
  'expens_feel_bad',
  'feel_bad_cant',
  'bad_cant_afford',
  'cant_afford_especi',
  'afford_especi_want',
  'especi_want_go',
  'want_go_fun',
  'go_fun_miami',
  'fun_miami_flight',
  'miami_flight_hour',
  'flight_hour_realli',
  'hour_realli_realli',
  'realli_realli_bother',
  'realli_bother_understood',
  'bother_understood_first',
  'understood_first_class',
  'first_class_ticket',
  'class_ticket_would',
  'ticket_would_strain',
  'would_strain_budget',
  'strain_budget_bit',
  'budget_bit_kind',
  'bit_kind_man',
  'kind_man_live',
  'man_live_first',
  'live_first_class',
  'first_class_wife',
  'class_wife_sit',
  'wife_sit_coach',
  'sit_coach_ask',
  'coach_ask_respond',
  'ask_respond_come',
  'respond_come_im',
  'come_im_take',
  'im_take_along',
  'take_along_work',
  'along_work_trip',
  'work_trip_earn',
  'trip_earn_first',
  'earn_first_class',
  'first_class_seat',
  'class_seat_work',
  'seat_work_hard',
  'work_hard_reward',
  'hard_reward_insist',
  'reward_insist_truli',
  'insist_truli_afford',
  'truli_afford_first',
  'afford_first_class',
  'first_class_seat',
  'class_seat_could',
  'seat_could_would',
  'could_would_hurt',
  'would_hurt_littl',
  'hurt_littl_could',
  'littl_could_gentleman',
  'could_gentleman_give',
  'gentleman_give_seat',
  'give_seat_argu',
  'seat_argu_ultim',
  'argu_ultim_agre',
  'ultim_agre_give',
  'agre_give_seat',
  'give_seat_good',
  'seat_good_time',
  'good_time_miami',
  'time_miami_littl',
  'miami_littl_mad',
  'littl_mad_sinc',
  'mad_sinc_say',
  'sinc_say_earn',
  'say_earn_first',
  'earn_first_class',
  'first_class_seat',
  'class_seat_free',
  'seat_free_cost',
  'free_cost_us',
  'cost_us_noth',
  'us_noth_unlik',
  'noth_unlik_plane',
  'unlik_plane_ticket',
  'plane_ticket_let',
  'ticket_let_enjoy',
  'let_enjoy_hed',
  'enjoy_hed_earn',
  'hed_earn_instead',
  'earn_instead_guilt',
  'instead_guilt_think',
  'guilt_think_babi',
  'think_babi_put',
  'babi_put_wife',
  'put_wife_comfort',
  'wife_comfort_especi',
  'comfort_especi_sinc',
  'especi_sinc_made',
  'sinc_made_choic',
  'made_choic_cheap',
  'choic_cheap_close',
  'cheap_close_parent',
  'close_parent_weve',
  'parent_weve_taken',
  'weve_taken_argument',
  'taken_argument_mediat',
  'argument_mediat_split',
  'mediat_split_father',
  'split_father_agre',
  'father_agre_gentleman',
  'agre_gentleman_mother',
  'gentleman_mother_think',
  'mother_think_earn',
  'think_earn_first',
  'earn_first_class',
  'first_class_seat',
  'class_seat_let',
  'seat_let_ill',
  'let_ill_ask',
  'ill_ask_aita'],
 ['*',
  '*',
  'situat',
  '*',
  '*',
  'recent',
  'bought',
  'one-stori',
  'hous',
  'note',
  'purchas',
  'sole',
  'wife',
  'help',
  'save',
  'start',
  'save',
  'even',
  'met',
  'name',
  'parent',
  'threw',
  'us',
  'parti',
  'happi',
  'ocass',
  'mom',
  'ask',
  'copi',
  'key',
  'case',
  'emerg',
  'let',
  'made',
  'wife',
  'upset',
  'say',
  'anyth',
  'time',
  'wait',
  'til',
  'alon',
  'start',
  'argu',
  'say',
  'let',
  'mother',
  'copi',
  'key',
  'said',
  'sinc',
  'mother',
  'known',
  'respect',
  'privaci',
  'trust',
  'member',
  'famili',
  'said',
  'feel',
  'comfort',
  'idea',
  'someon',
  'els',
  'resid',
  'copi',
  'key',
  'also',
  'brought',
  'mother',
  'pay',
  'penni',
  'toward',
  'hous',
  'disqualifi',
  'get',
  'key',
  'said',
  'big',
  'deal',
  'kept',
  'presist',
  'say',
  'need',
  'take',
  'key',
  'back',
  'quit',
  'frankli',
  'fume',
  'point',
  'im',
  'one',
  'bought',
  'hous',
  'decis',
  'decid',
  'get',
  'copi',
  'key',
  'end',
  'stori',
  'scream',
  'say',
  'technic',
  'contribut',
  'toward',
  'hous',
  'save',
  'back',
  'use',
  'pay',
  'rent',
  'daili',
  'expens',
  'save',
  'money',
  'told',
  'act',
  'put',
  'mom',
  'name',
  'titl',
  'ridicul',
  'said',
  'respect',
  'opiniin',
  'keep',
  'undermin',
  'input',
  'weve',
  'go',
  'back',
  'forth',
  'sinc',
  'let',
  'know',
  'take',
  'key',
  'back',
  'shell',
  'think',
  'irrat',
  'unreason',
  'act',
  'like',
  'copi',
  'hous',
  'key',
  'decis',
  'made',
  'could',
  'save',
  'us',
  'case',
  'emerg',
  'kept',
  'downplay',
  'eta',
  'think',
  'crucial',
  'mention',
  'conflict',
  'mother',
  'wife',
  'theyr',
  'near',
  'perfect',
  'term',
  'alright',
  'thought',
  'ive',
  'alreadi',
  'establish',
  '*_*',
  '*_situat',
  'situat_*',
  '*_*',
  '*_recent',
  'recent_bought',
  'bought_one-stori',
  'one-stori_hous',
  'hous_note',
  'note_purchas',
  'purchas_sole',
  'sole_wife',
  'wife_help',
  'help_save',
  'save_start',
  'start_save',
  'save_even',
  'even_met',
  'met_name',
  'name_parent',
  'parent_threw',
  'threw_us',
  'us_parti',
  'parti_happi',
  'happi_ocass',
  'ocass_mom',
  'mom_ask',
  'ask_copi',
  'copi_key',
  'key_case',
  'case_emerg',
  'emerg_let',
  'let_made',
  'made_wife',
  'wife_upset',
  'upset_say',
  'say_anyth',
  'anyth_time',
  'time_wait',
  'wait_til',
  'til_alon',
  'alon_start',
  'start_argu',
  'argu_say',
  'say_let',
  'let_mother',
  'mother_copi',
  'copi_key',
  'key_said',
  'said_sinc',
  'sinc_mother',
  'mother_known',
  'known_respect',
  'respect_privaci',
  'privaci_trust',
  'trust_member',
  'member_famili',
  'famili_said',
  'said_feel',
  'feel_comfort',
  'comfort_idea',
  'idea_someon',
  'someon_els',
  'els_resid',
  'resid_copi',
  'copi_key',
  'key_also',
  'also_brought',
  'brought_mother',
  'mother_pay',
  'pay_penni',
  'penni_toward',
  'toward_hous',
  'hous_disqualifi',
  'disqualifi_get',
  'get_key',
  'key_said',
  'said_big',
  'big_deal',
  'deal_kept',
  'kept_presist',
  'presist_say',
  'say_need',
  'need_take',
  'take_key',
  'key_back',
  'back_quit',
  'quit_frankli',
  'frankli_fume',
  'fume_point',
  'point_im',
  'im_one',
  'one_bought',
  'bought_hous',
  'hous_decis',
  'decis_decid',
  'decid_get',
  'get_copi',
  'copi_key',
  'key_end',
  'end_stori',
  'stori_scream',
  'scream_say',
  'say_technic',
  'technic_contribut',
  'contribut_toward',
  'toward_hous',
  'hous_save',
  'save_back',
  'back_use',
  'use_pay',
  'pay_rent',
  'rent_daili',
  'daili_expens',
  'expens_save',
  'save_money',
  'money_told',
  'told_act',
  'act_put',
  'put_mom',
  'mom_name',
  'name_titl',
  'titl_ridicul',
  'ridicul_said',
  'said_respect',
  'respect_opiniin',
  'opiniin_keep',
  'keep_undermin',
  'undermin_input',
  'input_weve',
  'weve_go',
  'go_back',
  'back_forth',
  'forth_sinc',
  'sinc_let',
  'let_know',
  'know_take',
  'take_key',
  'key_back',
  'back_shell',
  'shell_think',
  'think_irrat',
  'irrat_unreason',
  'unreason_act',
  'act_like',
  'like_copi',
  'copi_hous',
  'hous_key',
  'key_decis',
  'decis_made',
  'made_could',
  'could_save',
  'save_us',
  'us_case',
  'case_emerg',
  'emerg_kept',
  'kept_downplay',
  'downplay_eta',
  'eta_think',
  'think_crucial',
  'crucial_mention',
  'mention_conflict',
  'conflict_mother',
  'mother_wife',
  'wife_theyr',
  'theyr_near',
  'near_perfect',
  'perfect_term',
  'term_alright',
  'alright_thought',
  'thought_ive',
  'ive_alreadi',
  'alreadi_establish',
  '*_*_situat',
  '*_situat_*',
  'situat_*_*',
  '*_*_recent',
  '*_recent_bought',
  'recent_bought_one-stori',
  'bought_one-stori_hous',
  'one-stori_hous_note',
  'hous_note_purchas',
  'note_purchas_sole',
  'purchas_sole_wife',
  'sole_wife_help',
  'wife_help_save',
  'help_save_start',
  'save_start_save',
  'start_save_even',
  'save_even_met',
  'even_met_name',
  'met_name_parent',
  'name_parent_threw',
  'parent_threw_us',
  'threw_us_parti',
  'us_parti_happi',
  'parti_happi_ocass',
  'happi_ocass_mom',
  'ocass_mom_ask',
  'mom_ask_copi',
  'ask_copi_key',
  'copi_key_case',
  'key_case_emerg',
  'case_emerg_let',
  'emerg_let_made',
  'let_made_wife',
  'made_wife_upset',
  'wife_upset_say',
  'upset_say_anyth',
  'say_anyth_time',
  'anyth_time_wait',
  'time_wait_til',
  'wait_til_alon',
  'til_alon_start',
  'alon_start_argu',
  'start_argu_say',
  'argu_say_let',
  'say_let_mother',
  'let_mother_copi',
  'mother_copi_key',
  'copi_key_said',
  'key_said_sinc',
  'said_sinc_mother',
  'sinc_mother_known',
  'mother_known_respect',
  'known_respect_privaci',
  'respect_privaci_trust',
  'privaci_trust_member',
  'trust_member_famili',
  'member_famili_said',
  'famili_said_feel',
  'said_feel_comfort',
  'feel_comfort_idea',
  'comfort_idea_someon',
  'idea_someon_els',
  'someon_els_resid',
  'els_resid_copi',
  'resid_copi_key',
  'copi_key_also',
  'key_also_brought',
  'also_brought_mother',
  'brought_mother_pay',
  'mother_pay_penni',
  'pay_penni_toward',
  'penni_toward_hous',
  'toward_hous_disqualifi',
  'hous_disqualifi_get',
  'disqualifi_get_key',
  'get_key_said',
  'key_said_big',
  'said_big_deal',
  'big_deal_kept',
  'deal_kept_presist',
  'kept_presist_say',
  'presist_say_need',
  'say_need_take',
  'need_take_key',
  'take_key_back',
  'key_back_quit',
  'back_quit_frankli',
  'quit_frankli_fume',
  'frankli_fume_point',
  'fume_point_im',
  'point_im_one',
  'im_one_bought',
  'one_bought_hous',
  'bought_hous_decis',
  'hous_decis_decid',
  'decis_decid_get',
  'decid_get_copi',
  'get_copi_key',
  'copi_key_end',
  'key_end_stori',
  'end_stori_scream',
  'stori_scream_say',
  'scream_say_technic',
  'say_technic_contribut',
  'technic_contribut_toward',
  'contribut_toward_hous',
  'toward_hous_save',
  'hous_save_back',
  'save_back_use',
  'back_use_pay',
  'use_pay_rent',
  'pay_rent_daili',
  'rent_daili_expens',
  'daili_expens_save',
  'expens_save_money',
  'save_money_told',
  'money_told_act',
  'told_act_put',
  'act_put_mom',
  'put_mom_name',
  'mom_name_titl',
  'name_titl_ridicul',
  'titl_ridicul_said',
  'ridicul_said_respect',
  'said_respect_opiniin',
  'respect_opiniin_keep',
  'opiniin_keep_undermin',
  'keep_undermin_input',
  'undermin_input_weve',
  'input_weve_go',
  'weve_go_back',
  'go_back_forth',
  'back_forth_sinc',
  'forth_sinc_let',
  'sinc_let_know',
  'let_know_take',
  'know_take_key',
  'take_key_back',
  'key_back_shell',
  'back_shell_think',
  'shell_think_irrat',
  'think_irrat_unreason',
  'irrat_unreason_act',
  'unreason_act_like',
  'act_like_copi',
  'like_copi_hous',
  'copi_hous_key',
  'hous_key_decis',
  'key_decis_made',
  'decis_made_could',
  'made_could_save',
  'could_save_us',
  'save_us_case',
  'us_case_emerg',
  'case_emerg_kept',
  'emerg_kept_downplay',
  'kept_downplay_eta',
  'downplay_eta_think',
  'eta_think_crucial',
  'think_crucial_mention',
  'crucial_mention_conflict',
  'mention_conflict_mother',
  'conflict_mother_wife',
  'mother_wife_theyr',
  'wife_theyr_near',
  'theyr_near_perfect',
  'near_perfect_term',
  'perfect_term_alright',
  'term_alright_thought',
  'alright_thought_ive',
  'thought_ive_alreadi',
  'ive_alreadi_establish'],
 ['son',
  'adam',
  'best',
  'friend',
  'carlo',
  'pass',
  'away',
  'year',
  'ago',
  'car',
  'accid',
  'loss',
  'complet',
  'devast',
  'adam',
  'point',
  'lost',
  'job',
  'like',
  'brother',
  'famili',
  'known',
  'famili',
  'year',
  'also',
  'devast',
  'loss',
  'carlo',
  'left',
  'behind',
  'girlfriend',
  'yo',
  'son',
  'know',
  'girlfriend',
  'well',
  'sinc',
  'bring',
  'around',
  'much',
  'til',
  'son',
  'born',
  'adam',
  'told',
  'see',
  'take',
  'care',
  'carloss',
  'famili',
  'need',
  'great',
  'glad',
  'step',
  'make',
  'sure',
  'carloss',
  'famili',
  'get',
  'help',
  'adam',
  'also',
  'got',
  'new',
  'job',
  'sort',
  'limit',
  'contact',
  'month',
  'start',
  'visit',
  'us',
  'late',
  'look',
  'differ',
  'gener',
  'calm',
  'smile',
  'often',
  'even',
  'open',
  'talk',
  'carlo',
  'without',
  'get',
  'emot',
  'reliev',
  'happi',
  'last',
  'week',
  'contact',
  'dad',
  'said',
  'someth',
  'tell',
  'us',
  'visit',
  'brought',
  'carloss',
  'girlfriend',
  'child',
  'dinner',
  'sudden',
  'told',
  'us',
  'carloss',
  'girlfriend',
  'start',
  'date',
  'announc',
  'engag',
  'shock',
  'expect',
  'know',
  'say',
  'felt',
  'upset',
  'shock',
  'mostli',
  'adam',
  'notic',
  'reaction',
  'ask',
  'wrong',
  'told',
  'never',
  'expect',
  'get',
  'best',
  'friend',
  'partner',
  'peopl',
  'talk',
  'bad',
  'would',
  'look',
  'carloss',
  'famili',
  'close',
  'friend',
  'carloss',
  'girlfriend',
  'excus',
  'son',
  'bathroom',
  'adam',
  'began',
  'argu',
  'went',
  'upset',
  'fiance',
  'support',
  'said',
  'told',
  'got',
  'togeth',
  'best',
  'friend',
  'partner',
  'perhap',
  'use',
  'grief',
  'get',
  'date',
  'act',
  'shock',
  'call',
  'unbeliev',
  'ask',
  'leav',
  'hous',
  'got',
  'left',
  'husband',
  'said',
  'mess',
  'make',
  'scene',
  'react',
  'way',
  'went',
  'upstair',
  'stay',
  'alon',
  'hour',
  'day',
  'adam',
  'call',
  'husband',
  'keep',
  'tri',
  'get',
  'speak',
  'kept',
  'say',
  'need',
  'time',
  'son_adam',
  'adam_best',
  'best_friend',
  'friend_carlo',
  'carlo_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_car',
  'car_accid',
  'accid_loss',
  'loss_complet',
  'complet_devast',
  'devast_adam',
  'adam_point',
  'point_lost',
  'lost_job',
  'job_like',
  'like_brother',
  'brother_famili',
  'famili_known',
  'known_famili',
  'famili_year',
  'year_also',
  'also_devast',
  'devast_loss',
  'loss_carlo',
  'carlo_left',
  'left_behind',
  'behind_girlfriend',
  'girlfriend_yo',
  'yo_son',
  'son_know',
  'know_girlfriend',
  'girlfriend_well',
  'well_sinc',
  'sinc_bring',
  'bring_around',
  'around_much',
  'much_til',
  'til_son',
  'son_born',
  'born_adam',
  'adam_told',
  'told_see',
  'see_take',
  'take_care',
  'care_carloss',
  'carloss_famili',
  'famili_need',
  'need_great',
  'great_glad',
  'glad_step',
  'step_make',
  'make_sure',
  'sure_carloss',
  'carloss_famili',
  'famili_get',
  'get_help',
  'help_adam',
  'adam_also',
  'also_got',
  'got_new',
  'new_job',
  'job_sort',
  'sort_limit',
  'limit_contact',
  'contact_month',
  'month_start',
  'start_visit',
  'visit_us',
  'us_late',
  'late_look',
  'look_differ',
  'differ_gener',
  'gener_calm',
  'calm_smile',
  'smile_often',
  'often_even',
  'even_open',
  'open_talk',
  'talk_carlo',
  'carlo_without',
  'without_get',
  'get_emot',
  'emot_reliev',
  'reliev_happi',
  'happi_last',
  'last_week',
  'week_contact',
  'contact_dad',
  'dad_said',
  'said_someth',
  'someth_tell',
  'tell_us',
  'us_visit',
  'visit_brought',
  'brought_carloss',
  'carloss_girlfriend',
  'girlfriend_child',
  'child_dinner',
  'dinner_sudden',
  'sudden_told',
  'told_us',
  'us_carloss',
  'carloss_girlfriend',
  'girlfriend_start',
  'start_date',
  'date_announc',
  'announc_engag',
  'engag_shock',
  'shock_expect',
  'expect_know',
  'know_say',
  'say_felt',
  'felt_upset',
  'upset_shock',
  'shock_mostli',
  'mostli_adam',
  'adam_notic',
  'notic_reaction',
  'reaction_ask',
  'ask_wrong',
  'wrong_told',
  'told_never',
  'never_expect',
  'expect_get',
  'get_best',
  'best_friend',
  'friend_partner',
  'partner_peopl',
  'peopl_talk',
  'talk_bad',
  'bad_would',
  'would_look',
  'look_carloss',
  'carloss_famili',
  'famili_close',
  'close_friend',
  'friend_carloss',
  'carloss_girlfriend',
  'girlfriend_excus',
  'excus_son',
  'son_bathroom',
  'bathroom_adam',
  'adam_began',
  'began_argu',
  'argu_went',
  'went_upset',
  'upset_fiance',
  'fiance_support',
  'support_said',
  'said_told',
  'told_got',
  'got_togeth',
  'togeth_best',
  'best_friend',
  'friend_partner',
  'partner_perhap',
  'perhap_use',
  'use_grief',
  'grief_get',
  'get_date',
  'date_act',
  'act_shock',
  'shock_call',
  'call_unbeliev',
  'unbeliev_ask',
  'ask_leav',
  'leav_hous',
  'hous_got',
  'got_left',
  'left_husband',
  'husband_said',
  'said_mess',
  'mess_make',
  'make_scene',
  'scene_react',
  'react_way',
  'way_went',
  'went_upstair',
  'upstair_stay',
  'stay_alon',
  'alon_hour',
  'hour_day',
  'day_adam',
  'adam_call',
  'call_husband',
  'husband_keep',
  'keep_tri',
  'tri_get',
  'get_speak',
  'speak_kept',
  'kept_say',
  'say_need',
  'need_time',
  'son_adam_best',
  'adam_best_friend',
  'best_friend_carlo',
  'friend_carlo_pass',
  'carlo_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_car',
  'ago_car_accid',
  'car_accid_loss',
  'accid_loss_complet',
  'loss_complet_devast',
  'complet_devast_adam',
  'devast_adam_point',
  'adam_point_lost',
  'point_lost_job',
  'lost_job_like',
  'job_like_brother',
  'like_brother_famili',
  'brother_famili_known',
  'famili_known_famili',
  'known_famili_year',
  'famili_year_also',
  'year_also_devast',
  'also_devast_loss',
  'devast_loss_carlo',
  'loss_carlo_left',
  'carlo_left_behind',
  'left_behind_girlfriend',
  'behind_girlfriend_yo',
  'girlfriend_yo_son',
  'yo_son_know',
  'son_know_girlfriend',
  'know_girlfriend_well',
  'girlfriend_well_sinc',
  'well_sinc_bring',
  'sinc_bring_around',
  'bring_around_much',
  'around_much_til',
  'much_til_son',
  'til_son_born',
  'son_born_adam',
  'born_adam_told',
  'adam_told_see',
  'told_see_take',
  'see_take_care',
  'take_care_carloss',
  'care_carloss_famili',
  'carloss_famili_need',
  'famili_need_great',
  'need_great_glad',
  'great_glad_step',
  'glad_step_make',
  'step_make_sure',
  'make_sure_carloss',
  'sure_carloss_famili',
  'carloss_famili_get',
  'famili_get_help',
  'get_help_adam',
  'help_adam_also',
  'adam_also_got',
  'also_got_new',
  'got_new_job',
  'new_job_sort',
  'job_sort_limit',
  'sort_limit_contact',
  'limit_contact_month',
  'contact_month_start',
  'month_start_visit',
  'start_visit_us',
  'visit_us_late',
  'us_late_look',
  'late_look_differ',
  'look_differ_gener',
  'differ_gener_calm',
  'gener_calm_smile',
  'calm_smile_often',
  'smile_often_even',
  'often_even_open',
  'even_open_talk',
  'open_talk_carlo',
  'talk_carlo_without',
  'carlo_without_get',
  'without_get_emot',
  'get_emot_reliev',
  'emot_reliev_happi',
  'reliev_happi_last',
  'happi_last_week',
  'last_week_contact',
  'week_contact_dad',
  'contact_dad_said',
  'dad_said_someth',
  'said_someth_tell',
  'someth_tell_us',
  'tell_us_visit',
  'us_visit_brought',
  'visit_brought_carloss',
  'brought_carloss_girlfriend',
  'carloss_girlfriend_child',
  'girlfriend_child_dinner',
  'child_dinner_sudden',
  'dinner_sudden_told',
  'sudden_told_us',
  'told_us_carloss',
  'us_carloss_girlfriend',
  'carloss_girlfriend_start',
  'girlfriend_start_date',
  'start_date_announc',
  'date_announc_engag',
  'announc_engag_shock',
  'engag_shock_expect',
  'shock_expect_know',
  'expect_know_say',
  'know_say_felt',
  'say_felt_upset',
  'felt_upset_shock',
  'upset_shock_mostli',
  'shock_mostli_adam',
  'mostli_adam_notic',
  'adam_notic_reaction',
  'notic_reaction_ask',
  'reaction_ask_wrong',
  'ask_wrong_told',
  'wrong_told_never',
  'told_never_expect',
  'never_expect_get',
  'expect_get_best',
  'get_best_friend',
  'best_friend_partner',
  'friend_partner_peopl',
  'partner_peopl_talk',
  'peopl_talk_bad',
  'talk_bad_would',
  'bad_would_look',
  'would_look_carloss',
  'look_carloss_famili',
  'carloss_famili_close',
  'famili_close_friend',
  'close_friend_carloss',
  'friend_carloss_girlfriend',
  'carloss_girlfriend_excus',
  'girlfriend_excus_son',
  'excus_son_bathroom',
  'son_bathroom_adam',
  'bathroom_adam_began',
  'adam_began_argu',
  'began_argu_went',
  'argu_went_upset',
  'went_upset_fiance',
  'upset_fiance_support',
  'fiance_support_said',
  'support_said_told',
  'said_told_got',
  'told_got_togeth',
  'got_togeth_best',
  'togeth_best_friend',
  'best_friend_partner',
  'friend_partner_perhap',
  'partner_perhap_use',
  'perhap_use_grief',
  'use_grief_get',
  'grief_get_date',
  'get_date_act',
  'date_act_shock',
  'act_shock_call',
  'shock_call_unbeliev',
  'call_unbeliev_ask',
  'unbeliev_ask_leav',
  'ask_leav_hous',
  'leav_hous_got',
  'hous_got_left',
  'got_left_husband',
  'left_husband_said',
  'husband_said_mess',
  'said_mess_make',
  'mess_make_scene',
  'make_scene_react',
  'scene_react_way',
  'react_way_went',
  'way_went_upstair',
  'went_upstair_stay',
  'upstair_stay_alon',
  'stay_alon_hour',
  'alon_hour_day',
  'hour_day_adam',
  'day_adam_call',
  'adam_call_husband',
  'call_husband_keep',
  'husband_keep_tri',
  'keep_tri_get',
  'tri_get_speak',
  'get_speak_kept',
  'speak_kept_say',
  'kept_say_need',
  'say_need_time'],
 ['recent',
  'got',
  'twin',
  'sister',
  'expel',
  'school',
  'report',
  'bulli',
  'think',
  'anyth',
  'wrong',
  'grandpa',
  'side',
  'parent',
  'think',
  'betray',
  'sister',
  'sister',
  'never',
  'nicest',
  'person',
  'got',
  'troubl',
  'bulli',
  'elementari',
  'school',
  'earlier',
  'middl',
  'school',
  'gotten',
  'detent',
  'iss',
  'worst',
  'punish',
  'gotten',
  'far',
  'mean',
  'sibl',
  'cousin',
  'want',
  'th',
  'grade',
  'week',
  'ago',
  'play',
  'basketbal',
  'outsid',
  'lunch',
  'allow',
  'friend',
  'good',
  'time',
  'saw',
  'boy',
  'cri',
  'grass',
  'friend',
  'went',
  'see',
  'wrong',
  'boy',
  'tell',
  'us',
  'bulli',
  'group',
  'kid',
  'preppi',
  'post',
  'skincar',
  'routin',
  'tiktok',
  'starbuck',
  'ice',
  'coffe',
  'gener',
  'seen',
  'feminin',
  'male',
  'aesthet',
  'kid',
  'call',
  'gay',
  'slur',
  'gay',
  'told',
  'thought',
  'cool',
  'start',
  'discuss',
  'skincar',
  'fashion',
  'us',
  'know',
  'much',
  'friend',
  'tri',
  'talk',
  'nike',
  'stuff',
  'fashion',
  'know',
  'mostli',
  'sport',
  'stuff',
  'actual',
  'knew',
  'quit',
  'bit',
  'said',
  'start',
  'take',
  'cours',
  'local',
  'colleg',
  'fashion',
  'histori',
  'also',
  'th',
  'grade',
  'like',
  'us',
  'calm',
  'ask',
  'want',
  'play',
  'ball',
  'us',
  'amaz',
  'good',
  'said',
  'realli',
  'sport',
  'natur',
  'good',
  'us',
  'play',
  'hardest',
  'score',
  'us',
  'play',
  'team',
  'encourag',
  'potenti',
  'tri',
  'team',
  'high',
  'school',
  'said',
  'hed',
  'consid',
  'week',
  'weve',
  'start',
  'hang',
  'park',
  'play',
  'drop',
  'phone',
  'one',
  'friend',
  'pick',
  'unintent',
  'open',
  'messag',
  'instagram',
  'sinc',
  'got',
  'notif',
  'saw',
  'someon',
  'text',
  'homophob',
  'stuff',
  'boy',
  'notic',
  'sister',
  'one',
  'kid',
  'send',
  'messag',
  'told',
  'ok',
  'wed',
  'go',
  'ap',
  'sister',
  'friend',
  'call',
  'offic',
  'got',
  'bunch',
  'troubl',
  'girl',
  'boy',
  'one',
  'boyfriend',
  'sister',
  'ringlead',
  'cruelest',
  'got',
  'harshest',
  'punish',
  'expel',
  'mother',
  'father',
  'said',
  'gone',
  'ap',
  'instead',
  'talk',
  'grandfath',
  'differ',
  'perspect',
  'sinc',
  'involv',
  'progress',
  'activist',
  'group',
  'teen',
  'year',
  'colleg',
  'year',
  'straight',
  'saw',
  'gay',
  'friend',
  'get',
  'bulli',
  'horrifi',
  'even',
  'though',
  'straight',
  'boy',
  'sister',
  'call',
  'asshol',
  'snitch',
  'say',
  'hate',
  'friend',
  'reassur',
  'right',
  'thing',
  'recent_got',
  'got_twin',
  'twin_sister',
  'sister_expel',
  'expel_school',
  'school_report',
  'report_bulli',
  'bulli_think',
  'think_anyth',
  'anyth_wrong',
  'wrong_grandpa',
  'grandpa_side',
  'side_parent',
  'parent_think',
  'think_betray',
  'betray_sister',
  'sister_sister',
  'sister_never',
  'never_nicest',
  'nicest_person',
  'person_got',
  'got_troubl',
  'troubl_bulli',
  'bulli_elementari',
  'elementari_school',
  'school_earlier',
  'earlier_middl',
  'middl_school',
  'school_gotten',
  'gotten_detent',
  'detent_iss',
  'iss_worst',
  'worst_punish',
  'punish_gotten',
  'gotten_far',
  'far_mean',
  'mean_sibl',
  'sibl_cousin',
  'cousin_want',
  'want_th',
  'th_grade',
  'grade_week',
  'week_ago',
  'ago_play',
  'play_basketbal',
  'basketbal_outsid',
  'outsid_lunch',
  'lunch_allow',
  'allow_friend',
  'friend_good',
  'good_time',
  'time_saw',
  'saw_boy',
  'boy_cri',
  'cri_grass',
  'grass_friend',
  'friend_went',
  'went_see',
  'see_wrong',
  'wrong_boy',
  'boy_tell',
  'tell_us',
  'us_bulli',
  'bulli_group',
  'group_kid',
  'kid_preppi',
  'preppi_post',
  'post_skincar',
  'skincar_routin',
  'routin_tiktok',
  'tiktok_starbuck',
  'starbuck_ice',
  'ice_coffe',
  'coffe_gener',
  'gener_seen',
  'seen_feminin',
  'feminin_male',
  'male_aesthet',
  'aesthet_kid',
  'kid_call',
  'call_gay',
  'gay_slur',
  'slur_gay',
  'gay_told',
  'told_thought',
  'thought_cool',
  'cool_start',
  'start_discuss',
  'discuss_skincar',
  'skincar_fashion',
  'fashion_us',
  'us_know',
  'know_much',
  'much_friend',
  'friend_tri',
  'tri_talk',
  'talk_nike',
  'nike_stuff',
  'stuff_fashion',
  'fashion_know',
  'know_mostli',
  'mostli_sport',
  'sport_stuff',
  'stuff_actual',
  'actual_knew',
  'knew_quit',
  'quit_bit',
  'bit_said',
  'said_start',
  'start_take',
  'take_cours',
  'cours_local',
  'local_colleg',
  'colleg_fashion',
  'fashion_histori',
  'histori_also',
  'also_th',
  'th_grade',
  'grade_like',
  'like_us',
  'us_calm',
  'calm_ask',
  'ask_want',
  'want_play',
  'play_ball',
  'ball_us',
  'us_amaz',
  'amaz_good',
  'good_said',
  'said_realli',
  'realli_sport',
  'sport_natur',
  'natur_good',
  'good_us',
  'us_play',
  'play_hardest',
  'hardest_score',
  'score_us',
  'us_play',
  'play_team',
  'team_encourag',
  'encourag_potenti',
  'potenti_tri',
  'tri_team',
  'team_high',
  'high_school',
  'school_said',
  'said_hed',
  'hed_consid',
  'consid_week',
  'week_weve',
  'weve_start',
  'start_hang',
  'hang_park',
  'park_play',
  'play_drop',
  'drop_phone',
  'phone_one',
  'one_friend',
  'friend_pick',
  'pick_unintent',
  'unintent_open',
  'open_messag',
  'messag_instagram',
  'instagram_sinc',
  'sinc_got',
  'got_notif',
  'notif_saw',
  'saw_someon',
  'someon_text',
  'text_homophob',
  'homophob_stuff',
  'stuff_boy',
  'boy_notic',
  'notic_sister',
  'sister_one',
  'one_kid',
  'kid_send',
  'send_messag',
  'messag_told',
  'told_ok',
  'ok_wed',
  'wed_go',
  'go_ap',
  'ap_sister',
  'sister_friend',
  'friend_call',
  'call_offic',
  'offic_got',
  'got_bunch',
  'bunch_troubl',
  'troubl_girl',
  'girl_boy',
  'boy_one',
  'one_boyfriend',
  'boyfriend_sister',
  'sister_ringlead',
  'ringlead_cruelest',
  'cruelest_got',
  'got_harshest',
  'harshest_punish',
  'punish_expel',
  'expel_mother',
  'mother_father',
  'father_said',
  'said_gone',
  'gone_ap',
  'ap_instead',
  'instead_talk',
  'talk_grandfath',
  'grandfath_differ',
  'differ_perspect',
  'perspect_sinc',
  'sinc_involv',
  'involv_progress',
  'progress_activist',
  'activist_group',
  'group_teen',
  'teen_year',
  'year_colleg',
  'colleg_year',
  'year_straight',
  'straight_saw',
  'saw_gay',
  'gay_friend',
  'friend_get',
  'get_bulli',
  'bulli_horrifi',
  'horrifi_even',
  'even_though',
  'though_straight',
  'straight_boy',
  'boy_sister',
  'sister_call',
  'call_asshol',
  'asshol_snitch',
  'snitch_say',
  'say_hate',
  'hate_friend',
  'friend_reassur',
  'reassur_right',
  'right_thing',
  'recent_got_twin',
  'got_twin_sister',
  'twin_sister_expel',
  'sister_expel_school',
  'expel_school_report',
  'school_report_bulli',
  'report_bulli_think',
  'bulli_think_anyth',
  'think_anyth_wrong',
  'anyth_wrong_grandpa',
  'wrong_grandpa_side',
  'grandpa_side_parent',
  'side_parent_think',
  'parent_think_betray',
  'think_betray_sister',
  'betray_sister_sister',
  'sister_sister_never',
  'sister_never_nicest',
  'never_nicest_person',
  'nicest_person_got',
  'person_got_troubl',
  'got_troubl_bulli',
  'troubl_bulli_elementari',
  'bulli_elementari_school',
  'elementari_school_earlier',
  'school_earlier_middl',
  'earlier_middl_school',
  'middl_school_gotten',
  'school_gotten_detent',
  'gotten_detent_iss',
  'detent_iss_worst',
  'iss_worst_punish',
  'worst_punish_gotten',
  'punish_gotten_far',
  'gotten_far_mean',
  'far_mean_sibl',
  'mean_sibl_cousin',
  'sibl_cousin_want',
  'cousin_want_th',
  'want_th_grade',
  'th_grade_week',
  'grade_week_ago',
  'week_ago_play',
  'ago_play_basketbal',
  'play_basketbal_outsid',
  'basketbal_outsid_lunch',
  'outsid_lunch_allow',
  'lunch_allow_friend',
  'allow_friend_good',
  'friend_good_time',
  'good_time_saw',
  'time_saw_boy',
  'saw_boy_cri',
  'boy_cri_grass',
  'cri_grass_friend',
  'grass_friend_went',
  'friend_went_see',
  'went_see_wrong',
  'see_wrong_boy',
  'wrong_boy_tell',
  'boy_tell_us',
  'tell_us_bulli',
  'us_bulli_group',
  'bulli_group_kid',
  'group_kid_preppi',
  'kid_preppi_post',
  'preppi_post_skincar',
  'post_skincar_routin',
  'skincar_routin_tiktok',
  'routin_tiktok_starbuck',
  'tiktok_starbuck_ice',
  'starbuck_ice_coffe',
  'ice_coffe_gener',
  'coffe_gener_seen',
  'gener_seen_feminin',
  'seen_feminin_male',
  'feminin_male_aesthet',
  'male_aesthet_kid',
  'aesthet_kid_call',
  'kid_call_gay',
  'call_gay_slur',
  'gay_slur_gay',
  'slur_gay_told',
  'gay_told_thought',
  'told_thought_cool',
  'thought_cool_start',
  'cool_start_discuss',
  'start_discuss_skincar',
  'discuss_skincar_fashion',
  'skincar_fashion_us',
  'fashion_us_know',
  'us_know_much',
  'know_much_friend',
  'much_friend_tri',
  'friend_tri_talk',
  'tri_talk_nike',
  'talk_nike_stuff',
  'nike_stuff_fashion',
  'stuff_fashion_know',
  'fashion_know_mostli',
  'know_mostli_sport',
  'mostli_sport_stuff',
  'sport_stuff_actual',
  'stuff_actual_knew',
  'actual_knew_quit',
  'knew_quit_bit',
  'quit_bit_said',
  'bit_said_start',
  'said_start_take',
  'start_take_cours',
  'take_cours_local',
  'cours_local_colleg',
  'local_colleg_fashion',
  'colleg_fashion_histori',
  'fashion_histori_also',
  'histori_also_th',
  'also_th_grade',
  'th_grade_like',
  'grade_like_us',
  'like_us_calm',
  'us_calm_ask',
  'calm_ask_want',
  'ask_want_play',
  'want_play_ball',
  'play_ball_us',
  'ball_us_amaz',
  'us_amaz_good',
  'amaz_good_said',
  'good_said_realli',
  'said_realli_sport',
  'realli_sport_natur',
  'sport_natur_good',
  'natur_good_us',
  'good_us_play',
  'us_play_hardest',
  'play_hardest_score',
  'hardest_score_us',
  'score_us_play',
  'us_play_team',
  'play_team_encourag',
  'team_encourag_potenti',
  'encourag_potenti_tri',
  'potenti_tri_team',
  'tri_team_high',
  'team_high_school',
  'high_school_said',
  'school_said_hed',
  'said_hed_consid',
  'hed_consid_week',
  'consid_week_weve',
  'week_weve_start',
  'weve_start_hang',
  'start_hang_park',
  'hang_park_play',
  'park_play_drop',
  'play_drop_phone',
  'drop_phone_one',
  'phone_one_friend',
  'one_friend_pick',
  'friend_pick_unintent',
  'pick_unintent_open',
  'unintent_open_messag',
  'open_messag_instagram',
  'messag_instagram_sinc',
  'instagram_sinc_got',
  'sinc_got_notif',
  'got_notif_saw',
  'notif_saw_someon',
  'saw_someon_text',
  'someon_text_homophob',
  'text_homophob_stuff',
  'homophob_stuff_boy',
  'stuff_boy_notic',
  'boy_notic_sister',
  'notic_sister_one',
  'sister_one_kid',
  'one_kid_send',
  'kid_send_messag',
  'send_messag_told',
  'messag_told_ok',
  'told_ok_wed',
  'ok_wed_go',
  'wed_go_ap',
  'go_ap_sister',
  'ap_sister_friend',
  'sister_friend_call',
  'friend_call_offic',
  'call_offic_got',
  'offic_got_bunch',
  'got_bunch_troubl',
  'bunch_troubl_girl',
  'troubl_girl_boy',
  'girl_boy_one',
  'boy_one_boyfriend',
  'one_boyfriend_sister',
  'boyfriend_sister_ringlead',
  'sister_ringlead_cruelest',
  'ringlead_cruelest_got',
  'cruelest_got_harshest',
  'got_harshest_punish',
  'harshest_punish_expel',
  'punish_expel_mother',
  'expel_mother_father',
  'mother_father_said',
  'father_said_gone',
  'said_gone_ap',
  'gone_ap_instead',
  'ap_instead_talk',
  'instead_talk_grandfath',
  'talk_grandfath_differ',
  'grandfath_differ_perspect',
  'differ_perspect_sinc',
  'perspect_sinc_involv',
  'sinc_involv_progress',
  'involv_progress_activist',
  'progress_activist_group',
  'activist_group_teen',
  'group_teen_year',
  'teen_year_colleg',
  'year_colleg_year',
  'colleg_year_straight',
  'year_straight_saw',
  'straight_saw_gay',
  'saw_gay_friend',
  'gay_friend_get',
  'friend_get_bulli',
  'get_bulli_horrifi',
  'bulli_horrifi_even',
  'horrifi_even_though',
  'even_though_straight',
  'though_straight_boy',
  'straight_boy_sister',
  'boy_sister_call',
  'sister_call_asshol',
  'call_asshol_snitch',
  'asshol_snitch_say',
  'snitch_say_hate',
  'say_hate_friend',
  'hate_friend_reassur',
  'friend_reassur_right',
  'reassur_right_thing'],
 ['husband',
  'stay',
  'hospit',
  'health',
  'issu',
  'got',
  'start',
  'wet',
  'bed',
  'everi',
  'night',
  'talk',
  'doctor',
  'gave',
  'us',
  'med',
  'take',
  'time',
  'suggest',
  'husband',
  'use',
  'adult',
  'diaper',
  'temporarili',
  'said',
  'sinc',
  'sick',
  'anyth',
  'im',
  'one',
  'clean',
  'everi',
  'time',
  'grew',
  'tire',
  'kept',
  'wet',
  'bed',
  'even',
  'consid',
  'diaper',
  'point',
  'yesterday',
  'morn',
  'final',
  'strawi',
  'saw',
  'hed',
  'wet',
  'bed',
  'kind',
  'went',
  'kept',
  'talk',
  'like',
  'hear',
  'kept',
  'stare',
  'wall',
  'kid',
  'heard',
  'fuss',
  'came',
  'ask',
  'go',
  'show',
  'state',
  'bed',
  'sheet',
  'said',
  'see',
  'dad',
  'keep',
  'wet',
  'bed',
  'throw',
  'tantrum',
  'ask',
  'wear',
  'diaper',
  'stare',
  'husband',
  'look',
  'shock',
  'leav',
  'room',
  'said',
  'done',
  'defens',
  'want',
  'defend',
  'thought',
  'unfair',
  'kid',
  'accus',
  'yell',
  'dad',
  'reason',
  'said',
  'humili',
  'infront',
  'kid',
  'made',
  'feel',
  'terribl',
  'told',
  'less',
  'embarrass',
  'feel',
  'less',
  'terribl',
  'stop',
  'wet',
  'bed',
  'like',
  'child',
  'start',
  'cri',
  'say',
  'struggl',
  'health',
  'said',
  'cruel',
  'descend',
  'toward',
  'im',
  'tri',
  'turn',
  'kid',
  'well',
  'shame',
  'infront',
  'sister',
  'visit',
  'vent',
  'said',
  'understood',
  'still',
  'wrong',
  'get',
  'kid',
  'involv',
  'im',
  'fee',
  'conflict',
  'whether',
  'right',
  'thing',
  'mayb',
  'get',
  'understand',
  'affect',
  'well',
  'aita',
  'kid',
  'age',
  'husband_stay',
  'stay_hospit',
  'hospit_health',
  'health_issu',
  'issu_got',
  'got_start',
  'start_wet',
  'wet_bed',
  'bed_everi',
  'everi_night',
  'night_talk',
  'talk_doctor',
  'doctor_gave',
  'gave_us',
  'us_med',
  'med_take',
  'take_time',
  'time_suggest',
  'suggest_husband',
  'husband_use',
  'use_adult',
  'adult_diaper',
  'diaper_temporarili',
  'temporarili_said',
  'said_sinc',
  'sinc_sick',
  'sick_anyth',
  'anyth_im',
  'im_one',
  'one_clean',
  'clean_everi',
  'everi_time',
  'time_grew',
  'grew_tire',
  'tire_kept',
  'kept_wet',
  'wet_bed',
  'bed_even',
  'even_consid',
  'consid_diaper',
  'diaper_point',
  'point_yesterday',
  'yesterday_morn',
  'morn_final',
  'final_strawi',
  'strawi_saw',
  'saw_hed',
  'hed_wet',
  'wet_bed',
  'bed_kind',
  'kind_went',
  'went_kept',
  'kept_talk',
  'talk_like',
  'like_hear',
  'hear_kept',
  'kept_stare',
  'stare_wall',
  'wall_kid',
  'kid_heard',
  'heard_fuss',
  'fuss_came',
  'came_ask',
  'ask_go',
  'go_show',
  'show_state',
  'state_bed',
  'bed_sheet',
  'sheet_said',
  'said_see',
  'see_dad',
  'dad_keep',
  'keep_wet',
  'wet_bed',
  'bed_throw',
  'throw_tantrum',
  'tantrum_ask',
  'ask_wear',
  'wear_diaper',
  'diaper_stare',
  'stare_husband',
  'husband_look',
  'look_shock',
  'shock_leav',
  'leav_room',
  'room_said',
  'said_done',
  'done_defens',
  'defens_want',
  'want_defend',
  'defend_thought',
  'thought_unfair',
  'unfair_kid',
  'kid_accus',
  'accus_yell',
  'yell_dad',
  'dad_reason',
  'reason_said',
  'said_humili',
  'humili_infront',
  'infront_kid',
  'kid_made',
  'made_feel',
  'feel_terribl',
  'terribl_told',
  'told_less',
  'less_embarrass',
  'embarrass_feel',
  'feel_less',
  'less_terribl',
  'terribl_stop',
  'stop_wet',
  'wet_bed',
  'bed_like',
  'like_child',
  'child_start',
  'start_cri',
  'cri_say',
  'say_struggl',
  'struggl_health',
  'health_said',
  'said_cruel',
  'cruel_descend',
  'descend_toward',
  'toward_im',
  'im_tri',
  'tri_turn',
  'turn_kid',
  'kid_well',
  'well_shame',
  'shame_infront',
  'infront_sister',
  'sister_visit',
  'visit_vent',
  'vent_said',
  'said_understood',
  'understood_still',
  'still_wrong',
  'wrong_get',
  'get_kid',
  'kid_involv',
  'involv_im',
  'im_fee',
  'fee_conflict',
  'conflict_whether',
  'whether_right',
  'right_thing',
  'thing_mayb',
  'mayb_get',
  'get_understand',
  'understand_affect',
  'affect_well',
  'well_aita',
  'aita_kid',
  'kid_age',
  'husband_stay_hospit',
  'stay_hospit_health',
  'hospit_health_issu',
  'health_issu_got',
  'issu_got_start',
  'got_start_wet',
  'start_wet_bed',
  'wet_bed_everi',
  'bed_everi_night',
  'everi_night_talk',
  'night_talk_doctor',
  'talk_doctor_gave',
  'doctor_gave_us',
  'gave_us_med',
  'us_med_take',
  'med_take_time',
  'take_time_suggest',
  'time_suggest_husband',
  'suggest_husband_use',
  'husband_use_adult',
  'use_adult_diaper',
  'adult_diaper_temporarili',
  'diaper_temporarili_said',
  'temporarili_said_sinc',
  'said_sinc_sick',
  'sinc_sick_anyth',
  'sick_anyth_im',
  'anyth_im_one',
  'im_one_clean',
  'one_clean_everi',
  'clean_everi_time',
  'everi_time_grew',
  'time_grew_tire',
  'grew_tire_kept',
  'tire_kept_wet',
  'kept_wet_bed',
  'wet_bed_even',
  'bed_even_consid',
  'even_consid_diaper',
  'consid_diaper_point',
  'diaper_point_yesterday',
  'point_yesterday_morn',
  'yesterday_morn_final',
  'morn_final_strawi',
  'final_strawi_saw',
  'strawi_saw_hed',
  'saw_hed_wet',
  'hed_wet_bed',
  'wet_bed_kind',
  'bed_kind_went',
  'kind_went_kept',
  'went_kept_talk',
  'kept_talk_like',
  'talk_like_hear',
  'like_hear_kept',
  'hear_kept_stare',
  'kept_stare_wall',
  'stare_wall_kid',
  'wall_kid_heard',
  'kid_heard_fuss',
  'heard_fuss_came',
  'fuss_came_ask',
  'came_ask_go',
  'ask_go_show',
  'go_show_state',
  'show_state_bed',
  'state_bed_sheet',
  'bed_sheet_said',
  'sheet_said_see',
  'said_see_dad',
  'see_dad_keep',
  'dad_keep_wet',
  'keep_wet_bed',
  'wet_bed_throw',
  'bed_throw_tantrum',
  'throw_tantrum_ask',
  'tantrum_ask_wear',
  'ask_wear_diaper',
  'wear_diaper_stare',
  'diaper_stare_husband',
  'stare_husband_look',
  'husband_look_shock',
  'look_shock_leav',
  'shock_leav_room',
  'leav_room_said',
  'room_said_done',
  'said_done_defens',
  'done_defens_want',
  'defens_want_defend',
  'want_defend_thought',
  'defend_thought_unfair',
  'thought_unfair_kid',
  'unfair_kid_accus',
  'kid_accus_yell',
  'accus_yell_dad',
  'yell_dad_reason',
  'dad_reason_said',
  'reason_said_humili',
  'said_humili_infront',
  'humili_infront_kid',
  'infront_kid_made',
  'kid_made_feel',
  'made_feel_terribl',
  'feel_terribl_told',
  'terribl_told_less',
  'told_less_embarrass',
  'less_embarrass_feel',
  'embarrass_feel_less',
  'feel_less_terribl',
  'less_terribl_stop',
  'terribl_stop_wet',
  'stop_wet_bed',
  'wet_bed_like',
  'bed_like_child',
  'like_child_start',
  'child_start_cri',
  'start_cri_say',
  'cri_say_struggl',
  'say_struggl_health',
  'struggl_health_said',
  'health_said_cruel',
  'said_cruel_descend',
  'cruel_descend_toward',
  'descend_toward_im',
  'toward_im_tri',
  'im_tri_turn',
  'tri_turn_kid',
  'turn_kid_well',
  'kid_well_shame',
  'well_shame_infront',
  'shame_infront_sister',
  'infront_sister_visit',
  'sister_visit_vent',
  'visit_vent_said',
  'vent_said_understood',
  'said_understood_still',
  'understood_still_wrong',
  'still_wrong_get',
  'wrong_get_kid',
  'get_kid_involv',
  'kid_involv_im',
  'involv_im_fee',
  'im_fee_conflict',
  'fee_conflict_whether',
  'conflict_whether_right',
  'whether_right_thing',
  'right_thing_mayb',
  'thing_mayb_get',
  'mayb_get_understand',
  'get_understand_affect',
  'understand_affect_well',
  'affect_well_aita',
  'well_aita_kid',
  'aita_kid_age'],
 ['sister',
  'pass',
  'away',
  'month',
  'ago',
  'kid',
  '&',
  'help',
  'take',
  'care',
  'either',
  'visit',
  'bil',
  'hous',
  'come',
  'mine',
  'day',
  'ago',
  'bil',
  'left',
  'kid',
  'day',
  'call',
  'even',
  'ask',
  'could',
  'stay',
  'night',
  'cours',
  'agre',
  'kid',
  'fell',
  'asleep',
  'read',
  'stori',
  'woke',
  'nois',
  'open',
  'eye',
  'saw',
  'bil',
  'slowli',
  'claimb',
  'bed',
  'freak',
  'ask',
  'tri',
  'calm',
  'said',
  'saw',
  'kid',
  'want',
  'join',
  'us',
  'sit',
  'right',
  'mei',
  'confus',
  'ask',
  'thought',
  'appropri',
  'thing',
  'said',
  'kid',
  'think',
  'id',
  'mind',
  'felt',
  'extremli',
  'uncomfort',
  'got',
  'ask',
  'pleas',
  'leav',
  'room',
  'object',
  'say',
  'cant',
  'keep',
  'away',
  'kid',
  'told',
  'id',
  'kid',
  'join',
  'minut',
  'eventu',
  'walk',
  'kid',
  'get',
  'dress',
  'took',
  'home',
  'call',
  'unnecesarili',
  'cruel',
  'rude',
  'next',
  'day',
  'tri',
  'call',
  'check',
  'kid',
  'still',
  'upset',
  'say',
  'asleep',
  'interrupt',
  'sleep',
  'refus',
  'let',
  'join',
  'us',
  'bed',
  'hung',
  'felt',
  'mani',
  'thing',
  'told',
  'mom',
  'said',
  'apolog',
  'behav',
  'toward',
  'griev',
  'bil',
  'aita',
  'say',
  'sister_pass',
  'pass_away',
  'away_month',
  'month_ago',
  'ago_kid',
  'kid_&',
  '&_help',
  'help_take',
  'take_care',
  'care_either',
  'either_visit',
  'visit_bil',
  'bil_hous',
  'hous_come',
  'come_mine',
  'mine_day',
  'day_ago',
  'ago_bil',
  'bil_left',
  'left_kid',
  'kid_day',
  'day_call',
  'call_even',
  'even_ask',
  'ask_could',
  'could_stay',
  'stay_night',
  'night_cours',
  'cours_agre',
  'agre_kid',
  'kid_fell',
  'fell_asleep',
  'asleep_read',
  'read_stori',
  'stori_woke',
  'woke_nois',
  'nois_open',
  'open_eye',
  'eye_saw',
  'saw_bil',
  'bil_slowli',
  'slowli_claimb',
  'claimb_bed',
  'bed_freak',
  'freak_ask',
  'ask_tri',
  'tri_calm',
  'calm_said',
  'said_saw',
  'saw_kid',
  'kid_want',
  'want_join',
  'join_us',
  'us_sit',
  'sit_right',
  'right_mei',
  'mei_confus',
  'confus_ask',
  'ask_thought',
  'thought_appropri',
  'appropri_thing',
  'thing_said',
  'said_kid',
  'kid_think',
  'think_id',
  'id_mind',
  'mind_felt',
  'felt_extremli',
  'extremli_uncomfort',
  'uncomfort_got',
  'got_ask',
  'ask_pleas',
  'pleas_leav',
  'leav_room',
  'room_object',
  'object_say',
  'say_cant',
  'cant_keep',
  'keep_away',
  'away_kid',
  'kid_told',
  'told_id',
  'id_kid',
  'kid_join',
  'join_minut',
  'minut_eventu',
  'eventu_walk',
  'walk_kid',
  'kid_get',
  'get_dress',
  'dress_took',
  'took_home',
  'home_call',
  'call_unnecesarili',
  'unnecesarili_cruel',
  'cruel_rude',
  'rude_next',
  'next_day',
  'day_tri',
  'tri_call',
  'call_check',
  'check_kid',
  'kid_still',
  'still_upset',
  'upset_say',
  'say_asleep',
  'asleep_interrupt',
  'interrupt_sleep',
  'sleep_refus',
  'refus_let',
  'let_join',
  'join_us',
  'us_bed',
  'bed_hung',
  'hung_felt',
  'felt_mani',
  'mani_thing',
  'thing_told',
  'told_mom',
  'mom_said',
  'said_apolog',
  'apolog_behav',
  'behav_toward',
  'toward_griev',
  'griev_bil',
  'bil_aita',
  'aita_say',
  'sister_pass_away',
  'pass_away_month',
  'away_month_ago',
  'month_ago_kid',
  'ago_kid_&',
  'kid_&_help',
  '&_help_take',
  'help_take_care',
  'take_care_either',
  'care_either_visit',
  'either_visit_bil',
  'visit_bil_hous',
  'bil_hous_come',
  'hous_come_mine',
  'come_mine_day',
  'mine_day_ago',
  'day_ago_bil',
  'ago_bil_left',
  'bil_left_kid',
  'left_kid_day',
  'kid_day_call',
  'day_call_even',
  'call_even_ask',
  'even_ask_could',
  'ask_could_stay',
  'could_stay_night',
  'stay_night_cours',
  'night_cours_agre',
  'cours_agre_kid',
  'agre_kid_fell',
  'kid_fell_asleep',
  'fell_asleep_read',
  'asleep_read_stori',
  'read_stori_woke',
  'stori_woke_nois',
  'woke_nois_open',
  'nois_open_eye',
  'open_eye_saw',
  'eye_saw_bil',
  'saw_bil_slowli',
  'bil_slowli_claimb',
  'slowli_claimb_bed',
  'claimb_bed_freak',
  'bed_freak_ask',
  'freak_ask_tri',
  'ask_tri_calm',
  'tri_calm_said',
  'calm_said_saw',
  'said_saw_kid',
  'saw_kid_want',
  'kid_want_join',
  'want_join_us',
  'join_us_sit',
  'us_sit_right',
  'sit_right_mei',
  'right_mei_confus',
  'mei_confus_ask',
  'confus_ask_thought',
  'ask_thought_appropri',
  'thought_appropri_thing',
  'appropri_thing_said',
  'thing_said_kid',
  'said_kid_think',
  'kid_think_id',
  'think_id_mind',
  'id_mind_felt',
  'mind_felt_extremli',
  'felt_extremli_uncomfort',
  'extremli_uncomfort_got',
  'uncomfort_got_ask',
  'got_ask_pleas',
  'ask_pleas_leav',
  'pleas_leav_room',
  'leav_room_object',
  'room_object_say',
  'object_say_cant',
  'say_cant_keep',
  'cant_keep_away',
  'keep_away_kid',
  'away_kid_told',
  'kid_told_id',
  'told_id_kid',
  'id_kid_join',
  'kid_join_minut',
  'join_minut_eventu',
  'minut_eventu_walk',
  'eventu_walk_kid',
  'walk_kid_get',
  'kid_get_dress',
  'get_dress_took',
  'dress_took_home',
  'took_home_call',
  'home_call_unnecesarili',
  'call_unnecesarili_cruel',
  'unnecesarili_cruel_rude',
  'cruel_rude_next',
  'rude_next_day',
  'next_day_tri',
  'day_tri_call',
  'tri_call_check',
  'call_check_kid',
  'check_kid_still',
  'kid_still_upset',
  'still_upset_say',
  'upset_say_asleep',
  'say_asleep_interrupt',
  'asleep_interrupt_sleep',
  'interrupt_sleep_refus',
  'sleep_refus_let',
  'refus_let_join',
  'let_join_us',
  'join_us_bed',
  'us_bed_hung',
  'bed_hung_felt',
  'hung_felt_mani',
  'felt_mani_thing',
  'mani_thing_told',
  'thing_told_mom',
  'told_mom_said',
  'mom_said_apolog',
  'said_apolog_behav',
  'apolog_behav_toward',
  'behav_toward_griev',
  'toward_griev_bil',
  'griev_bil_aita',
  'bil_aita_say'],
 ['-year-old',
  'daughter',
  'harley',
  'wife',
  'extrem',
  'extrem',
  'religi',
  'anyth',
  'written',
  'bibl',
  'im',
  'still',
  'relig',
  'harley',
  'arriv',
  'got',
  'think',
  'daughter',
  'someth',
  'fit',
  'belief',
  'wife',
  'howev',
  'exact',
  'opposit',
  'conflict',
  'year',
  'ago',
  'daughter',
  'said',
  'like',
  'girl',
  'told',
  'first',
  'sat',
  'wife',
  'told',
  'news',
  'happi',
  'itmi',
  'wife',
  'say',
  'anyth',
  'look',
  'disappoint',
  'upset',
  'long',
  'partner',
  'hurt',
  'way',
  'place',
  'shame',
  'told',
  'wife',
  'tri',
  'tear',
  'daughter',
  'agre',
  'go',
  'make',
  'sacrific',
  'sake',
  'daughter',
  'well-b',
  'pleas',
  'make',
  'feel',
  'support',
  'turn',
  'wife',
  'go',
  'daughter',
  'show',
  'differ',
  'date',
  'app',
  'men',
  'tri',
  'set',
  'guy',
  'recommend',
  'date',
  'one',
  'friend',
  'son',
  'forc',
  'go',
  'end',
  'tell',
  'daughter',
  'normal',
  'need',
  'go',
  'confess',
  'phase',
  'went',
  'month',
  'idea',
  'would',
  'stop',
  'aroundmi',
  'daughter',
  'end',
  'break',
  'ask',
  'go',
  'told',
  'everyth',
  'say',
  'angri',
  'would',
  'understat',
  'furiou',
  'wife',
  'honestli',
  'outdat',
  'cruel',
  'point',
  'sleep',
  'sleep',
  'guest',
  'bedroom',
  'even',
  'look',
  'went',
  'marriag',
  'counsel',
  'wife',
  'chang',
  'much',
  'still',
  'let',
  'comment',
  'slip',
  'bite',
  'tongu',
  'guess',
  'daughter',
  'got',
  'girlfriend',
  'want',
  'meet',
  'sat',
  'us',
  'said',
  'want',
  'go',
  'trust',
  'wife',
  'enough',
  'make',
  'comment',
  'get',
  'readi',
  'wife',
  'mad',
  'say',
  'believ',
  'could',
  'exclud',
  'said',
  'made',
  'daughter',
  'feel',
  'way',
  'way',
  'fix',
  'get',
  'ridicul',
  'homophobiai',
  'told',
  'let',
  'religion',
  'get',
  'way',
  'love',
  'daughter',
  'year',
  'shell',
  'ask',
  'talk',
  'anymor',
  'said',
  'show',
  'daughter',
  'much',
  'love',
  'support',
  'interfer',
  'step',
  'foward',
  'daughter',
  'get',
  'stomp',
  'wife',
  'start',
  'cri',
  'stop',
  'speak',
  'told',
  'therapist',
  'think',
  'wrong',
  'grewup',
  'think',
  'excus',
  'homophobia',
  'famili',
  'also',
  'say',
  'im',
  'asshol',
  '-year-old_daughter',
  'daughter_harley',
  'harley_wife',
  'wife_extrem',
  'extrem_extrem',
  'extrem_religi',
  'religi_anyth',
  'anyth_written',
  'written_bibl',
  'bibl_im',
  'im_still',
  'still_relig',
  'relig_harley',
  'harley_arriv',
  'arriv_got',
  'got_think',
  'think_daughter',
  'daughter_someth',
  'someth_fit',
  'fit_belief',
  'belief_wife',
  'wife_howev',
  'howev_exact',
  'exact_opposit',
  'opposit_conflict',
  'conflict_year',
  'year_ago',
  'ago_daughter',
  'daughter_said',
  'said_like',
  'like_girl',
  'girl_told',
  'told_first',
  'first_sat',
  'sat_wife',
  'wife_told',
  'told_news',
  'news_happi',
  'happi_itmi',
  'itmi_wife',
  'wife_say',
  'say_anyth',
  'anyth_look',
  'look_disappoint',
  'disappoint_upset',
  'upset_long',
  'long_partner',
  'partner_hurt',
  'hurt_way',
  'way_place',
  'place_shame',
  'shame_told',
  'told_wife',
  'wife_tri',
  'tri_tear',
  'tear_daughter',
  'daughter_agre',
  'agre_go',
  'go_make',
  'make_sacrific',
  'sacrific_sake',
  'sake_daughter',
  'daughter_well-b',
  'well-b_pleas',
  'pleas_make',
  'make_feel',
  'feel_support',
  'support_turn',
  'turn_wife',
  'wife_go',
  'go_daughter',
  'daughter_show',
  'show_differ',
  'differ_date',
  'date_app',
  'app_men',
  'men_tri',
  'tri_set',
  'set_guy',
  'guy_recommend',
  'recommend_date',
  'date_one',
  'one_friend',
  'friend_son',
  'son_forc',
  'forc_go',
  'go_end',
  'end_tell',
  'tell_daughter',
  'daughter_normal',
  'normal_need',
  'need_go',
  'go_confess',
  'confess_phase',
  'phase_went',
  'went_month',
  'month_idea',
  'idea_would',
  'would_stop',
  'stop_aroundmi',
  'aroundmi_daughter',
  'daughter_end',
  'end_break',
  'break_ask',
  'ask_go',
  'go_told',
  'told_everyth',
  'everyth_say',
  'say_angri',
  'angri_would',
  'would_understat',
  'understat_furiou',
  'furiou_wife',
  'wife_honestli',
  'honestli_outdat',
  'outdat_cruel',
  'cruel_point',
  'point_sleep',
  'sleep_sleep',
  'sleep_guest',
  'guest_bedroom',
  'bedroom_even',
  'even_look',
  'look_went',
  'went_marriag',
  'marriag_counsel',
  'counsel_wife',
  'wife_chang',
  'chang_much',
  'much_still',
  'still_let',
  'let_comment',
  'comment_slip',
  'slip_bite',
  'bite_tongu',
  'tongu_guess',
  'guess_daughter',
  'daughter_got',
  'got_girlfriend',
  'girlfriend_want',
  'want_meet',
  'meet_sat',
  'sat_us',
  'us_said',
  'said_want',
  'want_go',
  'go_trust',
  'trust_wife',
  'wife_enough',
  'enough_make',
  'make_comment',
  'comment_get',
  'get_readi',
  'readi_wife',
  'wife_mad',
  'mad_say',
  'say_believ',
  'believ_could',
  'could_exclud',
  'exclud_said',
  'said_made',
  'made_daughter',
  'daughter_feel',
  'feel_way',
  'way_way',
  'way_fix',
  'fix_get',
  'get_ridicul',
  'ridicul_homophobiai',
  'homophobiai_told',
  'told_let',
  'let_religion',
  'religion_get',
  'get_way',
  'way_love',
  'love_daughter',
  'daughter_year',
  'year_shell',
  'shell_ask',
  'ask_talk',
  'talk_anymor',
  'anymor_said',
  'said_show',
  'show_daughter',
  'daughter_much',
  'much_love',
  'love_support',
  'support_interfer',
  'interfer_step',
  'step_foward',
  'foward_daughter',
  'daughter_get',
  'get_stomp',
  'stomp_wife',
  'wife_start',
  'start_cri',
  'cri_stop',
  'stop_speak',
  'speak_told',
  'told_therapist',
  'therapist_think',
  'think_wrong',
  'wrong_grewup',
  'grewup_think',
  'think_excus',
  'excus_homophobia',
  'homophobia_famili',
  'famili_also',
  'also_say',
  'say_im',
  'im_asshol',
  '-year-old_daughter_harley',
  'daughter_harley_wife',
  'harley_wife_extrem',
  'wife_extrem_extrem',
  'extrem_extrem_religi',
  'extrem_religi_anyth',
  'religi_anyth_written',
  'anyth_written_bibl',
  'written_bibl_im',
  'bibl_im_still',
  'im_still_relig',
  'still_relig_harley',
  'relig_harley_arriv',
  'harley_arriv_got',
  'arriv_got_think',
  'got_think_daughter',
  'think_daughter_someth',
  'daughter_someth_fit',
  'someth_fit_belief',
  'fit_belief_wife',
  'belief_wife_howev',
  'wife_howev_exact',
  'howev_exact_opposit',
  'exact_opposit_conflict',
  'opposit_conflict_year',
  'conflict_year_ago',
  'year_ago_daughter',
  'ago_daughter_said',
  'daughter_said_like',
  'said_like_girl',
  'like_girl_told',
  'girl_told_first',
  'told_first_sat',
  'first_sat_wife',
  'sat_wife_told',
  'wife_told_news',
  'told_news_happi',
  'news_happi_itmi',
  'happi_itmi_wife',
  'itmi_wife_say',
  'wife_say_anyth',
  'say_anyth_look',
  'anyth_look_disappoint',
  'look_disappoint_upset',
  'disappoint_upset_long',
  'upset_long_partner',
  'long_partner_hurt',
  'partner_hurt_way',
  'hurt_way_place',
  'way_place_shame',
  'place_shame_told',
  'shame_told_wife',
  'told_wife_tri',
  'wife_tri_tear',
  'tri_tear_daughter',
  'tear_daughter_agre',
  'daughter_agre_go',
  'agre_go_make',
  'go_make_sacrific',
  'make_sacrific_sake',
  'sacrific_sake_daughter',
  'sake_daughter_well-b',
  'daughter_well-b_pleas',
  'well-b_pleas_make',
  'pleas_make_feel',
  'make_feel_support',
  'feel_support_turn',
  'support_turn_wife',
  'turn_wife_go',
  'wife_go_daughter',
  'go_daughter_show',
  'daughter_show_differ',
  'show_differ_date',
  'differ_date_app',
  'date_app_men',
  'app_men_tri',
  'men_tri_set',
  'tri_set_guy',
  'set_guy_recommend',
  'guy_recommend_date',
  'recommend_date_one',
  'date_one_friend',
  'one_friend_son',
  'friend_son_forc',
  'son_forc_go',
  'forc_go_end',
  'go_end_tell',
  'end_tell_daughter',
  'tell_daughter_normal',
  'daughter_normal_need',
  'normal_need_go',
  'need_go_confess',
  'go_confess_phase',
  'confess_phase_went',
  'phase_went_month',
  'went_month_idea',
  'month_idea_would',
  'idea_would_stop',
  'would_stop_aroundmi',
  'stop_aroundmi_daughter',
  'aroundmi_daughter_end',
  'daughter_end_break',
  'end_break_ask',
  'break_ask_go',
  'ask_go_told',
  'go_told_everyth',
  'told_everyth_say',
  'everyth_say_angri',
  'say_angri_would',
  'angri_would_understat',
  'would_understat_furiou',
  'understat_furiou_wife',
  'furiou_wife_honestli',
  'wife_honestli_outdat',
  'honestli_outdat_cruel',
  'outdat_cruel_point',
  'cruel_point_sleep',
  'point_sleep_sleep',
  'sleep_sleep_guest',
  'sleep_guest_bedroom',
  'guest_bedroom_even',
  'bedroom_even_look',
  'even_look_went',
  'look_went_marriag',
  'went_marriag_counsel',
  'marriag_counsel_wife',
  'counsel_wife_chang',
  'wife_chang_much',
  'chang_much_still',
  'much_still_let',
  'still_let_comment',
  'let_comment_slip',
  'comment_slip_bite',
  'slip_bite_tongu',
  'bite_tongu_guess',
  'tongu_guess_daughter',
  'guess_daughter_got',
  'daughter_got_girlfriend',
  'got_girlfriend_want',
  'girlfriend_want_meet',
  'want_meet_sat',
  'meet_sat_us',
  'sat_us_said',
  'us_said_want',
  'said_want_go',
  'want_go_trust',
  'go_trust_wife',
  'trust_wife_enough',
  'wife_enough_make',
  'enough_make_comment',
  'make_comment_get',
  'comment_get_readi',
  'get_readi_wife',
  'readi_wife_mad',
  'wife_mad_say',
  'mad_say_believ',
  'say_believ_could',
  'believ_could_exclud',
  'could_exclud_said',
  'exclud_said_made',
  'said_made_daughter',
  'made_daughter_feel',
  'daughter_feel_way',
  'feel_way_way',
  'way_way_fix',
  'way_fix_get',
  'fix_get_ridicul',
  'get_ridicul_homophobiai',
  'ridicul_homophobiai_told',
  'homophobiai_told_let',
  'told_let_religion',
  'let_religion_get',
  'religion_get_way',
  'get_way_love',
  'way_love_daughter',
  'love_daughter_year',
  'daughter_year_shell',
  'year_shell_ask',
  'shell_ask_talk',
  'ask_talk_anymor',
  'talk_anymor_said',
  'anymor_said_show',
  'said_show_daughter',
  'show_daughter_much',
  'daughter_much_love',
  'much_love_support',
  'love_support_interfer',
  'support_interfer_step',
  'interfer_step_foward',
  'step_foward_daughter',
  'foward_daughter_get',
  'daughter_get_stomp',
  'get_stomp_wife',
  'stomp_wife_start',
  'wife_start_cri',
  'start_cri_stop',
  'cri_stop_speak',
  'stop_speak_told',
  'speak_told_therapist',
  'told_therapist_think',
  'therapist_think_wrong',
  'think_wrong_grewup',
  'wrong_grewup_think',
  'grewup_think_excus',
  'think_excus_homophobia',
  'excus_homophobia_famili',
  'homophobia_famili_also',
  'famili_also_say',
  'also_say_im',
  'say_im_asshol'],
 ['put',
  'cheat',
  'quot',
  'think',
  'cheat',
  'colleagu',
  'disagre',
  'im',
  'everyon',
  'involv',
  '-',
  'month',
  'ago',
  'unit',
  'vp',
  'announc',
  'retir',
  'end',
  'year',
  'compani',
  'went',
  'search',
  'mode',
  'recent',
  'found',
  'manag',
  'promot',
  'vp',
  'posit',
  'posit',
  'need',
  'fill',
  'bring',
  'us',
  'current',
  'situat',
  'im',
  'singl',
  'kid',
  'respons',
  'except',
  'realli',
  'want',
  'posit',
  'visibl',
  'posit',
  'great',
  'step',
  'stone',
  'career',
  'seen',
  'manag',
  'promot',
  'itll',
  'almost',
  'doubl',
  'pay',
  'found',
  'manag',
  'promot',
  'start',
  'take',
  'extra',
  'project',
  'take',
  'work',
  'home',
  'leav',
  'work',
  'normal',
  'hour',
  'work',
  'home',
  'pm',
  'even',
  'weekend',
  'extra',
  'hour',
  'allow',
  'take',
  'harder',
  'project',
  'peopl',
  'turn',
  'complet',
  'anyon',
  'els',
  'manag',
  'vp',
  'notic',
  'compliment',
  'hustl',
  'colleagu',
  'also',
  'notic',
  'increas',
  'product',
  'last',
  'week',
  'work',
  'friend',
  'ask',
  'im',
  'abl',
  'project',
  'hr',
  'told',
  'night',
  'weekend',
  'word',
  'got',
  'around',
  'week',
  'weekli',
  'confer',
  'call',
  'colleagu',
  'told',
  'cut',
  'accus',
  'cheat',
  'im',
  'put',
  'amount',
  'hour',
  'cant',
  'im',
  'skew',
  'product',
  'number',
  'refus',
  'think',
  'cheat',
  'argu',
  'put',
  'amount',
  'hour',
  'said',
  'cant',
  'famili',
  'time',
  'refus',
  'work',
  'hour',
  'get',
  'paid',
  'salari',
  'spent',
  'meet',
  'argu',
  'cheat',
  'aita',
  'edit',
  'add',
  'post',
  'charact',
  'limit',
  'colleagu',
  'supervisor',
  'mentor',
  'vp',
  'differ',
  'unit',
  'advis',
  'promot',
  'process',
  'step',
  'need',
  'take',
  'also',
  'told',
  'expect',
  'get',
  'promot',
  'im',
  'go',
  'fulli',
  'inform',
  'basic',
  'manag',
  'work',
  '-',
  'hr',
  'week',
  'alway',
  'call',
  'go',
  'detail',
  'itll',
  'bore',
  'feel',
  'free',
  'ask',
  'ill',
  'updat',
  'see',
  'question',
  'repeat',
  'edit',
  'brought',
  'mani',
  'time',
  'get',
  'promot',
  'hustl',
  'month',
  'two',
  'manag',
  'look',
  'entir',
  'career',
  'time',
  'compani',
  'howev',
  'mentor',
  'told',
  'think',
  'import',
  'project',
  'come',
  'complet',
  'said',
  'vp',
  'manag',
  'expect',
  'keep',
  'product',
  'look',
  'see',
  'climb',
  'open',
  'posit',
  'goe',
  'say',
  'everyth',
  'equal',
  'skill',
  'knowledg',
  'etc',
  'littl',
  'chanc',
  'person',
  'religi',
  'work',
  'hr',
  'promot',
  'posit',
  'requir',
  '-',
  'hr',
  'person',
  'view',
  'doubl',
  'pay',
  'compens',
  'increas',
  'hr',
  'edit',
  'question',
  'cowork',
  'one',
  'extra',
  'work',
  'one',
  'lead',
  'charg',
  'make',
  'nois',
  'ladi',
  'longest',
  'longer',
  'even',
  'recent',
  'promot',
  'manag',
  'weve',
  'alway',
  'cordial',
  'work',
  'relationship',
  'viciou',
  'late',
  'supervisor',
  'salari',
  'know',
  'place',
  'requir',
  'sign',
  'sheet',
  'salari',
  'posit',
  'constraint',
  'know',
  'audit',
  'comput',
  'usag',
  'see',
  'much',
  'littl',
  'work',
  'colleagu',
  'submit',
  'applic',
  'cv',
  'posit',
  'applic',
  'busi',
  'unit',
  'within',
  'compani',
  'highli',
  'desir',
  'job',
  'thank',
  'read',
  'post',
  'give',
  'opinion',
  'spent',
  'night',
  'read',
  'everi',
  'one',
  'ill',
  'post',
  'updat',
  'statu',
  'find',
  'coupl',
  'week',
  'anyon',
  'still',
  'interest',
  'put_cheat',
  'cheat_quot',
  'quot_think',
  'think_cheat',
  'cheat_colleagu',
  'colleagu_disagre',
  'disagre_im',
  'im_everyon',
  'everyon_involv',
  'involv_-',
  '-_month',
  'month_ago',
  'ago_unit',
  'unit_vp',
  'vp_announc',
  'announc_retir',
  'retir_end',
  'end_year',
  'year_compani',
  'compani_went',
  'went_search',
  'search_mode',
  'mode_recent',
  'recent_found',
  'found_manag',
  'manag_promot',
  'promot_vp',
  'vp_posit',
  'posit_posit',
  'posit_need',
  'need_fill',
  'fill_bring',
  'bring_us',
  'us_current',
  'current_situat',
  'situat_im',
  'im_singl',
  'singl_kid',
  'kid_respons',
  'respons_except',
  'except_realli',
  'realli_want',
  'want_posit',
  'posit_visibl',
  'visibl_posit',
  'posit_great',
  'great_step',
  'step_stone',
  'stone_career',
  'career_seen',
  'seen_manag',
  'manag_promot',
  'promot_itll',
  'itll_almost',
  'almost_doubl',
  'doubl_pay',
  'pay_found',
  'found_manag',
  'manag_promot',
  'promot_start',
  'start_take',
  'take_extra',
  'extra_project',
  'project_take',
  'take_work',
  'work_home',
  'home_leav',
  'leav_work',
  'work_normal',
  'normal_hour',
  'hour_work',
  'work_home',
  'home_pm',
  'pm_even',
  'even_weekend',
  'weekend_extra',
  'extra_hour',
  'hour_allow',
  'allow_take',
  'take_harder',
  'harder_project',
  'project_peopl',
  'peopl_turn',
  'turn_complet',
  'complet_anyon',
  'anyon_els',
  'els_manag',
  'manag_vp',
  'vp_notic',
  'notic_compliment',
  'compliment_hustl',
  'hustl_colleagu',
  'colleagu_also',
  'also_notic',
  'notic_increas',
  'increas_product',
  'product_last',
  'last_week',
  'week_work',
  'work_friend',
  'friend_ask',
  'ask_im',
  'im_abl',
  'abl_project',
  'project_hr',
  'hr_told',
  'told_night',
  'night_weekend',
  'weekend_word',
  'word_got',
  'got_around',
  'around_week',
  'week_weekli',
  'weekli_confer',
  'confer_call',
  'call_colleagu',
  'colleagu_told',
  'told_cut',
  'cut_accus',
  'accus_cheat',
  'cheat_im',
  'im_put',
  'put_amount',
  'amount_hour',
  'hour_cant',
  'cant_im',
  'im_skew',
  'skew_product',
  'product_number',
  'number_refus',
  'refus_think',
  'think_cheat',
  'cheat_argu',
  'argu_put',
  'put_amount',
  'amount_hour',
  'hour_said',
  'said_cant',
  'cant_famili',
  'famili_time',
  'time_refus',
  'refus_work',
  'work_hour',
  'hour_get',
  'get_paid',
  'paid_salari',
  'salari_spent',
  'spent_meet',
  'meet_argu',
  'argu_cheat',
  'cheat_aita',
  'aita_edit',
  'edit_add',
  'add_post',
  'post_charact',
  'charact_limit',
  'limit_colleagu',
  'colleagu_supervisor',
  'supervisor_mentor',
  'mentor_vp',
  'vp_differ',
  'differ_unit',
  'unit_advis',
  'advis_promot',
  'promot_process',
  'process_step',
  'step_need',
  'need_take',
  'take_also',
  'also_told',
  'told_expect',
  'expect_get',
  'get_promot',
  'promot_im',
  'im_go',
  'go_fulli',
  'fulli_inform',
  'inform_basic',
  'basic_manag',
  'manag_work',
  'work_-',
  '-_hr',
  'hr_week',
  'week_alway',
  'alway_call',
  'call_go',
  'go_detail',
  'detail_itll',
  'itll_bore',
  'bore_feel',
  'feel_free',
  'free_ask',
  'ask_ill',
  'ill_updat',
  'updat_see',
  'see_question',
  'question_repeat',
  'repeat_edit',
  'edit_brought',
  'brought_mani',
  'mani_time',
  'time_get',
  'get_promot',
  'promot_hustl',
  'hustl_month',
  'month_two',
  'two_manag',
  'manag_look',
  'look_entir',
  'entir_career',
  'career_time',
  'time_compani',
  'compani_howev',
  'howev_mentor',
  'mentor_told',
  'told_think',
  'think_import',
  'import_project',
  'project_come',
  'come_complet',
  'complet_said',
  'said_vp',
  'vp_manag',
  'manag_expect',
  'expect_keep',
  'keep_product',
  'product_look',
  'look_see',
  'see_climb',
  'climb_open',
  'open_posit',
  'posit_goe',
  'goe_say',
  'say_everyth',
  'everyth_equal',
  'equal_skill',
  'skill_knowledg',
  'knowledg_etc',
  'etc_littl',
  'littl_chanc',
  'chanc_person',
  'person_religi',
  'religi_work',
  'work_hr',
  'hr_promot',
  'promot_posit',
  'posit_requir',
  'requir_-',
  '-_hr',
  'hr_person',
  'person_view',
  'view_doubl',
  'doubl_pay',
  'pay_compens',
  'compens_increas',
  'increas_hr',
  'hr_edit',
  'edit_question',
  'question_cowork',
  'cowork_one',
  'one_extra',
  'extra_work',
  'work_one',
  'one_lead',
  'lead_charg',
  'charg_make',
  'make_nois',
  'nois_ladi',
  'ladi_longest',
  'longest_longer',
  'longer_even',
  'even_recent',
  'recent_promot',
  'promot_manag',
  'manag_weve',
  'weve_alway',
  'alway_cordial',
  'cordial_work',
  'work_relationship',
  'relationship_viciou',
  'viciou_late',
  'late_supervisor',
  'supervisor_salari',
  'salari_know',
  'know_place',
  'place_requir',
  'requir_sign',
  'sign_sheet',
  'sheet_salari',
  'salari_posit',
  'posit_constraint',
  'constraint_know',
  'know_audit',
  'audit_comput',
  'comput_usag',
  'usag_see',
  'see_much',
  'much_littl',
  'littl_work',
  'work_colleagu',
  'colleagu_submit',
  'submit_applic',
  'applic_cv',
  'cv_posit',
  'posit_applic',
  'applic_busi',
  'busi_unit',
  'unit_within',
  'within_compani',
  'compani_highli',
  'highli_desir',
  'desir_job',
  'job_thank',
  'thank_read',
  'read_post',
  'post_give',
  'give_opinion',
  'opinion_spent',
  'spent_night',
  'night_read',
  'read_everi',
  'everi_one',
  'one_ill',
  'ill_post',
  'post_updat',
  'updat_statu',
  'statu_find',
  'find_coupl',
  'coupl_week',
  'week_anyon',
  'anyon_still',
  'still_interest',
  'put_cheat_quot',
  'cheat_quot_think',
  'quot_think_cheat',
  'think_cheat_colleagu',
  'cheat_colleagu_disagre',
  'colleagu_disagre_im',
  'disagre_im_everyon',
  'im_everyon_involv',
  'everyon_involv_-',
  'involv_-_month',
  '-_month_ago',
  'month_ago_unit',
  'ago_unit_vp',
  'unit_vp_announc',
  'vp_announc_retir',
  'announc_retir_end',
  'retir_end_year',
  'end_year_compani',
  'year_compani_went',
  'compani_went_search',
  'went_search_mode',
  'search_mode_recent',
  'mode_recent_found',
  'recent_found_manag',
  'found_manag_promot',
  'manag_promot_vp',
  'promot_vp_posit',
  'vp_posit_posit',
  'posit_posit_need',
  'posit_need_fill',
  'need_fill_bring',
  'fill_bring_us',
  'bring_us_current',
  'us_current_situat',
  'current_situat_im',
  'situat_im_singl',
  'im_singl_kid',
  'singl_kid_respons',
  'kid_respons_except',
  'respons_except_realli',
  'except_realli_want',
  'realli_want_posit',
  'want_posit_visibl',
  'posit_visibl_posit',
  'visibl_posit_great',
  'posit_great_step',
  'great_step_stone',
  'step_stone_career',
  'stone_career_seen',
  'career_seen_manag',
  'seen_manag_promot',
  'manag_promot_itll',
  'promot_itll_almost',
  'itll_almost_doubl',
  'almost_doubl_pay',
  'doubl_pay_found',
  'pay_found_manag',
  'found_manag_promot',
  'manag_promot_start',
  'promot_start_take',
  'start_take_extra',
  'take_extra_project',
  'extra_project_take',
  'project_take_work',
  'take_work_home',
  'work_home_leav',
  'home_leav_work',
  'leav_work_normal',
  'work_normal_hour',
  'normal_hour_work',
  'hour_work_home',
  'work_home_pm',
  'home_pm_even',
  'pm_even_weekend',
  'even_weekend_extra',
  'weekend_extra_hour',
  'extra_hour_allow',
  'hour_allow_take',
  'allow_take_harder',
  'take_harder_project',
  'harder_project_peopl',
  'project_peopl_turn',
  'peopl_turn_complet',
  'turn_complet_anyon',
  'complet_anyon_els',
  'anyon_els_manag',
  'els_manag_vp',
  'manag_vp_notic',
  'vp_notic_compliment',
  'notic_compliment_hustl',
  'compliment_hustl_colleagu',
  'hustl_colleagu_also',
  'colleagu_also_notic',
  'also_notic_increas',
  'notic_increas_product',
  'increas_product_last',
  'product_last_week',
  'last_week_work',
  'week_work_friend',
  'work_friend_ask',
  'friend_ask_im',
  'ask_im_abl',
  'im_abl_project',
  'abl_project_hr',
  'project_hr_told',
  'hr_told_night',
  'told_night_weekend',
  'night_weekend_word',
  'weekend_word_got',
  'word_got_around',
  'got_around_week',
  'around_week_weekli',
  'week_weekli_confer',
  'weekli_confer_call',
  'confer_call_colleagu',
  'call_colleagu_told',
  'colleagu_told_cut',
  'told_cut_accus',
  'cut_accus_cheat',
  'accus_cheat_im',
  'cheat_im_put',
  'im_put_amount',
  'put_amount_hour',
  'amount_hour_cant',
  'hour_cant_im',
  'cant_im_skew',
  'im_skew_product',
  'skew_product_number',
  'product_number_refus',
  'number_refus_think',
  'refus_think_cheat',
  'think_cheat_argu',
  'cheat_argu_put',
  'argu_put_amount',
  'put_amount_hour',
  'amount_hour_said',
  'hour_said_cant',
  'said_cant_famili',
  'cant_famili_time',
  'famili_time_refus',
  'time_refus_work',
  'refus_work_hour',
  'work_hour_get',
  'hour_get_paid',
  'get_paid_salari',
  'paid_salari_spent',
  'salari_spent_meet',
  'spent_meet_argu',
  'meet_argu_cheat',
  'argu_cheat_aita',
  'cheat_aita_edit',
  'aita_edit_add',
  'edit_add_post',
  'add_post_charact',
  'post_charact_limit',
  'charact_limit_colleagu',
  'limit_colleagu_supervisor',
  'colleagu_supervisor_mentor',
  'supervisor_mentor_vp',
  'mentor_vp_differ',
  'vp_differ_unit',
  'differ_unit_advis',
  'unit_advis_promot',
  'advis_promot_process',
  'promot_process_step',
  'process_step_need',
  'step_need_take',
  'need_take_also',
  'take_also_told',
  'also_told_expect',
  'told_expect_get',
  'expect_get_promot',
  'get_promot_im',
  'promot_im_go',
  'im_go_fulli',
  'go_fulli_inform',
  'fulli_inform_basic',
  'inform_basic_manag',
  'basic_manag_work',
  'manag_work_-',
  'work_-_hr',
  '-_hr_week',
  'hr_week_alway',
  'week_alway_call',
  'alway_call_go',
  'call_go_detail',
  'go_detail_itll',
  'detail_itll_bore',
  'itll_bore_feel',
  'bore_feel_free',
  'feel_free_ask',
  'free_ask_ill',
  'ask_ill_updat',
  'ill_updat_see',
  'updat_see_question',
  'see_question_repeat',
  'question_repeat_edit',
  'repeat_edit_brought',
  'edit_brought_mani',
  'brought_mani_time',
  'mani_time_get',
  'time_get_promot',
  'get_promot_hustl',
  'promot_hustl_month',
  'hustl_month_two',
  'month_two_manag',
  'two_manag_look',
  'manag_look_entir',
  'look_entir_career',
  'entir_career_time',
  'career_time_compani',
  'time_compani_howev',
  'compani_howev_mentor',
  'howev_mentor_told',
  'mentor_told_think',
  'told_think_import',
  'think_import_project',
  'import_project_come',
  'project_come_complet',
  'come_complet_said',
  'complet_said_vp',
  'said_vp_manag',
  'vp_manag_expect',
  'manag_expect_keep',
  'expect_keep_product',
  'keep_product_look',
  'product_look_see',
  'look_see_climb',
  'see_climb_open',
  'climb_open_posit',
  'open_posit_goe',
  'posit_goe_say',
  'goe_say_everyth',
  'say_everyth_equal',
  'everyth_equal_skill',
  'equal_skill_knowledg',
  'skill_knowledg_etc',
  'knowledg_etc_littl',
  'etc_littl_chanc',
  'littl_chanc_person',
  'chanc_person_religi',
  'person_religi_work',
  'religi_work_hr',
  'work_hr_promot',
  'hr_promot_posit',
  'promot_posit_requir',
  'posit_requir_-',
  'requir_-_hr',
  '-_hr_person',
  'hr_person_view',
  'person_view_doubl',
  'view_doubl_pay',
  'doubl_pay_compens',
  'pay_compens_increas',
  'compens_increas_hr',
  'increas_hr_edit',
  'hr_edit_question',
  'edit_question_cowork',
  'question_cowork_one',
  'cowork_one_extra',
  'one_extra_work',
  'extra_work_one',
  'work_one_lead',
  'one_lead_charg',
  'lead_charg_make',
  'charg_make_nois',
  'make_nois_ladi',
  'nois_ladi_longest',
  'ladi_longest_longer',
  'longest_longer_even',
  'longer_even_recent',
  'even_recent_promot',
  'recent_promot_manag',
  'promot_manag_weve',
  'manag_weve_alway',
  'weve_alway_cordial',
  'alway_cordial_work',
  'cordial_work_relationship',
  'work_relationship_viciou',
  'relationship_viciou_late',
  'viciou_late_supervisor',
  'late_supervisor_salari',
  'supervisor_salari_know',
  'salari_know_place',
  'know_place_requir',
  'place_requir_sign',
  'requir_sign_sheet',
  'sign_sheet_salari',
  'sheet_salari_posit',
  'salari_posit_constraint',
  'posit_constraint_know',
  'constraint_know_audit',
  'know_audit_comput',
  'audit_comput_usag',
  'comput_usag_see',
  'usag_see_much',
  'see_much_littl',
  'much_littl_work',
  'littl_work_colleagu',
  'work_colleagu_submit',
  'colleagu_submit_applic',
  'submit_applic_cv',
  'applic_cv_posit',
  'cv_posit_applic',
  'posit_applic_busi',
  'applic_busi_unit',
  'busi_unit_within',
  'unit_within_compani',
  'within_compani_highli',
  'compani_highli_desir',
  'highli_desir_job',
  'desir_job_thank',
  'job_thank_read',
  'thank_read_post',
  'read_post_give',
  'post_give_opinion',
  'give_opinion_spent',
  'opinion_spent_night',
  'spent_night_read',
  'night_read_everi',
  'read_everi_one',
  'everi_one_ill',
  'one_ill_post',
  'ill_post_updat',
  'post_updat_statu',
  'updat_statu_find',
  'statu_find_coupl',
  'find_coupl_week',
  'coupl_week_anyon',
  'week_anyon_still',
  'anyon_still_interest'],
 ['aita',
  'refus',
  'give',
  'disney',
  'adult',
  'niec',
  'turn',
  'got',
  'magicmixi',
  'sister',
  'elsa',
  'strict',
  'disney',
  'toy',
  'polici',
  'liter',
  'give',
  'us',
  'list',
  'accept',
  'disney-onli',
  'toy',
  'niec',
  'want',
  'obsess',
  'get',
  'magicmixi',
  'sinc',
  'friend',
  'got',
  'one',
  'bil',
  'care',
  'get',
  'stuff',
  'time',
  'text',
  'said',
  'okay',
  'stick',
  'list',
  'sinc',
  'grandpar',
  'got',
  'stuff',
  'disney-rel',
  'said',
  'want',
  'niec',
  'branch',
  'ignor',
  'list',
  'elsa',
  '*',
  '*',
  'disney',
  'adul',
  '*',
  '*',
  'everyth',
  'disney',
  'relat',
  'niec',
  'born',
  'elsa',
  'sent',
  'facebook',
  'post',
  'family-wid',
  'email',
  'anyth',
  'without',
  'disney',
  'charact',
  'toy',
  'cloth',
  'bed',
  'furnitur',
  '*',
  'anyth',
  '*',
  'would',
  'get',
  'thrown',
  'donat',
  'thrown',
  'weve',
  'never',
  'actual',
  'sent',
  'niec',
  'gift',
  'knew',
  'elsa',
  'would',
  'throw',
  'away',
  'disney',
  'aesthet',
  'shell',
  'throw',
  'thing',
  'away',
  'front',
  'peopl',
  'gift',
  'theyr',
  'plaster',
  'cartoon',
  'charact',
  'birthday',
  'parti',
  'niec',
  'open',
  'magicmixi',
  'went',
  'banana',
  'elsa',
  'say',
  'anyth',
  'neutral',
  'cute',
  'move',
  'someth',
  'els',
  'parti',
  'elsa',
  'went',
  'apeshit',
  'said',
  'fault',
  'throw',
  'kid',
  'toy',
  'away',
  'appar',
  'bil',
  'got',
  'big',
  'fight',
  'tri',
  'throw',
  'parti',
  'also',
  'tri',
  'give',
  'sever',
  'parent',
  'parti',
  'mom',
  'mom',
  'group',
  'call',
  'insensit',
  'shed',
  'tri',
  'get',
  'rid',
  'toy',
  'kid',
  'excit',
  'ask',
  'go',
  'gift',
  'mom',
  'call',
  'later',
  'said',
  'huge',
  'ah',
  'stick',
  'elsa',
  'want',
  'make',
  'anxiou',
  'present',
  'guess',
  'parti',
  'mom',
  'group',
  'friend',
  'got',
  'piss',
  'found',
  'throw',
  'gift',
  'away',
  'niec',
  'uninvit',
  'lot',
  'spring',
  'activ',
  'aita',
  'give',
  'disney',
  'adult',
  'get',
  'kid',
  'toy',
  'actual',
  'want',
  'aita_refus',
  'refus_give',
  'give_disney',
  'disney_adult',
  'adult_niec',
  'niec_turn',
  'turn_got',
  'got_magicmixi',
  'magicmixi_sister',
  'sister_elsa',
  'elsa_strict',
  'strict_disney',
  'disney_toy',
  'toy_polici',
  'polici_liter',
  'liter_give',
  'give_us',
  'us_list',
  'list_accept',
  'accept_disney-onli',
  'disney-onli_toy',
  'toy_niec',
  'niec_want',
  'want_obsess',
  'obsess_get',
  'get_magicmixi',
  'magicmixi_sinc',
  'sinc_friend',
  'friend_got',
  'got_one',
  'one_bil',
  'bil_care',
  'care_get',
  'get_stuff',
  'stuff_time',
  'time_text',
  'text_said',
  'said_okay',
  'okay_stick',
  'stick_list',
  'list_sinc',
  'sinc_grandpar',
  'grandpar_got',
  'got_stuff',
  'stuff_disney-rel',
  'disney-rel_said',
  'said_want',
  'want_niec',
  'niec_branch',
  'branch_ignor',
  'ignor_list',
  'list_elsa',
  'elsa_*',
  '*_*',
  '*_disney',
  'disney_adul',
  'adul_*',
  '*_*',
  '*_everyth',
  'everyth_disney',
  'disney_relat',
  'relat_niec',
  'niec_born',
  'born_elsa',
  'elsa_sent',
  'sent_facebook',
  'facebook_post',
  'post_family-wid',
  'family-wid_email',
  'email_anyth',
  'anyth_without',
  'without_disney',
  'disney_charact',
  'charact_toy',
  'toy_cloth',
  'cloth_bed',
  'bed_furnitur',
  'furnitur_*',
  '*_anyth',
  'anyth_*',
  '*_would',
  'would_get',
  'get_thrown',
  'thrown_donat',
  'donat_thrown',
  'thrown_weve',
  'weve_never',
  'never_actual',
  'actual_sent',
  'sent_niec',
  'niec_gift',
  'gift_knew',
  'knew_elsa',
  'elsa_would',
  'would_throw',
  'throw_away',
  'away_disney',
  'disney_aesthet',
  'aesthet_shell',
  'shell_throw',
  'throw_thing',
  'thing_away',
  'away_front',
  'front_peopl',
  'peopl_gift',
  'gift_theyr',
  'theyr_plaster',
  'plaster_cartoon',
  'cartoon_charact',
  'charact_birthday',
  'birthday_parti',
  'parti_niec',
  'niec_open',
  'open_magicmixi',
  'magicmixi_went',
  'went_banana',
  'banana_elsa',
  'elsa_say',
  'say_anyth',
  'anyth_neutral',
  'neutral_cute',
  'cute_move',
  'move_someth',
  'someth_els',
  'els_parti',
  'parti_elsa',
  'elsa_went',
  'went_apeshit',
  'apeshit_said',
  'said_fault',
  'fault_throw',
  'throw_kid',
  'kid_toy',
  'toy_away',
  'away_appar',
  'appar_bil',
  'bil_got',
  'got_big',
  'big_fight',
  'fight_tri',
  'tri_throw',
  'throw_parti',
  'parti_also',
  'also_tri',
  'tri_give',
  'give_sever',
  'sever_parent',
  'parent_parti',
  'parti_mom',
  'mom_mom',
  'mom_group',
  'group_call',
  'call_insensit',
  'insensit_shed',
  'shed_tri',
  'tri_get',
  'get_rid',
  'rid_toy',
  'toy_kid',
  'kid_excit',
  'excit_ask',
  'ask_go',
  'go_gift',
  'gift_mom',
  'mom_call',
  'call_later',
  'later_said',
  'said_huge',
  'huge_ah',
  'ah_stick',
  'stick_elsa',
  'elsa_want',
  'want_make',
  'make_anxiou',
  'anxiou_present',
  'present_guess',
  'guess_parti',
  'parti_mom',
  'mom_group',
  'group_friend',
  'friend_got',
  'got_piss',
  'piss_found',
  'found_throw',
  'throw_gift',
  'gift_away',
  'away_niec',
  'niec_uninvit',
  'uninvit_lot',
  'lot_spring',
  'spring_activ',
  'activ_aita',
  'aita_give',
  'give_disney',
  'disney_adult',
  'adult_get',
  'get_kid',
  'kid_toy',
  'toy_actual',
  'actual_want',
  'aita_refus_give',
  'refus_give_disney',
  'give_disney_adult',
  'disney_adult_niec',
  'adult_niec_turn',
  'niec_turn_got',
  'turn_got_magicmixi',
  'got_magicmixi_sister',
  'magicmixi_sister_elsa',
  'sister_elsa_strict',
  'elsa_strict_disney',
  'strict_disney_toy',
  'disney_toy_polici',
  'toy_polici_liter',
  'polici_liter_give',
  'liter_give_us',
  'give_us_list',
  'us_list_accept',
  'list_accept_disney-onli',
  'accept_disney-onli_toy',
  'disney-onli_toy_niec',
  'toy_niec_want',
  'niec_want_obsess',
  'want_obsess_get',
  'obsess_get_magicmixi',
  'get_magicmixi_sinc',
  'magicmixi_sinc_friend',
  'sinc_friend_got',
  'friend_got_one',
  'got_one_bil',
  'one_bil_care',
  'bil_care_get',
  'care_get_stuff',
  'get_stuff_time',
  'stuff_time_text',
  'time_text_said',
  'text_said_okay',
  'said_okay_stick',
  'okay_stick_list',
  'stick_list_sinc',
  'list_sinc_grandpar',
  'sinc_grandpar_got',
  'grandpar_got_stuff',
  'got_stuff_disney-rel',
  'stuff_disney-rel_said',
  'disney-rel_said_want',
  'said_want_niec',
  'want_niec_branch',
  'niec_branch_ignor',
  'branch_ignor_list',
  'ignor_list_elsa',
  'list_elsa_*',
  'elsa_*_*',
  '*_*_disney',
  '*_disney_adul',
  'disney_adul_*',
  'adul_*_*',
  '*_*_everyth',
  '*_everyth_disney',
  'everyth_disney_relat',
  'disney_relat_niec',
  'relat_niec_born',
  'niec_born_elsa',
  'born_elsa_sent',
  'elsa_sent_facebook',
  'sent_facebook_post',
  'facebook_post_family-wid',
  'post_family-wid_email',
  'family-wid_email_anyth',
  'email_anyth_without',
  'anyth_without_disney',
  'without_disney_charact',
  'disney_charact_toy',
  'charact_toy_cloth',
  'toy_cloth_bed',
  'cloth_bed_furnitur',
  'bed_furnitur_*',
  'furnitur_*_anyth',
  '*_anyth_*',
  'anyth_*_would',
  '*_would_get',
  'would_get_thrown',
  'get_thrown_donat',
  'thrown_donat_thrown',
  'donat_thrown_weve',
  'thrown_weve_never',
  'weve_never_actual',
  'never_actual_sent',
  'actual_sent_niec',
  'sent_niec_gift',
  'niec_gift_knew',
  'gift_knew_elsa',
  'knew_elsa_would',
  'elsa_would_throw',
  'would_throw_away',
  'throw_away_disney',
  'away_disney_aesthet',
  'disney_aesthet_shell',
  'aesthet_shell_throw',
  'shell_throw_thing',
  'throw_thing_away',
  'thing_away_front',
  'away_front_peopl',
  'front_peopl_gift',
  'peopl_gift_theyr',
  'gift_theyr_plaster',
  'theyr_plaster_cartoon',
  'plaster_cartoon_charact',
  'cartoon_charact_birthday',
  'charact_birthday_parti',
  'birthday_parti_niec',
  'parti_niec_open',
  'niec_open_magicmixi',
  'open_magicmixi_went',
  'magicmixi_went_banana',
  'went_banana_elsa',
  'banana_elsa_say',
  'elsa_say_anyth',
  'say_anyth_neutral',
  'anyth_neutral_cute',
  'neutral_cute_move',
  'cute_move_someth',
  'move_someth_els',
  'someth_els_parti',
  'els_parti_elsa',
  'parti_elsa_went',
  'elsa_went_apeshit',
  'went_apeshit_said',
  'apeshit_said_fault',
  'said_fault_throw',
  'fault_throw_kid',
  'throw_kid_toy',
  'kid_toy_away',
  'toy_away_appar',
  'away_appar_bil',
  'appar_bil_got',
  'bil_got_big',
  'got_big_fight',
  'big_fight_tri',
  'fight_tri_throw',
  'tri_throw_parti',
  'throw_parti_also',
  'parti_also_tri',
  'also_tri_give',
  'tri_give_sever',
  'give_sever_parent',
  'sever_parent_parti',
  'parent_parti_mom',
  'parti_mom_mom',
  'mom_mom_group',
  'mom_group_call',
  'group_call_insensit',
  'call_insensit_shed',
  'insensit_shed_tri',
  'shed_tri_get',
  'tri_get_rid',
  'get_rid_toy',
  'rid_toy_kid',
  'toy_kid_excit',
  'kid_excit_ask',
  'excit_ask_go',
  'ask_go_gift',
  'go_gift_mom',
  'gift_mom_call',
  'mom_call_later',
  'call_later_said',
  'later_said_huge',
  'said_huge_ah',
  'huge_ah_stick',
  'ah_stick_elsa',
  'stick_elsa_want',
  'elsa_want_make',
  'want_make_anxiou',
  'make_anxiou_present',
  'anxiou_present_guess',
  'present_guess_parti',
  'guess_parti_mom',
  'parti_mom_group',
  'mom_group_friend',
  'group_friend_got',
  'friend_got_piss',
  'got_piss_found',
  'piss_found_throw',
  'found_throw_gift',
  'throw_gift_away',
  'gift_away_niec',
  'away_niec_uninvit',
  'niec_uninvit_lot',
  'uninvit_lot_spring',
  'lot_spring_activ',
  'spring_activ_aita',
  'activ_aita_give',
  'aita_give_disney',
  'give_disney_adult',
  'disney_adult_get',
  'adult_get_kid',
  'get_kid_toy',
  'kid_toy_actual',
  'toy_actual_want'],
 ['fiancé',
  'propos',
  'last',
  'week',
  'weve',
  'date',
  'year',
  'yo',
  'daughter',
  'previou',
  'marriag',
  'mom',
  'pass',
  'year',
  'ago',
  'yo',
  'son',
  'fiancé',
  'start',
  'date',
  'notic',
  'daughter',
  'master',
  'bedroom',
  'found',
  'weird',
  'ive',
  'never',
  'seen',
  'child',
  'take',
  'master',
  'bedroom',
  'brush',
  'say',
  'hous',
  'normal',
  'slept',
  '*',
  'explan',
  '*',
  'thought',
  'meant',
  'inherit',
  'pass',
  'away',
  'still',
  'weird',
  'aliv',
  'either',
  'way',
  'say',
  'anyth',
  'begin',
  'knew',
  'busi',
  'engag',
  'said',
  'want',
  'move',
  'live',
  'togeth',
  'decid',
  'wed',
  'date',
  'said',
  'could',
  'could',
  'get',
  'hous',
  'regardless',
  'ask',
  'wrong',
  'one',
  'said',
  'noth',
  'daughter',
  'honest',
  'get',
  'littl',
  'mad',
  'said',
  'fair',
  'call',
  'daughter',
  'get',
  'marri',
  'suppos',
  'adopt',
  'son',
  'hous',
  'also',
  'said',
  'want',
  'daughter',
  'master',
  'got',
  'littl',
  'nervou',
  'said',
  'hous',
  'realli',
  'belong',
  'late',
  'wife',
  'pass',
  'hous',
  'becam',
  'daughter',
  'enough',
  'money',
  'mayb',
  '%',
  'hous',
  'pay',
  'rest',
  'togeth',
  'shock',
  'said',
  'could',
  'ask',
  'daughter',
  'hous',
  'dad',
  'said',
  'daughter',
  'got',
  'angri',
  'call',
  'jerk',
  'told',
  'truth',
  'said',
  'like',
  'homeless',
  'anyth',
  'still',
  'year',
  'mayb',
  'daughter',
  'leav',
  'colleg',
  'said',
  'alway',
  'known',
  'move',
  'save',
  'ask',
  'els',
  'belong',
  'daughter',
  'know',
  'said',
  'car',
  'kia',
  'car',
  'alway',
  'use',
  'leav',
  'colleg',
  'call',
  'jerk',
  'left',
  'son',
  'parent',
  'hous',
  'told',
  'famili',
  'brother',
  'laugh',
  'talk',
  'act',
  'like',
  'gold',
  'digger',
  'call',
  'ah',
  'felt',
  'betray',
  'lie',
  'realli',
  'ta',
  'think',
  'im',
  'justifi',
  'eta',
  'saw',
  'post',
  'ask',
  'ring',
  'back',
  'guess',
  'problem',
  'anymor',
  'eta',
  'need',
  'keep',
  'comment',
  'hell',
  'come',
  'tomorrow',
  'get',
  'ring',
  'car',
  'thing',
  'fiancé_propos',
  'propos_last',
  'last_week',
  'week_weve',
  'weve_date',
  'date_year',
  'year_yo',
  'yo_daughter',
  'daughter_previou',
  'previou_marriag',
  'marriag_mom',
  'mom_pass',
  'pass_year',
  'year_ago',
  'ago_yo',
  'yo_son',
  'son_fiancé',
  'fiancé_start',
  'start_date',
  'date_notic',
  'notic_daughter',
  'daughter_master',
  'master_bedroom',
  'bedroom_found',
  'found_weird',
  'weird_ive',
  'ive_never',
  'never_seen',
  'seen_child',
  'child_take',
  'take_master',
  'master_bedroom',
  'bedroom_brush',
  'brush_say',
  'say_hous',
  'hous_normal',
  'normal_slept',
  'slept_*',
  '*_explan',
  'explan_*',
  '*_thought',
  'thought_meant',
  'meant_inherit',
  'inherit_pass',
  'pass_away',
  'away_still',
  'still_weird',
  'weird_aliv',
  'aliv_either',
  'either_way',
  'way_say',
  'say_anyth',
  'anyth_begin',
  'begin_knew',
  'knew_busi',
  'busi_engag',
  'engag_said',
  'said_want',
  'want_move',
  'move_live',
  'live_togeth',
  'togeth_decid',
  'decid_wed',
  'wed_date',
  'date_said',
  'said_could',
  'could_could',
  'could_get',
  'get_hous',
  'hous_regardless',
  'regardless_ask',
  'ask_wrong',
  'wrong_one',
  'one_said',
  'said_noth',
  'noth_daughter',
  'daughter_honest',
  'honest_get',
  'get_littl',
  'littl_mad',
  'mad_said',
  'said_fair',
  'fair_call',
  'call_daughter',
  'daughter_get',
  'get_marri',
  'marri_suppos',
  'suppos_adopt',
  'adopt_son',
  'son_hous',
  'hous_also',
  'also_said',
  'said_want',
  'want_daughter',
  'daughter_master',
  'master_got',
  'got_littl',
  'littl_nervou',
  'nervou_said',
  'said_hous',
  'hous_realli',
  'realli_belong',
  'belong_late',
  'late_wife',
  'wife_pass',
  'pass_hous',
  'hous_becam',
  'becam_daughter',
  'daughter_enough',
  'enough_money',
  'money_mayb',
  'mayb_%',
  '%_hous',
  'hous_pay',
  'pay_rest',
  'rest_togeth',
  'togeth_shock',
  'shock_said',
  'said_could',
  'could_ask',
  'ask_daughter',
  'daughter_hous',
  'hous_dad',
  'dad_said',
  'said_daughter',
  'daughter_got',
  'got_angri',
  'angri_call',
  'call_jerk',
  'jerk_told',
  'told_truth',
  'truth_said',
  'said_like',
  'like_homeless',
  'homeless_anyth',
  'anyth_still',
  'still_year',
  'year_mayb',
  'mayb_daughter',
  'daughter_leav',
  'leav_colleg',
  'colleg_said',
  'said_alway',
  'alway_known',
  'known_move',
  'move_save',
  'save_ask',
  'ask_els',
  'els_belong',
  'belong_daughter',
  'daughter_know',
  'know_said',
  'said_car',
  'car_kia',
  'kia_car',
  'car_alway',
  'alway_use',
  'use_leav',
  'leav_colleg',
  'colleg_call',
  'call_jerk',
  'jerk_left',
  'left_son',
  'son_parent',
  'parent_hous',
  'hous_told',
  'told_famili',
  'famili_brother',
  'brother_laugh',
  'laugh_talk',
  'talk_act',
  'act_like',
  'like_gold',
  'gold_digger',
  'digger_call',
  'call_ah',
  'ah_felt',
  'felt_betray',
  'betray_lie',
  'lie_realli',
  'realli_ta',
  'ta_think',
  'think_im',
  'im_justifi',
  'justifi_eta',
  'eta_saw',
  'saw_post',
  'post_ask',
  'ask_ring',
  'ring_back',
  'back_guess',
  'guess_problem',
  'problem_anymor',
  'anymor_eta',
  'eta_need',
  'need_keep',
  'keep_comment',
  'comment_hell',
  'hell_come',
  'come_tomorrow',
  'tomorrow_get',
  'get_ring',
  'ring_car',
  'car_thing',
  'fiancé_propos_last',
  'propos_last_week',
  'last_week_weve',
  'week_weve_date',
  'weve_date_year',
  'date_year_yo',
  'year_yo_daughter',
  'yo_daughter_previou',
  'daughter_previou_marriag',
  'previou_marriag_mom',
  'marriag_mom_pass',
  'mom_pass_year',
  'pass_year_ago',
  'year_ago_yo',
  'ago_yo_son',
  'yo_son_fiancé',
  'son_fiancé_start',
  'fiancé_start_date',
  'start_date_notic',
  'date_notic_daughter',
  'notic_daughter_master',
  'daughter_master_bedroom',
  'master_bedroom_found',
  'bedroom_found_weird',
  'found_weird_ive',
  'weird_ive_never',
  'ive_never_seen',
  'never_seen_child',
  'seen_child_take',
  'child_take_master',
  'take_master_bedroom',
  'master_bedroom_brush',
  'bedroom_brush_say',
  'brush_say_hous',
  'say_hous_normal',
  'hous_normal_slept',
  'normal_slept_*',
  'slept_*_explan',
  '*_explan_*',
  'explan_*_thought',
  '*_thought_meant',
  'thought_meant_inherit',
  'meant_inherit_pass',
  'inherit_pass_away',
  'pass_away_still',
  'away_still_weird',
  'still_weird_aliv',
  'weird_aliv_either',
  'aliv_either_way',
  'either_way_say',
  'way_say_anyth',
  'say_anyth_begin',
  'anyth_begin_knew',
  'begin_knew_busi',
  'knew_busi_engag',
  'busi_engag_said',
  'engag_said_want',
  'said_want_move',
  'want_move_live',
  'move_live_togeth',
  'live_togeth_decid',
  'togeth_decid_wed',
  'decid_wed_date',
  'wed_date_said',
  'date_said_could',
  'said_could_could',
  'could_could_get',
  'could_get_hous',
  'get_hous_regardless',
  'hous_regardless_ask',
  'regardless_ask_wrong',
  'ask_wrong_one',
  'wrong_one_said',
  'one_said_noth',
  'said_noth_daughter',
  'noth_daughter_honest',
  'daughter_honest_get',
  'honest_get_littl',
  'get_littl_mad',
  'littl_mad_said',
  'mad_said_fair',
  'said_fair_call',
  'fair_call_daughter',
  'call_daughter_get',
  'daughter_get_marri',
  'get_marri_suppos',
  'marri_suppos_adopt',
  'suppos_adopt_son',
  'adopt_son_hous',
  'son_hous_also',
  'hous_also_said',
  'also_said_want',
  'said_want_daughter',
  'want_daughter_master',
  'daughter_master_got',
  'master_got_littl',
  'got_littl_nervou',
  'littl_nervou_said',
  'nervou_said_hous',
  'said_hous_realli',
  'hous_realli_belong',
  'realli_belong_late',
  'belong_late_wife',
  'late_wife_pass',
  'wife_pass_hous',
  'pass_hous_becam',
  'hous_becam_daughter',
  'becam_daughter_enough',
  'daughter_enough_money',
  'enough_money_mayb',
  'money_mayb_%',
  'mayb_%_hous',
  '%_hous_pay',
  'hous_pay_rest',
  'pay_rest_togeth',
  'rest_togeth_shock',
  'togeth_shock_said',
  'shock_said_could',
  'said_could_ask',
  'could_ask_daughter',
  'ask_daughter_hous',
  'daughter_hous_dad',
  'hous_dad_said',
  'dad_said_daughter',
  'said_daughter_got',
  'daughter_got_angri',
  'got_angri_call',
  'angri_call_jerk',
  'call_jerk_told',
  'jerk_told_truth',
  'told_truth_said',
  'truth_said_like',
  'said_like_homeless',
  'like_homeless_anyth',
  'homeless_anyth_still',
  'anyth_still_year',
  'still_year_mayb',
  'year_mayb_daughter',
  'mayb_daughter_leav',
  'daughter_leav_colleg',
  'leav_colleg_said',
  'colleg_said_alway',
  'said_alway_known',
  'alway_known_move',
  'known_move_save',
  'move_save_ask',
  'save_ask_els',
  'ask_els_belong',
  'els_belong_daughter',
  'belong_daughter_know',
  'daughter_know_said',
  'know_said_car',
  'said_car_kia',
  'car_kia_car',
  'kia_car_alway',
  'car_alway_use',
  'alway_use_leav',
  'use_leav_colleg',
  'leav_colleg_call',
  'colleg_call_jerk',
  'call_jerk_left',
  'jerk_left_son',
  'left_son_parent',
  'son_parent_hous',
  'parent_hous_told',
  'hous_told_famili',
  'told_famili_brother',
  'famili_brother_laugh',
  'brother_laugh_talk',
  'laugh_talk_act',
  'talk_act_like',
  'act_like_gold',
  'like_gold_digger',
  'gold_digger_call',
  'digger_call_ah',
  'call_ah_felt',
  'ah_felt_betray',
  'felt_betray_lie',
  'betray_lie_realli',
  'lie_realli_ta',
  'realli_ta_think',
  'ta_think_im',
  'think_im_justifi',
  'im_justifi_eta',
  'justifi_eta_saw',
  'eta_saw_post',
  'saw_post_ask',
  'post_ask_ring',
  'ask_ring_back',
  'ring_back_guess',
  'back_guess_problem',
  'guess_problem_anymor',
  'problem_anymor_eta',
  'anymor_eta_need',
  'eta_need_keep',
  'need_keep_comment',
  'keep_comment_hell',
  'comment_hell_come',
  'hell_come_tomorrow',
  'come_tomorrow_get',
  'tomorrow_get_ring',
  'get_ring_car',
  'ring_car_thing'],
 ['around',
  'three',
  'month',
  'got',
  'marri',
  'husband',
  'ive',
  'hear',
  'il',
  'nonstop',
  'husband',
  'younger',
  'sister',
  'alic',
  'opinion',
  'total',
  'brat',
  'alic',
  'type',
  'childhood',
  'sick',
  'overcam',
  'howev',
  'parent',
  'extrem',
  'lenient',
  'point',
  'correct',
  'form',
  'without',
  'big',
  'deal',
  'let',
  'go',
  'multipl',
  'job',
  'mani',
  'friend',
  'alway',
  'center',
  'attent',
  'sil',
  'birthday',
  'parent',
  'got',
  'alic',
  'gift',
  'case',
  'got',
  'jealou',
  'child',
  'sisterli',
  'figur',
  'best',
  'friend',
  'mari',
  'met',
  'third',
  'grade',
  'sinc',
  'children',
  'instantli',
  'click',
  'fierc',
  'protect',
  'husband',
  'decid',
  'summer',
  'wed',
  'surpris',
  'alic',
  'show',
  'wear',
  'laci',
  'white',
  'dress',
  'told',
  'pick',
  'wed',
  'catalog',
  'wouldv',
  'believ',
  'wed',
  'main',
  'recept',
  'cocktail',
  'hour',
  'peopl',
  'kept',
  'ask',
  'alic',
  'becom',
  'visual',
  'annoy',
  'lot',
  'peopl',
  'thought',
  'husband',
  'ex',
  'instead',
  'sister',
  'could',
  'tell',
  'situat',
  'piss',
  'mari',
  'watch',
  'mari',
  'walk',
  'husband',
  'famili',
  'greet',
  'way',
  'back',
  'trip',
  'fell',
  'alic',
  'hold',
  'glass',
  'full',
  'red',
  'wine',
  'alic',
  'ran',
  'bathroom',
  'mil',
  'follow',
  'dad',
  'came',
  'us',
  'start',
  'demand',
  'mari',
  'leav',
  'told',
  'mari',
  'lightweight',
  'mistak',
  'husband',
  'back',
  'said',
  'sinc',
  'mari',
  'thin',
  'cant',
  'handl',
  'much',
  'alcohol',
  'wed',
  'make',
  'sure',
  'sober',
  'recept',
  'recept',
  'alic',
  'wear',
  'beauti',
  'green',
  'dress',
  'brought',
  'ross',
  'mari',
  'magic',
  'felt',
  'better',
  'law',
  'bring',
  'incid',
  'nonstop',
  'hard',
  'time',
  'feel',
  'bad',
  'even',
  'though',
  'know',
  'accid',
  'around_three',
  'three_month',
  'month_got',
  'got_marri',
  'marri_husband',
  'husband_ive',
  'ive_hear',
  'hear_il',
  'il_nonstop',
  'nonstop_husband',
  'husband_younger',
  'younger_sister',
  'sister_alic',
  'alic_opinion',
  'opinion_total',
  'total_brat',
  'brat_alic',
  'alic_type',
  'type_childhood',
  'childhood_sick',
  'sick_overcam',
  'overcam_howev',
  'howev_parent',
  'parent_extrem',
  'extrem_lenient',
  'lenient_point',
  'point_correct',
  'correct_form',
  'form_without',
  'without_big',
  'big_deal',
  'deal_let',
  'let_go',
  'go_multipl',
  'multipl_job',
  'job_mani',
  'mani_friend',
  'friend_alway',
  'alway_center',
  'center_attent',
  'attent_sil',
  'sil_birthday',
  'birthday_parent',
  'parent_got',
  'got_alic',
  'alic_gift',
  'gift_case',
  'case_got',
  'got_jealou',
  'jealou_child',
  'child_sisterli',
  'sisterli_figur',
  'figur_best',
  'best_friend',
  'friend_mari',
  'mari_met',
  'met_third',
  'third_grade',
  'grade_sinc',
  'sinc_children',
  'children_instantli',
  'instantli_click',
  'click_fierc',
  'fierc_protect',
  'protect_husband',
  'husband_decid',
  'decid_summer',
  'summer_wed',
  'wed_surpris',
  'surpris_alic',
  'alic_show',
  'show_wear',
  'wear_laci',
  'laci_white',
  'white_dress',
  'dress_told',
  'told_pick',
  'pick_wed',
  'wed_catalog',
  'catalog_wouldv',
  'wouldv_believ',
  'believ_wed',
  'wed_main',
  'main_recept',
  'recept_cocktail',
  'cocktail_hour',
  'hour_peopl',
  'peopl_kept',
  'kept_ask',
  'ask_alic',
  'alic_becom',
  'becom_visual',
  'visual_annoy',
  'annoy_lot',
  'lot_peopl',
  'peopl_thought',
  'thought_husband',
  'husband_ex',
  'ex_instead',
  'instead_sister',
  'sister_could',
  'could_tell',
  'tell_situat',
  'situat_piss',
  'piss_mari',
  'mari_watch',
  'watch_mari',
  'mari_walk',
  'walk_husband',
  'husband_famili',
  'famili_greet',
  'greet_way',
  'way_back',
  'back_trip',
  'trip_fell',
  'fell_alic',
  'alic_hold',
  'hold_glass',
  'glass_full',
  'full_red',
  'red_wine',
  'wine_alic',
  'alic_ran',
  'ran_bathroom',
  'bathroom_mil',
  'mil_follow',
  'follow_dad',
  'dad_came',
  'came_us',
  'us_start',
  'start_demand',
  'demand_mari',
  'mari_leav',
  'leav_told',
  'told_mari',
  'mari_lightweight',
  'lightweight_mistak',
  'mistak_husband',
  'husband_back',
  'back_said',
  'said_sinc',
  'sinc_mari',
  'mari_thin',
  'thin_cant',
  'cant_handl',
  'handl_much',
  'much_alcohol',
  'alcohol_wed',
  'wed_make',
  'make_sure',
  'sure_sober',
  'sober_recept',
  'recept_recept',
  'recept_alic',
  'alic_wear',
  'wear_beauti',
  'beauti_green',
  'green_dress',
  'dress_brought',
  'brought_ross',
  'ross_mari',
  'mari_magic',
  'magic_felt',
  'felt_better',
  'better_law',
  'law_bring',
  'bring_incid',
  'incid_nonstop',
  'nonstop_hard',
  'hard_time',
  'time_feel',
  'feel_bad',
  'bad_even',
  'even_though',
  'though_know',
  'know_accid',
  'around_three_month',
  'three_month_got',
  'month_got_marri',
  'got_marri_husband',
  'marri_husband_ive',
  'husband_ive_hear',
  'ive_hear_il',
  'hear_il_nonstop',
  'il_nonstop_husband',
  'nonstop_husband_younger',
  'husband_younger_sister',
  'younger_sister_alic',
  'sister_alic_opinion',
  'alic_opinion_total',
  'opinion_total_brat',
  'total_brat_alic',
  'brat_alic_type',
  'alic_type_childhood',
  'type_childhood_sick',
  'childhood_sick_overcam',
  'sick_overcam_howev',
  'overcam_howev_parent',
  'howev_parent_extrem',
  'parent_extrem_lenient',
  'extrem_lenient_point',
  'lenient_point_correct',
  'point_correct_form',
  'correct_form_without',
  'form_without_big',
  'without_big_deal',
  'big_deal_let',
  'deal_let_go',
  'let_go_multipl',
  'go_multipl_job',
  'multipl_job_mani',
  'job_mani_friend',
  'mani_friend_alway',
  'friend_alway_center',
  'alway_center_attent',
  'center_attent_sil',
  'attent_sil_birthday',
  'sil_birthday_parent',
  'birthday_parent_got',
  'parent_got_alic',
  'got_alic_gift',
  'alic_gift_case',
  'gift_case_got',
  'case_got_jealou',
  'got_jealou_child',
  'jealou_child_sisterli',
  'child_sisterli_figur',
  'sisterli_figur_best',
  'figur_best_friend',
  'best_friend_mari',
  'friend_mari_met',
  'mari_met_third',
  'met_third_grade',
  'third_grade_sinc',
  'grade_sinc_children',
  'sinc_children_instantli',
  'children_instantli_click',
  'instantli_click_fierc',
  'click_fierc_protect',
  'fierc_protect_husband',
  'protect_husband_decid',
  'husband_decid_summer',
  'decid_summer_wed',
  'summer_wed_surpris',
  'wed_surpris_alic',
  'surpris_alic_show',
  'alic_show_wear',
  'show_wear_laci',
  'wear_laci_white',
  'laci_white_dress',
  'white_dress_told',
  'dress_told_pick',
  'told_pick_wed',
  'pick_wed_catalog',
  'wed_catalog_wouldv',
  'catalog_wouldv_believ',
  'wouldv_believ_wed',
  'believ_wed_main',
  'wed_main_recept',
  'main_recept_cocktail',
  'recept_cocktail_hour',
  'cocktail_hour_peopl',
  'hour_peopl_kept',
  'peopl_kept_ask',
  'kept_ask_alic',
  'ask_alic_becom',
  'alic_becom_visual',
  'becom_visual_annoy',
  'visual_annoy_lot',
  'annoy_lot_peopl',
  'lot_peopl_thought',
  'peopl_thought_husband',
  'thought_husband_ex',
  'husband_ex_instead',
  'ex_instead_sister',
  'instead_sister_could',
  'sister_could_tell',
  'could_tell_situat',
  'tell_situat_piss',
  'situat_piss_mari',
  'piss_mari_watch',
  'mari_watch_mari',
  'watch_mari_walk',
  'mari_walk_husband',
  'walk_husband_famili',
  'husband_famili_greet',
  'famili_greet_way',
  'greet_way_back',
  'way_back_trip',
  'back_trip_fell',
  'trip_fell_alic',
  'fell_alic_hold',
  'alic_hold_glass',
  'hold_glass_full',
  'glass_full_red',
  'full_red_wine',
  'red_wine_alic',
  'wine_alic_ran',
  'alic_ran_bathroom',
  'ran_bathroom_mil',
  'bathroom_mil_follow',
  'mil_follow_dad',
  'follow_dad_came',
  'dad_came_us',
  'came_us_start',
  'us_start_demand',
  'start_demand_mari',
  'demand_mari_leav',
  'mari_leav_told',
  'leav_told_mari',
  'told_mari_lightweight',
  'mari_lightweight_mistak',
  'lightweight_mistak_husband',
  'mistak_husband_back',
  'husband_back_said',
  'back_said_sinc',
  'said_sinc_mari',
  'sinc_mari_thin',
  'mari_thin_cant',
  'thin_cant_handl',
  'cant_handl_much',
  'handl_much_alcohol',
  'much_alcohol_wed',
  'alcohol_wed_make',
  'wed_make_sure',
  'make_sure_sober',
  'sure_sober_recept',
  'sober_recept_recept',
  'recept_recept_alic',
  'recept_alic_wear',
  'alic_wear_beauti',
  'wear_beauti_green',
  'beauti_green_dress',
  'green_dress_brought',
  'dress_brought_ross',
  'brought_ross_mari',
  'ross_mari_magic',
  'mari_magic_felt',
  'magic_felt_better',
  'felt_better_law',
  'better_law_bring',
  'law_bring_incid',
  'bring_incid_nonstop',
  'incid_nonstop_hard',
  'nonstop_hard_time',
  'hard_time_feel',
  'time_feel_bad',
  'feel_bad_even',
  'bad_even_though',
  'even_though_know',
  'though_know_accid'],
 ['wife',
  'gave',
  'birth',
  'recent',
  'tri',
  'breastfe',
  'babi',
  'like',
  'formula',
  'cant',
  'latch',
  'onto',
  'silicon',
  'nippl',
  'properli',
  'hard',
  'time',
  'produc',
  'enough',
  'milk',
  'mom',
  'midwif',
  'said',
  'stress',
  'wife',
  'stress',
  'make',
  'enough',
  'breastmilk',
  'doctor',
  'lactat',
  'consult',
  'confirm',
  'stress',
  'impact',
  'flow',
  'milk',
  'wife',
  'work',
  'ping',
  'us',
  'even',
  'though',
  'six',
  'month',
  'matern',
  'leav',
  'mom',
  'move',
  'us',
  'help',
  'babi',
  'wife',
  'famili',
  'live',
  'far',
  'anyth',
  'moral',
  'support',
  'make',
  'wife',
  'food',
  'stuff',
  'help',
  'milk',
  'product',
  'make',
  'wife',
  'rest',
  'make',
  'sure',
  'get',
  'enough',
  'sleep',
  'mom',
  'suggest',
  'wife',
  'lie',
  'quiet',
  'dim',
  'room',
  'mom',
  'would',
  'rub',
  'feet',
  'shoulder',
  'would',
  'stroke',
  'hair',
  'thing',
  'sooth',
  'wife',
  'let',
  'feel',
  'relax',
  'actual',
  'work',
  'best',
  'import',
  'part',
  'start',
  'process',
  'babi',
  'hungri',
  'wife',
  'incred',
  'irrit',
  'childhood',
  'friend',
  'becki',
  'becki',
  'worst',
  'type',
  'soul',
  'suck',
  'person',
  'make',
  'shitti',
  'problem',
  'run',
  'wife',
  'fix',
  'wife',
  'reluct',
  'stand',
  'becki',
  'becki',
  'girl',
  'make',
  'fun',
  'childhood',
  'treat',
  'wife',
  'like',
  'person',
  'servant',
  'sunday',
  'becki',
  'came',
  'man',
  'hook',
  'dump',
  'plu',
  'spent',
  'money',
  'booz',
  'weed',
  'afford',
  'rent',
  'month',
  'alreadi',
  'late',
  'expect',
  'call',
  'wife',
  'could',
  'fix',
  'problem',
  'said',
  'told',
  'leav',
  'wife',
  'breastfeed',
  'insist',
  'tri',
  'sneak',
  'past',
  'enter',
  'hous',
  'told',
  'wife',
  'breastfeed',
  'could',
  'disturb',
  'per',
  'mom',
  'suggest',
  'told',
  'would',
  'stress',
  'wife',
  'problem',
  'want',
  'come',
  'talk',
  'call',
  'control',
  'momma',
  'boy',
  'friend',
  'wife',
  'later',
  'text',
  'call',
  'asshol',
  'wife',
  'say',
  'care',
  'told',
  'leav',
  'said',
  'could',
  'gentler',
  'problem',
  'wife_gave',
  'gave_birth',
  'birth_recent',
  'recent_tri',
  'tri_breastfe',
  'breastfe_babi',
  'babi_like',
  'like_formula',
  'formula_cant',
  'cant_latch',
  'latch_onto',
  'onto_silicon',
  'silicon_nippl',
  'nippl_properli',
  'properli_hard',
  'hard_time',
  'time_produc',
  'produc_enough',
  'enough_milk',
  'milk_mom',
  'mom_midwif',
  'midwif_said',
  'said_stress',
  'stress_wife',
  'wife_stress',
  'stress_make',
  'make_enough',
  'enough_breastmilk',
  'breastmilk_doctor',
  'doctor_lactat',
  'lactat_consult',
  'consult_confirm',
  'confirm_stress',
  'stress_impact',
  'impact_flow',
  'flow_milk',
  'milk_wife',
  'wife_work',
  'work_ping',
  'ping_us',
  'us_even',
  'even_though',
  'though_six',
  'six_month',
  'month_matern',
  'matern_leav',
  'leav_mom',
  'mom_move',
  'move_us',
  'us_help',
  'help_babi',
  'babi_wife',
  'wife_famili',
  'famili_live',
  'live_far',
  'far_anyth',
  'anyth_moral',
  'moral_support',
  'support_make',
  'make_wife',
  'wife_food',
  'food_stuff',
  'stuff_help',
  'help_milk',
  'milk_product',
  'product_make',
  'make_wife',
  'wife_rest',
  'rest_make',
  'make_sure',
  'sure_get',
  'get_enough',
  'enough_sleep',
  'sleep_mom',
  'mom_suggest',
  'suggest_wife',
  'wife_lie',
  'lie_quiet',
  'quiet_dim',
  'dim_room',
  'room_mom',
  'mom_would',
  'would_rub',
  'rub_feet',
  'feet_shoulder',
  'shoulder_would',
  'would_stroke',
  'stroke_hair',
  'hair_thing',
  'thing_sooth',
  'sooth_wife',
  'wife_let',
  'let_feel',
  'feel_relax',
  'relax_actual',
  'actual_work',
  'work_best',
  'best_import',
  'import_part',
  'part_start',
  'start_process',
  'process_babi',
  'babi_hungri',
  'hungri_wife',
  'wife_incred',
  'incred_irrit',
  'irrit_childhood',
  'childhood_friend',
  'friend_becki',
  'becki_becki',
  'becki_worst',
  'worst_type',
  'type_soul',
  'soul_suck',
  'suck_person',
  'person_make',
  'make_shitti',
  'shitti_problem',
  'problem_run',
  'run_wife',
  'wife_fix',
  'fix_wife',
  'wife_reluct',
  'reluct_stand',
  'stand_becki',
  'becki_becki',
  'becki_girl',
  'girl_make',
  'make_fun',
  'fun_childhood',
  'childhood_treat',
  'treat_wife',
  'wife_like',
  'like_person',
  'person_servant',
  'servant_sunday',
  'sunday_becki',
  'becki_came',
  'came_man',
  'man_hook',
  'hook_dump',
  'dump_plu',
  'plu_spent',
  'spent_money',
  'money_booz',
  'booz_weed',
  'weed_afford',
  'afford_rent',
  'rent_month',
  'month_alreadi',
  'alreadi_late',
  'late_expect',
  'expect_call',
  'call_wife',
  'wife_could',
  'could_fix',
  'fix_problem',
  'problem_said',
  'said_told',
  'told_leav',
  'leav_wife',
  'wife_breastfeed',
  'breastfeed_insist',
  'insist_tri',
  'tri_sneak',
  'sneak_past',
  'past_enter',
  'enter_hous',
  'hous_told',
  'told_wife',
  'wife_breastfeed',
  'breastfeed_could',
  'could_disturb',
  'disturb_per',
  'per_mom',
  'mom_suggest',
  'suggest_told',
  'told_would',
  'would_stress',
  'stress_wife',
  'wife_problem',
  'problem_want',
  'want_come',
  'come_talk',
  'talk_call',
  'call_control',
  'control_momma',
  'momma_boy',
  'boy_friend',
  'friend_wife',
  'wife_later',
  'later_text',
  'text_call',
  'call_asshol',
  'asshol_wife',
  'wife_say',
  'say_care',
  'care_told',
  'told_leav',
  'leav_said',
  'said_could',
  'could_gentler',
  'gentler_problem',
  'wife_gave_birth',
  'gave_birth_recent',
  'birth_recent_tri',
  'recent_tri_breastfe',
  'tri_breastfe_babi',
  'breastfe_babi_like',
  'babi_like_formula',
  'like_formula_cant',
  'formula_cant_latch',
  'cant_latch_onto',
  'latch_onto_silicon',
  'onto_silicon_nippl',
  'silicon_nippl_properli',
  'nippl_properli_hard',
  'properli_hard_time',
  'hard_time_produc',
  'time_produc_enough',
  'produc_enough_milk',
  'enough_milk_mom',
  'milk_mom_midwif',
  'mom_midwif_said',
  'midwif_said_stress',
  'said_stress_wife',
  'stress_wife_stress',
  'wife_stress_make',
  'stress_make_enough',
  'make_enough_breastmilk',
  'enough_breastmilk_doctor',
  'breastmilk_doctor_lactat',
  'doctor_lactat_consult',
  'lactat_consult_confirm',
  'consult_confirm_stress',
  'confirm_stress_impact',
  'stress_impact_flow',
  'impact_flow_milk',
  'flow_milk_wife',
  'milk_wife_work',
  'wife_work_ping',
  'work_ping_us',
  'ping_us_even',
  'us_even_though',
  'even_though_six',
  'though_six_month',
  'six_month_matern',
  'month_matern_leav',
  'matern_leav_mom',
  'leav_mom_move',
  'mom_move_us',
  'move_us_help',
  'us_help_babi',
  'help_babi_wife',
  'babi_wife_famili',
  'wife_famili_live',
  'famili_live_far',
  'live_far_anyth',
  'far_anyth_moral',
  'anyth_moral_support',
  'moral_support_make',
  'support_make_wife',
  'make_wife_food',
  'wife_food_stuff',
  'food_stuff_help',
  'stuff_help_milk',
  'help_milk_product',
  'milk_product_make',
  'product_make_wife',
  'make_wife_rest',
  'wife_rest_make',
  'rest_make_sure',
  'make_sure_get',
  'sure_get_enough',
  'get_enough_sleep',
  'enough_sleep_mom',
  'sleep_mom_suggest',
  'mom_suggest_wife',
  'suggest_wife_lie',
  'wife_lie_quiet',
  'lie_quiet_dim',
  'quiet_dim_room',
  'dim_room_mom',
  'room_mom_would',
  'mom_would_rub',
  'would_rub_feet',
  'rub_feet_shoulder',
  'feet_shoulder_would',
  'shoulder_would_stroke',
  'would_stroke_hair',
  'stroke_hair_thing',
  'hair_thing_sooth',
  'thing_sooth_wife',
  'sooth_wife_let',
  'wife_let_feel',
  'let_feel_relax',
  'feel_relax_actual',
  'relax_actual_work',
  'actual_work_best',
  'work_best_import',
  'best_import_part',
  'import_part_start',
  'part_start_process',
  'start_process_babi',
  'process_babi_hungri',
  'babi_hungri_wife',
  'hungri_wife_incred',
  'wife_incred_irrit',
  'incred_irrit_childhood',
  'irrit_childhood_friend',
  'childhood_friend_becki',
  'friend_becki_becki',
  'becki_becki_worst',
  'becki_worst_type',
  'worst_type_soul',
  'type_soul_suck',
  'soul_suck_person',
  'suck_person_make',
  'person_make_shitti',
  'make_shitti_problem',
  'shitti_problem_run',
  'problem_run_wife',
  'run_wife_fix',
  'wife_fix_wife',
  'fix_wife_reluct',
  'wife_reluct_stand',
  'reluct_stand_becki',
  'stand_becki_becki',
  'becki_becki_girl',
  'becki_girl_make',
  'girl_make_fun',
  'make_fun_childhood',
  'fun_childhood_treat',
  'childhood_treat_wife',
  'treat_wife_like',
  'wife_like_person',
  'like_person_servant',
  'person_servant_sunday',
  'servant_sunday_becki',
  'sunday_becki_came',
  'becki_came_man',
  'came_man_hook',
  'man_hook_dump',
  'hook_dump_plu',
  'dump_plu_spent',
  'plu_spent_money',
  'spent_money_booz',
  'money_booz_weed',
  'booz_weed_afford',
  'weed_afford_rent',
  'afford_rent_month',
  'rent_month_alreadi',
  'month_alreadi_late',
  'alreadi_late_expect',
  'late_expect_call',
  'expect_call_wife',
  'call_wife_could',
  'wife_could_fix',
  'could_fix_problem',
  'fix_problem_said',
  'problem_said_told',
  'said_told_leav',
  'told_leav_wife',
  'leav_wife_breastfeed',
  'wife_breastfeed_insist',
  'breastfeed_insist_tri',
  'insist_tri_sneak',
  'tri_sneak_past',
  'sneak_past_enter',
  'past_enter_hous',
  'enter_hous_told',
  'hous_told_wife',
  'told_wife_breastfeed',
  'wife_breastfeed_could',
  'breastfeed_could_disturb',
  'could_disturb_per',
  'disturb_per_mom',
  'per_mom_suggest',
  'mom_suggest_told',
  'suggest_told_would',
  'told_would_stress',
  'would_stress_wife',
  'stress_wife_problem',
  'wife_problem_want',
  'problem_want_come',
  'want_come_talk',
  'come_talk_call',
  'talk_call_control',
  'call_control_momma',
  'control_momma_boy',
  'momma_boy_friend',
  'boy_friend_wife',
  'friend_wife_later',
  'wife_later_text',
  'later_text_call',
  'text_call_asshol',
  'call_asshol_wife',
  'asshol_wife_say',
  'wife_say_care',
  'say_care_told',
  'care_told_leav',
  'told_leav_said',
  'leav_said_could',
  'said_could_gentler',
  'could_gentler_problem'],
 ['throwaway',
  'ye',
  'know',
  'kid',
  'way',
  'young',
  'mym',
  'son',
  'turn',
  'last',
  'sunday',
  'usual',
  'small',
  'parti',
  'mother',
  'hous',
  'invit',
  'brothersm',
  'kid',
  'sister',
  'daughter',
  'well',
  'neighbor',
  'usual',
  'one',
  'kid',
  'birthday',
  'blow',
  'candl',
  'mom',
  'use',
  'us',
  'yet',
  'ever',
  'sinc',
  'kiddo',
  'turn',
  'refus',
  'last',
  'year',
  'cousin',
  'blow',
  'particip',
  'birthday',
  'came',
  'want',
  'anyon',
  'kid',
  'end',
  'throw',
  'cake',
  'anyway',
  'kid',
  'son',
  'cri',
  'rest',
  'even',
  'refus',
  'eat',
  'cake',
  'sister',
  'talk',
  'daughter',
  'right',
  'brother',
  'said',
  'son',
  'littl',
  'prick',
  'learn',
  'share',
  'stop',
  'talk',
  'monthli',
  'mother',
  'forc',
  'us',
  'make',
  'amend',
  'week',
  'ago',
  'told',
  'kid',
  'allow',
  'blow',
  'candl',
  'son',
  'brother',
  'like',
  'cours',
  'sil',
  'said',
  'gon',
  'na',
  'explain',
  'kid',
  'okay',
  'fast',
  'forward',
  'parti',
  'gf',
  'come',
  'kiddo',
  'cake',
  'gather',
  'around',
  'tabl',
  'sing',
  'happi',
  'birthday',
  'boy',
  'blow',
  'goddamn',
  'candl',
  'notic',
  'nephew',
  'cover',
  'mouth',
  'hand',
  'kid',
  'notic',
  'blow',
  'jump',
  'straight',
  'momma',
  'arm',
  'happi',
  'nephew',
  'start',
  'cri',
  'tell',
  'brother',
  'let',
  'fair',
  'sil',
  'tri',
  'explain',
  'someth',
  'brother',
  'come',
  'right',
  'let',
  'kid',
  'fun',
  'remind',
  'told',
  'son',
  'gon',
  'na',
  'alon',
  'say',
  'told',
  'well',
  'like',
  'leav',
  'mom',
  'tell',
  'im',
  'joke',
  'brother',
  'took',
  'kid',
  'leav',
  'son',
  'obvious',
  'confus',
  'end',
  'play',
  'kid',
  'forget',
  'mom',
  'say',
  'im',
  'ah',
  'son',
  'understand',
  'way',
  'forc',
  'apolog',
  'gf',
  'sister',
  'say',
  'im',
  'right',
  'son',
  'birthday',
  'know',
  'eta',
  'peopl',
  'get',
  'blow',
  'candl',
  'ill',
  'better',
  'next',
  'time',
  'question',
  'tho',
  'throwaway_ye',
  'ye_know',
  'know_kid',
  'kid_way',
  'way_young',
  'young_mym',
  'mym_son',
  'son_turn',
  'turn_last',
  'last_sunday',
  'sunday_usual',
  'usual_small',
  'small_parti',
  'parti_mother',
  'mother_hous',
  'hous_invit',
  'invit_brothersm',
  'brothersm_kid',
  'kid_sister',
  'sister_daughter',
  'daughter_well',
  'well_neighbor',
  'neighbor_usual',
  'usual_one',
  'one_kid',
  'kid_birthday',
  'birthday_blow',
  'blow_candl',
  'candl_mom',
  'mom_use',
  'use_us',
  'us_yet',
  'yet_ever',
  'ever_sinc',
  'sinc_kiddo',
  'kiddo_turn',
  'turn_refus',
  'refus_last',
  'last_year',
  'year_cousin',
  'cousin_blow',
  'blow_particip',
  'particip_birthday',
  'birthday_came',
  'came_want',
  'want_anyon',
  'anyon_kid',
  'kid_end',
  'end_throw',
  'throw_cake',
  'cake_anyway',
  'anyway_kid',
  'kid_son',
  'son_cri',
  'cri_rest',
  'rest_even',
  'even_refus',
  'refus_eat',
  'eat_cake',
  'cake_sister',
  'sister_talk',
  'talk_daughter',
  'daughter_right',
  'right_brother',
  'brother_said',
  'said_son',
  'son_littl',
  'littl_prick',
  'prick_learn',
  'learn_share',
  'share_stop',
  'stop_talk',
  'talk_monthli',
  'monthli_mother',
  'mother_forc',
  'forc_us',
  'us_make',
  'make_amend',
  'amend_week',
  'week_ago',
  'ago_told',
  'told_kid',
  'kid_allow',
  'allow_blow',
  'blow_candl',
  'candl_son',
  'son_brother',
  'brother_like',
  'like_cours',
  'cours_sil',
  'sil_said',
  'said_gon',
  'gon_na',
  'na_explain',
  'explain_kid',
  'kid_okay',
  'okay_fast',
  'fast_forward',
  'forward_parti',
  'parti_gf',
  'gf_come',
  'come_kiddo',
  'kiddo_cake',
  'cake_gather',
  'gather_around',
  'around_tabl',
  'tabl_sing',
  'sing_happi',
  'happi_birthday',
  'birthday_boy',
  'boy_blow',
  'blow_goddamn',
  'goddamn_candl',
  'candl_notic',
  'notic_nephew',
  'nephew_cover',
  'cover_mouth',
  'mouth_hand',
  'hand_kid',
  'kid_notic',
  'notic_blow',
  'blow_jump',
  'jump_straight',
  'straight_momma',
  'momma_arm',
  'arm_happi',
  'happi_nephew',
  'nephew_start',
  'start_cri',
  'cri_tell',
  'tell_brother',
  'brother_let',
  'let_fair',
  'fair_sil',
  'sil_tri',
  'tri_explain',
  'explain_someth',
  'someth_brother',
  'brother_come',
  'come_right',
  'right_let',
  'let_kid',
  'kid_fun',
  'fun_remind',
  'remind_told',
  'told_son',
  'son_gon',
  'gon_na',
  'na_alon',
  'alon_say',
  'say_told',
  'told_well',
  'well_like',
  'like_leav',
  'leav_mom',
  'mom_tell',
  'tell_im',
  'im_joke',
  'joke_brother',
  'brother_took',
  'took_kid',
  'kid_leav',
  'leav_son',
  'son_obvious',
  'obvious_confus',
  'confus_end',
  'end_play',
  'play_kid',
  'kid_forget',
  'forget_mom',
  'mom_say',
  'say_im',
  'im_ah',
  'ah_son',
  'son_understand',
  'understand_way',
  'way_forc',
  'forc_apolog',
  'apolog_gf',
  'gf_sister',
  'sister_say',
  'say_im',
  'im_right',
  'right_son',
  'son_birthday',
  'birthday_know',
  'know_eta',
  'eta_peopl',
  'peopl_get',
  'get_blow',
  'blow_candl',
  'candl_ill',
  'ill_better',
  'better_next',
  'next_time',
  'time_question',
  'question_tho',
  'throwaway_ye_know',
  'ye_know_kid',
  'know_kid_way',
  'kid_way_young',
  'way_young_mym',
  'young_mym_son',
  'mym_son_turn',
  'son_turn_last',
  'turn_last_sunday',
  'last_sunday_usual',
  'sunday_usual_small',
  'usual_small_parti',
  'small_parti_mother',
  'parti_mother_hous',
  'mother_hous_invit',
  'hous_invit_brothersm',
  'invit_brothersm_kid',
  'brothersm_kid_sister',
  'kid_sister_daughter',
  'sister_daughter_well',
  'daughter_well_neighbor',
  'well_neighbor_usual',
  'neighbor_usual_one',
  'usual_one_kid',
  'one_kid_birthday',
  'kid_birthday_blow',
  'birthday_blow_candl',
  'blow_candl_mom',
  'candl_mom_use',
  'mom_use_us',
  'use_us_yet',
  'us_yet_ever',
  'yet_ever_sinc',
  'ever_sinc_kiddo',
  'sinc_kiddo_turn',
  'kiddo_turn_refus',
  'turn_refus_last',
  'refus_last_year',
  'last_year_cousin',
  'year_cousin_blow',
  'cousin_blow_particip',
  'blow_particip_birthday',
  'particip_birthday_came',
  'birthday_came_want',
  'came_want_anyon',
  'want_anyon_kid',
  'anyon_kid_end',
  'kid_end_throw',
  'end_throw_cake',
  'throw_cake_anyway',
  'cake_anyway_kid',
  'anyway_kid_son',
  'kid_son_cri',
  'son_cri_rest',
  'cri_rest_even',
  'rest_even_refus',
  'even_refus_eat',
  'refus_eat_cake',
  'eat_cake_sister',
  'cake_sister_talk',
  'sister_talk_daughter',
  'talk_daughter_right',
  'daughter_right_brother',
  'right_brother_said',
  'brother_said_son',
  'said_son_littl',
  'son_littl_prick',
  'littl_prick_learn',
  'prick_learn_share',
  'learn_share_stop',
  'share_stop_talk',
  'stop_talk_monthli',
  'talk_monthli_mother',
  'monthli_mother_forc',
  'mother_forc_us',
  'forc_us_make',
  'us_make_amend',
  'make_amend_week',
  'amend_week_ago',
  'week_ago_told',
  'ago_told_kid',
  'told_kid_allow',
  'kid_allow_blow',
  'allow_blow_candl',
  'blow_candl_son',
  'candl_son_brother',
  'son_brother_like',
  'brother_like_cours',
  'like_cours_sil',
  'cours_sil_said',
  'sil_said_gon',
  'said_gon_na',
  'gon_na_explain',
  'na_explain_kid',
  'explain_kid_okay',
  'kid_okay_fast',
  'okay_fast_forward',
  'fast_forward_parti',
  'forward_parti_gf',
  'parti_gf_come',
  'gf_come_kiddo',
  'come_kiddo_cake',
  'kiddo_cake_gather',
  'cake_gather_around',
  'gather_around_tabl',
  'around_tabl_sing',
  'tabl_sing_happi',
  'sing_happi_birthday',
  'happi_birthday_boy',
  'birthday_boy_blow',
  'boy_blow_goddamn',
  'blow_goddamn_candl',
  'goddamn_candl_notic',
  'candl_notic_nephew',
  'notic_nephew_cover',
  'nephew_cover_mouth',
  'cover_mouth_hand',
  'mouth_hand_kid',
  'hand_kid_notic',
  'kid_notic_blow',
  'notic_blow_jump',
  'blow_jump_straight',
  'jump_straight_momma',
  'straight_momma_arm',
  'momma_arm_happi',
  'arm_happi_nephew',
  'happi_nephew_start',
  'nephew_start_cri',
  'start_cri_tell',
  'cri_tell_brother',
  'tell_brother_let',
  'brother_let_fair',
  'let_fair_sil',
  'fair_sil_tri',
  'sil_tri_explain',
  'tri_explain_someth',
  'explain_someth_brother',
  'someth_brother_come',
  'brother_come_right',
  'come_right_let',
  'right_let_kid',
  'let_kid_fun',
  'kid_fun_remind',
  'fun_remind_told',
  'remind_told_son',
  'told_son_gon',
  'son_gon_na',
  'gon_na_alon',
  'na_alon_say',
  'alon_say_told',
  'say_told_well',
  'told_well_like',
  'well_like_leav',
  'like_leav_mom',
  'leav_mom_tell',
  'mom_tell_im',
  'tell_im_joke',
  'im_joke_brother',
  'joke_brother_took',
  'brother_took_kid',
  'took_kid_leav',
  'kid_leav_son',
  'leav_son_obvious',
  'son_obvious_confus',
  'obvious_confus_end',
  'confus_end_play',
  'end_play_kid',
  'play_kid_forget',
  'kid_forget_mom',
  'forget_mom_say',
  'mom_say_im',
  'say_im_ah',
  'im_ah_son',
  'ah_son_understand',
  'son_understand_way',
  'understand_way_forc',
  'way_forc_apolog',
  'forc_apolog_gf',
  'apolog_gf_sister',
  'gf_sister_say',
  'sister_say_im',
  'say_im_right',
  'im_right_son',
  'right_son_birthday',
  'son_birthday_know',
  'birthday_know_eta',
  'know_eta_peopl',
  'eta_peopl_get',
  'peopl_get_blow',
  'get_blow_candl',
  'blow_candl_ill',
  'candl_ill_better',
  'ill_better_next',
  'better_next_time',
  'next_time_question',
  'time_question_tho'],
 ['eversinc',
  'femal',
  'got',
  'diagnos',
  'cancer',
  'breast',
  'cancer',
  'month',
  'ago',
  'husband',
  'come',
  'home',
  'busi',
  'stay',
  'last',
  'neatli',
  'month',
  'cancel',
  'contract',
  'compani',
  'got',
  'replac',
  'drive',
  'hospit',
  'take',
  'care',
  'medic',
  'im',
  'grate',
  'develop',
  'habit',
  'blame',
  'condit',
  'everi',
  'littl',
  'thing',
  'hed',
  'make',
  'comment',
  'like',
  'cancer',
  'drive',
  'middl',
  'night',
  'look',
  'medicin',
  'cancer',
  'pull',
  'xyz',
  'bank',
  'account',
  'cover',
  'bill',
  'becus',
  'cancer',
  'seen',
  'famili',
  'hed',
  'say',
  'cancer',
  'id',
  'still',
  'contract',
  'cancer',
  'wed',
  'beg',
  'dad',
  'help',
  'basic',
  'blame',
  'condit',
  'grew',
  'tire',
  'say',
  'anyth',
  'think',
  'say',
  'thing',
  'frustrat',
  'becom',
  'much',
  'worn',
  'final',
  'straw',
  'day',
  'ago',
  'reheat',
  'dinner',
  'hate',
  'eat',
  'anyth',
  'frozen',
  'put',
  'tabl',
  'start',
  'eat',
  'disgust',
  'face',
  'grab',
  'glass',
  'water',
  'enter',
  'kitchen',
  'stay',
  'saw',
  'loudli',
  'said',
  'would',
  'ever',
  'thought',
  'id',
  'settl',
  'frozen',
  'meal',
  'cancer',
  'health',
  'declin',
  'eat',
  'frozen',
  'junk',
  'sinc',
  'cant',
  'even',
  'cook',
  'snap',
  'yell',
  'say',
  'cancer',
  'choic',
  'im',
  'happi',
  'situat',
  'im',
  'constant',
  'remark',
  'condit',
  'gone',
  'far',
  'need',
  'stop',
  'got',
  'mad',
  'argu',
  'say',
  'much',
  'affect',
  'im',
  'incred',
  'unfair',
  'yell',
  'vent',
  'let',
  'frustrat',
  'bottl',
  'explod',
  'leav',
  'everyth',
  'threw',
  'fork',
  'walk',
  'sat',
  'cri',
  'bit',
  'felt',
  'bad',
  'yell',
  'get',
  'fed',
  'listen',
  'say',
  'thing',
  'day',
  'night',
  'top',
  'everyth',
  'els',
  'im',
  'deal',
  'eversinc_femal',
  'femal_got',
  'got_diagnos',
  'diagnos_cancer',
  'cancer_breast',
  'breast_cancer',
  'cancer_month',
  'month_ago',
  'ago_husband',
  'husband_come',
  'come_home',
  'home_busi',
  'busi_stay',
  'stay_last',
  'last_neatli',
  'neatli_month',
  'month_cancel',
  'cancel_contract',
  'contract_compani',
  'compani_got',
  'got_replac',
  'replac_drive',
  'drive_hospit',
  'hospit_take',
  'take_care',
  'care_medic',
  'medic_im',
  'im_grate',
  'grate_develop',
  'develop_habit',
  'habit_blame',
  'blame_condit',
  'condit_everi',
  'everi_littl',
  'littl_thing',
  'thing_hed',
  'hed_make',
  'make_comment',
  'comment_like',
  'like_cancer',
  'cancer_drive',
  'drive_middl',
  'middl_night',
  'night_look',
  'look_medicin',
  'medicin_cancer',
  'cancer_pull',
  'pull_xyz',
  'xyz_bank',
  'bank_account',
  'account_cover',
  'cover_bill',
  'bill_becus',
  'becus_cancer',
  'cancer_seen',
  'seen_famili',
  'famili_hed',
  'hed_say',
  'say_cancer',
  'cancer_id',
  'id_still',
  'still_contract',
  'contract_cancer',
  'cancer_wed',
  'wed_beg',
  'beg_dad',
  'dad_help',
  'help_basic',
  'basic_blame',
  'blame_condit',
  'condit_grew',
  'grew_tire',
  'tire_say',
  'say_anyth',
  'anyth_think',
  'think_say',
  'say_thing',
  'thing_frustrat',
  'frustrat_becom',
  'becom_much',
  'much_worn',
  'worn_final',
  'final_straw',
  'straw_day',
  'day_ago',
  'ago_reheat',
  'reheat_dinner',
  'dinner_hate',
  'hate_eat',
  'eat_anyth',
  'anyth_frozen',
  'frozen_put',
  'put_tabl',
  'tabl_start',
  'start_eat',
  'eat_disgust',
  'disgust_face',
  'face_grab',
  'grab_glass',
  'glass_water',
  'water_enter',
  'enter_kitchen',
  'kitchen_stay',
  'stay_saw',
  'saw_loudli',
  'loudli_said',
  'said_would',
  'would_ever',
  'ever_thought',
  'thought_id',
  'id_settl',
  'settl_frozen',
  'frozen_meal',
  'meal_cancer',
  'cancer_health',
  'health_declin',
  'declin_eat',
  'eat_frozen',
  'frozen_junk',
  'junk_sinc',
  'sinc_cant',
  'cant_even',
  'even_cook',
  'cook_snap',
  'snap_yell',
  'yell_say',
  'say_cancer',
  'cancer_choic',
  'choic_im',
  'im_happi',
  'happi_situat',
  'situat_im',
  'im_constant',
  'constant_remark',
  'remark_condit',
  'condit_gone',
  'gone_far',
  'far_need',
  'need_stop',
  'stop_got',
  'got_mad',
  'mad_argu',
  'argu_say',
  'say_much',
  'much_affect',
  'affect_im',
  'im_incred',
  'incred_unfair',
  'unfair_yell',
  'yell_vent',
  'vent_let',
  'let_frustrat',
  'frustrat_bottl',
  'bottl_explod',
  'explod_leav',
  'leav_everyth',
  'everyth_threw',
  'threw_fork',
  'fork_walk',
  'walk_sat',
  'sat_cri',
  'cri_bit',
  'bit_felt',
  'felt_bad',
  'bad_yell',
  'yell_get',
  'get_fed',
  'fed_listen',
  'listen_say',
  'say_thing',
  'thing_day',
  'day_night',
  'night_top',
  'top_everyth',
  'everyth_els',
  'els_im',
  'im_deal',
  'eversinc_femal_got',
  'femal_got_diagnos',
  'got_diagnos_cancer',
  'diagnos_cancer_breast',
  'cancer_breast_cancer',
  'breast_cancer_month',
  'cancer_month_ago',
  'month_ago_husband',
  'ago_husband_come',
  'husband_come_home',
  'come_home_busi',
  'home_busi_stay',
  'busi_stay_last',
  'stay_last_neatli',
  'last_neatli_month',
  'neatli_month_cancel',
  'month_cancel_contract',
  'cancel_contract_compani',
  'contract_compani_got',
  'compani_got_replac',
  'got_replac_drive',
  'replac_drive_hospit',
  'drive_hospit_take',
  'hospit_take_care',
  'take_care_medic',
  'care_medic_im',
  'medic_im_grate',
  'im_grate_develop',
  'grate_develop_habit',
  'develop_habit_blame',
  'habit_blame_condit',
  'blame_condit_everi',
  'condit_everi_littl',
  'everi_littl_thing',
  'littl_thing_hed',
  'thing_hed_make',
  'hed_make_comment',
  'make_comment_like',
  'comment_like_cancer',
  'like_cancer_drive',
  'cancer_drive_middl',
  'drive_middl_night',
  'middl_night_look',
  'night_look_medicin',
  'look_medicin_cancer',
  'medicin_cancer_pull',
  'cancer_pull_xyz',
  'pull_xyz_bank',
  'xyz_bank_account',
  'bank_account_cover',
  'account_cover_bill',
  'cover_bill_becus',
  'bill_becus_cancer',
  'becus_cancer_seen',
  'cancer_seen_famili',
  'seen_famili_hed',
  'famili_hed_say',
  'hed_say_cancer',
  'say_cancer_id',
  'cancer_id_still',
  'id_still_contract',
  'still_contract_cancer',
  'contract_cancer_wed',
  'cancer_wed_beg',
  'wed_beg_dad',
  'beg_dad_help',
  'dad_help_basic',
  'help_basic_blame',
  'basic_blame_condit',
  'blame_condit_grew',
  'condit_grew_tire',
  'grew_tire_say',
  'tire_say_anyth',
  'say_anyth_think',
  'anyth_think_say',
  'think_say_thing',
  'say_thing_frustrat',
  'thing_frustrat_becom',
  'frustrat_becom_much',
  'becom_much_worn',
  'much_worn_final',
  'worn_final_straw',
  'final_straw_day',
  'straw_day_ago',
  'day_ago_reheat',
  'ago_reheat_dinner',
  'reheat_dinner_hate',
  'dinner_hate_eat',
  'hate_eat_anyth',
  'eat_anyth_frozen',
  'anyth_frozen_put',
  'frozen_put_tabl',
  'put_tabl_start',
  'tabl_start_eat',
  'start_eat_disgust',
  'eat_disgust_face',
  'disgust_face_grab',
  'face_grab_glass',
  'grab_glass_water',
  'glass_water_enter',
  'water_enter_kitchen',
  'enter_kitchen_stay',
  'kitchen_stay_saw',
  'stay_saw_loudli',
  'saw_loudli_said',
  'loudli_said_would',
  'said_would_ever',
  'would_ever_thought',
  'ever_thought_id',
  'thought_id_settl',
  'id_settl_frozen',
  'settl_frozen_meal',
  'frozen_meal_cancer',
  'meal_cancer_health',
  'cancer_health_declin',
  'health_declin_eat',
  'declin_eat_frozen',
  'eat_frozen_junk',
  'frozen_junk_sinc',
  'junk_sinc_cant',
  'sinc_cant_even',
  'cant_even_cook',
  'even_cook_snap',
  'cook_snap_yell',
  'snap_yell_say',
  'yell_say_cancer',
  'say_cancer_choic',
  'cancer_choic_im',
  'choic_im_happi',
  'im_happi_situat',
  'happi_situat_im',
  'situat_im_constant',
  'im_constant_remark',
  'constant_remark_condit',
  'remark_condit_gone',
  'condit_gone_far',
  'gone_far_need',
  'far_need_stop',
  'need_stop_got',
  'stop_got_mad',
  'got_mad_argu',
  'mad_argu_say',
  'argu_say_much',
  'say_much_affect',
  'much_affect_im',
  'affect_im_incred',
  'im_incred_unfair',
  'incred_unfair_yell',
  'unfair_yell_vent',
  'yell_vent_let',
  'vent_let_frustrat',
  'let_frustrat_bottl',
  'frustrat_bottl_explod',
  'bottl_explod_leav',
  'explod_leav_everyth',
  'leav_everyth_threw',
  'everyth_threw_fork',
  'threw_fork_walk',
  'fork_walk_sat',
  'walk_sat_cri',
  'sat_cri_bit',
  'cri_bit_felt',
  'bit_felt_bad',
  'felt_bad_yell',
  'bad_yell_get',
  'yell_get_fed',
  'get_fed_listen',
  'fed_listen_say',
  'listen_say_thing',
  'say_thing_day',
  'thing_day_night',
  'day_night_top',
  'night_top_everyth',
  'top_everyth_els',
  'everyth_els_im',
  'els_im_deal'],
 ['throwaway',
  'privaci',
  'reason',
  'marri',
  'wife',
  'hannah',
  'year',
  'daughter',
  'morgan',
  'daughter-moth',
  'relationship',
  'complet',
  'transpar',
  'herethey',
  'fight',
  'often',
  'get',
  'along',
  'morgan',
  'use',
  'spend',
  'time',
  'mom',
  'stay',
  'us',
  'school',
  'rememb',
  'hannah',
  'tell',
  'novel',
  'morgan',
  'write',
  'laptop',
  'admit',
  'sneak',
  'look',
  'without',
  'morgan',
  'knowledg',
  'prais',
  'write',
  'style',
  'stori',
  'tell',
  'thought',
  'posit',
  'thing',
  'yesterday',
  'got',
  'back',
  'home',
  'found',
  'morgan',
  'mom',
  'yell',
  'hannah',
  'ask',
  'happen',
  'morgon',
  'told',
  'hannah',
  'delet',
  'novel',
  'hannah',
  'said',
  'morgan',
  'creat',
  'charact',
  'novel',
  'use',
  'descript',
  'name',
  'make',
  'villian',
  'wrote',
  'bad',
  'word',
  'mirgan',
  'argu',
  'charact',
  'hannah',
  'busi',
  'snoop',
  'laptop',
  'begin',
  'hannah',
  'broke',
  'cri',
  'ex',
  'wife',
  'thraten',
  'watch',
  'fight',
  'noth',
  'said',
  'singl',
  'word',
  'step',
  'minut',
  'get',
  'fresh',
  'air',
  'moment',
  'later',
  'hannah',
  'unload',
  'defend',
  'argument',
  'instead',
  'act',
  'cowerdli',
  'morgan',
  'mom',
  'also',
  'said',
  'done',
  'someth',
  'hannah',
  'decid',
  'snoop',
  'delet',
  'morgan',
  'month',
  'worth',
  'work',
  'becam',
  'much',
  'berat',
  'yell',
  'face',
  'morgan',
  'went',
  'home',
  'mom',
  'cri',
  'refus',
  'speak',
  'hannah',
  'check',
  'hotel',
  'also',
  'refus',
  'speak',
  'text',
  'side',
  'kept',
  'come',
  'tell',
  'done',
  'someth',
  'took',
  'side',
  'argument',
  'stay',
  'one',
  'feet',
  'entir',
  'week',
  'work',
  'mental',
  'physic',
  'health',
  'drain',
  'im',
  'tire',
  'fight',
  'time',
  'blame',
  'actionsor',
  'lack',
  'expect',
  'get',
  'involv',
  'someth',
  'fix',
  'done',
  'anyth',
  'yet',
  'asshol',
  'get',
  'involv',
  'throwaway_privaci',
  'privaci_reason',
  'reason_marri',
  'marri_wife',
  'wife_hannah',
  'hannah_year',
  'year_daughter',
  'daughter_morgan',
  'morgan_daughter-moth',
  'daughter-moth_relationship',
  'relationship_complet',
  'complet_transpar',
  'transpar_herethey',
  'herethey_fight',
  'fight_often',
  'often_get',
  'get_along',
  'along_morgan',
  'morgan_use',
  'use_spend',
  'spend_time',
  'time_mom',
  'mom_stay',
  'stay_us',
  'us_school',
  'school_rememb',
  'rememb_hannah',
  'hannah_tell',
  'tell_novel',
  'novel_morgan',
  'morgan_write',
  'write_laptop',
  'laptop_admit',
  'admit_sneak',
  'sneak_look',
  'look_without',
  'without_morgan',
  'morgan_knowledg',
  'knowledg_prais',
  'prais_write',
  'write_style',
  'style_stori',
  'stori_tell',
  'tell_thought',
  'thought_posit',
  'posit_thing',
  'thing_yesterday',
  'yesterday_got',
  'got_back',
  'back_home',
  'home_found',
  'found_morgan',
  'morgan_mom',
  'mom_yell',
  'yell_hannah',
  'hannah_ask',
  'ask_happen',
  'happen_morgon',
  'morgon_told',
  'told_hannah',
  'hannah_delet',
  'delet_novel',
  'novel_hannah',
  'hannah_said',
  'said_morgan',
  'morgan_creat',
  'creat_charact',
  'charact_novel',
  'novel_use',
  'use_descript',
  'descript_name',
  'name_make',
  'make_villian',
  'villian_wrote',
  'wrote_bad',
  'bad_word',
  'word_mirgan',
  'mirgan_argu',
  'argu_charact',
  'charact_hannah',
  'hannah_busi',
  'busi_snoop',
  'snoop_laptop',
  'laptop_begin',
  'begin_hannah',
  'hannah_broke',
  'broke_cri',
  'cri_ex',
  'ex_wife',
  'wife_thraten',
  'thraten_watch',
  'watch_fight',
  'fight_noth',
  'noth_said',
  'said_singl',
  'singl_word',
  'word_step',
  'step_minut',
  'minut_get',
  'get_fresh',
  'fresh_air',
  'air_moment',
  'moment_later',
  'later_hannah',
  'hannah_unload',
  'unload_defend',
  'defend_argument',
  'argument_instead',
  'instead_act',
  'act_cowerdli',
  'cowerdli_morgan',
  'morgan_mom',
  'mom_also',
  'also_said',
  'said_done',
  'done_someth',
  'someth_hannah',
  'hannah_decid',
  'decid_snoop',
  'snoop_delet',
  'delet_morgan',
  'morgan_month',
  'month_worth',
  'worth_work',
  'work_becam',
  'becam_much',
  'much_berat',
  'berat_yell',
  'yell_face',
  'face_morgan',
  'morgan_went',
  'went_home',
  'home_mom',
  'mom_cri',
  'cri_refus',
  'refus_speak',
  'speak_hannah',
  'hannah_check',
  'check_hotel',
  'hotel_also',
  'also_refus',
  'refus_speak',
  'speak_text',
  'text_side',
  'side_kept',
  'kept_come',
  'come_tell',
  'tell_done',
  'done_someth',
  'someth_took',
  'took_side',
  'side_argument',
  'argument_stay',
  'stay_one',
  'one_feet',
  'feet_entir',
  'entir_week',
  'week_work',
  'work_mental',
  'mental_physic',
  'physic_health',
  'health_drain',
  'drain_im',
  'im_tire',
  'tire_fight',
  'fight_time',
  'time_blame',
  'blame_actionsor',
  'actionsor_lack',
  'lack_expect',
  'expect_get',
  'get_involv',
  'involv_someth',
  'someth_fix',
  'fix_done',
  'done_anyth',
  'anyth_yet',
  'yet_asshol',
  'asshol_get',
  'get_involv',
  'throwaway_privaci_reason',
  'privaci_reason_marri',
  'reason_marri_wife',
  'marri_wife_hannah',
  'wife_hannah_year',
  'hannah_year_daughter',
  'year_daughter_morgan',
  'daughter_morgan_daughter-moth',
  'morgan_daughter-moth_relationship',
  'daughter-moth_relationship_complet',
  'relationship_complet_transpar',
  'complet_transpar_herethey',
  'transpar_herethey_fight',
  'herethey_fight_often',
  'fight_often_get',
  'often_get_along',
  'get_along_morgan',
  'along_morgan_use',
  'morgan_use_spend',
  'use_spend_time',
  'spend_time_mom',
  'time_mom_stay',
  'mom_stay_us',
  'stay_us_school',
  'us_school_rememb',
  'school_rememb_hannah',
  'rememb_hannah_tell',
  'hannah_tell_novel',
  'tell_novel_morgan',
  'novel_morgan_write',
  'morgan_write_laptop',
  'write_laptop_admit',
  'laptop_admit_sneak',
  'admit_sneak_look',
  'sneak_look_without',
  'look_without_morgan',
  'without_morgan_knowledg',
  'morgan_knowledg_prais',
  'knowledg_prais_write',
  'prais_write_style',
  'write_style_stori',
  'style_stori_tell',
  'stori_tell_thought',
  'tell_thought_posit',
  'thought_posit_thing',
  'posit_thing_yesterday',
  'thing_yesterday_got',
  'yesterday_got_back',
  'got_back_home',
  'back_home_found',
  'home_found_morgan',
  'found_morgan_mom',
  'morgan_mom_yell',
  'mom_yell_hannah',
  'yell_hannah_ask',
  'hannah_ask_happen',
  'ask_happen_morgon',
  'happen_morgon_told',
  'morgon_told_hannah',
  'told_hannah_delet',
  'hannah_delet_novel',
  'delet_novel_hannah',
  'novel_hannah_said',
  'hannah_said_morgan',
  'said_morgan_creat',
  'morgan_creat_charact',
  'creat_charact_novel',
  'charact_novel_use',
  'novel_use_descript',
  'use_descript_name',
  'descript_name_make',
  'name_make_villian',
  'make_villian_wrote',
  'villian_wrote_bad',
  'wrote_bad_word',
  'bad_word_mirgan',
  'word_mirgan_argu',
  'mirgan_argu_charact',
  'argu_charact_hannah',
  'charact_hannah_busi',
  'hannah_busi_snoop',
  'busi_snoop_laptop',
  'snoop_laptop_begin',
  'laptop_begin_hannah',
  'begin_hannah_broke',
  'hannah_broke_cri',
  'broke_cri_ex',
  'cri_ex_wife',
  'ex_wife_thraten',
  'wife_thraten_watch',
  'thraten_watch_fight',
  'watch_fight_noth',
  'fight_noth_said',
  'noth_said_singl',
  'said_singl_word',
  'singl_word_step',
  'word_step_minut',
  'step_minut_get',
  'minut_get_fresh',
  'get_fresh_air',
  'fresh_air_moment',
  'air_moment_later',
  'moment_later_hannah',
  'later_hannah_unload',
  'hannah_unload_defend',
  'unload_defend_argument',
  'defend_argument_instead',
  'argument_instead_act',
  'instead_act_cowerdli',
  'act_cowerdli_morgan',
  'cowerdli_morgan_mom',
  'morgan_mom_also',
  'mom_also_said',
  'also_said_done',
  'said_done_someth',
  'done_someth_hannah',
  'someth_hannah_decid',
  'hannah_decid_snoop',
  'decid_snoop_delet',
  'snoop_delet_morgan',
  'delet_morgan_month',
  'morgan_month_worth',
  'month_worth_work',
  'worth_work_becam',
  'work_becam_much',
  'becam_much_berat',
  'much_berat_yell',
  'berat_yell_face',
  'yell_face_morgan',
  'face_morgan_went',
  'morgan_went_home',
  'went_home_mom',
  'home_mom_cri',
  'mom_cri_refus',
  'cri_refus_speak',
  'refus_speak_hannah',
  'speak_hannah_check',
  'hannah_check_hotel',
  'check_hotel_also',
  'hotel_also_refus',
  'also_refus_speak',
  'refus_speak_text',
  'speak_text_side',
  'text_side_kept',
  'side_kept_come',
  'kept_come_tell',
  'come_tell_done',
  'tell_done_someth',
  'done_someth_took',
  'someth_took_side',
  'took_side_argument',
  'side_argument_stay',
  'argument_stay_one',
  'stay_one_feet',
  'one_feet_entir',
  'feet_entir_week',
  'entir_week_work',
  'week_work_mental',
  'work_mental_physic',
  'mental_physic_health',
  'physic_health_drain',
  'health_drain_im',
  'drain_im_tire',
  'im_tire_fight',
  'tire_fight_time',
  'fight_time_blame',
  'time_blame_actionsor',
  'blame_actionsor_lack',
  'actionsor_lack_expect',
  'lack_expect_get',
  'expect_get_involv',
  'get_involv_someth',
  'involv_someth_fix',
  'someth_fix_done',
  'fix_done_anyth',
  'done_anyth_yet',
  'anyth_yet_asshol',
  'yet_asshol_get',
  'asshol_get_involv'],
 ['son',
  'month',
  'cranki',
  'morn',
  'teeth',
  'go',
  'groceri',
  'shop',
  'sinc',
  'take',
  'care',
  'came',
  'normal',
  'calm',
  'babi',
  'carrier',
  'right',
  'want',
  'held',
  'forgot',
  'mom',
  'yesterday',
  'went',
  'stroller',
  'market',
  'plan',
  'min',
  'realli',
  'today',
  'ladi',
  'kept',
  'pop',
  'everi',
  'aisl',
  'well',
  'small',
  'market',
  'like',
  'intent',
  'follow',
  'us',
  'stop',
  'cri',
  'shed',
  'say',
  'hungri',
  'bring',
  'bottl',
  'would',
  'tell',
  'hungri',
  'ate',
  'min',
  'ago',
  'uh',
  'oh',
  'sure',
  'hope',
  'daddi',
  'rememb',
  'chang',
  'diaper',
  'morn',
  'diaper',
  'dirti',
  'point',
  'pick',
  'littl',
  'bit',
  'calm',
  'rock',
  'lost',
  'shit',
  'got',
  'check',
  'line',
  'need',
  'put',
  'back',
  'stroller',
  'could',
  'put',
  'everyth',
  'counter',
  'pay',
  'alreadi',
  'stress',
  'day',
  'im',
  'overwhelm',
  'tri',
  'hurri',
  'put',
  'everyth',
  'bag',
  'son',
  'cri',
  'ladi',
  'checkout',
  'line',
  'next',
  'mine',
  'say',
  'mayb',
  'next',
  'time',
  'stay',
  'home',
  'mommi',
  'think',
  'normal',
  'im',
  'confront',
  'person',
  'one',
  'realli',
  'got',
  'well',
  'mom',
  'pass',
  'away',
  'mind',
  'damm',
  'busi',
  'alreadi',
  'go',
  'look',
  'littl',
  'shock',
  'peopl',
  'red',
  'ladi',
  'say',
  'anyth',
  'park',
  'lot',
  'apolog',
  'mom',
  'think',
  'need',
  'rude',
  'throw',
  'face',
  'know',
  'happen',
  'realli',
  'wan',
  'na',
  'get',
  'anymor',
  'told',
  'get',
  'hell',
  'way',
  'leav',
  'alon',
  'got',
  'car',
  'left',
  'im',
  'home',
  'calm',
  'wonder',
  'point',
  'like',
  'said',
  'normal',
  'im',
  'like',
  'peopl',
  'sinc',
  'alreadi',
  'hard',
  'day',
  'stuff',
  'infuri',
  'bad',
  'overreact',
  'though',
  'get',
  'sometim',
  'peopl',
  'think',
  'theyr',
  'help',
  'realiti',
  'know',
  'noth',
  'come',
  'calm',
  'babi',
  'usual',
  'brush',
  'aita',
  'son_month',
  'month_cranki',
  'cranki_morn',
  'morn_teeth',
  'teeth_go',
  'go_groceri',
  'groceri_shop',
  'shop_sinc',
  'sinc_take',
  'take_care',
  'care_came',
  'came_normal',
  'normal_calm',
  'calm_babi',
  'babi_carrier',
  'carrier_right',
  'right_want',
  'want_held',
  'held_forgot',
  'forgot_mom',
  'mom_yesterday',
  'yesterday_went',
  'went_stroller',
  'stroller_market',
  'market_plan',
  'plan_min',
  'min_realli',
  'realli_today',
  'today_ladi',
  'ladi_kept',
  'kept_pop',
  'pop_everi',
  'everi_aisl',
  'aisl_well',
  'well_small',
  'small_market',
  'market_like',
  'like_intent',
  'intent_follow',
  'follow_us',
  'us_stop',
  'stop_cri',
  'cri_shed',
  'shed_say',
  'say_hungri',
  'hungri_bring',
  'bring_bottl',
  'bottl_would',
  'would_tell',
  'tell_hungri',
  'hungri_ate',
  'ate_min',
  'min_ago',
  'ago_uh',
  'uh_oh',
  'oh_sure',
  'sure_hope',
  'hope_daddi',
  'daddi_rememb',
  'rememb_chang',
  'chang_diaper',
  'diaper_morn',
  'morn_diaper',
  'diaper_dirti',
  'dirti_point',
  'point_pick',
  'pick_littl',
  'littl_bit',
  'bit_calm',
  'calm_rock',
  'rock_lost',
  'lost_shit',
  'shit_got',
  'got_check',
  'check_line',
  'line_need',
  'need_put',
  'put_back',
  'back_stroller',
  'stroller_could',
  'could_put',
  'put_everyth',
  'everyth_counter',
  'counter_pay',
  'pay_alreadi',
  'alreadi_stress',
  'stress_day',
  'day_im',
  'im_overwhelm',
  'overwhelm_tri',
  'tri_hurri',
  'hurri_put',
  'put_everyth',
  'everyth_bag',
  'bag_son',
  'son_cri',
  'cri_ladi',
  'ladi_checkout',
  'checkout_line',
  'line_next',
  'next_mine',
  'mine_say',
  'say_mayb',
  'mayb_next',
  'next_time',
  'time_stay',
  'stay_home',
  'home_mommi',
  'mommi_think',
  'think_normal',
  'normal_im',
  'im_confront',
  'confront_person',
  'person_one',
  'one_realli',
  'realli_got',
  'got_well',
  'well_mom',
  'mom_pass',
  'pass_away',
  'away_mind',
  'mind_damm',
  'damm_busi',
  'busi_alreadi',
  'alreadi_go',
  'go_look',
  'look_littl',
  'littl_shock',
  'shock_peopl',
  'peopl_red',
  'red_ladi',
  'ladi_say',
  'say_anyth',
  'anyth_park',
  'park_lot',
  'lot_apolog',
  'apolog_mom',
  'mom_think',
  'think_need',
  'need_rude',
  'rude_throw',
  'throw_face',
  'face_know',
  'know_happen',
  'happen_realli',
  'realli_wan',
  'wan_na',
  'na_get',
  'get_anymor',
  'anymor_told',
  'told_get',
  'get_hell',
  'hell_way',
  'way_leav',
  'leav_alon',
  'alon_got',
  'got_car',
  'car_left',
  'left_im',
  'im_home',
  'home_calm',
  'calm_wonder',
  'wonder_point',
  'point_like',
  'like_said',
  'said_normal',
  'normal_im',
  'im_like',
  'like_peopl',
  'peopl_sinc',
  'sinc_alreadi',
  'alreadi_hard',
  'hard_day',
  'day_stuff',
  'stuff_infuri',
  'infuri_bad',
  'bad_overreact',
  'overreact_though',
  'though_get',
  'get_sometim',
  'sometim_peopl',
  'peopl_think',
  'think_theyr',
  'theyr_help',
  'help_realiti',
  'realiti_know',
  'know_noth',
  'noth_come',
  'come_calm',
  'calm_babi',
  'babi_usual',
  'usual_brush',
  'brush_aita',
  'son_month_cranki',
  'month_cranki_morn',
  'cranki_morn_teeth',
  'morn_teeth_go',
  'teeth_go_groceri',
  'go_groceri_shop',
  'groceri_shop_sinc',
  'shop_sinc_take',
  'sinc_take_care',
  'take_care_came',
  'care_came_normal',
  'came_normal_calm',
  'normal_calm_babi',
  'calm_babi_carrier',
  'babi_carrier_right',
  'carrier_right_want',
  'right_want_held',
  'want_held_forgot',
  'held_forgot_mom',
  'forgot_mom_yesterday',
  'mom_yesterday_went',
  'yesterday_went_stroller',
  'went_stroller_market',
  'stroller_market_plan',
  'market_plan_min',
  'plan_min_realli',
  'min_realli_today',
  'realli_today_ladi',
  'today_ladi_kept',
  'ladi_kept_pop',
  'kept_pop_everi',
  'pop_everi_aisl',
  'everi_aisl_well',
  'aisl_well_small',
  'well_small_market',
  'small_market_like',
  'market_like_intent',
  'like_intent_follow',
  'intent_follow_us',
  'follow_us_stop',
  'us_stop_cri',
  'stop_cri_shed',
  'cri_shed_say',
  'shed_say_hungri',
  'say_hungri_bring',
  'hungri_bring_bottl',
  'bring_bottl_would',
  'bottl_would_tell',
  'would_tell_hungri',
  'tell_hungri_ate',
  'hungri_ate_min',
  'ate_min_ago',
  'min_ago_uh',
  'ago_uh_oh',
  'uh_oh_sure',
  'oh_sure_hope',
  'sure_hope_daddi',
  'hope_daddi_rememb',
  'daddi_rememb_chang',
  'rememb_chang_diaper',
  'chang_diaper_morn',
  'diaper_morn_diaper',
  'morn_diaper_dirti',
  'diaper_dirti_point',
  'dirti_point_pick',
  'point_pick_littl',
  'pick_littl_bit',
  'littl_bit_calm',
  'bit_calm_rock',
  'calm_rock_lost',
  'rock_lost_shit',
  'lost_shit_got',
  'shit_got_check',
  'got_check_line',
  'check_line_need',
  'line_need_put',
  'need_put_back',
  'put_back_stroller',
  'back_stroller_could',
  'stroller_could_put',
  'could_put_everyth',
  'put_everyth_counter',
  'everyth_counter_pay',
  'counter_pay_alreadi',
  'pay_alreadi_stress',
  'alreadi_stress_day',
  'stress_day_im',
  'day_im_overwhelm',
  'im_overwhelm_tri',
  'overwhelm_tri_hurri',
  'tri_hurri_put',
  'hurri_put_everyth',
  'put_everyth_bag',
  'everyth_bag_son',
  'bag_son_cri',
  'son_cri_ladi',
  'cri_ladi_checkout',
  'ladi_checkout_line',
  'checkout_line_next',
  'line_next_mine',
  'next_mine_say',
  'mine_say_mayb',
  'say_mayb_next',
  'mayb_next_time',
  'next_time_stay',
  'time_stay_home',
  'stay_home_mommi',
  'home_mommi_think',
  'mommi_think_normal',
  'think_normal_im',
  'normal_im_confront',
  'im_confront_person',
  'confront_person_one',
  'person_one_realli',
  'one_realli_got',
  'realli_got_well',
  'got_well_mom',
  'well_mom_pass',
  'mom_pass_away',
  'pass_away_mind',
  'away_mind_damm',
  'mind_damm_busi',
  'damm_busi_alreadi',
  'busi_alreadi_go',
  'alreadi_go_look',
  'go_look_littl',
  'look_littl_shock',
  'littl_shock_peopl',
  'shock_peopl_red',
  'peopl_red_ladi',
  'red_ladi_say',
  'ladi_say_anyth',
  'say_anyth_park',
  'anyth_park_lot',
  'park_lot_apolog',
  'lot_apolog_mom',
  'apolog_mom_think',
  'mom_think_need',
  'think_need_rude',
  'need_rude_throw',
  'rude_throw_face',
  'throw_face_know',
  'face_know_happen',
  'know_happen_realli',
  'happen_realli_wan',
  'realli_wan_na',
  'wan_na_get',
  'na_get_anymor',
  'get_anymor_told',
  'anymor_told_get',
  'told_get_hell',
  'get_hell_way',
  'hell_way_leav',
  'way_leav_alon',
  'leav_alon_got',
  'alon_got_car',
  'got_car_left',
  'car_left_im',
  'left_im_home',
  'im_home_calm',
  'home_calm_wonder',
  'calm_wonder_point',
  'wonder_point_like',
  'point_like_said',
  'like_said_normal',
  'said_normal_im',
  'normal_im_like',
  'im_like_peopl',
  'like_peopl_sinc',
  'peopl_sinc_alreadi',
  'sinc_alreadi_hard',
  'alreadi_hard_day',
  'hard_day_stuff',
  'day_stuff_infuri',
  'stuff_infuri_bad',
  'infuri_bad_overreact',
  'bad_overreact_though',
  'overreact_though_get',
  'though_get_sometim',
  'get_sometim_peopl',
  'sometim_peopl_think',
  'peopl_think_theyr',
  'think_theyr_help',
  'theyr_help_realiti',
  'help_realiti_know',
  'realiti_know_noth',
  'know_noth_come',
  'noth_come_calm',
  'come_calm_babi',
  'calm_babi_usual',
  'babi_usual_brush',
  'usual_brush_aita'],
 ['hey',
  'asshol',
  'tell',
  'mil',
  'go',
  'fuck',
  'husband',
  'realli',
  'close',
  'relationship',
  'mom',
  'never',
  'realli',
  'bother',
  'thought',
  'sweet',
  'sister',
  'first',
  'met',
  'famili',
  'becam',
  'clear',
  'husband',
  'mother',
  'favourit',
  'shower',
  'love',
  'attent',
  'sister',
  'realli',
  'get',
  'first',
  'met',
  'look',
  'say',
  'ye',
  'know',
  'thought',
  'noth',
  'like',
  'year',
  'snide',
  'comment',
  'snide',
  'comment',
  'told',
  'husband',
  'shook',
  'tell',
  'head',
  'feel',
  'insecur',
  'got',
  'marri',
  'year',
  'ago',
  'mother',
  'wore',
  'white',
  'wed',
  'kind',
  'weird',
  'decid',
  'ruin',
  'day',
  'marri',
  'mil',
  'start',
  'send',
  'link',
  'websit',
  'tri',
  'babi',
  'way',
  'keep',
  'husband',
  'satisfi',
  'relationship',
  'let',
  'know',
  'time',
  'babi',
  'would',
  'first',
  'know',
  'christma',
  'bought',
  'topic',
  'babi',
  'dinner',
  'tabl',
  'front',
  'famili',
  'guy',
  'tri',
  'frequent',
  'websit',
  'read',
  'calmli',
  'shut',
  'husband',
  'said',
  'noth',
  'got',
  'home',
  'ask',
  'husband',
  'say',
  'anyth',
  'told',
  'mayb',
  'would',
  'good',
  'take',
  'advic',
  'instead',
  'blame',
  'mother',
  'take',
  'harsh',
  'look',
  'mirror',
  'hurt',
  'apologis',
  'everyth',
  'went',
  'back',
  'normal',
  'fast',
  'forward',
  'wednesday',
  'husband',
  'drop',
  'basket',
  'easter',
  'egg',
  'hunt',
  'in-law',
  'niec',
  'nephew',
  'everi',
  'year',
  'mother',
  'law',
  'said',
  'look',
  'like',
  'gain',
  'bit',
  'pregnant',
  'yet',
  'floor',
  'husband',
  'silent',
  'told',
  'frown',
  'ive',
  'heard',
  'need',
  'work',
  'littl',
  'bit',
  'harder',
  'bedroom',
  'might',
  'work',
  'look',
  'straight',
  'told',
  'go',
  'fuck',
  'mind',
  'busi',
  'told',
  'sensit',
  'need',
  'show',
  'littl',
  'respect',
  'look',
  'babi',
  'left',
  'immedi',
  'went',
  'car',
  'husband',
  'follow',
  'ask',
  'fuck',
  'wrong',
  'told',
  'straight',
  'place',
  'sex',
  'life',
  'want',
  'know',
  'tell',
  'told',
  'suck',
  'need',
  'respect',
  'mother',
  'mean',
  'well',
  'done',
  'even',
  'get',
  'car',
  'stood',
  'yell',
  'back',
  'forth',
  'uber',
  'came',
  'day',
  'im',
  'stay',
  'sister',
  'hous',
  'famili',
  'said',
  'right',
  'receiv',
  'multipl',
  'call',
  'husband',
  'famili',
  'call',
  'bitch',
  'asham',
  'apologis',
  'mother',
  'law',
  'fat',
  'chanc',
  'need',
  'know',
  'wrong',
  'feel',
  'like',
  'im',
  'made',
  'feel',
  'crazi',
  'im',
  'slowli',
  'get',
  'aita',
  'tell',
  'mil',
  'go',
  'fuck',
  'edit',
  'ive',
  'seen',
  'coupl',
  'peopl',
  'mention',
  'thought',
  'would',
  'add',
  'use',
  'condom',
  'husband',
  'said',
  'allerg',
  'latex',
  'never',
  'use',
  'howev',
  'alway',
  'birth',
  'control',
  'notic',
  'recent',
  'pill',
  'go',
  'miss',
  'magic',
  'reapear',
  'abl',
  'take',
  'regularli',
  'edit',
  'hey',
  'ive',
  'read',
  'comment',
  'last',
  'hour',
  'im',
  'gon',
  'na',
  'lie',
  'im',
  'super',
  'freak',
  'im',
  'go',
  'stay',
  'sister',
  'tonight',
  'tomorrow',
  'brother',
  'go',
  'get',
  'import',
  'belong',
  'place',
  'im',
  'gon',
  'na',
  'take',
  'pregnanc',
  'test',
  'tomorrow',
  'case',
  'look',
  'get',
  'lawyer',
  'im',
  'avoid',
  'husband',
  'call',
  'eat',
  'pizza',
  'sister',
  'finger',
  'cross',
  'goe',
  'well',
  'thank',
  'everyon',
  'advic',
  'updat',
  'soon',
  'hey_asshol',
  'asshol_tell',
  'tell_mil',
  'mil_go',
  'go_fuck',
  'fuck_husband',
  'husband_realli',
  'realli_close',
  'close_relationship',
  'relationship_mom',
  'mom_never',
  'never_realli',
  'realli_bother',
  'bother_thought',
  'thought_sweet',
  'sweet_sister',
  'sister_first',
  'first_met',
  'met_famili',
  'famili_becam',
  'becam_clear',
  'clear_husband',
  'husband_mother',
  'mother_favourit',
  'favourit_shower',
  'shower_love',
  'love_attent',
  'attent_sister',
  'sister_realli',
  'realli_get',
  'get_first',
  'first_met',
  'met_look',
  'look_say',
  'say_ye',
  'ye_know',
  'know_thought',
  'thought_noth',
  'noth_like',
  'like_year',
  'year_snide',
  'snide_comment',
  'comment_snide',
  'snide_comment',
  'comment_told',
  'told_husband',
  'husband_shook',
  'shook_tell',
  'tell_head',
  'head_feel',
  'feel_insecur',
  'insecur_got',
  'got_marri',
  'marri_year',
  'year_ago',
  'ago_mother',
  'mother_wore',
  'wore_white',
  'white_wed',
  'wed_kind',
  'kind_weird',
  'weird_decid',
  'decid_ruin',
  'ruin_day',
  'day_marri',
  'marri_mil',
  'mil_start',
  'start_send',
  'send_link',
  'link_websit',
  'websit_tri',
  'tri_babi',
  'babi_way',
  'way_keep',
  'keep_husband',
  'husband_satisfi',
  'satisfi_relationship',
  'relationship_let',
  'let_know',
  'know_time',
  'time_babi',
  'babi_would',
  'would_first',
  'first_know',
  'know_christma',
  'christma_bought',
  'bought_topic',
  'topic_babi',
  'babi_dinner',
  'dinner_tabl',
  'tabl_front',
  'front_famili',
  'famili_guy',
  'guy_tri',
  'tri_frequent',
  'frequent_websit',
  'websit_read',
  'read_calmli',
  'calmli_shut',
  'shut_husband',
  'husband_said',
  'said_noth',
  'noth_got',
  'got_home',
  'home_ask',
  'ask_husband',
  'husband_say',
  'say_anyth',
  'anyth_told',
  'told_mayb',
  'mayb_would',
  'would_good',
  'good_take',
  'take_advic',
  'advic_instead',
  'instead_blame',
  'blame_mother',
  'mother_take',
  'take_harsh',
  'harsh_look',
  'look_mirror',
  'mirror_hurt',
  'hurt_apologis',
  'apologis_everyth',
  'everyth_went',
  'went_back',
  'back_normal',
  'normal_fast',
  'fast_forward',
  'forward_wednesday',
  'wednesday_husband',
  'husband_drop',
  'drop_basket',
  'basket_easter',
  'easter_egg',
  'egg_hunt',
  'hunt_in-law',
  'in-law_niec',
  'niec_nephew',
  'nephew_everi',
  'everi_year',
  'year_mother',
  'mother_law',
  'law_said',
  'said_look',
  'look_like',
  'like_gain',
  'gain_bit',
  'bit_pregnant',
  'pregnant_yet',
  'yet_floor',
  'floor_husband',
  'husband_silent',
  'silent_told',
  'told_frown',
  'frown_ive',
  'ive_heard',
  'heard_need',
  'need_work',
  'work_littl',
  'littl_bit',
  'bit_harder',
  'harder_bedroom',
  'bedroom_might',
  'might_work',
  'work_look',
  'look_straight',
  'straight_told',
  'told_go',
  'go_fuck',
  'fuck_mind',
  'mind_busi',
  'busi_told',
  'told_sensit',
  'sensit_need',
  'need_show',
  'show_littl',
  'littl_respect',
  'respect_look',
  'look_babi',
  'babi_left',
  'left_immedi',
  'immedi_went',
  'went_car',
  'car_husband',
  'husband_follow',
  'follow_ask',
  'ask_fuck',
  'fuck_wrong',
  'wrong_told',
  'told_straight',
  'straight_place',
  'place_sex',
  'sex_life',
  'life_want',
  'want_know',
  'know_tell',
  'tell_told',
  'told_suck',
  'suck_need',
  'need_respect',
  'respect_mother',
  'mother_mean',
  'mean_well',
  'well_done',
  'done_even',
  'even_get',
  'get_car',
  'car_stood',
  'stood_yell',
  'yell_back',
  'back_forth',
  'forth_uber',
  'uber_came',
  'came_day',
  'day_im',
  'im_stay',
  'stay_sister',
  'sister_hous',
  'hous_famili',
  'famili_said',
  'said_right',
  'right_receiv',
  'receiv_multipl',
  'multipl_call',
  'call_husband',
  'husband_famili',
  'famili_call',
  'call_bitch',
  'bitch_asham',
  'asham_apologis',
  'apologis_mother',
  'mother_law',
  'law_fat',
  'fat_chanc',
  'chanc_need',
  'need_know',
  'know_wrong',
  'wrong_feel',
  'feel_like',
  'like_im',
  'im_made',
  'made_feel',
  'feel_crazi',
  'crazi_im',
  'im_slowli',
  'slowli_get',
  'get_aita',
  'aita_tell',
  'tell_mil',
  'mil_go',
  'go_fuck',
  'fuck_edit',
  'edit_ive',
  'ive_seen',
  'seen_coupl',
  'coupl_peopl',
  'peopl_mention',
  'mention_thought',
  'thought_would',
  'would_add',
  'add_use',
  'use_condom',
  'condom_husband',
  'husband_said',
  'said_allerg',
  'allerg_latex',
  'latex_never',
  'never_use',
  'use_howev',
  'howev_alway',
  'alway_birth',
  'birth_control',
  'control_notic',
  'notic_recent',
  'recent_pill',
  'pill_go',
  'go_miss',
  'miss_magic',
  'magic_reapear',
  'reapear_abl',
  'abl_take',
  'take_regularli',
  'regularli_edit',
  'edit_hey',
  'hey_ive',
  'ive_read',
  'read_comment',
  'comment_last',
  'last_hour',
  'hour_im',
  'im_gon',
  'gon_na',
  'na_lie',
  'lie_im',
  'im_super',
  'super_freak',
  'freak_im',
  'im_go',
  'go_stay',
  'stay_sister',
  'sister_tonight',
  'tonight_tomorrow',
  'tomorrow_brother',
  'brother_go',
  'go_get',
  'get_import',
  'import_belong',
  'belong_place',
  'place_im',
  'im_gon',
  'gon_na',
  'na_take',
  'take_pregnanc',
  'pregnanc_test',
  'test_tomorrow',
  'tomorrow_case',
  'case_look',
  'look_get',
  'get_lawyer',
  'lawyer_im',
  'im_avoid',
  'avoid_husband',
  'husband_call',
  'call_eat',
  'eat_pizza',
  'pizza_sister',
  'sister_finger',
  'finger_cross',
  'cross_goe',
  'goe_well',
  'well_thank',
  'thank_everyon',
  'everyon_advic',
  'advic_updat',
  'updat_soon',
  'hey_asshol_tell',
  'asshol_tell_mil',
  'tell_mil_go',
  'mil_go_fuck',
  'go_fuck_husband',
  'fuck_husband_realli',
  'husband_realli_close',
  'realli_close_relationship',
  'close_relationship_mom',
  'relationship_mom_never',
  'mom_never_realli',
  'never_realli_bother',
  'realli_bother_thought',
  'bother_thought_sweet',
  'thought_sweet_sister',
  'sweet_sister_first',
  'sister_first_met',
  'first_met_famili',
  'met_famili_becam',
  'famili_becam_clear',
  'becam_clear_husband',
  'clear_husband_mother',
  'husband_mother_favourit',
  'mother_favourit_shower',
  'favourit_shower_love',
  'shower_love_attent',
  'love_attent_sister',
  'attent_sister_realli',
  'sister_realli_get',
  'realli_get_first',
  'get_first_met',
  'first_met_look',
  'met_look_say',
  'look_say_ye',
  'say_ye_know',
  'ye_know_thought',
  'know_thought_noth',
  'thought_noth_like',
  'noth_like_year',
  'like_year_snide',
  'year_snide_comment',
  'snide_comment_snide',
  'comment_snide_comment',
  'snide_comment_told',
  'comment_told_husband',
  'told_husband_shook',
  'husband_shook_tell',
  'shook_tell_head',
  'tell_head_feel',
  'head_feel_insecur',
  'feel_insecur_got',
  'insecur_got_marri',
  'got_marri_year',
  'marri_year_ago',
  'year_ago_mother',
  'ago_mother_wore',
  'mother_wore_white',
  'wore_white_wed',
  'white_wed_kind',
  'wed_kind_weird',
  'kind_weird_decid',
  'weird_decid_ruin',
  'decid_ruin_day',
  'ruin_day_marri',
  'day_marri_mil',
  'marri_mil_start',
  'mil_start_send',
  'start_send_link',
  'send_link_websit',
  'link_websit_tri',
  'websit_tri_babi',
  'tri_babi_way',
  'babi_way_keep',
  'way_keep_husband',
  'keep_husband_satisfi',
  'husband_satisfi_relationship',
  'satisfi_relationship_let',
  'relationship_let_know',
  'let_know_time',
  'know_time_babi',
  'time_babi_would',
  'babi_would_first',
  'would_first_know',
  'first_know_christma',
  'know_christma_bought',
  'christma_bought_topic',
  'bought_topic_babi',
  'topic_babi_dinner',
  'babi_dinner_tabl',
  'dinner_tabl_front',
  'tabl_front_famili',
  'front_famili_guy',
  'famili_guy_tri',
  'guy_tri_frequent',
  'tri_frequent_websit',
  'frequent_websit_read',
  'websit_read_calmli',
  'read_calmli_shut',
  'calmli_shut_husband',
  'shut_husband_said',
  'husband_said_noth',
  'said_noth_got',
  'noth_got_home',
  'got_home_ask',
  'home_ask_husband',
  'ask_husband_say',
  'husband_say_anyth',
  'say_anyth_told',
  'anyth_told_mayb',
  'told_mayb_would',
  'mayb_would_good',
  'would_good_take',
  'good_take_advic',
  'take_advic_instead',
  'advic_instead_blame',
  'instead_blame_mother',
  'blame_mother_take',
  'mother_take_harsh',
  'take_harsh_look',
  'harsh_look_mirror',
  'look_mirror_hurt',
  'mirror_hurt_apologis',
  'hurt_apologis_everyth',
  'apologis_everyth_went',
  'everyth_went_back',
  'went_back_normal',
  'back_normal_fast',
  'normal_fast_forward',
  'fast_forward_wednesday',
  'forward_wednesday_husband',
  'wednesday_husband_drop',
  'husband_drop_basket',
  'drop_basket_easter',
  'basket_easter_egg',
  'easter_egg_hunt',
  'egg_hunt_in-law',
  'hunt_in-law_niec',
  'in-law_niec_nephew',
  'niec_nephew_everi',
  'nephew_everi_year',
  'everi_year_mother',
  'year_mother_law',
  'mother_law_said',
  'law_said_look',
  'said_look_like',
  'look_like_gain',
  'like_gain_bit',
  'gain_bit_pregnant',
  'bit_pregnant_yet',
  'pregnant_yet_floor',
  'yet_floor_husband',
  'floor_husband_silent',
  'husband_silent_told',
  'silent_told_frown',
  'told_frown_ive',
  'frown_ive_heard',
  'ive_heard_need',
  'heard_need_work',
  'need_work_littl',
  'work_littl_bit',
  'littl_bit_harder',
  'bit_harder_bedroom',
  'harder_bedroom_might',
  'bedroom_might_work',
  'might_work_look',
  'work_look_straight',
  'look_straight_told',
  'straight_told_go',
  'told_go_fuck',
  'go_fuck_mind',
  'fuck_mind_busi',
  'mind_busi_told',
  'busi_told_sensit',
  'told_sensit_need',
  'sensit_need_show',
  'need_show_littl',
  'show_littl_respect',
  'littl_respect_look',
  'respect_look_babi',
  'look_babi_left',
  'babi_left_immedi',
  'left_immedi_went',
  'immedi_went_car',
  'went_car_husband',
  'car_husband_follow',
  'husband_follow_ask',
  'follow_ask_fuck',
  'ask_fuck_wrong',
  'fuck_wrong_told',
  'wrong_told_straight',
  'told_straight_place',
  'straight_place_sex',
  'place_sex_life',
  'sex_life_want',
  'life_want_know',
  'want_know_tell',
  'know_tell_told',
  'tell_told_suck',
  'told_suck_need',
  'suck_need_respect',
  'need_respect_mother',
  'respect_mother_mean',
  'mother_mean_well',
  'mean_well_done',
  'well_done_even',
  'done_even_get',
  'even_get_car',
  'get_car_stood',
  'car_stood_yell',
  'stood_yell_back',
  'yell_back_forth',
  'back_forth_uber',
  'forth_uber_came',
  'uber_came_day',
  'came_day_im',
  'day_im_stay',
  'im_stay_sister',
  'stay_sister_hous',
  'sister_hous_famili',
  'hous_famili_said',
  'famili_said_right',
  'said_right_receiv',
  'right_receiv_multipl',
  'receiv_multipl_call',
  'multipl_call_husband',
  'call_husband_famili',
  'husband_famili_call',
  'famili_call_bitch',
  'call_bitch_asham',
  'bitch_asham_apologis',
  'asham_apologis_mother',
  'apologis_mother_law',
  'mother_law_fat',
  'law_fat_chanc',
  'fat_chanc_need',
  'chanc_need_know',
  'need_know_wrong',
  'know_wrong_feel',
  'wrong_feel_like',
  'feel_like_im',
  'like_im_made',
  'im_made_feel',
  'made_feel_crazi',
  'feel_crazi_im',
  'crazi_im_slowli',
  'im_slowli_get',
  'slowli_get_aita',
  'get_aita_tell',
  'aita_tell_mil',
  'tell_mil_go',
  'mil_go_fuck',
  'go_fuck_edit',
  'fuck_edit_ive',
  'edit_ive_seen',
  'ive_seen_coupl',
  'seen_coupl_peopl',
  'coupl_peopl_mention',
  'peopl_mention_thought',
  'mention_thought_would',
  'thought_would_add',
  'would_add_use',
  'add_use_condom',
  'use_condom_husband',
  'condom_husband_said',
  'husband_said_allerg',
  'said_allerg_latex',
  'allerg_latex_never',
  'latex_never_use',
  'never_use_howev',
  'use_howev_alway',
  'howev_alway_birth',
  'alway_birth_control',
  'birth_control_notic',
  'control_notic_recent',
  'notic_recent_pill',
  'recent_pill_go',
  'pill_go_miss',
  'go_miss_magic',
  'miss_magic_reapear',
  'magic_reapear_abl',
  'reapear_abl_take',
  'abl_take_regularli',
  'take_regularli_edit',
  'regularli_edit_hey',
  'edit_hey_ive',
  'hey_ive_read',
  'ive_read_comment',
  'read_comment_last',
  'comment_last_hour',
  'last_hour_im',
  'hour_im_gon',
  'im_gon_na',
  'gon_na_lie',
  'na_lie_im',
  'lie_im_super',
  'im_super_freak',
  'super_freak_im',
  'freak_im_go',
  'im_go_stay',
  'go_stay_sister',
  'stay_sister_tonight',
  'sister_tonight_tomorrow',
  'tonight_tomorrow_brother',
  'tomorrow_brother_go',
  'brother_go_get',
  'go_get_import',
  'get_import_belong',
  'import_belong_place',
  'belong_place_im',
  'place_im_gon',
  'im_gon_na',
  'gon_na_take',
  'na_take_pregnanc',
  'take_pregnanc_test',
  'pregnanc_test_tomorrow',
  'test_tomorrow_case',
  'tomorrow_case_look',
  'case_look_get',
  'look_get_lawyer',
  'get_lawyer_im',
  'lawyer_im_avoid',
  'im_avoid_husband',
  'avoid_husband_call',
  'husband_call_eat',
  'call_eat_pizza',
  'eat_pizza_sister',
  'pizza_sister_finger',
  ...],
 ['cousin',
  'ted',
  'close',
  'age',
  'year',
  'apart',
  'alway',
  'close',
  'kid',
  'even',
  'adulthood',
  'still',
  'kept',
  'touch',
  'ted',
  'met',
  'maddi',
  'year',
  'ago',
  'start',
  'bring',
  'famili',
  'stuff',
  'problem',
  'maddi',
  'click',
  'talk',
  'famili',
  'stuff',
  'someon',
  'want',
  'hangout',
  'becom',
  'friend',
  'cousin',
  'ted',
  'sister',
  'realli',
  'click',
  'maddi',
  'cool',
  'good',
  'justdont',
  'im',
  'nice',
  'polit',
  'got',
  'way',
  'becom',
  'besti',
  'aunt',
  'ted',
  'mom',
  'realli',
  'push',
  'though',
  'know',
  'age-ish',
  'annoy',
  'anytim',
  'event',
  'shed',
  'find',
  'way',
  'push',
  'us',
  'togeth',
  'felt',
  'like',
  'littl',
  'kid',
  'forc',
  'play',
  'someon',
  'colleg',
  'graduat',
  'parti',
  'grandpar',
  'bigger',
  'houseyard',
  'move',
  'maddi',
  'work',
  'nice',
  'exclud',
  'even',
  'though',
  'inconveni',
  'meant',
  'friend',
  'come',
  'rush',
  'around',
  'anyway',
  'like',
  'said',
  'ive',
  'never',
  'rude',
  'anyth',
  'never',
  'realli',
  'bond',
  'ted',
  'maddi',
  'get',
  'marri',
  'soon',
  'knew',
  'engag',
  'know',
  'wed',
  'anoth',
  'famili',
  'member',
  'ask',
  'get',
  'wed',
  'gift',
  'said',
  'know',
  'said',
  'better',
  'figur',
  'wed',
  'date-',
  'soon',
  'said',
  'oh',
  'know',
  'invit',
  'said',
  'well',
  'mayb',
  'person',
  'still',
  'get',
  'gift',
  'ask',
  'dad',
  'got',
  'invit',
  'guess',
  'ago',
  'said',
  'crappi',
  'invit',
  'reschedul',
  'parti',
  'said',
  'graduat',
  'parti',
  'weddingnow',
  'know',
  'bigger',
  'person',
  'get',
  'gift',
  'petti',
  'want',
  'buy',
  'gift',
  'probabl',
  'invit',
  'ted',
  'futur',
  'event',
  'know',
  'left',
  'everyon',
  'els',
  'famili',
  'invit',
  'mayb',
  'im',
  'cousin',
  'side',
  'mayb',
  'budget',
  'thing',
  'person',
  'want',
  'spend',
  'money',
  'gift',
  'cool',
  'enough',
  'invit',
  'like',
  'birthday',
  'parti',
  'expect',
  'someon',
  'invit',
  'send',
  'birthday',
  'present',
  'aita',
  'send',
  'gift',
  'cousin_ted',
  'ted_close',
  'close_age',
  'age_year',
  'year_apart',
  'apart_alway',
  'alway_close',
  'close_kid',
  'kid_even',
  'even_adulthood',
  'adulthood_still',
  'still_kept',
  'kept_touch',
  'touch_ted',
  'ted_met',
  'met_maddi',
  'maddi_year',
  'year_ago',
  'ago_start',
  'start_bring',
  'bring_famili',
  'famili_stuff',
  'stuff_problem',
  'problem_maddi',
  'maddi_click',
  'click_talk',
  'talk_famili',
  'famili_stuff',
  'stuff_someon',
  'someon_want',
  'want_hangout',
  'hangout_becom',
  'becom_friend',
  'friend_cousin',
  'cousin_ted',
  'ted_sister',
  'sister_realli',
  'realli_click',
  'click_maddi',
  'maddi_cool',
  'cool_good',
  'good_justdont',
  'justdont_im',
  'im_nice',
  'nice_polit',
  'polit_got',
  'got_way',
  'way_becom',
  'becom_besti',
  'besti_aunt',
  'aunt_ted',
  'ted_mom',
  'mom_realli',
  'realli_push',
  'push_though',
  'though_know',
  'know_age-ish',
  'age-ish_annoy',
  'annoy_anytim',
  'anytim_event',
  'event_shed',
  'shed_find',
  'find_way',
  'way_push',
  'push_us',
  'us_togeth',
  'togeth_felt',
  'felt_like',
  'like_littl',
  'littl_kid',
  'kid_forc',
  'forc_play',
  'play_someon',
  'someon_colleg',
  'colleg_graduat',
  'graduat_parti',
  'parti_grandpar',
  'grandpar_bigger',
  'bigger_houseyard',
  'houseyard_move',
  'move_maddi',
  'maddi_work',
  'work_nice',
  'nice_exclud',
  'exclud_even',
  'even_though',
  'though_inconveni',
  'inconveni_meant',
  'meant_friend',
  'friend_come',
  'come_rush',
  'rush_around',
  'around_anyway',
  'anyway_like',
  'like_said',
  'said_ive',
  'ive_never',
  'never_rude',
  'rude_anyth',
  'anyth_never',
  'never_realli',
  'realli_bond',
  'bond_ted',
  'ted_maddi',
  'maddi_get',
  'get_marri',
  'marri_soon',
  'soon_knew',
  'knew_engag',
  'engag_know',
  'know_wed',
  'wed_anoth',
  'anoth_famili',
  'famili_member',
  'member_ask',
  'ask_get',
  'get_wed',
  'wed_gift',
  'gift_said',
  'said_know',
  'know_said',
  'said_better',
  'better_figur',
  'figur_wed',
  'wed_date-',
  'date-_soon',
  'soon_said',
  'said_oh',
  'oh_know',
  'know_invit',
  'invit_said',
  'said_well',
  'well_mayb',
  'mayb_person',
  'person_still',
  'still_get',
  'get_gift',
  'gift_ask',
  'ask_dad',
  'dad_got',
  'got_invit',
  'invit_guess',
  'guess_ago',
  'ago_said',
  'said_crappi',
  'crappi_invit',
  'invit_reschedul',
  'reschedul_parti',
  'parti_said',
  'said_graduat',
  'graduat_parti',
  'parti_weddingnow',
  'weddingnow_know',
  'know_bigger',
  'bigger_person',
  'person_get',
  'get_gift',
  'gift_petti',
  'petti_want',
  'want_buy',
  'buy_gift',
  'gift_probabl',
  'probabl_invit',
  'invit_ted',
  'ted_futur',
  'futur_event',
  'event_know',
  'know_left',
  'left_everyon',
  'everyon_els',
  'els_famili',
  'famili_invit',
  'invit_mayb',
  'mayb_im',
  'im_cousin',
  'cousin_side',
  'side_mayb',
  'mayb_budget',
  'budget_thing',
  'thing_person',
  'person_want',
  'want_spend',
  'spend_money',
  'money_gift',
  'gift_cool',
  'cool_enough',
  'enough_invit',
  'invit_like',
  'like_birthday',
  'birthday_parti',
  'parti_expect',
  'expect_someon',
  'someon_invit',
  'invit_send',
  'send_birthday',
  'birthday_present',
  'present_aita',
  'aita_send',
  'send_gift',
  'cousin_ted_close',
  'ted_close_age',
  'close_age_year',
  'age_year_apart',
  'year_apart_alway',
  'apart_alway_close',
  'alway_close_kid',
  'close_kid_even',
  'kid_even_adulthood',
  'even_adulthood_still',
  'adulthood_still_kept',
  'still_kept_touch',
  'kept_touch_ted',
  'touch_ted_met',
  'ted_met_maddi',
  'met_maddi_year',
  'maddi_year_ago',
  'year_ago_start',
  'ago_start_bring',
  'start_bring_famili',
  'bring_famili_stuff',
  'famili_stuff_problem',
  'stuff_problem_maddi',
  'problem_maddi_click',
  'maddi_click_talk',
  'click_talk_famili',
  'talk_famili_stuff',
  'famili_stuff_someon',
  'stuff_someon_want',
  'someon_want_hangout',
  'want_hangout_becom',
  'hangout_becom_friend',
  'becom_friend_cousin',
  'friend_cousin_ted',
  'cousin_ted_sister',
  'ted_sister_realli',
  'sister_realli_click',
  'realli_click_maddi',
  'click_maddi_cool',
  'maddi_cool_good',
  'cool_good_justdont',
  'good_justdont_im',
  'justdont_im_nice',
  'im_nice_polit',
  'nice_polit_got',
  'polit_got_way',
  'got_way_becom',
  'way_becom_besti',
  'becom_besti_aunt',
  'besti_aunt_ted',
  'aunt_ted_mom',
  'ted_mom_realli',
  'mom_realli_push',
  'realli_push_though',
  'push_though_know',
  'though_know_age-ish',
  'know_age-ish_annoy',
  'age-ish_annoy_anytim',
  'annoy_anytim_event',
  'anytim_event_shed',
  'event_shed_find',
  'shed_find_way',
  'find_way_push',
  'way_push_us',
  'push_us_togeth',
  'us_togeth_felt',
  'togeth_felt_like',
  'felt_like_littl',
  'like_littl_kid',
  'littl_kid_forc',
  'kid_forc_play',
  'forc_play_someon',
  'play_someon_colleg',
  'someon_colleg_graduat',
  'colleg_graduat_parti',
  'graduat_parti_grandpar',
  'parti_grandpar_bigger',
  'grandpar_bigger_houseyard',
  'bigger_houseyard_move',
  'houseyard_move_maddi',
  'move_maddi_work',
  'maddi_work_nice',
  'work_nice_exclud',
  'nice_exclud_even',
  'exclud_even_though',
  'even_though_inconveni',
  'though_inconveni_meant',
  'inconveni_meant_friend',
  'meant_friend_come',
  'friend_come_rush',
  'come_rush_around',
  'rush_around_anyway',
  'around_anyway_like',
  'anyway_like_said',
  'like_said_ive',
  'said_ive_never',
  'ive_never_rude',
  'never_rude_anyth',
  'rude_anyth_never',
  'anyth_never_realli',
  'never_realli_bond',
  'realli_bond_ted',
  'bond_ted_maddi',
  'ted_maddi_get',
  'maddi_get_marri',
  'get_marri_soon',
  'marri_soon_knew',
  'soon_knew_engag',
  'knew_engag_know',
  'engag_know_wed',
  'know_wed_anoth',
  'wed_anoth_famili',
  'anoth_famili_member',
  'famili_member_ask',
  'member_ask_get',
  'ask_get_wed',
  'get_wed_gift',
  'wed_gift_said',
  'gift_said_know',
  'said_know_said',
  'know_said_better',
  'said_better_figur',
  'better_figur_wed',
  'figur_wed_date-',
  'wed_date-_soon',
  'date-_soon_said',
  'soon_said_oh',
  'said_oh_know',
  'oh_know_invit',
  'know_invit_said',
  'invit_said_well',
  'said_well_mayb',
  'well_mayb_person',
  'mayb_person_still',
  'person_still_get',
  'still_get_gift',
  'get_gift_ask',
  'gift_ask_dad',
  'ask_dad_got',
  'dad_got_invit',
  'got_invit_guess',
  'invit_guess_ago',
  'guess_ago_said',
  'ago_said_crappi',
  'said_crappi_invit',
  'crappi_invit_reschedul',
  'invit_reschedul_parti',
  'reschedul_parti_said',
  'parti_said_graduat',
  'said_graduat_parti',
  'graduat_parti_weddingnow',
  'parti_weddingnow_know',
  'weddingnow_know_bigger',
  'know_bigger_person',
  'bigger_person_get',
  'person_get_gift',
  'get_gift_petti',
  'gift_petti_want',
  'petti_want_buy',
  'want_buy_gift',
  'buy_gift_probabl',
  'gift_probabl_invit',
  'probabl_invit_ted',
  'invit_ted_futur',
  'ted_futur_event',
  'futur_event_know',
  'event_know_left',
  'know_left_everyon',
  'left_everyon_els',
  'everyon_els_famili',
  'els_famili_invit',
  'famili_invit_mayb',
  'invit_mayb_im',
  'mayb_im_cousin',
  'im_cousin_side',
  'cousin_side_mayb',
  'side_mayb_budget',
  'mayb_budget_thing',
  'budget_thing_person',
  'thing_person_want',
  'person_want_spend',
  'want_spend_money',
  'spend_money_gift',
  'money_gift_cool',
  'gift_cool_enough',
  'cool_enough_invit',
  'enough_invit_like',
  'invit_like_birthday',
  'like_birthday_parti',
  'birthday_parti_expect',
  'parti_expect_someon',
  'expect_someon_invit',
  'someon_invit_send',
  'invit_send_birthday',
  'send_birthday_present',
  'birthday_present_aita',
  'present_aita_send',
  'aita_send_gift'],
 ['mention',
  'name',
  'age',
  'protect',
  'privaci',
  'daughter',
  'inlwa',
  'sham',
  'kid',
  'son',
  'breadwinn',
  'understand',
  'put',
  'child',
  'care',
  'respons',
  'upon',
  'use',
  'im',
  'money',
  'maker',
  'excus',
  'notic',
  'tag',
  'along',
  'visit',
  'daughter',
  'wed',
  'day',
  'ago',
  'ask',
  'son',
  'wife',
  'come',
  'said',
  'got',
  'mad',
  'told',
  'let',
  'come',
  'said',
  'decis',
  'said',
  'busi',
  'call',
  'said',
  'want',
  'come',
  'told',
  'stay',
  'home',
  'kid',
  'babysitt',
  'enough',
  'wait',
  'till',
  'day',
  'wed',
  'brought',
  'trust',
  'babysitt',
  'stay',
  'kid',
  'took',
  'daughter',
  'inlaw',
  'wed',
  'got',
  'car',
  'son',
  'saw',
  'us',
  'angrili',
  'ask',
  'told',
  'back',
  'said',
  'brought',
  'told',
  'behavior',
  'unhing',
  'toward',
  'kid',
  'mom',
  'berat',
  'say',
  'im',
  'get',
  'involv',
  'marriag',
  'im',
  'end',
  'leav',
  'wed',
  'go',
  'bar',
  'call',
  'later',
  'say',
  'ruin',
  'night',
  'said',
  'im',
  'enabl',
  'wife',
  'attitud',
  'help',
  'enforc',
  'boundari',
  'expect',
  'apolog',
  'husband',
  'back',
  'say',
  'overstep',
  'aita',
  'overstep',
  'mention_name',
  'name_age',
  'age_protect',
  'protect_privaci',
  'privaci_daughter',
  'daughter_inlwa',
  'inlwa_sham',
  'sham_kid',
  'kid_son',
  'son_breadwinn',
  'breadwinn_understand',
  'understand_put',
  'put_child',
  'child_care',
  'care_respons',
  'respons_upon',
  'upon_use',
  'use_im',
  'im_money',
  'money_maker',
  'maker_excus',
  'excus_notic',
  'notic_tag',
  'tag_along',
  'along_visit',
  'visit_daughter',
  'daughter_wed',
  'wed_day',
  'day_ago',
  'ago_ask',
  'ask_son',
  'son_wife',
  'wife_come',
  'come_said',
  'said_got',
  'got_mad',
  'mad_told',
  'told_let',
  'let_come',
  'come_said',
  'said_decis',
  'decis_said',
  'said_busi',
  'busi_call',
  'call_said',
  'said_want',
  'want_come',
  'come_told',
  'told_stay',
  'stay_home',
  'home_kid',
  'kid_babysitt',
  'babysitt_enough',
  'enough_wait',
  'wait_till',
  'till_day',
  'day_wed',
  'wed_brought',
  'brought_trust',
  'trust_babysitt',
  'babysitt_stay',
  'stay_kid',
  'kid_took',
  'took_daughter',
  'daughter_inlaw',
  'inlaw_wed',
  'wed_got',
  'got_car',
  'car_son',
  'son_saw',
  'saw_us',
  'us_angrili',
  'angrili_ask',
  'ask_told',
  'told_back',
  'back_said',
  'said_brought',
  'brought_told',
  'told_behavior',
  'behavior_unhing',
  'unhing_toward',
  'toward_kid',
  'kid_mom',
  'mom_berat',
  'berat_say',
  'say_im',
  'im_get',
  'get_involv',
  'involv_marriag',
  'marriag_im',
  'im_end',
  'end_leav',
  'leav_wed',
  'wed_go',
  'go_bar',
  'bar_call',
  'call_later',
  'later_say',
  'say_ruin',
  'ruin_night',
  'night_said',
  'said_im',
  'im_enabl',
  'enabl_wife',
  'wife_attitud',
  'attitud_help',
  'help_enforc',
  'enforc_boundari',
  'boundari_expect',
  'expect_apolog',
  'apolog_husband',
  'husband_back',
  'back_say',
  'say_overstep',
  'overstep_aita',
  'aita_overstep',
  'mention_name_age',
  'name_age_protect',
  'age_protect_privaci',
  'protect_privaci_daughter',
  'privaci_daughter_inlwa',
  'daughter_inlwa_sham',
  'inlwa_sham_kid',
  'sham_kid_son',
  'kid_son_breadwinn',
  'son_breadwinn_understand',
  'breadwinn_understand_put',
  'understand_put_child',
  'put_child_care',
  'child_care_respons',
  'care_respons_upon',
  'respons_upon_use',
  'upon_use_im',
  'use_im_money',
  'im_money_maker',
  'money_maker_excus',
  'maker_excus_notic',
  'excus_notic_tag',
  'notic_tag_along',
  'tag_along_visit',
  'along_visit_daughter',
  'visit_daughter_wed',
  'daughter_wed_day',
  'wed_day_ago',
  'day_ago_ask',
  'ago_ask_son',
  'ask_son_wife',
  'son_wife_come',
  'wife_come_said',
  'come_said_got',
  'said_got_mad',
  'got_mad_told',
  'mad_told_let',
  'told_let_come',
  'let_come_said',
  'come_said_decis',
  'said_decis_said',
  'decis_said_busi',
  'said_busi_call',
  'busi_call_said',
  'call_said_want',
  'said_want_come',
  'want_come_told',
  'come_told_stay',
  'told_stay_home',
  'stay_home_kid',
  'home_kid_babysitt',
  'kid_babysitt_enough',
  'babysitt_enough_wait',
  'enough_wait_till',
  'wait_till_day',
  'till_day_wed',
  'day_wed_brought',
  'wed_brought_trust',
  'brought_trust_babysitt',
  'trust_babysitt_stay',
  'babysitt_stay_kid',
  'stay_kid_took',
  'kid_took_daughter',
  'took_daughter_inlaw',
  'daughter_inlaw_wed',
  'inlaw_wed_got',
  'wed_got_car',
  'got_car_son',
  'car_son_saw',
  'son_saw_us',
  'saw_us_angrili',
  'us_angrili_ask',
  'angrili_ask_told',
  'ask_told_back',
  'told_back_said',
  'back_said_brought',
  'said_brought_told',
  'brought_told_behavior',
  'told_behavior_unhing',
  'behavior_unhing_toward',
  'unhing_toward_kid',
  'toward_kid_mom',
  'kid_mom_berat',
  'mom_berat_say',
  'berat_say_im',
  'say_im_get',
  'im_get_involv',
  'get_involv_marriag',
  'involv_marriag_im',
  'marriag_im_end',
  'im_end_leav',
  'end_leav_wed',
  'leav_wed_go',
  'wed_go_bar',
  'go_bar_call',
  'bar_call_later',
  'call_later_say',
  'later_say_ruin',
  'say_ruin_night',
  'ruin_night_said',
  'night_said_im',
  'said_im_enabl',
  'im_enabl_wife',
  'enabl_wife_attitud',
  'wife_attitud_help',
  'attitud_help_enforc',
  'help_enforc_boundari',
  'enforc_boundari_expect',
  'boundari_expect_apolog',
  'expect_apolog_husband',
  'apolog_husband_back',
  'husband_back_say',
  'back_say_overstep',
  'say_overstep_aita',
  'overstep_aita_overstep'],
 ['cousin',
  'extend',
  'famili',
  'mother',
  'side',
  'dote',
  'sinc',
  'youngest',
  'uncl',
  'rather',
  'late',
  'life',
  'late',
  'born',
  'larg',
  'age',
  'gap',
  'us',
  'tend',
  'treat',
  'niec',
  'cousin',
  'age',
  'niec',
  'nephew',
  'dad',
  'side',
  'cousin',
  'youngest',
  'famili',
  'tend',
  'let',
  'get',
  'away',
  'lot',
  'stuff',
  'let',
  'get',
  'away',
  'age',
  'im',
  'probabl',
  'one',
  'famili',
  'even',
  'reprimand',
  'someth',
  'shouldntlik',
  'pinch',
  'famili',
  'helper',
  'use',
  'hous',
  'sofa',
  'person',
  'see',
  'saw',
  'enter',
  'colleg',
  'late',
  'proud',
  'abl',
  'graduat',
  'colleg',
  'high',
  'honour',
  'four',
  'year',
  'natur',
  'want',
  'parent',
  'howev',
  'appar',
  'cousin',
  'import',
  'piano',
  'recit',
  'graduat',
  'day',
  'absolut',
  'want',
  'parent',
  'along',
  'thought',
  'parent',
  'would',
  'least',
  'attend',
  'colleg',
  'graduat',
  'nooooo',
  'appar',
  'niec',
  'piano',
  'recit',
  'import',
  'daughter',
  'graduat',
  'older',
  'brother',
  'girlfriend',
  'one',
  'attend',
  'graduat',
  'fine',
  'im',
  'adult',
  'brother',
  'girlfriend',
  'loss',
  'recent',
  'due',
  'covid',
  'restrict',
  'lift',
  'countri',
  'abl',
  'dine',
  'famili',
  'decid',
  'night',
  'dinner',
  'leav',
  'restaur',
  'howev',
  'got',
  'phone',
  'call',
  'work',
  'step',
  'away',
  'answer',
  'whilst',
  'dad',
  'foot',
  'bill',
  'due',
  'high',
  'nois',
  'level',
  'final',
  'finish',
  'went',
  'back',
  'famili',
  'nowher',
  'sight',
  'call',
  'phone',
  'went',
  'unansw',
  'point',
  'start',
  'panic',
  'strand',
  'middl',
  'nowher',
  'phone',
  'made',
  'multipl',
  'tri',
  'parent',
  'phone',
  'answer',
  'left',
  'choic',
  'hail',
  'equival',
  'uber',
  'countri',
  'went',
  'back',
  'home',
  'fast',
  'forward',
  'hour',
  'pm',
  'parent',
  'uncl',
  'famili',
  'enter',
  'hous',
  'laugh',
  'someth',
  'uncl',
  'go',
  'got',
  'tire',
  'wait',
  'left',
  'told',
  'thing',
  'earlierthat',
  'answer',
  'phone',
  'call',
  'counter',
  'answer',
  'phone',
  'mom',
  'answer',
  'oh',
  '<',
  'cousin',
  '>',
  'want',
  'ice',
  'cream',
  'went',
  'total',
  'blew',
  'point',
  'say',
  'forgot',
  'daughter',
  'niec',
  'want',
  'ice',
  'cream',
  'heat',
  'anger',
  'might',
  'said',
  'ought',
  'parent',
  'even',
  'uncl',
  'famili',
  'mad',
  'upset',
  'want',
  'get',
  'cousin',
  'ice',
  'cream',
  'say',
  'im',
  'adult',
  'alway',
  'go',
  'home',
  'im',
  'upset',
  'aita',
  'cousin_extend',
  'extend_famili',
  'famili_mother',
  'mother_side',
  'side_dote',
  'dote_sinc',
  'sinc_youngest',
  'youngest_uncl',
  'uncl_rather',
  'rather_late',
  'late_life',
  'life_late',
  'late_born',
  'born_larg',
  'larg_age',
  'age_gap',
  'gap_us',
  'us_tend',
  'tend_treat',
  'treat_niec',
  'niec_cousin',
  'cousin_age',
  'age_niec',
  'niec_nephew',
  'nephew_dad',
  'dad_side',
  'side_cousin',
  'cousin_youngest',
  'youngest_famili',
  'famili_tend',
  'tend_let',
  'let_get',
  'get_away',
  'away_lot',
  'lot_stuff',
  'stuff_let',
  'let_get',
  'get_away',
  'away_age',
  'age_im',
  'im_probabl',
  'probabl_one',
  'one_famili',
  'famili_even',
  'even_reprimand',
  'reprimand_someth',
  'someth_shouldntlik',
  'shouldntlik_pinch',
  'pinch_famili',
  'famili_helper',
  'helper_use',
  'use_hous',
  'hous_sofa',
  'sofa_person',
  'person_see',
  'see_saw',
  'saw_enter',
  'enter_colleg',
  'colleg_late',
  'late_proud',
  'proud_abl',
  'abl_graduat',
  'graduat_colleg',
  'colleg_high',
  'high_honour',
  'honour_four',
  'four_year',
  'year_natur',
  'natur_want',
  'want_parent',
  'parent_howev',
  'howev_appar',
  'appar_cousin',
  'cousin_import',
  'import_piano',
  'piano_recit',
  'recit_graduat',
  'graduat_day',
  'day_absolut',
  'absolut_want',
  'want_parent',
  'parent_along',
  'along_thought',
  'thought_parent',
  'parent_would',
  'would_least',
  'least_attend',
  'attend_colleg',
  'colleg_graduat',
  'graduat_nooooo',
  'nooooo_appar',
  'appar_niec',
  'niec_piano',
  'piano_recit',
  'recit_import',
  'import_daughter',
  'daughter_graduat',
  'graduat_older',
  'older_brother',
  'brother_girlfriend',
  'girlfriend_one',
  'one_attend',
  'attend_graduat',
  'graduat_fine',
  'fine_im',
  'im_adult',
  'adult_brother',
  'brother_girlfriend',
  'girlfriend_loss',
  'loss_recent',
  'recent_due',
  'due_covid',
  'covid_restrict',
  'restrict_lift',
  'lift_countri',
  'countri_abl',
  'abl_dine',
  'dine_famili',
  'famili_decid',
  'decid_night',
  'night_dinner',
  'dinner_leav',
  'leav_restaur',
  'restaur_howev',
  'howev_got',
  'got_phone',
  'phone_call',
  'call_work',
  'work_step',
  'step_away',
  'away_answer',
  'answer_whilst',
  'whilst_dad',
  'dad_foot',
  'foot_bill',
  'bill_due',
  'due_high',
  'high_nois',
  'nois_level',
  'level_final',
  'final_finish',
  'finish_went',
  'went_back',
  'back_famili',
  'famili_nowher',
  'nowher_sight',
  'sight_call',
  'call_phone',
  'phone_went',
  'went_unansw',
  'unansw_point',
  'point_start',
  'start_panic',
  'panic_strand',
  'strand_middl',
  'middl_nowher',
  'nowher_phone',
  'phone_made',
  'made_multipl',
  'multipl_tri',
  'tri_parent',
  'parent_phone',
  'phone_answer',
  'answer_left',
  'left_choic',
  'choic_hail',
  'hail_equival',
  'equival_uber',
  'uber_countri',
  'countri_went',
  'went_back',
  'back_home',
  'home_fast',
  'fast_forward',
  'forward_hour',
  'hour_pm',
  'pm_parent',
  'parent_uncl',
  'uncl_famili',
  'famili_enter',
  'enter_hous',
  'hous_laugh',
  'laugh_someth',
  'someth_uncl',
  'uncl_go',
  'go_got',
  'got_tire',
  'tire_wait',
  'wait_left',
  'left_told',
  'told_thing',
  'thing_earlierthat',
  'earlierthat_answer',
  'answer_phone',
  'phone_call',
  'call_counter',
  'counter_answer',
  'answer_phone',
  'phone_mom',
  'mom_answer',
  'answer_oh',
  'oh_<',
  '<_cousin',
  'cousin_>',
  '>_want',
  'want_ice',
  'ice_cream',
  'cream_went',
  'went_total',
  'total_blew',
  'blew_point',
  'point_say',
  'say_forgot',
  'forgot_daughter',
  'daughter_niec',
  'niec_want',
  'want_ice',
  'ice_cream',
  'cream_heat',
  'heat_anger',
  'anger_might',
  'might_said',
  'said_ought',
  'ought_parent',
  'parent_even',
  'even_uncl',
  'uncl_famili',
  'famili_mad',
  'mad_upset',
  'upset_want',
  'want_get',
  'get_cousin',
  'cousin_ice',
  'ice_cream',
  'cream_say',
  'say_im',
  'im_adult',
  'adult_alway',
  'alway_go',
  'go_home',
  'home_im',
  'im_upset',
  'upset_aita',
  'cousin_extend_famili',
  'extend_famili_mother',
  'famili_mother_side',
  'mother_side_dote',
  'side_dote_sinc',
  'dote_sinc_youngest',
  'sinc_youngest_uncl',
  'youngest_uncl_rather',
  'uncl_rather_late',
  'rather_late_life',
  'late_life_late',
  'life_late_born',
  'late_born_larg',
  'born_larg_age',
  'larg_age_gap',
  'age_gap_us',
  'gap_us_tend',
  'us_tend_treat',
  'tend_treat_niec',
  'treat_niec_cousin',
  'niec_cousin_age',
  'cousin_age_niec',
  'age_niec_nephew',
  'niec_nephew_dad',
  'nephew_dad_side',
  'dad_side_cousin',
  'side_cousin_youngest',
  'cousin_youngest_famili',
  'youngest_famili_tend',
  'famili_tend_let',
  'tend_let_get',
  'let_get_away',
  'get_away_lot',
  'away_lot_stuff',
  'lot_stuff_let',
  'stuff_let_get',
  'let_get_away',
  'get_away_age',
  'away_age_im',
  'age_im_probabl',
  'im_probabl_one',
  'probabl_one_famili',
  'one_famili_even',
  'famili_even_reprimand',
  'even_reprimand_someth',
  'reprimand_someth_shouldntlik',
  'someth_shouldntlik_pinch',
  'shouldntlik_pinch_famili',
  'pinch_famili_helper',
  'famili_helper_use',
  'helper_use_hous',
  'use_hous_sofa',
  'hous_sofa_person',
  'sofa_person_see',
  'person_see_saw',
  'see_saw_enter',
  'saw_enter_colleg',
  'enter_colleg_late',
  'colleg_late_proud',
  'late_proud_abl',
  'proud_abl_graduat',
  'abl_graduat_colleg',
  'graduat_colleg_high',
  'colleg_high_honour',
  'high_honour_four',
  'honour_four_year',
  'four_year_natur',
  'year_natur_want',
  'natur_want_parent',
  'want_parent_howev',
  'parent_howev_appar',
  'howev_appar_cousin',
  'appar_cousin_import',
  'cousin_import_piano',
  'import_piano_recit',
  'piano_recit_graduat',
  'recit_graduat_day',
  'graduat_day_absolut',
  'day_absolut_want',
  'absolut_want_parent',
  'want_parent_along',
  'parent_along_thought',
  'along_thought_parent',
  'thought_parent_would',
  'parent_would_least',
  'would_least_attend',
  'least_attend_colleg',
  'attend_colleg_graduat',
  'colleg_graduat_nooooo',
  'graduat_nooooo_appar',
  'nooooo_appar_niec',
  'appar_niec_piano',
  'niec_piano_recit',
  'piano_recit_import',
  'recit_import_daughter',
  'import_daughter_graduat',
  'daughter_graduat_older',
  'graduat_older_brother',
  'older_brother_girlfriend',
  'brother_girlfriend_one',
  'girlfriend_one_attend',
  'one_attend_graduat',
  'attend_graduat_fine',
  'graduat_fine_im',
  'fine_im_adult',
  'im_adult_brother',
  'adult_brother_girlfriend',
  'brother_girlfriend_loss',
  'girlfriend_loss_recent',
  'loss_recent_due',
  'recent_due_covid',
  'due_covid_restrict',
  'covid_restrict_lift',
  'restrict_lift_countri',
  'lift_countri_abl',
  'countri_abl_dine',
  'abl_dine_famili',
  'dine_famili_decid',
  'famili_decid_night',
  'decid_night_dinner',
  'night_dinner_leav',
  'dinner_leav_restaur',
  'leav_restaur_howev',
  'restaur_howev_got',
  'howev_got_phone',
  'got_phone_call',
  'phone_call_work',
  'call_work_step',
  'work_step_away',
  'step_away_answer',
  'away_answer_whilst',
  'answer_whilst_dad',
  'whilst_dad_foot',
  'dad_foot_bill',
  'foot_bill_due',
  'bill_due_high',
  'due_high_nois',
  'high_nois_level',
  'nois_level_final',
  'level_final_finish',
  'final_finish_went',
  'finish_went_back',
  'went_back_famili',
  'back_famili_nowher',
  'famili_nowher_sight',
  'nowher_sight_call',
  'sight_call_phone',
  'call_phone_went',
  'phone_went_unansw',
  'went_unansw_point',
  'unansw_point_start',
  'point_start_panic',
  'start_panic_strand',
  'panic_strand_middl',
  'strand_middl_nowher',
  'middl_nowher_phone',
  'nowher_phone_made',
  'phone_made_multipl',
  'made_multipl_tri',
  'multipl_tri_parent',
  'tri_parent_phone',
  'parent_phone_answer',
  'phone_answer_left',
  'answer_left_choic',
  'left_choic_hail',
  'choic_hail_equival',
  'hail_equival_uber',
  'equival_uber_countri',
  'uber_countri_went',
  'countri_went_back',
  'went_back_home',
  'back_home_fast',
  'home_fast_forward',
  'fast_forward_hour',
  'forward_hour_pm',
  'hour_pm_parent',
  'pm_parent_uncl',
  'parent_uncl_famili',
  'uncl_famili_enter',
  'famili_enter_hous',
  'enter_hous_laugh',
  'hous_laugh_someth',
  'laugh_someth_uncl',
  'someth_uncl_go',
  'uncl_go_got',
  'go_got_tire',
  'got_tire_wait',
  'tire_wait_left',
  'wait_left_told',
  'left_told_thing',
  'told_thing_earlierthat',
  'thing_earlierthat_answer',
  'earlierthat_answer_phone',
  'answer_phone_call',
  'phone_call_counter',
  'call_counter_answer',
  'counter_answer_phone',
  'answer_phone_mom',
  'phone_mom_answer',
  'mom_answer_oh',
  'answer_oh_<',
  'oh_<_cousin',
  '<_cousin_>',
  'cousin_>_want',
  '>_want_ice',
  'want_ice_cream',
  'ice_cream_went',
  'cream_went_total',
  'went_total_blew',
  'total_blew_point',
  'blew_point_say',
  'point_say_forgot',
  'say_forgot_daughter',
  'forgot_daughter_niec',
  'daughter_niec_want',
  'niec_want_ice',
  'want_ice_cream',
  'ice_cream_heat',
  'cream_heat_anger',
  'heat_anger_might',
  'anger_might_said',
  'might_said_ought',
  'said_ought_parent',
  'ought_parent_even',
  'parent_even_uncl',
  'even_uncl_famili',
  'uncl_famili_mad',
  'famili_mad_upset',
  'mad_upset_want',
  'upset_want_get',
  'want_get_cousin',
  'get_cousin_ice',
  'cousin_ice_cream',
  'ice_cream_say',
  'cream_say_im',
  'say_im_adult',
  'im_adult_alway',
  'adult_alway_go',
  'alway_go_home',
  'go_home_im',
  'home_im_upset',
  'im_upset_aita'],
 ['husband',
  'yo',
  'yo',
  'daughter',
  'yo',
  'happi',
  'told',
  'girl',
  'anoth',
  'ultrasound',
  'told',
  'anoth',
  'girl',
  'husband',
  'happi',
  'turn',
  'told',
  'wrong',
  'actual',
  'boy',
  'ny',
  'husband',
  'freak',
  'excitemet',
  'reaction',
  'us',
  'boy',
  '*',
  'noth',
  '*',
  'like',
  'either',
  'reaction',
  'girl',
  'actual',
  'jump',
  'around',
  'yell',
  'immedi',
  'call',
  'friend',
  'famili',
  'kept',
  'hug',
  'swing',
  'daughter',
  'around',
  'tell',
  'get',
  'brother',
  'confront',
  'excit',
  'girl',
  'said',
  'caus',
  'want',
  'boy',
  'got',
  'piss',
  'want',
  'babi',
  'shower',
  'guess',
  'realli',
  'babi',
  'shower',
  'ask',
  'anyth',
  'still',
  'birth',
  'thought',
  'kid',
  'first',
  'realiz',
  'seriou',
  'got',
  'realli',
  'upset',
  'start',
  'argument',
  'wibta',
  'let',
  'attend',
  'babi',
  'shower',
  'birth',
  'husband_yo',
  'yo_yo',
  'yo_daughter',
  'daughter_yo',
  'yo_happi',
  'happi_told',
  'told_girl',
  'girl_anoth',
  'anoth_ultrasound',
  'ultrasound_told',
  'told_anoth',
  'anoth_girl',
  'girl_husband',
  'husband_happi',
  'happi_turn',
  'turn_told',
  'told_wrong',
  'wrong_actual',
  'actual_boy',
  'boy_ny',
  'ny_husband',
  'husband_freak',
  'freak_excitemet',
  'excitemet_reaction',
  'reaction_us',
  'us_boy',
  'boy_*',
  '*_noth',
  'noth_*',
  '*_like',
  'like_either',
  'either_reaction',
  'reaction_girl',
  'girl_actual',
  'actual_jump',
  'jump_around',
  'around_yell',
  'yell_immedi',
  'immedi_call',
  'call_friend',
  'friend_famili',
  'famili_kept',
  'kept_hug',
  'hug_swing',
  'swing_daughter',
  'daughter_around',
  'around_tell',
  'tell_get',
  'get_brother',
  'brother_confront',
  'confront_excit',
  'excit_girl',
  'girl_said',
  'said_caus',
  'caus_want',
  'want_boy',
  'boy_got',
  'got_piss',
  'piss_want',
  'want_babi',
  'babi_shower',
  'shower_guess',
  'guess_realli',
  'realli_babi',
  'babi_shower',
  'shower_ask',
  'ask_anyth',
  'anyth_still',
  'still_birth',
  'birth_thought',
  'thought_kid',
  'kid_first',
  'first_realiz',
  'realiz_seriou',
  'seriou_got',
  'got_realli',
  'realli_upset',
  'upset_start',
  'start_argument',
  'argument_wibta',
  'wibta_let',
  'let_attend',
  'attend_babi',
  'babi_shower',
  'shower_birth',
  'husband_yo_yo',
  'yo_yo_daughter',
  'yo_daughter_yo',
  'daughter_yo_happi',
  'yo_happi_told',
  'happi_told_girl',
  'told_girl_anoth',
  'girl_anoth_ultrasound',
  'anoth_ultrasound_told',
  'ultrasound_told_anoth',
  'told_anoth_girl',
  'anoth_girl_husband',
  'girl_husband_happi',
  'husband_happi_turn',
  'happi_turn_told',
  'turn_told_wrong',
  'told_wrong_actual',
  'wrong_actual_boy',
  'actual_boy_ny',
  'boy_ny_husband',
  'ny_husband_freak',
  'husband_freak_excitemet',
  'freak_excitemet_reaction',
  'excitemet_reaction_us',
  'reaction_us_boy',
  'us_boy_*',
  'boy_*_noth',
  '*_noth_*',
  'noth_*_like',
  '*_like_either',
  'like_either_reaction',
  'either_reaction_girl',
  'reaction_girl_actual',
  'girl_actual_jump',
  'actual_jump_around',
  'jump_around_yell',
  'around_yell_immedi',
  'yell_immedi_call',
  'immedi_call_friend',
  'call_friend_famili',
  'friend_famili_kept',
  'famili_kept_hug',
  'kept_hug_swing',
  'hug_swing_daughter',
  'swing_daughter_around',
  'daughter_around_tell',
  'around_tell_get',
  'tell_get_brother',
  'get_brother_confront',
  'brother_confront_excit',
  'confront_excit_girl',
  'excit_girl_said',
  'girl_said_caus',
  'said_caus_want',
  'caus_want_boy',
  'want_boy_got',
  'boy_got_piss',
  'got_piss_want',
  'piss_want_babi',
  'want_babi_shower',
  'babi_shower_guess',
  'shower_guess_realli',
  'guess_realli_babi',
  'realli_babi_shower',
  'babi_shower_ask',
  'shower_ask_anyth',
  'ask_anyth_still',
  'anyth_still_birth',
  'still_birth_thought',
  'birth_thought_kid',
  'thought_kid_first',
  'kid_first_realiz',
  'first_realiz_seriou',
  'realiz_seriou_got',
  'seriou_got_realli',
  'got_realli_upset',
  'realli_upset_start',
  'upset_start_argument',
  'start_argument_wibta',
  'argument_wibta_let',
  'wibta_let_attend',
  'let_attend_babi',
  'attend_babi_shower',
  'babi_shower_birth'],
 ['child',
  'year',
  'ago',
  'nova',
  'terribl',
  'person',
  'back',
  'stay',
  'life',
  'deepli',
  'regret',
  'month',
  'ago',
  'contact',
  'mom',
  'see',
  'see',
  'child',
  'happili',
  'agre',
  'copar',
  'seem',
  'reliev',
  'understand',
  'consid',
  'kid',
  'younger',
  'nova',
  'nova',
  'bit',
  'distant',
  'first',
  'better',
  'gener',
  'good',
  'kid',
  'someth',
  'realiz',
  'punish',
  'seem',
  'work',
  'also',
  'disrespect',
  'time',
  'tell',
  'someth',
  'punish',
  'ground',
  'leav',
  'without',
  'permiss',
  'ask',
  'mom',
  'punish',
  'said',
  'never',
  'punish',
  'ive',
  'heard',
  'nova',
  'seem',
  'like',
  'would',
  'cuss',
  'yell',
  'think',
  'good',
  'punish',
  'kid',
  'night',
  'ago',
  'nova',
  'ask',
  'live',
  'told',
  'id',
  'love',
  'live',
  'one',
  'condit',
  'follow',
  'rule',
  'respect',
  'say',
  'anyth',
  'went',
  'back',
  'mom',
  'home',
  'mom',
  'nova',
  'ask',
  'told',
  'ah',
  'kid',
  'ask',
  'deadbeat',
  'dad',
  'take',
  'must',
  'someth',
  'wrong',
  'make',
  'condit',
  'say',
  'ye',
  'take',
  'realli',
  'wrong',
  'condit',
  'cant',
  'parent',
  'listen',
  'mom',
  'daughter',
  'refus',
  'talk',
  'mom',
  'like',
  'problem',
  'seem',
  'busi',
  'kid',
  'think',
  'would',
  'like',
  'weekend',
  'fun',
  'parent',
  'realli',
  'problem',
  'edit',
  'took',
  'nova',
  'ice',
  'cream',
  'ask',
  'want',
  'live',
  'said',
  'want',
  'live',
  'anymor',
  'gon',
  'na',
  'send',
  'back',
  'anyway',
  'apolog',
  'told',
  'would',
  'never',
  'send',
  'back',
  'would',
  'happi',
  'live',
  'want',
  'know',
  'reason',
  'talk',
  'said',
  'want',
  'sleep',
  'turn',
  'start',
  'come',
  'home',
  'mom',
  'gave',
  'bedroom',
  'younger',
  'sister',
  'one',
  'babi',
  'cri',
  'night',
  'keep',
  'awak',
  'told',
  'talk',
  'mom',
  'stay',
  'gon',
  'na',
  'rule',
  'expect',
  'follow',
  'even',
  'still',
  'love',
  'leav',
  'said',
  'gon',
  'na',
  'tri',
  'promis',
  'appar',
  'annoy',
  'fun',
  'call',
  'mom',
  'expect',
  'problem',
  'let',
  'live',
  'child_year',
  'year_ago',
  'ago_nova',
  'nova_terribl',
  'terribl_person',
  'person_back',
  'back_stay',
  'stay_life',
  'life_deepli',
  'deepli_regret',
  'regret_month',
  'month_ago',
  'ago_contact',
  'contact_mom',
  'mom_see',
  'see_see',
  'see_child',
  'child_happili',
  'happili_agre',
  'agre_copar',
  'copar_seem',
  'seem_reliev',
  'reliev_understand',
  'understand_consid',
  'consid_kid',
  'kid_younger',
  'younger_nova',
  'nova_nova',
  'nova_bit',
  'bit_distant',
  'distant_first',
  'first_better',
  'better_gener',
  'gener_good',
  'good_kid',
  'kid_someth',
  'someth_realiz',
  'realiz_punish',
  'punish_seem',
  'seem_work',
  'work_also',
  'also_disrespect',
  'disrespect_time',
  'time_tell',
  'tell_someth',
  'someth_punish',
  'punish_ground',
  'ground_leav',
  'leav_without',
  'without_permiss',
  'permiss_ask',
  'ask_mom',
  'mom_punish',
  'punish_said',
  'said_never',
  'never_punish',
  'punish_ive',
  'ive_heard',
  'heard_nova',
  'nova_seem',
  'seem_like',
  'like_would',
  'would_cuss',
  'cuss_yell',
  'yell_think',
  'think_good',
  'good_punish',
  'punish_kid',
  'kid_night',
  'night_ago',
  'ago_nova',
  'nova_ask',
  'ask_live',
  'live_told',
  'told_id',
  'id_love',
  'love_live',
  'live_one',
  'one_condit',
  'condit_follow',
  'follow_rule',
  'rule_respect',
  'respect_say',
  'say_anyth',
  'anyth_went',
  'went_back',
  'back_mom',
  'mom_home',
  'home_mom',
  'mom_nova',
  'nova_ask',
  'ask_told',
  'told_ah',
  'ah_kid',
  'kid_ask',
  'ask_deadbeat',
  'deadbeat_dad',
  'dad_take',
  'take_must',
  'must_someth',
  'someth_wrong',
  'wrong_make',
  'make_condit',
  'condit_say',
  'say_ye',
  'ye_take',
  'take_realli',
  'realli_wrong',
  'wrong_condit',
  'condit_cant',
  'cant_parent',
  'parent_listen',
  'listen_mom',
  'mom_daughter',
  'daughter_refus',
  'refus_talk',
  'talk_mom',
  'mom_like',
  'like_problem',
  'problem_seem',
  'seem_busi',
  'busi_kid',
  'kid_think',
  'think_would',
  'would_like',
  'like_weekend',
  'weekend_fun',
  'fun_parent',
  'parent_realli',
  'realli_problem',
  'problem_edit',
  'edit_took',
  'took_nova',
  'nova_ice',
  'ice_cream',
  'cream_ask',
  'ask_want',
  'want_live',
  'live_said',
  'said_want',
  'want_live',
  'live_anymor',
  'anymor_gon',
  'gon_na',
  'na_send',
  'send_back',
  'back_anyway',
  'anyway_apolog',
  'apolog_told',
  'told_would',
  'would_never',
  'never_send',
  'send_back',
  'back_would',
  'would_happi',
  'happi_live',
  'live_want',
  'want_know',
  'know_reason',
  'reason_talk',
  'talk_said',
  'said_want',
  'want_sleep',
  'sleep_turn',
  'turn_start',
  'start_come',
  'come_home',
  'home_mom',
  'mom_gave',
  'gave_bedroom',
  'bedroom_younger',
  'younger_sister',
  'sister_one',
  'one_babi',
  'babi_cri',
  'cri_night',
  'night_keep',
  'keep_awak',
  'awak_told',
  'told_talk',
  'talk_mom',
  'mom_stay',
  'stay_gon',
  'gon_na',
  'na_rule',
  'rule_expect',
  'expect_follow',
  'follow_even',
  'even_still',
  'still_love',
  'love_leav',
  'leav_said',
  'said_gon',
  'gon_na',
  'na_tri',
  'tri_promis',
  'promis_appar',
  'appar_annoy',
  'annoy_fun',
  'fun_call',
  'call_mom',
  'mom_expect',
  'expect_problem',
  'problem_let',
  'let_live',
  'child_year_ago',
  'year_ago_nova',
  'ago_nova_terribl',
  'nova_terribl_person',
  'terribl_person_back',
  'person_back_stay',
  'back_stay_life',
  'stay_life_deepli',
  'life_deepli_regret',
  'deepli_regret_month',
  'regret_month_ago',
  'month_ago_contact',
  'ago_contact_mom',
  'contact_mom_see',
  'mom_see_see',
  'see_see_child',
  'see_child_happili',
  'child_happili_agre',
  'happili_agre_copar',
  'agre_copar_seem',
  'copar_seem_reliev',
  'seem_reliev_understand',
  'reliev_understand_consid',
  'understand_consid_kid',
  'consid_kid_younger',
  'kid_younger_nova',
  'younger_nova_nova',
  'nova_nova_bit',
  'nova_bit_distant',
  'bit_distant_first',
  'distant_first_better',
  'first_better_gener',
  'better_gener_good',
  'gener_good_kid',
  'good_kid_someth',
  'kid_someth_realiz',
  'someth_realiz_punish',
  'realiz_punish_seem',
  'punish_seem_work',
  'seem_work_also',
  'work_also_disrespect',
  'also_disrespect_time',
  'disrespect_time_tell',
  'time_tell_someth',
  'tell_someth_punish',
  'someth_punish_ground',
  'punish_ground_leav',
  'ground_leav_without',
  'leav_without_permiss',
  'without_permiss_ask',
  'permiss_ask_mom',
  'ask_mom_punish',
  'mom_punish_said',
  'punish_said_never',
  'said_never_punish',
  'never_punish_ive',
  'punish_ive_heard',
  'ive_heard_nova',
  'heard_nova_seem',
  'nova_seem_like',
  'seem_like_would',
  'like_would_cuss',
  'would_cuss_yell',
  'cuss_yell_think',
  'yell_think_good',
  'think_good_punish',
  'good_punish_kid',
  'punish_kid_night',
  'kid_night_ago',
  'night_ago_nova',
  'ago_nova_ask',
  'nova_ask_live',
  'ask_live_told',
  'live_told_id',
  'told_id_love',
  'id_love_live',
  'love_live_one',
  'live_one_condit',
  'one_condit_follow',
  'condit_follow_rule',
  'follow_rule_respect',
  'rule_respect_say',
  'respect_say_anyth',
  'say_anyth_went',
  'anyth_went_back',
  'went_back_mom',
  'back_mom_home',
  'mom_home_mom',
  'home_mom_nova',
  'mom_nova_ask',
  'nova_ask_told',
  'ask_told_ah',
  'told_ah_kid',
  'ah_kid_ask',
  'kid_ask_deadbeat',
  'ask_deadbeat_dad',
  'deadbeat_dad_take',
  'dad_take_must',
  'take_must_someth',
  'must_someth_wrong',
  'someth_wrong_make',
  'wrong_make_condit',
  'make_condit_say',
  'condit_say_ye',
  'say_ye_take',
  'ye_take_realli',
  'take_realli_wrong',
  'realli_wrong_condit',
  'wrong_condit_cant',
  'condit_cant_parent',
  'cant_parent_listen',
  'parent_listen_mom',
  'listen_mom_daughter',
  'mom_daughter_refus',
  'daughter_refus_talk',
  'refus_talk_mom',
  'talk_mom_like',
  'mom_like_problem',
  'like_problem_seem',
  'problem_seem_busi',
  'seem_busi_kid',
  'busi_kid_think',
  'kid_think_would',
  'think_would_like',
  'would_like_weekend',
  'like_weekend_fun',
  'weekend_fun_parent',
  'fun_parent_realli',
  'parent_realli_problem',
  'realli_problem_edit',
  'problem_edit_took',
  'edit_took_nova',
  'took_nova_ice',
  'nova_ice_cream',
  'ice_cream_ask',
  'cream_ask_want',
  'ask_want_live',
  'want_live_said',
  'live_said_want',
  'said_want_live',
  'want_live_anymor',
  'live_anymor_gon',
  'anymor_gon_na',
  'gon_na_send',
  'na_send_back',
  'send_back_anyway',
  'back_anyway_apolog',
  'anyway_apolog_told',
  'apolog_told_would',
  'told_would_never',
  'would_never_send',
  'never_send_back',
  'send_back_would',
  'back_would_happi',
  'would_happi_live',
  'happi_live_want',
  'live_want_know',
  'want_know_reason',
  'know_reason_talk',
  'reason_talk_said',
  'talk_said_want',
  'said_want_sleep',
  'want_sleep_turn',
  'sleep_turn_start',
  'turn_start_come',
  'start_come_home',
  'come_home_mom',
  'home_mom_gave',
  'mom_gave_bedroom',
  'gave_bedroom_younger',
  'bedroom_younger_sister',
  'younger_sister_one',
  'sister_one_babi',
  'one_babi_cri',
  'babi_cri_night',
  'cri_night_keep',
  'night_keep_awak',
  'keep_awak_told',
  'awak_told_talk',
  'told_talk_mom',
  'talk_mom_stay',
  'mom_stay_gon',
  'stay_gon_na',
  'gon_na_rule',
  'na_rule_expect',
  'rule_expect_follow',
  'expect_follow_even',
  'follow_even_still',
  'even_still_love',
  'still_love_leav',
  'love_leav_said',
  'leav_said_gon',
  'said_gon_na',
  'gon_na_tri',
  'na_tri_promis',
  'tri_promis_appar',
  'promis_appar_annoy',
  'appar_annoy_fun',
  'annoy_fun_call',
  'fun_call_mom',
  'call_mom_expect',
  'mom_expect_problem',
  'expect_problem_let',
  'problem_let_live'],
 ['sister',
  'take',
  'huge',
  'pride',
  'virgin',
  'cours',
  'amaz',
  'rais',
  'religi',
  'famili',
  'parent',
  'give',
  'shit',
  'pure',
  'belief',
  'want',
  'wait',
  'marri',
  'judgment',
  'kept',
  'sex',
  'life',
  'around',
  'twist',
  'turn',
  'event',
  'end',
  'get',
  'pregnant',
  'two',
  'month',
  'iud',
  'pregnant',
  'caus',
  'sister',
  'dislik',
  'even',
  'shame',
  'sex',
  'tell',
  'hope',
  'father',
  'would',
  'leav',
  'singl',
  'mom',
  'teach',
  'lesson',
  'casual',
  'sex',
  'safe',
  'say',
  'cut',
  'pregnanc',
  'beg',
  'apolog',
  'way',
  'back',
  'son',
  'born',
  'becam',
  'cordial',
  'sister',
  'boyfriend',
  'sinc',
  'junior',
  'high',
  'school',
  'im',
  'alway',
  'boast',
  'theyr',
  'wait',
  'till',
  'theyr',
  'marri',
  'relationship',
  'built',
  'trust',
  'actual',
  'love',
  'lust',
  'blah',
  'blah',
  'surpris',
  'week',
  'ago',
  'old',
  'cowork',
  'work',
  'pregnant',
  'confid',
  'drama',
  'sister',
  'cut',
  'time',
  'call',
  'tell',
  'sister',
  'boyfriend',
  'messag',
  'tinder',
  'sent',
  'proof',
  'profil',
  'fake',
  'name',
  'one',
  'blurri',
  'mirror',
  'pictur',
  'clearli',
  'messag',
  'said',
  'girlfriend',
  'know',
  'one',
  'hook',
  'cowork',
  'told',
  'know',
  'unmatch',
  'luckili',
  'taken',
  'screenshot',
  'add',
  'onto',
  'shock',
  'told',
  'found',
  'sister',
  'page',
  'mine',
  'alreadi',
  'messag',
  'sister',
  'block',
  'immedi',
  'say',
  'anyth',
  'birthday',
  'recent',
  'basement',
  'hous',
  'small',
  'get',
  'togeth',
  'famili',
  'boyfriend',
  'friend',
  'surpris',
  'surpris',
  'end',
  'parti',
  'son',
  'woke',
  'went',
  'get',
  'brought',
  'downstair',
  'littl',
  'cousin',
  'play',
  'say',
  'cute',
  'sister',
  'goe',
  'awww',
  'cute',
  'look',
  'like',
  'daddi',
  'wait',
  '____',
  'one',
  'ten',
  'guy',
  'daddi',
  'boyfriend',
  'start',
  'die',
  'laughter',
  'everyon',
  'went',
  'quiet',
  'embarrass',
  'said',
  'name',
  'trevor',
  'met',
  'tinder',
  'girlfriend',
  'care',
  'sleep',
  'girl',
  'think',
  'know',
  'smirk',
  'boyfriend',
  'thought',
  'theyd',
  'embarrass',
  'leav',
  'without',
  'expos',
  'sister',
  'start',
  'scream',
  'say',
  'im',
  'bitch',
  'get',
  'fuck',
  'parti',
  'went',
  'room',
  'son',
  'littl',
  'cousin',
  'put',
  'two',
  'two',
  'togeth',
  'made',
  'tinder',
  'find',
  'profil',
  'show',
  'sister',
  'downstair',
  'could',
  'hear',
  'shriek',
  'kick',
  'everyon',
  'parent',
  'even',
  'care',
  'joke',
  'theyr',
  'say',
  'aita',
  'sister_take',
  'take_huge',
  'huge_pride',
  'pride_virgin',
  'virgin_cours',
  'cours_amaz',
  'amaz_rais',
  'rais_religi',
  'religi_famili',
  'famili_parent',
  'parent_give',
  'give_shit',
  'shit_pure',
  'pure_belief',
  'belief_want',
  'want_wait',
  'wait_marri',
  'marri_judgment',
  'judgment_kept',
  'kept_sex',
  'sex_life',
  'life_around',
  'around_twist',
  'twist_turn',
  'turn_event',
  'event_end',
  'end_get',
  'get_pregnant',
  'pregnant_two',
  'two_month',
  'month_iud',
  'iud_pregnant',
  'pregnant_caus',
  'caus_sister',
  'sister_dislik',
  'dislik_even',
  'even_shame',
  'shame_sex',
  'sex_tell',
  'tell_hope',
  'hope_father',
  'father_would',
  'would_leav',
  'leav_singl',
  'singl_mom',
  'mom_teach',
  'teach_lesson',
  'lesson_casual',
  'casual_sex',
  'sex_safe',
  'safe_say',
  'say_cut',
  'cut_pregnanc',
  'pregnanc_beg',
  'beg_apolog',
  'apolog_way',
  'way_back',
  'back_son',
  'son_born',
  'born_becam',
  'becam_cordial',
  'cordial_sister',
  'sister_boyfriend',
  'boyfriend_sinc',
  'sinc_junior',
  'junior_high',
  'high_school',
  'school_im',
  'im_alway',
  'alway_boast',
  'boast_theyr',
  'theyr_wait',
  'wait_till',
  'till_theyr',
  'theyr_marri',
  'marri_relationship',
  'relationship_built',
  'built_trust',
  'trust_actual',
  'actual_love',
  'love_lust',
  'lust_blah',
  'blah_blah',
  'blah_surpris',
  'surpris_week',
  'week_ago',
  'ago_old',
  'old_cowork',
  'cowork_work',
  'work_pregnant',
  'pregnant_confid',
  'confid_drama',
  'drama_sister',
  'sister_cut',
  'cut_time',
  'time_call',
  'call_tell',
  'tell_sister',
  'sister_boyfriend',
  'boyfriend_messag',
  'messag_tinder',
  'tinder_sent',
  'sent_proof',
  'proof_profil',
  'profil_fake',
  'fake_name',
  'name_one',
  'one_blurri',
  'blurri_mirror',
  'mirror_pictur',
  'pictur_clearli',
  'clearli_messag',
  'messag_said',
  'said_girlfriend',
  'girlfriend_know',
  'know_one',
  'one_hook',
  'hook_cowork',
  'cowork_told',
  'told_know',
  'know_unmatch',
  'unmatch_luckili',
  'luckili_taken',
  'taken_screenshot',
  'screenshot_add',
  'add_onto',
  'onto_shock',
  'shock_told',
  'told_found',
  'found_sister',
  'sister_page',
  'page_mine',
  'mine_alreadi',
  'alreadi_messag',
  'messag_sister',
  'sister_block',
  'block_immedi',
  'immedi_say',
  'say_anyth',
  'anyth_birthday',
  'birthday_recent',
  'recent_basement',
  'basement_hous',
  'hous_small',
  'small_get',
  'get_togeth',
  'togeth_famili',
  'famili_boyfriend',
  'boyfriend_friend',
  'friend_surpris',
  'surpris_surpris',
  'surpris_end',
  'end_parti',
  'parti_son',
  'son_woke',
  'woke_went',
  'went_get',
  'get_brought',
  'brought_downstair',
  'downstair_littl',
  'littl_cousin',
  'cousin_play',
  'play_say',
  'say_cute',
  'cute_sister',
  'sister_goe',
  'goe_awww',
  'awww_cute',
  'cute_look',
  'look_like',
  'like_daddi',
  'daddi_wait',
  'wait_____',
  '_____one',
  'one_ten',
  'ten_guy',
  'guy_daddi',
  'daddi_boyfriend',
  'boyfriend_start',
  'start_die',
  'die_laughter',
  'laughter_everyon',
  'everyon_went',
  'went_quiet',
  'quiet_embarrass',
  'embarrass_said',
  'said_name',
  'name_trevor',
  'trevor_met',
  'met_tinder',
  'tinder_girlfriend',
  'girlfriend_care',
  'care_sleep',
  'sleep_girl',
  'girl_think',
  'think_know',
  'know_smirk',
  'smirk_boyfriend',
  'boyfriend_thought',
  'thought_theyd',
  'theyd_embarrass',
  'embarrass_leav',
  'leav_without',
  'without_expos',
  'expos_sister',
  'sister_start',
  'start_scream',
  'scream_say',
  'say_im',
  'im_bitch',
  'bitch_get',
  'get_fuck',
  'fuck_parti',
  'parti_went',
  'went_room',
  'room_son',
  'son_littl',
  'littl_cousin',
  'cousin_put',
  'put_two',
  'two_two',
  'two_togeth',
  'togeth_made',
  'made_tinder',
  'tinder_find',
  'find_profil',
  'profil_show',
  'show_sister',
  'sister_downstair',
  'downstair_could',
  'could_hear',
  'hear_shriek',
  'shriek_kick',
  'kick_everyon',
  'everyon_parent',
  'parent_even',
  'even_care',
  'care_joke',
  'joke_theyr',
  'theyr_say',
  'say_aita',
  'sister_take_huge',
  'take_huge_pride',
  'huge_pride_virgin',
  'pride_virgin_cours',
  'virgin_cours_amaz',
  'cours_amaz_rais',
  'amaz_rais_religi',
  'rais_religi_famili',
  'religi_famili_parent',
  'famili_parent_give',
  'parent_give_shit',
  'give_shit_pure',
  'shit_pure_belief',
  'pure_belief_want',
  'belief_want_wait',
  'want_wait_marri',
  'wait_marri_judgment',
  'marri_judgment_kept',
  'judgment_kept_sex',
  'kept_sex_life',
  'sex_life_around',
  'life_around_twist',
  'around_twist_turn',
  'twist_turn_event',
  'turn_event_end',
  'event_end_get',
  'end_get_pregnant',
  'get_pregnant_two',
  'pregnant_two_month',
  'two_month_iud',
  'month_iud_pregnant',
  'iud_pregnant_caus',
  'pregnant_caus_sister',
  'caus_sister_dislik',
  'sister_dislik_even',
  'dislik_even_shame',
  'even_shame_sex',
  'shame_sex_tell',
  'sex_tell_hope',
  'tell_hope_father',
  'hope_father_would',
  'father_would_leav',
  'would_leav_singl',
  'leav_singl_mom',
  'singl_mom_teach',
  'mom_teach_lesson',
  'teach_lesson_casual',
  'lesson_casual_sex',
  'casual_sex_safe',
  'sex_safe_say',
  'safe_say_cut',
  'say_cut_pregnanc',
  'cut_pregnanc_beg',
  'pregnanc_beg_apolog',
  'beg_apolog_way',
  'apolog_way_back',
  'way_back_son',
  'back_son_born',
  'son_born_becam',
  'born_becam_cordial',
  'becam_cordial_sister',
  'cordial_sister_boyfriend',
  'sister_boyfriend_sinc',
  'boyfriend_sinc_junior',
  'sinc_junior_high',
  'junior_high_school',
  'high_school_im',
  'school_im_alway',
  'im_alway_boast',
  'alway_boast_theyr',
  'boast_theyr_wait',
  'theyr_wait_till',
  'wait_till_theyr',
  'till_theyr_marri',
  'theyr_marri_relationship',
  'marri_relationship_built',
  'relationship_built_trust',
  'built_trust_actual',
  'trust_actual_love',
  'actual_love_lust',
  'love_lust_blah',
  'lust_blah_blah',
  'blah_blah_surpris',
  'blah_surpris_week',
  'surpris_week_ago',
  'week_ago_old',
  'ago_old_cowork',
  'old_cowork_work',
  'cowork_work_pregnant',
  'work_pregnant_confid',
  'pregnant_confid_drama',
  'confid_drama_sister',
  'drama_sister_cut',
  'sister_cut_time',
  'cut_time_call',
  'time_call_tell',
  'call_tell_sister',
  'tell_sister_boyfriend',
  'sister_boyfriend_messag',
  'boyfriend_messag_tinder',
  'messag_tinder_sent',
  'tinder_sent_proof',
  'sent_proof_profil',
  'proof_profil_fake',
  'profil_fake_name',
  'fake_name_one',
  'name_one_blurri',
  'one_blurri_mirror',
  'blurri_mirror_pictur',
  'mirror_pictur_clearli',
  'pictur_clearli_messag',
  'clearli_messag_said',
  'messag_said_girlfriend',
  'said_girlfriend_know',
  'girlfriend_know_one',
  'know_one_hook',
  'one_hook_cowork',
  'hook_cowork_told',
  'cowork_told_know',
  'told_know_unmatch',
  'know_unmatch_luckili',
  'unmatch_luckili_taken',
  'luckili_taken_screenshot',
  'taken_screenshot_add',
  'screenshot_add_onto',
  'add_onto_shock',
  'onto_shock_told',
  'shock_told_found',
  'told_found_sister',
  'found_sister_page',
  'sister_page_mine',
  'page_mine_alreadi',
  'mine_alreadi_messag',
  'alreadi_messag_sister',
  'messag_sister_block',
  'sister_block_immedi',
  'block_immedi_say',
  'immedi_say_anyth',
  'say_anyth_birthday',
  'anyth_birthday_recent',
  'birthday_recent_basement',
  'recent_basement_hous',
  'basement_hous_small',
  'hous_small_get',
  'small_get_togeth',
  'get_togeth_famili',
  'togeth_famili_boyfriend',
  'famili_boyfriend_friend',
  'boyfriend_friend_surpris',
  'friend_surpris_surpris',
  'surpris_surpris_end',
  'surpris_end_parti',
  'end_parti_son',
  'parti_son_woke',
  'son_woke_went',
  'woke_went_get',
  'went_get_brought',
  'get_brought_downstair',
  'brought_downstair_littl',
  'downstair_littl_cousin',
  'littl_cousin_play',
  'cousin_play_say',
  'play_say_cute',
  'say_cute_sister',
  'cute_sister_goe',
  'sister_goe_awww',
  'goe_awww_cute',
  'awww_cute_look',
  'cute_look_like',
  'look_like_daddi',
  'like_daddi_wait',
  'daddi_wait_____',
  'wait______one',
  '_____one_ten',
  'one_ten_guy',
  'ten_guy_daddi',
  'guy_daddi_boyfriend',
  'daddi_boyfriend_start',
  'boyfriend_start_die',
  'start_die_laughter',
  'die_laughter_everyon',
  'laughter_everyon_went',
  'everyon_went_quiet',
  'went_quiet_embarrass',
  'quiet_embarrass_said',
  'embarrass_said_name',
  'said_name_trevor',
  'name_trevor_met',
  'trevor_met_tinder',
  'met_tinder_girlfriend',
  'tinder_girlfriend_care',
  'girlfriend_care_sleep',
  'care_sleep_girl',
  'sleep_girl_think',
  'girl_think_know',
  'think_know_smirk',
  'know_smirk_boyfriend',
  'smirk_boyfriend_thought',
  'boyfriend_thought_theyd',
  'thought_theyd_embarrass',
  'theyd_embarrass_leav',
  'embarrass_leav_without',
  'leav_without_expos',
  'without_expos_sister',
  'expos_sister_start',
  'sister_start_scream',
  'start_scream_say',
  'scream_say_im',
  'say_im_bitch',
  'im_bitch_get',
  'bitch_get_fuck',
  'get_fuck_parti',
  'fuck_parti_went',
  'parti_went_room',
  'went_room_son',
  'room_son_littl',
  'son_littl_cousin',
  'littl_cousin_put',
  'cousin_put_two',
  'put_two_two',
  'two_two_togeth',
  'two_togeth_made',
  'togeth_made_tinder',
  'made_tinder_find',
  'tinder_find_profil',
  'find_profil_show',
  'profil_show_sister',
  'show_sister_downstair',
  'sister_downstair_could',
  'downstair_could_hear',
  'could_hear_shriek',
  'hear_shriek_kick',
  'shriek_kick_everyon',
  'kick_everyon_parent',
  'everyon_parent_even',
  'parent_even_care',
  'even_care_joke',
  'care_joke_theyr',
  'joke_theyr_say',
  'theyr_say_aita'],
 ['throw',
  'away',
  'account',
  'brother',
  'came',
  'wife',
  'yesterday',
  'spent',
  'night',
  'wife',
  'worth',
  'mention',
  'come',
  'muslim',
  'famili',
  'wife',
  'brother',
  'wife',
  'arriv',
  'wife',
  'get',
  'home',
  'work',
  'wear',
  'scrub',
  'name',
  'badg',
  'made',
  'polit',
  'convers',
  'brother',
  'sil',
  'wife',
  'went',
  'chang',
  'cloth',
  'also',
  'worth',
  'mention',
  'wife',
  'tattoo',
  'pierc',
  'dy',
  'hair',
  'stretch',
  'ear',
  'much',
  'stereotyp',
  'goth',
  'girl',
  'done',
  'came',
  'back',
  'live',
  'room',
  'tank',
  'top',
  'pair',
  'short',
  'brother',
  'avert',
  'eye',
  'sister',
  'law',
  'stop',
  'look',
  'wife',
  'wife',
  'tattoo',
  'thigh',
  'ankl',
  'left',
  'leg',
  'tattoo',
  'calf',
  'right',
  'leg',
  'wife',
  'final',
  'notic',
  'ask',
  'sil',
  'like',
  'tattoo',
  'simpli',
  'blush',
  'wife',
  'smile',
  'tell',
  'fine',
  'im',
  'use',
  'stare',
  'forget',
  'mani',
  'tattoo',
  'pierc',
  'sil',
  'brother',
  'ask',
  'mani',
  'pierc',
  'almost',
  'tattoo',
  'even',
  'continu',
  'dinner',
  'convers',
  'turn',
  'wife',
  'tattoo',
  'sil',
  'ask',
  'plan',
  'wife',
  'tell',
  'ye',
  'current',
  'work',
  'full',
  'back',
  'piec',
  'brother',
  'roll',
  'eye',
  'continu',
  'eat',
  'shortli',
  'dinner',
  'get',
  'readi',
  'bed',
  'worth',
  'mention',
  'wife',
  'sleep',
  'shirt',
  'pj',
  'pant',
  'point',
  'wife',
  'nude',
  'semi',
  'nude',
  'go',
  'bed',
  'brother',
  'come',
  'bedroom',
  'wife',
  'process',
  'put',
  'tattoo',
  'lotion',
  'tattoo',
  'back',
  'shirt',
  'pull',
  'back',
  'arm',
  'chest',
  'cover',
  'breast',
  'brother',
  'see',
  'run',
  'room',
  'wife',
  'embarrass',
  'tell',
  'worri',
  'fault',
  'knock',
  'im',
  'done',
  'go',
  'see',
  'brother',
  'need',
  'tell',
  'see',
  'wife',
  'state',
  'undress',
  'need',
  'husband',
  'tell',
  'cover',
  'wife',
  'need',
  'see',
  'bodi',
  'need',
  'see',
  'bodi',
  'tell',
  'knock',
  'fault',
  'wife',
  'left',
  'earli',
  'next',
  'morn',
  'ive',
  'get',
  'lot',
  'phone',
  'call',
  'parent',
  'say',
  'wife',
  'loos',
  'woman',
  'need',
  'cover',
  'tell',
  'leav',
  'alon',
  'parent',
  'brother',
  'want',
  'apolog',
  'us',
  'asshol',
  'updat',
  'hello',
  'everyon',
  'final',
  'home',
  'turn',
  'crazi',
  'day',
  'thought',
  'id',
  'take',
  'time',
  'updat',
  'everyon',
  'situat',
  'go',
  'tonight',
  'went',
  'dinner',
  'parent',
  'brother',
  'wife',
  'moment',
  'sat',
  'could',
  'tell',
  'famili',
  'uncomfort',
  'tri',
  'gentli',
  'break',
  'ice',
  'talk',
  'weather',
  'final',
  'mother',
  'ask',
  'go',
  'apolog',
  'incid',
  'home',
  'wife',
  'kind',
  'women',
  'start',
  'apolog',
  'explain',
  'cut',
  'explain',
  'brother',
  'barg',
  'bedroom',
  'without',
  'knock',
  'door',
  'close',
  'fell',
  'deaf',
  'ear',
  'final',
  'demand',
  'know',
  'dislik',
  'wife',
  'much',
  'answer',
  'proper',
  'wife',
  'kid',
  'weve',
  'marri',
  'go',
  'three',
  'year',
  'wife',
  'decidedli',
  'child',
  'free',
  'due',
  'lot',
  'factor',
  'get',
  'wife',
  'hardest',
  'work',
  'woman',
  'ever',
  'meet',
  'work',
  'full',
  'time',
  'goe',
  'school',
  'full',
  'time',
  'saw',
  'red',
  'final',
  'snap',
  'back',
  'parent',
  'wife',
  'proper',
  'marri',
  'coupl',
  'children',
  'wife',
  'proper',
  'wife',
  'support',
  'love',
  'kind',
  'woman',
  'ever',
  'met',
  'mother',
  'ask',
  'would',
  'take',
  'care',
  'us',
  'old',
  'said',
  'would',
  'take',
  'care',
  'convers',
  'turn',
  'tattoo',
  'parent',
  'knew',
  'one',
  'forearm',
  'collarbon',
  'wife',
  'pull',
  'sleev',
  'show',
  'mani',
  'mani',
  'tattoo',
  'mother',
  'nearli',
  'faint',
  'wife',
  'rel',
  'heavili',
  'tattoo',
  'woman',
  'love',
  'brother',
  'turn',
  'ask',
  'ask',
  'wife',
  'pull',
  'sleev',
  'back',
  'final',
  'snap',
  'tell',
  'exactli',
  'shove',
  'opinion',
  'bodi',
  'go',
  'happen',
  'ever',
  'walk',
  'bedroom',
  'without',
  'knock',
  'goe',
  'red',
  'quiet',
  'wife',
  'turn',
  'say',
  'leav',
  'get',
  'follow',
  'outsid',
  'tell',
  'longer',
  'want',
  'relationship',
  'famili',
  'prevent',
  'see',
  'tell',
  'longer',
  'want',
  'see',
  'either',
  'apolog',
  'treat',
  'like',
  'famili',
  'sinc',
  'return',
  'home',
  'wife',
  'play',
  'floor',
  'two',
  'pit',
  'bull',
  'australian',
  'shepherd',
  'puppi',
  'may',
  'longer',
  'parent',
  'know',
  'ill',
  'alway',
  'wife',
  'live',
  'updat',
  'throw_away',
  'away_account',
  'account_brother',
  'brother_came',
  'came_wife',
  'wife_yesterday',
  'yesterday_spent',
  'spent_night',
  'night_wife',
  'wife_worth',
  'worth_mention',
  'mention_come',
  'come_muslim',
  'muslim_famili',
  'famili_wife',
  'wife_brother',
  'brother_wife',
  'wife_arriv',
  'arriv_wife',
  'wife_get',
  'get_home',
  'home_work',
  'work_wear',
  'wear_scrub',
  'scrub_name',
  'name_badg',
  'badg_made',
  'made_polit',
  'polit_convers',
  'convers_brother',
  'brother_sil',
  'sil_wife',
  'wife_went',
  'went_chang',
  'chang_cloth',
  'cloth_also',
  'also_worth',
  'worth_mention',
  'mention_wife',
  'wife_tattoo',
  'tattoo_pierc',
  'pierc_dy',
  'dy_hair',
  'hair_stretch',
  'stretch_ear',
  'ear_much',
  'much_stereotyp',
  'stereotyp_goth',
  'goth_girl',
  'girl_done',
  'done_came',
  'came_back',
  'back_live',
  'live_room',
  'room_tank',
  'tank_top',
  'top_pair',
  'pair_short',
  'short_brother',
  'brother_avert',
  'avert_eye',
  'eye_sister',
  'sister_law',
  'law_stop',
  'stop_look',
  'look_wife',
  'wife_wife',
  'wife_tattoo',
  'tattoo_thigh',
  'thigh_ankl',
  'ankl_left',
  'left_leg',
  'leg_tattoo',
  'tattoo_calf',
  'calf_right',
  'right_leg',
  'leg_wife',
  'wife_final',
  'final_notic',
  'notic_ask',
  'ask_sil',
  'sil_like',
  'like_tattoo',
  'tattoo_simpli',
  'simpli_blush',
  'blush_wife',
  'wife_smile',
  'smile_tell',
  'tell_fine',
  'fine_im',
  'im_use',
  'use_stare',
  'stare_forget',
  'forget_mani',
  'mani_tattoo',
  'tattoo_pierc',
  'pierc_sil',
  'sil_brother',
  'brother_ask',
  'ask_mani',
  'mani_pierc',
  'pierc_almost',
  'almost_tattoo',
  'tattoo_even',
  'even_continu',
  'continu_dinner',
  'dinner_convers',
  'convers_turn',
  'turn_wife',
  'wife_tattoo',
  'tattoo_sil',
  'sil_ask',
  'ask_plan',
  'plan_wife',
  'wife_tell',
  'tell_ye',
  'ye_current',
  'current_work',
  'work_full',
  'full_back',
  'back_piec',
  'piec_brother',
  'brother_roll',
  'roll_eye',
  'eye_continu',
  'continu_eat',
  'eat_shortli',
  'shortli_dinner',
  'dinner_get',
  'get_readi',
  'readi_bed',
  'bed_worth',
  'worth_mention',
  'mention_wife',
  'wife_sleep',
  'sleep_shirt',
  'shirt_pj',
  'pj_pant',
  'pant_point',
  'point_wife',
  'wife_nude',
  'nude_semi',
  'semi_nude',
  'nude_go',
  'go_bed',
  'bed_brother',
  'brother_come',
  'come_bedroom',
  'bedroom_wife',
  'wife_process',
  'process_put',
  'put_tattoo',
  'tattoo_lotion',
  'lotion_tattoo',
  'tattoo_back',
  'back_shirt',
  'shirt_pull',
  'pull_back',
  'back_arm',
  'arm_chest',
  'chest_cover',
  'cover_breast',
  'breast_brother',
  'brother_see',
  'see_run',
  'run_room',
  'room_wife',
  'wife_embarrass',
  'embarrass_tell',
  'tell_worri',
  'worri_fault',
  'fault_knock',
  'knock_im',
  'im_done',
  'done_go',
  'go_see',
  'see_brother',
  'brother_need',
  'need_tell',
  'tell_see',
  'see_wife',
  'wife_state',
  'state_undress',
  'undress_need',
  'need_husband',
  'husband_tell',
  'tell_cover',
  'cover_wife',
  'wife_need',
  'need_see',
  'see_bodi',
  'bodi_need',
  'need_see',
  'see_bodi',
  'bodi_tell',
  'tell_knock',
  'knock_fault',
  'fault_wife',
  'wife_left',
  'left_earli',
  'earli_next',
  'next_morn',
  'morn_ive',
  'ive_get',
  'get_lot',
  'lot_phone',
  'phone_call',
  'call_parent',
  'parent_say',
  'say_wife',
  'wife_loos',
  'loos_woman',
  'woman_need',
  'need_cover',
  'cover_tell',
  'tell_leav',
  'leav_alon',
  'alon_parent',
  'parent_brother',
  'brother_want',
  'want_apolog',
  'apolog_us',
  'us_asshol',
  'asshol_updat',
  'updat_hello',
  'hello_everyon',
  'everyon_final',
  'final_home',
  'home_turn',
  'turn_crazi',
  'crazi_day',
  'day_thought',
  'thought_id',
  'id_take',
  'take_time',
  'time_updat',
  'updat_everyon',
  'everyon_situat',
  'situat_go',
  'go_tonight',
  'tonight_went',
  'went_dinner',
  'dinner_parent',
  'parent_brother',
  'brother_wife',
  'wife_moment',
  'moment_sat',
  'sat_could',
  'could_tell',
  'tell_famili',
  'famili_uncomfort',
  'uncomfort_tri',
  'tri_gentli',
  'gentli_break',
  'break_ice',
  'ice_talk',
  'talk_weather',
  'weather_final',
  'final_mother',
  'mother_ask',
  'ask_go',
  'go_apolog',
  'apolog_incid',
  'incid_home',
  'home_wife',
  'wife_kind',
  'kind_women',
  'women_start',
  'start_apolog',
  'apolog_explain',
  'explain_cut',
  'cut_explain',
  'explain_brother',
  'brother_barg',
  'barg_bedroom',
  'bedroom_without',
  'without_knock',
  'knock_door',
  'door_close',
  'close_fell',
  'fell_deaf',
  'deaf_ear',
  'ear_final',
  'final_demand',
  'demand_know',
  'know_dislik',
  'dislik_wife',
  'wife_much',
  'much_answer',
  'answer_proper',
  'proper_wife',
  'wife_kid',
  'kid_weve',
  'weve_marri',
  'marri_go',
  'go_three',
  'three_year',
  'year_wife',
  'wife_decidedli',
  'decidedli_child',
  'child_free',
  'free_due',
  'due_lot',
  'lot_factor',
  'factor_get',
  'get_wife',
  'wife_hardest',
  'hardest_work',
  'work_woman',
  'woman_ever',
  'ever_meet',
  'meet_work',
  'work_full',
  'full_time',
  'time_goe',
  'goe_school',
  'school_full',
  'full_time',
  'time_saw',
  'saw_red',
  'red_final',
  'final_snap',
  'snap_back',
  'back_parent',
  'parent_wife',
  'wife_proper',
  'proper_marri',
  'marri_coupl',
  'coupl_children',
  'children_wife',
  'wife_proper',
  'proper_wife',
  'wife_support',
  'support_love',
  'love_kind',
  'kind_woman',
  'woman_ever',
  'ever_met',
  'met_mother',
  'mother_ask',
  'ask_would',
  'would_take',
  'take_care',
  'care_us',
  'us_old',
  'old_said',
  'said_would',
  'would_take',
  'take_care',
  'care_convers',
  'convers_turn',
  'turn_tattoo',
  'tattoo_parent',
  'parent_knew',
  'knew_one',
  'one_forearm',
  'forearm_collarbon',
  'collarbon_wife',
  'wife_pull',
  'pull_sleev',
  'sleev_show',
  'show_mani',
  'mani_mani',
  'mani_tattoo',
  'tattoo_mother',
  'mother_nearli',
  'nearli_faint',
  'faint_wife',
  'wife_rel',
  'rel_heavili',
  'heavili_tattoo',
  'tattoo_woman',
  'woman_love',
  'love_brother',
  'brother_turn',
  'turn_ask',
  'ask_ask',
  'ask_wife',
  'wife_pull',
  'pull_sleev',
  'sleev_back',
  'back_final',
  'final_snap',
  'snap_tell',
  'tell_exactli',
  'exactli_shove',
  'shove_opinion',
  'opinion_bodi',
  'bodi_go',
  'go_happen',
  'happen_ever',
  'ever_walk',
  'walk_bedroom',
  'bedroom_without',
  'without_knock',
  'knock_goe',
  'goe_red',
  'red_quiet',
  'quiet_wife',
  'wife_turn',
  'turn_say',
  'say_leav',
  'leav_get',
  'get_follow',
  'follow_outsid',
  'outsid_tell',
  'tell_longer',
  'longer_want',
  'want_relationship',
  'relationship_famili',
  'famili_prevent',
  'prevent_see',
  'see_tell',
  'tell_longer',
  'longer_want',
  'want_see',
  'see_either',
  'either_apolog',
  'apolog_treat',
  'treat_like',
  'like_famili',
  'famili_sinc',
  'sinc_return',
  'return_home',
  'home_wife',
  'wife_play',
  'play_floor',
  'floor_two',
  'two_pit',
  'pit_bull',
  'bull_australian',
  'australian_shepherd',
  'shepherd_puppi',
  'puppi_may',
  'may_longer',
  'longer_parent',
  'parent_know',
  'know_ill',
  'ill_alway',
  'alway_wife',
  'wife_live',
  'live_updat',
  'throw_away_account',
  'away_account_brother',
  'account_brother_came',
  'brother_came_wife',
  'came_wife_yesterday',
  'wife_yesterday_spent',
  'yesterday_spent_night',
  'spent_night_wife',
  'night_wife_worth',
  'wife_worth_mention',
  'worth_mention_come',
  'mention_come_muslim',
  'come_muslim_famili',
  'muslim_famili_wife',
  'famili_wife_brother',
  'wife_brother_wife',
  'brother_wife_arriv',
  'wife_arriv_wife',
  'arriv_wife_get',
  'wife_get_home',
  'get_home_work',
  'home_work_wear',
  'work_wear_scrub',
  'wear_scrub_name',
  'scrub_name_badg',
  'name_badg_made',
  'badg_made_polit',
  'made_polit_convers',
  'polit_convers_brother',
  'convers_brother_sil',
  'brother_sil_wife',
  'sil_wife_went',
  'wife_went_chang',
  'went_chang_cloth',
  'chang_cloth_also',
  'cloth_also_worth',
  'also_worth_mention',
  'worth_mention_wife',
  'mention_wife_tattoo',
  'wife_tattoo_pierc',
  'tattoo_pierc_dy',
  'pierc_dy_hair',
  'dy_hair_stretch',
  'hair_stretch_ear',
  'stretch_ear_much',
  'ear_much_stereotyp',
  'much_stereotyp_goth',
  'stereotyp_goth_girl',
  'goth_girl_done',
  'girl_done_came',
  'done_came_back',
  'came_back_live',
  'back_live_room',
  'live_room_tank',
  'room_tank_top',
  'tank_top_pair',
  'top_pair_short',
  'pair_short_brother',
  'short_brother_avert',
  'brother_avert_eye',
  'avert_eye_sister',
  'eye_sister_law',
  'sister_law_stop',
  'law_stop_look',
  'stop_look_wife',
  'look_wife_wife',
  'wife_wife_tattoo',
  'wife_tattoo_thigh',
  'tattoo_thigh_ankl',
  'thigh_ankl_left',
  'ankl_left_leg',
  'left_leg_tattoo',
  'leg_tattoo_calf',
  'tattoo_calf_right',
  'calf_right_leg',
  'right_leg_wife',
  'leg_wife_final',
  'wife_final_notic',
  'final_notic_ask',
  'notic_ask_sil',
  'ask_sil_like',
  'sil_like_tattoo',
  'like_tattoo_simpli',
  'tattoo_simpli_blush',
  'simpli_blush_wife',
  'blush_wife_smile',
  'wife_smile_tell',
  'smile_tell_fine',
  'tell_fine_im',
  'fine_im_use',
  'im_use_stare',
  'use_stare_forget',
  'stare_forget_mani',
  'forget_mani_tattoo',
  'mani_tattoo_pierc',
  'tattoo_pierc_sil',
  'pierc_sil_brother',
  'sil_brother_ask',
  'brother_ask_mani',
  'ask_mani_pierc',
  'mani_pierc_almost',
  'pierc_almost_tattoo',
  'almost_tattoo_even',
  'tattoo_even_continu',
  'even_continu_dinner',
  'continu_dinner_convers',
  'dinner_convers_turn',
  'convers_turn_wife',
  'turn_wife_tattoo',
  'wife_tattoo_sil',
  'tattoo_sil_ask',
  'sil_ask_plan',
  'ask_plan_wife',
  'plan_wife_tell',
  'wife_tell_ye',
  ...],
 ['context',
  'parent',
  'mexican',
  'although',
  'speak',
  'english',
  'well',
  'dad',
  'sound',
  'bit',
  'like',
  'gloria',
  'modern',
  'famili',
  'sibl',
  'mf',
  'speak',
  'spanish',
  'elder',
  'brother',
  'got',
  'marri',
  'wife',
  'two',
  'year',
  'ago',
  'none',
  'sibl',
  'realli',
  'like',
  'believ',
  'smartest',
  'girl',
  'whole',
  'world',
  'alway',
  'alway',
  'correct',
  'us',
  'shit',
  'mr',
  'smarti',
  'pant',
  'know',
  'one',
  'languag',
  'din',
  'us',
  'parent',
  'speak',
  'english',
  'yesterday',
  'mom',
  'made',
  'bomb',
  'ass',
  'dinner',
  'invit',
  'brother',
  'wife',
  'sister',
  'come',
  'eat',
  'us',
  'brother',
  'talk',
  'pangea',
  'soon',
  'came',
  'trough',
  'door',
  'correct',
  'us',
  'pronunci',
  'even',
  'tho',
  'said',
  'spanish',
  'english',
  'roll',
  'eye',
  'said',
  'noth',
  'want',
  'spoil',
  'dinner',
  'parent',
  'said',
  'said',
  'bitchi',
  'comment',
  'sat',
  'eat',
  'quiet',
  'famili',
  'talk',
  'togeth',
  'group',
  'sinc',
  'sil',
  'english',
  'younger',
  'brother',
  'talk',
  'dad',
  'movi',
  'guy',
  'escap',
  'boat',
  'dad',
  'say',
  '*',
  'boat',
  '*',
  '*',
  'bought',
  '*',
  'bro',
  'care',
  'pretti',
  'obviou',
  'given',
  'context',
  'said',
  '*',
  'bought',
  '*',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'innoc',
  'dad',
  'tri',
  'say',
  '*',
  'boat',
  '*',
  '*',
  'bought',
  '*',
  'sound',
  'said',
  '*',
  '*',
  'boat',
  '*',
  '*',
  '*',
  'bought',
  '*',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'dad',
  'obvious',
  'embarrass',
  'tri',
  'sigh',
  'said',
  '*',
  '*',
  'boat',
  '*',
  '*',
  'its-',
  'cut',
  'said',
  'bitch',
  'cant',
  'say',
  'talk',
  'anyway',
  'brother',
  'mom',
  'look',
  'sil',
  'said',
  'help',
  'said',
  'rude',
  'mani',
  'languag',
  'speak',
  'correct',
  'someon',
  'dad',
  'took',
  'hand',
  'smile',
  'thing',
  'got',
  'awkward',
  'left',
  'brother',
  'demand',
  'apolog',
  'ah',
  'dad',
  'think',
  'mom',
  'sure',
  'idk',
  'aita',
  'context_parent',
  'parent_mexican',
  'mexican_although',
  'although_speak',
  'speak_english',
  'english_well',
  'well_dad',
  'dad_sound',
  'sound_bit',
  'bit_like',
  'like_gloria',
  'gloria_modern',
  'modern_famili',
  'famili_sibl',
  'sibl_mf',
  'mf_speak',
  'speak_spanish',
  'spanish_elder',
  'elder_brother',
  'brother_got',
  'got_marri',
  'marri_wife',
  'wife_two',
  'two_year',
  'year_ago',
  'ago_none',
  'none_sibl',
  'sibl_realli',
  'realli_like',
  'like_believ',
  'believ_smartest',
  'smartest_girl',
  'girl_whole',
  'whole_world',
  'world_alway',
  'alway_alway',
  'alway_correct',
  'correct_us',
  'us_shit',
  'shit_mr',
  'mr_smarti',
  'smarti_pant',
  'pant_know',
  'know_one',
  'one_languag',
  'languag_din',
  'din_us',
  'us_parent',
  'parent_speak',
  'speak_english',
  'english_yesterday',
  'yesterday_mom',
  'mom_made',
  'made_bomb',
  'bomb_ass',
  'ass_dinner',
  'dinner_invit',
  'invit_brother',
  'brother_wife',
  'wife_sister',
  'sister_come',
  'come_eat',
  'eat_us',
  'us_brother',
  'brother_talk',
  'talk_pangea',
  'pangea_soon',
  'soon_came',
  'came_trough',
  'trough_door',
  'door_correct',
  'correct_us',
  'us_pronunci',
  'pronunci_even',
  'even_tho',
  'tho_said',
  'said_spanish',
  'spanish_english',
  'english_roll',
  'roll_eye',
  'eye_said',
  'said_noth',
  'noth_want',
  'want_spoil',
  'spoil_dinner',
  'dinner_parent',
  'parent_said',
  'said_said',
  'said_bitchi',
  'bitchi_comment',
  'comment_sat',
  'sat_eat',
  'eat_quiet',
  'quiet_famili',
  'famili_talk',
  'talk_togeth',
  'togeth_group',
  'group_sinc',
  'sinc_sil',
  'sil_english',
  'english_younger',
  'younger_brother',
  'brother_talk',
  'talk_dad',
  'dad_movi',
  'movi_guy',
  'guy_escap',
  'escap_boat',
  'boat_dad',
  'dad_say',
  'say_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_bought',
  'bought_*',
  '*_bro',
  'bro_care',
  'care_pretti',
  'pretti_obviou',
  'obviou_given',
  'given_context',
  'context_said',
  'said_*',
  '*_bought',
  'bought_*',
  '*_*',
  '*_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_innoc',
  'innoc_dad',
  'dad_tri',
  'tri_say',
  'say_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_bought',
  'bought_*',
  '*_sound',
  'sound_said',
  'said_*',
  '*_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_*',
  '*_bought',
  'bought_*',
  '*_*',
  '*_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_dad',
  'dad_obvious',
  'obvious_embarrass',
  'embarrass_tri',
  'tri_sigh',
  'sigh_said',
  'said_*',
  '*_*',
  '*_boat',
  'boat_*',
  '*_*',
  '*_its-',
  'its-_cut',
  'cut_said',
  'said_bitch',
  'bitch_cant',
  'cant_say',
  'say_talk',
  'talk_anyway',
  'anyway_brother',
  'brother_mom',
  'mom_look',
  'look_sil',
  'sil_said',
  'said_help',
  'help_said',
  'said_rude',
  'rude_mani',
  'mani_languag',
  'languag_speak',
  'speak_correct',
  'correct_someon',
  'someon_dad',
  'dad_took',
  'took_hand',
  'hand_smile',
  'smile_thing',
  'thing_got',
  'got_awkward',
  'awkward_left',
  'left_brother',
  'brother_demand',
  'demand_apolog',
  'apolog_ah',
  'ah_dad',
  'dad_think',
  'think_mom',
  'mom_sure',
  'sure_idk',
  'idk_aita',
  'context_parent_mexican',
  'parent_mexican_although',
  'mexican_although_speak',
  'although_speak_english',
  'speak_english_well',
  'english_well_dad',
  'well_dad_sound',
  'dad_sound_bit',
  'sound_bit_like',
  'bit_like_gloria',
  'like_gloria_modern',
  'gloria_modern_famili',
  'modern_famili_sibl',
  'famili_sibl_mf',
  'sibl_mf_speak',
  'mf_speak_spanish',
  'speak_spanish_elder',
  'spanish_elder_brother',
  'elder_brother_got',
  'brother_got_marri',
  'got_marri_wife',
  'marri_wife_two',
  'wife_two_year',
  'two_year_ago',
  'year_ago_none',
  'ago_none_sibl',
  'none_sibl_realli',
  'sibl_realli_like',
  'realli_like_believ',
  'like_believ_smartest',
  'believ_smartest_girl',
  'smartest_girl_whole',
  'girl_whole_world',
  'whole_world_alway',
  'world_alway_alway',
  'alway_alway_correct',
  'alway_correct_us',
  'correct_us_shit',
  'us_shit_mr',
  'shit_mr_smarti',
  'mr_smarti_pant',
  'smarti_pant_know',
  'pant_know_one',
  'know_one_languag',
  'one_languag_din',
  'languag_din_us',
  'din_us_parent',
  'us_parent_speak',
  'parent_speak_english',
  'speak_english_yesterday',
  'english_yesterday_mom',
  'yesterday_mom_made',
  'mom_made_bomb',
  'made_bomb_ass',
  'bomb_ass_dinner',
  'ass_dinner_invit',
  'dinner_invit_brother',
  'invit_brother_wife',
  'brother_wife_sister',
  'wife_sister_come',
  'sister_come_eat',
  'come_eat_us',
  'eat_us_brother',
  'us_brother_talk',
  'brother_talk_pangea',
  'talk_pangea_soon',
  'pangea_soon_came',
  'soon_came_trough',
  'came_trough_door',
  'trough_door_correct',
  'door_correct_us',
  'correct_us_pronunci',
  'us_pronunci_even',
  'pronunci_even_tho',
  'even_tho_said',
  'tho_said_spanish',
  'said_spanish_english',
  'spanish_english_roll',
  'english_roll_eye',
  'roll_eye_said',
  'eye_said_noth',
  'said_noth_want',
  'noth_want_spoil',
  'want_spoil_dinner',
  'spoil_dinner_parent',
  'dinner_parent_said',
  'parent_said_said',
  'said_said_bitchi',
  'said_bitchi_comment',
  'bitchi_comment_sat',
  'comment_sat_eat',
  'sat_eat_quiet',
  'eat_quiet_famili',
  'quiet_famili_talk',
  'famili_talk_togeth',
  'talk_togeth_group',
  'togeth_group_sinc',
  'group_sinc_sil',
  'sinc_sil_english',
  'sil_english_younger',
  'english_younger_brother',
  'younger_brother_talk',
  'brother_talk_dad',
  'talk_dad_movi',
  'dad_movi_guy',
  'movi_guy_escap',
  'guy_escap_boat',
  'escap_boat_dad',
  'boat_dad_say',
  'dad_say_*',
  'say_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_bought',
  '*_bought_*',
  'bought_*_bro',
  '*_bro_care',
  'bro_care_pretti',
  'care_pretti_obviou',
  'pretti_obviou_given',
  'obviou_given_context',
  'given_context_said',
  'context_said_*',
  'said_*_bought',
  '*_bought_*',
  'bought_*_*',
  '*_*_*',
  '*_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_innoc',
  '*_innoc_dad',
  'innoc_dad_tri',
  'dad_tri_say',
  'tri_say_*',
  'say_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_bought',
  '*_bought_*',
  'bought_*_sound',
  '*_sound_said',
  'sound_said_*',
  'said_*_*',
  '*_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_*',
  '*_*_bought',
  '*_bought_*',
  'bought_*_*',
  '*_*_*',
  '*_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_dad',
  '*_dad_obvious',
  'dad_obvious_embarrass',
  'obvious_embarrass_tri',
  'embarrass_tri_sigh',
  'tri_sigh_said',
  'sigh_said_*',
  'said_*_*',
  '*_*_boat',
  '*_boat_*',
  'boat_*_*',
  '*_*_its-',
  '*_its-_cut',
  'its-_cut_said',
  'cut_said_bitch',
  'said_bitch_cant',
  'bitch_cant_say',
  'cant_say_talk',
  'say_talk_anyway',
  'talk_anyway_brother',
  'anyway_brother_mom',
  'brother_mom_look',
  'mom_look_sil',
  'look_sil_said',
  'sil_said_help',
  'said_help_said',
  'help_said_rude',
  'said_rude_mani',
  'rude_mani_languag',
  'mani_languag_speak',
  'languag_speak_correct',
  'speak_correct_someon',
  'correct_someon_dad',
  'someon_dad_took',
  'dad_took_hand',
  'took_hand_smile',
  'hand_smile_thing',
  'smile_thing_got',
  'thing_got_awkward',
  'got_awkward_left',
  'awkward_left_brother',
  'left_brother_demand',
  'brother_demand_apolog',
  'demand_apolog_ah',
  'apolog_ah_dad',
  'ah_dad_think',
  'dad_think_mom',
  'think_mom_sure',
  'mom_sure_idk',
  'sure_idk_aita'],
 ['wife',
  'live',
  'across',
  'countri',
  'famili',
  'visit',
  'wed',
  'funer',
  'big',
  'family-rel',
  'event',
  'wife',
  'deaf',
  'ive',
  'never',
  'close',
  'anyon',
  'famili',
  'grandpar',
  'cousin',
  'aunt',
  'uncl',
  'brother',
  'father',
  'singl',
  'dad',
  'never',
  'bother',
  'look',
  'past',
  'disabl',
  'grow',
  'bare',
  'minimum',
  'fed',
  'cloth',
  'made',
  'small',
  'talk',
  'never',
  'actual',
  'tri',
  'get',
  'know',
  'anyth',
  'beyond',
  'even',
  'learn',
  'sign',
  'languag',
  'talk',
  'read',
  'lip',
  'im',
  'often',
  'left',
  'convers',
  'never',
  'bother',
  'get',
  'know',
  'wife',
  'either',
  'think',
  'stupid',
  'incap',
  'anyth',
  'cant',
  'hear',
  'still',
  'treat',
  'us',
  'like',
  'children',
  'hate',
  'especi',
  'wife',
  'purpos',
  'visit',
  'sinc',
  'success',
  'career',
  'wife',
  'weve',
  'complet',
  'sinc',
  'colleg',
  'healthi',
  'bank',
  'account',
  'travel',
  'lot',
  'readi',
  'buy',
  'nice',
  'hous',
  'wait',
  'hous',
  'market',
  'cool',
  'despit',
  'famili',
  'think',
  'wife',
  'famili',
  'take',
  'care',
  'us',
  'ie',
  'help',
  'financi',
  'manag',
  'financ',
  'walk',
  'us',
  'everyday',
  'task',
  'like',
  'buy',
  'groceri',
  'pay',
  'bill',
  'believ',
  'intellig',
  'perfectli',
  'capabl',
  'peopl',
  'done',
  'well',
  'older',
  'brother',
  'deaf',
  'close',
  'whole',
  'famili',
  'life',
  'togeth',
  'work',
  'odd',
  'job',
  'unstabl',
  'relationship',
  'regularli',
  'mooch',
  'peopl',
  'yet',
  'famili',
  'still',
  'rever',
  'smart',
  'capabl',
  'person',
  'narcissist',
  'alway',
  'treat',
  'poorli',
  'famili',
  'enabl',
  'bad',
  'behavior',
  'anoth',
  'reason',
  'keep',
  'arm',
  'length',
  'hope',
  'ive',
  'given',
  'enough',
  'context',
  'issu',
  'wife',
  '-year-old',
  'daughter',
  'wife',
  'pregnant',
  'decid',
  'want',
  'famili',
  'daughter',
  'life',
  'healthi',
  'around',
  'peopl',
  'constantli',
  'disrespect',
  'parent',
  'turn',
  'deaf',
  'treat',
  'respect',
  'either',
  'one',
  'famili',
  'keep',
  'touch',
  'anyway',
  'see',
  'reason',
  'volunt',
  'inform',
  'never',
  'told',
  'daughter',
  'keep',
  'social',
  'media',
  'visit',
  'sinc',
  'born',
  'stay',
  'home',
  'wife',
  'brother',
  'somehow',
  'found',
  'daughter',
  'exist',
  'week',
  'ago',
  'whole',
  'famili',
  'upset',
  'blame',
  'wife',
  'think',
  'control',
  'true',
  'accus',
  'deni',
  'daughter',
  'famili',
  'couldv',
  'help',
  'rais',
  'mani',
  'differ',
  'way',
  'may',
  'point',
  'im',
  'start',
  'wonder',
  'wife',
  'selfish',
  'keep',
  'daughter',
  'big',
  'famili',
  'full',
  'cousin',
  'age',
  'hang-up',
  'aita',
  'wife_live',
  'live_across',
  'across_countri',
  'countri_famili',
  'famili_visit',
  'visit_wed',
  'wed_funer',
  'funer_big',
  'big_family-rel',
  'family-rel_event',
  'event_wife',
  'wife_deaf',
  'deaf_ive',
  'ive_never',
  'never_close',
  'close_anyon',
  'anyon_famili',
  'famili_grandpar',
  'grandpar_cousin',
  'cousin_aunt',
  'aunt_uncl',
  'uncl_brother',
  'brother_father',
  'father_singl',
  'singl_dad',
  'dad_never',
  'never_bother',
  'bother_look',
  'look_past',
  'past_disabl',
  'disabl_grow',
  'grow_bare',
  'bare_minimum',
  'minimum_fed',
  'fed_cloth',
  'cloth_made',
  'made_small',
  'small_talk',
  'talk_never',
  'never_actual',
  'actual_tri',
  'tri_get',
  'get_know',
  'know_anyth',
  'anyth_beyond',
  'beyond_even',
  'even_learn',
  'learn_sign',
  'sign_languag',
  'languag_talk',
  'talk_read',
  'read_lip',
  'lip_im',
  'im_often',
  'often_left',
  'left_convers',
  'convers_never',
  'never_bother',
  'bother_get',
  'get_know',
  'know_wife',
  'wife_either',
  'either_think',
  'think_stupid',
  'stupid_incap',
  'incap_anyth',
  'anyth_cant',
  'cant_hear',
  'hear_still',
  'still_treat',
  'treat_us',
  'us_like',
  'like_children',
  'children_hate',
  'hate_especi',
  'especi_wife',
  'wife_purpos',
  'purpos_visit',
  'visit_sinc',
  'sinc_success',
  'success_career',
  'career_wife',
  'wife_weve',
  'weve_complet',
  'complet_sinc',
  'sinc_colleg',
  'colleg_healthi',
  'healthi_bank',
  'bank_account',
  'account_travel',
  'travel_lot',
  'lot_readi',
  'readi_buy',
  'buy_nice',
  'nice_hous',
  'hous_wait',
  'wait_hous',
  'hous_market',
  'market_cool',
  'cool_despit',
  'despit_famili',
  'famili_think',
  'think_wife',
  'wife_famili',
  'famili_take',
  'take_care',
  'care_us',
  'us_ie',
  'ie_help',
  'help_financi',
  'financi_manag',
  'manag_financ',
  'financ_walk',
  'walk_us',
  'us_everyday',
  'everyday_task',
  'task_like',
  'like_buy',
  'buy_groceri',
  'groceri_pay',
  'pay_bill',
  'bill_believ',
  'believ_intellig',
  'intellig_perfectli',
  'perfectli_capabl',
  'capabl_peopl',
  'peopl_done',
  'done_well',
  'well_older',
  'older_brother',
  'brother_deaf',
  'deaf_close',
  'close_whole',
  'whole_famili',
  'famili_life',
  'life_togeth',
  'togeth_work',
  'work_odd',
  'odd_job',
  'job_unstabl',
  'unstabl_relationship',
  'relationship_regularli',
  'regularli_mooch',
  'mooch_peopl',
  'peopl_yet',
  'yet_famili',
  'famili_still',
  'still_rever',
  'rever_smart',
  'smart_capabl',
  'capabl_person',
  'person_narcissist',
  'narcissist_alway',
  'alway_treat',
  'treat_poorli',
  'poorli_famili',
  'famili_enabl',
  'enabl_bad',
  'bad_behavior',
  'behavior_anoth',
  'anoth_reason',
  'reason_keep',
  'keep_arm',
  'arm_length',
  'length_hope',
  'hope_ive',
  'ive_given',
  'given_enough',
  'enough_context',
  'context_issu',
  'issu_wife',
  'wife_-year-old',
  '-year-old_daughter',
  'daughter_wife',
  'wife_pregnant',
  'pregnant_decid',
  'decid_want',
  'want_famili',
  'famili_daughter',
  'daughter_life',
  'life_healthi',
  'healthi_around',
  'around_peopl',
  'peopl_constantli',
  'constantli_disrespect',
  'disrespect_parent',
  'parent_turn',
  'turn_deaf',
  'deaf_treat',
  'treat_respect',
  'respect_either',
  'either_one',
  'one_famili',
  'famili_keep',
  'keep_touch',
  'touch_anyway',
  'anyway_see',
  'see_reason',
  'reason_volunt',
  'volunt_inform',
  'inform_never',
  'never_told',
  'told_daughter',
  'daughter_keep',
  'keep_social',
  'social_media',
  'media_visit',
  'visit_sinc',
  'sinc_born',
  'born_stay',
  'stay_home',
  'home_wife',
  'wife_brother',
  'brother_somehow',
  'somehow_found',
  'found_daughter',
  'daughter_exist',
  'exist_week',
  'week_ago',
  'ago_whole',
  'whole_famili',
  'famili_upset',
  'upset_blame',
  'blame_wife',
  'wife_think',
  'think_control',
  'control_true',
  'true_accus',
  'accus_deni',
  'deni_daughter',
  'daughter_famili',
  'famili_couldv',
  'couldv_help',
  'help_rais',
  'rais_mani',
  'mani_differ',
  'differ_way',
  'way_may',
  'may_point',
  'point_im',
  'im_start',
  'start_wonder',
  'wonder_wife',
  'wife_selfish',
  'selfish_keep',
  'keep_daughter',
  'daughter_big',
  'big_famili',
  'famili_full',
  'full_cousin',
  'cousin_age',
  'age_hang-up',
  'hang-up_aita',
  'wife_live_across',
  'live_across_countri',
  'across_countri_famili',
  'countri_famili_visit',
  'famili_visit_wed',
  'visit_wed_funer',
  'wed_funer_big',
  'funer_big_family-rel',
  'big_family-rel_event',
  'family-rel_event_wife',
  'event_wife_deaf',
  'wife_deaf_ive',
  'deaf_ive_never',
  'ive_never_close',
  'never_close_anyon',
  'close_anyon_famili',
  'anyon_famili_grandpar',
  'famili_grandpar_cousin',
  'grandpar_cousin_aunt',
  'cousin_aunt_uncl',
  'aunt_uncl_brother',
  'uncl_brother_father',
  'brother_father_singl',
  'father_singl_dad',
  'singl_dad_never',
  'dad_never_bother',
  'never_bother_look',
  'bother_look_past',
  'look_past_disabl',
  'past_disabl_grow',
  'disabl_grow_bare',
  'grow_bare_minimum',
  'bare_minimum_fed',
  'minimum_fed_cloth',
  'fed_cloth_made',
  'cloth_made_small',
  'made_small_talk',
  'small_talk_never',
  'talk_never_actual',
  'never_actual_tri',
  'actual_tri_get',
  'tri_get_know',
  'get_know_anyth',
  'know_anyth_beyond',
  'anyth_beyond_even',
  'beyond_even_learn',
  'even_learn_sign',
  'learn_sign_languag',
  'sign_languag_talk',
  'languag_talk_read',
  'talk_read_lip',
  'read_lip_im',
  'lip_im_often',
  'im_often_left',
  'often_left_convers',
  'left_convers_never',
  'convers_never_bother',
  'never_bother_get',
  'bother_get_know',
  'get_know_wife',
  'know_wife_either',
  'wife_either_think',
  'either_think_stupid',
  'think_stupid_incap',
  'stupid_incap_anyth',
  'incap_anyth_cant',
  'anyth_cant_hear',
  'cant_hear_still',
  'hear_still_treat',
  'still_treat_us',
  'treat_us_like',
  'us_like_children',
  'like_children_hate',
  'children_hate_especi',
  'hate_especi_wife',
  'especi_wife_purpos',
  'wife_purpos_visit',
  'purpos_visit_sinc',
  'visit_sinc_success',
  'sinc_success_career',
  'success_career_wife',
  'career_wife_weve',
  'wife_weve_complet',
  'weve_complet_sinc',
  'complet_sinc_colleg',
  'sinc_colleg_healthi',
  'colleg_healthi_bank',
  'healthi_bank_account',
  'bank_account_travel',
  'account_travel_lot',
  'travel_lot_readi',
  'lot_readi_buy',
  'readi_buy_nice',
  'buy_nice_hous',
  'nice_hous_wait',
  'hous_wait_hous',
  'wait_hous_market',
  'hous_market_cool',
  'market_cool_despit',
  'cool_despit_famili',
  'despit_famili_think',
  'famili_think_wife',
  'think_wife_famili',
  'wife_famili_take',
  'famili_take_care',
  'take_care_us',
  'care_us_ie',
  'us_ie_help',
  'ie_help_financi',
  'help_financi_manag',
  'financi_manag_financ',
  'manag_financ_walk',
  'financ_walk_us',
  'walk_us_everyday',
  'us_everyday_task',
  'everyday_task_like',
  'task_like_buy',
  'like_buy_groceri',
  'buy_groceri_pay',
  'groceri_pay_bill',
  'pay_bill_believ',
  'bill_believ_intellig',
  'believ_intellig_perfectli',
  'intellig_perfectli_capabl',
  'perfectli_capabl_peopl',
  'capabl_peopl_done',
  'peopl_done_well',
  'done_well_older',
  'well_older_brother',
  'older_brother_deaf',
  'brother_deaf_close',
  'deaf_close_whole',
  'close_whole_famili',
  'whole_famili_life',
  'famili_life_togeth',
  'life_togeth_work',
  'togeth_work_odd',
  'work_odd_job',
  'odd_job_unstabl',
  'job_unstabl_relationship',
  'unstabl_relationship_regularli',
  'relationship_regularli_mooch',
  'regularli_mooch_peopl',
  'mooch_peopl_yet',
  'peopl_yet_famili',
  'yet_famili_still',
  'famili_still_rever',
  'still_rever_smart',
  'rever_smart_capabl',
  'smart_capabl_person',
  'capabl_person_narcissist',
  'person_narcissist_alway',
  'narcissist_alway_treat',
  'alway_treat_poorli',
  'treat_poorli_famili',
  'poorli_famili_enabl',
  'famili_enabl_bad',
  'enabl_bad_behavior',
  'bad_behavior_anoth',
  'behavior_anoth_reason',
  'anoth_reason_keep',
  'reason_keep_arm',
  'keep_arm_length',
  'arm_length_hope',
  'length_hope_ive',
  'hope_ive_given',
  'ive_given_enough',
  'given_enough_context',
  'enough_context_issu',
  'context_issu_wife',
  'issu_wife_-year-old',
  'wife_-year-old_daughter',
  '-year-old_daughter_wife',
  'daughter_wife_pregnant',
  'wife_pregnant_decid',
  'pregnant_decid_want',
  'decid_want_famili',
  'want_famili_daughter',
  'famili_daughter_life',
  'daughter_life_healthi',
  'life_healthi_around',
  'healthi_around_peopl',
  'around_peopl_constantli',
  'peopl_constantli_disrespect',
  'constantli_disrespect_parent',
  'disrespect_parent_turn',
  'parent_turn_deaf',
  'turn_deaf_treat',
  'deaf_treat_respect',
  'treat_respect_either',
  'respect_either_one',
  'either_one_famili',
  'one_famili_keep',
  'famili_keep_touch',
  'keep_touch_anyway',
  'touch_anyway_see',
  'anyway_see_reason',
  'see_reason_volunt',
  'reason_volunt_inform',
  'volunt_inform_never',
  'inform_never_told',
  'never_told_daughter',
  'told_daughter_keep',
  'daughter_keep_social',
  'keep_social_media',
  'social_media_visit',
  'media_visit_sinc',
  'visit_sinc_born',
  'sinc_born_stay',
  'born_stay_home',
  'stay_home_wife',
  'home_wife_brother',
  'wife_brother_somehow',
  'brother_somehow_found',
  'somehow_found_daughter',
  'found_daughter_exist',
  'daughter_exist_week',
  'exist_week_ago',
  'week_ago_whole',
  'ago_whole_famili',
  'whole_famili_upset',
  'famili_upset_blame',
  'upset_blame_wife',
  'blame_wife_think',
  'wife_think_control',
  'think_control_true',
  'control_true_accus',
  'true_accus_deni',
  'accus_deni_daughter',
  'deni_daughter_famili',
  'daughter_famili_couldv',
  'famili_couldv_help',
  'couldv_help_rais',
  'help_rais_mani',
  'rais_mani_differ',
  'mani_differ_way',
  'differ_way_may',
  'way_may_point',
  'may_point_im',
  'point_im_start',
  'im_start_wonder',
  'start_wonder_wife',
  'wonder_wife_selfish',
  'wife_selfish_keep',
  'selfish_keep_daughter',
  'keep_daughter_big',
  'daughter_big_famili',
  'big_famili_full',
  'famili_full_cousin',
  'full_cousin_age',
  'cousin_age_hang-up',
  'age_hang-up_aita'],
 ['husband',
  'older',
  'sister',
  'mom',
  'three',
  'age',
  'sil',
  'allow',
  'lot',
  'behavior',
  'quit',
  'destruct',
  'messi',
  'kid',
  'fine',
  'hous',
  'least',
  'mine',
  'like',
  'husband',
  'told',
  'need',
  'make',
  'clear',
  'hous',
  'rule',
  'differ',
  'brush',
  'kid',
  'kick',
  'ball',
  'around',
  'insid',
  'break',
  'possess',
  'bounc',
  'furnitur',
  'shoe',
  'leav',
  'stain',
  'empti',
  'storag',
  'contain',
  'hous',
  'floor',
  'walk',
  'away',
  'want',
  'get',
  'leav',
  'rest',
  'husband',
  'step',
  'ask',
  'respons',
  'get',
  'back',
  'momdad',
  'awar',
  'true',
  'home',
  'put',
  'stuff',
  'go',
  'insid',
  'get',
  'anyway',
  'said',
  'shoe',
  'insid',
  'straight',
  'said',
  'also',
  'gotten',
  'ball',
  'take',
  'away',
  'play',
  'insid',
  'theyr',
  'il',
  'hous',
  'oldest',
  'even',
  'told',
  'fil',
  'fuck',
  'correct',
  'made',
  'decis',
  'husband',
  'want',
  'deal',
  'home',
  'without',
  'come',
  'sil',
  'attempt',
  'come',
  'kid',
  'husband',
  'away',
  'work',
  'told',
  'allow',
  'told',
  'speak',
  'husband',
  'find',
  'home',
  'visit',
  'allow',
  'piss',
  'husband',
  'told',
  'decid',
  'let',
  'anymor',
  'either',
  'im',
  'worst',
  'offend',
  'eye',
  'aita',
  'husband_older',
  'older_sister',
  'sister_mom',
  'mom_three',
  'three_age',
  'age_sil',
  'sil_allow',
  'allow_lot',
  'lot_behavior',
  'behavior_quit',
  'quit_destruct',
  'destruct_messi',
  'messi_kid',
  'kid_fine',
  'fine_hous',
  'hous_least',
  'least_mine',
  'mine_like',
  'like_husband',
  'husband_told',
  'told_need',
  'need_make',
  'make_clear',
  'clear_hous',
  'hous_rule',
  'rule_differ',
  'differ_brush',
  'brush_kid',
  'kid_kick',
  'kick_ball',
  'ball_around',
  'around_insid',
  'insid_break',
  'break_possess',
  'possess_bounc',
  'bounc_furnitur',
  'furnitur_shoe',
  'shoe_leav',
  'leav_stain',
  'stain_empti',
  'empti_storag',
  'storag_contain',
  'contain_hous',
  'hous_floor',
  'floor_walk',
  'walk_away',
  'away_want',
  'want_get',
  'get_leav',
  'leav_rest',
  'rest_husband',
  'husband_step',
  'step_ask',
  'ask_respons',
  'respons_get',
  'get_back',
  'back_momdad',
  'momdad_awar',
  'awar_true',
  'true_home',
  'home_put',
  'put_stuff',
  'stuff_go',
  'go_insid',
  'insid_get',
  'get_anyway',
  'anyway_said',
  'said_shoe',
  'shoe_insid',
  'insid_straight',
  'straight_said',
  'said_also',
  'also_gotten',
  'gotten_ball',
  'ball_take',
  'take_away',
  'away_play',
  'play_insid',
  'insid_theyr',
  'theyr_il',
  'il_hous',
  'hous_oldest',
  'oldest_even',
  'even_told',
  'told_fil',
  'fil_fuck',
  'fuck_correct',
  'correct_made',
  'made_decis',
  'decis_husband',
  'husband_want',
  'want_deal',
  'deal_home',
  'home_without',
  'without_come',
  'come_sil',
  'sil_attempt',
  'attempt_come',
  'come_kid',
  'kid_husband',
  'husband_away',
  'away_work',
  'work_told',
  'told_allow',
  'allow_told',
  'told_speak',
  'speak_husband',
  'husband_find',
  'find_home',
  'home_visit',
  'visit_allow',
  'allow_piss',
  'piss_husband',
  'husband_told',
  'told_decid',
  'decid_let',
  'let_anymor',
  'anymor_either',
  'either_im',
  'im_worst',
  'worst_offend',
  'offend_eye',
  'eye_aita',
  'husband_older_sister',
  'older_sister_mom',
  'sister_mom_three',
  'mom_three_age',
  'three_age_sil',
  'age_sil_allow',
  'sil_allow_lot',
  'allow_lot_behavior',
  'lot_behavior_quit',
  'behavior_quit_destruct',
  'quit_destruct_messi',
  'destruct_messi_kid',
  'messi_kid_fine',
  'kid_fine_hous',
  'fine_hous_least',
  'hous_least_mine',
  'least_mine_like',
  'mine_like_husband',
  'like_husband_told',
  'husband_told_need',
  'told_need_make',
  'need_make_clear',
  'make_clear_hous',
  'clear_hous_rule',
  'hous_rule_differ',
  'rule_differ_brush',
  'differ_brush_kid',
  'brush_kid_kick',
  'kid_kick_ball',
  'kick_ball_around',
  'ball_around_insid',
  'around_insid_break',
  'insid_break_possess',
  'break_possess_bounc',
  'possess_bounc_furnitur',
  'bounc_furnitur_shoe',
  'furnitur_shoe_leav',
  'shoe_leav_stain',
  'leav_stain_empti',
  'stain_empti_storag',
  'empti_storag_contain',
  'storag_contain_hous',
  'contain_hous_floor',
  'hous_floor_walk',
  'floor_walk_away',
  'walk_away_want',
  'away_want_get',
  'want_get_leav',
  'get_leav_rest',
  'leav_rest_husband',
  'rest_husband_step',
  'husband_step_ask',
  'step_ask_respons',
  'ask_respons_get',
  'respons_get_back',
  'get_back_momdad',
  'back_momdad_awar',
  'momdad_awar_true',
  'awar_true_home',
  'true_home_put',
  'home_put_stuff',
  'put_stuff_go',
  'stuff_go_insid',
  'go_insid_get',
  'insid_get_anyway',
  'get_anyway_said',
  'anyway_said_shoe',
  'said_shoe_insid',
  'shoe_insid_straight',
  'insid_straight_said',
  'straight_said_also',
  'said_also_gotten',
  'also_gotten_ball',
  'gotten_ball_take',
  'ball_take_away',
  'take_away_play',
  'away_play_insid',
  'play_insid_theyr',
  'insid_theyr_il',
  'theyr_il_hous',
  'il_hous_oldest',
  'hous_oldest_even',
  'oldest_even_told',
  'even_told_fil',
  'told_fil_fuck',
  'fil_fuck_correct',
  'fuck_correct_made',
  'correct_made_decis',
  'made_decis_husband',
  'decis_husband_want',
  'husband_want_deal',
  'want_deal_home',
  'deal_home_without',
  'home_without_come',
  'without_come_sil',
  'come_sil_attempt',
  'sil_attempt_come',
  'attempt_come_kid',
  'come_kid_husband',
  'kid_husband_away',
  'husband_away_work',
  'away_work_told',
  'work_told_allow',
  'told_allow_told',
  'allow_told_speak',
  'told_speak_husband',
  'speak_husband_find',
  'husband_find_home',
  'find_home_visit',
  'home_visit_allow',
  'visit_allow_piss',
  'allow_piss_husband',
  'piss_husband_told',
  'husband_told_decid',
  'told_decid_let',
  'decid_let_anymor',
  'let_anymor_either',
  'anymor_either_im',
  'either_im_worst',
  'im_worst_offend',
  'worst_offend_eye',
  'offend_eye_aita'],
 ['im',
  'pregnant',
  'due',
  'around',
  'time',
  'also',
  'like',
  'would',
  'never',
  'spend',
  'time',
  'outsid',
  'someth',
  'famili',
  'relat',
  'even',
  'im',
  'hang',
  'space',
  'babi',
  'shower',
  'organ',
  'cousin',
  'good',
  'friend',
  'well',
  'two',
  'close',
  'friend',
  'shower',
  'today',
  'actual',
  'stepsist',
  'nobodi',
  'offer',
  'throw',
  'shower',
  'week',
  'ago',
  'mom',
  'ask',
  'let',
  'share',
  'mine',
  'said',
  'stepsist',
  'ask',
  'throw',
  'one',
  'said',
  'yet',
  'close',
  'enough',
  'invit',
  'im',
  'go',
  'spend',
  'money',
  'throw',
  'one',
  'mom',
  'told',
  'nobodi',
  'none',
  'friend',
  'offer',
  'nobodi',
  'bio',
  'famili',
  'side',
  'offer',
  'either',
  'told',
  'mom',
  'fault',
  'nobodi',
  'point',
  'time',
  'ask',
  'peopl',
  'want',
  'support',
  'network',
  'outsid',
  'husband',
  'mom',
  'said',
  'sister',
  'repli',
  'lack',
  'support',
  'network',
  'babi',
  'shower',
  'problem',
  'context',
  'stepsist',
  'lost',
  'parent',
  'mom',
  'marri',
  'dad',
  'alway',
  'claim',
  'loss',
  'greater',
  'mine',
  'outright',
  'told',
  'right',
  'griev',
  'way',
  'griev',
  'mom',
  'made',
  'lie',
  'patern',
  'grandpar',
  'call',
  'unwant',
  'bastard',
  'jealou',
  'take',
  'spent',
  'time',
  'told',
  'cousin',
  'patern',
  'cousin',
  'treat',
  'like',
  'famili',
  'shed',
  'get',
  'troubl',
  'got',
  'found',
  'also',
  'kind',
  'person',
  'expect',
  'want',
  'would',
  'never',
  'reciproc',
  'dislik',
  'consid',
  'famili',
  'still',
  'call',
  'child',
  'mom',
  'husband',
  'even',
  'stepsist',
  'outrag',
  'would',
  'callou',
  'say',
  'care',
  'niec',
  'aita',
  'im_pregnant',
  'pregnant_due',
  'due_around',
  'around_time',
  'time_also',
  'also_like',
  'like_would',
  'would_never',
  'never_spend',
  'spend_time',
  'time_outsid',
  'outsid_someth',
  'someth_famili',
  'famili_relat',
  'relat_even',
  'even_im',
  'im_hang',
  'hang_space',
  'space_babi',
  'babi_shower',
  'shower_organ',
  'organ_cousin',
  'cousin_good',
  'good_friend',
  'friend_well',
  'well_two',
  'two_close',
  'close_friend',
  'friend_shower',
  'shower_today',
  'today_actual',
  'actual_stepsist',
  'stepsist_nobodi',
  'nobodi_offer',
  'offer_throw',
  'throw_shower',
  'shower_week',
  'week_ago',
  'ago_mom',
  'mom_ask',
  'ask_let',
  'let_share',
  'share_mine',
  'mine_said',
  'said_stepsist',
  'stepsist_ask',
  'ask_throw',
  'throw_one',
  'one_said',
  'said_yet',
  'yet_close',
  'close_enough',
  'enough_invit',
  'invit_im',
  'im_go',
  'go_spend',
  'spend_money',
  'money_throw',
  'throw_one',
  'one_mom',
  'mom_told',
  'told_nobodi',
  'nobodi_none',
  'none_friend',
  'friend_offer',
  'offer_nobodi',
  'nobodi_bio',
  'bio_famili',
  'famili_side',
  'side_offer',
  'offer_either',
  'either_told',
  'told_mom',
  'mom_fault',
  'fault_nobodi',
  'nobodi_point',
  'point_time',
  'time_ask',
  'ask_peopl',
  'peopl_want',
  'want_support',
  'support_network',
  'network_outsid',
  'outsid_husband',
  'husband_mom',
  'mom_said',
  'said_sister',
  'sister_repli',
  'repli_lack',
  'lack_support',
  'support_network',
  'network_babi',
  'babi_shower',
  'shower_problem',
  'problem_context',
  'context_stepsist',
  'stepsist_lost',
  'lost_parent',
  'parent_mom',
  'mom_marri',
  'marri_dad',
  'dad_alway',
  'alway_claim',
  'claim_loss',
  'loss_greater',
  'greater_mine',
  'mine_outright',
  'outright_told',
  'told_right',
  'right_griev',
  'griev_way',
  'way_griev',
  'griev_mom',
  'mom_made',
  'made_lie',
  'lie_patern',
  'patern_grandpar',
  'grandpar_call',
  'call_unwant',
  'unwant_bastard',
  'bastard_jealou',
  'jealou_take',
  'take_spent',
  'spent_time',
  'time_told',
  'told_cousin',
  'cousin_patern',
  'patern_cousin',
  'cousin_treat',
  'treat_like',
  'like_famili',
  'famili_shed',
  'shed_get',
  'get_troubl',
  'troubl_got',
  'got_found',
  'found_also',
  'also_kind',
  'kind_person',
  'person_expect',
  'expect_want',
  'want_would',
  'would_never',
  'never_reciproc',
  'reciproc_dislik',
  'dislik_consid',
  'consid_famili',
  'famili_still',
  'still_call',
  'call_child',
  'child_mom',
  'mom_husband',
  'husband_even',
  'even_stepsist',
  'stepsist_outrag',
  'outrag_would',
  'would_callou',
  'callou_say',
  'say_care',
  'care_niec',
  'niec_aita',
  'im_pregnant_due',
  'pregnant_due_around',
  'due_around_time',
  'around_time_also',
  'time_also_like',
  'also_like_would',
  'like_would_never',
  'would_never_spend',
  'never_spend_time',
  'spend_time_outsid',
  'time_outsid_someth',
  'outsid_someth_famili',
  'someth_famili_relat',
  'famili_relat_even',
  'relat_even_im',
  'even_im_hang',
  'im_hang_space',
  'hang_space_babi',
  'space_babi_shower',
  'babi_shower_organ',
  'shower_organ_cousin',
  'organ_cousin_good',
  'cousin_good_friend',
  'good_friend_well',
  'friend_well_two',
  'well_two_close',
  'two_close_friend',
  'close_friend_shower',
  'friend_shower_today',
  'shower_today_actual',
  'today_actual_stepsist',
  'actual_stepsist_nobodi',
  'stepsist_nobodi_offer',
  'nobodi_offer_throw',
  'offer_throw_shower',
  'throw_shower_week',
  'shower_week_ago',
  'week_ago_mom',
  'ago_mom_ask',
  'mom_ask_let',
  'ask_let_share',
  'let_share_mine',
  'share_mine_said',
  'mine_said_stepsist',
  'said_stepsist_ask',
  'stepsist_ask_throw',
  'ask_throw_one',
  'throw_one_said',
  'one_said_yet',
  'said_yet_close',
  'yet_close_enough',
  'close_enough_invit',
  'enough_invit_im',
  'invit_im_go',
  'im_go_spend',
  'go_spend_money',
  'spend_money_throw',
  'money_throw_one',
  'throw_one_mom',
  'one_mom_told',
  'mom_told_nobodi',
  'told_nobodi_none',
  'nobodi_none_friend',
  'none_friend_offer',
  'friend_offer_nobodi',
  'offer_nobodi_bio',
  'nobodi_bio_famili',
  'bio_famili_side',
  'famili_side_offer',
  'side_offer_either',
  'offer_either_told',
  'either_told_mom',
  'told_mom_fault',
  'mom_fault_nobodi',
  'fault_nobodi_point',
  'nobodi_point_time',
  'point_time_ask',
  'time_ask_peopl',
  'ask_peopl_want',
  'peopl_want_support',
  'want_support_network',
  'support_network_outsid',
  'network_outsid_husband',
  'outsid_husband_mom',
  'husband_mom_said',
  'mom_said_sister',
  'said_sister_repli',
  'sister_repli_lack',
  'repli_lack_support',
  'lack_support_network',
  'support_network_babi',
  'network_babi_shower',
  'babi_shower_problem',
  'shower_problem_context',
  'problem_context_stepsist',
  'context_stepsist_lost',
  'stepsist_lost_parent',
  'lost_parent_mom',
  'parent_mom_marri',
  'mom_marri_dad',
  'marri_dad_alway',
  'dad_alway_claim',
  'alway_claim_loss',
  'claim_loss_greater',
  'loss_greater_mine',
  'greater_mine_outright',
  'mine_outright_told',
  'outright_told_right',
  'told_right_griev',
  'right_griev_way',
  'griev_way_griev',
  'way_griev_mom',
  'griev_mom_made',
  'mom_made_lie',
  'made_lie_patern',
  'lie_patern_grandpar',
  'patern_grandpar_call',
  'grandpar_call_unwant',
  'call_unwant_bastard',
  'unwant_bastard_jealou',
  'bastard_jealou_take',
  'jealou_take_spent',
  'take_spent_time',
  'spent_time_told',
  'time_told_cousin',
  'told_cousin_patern',
  'cousin_patern_cousin',
  'patern_cousin_treat',
  'cousin_treat_like',
  'treat_like_famili',
  'like_famili_shed',
  'famili_shed_get',
  'shed_get_troubl',
  'get_troubl_got',
  'troubl_got_found',
  'got_found_also',
  'found_also_kind',
  'also_kind_person',
  'kind_person_expect',
  'person_expect_want',
  'expect_want_would',
  'want_would_never',
  'would_never_reciproc',
  'never_reciproc_dislik',
  'reciproc_dislik_consid',
  'dislik_consid_famili',
  'consid_famili_still',
  'famili_still_call',
  'still_call_child',
  'call_child_mom',
  'child_mom_husband',
  'mom_husband_even',
  'husband_even_stepsist',
  'even_stepsist_outrag',
  'stepsist_outrag_would',
  'outrag_would_callou',
  'would_callou_say',
  'callou_say_care',
  'say_care_niec',
  'care_niec_aita'],
 ['brother',
  'hugo',
  'hugo',
  'got',
  'then-girlfriend',
  'ami',
  'pregnant',
  'daughter',
  'ashley',
  'later',
  'got',
  'marri',
  'babi',
  'boy',
  'year',
  'ive',
  'becom',
  'close',
  'ashley',
  'im',
  'home',
  'live',
  'abroad',
  'take',
  'show',
  'shop',
  'hors',
  'ride',
  'etc',
  'also',
  'keep',
  'contact',
  'via',
  'text',
  'bright',
  'thought',
  'pleasur',
  'around',
  'ami',
  'never',
  'like',
  'mostli',
  'put',
  'asid',
  'ashley',
  'bf',
  'visit',
  'famili',
  'christma',
  'leav',
  'go',
  'ski',
  'arrang',
  'ashley',
  'come',
  'ski',
  'stay',
  'us',
  'new',
  'year',
  'ami',
  'keen',
  'idea',
  'relent',
  'ashley',
  'excit',
  'learn',
  'ski',
  'school',
  'friend',
  'took',
  'bf',
  'hire',
  'car',
  'pick',
  'ashley',
  'school',
  'friday',
  'excit',
  'sport',
  'car',
  'let',
  'friend',
  'sit',
  'take',
  'pictur',
  'dinner',
  'ask',
  'would',
  'drive',
  'chaperon',
  'friend',
  'go',
  'ice',
  'skate',
  'tuesday',
  'town',
  'hugo',
  'said',
  'probabl',
  'want',
  'look',
  'bunch',
  'kid',
  'ami',
  'alreadi',
  'plan',
  'chaperon',
  'ashley',
  'ignor',
  'beg',
  'chaperon',
  'realli',
  'mind',
  'ami',
  'look',
  'annoy',
  'said',
  'want',
  'mess',
  'establish',
  'plan',
  'ashley',
  'kept',
  'push',
  'said',
  'want',
  'ami',
  'come',
  'ami',
  'dress',
  'badli',
  'never',
  'fun',
  'embarrass',
  'hugo',
  'told',
  'apologis',
  'also',
  'kept',
  'insist',
  'true',
  'ami',
  'got',
  'teari',
  'hugo',
  'kept',
  'tell',
  'ashley',
  'shed',
  'upset',
  'mother',
  'made',
  'ashley',
  'angrier',
  'dug',
  'heel',
  'told',
  'allow',
  'go',
  'ice',
  'skate',
  'speak',
  'ami',
  'yesterday',
  'ami',
  'hugo',
  'came',
  'said',
  'want',
  'ashley',
  'come',
  'ski',
  'anymor',
  'ami',
  'feel',
  'like',
  'ashley',
  'need',
  'spend',
  'time',
  'famili',
  'hugo',
  'support',
  'ask',
  'would',
  'tell',
  'ashley',
  'bf',
  'chang',
  'plan',
  'go',
  'trip',
  'anymor',
  'ask',
  'said',
  'told',
  'ashley',
  'truth',
  'would',
  'blame',
  'ami',
  'would',
  'defeat',
  'point',
  'tri',
  'build',
  'bridg',
  'ashley',
  'said',
  'understand',
  'feel',
  'right',
  'lie',
  'ashley',
  'parent',
  'made',
  'decis',
  'need',
  'deal',
  'consequ',
  'push',
  'onto',
  'ami',
  'said',
  'care',
  'ashley',
  'would',
  'realis',
  'best',
  'fall',
  'sword',
  'rather',
  'alien',
  'mother',
  'said',
  'hugo',
  'said',
  'take',
  'wednesday',
  'think',
  'ashley',
  'still',
  'standoffish',
  'mother',
  'know',
  'find',
  'mother',
  'cancel',
  'ski',
  'trip',
  'get',
  'wors',
  'im',
  'wonder',
  'go',
  'along',
  'ami',
  'plan',
  'want',
  'best',
  'ashley',
  'aita',
  'edit',
  'add',
  'background',
  'ami',
  'ashley',
  'relationship',
  'comment',
  'elsewher',
  'lot',
  'come',
  'ami',
  'tri',
  'hard',
  'ashley',
  'friend',
  'ami',
  'young',
  'ashley',
  'quit',
  'isol',
  'care',
  'hugo',
  'work',
  'went',
  'uni',
  'cut',
  'parent',
  'time',
  'threw',
  'effort',
  'mum',
  'close',
  'ashley',
  'humanli',
  'possibl',
  'ashley',
  'explain',
  'becom',
  'suffoc',
  'tri',
  'forg',
  'circl',
  'feel',
  'like',
  'ami',
  'insist',
  'part',
  'also',
  'refus',
  'engag',
  'level',
  'second',
  'part',
  'parent',
  'pay',
  'ashley',
  'attend',
  'prestigi',
  'privat',
  'school',
  'hugo',
  'ami',
  'nowher',
  'near',
  'affluent',
  'famili',
  'ashley',
  'feel',
  'bit',
  'left',
  'part',
  'reason',
  'chip',
  'extra',
  'curricular',
  'activ',
  'fact',
  'alway',
  'feel',
  'like',
  'fit',
  'hard',
  'school',
  'full',
  'non-work',
  'rang',
  'roverbirkin',
  'mother',
  'either',
  'cool',
  'absent',
  'ami',
  'neither',
  'involv',
  'ashley',
  'find',
  'stifl',
  'want',
  'involv',
  'social',
  'life',
  'also',
  'opinion',
  'ashley',
  'tri',
  'get',
  'emot',
  'space',
  'mother',
  'way',
  'know',
  '-',
  'make',
  'want',
  'spend',
  'time',
  'ami',
  'respond',
  'request',
  'think',
  'resort',
  'mean',
  'obvious',
  'okay',
  'edit',
  'sinc',
  'ask',
  'lot',
  'ashley',
  'talk',
  'sinc',
  'dinner',
  'know',
  'think',
  'said',
  'said',
  'weve',
  'talk',
  'even',
  'said',
  'said',
  'said',
  'go',
  'ham',
  'tell',
  'entitledspoiltthrow',
  'kitchen',
  'sink',
  'know',
  'think',
  'wrong',
  'agre',
  'updat',
  'anyon',
  'interest',
  '-',
  'httpswwwredditcomramitheassholecommentsfwzupdate_my_brother_and_sil_asked_me_to_lie_to_mi',
  'brother_hugo',
  'hugo_hugo',
  'hugo_got',
  'got_then-girlfriend',
  'then-girlfriend_ami',
  'ami_pregnant',
  'pregnant_daughter',
  'daughter_ashley',
  'ashley_later',
  'later_got',
  'got_marri',
  'marri_babi',
  'babi_boy',
  'boy_year',
  'year_ive',
  'ive_becom',
  'becom_close',
  'close_ashley',
  'ashley_im',
  'im_home',
  'home_live',
  'live_abroad',
  'abroad_take',
  'take_show',
  'show_shop',
  'shop_hors',
  'hors_ride',
  'ride_etc',
  'etc_also',
  'also_keep',
  'keep_contact',
  'contact_via',
  'via_text',
  'text_bright',
  'bright_thought',
  'thought_pleasur',
  'pleasur_around',
  'around_ami',
  'ami_never',
  'never_like',
  'like_mostli',
  'mostli_put',
  'put_asid',
  'asid_ashley',
  'ashley_bf',
  'bf_visit',
  'visit_famili',
  'famili_christma',
  'christma_leav',
  'leav_go',
  'go_ski',
  'ski_arrang',
  'arrang_ashley',
  'ashley_come',
  'come_ski',
  'ski_stay',
  'stay_us',
  'us_new',
  'new_year',
  'year_ami',
  'ami_keen',
  'keen_idea',
  'idea_relent',
  'relent_ashley',
  'ashley_excit',
  'excit_learn',
  'learn_ski',
  'ski_school',
  'school_friend',
  'friend_took',
  'took_bf',
  'bf_hire',
  'hire_car',
  'car_pick',
  'pick_ashley',
  'ashley_school',
  'school_friday',
  'friday_excit',
  'excit_sport',
  'sport_car',
  'car_let',
  'let_friend',
  'friend_sit',
  'sit_take',
  'take_pictur',
  'pictur_dinner',
  'dinner_ask',
  'ask_would',
  'would_drive',
  'drive_chaperon',
  'chaperon_friend',
  'friend_go',
  'go_ice',
  'ice_skate',
  'skate_tuesday',
  'tuesday_town',
  'town_hugo',
  'hugo_said',
  'said_probabl',
  'probabl_want',
  'want_look',
  'look_bunch',
  'bunch_kid',
  'kid_ami',
  'ami_alreadi',
  'alreadi_plan',
  'plan_chaperon',
  'chaperon_ashley',
  'ashley_ignor',
  'ignor_beg',
  'beg_chaperon',
  'chaperon_realli',
  'realli_mind',
  'mind_ami',
  'ami_look',
  'look_annoy',
  'annoy_said',
  'said_want',
  'want_mess',
  'mess_establish',
  'establish_plan',
  'plan_ashley',
  'ashley_kept',
  'kept_push',
  'push_said',
  'said_want',
  'want_ami',
  'ami_come',
  'come_ami',
  'ami_dress',
  'dress_badli',
  'badli_never',
  'never_fun',
  'fun_embarrass',
  'embarrass_hugo',
  'hugo_told',
  'told_apologis',
  'apologis_also',
  'also_kept',
  'kept_insist',
  'insist_true',
  'true_ami',
  'ami_got',
  'got_teari',
  'teari_hugo',
  'hugo_kept',
  'kept_tell',
  'tell_ashley',
  'ashley_shed',
  'shed_upset',
  'upset_mother',
  'mother_made',
  'made_ashley',
  'ashley_angrier',
  'angrier_dug',
  'dug_heel',
  'heel_told',
  'told_allow',
  'allow_go',
  'go_ice',
  'ice_skate',
  'skate_speak',
  'speak_ami',
  'ami_yesterday',
  'yesterday_ami',
  'ami_hugo',
  'hugo_came',
  'came_said',
  'said_want',
  'want_ashley',
  'ashley_come',
  'come_ski',
  'ski_anymor',
  'anymor_ami',
  'ami_feel',
  'feel_like',
  'like_ashley',
  'ashley_need',
  'need_spend',
  'spend_time',
  'time_famili',
  'famili_hugo',
  'hugo_support',
  'support_ask',
  'ask_would',
  'would_tell',
  'tell_ashley',
  'ashley_bf',
  'bf_chang',
  'chang_plan',
  'plan_go',
  'go_trip',
  'trip_anymor',
  'anymor_ask',
  'ask_said',
  'said_told',
  'told_ashley',
  'ashley_truth',
  'truth_would',
  'would_blame',
  'blame_ami',
  'ami_would',
  'would_defeat',
  'defeat_point',
  'point_tri',
  'tri_build',
  'build_bridg',
  'bridg_ashley',
  'ashley_said',
  'said_understand',
  'understand_feel',
  'feel_right',
  'right_lie',
  'lie_ashley',
  'ashley_parent',
  'parent_made',
  'made_decis',
  'decis_need',
  'need_deal',
  'deal_consequ',
  'consequ_push',
  'push_onto',
  'onto_ami',
  'ami_said',
  'said_care',
  'care_ashley',
  'ashley_would',
  'would_realis',
  'realis_best',
  'best_fall',
  'fall_sword',
  'sword_rather',
  'rather_alien',
  'alien_mother',
  'mother_said',
  'said_hugo',
  'hugo_said',
  'said_take',
  'take_wednesday',
  'wednesday_think',
  'think_ashley',
  'ashley_still',
  'still_standoffish',
  'standoffish_mother',
  'mother_know',
  'know_find',
  'find_mother',
  'mother_cancel',
  'cancel_ski',
  'ski_trip',
  'trip_get',
  'get_wors',
  'wors_im',
  'im_wonder',
  'wonder_go',
  'go_along',
  'along_ami',
  'ami_plan',
  'plan_want',
  'want_best',
  'best_ashley',
  'ashley_aita',
  'aita_edit',
  'edit_add',
  'add_background',
  'background_ami',
  'ami_ashley',
  'ashley_relationship',
  'relationship_comment',
  'comment_elsewher',
  'elsewher_lot',
  'lot_come',
  'come_ami',
  'ami_tri',
  'tri_hard',
  'hard_ashley',
  'ashley_friend',
  'friend_ami',
  'ami_young',
  'young_ashley',
  'ashley_quit',
  'quit_isol',
  'isol_care',
  'care_hugo',
  'hugo_work',
  'work_went',
  'went_uni',
  'uni_cut',
  'cut_parent',
  'parent_time',
  'time_threw',
  'threw_effort',
  'effort_mum',
  'mum_close',
  'close_ashley',
  'ashley_humanli',
  'humanli_possibl',
  'possibl_ashley',
  'ashley_explain',
  'explain_becom',
  'becom_suffoc',
  'suffoc_tri',
  'tri_forg',
  'forg_circl',
  'circl_feel',
  'feel_like',
  'like_ami',
  'ami_insist',
  'insist_part',
  'part_also',
  'also_refus',
  'refus_engag',
  'engag_level',
  'level_second',
  'second_part',
  'part_parent',
  'parent_pay',
  'pay_ashley',
  'ashley_attend',
  'attend_prestigi',
  'prestigi_privat',
  'privat_school',
  'school_hugo',
  'hugo_ami',
  'ami_nowher',
  'nowher_near',
  'near_affluent',
  'affluent_famili',
  'famili_ashley',
  'ashley_feel',
  'feel_bit',
  'bit_left',
  'left_part',
  'part_reason',
  'reason_chip',
  'chip_extra',
  'extra_curricular',
  'curricular_activ',
  'activ_fact',
  'fact_alway',
  'alway_feel',
  'feel_like',
  'like_fit',
  'fit_hard',
  'hard_school',
  'school_full',
  'full_non-work',
  'non-work_rang',
  'rang_roverbirkin',
  'roverbirkin_mother',
  'mother_either',
  'either_cool',
  'cool_absent',
  'absent_ami',
  'ami_neither',
  'neither_involv',
  'involv_ashley',
  'ashley_find',
  'find_stifl',
  'stifl_want',
  'want_involv',
  'involv_social',
  'social_life',
  'life_also',
  'also_opinion',
  'opinion_ashley',
  'ashley_tri',
  'tri_get',
  'get_emot',
  'emot_space',
  'space_mother',
  'mother_way',
  'way_know',
  'know_-',
  '-_make',
  'make_want',
  'want_spend',
  'spend_time',
  'time_ami',
  'ami_respond',
  'respond_request',
  'request_think',
  'think_resort',
  'resort_mean',
  'mean_obvious',
  'obvious_okay',
  'okay_edit',
  'edit_sinc',
  'sinc_ask',
  'ask_lot',
  'lot_ashley',
  'ashley_talk',
  'talk_sinc',
  'sinc_dinner',
  'dinner_know',
  'know_think',
  'think_said',
  'said_said',
  'said_weve',
  'weve_talk',
  'talk_even',
  'even_said',
  'said_said',
  'said_said',
  'said_go',
  'go_ham',
  'ham_tell',
  'tell_entitledspoiltthrow',
  'entitledspoiltthrow_kitchen',
  'kitchen_sink',
  'sink_know',
  'know_think',
  'think_wrong',
  'wrong_agre',
  'agre_updat',
  'updat_anyon',
  'anyon_interest',
  'interest_-',
  '-_httpswwwredditcomramitheassholecommentsfwzupdate_my_brother_and_sil_asked_me_to_lie_to_mi',
  'brother_hugo_hugo',
  'hugo_hugo_got',
  'hugo_got_then-girlfriend',
  'got_then-girlfriend_ami',
  'then-girlfriend_ami_pregnant',
  'ami_pregnant_daughter',
  'pregnant_daughter_ashley',
  'daughter_ashley_later',
  'ashley_later_got',
  'later_got_marri',
  'got_marri_babi',
  'marri_babi_boy',
  'babi_boy_year',
  'boy_year_ive',
  'year_ive_becom',
  'ive_becom_close',
  'becom_close_ashley',
  'close_ashley_im',
  'ashley_im_home',
  'im_home_live',
  'home_live_abroad',
  'live_abroad_take',
  'abroad_take_show',
  'take_show_shop',
  'show_shop_hors',
  'shop_hors_ride',
  'hors_ride_etc',
  'ride_etc_also',
  'etc_also_keep',
  'also_keep_contact',
  'keep_contact_via',
  'contact_via_text',
  'via_text_bright',
  'text_bright_thought',
  'bright_thought_pleasur',
  'thought_pleasur_around',
  'pleasur_around_ami',
  'around_ami_never',
  'ami_never_like',
  'never_like_mostli',
  'like_mostli_put',
  'mostli_put_asid',
  'put_asid_ashley',
  'asid_ashley_bf',
  'ashley_bf_visit',
  'bf_visit_famili',
  'visit_famili_christma',
  'famili_christma_leav',
  'christma_leav_go',
  'leav_go_ski',
  'go_ski_arrang',
  'ski_arrang_ashley',
  'arrang_ashley_come',
  'ashley_come_ski',
  'come_ski_stay',
  'ski_stay_us',
  'stay_us_new',
  'us_new_year',
  'new_year_ami',
  'year_ami_keen',
  'ami_keen_idea',
  'keen_idea_relent',
  'idea_relent_ashley',
  'relent_ashley_excit',
  'ashley_excit_learn',
  'excit_learn_ski',
  'learn_ski_school',
  'ski_school_friend',
  'school_friend_took',
  'friend_took_bf',
  'took_bf_hire',
  'bf_hire_car',
  'hire_car_pick',
  'car_pick_ashley',
  'pick_ashley_school',
  'ashley_school_friday',
  'school_friday_excit',
  'friday_excit_sport',
  'excit_sport_car',
  'sport_car_let',
  'car_let_friend',
  'let_friend_sit',
  'friend_sit_take',
  'sit_take_pictur',
  'take_pictur_dinner',
  'pictur_dinner_ask',
  'dinner_ask_would',
  'ask_would_drive',
  'would_drive_chaperon',
  'drive_chaperon_friend',
  'chaperon_friend_go',
  'friend_go_ice',
  'go_ice_skate',
  'ice_skate_tuesday',
  'skate_tuesday_town',
  'tuesday_town_hugo',
  'town_hugo_said',
  'hugo_said_probabl',
  'said_probabl_want',
  'probabl_want_look',
  'want_look_bunch',
  'look_bunch_kid',
  'bunch_kid_ami',
  'kid_ami_alreadi',
  'ami_alreadi_plan',
  'alreadi_plan_chaperon',
  'plan_chaperon_ashley',
  'chaperon_ashley_ignor',
  'ashley_ignor_beg',
  'ignor_beg_chaperon',
  'beg_chaperon_realli',
  'chaperon_realli_mind',
  'realli_mind_ami',
  'mind_ami_look',
  'ami_look_annoy',
  'look_annoy_said',
  'annoy_said_want',
  'said_want_mess',
  'want_mess_establish',
  'mess_establish_plan',
  'establish_plan_ashley',
  'plan_ashley_kept',
  'ashley_kept_push',
  'kept_push_said',
  'push_said_want',
  'said_want_ami',
  'want_ami_come',
  'ami_come_ami',
  'come_ami_dress',
  'ami_dress_badli',
  'dress_badli_never',
  'badli_never_fun',
  'never_fun_embarrass',
  'fun_embarrass_hugo',
  'embarrass_hugo_told',
  'hugo_told_apologis',
  'told_apologis_also',
  'apologis_also_kept',
  'also_kept_insist',
  'kept_insist_true',
  'insist_true_ami',
  'true_ami_got',
  'ami_got_teari',
  'got_teari_hugo',
  'teari_hugo_kept',
  'hugo_kept_tell',
  'kept_tell_ashley',
  'tell_ashley_shed',
  'ashley_shed_upset',
  'shed_upset_mother',
  'upset_mother_made',
  'mother_made_ashley',
  'made_ashley_angrier',
  'ashley_angrier_dug',
  'angrier_dug_heel',
  'dug_heel_told',
  'heel_told_allow',
  'told_allow_go',
  'allow_go_ice',
  'go_ice_skate',
  'ice_skate_speak',
  ...],
 ['im',
  'emerg',
  'medic',
  'dispatch',
  'basic',
  'mean',
  'call',
  'emerg',
  'need',
  'ambul',
  'chanc',
  'itll',
  'go',
  'reward',
  'stress',
  'job',
  'call',
  'ive',
  'handl',
  'give',
  'nightmar',
  'chang',
  'job',
  'hour',
  'howev',
  'extrem',
  'unsoci',
  'sometim',
  'get',
  'home',
  'routin',
  'get',
  'home',
  'ill',
  'quickli',
  'chang',
  'go',
  'hour',
  'long',
  'jog',
  'listen',
  'podcast',
  'jog',
  'take',
  'boyfriend',
  'bakeri',
  'share',
  'meal',
  'breakfast',
  'dinner',
  'day',
  'work',
  'kind',
  'shift',
  'time',
  'see',
  'help',
  'set',
  'littl',
  'head',
  'back',
  'home',
  'sleep',
  'noth',
  'abnorm',
  'ever',
  'happen',
  'new',
  'neighbour',
  'recent',
  'move',
  'cul-de-sac',
  'woman',
  'late',
  'earli',
  'im',
  'sure',
  'know',
  'neighbour',
  'well',
  'often',
  'abil',
  'socialis',
  'due',
  'work',
  'hour',
  'one',
  'recent',
  'jog',
  'paus',
  'way',
  'cul-de-sac',
  'pavement',
  'near',
  'home',
  'pick',
  'podcast',
  'phone',
  'come',
  'shout',
  'near',
  'home',
  'better',
  'get',
  'call',
  'polic',
  'quickli',
  'apologis',
  'explain',
  'im',
  'neighbour',
  'jog',
  'believ',
  'sight',
  'go',
  'unlock',
  'front',
  'door',
  'prove',
  'ye',
  'live',
  'kept',
  'shout',
  'polic',
  'stop',
  'retreat',
  'back',
  'home',
  'continu',
  'jog',
  'except',
  'watch',
  'next',
  'time',
  'jog',
  'next',
  'next',
  'time',
  'call',
  'vagu',
  'threat',
  'polic',
  'time',
  'scare',
  'children',
  'alway',
  'time',
  'admit',
  'id',
  'final',
  'enough',
  'laugh',
  'im',
  'foot',
  'tall',
  'woman',
  'look',
  'like',
  'solid',
  'breez',
  'would',
  'blow',
  'also',
  'told',
  'mind',
  'fuck',
  'busi',
  'seem',
  'like',
  'weirdo',
  'alway',
  'watch',
  'go',
  'jog',
  'hour',
  'also',
  'told',
  'call',
  'say',
  'co-work',
  'im',
  'proud',
  'lost',
  'temper',
  'get',
  'alway',
  'boyfriend',
  'suggest',
  'share',
  'meal',
  'day',
  'mayb',
  'anxieti',
  'see',
  'someon',
  'outsid',
  'earli',
  'put',
  'edg',
  'handl',
  'poorli',
  'admit',
  'felt',
  'guilti',
  'id',
  'thought',
  'jog',
  'hour',
  'shift',
  'harmless',
  'im',
  'use',
  'weird',
  'hour',
  'asshol',
  'jog',
  'time',
  'would',
  'freak',
  'one',
  'neighbour',
  'im_emerg',
  'emerg_medic',
  'medic_dispatch',
  'dispatch_basic',
  'basic_mean',
  'mean_call',
  'call_emerg',
  'emerg_need',
  'need_ambul',
  'ambul_chanc',
  'chanc_itll',
  'itll_go',
  'go_reward',
  'reward_stress',
  'stress_job',
  'job_call',
  'call_ive',
  'ive_handl',
  'handl_give',
  'give_nightmar',
  'nightmar_chang',
  'chang_job',
  'job_hour',
  'hour_howev',
  'howev_extrem',
  'extrem_unsoci',
  'unsoci_sometim',
  'sometim_get',
  'get_home',
  'home_routin',
  'routin_get',
  'get_home',
  'home_ill',
  'ill_quickli',
  'quickli_chang',
  'chang_go',
  'go_hour',
  'hour_long',
  'long_jog',
  'jog_listen',
  'listen_podcast',
  'podcast_jog',
  'jog_take',
  'take_boyfriend',
  'boyfriend_bakeri',
  'bakeri_share',
  'share_meal',
  'meal_breakfast',
  'breakfast_dinner',
  'dinner_day',
  'day_work',
  'work_kind',
  'kind_shift',
  'shift_time',
  'time_see',
  'see_help',
  'help_set',
  'set_littl',
  'littl_head',
  'head_back',
  'back_home',
  'home_sleep',
  'sleep_noth',
  'noth_abnorm',
  'abnorm_ever',
  'ever_happen',
  'happen_new',
  'new_neighbour',
  'neighbour_recent',
  'recent_move',
  'move_cul-de-sac',
  'cul-de-sac_woman',
  'woman_late',
  'late_earli',
  'earli_im',
  'im_sure',
  'sure_know',
  'know_neighbour',
  'neighbour_well',
  'well_often',
  'often_abil',
  'abil_socialis',
  'socialis_due',
  'due_work',
  'work_hour',
  'hour_one',
  'one_recent',
  'recent_jog',
  'jog_paus',
  'paus_way',
  'way_cul-de-sac',
  'cul-de-sac_pavement',
  'pavement_near',
  'near_home',
  'home_pick',
  'pick_podcast',
  'podcast_phone',
  'phone_come',
  'come_shout',
  'shout_near',
  'near_home',
  'home_better',
  'better_get',
  'get_call',
  'call_polic',
  'polic_quickli',
  'quickli_apologis',
  'apologis_explain',
  'explain_im',
  'im_neighbour',
  'neighbour_jog',
  'jog_believ',
  'believ_sight',
  'sight_go',
  'go_unlock',
  'unlock_front',
  'front_door',
  'door_prove',
  'prove_ye',
  'ye_live',
  'live_kept',
  'kept_shout',
  'shout_polic',
  'polic_stop',
  'stop_retreat',
  'retreat_back',
  'back_home',
  'home_continu',
  'continu_jog',
  'jog_except',
  'except_watch',
  'watch_next',
  'next_time',
  'time_jog',
  'jog_next',
  'next_next',
  'next_time',
  'time_call',
  'call_vagu',
  'vagu_threat',
  'threat_polic',
  'polic_time',
  'time_scare',
  'scare_children',
  'children_alway',
  'alway_time',
  'time_admit',
  'admit_id',
  'id_final',
  'final_enough',
  'enough_laugh',
  'laugh_im',
  'im_foot',
  'foot_tall',
  'tall_woman',
  'woman_look',
  'look_like',
  'like_solid',
  'solid_breez',
  'breez_would',
  'would_blow',
  'blow_also',
  'also_told',
  'told_mind',
  'mind_fuck',
  'fuck_busi',
  'busi_seem',
  'seem_like',
  'like_weirdo',
  'weirdo_alway',
  'alway_watch',
  'watch_go',
  'go_jog',
  'jog_hour',
  'hour_also',
  'also_told',
  'told_call',
  'call_say',
  'say_co-work',
  'co-work_im',
  'im_proud',
  'proud_lost',
  'lost_temper',
  'temper_get',
  'get_alway',
  'alway_boyfriend',
  'boyfriend_suggest',
  'suggest_share',
  'share_meal',
  'meal_day',
  'day_mayb',
  'mayb_anxieti',
  'anxieti_see',
  'see_someon',
  'someon_outsid',
  'outsid_earli',
  'earli_put',
  'put_edg',
  'edg_handl',
  'handl_poorli',
  'poorli_admit',
  'admit_felt',
  'felt_guilti',
  'guilti_id',
  'id_thought',
  'thought_jog',
  'jog_hour',
  'hour_shift',
  'shift_harmless',
  'harmless_im',
  'im_use',
  'use_weird',
  'weird_hour',
  'hour_asshol',
  'asshol_jog',
  'jog_time',
  'time_would',
  'would_freak',
  'freak_one',
  'one_neighbour',
  'im_emerg_medic',
  'emerg_medic_dispatch',
  'medic_dispatch_basic',
  'dispatch_basic_mean',
  'basic_mean_call',
  'mean_call_emerg',
  'call_emerg_need',
  'emerg_need_ambul',
  'need_ambul_chanc',
  'ambul_chanc_itll',
  'chanc_itll_go',
  'itll_go_reward',
  'go_reward_stress',
  'reward_stress_job',
  'stress_job_call',
  'job_call_ive',
  'call_ive_handl',
  'ive_handl_give',
  'handl_give_nightmar',
  'give_nightmar_chang',
  'nightmar_chang_job',
  'chang_job_hour',
  'job_hour_howev',
  'hour_howev_extrem',
  'howev_extrem_unsoci',
  'extrem_unsoci_sometim',
  'unsoci_sometim_get',
  'sometim_get_home',
  'get_home_routin',
  'home_routin_get',
  'routin_get_home',
  'get_home_ill',
  'home_ill_quickli',
  'ill_quickli_chang',
  'quickli_chang_go',
  'chang_go_hour',
  'go_hour_long',
  'hour_long_jog',
  'long_jog_listen',
  'jog_listen_podcast',
  'listen_podcast_jog',
  'podcast_jog_take',
  'jog_take_boyfriend',
  'take_boyfriend_bakeri',
  'boyfriend_bakeri_share',
  'bakeri_share_meal',
  'share_meal_breakfast',
  'meal_breakfast_dinner',
  'breakfast_dinner_day',
  'dinner_day_work',
  'day_work_kind',
  'work_kind_shift',
  'kind_shift_time',
  'shift_time_see',
  'time_see_help',
  'see_help_set',
  'help_set_littl',
  'set_littl_head',
  'littl_head_back',
  'head_back_home',
  'back_home_sleep',
  'home_sleep_noth',
  'sleep_noth_abnorm',
  'noth_abnorm_ever',
  'abnorm_ever_happen',
  'ever_happen_new',
  'happen_new_neighbour',
  'new_neighbour_recent',
  'neighbour_recent_move',
  'recent_move_cul-de-sac',
  'move_cul-de-sac_woman',
  'cul-de-sac_woman_late',
  'woman_late_earli',
  'late_earli_im',
  'earli_im_sure',
  'im_sure_know',
  'sure_know_neighbour',
  'know_neighbour_well',
  'neighbour_well_often',
  'well_often_abil',
  'often_abil_socialis',
  'abil_socialis_due',
  'socialis_due_work',
  'due_work_hour',
  'work_hour_one',
  'hour_one_recent',
  'one_recent_jog',
  'recent_jog_paus',
  'jog_paus_way',
  'paus_way_cul-de-sac',
  'way_cul-de-sac_pavement',
  'cul-de-sac_pavement_near',
  'pavement_near_home',
  'near_home_pick',
  'home_pick_podcast',
  'pick_podcast_phone',
  'podcast_phone_come',
  'phone_come_shout',
  'come_shout_near',
  'shout_near_home',
  'near_home_better',
  'home_better_get',
  'better_get_call',
  'get_call_polic',
  'call_polic_quickli',
  'polic_quickli_apologis',
  'quickli_apologis_explain',
  'apologis_explain_im',
  'explain_im_neighbour',
  'im_neighbour_jog',
  'neighbour_jog_believ',
  'jog_believ_sight',
  'believ_sight_go',
  'sight_go_unlock',
  'go_unlock_front',
  'unlock_front_door',
  'front_door_prove',
  'door_prove_ye',
  'prove_ye_live',
  'ye_live_kept',
  'live_kept_shout',
  'kept_shout_polic',
  'shout_polic_stop',
  'polic_stop_retreat',
  'stop_retreat_back',
  'retreat_back_home',
  'back_home_continu',
  'home_continu_jog',
  'continu_jog_except',
  'jog_except_watch',
  'except_watch_next',
  'watch_next_time',
  'next_time_jog',
  'time_jog_next',
  'jog_next_next',
  'next_next_time',
  'next_time_call',
  'time_call_vagu',
  'call_vagu_threat',
  'vagu_threat_polic',
  'threat_polic_time',
  'polic_time_scare',
  'time_scare_children',
  'scare_children_alway',
  'children_alway_time',
  'alway_time_admit',
  'time_admit_id',
  'admit_id_final',
  'id_final_enough',
  'final_enough_laugh',
  'enough_laugh_im',
  'laugh_im_foot',
  'im_foot_tall',
  'foot_tall_woman',
  'tall_woman_look',
  'woman_look_like',
  'look_like_solid',
  'like_solid_breez',
  'solid_breez_would',
  'breez_would_blow',
  'would_blow_also',
  'blow_also_told',
  'also_told_mind',
  'told_mind_fuck',
  'mind_fuck_busi',
  'fuck_busi_seem',
  'busi_seem_like',
  'seem_like_weirdo',
  'like_weirdo_alway',
  'weirdo_alway_watch',
  'alway_watch_go',
  'watch_go_jog',
  'go_jog_hour',
  'jog_hour_also',
  'hour_also_told',
  'also_told_call',
  'told_call_say',
  'call_say_co-work',
  'say_co-work_im',
  'co-work_im_proud',
  'im_proud_lost',
  'proud_lost_temper',
  'lost_temper_get',
  'temper_get_alway',
  'get_alway_boyfriend',
  'alway_boyfriend_suggest',
  'boyfriend_suggest_share',
  'suggest_share_meal',
  'share_meal_day',
  'meal_day_mayb',
  'day_mayb_anxieti',
  'mayb_anxieti_see',
  'anxieti_see_someon',
  'see_someon_outsid',
  'someon_outsid_earli',
  'outsid_earli_put',
  'earli_put_edg',
  'put_edg_handl',
  'edg_handl_poorli',
  'handl_poorli_admit',
  'poorli_admit_felt',
  'admit_felt_guilti',
  'felt_guilti_id',
  'guilti_id_thought',
  'id_thought_jog',
  'thought_jog_hour',
  'jog_hour_shift',
  'hour_shift_harmless',
  'shift_harmless_im',
  'harmless_im_use',
  'im_use_weird',
  'use_weird_hour',
  'weird_hour_asshol',
  'hour_asshol_jog',
  'asshol_jog_time',
  'jog_time_would',
  'time_would_freak',
  'would_freak_one',
  'freak_one_neighbour'],
 ['im',
  '-year-old',
  'man',
  'wife',
  'jess',
  '-year-old',
  'woman',
  'marri',
  'three',
  'year',
  'six',
  'month',
  'ago',
  'start',
  'experi',
  'erectil',
  'dysfunct',
  'larg',
  'spur',
  'anxieti',
  'medic',
  'condit',
  'current',
  'see',
  'doctor',
  'jess',
  'gone',
  'blame',
  'blame',
  'basic',
  'weekli',
  'pendulum',
  'swing',
  'one',
  'way',
  'late',
  'found',
  'humor',
  'guess',
  'laugh',
  'littl',
  'sever',
  'psycholog',
  'symptom',
  'jazz',
  'well',
  'friday',
  'night',
  'met',
  'friend',
  'drink',
  'includ',
  'us',
  'six',
  'peopl',
  'tabl',
  'discuss',
  'turn',
  'direct',
  'led',
  'drunk',
  'jess',
  'say',
  'yeah',
  'im',
  'get',
  'guy',
  'cant',
  'even',
  'get',
  'point',
  'first',
  'reaction',
  'shock',
  'shed',
  'say',
  'someth',
  'horribl',
  'privat',
  'without',
  'miss',
  'beat',
  'respond',
  'yeah',
  'wife',
  'like',
  'even',
  'blame',
  'everyon',
  'laugh',
  'assum',
  'kid',
  'silli',
  'thing',
  'mean',
  'kind',
  'year',
  'old',
  'get',
  'ed',
  'first',
  'place',
  'right',
  'well',
  'next',
  'morn',
  'jess',
  'incred',
  'hung',
  'distinctli',
  'rememb',
  'said',
  'got',
  'upset',
  'real',
  'scream',
  'head',
  'type',
  'quiet',
  'dare',
  'type',
  'respond',
  'threw',
  'everyth',
  'tabl',
  'respond',
  'spur',
  'moment',
  'thing',
  'respons',
  'calcul',
  'think',
  'asshol',
  'im_-year-old',
  '-year-old_man',
  'man_wife',
  'wife_jess',
  'jess_-year-old',
  '-year-old_woman',
  'woman_marri',
  'marri_three',
  'three_year',
  'year_six',
  'six_month',
  'month_ago',
  'ago_start',
  'start_experi',
  'experi_erectil',
  'erectil_dysfunct',
  'dysfunct_larg',
  'larg_spur',
  'spur_anxieti',
  'anxieti_medic',
  'medic_condit',
  'condit_current',
  'current_see',
  'see_doctor',
  'doctor_jess',
  'jess_gone',
  'gone_blame',
  'blame_blame',
  'blame_basic',
  'basic_weekli',
  'weekli_pendulum',
  'pendulum_swing',
  'swing_one',
  'one_way',
  'way_late',
  'late_found',
  'found_humor',
  'humor_guess',
  'guess_laugh',
  'laugh_littl',
  'littl_sever',
  'sever_psycholog',
  'psycholog_symptom',
  'symptom_jazz',
  'jazz_well',
  'well_friday',
  'friday_night',
  'night_met',
  'met_friend',
  'friend_drink',
  'drink_includ',
  'includ_us',
  'us_six',
  'six_peopl',
  'peopl_tabl',
  'tabl_discuss',
  'discuss_turn',
  'turn_direct',
  'direct_led',
  'led_drunk',
  'drunk_jess',
  'jess_say',
  'say_yeah',
  'yeah_im',
  'im_get',
  'get_guy',
  'guy_cant',
  'cant_even',
  'even_get',
  'get_point',
  'point_first',
  'first_reaction',
  'reaction_shock',
  'shock_shed',
  'shed_say',
  'say_someth',
  'someth_horribl',
  'horribl_privat',
  'privat_without',
  'without_miss',
  'miss_beat',
  'beat_respond',
  'respond_yeah',
  'yeah_wife',
  'wife_like',
  'like_even',
  'even_blame',
  'blame_everyon',
  'everyon_laugh',
  'laugh_assum',
  'assum_kid',
  'kid_silli',
  'silli_thing',
  'thing_mean',
  'mean_kind',
  'kind_year',
  'year_old',
  'old_get',
  'get_ed',
  'ed_first',
  'first_place',
  'place_right',
  'right_well',
  'well_next',
  'next_morn',
  'morn_jess',
  'jess_incred',
  'incred_hung',
  'hung_distinctli',
  'distinctli_rememb',
  'rememb_said',
  'said_got',
  'got_upset',
  'upset_real',
  'real_scream',
  'scream_head',
  'head_type',
  'type_quiet',
  'quiet_dare',
  'dare_type',
  'type_respond',
  'respond_threw',
  'threw_everyth',
  'everyth_tabl',
  'tabl_respond',
  'respond_spur',
  'spur_moment',
  'moment_thing',
  'thing_respons',
  'respons_calcul',
  'calcul_think',
  'think_asshol',
  'im_-year-old_man',
  '-year-old_man_wife',
  'man_wife_jess',
  'wife_jess_-year-old',
  'jess_-year-old_woman',
  '-year-old_woman_marri',
  'woman_marri_three',
  'marri_three_year',
  'three_year_six',
  'year_six_month',
  'six_month_ago',
  'month_ago_start',
  'ago_start_experi',
  'start_experi_erectil',
  'experi_erectil_dysfunct',
  'erectil_dysfunct_larg',
  'dysfunct_larg_spur',
  'larg_spur_anxieti',
  'spur_anxieti_medic',
  'anxieti_medic_condit',
  'medic_condit_current',
  'condit_current_see',
  'current_see_doctor',
  'see_doctor_jess',
  'doctor_jess_gone',
  'jess_gone_blame',
  'gone_blame_blame',
  'blame_blame_basic',
  'blame_basic_weekli',
  'basic_weekli_pendulum',
  'weekli_pendulum_swing',
  'pendulum_swing_one',
  'swing_one_way',
  'one_way_late',
  'way_late_found',
  'late_found_humor',
  'found_humor_guess',
  'humor_guess_laugh',
  'guess_laugh_littl',
  'laugh_littl_sever',
  'littl_sever_psycholog',
  'sever_psycholog_symptom',
  'psycholog_symptom_jazz',
  'symptom_jazz_well',
  'jazz_well_friday',
  'well_friday_night',
  'friday_night_met',
  'night_met_friend',
  'met_friend_drink',
  'friend_drink_includ',
  'drink_includ_us',
  'includ_us_six',
  'us_six_peopl',
  'six_peopl_tabl',
  'peopl_tabl_discuss',
  'tabl_discuss_turn',
  'discuss_turn_direct',
  'turn_direct_led',
  'direct_led_drunk',
  'led_drunk_jess',
  'drunk_jess_say',
  'jess_say_yeah',
  'say_yeah_im',
  'yeah_im_get',
  'im_get_guy',
  'get_guy_cant',
  'guy_cant_even',
  'cant_even_get',
  'even_get_point',
  'get_point_first',
  'point_first_reaction',
  'first_reaction_shock',
  'reaction_shock_shed',
  'shock_shed_say',
  'shed_say_someth',
  'say_someth_horribl',
  'someth_horribl_privat',
  'horribl_privat_without',
  'privat_without_miss',
  'without_miss_beat',
  'miss_beat_respond',
  'beat_respond_yeah',
  'respond_yeah_wife',
  'yeah_wife_like',
  'wife_like_even',
  'like_even_blame',
  'even_blame_everyon',
  'blame_everyon_laugh',
  'everyon_laugh_assum',
  'laugh_assum_kid',
  'assum_kid_silli',
  'kid_silli_thing',
  'silli_thing_mean',
  'thing_mean_kind',
  'mean_kind_year',
  'kind_year_old',
  'year_old_get',
  'old_get_ed',
  'get_ed_first',
  'ed_first_place',
  'first_place_right',
  'place_right_well',
  'right_well_next',
  'well_next_morn',
  'next_morn_jess',
  'morn_jess_incred',
  'jess_incred_hung',
  'incred_hung_distinctli',
  'hung_distinctli_rememb',
  'distinctli_rememb_said',
  'rememb_said_got',
  'said_got_upset',
  'got_upset_real',
  'upset_real_scream',
  'real_scream_head',
  'scream_head_type',
  'head_type_quiet',
  'type_quiet_dare',
  'quiet_dare_type',
  'dare_type_respond',
  'type_respond_threw',
  'respond_threw_everyth',
  'threw_everyth_tabl',
  'everyth_tabl_respond',
  'tabl_respond_spur',
  'respond_spur_moment',
  'spur_moment_thing',
  'moment_thing_respons',
  'thing_respons_calcul',
  'respons_calcul_think',
  'calcul_think_asshol'],
 ['use',
  'new',
  'account',
  'hope',
  'sister',
  'find',
  'know',
  'reddit…',
  'wife',
  'younger',
  'sister',
  'colleg',
  'area',
  'leas',
  'temporari',
  'live',
  'stay',
  'us',
  'look',
  'new',
  'place',
  'honestli',
  'big',
  'fan',
  'kind',
  'bratti',
  'realli',
  'made',
  'stand',
  'attitud',
  'month',
  'old',
  'son',
  'anytim',
  'subject',
  'sonkid',
  'come',
  'find',
  'way',
  'make',
  'child-fre',
  'exampl',
  'announc',
  'pregnanc',
  'famili',
  'everyon',
  'happi',
  'us',
  'reaction',
  'eww',
  'gross',
  'tell',
  'us',
  'sorri',
  'weird',
  'think',
  'pregnant',
  'glad',
  'never',
  'go',
  'alreadi',
  'put',
  'us',
  'sour',
  'moment',
  'chang',
  'throughout',
  'wife',
  'pregnanc',
  'ignor',
  'son',
  'born',
  'threw',
  'fit',
  'law',
  'sent',
  'coupl',
  'pic',
  'call',
  'wife',
  'ask',
  'tell',
  'parent',
  'send',
  'anyth',
  'everyon',
  'care',
  'babi',
  'one',
  'sent',
  'still',
  'mad',
  'us',
  'shove',
  'babi',
  'throat',
  'wife',
  'gotten',
  'mad',
  'attitud',
  'folk',
  'say',
  'express',
  'take',
  'person',
  'let',
  'move',
  'got',
  'wors',
  'son',
  'cri',
  'loudli',
  'say',
  'oh',
  'god',
  'shut',
  'see',
  'why-',
  'yada',
  'yada',
  'kid',
  'etc',
  'annoy',
  'needi',
  'make',
  'dramat',
  'gag',
  'nois',
  'feed',
  'fruit',
  'tell',
  'us',
  'take',
  'somewher',
  'els',
  'wife',
  'tell',
  'fuck',
  'deal',
  'understand',
  'someon',
  'person',
  'like',
  'kid',
  'never',
  'want',
  'go',
  'way',
  'alway',
  'talk',
  'much',
  'hate',
  'anyth',
  'son',
  'alway',
  'say',
  'someth',
  'appreci',
  'neg',
  'toward',
  'child',
  'earlier',
  'son',
  'hit',
  'head',
  'start',
  'cri',
  'calm',
  'minut',
  'wo',
  'ask',
  'opinion',
  'say',
  'guy',
  'month',
  'abort',
  'snap',
  'hate',
  'babi',
  'much',
  'welcom',
  'get',
  'hell',
  'hous',
  'understand',
  'deep',
  'hate',
  'kid',
  'mayb',
  'get',
  'therapi',
  'one',
  'thing',
  'like',
  'anoth',
  'alway',
  'wan',
  'na',
  'make',
  'known',
  'much',
  'despis',
  'tire',
  'annoy',
  'rant',
  'eat',
  'food',
  'free',
  'complain',
  'babi',
  'act',
  'like',
  'one',
  'yeah',
  'quit',
  'bit',
  'said',
  'say',
  'anyth',
  'told',
  'wife',
  'parent',
  'reason',
  'think',
  'jerk',
  'threaten',
  'live',
  'situat',
  'place',
  'go',
  'right',
  'option',
  'wife',
  'agre',
  'trigger',
  'argument',
  'parent',
  'get',
  'still',
  'young',
  'dumb',
  'im',
  'ask',
  'im',
  'ta',
  'use_new',
  'new_account',
  'account_hope',
  'hope_sister',
  'sister_find',
  'find_know',
  'know_reddit…',
  'reddit…_wife',
  'wife_younger',
  'younger_sister',
  'sister_colleg',
  'colleg_area',
  'area_leas',
  'leas_temporari',
  'temporari_live',
  'live_stay',
  'stay_us',
  'us_look',
  'look_new',
  'new_place',
  'place_honestli',
  'honestli_big',
  'big_fan',
  'fan_kind',
  'kind_bratti',
  'bratti_realli',
  'realli_made',
  'made_stand',
  'stand_attitud',
  'attitud_month',
  'month_old',
  'old_son',
  'son_anytim',
  'anytim_subject',
  'subject_sonkid',
  'sonkid_come',
  'come_find',
  'find_way',
  'way_make',
  'make_child-fre',
  'child-fre_exampl',
  'exampl_announc',
  'announc_pregnanc',
  'pregnanc_famili',
  'famili_everyon',
  'everyon_happi',
  'happi_us',
  'us_reaction',
  'reaction_eww',
  'eww_gross',
  'gross_tell',
  'tell_us',
  'us_sorri',
  'sorri_weird',
  'weird_think',
  'think_pregnant',
  'pregnant_glad',
  'glad_never',
  'never_go',
  'go_alreadi',
  'alreadi_put',
  'put_us',
  'us_sour',
  'sour_moment',
  'moment_chang',
  'chang_throughout',
  'throughout_wife',
  'wife_pregnanc',
  'pregnanc_ignor',
  'ignor_son',
  'son_born',
  'born_threw',
  'threw_fit',
  'fit_law',
  'law_sent',
  'sent_coupl',
  'coupl_pic',
  'pic_call',
  'call_wife',
  'wife_ask',
  'ask_tell',
  'tell_parent',
  'parent_send',
  'send_anyth',
  'anyth_everyon',
  'everyon_care',
  'care_babi',
  'babi_one',
  'one_sent',
  'sent_still',
  'still_mad',
  'mad_us',
  'us_shove',
  'shove_babi',
  'babi_throat',
  'throat_wife',
  'wife_gotten',
  'gotten_mad',
  'mad_attitud',
  'attitud_folk',
  'folk_say',
  'say_express',
  'express_take',
  'take_person',
  'person_let',
  'let_move',
  'move_got',
  'got_wors',
  'wors_son',
  'son_cri',
  'cri_loudli',
  'loudli_say',
  'say_oh',
  'oh_god',
  'god_shut',
  'shut_see',
  'see_why-',
  'why-_yada',
  'yada_yada',
  'yada_kid',
  'kid_etc',
  'etc_annoy',
  'annoy_needi',
  'needi_make',
  'make_dramat',
  'dramat_gag',
  'gag_nois',
  'nois_feed',
  'feed_fruit',
  'fruit_tell',
  'tell_us',
  'us_take',
  'take_somewher',
  'somewher_els',
  'els_wife',
  'wife_tell',
  'tell_fuck',
  'fuck_deal',
  'deal_understand',
  'understand_someon',
  'someon_person',
  'person_like',
  'like_kid',
  'kid_never',
  'never_want',
  'want_go',
  'go_way',
  'way_alway',
  'alway_talk',
  'talk_much',
  'much_hate',
  'hate_anyth',
  'anyth_son',
  'son_alway',
  'alway_say',
  'say_someth',
  'someth_appreci',
  'appreci_neg',
  'neg_toward',
  'toward_child',
  'child_earlier',
  'earlier_son',
  'son_hit',
  'hit_head',
  'head_start',
  'start_cri',
  'cri_calm',
  'calm_minut',
  'minut_wo',
  'wo_ask',
  'ask_opinion',
  'opinion_say',
  'say_guy',
  'guy_month',
  'month_abort',
  'abort_snap',
  'snap_hate',
  'hate_babi',
  'babi_much',
  'much_welcom',
  'welcom_get',
  'get_hell',
  'hell_hous',
  'hous_understand',
  'understand_deep',
  'deep_hate',
  'hate_kid',
  'kid_mayb',
  'mayb_get',
  'get_therapi',
  'therapi_one',
  'one_thing',
  'thing_like',
  'like_anoth',
  'anoth_alway',
  'alway_wan',
  'wan_na',
  'na_make',
  'make_known',
  'known_much',
  'much_despis',
  'despis_tire',
  'tire_annoy',
  'annoy_rant',
  'rant_eat',
  'eat_food',
  'food_free',
  'free_complain',
  'complain_babi',
  'babi_act',
  'act_like',
  'like_one',
  'one_yeah',
  'yeah_quit',
  'quit_bit',
  'bit_said',
  'said_say',
  'say_anyth',
  'anyth_told',
  'told_wife',
  'wife_parent',
  'parent_reason',
  'reason_think',
  'think_jerk',
  'jerk_threaten',
  'threaten_live',
  'live_situat',
  'situat_place',
  'place_go',
  'go_right',
  'right_option',
  'option_wife',
  'wife_agre',
  'agre_trigger',
  'trigger_argument',
  'argument_parent',
  'parent_get',
  'get_still',
  'still_young',
  'young_dumb',
  'dumb_im',
  'im_ask',
  'ask_im',
  'im_ta',
  'use_new_account',
  'new_account_hope',
  'account_hope_sister',
  'hope_sister_find',
  'sister_find_know',
  'find_know_reddit…',
  'know_reddit…_wife',
  'reddit…_wife_younger',
  'wife_younger_sister',
  'younger_sister_colleg',
  'sister_colleg_area',
  'colleg_area_leas',
  'area_leas_temporari',
  'leas_temporari_live',
  'temporari_live_stay',
  'live_stay_us',
  'stay_us_look',
  'us_look_new',
  'look_new_place',
  'new_place_honestli',
  'place_honestli_big',
  'honestli_big_fan',
  'big_fan_kind',
  'fan_kind_bratti',
  'kind_bratti_realli',
  'bratti_realli_made',
  'realli_made_stand',
  'made_stand_attitud',
  'stand_attitud_month',
  'attitud_month_old',
  'month_old_son',
  'old_son_anytim',
  'son_anytim_subject',
  'anytim_subject_sonkid',
  'subject_sonkid_come',
  'sonkid_come_find',
  'come_find_way',
  'find_way_make',
  'way_make_child-fre',
  'make_child-fre_exampl',
  'child-fre_exampl_announc',
  'exampl_announc_pregnanc',
  'announc_pregnanc_famili',
  'pregnanc_famili_everyon',
  'famili_everyon_happi',
  'everyon_happi_us',
  'happi_us_reaction',
  'us_reaction_eww',
  'reaction_eww_gross',
  'eww_gross_tell',
  'gross_tell_us',
  'tell_us_sorri',
  'us_sorri_weird',
  'sorri_weird_think',
  'weird_think_pregnant',
  'think_pregnant_glad',
  'pregnant_glad_never',
  'glad_never_go',
  'never_go_alreadi',
  'go_alreadi_put',
  'alreadi_put_us',
  'put_us_sour',
  'us_sour_moment',
  'sour_moment_chang',
  'moment_chang_throughout',
  'chang_throughout_wife',
  'throughout_wife_pregnanc',
  'wife_pregnanc_ignor',
  'pregnanc_ignor_son',
  'ignor_son_born',
  'son_born_threw',
  'born_threw_fit',
  'threw_fit_law',
  'fit_law_sent',
  'law_sent_coupl',
  'sent_coupl_pic',
  'coupl_pic_call',
  'pic_call_wife',
  'call_wife_ask',
  'wife_ask_tell',
  'ask_tell_parent',
  'tell_parent_send',
  'parent_send_anyth',
  'send_anyth_everyon',
  'anyth_everyon_care',
  'everyon_care_babi',
  'care_babi_one',
  'babi_one_sent',
  'one_sent_still',
  'sent_still_mad',
  'still_mad_us',
  'mad_us_shove',
  'us_shove_babi',
  'shove_babi_throat',
  'babi_throat_wife',
  'throat_wife_gotten',
  'wife_gotten_mad',
  'gotten_mad_attitud',
  'mad_attitud_folk',
  'attitud_folk_say',
  'folk_say_express',
  'say_express_take',
  'express_take_person',
  'take_person_let',
  'person_let_move',
  'let_move_got',
  'move_got_wors',
  'got_wors_son',
  'wors_son_cri',
  'son_cri_loudli',
  'cri_loudli_say',
  'loudli_say_oh',
  'say_oh_god',
  'oh_god_shut',
  'god_shut_see',
  'shut_see_why-',
  'see_why-_yada',
  'why-_yada_yada',
  'yada_yada_kid',
  'yada_kid_etc',
  'kid_etc_annoy',
  'etc_annoy_needi',
  'annoy_needi_make',
  'needi_make_dramat',
  'make_dramat_gag',
  'dramat_gag_nois',
  'gag_nois_feed',
  'nois_feed_fruit',
  'feed_fruit_tell',
  'fruit_tell_us',
  'tell_us_take',
  'us_take_somewher',
  'take_somewher_els',
  'somewher_els_wife',
  'els_wife_tell',
  'wife_tell_fuck',
  'tell_fuck_deal',
  'fuck_deal_understand',
  'deal_understand_someon',
  'understand_someon_person',
  'someon_person_like',
  'person_like_kid',
  'like_kid_never',
  'kid_never_want',
  'never_want_go',
  'want_go_way',
  'go_way_alway',
  'way_alway_talk',
  'alway_talk_much',
  'talk_much_hate',
  'much_hate_anyth',
  'hate_anyth_son',
  'anyth_son_alway',
  'son_alway_say',
  'alway_say_someth',
  'say_someth_appreci',
  'someth_appreci_neg',
  'appreci_neg_toward',
  'neg_toward_child',
  'toward_child_earlier',
  'child_earlier_son',
  'earlier_son_hit',
  'son_hit_head',
  'hit_head_start',
  'head_start_cri',
  'start_cri_calm',
  'cri_calm_minut',
  'calm_minut_wo',
  'minut_wo_ask',
  'wo_ask_opinion',
  'ask_opinion_say',
  'opinion_say_guy',
  'say_guy_month',
  'guy_month_abort',
  'month_abort_snap',
  'abort_snap_hate',
  'snap_hate_babi',
  'hate_babi_much',
  'babi_much_welcom',
  'much_welcom_get',
  'welcom_get_hell',
  'get_hell_hous',
  'hell_hous_understand',
  'hous_understand_deep',
  'understand_deep_hate',
  'deep_hate_kid',
  'hate_kid_mayb',
  'kid_mayb_get',
  'mayb_get_therapi',
  'get_therapi_one',
  'therapi_one_thing',
  'one_thing_like',
  'thing_like_anoth',
  'like_anoth_alway',
  'anoth_alway_wan',
  'alway_wan_na',
  'wan_na_make',
  'na_make_known',
  'make_known_much',
  'known_much_despis',
  'much_despis_tire',
  'despis_tire_annoy',
  'tire_annoy_rant',
  'annoy_rant_eat',
  'rant_eat_food',
  'eat_food_free',
  'food_free_complain',
  'free_complain_babi',
  'complain_babi_act',
  'babi_act_like',
  'act_like_one',
  'like_one_yeah',
  'one_yeah_quit',
  'yeah_quit_bit',
  'quit_bit_said',
  'bit_said_say',
  'said_say_anyth',
  'say_anyth_told',
  'anyth_told_wife',
  'told_wife_parent',
  'wife_parent_reason',
  'parent_reason_think',
  'reason_think_jerk',
  'think_jerk_threaten',
  'jerk_threaten_live',
  'threaten_live_situat',
  'live_situat_place',
  'situat_place_go',
  'place_go_right',
  'go_right_option',
  'right_option_wife',
  'option_wife_agre',
  'wife_agre_trigger',
  'agre_trigger_argument',
  'trigger_argument_parent',
  'argument_parent_get',
  'parent_get_still',
  'get_still_young',
  'still_young_dumb',
  'young_dumb_im',
  'dumb_im_ask',
  'im_ask_im',
  'ask_im_ta'],
 ['would',
  'like',
  'start',
  'say',
  'husband',
  'come',
  'well',
  'famili',
  'friend',
  'well',
  'well',
  'unlik',
  'famili',
  'come',
  'humbl',
  'work',
  'class',
  'lot',
  'asset',
  'like',
  'inlaw',
  'husband',
  'care',
  'appear',
  'first',
  'tri',
  'control',
  'look',
  'butdid',
  'buy',
  'thing',
  'said',
  'id',
  'love',
  'noth',
  'style',
  'realli',
  'marriag',
  'sat',
  'tell',
  'get',
  '%',
  'choos',
  'look',
  'except',
  'im',
  'famili',
  'introduc',
  'brand',
  'choos',
  'new',
  'cloth',
  'start',
  'wear',
  'whenev',
  'im',
  'famili',
  'friend',
  'although',
  'limit',
  'choic',
  'wear',
  'im',
  'simpl',
  'thing',
  'friend',
  'birthday',
  'celebr',
  'upscal',
  'restaur',
  'husband',
  'bought',
  '$',
  'dress',
  'wear',
  'ocass',
  'like',
  'mani',
  'thing',
  'told',
  'id',
  'wear',
  '$',
  'floral',
  'maxi',
  'dress',
  'think',
  'good',
  'idea',
  'said',
  'violat',
  'rule',
  'gave',
  'got',
  'marri',
  'said',
  'dress',
  'bought',
  'style',
  'said',
  'either',
  'wear',
  'dress',
  'go',
  'said',
  'fine',
  'whatev',
  'still',
  'happi',
  'got',
  'restaur',
  'one',
  'said',
  'anyth',
  'dress',
  'except',
  'friend',
  'said',
  'look',
  'great',
  'dinner',
  'husband',
  'move',
  'quickli',
  'spill',
  'wine',
  'chest',
  'lap',
  'freak',
  'said',
  'thank',
  'replac',
  'pull',
  '$',
  'previous',
  'want',
  'wear',
  'bag',
  'whole',
  'time',
  'help',
  'think',
  'deliber',
  'spill',
  'wine',
  'floral',
  'dress',
  'forc',
  'wear',
  'dress',
  'hand',
  'dress',
  'told',
  'go',
  'chang',
  'got',
  'instead',
  'go',
  'restroom',
  'made',
  'way',
  'door',
  'ask',
  'wait',
  'kept',
  'walk',
  'open',
  'phone',
  'get',
  'uber',
  'get',
  'home',
  'stood',
  'outsid',
  'start',
  'argu',
  'said',
  'get',
  'behav',
  'like',
  'embarrass',
  'like',
  'said',
  'look',
  'dress',
  'tri',
  'trick',
  'wear',
  'want',
  'spill',
  'wine',
  'told',
  'go',
  'back',
  'insid',
  'said',
  'move',
  'til',
  'uber',
  'arriv',
  'threw',
  'fit',
  'call',
  'embarrass',
  'stood',
  'till',
  'left',
  'home',
  'went',
  'say',
  'couldv',
  'worn',
  'dress',
  'make',
  'scene',
  'doubl',
  'walk',
  'said',
  'disrespect',
  'choic',
  'impli',
  'embarrass',
  'said',
  'call',
  'spade',
  'spade',
  'quit',
  'act',
  'insensit',
  'get',
  'offend',
  'noth',
  'said',
  'made',
  'joke',
  'infront',
  'friend',
  'one',
  'one',
  'compliment',
  'dress',
  'one',
  'constantli',
  'tri',
  'video',
  'chat',
  'whenev',
  'see',
  'onlin',
  'tri',
  'call',
  'respond',
  'made',
  'feel',
  'uncomfort',
  'aita',
  'handl',
  'right',
  'would_like',
  'like_start',
  'start_say',
  'say_husband',
  'husband_come',
  'come_well',
  'well_famili',
  'famili_friend',
  'friend_well',
  'well_well',
  'well_unlik',
  'unlik_famili',
  'famili_come',
  'come_humbl',
  'humbl_work',
  'work_class',
  'class_lot',
  'lot_asset',
  'asset_like',
  'like_inlaw',
  'inlaw_husband',
  'husband_care',
  'care_appear',
  'appear_first',
  'first_tri',
  'tri_control',
  'control_look',
  'look_butdid',
  'butdid_buy',
  'buy_thing',
  'thing_said',
  'said_id',
  'id_love',
  'love_noth',
  'noth_style',
  'style_realli',
  'realli_marriag',
  'marriag_sat',
  'sat_tell',
  'tell_get',
  'get_%',
  '%_choos',
  'choos_look',
  'look_except',
  'except_im',
  'im_famili',
  'famili_introduc',
  'introduc_brand',
  'brand_choos',
  'choos_new',
  'new_cloth',
  'cloth_start',
  'start_wear',
  'wear_whenev',
  'whenev_im',
  'im_famili',
  'famili_friend',
  'friend_although',
  'although_limit',
  'limit_choic',
  'choic_wear',
  'wear_im',
  'im_simpl',
  'simpl_thing',
  'thing_friend',
  'friend_birthday',
  'birthday_celebr',
  'celebr_upscal',
  'upscal_restaur',
  'restaur_husband',
  'husband_bought',
  'bought_$',
  '$_dress',
  'dress_wear',
  'wear_ocass',
  'ocass_like',
  'like_mani',
  'mani_thing',
  'thing_told',
  'told_id',
  'id_wear',
  'wear_$',
  '$_floral',
  'floral_maxi',
  'maxi_dress',
  'dress_think',
  'think_good',
  'good_idea',
  'idea_said',
  'said_violat',
  'violat_rule',
  'rule_gave',
  'gave_got',
  'got_marri',
  'marri_said',
  'said_dress',
  'dress_bought',
  'bought_style',
  'style_said',
  'said_either',
  'either_wear',
  'wear_dress',
  'dress_go',
  'go_said',
  'said_fine',
  'fine_whatev',
  'whatev_still',
  'still_happi',
  'happi_got',
  'got_restaur',
  'restaur_one',
  'one_said',
  'said_anyth',
  'anyth_dress',
  'dress_except',
  'except_friend',
  'friend_said',
  'said_look',
  'look_great',
  'great_dinner',
  'dinner_husband',
  'husband_move',
  'move_quickli',
  'quickli_spill',
  'spill_wine',
  'wine_chest',
  'chest_lap',
  'lap_freak',
  'freak_said',
  'said_thank',
  'thank_replac',
  'replac_pull',
  'pull_$',
  '$_previous',
  'previous_want',
  'want_wear',
  'wear_bag',
  'bag_whole',
  'whole_time',
  'time_help',
  'help_think',
  'think_deliber',
  'deliber_spill',
  'spill_wine',
  'wine_floral',
  'floral_dress',
  'dress_forc',
  'forc_wear',
  'wear_dress',
  'dress_hand',
  'hand_dress',
  'dress_told',
  'told_go',
  'go_chang',
  'chang_got',
  'got_instead',
  'instead_go',
  'go_restroom',
  'restroom_made',
  'made_way',
  'way_door',
  'door_ask',
  'ask_wait',
  'wait_kept',
  'kept_walk',
  'walk_open',
  'open_phone',
  'phone_get',
  'get_uber',
  'uber_get',
  'get_home',
  'home_stood',
  'stood_outsid',
  'outsid_start',
  'start_argu',
  'argu_said',
  'said_get',
  'get_behav',
  'behav_like',
  'like_embarrass',
  'embarrass_like',
  'like_said',
  'said_look',
  'look_dress',
  'dress_tri',
  'tri_trick',
  'trick_wear',
  'wear_want',
  'want_spill',
  'spill_wine',
  'wine_told',
  'told_go',
  'go_back',
  'back_insid',
  'insid_said',
  'said_move',
  'move_til',
  'til_uber',
  'uber_arriv',
  'arriv_threw',
  'threw_fit',
  'fit_call',
  'call_embarrass',
  'embarrass_stood',
  'stood_till',
  'till_left',
  'left_home',
  'home_went',
  'went_say',
  'say_couldv',
  'couldv_worn',
  'worn_dress',
  'dress_make',
  'make_scene',
  'scene_doubl',
  'doubl_walk',
  'walk_said',
  'said_disrespect',
  'disrespect_choic',
  'choic_impli',
  'impli_embarrass',
  'embarrass_said',
  'said_call',
  'call_spade',
  'spade_spade',
  'spade_quit',
  'quit_act',
  'act_insensit',
  'insensit_get',
  'get_offend',
  'offend_noth',
  'noth_said',
  'said_made',
  'made_joke',
  'joke_infront',
  'infront_friend',
  'friend_one',
  'one_one',
  'one_compliment',
  'compliment_dress',
  'dress_one',
  'one_constantli',
  'constantli_tri',
  'tri_video',
  'video_chat',
  'chat_whenev',
  'whenev_see',
  'see_onlin',
  'onlin_tri',
  'tri_call',
  'call_respond',
  'respond_made',
  'made_feel',
  'feel_uncomfort',
  'uncomfort_aita',
  'aita_handl',
  'handl_right',
  'would_like_start',
  'like_start_say',
  'start_say_husband',
  'say_husband_come',
  'husband_come_well',
  'come_well_famili',
  'well_famili_friend',
  'famili_friend_well',
  'friend_well_well',
  'well_well_unlik',
  'well_unlik_famili',
  'unlik_famili_come',
  'famili_come_humbl',
  'come_humbl_work',
  'humbl_work_class',
  'work_class_lot',
  'class_lot_asset',
  'lot_asset_like',
  'asset_like_inlaw',
  'like_inlaw_husband',
  'inlaw_husband_care',
  'husband_care_appear',
  'care_appear_first',
  'appear_first_tri',
  'first_tri_control',
  'tri_control_look',
  'control_look_butdid',
  'look_butdid_buy',
  'butdid_buy_thing',
  'buy_thing_said',
  'thing_said_id',
  'said_id_love',
  'id_love_noth',
  'love_noth_style',
  'noth_style_realli',
  'style_realli_marriag',
  'realli_marriag_sat',
  'marriag_sat_tell',
  'sat_tell_get',
  'tell_get_%',
  'get_%_choos',
  '%_choos_look',
  'choos_look_except',
  'look_except_im',
  'except_im_famili',
  'im_famili_introduc',
  'famili_introduc_brand',
  'introduc_brand_choos',
  'brand_choos_new',
  'choos_new_cloth',
  'new_cloth_start',
  'cloth_start_wear',
  'start_wear_whenev',
  'wear_whenev_im',
  'whenev_im_famili',
  'im_famili_friend',
  'famili_friend_although',
  'friend_although_limit',
  'although_limit_choic',
  'limit_choic_wear',
  'choic_wear_im',
  'wear_im_simpl',
  'im_simpl_thing',
  'simpl_thing_friend',
  'thing_friend_birthday',
  'friend_birthday_celebr',
  'birthday_celebr_upscal',
  'celebr_upscal_restaur',
  'upscal_restaur_husband',
  'restaur_husband_bought',
  'husband_bought_$',
  'bought_$_dress',
  '$_dress_wear',
  'dress_wear_ocass',
  'wear_ocass_like',
  'ocass_like_mani',
  'like_mani_thing',
  'mani_thing_told',
  'thing_told_id',
  'told_id_wear',
  'id_wear_$',
  'wear_$_floral',
  '$_floral_maxi',
  'floral_maxi_dress',
  'maxi_dress_think',
  'dress_think_good',
  'think_good_idea',
  'good_idea_said',
  'idea_said_violat',
  'said_violat_rule',
  'violat_rule_gave',
  'rule_gave_got',
  'gave_got_marri',
  'got_marri_said',
  'marri_said_dress',
  'said_dress_bought',
  'dress_bought_style',
  'bought_style_said',
  'style_said_either',
  'said_either_wear',
  'either_wear_dress',
  'wear_dress_go',
  'dress_go_said',
  'go_said_fine',
  'said_fine_whatev',
  'fine_whatev_still',
  'whatev_still_happi',
  'still_happi_got',
  'happi_got_restaur',
  'got_restaur_one',
  'restaur_one_said',
  'one_said_anyth',
  'said_anyth_dress',
  'anyth_dress_except',
  'dress_except_friend',
  'except_friend_said',
  'friend_said_look',
  'said_look_great',
  'look_great_dinner',
  'great_dinner_husband',
  'dinner_husband_move',
  'husband_move_quickli',
  'move_quickli_spill',
  'quickli_spill_wine',
  'spill_wine_chest',
  'wine_chest_lap',
  'chest_lap_freak',
  'lap_freak_said',
  'freak_said_thank',
  'said_thank_replac',
  'thank_replac_pull',
  'replac_pull_$',
  'pull_$_previous',
  '$_previous_want',
  'previous_want_wear',
  'want_wear_bag',
  'wear_bag_whole',
  'bag_whole_time',
  'whole_time_help',
  'time_help_think',
  'help_think_deliber',
  'think_deliber_spill',
  'deliber_spill_wine',
  'spill_wine_floral',
  'wine_floral_dress',
  'floral_dress_forc',
  'dress_forc_wear',
  'forc_wear_dress',
  'wear_dress_hand',
  'dress_hand_dress',
  'hand_dress_told',
  'dress_told_go',
  'told_go_chang',
  'go_chang_got',
  'chang_got_instead',
  'got_instead_go',
  'instead_go_restroom',
  'go_restroom_made',
  'restroom_made_way',
  'made_way_door',
  'way_door_ask',
  'door_ask_wait',
  'ask_wait_kept',
  'wait_kept_walk',
  'kept_walk_open',
  'walk_open_phone',
  'open_phone_get',
  'phone_get_uber',
  'get_uber_get',
  'uber_get_home',
  'get_home_stood',
  'home_stood_outsid',
  'stood_outsid_start',
  'outsid_start_argu',
  'start_argu_said',
  'argu_said_get',
  'said_get_behav',
  'get_behav_like',
  'behav_like_embarrass',
  'like_embarrass_like',
  'embarrass_like_said',
  'like_said_look',
  'said_look_dress',
  'look_dress_tri',
  'dress_tri_trick',
  'tri_trick_wear',
  'trick_wear_want',
  'wear_want_spill',
  'want_spill_wine',
  'spill_wine_told',
  'wine_told_go',
  'told_go_back',
  'go_back_insid',
  'back_insid_said',
  'insid_said_move',
  'said_move_til',
  'move_til_uber',
  'til_uber_arriv',
  'uber_arriv_threw',
  'arriv_threw_fit',
  'threw_fit_call',
  'fit_call_embarrass',
  'call_embarrass_stood',
  'embarrass_stood_till',
  'stood_till_left',
  'till_left_home',
  'left_home_went',
  'home_went_say',
  'went_say_couldv',
  'say_couldv_worn',
  'couldv_worn_dress',
  'worn_dress_make',
  'dress_make_scene',
  'make_scene_doubl',
  'scene_doubl_walk',
  'doubl_walk_said',
  'walk_said_disrespect',
  'said_disrespect_choic',
  'disrespect_choic_impli',
  'choic_impli_embarrass',
  'impli_embarrass_said',
  'embarrass_said_call',
  'said_call_spade',
  'call_spade_spade',
  'spade_spade_quit',
  'spade_quit_act',
  'quit_act_insensit',
  'act_insensit_get',
  'insensit_get_offend',
  'get_offend_noth',
  'offend_noth_said',
  'noth_said_made',
  'said_made_joke',
  'made_joke_infront',
  'joke_infront_friend',
  'infront_friend_one',
  'friend_one_one',
  'one_one_compliment',
  'one_compliment_dress',
  'compliment_dress_one',
  'dress_one_constantli',
  'one_constantli_tri',
  'constantli_tri_video',
  'tri_video_chat',
  'video_chat_whenev',
  'chat_whenev_see',
  'whenev_see_onlin',
  'see_onlin_tri',
  'onlin_tri_call',
  'tri_call_respond',
  'call_respond_made',
  'respond_made_feel',
  'made_feel_uncomfort',
  'feel_uncomfort_aita',
  'uncomfort_aita_handl',
  'aita_handl_right'],
 ['year',
  'old',
  'daughter',
  'chloe',
  'mom',
  'never',
  'marri',
  'circumst',
  'life',
  'longthen',
  'mom',
  'got',
  'marri',
  'stepdad',
  'somewhat',
  'decent',
  'guy',
  'nosi',
  'decent',
  'came',
  'back',
  'countri',
  'chloe',
  'open',
  'idea',
  'rebuild',
  'relationship',
  'though',
  'mom',
  'alway',
  'throw',
  'face',
  'chloe',
  'stepdad',
  'realleg',
  'parent',
  'alway',
  'chloe',
  'know',
  'bond',
  'chloe',
  'thing',
  'id',
  'gone',
  'past',
  'ignor',
  'judgement',
  'remark',
  'chloe',
  'get',
  'marri',
  'come',
  'feb',
  'taken',
  'back',
  'told',
  'consid',
  'stepdad',
  'walk',
  'aisl',
  'went',
  'convers',
  'talk',
  'uncomfort',
  'idea',
  'talk',
  'stepdad',
  'play',
  'huge',
  'part',
  'life',
  'want',
  'honor',
  'includ',
  'told',
  'cours',
  'absolut',
  'invalid',
  'feel',
  'deni',
  'much',
  'good',
  'influenc',
  'stepdad',
  'feel',
  'comfort',
  'told',
  'itd',
  'ok',
  'guest',
  'said',
  'want',
  'part',
  'bad',
  'said',
  'either',
  'stepdad',
  'way',
  'im',
  'thought',
  'petti',
  'got',
  'upset',
  'say',
  'okay',
  'put',
  'posit',
  'make',
  'choos',
  'forc',
  'hand',
  'realli',
  'ultim',
  'choic',
  'forc',
  'hand',
  'complain',
  'ruin',
  'wed',
  'make',
  'resent',
  'toward',
  'stepdad',
  'argument',
  'escal',
  'point',
  'said',
  'come',
  'wed',
  'continu',
  'forc',
  'issu',
  'mom',
  'contact',
  'call',
  'selfish',
  'jealou',
  'spite',
  'whatnot',
  'claim',
  'hurt',
  'chloe',
  'feel',
  'spite',
  'dare',
  'show',
  'appreci',
  'man',
  'step',
  'parent',
  'ill',
  'ever',
  'told',
  'stay',
  'ityour',
  'reason',
  'problem',
  'stay',
  'chloe',
  'chloe',
  'answer',
  'phonecal',
  'tri',
  'speak',
  'fianc',
  'said',
  'chloe',
  'upset',
  'fact',
  'put',
  'feel',
  'disrespect',
  'stepdad',
  'ask',
  'choos',
  'us',
  'advis',
  'one',
  'thing',
  'sinc',
  'import',
  'im',
  'feel',
  'uneasi',
  'even',
  'think',
  'think',
  'ill',
  'ever',
  'okay',
  'year_old',
  'old_daughter',
  'daughter_chloe',
  'chloe_mom',
  'mom_never',
  'never_marri',
  'marri_circumst',
  'circumst_life',
  'life_longthen',
  'longthen_mom',
  'mom_got',
  'got_marri',
  'marri_stepdad',
  'stepdad_somewhat',
  'somewhat_decent',
  'decent_guy',
  'guy_nosi',
  'nosi_decent',
  'decent_came',
  'came_back',
  'back_countri',
  'countri_chloe',
  'chloe_open',
  'open_idea',
  'idea_rebuild',
  'rebuild_relationship',
  'relationship_though',
  'though_mom',
  'mom_alway',
  'alway_throw',
  'throw_face',
  'face_chloe',
  'chloe_stepdad',
  'stepdad_realleg',
  'realleg_parent',
  'parent_alway',
  'alway_chloe',
  'chloe_know',
  'know_bond',
  'bond_chloe',
  'chloe_thing',
  'thing_id',
  'id_gone',
  'gone_past',
  'past_ignor',
  'ignor_judgement',
  'judgement_remark',
  'remark_chloe',
  'chloe_get',
  'get_marri',
  'marri_come',
  'come_feb',
  'feb_taken',
  'taken_back',
  'back_told',
  'told_consid',
  'consid_stepdad',
  'stepdad_walk',
  'walk_aisl',
  'aisl_went',
  'went_convers',
  'convers_talk',
  'talk_uncomfort',
  'uncomfort_idea',
  'idea_talk',
  'talk_stepdad',
  'stepdad_play',
  'play_huge',
  'huge_part',
  'part_life',
  'life_want',
  'want_honor',
  'honor_includ',
  'includ_told',
  'told_cours',
  'cours_absolut',
  'absolut_invalid',
  'invalid_feel',
  'feel_deni',
  'deni_much',
  'much_good',
  'good_influenc',
  'influenc_stepdad',
  'stepdad_feel',
  'feel_comfort',
  'comfort_told',
  'told_itd',
  'itd_ok',
  'ok_guest',
  'guest_said',
  'said_want',
  'want_part',
  'part_bad',
  'bad_said',
  'said_either',
  'either_stepdad',
  'stepdad_way',
  'way_im',
  'im_thought',
  'thought_petti',
  'petti_got',
  'got_upset',
  'upset_say',
  'say_okay',
  'okay_put',
  'put_posit',
  'posit_make',
  'make_choos',
  'choos_forc',
  'forc_hand',
  'hand_realli',
  'realli_ultim',
  'ultim_choic',
  'choic_forc',
  'forc_hand',
  'hand_complain',
  'complain_ruin',
  'ruin_wed',
  'wed_make',
  'make_resent',
  'resent_toward',
  'toward_stepdad',
  'stepdad_argument',
  'argument_escal',
  'escal_point',
  'point_said',
  'said_come',
  'come_wed',
  'wed_continu',
  'continu_forc',
  'forc_issu',
  'issu_mom',
  'mom_contact',
  'contact_call',
  'call_selfish',
  'selfish_jealou',
  'jealou_spite',
  'spite_whatnot',
  'whatnot_claim',
  'claim_hurt',
  'hurt_chloe',
  'chloe_feel',
  'feel_spite',
  'spite_dare',
  'dare_show',
  'show_appreci',
  'appreci_man',
  'man_step',
  'step_parent',
  'parent_ill',
  'ill_ever',
  'ever_told',
  'told_stay',
  'stay_ityour',
  'ityour_reason',
  'reason_problem',
  'problem_stay',
  'stay_chloe',
  'chloe_chloe',
  'chloe_answer',
  'answer_phonecal',
  'phonecal_tri',
  'tri_speak',
  'speak_fianc',
  'fianc_said',
  'said_chloe',
  'chloe_upset',
  'upset_fact',
  'fact_put',
  'put_feel',
  'feel_disrespect',
  'disrespect_stepdad',
  'stepdad_ask',
  'ask_choos',
  'choos_us',
  'us_advis',
  'advis_one',
  'one_thing',
  'thing_sinc',
  'sinc_import',
  'import_im',
  'im_feel',
  'feel_uneasi',
  'uneasi_even',
  'even_think',
  'think_think',
  'think_ill',
  'ill_ever',
  'ever_okay',
  'year_old_daughter',
  'old_daughter_chloe',
  'daughter_chloe_mom',
  'chloe_mom_never',
  'mom_never_marri',
  'never_marri_circumst',
  'marri_circumst_life',
  'circumst_life_longthen',
  'life_longthen_mom',
  'longthen_mom_got',
  'mom_got_marri',
  'got_marri_stepdad',
  'marri_stepdad_somewhat',
  'stepdad_somewhat_decent',
  'somewhat_decent_guy',
  'decent_guy_nosi',
  'guy_nosi_decent',
  'nosi_decent_came',
  'decent_came_back',
  'came_back_countri',
  'back_countri_chloe',
  'countri_chloe_open',
  'chloe_open_idea',
  'open_idea_rebuild',
  'idea_rebuild_relationship',
  'rebuild_relationship_though',
  'relationship_though_mom',
  'though_mom_alway',
  'mom_alway_throw',
  'alway_throw_face',
  'throw_face_chloe',
  'face_chloe_stepdad',
  'chloe_stepdad_realleg',
  'stepdad_realleg_parent',
  'realleg_parent_alway',
  'parent_alway_chloe',
  'alway_chloe_know',
  'chloe_know_bond',
  'know_bond_chloe',
  'bond_chloe_thing',
  'chloe_thing_id',
  'thing_id_gone',
  'id_gone_past',
  'gone_past_ignor',
  'past_ignor_judgement',
  'ignor_judgement_remark',
  'judgement_remark_chloe',
  'remark_chloe_get',
  'chloe_get_marri',
  'get_marri_come',
  'marri_come_feb',
  'come_feb_taken',
  'feb_taken_back',
  'taken_back_told',
  'back_told_consid',
  'told_consid_stepdad',
  'consid_stepdad_walk',
  'stepdad_walk_aisl',
  'walk_aisl_went',
  'aisl_went_convers',
  'went_convers_talk',
  'convers_talk_uncomfort',
  'talk_uncomfort_idea',
  'uncomfort_idea_talk',
  'idea_talk_stepdad',
  'talk_stepdad_play',
  'stepdad_play_huge',
  'play_huge_part',
  'huge_part_life',
  'part_life_want',
  'life_want_honor',
  'want_honor_includ',
  'honor_includ_told',
  'includ_told_cours',
  'told_cours_absolut',
  'cours_absolut_invalid',
  'absolut_invalid_feel',
  'invalid_feel_deni',
  'feel_deni_much',
  'deni_much_good',
  'much_good_influenc',
  'good_influenc_stepdad',
  'influenc_stepdad_feel',
  'stepdad_feel_comfort',
  'feel_comfort_told',
  'comfort_told_itd',
  'told_itd_ok',
  'itd_ok_guest',
  'ok_guest_said',
  'guest_said_want',
  'said_want_part',
  'want_part_bad',
  'part_bad_said',
  'bad_said_either',
  'said_either_stepdad',
  'either_stepdad_way',
  'stepdad_way_im',
  'way_im_thought',
  'im_thought_petti',
  'thought_petti_got',
  'petti_got_upset',
  'got_upset_say',
  'upset_say_okay',
  'say_okay_put',
  'okay_put_posit',
  'put_posit_make',
  'posit_make_choos',
  'make_choos_forc',
  'choos_forc_hand',
  'forc_hand_realli',
  'hand_realli_ultim',
  'realli_ultim_choic',
  'ultim_choic_forc',
  'choic_forc_hand',
  'forc_hand_complain',
  'hand_complain_ruin',
  'complain_ruin_wed',
  'ruin_wed_make',
  'wed_make_resent',
  'make_resent_toward',
  'resent_toward_stepdad',
  'toward_stepdad_argument',
  'stepdad_argument_escal',
  'argument_escal_point',
  'escal_point_said',
  'point_said_come',
  'said_come_wed',
  'come_wed_continu',
  'wed_continu_forc',
  'continu_forc_issu',
  'forc_issu_mom',
  'issu_mom_contact',
  'mom_contact_call',
  'contact_call_selfish',
  'call_selfish_jealou',
  'selfish_jealou_spite',
  'jealou_spite_whatnot',
  'spite_whatnot_claim',
  'whatnot_claim_hurt',
  'claim_hurt_chloe',
  'hurt_chloe_feel',
  'chloe_feel_spite',
  'feel_spite_dare',
  'spite_dare_show',
  'dare_show_appreci',
  'show_appreci_man',
  'appreci_man_step',
  'man_step_parent',
  'step_parent_ill',
  'parent_ill_ever',
  'ill_ever_told',
  'ever_told_stay',
  'told_stay_ityour',
  'stay_ityour_reason',
  'ityour_reason_problem',
  'reason_problem_stay',
  'problem_stay_chloe',
  'stay_chloe_chloe',
  'chloe_chloe_answer',
  'chloe_answer_phonecal',
  'answer_phonecal_tri',
  'phonecal_tri_speak',
  'tri_speak_fianc',
  'speak_fianc_said',
  'fianc_said_chloe',
  'said_chloe_upset',
  'chloe_upset_fact',
  'upset_fact_put',
  'fact_put_feel',
  'put_feel_disrespect',
  'feel_disrespect_stepdad',
  'disrespect_stepdad_ask',
  'stepdad_ask_choos',
  'ask_choos_us',
  'choos_us_advis',
  'us_advis_one',
  'advis_one_thing',
  'one_thing_sinc',
  'thing_sinc_import',
  'sinc_import_im',
  'import_im_feel',
  'im_feel_uneasi',
  'feel_uneasi_even',
  'uneasi_even_think',
  'even_think_think',
  'think_think_ill',
  'think_ill_ever',
  'ill_ever_okay'],
 ['throw',
  'away',
  'caus',
  'want',
  'famili',
  'member',
  'find',
  'issu',
  'mym',
  'wife',
  'month',
  'pregnant',
  'sinc',
  'pregnant',
  'go',
  'small',
  'thing',
  'like',
  'make',
  'dinner',
  'cook',
  'wrong',
  'thing',
  'pregnant',
  'never',
  'like',
  'alway',
  'sweet',
  'yesterday',
  'wife',
  'came',
  'back',
  'parent',
  'hous',
  'made',
  'homemad',
  'pizza',
  'us',
  'told',
  'want',
  'pizza',
  'cook',
  'someth',
  'els',
  'told',
  'quick',
  'easi',
  'ill',
  'make',
  'ask',
  'homemad',
  'chicken',
  'dumpl',
  'told',
  'im',
  'make',
  'take',
  'age',
  'told',
  'pregnant',
  'crave',
  'dumpl',
  'told',
  'know',
  'pregnant',
  'im',
  'make',
  'dumpl',
  'start',
  'rage',
  'cook',
  'someth',
  'pm',
  'night',
  'im',
  'whip',
  'ingredi',
  'told',
  'make',
  'anyth',
  'pizza',
  'sit',
  'couch',
  'sob',
  'say',
  'love',
  'babi',
  'told',
  'ill',
  'make',
  'dumpl',
  'tomorrow',
  'night',
  'tonight',
  'told',
  'fuck',
  'somewher',
  'els',
  'ask',
  'friend',
  'could',
  'stay',
  'night',
  'said',
  'ye',
  'pack',
  'cloth',
  'slam',
  'door',
  'behind',
  'half',
  'way',
  'friend',
  'wife',
  'text',
  'beg',
  'come',
  'back',
  'told',
  'fuck',
  'like',
  'aita',
  'throw_away',
  'away_caus',
  'caus_want',
  'want_famili',
  'famili_member',
  'member_find',
  'find_issu',
  'issu_mym',
  'mym_wife',
  'wife_month',
  'month_pregnant',
  'pregnant_sinc',
  'sinc_pregnant',
  'pregnant_go',
  'go_small',
  'small_thing',
  'thing_like',
  'like_make',
  'make_dinner',
  'dinner_cook',
  'cook_wrong',
  'wrong_thing',
  'thing_pregnant',
  'pregnant_never',
  'never_like',
  'like_alway',
  'alway_sweet',
  'sweet_yesterday',
  'yesterday_wife',
  'wife_came',
  'came_back',
  'back_parent',
  'parent_hous',
  'hous_made',
  'made_homemad',
  'homemad_pizza',
  'pizza_us',
  'us_told',
  'told_want',
  'want_pizza',
  'pizza_cook',
  'cook_someth',
  'someth_els',
  'els_told',
  'told_quick',
  'quick_easi',
  'easi_ill',
  'ill_make',
  'make_ask',
  'ask_homemad',
  'homemad_chicken',
  'chicken_dumpl',
  'dumpl_told',
  'told_im',
  'im_make',
  'make_take',
  'take_age',
  'age_told',
  'told_pregnant',
  'pregnant_crave',
  'crave_dumpl',
  'dumpl_told',
  'told_know',
  'know_pregnant',
  'pregnant_im',
  'im_make',
  'make_dumpl',
  'dumpl_start',
  'start_rage',
  'rage_cook',
  'cook_someth',
  'someth_pm',
  'pm_night',
  'night_im',
  'im_whip',
  'whip_ingredi',
  'ingredi_told',
  'told_make',
  'make_anyth',
  'anyth_pizza',
  'pizza_sit',
  'sit_couch',
  'couch_sob',
  'sob_say',
  'say_love',
  'love_babi',
  'babi_told',
  'told_ill',
  'ill_make',
  'make_dumpl',
  'dumpl_tomorrow',
  'tomorrow_night',
  'night_tonight',
  'tonight_told',
  'told_fuck',
  'fuck_somewher',
  'somewher_els',
  'els_ask',
  'ask_friend',
  'friend_could',
  'could_stay',
  'stay_night',
  'night_said',
  'said_ye',
  'ye_pack',
  'pack_cloth',
  'cloth_slam',
  'slam_door',
  'door_behind',
  'behind_half',
  'half_way',
  'way_friend',
  'friend_wife',
  'wife_text',
  'text_beg',
  'beg_come',
  'come_back',
  'back_told',
  'told_fuck',
  'fuck_like',
  'like_aita',
  'throw_away_caus',
  'away_caus_want',
  'caus_want_famili',
  'want_famili_member',
  'famili_member_find',
  'member_find_issu',
  'find_issu_mym',
  'issu_mym_wife',
  'mym_wife_month',
  'wife_month_pregnant',
  'month_pregnant_sinc',
  'pregnant_sinc_pregnant',
  'sinc_pregnant_go',
  'pregnant_go_small',
  'go_small_thing',
  'small_thing_like',
  'thing_like_make',
  'like_make_dinner',
  'make_dinner_cook',
  'dinner_cook_wrong',
  'cook_wrong_thing',
  'wrong_thing_pregnant',
  'thing_pregnant_never',
  'pregnant_never_like',
  'never_like_alway',
  'like_alway_sweet',
  'alway_sweet_yesterday',
  'sweet_yesterday_wife',
  'yesterday_wife_came',
  'wife_came_back',
  'came_back_parent',
  'back_parent_hous',
  'parent_hous_made',
  'hous_made_homemad',
  'made_homemad_pizza',
  'homemad_pizza_us',
  'pizza_us_told',
  'us_told_want',
  'told_want_pizza',
  'want_pizza_cook',
  'pizza_cook_someth',
  'cook_someth_els',
  'someth_els_told',
  'els_told_quick',
  'told_quick_easi',
  'quick_easi_ill',
  'easi_ill_make',
  'ill_make_ask',
  'make_ask_homemad',
  'ask_homemad_chicken',
  'homemad_chicken_dumpl',
  'chicken_dumpl_told',
  'dumpl_told_im',
  'told_im_make',
  'im_make_take',
  'make_take_age',
  'take_age_told',
  'age_told_pregnant',
  'told_pregnant_crave',
  'pregnant_crave_dumpl',
  'crave_dumpl_told',
  'dumpl_told_know',
  'told_know_pregnant',
  'know_pregnant_im',
  'pregnant_im_make',
  'im_make_dumpl',
  'make_dumpl_start',
  'dumpl_start_rage',
  'start_rage_cook',
  'rage_cook_someth',
  'cook_someth_pm',
  'someth_pm_night',
  'pm_night_im',
  'night_im_whip',
  'im_whip_ingredi',
  'whip_ingredi_told',
  'ingredi_told_make',
  'told_make_anyth',
  'make_anyth_pizza',
  'anyth_pizza_sit',
  'pizza_sit_couch',
  'sit_couch_sob',
  'couch_sob_say',
  'sob_say_love',
  'say_love_babi',
  'love_babi_told',
  'babi_told_ill',
  'told_ill_make',
  'ill_make_dumpl',
  'make_dumpl_tomorrow',
  'dumpl_tomorrow_night',
  'tomorrow_night_tonight',
  'night_tonight_told',
  'tonight_told_fuck',
  'told_fuck_somewher',
  'fuck_somewher_els',
  'somewher_els_ask',
  'els_ask_friend',
  'ask_friend_could',
  'friend_could_stay',
  'could_stay_night',
  'stay_night_said',
  'night_said_ye',
  'said_ye_pack',
  'ye_pack_cloth',
  'pack_cloth_slam',
  'cloth_slam_door',
  'slam_door_behind',
  'door_behind_half',
  'behind_half_way',
  'half_way_friend',
  'way_friend_wife',
  'friend_wife_text',
  'wife_text_beg',
  'text_beg_come',
  'beg_come_back',
  'come_back_told',
  'back_told_fuck',
  'told_fuck_like',
  'fuck_like_aita'],
 ['husband',
  'one',
  'night',
  'stand',
  'much',
  'counsel',
  'decid',
  'forgiv',
  'work',
  'marriag',
  'unfortun',
  'woman',
  'got',
  'pregnant',
  '-year-old',
  'boy',
  'two',
  '-year-old',
  'french',
  'bulldog',
  'two',
  'kid',
  'husband',
  'unfortun',
  'short',
  'hair',
  'dog',
  'kind',
  'tend',
  'produc',
  'reaction',
  'allerg',
  'fulli',
  'prepar',
  'welcom',
  'child',
  'home',
  'open',
  'arm',
  'best',
  'stepmoth',
  'could',
  'possibl',
  'child',
  'innoc',
  'littl',
  'brother',
  'two',
  'children',
  'husband',
  'visit',
  'everi',
  'weekend',
  'unfortun',
  'child',
  'highli',
  'allerg',
  'dog',
  'mother',
  'demand',
  'get',
  'rid',
  'dog',
  'dog',
  'thick',
  'thin',
  'suffer',
  'sever',
  'depress',
  'husband',
  'cheat',
  'kid',
  'ador',
  'absolut',
  'refus',
  'get',
  'rid',
  'dog',
  'told',
  'husband',
  'either',
  'visit',
  'hotel',
  'get',
  'second',
  'apart',
  'son',
  'build',
  'in-law',
  'unit',
  'expens',
  'garag',
  'told',
  'stipul',
  'come',
  'pocket',
  'may',
  'dip',
  'kid',
  'colleg',
  'fund',
  'dog',
  'stay',
  'child',
  'young',
  'understand',
  'allow',
  'come',
  'hous',
  'feel',
  'left',
  'result',
  'aita',
  'refus',
  'get',
  'rid',
  'dog',
  'husband',
  'cheat',
  'hem',
  'haw',
  'want',
  'thing',
  'peopl',
  'told',
  'divorc',
  'well',
  'away',
  'dog',
  'husband_one',
  'one_night',
  'night_stand',
  'stand_much',
  'much_counsel',
  'counsel_decid',
  'decid_forgiv',
  'forgiv_work',
  'work_marriag',
  'marriag_unfortun',
  'unfortun_woman',
  'woman_got',
  'got_pregnant',
  'pregnant_-year-old',
  '-year-old_boy',
  'boy_two',
  'two_-year-old',
  '-year-old_french',
  'french_bulldog',
  'bulldog_two',
  'two_kid',
  'kid_husband',
  'husband_unfortun',
  'unfortun_short',
  'short_hair',
  'hair_dog',
  'dog_kind',
  'kind_tend',
  'tend_produc',
  'produc_reaction',
  'reaction_allerg',
  'allerg_fulli',
  'fulli_prepar',
  'prepar_welcom',
  'welcom_child',
  'child_home',
  'home_open',
  'open_arm',
  'arm_best',
  'best_stepmoth',
  'stepmoth_could',
  'could_possibl',
  'possibl_child',
  'child_innoc',
  'innoc_littl',
  'littl_brother',
  'brother_two',
  'two_children',
  'children_husband',
  'husband_visit',
  'visit_everi',
  'everi_weekend',
  'weekend_unfortun',
  'unfortun_child',
  'child_highli',
  'highli_allerg',
  'allerg_dog',
  'dog_mother',
  'mother_demand',
  'demand_get',
  'get_rid',
  'rid_dog',
  'dog_dog',
  'dog_thick',
  'thick_thin',
  'thin_suffer',
  'suffer_sever',
  'sever_depress',
  'depress_husband',
  'husband_cheat',
  'cheat_kid',
  'kid_ador',
  'ador_absolut',
  'absolut_refus',
  'refus_get',
  'get_rid',
  'rid_dog',
  'dog_told',
  'told_husband',
  'husband_either',
  'either_visit',
  'visit_hotel',
  'hotel_get',
  'get_second',
  'second_apart',
  'apart_son',
  'son_build',
  'build_in-law',
  'in-law_unit',
  'unit_expens',
  'expens_garag',
  'garag_told',
  'told_stipul',
  'stipul_come',
  'come_pocket',
  'pocket_may',
  'may_dip',
  'dip_kid',
  'kid_colleg',
  'colleg_fund',
  'fund_dog',
  'dog_stay',
  'stay_child',
  'child_young',
  'young_understand',
  'understand_allow',
  'allow_come',
  'come_hous',
  'hous_feel',
  'feel_left',
  'left_result',
  'result_aita',
  'aita_refus',
  'refus_get',
  'get_rid',
  'rid_dog',
  'dog_husband',
  'husband_cheat',
  'cheat_hem',
  'hem_haw',
  'haw_want',
  'want_thing',
  'thing_peopl',
  'peopl_told',
  'told_divorc',
  'divorc_well',
  'well_away',
  'away_dog',
  'husband_one_night',
  'one_night_stand',
  'night_stand_much',
  'stand_much_counsel',
  'much_counsel_decid',
  'counsel_decid_forgiv',
  'decid_forgiv_work',
  'forgiv_work_marriag',
  'work_marriag_unfortun',
  'marriag_unfortun_woman',
  'unfortun_woman_got',
  'woman_got_pregnant',
  'got_pregnant_-year-old',
  'pregnant_-year-old_boy',
  '-year-old_boy_two',
  'boy_two_-year-old',
  'two_-year-old_french',
  '-year-old_french_bulldog',
  'french_bulldog_two',
  'bulldog_two_kid',
  'two_kid_husband',
  'kid_husband_unfortun',
  'husband_unfortun_short',
  'unfortun_short_hair',
  'short_hair_dog',
  'hair_dog_kind',
  'dog_kind_tend',
  'kind_tend_produc',
  'tend_produc_reaction',
  'produc_reaction_allerg',
  'reaction_allerg_fulli',
  'allerg_fulli_prepar',
  'fulli_prepar_welcom',
  'prepar_welcom_child',
  'welcom_child_home',
  'child_home_open',
  'home_open_arm',
  'open_arm_best',
  'arm_best_stepmoth',
  'best_stepmoth_could',
  'stepmoth_could_possibl',
  'could_possibl_child',
  'possibl_child_innoc',
  'child_innoc_littl',
  'innoc_littl_brother',
  'littl_brother_two',
  'brother_two_children',
  'two_children_husband',
  'children_husband_visit',
  'husband_visit_everi',
  'visit_everi_weekend',
  'everi_weekend_unfortun',
  'weekend_unfortun_child',
  'unfortun_child_highli',
  'child_highli_allerg',
  'highli_allerg_dog',
  'allerg_dog_mother',
  'dog_mother_demand',
  'mother_demand_get',
  'demand_get_rid',
  'get_rid_dog',
  'rid_dog_dog',
  'dog_dog_thick',
  'dog_thick_thin',
  'thick_thin_suffer',
  'thin_suffer_sever',
  'suffer_sever_depress',
  'sever_depress_husband',
  'depress_husband_cheat',
  'husband_cheat_kid',
  'cheat_kid_ador',
  'kid_ador_absolut',
  'ador_absolut_refus',
  'absolut_refus_get',
  'refus_get_rid',
  'get_rid_dog',
  'rid_dog_told',
  'dog_told_husband',
  'told_husband_either',
  'husband_either_visit',
  'either_visit_hotel',
  'visit_hotel_get',
  'hotel_get_second',
  'get_second_apart',
  'second_apart_son',
  'apart_son_build',
  'son_build_in-law',
  'build_in-law_unit',
  'in-law_unit_expens',
  'unit_expens_garag',
  'expens_garag_told',
  'garag_told_stipul',
  'told_stipul_come',
  'stipul_come_pocket',
  'come_pocket_may',
  'pocket_may_dip',
  'may_dip_kid',
  'dip_kid_colleg',
  'kid_colleg_fund',
  'colleg_fund_dog',
  'fund_dog_stay',
  'dog_stay_child',
  'stay_child_young',
  'child_young_understand',
  'young_understand_allow',
  'understand_allow_come',
  'allow_come_hous',
  'come_hous_feel',
  'hous_feel_left',
  'feel_left_result',
  'left_result_aita',
  'result_aita_refus',
  'aita_refus_get',
  'refus_get_rid',
  'get_rid_dog',
  'rid_dog_husband',
  'dog_husband_cheat',
  'husband_cheat_hem',
  'cheat_hem_haw',
  'hem_haw_want',
  'haw_want_thing',
  'want_thing_peopl',
  'thing_peopl_told',
  'peopl_told_divorc',
  'told_divorc_well',
  'divorc_well_away',
  'well_away_dog'],
 ['origin',
  'post',
  'httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'want',
  'say',
  'thank',
  'everyon',
  'comment',
  'pmd',
  'advic',
  'first',
  'post',
  'almost',
  'month',
  'ago',
  'receiv',
  'lot',
  'help',
  'advic',
  'took',
  'consider',
  'plan',
  'next',
  'week',
  'post',
  'end',
  'move',
  'friend',
  'kind',
  'enough',
  'let',
  'stay',
  'pay',
  'small',
  'amount',
  'rent',
  'return',
  'also',
  'end',
  'talk',
  'parent',
  'dad',
  'apolog',
  'behaviour',
  'promis',
  'never',
  'make',
  'threat',
  'like',
  'honestli',
  'came',
  'shock',
  'im',
  'glad',
  'thing',
  'got',
  'resolv',
  'us',
  'let',
  'know',
  'stay',
  'friend',
  'pay',
  'small',
  'amount',
  'rent',
  'meantim',
  'process',
  'find',
  'apart',
  'suggest',
  'move',
  'back',
  'free',
  'find',
  'job',
  'place',
  'took',
  'offer',
  'move',
  'back',
  'home',
  'issu',
  'sinc',
  'move',
  'back',
  'finish',
  'grad',
  'school',
  'complet',
  'internship',
  'week',
  'ago',
  'land',
  'full',
  'time',
  'job',
  'field',
  'also',
  'found',
  'apart',
  'min',
  'walk',
  'job',
  'start',
  'job',
  'next',
  'week',
  'move',
  'new',
  'place',
  'week',
  'origin_post',
  'post_httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar',
  'httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_want',
  'want_say',
  'say_thank',
  'thank_everyon',
  'everyon_comment',
  'comment_pmd',
  'pmd_advic',
  'advic_first',
  'first_post',
  'post_almost',
  'almost_month',
  'month_ago',
  'ago_receiv',
  'receiv_lot',
  'lot_help',
  'help_advic',
  'advic_took',
  'took_consider',
  'consider_plan',
  'plan_next',
  'next_week',
  'week_post',
  'post_end',
  'end_move',
  'move_friend',
  'friend_kind',
  'kind_enough',
  'enough_let',
  'let_stay',
  'stay_pay',
  'pay_small',
  'small_amount',
  'amount_rent',
  'rent_return',
  'return_also',
  'also_end',
  'end_talk',
  'talk_parent',
  'parent_dad',
  'dad_apolog',
  'apolog_behaviour',
  'behaviour_promis',
  'promis_never',
  'never_make',
  'make_threat',
  'threat_like',
  'like_honestli',
  'honestli_came',
  'came_shock',
  'shock_im',
  'im_glad',
  'glad_thing',
  'thing_got',
  'got_resolv',
  'resolv_us',
  'us_let',
  'let_know',
  'know_stay',
  'stay_friend',
  'friend_pay',
  'pay_small',
  'small_amount',
  'amount_rent',
  'rent_meantim',
  'meantim_process',
  'process_find',
  'find_apart',
  'apart_suggest',
  'suggest_move',
  'move_back',
  'back_free',
  'free_find',
  'find_job',
  'job_place',
  'place_took',
  'took_offer',
  'offer_move',
  'move_back',
  'back_home',
  'home_issu',
  'issu_sinc',
  'sinc_move',
  'move_back',
  'back_finish',
  'finish_grad',
  'grad_school',
  'school_complet',
  'complet_internship',
  'internship_week',
  'week_ago',
  'ago_land',
  'land_full',
  'full_time',
  'time_job',
  'job_field',
  'field_also',
  'also_found',
  'found_apart',
  'apart_min',
  'min_walk',
  'walk_job',
  'job_start',
  'start_job',
  'job_next',
  'next_week',
  'week_move',
  'move_new',
  'new_place',
  'place_week',
  'origin_post_httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar',
  'post_httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentsuhbtaita_for_quietly_packing_my_stuff_and_leaving_myutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_want',
  'utm_name=iossmf_want_say',
  'want_say_thank',
  'say_thank_everyon',
  'thank_everyon_comment',
  'everyon_comment_pmd',
  'comment_pmd_advic',
  'pmd_advic_first',
  'advic_first_post',
  'first_post_almost',
  'post_almost_month',
  'almost_month_ago',
  'month_ago_receiv',
  'ago_receiv_lot',
  'receiv_lot_help',
  'lot_help_advic',
  'help_advic_took',
  'advic_took_consider',
  'took_consider_plan',
  'consider_plan_next',
  'plan_next_week',
  'next_week_post',
  'week_post_end',
  'post_end_move',
  'end_move_friend',
  'move_friend_kind',
  'friend_kind_enough',
  'kind_enough_let',
  'enough_let_stay',
  'let_stay_pay',
  'stay_pay_small',
  'pay_small_amount',
  'small_amount_rent',
  'amount_rent_return',
  'rent_return_also',
  'return_also_end',
  'also_end_talk',
  'end_talk_parent',
  'talk_parent_dad',
  'parent_dad_apolog',
  'dad_apolog_behaviour',
  'apolog_behaviour_promis',
  'behaviour_promis_never',
  'promis_never_make',
  'never_make_threat',
  'make_threat_like',
  'threat_like_honestli',
  'like_honestli_came',
  'honestli_came_shock',
  'came_shock_im',
  'shock_im_glad',
  'im_glad_thing',
  'glad_thing_got',
  'thing_got_resolv',
  'got_resolv_us',
  'resolv_us_let',
  'us_let_know',
  'let_know_stay',
  'know_stay_friend',
  'stay_friend_pay',
  'friend_pay_small',
  'pay_small_amount',
  'small_amount_rent',
  'amount_rent_meantim',
  'rent_meantim_process',
  'meantim_process_find',
  'process_find_apart',
  'find_apart_suggest',
  'apart_suggest_move',
  'suggest_move_back',
  'move_back_free',
  'back_free_find',
  'free_find_job',
  'find_job_place',
  'job_place_took',
  'place_took_offer',
  'took_offer_move',
  'offer_move_back',
  'move_back_home',
  'back_home_issu',
  'home_issu_sinc',
  'issu_sinc_move',
  'sinc_move_back',
  'move_back_finish',
  'back_finish_grad',
  'finish_grad_school',
  'grad_school_complet',
  'school_complet_internship',
  'complet_internship_week',
  'internship_week_ago',
  'week_ago_land',
  'ago_land_full',
  'land_full_time',
  'full_time_job',
  'time_job_field',
  'job_field_also',
  'field_also_found',
  'also_found_apart',
  'found_apart_min',
  'apart_min_walk',
  'min_walk_job',
  'walk_job_start',
  'job_start_job',
  'start_job_next',
  'job_next_week',
  'next_week_move',
  'week_move_new',
  'move_new_place',
  'new_place_week'],
 ['high',
  'school',
  'friend',
  'diana',
  'recent',
  'got',
  'master',
  'degre',
  'live',
  'anoth',
  'citi',
  'bare',
  'ever',
  'saw',
  'alway',
  'busi',
  'long',
  'phone',
  'call',
  'talk',
  'briefli',
  'everi',
  'time',
  'spent',
  'degre',
  'manag',
  'get',
  'marri',
  'start',
  'famili',
  'diana',
  'visit',
  'famili',
  'met',
  'lunch',
  'ask',
  'degre',
  'work',
  'prospect',
  'etc',
  'master',
  'translat',
  'interpret',
  'someth',
  'like',
  'said',
  'got',
  'job',
  'move',
  'brussel',
  'told',
  'crazi',
  'cant',
  'find',
  'job',
  'local',
  'degre',
  'wast',
  'time',
  'move',
  'anoth',
  'countri',
  'said',
  'amaz',
  'job',
  'opportun',
  'get',
  'anywher',
  'around',
  'appar',
  'job',
  'relat',
  'eu',
  'parliament',
  'whatev',
  'admit',
  'lost',
  'abbrevi',
  'use',
  'said',
  'amaz',
  'opportun',
  'excit',
  'ask',
  'pay',
  'told',
  'said',
  'husband',
  'earn',
  'without',
  'degre',
  'right',
  'easter',
  'time',
  'money',
  'said',
  'start',
  'salari',
  'itll',
  'grow',
  'first',
  'year',
  'saw',
  'pretti',
  'much',
  'train',
  'junior',
  'posit',
  'said',
  'couldv',
  'gotten',
  'similar',
  'job',
  'wast',
  'year',
  'andi',
  'instead',
  'couldv',
  'alreadi',
  'work',
  'andi',
  'start',
  'famili',
  'rude',
  'said',
  'unhappi',
  'want',
  'famili',
  'threw',
  'face',
  'appar',
  'im',
  'alway',
  'complain',
  'husband',
  'im',
  'criticis',
  'best',
  'husband',
  'world',
  'told',
  'ridicul',
  'mean',
  'call',
  'asshol',
  'paid',
  'left',
  'restaur',
  'tod',
  'friend',
  'theyr',
  'split',
  'asshol',
  'tell',
  'aita',
  'tell',
  'truth',
  'high_school',
  'school_friend',
  'friend_diana',
  'diana_recent',
  'recent_got',
  'got_master',
  'master_degre',
  'degre_live',
  'live_anoth',
  'anoth_citi',
  'citi_bare',
  'bare_ever',
  'ever_saw',
  'saw_alway',
  'alway_busi',
  'busi_long',
  'long_phone',
  'phone_call',
  'call_talk',
  'talk_briefli',
  'briefli_everi',
  'everi_time',
  'time_spent',
  'spent_degre',
  'degre_manag',
  'manag_get',
  'get_marri',
  'marri_start',
  'start_famili',
  'famili_diana',
  'diana_visit',
  'visit_famili',
  'famili_met',
  'met_lunch',
  'lunch_ask',
  'ask_degre',
  'degre_work',
  'work_prospect',
  'prospect_etc',
  'etc_master',
  'master_translat',
  'translat_interpret',
  'interpret_someth',
  'someth_like',
  'like_said',
  'said_got',
  'got_job',
  'job_move',
  'move_brussel',
  'brussel_told',
  'told_crazi',
  'crazi_cant',
  'cant_find',
  'find_job',
  'job_local',
  'local_degre',
  'degre_wast',
  'wast_time',
  'time_move',
  'move_anoth',
  'anoth_countri',
  'countri_said',
  'said_amaz',
  'amaz_job',
  'job_opportun',
  'opportun_get',
  'get_anywher',
  'anywher_around',
  'around_appar',
  'appar_job',
  'job_relat',
  'relat_eu',
  'eu_parliament',
  'parliament_whatev',
  'whatev_admit',
  'admit_lost',
  'lost_abbrevi',
  'abbrevi_use',
  'use_said',
  'said_amaz',
  'amaz_opportun',
  'opportun_excit',
  'excit_ask',
  'ask_pay',
  'pay_told',
  'told_said',
  'said_husband',
  'husband_earn',
  'earn_without',
  'without_degre',
  'degre_right',
  'right_easter',
  'easter_time',
  'time_money',
  'money_said',
  'said_start',
  'start_salari',
  'salari_itll',
  'itll_grow',
  'grow_first',
  'first_year',
  'year_saw',
  'saw_pretti',
  'pretti_much',
  'much_train',
  'train_junior',
  'junior_posit',
  'posit_said',
  'said_couldv',
  'couldv_gotten',
  'gotten_similar',
  'similar_job',
  'job_wast',
  'wast_year',
  'year_andi',
  'andi_instead',
  'instead_couldv',
  'couldv_alreadi',
  'alreadi_work',
  'work_andi',
  'andi_start',
  'start_famili',
  'famili_rude',
  'rude_said',
  'said_unhappi',
  'unhappi_want',
  'want_famili',
  'famili_threw',
  'threw_face',
  'face_appar',
  'appar_im',
  'im_alway',
  'alway_complain',
  'complain_husband',
  'husband_im',
  'im_criticis',
  'criticis_best',
  'best_husband',
  'husband_world',
  'world_told',
  'told_ridicul',
  'ridicul_mean',
  'mean_call',
  'call_asshol',
  'asshol_paid',
  'paid_left',
  'left_restaur',
  'restaur_tod',
  'tod_friend',
  'friend_theyr',
  'theyr_split',
  'split_asshol',
  'asshol_tell',
  'tell_aita',
  'aita_tell',
  'tell_truth',
  'high_school_friend',
  'school_friend_diana',
  'friend_diana_recent',
  'diana_recent_got',
  'recent_got_master',
  'got_master_degre',
  'master_degre_live',
  'degre_live_anoth',
  'live_anoth_citi',
  'anoth_citi_bare',
  'citi_bare_ever',
  'bare_ever_saw',
  'ever_saw_alway',
  'saw_alway_busi',
  'alway_busi_long',
  'busi_long_phone',
  'long_phone_call',
  'phone_call_talk',
  'call_talk_briefli',
  'talk_briefli_everi',
  'briefli_everi_time',
  'everi_time_spent',
  'time_spent_degre',
  'spent_degre_manag',
  'degre_manag_get',
  'manag_get_marri',
  'get_marri_start',
  'marri_start_famili',
  'start_famili_diana',
  'famili_diana_visit',
  'diana_visit_famili',
  'visit_famili_met',
  'famili_met_lunch',
  'met_lunch_ask',
  'lunch_ask_degre',
  'ask_degre_work',
  'degre_work_prospect',
  'work_prospect_etc',
  'prospect_etc_master',
  'etc_master_translat',
  'master_translat_interpret',
  'translat_interpret_someth',
  'interpret_someth_like',
  'someth_like_said',
  'like_said_got',
  'said_got_job',
  'got_job_move',
  'job_move_brussel',
  'move_brussel_told',
  'brussel_told_crazi',
  'told_crazi_cant',
  'crazi_cant_find',
  'cant_find_job',
  'find_job_local',
  'job_local_degre',
  'local_degre_wast',
  'degre_wast_time',
  'wast_time_move',
  'time_move_anoth',
  'move_anoth_countri',
  'anoth_countri_said',
  'countri_said_amaz',
  'said_amaz_job',
  'amaz_job_opportun',
  'job_opportun_get',
  'opportun_get_anywher',
  'get_anywher_around',
  'anywher_around_appar',
  'around_appar_job',
  'appar_job_relat',
  'job_relat_eu',
  'relat_eu_parliament',
  'eu_parliament_whatev',
  'parliament_whatev_admit',
  'whatev_admit_lost',
  'admit_lost_abbrevi',
  'lost_abbrevi_use',
  'abbrevi_use_said',
  'use_said_amaz',
  'said_amaz_opportun',
  'amaz_opportun_excit',
  'opportun_excit_ask',
  'excit_ask_pay',
  'ask_pay_told',
  'pay_told_said',
  'told_said_husband',
  'said_husband_earn',
  'husband_earn_without',
  'earn_without_degre',
  'without_degre_right',
  'degre_right_easter',
  'right_easter_time',
  'easter_time_money',
  'time_money_said',
  'money_said_start',
  'said_start_salari',
  'start_salari_itll',
  'salari_itll_grow',
  'itll_grow_first',
  'grow_first_year',
  'first_year_saw',
  'year_saw_pretti',
  'saw_pretti_much',
  'pretti_much_train',
  'much_train_junior',
  'train_junior_posit',
  'junior_posit_said',
  'posit_said_couldv',
  'said_couldv_gotten',
  'couldv_gotten_similar',
  'gotten_similar_job',
  'similar_job_wast',
  'job_wast_year',
  'wast_year_andi',
  'year_andi_instead',
  'andi_instead_couldv',
  'instead_couldv_alreadi',
  'couldv_alreadi_work',
  'alreadi_work_andi',
  'work_andi_start',
  'andi_start_famili',
  'start_famili_rude',
  'famili_rude_said',
  'rude_said_unhappi',
  'said_unhappi_want',
  'unhappi_want_famili',
  'want_famili_threw',
  'famili_threw_face',
  'threw_face_appar',
  'face_appar_im',
  'appar_im_alway',
  'im_alway_complain',
  'alway_complain_husband',
  'complain_husband_im',
  'husband_im_criticis',
  'im_criticis_best',
  'criticis_best_husband',
  'best_husband_world',
  'husband_world_told',
  'world_told_ridicul',
  'told_ridicul_mean',
  'ridicul_mean_call',
  'mean_call_asshol',
  'call_asshol_paid',
  'asshol_paid_left',
  'paid_left_restaur',
  'left_restaur_tod',
  'restaur_tod_friend',
  'tod_friend_theyr',
  'friend_theyr_split',
  'theyr_split_asshol',
  'split_asshol_tell',
  'asshol_tell_aita',
  'tell_aita_tell',
  'aita_tell_truth'],
 ['basic',
  'brother',
  'inlaw',
  'husband',
  'brother',
  'pass',
  'away',
  'cancer',
  'week',
  'ago',
  'widowwif',
  'aka',
  'sister',
  'inlaw',
  'never',
  'realli',
  'good',
  'term',
  'inlawsh',
  'inlaw',
  'issu',
  'past',
  'gather',
  'mother',
  'inlaw',
  'plan',
  'go',
  'court',
  'grandpar',
  'right',
  'get',
  'visit',
  'kid',
  'inlaw',
  'ask',
  'sister',
  'inlaw',
  'give',
  'brother',
  'inlaw',
  'wed',
  'ring',
  'could',
  'keep',
  'refus',
  'got',
  'huge',
  'argument',
  'left',
  'kid',
  'went',
  'home',
  'yesterday',
  'hope',
  'take',
  'ring',
  'told',
  'buri',
  'brother',
  'inlaw',
  'parent',
  'inlaw',
  'mention',
  'devast',
  'suggest',
  'might',
  'lie',
  'get',
  'drop',
  'suddenli',
  'got',
  'quickli',
  'got',
  'car',
  'went',
  'hous',
  'anoth',
  'huge',
  'argument',
  'sister',
  'inlaw',
  'call',
  'later',
  'cuss',
  'say',
  'horribl',
  'basic',
  'meddl',
  'life',
  'encourag',
  'inlaw',
  'come',
  'harrass',
  'argu',
  'made',
  'suggest',
  'real',
  'issu',
  'hung',
  'tell',
  'mind',
  'busi',
  'stop',
  'get',
  'involv',
  'husband',
  'berat',
  'said',
  'said',
  'parent',
  'crazi',
  'approv',
  'behavior',
  'even',
  'help',
  'harrass',
  'griev',
  'sister',
  'inlaw',
  'mean',
  'parent',
  'inlaw',
  'also',
  'griev',
  'griev',
  'sister',
  'inlaw',
  'word',
  'hurt',
  'make',
  'suggest',
  'saw',
  'devast',
  'parent',
  'inlaw',
  'edit',
  'sister',
  'inlaw',
  'close',
  'seem',
  'resent',
  'reason',
  'even',
  'sitat',
  'took',
  'place',
  'basic_brother',
  'brother_inlaw',
  'inlaw_husband',
  'husband_brother',
  'brother_pass',
  'pass_away',
  'away_cancer',
  'cancer_week',
  'week_ago',
  'ago_widowwif',
  'widowwif_aka',
  'aka_sister',
  'sister_inlaw',
  'inlaw_never',
  'never_realli',
  'realli_good',
  'good_term',
  'term_inlawsh',
  'inlawsh_inlaw',
  'inlaw_issu',
  'issu_past',
  'past_gather',
  'gather_mother',
  'mother_inlaw',
  'inlaw_plan',
  'plan_go',
  'go_court',
  'court_grandpar',
  'grandpar_right',
  'right_get',
  'get_visit',
  'visit_kid',
  'kid_inlaw',
  'inlaw_ask',
  'ask_sister',
  'sister_inlaw',
  'inlaw_give',
  'give_brother',
  'brother_inlaw',
  'inlaw_wed',
  'wed_ring',
  'ring_could',
  'could_keep',
  'keep_refus',
  'refus_got',
  'got_huge',
  'huge_argument',
  'argument_left',
  'left_kid',
  'kid_went',
  'went_home',
  'home_yesterday',
  'yesterday_hope',
  'hope_take',
  'take_ring',
  'ring_told',
  'told_buri',
  'buri_brother',
  'brother_inlaw',
  'inlaw_parent',
  'parent_inlaw',
  'inlaw_mention',
  'mention_devast',
  'devast_suggest',
  'suggest_might',
  'might_lie',
  'lie_get',
  'get_drop',
  'drop_suddenli',
  'suddenli_got',
  'got_quickli',
  'quickli_got',
  'got_car',
  'car_went',
  'went_hous',
  'hous_anoth',
  'anoth_huge',
  'huge_argument',
  'argument_sister',
  'sister_inlaw',
  'inlaw_call',
  'call_later',
  'later_cuss',
  'cuss_say',
  'say_horribl',
  'horribl_basic',
  'basic_meddl',
  'meddl_life',
  'life_encourag',
  'encourag_inlaw',
  'inlaw_come',
  'come_harrass',
  'harrass_argu',
  'argu_made',
  'made_suggest',
  'suggest_real',
  'real_issu',
  'issu_hung',
  'hung_tell',
  'tell_mind',
  'mind_busi',
  'busi_stop',
  'stop_get',
  'get_involv',
  'involv_husband',
  'husband_berat',
  'berat_said',
  'said_said',
  'said_parent',
  'parent_crazi',
  'crazi_approv',
  'approv_behavior',
  'behavior_even',
  'even_help',
  'help_harrass',
  'harrass_griev',
  'griev_sister',
  'sister_inlaw',
  'inlaw_mean',
  'mean_parent',
  'parent_inlaw',
  'inlaw_also',
  'also_griev',
  'griev_griev',
  'griev_sister',
  'sister_inlaw',
  'inlaw_word',
  'word_hurt',
  'hurt_make',
  'make_suggest',
  'suggest_saw',
  'saw_devast',
  'devast_parent',
  'parent_inlaw',
  'inlaw_edit',
  'edit_sister',
  'sister_inlaw',
  'inlaw_close',
  'close_seem',
  'seem_resent',
  'resent_reason',
  'reason_even',
  'even_sitat',
  'sitat_took',
  'took_place',
  'basic_brother_inlaw',
  'brother_inlaw_husband',
  'inlaw_husband_brother',
  'husband_brother_pass',
  'brother_pass_away',
  'pass_away_cancer',
  'away_cancer_week',
  'cancer_week_ago',
  'week_ago_widowwif',
  'ago_widowwif_aka',
  'widowwif_aka_sister',
  'aka_sister_inlaw',
  'sister_inlaw_never',
  'inlaw_never_realli',
  'never_realli_good',
  'realli_good_term',
  'good_term_inlawsh',
  'term_inlawsh_inlaw',
  'inlawsh_inlaw_issu',
  'inlaw_issu_past',
  'issu_past_gather',
  'past_gather_mother',
  'gather_mother_inlaw',
  'mother_inlaw_plan',
  'inlaw_plan_go',
  'plan_go_court',
  'go_court_grandpar',
  'court_grandpar_right',
  'grandpar_right_get',
  'right_get_visit',
  'get_visit_kid',
  'visit_kid_inlaw',
  'kid_inlaw_ask',
  'inlaw_ask_sister',
  'ask_sister_inlaw',
  'sister_inlaw_give',
  'inlaw_give_brother',
  'give_brother_inlaw',
  'brother_inlaw_wed',
  'inlaw_wed_ring',
  'wed_ring_could',
  'ring_could_keep',
  'could_keep_refus',
  'keep_refus_got',
  'refus_got_huge',
  'got_huge_argument',
  'huge_argument_left',
  'argument_left_kid',
  'left_kid_went',
  'kid_went_home',
  'went_home_yesterday',
  'home_yesterday_hope',
  'yesterday_hope_take',
  'hope_take_ring',
  'take_ring_told',
  'ring_told_buri',
  'told_buri_brother',
  'buri_brother_inlaw',
  'brother_inlaw_parent',
  'inlaw_parent_inlaw',
  'parent_inlaw_mention',
  'inlaw_mention_devast',
  'mention_devast_suggest',
  'devast_suggest_might',
  'suggest_might_lie',
  'might_lie_get',
  'lie_get_drop',
  'get_drop_suddenli',
  'drop_suddenli_got',
  'suddenli_got_quickli',
  'got_quickli_got',
  'quickli_got_car',
  'got_car_went',
  'car_went_hous',
  'went_hous_anoth',
  'hous_anoth_huge',
  'anoth_huge_argument',
  'huge_argument_sister',
  'argument_sister_inlaw',
  'sister_inlaw_call',
  'inlaw_call_later',
  'call_later_cuss',
  'later_cuss_say',
  'cuss_say_horribl',
  'say_horribl_basic',
  'horribl_basic_meddl',
  'basic_meddl_life',
  'meddl_life_encourag',
  'life_encourag_inlaw',
  'encourag_inlaw_come',
  'inlaw_come_harrass',
  'come_harrass_argu',
  'harrass_argu_made',
  'argu_made_suggest',
  'made_suggest_real',
  'suggest_real_issu',
  'real_issu_hung',
  'issu_hung_tell',
  'hung_tell_mind',
  'tell_mind_busi',
  'mind_busi_stop',
  'busi_stop_get',
  'stop_get_involv',
  'get_involv_husband',
  'involv_husband_berat',
  'husband_berat_said',
  'berat_said_said',
  'said_said_parent',
  'said_parent_crazi',
  'parent_crazi_approv',
  'crazi_approv_behavior',
  'approv_behavior_even',
  'behavior_even_help',
  'even_help_harrass',
  'help_harrass_griev',
  'harrass_griev_sister',
  'griev_sister_inlaw',
  'sister_inlaw_mean',
  'inlaw_mean_parent',
  'mean_parent_inlaw',
  'parent_inlaw_also',
  'inlaw_also_griev',
  'also_griev_griev',
  'griev_griev_sister',
  'griev_sister_inlaw',
  'sister_inlaw_word',
  'inlaw_word_hurt',
  'word_hurt_make',
  'hurt_make_suggest',
  'make_suggest_saw',
  'suggest_saw_devast',
  'saw_devast_parent',
  'devast_parent_inlaw',
  'parent_inlaw_edit',
  'inlaw_edit_sister',
  'edit_sister_inlaw',
  'sister_inlaw_close',
  'inlaw_close_seem',
  'close_seem_resent',
  'seem_resent_reason',
  'resent_reason_even',
  'reason_even_sitat',
  'even_sitat_took',
  'sitat_took_place'],
 ['basic',
  'titl',
  'daughter',
  'thing',
  'bake',
  'bake',
  'cake',
  'said',
  'sweet',
  'make',
  'money',
  'sell',
  'work',
  'rel',
  'friend',
  'supposedli',
  'us',
  'husband',
  'stepdad',
  'th',
  'birthday',
  'took',
  'place',
  'day',
  'ago',
  'ask',
  'daughter',
  'bake',
  'birthday',
  'cake',
  'agre',
  'told',
  'pay',
  'respond',
  'pfff',
  'pay',
  'get',
  'outta',
  'im',
  'dad',
  'insist',
  'see',
  'ye',
  'person',
  'peopl',
  'pleaser',
  'outright',
  'demand',
  'money',
  'said',
  'hed',
  'pay',
  'day',
  'went',
  'pay',
  'cent',
  'decid',
  'go',
  'ahead',
  'sell',
  'wrist',
  'watch',
  'bought',
  'birthday',
  'cake',
  'pay',
  'foubd',
  'went',
  'told',
  'rnough',
  'time',
  'paid',
  'seven',
  'reciev',
  'cake',
  'said',
  'teach',
  'treat',
  'famili',
  'relationship',
  'transact',
  'raid',
  'materialist',
  'explain',
  'time',
  'effort',
  'even',
  'money',
  'put',
  'toward',
  'make',
  'cake',
  'lash',
  'verbal',
  'call',
  'asshll',
  'make',
  'move',
  'enabl',
  'daughter',
  'expect',
  'much',
  'famili',
  'suppos',
  'help',
  'noth',
  'return',
  'furiou',
  'told',
  'almost',
  'whole',
  'famili',
  'took',
  'back',
  'birthday',
  'gift',
  'return',
  'got',
  'enough',
  'shame',
  'famili',
  'member',
  'begin',
  'think',
  'might',
  'asshol',
  'dealt',
  'aita',
  'yall',
  'daughter',
  'want',
  'expect',
  'paid',
  'intend',
  'free',
  'would',
  'kept',
  'mouth',
  'shut',
  'also',
  'wristwatch',
  'idnt',
  'expens',
  'kept',
  'rest',
  'money',
  'give',
  'daughter',
  'share',
  'basic_titl',
  'titl_daughter',
  'daughter_thing',
  'thing_bake',
  'bake_bake',
  'bake_cake',
  'cake_said',
  'said_sweet',
  'sweet_make',
  'make_money',
  'money_sell',
  'sell_work',
  'work_rel',
  'rel_friend',
  'friend_supposedli',
  'supposedli_us',
  'us_husband',
  'husband_stepdad',
  'stepdad_th',
  'th_birthday',
  'birthday_took',
  'took_place',
  'place_day',
  'day_ago',
  'ago_ask',
  'ask_daughter',
  'daughter_bake',
  'bake_birthday',
  'birthday_cake',
  'cake_agre',
  'agre_told',
  'told_pay',
  'pay_respond',
  'respond_pfff',
  'pfff_pay',
  'pay_get',
  'get_outta',
  'outta_im',
  'im_dad',
  'dad_insist',
  'insist_see',
  'see_ye',
  'ye_person',
  'person_peopl',
  'peopl_pleaser',
  'pleaser_outright',
  'outright_demand',
  'demand_money',
  'money_said',
  'said_hed',
  'hed_pay',
  'pay_day',
  'day_went',
  'went_pay',
  'pay_cent',
  'cent_decid',
  'decid_go',
  'go_ahead',
  'ahead_sell',
  'sell_wrist',
  'wrist_watch',
  'watch_bought',
  'bought_birthday',
  'birthday_cake',
  'cake_pay',
  'pay_foubd',
  'foubd_went',
  'went_told',
  'told_rnough',
  'rnough_time',
  'time_paid',
  'paid_seven',
  'seven_reciev',
  'reciev_cake',
  'cake_said',
  'said_teach',
  'teach_treat',
  'treat_famili',
  'famili_relationship',
  'relationship_transact',
  'transact_raid',
  'raid_materialist',
  'materialist_explain',
  'explain_time',
  'time_effort',
  'effort_even',
  'even_money',
  'money_put',
  'put_toward',
  'toward_make',
  'make_cake',
  'cake_lash',
  'lash_verbal',
  'verbal_call',
  'call_asshll',
  'asshll_make',
  'make_move',
  'move_enabl',
  'enabl_daughter',
  'daughter_expect',
  'expect_much',
  'much_famili',
  'famili_suppos',
  'suppos_help',
  'help_noth',
  'noth_return',
  'return_furiou',
  'furiou_told',
  'told_almost',
  'almost_whole',
  'whole_famili',
  'famili_took',
  'took_back',
  'back_birthday',
  'birthday_gift',
  'gift_return',
  'return_got',
  'got_enough',
  'enough_shame',
  'shame_famili',
  'famili_member',
  'member_begin',
  'begin_think',
  'think_might',
  'might_asshol',
  'asshol_dealt',
  'dealt_aita',
  'aita_yall',
  'yall_daughter',
  'daughter_want',
  'want_expect',
  'expect_paid',
  'paid_intend',
  'intend_free',
  'free_would',
  'would_kept',
  'kept_mouth',
  'mouth_shut',
  'shut_also',
  'also_wristwatch',
  'wristwatch_idnt',
  'idnt_expens',
  'expens_kept',
  'kept_rest',
  'rest_money',
  'money_give',
  'give_daughter',
  'daughter_share',
  'basic_titl_daughter',
  'titl_daughter_thing',
  'daughter_thing_bake',
  'thing_bake_bake',
  'bake_bake_cake',
  'bake_cake_said',
  'cake_said_sweet',
  'said_sweet_make',
  'sweet_make_money',
  'make_money_sell',
  'money_sell_work',
  'sell_work_rel',
  'work_rel_friend',
  'rel_friend_supposedli',
  'friend_supposedli_us',
  'supposedli_us_husband',
  'us_husband_stepdad',
  'husband_stepdad_th',
  'stepdad_th_birthday',
  'th_birthday_took',
  'birthday_took_place',
  'took_place_day',
  'place_day_ago',
  'day_ago_ask',
  'ago_ask_daughter',
  'ask_daughter_bake',
  'daughter_bake_birthday',
  'bake_birthday_cake',
  'birthday_cake_agre',
  'cake_agre_told',
  'agre_told_pay',
  'told_pay_respond',
  'pay_respond_pfff',
  'respond_pfff_pay',
  'pfff_pay_get',
  'pay_get_outta',
  'get_outta_im',
  'outta_im_dad',
  'im_dad_insist',
  'dad_insist_see',
  'insist_see_ye',
  'see_ye_person',
  'ye_person_peopl',
  'person_peopl_pleaser',
  'peopl_pleaser_outright',
  'pleaser_outright_demand',
  'outright_demand_money',
  'demand_money_said',
  'money_said_hed',
  'said_hed_pay',
  'hed_pay_day',
  'pay_day_went',
  'day_went_pay',
  'went_pay_cent',
  'pay_cent_decid',
  'cent_decid_go',
  'decid_go_ahead',
  'go_ahead_sell',
  'ahead_sell_wrist',
  'sell_wrist_watch',
  'wrist_watch_bought',
  'watch_bought_birthday',
  'bought_birthday_cake',
  'birthday_cake_pay',
  'cake_pay_foubd',
  'pay_foubd_went',
  'foubd_went_told',
  'went_told_rnough',
  'told_rnough_time',
  'rnough_time_paid',
  'time_paid_seven',
  'paid_seven_reciev',
  'seven_reciev_cake',
  'reciev_cake_said',
  'cake_said_teach',
  'said_teach_treat',
  'teach_treat_famili',
  'treat_famili_relationship',
  'famili_relationship_transact',
  'relationship_transact_raid',
  'transact_raid_materialist',
  'raid_materialist_explain',
  'materialist_explain_time',
  'explain_time_effort',
  'time_effort_even',
  'effort_even_money',
  'even_money_put',
  'money_put_toward',
  'put_toward_make',
  'toward_make_cake',
  'make_cake_lash',
  'cake_lash_verbal',
  'lash_verbal_call',
  'verbal_call_asshll',
  'call_asshll_make',
  'asshll_make_move',
  'make_move_enabl',
  'move_enabl_daughter',
  'enabl_daughter_expect',
  'daughter_expect_much',
  'expect_much_famili',
  'much_famili_suppos',
  'famili_suppos_help',
  'suppos_help_noth',
  'help_noth_return',
  'noth_return_furiou',
  'return_furiou_told',
  'furiou_told_almost',
  'told_almost_whole',
  'almost_whole_famili',
  'whole_famili_took',
  'famili_took_back',
  'took_back_birthday',
  'back_birthday_gift',
  'birthday_gift_return',
  'gift_return_got',
  'return_got_enough',
  'got_enough_shame',
  'enough_shame_famili',
  'shame_famili_member',
  'famili_member_begin',
  'member_begin_think',
  'begin_think_might',
  'think_might_asshol',
  'might_asshol_dealt',
  'asshol_dealt_aita',
  'dealt_aita_yall',
  'aita_yall_daughter',
  'yall_daughter_want',
  'daughter_want_expect',
  'want_expect_paid',
  'expect_paid_intend',
  'paid_intend_free',
  'intend_free_would',
  'free_would_kept',
  'would_kept_mouth',
  'kept_mouth_shut',
  'mouth_shut_also',
  'shut_also_wristwatch',
  'also_wristwatch_idnt',
  'wristwatch_idnt_expens',
  'idnt_expens_kept',
  'expens_kept_rest',
  'kept_rest_money',
  'rest_money_give',
  'money_give_daughter',
  'give_daughter_share'],
 ['epilepsi',
  'seizur',
  'bc',
  'take',
  'medic',
  'seizur',
  'condit',
  'control',
  'mani',
  'ppl',
  'life',
  'rlli',
  'get',
  'except',
  'dad',
  'unfortun',
  'mom',
  'dad',
  'separ',
  'yr',
  'start',
  'date',
  'guy',
  'jeff',
  'singl',
  'dad',
  'kid',
  'age',
  '&',
  'come',
  'kid',
  'visit',
  'us',
  'everi',
  'week',
  'yesterday',
  'visit',
  'brought',
  'kid',
  'usuallylik',
  'sit',
  'get',
  'know',
  'futur',
  'stepsibl',
  'better',
  'mom',
  'say',
  'anyway',
  'sit',
  'grab',
  'medic',
  'made',
  'jeff',
  'side',
  'eye',
  'like',
  'sec',
  'told',
  'kid',
  'go',
  'room',
  'start',
  'berat',
  'ask',
  'hell',
  'confus',
  'languag',
  'know',
  'meant',
  'told',
  'ok',
  'take',
  'medic',
  'infront',
  'kidsi',
  'like',
  'start',
  'rant',
  'kid',
  'see',
  'stuff',
  'went',
  'room',
  'room',
  'take',
  'medic',
  'import',
  'shock',
  'mom',
  'even',
  'say',
  'anyth',
  'time',
  'rlli',
  'got',
  'question',
  'said',
  'stepsubk',
  'theyr',
  'young',
  'age',
  'expos',
  'sight',
  'im',
  'gon',
  'come',
  'better',
  'way',
  'deal',
  'condit',
  'medic',
  'intak',
  'want',
  'kid',
  'expos',
  'start',
  'live',
  'togeth',
  'famili',
  'told',
  'problem',
  'caus',
  'argument',
  'escal',
  'mom',
  'side',
  'go',
  'room',
  'calm',
  'bit',
  'kid',
  'left',
  'mom',
  'pick',
  'anoth',
  'argument',
  'say',
  'consuder',
  'kid',
  'see',
  'medic',
  'said',
  'jeff',
  'point',
  'rude',
  'told',
  'expect',
  'apolog',
  'get',
  'right',
  'jeff',
  'next',
  'time',
  'visit',
  'said',
  'im',
  'punish',
  'next',
  'weekend',
  'attitud',
  'toward',
  'stepda',
  'asshol',
  'epilepsi_seizur',
  'seizur_bc',
  'bc_take',
  'take_medic',
  'medic_seizur',
  'seizur_condit',
  'condit_control',
  'control_mani',
  'mani_ppl',
  'ppl_life',
  'life_rlli',
  'rlli_get',
  'get_except',
  'except_dad',
  'dad_unfortun',
  'unfortun_mom',
  'mom_dad',
  'dad_separ',
  'separ_yr',
  'yr_start',
  'start_date',
  'date_guy',
  'guy_jeff',
  'jeff_singl',
  'singl_dad',
  'dad_kid',
  'kid_age',
  'age_&',
  '&_come',
  'come_kid',
  'kid_visit',
  'visit_us',
  'us_everi',
  'everi_week',
  'week_yesterday',
  'yesterday_visit',
  'visit_brought',
  'brought_kid',
  'kid_usuallylik',
  'usuallylik_sit',
  'sit_get',
  'get_know',
  'know_futur',
  'futur_stepsibl',
  'stepsibl_better',
  'better_mom',
  'mom_say',
  'say_anyway',
  'anyway_sit',
  'sit_grab',
  'grab_medic',
  'medic_made',
  'made_jeff',
  'jeff_side',
  'side_eye',
  'eye_like',
  'like_sec',
  'sec_told',
  'told_kid',
  'kid_go',
  'go_room',
  'room_start',
  'start_berat',
  'berat_ask',
  'ask_hell',
  'hell_confus',
  'confus_languag',
  'languag_know',
  'know_meant',
  'meant_told',
  'told_ok',
  'ok_take',
  'take_medic',
  'medic_infront',
  'infront_kidsi',
  'kidsi_like',
  'like_start',
  'start_rant',
  'rant_kid',
  'kid_see',
  'see_stuff',
  'stuff_went',
  'went_room',
  'room_room',
  'room_take',
  'take_medic',
  'medic_import',
  'import_shock',
  'shock_mom',
  'mom_even',
  'even_say',
  'say_anyth',
  'anyth_time',
  'time_rlli',
  'rlli_got',
  'got_question',
  'question_said',
  'said_stepsubk',
  'stepsubk_theyr',
  'theyr_young',
  'young_age',
  'age_expos',
  'expos_sight',
  'sight_im',
  'im_gon',
  'gon_come',
  'come_better',
  'better_way',
  'way_deal',
  'deal_condit',
  'condit_medic',
  'medic_intak',
  'intak_want',
  'want_kid',
  'kid_expos',
  'expos_start',
  'start_live',
  'live_togeth',
  'togeth_famili',
  'famili_told',
  'told_problem',
  'problem_caus',
  'caus_argument',
  'argument_escal',
  'escal_mom',
  'mom_side',
  'side_go',
  'go_room',
  'room_calm',
  'calm_bit',
  'bit_kid',
  'kid_left',
  'left_mom',
  'mom_pick',
  'pick_anoth',
  'anoth_argument',
  'argument_say',
  'say_consuder',
  'consuder_kid',
  'kid_see',
  'see_medic',
  'medic_said',
  'said_jeff',
  'jeff_point',
  'point_rude',
  'rude_told',
  'told_expect',
  'expect_apolog',
  'apolog_get',
  'get_right',
  'right_jeff',
  'jeff_next',
  'next_time',
  'time_visit',
  'visit_said',
  'said_im',
  'im_punish',
  'punish_next',
  'next_weekend',
  'weekend_attitud',
  'attitud_toward',
  'toward_stepda',
  'stepda_asshol',
  'epilepsi_seizur_bc',
  'seizur_bc_take',
  'bc_take_medic',
  'take_medic_seizur',
  'medic_seizur_condit',
  'seizur_condit_control',
  'condit_control_mani',
  'control_mani_ppl',
  'mani_ppl_life',
  'ppl_life_rlli',
  'life_rlli_get',
  'rlli_get_except',
  'get_except_dad',
  'except_dad_unfortun',
  'dad_unfortun_mom',
  'unfortun_mom_dad',
  'mom_dad_separ',
  'dad_separ_yr',
  'separ_yr_start',
  'yr_start_date',
  'start_date_guy',
  'date_guy_jeff',
  'guy_jeff_singl',
  'jeff_singl_dad',
  'singl_dad_kid',
  'dad_kid_age',
  'kid_age_&',
  'age_&_come',
  '&_come_kid',
  'come_kid_visit',
  'kid_visit_us',
  'visit_us_everi',
  'us_everi_week',
  'everi_week_yesterday',
  'week_yesterday_visit',
  'yesterday_visit_brought',
  'visit_brought_kid',
  'brought_kid_usuallylik',
  'kid_usuallylik_sit',
  'usuallylik_sit_get',
  'sit_get_know',
  'get_know_futur',
  'know_futur_stepsibl',
  'futur_stepsibl_better',
  'stepsibl_better_mom',
  'better_mom_say',
  'mom_say_anyway',
  'say_anyway_sit',
  'anyway_sit_grab',
  'sit_grab_medic',
  'grab_medic_made',
  'medic_made_jeff',
  'made_jeff_side',
  'jeff_side_eye',
  'side_eye_like',
  'eye_like_sec',
  'like_sec_told',
  'sec_told_kid',
  'told_kid_go',
  'kid_go_room',
  'go_room_start',
  'room_start_berat',
  'start_berat_ask',
  'berat_ask_hell',
  'ask_hell_confus',
  'hell_confus_languag',
  'confus_languag_know',
  'languag_know_meant',
  'know_meant_told',
  'meant_told_ok',
  'told_ok_take',
  'ok_take_medic',
  'take_medic_infront',
  'medic_infront_kidsi',
  'infront_kidsi_like',
  'kidsi_like_start',
  'like_start_rant',
  'start_rant_kid',
  'rant_kid_see',
  'kid_see_stuff',
  'see_stuff_went',
  'stuff_went_room',
  'went_room_room',
  'room_room_take',
  'room_take_medic',
  'take_medic_import',
  'medic_import_shock',
  'import_shock_mom',
  'shock_mom_even',
  'mom_even_say',
  'even_say_anyth',
  'say_anyth_time',
  'anyth_time_rlli',
  'time_rlli_got',
  'rlli_got_question',
  'got_question_said',
  'question_said_stepsubk',
  'said_stepsubk_theyr',
  'stepsubk_theyr_young',
  'theyr_young_age',
  'young_age_expos',
  'age_expos_sight',
  'expos_sight_im',
  'sight_im_gon',
  'im_gon_come',
  'gon_come_better',
  'come_better_way',
  'better_way_deal',
  'way_deal_condit',
  'deal_condit_medic',
  'condit_medic_intak',
  'medic_intak_want',
  'intak_want_kid',
  'want_kid_expos',
  'kid_expos_start',
  'expos_start_live',
  'start_live_togeth',
  'live_togeth_famili',
  'togeth_famili_told',
  'famili_told_problem',
  'told_problem_caus',
  'problem_caus_argument',
  'caus_argument_escal',
  'argument_escal_mom',
  'escal_mom_side',
  'mom_side_go',
  'side_go_room',
  'go_room_calm',
  'room_calm_bit',
  'calm_bit_kid',
  'bit_kid_left',
  'kid_left_mom',
  'left_mom_pick',
  'mom_pick_anoth',
  'pick_anoth_argument',
  'anoth_argument_say',
  'argument_say_consuder',
  'say_consuder_kid',
  'consuder_kid_see',
  'kid_see_medic',
  'see_medic_said',
  'medic_said_jeff',
  'said_jeff_point',
  'jeff_point_rude',
  'point_rude_told',
  'rude_told_expect',
  'told_expect_apolog',
  'expect_apolog_get',
  'apolog_get_right',
  'get_right_jeff',
  'right_jeff_next',
  'jeff_next_time',
  'next_time_visit',
  'time_visit_said',
  'visit_said_im',
  'said_im_punish',
  'im_punish_next',
  'punish_next_weekend',
  'next_weekend_attitud',
  'weekend_attitud_toward',
  'attitud_toward_stepda',
  'toward_stepda_asshol'],
 ['[',
  'origin',
  'post',
  ']',
  'httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar',
  '&',
  'utm_medium=ios_app',
  '&',
  'utm_name=iossmf',
  'damm',
  'know',
  'say',
  'everyon',
  '*',
  'realli',
  '*',
  'want',
  'know',
  'happen',
  'gon',
  'na',
  'start',
  'first',
  '&',
  'say',
  'spoke',
  'friend',
  'babi',
  'shower',
  'apolog',
  'drama',
  'idea',
  'gon',
  'na',
  'happen',
  'hear',
  'first',
  'like',
  'comment',
  'suggest',
  'idea',
  'ex',
  'past',
  'told',
  'fine',
  'parti',
  'awkward',
  'blame',
  'great',
  'hear',
  'meant',
  'celebr',
  'babi',
  'friend',
  'want',
  'celebr',
  'got',
  'confirm',
  'plu',
  'guy',
  '👍🏻',
  'ta',
  'obvious',
  'want',
  'know',
  'answer',
  'main',
  'question',
  'babi',
  'kid',
  'deal',
  'talk',
  'phone',
  'went',
  'first',
  'beat',
  'topic',
  'probabl',
  'read',
  'mind',
  'start',
  'tell',
  'someth',
  'import',
  'talk',
  'apolog',
  'blame',
  'parti',
  'sum',
  'agre',
  'get',
  'patern',
  'test',
  'done',
  'asap',
  'handl',
  'curios',
  'alreadi',
  'drive',
  'crazi',
  'definit',
  'kid',
  'ive',
  'look',
  'result',
  'million',
  'time',
  'sinc',
  'got',
  'back',
  'alreadi',
  'knew',
  'son',
  'mine',
  'found',
  'pregnant',
  'left',
  'want',
  'tell',
  'went',
  'back',
  'work',
  'told',
  'id',
  'alreadi',
  'flew',
  'back',
  'hurt',
  'sinc',
  'seem',
  'like',
  'care',
  'much',
  'scare',
  'go',
  'back',
  'help',
  'take',
  'care',
  'kid',
  'hard',
  'hear',
  'actual',
  'cri',
  'talk',
  'person',
  'im',
  'still',
  'shock',
  'learn',
  'let',
  'come',
  'meet',
  'day',
  'ago',
  'emot',
  'af',
  'hold',
  'realli',
  'got',
  'damm',
  'big',
  'alreadi',
  'whole',
  'day',
  'spent',
  'son',
  'stay',
  'late',
  'talk',
  'gon',
  'na',
  'new',
  'gon',
  'na',
  'go',
  'flow',
  'holi',
  'fuck',
  'son',
  'crazi',
  'right',
  'far',
  'boyfriend',
  'seem',
  'like',
  'cheat',
  'least',
  'tell',
  'littl',
  'bit',
  'info',
  'got',
  'piss',
  'exclus',
  'either',
  'got',
  'pregnant',
  'around',
  'long',
  '*',
  '*',
  'obvious',
  'see',
  'piss',
  'thought',
  'still',
  'live',
  'state',
  'mess',
  'right',
  'wan',
  'na',
  'around',
  'son',
  'kid',
  'told',
  'worri',
  'relationship',
  'thing',
  'want',
  'make',
  'sure',
  'son',
  'dad',
  'life',
  'even',
  'ive',
  'got',
  'idea',
  'im',
  'rn',
  'dad',
  'want',
  'alreadi',
  'miss',
  'time',
  'im',
  'excit',
  'see',
  'tmrw',
  '[_origin',
  'origin_post',
  'post_]',
  ']_httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar',
  'httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar_&',
  '&_utm_medium=ios_app',
  'utm_medium=ios_app_&',
  '&_utm_name=iossmf',
  'utm_name=iossmf_damm',
  'damm_know',
  'know_say',
  'say_everyon',
  'everyon_*',
  '*_realli',
  'realli_*',
  '*_want',
  'want_know',
  'know_happen',
  'happen_gon',
  'gon_na',
  'na_start',
  'start_first',
  'first_&',
  '&_say',
  'say_spoke',
  'spoke_friend',
  'friend_babi',
  'babi_shower',
  'shower_apolog',
  'apolog_drama',
  'drama_idea',
  'idea_gon',
  'gon_na',
  'na_happen',
  'happen_hear',
  'hear_first',
  'first_like',
  'like_comment',
  'comment_suggest',
  'suggest_idea',
  'idea_ex',
  'ex_past',
  'past_told',
  'told_fine',
  'fine_parti',
  'parti_awkward',
  'awkward_blame',
  'blame_great',
  'great_hear',
  'hear_meant',
  'meant_celebr',
  'celebr_babi',
  'babi_friend',
  'friend_want',
  'want_celebr',
  'celebr_got',
  'got_confirm',
  'confirm_plu',
  'plu_guy',
  'guy_👍🏻',
  '👍🏻_ta',
  'ta_obvious',
  'obvious_want',
  'want_know',
  'know_answer',
  'answer_main',
  'main_question',
  'question_babi',
  'babi_kid',
  'kid_deal',
  'deal_talk',
  'talk_phone',
  'phone_went',
  'went_first',
  'first_beat',
  'beat_topic',
  'topic_probabl',
  'probabl_read',
  'read_mind',
  'mind_start',
  'start_tell',
  'tell_someth',
  'someth_import',
  'import_talk',
  'talk_apolog',
  'apolog_blame',
  'blame_parti',
  'parti_sum',
  'sum_agre',
  'agre_get',
  'get_patern',
  'patern_test',
  'test_done',
  'done_asap',
  'asap_handl',
  'handl_curios',
  'curios_alreadi',
  'alreadi_drive',
  'drive_crazi',
  'crazi_definit',
  'definit_kid',
  'kid_ive',
  'ive_look',
  'look_result',
  'result_million',
  'million_time',
  'time_sinc',
  'sinc_got',
  'got_back',
  'back_alreadi',
  'alreadi_knew',
  'knew_son',
  'son_mine',
  'mine_found',
  'found_pregnant',
  'pregnant_left',
  'left_want',
  'want_tell',
  'tell_went',
  'went_back',
  'back_work',
  'work_told',
  'told_id',
  'id_alreadi',
  'alreadi_flew',
  'flew_back',
  'back_hurt',
  'hurt_sinc',
  'sinc_seem',
  'seem_like',
  'like_care',
  'care_much',
  'much_scare',
  'scare_go',
  'go_back',
  'back_help',
  'help_take',
  'take_care',
  'care_kid',
  'kid_hard',
  'hard_hear',
  'hear_actual',
  'actual_cri',
  'cri_talk',
  'talk_person',
  'person_im',
  'im_still',
  'still_shock',
  'shock_learn',
  'learn_let',
  'let_come',
  'come_meet',
  'meet_day',
  'day_ago',
  'ago_emot',
  'emot_af',
  'af_hold',
  'hold_realli',
  'realli_got',
  'got_damm',
  'damm_big',
  'big_alreadi',
  'alreadi_whole',
  'whole_day',
  'day_spent',
  'spent_son',
  'son_stay',
  'stay_late',
  'late_talk',
  'talk_gon',
  'gon_na',
  'na_new',
  'new_gon',
  'gon_na',
  'na_go',
  'go_flow',
  'flow_holi',
  'holi_fuck',
  'fuck_son',
  'son_crazi',
  'crazi_right',
  'right_far',
  'far_boyfriend',
  'boyfriend_seem',
  'seem_like',
  'like_cheat',
  'cheat_least',
  'least_tell',
  'tell_littl',
  'littl_bit',
  'bit_info',
  'info_got',
  'got_piss',
  'piss_exclus',
  'exclus_either',
  'either_got',
  'got_pregnant',
  'pregnant_around',
  'around_long',
  'long_*',
  '*_*',
  '*_obvious',
  'obvious_see',
  'see_piss',
  'piss_thought',
  'thought_still',
  'still_live',
  'live_state',
  'state_mess',
  'mess_right',
  'right_wan',
  'wan_na',
  'na_around',
  'around_son',
  'son_kid',
  'kid_told',
  'told_worri',
  'worri_relationship',
  'relationship_thing',
  'thing_want',
  'want_make',
  'make_sure',
  'sure_son',
  'son_dad',
  'dad_life',
  'life_even',
  'even_ive',
  'ive_got',
  'got_idea',
  'idea_im',
  'im_rn',
  'rn_dad',
  'dad_want',
  'want_alreadi',
  'alreadi_miss',
  'miss_time',
  'time_im',
  'im_excit',
  'excit_see',
  'see_tmrw',
  '[_origin_post',
  'origin_post_]',
  'post_]_httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar',
  ']_httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar_&',
  'httpswwwredditcomramitheassholecommentsuajnfcaita_for_refusing_to_leave_my_friends_baby_showerutm_source=shar_&_utm_medium=ios_app',
  '&_utm_medium=ios_app_&',
  'utm_medium=ios_app_&_utm_name=iossmf',
  '&_utm_name=iossmf_damm',
  'utm_name=iossmf_damm_know',
  'damm_know_say',
  'know_say_everyon',
  'say_everyon_*',
  'everyon_*_realli',
  '*_realli_*',
  'realli_*_want',
  '*_want_know',
  'want_know_happen',
  'know_happen_gon',
  'happen_gon_na',
  'gon_na_start',
  'na_start_first',
  'start_first_&',
  'first_&_say',
  '&_say_spoke',
  'say_spoke_friend',
  'spoke_friend_babi',
  'friend_babi_shower',
  'babi_shower_apolog',
  'shower_apolog_drama',
  'apolog_drama_idea',
  'drama_idea_gon',
  'idea_gon_na',
  'gon_na_happen',
  'na_happen_hear',
  'happen_hear_first',
  'hear_first_like',
  'first_like_comment',
  'like_comment_suggest',
  'comment_suggest_idea',
  'suggest_idea_ex',
  'idea_ex_past',
  'ex_past_told',
  'past_told_fine',
  'told_fine_parti',
  'fine_parti_awkward',
  'parti_awkward_blame',
  'awkward_blame_great',
  'blame_great_hear',
  'great_hear_meant',
  'hear_meant_celebr',
  'meant_celebr_babi',
  'celebr_babi_friend',
  'babi_friend_want',
  'friend_want_celebr',
  'want_celebr_got',
  'celebr_got_confirm',
  'got_confirm_plu',
  'confirm_plu_guy',
  'plu_guy_👍🏻',
  'guy_👍🏻_ta',
  '👍🏻_ta_obvious',
  'ta_obvious_want',
  'obvious_want_know',
  'want_know_answer',
  'know_answer_main',
  'answer_main_question',
  'main_question_babi',
  'question_babi_kid',
  'babi_kid_deal',
  'kid_deal_talk',
  'deal_talk_phone',
  'talk_phone_went',
  'phone_went_first',
  'went_first_beat',
  'first_beat_topic',
  'beat_topic_probabl',
  'topic_probabl_read',
  'probabl_read_mind',
  'read_mind_start',
  'mind_start_tell',
  'start_tell_someth',
  'tell_someth_import',
  'someth_import_talk',
  'import_talk_apolog',
  'talk_apolog_blame',
  'apolog_blame_parti',
  'blame_parti_sum',
  'parti_sum_agre',
  'sum_agre_get',
  'agre_get_patern',
  'get_patern_test',
  'patern_test_done',
  'test_done_asap',
  'done_asap_handl',
  'asap_handl_curios',
  'handl_curios_alreadi',
  'curios_alreadi_drive',
  'alreadi_drive_crazi',
  'drive_crazi_definit',
  'crazi_definit_kid',
  'definit_kid_ive',
  'kid_ive_look',
  'ive_look_result',
  'look_result_million',
  'result_million_time',
  'million_time_sinc',
  'time_sinc_got',
  'sinc_got_back',
  'got_back_alreadi',
  'back_alreadi_knew',
  'alreadi_knew_son',
  'knew_son_mine',
  'son_mine_found',
  'mine_found_pregnant',
  'found_pregnant_left',
  'pregnant_left_want',
  'left_want_tell',
  'want_tell_went',
  'tell_went_back',
  'went_back_work',
  'back_work_told',
  'work_told_id',
  'told_id_alreadi',
  'id_alreadi_flew',
  'alreadi_flew_back',
  'flew_back_hurt',
  'back_hurt_sinc',
  'hurt_sinc_seem',
  'sinc_seem_like',
  'seem_like_care',
  'like_care_much',
  'care_much_scare',
  'much_scare_go',
  'scare_go_back',
  'go_back_help',
  'back_help_take',
  'help_take_care',
  'take_care_kid',
  'care_kid_hard',
  'kid_hard_hear',
  'hard_hear_actual',
  'hear_actual_cri',
  'actual_cri_talk',
  'cri_talk_person',
  'talk_person_im',
  'person_im_still',
  'im_still_shock',
  'still_shock_learn',
  'shock_learn_let',
  'learn_let_come',
  'let_come_meet',
  'come_meet_day',
  'meet_day_ago',
  'day_ago_emot',
  'ago_emot_af',
  'emot_af_hold',
  'af_hold_realli',
  'hold_realli_got',
  'realli_got_damm',
  'got_damm_big',
  'damm_big_alreadi',
  'big_alreadi_whole',
  'alreadi_whole_day',
  'whole_day_spent',
  'day_spent_son',
  'spent_son_stay',
  'son_stay_late',
  'stay_late_talk',
  'late_talk_gon',
  'talk_gon_na',
  'gon_na_new',
  'na_new_gon',
  'new_gon_na',
  'gon_na_go',
  'na_go_flow',
  'go_flow_holi',
  'flow_holi_fuck',
  'holi_fuck_son',
  'fuck_son_crazi',
  'son_crazi_right',
  'crazi_right_far',
  'right_far_boyfriend',
  'far_boyfriend_seem',
  'boyfriend_seem_like',
  'seem_like_cheat',
  'like_cheat_least',
  'cheat_least_tell',
  'least_tell_littl',
  'tell_littl_bit',
  'littl_bit_info',
  'bit_info_got',
  'info_got_piss',
  'got_piss_exclus',
  'piss_exclus_either',
  'exclus_either_got',
  'either_got_pregnant',
  'got_pregnant_around',
  'pregnant_around_long',
  'around_long_*',
  'long_*_*',
  '*_*_obvious',
  '*_obvious_see',
  'obvious_see_piss',
  'see_piss_thought',
  'piss_thought_still',
  'thought_still_live',
  'still_live_state',
  'live_state_mess',
  'state_mess_right',
  'mess_right_wan',
  'right_wan_na',
  'wan_na_around',
  'na_around_son',
  'around_son_kid',
  'son_kid_told',
  'kid_told_worri',
  'told_worri_relationship',
  'worri_relationship_thing',
  'relationship_thing_want',
  'thing_want_make',
  'want_make_sure',
  'make_sure_son',
  'sure_son_dad',
  'son_dad_life',
  'dad_life_even',
  'life_even_ive',
  'even_ive_got',
  'ive_got_idea',
  'got_idea_im',
  'idea_im_rn',
  'im_rn_dad',
  'rn_dad_want',
  'dad_want_alreadi',
  'want_alreadi_miss',
  'alreadi_miss_time',
  'miss_time_im',
  'time_im_excit',
  'im_excit_see',
  'excit_see_tmrw'],
 ['husband',
  'friend',
  'austin',
  'known',
  'colleg',
  'theyr',
  'like',
  'brother',
  'togeth',
  'extend',
  'friend',
  'group',
  'group',
  'guy',
  'hang',
  'togeth',
  'time',
  'austin',
  'get',
  'along',
  'seem',
  'mock',
  'infertil',
  'bring',
  'ocassionli',
  'hurt',
  'ive',
  'alway',
  'want',
  'children',
  'make',
  'constant',
  'topic',
  'convers',
  'hurt',
  'husband',
  'think',
  'hypersensit',
  'anyway',
  'month',
  'ago',
  'austin',
  'got',
  'fight',
  'comment',
  'infertil',
  'say',
  'hurri',
  'give',
  'nephewniec',
  'biolog',
  'clock',
  'tick',
  'plan',
  'go',
  'trip',
  'togeth',
  'austin',
  'disinvit',
  'yell',
  'said',
  'ruin',
  'dinner',
  'said',
  'perfectli',
  'okay',
  'fact',
  'felt',
  'much',
  'relief',
  'longer',
  'around',
  'anymor',
  'husband',
  'first',
  'time',
  'okay',
  'away',
  'austin',
  'said',
  'still',
  'want',
  'go',
  'trip',
  'said',
  'noth',
  'til',
  'told',
  'still',
  'expect',
  'pay',
  'travel',
  'expens',
  'refus',
  'said',
  'start',
  'argument',
  'im',
  'punish',
  'stay',
  'home',
  'told',
  'issu',
  'austin',
  'told',
  'could',
  'go',
  'get',
  'money',
  'elsewher',
  'unabl',
  'borrow',
  'anymor',
  'money',
  'add',
  'debt',
  'got',
  'fire',
  'may',
  'insist',
  'refus',
  'start',
  'call',
  'spite',
  'unfair',
  'refus',
  'pay',
  'travel',
  'expens',
  'attempt',
  'tj',
  'get',
  'stay',
  'home',
  'said',
  'relationship',
  'austin',
  'bigger',
  'comment',
  'austin',
  'made',
  'bigger',
  'exagger',
  'sensit',
  'insecur',
  'sulk',
  'cave',
  'give',
  'money',
  'aita',
  'insist',
  'pay',
  'husband_friend',
  'friend_austin',
  'austin_known',
  'known_colleg',
  'colleg_theyr',
  'theyr_like',
  'like_brother',
  'brother_togeth',
  'togeth_extend',
  'extend_friend',
  'friend_group',
  'group_group',
  'group_guy',
  'guy_hang',
  'hang_togeth',
  'togeth_time',
  'time_austin',
  'austin_get',
  'get_along',
  'along_seem',
  'seem_mock',
  'mock_infertil',
  'infertil_bring',
  'bring_ocassionli',
  'ocassionli_hurt',
  'hurt_ive',
  'ive_alway',
  'alway_want',
  'want_children',
  'children_make',
  'make_constant',
  'constant_topic',
  'topic_convers',
  'convers_hurt',
  'hurt_husband',
  'husband_think',
  'think_hypersensit',
  'hypersensit_anyway',
  'anyway_month',
  'month_ago',
  'ago_austin',
  'austin_got',
  'got_fight',
  'fight_comment',
  'comment_infertil',
  'infertil_say',
  'say_hurri',
  'hurri_give',
  'give_nephewniec',
  'nephewniec_biolog',
  'biolog_clock',
  'clock_tick',
  'tick_plan',
  'plan_go',
  'go_trip',
  'trip_togeth',
  'togeth_austin',
  'austin_disinvit',
  'disinvit_yell',
  'yell_said',
  'said_ruin',
  'ruin_dinner',
  'dinner_said',
  'said_perfectli',
  'perfectli_okay',
  'okay_fact',
  'fact_felt',
  'felt_much',
  'much_relief',
  'relief_longer',
  'longer_around',
  'around_anymor',
  'anymor_husband',
  'husband_first',
  'first_time',
  'time_okay',
  'okay_away',
  'away_austin',
  'austin_said',
  'said_still',
  'still_want',
  'want_go',
  'go_trip',
  'trip_said',
  'said_noth',
  'noth_til',
  'til_told',
  'told_still',
  'still_expect',
  'expect_pay',
  'pay_travel',
  'travel_expens',
  'expens_refus',
  'refus_said',
  'said_start',
  'start_argument',
  'argument_im',
  'im_punish',
  'punish_stay',
  'stay_home',
  'home_told',
  'told_issu',
  'issu_austin',
  'austin_told',
  'told_could',
  'could_go',
  'go_get',
  'get_money',
  'money_elsewher',
  'elsewher_unabl',
  'unabl_borrow',
  'borrow_anymor',
  'anymor_money',
  'money_add',
  'add_debt',
  'debt_got',
  'got_fire',
  'fire_may',
  'may_insist',
  'insist_refus',
  'refus_start',
  'start_call',
  'call_spite',
  'spite_unfair',
  'unfair_refus',
  'refus_pay',
  'pay_travel',
  'travel_expens',
  'expens_attempt',
  'attempt_tj',
  'tj_get',
  'get_stay',
  'stay_home',
  'home_said',
  'said_relationship',
  'relationship_austin',
  'austin_bigger',
  'bigger_comment',
  'comment_austin',
  'austin_made',
  'made_bigger',
  'bigger_exagger',
  'exagger_sensit',
  'sensit_insecur',
  'insecur_sulk',
  'sulk_cave',
  'cave_give',
  'give_money',
  'money_aita',
  'aita_insist',
  'insist_pay',
  'husband_friend_austin',
  'friend_austin_known',
  'austin_known_colleg',
  'known_colleg_theyr',
  'colleg_theyr_like',
  'theyr_like_brother',
  'like_brother_togeth',
  'brother_togeth_extend',
  'togeth_extend_friend',
  'extend_friend_group',
  'friend_group_group',
  'group_group_guy',
  'group_guy_hang',
  'guy_hang_togeth',
  'hang_togeth_time',
  'togeth_time_austin',
  'time_austin_get',
  'austin_get_along',
  'get_along_seem',
  'along_seem_mock',
  'seem_mock_infertil',
  'mock_infertil_bring',
  'infertil_bring_ocassionli',
  'bring_ocassionli_hurt',
  'ocassionli_hurt_ive',
  'hurt_ive_alway',
  'ive_alway_want',
  'alway_want_children',
  'want_children_make',
  'children_make_constant',
  'make_constant_topic',
  'constant_topic_convers',
  'topic_convers_hurt',
  'convers_hurt_husband',
  'hurt_husband_think',
  'husband_think_hypersensit',
  'think_hypersensit_anyway',
  'hypersensit_anyway_month',
  'anyway_month_ago',
  'month_ago_austin',
  'ago_austin_got',
  'austin_got_fight',
  'got_fight_comment',
  'fight_comment_infertil',
  'comment_infertil_say',
  'infertil_say_hurri',
  'say_hurri_give',
  'hurri_give_nephewniec',
  'give_nephewniec_biolog',
  'nephewniec_biolog_clock',
  'biolog_clock_tick',
  'clock_tick_plan',
  'tick_plan_go',
  'plan_go_trip',
  'go_trip_togeth',
  'trip_togeth_austin',
  'togeth_austin_disinvit',
  'austin_disinvit_yell',
  'disinvit_yell_said',
  'yell_said_ruin',
  'said_ruin_dinner',
  'ruin_dinner_said',
  'dinner_said_perfectli',
  'said_perfectli_okay',
  'perfectli_okay_fact',
  'okay_fact_felt',
  'fact_felt_much',
  'felt_much_relief',
  'much_relief_longer',
  'relief_longer_around',
  'longer_around_anymor',
  'around_anymor_husband',
  'anymor_husband_first',
  'husband_first_time',
  'first_time_okay',
  'time_okay_away',
  'okay_away_austin',
  'away_austin_said',
  'austin_said_still',
  'said_still_want',
  'still_want_go',
  'want_go_trip',
  'go_trip_said',
  'trip_said_noth',
  'said_noth_til',
  'noth_til_told',
  'til_told_still',
  'told_still_expect',
  'still_expect_pay',
  'expect_pay_travel',
  'pay_travel_expens',
  'travel_expens_refus',
  'expens_refus_said',
  'refus_said_start',
  'said_start_argument',
  'start_argument_im',
  'argument_im_punish',
  'im_punish_stay',
  'punish_stay_home',
  'stay_home_told',
  'home_told_issu',
  'told_issu_austin',
  'issu_austin_told',
  'austin_told_could',
  'told_could_go',
  'could_go_get',
  'go_get_money',
  'get_money_elsewher',
  'money_elsewher_unabl',
  'elsewher_unabl_borrow',
  'unabl_borrow_anymor',
  'borrow_anymor_money',
  'anymor_money_add',
  'money_add_debt',
  'add_debt_got',
  'debt_got_fire',
  'got_fire_may',
  'fire_may_insist',
  'may_insist_refus',
  'insist_refus_start',
  'refus_start_call',
  'start_call_spite',
  'call_spite_unfair',
  'spite_unfair_refus',
  'unfair_refus_pay',
  'refus_pay_travel',
  'pay_travel_expens',
  'travel_expens_attempt',
  'expens_attempt_tj',
  'attempt_tj_get',
  'tj_get_stay',
  'get_stay_home',
  'stay_home_said',
  'home_said_relationship',
  'said_relationship_austin',
  'relationship_austin_bigger',
  'austin_bigger_comment',
  'bigger_comment_austin',
  'comment_austin_made',
  'austin_made_bigger',
  'made_bigger_exagger',
  'bigger_exagger_sensit',
  'exagger_sensit_insecur',
  'sensit_insecur_sulk',
  'insecur_sulk_cave',
  'sulk_cave_give',
  'cave_give_money',
  'give_money_aita',
  'money_aita_insist',
  'aita_insist_pay'],
 ['wife',
  'kid',
  'gener',
  'agre',
  'parent',
  'recent',
  'incid',
  'wife',
  'disagre',
  'want',
  'see',
  'wrong',
  'week',
  'ago',
  'home',
  'yo',
  'sick',
  'stomach',
  'bug',
  'make',
  'soup',
  'got',
  'call',
  'twin',
  'high',
  'school',
  'tell',
  'want',
  'speak',
  'daughter',
  'receiv',
  'day',
  'iss',
  'bulli',
  'incid',
  'son',
  'sick',
  'spoke',
  'via',
  'phone',
  'told',
  'everyth',
  'happen',
  'daughter',
  'group',
  'friend',
  'pick',
  'boy',
  'wear',
  'crop',
  'top',
  'boy',
  'told',
  'teacher',
  'ask',
  'stop',
  'stop',
  'sent',
  'offic',
  'talk',
  'boy',
  'admit',
  'bulli',
  'go',
  'day',
  'kept',
  'bother',
  'ask',
  'stop',
  'daughter',
  'son',
  'came',
  'home',
  'son',
  'face',
  'bright',
  'red',
  'told',
  'daughter',
  'go',
  'room',
  'sat',
  'son',
  'see',
  'okay',
  'appar',
  'boy',
  'bulli',
  'close',
  'friend',
  'one',
  'footbal',
  'teammat',
  'boy',
  'talk',
  'son',
  'friend',
  'said',
  'someth',
  'thought',
  'cool',
  'men',
  'use',
  'wear',
  'sport',
  'crop',
  'top',
  'boy',
  'told',
  'thought',
  'cool',
  'tri',
  'boy',
  'went',
  'bought',
  'jersey',
  'thrift',
  'store',
  'made',
  'crop',
  'top',
  'spoke',
  'daughter',
  'show',
  'much',
  'remors',
  'dismiss',
  'last',
  'year',
  'also',
  'got',
  'troubl',
  'bulli',
  'someon',
  'bc',
  'cloth',
  'also',
  'gotten',
  'troubl',
  'racism',
  'school',
  'white',
  'area',
  'white',
  'friend',
  'say',
  'racist',
  'stuff',
  'class',
  'wife',
  'got',
  'home',
  'discuss',
  'punish',
  'agre',
  'buy',
  'new',
  'cloth',
  'plenti',
  'good',
  'cloth',
  'alreadi',
  'weekend',
  'went',
  'visit',
  'brother',
  'brother',
  'live',
  'around',
  'hour',
  'away',
  'small',
  'town',
  'see',
  'often',
  'week',
  'town',
  'annual',
  'fair',
  'fair',
  'booth',
  'local',
  'busi',
  'oldest',
  'son',
  'went',
  'booth',
  'antiqu',
  'sport',
  'stuff',
  'book',
  'booth',
  'get',
  'book',
  'sport',
  'histori',
  'son',
  'love',
  'read',
  'yo',
  'got',
  'plushi',
  'toy',
  'youngest',
  'look',
  'video',
  'game',
  'oldest',
  'daughter',
  'went',
  'cloth',
  'stop',
  'told',
  'rule',
  'still',
  'place',
  'said',
  'could',
  'buy',
  'book',
  'video',
  'game',
  'candi',
  'ect',
  'cloth',
  'one',
  'thing',
  'could',
  'get',
  'bug',
  'wife',
  'wife',
  'eventu',
  'told',
  'would',
  'reconsid',
  'talk',
  'told',
  'chang',
  'stanc',
  'let',
  'buy',
  'stuff',
  'thought',
  'entitl',
  'daughter',
  'buy',
  'anyth',
  'wife',
  'think',
  'tough',
  'call',
  'mom',
  'advic',
  'also',
  'agre',
  'wife',
  'aita',
  'wife_kid',
  'kid_gener',
  'gener_agre',
  'agre_parent',
  'parent_recent',
  'recent_incid',
  'incid_wife',
  'wife_disagre',
  'disagre_want',
  'want_see',
  'see_wrong',
  'wrong_week',
  'week_ago',
  'ago_home',
  'home_yo',
  'yo_sick',
  'sick_stomach',
  'stomach_bug',
  'bug_make',
  'make_soup',
  'soup_got',
  'got_call',
  'call_twin',
  'twin_high',
  'high_school',
  'school_tell',
  'tell_want',
  'want_speak',
  'speak_daughter',
  'daughter_receiv',
  'receiv_day',
  'day_iss',
  'iss_bulli',
  'bulli_incid',
  'incid_son',
  'son_sick',
  'sick_spoke',
  'spoke_via',
  'via_phone',
  'phone_told',
  'told_everyth',
  'everyth_happen',
  'happen_daughter',
  'daughter_group',
  'group_friend',
  'friend_pick',
  'pick_boy',
  'boy_wear',
  'wear_crop',
  'crop_top',
  'top_boy',
  'boy_told',
  'told_teacher',
  'teacher_ask',
  'ask_stop',
  'stop_stop',
  'stop_sent',
  'sent_offic',
  'offic_talk',
  'talk_boy',
  'boy_admit',
  'admit_bulli',
  'bulli_go',
  'go_day',
  'day_kept',
  'kept_bother',
  'bother_ask',
  'ask_stop',
  'stop_daughter',
  'daughter_son',
  'son_came',
  'came_home',
  'home_son',
  'son_face',
  'face_bright',
  'bright_red',
  'red_told',
  'told_daughter',
  'daughter_go',
  'go_room',
  'room_sat',
  'sat_son',
  'son_see',
  'see_okay',
  'okay_appar',
  'appar_boy',
  'boy_bulli',
  'bulli_close',
  'close_friend',
  'friend_one',
  'one_footbal',
  'footbal_teammat',
  'teammat_boy',
  'boy_talk',
  'talk_son',
  'son_friend',
  'friend_said',
  'said_someth',
  'someth_thought',
  'thought_cool',
  'cool_men',
  'men_use',
  'use_wear',
  'wear_sport',
  'sport_crop',
  'crop_top',
  'top_boy',
  'boy_told',
  'told_thought',
  'thought_cool',
  'cool_tri',
  'tri_boy',
  'boy_went',
  'went_bought',
  'bought_jersey',
  'jersey_thrift',
  'thrift_store',
  'store_made',
  'made_crop',
  'crop_top',
  'top_spoke',
  'spoke_daughter',
  'daughter_show',
  'show_much',
  'much_remors',
  'remors_dismiss',
  'dismiss_last',
  'last_year',
  'year_also',
  'also_got',
  'got_troubl',
  'troubl_bulli',
  'bulli_someon',
  'someon_bc',
  'bc_cloth',
  'cloth_also',
  'also_gotten',
  'gotten_troubl',
  'troubl_racism',
  'racism_school',
  'school_white',
  'white_area',
  'area_white',
  'white_friend',
  'friend_say',
  'say_racist',
  'racist_stuff',
  'stuff_class',
  'class_wife',
  'wife_got',
  'got_home',
  'home_discuss',
  'discuss_punish',
  'punish_agre',
  'agre_buy',
  'buy_new',
  'new_cloth',
  'cloth_plenti',
  'plenti_good',
  'good_cloth',
  'cloth_alreadi',
  'alreadi_weekend',
  'weekend_went',
  'went_visit',
  'visit_brother',
  'brother_brother',
  'brother_live',
  'live_around',
  'around_hour',
  'hour_away',
  'away_small',
  'small_town',
  'town_see',
  'see_often',
  'often_week',
  'week_town',
  'town_annual',
  'annual_fair',
  'fair_fair',
  'fair_booth',
  'booth_local',
  'local_busi',
  'busi_oldest',
  'oldest_son',
  'son_went',
  'went_booth',
  'booth_antiqu',
  'antiqu_sport',
  'sport_stuff',
  'stuff_book',
  'book_booth',
  'booth_get',
  'get_book',
  'book_sport',
  'sport_histori',
  'histori_son',
  'son_love',
  'love_read',
  'read_yo',
  'yo_got',
  'got_plushi',
  'plushi_toy',
  'toy_youngest',
  'youngest_look',
  'look_video',
  'video_game',
  'game_oldest',
  'oldest_daughter',
  'daughter_went',
  'went_cloth',
  'cloth_stop',
  'stop_told',
  'told_rule',
  'rule_still',
  'still_place',
  'place_said',
  'said_could',
  'could_buy',
  'buy_book',
  'book_video',
  'video_game',
  'game_candi',
  'candi_ect',
  'ect_cloth',
  'cloth_one',
  'one_thing',
  'thing_could',
  'could_get',
  'get_bug',
  'bug_wife',
  'wife_wife',
  'wife_eventu',
  'eventu_told',
  'told_would',
  'would_reconsid',
  'reconsid_talk',
  'talk_told',
  'told_chang',
  'chang_stanc',
  'stanc_let',
  'let_buy',
  'buy_stuff',
  'stuff_thought',
  'thought_entitl',
  'entitl_daughter',
  'daughter_buy',
  'buy_anyth',
  'anyth_wife',
  'wife_think',
  'think_tough',
  'tough_call',
  'call_mom',
  'mom_advic',
  'advic_also',
  'also_agre',
  'agre_wife',
  'wife_aita',
  'wife_kid_gener',
  'kid_gener_agre',
  'gener_agre_parent',
  'agre_parent_recent',
  'parent_recent_incid',
  'recent_incid_wife',
  'incid_wife_disagre',
  'wife_disagre_want',
  'disagre_want_see',
  'want_see_wrong',
  'see_wrong_week',
  'wrong_week_ago',
  'week_ago_home',
  'ago_home_yo',
  'home_yo_sick',
  'yo_sick_stomach',
  'sick_stomach_bug',
  'stomach_bug_make',
  'bug_make_soup',
  'make_soup_got',
  'soup_got_call',
  'got_call_twin',
  'call_twin_high',
  'twin_high_school',
  'high_school_tell',
  'school_tell_want',
  'tell_want_speak',
  'want_speak_daughter',
  'speak_daughter_receiv',
  'daughter_receiv_day',
  'receiv_day_iss',
  'day_iss_bulli',
  'iss_bulli_incid',
  'bulli_incid_son',
  'incid_son_sick',
  'son_sick_spoke',
  'sick_spoke_via',
  'spoke_via_phone',
  'via_phone_told',
  'phone_told_everyth',
  'told_everyth_happen',
  'everyth_happen_daughter',
  'happen_daughter_group',
  'daughter_group_friend',
  'group_friend_pick',
  'friend_pick_boy',
  'pick_boy_wear',
  'boy_wear_crop',
  'wear_crop_top',
  'crop_top_boy',
  'top_boy_told',
  'boy_told_teacher',
  'told_teacher_ask',
  'teacher_ask_stop',
  'ask_stop_stop',
  'stop_stop_sent',
  'stop_sent_offic',
  'sent_offic_talk',
  'offic_talk_boy',
  'talk_boy_admit',
  'boy_admit_bulli',
  'admit_bulli_go',
  'bulli_go_day',
  'go_day_kept',
  'day_kept_bother',
  'kept_bother_ask',
  'bother_ask_stop',
  'ask_stop_daughter',
  'stop_daughter_son',
  'daughter_son_came',
  'son_came_home',
  'came_home_son',
  'home_son_face',
  'son_face_bright',
  'face_bright_red',
  'bright_red_told',
  'red_told_daughter',
  'told_daughter_go',
  'daughter_go_room',
  'go_room_sat',
  'room_sat_son',
  'sat_son_see',
  'son_see_okay',
  'see_okay_appar',
  'okay_appar_boy',
  'appar_boy_bulli',
  'boy_bulli_close',
  'bulli_close_friend',
  'close_friend_one',
  'friend_one_footbal',
  'one_footbal_teammat',
  'footbal_teammat_boy',
  'teammat_boy_talk',
  'boy_talk_son',
  'talk_son_friend',
  'son_friend_said',
  'friend_said_someth',
  'said_someth_thought',
  'someth_thought_cool',
  'thought_cool_men',
  'cool_men_use',
  'men_use_wear',
  'use_wear_sport',
  'wear_sport_crop',
  'sport_crop_top',
  'crop_top_boy',
  'top_boy_told',
  'boy_told_thought',
  'told_thought_cool',
  'thought_cool_tri',
  'cool_tri_boy',
  'tri_boy_went',
  'boy_went_bought',
  'went_bought_jersey',
  'bought_jersey_thrift',
  'jersey_thrift_store',
  'thrift_store_made',
  'store_made_crop',
  'made_crop_top',
  'crop_top_spoke',
  'top_spoke_daughter',
  'spoke_daughter_show',
  'daughter_show_much',
  'show_much_remors',
  'much_remors_dismiss',
  'remors_dismiss_last',
  'dismiss_last_year',
  'last_year_also',
  'year_also_got',
  'also_got_troubl',
  'got_troubl_bulli',
  'troubl_bulli_someon',
  'bulli_someon_bc',
  'someon_bc_cloth',
  'bc_cloth_also',
  'cloth_also_gotten',
  'also_gotten_troubl',
  'gotten_troubl_racism',
  'troubl_racism_school',
  'racism_school_white',
  'school_white_area',
  'white_area_white',
  'area_white_friend',
  'white_friend_say',
  'friend_say_racist',
  'say_racist_stuff',
  'racist_stuff_class',
  'stuff_class_wife',
  'class_wife_got',
  'wife_got_home',
  'got_home_discuss',
  'home_discuss_punish',
  'discuss_punish_agre',
  'punish_agre_buy',
  'agre_buy_new',
  'buy_new_cloth',
  'new_cloth_plenti',
  'cloth_plenti_good',
  'plenti_good_cloth',
  'good_cloth_alreadi',
  'cloth_alreadi_weekend',
  'alreadi_weekend_went',
  'weekend_went_visit',
  'went_visit_brother',
  'visit_brother_brother',
  'brother_brother_live',
  'brother_live_around',
  'live_around_hour',
  'around_hour_away',
  'hour_away_small',
  'away_small_town',
  'small_town_see',
  'town_see_often',
  'see_often_week',
  'often_week_town',
  'week_town_annual',
  'town_annual_fair',
  'annual_fair_fair',
  'fair_fair_booth',
  'fair_booth_local',
  'booth_local_busi',
  'local_busi_oldest',
  'busi_oldest_son',
  'oldest_son_went',
  'son_went_booth',
  'went_booth_antiqu',
  'booth_antiqu_sport',
  'antiqu_sport_stuff',
  'sport_stuff_book',
  'stuff_book_booth',
  'book_booth_get',
  'booth_get_book',
  'get_book_sport',
  'book_sport_histori',
  'sport_histori_son',
  'histori_son_love',
  'son_love_read',
  'love_read_yo',
  'read_yo_got',
  'yo_got_plushi',
  'got_plushi_toy',
  'plushi_toy_youngest',
  'toy_youngest_look',
  'youngest_look_video',
  'look_video_game',
  'video_game_oldest',
  'game_oldest_daughter',
  'oldest_daughter_went',
  'daughter_went_cloth',
  'went_cloth_stop',
  'cloth_stop_told',
  'stop_told_rule',
  'told_rule_still',
  'rule_still_place',
  'still_place_said',
  'place_said_could',
  'said_could_buy',
  'could_buy_book',
  'buy_book_video',
  'book_video_game',
  'video_game_candi',
  'game_candi_ect',
  'candi_ect_cloth',
  'ect_cloth_one',
  'cloth_one_thing',
  'one_thing_could',
  'thing_could_get',
  'could_get_bug',
  'get_bug_wife',
  'bug_wife_wife',
  'wife_wife_eventu',
  'wife_eventu_told',
  'eventu_told_would',
  'told_would_reconsid',
  'would_reconsid_talk',
  'reconsid_talk_told',
  'talk_told_chang',
  'told_chang_stanc',
  'chang_stanc_let',
  'stanc_let_buy',
  'let_buy_stuff',
  'buy_stuff_thought',
  'stuff_thought_entitl',
  'thought_entitl_daughter',
  'entitl_daughter_buy',
  'daughter_buy_anyth',
  'buy_anyth_wife',
  'anyth_wife_think',
  'wife_think_tough',
  'think_tough_call',
  'tough_call_mom',
  'call_mom_advic',
  'mom_advic_also',
  'advic_also_agre',
  'also_agre_wife',
  'agre_wife_aita'],
 ['know',
  'seem',
  'bad',
  'hear',
  'pleas',
  'im',
  'month',
  'pregnant',
  'husband',
  'excit',
  'cant',
  'wait',
  'parent',
  'decid',
  'tell',
  'peopl',
  'till',
  'week',
  'parti',
  'in-law',
  'wineri',
  'beauti',
  'sil',
  'let',
  'call',
  'taylor',
  'got',
  'engag',
  'engag',
  'parti',
  'im',
  'known',
  'love',
  'wine',
  'im',
  'alcohol',
  'like',
  'glass',
  'wine',
  'glass',
  'water',
  'rest',
  'outing',
  'engag',
  'parti',
  'drink',
  'water',
  'talk',
  'law',
  'taylor',
  'offer',
  'glass',
  'wine',
  'told',
  'feel',
  'like',
  'drink',
  'kept',
  'offer',
  'kept',
  'refus',
  'made',
  'mani',
  'excus',
  'till',
  'ask',
  'pregnant',
  'joke',
  'nervous',
  'smile',
  'tri',
  'walk',
  'away',
  'scream',
  'ruin',
  'engag',
  'parti',
  'tell',
  'im',
  'pregnant',
  'husband',
  'invit',
  'wed',
  'asshol',
  'know_seem',
  'seem_bad',
  'bad_hear',
  'hear_pleas',
  'pleas_im',
  'im_month',
  'month_pregnant',
  'pregnant_husband',
  'husband_excit',
  'excit_cant',
  'cant_wait',
  'wait_parent',
  'parent_decid',
  'decid_tell',
  'tell_peopl',
  'peopl_till',
  'till_week',
  'week_parti',
  'parti_in-law',
  'in-law_wineri',
  'wineri_beauti',
  'beauti_sil',
  'sil_let',
  'let_call',
  'call_taylor',
  'taylor_got',
  'got_engag',
  'engag_engag',
  'engag_parti',
  'parti_im',
  'im_known',
  'known_love',
  'love_wine',
  'wine_im',
  'im_alcohol',
  'alcohol_like',
  'like_glass',
  'glass_wine',
  'wine_glass',
  'glass_water',
  'water_rest',
  'rest_outing',
  'outing_engag',
  'engag_parti',
  'parti_drink',
  'drink_water',
  'water_talk',
  'talk_law',
  'law_taylor',
  'taylor_offer',
  'offer_glass',
  'glass_wine',
  'wine_told',
  'told_feel',
  'feel_like',
  'like_drink',
  'drink_kept',
  'kept_offer',
  'offer_kept',
  'kept_refus',
  'refus_made',
  'made_mani',
  'mani_excus',
  'excus_till',
  'till_ask',
  'ask_pregnant',
  'pregnant_joke',
  'joke_nervous',
  'nervous_smile',
  'smile_tri',
  'tri_walk',
  'walk_away',
  'away_scream',
  'scream_ruin',
  'ruin_engag',
  'engag_parti',
  'parti_tell',
  'tell_im',
  'im_pregnant',
  'pregnant_husband',
  'husband_invit',
  'invit_wed',
  'wed_asshol',
  'know_seem_bad',
  'seem_bad_hear',
  'bad_hear_pleas',
  'hear_pleas_im',
  'pleas_im_month',
  'im_month_pregnant',
  'month_pregnant_husband',
  'pregnant_husband_excit',
  'husband_excit_cant',
  'excit_cant_wait',
  'cant_wait_parent',
  'wait_parent_decid',
  'parent_decid_tell',
  'decid_tell_peopl',
  'tell_peopl_till',
  'peopl_till_week',
  'till_week_parti',
  'week_parti_in-law',
  'parti_in-law_wineri',
  'in-law_wineri_beauti',
  'wineri_beauti_sil',
  'beauti_sil_let',
  'sil_let_call',
  'let_call_taylor',
  'call_taylor_got',
  'taylor_got_engag',
  'got_engag_engag',
  'engag_engag_parti',
  'engag_parti_im',
  'parti_im_known',
  'im_known_love',
  'known_love_wine',
  'love_wine_im',
  'wine_im_alcohol',
  'im_alcohol_like',
  'alcohol_like_glass',
  'like_glass_wine',
  'glass_wine_glass',
  'wine_glass_water',
  'glass_water_rest',
  'water_rest_outing',
  'rest_outing_engag',
  'outing_engag_parti',
  'engag_parti_drink',
  'parti_drink_water',
  'drink_water_talk',
  'water_talk_law',
  'talk_law_taylor',
  'law_taylor_offer',
  'taylor_offer_glass',
  'offer_glass_wine',
  'glass_wine_told',
  'wine_told_feel',
  'told_feel_like',
  'feel_like_drink',
  'like_drink_kept',
  'drink_kept_offer',
  'kept_offer_kept',
  'offer_kept_refus',
  'kept_refus_made',
  'refus_made_mani',
  'made_mani_excus',
  'mani_excus_till',
  'excus_till_ask',
  'till_ask_pregnant',
  'ask_pregnant_joke',
  'pregnant_joke_nervous',
  'joke_nervous_smile',
  'nervous_smile_tri',
  'smile_tri_walk',
  'tri_walk_away',
  'walk_away_scream',
  'away_scream_ruin',
  'scream_ruin_engag',
  'ruin_engag_parti',
  'engag_parti_tell',
  'parti_tell_im',
  'tell_im_pregnant',
  'im_pregnant_husband',
  'pregnant_husband_invit',
  'husband_invit_wed',
  'invit_wed_asshol'],
 ['guy',
  'paul',
  'go',
  'date',
  'month',
  'met',
  'tinder',
  'realli',
  'like',
  'offici',
  'start',
  'date',
  'yet',
  'call',
  'bf',
  'vice',
  'versa',
  'still',
  'get',
  'know',
  'thing',
  'love',
  'vs',
  'hate',
  'past',
  'coupl',
  'week',
  'send',
  'pic',
  'car',
  'sit',
  'mechan',
  'cousin',
  'shop',
  'week',
  'went',
  'need',
  'fix',
  'made',
  'long',
  'list',
  'calcul',
  'total',
  'sent',
  'screenshot',
  'look',
  'wonder',
  'told',
  'financi',
  'hardship',
  'atm',
  'ask',
  'could',
  'help',
  'pay',
  'car',
  'get',
  'fix',
  'quickli',
  'hell',
  'abl',
  'take',
  'roadtrip',
  'promis',
  'felt',
  'uncomfort',
  'bc',
  'money',
  'talk',
  'around',
  'kind',
  'money',
  'hand',
  'brought',
  'colleg',
  'fund',
  'suggest',
  'skip',
  'one',
  'semest',
  'could',
  'pay',
  'car',
  'shock',
  'brought',
  'idk',
  'know',
  'import',
  'colleg',
  'assur',
  'hell',
  'pay',
  'back',
  'time',
  'skip',
  'one',
  'semest',
  'ask',
  'time',
  'think',
  'kept',
  'call',
  'decid',
  'give',
  'polit',
  'ask',
  'told',
  'educ',
  'prioriti',
  'cant',
  'handl',
  'skip',
  'semster',
  'even',
  'one',
  'hung',
  'say',
  'need',
  'time',
  'text',
  'say',
  'show',
  'support',
  'made',
  'open',
  'vulner',
  'chose',
  'money',
  'refus',
  'lend',
  'struggl',
  'need',
  'matter',
  'felt',
  'realli',
  'guilti',
  'start',
  'call',
  'text',
  'say',
  'might',
  'respond',
  'make',
  'room',
  'compromis',
  'aita',
  'refus',
  'pay',
  'edit',
  'talk',
  'cousin',
  'car',
  'also',
  'visit',
  'place',
  'met',
  'parent',
  'like',
  'know',
  'address',
  'guy_paul',
  'paul_go',
  'go_date',
  'date_month',
  'month_met',
  'met_tinder',
  'tinder_realli',
  'realli_like',
  'like_offici',
  'offici_start',
  'start_date',
  'date_yet',
  'yet_call',
  'call_bf',
  'bf_vice',
  'vice_versa',
  'versa_still',
  'still_get',
  'get_know',
  'know_thing',
  'thing_love',
  'love_vs',
  'vs_hate',
  'hate_past',
  'past_coupl',
  'coupl_week',
  'week_send',
  'send_pic',
  'pic_car',
  'car_sit',
  'sit_mechan',
  'mechan_cousin',
  'cousin_shop',
  'shop_week',
  'week_went',
  'went_need',
  'need_fix',
  'fix_made',
  'made_long',
  'long_list',
  'list_calcul',
  'calcul_total',
  'total_sent',
  'sent_screenshot',
  'screenshot_look',
  'look_wonder',
  'wonder_told',
  'told_financi',
  'financi_hardship',
  'hardship_atm',
  'atm_ask',
  'ask_could',
  'could_help',
  'help_pay',
  'pay_car',
  'car_get',
  'get_fix',
  'fix_quickli',
  'quickli_hell',
  'hell_abl',
  'abl_take',
  'take_roadtrip',
  'roadtrip_promis',
  'promis_felt',
  'felt_uncomfort',
  'uncomfort_bc',
  'bc_money',
  'money_talk',
  'talk_around',
  'around_kind',
  'kind_money',
  'money_hand',
  'hand_brought',
  'brought_colleg',
  'colleg_fund',
  'fund_suggest',
  'suggest_skip',
  'skip_one',
  'one_semest',
  'semest_could',
  'could_pay',
  'pay_car',
  'car_shock',
  'shock_brought',
  'brought_idk',
  'idk_know',
  'know_import',
  'import_colleg',
  'colleg_assur',
  'assur_hell',
  'hell_pay',
  'pay_back',
  'back_time',
  'time_skip',
  'skip_one',
  'one_semest',
  'semest_ask',
  'ask_time',
  'time_think',
  'think_kept',
  'kept_call',
  'call_decid',
  'decid_give',
  'give_polit',
  'polit_ask',
  'ask_told',
  'told_educ',
  'educ_prioriti',
  'prioriti_cant',
  'cant_handl',
  'handl_skip',
  'skip_semster',
  'semster_even',
  'even_one',
  'one_hung',
  'hung_say',
  'say_need',
  'need_time',
  'time_text',
  'text_say',
  'say_show',
  'show_support',
  'support_made',
  'made_open',
  'open_vulner',
  'vulner_chose',
  'chose_money',
  'money_refus',
  'refus_lend',
  'lend_struggl',
  'struggl_need',
  'need_matter',
  'matter_felt',
  'felt_realli',
  'realli_guilti',
  'guilti_start',
  'start_call',
  'call_text',
  'text_say',
  'say_might',
  'might_respond',
  'respond_make',
  'make_room',
  'room_compromis',
  'compromis_aita',
  'aita_refus',
  'refus_pay',
  'pay_edit',
  'edit_talk',
  'talk_cousin',
  'cousin_car',
  'car_also',
  'also_visit',
  'visit_place',
  'place_met',
  'met_parent',
  'parent_like',
  'like_know',
  'know_address',
  'guy_paul_go',
  'paul_go_date',
  'go_date_month',
  'date_month_met',
  'month_met_tinder',
  'met_tinder_realli',
  'tinder_realli_like',
  'realli_like_offici',
  'like_offici_start',
  'offici_start_date',
  'start_date_yet',
  'date_yet_call',
  'yet_call_bf',
  'call_bf_vice',
  'bf_vice_versa',
  'vice_versa_still',
  'versa_still_get',
  'still_get_know',
  'get_know_thing',
  'know_thing_love',
  'thing_love_vs',
  'love_vs_hate',
  'vs_hate_past',
  'hate_past_coupl',
  'past_coupl_week',
  'coupl_week_send',
  'week_send_pic',
  'send_pic_car',
  'pic_car_sit',
  'car_sit_mechan',
  'sit_mechan_cousin',
  'mechan_cousin_shop',
  'cousin_shop_week',
  'shop_week_went',
  'week_went_need',
  'went_need_fix',
  'need_fix_made',
  'fix_made_long',
  'made_long_list',
  'long_list_calcul',
  'list_calcul_total',
  'calcul_total_sent',
  'total_sent_screenshot',
  'sent_screenshot_look',
  'screenshot_look_wonder',
  'look_wonder_told',
  'wonder_told_financi',
  'told_financi_hardship',
  'financi_hardship_atm',
  'hardship_atm_ask',
  'atm_ask_could',
  'ask_could_help',
  'could_help_pay',
  'help_pay_car',
  'pay_car_get',
  'car_get_fix',
  'get_fix_quickli',
  'fix_quickli_hell',
  'quickli_hell_abl',
  'hell_abl_take',
  'abl_take_roadtrip',
  'take_roadtrip_promis',
  'roadtrip_promis_felt',
  'promis_felt_uncomfort',
  'felt_uncomfort_bc',
  'uncomfort_bc_money',
  'bc_money_talk',
  'money_talk_around',
  'talk_around_kind',
  'around_kind_money',
  'kind_money_hand',
  'money_hand_brought',
  'hand_brought_colleg',
  'brought_colleg_fund',
  'colleg_fund_suggest',
  'fund_suggest_skip',
  'suggest_skip_one',
  'skip_one_semest',
  'one_semest_could',
  'semest_could_pay',
  'could_pay_car',
  'pay_car_shock',
  'car_shock_brought',
  'shock_brought_idk',
  'brought_idk_know',
  'idk_know_import',
  'know_import_colleg',
  'import_colleg_assur',
  'colleg_assur_hell',
  'assur_hell_pay',
  'hell_pay_back',
  'pay_back_time',
  'back_time_skip',
  'time_skip_one',
  'skip_one_semest',
  'one_semest_ask',
  'semest_ask_time',
  'ask_time_think',
  'time_think_kept',
  'think_kept_call',
  'kept_call_decid',
  'call_decid_give',
  'decid_give_polit',
  'give_polit_ask',
  'polit_ask_told',
  'ask_told_educ',
  'told_educ_prioriti',
  'educ_prioriti_cant',
  'prioriti_cant_handl',
  'cant_handl_skip',
  'handl_skip_semster',
  'skip_semster_even',
  'semster_even_one',
  'even_one_hung',
  'one_hung_say',
  'hung_say_need',
  'say_need_time',
  'need_time_text',
  'time_text_say',
  'text_say_show',
  'say_show_support',
  'show_support_made',
  'support_made_open',
  'made_open_vulner',
  'open_vulner_chose',
  'vulner_chose_money',
  'chose_money_refus',
  'money_refus_lend',
  'refus_lend_struggl',
  'lend_struggl_need',
  'struggl_need_matter',
  'need_matter_felt',
  'matter_felt_realli',
  'felt_realli_guilti',
  'realli_guilti_start',
  'guilti_start_call',
  'start_call_text',
  'call_text_say',
  'text_say_might',
  'say_might_respond',
  'might_respond_make',
  'respond_make_room',
  'make_room_compromis',
  'room_compromis_aita',
  'compromis_aita_refus',
  'aita_refus_pay',
  'refus_pay_edit',
  'pay_edit_talk',
  'edit_talk_cousin',
  'talk_cousin_car',
  'cousin_car_also',
  'car_also_visit',
  'also_visit_place',
  'visit_place_met',
  'place_met_parent',
  'met_parent_like',
  'parent_like_know',
  'like_know_address'],
 ['first',
  'time',
  'post',
  'sorri',
  'made',
  'mistak',
  'recent',
  'lost',
  'fiance',
  'jake',
  'weve',
  'togeth',
  'year',
  'death',
  'unexpect',
  'im',
  'still',
  'mourn',
  'funer',
  'arrang',
  'paid',
  'brother',
  'jim',
  'ask',
  'im',
  'go',
  'return',
  'engag',
  'ring',
  'famili',
  'context',
  'engag',
  'ring',
  'jake',
  'propos',
  'ancient',
  'famili',
  'heirloom',
  'gorgeou',
  'ring',
  'make',
  'priceless',
  'stori',
  'behind',
  'jake',
  'got',
  'ring',
  'grandma',
  'month',
  'start',
  'date',
  'claim',
  'knew',
  'back',
  'would',
  'marri',
  'day',
  'want',
  'get',
  'grandma',
  'bless',
  'ring',
  'propos',
  'grandma',
  'alreadi',
  'pass',
  'away',
  'bless',
  'put',
  'ring',
  'made',
  'extra',
  'special',
  'us',
  'ask',
  'jim',
  'seriou',
  'said',
  'ye',
  'appar',
  'long',
  'term',
  'girlfriend',
  'staci',
  'saw',
  'ring',
  'ago',
  'fell',
  'love',
  'stori',
  'behind',
  'kept',
  'nag',
  'get',
  'someth',
  'similar',
  'figur',
  'sinc',
  'longer',
  'marri',
  'jake',
  'propos',
  'staci',
  'told',
  'rude',
  'ring',
  'bless',
  'especi',
  'jake',
  'mind',
  'even',
  'case',
  'bring',
  'jake',
  'funer',
  'incred',
  'disrespect',
  'funer',
  'got',
  'massag',
  'staci',
  'say',
  'would',
  'mean',
  'world',
  'new',
  'owner',
  'ring',
  'could',
  'alway',
  'think',
  'jim',
  'wed',
  'bittersweet',
  'end',
  'relationship',
  'said',
  'ring',
  'bless',
  'one',
  'grandson',
  'marri',
  'love',
  'life',
  'sinc',
  'jim',
  'live',
  'grandson',
  'left',
  'claim',
  'block',
  'ex',
  'mil',
  'also',
  'reach',
  'said',
  'although',
  'understand',
  'pain',
  'cant',
  'keep',
  'ring',
  'sinc',
  'famili',
  'heirloom',
  'suck',
  'give',
  'jim',
  'snap',
  'told',
  'ring',
  'stay',
  'follow',
  'grave',
  'need',
  'beauti',
  'symbol',
  'jake',
  'love',
  'let',
  'jim',
  'staci',
  'sulli',
  'memori',
  'ring',
  'legal',
  'mine',
  'cri',
  'bitter',
  'keep',
  'harass',
  'social',
  'media',
  'say',
  'im',
  'bad',
  'person',
  'stole',
  'famili',
  'heirloom',
  'spite',
  'jim',
  'staci',
  'jealousi',
  'ignor',
  'today',
  'met',
  'brother',
  'said',
  'although',
  'jim',
  'approach',
  'highli',
  'inappropri',
  'im',
  'selfish',
  'keep',
  'ring',
  'keep',
  'sake',
  'could',
  'alway',
  'wear',
  'differ',
  'jewelri',
  'jake',
  'bought',
  'memori',
  'could',
  'never',
  'replac',
  'heirloom',
  'famili',
  'gener',
  'im',
  'back',
  'home',
  'cant',
  'stop',
  'think',
  'point',
  'sure',
  'everyth',
  'right',
  'mayb',
  'im',
  'blind',
  'grief',
  'friend',
  'suggest',
  'ask',
  'object',
  'opinion',
  'recommend',
  'place',
  'aita',
  'updat',
  'im',
  'write',
  'answer',
  'commonli',
  'ask',
  'question',
  'think',
  'ive',
  'made',
  'mind',
  'ring',
  'met',
  'jake',
  'grandma',
  'pass',
  'away',
  'year',
  'engag',
  'time',
  'alreadi',
  'introduc',
  'famili',
  'suppos',
  'get',
  'marri',
  'met',
  'halloween',
  'parti',
  'thought',
  'fit',
  'brother',
  'help',
  'cancel',
  'wed',
  'venu',
  'cater',
  'sinc',
  'heart',
  'children',
  'due',
  'person',
  'reason',
  'never',
  'plan',
  'biolog',
  'kid',
  'howev',
  'plan',
  'adoptingfost',
  'marriag',
  'final',
  'staci',
  'mention',
  'coupl',
  'time',
  'gorgeou',
  'engag',
  'ring',
  'ask',
  'could',
  'tri',
  'refus',
  'back',
  'thought',
  'tri',
  'hint',
  'jim',
  'propos',
  'alreadi',
  'think',
  'actual',
  'interest',
  'ring',
  'ring',
  'legal',
  'mine',
  'jake',
  'im',
  'written',
  'beneficiari',
  'written',
  'year',
  'ago',
  'chang',
  'sinc',
  'jake',
  'pass',
  'away',
  'work',
  'relat',
  'accid',
  'claim',
  'life',
  'insur',
  'plu',
  'su',
  'compani',
  'work',
  'sinc',
  'believ',
  'death',
  'due',
  'neglig',
  'couldv',
  'avoid',
  'im',
  'current',
  'legal',
  'battl',
  'compani',
  'paid',
  'funer',
  'want',
  'make',
  'sure',
  'everyth',
  'organ',
  'way',
  'jake',
  'would',
  'want',
  'horribl',
  'sound',
  'financi',
  'well',
  'jake',
  'death',
  'due',
  'life',
  'insur',
  'compani',
  'compens',
  'im',
  'practic',
  'rich',
  'fund',
  'organ',
  'realli',
  'nice',
  'funer',
  'told',
  'ex',
  'mil',
  'ill',
  'take',
  'ring',
  'grave',
  'meant',
  'jake',
  'pass',
  'consid',
  'join',
  'coupl',
  'time',
  'final',
  'start',
  'go',
  'therapi',
  'think',
  'ill',
  'ever',
  'date',
  'get',
  'engag',
  'pain',
  'decis',
  'would',
  'rather',
  'wait',
  'hell',
  'freez',
  'let',
  'staci',
  'jim',
  'get',
  'ring',
  'ring',
  'stay',
  'howev',
  'consid',
  'follow',
  'option',
  'jake',
  'one',
  'cousin',
  'live',
  'far',
  'away',
  'use',
  'babysit',
  'parent',
  'still',
  'live',
  'town',
  'think',
  'ill',
  'gift',
  'ring',
  'graduat',
  'hs',
  'pay',
  'colleg',
  'tuition',
  'use',
  'life',
  'insur',
  'money',
  'got',
  'hope',
  'way',
  'right',
  'jake',
  'grandma',
  'say',
  'time',
  'heal',
  'hope',
  'year',
  'enough',
  'let',
  'go',
  'ring',
  'guess',
  'well',
  'see',
  'im',
  'tell',
  'anyon',
  'famili',
  'plan',
  'let',
  'think',
  'theyv',
  'lost',
  'ring',
  'forev',
  'think',
  'punish',
  'fit',
  'action',
  'btw',
  'lost',
  'comment',
  'said',
  'someon',
  'compar',
  'staci',
  'gollum',
  'know',
  'genuin',
  'made',
  'laugh',
  'first',
  'time',
  'thank',
  'first_time',
  'time_post',
  'post_sorri',
  'sorri_made',
  'made_mistak',
  'mistak_recent',
  'recent_lost',
  'lost_fiance',
  'fiance_jake',
  'jake_weve',
  'weve_togeth',
  'togeth_year',
  'year_death',
  'death_unexpect',
  'unexpect_im',
  'im_still',
  'still_mourn',
  'mourn_funer',
  'funer_arrang',
  'arrang_paid',
  'paid_brother',
  'brother_jim',
  'jim_ask',
  'ask_im',
  'im_go',
  'go_return',
  'return_engag',
  'engag_ring',
  'ring_famili',
  'famili_context',
  'context_engag',
  'engag_ring',
  'ring_jake',
  'jake_propos',
  'propos_ancient',
  'ancient_famili',
  'famili_heirloom',
  'heirloom_gorgeou',
  'gorgeou_ring',
  'ring_make',
  'make_priceless',
  'priceless_stori',
  'stori_behind',
  'behind_jake',
  'jake_got',
  'got_ring',
  'ring_grandma',
  'grandma_month',
  'month_start',
  'start_date',
  'date_claim',
  'claim_knew',
  'knew_back',
  'back_would',
  'would_marri',
  'marri_day',
  'day_want',
  'want_get',
  'get_grandma',
  'grandma_bless',
  'bless_ring',
  'ring_propos',
  'propos_grandma',
  'grandma_alreadi',
  'alreadi_pass',
  'pass_away',
  'away_bless',
  'bless_put',
  'put_ring',
  'ring_made',
  'made_extra',
  'extra_special',
  'special_us',
  'us_ask',
  'ask_jim',
  'jim_seriou',
  'seriou_said',
  'said_ye',
  'ye_appar',
  'appar_long',
  'long_term',
  'term_girlfriend',
  'girlfriend_staci',
  'staci_saw',
  'saw_ring',
  'ring_ago',
  'ago_fell',
  'fell_love',
  'love_stori',
  'stori_behind',
  'behind_kept',
  'kept_nag',
  'nag_get',
  'get_someth',
  'someth_similar',
  'similar_figur',
  'figur_sinc',
  'sinc_longer',
  'longer_marri',
  'marri_jake',
  'jake_propos',
  'propos_staci',
  'staci_told',
  'told_rude',
  'rude_ring',
  'ring_bless',
  'bless_especi',
  'especi_jake',
  'jake_mind',
  'mind_even',
  'even_case',
  'case_bring',
  'bring_jake',
  'jake_funer',
  'funer_incred',
  'incred_disrespect',
  'disrespect_funer',
  'funer_got',
  'got_massag',
  'massag_staci',
  'staci_say',
  'say_would',
  'would_mean',
  'mean_world',
  'world_new',
  'new_owner',
  'owner_ring',
  'ring_could',
  'could_alway',
  'alway_think',
  'think_jim',
  'jim_wed',
  'wed_bittersweet',
  'bittersweet_end',
  'end_relationship',
  'relationship_said',
  'said_ring',
  'ring_bless',
  'bless_one',
  'one_grandson',
  'grandson_marri',
  'marri_love',
  'love_life',
  'life_sinc',
  'sinc_jim',
  'jim_live',
  'live_grandson',
  'grandson_left',
  'left_claim',
  'claim_block',
  'block_ex',
  'ex_mil',
  'mil_also',
  'also_reach',
  'reach_said',
  'said_although',
  'although_understand',
  'understand_pain',
  'pain_cant',
  'cant_keep',
  'keep_ring',
  'ring_sinc',
  'sinc_famili',
  'famili_heirloom',
  'heirloom_suck',
  'suck_give',
  'give_jim',
  'jim_snap',
  'snap_told',
  'told_ring',
  'ring_stay',
  'stay_follow',
  'follow_grave',
  'grave_need',
  'need_beauti',
  'beauti_symbol',
  'symbol_jake',
  'jake_love',
  'love_let',
  'let_jim',
  'jim_staci',
  'staci_sulli',
  'sulli_memori',
  'memori_ring',
  'ring_legal',
  'legal_mine',
  'mine_cri',
  'cri_bitter',
  'bitter_keep',
  'keep_harass',
  'harass_social',
  'social_media',
  'media_say',
  'say_im',
  'im_bad',
  'bad_person',
  'person_stole',
  'stole_famili',
  'famili_heirloom',
  'heirloom_spite',
  'spite_jim',
  'jim_staci',
  'staci_jealousi',
  'jealousi_ignor',
  'ignor_today',
  'today_met',
  'met_brother',
  'brother_said',
  'said_although',
  'although_jim',
  'jim_approach',
  'approach_highli',
  'highli_inappropri',
  'inappropri_im',
  'im_selfish',
  'selfish_keep',
  'keep_ring',
  'ring_keep',
  'keep_sake',
  'sake_could',
  'could_alway',
  'alway_wear',
  'wear_differ',
  'differ_jewelri',
  'jewelri_jake',
  'jake_bought',
  'bought_memori',
  'memori_could',
  'could_never',
  'never_replac',
  'replac_heirloom',
  'heirloom_famili',
  'famili_gener',
  'gener_im',
  'im_back',
  'back_home',
  'home_cant',
  'cant_stop',
  'stop_think',
  'think_point',
  'point_sure',
  'sure_everyth',
  'everyth_right',
  'right_mayb',
  'mayb_im',
  'im_blind',
  'blind_grief',
  'grief_friend',
  'friend_suggest',
  'suggest_ask',
  'ask_object',
  'object_opinion',
  'opinion_recommend',
  'recommend_place',
  'place_aita',
  'aita_updat',
  'updat_im',
  'im_write',
  'write_answer',
  'answer_commonli',
  'commonli_ask',
  'ask_question',
  'question_think',
  'think_ive',
  'ive_made',
  'made_mind',
  'mind_ring',
  'ring_met',
  'met_jake',
  'jake_grandma',
  'grandma_pass',
  'pass_away',
  'away_year',
  'year_engag',
  'engag_time',
  'time_alreadi',
  'alreadi_introduc',
  'introduc_famili',
  'famili_suppos',
  'suppos_get',
  'get_marri',
  'marri_met',
  'met_halloween',
  'halloween_parti',
  'parti_thought',
  'thought_fit',
  'fit_brother',
  'brother_help',
  'help_cancel',
  'cancel_wed',
  'wed_venu',
  'venu_cater',
  'cater_sinc',
  'sinc_heart',
  'heart_children',
  'children_due',
  'due_person',
  'person_reason',
  'reason_never',
  'never_plan',
  'plan_biolog',
  'biolog_kid',
  'kid_howev',
  'howev_plan',
  'plan_adoptingfost',
  'adoptingfost_marriag',
  'marriag_final',
  'final_staci',
  'staci_mention',
  'mention_coupl',
  'coupl_time',
  'time_gorgeou',
  'gorgeou_engag',
  'engag_ring',
  'ring_ask',
  'ask_could',
  'could_tri',
  'tri_refus',
  'refus_back',
  'back_thought',
  'thought_tri',
  'tri_hint',
  'hint_jim',
  'jim_propos',
  'propos_alreadi',
  'alreadi_think',
  'think_actual',
  'actual_interest',
  'interest_ring',
  'ring_ring',
  'ring_legal',
  'legal_mine',
  'mine_jake',
  'jake_im',
  'im_written',
  'written_beneficiari',
  'beneficiari_written',
  'written_year',
  'year_ago',
  'ago_chang',
  'chang_sinc',
  'sinc_jake',
  'jake_pass',
  'pass_away',
  'away_work',
  'work_relat',
  'relat_accid',
  'accid_claim',
  'claim_life',
  'life_insur',
  'insur_plu',
  'plu_su',
  'su_compani',
  'compani_work',
  'work_sinc',
  'sinc_believ',
  'believ_death',
  'death_due',
  'due_neglig',
  'neglig_couldv',
  'couldv_avoid',
  'avoid_im',
  'im_current',
  'current_legal',
  'legal_battl',
  'battl_compani',
  'compani_paid',
  'paid_funer',
  'funer_want',
  'want_make',
  'make_sure',
  'sure_everyth',
  'everyth_organ',
  'organ_way',
  'way_jake',
  'jake_would',
  'would_want',
  'want_horribl',
  'horribl_sound',
  'sound_financi',
  'financi_well',
  'well_jake',
  'jake_death',
  'death_due',
  'due_life',
  'life_insur',
  'insur_compani',
  'compani_compens',
  'compens_im',
  'im_practic',
  'practic_rich',
  'rich_fund',
  'fund_organ',
  'organ_realli',
  'realli_nice',
  'nice_funer',
  'funer_told',
  'told_ex',
  'ex_mil',
  'mil_ill',
  'ill_take',
  'take_ring',
  'ring_grave',
  'grave_meant',
  'meant_jake',
  'jake_pass',
  'pass_consid',
  'consid_join',
  'join_coupl',
  'coupl_time',
  'time_final',
  'final_start',
  'start_go',
  'go_therapi',
  'therapi_think',
  'think_ill',
  'ill_ever',
  'ever_date',
  'date_get',
  'get_engag',
  'engag_pain',
  'pain_decis',
  'decis_would',
  'would_rather',
  'rather_wait',
  'wait_hell',
  'hell_freez',
  'freez_let',
  'let_staci',
  'staci_jim',
  'jim_get',
  'get_ring',
  'ring_ring',
  'ring_stay',
  'stay_howev',
  'howev_consid',
  'consid_follow',
  'follow_option',
  'option_jake',
  'jake_one',
  'one_cousin',
  'cousin_live',
  'live_far',
  'far_away',
  'away_use',
  'use_babysit',
  'babysit_parent',
  'parent_still',
  'still_live',
  'live_town',
  'town_think',
  'think_ill',
  'ill_gift',
  'gift_ring',
  'ring_graduat',
  'graduat_hs',
  'hs_pay',
  'pay_colleg',
  'colleg_tuition',
  'tuition_use',
  'use_life',
  'life_insur',
  'insur_money',
  'money_got',
  'got_hope',
  'hope_way',
  'way_right',
  'right_jake',
  'jake_grandma',
  'grandma_say',
  'say_time',
  'time_heal',
  'heal_hope',
  'hope_year',
  'year_enough',
  'enough_let',
  'let_go',
  'go_ring',
  'ring_guess',
  'guess_well',
  'well_see',
  'see_im',
  'im_tell',
  'tell_anyon',
  'anyon_famili',
  'famili_plan',
  'plan_let',
  'let_think',
  ...],
 ['daughter',
  'graduat',
  'high',
  'school',
  'hung',
  'photo',
  'graduat',
  'parti',
  'live',
  'room',
  'wall',
  'want',
  'go',
  'commun',
  'colleg',
  'well',
  'live',
  'stepdad',
  'husband',
  'recent',
  'earn',
  'master',
  'degre',
  'yesterday',
  'show',
  'graduat',
  'photo',
  'frame',
  'prepar',
  'hung',
  'ask',
  'gon',
  'na',
  'hang',
  'said',
  'live',
  'room',
  'said',
  'great',
  'right',
  'next',
  'ami',
  'graduat',
  'photo',
  'said',
  'next',
  'instead',
  'puzzl',
  'ask',
  'said',
  'feel',
  'right',
  'graduat',
  'photo',
  'master',
  'degre',
  'hung',
  'next',
  'high',
  'school',
  'graduat',
  'photo',
  'high',
  'school',
  'degre',
  'said',
  'photi',
  'differ',
  'weight',
  'valu',
  'suggest',
  'take',
  'daughter',
  'photo',
  'hang',
  'instead',
  'fume',
  'refus',
  'let',
  'photo',
  'hung',
  'anywher',
  'near',
  'claim',
  'entir',
  'wall',
  'refus',
  'sai',
  'photo',
  'month',
  'daughter',
  'desrv',
  'display',
  'encourag',
  'got',
  'upset',
  'said',
  'make',
  'big',
  'deal',
  'could',
  'instead',
  'use',
  'hallway',
  'hall',
  'someth',
  'refus',
  'argument',
  'kept',
  'insist',
  'graduat',
  'photo',
  'taken',
  'hung',
  'wall',
  'due',
  'differ',
  'degre',
  'valu',
  'weight',
  'also',
  'thought',
  'highschool',
  'photo',
  'hang-on',
  'wall',
  'worthi',
  'call',
  'inconsider',
  'feel',
  'say',
  'disrespect',
  'effort',
  'said',
  'choos',
  'hill',
  'die',
  'ridicul',
  'aita',
  'choos',
  'hill',
  'die',
  'daughter_graduat',
  'graduat_high',
  'high_school',
  'school_hung',
  'hung_photo',
  'photo_graduat',
  'graduat_parti',
  'parti_live',
  'live_room',
  'room_wall',
  'wall_want',
  'want_go',
  'go_commun',
  'commun_colleg',
  'colleg_well',
  'well_live',
  'live_stepdad',
  'stepdad_husband',
  'husband_recent',
  'recent_earn',
  'earn_master',
  'master_degre',
  'degre_yesterday',
  'yesterday_show',
  'show_graduat',
  'graduat_photo',
  'photo_frame',
  'frame_prepar',
  'prepar_hung',
  'hung_ask',
  'ask_gon',
  'gon_na',
  'na_hang',
  'hang_said',
  'said_live',
  'live_room',
  'room_said',
  'said_great',
  'great_right',
  'right_next',
  'next_ami',
  'ami_graduat',
  'graduat_photo',
  'photo_said',
  'said_next',
  'next_instead',
  'instead_puzzl',
  'puzzl_ask',
  'ask_said',
  'said_feel',
  'feel_right',
  'right_graduat',
  'graduat_photo',
  'photo_master',
  'master_degre',
  'degre_hung',
  'hung_next',
  'next_high',
  'high_school',
  'school_graduat',
  'graduat_photo',
  'photo_high',
  'high_school',
  'school_degre',
  'degre_said',
  'said_photi',
  'photi_differ',
  'differ_weight',
  'weight_valu',
  'valu_suggest',
  'suggest_take',
  'take_daughter',
  'daughter_photo',
  'photo_hang',
  'hang_instead',
  'instead_fume',
  'fume_refus',
  'refus_let',
  'let_photo',
  'photo_hung',
  'hung_anywher',
  'anywher_near',
  'near_claim',
  'claim_entir',
  'entir_wall',
  'wall_refus',
  'refus_sai',
  'sai_photo',
  'photo_month',
  'month_daughter',
  'daughter_desrv',
  'desrv_display',
  'display_encourag',
  'encourag_got',
  'got_upset',
  'upset_said',
  'said_make',
  'make_big',
  'big_deal',
  'deal_could',
  'could_instead',
  'instead_use',
  'use_hallway',
  'hallway_hall',
  'hall_someth',
  'someth_refus',
  'refus_argument',
  'argument_kept',
  'kept_insist',
  'insist_graduat',
  'graduat_photo',
  'photo_taken',
  'taken_hung',
  'hung_wall',
  'wall_due',
  'due_differ',
  'differ_degre',
  'degre_valu',
  'valu_weight',
  'weight_also',
  'also_thought',
  'thought_highschool',
  'highschool_photo',
  'photo_hang-on',
  'hang-on_wall',
  'wall_worthi',
  'worthi_call',
  'call_inconsider',
  'inconsider_feel',
  'feel_say',
  'say_disrespect',
  'disrespect_effort',
  'effort_said',
  'said_choos',
  'choos_hill',
  'hill_die',
  'die_ridicul',
  'ridicul_aita',
  'aita_choos',
  'choos_hill',
  'hill_die',
  'daughter_graduat_high',
  'graduat_high_school',
  'high_school_hung',
  'school_hung_photo',
  'hung_photo_graduat',
  'photo_graduat_parti',
  'graduat_parti_live',
  'parti_live_room',
  'live_room_wall',
  'room_wall_want',
  'wall_want_go',
  'want_go_commun',
  'go_commun_colleg',
  'commun_colleg_well',
  'colleg_well_live',
  'well_live_stepdad',
  'live_stepdad_husband',
  'stepdad_husband_recent',
  'husband_recent_earn',
  'recent_earn_master',
  'earn_master_degre',
  'master_degre_yesterday',
  'degre_yesterday_show',
  'yesterday_show_graduat',
  'show_graduat_photo',
  'graduat_photo_frame',
  'photo_frame_prepar',
  'frame_prepar_hung',
  'prepar_hung_ask',
  'hung_ask_gon',
  'ask_gon_na',
  'gon_na_hang',
  'na_hang_said',
  'hang_said_live',
  'said_live_room',
  'live_room_said',
  'room_said_great',
  'said_great_right',
  'great_right_next',
  'right_next_ami',
  'next_ami_graduat',
  'ami_graduat_photo',
  'graduat_photo_said',
  'photo_said_next',
  'said_next_instead',
  'next_instead_puzzl',
  'instead_puzzl_ask',
  'puzzl_ask_said',
  'ask_said_feel',
  'said_feel_right',
  'feel_right_graduat',
  'right_graduat_photo',
  'graduat_photo_master',
  'photo_master_degre',
  'master_degre_hung',
  'degre_hung_next',
  'hung_next_high',
  'next_high_school',
  'high_school_graduat',
  'school_graduat_photo',
  'graduat_photo_high',
  'photo_high_school',
  'high_school_degre',
  'school_degre_said',
  'degre_said_photi',
  'said_photi_differ',
  'photi_differ_weight',
  'differ_weight_valu',
  'weight_valu_suggest',
  'valu_suggest_take',
  'suggest_take_daughter',
  'take_daughter_photo',
  'daughter_photo_hang',
  'photo_hang_instead',
  'hang_instead_fume',
  'instead_fume_refus',
  'fume_refus_let',
  'refus_let_photo',
  'let_photo_hung',
  'photo_hung_anywher',
  'hung_anywher_near',
  'anywher_near_claim',
  'near_claim_entir',
  'claim_entir_wall',
  'entir_wall_refus',
  'wall_refus_sai',
  'refus_sai_photo',
  'sai_photo_month',
  'photo_month_daughter',
  'month_daughter_desrv',
  'daughter_desrv_display',
  'desrv_display_encourag',
  'display_encourag_got',
  'encourag_got_upset',
  'got_upset_said',
  'upset_said_make',
  'said_make_big',
  'make_big_deal',
  'big_deal_could',
  'deal_could_instead',
  'could_instead_use',
  'instead_use_hallway',
  'use_hallway_hall',
  'hallway_hall_someth',
  'hall_someth_refus',
  'someth_refus_argument',
  'refus_argument_kept',
  'argument_kept_insist',
  'kept_insist_graduat',
  'insist_graduat_photo',
  'graduat_photo_taken',
  'photo_taken_hung',
  'taken_hung_wall',
  'hung_wall_due',
  'wall_due_differ',
  'due_differ_degre',
  'differ_degre_valu',
  'degre_valu_weight',
  'valu_weight_also',
  'weight_also_thought',
  'also_thought_highschool',
  'thought_highschool_photo',
  'highschool_photo_hang-on',
  'photo_hang-on_wall',
  'hang-on_wall_worthi',
  'wall_worthi_call',
  'worthi_call_inconsider',
  'call_inconsider_feel',
  'inconsider_feel_say',
  'feel_say_disrespect',
  'say_disrespect_effort',
  'disrespect_effort_said',
  'effort_said_choos',
  'said_choos_hill',
  'choos_hill_die',
  'hill_die_ridicul',
  'die_ridicul_aita',
  'ridicul_aita_choos',
  'aita_choos_hill',
  'choos_hill_die'],
 ['okay',
  'im',
  'bit',
  'dilemma',
  'current',
  'week',
  'pregnant',
  'get',
  'readi',
  'receiv',
  'girl',
  'problem',
  'husband',
  'recent',
  'told',
  'want',
  'teach',
  'spanish',
  'thing',
  '‘',
  'even',
  'spanish',
  'born',
  'live',
  'spain',
  'sinc',
  'sort',
  'cultur',
  'famili',
  'connect',
  'spain',
  'might',
  'consid',
  'american',
  'initi',
  'told',
  'around',
  'week',
  'thought',
  'joke',
  'let',
  'go',
  'brought',
  'told',
  'felt',
  'told',
  'told',
  'guy',
  'would',
  'hard',
  'differ',
  'languag',
  'start',
  'argu',
  'mani',
  'kid',
  'rais',
  'bilingu',
  'smart',
  'also',
  'feel',
  'like',
  'might',
  'cut',
  'child',
  'mad',
  'accept',
  'cant',
  'help',
  'wonder',
  'asshol',
  'okay_im',
  'im_bit',
  'bit_dilemma',
  'dilemma_current',
  'current_week',
  'week_pregnant',
  'pregnant_get',
  'get_readi',
  'readi_receiv',
  'receiv_girl',
  'girl_problem',
  'problem_husband',
  'husband_recent',
  'recent_told',
  'told_want',
  'want_teach',
  'teach_spanish',
  'spanish_thing',
  'thing_‘',
  '‘_even',
  'even_spanish',
  'spanish_born',
  'born_live',
  'live_spain',
  'spain_sinc',
  'sinc_sort',
  'sort_cultur',
  'cultur_famili',
  'famili_connect',
  'connect_spain',
  'spain_might',
  'might_consid',
  'consid_american',
  'american_initi',
  'initi_told',
  'told_around',
  'around_week',
  'week_thought',
  'thought_joke',
  'joke_let',
  'let_go',
  'go_brought',
  'brought_told',
  'told_felt',
  'felt_told',
  'told_told',
  'told_guy',
  'guy_would',
  'would_hard',
  'hard_differ',
  'differ_languag',
  'languag_start',
  'start_argu',
  'argu_mani',
  'mani_kid',
  'kid_rais',
  'rais_bilingu',
  'bilingu_smart',
  'smart_also',
  'also_feel',
  'feel_like',
  'like_might',
  'might_cut',
  'cut_child',
  'child_mad',
  'mad_accept',
  'accept_cant',
  'cant_help',
  'help_wonder',
  'wonder_asshol',
  'okay_im_bit',
  'im_bit_dilemma',
  'bit_dilemma_current',
  'dilemma_current_week',
  'current_week_pregnant',
  'week_pregnant_get',
  'pregnant_get_readi',
  'get_readi_receiv',
  'readi_receiv_girl',
  'receiv_girl_problem',
  'girl_problem_husband',
  'problem_husband_recent',
  'husband_recent_told',
  'recent_told_want',
  'told_want_teach',
  'want_teach_spanish',
  'teach_spanish_thing',
  'spanish_thing_‘',
  'thing_‘_even',
  '‘_even_spanish',
  'even_spanish_born',
  'spanish_born_live',
  'born_live_spain',
  'live_spain_sinc',
  'spain_sinc_sort',
  'sinc_sort_cultur',
  'sort_cultur_famili',
  'cultur_famili_connect',
  'famili_connect_spain',
  'connect_spain_might',
  'spain_might_consid',
  'might_consid_american',
  'consid_american_initi',
  'american_initi_told',
  'initi_told_around',
  'told_around_week',
  'around_week_thought',
  'week_thought_joke',
  'thought_joke_let',
  'joke_let_go',
  'let_go_brought',
  'go_brought_told',
  'brought_told_felt',
  'told_felt_told',
  'felt_told_told',
  'told_told_guy',
  'told_guy_would',
  'guy_would_hard',
  'would_hard_differ',
  'hard_differ_languag',
  'differ_languag_start',
  'languag_start_argu',
  'start_argu_mani',
  'argu_mani_kid',
  'mani_kid_rais',
  'kid_rais_bilingu',
  'rais_bilingu_smart',
  'bilingu_smart_also',
  'smart_also_feel',
  'also_feel_like',
  'feel_like_might',
  'like_might_cut',
  'might_cut_child',
  'cut_child_mad',
  'child_mad_accept',
  'mad_accept_cant',
  'accept_cant_help',
  'cant_help_wonder',
  'help_wonder_asshol'],
 ['throwaway',
  'privaci',
  'background',
  'whenev',
  'year',
  'old',
  'son',
  'get',
  'injur',
  'hurt',
  'id',
  'normal',
  'kiss',
  'injur',
  'area',
  'way',
  'comfort',
  'make',
  'pain',
  'go',
  'away',
  'also',
  'use',
  'sourc',
  'strength',
  'certainli',
  'see',
  'way',
  'kiss',
  'skin',
  'directli',
  'cover',
  'injur',
  'area',
  'obvious',
  'year',
  'old',
  'husband',
  'got',
  'accid',
  'injuri',
  'wound',
  'left',
  'part',
  'chest',
  'pain',
  'toler',
  'take',
  'medic',
  'day',
  'help',
  'chang',
  'wound',
  'dress',
  'clean',
  'wound',
  'could',
  'place',
  'new',
  'wound',
  'dress',
  'ask',
  'kiss',
  'refus',
  'feel',
  'right',
  'wound',
  'still',
  'fresh',
  'alreadi',
  'antibiot',
  'ointment',
  'appli',
  'want',
  'insist',
  'kept',
  'declin',
  'got',
  'made',
  'said',
  'son',
  'suggest',
  'let',
  'go',
  'proceed',
  'appli',
  'new',
  'wound',
  'dress',
  'stop',
  'went',
  'long',
  'vent',
  'care',
  'clearli',
  'feel',
  'gross',
  'want',
  'kiss',
  'wound',
  'thought',
  'silli',
  'told',
  'let',
  'finish',
  'chang',
  'wound',
  'dress',
  'start',
  'argu',
  'leav',
  'room',
  'left',
  'kept',
  'sulk',
  'rest',
  'night',
  'told',
  'son',
  'mommi',
  'love',
  'daddi',
  'want',
  'kiss',
  'wound',
  'could',
  'get',
  'better',
  'floor',
  'son',
  'actual',
  'came',
  'upset',
  'husband',
  'made',
  'feel',
  'bad',
  'around',
  'kept',
  'think',
  'caus',
  'situat',
  'done',
  'want',
  'instead',
  'creat',
  'tension',
  'hous',
  'think',
  'throwaway_privaci',
  'privaci_background',
  'background_whenev',
  'whenev_year',
  'year_old',
  'old_son',
  'son_get',
  'get_injur',
  'injur_hurt',
  'hurt_id',
  'id_normal',
  'normal_kiss',
  'kiss_injur',
  'injur_area',
  'area_way',
  'way_comfort',
  'comfort_make',
  'make_pain',
  'pain_go',
  'go_away',
  'away_also',
  'also_use',
  'use_sourc',
  'sourc_strength',
  'strength_certainli',
  'certainli_see',
  'see_way',
  'way_kiss',
  'kiss_skin',
  'skin_directli',
  'directli_cover',
  'cover_injur',
  'injur_area',
  'area_obvious',
  'obvious_year',
  'year_old',
  'old_husband',
  'husband_got',
  'got_accid',
  'accid_injuri',
  'injuri_wound',
  'wound_left',
  'left_part',
  'part_chest',
  'chest_pain',
  'pain_toler',
  'toler_take',
  'take_medic',
  'medic_day',
  'day_help',
  'help_chang',
  'chang_wound',
  'wound_dress',
  'dress_clean',
  'clean_wound',
  'wound_could',
  'could_place',
  'place_new',
  'new_wound',
  'wound_dress',
  'dress_ask',
  'ask_kiss',
  'kiss_refus',
  'refus_feel',
  'feel_right',
  'right_wound',
  'wound_still',
  'still_fresh',
  'fresh_alreadi',
  'alreadi_antibiot',
  'antibiot_ointment',
  'ointment_appli',
  'appli_want',
  'want_insist',
  'insist_kept',
  'kept_declin',
  'declin_got',
  'got_made',
  'made_said',
  'said_son',
  'son_suggest',
  'suggest_let',
  'let_go',
  'go_proceed',
  'proceed_appli',
  'appli_new',
  'new_wound',
  'wound_dress',
  'dress_stop',
  'stop_went',
  'went_long',
  'long_vent',
  'vent_care',
  'care_clearli',
  'clearli_feel',
  'feel_gross',
  'gross_want',
  'want_kiss',
  'kiss_wound',
  'wound_thought',
  'thought_silli',
  'silli_told',
  'told_let',
  'let_finish',
  'finish_chang',
  'chang_wound',
  'wound_dress',
  'dress_start',
  'start_argu',
  'argu_leav',
  'leav_room',
  'room_left',
  'left_kept',
  'kept_sulk',
  'sulk_rest',
  'rest_night',
  'night_told',
  'told_son',
  'son_mommi',
  'mommi_love',
  'love_daddi',
  'daddi_want',
  'want_kiss',
  'kiss_wound',
  'wound_could',
  'could_get',
  'get_better',
  'better_floor',
  'floor_son',
  'son_actual',
  'actual_came',
  'came_upset',
  'upset_husband',
  'husband_made',
  'made_feel',
  'feel_bad',
  'bad_around',
  'around_kept',
  'kept_think',
  'think_caus',
  'caus_situat',
  'situat_done',
  'done_want',
  'want_instead',
  'instead_creat',
  'creat_tension',
  'tension_hous',
  'hous_think',
  'throwaway_privaci_background',
  'privaci_background_whenev',
  'background_whenev_year',
  'whenev_year_old',
  'year_old_son',
  'old_son_get',
  'son_get_injur',
  'get_injur_hurt',
  'injur_hurt_id',
  'hurt_id_normal',
  'id_normal_kiss',
  'normal_kiss_injur',
  'kiss_injur_area',
  'injur_area_way',
  'area_way_comfort',
  'way_comfort_make',
  'comfort_make_pain',
  'make_pain_go',
  'pain_go_away',
  'go_away_also',
  'away_also_use',
  'also_use_sourc',
  'use_sourc_strength',
  'sourc_strength_certainli',
  'strength_certainli_see',
  'certainli_see_way',
  'see_way_kiss',
  'way_kiss_skin',
  'kiss_skin_directli',
  'skin_directli_cover',
  'directli_cover_injur',
  'cover_injur_area',
  'injur_area_obvious',
  'area_obvious_year',
  'obvious_year_old',
  'year_old_husband',
  'old_husband_got',
  'husband_got_accid',
  'got_accid_injuri',
  'accid_injuri_wound',
  'injuri_wound_left',
  'wound_left_part',
  'left_part_chest',
  'part_chest_pain',
  'chest_pain_toler',
  'pain_toler_take',
  'toler_take_medic',
  'take_medic_day',
  'medic_day_help',
  'day_help_chang',
  'help_chang_wound',
  'chang_wound_dress',
  'wound_dress_clean',
  'dress_clean_wound',
  'clean_wound_could',
  'wound_could_place',
  'could_place_new',
  'place_new_wound',
  'new_wound_dress',
  'wound_dress_ask',
  'dress_ask_kiss',
  'ask_kiss_refus',
  'kiss_refus_feel',
  'refus_feel_right',
  'feel_right_wound',
  'right_wound_still',
  'wound_still_fresh',
  'still_fresh_alreadi',
  'fresh_alreadi_antibiot',
  'alreadi_antibiot_ointment',
  'antibiot_ointment_appli',
  'ointment_appli_want',
  'appli_want_insist',
  'want_insist_kept',
  'insist_kept_declin',
  'kept_declin_got',
  'declin_got_made',
  'got_made_said',
  'made_said_son',
  'said_son_suggest',
  'son_suggest_let',
  'suggest_let_go',
  'let_go_proceed',
  'go_proceed_appli',
  'proceed_appli_new',
  'appli_new_wound',
  'new_wound_dress',
  'wound_dress_stop',
  'dress_stop_went',
  'stop_went_long',
  'went_long_vent',
  'long_vent_care',
  'vent_care_clearli',
  'care_clearli_feel',
  'clearli_feel_gross',
  'feel_gross_want',
  'gross_want_kiss',
  'want_kiss_wound',
  'kiss_wound_thought',
  'wound_thought_silli',
  'thought_silli_told',
  'silli_told_let',
  'told_let_finish',
  'let_finish_chang',
  'finish_chang_wound',
  'chang_wound_dress',
  'wound_dress_start',
  'dress_start_argu',
  'start_argu_leav',
  'argu_leav_room',
  'leav_room_left',
  'room_left_kept',
  'left_kept_sulk',
  'kept_sulk_rest',
  'sulk_rest_night',
  'rest_night_told',
  'night_told_son',
  'told_son_mommi',
  'son_mommi_love',
  'mommi_love_daddi',
  'love_daddi_want',
  'daddi_want_kiss',
  'want_kiss_wound',
  'kiss_wound_could',
  'wound_could_get',
  'could_get_better',
  'get_better_floor',
  'better_floor_son',
  'floor_son_actual',
  'son_actual_came',
  'actual_came_upset',
  'came_upset_husband',
  'upset_husband_made',
  'husband_made_feel',
  'made_feel_bad',
  'feel_bad_around',
  'bad_around_kept',
  'around_kept_think',
  'kept_think_caus',
  'think_caus_situat',
  'caus_situat_done',
  'situat_done_want',
  'done_want_instead',
  'want_instead_creat',
  'instead_creat_tension',
  'creat_tension_hous',
  'tension_hous_think'],
 ['know',
  'sound',
  'like',
  'swear',
  'desper',
  'situat',
  'girlfriend',
  'month',
  'visibl',
  'scar',
  'neck',
  'hate',
  'ask',
  'hate',
  'tellth',
  'stori',
  'behind',
  'believ',
  'stori',
  'yet',
  'im',
  'wait',
  'til',
  'comfort',
  'share',
  'met',
  'famili',
  'sever',
  'time',
  'coursemom',
  'aunt',
  'aske',
  'scarlik',
  '-',
  'time',
  'coupl',
  'hour',
  'dinner',
  'movi',
  'time',
  'etc',
  'got',
  'bothersom',
  'girlfriend',
  'would',
  'look',
  'uncomfort',
  'could',
  'tell',
  'question',
  'bring',
  'sad',
  'told',
  'mom',
  'stop',
  'ask',
  'invas',
  'question',
  'scar',
  'everi',
  'time',
  'shed',
  'say',
  'okay',
  'ask',
  'promis',
  'would',
  'turn',
  'around',
  'mother',
  'day',
  'girlfriend',
  'attend',
  'dinner',
  'mom',
  'sit',
  'live',
  'room',
  'mom',
  'goe',
  'ask',
  'girlfriend',
  'scar',
  'time',
  'bigger',
  'audienc',
  'whole',
  'famili',
  'girlfriend',
  'said',
  'shed',
  'rather',
  'talk',
  'mom',
  'kept',
  'corner',
  'kept',
  'ask',
  'yesno',
  'form',
  'sit',
  'next',
  'mom',
  'forc',
  'loud',
  'fart',
  'attempt',
  'take',
  'pressur',
  'attent',
  'away',
  'girlfriend',
  'get',
  'mom',
  'switch',
  'focu',
  'someth',
  'els',
  'like',
  'woohp',
  'famili',
  'start',
  'laugh',
  'mom',
  'turn',
  'gave',
  'nasti',
  'stare',
  'got',
  'awkward',
  'ngl',
  'desper',
  'realli',
  'yell',
  'mom',
  'stop',
  'start',
  'fight',
  'mother',
  'day',
  'thought',
  'instead',
  'make',
  'scene',
  'pull',
  'kitchen',
  'scold',
  'admit',
  'intenti',
  'call',
  'childish',
  'said',
  'want',
  'bring',
  'girlfriend',
  'scar',
  'said',
  'swear',
  'like',
  'time',
  'anyway',
  'girlfriend',
  'left',
  'girlfriend',
  'stop',
  'laugh',
  'car',
  'unfortun',
  'dad',
  'upset',
  'say',
  'behav',
  'poorli',
  'childishli',
  'infront',
  'extend',
  'famili',
  'told',
  'grow',
  'aita',
  'know_sound',
  'sound_like',
  'like_swear',
  'swear_desper',
  'desper_situat',
  'situat_girlfriend',
  'girlfriend_month',
  'month_visibl',
  'visibl_scar',
  'scar_neck',
  'neck_hate',
  'hate_ask',
  'ask_hate',
  'hate_tellth',
  'tellth_stori',
  'stori_behind',
  'behind_believ',
  'believ_stori',
  'stori_yet',
  'yet_im',
  'im_wait',
  'wait_til',
  'til_comfort',
  'comfort_share',
  'share_met',
  'met_famili',
  'famili_sever',
  'sever_time',
  'time_coursemom',
  'coursemom_aunt',
  'aunt_aske',
  'aske_scarlik',
  'scarlik_-',
  '-_time',
  'time_coupl',
  'coupl_hour',
  'hour_dinner',
  'dinner_movi',
  'movi_time',
  'time_etc',
  'etc_got',
  'got_bothersom',
  'bothersom_girlfriend',
  'girlfriend_would',
  'would_look',
  'look_uncomfort',
  'uncomfort_could',
  'could_tell',
  'tell_question',
  'question_bring',
  'bring_sad',
  'sad_told',
  'told_mom',
  'mom_stop',
  'stop_ask',
  'ask_invas',
  'invas_question',
  'question_scar',
  'scar_everi',
  'everi_time',
  'time_shed',
  'shed_say',
  'say_okay',
  'okay_ask',
  'ask_promis',
  'promis_would',
  'would_turn',
  'turn_around',
  'around_mother',
  'mother_day',
  'day_girlfriend',
  'girlfriend_attend',
  'attend_dinner',
  'dinner_mom',
  'mom_sit',
  'sit_live',
  'live_room',
  'room_mom',
  'mom_goe',
  'goe_ask',
  'ask_girlfriend',
  'girlfriend_scar',
  'scar_time',
  'time_bigger',
  'bigger_audienc',
  'audienc_whole',
  'whole_famili',
  'famili_girlfriend',
  'girlfriend_said',
  'said_shed',
  'shed_rather',
  'rather_talk',
  'talk_mom',
  'mom_kept',
  'kept_corner',
  'corner_kept',
  'kept_ask',
  'ask_yesno',
  'yesno_form',
  'form_sit',
  'sit_next',
  'next_mom',
  'mom_forc',
  'forc_loud',
  'loud_fart',
  'fart_attempt',
  'attempt_take',
  'take_pressur',
  'pressur_attent',
  'attent_away',
  'away_girlfriend',
  'girlfriend_get',
  'get_mom',
  'mom_switch',
  'switch_focu',
  'focu_someth',
  'someth_els',
  'els_like',
  'like_woohp',
  'woohp_famili',
  'famili_start',
  'start_laugh',
  'laugh_mom',
  'mom_turn',
  'turn_gave',
  'gave_nasti',
  'nasti_stare',
  'stare_got',
  'got_awkward',
  'awkward_ngl',
  'ngl_desper',
  'desper_realli',
  'realli_yell',
  'yell_mom',
  'mom_stop',
  'stop_start',
  'start_fight',
  'fight_mother',
  'mother_day',
  'day_thought',
  'thought_instead',
  'instead_make',
  'make_scene',
  'scene_pull',
  'pull_kitchen',
  'kitchen_scold',
  'scold_admit',
  'admit_intenti',
  'intenti_call',
  'call_childish',
  'childish_said',
  'said_want',
  'want_bring',
  'bring_girlfriend',
  'girlfriend_scar',
  'scar_said',
  'said_swear',
  'swear_like',
  'like_time',
  'time_anyway',
  'anyway_girlfriend',
  'girlfriend_left',
  'left_girlfriend',
  'girlfriend_stop',
  'stop_laugh',
  'laugh_car',
  'car_unfortun',
  'unfortun_dad',
  'dad_upset',
  'upset_say',
  'say_behav',
  'behav_poorli',
  'poorli_childishli',
  'childishli_infront',
  'infront_extend',
  'extend_famili',
  'famili_told',
  'told_grow',
  'grow_aita',
  'know_sound_like',
  'sound_like_swear',
  'like_swear_desper',
  'swear_desper_situat',
  'desper_situat_girlfriend',
  'situat_girlfriend_month',
  'girlfriend_month_visibl',
  'month_visibl_scar',
  'visibl_scar_neck',
  'scar_neck_hate',
  'neck_hate_ask',
  'hate_ask_hate',
  'ask_hate_tellth',
  'hate_tellth_stori',
  'tellth_stori_behind',
  'stori_behind_believ',
  'behind_believ_stori',
  'believ_stori_yet',
  'stori_yet_im',
  'yet_im_wait',
  'im_wait_til',
  'wait_til_comfort',
  'til_comfort_share',
  'comfort_share_met',
  'share_met_famili',
  'met_famili_sever',
  'famili_sever_time',
  'sever_time_coursemom',
  'time_coursemom_aunt',
  'coursemom_aunt_aske',
  'aunt_aske_scarlik',
  'aske_scarlik_-',
  'scarlik_-_time',
  '-_time_coupl',
  'time_coupl_hour',
  'coupl_hour_dinner',
  'hour_dinner_movi',
  'dinner_movi_time',
  'movi_time_etc',
  'time_etc_got',
  'etc_got_bothersom',
  'got_bothersom_girlfriend',
  'bothersom_girlfriend_would',
  'girlfriend_would_look',
  'would_look_uncomfort',
  'look_uncomfort_could',
  'uncomfort_could_tell',
  'could_tell_question',
  'tell_question_bring',
  'question_bring_sad',
  'bring_sad_told',
  'sad_told_mom',
  'told_mom_stop',
  'mom_stop_ask',
  'stop_ask_invas',
  'ask_invas_question',
  'invas_question_scar',
  'question_scar_everi',
  'scar_everi_time',
  'everi_time_shed',
  'time_shed_say',
  'shed_say_okay',
  'say_okay_ask',
  'okay_ask_promis',
  'ask_promis_would',
  'promis_would_turn',
  'would_turn_around',
  'turn_around_mother',
  'around_mother_day',
  'mother_day_girlfriend',
  'day_girlfriend_attend',
  'girlfriend_attend_dinner',
  'attend_dinner_mom',
  'dinner_mom_sit',
  'mom_sit_live',
  'sit_live_room',
  'live_room_mom',
  'room_mom_goe',
  'mom_goe_ask',
  'goe_ask_girlfriend',
  'ask_girlfriend_scar',
  'girlfriend_scar_time',
  'scar_time_bigger',
  'time_bigger_audienc',
  'bigger_audienc_whole',
  'audienc_whole_famili',
  'whole_famili_girlfriend',
  'famili_girlfriend_said',
  'girlfriend_said_shed',
  'said_shed_rather',
  'shed_rather_talk',
  'rather_talk_mom',
  'talk_mom_kept',
  'mom_kept_corner',
  'kept_corner_kept',
  'corner_kept_ask',
  'kept_ask_yesno',
  'ask_yesno_form',
  'yesno_form_sit',
  'form_sit_next',
  'sit_next_mom',
  'next_mom_forc',
  'mom_forc_loud',
  'forc_loud_fart',
  'loud_fart_attempt',
  'fart_attempt_take',
  'attempt_take_pressur',
  'take_pressur_attent',
  'pressur_attent_away',
  'attent_away_girlfriend',
  'away_girlfriend_get',
  'girlfriend_get_mom',
  'get_mom_switch',
  'mom_switch_focu',
  'switch_focu_someth',
  'focu_someth_els',
  'someth_els_like',
  'els_like_woohp',
  'like_woohp_famili',
  'woohp_famili_start',
  'famili_start_laugh',
  'start_laugh_mom',
  'laugh_mom_turn',
  'mom_turn_gave',
  'turn_gave_nasti',
  'gave_nasti_stare',
  'nasti_stare_got',
  'stare_got_awkward',
  'got_awkward_ngl',
  'awkward_ngl_desper',
  'ngl_desper_realli',
  'desper_realli_yell',
  'realli_yell_mom',
  'yell_mom_stop',
  'mom_stop_start',
  'stop_start_fight',
  'start_fight_mother',
  'fight_mother_day',
  'mother_day_thought',
  'day_thought_instead',
  'thought_instead_make',
  'instead_make_scene',
  'make_scene_pull',
  'scene_pull_kitchen',
  'pull_kitchen_scold',
  'kitchen_scold_admit',
  'scold_admit_intenti',
  'admit_intenti_call',
  'intenti_call_childish',
  'call_childish_said',
  'childish_said_want',
  'said_want_bring',
  'want_bring_girlfriend',
  'bring_girlfriend_scar',
  'girlfriend_scar_said',
  'scar_said_swear',
  'said_swear_like',
  'swear_like_time',
  'like_time_anyway',
  'time_anyway_girlfriend',
  'anyway_girlfriend_left',
  'girlfriend_left_girlfriend',
  'left_girlfriend_stop',
  'girlfriend_stop_laugh',
  'stop_laugh_car',
  'laugh_car_unfortun',
  'car_unfortun_dad',
  'unfortun_dad_upset',
  'dad_upset_say',
  'upset_say_behav',
  'say_behav_poorli',
  'behav_poorli_childishli',
  'poorli_childishli_infront',
  'childishli_infront_extend',
  'infront_extend_famili',
  'extend_famili_told',
  'famili_told_grow',
  'told_grow_aita'],
 ['brother',
  'singl',
  'widow',
  'dad',
  'kid',
  'nephew',
  'age',
  'use',
  'babysitt',
  'ever',
  'sinc',
  'met',
  'new',
  'girlfriend',
  'stop',
  'hire',
  'help',
  'girlfriend',
  'claim',
  'want',
  'kid',
  'warm',
  'get',
  'use',
  'woman',
  'life',
  'wtf',
  'start',
  'ask',
  'watch',
  'boy',
  'whenev',
  'someth',
  'id',
  'help',
  'im',
  'abl',
  'work',
  'demand',
  'job',
  'need',
  'cover',
  'full',
  'time',
  'whatev',
  'reason',
  'refus',
  'acknowledg',
  'day',
  'ago',
  'go',
  'lunch',
  'girlfriend',
  'meet',
  'friend',
  'want',
  'boy',
  'told',
  'work',
  'beg',
  'take',
  'day',
  'refus',
  'went',
  'work',
  'cowork',
  'mine',
  'enter',
  'offic',
  'behind',
  'nephew',
  'flabbergast',
  'told',
  'brother',
  'drop',
  'coulld',
  'stay',
  'state',
  'disbelief',
  'also',
  'furiou',
  'felt',
  'stuck',
  'terrifi',
  'boss',
  'would',
  'see',
  'get',
  'troubl',
  'even',
  'take',
  'time',
  'busi',
  'frustrrat',
  'call',
  'polic',
  'explain',
  'happen',
  'got',
  'ahold',
  'brother',
  'wss',
  'forc',
  'come',
  'take',
  'well',
  'get',
  'troubl',
  'authorti',
  'spent',
  'hour',
  'talk',
  'bkss',
  'eventu',
  'found',
  'leav',
  'work',
  'earli',
  'go',
  'home',
  'even',
  'brother',
  'call',
  'start',
  'scream',
  'call',
  'name',
  'sort',
  'say',
  'ruin',
  'meet',
  'girlfriend',
  'friend',
  'caus',
  'get',
  'troubl',
  'polic',
  'call',
  'vile',
  'sob',
  'said',
  'couldv',
  'kid',
  'coupl',
  'hour',
  'even',
  'took',
  'home',
  'took',
  'rest',
  'day',
  'speak',
  'girlfriend',
  'constantli',
  'shame',
  'id',
  'done',
  'say',
  'treat',
  'kid',
  'better',
  'asham',
  'brother_singl',
  'singl_widow',
  'widow_dad',
  'dad_kid',
  'kid_nephew',
  'nephew_age',
  'age_use',
  'use_babysitt',
  'babysitt_ever',
  'ever_sinc',
  'sinc_met',
  'met_new',
  'new_girlfriend',
  'girlfriend_stop',
  'stop_hire',
  'hire_help',
  'help_girlfriend',
  'girlfriend_claim',
  'claim_want',
  'want_kid',
  'kid_warm',
  'warm_get',
  'get_use',
  'use_woman',
  'woman_life',
  'life_wtf',
  'wtf_start',
  'start_ask',
  'ask_watch',
  'watch_boy',
  'boy_whenev',
  'whenev_someth',
  'someth_id',
  'id_help',
  'help_im',
  'im_abl',
  'abl_work',
  'work_demand',
  'demand_job',
  'job_need',
  'need_cover',
  'cover_full',
  'full_time',
  'time_whatev',
  'whatev_reason',
  'reason_refus',
  'refus_acknowledg',
  'acknowledg_day',
  'day_ago',
  'ago_go',
  'go_lunch',
  'lunch_girlfriend',
  'girlfriend_meet',
  'meet_friend',
  'friend_want',
  'want_boy',
  'boy_told',
  'told_work',
  'work_beg',
  'beg_take',
  'take_day',
  'day_refus',
  'refus_went',
  'went_work',
  'work_cowork',
  'cowork_mine',
  'mine_enter',
  'enter_offic',
  'offic_behind',
  'behind_nephew',
  'nephew_flabbergast',
  'flabbergast_told',
  'told_brother',
  'brother_drop',
  'drop_coulld',
  'coulld_stay',
  'stay_state',
  'state_disbelief',
  'disbelief_also',
  'also_furiou',
  'furiou_felt',
  'felt_stuck',
  'stuck_terrifi',
  'terrifi_boss',
  'boss_would',
  'would_see',
  'see_get',
  'get_troubl',
  'troubl_even',
  'even_take',
  'take_time',
  'time_busi',
  'busi_frustrrat',
  'frustrrat_call',
  'call_polic',
  'polic_explain',
  'explain_happen',
  'happen_got',
  'got_ahold',
  'ahold_brother',
  'brother_wss',
  'wss_forc',
  'forc_come',
  'come_take',
  'take_well',
  'well_get',
  'get_troubl',
  'troubl_authorti',
  'authorti_spent',
  'spent_hour',
  'hour_talk',
  'talk_bkss',
  'bkss_eventu',
  'eventu_found',
  'found_leav',
  'leav_work',
  'work_earli',
  'earli_go',
  'go_home',
  'home_even',
  'even_brother',
  'brother_call',
  'call_start',
  'start_scream',
  'scream_call',
  'call_name',
  'name_sort',
  'sort_say',
  'say_ruin',
  'ruin_meet',
  'meet_girlfriend',
  'girlfriend_friend',
  'friend_caus',
  'caus_get',
  'get_troubl',
  'troubl_polic',
  'polic_call',
  'call_vile',
  'vile_sob',
  'sob_said',
  'said_couldv',
  'couldv_kid',
  'kid_coupl',
  'coupl_hour',
  'hour_even',
  'even_took',
  'took_home',
  'home_took',
  'took_rest',
  'rest_day',
  'day_speak',
  'speak_girlfriend',
  'girlfriend_constantli',
  'constantli_shame',
  'shame_id',
  'id_done',
  'done_say',
  'say_treat',
  'treat_kid',
  'kid_better',
  'better_asham',
  'brother_singl_widow',
  'singl_widow_dad',
  'widow_dad_kid',
  'dad_kid_nephew',
  'kid_nephew_age',
  'nephew_age_use',
  'age_use_babysitt',
  'use_babysitt_ever',
  'babysitt_ever_sinc',
  'ever_sinc_met',
  'sinc_met_new',
  'met_new_girlfriend',
  'new_girlfriend_stop',
  'girlfriend_stop_hire',
  'stop_hire_help',
  'hire_help_girlfriend',
  'help_girlfriend_claim',
  'girlfriend_claim_want',
  'claim_want_kid',
  'want_kid_warm',
  'kid_warm_get',
  'warm_get_use',
  'get_use_woman',
  'use_woman_life',
  'woman_life_wtf',
  'life_wtf_start',
  'wtf_start_ask',
  'start_ask_watch',
  'ask_watch_boy',
  'watch_boy_whenev',
  'boy_whenev_someth',
  'whenev_someth_id',
  'someth_id_help',
  'id_help_im',
  'help_im_abl',
  'im_abl_work',
  'abl_work_demand',
  'work_demand_job',
  'demand_job_need',
  'job_need_cover',
  'need_cover_full',
  'cover_full_time',
  'full_time_whatev',
  'time_whatev_reason',
  'whatev_reason_refus',
  'reason_refus_acknowledg',
  'refus_acknowledg_day',
  'acknowledg_day_ago',
  'day_ago_go',
  'ago_go_lunch',
  'go_lunch_girlfriend',
  'lunch_girlfriend_meet',
  'girlfriend_meet_friend',
  'meet_friend_want',
  'friend_want_boy',
  'want_boy_told',
  'boy_told_work',
  'told_work_beg',
  'work_beg_take',
  'beg_take_day',
  'take_day_refus',
  'day_refus_went',
  'refus_went_work',
  'went_work_cowork',
  'work_cowork_mine',
  'cowork_mine_enter',
  'mine_enter_offic',
  'enter_offic_behind',
  'offic_behind_nephew',
  'behind_nephew_flabbergast',
  'nephew_flabbergast_told',
  'flabbergast_told_brother',
  'told_brother_drop',
  'brother_drop_coulld',
  'drop_coulld_stay',
  'coulld_stay_state',
  'stay_state_disbelief',
  'state_disbelief_also',
  'disbelief_also_furiou',
  'also_furiou_felt',
  'furiou_felt_stuck',
  'felt_stuck_terrifi',
  'stuck_terrifi_boss',
  'terrifi_boss_would',
  'boss_would_see',
  'would_see_get',
  'see_get_troubl',
  'get_troubl_even',
  'troubl_even_take',
  'even_take_time',
  'take_time_busi',
  'time_busi_frustrrat',
  'busi_frustrrat_call',
  'frustrrat_call_polic',
  'call_polic_explain',
  'polic_explain_happen',
  'explain_happen_got',
  'happen_got_ahold',
  'got_ahold_brother',
  'ahold_brother_wss',
  'brother_wss_forc',
  'wss_forc_come',
  'forc_come_take',
  'come_take_well',
  'take_well_get',
  'well_get_troubl',
  'get_troubl_authorti',
  'troubl_authorti_spent',
  'authorti_spent_hour',
  'spent_hour_talk',
  'hour_talk_bkss',
  'talk_bkss_eventu',
  'bkss_eventu_found',
  'eventu_found_leav',
  'found_leav_work',
  'leav_work_earli',
  'work_earli_go',
  'earli_go_home',
  'go_home_even',
  'home_even_brother',
  'even_brother_call',
  'brother_call_start',
  'call_start_scream',
  'start_scream_call',
  'scream_call_name',
  'call_name_sort',
  'name_sort_say',
  'sort_say_ruin',
  'say_ruin_meet',
  'ruin_meet_girlfriend',
  'meet_girlfriend_friend',
  'girlfriend_friend_caus',
  'friend_caus_get',
  'caus_get_troubl',
  'get_troubl_polic',
  'troubl_polic_call',
  'polic_call_vile',
  'call_vile_sob',
  'vile_sob_said',
  'sob_said_couldv',
  'said_couldv_kid',
  'couldv_kid_coupl',
  'kid_coupl_hour',
  'coupl_hour_even',
  'hour_even_took',
  'even_took_home',
  'took_home_took',
  'home_took_rest',
  'took_rest_day',
  'rest_day_speak',
  'day_speak_girlfriend',
  'speak_girlfriend_constantli',
  'girlfriend_constantli_shame',
  'constantli_shame_id',
  'shame_id_done',
  'id_done_say',
  'done_say_treat',
  'say_treat_kid',
  'treat_kid_better',
  'kid_better_asham'],
 ['myf',
  'sonm',
  'came',
  'husbandm',
  'year',
  'old',
  'husband',
  'atheist',
  'support',
  'lgbtq+',
  'commun',
  'proud',
  'son',
  'come',
  'howev',
  'husband',
  'mother',
  'devout',
  'cathol',
  'extrem',
  'intoler',
  'gay',
  'peopl',
  'wealthi',
  'children',
  'told',
  'young',
  'age',
  'colleg',
  'would',
  'paid',
  'long',
  'attend',
  'privat',
  'christian',
  'cathol',
  'school',
  'believ',
  'keep',
  'parti',
  'premarit',
  'sex',
  'etc',
  'agre',
  'argu',
  'children',
  'get',
  'best',
  'educ',
  'possibl',
  'regardless',
  'school',
  'religi',
  'affili',
  'top',
  'prioriti',
  'refus',
  'chang',
  'mind',
  'son',
  'chose',
  'christian',
  'colleg',
  'one',
  'state',
  'attend',
  'graduat',
  'lot',
  'colleg',
  'credit',
  'take',
  'mani',
  'ap',
  'class',
  'high',
  'school',
  'done',
  'three',
  'year',
  'oppos',
  'four',
  'current',
  'began',
  'year',
  'two',
  'alreadi',
  'paid',
  'labor',
  'day',
  'weekend',
  'came',
  'home',
  'celebr',
  'grandma',
  'birthday',
  'told',
  'one',
  'cousin',
  'talk',
  'boy',
  'colleg',
  'thought',
  'could',
  'trust',
  'seem',
  'support',
  'accord',
  'son',
  'told',
  'mom',
  'dad',
  'husband',
  'sister',
  'husband',
  'religi',
  'mother',
  'law',
  'son',
  'livid',
  'call',
  'inform',
  'make',
  'futur',
  'payment',
  'toward',
  'tuition',
  'told',
  'relay',
  'messag',
  'longer',
  'speak',
  'told',
  'mani',
  'time',
  'come',
  'grandma',
  'cousin',
  'aunt',
  'uncl',
  'colleg',
  'hate',
  'cant',
  'husband',
  'afford',
  'colleg',
  'like',
  'mother',
  'law',
  'go',
  'contact',
  'two',
  'childrenf',
  'get',
  'chanc',
  'tuition',
  'paid',
  'well',
  'son',
  'okay',
  'wait',
  'sake',
  'sibl',
  'unfortun',
  'take',
  'student',
  'loan',
  'eat',
  'cost',
  'final',
  'year',
  'son',
  'obvious',
  'devast',
  'final',
  'year',
  'colleg',
  'paid',
  'next',
  'year',
  'cousin',
  'someon',
  'trust',
  'want',
  'husband',
  'foot',
  'bill',
  'next',
  'year',
  '$',
  'save',
  'current',
  'plan',
  'use',
  'much',
  'need',
  'kitchen',
  'renov',
  'oven',
  'bare',
  'work',
  'dishwash',
  'work',
  'kitchen',
  'worn',
  'outdat',
  'son',
  'call',
  'asshol',
  'priorit',
  'remodel',
  'educ',
  'weve',
  'explain',
  'kitchen',
  'fall',
  'apart',
  'much',
  'need',
  'nowher',
  'near',
  'cost',
  'tuition',
  'even',
  'postpon',
  'would',
  'still',
  'short',
  'privat',
  'school',
  'expens',
  'feel',
  'like',
  'adult',
  'need',
  'one',
  'deal',
  'consequ',
  'us',
  'aita',
  'use',
  'famili',
  'save',
  'cover',
  'remain',
  'tuition',
  'edit',
  'feel',
  'like',
  'clear',
  'kitchen',
  'remodel',
  'obvious',
  'applianc',
  'alon',
  'go',
  'cost',
  '$',
  'major',
  'money',
  'go',
  'go',
  'necessari',
  'infrastructur',
  'repair',
  'live',
  'expens',
  'area',
  'ye',
  'cost',
  'fix',
  'necess',
  'kitchen',
  'way',
  'fanci',
  'clear',
  'origin',
  'post',
  'remodel',
  'aesthet',
  'myf_sonm',
  'sonm_came',
  'came_husbandm',
  'husbandm_year',
  'year_old',
  'old_husband',
  'husband_atheist',
  'atheist_support',
  'support_lgbtq+',
  'lgbtq+_commun',
  'commun_proud',
  'proud_son',
  'son_come',
  'come_howev',
  'howev_husband',
  'husband_mother',
  'mother_devout',
  'devout_cathol',
  'cathol_extrem',
  'extrem_intoler',
  'intoler_gay',
  'gay_peopl',
  'peopl_wealthi',
  'wealthi_children',
  'children_told',
  'told_young',
  'young_age',
  'age_colleg',
  'colleg_would',
  'would_paid',
  'paid_long',
  'long_attend',
  'attend_privat',
  'privat_christian',
  'christian_cathol',
  'cathol_school',
  'school_believ',
  'believ_keep',
  'keep_parti',
  'parti_premarit',
  'premarit_sex',
  'sex_etc',
  'etc_agre',
  'agre_argu',
  'argu_children',
  'children_get',
  'get_best',
  'best_educ',
  'educ_possibl',
  'possibl_regardless',
  'regardless_school',
  'school_religi',
  'religi_affili',
  'affili_top',
  'top_prioriti',
  'prioriti_refus',
  'refus_chang',
  'chang_mind',
  'mind_son',
  'son_chose',
  'chose_christian',
  'christian_colleg',
  'colleg_one',
  'one_state',
  'state_attend',
  'attend_graduat',
  'graduat_lot',
  'lot_colleg',
  'colleg_credit',
  'credit_take',
  'take_mani',
  'mani_ap',
  'ap_class',
  'class_high',
  'high_school',
  'school_done',
  'done_three',
  'three_year',
  'year_oppos',
  'oppos_four',
  'four_current',
  'current_began',
  'began_year',
  'year_two',
  'two_alreadi',
  'alreadi_paid',
  'paid_labor',
  'labor_day',
  'day_weekend',
  'weekend_came',
  'came_home',
  'home_celebr',
  'celebr_grandma',
  'grandma_birthday',
  'birthday_told',
  'told_one',
  'one_cousin',
  'cousin_talk',
  'talk_boy',
  'boy_colleg',
  'colleg_thought',
  'thought_could',
  'could_trust',
  'trust_seem',
  'seem_support',
  'support_accord',
  'accord_son',
  'son_told',
  'told_mom',
  'mom_dad',
  'dad_husband',
  'husband_sister',
  'sister_husband',
  'husband_religi',
  'religi_mother',
  'mother_law',
  'law_son',
  'son_livid',
  'livid_call',
  'call_inform',
  'inform_make',
  'make_futur',
  'futur_payment',
  'payment_toward',
  'toward_tuition',
  'tuition_told',
  'told_relay',
  'relay_messag',
  'messag_longer',
  'longer_speak',
  'speak_told',
  'told_mani',
  'mani_time',
  'time_come',
  'come_grandma',
  'grandma_cousin',
  'cousin_aunt',
  'aunt_uncl',
  'uncl_colleg',
  'colleg_hate',
  'hate_cant',
  'cant_husband',
  'husband_afford',
  'afford_colleg',
  'colleg_like',
  'like_mother',
  'mother_law',
  'law_go',
  'go_contact',
  'contact_two',
  'two_childrenf',
  'childrenf_get',
  'get_chanc',
  'chanc_tuition',
  'tuition_paid',
  'paid_well',
  'well_son',
  'son_okay',
  'okay_wait',
  'wait_sake',
  'sake_sibl',
  'sibl_unfortun',
  'unfortun_take',
  'take_student',
  'student_loan',
  'loan_eat',
  'eat_cost',
  'cost_final',
  'final_year',
  'year_son',
  'son_obvious',
  'obvious_devast',
  'devast_final',
  'final_year',
  'year_colleg',
  'colleg_paid',
  'paid_next',
  'next_year',
  'year_cousin',
  'cousin_someon',
  'someon_trust',
  'trust_want',
  'want_husband',
  'husband_foot',
  'foot_bill',
  'bill_next',
  'next_year',
  'year_$',
  '$_save',
  'save_current',
  'current_plan',
  'plan_use',
  'use_much',
  'much_need',
  'need_kitchen',
  'kitchen_renov',
  'renov_oven',
  'oven_bare',
  'bare_work',
  'work_dishwash',
  'dishwash_work',
  'work_kitchen',
  'kitchen_worn',
  'worn_outdat',
  'outdat_son',
  'son_call',
  'call_asshol',
  'asshol_priorit',
  'priorit_remodel',
  'remodel_educ',
  'educ_weve',
  'weve_explain',
  'explain_kitchen',
  'kitchen_fall',
  'fall_apart',
  'apart_much',
  'much_need',
  'need_nowher',
  'nowher_near',
  'near_cost',
  'cost_tuition',
  'tuition_even',
  'even_postpon',
  'postpon_would',
  'would_still',
  'still_short',
  'short_privat',
  'privat_school',
  'school_expens',
  'expens_feel',
  'feel_like',
  'like_adult',
  'adult_need',
  'need_one',
  'one_deal',
  'deal_consequ',
  'consequ_us',
  'us_aita',
  'aita_use',
  'use_famili',
  'famili_save',
  'save_cover',
  'cover_remain',
  'remain_tuition',
  'tuition_edit',
  'edit_feel',
  'feel_like',
  'like_clear',
  'clear_kitchen',
  'kitchen_remodel',
  'remodel_obvious',
  'obvious_applianc',
  'applianc_alon',
  'alon_go',
  'go_cost',
  'cost_$',
  '$_major',
  'major_money',
  'money_go',
  'go_go',
  'go_necessari',
  'necessari_infrastructur',
  'infrastructur_repair',
  'repair_live',
  'live_expens',
  'expens_area',
  'area_ye',
  'ye_cost',
  'cost_fix',
  'fix_necess',
  'necess_kitchen',
  'kitchen_way',
  'way_fanci',
  'fanci_clear',
  'clear_origin',
  'origin_post',
  'post_remodel',
  'remodel_aesthet',
  'myf_sonm_came',
  'sonm_came_husbandm',
  'came_husbandm_year',
  'husbandm_year_old',
  'year_old_husband',
  'old_husband_atheist',
  'husband_atheist_support',
  'atheist_support_lgbtq+',
  'support_lgbtq+_commun',
  'lgbtq+_commun_proud',
  'commun_proud_son',
  'proud_son_come',
  'son_come_howev',
  'come_howev_husband',
  'howev_husband_mother',
  'husband_mother_devout',
  'mother_devout_cathol',
  'devout_cathol_extrem',
  'cathol_extrem_intoler',
  'extrem_intoler_gay',
  'intoler_gay_peopl',
  'gay_peopl_wealthi',
  'peopl_wealthi_children',
  'wealthi_children_told',
  'children_told_young',
  'told_young_age',
  'young_age_colleg',
  'age_colleg_would',
  'colleg_would_paid',
  'would_paid_long',
  'paid_long_attend',
  'long_attend_privat',
  'attend_privat_christian',
  'privat_christian_cathol',
  'christian_cathol_school',
  'cathol_school_believ',
  'school_believ_keep',
  'believ_keep_parti',
  'keep_parti_premarit',
  'parti_premarit_sex',
  'premarit_sex_etc',
  'sex_etc_agre',
  'etc_agre_argu',
  'agre_argu_children',
  'argu_children_get',
  'children_get_best',
  'get_best_educ',
  'best_educ_possibl',
  'educ_possibl_regardless',
  'possibl_regardless_school',
  'regardless_school_religi',
  'school_religi_affili',
  'religi_affili_top',
  'affili_top_prioriti',
  'top_prioriti_refus',
  'prioriti_refus_chang',
  'refus_chang_mind',
  'chang_mind_son',
  'mind_son_chose',
  'son_chose_christian',
  'chose_christian_colleg',
  'christian_colleg_one',
  'colleg_one_state',
  'one_state_attend',
  'state_attend_graduat',
  'attend_graduat_lot',
  'graduat_lot_colleg',
  'lot_colleg_credit',
  'colleg_credit_take',
  'credit_take_mani',
  'take_mani_ap',
  'mani_ap_class',
  'ap_class_high',
  'class_high_school',
  'high_school_done',
  'school_done_three',
  'done_three_year',
  'three_year_oppos',
  'year_oppos_four',
  'oppos_four_current',
  'four_current_began',
  'current_began_year',
  'began_year_two',
  'year_two_alreadi',
  'two_alreadi_paid',
  'alreadi_paid_labor',
  'paid_labor_day',
  'labor_day_weekend',
  'day_weekend_came',
  'weekend_came_home',
  'came_home_celebr',
  'home_celebr_grandma',
  'celebr_grandma_birthday',
  'grandma_birthday_told',
  'birthday_told_one',
  'told_one_cousin',
  'one_cousin_talk',
  'cousin_talk_boy',
  'talk_boy_colleg',
  'boy_colleg_thought',
  'colleg_thought_could',
  'thought_could_trust',
  'could_trust_seem',
  'trust_seem_support',
  'seem_support_accord',
  'support_accord_son',
  'accord_son_told',
  'son_told_mom',
  'told_mom_dad',
  'mom_dad_husband',
  'dad_husband_sister',
  'husband_sister_husband',
  'sister_husband_religi',
  'husband_religi_mother',
  'religi_mother_law',
  'mother_law_son',
  'law_son_livid',
  'son_livid_call',
  'livid_call_inform',
  'call_inform_make',
  'inform_make_futur',
  'make_futur_payment',
  'futur_payment_toward',
  'payment_toward_tuition',
  'toward_tuition_told',
  'tuition_told_relay',
  'told_relay_messag',
  'relay_messag_longer',
  'messag_longer_speak',
  'longer_speak_told',
  'speak_told_mani',
  'told_mani_time',
  'mani_time_come',
  'time_come_grandma',
  'come_grandma_cousin',
  'grandma_cousin_aunt',
  'cousin_aunt_uncl',
  'aunt_uncl_colleg',
  'uncl_colleg_hate',
  'colleg_hate_cant',
  'hate_cant_husband',
  'cant_husband_afford',
  'husband_afford_colleg',
  'afford_colleg_like',
  'colleg_like_mother',
  'like_mother_law',
  'mother_law_go',
  'law_go_contact',
  'go_contact_two',
  'contact_two_childrenf',
  'two_childrenf_get',
  'childrenf_get_chanc',
  'get_chanc_tuition',
  'chanc_tuition_paid',
  'tuition_paid_well',
  'paid_well_son',
  'well_son_okay',
  'son_okay_wait',
  'okay_wait_sake',
  'wait_sake_sibl',
  'sake_sibl_unfortun',
  'sibl_unfortun_take',
  'unfortun_take_student',
  'take_student_loan',
  'student_loan_eat',
  'loan_eat_cost',
  'eat_cost_final',
  'cost_final_year',
  'final_year_son',
  'year_son_obvious',
  'son_obvious_devast',
  'obvious_devast_final',
  'devast_final_year',
  'final_year_colleg',
  'year_colleg_paid',
  'colleg_paid_next',
  'paid_next_year',
  'next_year_cousin',
  'year_cousin_someon',
  'cousin_someon_trust',
  'someon_trust_want',
  'trust_want_husband',
  'want_husband_foot',
  'husband_foot_bill',
  'foot_bill_next',
  'bill_next_year',
  'next_year_$',
  'year_$_save',
  '$_save_current',
  'save_current_plan',
  'current_plan_use',
  'plan_use_much',
  'use_much_need',
  'much_need_kitchen',
  'need_kitchen_renov',
  'kitchen_renov_oven',
  'renov_oven_bare',
  'oven_bare_work',
  'bare_work_dishwash',
  'work_dishwash_work',
  'dishwash_work_kitchen',
  'work_kitchen_worn',
  'kitchen_worn_outdat',
  'worn_outdat_son',
  'outdat_son_call',
  'son_call_asshol',
  'call_asshol_priorit',
  'asshol_priorit_remodel',
  'priorit_remodel_educ',
  'remodel_educ_weve',
  'educ_weve_explain',
  'weve_explain_kitchen',
  'explain_kitchen_fall',
  'kitchen_fall_apart',
  'fall_apart_much',
  'apart_much_need',
  'much_need_nowher',
  'need_nowher_near',
  'nowher_near_cost',
  'near_cost_tuition',
  'cost_tuition_even',
  'tuition_even_postpon',
  'even_postpon_would',
  'postpon_would_still',
  'would_still_short',
  'still_short_privat',
  'short_privat_school',
  'privat_school_expens',
  'school_expens_feel',
  'expens_feel_like',
  'feel_like_adult',
  'like_adult_need',
  'adult_need_one',
  'need_one_deal',
  'one_deal_consequ',
  'deal_consequ_us',
  'consequ_us_aita',
  'us_aita_use',
  'aita_use_famili',
  'use_famili_save',
  'famili_save_cover',
  'save_cover_remain',
  'cover_remain_tuition',
  'remain_tuition_edit',
  'tuition_edit_feel',
  'edit_feel_like',
  'feel_like_clear',
  'like_clear_kitchen',
  'clear_kitchen_remodel',
  'kitchen_remodel_obvious',
  'remodel_obvious_applianc',
  'obvious_applianc_alon',
  'applianc_alon_go',
  'alon_go_cost',
  'go_cost_$',
  'cost_$_major',
  '$_major_money',
  'major_money_go',
  'money_go_go',
  'go_go_necessari',
  'go_necessari_infrastructur',
  'necessari_infrastructur_repair',
  'infrastructur_repair_live',
  'repair_live_expens',
  'live_expens_area',
  'expens_area_ye',
  'area_ye_cost',
  'ye_cost_fix',
  'cost_fix_necess',
  'fix_necess_kitchen',
  'necess_kitchen_way',
  'kitchen_way_fanci',
  'way_fanci_clear',
  'fanci_clear_origin',
  'clear_origin_post',
  'origin_post_remodel',
  'post_remodel_aesthet'],
 ['throwaway',
  'husband',
  'famili',
  'know',
  'normal',
  'reddit',
  'husband',
  'marri',
  'almost',
  'six',
  'year',
  'time',
  'engag',
  'neither',
  'us',
  'much',
  'money',
  'way',
  'could',
  'afford',
  'wed',
  'dress',
  'want',
  'wear',
  'thank',
  'mother',
  'someth',
  'seamstress',
  'offer',
  'help',
  'make',
  'dream',
  'dress',
  'spent',
  'year',
  'find',
  'pattern',
  'pick',
  'fabric',
  'make',
  'beauti',
  'wed',
  'dress',
  'complet',
  'scratch',
  'first',
  'big',
  'project',
  'ive',
  'ever',
  'sewn',
  'im',
  'quit',
  'proud',
  'make',
  'also',
  'brought',
  'much',
  'closer',
  'mother',
  'whole',
  'project',
  'sort',
  'bond',
  'experi',
  'also',
  'hold',
  'lot',
  'addit',
  'sentiment',
  'valu',
  'dad',
  'pass',
  'away',
  'make',
  'sew',
  'heart',
  'shape',
  'cutout',
  'one',
  'shirt',
  'line',
  'dress',
  'order',
  'keep',
  'big',
  'day',
  'dress',
  'brought',
  'closer',
  'husband',
  'famili',
  'mean',
  'much',
  'sil',
  'got',
  'engag',
  'recent',
  'similar',
  'situat',
  'wed',
  'got',
  'colleg',
  'start',
  'work',
  'teacher',
  'loan',
  'rel',
  'low',
  'salari',
  'much',
  'money',
  'pay',
  'wed',
  'dress',
  'shop',
  'bit',
  'stress',
  'dress',
  'fit',
  'tast',
  'far',
  'budget',
  'lead',
  'tuesday',
  'morn',
  'call',
  'husband',
  'ask',
  'would',
  'let',
  'borrow',
  'dress',
  'mention',
  'could',
  'someth',
  'borrow',
  'husband',
  'say',
  'would',
  'ask',
  'first',
  'loan',
  'sister',
  'told',
  'problem',
  'id',
  'bare',
  'miss',
  'sit',
  'box',
  'anyway',
  'still',
  'said',
  'would',
  'ask',
  'forgot',
  'finish',
  'work',
  'day',
  'pick',
  'job',
  'came',
  'home',
  'littl',
  'sister',
  'tri',
  'wed',
  'dress',
  'mom',
  'clip',
  'back',
  'fit',
  'better',
  'see',
  'somebodi',
  'els',
  'dress',
  'total',
  'blindsid',
  'stun',
  'ask',
  'mil',
  'said',
  'plan',
  'alter',
  'sinc',
  'sil',
  'significantli',
  'smaller',
  'told',
  'way',
  'would',
  'loan',
  'dress',
  'anyon',
  'repres',
  'love',
  'husband',
  'bond',
  'famili',
  'well',
  'escal',
  'argument',
  'end',
  'mil',
  'call',
  'selfish',
  'bitch',
  'leav',
  'sil',
  'husband',
  'thank',
  'grab',
  'dress',
  'argument',
  'grab',
  'left',
  'realli',
  'upset',
  'thought',
  'time',
  'call',
  'use',
  'dress',
  'love',
  'sil',
  'feel',
  'mayb',
  'overreact',
  'shut',
  'quickli',
  'aita',
  'tldr',
  'sil',
  'want',
  'borrow',
  'homemad',
  'wed',
  'dress',
  'tri',
  'without',
  'knowledg',
  'freak',
  'said',
  'edit',
  'clip',
  'meant',
  'use',
  'binder',
  'clip',
  'secur',
  'excess',
  'fabric',
  'actual',
  'damag',
  'dress',
  'throwaway_husband',
  'husband_famili',
  'famili_know',
  'know_normal',
  'normal_reddit',
  'reddit_husband',
  'husband_marri',
  'marri_almost',
  'almost_six',
  'six_year',
  'year_time',
  'time_engag',
  'engag_neither',
  'neither_us',
  'us_much',
  'much_money',
  'money_way',
  'way_could',
  'could_afford',
  'afford_wed',
  'wed_dress',
  'dress_want',
  'want_wear',
  'wear_thank',
  'thank_mother',
  'mother_someth',
  'someth_seamstress',
  'seamstress_offer',
  'offer_help',
  'help_make',
  'make_dream',
  'dream_dress',
  'dress_spent',
  'spent_year',
  'year_find',
  'find_pattern',
  'pattern_pick',
  'pick_fabric',
  'fabric_make',
  'make_beauti',
  'beauti_wed',
  'wed_dress',
  'dress_complet',
  'complet_scratch',
  'scratch_first',
  'first_big',
  'big_project',
  'project_ive',
  'ive_ever',
  'ever_sewn',
  'sewn_im',
  'im_quit',
  'quit_proud',
  'proud_make',
  'make_also',
  'also_brought',
  'brought_much',
  'much_closer',
  'closer_mother',
  'mother_whole',
  'whole_project',
  'project_sort',
  'sort_bond',
  'bond_experi',
  'experi_also',
  'also_hold',
  'hold_lot',
  'lot_addit',
  'addit_sentiment',
  'sentiment_valu',
  'valu_dad',
  'dad_pass',
  'pass_away',
  'away_make',
  'make_sew',
  'sew_heart',
  'heart_shape',
  'shape_cutout',
  'cutout_one',
  'one_shirt',
  'shirt_line',
  'line_dress',
  'dress_order',
  'order_keep',
  'keep_big',
  'big_day',
  'day_dress',
  'dress_brought',
  'brought_closer',
  'closer_husband',
  'husband_famili',
  'famili_mean',
  'mean_much',
  'much_sil',
  'sil_got',
  'got_engag',
  'engag_recent',
  'recent_similar',
  'similar_situat',
  'situat_wed',
  'wed_got',
  'got_colleg',
  'colleg_start',
  'start_work',
  'work_teacher',
  'teacher_loan',
  'loan_rel',
  'rel_low',
  'low_salari',
  'salari_much',
  'much_money',
  'money_pay',
  'pay_wed',
  'wed_dress',
  'dress_shop',
  'shop_bit',
  'bit_stress',
  'stress_dress',
  'dress_fit',
  'fit_tast',
  'tast_far',
  'far_budget',
  'budget_lead',
  'lead_tuesday',
  'tuesday_morn',
  'morn_call',
  'call_husband',
  'husband_ask',
  'ask_would',
  'would_let',
  'let_borrow',
  'borrow_dress',
  'dress_mention',
  'mention_could',
  'could_someth',
  'someth_borrow',
  'borrow_husband',
  'husband_say',
  'say_would',
  'would_ask',
  'ask_first',
  'first_loan',
  'loan_sister',
  'sister_told',
  'told_problem',
  'problem_id',
  'id_bare',
  'bare_miss',
  'miss_sit',
  'sit_box',
  'box_anyway',
  'anyway_still',
  'still_said',
  'said_would',
  'would_ask',
  'ask_forgot',
  'forgot_finish',
  'finish_work',
  'work_day',
  'day_pick',
  'pick_job',
  'job_came',
  'came_home',
  'home_littl',
  'littl_sister',
  'sister_tri',
  'tri_wed',
  'wed_dress',
  'dress_mom',
  'mom_clip',
  'clip_back',
  'back_fit',
  'fit_better',
  'better_see',
  'see_somebodi',
  'somebodi_els',
  'els_dress',
  'dress_total',
  'total_blindsid',
  'blindsid_stun',
  'stun_ask',
  'ask_mil',
  'mil_said',
  'said_plan',
  'plan_alter',
  'alter_sinc',
  'sinc_sil',
  'sil_significantli',
  'significantli_smaller',
  'smaller_told',
  'told_way',
  'way_would',
  'would_loan',
  'loan_dress',
  'dress_anyon',
  'anyon_repres',
  'repres_love',
  'love_husband',
  'husband_bond',
  'bond_famili',
  'famili_well',
  'well_escal',
  'escal_argument',
  'argument_end',
  'end_mil',
  'mil_call',
  'call_selfish',
  'selfish_bitch',
  'bitch_leav',
  'leav_sil',
  'sil_husband',
  'husband_thank',
  'thank_grab',
  'grab_dress',
  'dress_argument',
  'argument_grab',
  'grab_left',
  'left_realli',
  'realli_upset',
  'upset_thought',
  'thought_time',
  'time_call',
  'call_use',
  'use_dress',
  'dress_love',
  'love_sil',
  'sil_feel',
  'feel_mayb',
  'mayb_overreact',
  'overreact_shut',
  'shut_quickli',
  'quickli_aita',
  'aita_tldr',
  'tldr_sil',
  'sil_want',
  'want_borrow',
  'borrow_homemad',
  'homemad_wed',
  'wed_dress',
  'dress_tri',
  'tri_without',
  'without_knowledg',
  'knowledg_freak',
  'freak_said',
  'said_edit',
  'edit_clip',
  'clip_meant',
  'meant_use',
  'use_binder',
  'binder_clip',
  'clip_secur',
  'secur_excess',
  'excess_fabric',
  'fabric_actual',
  'actual_damag',
  'damag_dress',
  'throwaway_husband_famili',
  'husband_famili_know',
  'famili_know_normal',
  'know_normal_reddit',
  'normal_reddit_husband',
  'reddit_husband_marri',
  'husband_marri_almost',
  'marri_almost_six',
  'almost_six_year',
  'six_year_time',
  'year_time_engag',
  'time_engag_neither',
  'engag_neither_us',
  'neither_us_much',
  'us_much_money',
  'much_money_way',
  'money_way_could',
  'way_could_afford',
  'could_afford_wed',
  'afford_wed_dress',
  'wed_dress_want',
  'dress_want_wear',
  'want_wear_thank',
  'wear_thank_mother',
  'thank_mother_someth',
  'mother_someth_seamstress',
  'someth_seamstress_offer',
  'seamstress_offer_help',
  'offer_help_make',
  'help_make_dream',
  'make_dream_dress',
  'dream_dress_spent',
  'dress_spent_year',
  'spent_year_find',
  'year_find_pattern',
  'find_pattern_pick',
  'pattern_pick_fabric',
  'pick_fabric_make',
  'fabric_make_beauti',
  'make_beauti_wed',
  'beauti_wed_dress',
  'wed_dress_complet',
  'dress_complet_scratch',
  'complet_scratch_first',
  'scratch_first_big',
  'first_big_project',
  'big_project_ive',
  'project_ive_ever',
  'ive_ever_sewn',
  'ever_sewn_im',
  'sewn_im_quit',
  'im_quit_proud',
  'quit_proud_make',
  'proud_make_also',
  'make_also_brought',
  'also_brought_much',
  'brought_much_closer',
  'much_closer_mother',
  'closer_mother_whole',
  'mother_whole_project',
  'whole_project_sort',
  'project_sort_bond',
  'sort_bond_experi',
  'bond_experi_also',
  'experi_also_hold',
  'also_hold_lot',
  'hold_lot_addit',
  'lot_addit_sentiment',
  'addit_sentiment_valu',
  'sentiment_valu_dad',
  'valu_dad_pass',
  'dad_pass_away',
  'pass_away_make',
  'away_make_sew',
  'make_sew_heart',
  'sew_heart_shape',
  'heart_shape_cutout',
  'shape_cutout_one',
  'cutout_one_shirt',
  'one_shirt_line',
  'shirt_line_dress',
  'line_dress_order',
  'dress_order_keep',
  'order_keep_big',
  'keep_big_day',
  'big_day_dress',
  'day_dress_brought',
  'dress_brought_closer',
  'brought_closer_husband',
  'closer_husband_famili',
  'husband_famili_mean',
  'famili_mean_much',
  'mean_much_sil',
  'much_sil_got',
  'sil_got_engag',
  'got_engag_recent',
  'engag_recent_similar',
  'recent_similar_situat',
  'similar_situat_wed',
  'situat_wed_got',
  'wed_got_colleg',
  'got_colleg_start',
  'colleg_start_work',
  'start_work_teacher',
  'work_teacher_loan',
  'teacher_loan_rel',
  'loan_rel_low',
  'rel_low_salari',
  'low_salari_much',
  'salari_much_money',
  'much_money_pay',
  'money_pay_wed',
  'pay_wed_dress',
  'wed_dress_shop',
  'dress_shop_bit',
  'shop_bit_stress',
  'bit_stress_dress',
  'stress_dress_fit',
  'dress_fit_tast',
  'fit_tast_far',
  'tast_far_budget',
  'far_budget_lead',
  'budget_lead_tuesday',
  'lead_tuesday_morn',
  'tuesday_morn_call',
  'morn_call_husband',
  'call_husband_ask',
  'husband_ask_would',
  'ask_would_let',
  'would_let_borrow',
  'let_borrow_dress',
  'borrow_dress_mention',
  'dress_mention_could',
  'mention_could_someth',
  'could_someth_borrow',
  'someth_borrow_husband',
  'borrow_husband_say',
  'husband_say_would',
  'say_would_ask',
  'would_ask_first',
  'ask_first_loan',
  'first_loan_sister',
  'loan_sister_told',
  'sister_told_problem',
  'told_problem_id',
  'problem_id_bare',
  'id_bare_miss',
  'bare_miss_sit',
  'miss_sit_box',
  'sit_box_anyway',
  'box_anyway_still',
  'anyway_still_said',
  'still_said_would',
  'said_would_ask',
  'would_ask_forgot',
  'ask_forgot_finish',
  'forgot_finish_work',
  'finish_work_day',
  'work_day_pick',
  'day_pick_job',
  'pick_job_came',
  'job_came_home',
  'came_home_littl',
  'home_littl_sister',
  'littl_sister_tri',
  'sister_tri_wed',
  'tri_wed_dress',
  'wed_dress_mom',
  'dress_mom_clip',
  'mom_clip_back',
  'clip_back_fit',
  'back_fit_better',
  'fit_better_see',
  'better_see_somebodi',
  'see_somebodi_els',
  'somebodi_els_dress',
  'els_dress_total',
  'dress_total_blindsid',
  'total_blindsid_stun',
  'blindsid_stun_ask',
  'stun_ask_mil',
  'ask_mil_said',
  'mil_said_plan',
  'said_plan_alter',
  'plan_alter_sinc',
  'alter_sinc_sil',
  'sinc_sil_significantli',
  'sil_significantli_smaller',
  'significantli_smaller_told',
  'smaller_told_way',
  'told_way_would',
  'way_would_loan',
  'would_loan_dress',
  'loan_dress_anyon',
  'dress_anyon_repres',
  'anyon_repres_love',
  'repres_love_husband',
  'love_husband_bond',
  'husband_bond_famili',
  'bond_famili_well',
  'famili_well_escal',
  'well_escal_argument',
  'escal_argument_end',
  'argument_end_mil',
  'end_mil_call',
  'mil_call_selfish',
  'call_selfish_bitch',
  'selfish_bitch_leav',
  'bitch_leav_sil',
  'leav_sil_husband',
  'sil_husband_thank',
  'husband_thank_grab',
  'thank_grab_dress',
  'grab_dress_argument',
  'dress_argument_grab',
  'argument_grab_left',
  'grab_left_realli',
  'left_realli_upset',
  'realli_upset_thought',
  'upset_thought_time',
  'thought_time_call',
  'time_call_use',
  'call_use_dress',
  'use_dress_love',
  'dress_love_sil',
  'love_sil_feel',
  'sil_feel_mayb',
  'feel_mayb_overreact',
  'mayb_overreact_shut',
  'overreact_shut_quickli',
  'shut_quickli_aita',
  'quickli_aita_tldr',
  'aita_tldr_sil',
  'tldr_sil_want',
  'sil_want_borrow',
  'want_borrow_homemad',
  'borrow_homemad_wed',
  'homemad_wed_dress',
  'wed_dress_tri',
  'dress_tri_without',
  'tri_without_knowledg',
  'without_knowledg_freak',
  'knowledg_freak_said',
  'freak_said_edit',
  'said_edit_clip',
  'edit_clip_meant',
  'clip_meant_use',
  'meant_use_binder',
  'use_binder_clip',
  'binder_clip_secur',
  'clip_secur_excess',
  'secur_excess_fabric',
  'excess_fabric_actual',
  'fabric_actual_damag',
  'actual_damag_dress'],
 ['situat',
  'began',
  'year',
  'ago',
  'blew',
  'face',
  'last',
  'week',
  'son',
  'gregori',
  'year',
  'old',
  'began',
  'th',
  'grade',
  'friend',
  'peter',
  'also',
  'began',
  'th',
  'grade',
  'gregori',
  'peter',
  'friend',
  'sinc',
  'elementari',
  'school',
  'last',
  'year',
  'notic',
  'gregori',
  'would',
  'raven',
  'hungri',
  'school',
  'everi',
  'day',
  'would',
  'come',
  'home',
  'eat',
  'frozen',
  'dinner',
  'someth',
  'help',
  'second',
  'dinner',
  'time',
  'chalk',
  '-year-old',
  'boy',
  'let',
  'someth',
  'situat',
  'nag',
  'though',
  'gregori',
  'clear',
  'first',
  'eventu',
  'came',
  'clean',
  'peter',
  'sent',
  'school',
  'everi',
  'day',
  'lunch',
  'look',
  'like',
  'typic',
  'case',
  'neglect',
  'unfit',
  'parent',
  'one',
  'time',
  'gregori',
  'went',
  'hous',
  'came',
  'home',
  'comment',
  'smell',
  'realli',
  'bad',
  'peter',
  'parent',
  'lock',
  'garag',
  'hour',
  'feel',
  'bad',
  'peter',
  'decid',
  'discret',
  'begin',
  'give',
  'gregori',
  'food',
  'everi',
  'day',
  'doubl',
  'food',
  'time',
  'becam',
  'less',
  'discret',
  'began',
  'pack',
  'separ',
  'lunch',
  'peter',
  'never',
  'thank',
  'anyon',
  'knew',
  'peter',
  'eat',
  'food',
  'sent',
  'year',
  'thing',
  'differ',
  'money',
  'tighter',
  'person',
  'reason',
  'frankli',
  'expens',
  'thing',
  'decid',
  'spend',
  'exorbit',
  'amount',
  'money',
  'support',
  'someon',
  'els',
  'child',
  'sat',
  'gregori',
  'told',
  'would',
  'pack',
  'one',
  'lunch',
  'alon',
  'made',
  'extrem',
  'clear',
  'share',
  'anyon',
  'includ',
  'peter',
  'gregori',
  'follow',
  'instruct',
  'one',
  'day',
  'last',
  'week',
  'got',
  'phone',
  'call',
  'peter',
  'mother',
  'livid',
  'cut',
  'peter',
  'without',
  'singl',
  'word',
  'ask',
  'becam',
  'respons',
  'feed',
  'son',
  'respond',
  'known',
  'send',
  'gregori',
  'school',
  'much',
  'food',
  'would',
  'handl',
  'ask',
  'rememb',
  'began',
  'send',
  'school',
  'two',
  'lunch',
  'first',
  'place',
  'hung',
  'feel',
  'conflict',
  'know',
  'im',
  'kind',
  'thrown',
  'back',
  'face',
  'approach',
  'situat',
  'incorrectli',
  'situat_began',
  'began_year',
  'year_ago',
  'ago_blew',
  'blew_face',
  'face_last',
  'last_week',
  'week_son',
  'son_gregori',
  'gregori_year',
  'year_old',
  'old_began',
  'began_th',
  'th_grade',
  'grade_friend',
  'friend_peter',
  'peter_also',
  'also_began',
  'began_th',
  'th_grade',
  'grade_gregori',
  'gregori_peter',
  'peter_friend',
  'friend_sinc',
  'sinc_elementari',
  'elementari_school',
  'school_last',
  'last_year',
  'year_notic',
  'notic_gregori',
  'gregori_would',
  'would_raven',
  'raven_hungri',
  'hungri_school',
  'school_everi',
  'everi_day',
  'day_would',
  'would_come',
  'come_home',
  'home_eat',
  'eat_frozen',
  'frozen_dinner',
  'dinner_someth',
  'someth_help',
  'help_second',
  'second_dinner',
  'dinner_time',
  'time_chalk',
  'chalk_-year-old',
  '-year-old_boy',
  'boy_let',
  'let_someth',
  'someth_situat',
  'situat_nag',
  'nag_though',
  'though_gregori',
  'gregori_clear',
  'clear_first',
  'first_eventu',
  'eventu_came',
  'came_clean',
  'clean_peter',
  'peter_sent',
  'sent_school',
  'school_everi',
  'everi_day',
  'day_lunch',
  'lunch_look',
  'look_like',
  'like_typic',
  'typic_case',
  'case_neglect',
  'neglect_unfit',
  'unfit_parent',
  'parent_one',
  'one_time',
  'time_gregori',
  'gregori_went',
  'went_hous',
  'hous_came',
  'came_home',
  'home_comment',
  'comment_smell',
  'smell_realli',
  'realli_bad',
  'bad_peter',
  'peter_parent',
  'parent_lock',
  'lock_garag',
  'garag_hour',
  'hour_feel',
  'feel_bad',
  'bad_peter',
  'peter_decid',
  'decid_discret',
  'discret_begin',
  'begin_give',
  'give_gregori',
  'gregori_food',
  'food_everi',
  'everi_day',
  'day_doubl',
  'doubl_food',
  'food_time',
  'time_becam',
  'becam_less',
  'less_discret',
  'discret_began',
  'began_pack',
  'pack_separ',
  'separ_lunch',
  'lunch_peter',
  'peter_never',
  'never_thank',
  'thank_anyon',
  'anyon_knew',
  'knew_peter',
  'peter_eat',
  'eat_food',
  'food_sent',
  'sent_year',
  'year_thing',
  'thing_differ',
  'differ_money',
  'money_tighter',
  'tighter_person',
  'person_reason',
  'reason_frankli',
  'frankli_expens',
  'expens_thing',
  'thing_decid',
  'decid_spend',
  'spend_exorbit',
  'exorbit_amount',
  'amount_money',
  'money_support',
  'support_someon',
  'someon_els',
  'els_child',
  'child_sat',
  'sat_gregori',
  'gregori_told',
  'told_would',
  'would_pack',
  'pack_one',
  'one_lunch',
  'lunch_alon',
  'alon_made',
  'made_extrem',
  'extrem_clear',
  'clear_share',
  'share_anyon',
  'anyon_includ',
  'includ_peter',
  'peter_gregori',
  'gregori_follow',
  'follow_instruct',
  'instruct_one',
  'one_day',
  'day_last',
  'last_week',
  'week_got',
  'got_phone',
  'phone_call',
  'call_peter',
  'peter_mother',
  'mother_livid',
  'livid_cut',
  'cut_peter',
  'peter_without',
  'without_singl',
  'singl_word',
  'word_ask',
  'ask_becam',
  'becam_respons',
  'respons_feed',
  'feed_son',
  'son_respond',
  'respond_known',
  'known_send',
  'send_gregori',
  'gregori_school',
  'school_much',
  'much_food',
  'food_would',
  'would_handl',
  'handl_ask',
  'ask_rememb',
  'rememb_began',
  'began_send',
  'send_school',
  'school_two',
  'two_lunch',
  'lunch_first',
  'first_place',
  'place_hung',
  'hung_feel',
  'feel_conflict',
  'conflict_know',
  'know_im',
  'im_kind',
  'kind_thrown',
  'thrown_back',
  'back_face',
  'face_approach',
  'approach_situat',
  'situat_incorrectli',
  'situat_began_year',
  'began_year_ago',
  'year_ago_blew',
  'ago_blew_face',
  'blew_face_last',
  'face_last_week',
  'last_week_son',
  'week_son_gregori',
  'son_gregori_year',
  'gregori_year_old',
  'year_old_began',
  'old_began_th',
  'began_th_grade',
  'th_grade_friend',
  'grade_friend_peter',
  'friend_peter_also',
  'peter_also_began',
  'also_began_th',
  'began_th_grade',
  'th_grade_gregori',
  'grade_gregori_peter',
  'gregori_peter_friend',
  'peter_friend_sinc',
  'friend_sinc_elementari',
  'sinc_elementari_school',
  'elementari_school_last',
  'school_last_year',
  'last_year_notic',
  'year_notic_gregori',
  'notic_gregori_would',
  'gregori_would_raven',
  'would_raven_hungri',
  'raven_hungri_school',
  'hungri_school_everi',
  'school_everi_day',
  'everi_day_would',
  'day_would_come',
  'would_come_home',
  'come_home_eat',
  'home_eat_frozen',
  'eat_frozen_dinner',
  'frozen_dinner_someth',
  'dinner_someth_help',
  'someth_help_second',
  'help_second_dinner',
  'second_dinner_time',
  'dinner_time_chalk',
  'time_chalk_-year-old',
  'chalk_-year-old_boy',
  '-year-old_boy_let',
  'boy_let_someth',
  'let_someth_situat',
  'someth_situat_nag',
  'situat_nag_though',
  'nag_though_gregori',
  'though_gregori_clear',
  'gregori_clear_first',
  'clear_first_eventu',
  'first_eventu_came',
  'eventu_came_clean',
  'came_clean_peter',
  'clean_peter_sent',
  'peter_sent_school',
  'sent_school_everi',
  'school_everi_day',
  'everi_day_lunch',
  'day_lunch_look',
  'lunch_look_like',
  'look_like_typic',
  'like_typic_case',
  'typic_case_neglect',
  'case_neglect_unfit',
  'neglect_unfit_parent',
  'unfit_parent_one',
  'parent_one_time',
  'one_time_gregori',
  'time_gregori_went',
  'gregori_went_hous',
  'went_hous_came',
  'hous_came_home',
  'came_home_comment',
  'home_comment_smell',
  'comment_smell_realli',
  'smell_realli_bad',
  'realli_bad_peter',
  'bad_peter_parent',
  'peter_parent_lock',
  'parent_lock_garag',
  'lock_garag_hour',
  'garag_hour_feel',
  'hour_feel_bad',
  'feel_bad_peter',
  'bad_peter_decid',
  'peter_decid_discret',
  'decid_discret_begin',
  'discret_begin_give',
  'begin_give_gregori',
  'give_gregori_food',
  'gregori_food_everi',
  'food_everi_day',
  'everi_day_doubl',
  'day_doubl_food',
  'doubl_food_time',
  'food_time_becam',
  'time_becam_less',
  'becam_less_discret',
  'less_discret_began',
  'discret_began_pack',
  'began_pack_separ',
  'pack_separ_lunch',
  'separ_lunch_peter',
  'lunch_peter_never',
  'peter_never_thank',
  'never_thank_anyon',
  'thank_anyon_knew',
  'anyon_knew_peter',
  'knew_peter_eat',
  'peter_eat_food',
  'eat_food_sent',
  'food_sent_year',
  'sent_year_thing',
  'year_thing_differ',
  'thing_differ_money',
  'differ_money_tighter',
  'money_tighter_person',
  'tighter_person_reason',
  'person_reason_frankli',
  'reason_frankli_expens',
  'frankli_expens_thing',
  'expens_thing_decid',
  'thing_decid_spend',
  'decid_spend_exorbit',
  'spend_exorbit_amount',
  'exorbit_amount_money',
  'amount_money_support',
  'money_support_someon',
  'support_someon_els',
  'someon_els_child',
  'els_child_sat',
  'child_sat_gregori',
  'sat_gregori_told',
  'gregori_told_would',
  'told_would_pack',
  'would_pack_one',
  'pack_one_lunch',
  'one_lunch_alon',
  'lunch_alon_made',
  'alon_made_extrem',
  'made_extrem_clear',
  'extrem_clear_share',
  'clear_share_anyon',
  'share_anyon_includ',
  'anyon_includ_peter',
  'includ_peter_gregori',
  'peter_gregori_follow',
  'gregori_follow_instruct',
  'follow_instruct_one',
  'instruct_one_day',
  'one_day_last',
  'day_last_week',
  'last_week_got',
  'week_got_phone',
  'got_phone_call',
  'phone_call_peter',
  'call_peter_mother',
  'peter_mother_livid',
  'mother_livid_cut',
  'livid_cut_peter',
  'cut_peter_without',
  'peter_without_singl',
  'without_singl_word',
  'singl_word_ask',
  'word_ask_becam',
  'ask_becam_respons',
  'becam_respons_feed',
  'respons_feed_son',
  'feed_son_respond',
  'son_respond_known',
  'respond_known_send',
  'known_send_gregori',
  'send_gregori_school',
  'gregori_school_much',
  'school_much_food',
  'much_food_would',
  'food_would_handl',
  'would_handl_ask',
  'handl_ask_rememb',
  'ask_rememb_began',
  'rememb_began_send',
  'began_send_school',
  'send_school_two',
  'school_two_lunch',
  'two_lunch_first',
  'lunch_first_place',
  'first_place_hung',
  'place_hung_feel',
  'hung_feel_conflict',
  'feel_conflict_know',
  'conflict_know_im',
  'know_im_kind',
  'im_kind_thrown',
  'kind_thrown_back',
  'thrown_back_face',
  'back_face_approach',
  'face_approach_situat',
  'approach_situat_incorrectli'],
 ['im',
  'realli',
  'upset',
  'need',
  'fli',
  'california',
  'washington',
  'dad',
  'surgeri',
  'accid',
  'want',
  'help',
  'stepmom',
  'day',
  'gone',
  'week',
  'ask',
  'sister',
  'could',
  'come',
  'day',
  'water',
  'plant',
  'check',
  'mail',
  'also',
  'blue',
  'parakeet',
  'love',
  'male',
  'femal',
  'femal',
  'readi',
  'lay',
  'egg',
  'alreadi',
  'nest',
  'cage',
  'trip',
  'alreadi',
  'sit',
  'egg',
  'nest',
  'told',
  'sister',
  'alway',
  'make',
  'sure',
  'clean',
  'cup',
  'bird',
  'food',
  'add',
  'everyday',
  'keep',
  'water',
  'clean',
  'explain',
  'twice',
  'want',
  'make',
  'sure',
  'bird',
  'egg',
  'would',
  'okay',
  'male',
  'would',
  'bring',
  'food',
  'femal',
  'eat',
  'sit',
  'egg',
  'want',
  'sure',
  'would',
  'follow',
  'said',
  'also',
  'clean',
  'tray',
  'cage',
  'everyday',
  'sinc',
  'leav',
  'ask',
  'bird',
  'food',
  'water',
  'clean',
  'etc',
  'told',
  'ye',
  'everytim',
  'noth',
  'worri',
  'final',
  'got',
  'back',
  'last',
  'night',
  'first',
  'thing',
  'check',
  'bird',
  'yeah',
  'cage',
  'clean',
  'water',
  'guess',
  'food',
  'cup',
  'trash',
  'seed',
  'alreadi',
  'ate',
  'mother',
  'bird',
  'was…you',
  'know',
  'obvious',
  'egg',
  'surviv',
  'either',
  'one',
  'still',
  'aliv',
  'male',
  'look',
  'sad',
  'first',
  'thing',
  'notic',
  'right',
  'top',
  'nest',
  'box',
  'look',
  'insid',
  'cant',
  'tell',
  'much',
  'cri',
  'take',
  'egg',
  'die',
  'still',
  'tri',
  'incub',
  'babi',
  'sister',
  'claim',
  'cup',
  'alway',
  'full',
  'assum',
  'need',
  'put',
  'food',
  'despit',
  'tell',
  'refil',
  'cup',
  'food',
  'noth',
  'keep',
  'say',
  'honest',
  'mistak',
  'mean',
  'die',
  'im',
  'refus',
  'pay',
  '$',
  'promis',
  'drive',
  'everyday',
  'follow',
  'everyth',
  'instruct',
  'everyth',
  'els',
  'except',
  'one',
  'thing',
  'fair',
  'refus',
  'pay',
  'call',
  'petti',
  'shitti',
  'brother',
  'favor',
  'take',
  'time',
  'day',
  'give',
  'money',
  'need',
  'im',
  'still',
  'realli',
  'sadangri',
  'bird',
  'feel',
  'like',
  'deserv',
  'anyth',
  'one',
  'respons',
  'mayb',
  'know',
  'aita',
  'im_realli',
  'realli_upset',
  'upset_need',
  'need_fli',
  'fli_california',
  'california_washington',
  'washington_dad',
  'dad_surgeri',
  'surgeri_accid',
  'accid_want',
  'want_help',
  'help_stepmom',
  'stepmom_day',
  'day_gone',
  'gone_week',
  'week_ask',
  'ask_sister',
  'sister_could',
  'could_come',
  'come_day',
  'day_water',
  'water_plant',
  'plant_check',
  'check_mail',
  'mail_also',
  'also_blue',
  'blue_parakeet',
  'parakeet_love',
  'love_male',
  'male_femal',
  'femal_femal',
  'femal_readi',
  'readi_lay',
  'lay_egg',
  'egg_alreadi',
  'alreadi_nest',
  'nest_cage',
  'cage_trip',
  'trip_alreadi',
  'alreadi_sit',
  'sit_egg',
  'egg_nest',
  'nest_told',
  'told_sister',
  'sister_alway',
  'alway_make',
  'make_sure',
  'sure_clean',
  'clean_cup',
  'cup_bird',
  'bird_food',
  'food_add',
  'add_everyday',
  'everyday_keep',
  'keep_water',
  'water_clean',
  'clean_explain',
  'explain_twice',
  'twice_want',
  'want_make',
  'make_sure',
  'sure_bird',
  'bird_egg',
  'egg_would',
  'would_okay',
  'okay_male',
  'male_would',
  'would_bring',
  'bring_food',
  'food_femal',
  'femal_eat',
  'eat_sit',
  'sit_egg',
  'egg_want',
  'want_sure',
  'sure_would',
  'would_follow',
  'follow_said',
  'said_also',
  'also_clean',
  'clean_tray',
  'tray_cage',
  'cage_everyday',
  'everyday_sinc',
  'sinc_leav',
  'leav_ask',
  'ask_bird',
  'bird_food',
  'food_water',
  'water_clean',
  'clean_etc',
  'etc_told',
  'told_ye',
  'ye_everytim',
  'everytim_noth',
  'noth_worri',
  'worri_final',
  'final_got',
  'got_back',
  'back_last',
  'last_night',
  'night_first',
  'first_thing',
  'thing_check',
  'check_bird',
  'bird_yeah',
  'yeah_cage',
  'cage_clean',
  'clean_water',
  'water_guess',
  'guess_food',
  'food_cup',
  'cup_trash',
  'trash_seed',
  'seed_alreadi',
  'alreadi_ate',
  'ate_mother',
  'mother_bird',
  'bird_was…you',
  'was…you_know',
  'know_obvious',
  'obvious_egg',
  'egg_surviv',
  'surviv_either',
  'either_one',
  'one_still',
  'still_aliv',
  'aliv_male',
  'male_look',
  'look_sad',
  'sad_first',
  'first_thing',
  'thing_notic',
  'notic_right',
  'right_top',
  'top_nest',
  'nest_box',
  'box_look',
  'look_insid',
  'insid_cant',
  'cant_tell',
  'tell_much',
  'much_cri',
  'cri_take',
  'take_egg',
  'egg_die',
  'die_still',
  'still_tri',
  'tri_incub',
  'incub_babi',
  'babi_sister',
  'sister_claim',
  'claim_cup',
  'cup_alway',
  'alway_full',
  'full_assum',
  'assum_need',
  'need_put',
  'put_food',
  'food_despit',
  'despit_tell',
  'tell_refil',
  'refil_cup',
  'cup_food',
  'food_noth',
  'noth_keep',
  'keep_say',
  'say_honest',
  'honest_mistak',
  'mistak_mean',
  'mean_die',
  'die_im',
  'im_refus',
  'refus_pay',
  'pay_$',
  '$_promis',
  'promis_drive',
  'drive_everyday',
  'everyday_follow',
  'follow_everyth',
  'everyth_instruct',
  'instruct_everyth',
  'everyth_els',
  'els_except',
  'except_one',
  'one_thing',
  'thing_fair',
  'fair_refus',
  'refus_pay',
  'pay_call',
  'call_petti',
  'petti_shitti',
  'shitti_brother',
  'brother_favor',
  'favor_take',
  'take_time',
  'time_day',
  'day_give',
  'give_money',
  'money_need',
  'need_im',
  'im_still',
  'still_realli',
  'realli_sadangri',
  'sadangri_bird',
  'bird_feel',
  'feel_like',
  'like_deserv',
  'deserv_anyth',
  'anyth_one',
  'one_respons',
  'respons_mayb',
  'mayb_know',
  'know_aita',
  'im_realli_upset',
  'realli_upset_need',
  'upset_need_fli',
  'need_fli_california',
  'fli_california_washington',
  'california_washington_dad',
  'washington_dad_surgeri',
  'dad_surgeri_accid',
  'surgeri_accid_want',
  'accid_want_help',
  'want_help_stepmom',
  'help_stepmom_day',
  'stepmom_day_gone',
  'day_gone_week',
  'gone_week_ask',
  'week_ask_sister',
  'ask_sister_could',
  'sister_could_come',
  'could_come_day',
  'come_day_water',
  'day_water_plant',
  'water_plant_check',
  'plant_check_mail',
  'check_mail_also',
  'mail_also_blue',
  'also_blue_parakeet',
  'blue_parakeet_love',
  'parakeet_love_male',
  'love_male_femal',
  'male_femal_femal',
  'femal_femal_readi',
  'femal_readi_lay',
  'readi_lay_egg',
  'lay_egg_alreadi',
  'egg_alreadi_nest',
  'alreadi_nest_cage',
  'nest_cage_trip',
  'cage_trip_alreadi',
  'trip_alreadi_sit',
  'alreadi_sit_egg',
  'sit_egg_nest',
  'egg_nest_told',
  'nest_told_sister',
  'told_sister_alway',
  'sister_alway_make',
  'alway_make_sure',
  'make_sure_clean',
  'sure_clean_cup',
  'clean_cup_bird',
  'cup_bird_food',
  'bird_food_add',
  'food_add_everyday',
  'add_everyday_keep',
  'everyday_keep_water',
  'keep_water_clean',
  'water_clean_explain',
  'clean_explain_twice',
  'explain_twice_want',
  'twice_want_make',
  'want_make_sure',
  'make_sure_bird',
  'sure_bird_egg',
  'bird_egg_would',
  'egg_would_okay',
  'would_okay_male',
  'okay_male_would',
  'male_would_bring',
  'would_bring_food',
  'bring_food_femal',
  'food_femal_eat',
  'femal_eat_sit',
  'eat_sit_egg',
  'sit_egg_want',
  'egg_want_sure',
  'want_sure_would',
  'sure_would_follow',
  'would_follow_said',
  'follow_said_also',
  'said_also_clean',
  'also_clean_tray',
  'clean_tray_cage',
  'tray_cage_everyday',
  'cage_everyday_sinc',
  'everyday_sinc_leav',
  'sinc_leav_ask',
  'leav_ask_bird',
  'ask_bird_food',
  'bird_food_water',
  'food_water_clean',
  'water_clean_etc',
  'clean_etc_told',
  'etc_told_ye',
  'told_ye_everytim',
  'ye_everytim_noth',
  'everytim_noth_worri',
  'noth_worri_final',
  'worri_final_got',
  'final_got_back',
  'got_back_last',
  'back_last_night',
  'last_night_first',
  'night_first_thing',
  'first_thing_check',
  'thing_check_bird',
  'check_bird_yeah',
  'bird_yeah_cage',
  'yeah_cage_clean',
  'cage_clean_water',
  'clean_water_guess',
  'water_guess_food',
  'guess_food_cup',
  'food_cup_trash',
  'cup_trash_seed',
  'trash_seed_alreadi',
  'seed_alreadi_ate',
  'alreadi_ate_mother',
  'ate_mother_bird',
  'mother_bird_was…you',
  'bird_was…you_know',
  'was…you_know_obvious',
  'know_obvious_egg',
  'obvious_egg_surviv',
  'egg_surviv_either',
  'surviv_either_one',
  'either_one_still',
  'one_still_aliv',
  'still_aliv_male',
  'aliv_male_look',
  'male_look_sad',
  'look_sad_first',
  'sad_first_thing',
  'first_thing_notic',
  'thing_notic_right',
  'notic_right_top',
  'right_top_nest',
  'top_nest_box',
  'nest_box_look',
  'box_look_insid',
  'look_insid_cant',
  'insid_cant_tell',
  'cant_tell_much',
  'tell_much_cri',
  'much_cri_take',
  'cri_take_egg',
  'take_egg_die',
  'egg_die_still',
  'die_still_tri',
  'still_tri_incub',
  'tri_incub_babi',
  'incub_babi_sister',
  'babi_sister_claim',
  'sister_claim_cup',
  'claim_cup_alway',
  'cup_alway_full',
  'alway_full_assum',
  'full_assum_need',
  'assum_need_put',
  'need_put_food',
  'put_food_despit',
  'food_despit_tell',
  'despit_tell_refil',
  'tell_refil_cup',
  'refil_cup_food',
  'cup_food_noth',
  'food_noth_keep',
  'noth_keep_say',
  'keep_say_honest',
  'say_honest_mistak',
  'honest_mistak_mean',
  'mistak_mean_die',
  'mean_die_im',
  'die_im_refus',
  'im_refus_pay',
  'refus_pay_$',
  'pay_$_promis',
  '$_promis_drive',
  'promis_drive_everyday',
  'drive_everyday_follow',
  'everyday_follow_everyth',
  'follow_everyth_instruct',
  'everyth_instruct_everyth',
  'instruct_everyth_els',
  'everyth_els_except',
  'els_except_one',
  'except_one_thing',
  'one_thing_fair',
  'thing_fair_refus',
  'fair_refus_pay',
  'refus_pay_call',
  'pay_call_petti',
  'call_petti_shitti',
  'petti_shitti_brother',
  'shitti_brother_favor',
  'brother_favor_take',
  'favor_take_time',
  'take_time_day',
  'time_day_give',
  'day_give_money',
  'give_money_need',
  'money_need_im',
  'need_im_still',
  'im_still_realli',
  'still_realli_sadangri',
  'realli_sadangri_bird',
  'sadangri_bird_feel',
  'bird_feel_like',
  'feel_like_deserv',
  'like_deserv_anyth',
  'deserv_anyth_one',
  'anyth_one_respons',
  'one_respons_mayb',
  'respons_mayb_know',
  'mayb_know_aita'],
 ['ftm',
  'tran',
  'came',
  'famili',
  'month',
  'ago',
  'everyon',
  'support',
  'although',
  'believ',
  'mom',
  'tini',
  'bit',
  'bum',
  'said',
  'would',
  'alway',
  'support',
  'though',
  'need',
  'time',
  'process',
  'honestli',
  'pain',
  'reason',
  'im',
  'mom',
  'got',
  'tattoo',
  'sister',
  'name',
  'dead',
  'name',
  'born',
  'huge',
  'tattoo',
  'uniqu',
  'design',
  'incorpor',
  'dead',
  'name',
  'cover',
  'arm',
  'realli',
  'proud',
  'old',
  'sister',
  'design',
  'gift',
  'birthday',
  'obvious',
  'constantli',
  'see',
  'dead',
  'name',
  'kind',
  'trigger',
  'therefor',
  'told',
  'need',
  'remov',
  'seem',
  'shock',
  'told',
  'old',
  'longer',
  'tattoo',
  'session',
  'gotten',
  'tattoo',
  'year',
  'bc',
  'also',
  'diagnos',
  'depress',
  'use',
  'excus',
  'energi',
  'chang',
  'anymor',
  'realli',
  'believ',
  'whatev',
  'often',
  'tri',
  'cover',
  'cloth',
  'feel',
  'like',
  'enough',
  'knowledg',
  'name',
  'still',
  'haunt',
  'refus',
  'chang',
  'lot',
  'fight',
  'said',
  'realli',
  'tri',
  'hide',
  'part',
  'bodi',
  'love',
  'bc',
  'much',
  'histori',
  'love',
  'children',
  'tattoo',
  'cant',
  'realli',
  'relat',
  'particularli',
  'signific',
  'tattoo',
  'birthday',
  'day',
  'ago',
  'famili',
  'came',
  'issu',
  'came',
  'bc',
  'cousin',
  'show',
  'new',
  'tattoo',
  'someon',
  'ask',
  'dead',
  'name',
  'tattoo',
  'mom',
  'got',
  'uncomfort',
  'silent',
  'excus',
  'went',
  'kitchen',
  'everyon',
  'start',
  'ask',
  'told',
  'want',
  'remov',
  'tattoo',
  'want',
  'sister',
  'also',
  'want',
  'bc',
  'believ',
  'would',
  'look',
  'realli',
  'aw',
  'sinc',
  'entir',
  'design',
  'attach',
  'name',
  'way',
  'cover',
  'would',
  'make',
  'entir',
  'arm',
  'black',
  'anyway',
  'actual',
  'plan',
  'reaction',
  'cousin',
  'relat',
  'bit',
  'bc',
  'queer',
  'reason',
  'got',
  'furiou',
  'went',
  'mom',
  'scream',
  'unsupport',
  'accus',
  'transphob',
  'believ',
  'although',
  'nice',
  'see',
  'someon',
  'get',
  'angri',
  'tattoo',
  'bc',
  'cousin',
  'final',
  'say',
  'thing',
  'feel',
  'want',
  'put',
  'word',
  'mom',
  'panic',
  'attack',
  'left',
  'hous',
  'stay',
  'grandpa',
  'dad',
  'sister',
  'angri',
  'make',
  'famili',
  'gang',
  'aita',
  'edit',
  'read',
  'comment',
  'tri',
  'apolog',
  'mom',
  'current',
  'nc',
  'stuff',
  'happen',
  'especi',
  'cousin',
  'know',
  'updat',
  'work',
  'ill',
  'tri',
  'post',
  'one',
  'figur',
  'ps',
  'show',
  'sister',
  'well',
  'want',
  'say',
  'thank',
  'wholeheartedli',
  'agre',
  'everyon',
  'say',
  'im',
  'ta',
  'ftm_tran',
  'tran_came',
  'came_famili',
  'famili_month',
  'month_ago',
  'ago_everyon',
  'everyon_support',
  'support_although',
  'although_believ',
  'believ_mom',
  'mom_tini',
  'tini_bit',
  'bit_bum',
  'bum_said',
  'said_would',
  'would_alway',
  'alway_support',
  'support_though',
  'though_need',
  'need_time',
  'time_process',
  'process_honestli',
  'honestli_pain',
  'pain_reason',
  'reason_im',
  'im_mom',
  'mom_got',
  'got_tattoo',
  'tattoo_sister',
  'sister_name',
  'name_dead',
  'dead_name',
  'name_born',
  'born_huge',
  'huge_tattoo',
  'tattoo_uniqu',
  'uniqu_design',
  'design_incorpor',
  'incorpor_dead',
  'dead_name',
  'name_cover',
  'cover_arm',
  'arm_realli',
  'realli_proud',
  'proud_old',
  'old_sister',
  'sister_design',
  'design_gift',
  'gift_birthday',
  'birthday_obvious',
  'obvious_constantli',
  'constantli_see',
  'see_dead',
  'dead_name',
  'name_kind',
  'kind_trigger',
  'trigger_therefor',
  'therefor_told',
  'told_need',
  'need_remov',
  'remov_seem',
  'seem_shock',
  'shock_told',
  'told_old',
  'old_longer',
  'longer_tattoo',
  'tattoo_session',
  'session_gotten',
  'gotten_tattoo',
  'tattoo_year',
  'year_bc',
  'bc_also',
  'also_diagnos',
  'diagnos_depress',
  'depress_use',
  'use_excus',
  'excus_energi',
  'energi_chang',
  'chang_anymor',
  'anymor_realli',
  'realli_believ',
  'believ_whatev',
  'whatev_often',
  'often_tri',
  'tri_cover',
  'cover_cloth',
  'cloth_feel',
  'feel_like',
  'like_enough',
  'enough_knowledg',
  'knowledg_name',
  'name_still',
  'still_haunt',
  'haunt_refus',
  'refus_chang',
  'chang_lot',
  'lot_fight',
  'fight_said',
  'said_realli',
  'realli_tri',
  'tri_hide',
  'hide_part',
  'part_bodi',
  'bodi_love',
  'love_bc',
  'bc_much',
  'much_histori',
  'histori_love',
  'love_children',
  'children_tattoo',
  'tattoo_cant',
  'cant_realli',
  'realli_relat',
  'relat_particularli',
  'particularli_signific',
  'signific_tattoo',
  'tattoo_birthday',
  'birthday_day',
  'day_ago',
  'ago_famili',
  'famili_came',
  'came_issu',
  'issu_came',
  'came_bc',
  'bc_cousin',
  'cousin_show',
  'show_new',
  'new_tattoo',
  'tattoo_someon',
  'someon_ask',
  'ask_dead',
  'dead_name',
  'name_tattoo',
  'tattoo_mom',
  'mom_got',
  'got_uncomfort',
  'uncomfort_silent',
  'silent_excus',
  'excus_went',
  'went_kitchen',
  'kitchen_everyon',
  'everyon_start',
  'start_ask',
  'ask_told',
  'told_want',
  'want_remov',
  'remov_tattoo',
  'tattoo_want',
  'want_sister',
  'sister_also',
  'also_want',
  'want_bc',
  'bc_believ',
  'believ_would',
  'would_look',
  'look_realli',
  'realli_aw',
  'aw_sinc',
  'sinc_entir',
  'entir_design',
  'design_attach',
  'attach_name',
  'name_way',
  'way_cover',
  'cover_would',
  'would_make',
  'make_entir',
  'entir_arm',
  'arm_black',
  'black_anyway',
  'anyway_actual',
  'actual_plan',
  'plan_reaction',
  'reaction_cousin',
  'cousin_relat',
  'relat_bit',
  'bit_bc',
  'bc_queer',
  'queer_reason',
  'reason_got',
  'got_furiou',
  'furiou_went',
  'went_mom',
  'mom_scream',
  'scream_unsupport',
  'unsupport_accus',
  'accus_transphob',
  'transphob_believ',
  'believ_although',
  'although_nice',
  'nice_see',
  'see_someon',
  'someon_get',
  'get_angri',
  'angri_tattoo',
  'tattoo_bc',
  'bc_cousin',
  'cousin_final',
  'final_say',
  'say_thing',
  'thing_feel',
  'feel_want',
  'want_put',
  'put_word',
  'word_mom',
  'mom_panic',
  'panic_attack',
  'attack_left',
  'left_hous',
  'hous_stay',
  'stay_grandpa',
  'grandpa_dad',
  'dad_sister',
  'sister_angri',
  'angri_make',
  'make_famili',
  'famili_gang',
  'gang_aita',
  'aita_edit',
  'edit_read',
  'read_comment',
  'comment_tri',
  'tri_apolog',
  'apolog_mom',
  'mom_current',
  'current_nc',
  'nc_stuff',
  'stuff_happen',
  'happen_especi',
  'especi_cousin',
  'cousin_know',
  'know_updat',
  'updat_work',
  'work_ill',
  'ill_tri',
  'tri_post',
  'post_one',
  'one_figur',
  'figur_ps',
  'ps_show',
  'show_sister',
  'sister_well',
  'well_want',
  'want_say',
  'say_thank',
  'thank_wholeheartedli',
  'wholeheartedli_agre',
  'agre_everyon',
  'everyon_say',
  'say_im',
  'im_ta',
  'ftm_tran_came',
  'tran_came_famili',
  'came_famili_month',
  'famili_month_ago',
  'month_ago_everyon',
  'ago_everyon_support',
  'everyon_support_although',
  'support_although_believ',
  'although_believ_mom',
  'believ_mom_tini',
  'mom_tini_bit',
  'tini_bit_bum',
  'bit_bum_said',
  'bum_said_would',
  'said_would_alway',
  'would_alway_support',
  'alway_support_though',
  'support_though_need',
  'though_need_time',
  'need_time_process',
  'time_process_honestli',
  'process_honestli_pain',
  'honestli_pain_reason',
  'pain_reason_im',
  'reason_im_mom',
  'im_mom_got',
  'mom_got_tattoo',
  'got_tattoo_sister',
  'tattoo_sister_name',
  'sister_name_dead',
  'name_dead_name',
  'dead_name_born',
  'name_born_huge',
  'born_huge_tattoo',
  'huge_tattoo_uniqu',
  'tattoo_uniqu_design',
  'uniqu_design_incorpor',
  'design_incorpor_dead',
  'incorpor_dead_name',
  'dead_name_cover',
  'name_cover_arm',
  'cover_arm_realli',
  'arm_realli_proud',
  'realli_proud_old',
  'proud_old_sister',
  'old_sister_design',
  'sister_design_gift',
  'design_gift_birthday',
  'gift_birthday_obvious',
  'birthday_obvious_constantli',
  'obvious_constantli_see',
  'constantli_see_dead',
  'see_dead_name',
  'dead_name_kind',
  'name_kind_trigger',
  'kind_trigger_therefor',
  'trigger_therefor_told',
  'therefor_told_need',
  'told_need_remov',
  'need_remov_seem',
  'remov_seem_shock',
  'seem_shock_told',
  'shock_told_old',
  'told_old_longer',
  'old_longer_tattoo',
  'longer_tattoo_session',
  'tattoo_session_gotten',
  'session_gotten_tattoo',
  'gotten_tattoo_year',
  'tattoo_year_bc',
  'year_bc_also',
  'bc_also_diagnos',
  'also_diagnos_depress',
  'diagnos_depress_use',
  'depress_use_excus',
  'use_excus_energi',
  'excus_energi_chang',
  'energi_chang_anymor',
  'chang_anymor_realli',
  'anymor_realli_believ',
  'realli_believ_whatev',
  'believ_whatev_often',
  'whatev_often_tri',
  'often_tri_cover',
  'tri_cover_cloth',
  'cover_cloth_feel',
  'cloth_feel_like',
  'feel_like_enough',
  'like_enough_knowledg',
  'enough_knowledg_name',
  'knowledg_name_still',
  'name_still_haunt',
  'still_haunt_refus',
  'haunt_refus_chang',
  'refus_chang_lot',
  'chang_lot_fight',
  'lot_fight_said',
  'fight_said_realli',
  'said_realli_tri',
  'realli_tri_hide',
  'tri_hide_part',
  'hide_part_bodi',
  'part_bodi_love',
  'bodi_love_bc',
  'love_bc_much',
  'bc_much_histori',
  'much_histori_love',
  'histori_love_children',
  'love_children_tattoo',
  'children_tattoo_cant',
  'tattoo_cant_realli',
  'cant_realli_relat',
  'realli_relat_particularli',
  'relat_particularli_signific',
  'particularli_signific_tattoo',
  'signific_tattoo_birthday',
  'tattoo_birthday_day',
  'birthday_day_ago',
  'day_ago_famili',
  'ago_famili_came',
  'famili_came_issu',
  'came_issu_came',
  'issu_came_bc',
  'came_bc_cousin',
  'bc_cousin_show',
  'cousin_show_new',
  'show_new_tattoo',
  'new_tattoo_someon',
  'tattoo_someon_ask',
  'someon_ask_dead',
  'ask_dead_name',
  'dead_name_tattoo',
  'name_tattoo_mom',
  'tattoo_mom_got',
  'mom_got_uncomfort',
  'got_uncomfort_silent',
  'uncomfort_silent_excus',
  'silent_excus_went',
  'excus_went_kitchen',
  'went_kitchen_everyon',
  'kitchen_everyon_start',
  'everyon_start_ask',
  'start_ask_told',
  'ask_told_want',
  'told_want_remov',
  'want_remov_tattoo',
  'remov_tattoo_want',
  'tattoo_want_sister',
  'want_sister_also',
  'sister_also_want',
  'also_want_bc',
  'want_bc_believ',
  'bc_believ_would',
  'believ_would_look',
  'would_look_realli',
  'look_realli_aw',
  'realli_aw_sinc',
  'aw_sinc_entir',
  'sinc_entir_design',
  'entir_design_attach',
  'design_attach_name',
  'attach_name_way',
  'name_way_cover',
  'way_cover_would',
  'cover_would_make',
  'would_make_entir',
  'make_entir_arm',
  'entir_arm_black',
  'arm_black_anyway',
  'black_anyway_actual',
  'anyway_actual_plan',
  'actual_plan_reaction',
  'plan_reaction_cousin',
  'reaction_cousin_relat',
  'cousin_relat_bit',
  'relat_bit_bc',
  'bit_bc_queer',
  'bc_queer_reason',
  'queer_reason_got',
  'reason_got_furiou',
  'got_furiou_went',
  'furiou_went_mom',
  'went_mom_scream',
  'mom_scream_unsupport',
  'scream_unsupport_accus',
  'unsupport_accus_transphob',
  'accus_transphob_believ',
  'transphob_believ_although',
  'believ_although_nice',
  'although_nice_see',
  'nice_see_someon',
  'see_someon_get',
  'someon_get_angri',
  'get_angri_tattoo',
  'angri_tattoo_bc',
  'tattoo_bc_cousin',
  'bc_cousin_final',
  'cousin_final_say',
  'final_say_thing',
  'say_thing_feel',
  'thing_feel_want',
  'feel_want_put',
  'want_put_word',
  'put_word_mom',
  'word_mom_panic',
  'mom_panic_attack',
  'panic_attack_left',
  'attack_left_hous',
  'left_hous_stay',
  'hous_stay_grandpa',
  'stay_grandpa_dad',
  'grandpa_dad_sister',
  'dad_sister_angri',
  'sister_angri_make',
  'angri_make_famili',
  'make_famili_gang',
  'famili_gang_aita',
  'gang_aita_edit',
  'aita_edit_read',
  'edit_read_comment',
  'read_comment_tri',
  'comment_tri_apolog',
  'tri_apolog_mom',
  'apolog_mom_current',
  'mom_current_nc',
  'current_nc_stuff',
  'nc_stuff_happen',
  'stuff_happen_especi',
  'happen_especi_cousin',
  'especi_cousin_know',
  'cousin_know_updat',
  'know_updat_work',
  'updat_work_ill',
  'work_ill_tri',
  'ill_tri_post',
  'tri_post_one',
  'post_one_figur',
  'one_figur_ps',
  'figur_ps_show',
  'ps_show_sister',
  'show_sister_well',
  'sister_well_want',
  'well_want_say',
  'want_say_thank',
  'say_thank_wholeheartedli',
  'thank_wholeheartedli_agre',
  'wholeheartedli_agre_everyon',
  'agre_everyon_say',
  'everyon_say_im',
  'say_im_ta'],
 ['week',
  'ago',
  'learn',
  'step',
  'brother',
  'tiktok',
  'dad',
  'step',
  'mom',
  'two',
  'step',
  'brother',
  'pari',
  'stay',
  'mom',
  'time',
  'im',
  'would',
  'love',
  'even',
  'tell',
  'go',
  'immedi',
  'sent',
  'text',
  'dad',
  'ask',
  'theyr',
  'enjoy',
  'time',
  'pari',
  'despit',
  'read',
  'repli',
  'late',
  'night',
  'tri',
  'play',
  'dumb',
  'said',
  'great',
  'wish',
  'could',
  'yeah',
  'repli',
  'could',
  'taken',
  'said',
  'possibl',
  'well',
  'talk',
  'later',
  'return',
  'told',
  'im',
  'hurt',
  'take',
  'dad',
  'took',
  'asid',
  'told',
  'financ',
  'tight',
  'vacat',
  'gift',
  'step',
  'mom',
  'parent',
  'bought',
  'dad',
  'daughter',
  'grandchildren',
  'remind',
  'act',
  'entitl',
  'way',
  'effect',
  'guest',
  'even',
  'though',
  'grandpar',
  'paid',
  'invit',
  'act',
  'entitl',
  'way',
  'convinc',
  'could',
  'refus',
  'go',
  'without',
  'paid',
  'gone',
  'somewher',
  'cheaper',
  'stay',
  'littl',
  'less',
  'longer',
  'ask',
  'mom',
  'pitch',
  'would',
  'exclusionari',
  'money',
  'could',
  'made',
  'work',
  'told',
  'dad',
  'disappoint',
  'came',
  'last',
  'night',
  'step',
  'mom',
  'parent',
  'came',
  'dinner',
  'subject',
  'vacat',
  'came',
  'everyon',
  'takibg',
  'sit',
  'quiet',
  'thank',
  'nice',
  'thing',
  'famili',
  'dad',
  'look',
  'frowni',
  'way',
  'everyon',
  'went',
  'quiet',
  'dad',
  'tri',
  'explain',
  'understood',
  'expens',
  'gift',
  'im',
  'act',
  'like',
  'entitl',
  'brat',
  'go',
  'room',
  'cant',
  'behav',
  'said',
  'seem',
  'like',
  'belong',
  'anyway',
  'told',
  'enjoy',
  'famili',
  'dinner',
  'left',
  'later',
  'grandmoth',
  'came',
  'room',
  'tri',
  'explain',
  'gift',
  'grandchildren',
  'afford',
  'includ',
  'well',
  'said',
  'initi',
  'budget',
  'daughter',
  'grandchildren',
  'stretch',
  'includ',
  'dad',
  'well',
  'wish',
  'could',
  'done',
  'could',
  'realli',
  'stretch',
  'told',
  'problem',
  'dad',
  'beef',
  'get',
  'act',
  'like',
  'care',
  'either',
  'ok',
  'like',
  'im',
  'stranger',
  'care',
  'ball',
  'put',
  'big',
  'girl',
  'pant',
  'wear',
  'sleev',
  'ask',
  'get',
  'room',
  'left',
  'heard',
  'tell',
  'dad',
  'rude',
  'im',
  'ground',
  'notic',
  'act',
  'like',
  'entitl',
  'brat',
  'aita',
  'situat',
  'edit',
  'relev',
  'step',
  'grandmoth',
  'comment',
  'tri',
  'includ',
  'abl',
  'work',
  'budget',
  'nonsens',
  'theyr',
  'rich',
  'excus',
  'take',
  'fool',
  'relev',
  'hold',
  'grudg',
  'dad',
  'im',
  'specifi',
  'cleariti',
  'week_ago',
  'ago_learn',
  'learn_step',
  'step_brother',
  'brother_tiktok',
  'tiktok_dad',
  'dad_step',
  'step_mom',
  'mom_two',
  'two_step',
  'step_brother',
  'brother_pari',
  'pari_stay',
  'stay_mom',
  'mom_time',
  'time_im',
  'im_would',
  'would_love',
  'love_even',
  'even_tell',
  'tell_go',
  'go_immedi',
  'immedi_sent',
  'sent_text',
  'text_dad',
  'dad_ask',
  'ask_theyr',
  'theyr_enjoy',
  'enjoy_time',
  'time_pari',
  'pari_despit',
  'despit_read',
  'read_repli',
  'repli_late',
  'late_night',
  'night_tri',
  'tri_play',
  'play_dumb',
  'dumb_said',
  'said_great',
  'great_wish',
  'wish_could',
  'could_yeah',
  'yeah_repli',
  'repli_could',
  'could_taken',
  'taken_said',
  'said_possibl',
  'possibl_well',
  'well_talk',
  'talk_later',
  'later_return',
  'return_told',
  'told_im',
  'im_hurt',
  'hurt_take',
  'take_dad',
  'dad_took',
  'took_asid',
  'asid_told',
  'told_financ',
  'financ_tight',
  'tight_vacat',
  'vacat_gift',
  'gift_step',
  'step_mom',
  'mom_parent',
  'parent_bought',
  'bought_dad',
  'dad_daughter',
  'daughter_grandchildren',
  'grandchildren_remind',
  'remind_act',
  'act_entitl',
  'entitl_way',
  'way_effect',
  'effect_guest',
  'guest_even',
  'even_though',
  'though_grandpar',
  'grandpar_paid',
  'paid_invit',
  'invit_act',
  'act_entitl',
  'entitl_way',
  'way_convinc',
  'convinc_could',
  'could_refus',
  'refus_go',
  'go_without',
  'without_paid',
  'paid_gone',
  'gone_somewher',
  'somewher_cheaper',
  'cheaper_stay',
  'stay_littl',
  'littl_less',
  'less_longer',
  'longer_ask',
  'ask_mom',
  'mom_pitch',
  'pitch_would',
  'would_exclusionari',
  'exclusionari_money',
  'money_could',
  'could_made',
  'made_work',
  'work_told',
  'told_dad',
  'dad_disappoint',
  'disappoint_came',
  'came_last',
  'last_night',
  'night_step',
  'step_mom',
  'mom_parent',
  'parent_came',
  'came_dinner',
  'dinner_subject',
  'subject_vacat',
  'vacat_came',
  'came_everyon',
  'everyon_takibg',
  'takibg_sit',
  'sit_quiet',
  'quiet_thank',
  'thank_nice',
  'nice_thing',
  'thing_famili',
  'famili_dad',
  'dad_look',
  'look_frowni',
  'frowni_way',
  'way_everyon',
  'everyon_went',
  'went_quiet',
  'quiet_dad',
  'dad_tri',
  'tri_explain',
  'explain_understood',
  'understood_expens',
  'expens_gift',
  'gift_im',
  'im_act',
  'act_like',
  'like_entitl',
  'entitl_brat',
  'brat_go',
  'go_room',
  'room_cant',
  'cant_behav',
  'behav_said',
  'said_seem',
  'seem_like',
  'like_belong',
  'belong_anyway',
  'anyway_told',
  'told_enjoy',
  'enjoy_famili',
  'famili_dinner',
  'dinner_left',
  'left_later',
  'later_grandmoth',
  'grandmoth_came',
  'came_room',
  'room_tri',
  'tri_explain',
  'explain_gift',
  'gift_grandchildren',
  'grandchildren_afford',
  'afford_includ',
  'includ_well',
  'well_said',
  'said_initi',
  'initi_budget',
  'budget_daughter',
  'daughter_grandchildren',
  'grandchildren_stretch',
  'stretch_includ',
  'includ_dad',
  'dad_well',
  'well_wish',
  'wish_could',
  'could_done',
  'done_could',
  'could_realli',
  'realli_stretch',
  'stretch_told',
  'told_problem',
  'problem_dad',
  'dad_beef',
  'beef_get',
  'get_act',
  'act_like',
  'like_care',
  'care_either',
  'either_ok',
  'ok_like',
  'like_im',
  'im_stranger',
  'stranger_care',
  'care_ball',
  'ball_put',
  'put_big',
  'big_girl',
  'girl_pant',
  'pant_wear',
  'wear_sleev',
  'sleev_ask',
  'ask_get',
  'get_room',
  'room_left',
  'left_heard',
  'heard_tell',
  'tell_dad',
  'dad_rude',
  'rude_im',
  'im_ground',
  'ground_notic',
  'notic_act',
  'act_like',
  'like_entitl',
  'entitl_brat',
  'brat_aita',
  'aita_situat',
  'situat_edit',
  'edit_relev',
  'relev_step',
  'step_grandmoth',
  'grandmoth_comment',
  'comment_tri',
  'tri_includ',
  'includ_abl',
  'abl_work',
  'work_budget',
  'budget_nonsens',
  'nonsens_theyr',
  'theyr_rich',
  'rich_excus',
  'excus_take',
  'take_fool',
  'fool_relev',
  'relev_hold',
  'hold_grudg',
  'grudg_dad',
  'dad_im',
  'im_specifi',
  'specifi_cleariti',
  'week_ago_learn',
  'ago_learn_step',
  'learn_step_brother',
  'step_brother_tiktok',
  'brother_tiktok_dad',
  'tiktok_dad_step',
  'dad_step_mom',
  'step_mom_two',
  'mom_two_step',
  'two_step_brother',
  'step_brother_pari',
  'brother_pari_stay',
  'pari_stay_mom',
  'stay_mom_time',
  'mom_time_im',
  'time_im_would',
  'im_would_love',
  'would_love_even',
  'love_even_tell',
  'even_tell_go',
  'tell_go_immedi',
  'go_immedi_sent',
  'immedi_sent_text',
  'sent_text_dad',
  'text_dad_ask',
  'dad_ask_theyr',
  'ask_theyr_enjoy',
  'theyr_enjoy_time',
  'enjoy_time_pari',
  'time_pari_despit',
  'pari_despit_read',
  'despit_read_repli',
  'read_repli_late',
  'repli_late_night',
  'late_night_tri',
  'night_tri_play',
  'tri_play_dumb',
  'play_dumb_said',
  'dumb_said_great',
  'said_great_wish',
  'great_wish_could',
  'wish_could_yeah',
  'could_yeah_repli',
  'yeah_repli_could',
  'repli_could_taken',
  'could_taken_said',
  'taken_said_possibl',
  'said_possibl_well',
  'possibl_well_talk',
  'well_talk_later',
  'talk_later_return',
  'later_return_told',
  'return_told_im',
  'told_im_hurt',
  'im_hurt_take',
  'hurt_take_dad',
  'take_dad_took',
  'dad_took_asid',
  'took_asid_told',
  'asid_told_financ',
  'told_financ_tight',
  'financ_tight_vacat',
  'tight_vacat_gift',
  'vacat_gift_step',
  'gift_step_mom',
  'step_mom_parent',
  'mom_parent_bought',
  'parent_bought_dad',
  'bought_dad_daughter',
  'dad_daughter_grandchildren',
  'daughter_grandchildren_remind',
  'grandchildren_remind_act',
  'remind_act_entitl',
  'act_entitl_way',
  'entitl_way_effect',
  'way_effect_guest',
  'effect_guest_even',
  'guest_even_though',
  'even_though_grandpar',
  'though_grandpar_paid',
  'grandpar_paid_invit',
  'paid_invit_act',
  'invit_act_entitl',
  'act_entitl_way',
  'entitl_way_convinc',
  'way_convinc_could',
  'convinc_could_refus',
  'could_refus_go',
  'refus_go_without',
  'go_without_paid',
  'without_paid_gone',
  'paid_gone_somewher',
  'gone_somewher_cheaper',
  'somewher_cheaper_stay',
  'cheaper_stay_littl',
  'stay_littl_less',
  'littl_less_longer',
  'less_longer_ask',
  'longer_ask_mom',
  'ask_mom_pitch',
  'mom_pitch_would',
  'pitch_would_exclusionari',
  'would_exclusionari_money',
  'exclusionari_money_could',
  'money_could_made',
  'could_made_work',
  'made_work_told',
  'work_told_dad',
  'told_dad_disappoint',
  'dad_disappoint_came',
  'disappoint_came_last',
  'came_last_night',
  'last_night_step',
  'night_step_mom',
  'step_mom_parent',
  'mom_parent_came',
  'parent_came_dinner',
  'came_dinner_subject',
  'dinner_subject_vacat',
  'subject_vacat_came',
  'vacat_came_everyon',
  'came_everyon_takibg',
  'everyon_takibg_sit',
  'takibg_sit_quiet',
  'sit_quiet_thank',
  'quiet_thank_nice',
  'thank_nice_thing',
  'nice_thing_famili',
  'thing_famili_dad',
  'famili_dad_look',
  'dad_look_frowni',
  'look_frowni_way',
  'frowni_way_everyon',
  'way_everyon_went',
  'everyon_went_quiet',
  'went_quiet_dad',
  'quiet_dad_tri',
  'dad_tri_explain',
  'tri_explain_understood',
  'explain_understood_expens',
  'understood_expens_gift',
  'expens_gift_im',
  'gift_im_act',
  'im_act_like',
  'act_like_entitl',
  'like_entitl_brat',
  'entitl_brat_go',
  'brat_go_room',
  'go_room_cant',
  'room_cant_behav',
  'cant_behav_said',
  'behav_said_seem',
  'said_seem_like',
  'seem_like_belong',
  'like_belong_anyway',
  'belong_anyway_told',
  'anyway_told_enjoy',
  'told_enjoy_famili',
  'enjoy_famili_dinner',
  'famili_dinner_left',
  'dinner_left_later',
  'left_later_grandmoth',
  'later_grandmoth_came',
  'grandmoth_came_room',
  'came_room_tri',
  'room_tri_explain',
  'tri_explain_gift',
  'explain_gift_grandchildren',
  'gift_grandchildren_afford',
  'grandchildren_afford_includ',
  'afford_includ_well',
  'includ_well_said',
  'well_said_initi',
  'said_initi_budget',
  'initi_budget_daughter',
  'budget_daughter_grandchildren',
  'daughter_grandchildren_stretch',
  'grandchildren_stretch_includ',
  'stretch_includ_dad',
  'includ_dad_well',
  'dad_well_wish',
  'well_wish_could',
  'wish_could_done',
  'could_done_could',
  'done_could_realli',
  'could_realli_stretch',
  'realli_stretch_told',
  'stretch_told_problem',
  'told_problem_dad',
  'problem_dad_beef',
  'dad_beef_get',
  'beef_get_act',
  'get_act_like',
  'act_like_care',
  'like_care_either',
  'care_either_ok',
  'either_ok_like',
  'ok_like_im',
  'like_im_stranger',
  'im_stranger_care',
  'stranger_care_ball',
  'care_ball_put',
  'ball_put_big',
  'put_big_girl',
  'big_girl_pant',
  'girl_pant_wear',
  'pant_wear_sleev',
  'wear_sleev_ask',
  'sleev_ask_get',
  'ask_get_room',
  'get_room_left',
  'room_left_heard',
  'left_heard_tell',
  'heard_tell_dad',
  'tell_dad_rude',
  'dad_rude_im',
  'rude_im_ground',
  'im_ground_notic',
  'ground_notic_act',
  'notic_act_like',
  'act_like_entitl',
  'like_entitl_brat',
  'entitl_brat_aita',
  'brat_aita_situat',
  'aita_situat_edit',
  'situat_edit_relev',
  'edit_relev_step',
  'relev_step_grandmoth',
  'step_grandmoth_comment',
  'grandmoth_comment_tri',
  'comment_tri_includ',
  'tri_includ_abl',
  'includ_abl_work',
  'abl_work_budget',
  'work_budget_nonsens',
  'budget_nonsens_theyr',
  'nonsens_theyr_rich',
  'theyr_rich_excus',
  'rich_excus_take',
  'excus_take_fool',
  'take_fool_relev',
  'fool_relev_hold',
  'relev_hold_grudg',
  'hold_grudg_dad',
  'grudg_dad_im',
  'dad_im_specifi',
  'im_specifi_cleariti'],
 ['[',
  ']',
  'met',
  'wonder',
  'man',
  'philip',
  '[',
  ']',
  'year',
  'ago',
  'got',
  'marri',
  'month',
  'ago',
  'context',
  'yo',
  'son',
  'billi',
  'previou',
  'relationship',
  'ex',
  'pictur',
  'admit',
  'philip',
  'relationship',
  'famili',
  'great',
  'would',
  'disagre',
  'lot',
  'thing',
  'exampl',
  'argument',
  'dad',
  'said',
  'keep',
  'grandson',
  'away',
  'philip',
  'state',
  'visit',
  'billi',
  'work',
  'sick',
  'time',
  'latest',
  'argument',
  'made',
  'thing',
  'wors',
  'mom',
  'sister',
  'discuss',
  'natur',
  'remedi',
  'theyr',
  'stuff',
  'niec',
  'philip',
  'pediatrician',
  'call',
  'ignor',
  'use',
  'med',
  'instead',
  'caus',
  'huge',
  'argument',
  'philip',
  'longer',
  'welcom',
  'parent',
  'hous',
  'theyd',
  'sent',
  'billi',
  'invit',
  'christma',
  'includ',
  'philip',
  'expect',
  'given',
  'strain',
  'relationship',
  'becom',
  'call',
  'mom',
  'confirm',
  'ill',
  'attend',
  'minut',
  'philip',
  'found',
  'went',
  'say',
  'could',
  'believ',
  'fine',
  'famili',
  'exclud',
  'agre',
  'go',
  'leav',
  'behind',
  'told',
  'celebr',
  'get',
  'decid',
  'guestlist',
  'also',
  'im',
  'leav',
  'behind',
  'plan',
  'christma',
  'said',
  'thought',
  'wed',
  'automat',
  'celebr',
  'togeth',
  'us',
  'im',
  'take',
  'billi',
  'away',
  'well',
  'thought',
  'bit',
  'melodramat',
  'liter',
  'hour',
  'parent',
  'home',
  'insist',
  'principl',
  'respect',
  'big',
  'argument',
  'said',
  'basic',
  'alien',
  'continu',
  'pick',
  'argument',
  'famili',
  'start',
  'rant',
  'say',
  'fact',
  'invit',
  'fact',
  'let',
  'spend',
  'christma',
  'alon',
  'without',
  'billi',
  'went',
  'back',
  'forth',
  'issu',
  'seem',
  'reach',
  'solut',
  'parent',
  'use',
  'spend',
  'everi',
  'major',
  'holiday',
  'billi',
  'see',
  'much',
  'pressur',
  'im',
  'get',
  'side',
  '[_]',
  ']_met',
  'met_wonder',
  'wonder_man',
  'man_philip',
  'philip_[',
  '[_]',
  ']_year',
  'year_ago',
  'ago_got',
  'got_marri',
  'marri_month',
  'month_ago',
  'ago_context',
  'context_yo',
  'yo_son',
  'son_billi',
  'billi_previou',
  'previou_relationship',
  'relationship_ex',
  'ex_pictur',
  'pictur_admit',
  'admit_philip',
  'philip_relationship',
  'relationship_famili',
  'famili_great',
  'great_would',
  'would_disagre',
  'disagre_lot',
  'lot_thing',
  'thing_exampl',
  'exampl_argument',
  'argument_dad',
  'dad_said',
  'said_keep',
  'keep_grandson',
  'grandson_away',
  'away_philip',
  'philip_state',
  'state_visit',
  'visit_billi',
  'billi_work',
  'work_sick',
  'sick_time',
  'time_latest',
  'latest_argument',
  'argument_made',
  'made_thing',
  'thing_wors',
  'wors_mom',
  'mom_sister',
  'sister_discuss',
  'discuss_natur',
  'natur_remedi',
  'remedi_theyr',
  'theyr_stuff',
  'stuff_niec',
  'niec_philip',
  'philip_pediatrician',
  'pediatrician_call',
  'call_ignor',
  'ignor_use',
  'use_med',
  'med_instead',
  'instead_caus',
  'caus_huge',
  'huge_argument',
  'argument_philip',
  'philip_longer',
  'longer_welcom',
  'welcom_parent',
  'parent_hous',
  'hous_theyd',
  'theyd_sent',
  'sent_billi',
  'billi_invit',
  'invit_christma',
  'christma_includ',
  'includ_philip',
  'philip_expect',
  'expect_given',
  'given_strain',
  'strain_relationship',
  'relationship_becom',
  'becom_call',
  'call_mom',
  'mom_confirm',
  'confirm_ill',
  'ill_attend',
  'attend_minut',
  'minut_philip',
  'philip_found',
  'found_went',
  'went_say',
  'say_could',
  'could_believ',
  'believ_fine',
  'fine_famili',
  'famili_exclud',
  'exclud_agre',
  'agre_go',
  'go_leav',
  'leav_behind',
  'behind_told',
  'told_celebr',
  'celebr_get',
  'get_decid',
  'decid_guestlist',
  'guestlist_also',
  'also_im',
  'im_leav',
  'leav_behind',
  'behind_plan',
  'plan_christma',
  'christma_said',
  'said_thought',
  'thought_wed',
  'wed_automat',
  'automat_celebr',
  'celebr_togeth',
  'togeth_us',
  'us_im',
  'im_take',
  'take_billi',
  'billi_away',
  'away_well',
  'well_thought',
  'thought_bit',
  'bit_melodramat',
  'melodramat_liter',
  'liter_hour',
  'hour_parent',
  'parent_home',
  'home_insist',
  'insist_principl',
  'principl_respect',
  'respect_big',
  'big_argument',
  'argument_said',
  'said_basic',
  'basic_alien',
  'alien_continu',
  'continu_pick',
  'pick_argument',
  'argument_famili',
  'famili_start',
  'start_rant',
  'rant_say',
  'say_fact',
  'fact_invit',
  'invit_fact',
  'fact_let',
  'let_spend',
  'spend_christma',
  'christma_alon',
  'alon_without',
  'without_billi',
  'billi_went',
  'went_back',
  'back_forth',
  'forth_issu',
  'issu_seem',
  'seem_reach',
  'reach_solut',
  'solut_parent',
  'parent_use',
  'use_spend',
  'spend_everi',
  'everi_major',
  'major_holiday',
  'holiday_billi',
  'billi_see',
  'see_much',
  'much_pressur',
  'pressur_im',
  'im_get',
  'get_side',
  '[_]_met',
  ']_met_wonder',
  'met_wonder_man',
  'wonder_man_philip',
  'man_philip_[',
  'philip_[_]',
  '[_]_year',
  ']_year_ago',
  'year_ago_got',
  'ago_got_marri',
  'got_marri_month',
  'marri_month_ago',
  'month_ago_context',
  'ago_context_yo',
  'context_yo_son',
  'yo_son_billi',
  'son_billi_previou',
  'billi_previou_relationship',
  'previou_relationship_ex',
  'relationship_ex_pictur',
  'ex_pictur_admit',
  'pictur_admit_philip',
  'admit_philip_relationship',
  'philip_relationship_famili',
  'relationship_famili_great',
  'famili_great_would',
  'great_would_disagre',
  'would_disagre_lot',
  'disagre_lot_thing',
  'lot_thing_exampl',
  'thing_exampl_argument',
  'exampl_argument_dad',
  'argument_dad_said',
  'dad_said_keep',
  'said_keep_grandson',
  'keep_grandson_away',
  'grandson_away_philip',
  'away_philip_state',
  'philip_state_visit',
  'state_visit_billi',
  'visit_billi_work',
  'billi_work_sick',
  'work_sick_time',
  'sick_time_latest',
  'time_latest_argument',
  'latest_argument_made',
  'argument_made_thing',
  'made_thing_wors',
  'thing_wors_mom',
  'wors_mom_sister',
  'mom_sister_discuss',
  'sister_discuss_natur',
  'discuss_natur_remedi',
  'natur_remedi_theyr',
  'remedi_theyr_stuff',
  'theyr_stuff_niec',
  'stuff_niec_philip',
  'niec_philip_pediatrician',
  'philip_pediatrician_call',
  'pediatrician_call_ignor',
  'call_ignor_use',
  'ignor_use_med',
  'use_med_instead',
  'med_instead_caus',
  'instead_caus_huge',
  'caus_huge_argument',
  'huge_argument_philip',
  'argument_philip_longer',
  'philip_longer_welcom',
  'longer_welcom_parent',
  'welcom_parent_hous',
  'parent_hous_theyd',
  'hous_theyd_sent',
  'theyd_sent_billi',
  'sent_billi_invit',
  'billi_invit_christma',
  'invit_christma_includ',
  'christma_includ_philip',
  'includ_philip_expect',
  'philip_expect_given',
  'expect_given_strain',
  'given_strain_relationship',
  'strain_relationship_becom',
  'relationship_becom_call',
  'becom_call_mom',
  'call_mom_confirm',
  'mom_confirm_ill',
  'confirm_ill_attend',
  'ill_attend_minut',
  'attend_minut_philip',
  'minut_philip_found',
  'philip_found_went',
  'found_went_say',
  'went_say_could',
  'say_could_believ',
  'could_believ_fine',
  'believ_fine_famili',
  'fine_famili_exclud',
  'famili_exclud_agre',
  'exclud_agre_go',
  'agre_go_leav',
  'go_leav_behind',
  'leav_behind_told',
  'behind_told_celebr',
  'told_celebr_get',
  'celebr_get_decid',
  'get_decid_guestlist',
  'decid_guestlist_also',
  'guestlist_also_im',
  'also_im_leav',
  'im_leav_behind',
  'leav_behind_plan',
  'behind_plan_christma',
  'plan_christma_said',
  'christma_said_thought',
  'said_thought_wed',
  'thought_wed_automat',
  'wed_automat_celebr',
  'automat_celebr_togeth',
  'celebr_togeth_us',
  'togeth_us_im',
  'us_im_take',
  'im_take_billi',
  'take_billi_away',
  'billi_away_well',
  'away_well_thought',
  'well_thought_bit',
  'thought_bit_melodramat',
  'bit_melodramat_liter',
  'melodramat_liter_hour',
  'liter_hour_parent',
  'hour_parent_home',
  'parent_home_insist',
  'home_insist_principl',
  'insist_principl_respect',
  'principl_respect_big',
  'respect_big_argument',
  'big_argument_said',
  'argument_said_basic',
  'said_basic_alien',
  'basic_alien_continu',
  'alien_continu_pick',
  'continu_pick_argument',
  'pick_argument_famili',
  'argument_famili_start',
  'famili_start_rant',
  'start_rant_say',
  'rant_say_fact',
  'say_fact_invit',
  'fact_invit_fact',
  'invit_fact_let',
  'fact_let_spend',
  'let_spend_christma',
  'spend_christma_alon',
  'christma_alon_without',
  'alon_without_billi',
  'without_billi_went',
  'billi_went_back',
  'went_back_forth',
  'back_forth_issu',
  'forth_issu_seem',
  'issu_seem_reach',
  'seem_reach_solut',
  'reach_solut_parent',
  'solut_parent_use',
  'parent_use_spend',
  'use_spend_everi',
  'spend_everi_major',
  'everi_major_holiday',
  'major_holiday_billi',
  'holiday_billi_see',
  'billi_see_much',
  'see_much_pressur',
  'much_pressur_im',
  'pressur_im_get',
  'im_get_side'],
 ['full',
  'time',
  'colleg',
  'student',
  'right',
  'im',
  'live',
  'sister',
  'clair',
  'husband',
  'thoma',
  'get',
  'current',
  'semster',
  'work',
  'everyth',
  'need',
  'daili',
  'skinhair',
  'routin',
  'borrow',
  'stuff',
  'clair',
  'clair',
  'issu',
  'begin',
  'start',
  'complain',
  'randomli',
  'walk',
  'room',
  'go',
  'look',
  'stuff',
  'ask',
  'gave',
  'hard',
  'time',
  'walk',
  'thoma',
  'half',
  'nake',
  'get',
  'eye',
  'shadow',
  'borrow',
  'time',
  'walk',
  'late',
  'night',
  'told',
  'ned',
  'get',
  'permiss',
  'enter',
  'room',
  'take',
  'anyth',
  'figur',
  'would',
  'make',
  'thing',
  'complic',
  'enough',
  'ask',
  'borrow',
  'item',
  'last',
  'night',
  'around',
  'pm',
  'went',
  'upstair',
  'bedroom',
  'grab',
  'hair',
  'dryer',
  'walk',
  'woop',
  'saw',
  'intim',
  'posit',
  'togeth',
  'bed',
  'idea',
  'theyr',
  'especi',
  'sinc',
  'clair',
  'told',
  'thoma',
  'feel',
  'sick',
  'past',
  'day',
  'lash',
  'yell',
  'get',
  'quickli',
  'grab',
  'hair',
  'dryer',
  'walk',
  'shut',
  'door',
  'minut',
  'later',
  'came',
  'downstair',
  'robe',
  'went',
  'say',
  'done',
  'repeatedli',
  'disrespect',
  'violat',
  'husband',
  'privaci',
  'told',
  'cool',
  'big',
  'deal',
  'need',
  'dryer',
  'time',
  'ask',
  'permissin',
  'got',
  'even',
  'louder',
  'say',
  'busi',
  'barg',
  'marit',
  'space',
  'embarrass',
  'husband',
  'like',
  'told',
  'sorri',
  'realli',
  'overreact',
  'whole',
  'thing',
  'made',
  'piss',
  'went',
  'im',
  'live',
  'rent',
  'free',
  'yet',
  'respect',
  'enough',
  'stop',
  'argu',
  'went',
  'room',
  'morn',
  'thoma',
  'left',
  'hous',
  'earli',
  'amd',
  'clair',
  'ignor',
  'breakfast',
  'still',
  'upset',
  'say',
  'get',
  'say',
  'wether',
  'overreact',
  'behavior',
  'inappropri',
  'even',
  'want',
  'apolog',
  'husband',
  'make',
  'last',
  'night',
  'awkward',
  'full_time',
  'time_colleg',
  'colleg_student',
  'student_right',
  'right_im',
  'im_live',
  'live_sister',
  'sister_clair',
  'clair_husband',
  'husband_thoma',
  'thoma_get',
  'get_current',
  'current_semster',
  'semster_work',
  'work_everyth',
  'everyth_need',
  'need_daili',
  'daili_skinhair',
  'skinhair_routin',
  'routin_borrow',
  'borrow_stuff',
  'stuff_clair',
  'clair_clair',
  'clair_issu',
  'issu_begin',
  'begin_start',
  'start_complain',
  'complain_randomli',
  'randomli_walk',
  'walk_room',
  'room_go',
  'go_look',
  'look_stuff',
  'stuff_ask',
  'ask_gave',
  'gave_hard',
  'hard_time',
  'time_walk',
  'walk_thoma',
  'thoma_half',
  'half_nake',
  'nake_get',
  'get_eye',
  'eye_shadow',
  'shadow_borrow',
  'borrow_time',
  'time_walk',
  'walk_late',
  'late_night',
  'night_told',
  'told_ned',
  'ned_get',
  'get_permiss',
  'permiss_enter',
  'enter_room',
  'room_take',
  'take_anyth',
  'anyth_figur',
  'figur_would',
  'would_make',
  'make_thing',
  'thing_complic',
  'complic_enough',
  'enough_ask',
  'ask_borrow',
  'borrow_item',
  'item_last',
  'last_night',
  'night_around',
  'around_pm',
  'pm_went',
  'went_upstair',
  'upstair_bedroom',
  'bedroom_grab',
  'grab_hair',
  'hair_dryer',
  'dryer_walk',
  'walk_woop',
  'woop_saw',
  'saw_intim',
  'intim_posit',
  'posit_togeth',
  'togeth_bed',
  'bed_idea',
  'idea_theyr',
  'theyr_especi',
  'especi_sinc',
  'sinc_clair',
  'clair_told',
  'told_thoma',
  'thoma_feel',
  'feel_sick',
  'sick_past',
  'past_day',
  'day_lash',
  'lash_yell',
  'yell_get',
  'get_quickli',
  'quickli_grab',
  'grab_hair',
  'hair_dryer',
  'dryer_walk',
  'walk_shut',
  'shut_door',
  'door_minut',
  'minut_later',
  'later_came',
  'came_downstair',
  'downstair_robe',
  'robe_went',
  'went_say',
  'say_done',
  'done_repeatedli',
  'repeatedli_disrespect',
  'disrespect_violat',
  'violat_husband',
  'husband_privaci',
  'privaci_told',
  'told_cool',
  'cool_big',
  'big_deal',
  'deal_need',
  'need_dryer',
  'dryer_time',
  'time_ask',
  'ask_permissin',
  'permissin_got',
  'got_even',
  'even_louder',
  'louder_say',
  'say_busi',
  'busi_barg',
  'barg_marit',
  'marit_space',
  'space_embarrass',
  'embarrass_husband',
  'husband_like',
  'like_told',
  'told_sorri',
  'sorri_realli',
  'realli_overreact',
  'overreact_whole',
  'whole_thing',
  'thing_made',
  'made_piss',
  'piss_went',
  'went_im',
  'im_live',
  'live_rent',
  'rent_free',
  'free_yet',
  'yet_respect',
  'respect_enough',
  'enough_stop',
  'stop_argu',
  'argu_went',
  'went_room',
  'room_morn',
  'morn_thoma',
  'thoma_left',
  'left_hous',
  'hous_earli',
  'earli_amd',
  'amd_clair',
  'clair_ignor',
  'ignor_breakfast',
  'breakfast_still',
  'still_upset',
  'upset_say',
  'say_get',
  'get_say',
  'say_wether',
  'wether_overreact',
  'overreact_behavior',
  'behavior_inappropri',
  'inappropri_even',
  'even_want',
  'want_apolog',
  'apolog_husband',
  'husband_make',
  'make_last',
  'last_night',
  'night_awkward',
  'full_time_colleg',
  'time_colleg_student',
  'colleg_student_right',
  'student_right_im',
  'right_im_live',
  'im_live_sister',
  'live_sister_clair',
  'sister_clair_husband',
  'clair_husband_thoma',
  'husband_thoma_get',
  'thoma_get_current',
  'get_current_semster',
  'current_semster_work',
  'semster_work_everyth',
  'work_everyth_need',
  'everyth_need_daili',
  'need_daili_skinhair',
  'daili_skinhair_routin',
  'skinhair_routin_borrow',
  'routin_borrow_stuff',
  'borrow_stuff_clair',
  'stuff_clair_clair',
  'clair_clair_issu',
  'clair_issu_begin',
  'issu_begin_start',
  'begin_start_complain',
  'start_complain_randomli',
  'complain_randomli_walk',
  'randomli_walk_room',
  'walk_room_go',
  'room_go_look',
  'go_look_stuff',
  'look_stuff_ask',
  'stuff_ask_gave',
  'ask_gave_hard',
  'gave_hard_time',
  'hard_time_walk',
  'time_walk_thoma',
  'walk_thoma_half',
  'thoma_half_nake',
  'half_nake_get',
  'nake_get_eye',
  'get_eye_shadow',
  'eye_shadow_borrow',
  'shadow_borrow_time',
  'borrow_time_walk',
  'time_walk_late',
  'walk_late_night',
  'late_night_told',
  'night_told_ned',
  'told_ned_get',
  'ned_get_permiss',
  'get_permiss_enter',
  'permiss_enter_room',
  'enter_room_take',
  'room_take_anyth',
  'take_anyth_figur',
  'anyth_figur_would',
  'figur_would_make',
  'would_make_thing',
  'make_thing_complic',
  'thing_complic_enough',
  'complic_enough_ask',
  'enough_ask_borrow',
  'ask_borrow_item',
  'borrow_item_last',
  'item_last_night',
  'last_night_around',
  'night_around_pm',
  'around_pm_went',
  'pm_went_upstair',
  'went_upstair_bedroom',
  'upstair_bedroom_grab',
  'bedroom_grab_hair',
  'grab_hair_dryer',
  'hair_dryer_walk',
  'dryer_walk_woop',
  'walk_woop_saw',
  'woop_saw_intim',
  'saw_intim_posit',
  'intim_posit_togeth',
  'posit_togeth_bed',
  'togeth_bed_idea',
  'bed_idea_theyr',
  'idea_theyr_especi',
  'theyr_especi_sinc',
  'especi_sinc_clair',
  'sinc_clair_told',
  'clair_told_thoma',
  'told_thoma_feel',
  'thoma_feel_sick',
  'feel_sick_past',
  'sick_past_day',
  'past_day_lash',
  'day_lash_yell',
  'lash_yell_get',
  'yell_get_quickli',
  'get_quickli_grab',
  'quickli_grab_hair',
  'grab_hair_dryer',
  'hair_dryer_walk',
  'dryer_walk_shut',
  'walk_shut_door',
  'shut_door_minut',
  'door_minut_later',
  'minut_later_came',
  'later_came_downstair',
  'came_downstair_robe',
  'downstair_robe_went',
  'robe_went_say',
  'went_say_done',
  'say_done_repeatedli',
  'done_repeatedli_disrespect',
  'repeatedli_disrespect_violat',
  'disrespect_violat_husband',
  'violat_husband_privaci',
  'husband_privaci_told',
  'privaci_told_cool',
  'told_cool_big',
  'cool_big_deal',
  'big_deal_need',
  'deal_need_dryer',
  'need_dryer_time',
  'dryer_time_ask',
  'time_ask_permissin',
  'ask_permissin_got',
  'permissin_got_even',
  'got_even_louder',
  'even_louder_say',
  'louder_say_busi',
  'say_busi_barg',
  'busi_barg_marit',
  'barg_marit_space',
  'marit_space_embarrass',
  'space_embarrass_husband',
  'embarrass_husband_like',
  'husband_like_told',
  'like_told_sorri',
  'told_sorri_realli',
  'sorri_realli_overreact',
  'realli_overreact_whole',
  'overreact_whole_thing',
  'whole_thing_made',
  'thing_made_piss',
  'made_piss_went',
  'piss_went_im',
  'went_im_live',
  'im_live_rent',
  'live_rent_free',
  'rent_free_yet',
  'free_yet_respect',
  'yet_respect_enough',
  'respect_enough_stop',
  'enough_stop_argu',
  'stop_argu_went',
  'argu_went_room',
  'went_room_morn',
  'room_morn_thoma',
  'morn_thoma_left',
  'thoma_left_hous',
  'left_hous_earli',
  'hous_earli_amd',
  'earli_amd_clair',
  'amd_clair_ignor',
  'clair_ignor_breakfast',
  'ignor_breakfast_still',
  'breakfast_still_upset',
  'still_upset_say',
  'upset_say_get',
  'say_get_say',
  'get_say_wether',
  'say_wether_overreact',
  'wether_overreact_behavior',
  'overreact_behavior_inappropri',
  'behavior_inappropri_even',
  'inappropri_even_want',
  'even_want_apolog',
  'want_apolog_husband',
  'apolog_husband_make',
  'husband_make_last',
  'make_last_night',
  'last_night_awkward'],
 ['everyon',
  'work',
  'full',
  'time',
  'daycar',
  'younger',
  'preschool',
  'still',
  'diaper',
  'day',
  'huge',
  'barbecu',
  'friend',
  'high',
  'school',
  'friend',
  'parent',
  'also',
  'ran',
  'one',
  'preschool',
  'mom',
  'chat',
  'littl',
  'minut',
  'mom',
  'said',
  'kid',
  'diaper',
  'dirti',
  'ask',
  'could',
  'chang',
  'thought',
  'joke',
  'laugh',
  'made',
  'joke',
  'back',
  'chang',
  'diaper',
  'im',
  'clock',
  'friend',
  'sit',
  'kind',
  'laugh',
  'awkwardli',
  'look',
  'dead',
  'seriou',
  'said',
  'realli',
  'chang',
  'diaper',
  'felt',
  'realli',
  'awkward',
  'said',
  'sorri',
  'went',
  'walk',
  'away',
  'start',
  'explain',
  'husband',
  'one',
  'chang',
  'diaper',
  'germaphob',
  'emetaphobia',
  'fear',
  'throw',
  'done',
  'time',
  'absolut',
  'alway',
  'threw',
  'appar',
  'crippl',
  'fear',
  'felt',
  'regardless',
  'circumst',
  'inappropri',
  'ask',
  'said',
  'seem',
  'realli',
  'shock',
  'continu',
  'explain',
  'much',
  'hate',
  'chang',
  'diaper',
  'husband',
  'help',
  'told',
  'like',
  'chang',
  'either',
  'think',
  'inappropri',
  'keep',
  'push',
  'alreadi',
  'told',
  'said',
  'devast',
  'learn',
  'daughter',
  'favorit',
  'teacher',
  'littl',
  'empathi',
  'walk',
  'away',
  'minut',
  'later',
  'saw',
  'put',
  'kid',
  'car',
  'leav',
  'assum',
  'went',
  'wherev',
  'husband',
  'text',
  'boss',
  'tell',
  'happen',
  'go',
  'vacat',
  'assum',
  'mother',
  'would',
  'say',
  'someth',
  'boss',
  'told',
  'could',
  'tell',
  'detail',
  'get',
  'back',
  'shed',
  'let',
  'know',
  'mom',
  'said',
  'anyth',
  'seem',
  'like',
  'right',
  'say',
  'think',
  'im',
  'ah',
  'situat',
  'employe',
  'even',
  'still',
  'think',
  'someth',
  'ask',
  'someon',
  'outsid',
  'work',
  'hour',
  'know',
  'mom',
  'well',
  'rare',
  'talk',
  'pickup',
  'drop',
  'sit',
  'tabl',
  'friend',
  'presum',
  'know',
  'situat',
  'wouldv',
  'better',
  'peopl',
  'ask',
  'help',
  'think',
  'would',
  'rather',
  'let',
  'kid',
  'sit',
  'dirti',
  'diaper',
  'car',
  'ride',
  'home',
  'instead',
  'chang',
  'go',
  'place',
  'without',
  'husband',
  'part',
  'make',
  'feel',
  'littl',
  'bit',
  'like',
  'asshol',
  'fact',
  'kid',
  'sit',
  'poop',
  'car',
  'ride',
  'home',
  'assum',
  'left',
  'would',
  'either',
  'ask',
  'one',
  'friend',
  'suck',
  'asshol',
  'updat',
  '+',
  'context',
  'pretti',
  'sure',
  'ah',
  'thank',
  'valid',
  'lot',
  'peopl',
  'ask',
  'plan',
  'go',
  'parti',
  'possibl',
  'couldv',
  'suggest',
  'call',
  'cp',
  'report',
  'neglect',
  'want',
  'add',
  'stuff',
  'probabl',
  'said',
  'first',
  'time',
  'around',
  'ive',
  'never',
  'post',
  'first',
  'school',
  'work',
  'incred',
  'expens',
  'parent',
  'incred',
  'wealthi',
  'kind',
  'entitl',
  'complet',
  'surpris',
  'also',
  'know',
  'famili',
  'nanni',
  'occasion',
  'drop',
  'kid',
  'pick',
  'know',
  'live-in',
  'nanni',
  'boss',
  'say',
  'enough',
  'time',
  'handl',
  'diaper',
  'chang',
  'especi',
  'sinc',
  'child',
  'older',
  'sleep',
  'night',
  'feel',
  'bad',
  'husband',
  'seem',
  'like',
  'pretti',
  'nice',
  'guy',
  'think',
  'chang',
  'kid',
  'much',
  'normal',
  'parent',
  'nanni',
  'secondli',
  'talk',
  'friend',
  'mom',
  'host',
  'parti',
  'mother',
  'relat',
  'peopl',
  'invit',
  'kind',
  'invit',
  'everyon',
  'know',
  'type',
  'thing',
  'appar',
  'famili',
  'usual',
  'handl',
  'husband',
  'around',
  'assum',
  'plan',
  'ran',
  'figur',
  'need',
  'bother',
  'famili',
  'anymor',
  'im',
  'sure',
  'get',
  'fed',
  'chang',
  'child',
  'old',
  'enough',
  'start',
  'potti',
  'train',
  'said',
  'embarrass',
  'go',
  'ask',
  'someon',
  'els',
  'final',
  'everyon',
  'say',
  'call',
  'cp',
  'talk',
  'boss',
  'complet',
  'side',
  'btw',
  'think',
  'necessari',
  'time',
  'truli',
  'believ',
  'kid',
  'alon',
  'often',
  'enough',
  'problem',
  'kid',
  'never',
  'kind',
  'seriou',
  'diaper',
  'rash',
  'would',
  'indic',
  'left',
  'dirti',
  'diaper',
  'long',
  'period',
  'time',
  'though',
  'mom',
  'drop',
  'dirti',
  'diaper',
  'occasion',
  'seem',
  'like',
  'happen',
  'car',
  'whove',
  'never',
  'chang',
  'diaper',
  'kind',
  'tell',
  'fresh',
  'vs',
  'sit',
  'awhil',
  'go',
  'keep',
  'close',
  'eye',
  'though',
  'keep',
  'record',
  'stuff',
  'like',
  'though',
  'agre',
  'mom',
  'seriou',
  'issu',
  'caus',
  'problem',
  'diaper',
  'rash',
  'seem',
  'rare',
  'occas',
  'think',
  'warrant',
  'cp',
  'call',
  'everyon_work',
  'work_full',
  'full_time',
  'time_daycar',
  'daycar_younger',
  'younger_preschool',
  'preschool_still',
  'still_diaper',
  'diaper_day',
  'day_huge',
  'huge_barbecu',
  'barbecu_friend',
  'friend_high',
  'high_school',
  'school_friend',
  'friend_parent',
  'parent_also',
  'also_ran',
  'ran_one',
  'one_preschool',
  'preschool_mom',
  'mom_chat',
  'chat_littl',
  'littl_minut',
  'minut_mom',
  'mom_said',
  'said_kid',
  'kid_diaper',
  'diaper_dirti',
  'dirti_ask',
  'ask_could',
  'could_chang',
  'chang_thought',
  'thought_joke',
  'joke_laugh',
  'laugh_made',
  'made_joke',
  'joke_back',
  'back_chang',
  'chang_diaper',
  'diaper_im',
  'im_clock',
  'clock_friend',
  'friend_sit',
  'sit_kind',
  'kind_laugh',
  'laugh_awkwardli',
  'awkwardli_look',
  'look_dead',
  'dead_seriou',
  'seriou_said',
  'said_realli',
  'realli_chang',
  'chang_diaper',
  'diaper_felt',
  'felt_realli',
  'realli_awkward',
  'awkward_said',
  'said_sorri',
  'sorri_went',
  'went_walk',
  'walk_away',
  'away_start',
  'start_explain',
  'explain_husband',
  'husband_one',
  'one_chang',
  'chang_diaper',
  'diaper_germaphob',
  'germaphob_emetaphobia',
  'emetaphobia_fear',
  'fear_throw',
  'throw_done',
  'done_time',
  'time_absolut',
  'absolut_alway',
  'alway_threw',
  'threw_appar',
  'appar_crippl',
  'crippl_fear',
  'fear_felt',
  'felt_regardless',
  'regardless_circumst',
  'circumst_inappropri',
  'inappropri_ask',
  'ask_said',
  'said_seem',
  'seem_realli',
  'realli_shock',
  'shock_continu',
  'continu_explain',
  'explain_much',
  'much_hate',
  'hate_chang',
  'chang_diaper',
  'diaper_husband',
  'husband_help',
  'help_told',
  'told_like',
  'like_chang',
  'chang_either',
  'either_think',
  'think_inappropri',
  'inappropri_keep',
  'keep_push',
  'push_alreadi',
  'alreadi_told',
  'told_said',
  'said_devast',
  'devast_learn',
  'learn_daughter',
  'daughter_favorit',
  'favorit_teacher',
  'teacher_littl',
  'littl_empathi',
  'empathi_walk',
  'walk_away',
  'away_minut',
  'minut_later',
  'later_saw',
  'saw_put',
  'put_kid',
  'kid_car',
  'car_leav',
  'leav_assum',
  'assum_went',
  'went_wherev',
  'wherev_husband',
  'husband_text',
  'text_boss',
  'boss_tell',
  'tell_happen',
  'happen_go',
  'go_vacat',
  'vacat_assum',
  'assum_mother',
  'mother_would',
  'would_say',
  'say_someth',
  'someth_boss',
  'boss_told',
  'told_could',
  'could_tell',
  'tell_detail',
  'detail_get',
  'get_back',
  'back_shed',
  'shed_let',
  'let_know',
  'know_mom',
  'mom_said',
  'said_anyth',
  'anyth_seem',
  'seem_like',
  'like_right',
  'right_say',
  'say_think',
  'think_im',
  'im_ah',
  'ah_situat',
  'situat_employe',
  'employe_even',
  'even_still',
  'still_think',
  'think_someth',
  'someth_ask',
  'ask_someon',
  'someon_outsid',
  'outsid_work',
  'work_hour',
  'hour_know',
  'know_mom',
  'mom_well',
  'well_rare',
  'rare_talk',
  'talk_pickup',
  'pickup_drop',
  'drop_sit',
  'sit_tabl',
  'tabl_friend',
  'friend_presum',
  'presum_know',
  'know_situat',
  'situat_wouldv',
  'wouldv_better',
  'better_peopl',
  'peopl_ask',
  'ask_help',
  'help_think',
  'think_would',
  'would_rather',
  'rather_let',
  'let_kid',
  'kid_sit',
  'sit_dirti',
  'dirti_diaper',
  'diaper_car',
  'car_ride',
  'ride_home',
  'home_instead',
  'instead_chang',
  'chang_go',
  'go_place',
  'place_without',
  'without_husband',
  'husband_part',
  'part_make',
  'make_feel',
  'feel_littl',
  'littl_bit',
  'bit_like',
  'like_asshol',
  'asshol_fact',
  'fact_kid',
  'kid_sit',
  'sit_poop',
  'poop_car',
  'car_ride',
  'ride_home',
  'home_assum',
  'assum_left',
  'left_would',
  'would_either',
  'either_ask',
  'ask_one',
  'one_friend',
  'friend_suck',
  'suck_asshol',
  'asshol_updat',
  'updat_+',
  '+_context',
  'context_pretti',
  'pretti_sure',
  'sure_ah',
  'ah_thank',
  'thank_valid',
  'valid_lot',
  'lot_peopl',
  'peopl_ask',
  'ask_plan',
  'plan_go',
  'go_parti',
  'parti_possibl',
  'possibl_couldv',
  'couldv_suggest',
  'suggest_call',
  'call_cp',
  'cp_report',
  'report_neglect',
  'neglect_want',
  'want_add',
  'add_stuff',
  'stuff_probabl',
  'probabl_said',
  'said_first',
  'first_time',
  'time_around',
  'around_ive',
  'ive_never',
  'never_post',
  'post_first',
  'first_school',
  'school_work',
  'work_incred',
  'incred_expens',
  'expens_parent',
  'parent_incred',
  'incred_wealthi',
  'wealthi_kind',
  'kind_entitl',
  'entitl_complet',
  'complet_surpris',
  'surpris_also',
  'also_know',
  'know_famili',
  'famili_nanni',
  'nanni_occasion',
  'occasion_drop',
  'drop_kid',
  'kid_pick',
  'pick_know',
  'know_live-in',
  'live-in_nanni',
  'nanni_boss',
  'boss_say',
  'say_enough',
  'enough_time',
  'time_handl',
  'handl_diaper',
  'diaper_chang',
  'chang_especi',
  'especi_sinc',
  'sinc_child',
  'child_older',
  'older_sleep',
  'sleep_night',
  'night_feel',
  'feel_bad',
  'bad_husband',
  'husband_seem',
  'seem_like',
  'like_pretti',
  'pretti_nice',
  'nice_guy',
  'guy_think',
  'think_chang',
  'chang_kid',
  'kid_much',
  'much_normal',
  'normal_parent',
  'parent_nanni',
  'nanni_secondli',
  'secondli_talk',
  'talk_friend',
  'friend_mom',
  'mom_host',
  'host_parti',
  'parti_mother',
  'mother_relat',
  'relat_peopl',
  'peopl_invit',
  'invit_kind',
  'kind_invit',
  'invit_everyon',
  'everyon_know',
  'know_type',
  'type_thing',
  'thing_appar',
  'appar_famili',
  'famili_usual',
  'usual_handl',
  'handl_husband',
  'husband_around',
  'around_assum',
  'assum_plan',
  'plan_ran',
  'ran_figur',
  'figur_need',
  'need_bother',
  'bother_famili',
  'famili_anymor',
  'anymor_im',
  'im_sure',
  'sure_get',
  'get_fed',
  'fed_chang',
  'chang_child',
  'child_old',
  'old_enough',
  'enough_start',
  'start_potti',
  'potti_train',
  'train_said',
  'said_embarrass',
  'embarrass_go',
  'go_ask',
  'ask_someon',
  'someon_els',
  'els_final',
  'final_everyon',
  'everyon_say',
  'say_call',
  'call_cp',
  'cp_talk',
  'talk_boss',
  'boss_complet',
  'complet_side',
  'side_btw',
  'btw_think',
  'think_necessari',
  'necessari_time',
  'time_truli',
  'truli_believ',
  'believ_kid',
  'kid_alon',
  'alon_often',
  'often_enough',
  'enough_problem',
  'problem_kid',
  'kid_never',
  'never_kind',
  'kind_seriou',
  'seriou_diaper',
  'diaper_rash',
  'rash_would',
  'would_indic',
  'indic_left',
  'left_dirti',
  'dirti_diaper',
  'diaper_long',
  'long_period',
  'period_time',
  'time_though',
  'though_mom',
  'mom_drop',
  'drop_dirti',
  'dirti_diaper',
  'diaper_occasion',
  'occasion_seem',
  'seem_like',
  'like_happen',
  'happen_car',
  'car_whove',
  'whove_never',
  'never_chang',
  'chang_diaper',
  'diaper_kind',
  'kind_tell',
  'tell_fresh',
  'fresh_vs',
  'vs_sit',
  'sit_awhil',
  'awhil_go',
  'go_keep',
  'keep_close',
  'close_eye',
  'eye_though',
  'though_keep',
  'keep_record',
  'record_stuff',
  'stuff_like',
  'like_though',
  'though_agre',
  'agre_mom',
  'mom_seriou',
  'seriou_issu',
  'issu_caus',
  'caus_problem',
  'problem_diaper',
  'diaper_rash',
  'rash_seem',
  'seem_rare',
  'rare_occas',
  'occas_think',
  'think_warrant',
  'warrant_cp',
  'cp_call',
  'everyon_work_full',
  'work_full_time',
  'full_time_daycar',
  'time_daycar_younger',
  'daycar_younger_preschool',
  'younger_preschool_still',
  'preschool_still_diaper',
  'still_diaper_day',
  'diaper_day_huge',
  'day_huge_barbecu',
  'huge_barbecu_friend',
  'barbecu_friend_high',
  'friend_high_school',
  'high_school_friend',
  'school_friend_parent',
  'friend_parent_also',
  'parent_also_ran',
  'also_ran_one',
  'ran_one_preschool',
  'one_preschool_mom',
  'preschool_mom_chat',
  'mom_chat_littl',
  'chat_littl_minut',
  'littl_minut_mom',
  'minut_mom_said',
  'mom_said_kid',
  'said_kid_diaper',
  'kid_diaper_dirti',
  'diaper_dirti_ask',
  'dirti_ask_could',
  'ask_could_chang',
  'could_chang_thought',
  'chang_thought_joke',
  'thought_joke_laugh',
  'joke_laugh_made',
  'laugh_made_joke',
  'made_joke_back',
  'joke_back_chang',
  'back_chang_diaper',
  'chang_diaper_im',
  'diaper_im_clock',
  'im_clock_friend',
  'clock_friend_sit',
  'friend_sit_kind',
  'sit_kind_laugh',
  'kind_laugh_awkwardli',
  'laugh_awkwardli_look',
  'awkwardli_look_dead',
  'look_dead_seriou',
  'dead_seriou_said',
  'seriou_said_realli',
  'said_realli_chang',
  'realli_chang_diaper',
  'chang_diaper_felt',
  'diaper_felt_realli',
  'felt_realli_awkward',
  'realli_awkward_said',
  'awkward_said_sorri',
  'said_sorri_went',
  'sorri_went_walk',
  'went_walk_away',
  'walk_away_start',
  'away_start_explain',
  'start_explain_husband',
  'explain_husband_one',
  'husband_one_chang',
  'one_chang_diaper',
  'chang_diaper_germaphob',
  'diaper_germaphob_emetaphobia',
  'germaphob_emetaphobia_fear',
  'emetaphobia_fear_throw',
  'fear_throw_done',
  'throw_done_time',
  'done_time_absolut',
  'time_absolut_alway',
  'absolut_alway_threw',
  'alway_threw_appar',
  'threw_appar_crippl',
  'appar_crippl_fear',
  'crippl_fear_felt',
  'fear_felt_regardless',
  'felt_regardless_circumst',
  'regardless_circumst_inappropri',
  'circumst_inappropri_ask',
  'inappropri_ask_said',
  'ask_said_seem',
  'said_seem_realli',
  'seem_realli_shock',
  'realli_shock_continu',
  'shock_continu_explain',
  'continu_explain_much',
  'explain_much_hate',
  'much_hate_chang',
  'hate_chang_diaper',
  'chang_diaper_husband',
  'diaper_husband_help',
  'husband_help_told',
  'help_told_like',
  'told_like_chang',
  'like_chang_either',
  'chang_either_think',
  'either_think_inappropri',
  'think_inappropri_keep',
  'inappropri_keep_push',
  'keep_push_alreadi',
  'push_alreadi_told',
  'alreadi_told_said',
  'told_said_devast',
  'said_devast_learn',
  'devast_learn_daughter',
  'learn_daughter_favorit',
  'daughter_favorit_teacher',
  'favorit_teacher_littl',
  'teacher_littl_empathi',
  'littl_empathi_walk',
  'empathi_walk_away',
  'walk_away_minut',
  'away_minut_later',
  'minut_later_saw',
  'later_saw_put',
  'saw_put_kid',
  'put_kid_car',
  'kid_car_leav',
  'car_leav_assum',
  'leav_assum_went',
  ...],
 ['last',
  'thursday',
  'went',
  'boyfriend',
  'jay',
  'hous',
  'thanksgiv',
  'brought',
  'son',
  'jay',
  'togeth',
  'year',
  'half',
  'amaz',
  'man',
  'world',
  'amaz',
  'son',
  'bio',
  'father',
  'life',
  'genuin',
  'see',
  'one',
  'jay',
  'parent',
  'came',
  'well',
  'get',
  'along',
  'ever',
  'seen',
  'time',
  'thanksgiv',
  'time',
  'realli',
  'bond',
  'guess',
  'never',
  'met',
  'son',
  'person',
  'either',
  'knew',
  'time',
  'arriv',
  'jay',
  'parent',
  'alreadi',
  'help',
  'finish',
  'dinner',
  'greet',
  'jay',
  'dad',
  'ask',
  'littl',
  'guy',
  'introduc',
  'son',
  'introduc',
  'jay',
  'parent',
  'grandma',
  'grandpa',
  'preciou',
  'boy',
  'notic',
  'time',
  'three',
  'becam',
  'quiet',
  'almost',
  'immedi',
  'end',
  'wait',
  'live',
  'room',
  'alon',
  'almost',
  'half',
  'hour',
  'dinner',
  'thing',
  'incred',
  'awkward',
  'rest',
  'night',
  'son',
  'end',
  'call',
  'parent',
  'grandpa',
  'grandma',
  'quickli',
  'notic',
  'would',
  'disingenu',
  'awkward',
  'dinner',
  'say',
  'anyth',
  'stick',
  'around',
  'long',
  'either',
  'left',
  'cold',
  'ask',
  'jay',
  'deal',
  'lost',
  'claim',
  'put',
  'incred',
  'awkward',
  'posit',
  'parent',
  'appar',
  'think',
  'seriou',
  'yet',
  'began',
  'question',
  'use',
  'replac',
  'daddi',
  'said',
  'way',
  'line',
  'introduc',
  'way',
  'without',
  'even',
  'talk',
  'beforehand',
  'think',
  'ridicul',
  'one',
  'day',
  'go',
  'son',
  'stepdad',
  'go',
  'formal',
  'nonsens',
  'claim',
  'point',
  'end',
  'fight',
  'till',
  'storm',
  'talk',
  'sinc',
  'simpli',
  'wait',
  'apolog',
  'talk',
  'sister',
  'last',
  'night',
  'said',
  'mortifi',
  'hear',
  'say',
  'also',
  'geat',
  'read',
  'seriou',
  'never',
  'felt',
  'like',
  'jay',
  'intend',
  'take',
  'dad',
  'role',
  'got',
  'question',
  'wrong',
  'edit',
  'ok',
  'mess',
  'genuin',
  'thought',
  'jay',
  'would',
  'ok',
  'jay',
  'alway',
  'treat',
  'son',
  'well',
  'guess',
  'misread',
  'treat',
  'kindli',
  'ok',
  'father',
  'figur',
  'im',
  'pretti',
  'sure',
  'ruin',
  'importantli',
  'hurt',
  'son',
  'edit',
  'call',
  'jay',
  'apolog',
  'go',
  'take',
  'break',
  'im',
  'go',
  'look',
  'make',
  'sure',
  'scar',
  'kid',
  'last_thursday',
  'thursday_went',
  'went_boyfriend',
  'boyfriend_jay',
  'jay_hous',
  'hous_thanksgiv',
  'thanksgiv_brought',
  'brought_son',
  'son_jay',
  'jay_togeth',
  'togeth_year',
  'year_half',
  'half_amaz',
  'amaz_man',
  'man_world',
  'world_amaz',
  'amaz_son',
  'son_bio',
  'bio_father',
  'father_life',
  'life_genuin',
  'genuin_see',
  'see_one',
  'one_jay',
  'jay_parent',
  'parent_came',
  'came_well',
  'well_get',
  'get_along',
  'along_ever',
  'ever_seen',
  'seen_time',
  'time_thanksgiv',
  'thanksgiv_time',
  'time_realli',
  'realli_bond',
  'bond_guess',
  'guess_never',
  'never_met',
  'met_son',
  'son_person',
  'person_either',
  'either_knew',
  'knew_time',
  'time_arriv',
  'arriv_jay',
  'jay_parent',
  'parent_alreadi',
  'alreadi_help',
  'help_finish',
  'finish_dinner',
  'dinner_greet',
  'greet_jay',
  'jay_dad',
  'dad_ask',
  'ask_littl',
  'littl_guy',
  'guy_introduc',
  'introduc_son',
  'son_introduc',
  'introduc_jay',
  'jay_parent',
  'parent_grandma',
  'grandma_grandpa',
  'grandpa_preciou',
  'preciou_boy',
  'boy_notic',
  'notic_time',
  'time_three',
  'three_becam',
  'becam_quiet',
  'quiet_almost',
  'almost_immedi',
  'immedi_end',
  'end_wait',
  'wait_live',
  'live_room',
  'room_alon',
  'alon_almost',
  'almost_half',
  'half_hour',
  'hour_dinner',
  'dinner_thing',
  'thing_incred',
  'incred_awkward',
  'awkward_rest',
  'rest_night',
  'night_son',
  'son_end',
  'end_call',
  'call_parent',
  'parent_grandpa',
  'grandpa_grandma',
  'grandma_quickli',
  'quickli_notic',
  'notic_would',
  'would_disingenu',
  'disingenu_awkward',
  'awkward_dinner',
  'dinner_say',
  'say_anyth',
  'anyth_stick',
  'stick_around',
  'around_long',
  'long_either',
  'either_left',
  'left_cold',
  'cold_ask',
  'ask_jay',
  'jay_deal',
  'deal_lost',
  'lost_claim',
  'claim_put',
  'put_incred',
  'incred_awkward',
  'awkward_posit',
  'posit_parent',
  'parent_appar',
  'appar_think',
  'think_seriou',
  'seriou_yet',
  'yet_began',
  'began_question',
  'question_use',
  'use_replac',
  'replac_daddi',
  'daddi_said',
  'said_way',
  'way_line',
  'line_introduc',
  'introduc_way',
  'way_without',
  'without_even',
  'even_talk',
  'talk_beforehand',
  'beforehand_think',
  'think_ridicul',
  'ridicul_one',
  'one_day',
  'day_go',
  'go_son',
  'son_stepdad',
  'stepdad_go',
  'go_formal',
  'formal_nonsens',
  'nonsens_claim',
  'claim_point',
  'point_end',
  'end_fight',
  'fight_till',
  'till_storm',
  'storm_talk',
  'talk_sinc',
  'sinc_simpli',
  'simpli_wait',
  'wait_apolog',
  'apolog_talk',
  'talk_sister',
  'sister_last',
  'last_night',
  'night_said',
  'said_mortifi',
  'mortifi_hear',
  'hear_say',
  'say_also',
  'also_geat',
  'geat_read',
  'read_seriou',
  'seriou_never',
  'never_felt',
  'felt_like',
  'like_jay',
  'jay_intend',
  'intend_take',
  'take_dad',
  'dad_role',
  'role_got',
  'got_question',
  'question_wrong',
  'wrong_edit',
  'edit_ok',
  'ok_mess',
  'mess_genuin',
  'genuin_thought',
  'thought_jay',
  'jay_would',
  'would_ok',
  'ok_jay',
  'jay_alway',
  'alway_treat',
  'treat_son',
  'son_well',
  'well_guess',
  'guess_misread',
  'misread_treat',
  'treat_kindli',
  'kindli_ok',
  'ok_father',
  'father_figur',
  'figur_im',
  'im_pretti',
  'pretti_sure',
  'sure_ruin',
  'ruin_importantli',
  'importantli_hurt',
  'hurt_son',
  'son_edit',
  'edit_call',
  'call_jay',
  'jay_apolog',
  'apolog_go',
  'go_take',
  'take_break',
  'break_im',
  'im_go',
  'go_look',
  'look_make',
  'make_sure',
  'sure_scar',
  'scar_kid',
  'last_thursday_went',
  'thursday_went_boyfriend',
  'went_boyfriend_jay',
  'boyfriend_jay_hous',
  'jay_hous_thanksgiv',
  'hous_thanksgiv_brought',
  'thanksgiv_brought_son',
  'brought_son_jay',
  'son_jay_togeth',
  'jay_togeth_year',
  'togeth_year_half',
  'year_half_amaz',
  'half_amaz_man',
  'amaz_man_world',
  'man_world_amaz',
  'world_amaz_son',
  'amaz_son_bio',
  'son_bio_father',
  'bio_father_life',
  'father_life_genuin',
  'life_genuin_see',
  'genuin_see_one',
  'see_one_jay',
  'one_jay_parent',
  'jay_parent_came',
  'parent_came_well',
  'came_well_get',
  'well_get_along',
  'get_along_ever',
  'along_ever_seen',
  'ever_seen_time',
  'seen_time_thanksgiv',
  'time_thanksgiv_time',
  'thanksgiv_time_realli',
  'time_realli_bond',
  'realli_bond_guess',
  'bond_guess_never',
  'guess_never_met',
  'never_met_son',
  'met_son_person',
  'son_person_either',
  'person_either_knew',
  'either_knew_time',
  'knew_time_arriv',
  'time_arriv_jay',
  'arriv_jay_parent',
  'jay_parent_alreadi',
  'parent_alreadi_help',
  'alreadi_help_finish',
  'help_finish_dinner',
  'finish_dinner_greet',
  'dinner_greet_jay',
  'greet_jay_dad',
  'jay_dad_ask',
  'dad_ask_littl',
  'ask_littl_guy',
  'littl_guy_introduc',
  'guy_introduc_son',
  'introduc_son_introduc',
  'son_introduc_jay',
  'introduc_jay_parent',
  'jay_parent_grandma',
  'parent_grandma_grandpa',
  'grandma_grandpa_preciou',
  'grandpa_preciou_boy',
  'preciou_boy_notic',
  'boy_notic_time',
  'notic_time_three',
  'time_three_becam',
  'three_becam_quiet',
  'becam_quiet_almost',
  'quiet_almost_immedi',
  'almost_immedi_end',
  'immedi_end_wait',
  'end_wait_live',
  'wait_live_room',
  'live_room_alon',
  'room_alon_almost',
  'alon_almost_half',
  'almost_half_hour',
  'half_hour_dinner',
  'hour_dinner_thing',
  'dinner_thing_incred',
  'thing_incred_awkward',
  'incred_awkward_rest',
  'awkward_rest_night',
  'rest_night_son',
  'night_son_end',
  'son_end_call',
  'end_call_parent',
  'call_parent_grandpa',
  'parent_grandpa_grandma',
  'grandpa_grandma_quickli',
  'grandma_quickli_notic',
  'quickli_notic_would',
  'notic_would_disingenu',
  'would_disingenu_awkward',
  'disingenu_awkward_dinner',
  'awkward_dinner_say',
  'dinner_say_anyth',
  'say_anyth_stick',
  'anyth_stick_around',
  'stick_around_long',
  'around_long_either',
  'long_either_left',
  'either_left_cold',
  'left_cold_ask',
  'cold_ask_jay',
  'ask_jay_deal',
  'jay_deal_lost',
  'deal_lost_claim',
  'lost_claim_put',
  'claim_put_incred',
  'put_incred_awkward',
  'incred_awkward_posit',
  'awkward_posit_parent',
  'posit_parent_appar',
  'parent_appar_think',
  'appar_think_seriou',
  'think_seriou_yet',
  'seriou_yet_began',
  'yet_began_question',
  'began_question_use',
  'question_use_replac',
  'use_replac_daddi',
  'replac_daddi_said',
  'daddi_said_way',
  'said_way_line',
  'way_line_introduc',
  'line_introduc_way',
  'introduc_way_without',
  'way_without_even',
  'without_even_talk',
  'even_talk_beforehand',
  'talk_beforehand_think',
  'beforehand_think_ridicul',
  'think_ridicul_one',
  'ridicul_one_day',
  'one_day_go',
  'day_go_son',
  'go_son_stepdad',
  'son_stepdad_go',
  'stepdad_go_formal',
  'go_formal_nonsens',
  'formal_nonsens_claim',
  'nonsens_claim_point',
  'claim_point_end',
  'point_end_fight',
  'end_fight_till',
  'fight_till_storm',
  'till_storm_talk',
  'storm_talk_sinc',
  'talk_sinc_simpli',
  'sinc_simpli_wait',
  'simpli_wait_apolog',
  'wait_apolog_talk',
  'apolog_talk_sister',
  'talk_sister_last',
  'sister_last_night',
  'last_night_said',
  'night_said_mortifi',
  'said_mortifi_hear',
  'mortifi_hear_say',
  'hear_say_also',
  'say_also_geat',
  'also_geat_read',
  'geat_read_seriou',
  'read_seriou_never',
  'seriou_never_felt',
  'never_felt_like',
  'felt_like_jay',
  'like_jay_intend',
  'jay_intend_take',
  'intend_take_dad',
  'take_dad_role',
  'dad_role_got',
  'role_got_question',
  'got_question_wrong',
  'question_wrong_edit',
  'wrong_edit_ok',
  'edit_ok_mess',
  'ok_mess_genuin',
  'mess_genuin_thought',
  'genuin_thought_jay',
  'thought_jay_would',
  'jay_would_ok',
  'would_ok_jay',
  'ok_jay_alway',
  'jay_alway_treat',
  'alway_treat_son',
  'treat_son_well',
  'son_well_guess',
  'well_guess_misread',
  'guess_misread_treat',
  'misread_treat_kindli',
  'treat_kindli_ok',
  'kindli_ok_father',
  'ok_father_figur',
  'father_figur_im',
  'figur_im_pretti',
  'im_pretti_sure',
  'pretti_sure_ruin',
  'sure_ruin_importantli',
  'ruin_importantli_hurt',
  'importantli_hurt_son',
  'hurt_son_edit',
  'son_edit_call',
  'edit_call_jay',
  'call_jay_apolog',
  'jay_apolog_go',
  'apolog_go_take',
  'go_take_break',
  'take_break_im',
  'break_im_go',
  'im_go_look',
  'go_look_make',
  'look_make_sure',
  'make_sure_scar',
  'sure_scar_kid'],
 ['wife',
  'two',
  'daughter',
  '&',
  'year',
  'old',
  'prime',
  'disney',
  'age',
  'theyr',
  'super',
  'princess',
  'weve',
  'talk',
  'take',
  'disney',
  'next',
  'year',
  'know',
  'theyd',
  'love',
  'wife',
  'never',
  'ive',
  'once-',
  'year',
  'old',
  'definit',
  'memor',
  'trip',
  'famili',
  'save',
  'weve',
  'alway',
  'known',
  'disney',
  'would',
  'big',
  'trip',
  'girl',
  'juli',
  'fil',
  'got',
  'diagnos',
  'prostat',
  'cancer',
  'round',
  'chemo',
  'rather',
  'intens',
  'stay',
  'hospit',
  'gotten',
  'wors',
  'spread',
  'across',
  'organ',
  'bodi',
  'rather',
  'tri',
  'suffer',
  'fight',
  'opt',
  'chemo',
  'tri',
  'live',
  'time',
  'left',
  'result',
  'mil',
  'decid',
  'make',
  'memori',
  'famili',
  'one',
  'memori',
  'take',
  'daughter',
  'disney',
  '&',
  'surpris',
  'trip',
  'yesterday',
  'christma',
  'first',
  'thought',
  'wife',
  'would',
  'well-',
  'weve',
  'alway',
  'said',
  'weve',
  'want',
  'get',
  'experi',
  'take',
  'see',
  'face',
  'howev',
  'found',
  'mil',
  'clear',
  'wife',
  'last',
  'month',
  'wife',
  'tell',
  'thought',
  'would',
  'surpris',
  'excit',
  'daughter',
  'sat',
  'rest',
  'night',
  'got',
  'home',
  'seriou',
  'discuss',
  'told',
  'wife',
  'want',
  'daughter',
  'first',
  'trip',
  'disney',
  'without',
  'us',
  'suggest',
  'go',
  'along',
  'trip',
  'februari',
  'book',
  'flights+hotel+ticket',
  'wife',
  'time',
  'theyr',
  'go',
  'still',
  'go',
  'almost',
  '$',
  'told',
  'wife',
  'talk',
  'parent',
  '&',
  'declin',
  'trip',
  'wife',
  'say',
  'im',
  'selfish',
  'heartless',
  'rob',
  'daughter',
  'experi',
  '&',
  'rob',
  'core',
  'memori',
  'fil',
  'pass',
  'line',
  'wife_two',
  'two_daughter',
  'daughter_&',
  '&_year',
  'year_old',
  'old_prime',
  'prime_disney',
  'disney_age',
  'age_theyr',
  'theyr_super',
  'super_princess',
  'princess_weve',
  'weve_talk',
  'talk_take',
  'take_disney',
  'disney_next',
  'next_year',
  'year_know',
  'know_theyd',
  'theyd_love',
  'love_wife',
  'wife_never',
  'never_ive',
  'ive_once-',
  'once-_year',
  'year_old',
  'old_definit',
  'definit_memor',
  'memor_trip',
  'trip_famili',
  'famili_save',
  'save_weve',
  'weve_alway',
  'alway_known',
  'known_disney',
  'disney_would',
  'would_big',
  'big_trip',
  'trip_girl',
  'girl_juli',
  'juli_fil',
  'fil_got',
  'got_diagnos',
  'diagnos_prostat',
  'prostat_cancer',
  'cancer_round',
  'round_chemo',
  'chemo_rather',
  'rather_intens',
  'intens_stay',
  'stay_hospit',
  'hospit_gotten',
  'gotten_wors',
  'wors_spread',
  'spread_across',
  'across_organ',
  'organ_bodi',
  'bodi_rather',
  'rather_tri',
  'tri_suffer',
  'suffer_fight',
  'fight_opt',
  'opt_chemo',
  'chemo_tri',
  'tri_live',
  'live_time',
  'time_left',
  'left_result',
  'result_mil',
  'mil_decid',
  'decid_make',
  'make_memori',
  'memori_famili',
  'famili_one',
  'one_memori',
  'memori_take',
  'take_daughter',
  'daughter_disney',
  'disney_&',
  '&_surpris',
  'surpris_trip',
  'trip_yesterday',
  'yesterday_christma',
  'christma_first',
  'first_thought',
  'thought_wife',
  'wife_would',
  'would_well-',
  'well-_weve',
  'weve_alway',
  'alway_said',
  'said_weve',
  'weve_want',
  'want_get',
  'get_experi',
  'experi_take',
  'take_see',
  'see_face',
  'face_howev',
  'howev_found',
  'found_mil',
  'mil_clear',
  'clear_wife',
  'wife_last',
  'last_month',
  'month_wife',
  'wife_tell',
  'tell_thought',
  'thought_would',
  'would_surpris',
  'surpris_excit',
  'excit_daughter',
  'daughter_sat',
  'sat_rest',
  'rest_night',
  'night_got',
  'got_home',
  'home_seriou',
  'seriou_discuss',
  'discuss_told',
  'told_wife',
  'wife_want',
  'want_daughter',
  'daughter_first',
  'first_trip',
  'trip_disney',
  'disney_without',
  'without_us',
  'us_suggest',
  'suggest_go',
  'go_along',
  'along_trip',
  'trip_februari',
  'februari_book',
  'book_flights+hotel+ticket',
  'flights+hotel+ticket_wife',
  'wife_time',
  'time_theyr',
  'theyr_go',
  'go_still',
  'still_go',
  'go_almost',
  'almost_$',
  '$_told',
  'told_wife',
  'wife_talk',
  'talk_parent',
  'parent_&',
  '&_declin',
  'declin_trip',
  'trip_wife',
  'wife_say',
  'say_im',
  'im_selfish',
  'selfish_heartless',
  'heartless_rob',
  'rob_daughter',
  'daughter_experi',
  'experi_&',
  '&_rob',
  'rob_core',
  'core_memori',
  'memori_fil',
  'fil_pass',
  'pass_line',
  'wife_two_daughter',
  'two_daughter_&',
  'daughter_&_year',
  '&_year_old',
  'year_old_prime',
  'old_prime_disney',
  'prime_disney_age',
  'disney_age_theyr',
  'age_theyr_super',
  'theyr_super_princess',
  'super_princess_weve',
  'princess_weve_talk',
  'weve_talk_take',
  'talk_take_disney',
  'take_disney_next',
  'disney_next_year',
  'next_year_know',
  'year_know_theyd',
  'know_theyd_love',
  'theyd_love_wife',
  'love_wife_never',
  'wife_never_ive',
  'never_ive_once-',
  'ive_once-_year',
  'once-_year_old',
  'year_old_definit',
  'old_definit_memor',
  'definit_memor_trip',
  'memor_trip_famili',
  'trip_famili_save',
  'famili_save_weve',
  'save_weve_alway',
  'weve_alway_known',
  'alway_known_disney',
  'known_disney_would',
  'disney_would_big',
  'would_big_trip',
  'big_trip_girl',
  'trip_girl_juli',
  'girl_juli_fil',
  'juli_fil_got',
  'fil_got_diagnos',
  'got_diagnos_prostat',
  'diagnos_prostat_cancer',
  'prostat_cancer_round',
  'cancer_round_chemo',
  'round_chemo_rather',
  'chemo_rather_intens',
  'rather_intens_stay',
  'intens_stay_hospit',
  'stay_hospit_gotten',
  'hospit_gotten_wors',
  'gotten_wors_spread',
  'wors_spread_across',
  'spread_across_organ',
  'across_organ_bodi',
  'organ_bodi_rather',
  'bodi_rather_tri',
  'rather_tri_suffer',
  'tri_suffer_fight',
  'suffer_fight_opt',
  'fight_opt_chemo',
  'opt_chemo_tri',
  'chemo_tri_live',
  'tri_live_time',
  'live_time_left',
  'time_left_result',
  'left_result_mil',
  'result_mil_decid',
  'mil_decid_make',
  'decid_make_memori',
  'make_memori_famili',
  'memori_famili_one',
  'famili_one_memori',
  'one_memori_take',
  'memori_take_daughter',
  'take_daughter_disney',
  'daughter_disney_&',
  'disney_&_surpris',
  '&_surpris_trip',
  'surpris_trip_yesterday',
  'trip_yesterday_christma',
  'yesterday_christma_first',
  'christma_first_thought',
  'first_thought_wife',
  'thought_wife_would',
  'wife_would_well-',
  'would_well-_weve',
  'well-_weve_alway',
  'weve_alway_said',
  'alway_said_weve',
  'said_weve_want',
  'weve_want_get',
  'want_get_experi',
  'get_experi_take',
  'experi_take_see',
  'take_see_face',
  'see_face_howev',
  'face_howev_found',
  'howev_found_mil',
  'found_mil_clear',
  'mil_clear_wife',
  'clear_wife_last',
  'wife_last_month',
  'last_month_wife',
  'month_wife_tell',
  'wife_tell_thought',
  'tell_thought_would',
  'thought_would_surpris',
  'would_surpris_excit',
  'surpris_excit_daughter',
  'excit_daughter_sat',
  'daughter_sat_rest',
  'sat_rest_night',
  'rest_night_got',
  'night_got_home',
  'got_home_seriou',
  'home_seriou_discuss',
  'seriou_discuss_told',
  'discuss_told_wife',
  'told_wife_want',
  'wife_want_daughter',
  'want_daughter_first',
  'daughter_first_trip',
  'first_trip_disney',
  'trip_disney_without',
  'disney_without_us',
  'without_us_suggest',
  'us_suggest_go',
  'suggest_go_along',
  'go_along_trip',
  'along_trip_februari',
  'trip_februari_book',
  'februari_book_flights+hotel+ticket',
  'book_flights+hotel+ticket_wife',
  'flights+hotel+ticket_wife_time',
  'wife_time_theyr',
  'time_theyr_go',
  'theyr_go_still',
  'go_still_go',
  'still_go_almost',
  'go_almost_$',
  'almost_$_told',
  '$_told_wife',
  'told_wife_talk',
  'wife_talk_parent',
  'talk_parent_&',
  'parent_&_declin',
  '&_declin_trip',
  'declin_trip_wife',
  'trip_wife_say',
  'wife_say_im',
  'say_im_selfish',
  'im_selfish_heartless',
  'selfish_heartless_rob',
  'heartless_rob_daughter',
  'rob_daughter_experi',
  'daughter_experi_&',
  'experi_&_rob',
  '&_rob_core',
  'rob_core_memori',
  'core_memori_fil',
  'memori_fil_pass',
  'fil_pass_line'],
 ['lost',
  'wife',
  'year',
  'ago',
  'son',
  'got',
  'custodi',
  'pass',
  'bio',
  'father',
  'sign',
  'parent',
  'right',
  'birth',
  'never',
  'even',
  'met',
  'kid',
  'daughter',
  'togeth',
  'yro',
  'son',
  'consid',
  'son',
  'way',
  'syndrom',
  'die',
  'mother',
  'ask',
  'come',
  'live',
  'two',
  'week',
  'ago',
  'spend',
  'time',
  'us',
  'die',
  'month',
  'left',
  'live',
  'told',
  'come',
  'spend',
  'week',
  'first',
  'well',
  'see',
  'work',
  'everyon',
  'kid',
  'came',
  'thing',
  'go',
  'okay',
  'day',
  'ago',
  'special',
  'order',
  'new',
  'set',
  'toy',
  'yro',
  'realli',
  'expens',
  'one',
  'let',
  'fli',
  'even',
  'though',
  'normal',
  'let',
  'kid',
  'choos',
  'hundr',
  'dollar',
  'worth',
  'toy',
  'get',
  'tri',
  'someth',
  'nice',
  'grandkid',
  'today',
  'set',
  'arriv',
  'dinner',
  'dinner',
  'ask',
  'son',
  'toy',
  'chose',
  'said',
  'choos',
  'toy',
  'ask',
  'mom',
  'chose',
  'son',
  'sometim',
  'mix',
  'thing',
  'thought',
  'hee',
  'forgot',
  'said',
  'bought',
  'toy',
  'grandbabi',
  'said',
  'two',
  'grandkid',
  'two',
  'children',
  'said',
  'son',
  'told',
  'kid',
  'go',
  'play',
  'live',
  'room',
  'told',
  'mother',
  'kind',
  'talk',
  'unaccept',
  'hous',
  'said',
  'true',
  'oblig',
  'go',
  'foster',
  'care',
  'stick',
  'facil',
  'life',
  'ruin',
  'flip',
  'call',
  'sort',
  'name',
  'told',
  'ill',
  'call',
  'hospic',
  'first',
  'thing',
  'morn',
  'take',
  'day',
  'cri',
  'night',
  'beg',
  'make',
  'go',
  'die',
  'alon',
  'hospic',
  'said',
  'cross',
  'line',
  'im',
  'done',
  'aunt',
  'call',
  'ah',
  'friend',
  'said',
  'let',
  'go',
  'time',
  'limit',
  'sister',
  'live',
  'abroad',
  'said',
  'plain',
  'cruel',
  'cousin',
  'said',
  'said',
  'aw',
  'right',
  'thing',
  'feel',
  'littl',
  'bit',
  'guilti',
  'anyway',
  'aita',
  'eta',
  'still',
  'visit',
  'mother',
  'hospic',
  'want',
  'say',
  'mani',
  'peopl',
  'mention',
  'lost_wife',
  'wife_year',
  'year_ago',
  'ago_son',
  'son_got',
  'got_custodi',
  'custodi_pass',
  'pass_bio',
  'bio_father',
  'father_sign',
  'sign_parent',
  'parent_right',
  'right_birth',
  'birth_never',
  'never_even',
  'even_met',
  'met_kid',
  'kid_daughter',
  'daughter_togeth',
  'togeth_yro',
  'yro_son',
  'son_consid',
  'consid_son',
  'son_way',
  'way_syndrom',
  'syndrom_die',
  'die_mother',
  'mother_ask',
  'ask_come',
  'come_live',
  'live_two',
  'two_week',
  'week_ago',
  'ago_spend',
  'spend_time',
  'time_us',
  'us_die',
  'die_month',
  'month_left',
  'left_live',
  'live_told',
  'told_come',
  'come_spend',
  'spend_week',
  'week_first',
  'first_well',
  'well_see',
  'see_work',
  'work_everyon',
  'everyon_kid',
  'kid_came',
  'came_thing',
  'thing_go',
  'go_okay',
  'okay_day',
  'day_ago',
  'ago_special',
  'special_order',
  'order_new',
  'new_set',
  'set_toy',
  'toy_yro',
  'yro_realli',
  'realli_expens',
  'expens_one',
  'one_let',
  'let_fli',
  'fli_even',
  'even_though',
  'though_normal',
  'normal_let',
  'let_kid',
  'kid_choos',
  'choos_hundr',
  'hundr_dollar',
  'dollar_worth',
  'worth_toy',
  'toy_get',
  'get_tri',
  'tri_someth',
  'someth_nice',
  'nice_grandkid',
  'grandkid_today',
  'today_set',
  'set_arriv',
  'arriv_dinner',
  'dinner_dinner',
  'dinner_ask',
  'ask_son',
  'son_toy',
  'toy_chose',
  'chose_said',
  'said_choos',
  'choos_toy',
  'toy_ask',
  'ask_mom',
  'mom_chose',
  'chose_son',
  'son_sometim',
  'sometim_mix',
  'mix_thing',
  'thing_thought',
  'thought_hee',
  'hee_forgot',
  'forgot_said',
  'said_bought',
  'bought_toy',
  'toy_grandbabi',
  'grandbabi_said',
  'said_two',
  'two_grandkid',
  'grandkid_two',
  'two_children',
  'children_said',
  'said_son',
  'son_told',
  'told_kid',
  'kid_go',
  'go_play',
  'play_live',
  'live_room',
  'room_told',
  'told_mother',
  'mother_kind',
  'kind_talk',
  'talk_unaccept',
  'unaccept_hous',
  'hous_said',
  'said_true',
  'true_oblig',
  'oblig_go',
  'go_foster',
  'foster_care',
  'care_stick',
  'stick_facil',
  'facil_life',
  'life_ruin',
  'ruin_flip',
  'flip_call',
  'call_sort',
  'sort_name',
  'name_told',
  'told_ill',
  'ill_call',
  'call_hospic',
  'hospic_first',
  'first_thing',
  'thing_morn',
  'morn_take',
  'take_day',
  'day_cri',
  'cri_night',
  'night_beg',
  'beg_make',
  'make_go',
  'go_die',
  'die_alon',
  'alon_hospic',
  'hospic_said',
  'said_cross',
  'cross_line',
  'line_im',
  'im_done',
  'done_aunt',
  'aunt_call',
  'call_ah',
  'ah_friend',
  'friend_said',
  'said_let',
  'let_go',
  'go_time',
  'time_limit',
  'limit_sister',
  'sister_live',
  'live_abroad',
  'abroad_said',
  'said_plain',
  'plain_cruel',
  'cruel_cousin',
  'cousin_said',
  'said_said',
  'said_aw',
  'aw_right',
  'right_thing',
  'thing_feel',
  'feel_littl',
  'littl_bit',
  'bit_guilti',
  'guilti_anyway',
  'anyway_aita',
  'aita_eta',
  'eta_still',
  'still_visit',
  'visit_mother',
  'mother_hospic',
  'hospic_want',
  'want_say',
  'say_mani',
  'mani_peopl',
  'peopl_mention',
  'lost_wife_year',
  'wife_year_ago',
  'year_ago_son',
  'ago_son_got',
  'son_got_custodi',
  'got_custodi_pass',
  'custodi_pass_bio',
  'pass_bio_father',
  'bio_father_sign',
  'father_sign_parent',
  'sign_parent_right',
  'parent_right_birth',
  'right_birth_never',
  'birth_never_even',
  'never_even_met',
  'even_met_kid',
  'met_kid_daughter',
  'kid_daughter_togeth',
  'daughter_togeth_yro',
  'togeth_yro_son',
  'yro_son_consid',
  'son_consid_son',
  'consid_son_way',
  'son_way_syndrom',
  'way_syndrom_die',
  'syndrom_die_mother',
  'die_mother_ask',
  'mother_ask_come',
  'ask_come_live',
  'come_live_two',
  'live_two_week',
  'two_week_ago',
  'week_ago_spend',
  'ago_spend_time',
  'spend_time_us',
  'time_us_die',
  'us_die_month',
  'die_month_left',
  'month_left_live',
  'left_live_told',
  'live_told_come',
  'told_come_spend',
  'come_spend_week',
  'spend_week_first',
  'week_first_well',
  'first_well_see',
  'well_see_work',
  'see_work_everyon',
  'work_everyon_kid',
  'everyon_kid_came',
  'kid_came_thing',
  'came_thing_go',
  'thing_go_okay',
  'go_okay_day',
  'okay_day_ago',
  'day_ago_special',
  'ago_special_order',
  'special_order_new',
  'order_new_set',
  'new_set_toy',
  'set_toy_yro',
  'toy_yro_realli',
  'yro_realli_expens',
  'realli_expens_one',
  'expens_one_let',
  'one_let_fli',
  'let_fli_even',
  'fli_even_though',
  'even_though_normal',
  'though_normal_let',
  'normal_let_kid',
  'let_kid_choos',
  'kid_choos_hundr',
  'choos_hundr_dollar',
  'hundr_dollar_worth',
  'dollar_worth_toy',
  'worth_toy_get',
  'toy_get_tri',
  'get_tri_someth',
  'tri_someth_nice',
  'someth_nice_grandkid',
  'nice_grandkid_today',
  'grandkid_today_set',
  'today_set_arriv',
  'set_arriv_dinner',
  'arriv_dinner_dinner',
  'dinner_dinner_ask',
  'dinner_ask_son',
  'ask_son_toy',
  'son_toy_chose',
  'toy_chose_said',
  'chose_said_choos',
  'said_choos_toy',
  'choos_toy_ask',
  'toy_ask_mom',
  'ask_mom_chose',
  'mom_chose_son',
  'chose_son_sometim',
  'son_sometim_mix',
  'sometim_mix_thing',
  'mix_thing_thought',
  'thing_thought_hee',
  'thought_hee_forgot',
  'hee_forgot_said',
  'forgot_said_bought',
  'said_bought_toy',
  'bought_toy_grandbabi',
  'toy_grandbabi_said',
  'grandbabi_said_two',
  'said_two_grandkid',
  'two_grandkid_two',
  'grandkid_two_children',
  'two_children_said',
  'children_said_son',
  'said_son_told',
  'son_told_kid',
  'told_kid_go',
  'kid_go_play',
  'go_play_live',
  'play_live_room',
  'live_room_told',
  'room_told_mother',
  'told_mother_kind',
  'mother_kind_talk',
  'kind_talk_unaccept',
  'talk_unaccept_hous',
  'unaccept_hous_said',
  'hous_said_true',
  'said_true_oblig',
  'true_oblig_go',
  'oblig_go_foster',
  'go_foster_care',
  'foster_care_stick',
  'care_stick_facil',
  'stick_facil_life',
  'facil_life_ruin',
  'life_ruin_flip',
  'ruin_flip_call',
  'flip_call_sort',
  'call_sort_name',
  'sort_name_told',
  'name_told_ill',
  'told_ill_call',
  'ill_call_hospic',
  'call_hospic_first',
  'hospic_first_thing',
  'first_thing_morn',
  'thing_morn_take',
  'morn_take_day',
  'take_day_cri',
  'day_cri_night',
  'cri_night_beg',
  'night_beg_make',
  'beg_make_go',
  'make_go_die',
  'go_die_alon',
  'die_alon_hospic',
  'alon_hospic_said',
  'hospic_said_cross',
  'said_cross_line',
  'cross_line_im',
  'line_im_done',
  'im_done_aunt',
  'done_aunt_call',
  'aunt_call_ah',
  'call_ah_friend',
  'ah_friend_said',
  'friend_said_let',
  'said_let_go',
  'let_go_time',
  'go_time_limit',
  'time_limit_sister',
  'limit_sister_live',
  'sister_live_abroad',
  'live_abroad_said',
  'abroad_said_plain',
  'said_plain_cruel',
  'plain_cruel_cousin',
  'cruel_cousin_said',
  'cousin_said_said',
  'said_said_aw',
  'said_aw_right',
  'aw_right_thing',
  'right_thing_feel',
  'thing_feel_littl',
  'feel_littl_bit',
  'littl_bit_guilti',
  'bit_guilti_anyway',
  'guilti_anyway_aita',
  'anyway_aita_eta',
  'aita_eta_still',
  'eta_still_visit',
  'still_visit_mother',
  'visit_mother_hospic',
  'mother_hospic_want',
  'hospic_want_say',
  'want_say_mani',
  'say_mani_peopl',
  'mani_peopl_mention'],
 ['im',
  'current',
  'plan',
  'wed',
  'get',
  'nitti',
  'gritti',
  'detail',
  'background',
  'parent',
  'got',
  'divorc',
  'divorc',
  'happen',
  'dad',
  'fell',
  'love',
  'current',
  'wifemi',
  'stepmom',
  'alic',
  'claim',
  'cheat',
  'wait',
  'separ',
  'anyth',
  'physic',
  'happen',
  'know',
  'need',
  'know',
  'whether',
  'true',
  'point',
  'dad',
  'alic',
  'got',
  'marri',
  'live',
  'togeth',
  'time',
  'two',
  'sibl',
  'within',
  'next',
  'year',
  'parent',
  'split',
  'custodi',
  'alic',
  '%',
  'mother',
  'figur',
  'close',
  'everi',
  'tough',
  'moment',
  'life',
  'also',
  'help',
  'pay',
  'colleg',
  'grad',
  'school',
  'im',
  'extrem',
  'appreci',
  'mom',
  'good',
  'mom',
  'weve',
  'never',
  'close',
  'dad',
  'alic',
  'person',
  'differ',
  'plan',
  'first',
  'danc',
  'right',
  'first',
  'danc',
  'fiance',
  'pick',
  'dad',
  'parent',
  'still',
  'marri',
  'drama',
  'close',
  'alic',
  'realli',
  'feel',
  'right',
  'exclud',
  'danc',
  'mom',
  'ask',
  'shed',
  'comfort',
  'one',
  'well',
  'overjoy',
  'cri',
  'emot',
  'im',
  'realli',
  'excit',
  'mom',
  'found',
  'flip',
  'said',
  'im',
  'replac',
  'like',
  'dad',
  'replac',
  'told',
  'replac',
  'support',
  'entir',
  'life',
  'consid',
  'true',
  'bonu',
  'mother',
  'want',
  'exclud',
  'want',
  'accept',
  'yesterday',
  'aunt',
  'mom',
  'sister',
  'call',
  'rip',
  'new',
  'one',
  'know',
  'littl',
  'controversi',
  'heart',
  'realli',
  'want',
  'aita',
  'go',
  'two',
  'mother',
  'son',
  'danc',
  'person',
  'ive',
  'wed',
  'step',
  'involv',
  'two',
  'mother',
  'son',
  'father',
  'daughter',
  'seem',
  'realli',
  'sweet',
  'like',
  'overkil',
  'would',
  'shorten',
  'version',
  'song',
  'long',
  'matter',
  'im_current',
  'current_plan',
  'plan_wed',
  'wed_get',
  'get_nitti',
  'nitti_gritti',
  'gritti_detail',
  'detail_background',
  'background_parent',
  'parent_got',
  'got_divorc',
  'divorc_divorc',
  'divorc_happen',
  'happen_dad',
  'dad_fell',
  'fell_love',
  'love_current',
  'current_wifemi',
  'wifemi_stepmom',
  'stepmom_alic',
  'alic_claim',
  'claim_cheat',
  'cheat_wait',
  'wait_separ',
  'separ_anyth',
  'anyth_physic',
  'physic_happen',
  'happen_know',
  'know_need',
  'need_know',
  'know_whether',
  'whether_true',
  'true_point',
  'point_dad',
  'dad_alic',
  'alic_got',
  'got_marri',
  'marri_live',
  'live_togeth',
  'togeth_time',
  'time_two',
  'two_sibl',
  'sibl_within',
  'within_next',
  'next_year',
  'year_parent',
  'parent_split',
  'split_custodi',
  'custodi_alic',
  'alic_%',
  '%_mother',
  'mother_figur',
  'figur_close',
  'close_everi',
  'everi_tough',
  'tough_moment',
  'moment_life',
  'life_also',
  'also_help',
  'help_pay',
  'pay_colleg',
  'colleg_grad',
  'grad_school',
  'school_im',
  'im_extrem',
  'extrem_appreci',
  'appreci_mom',
  'mom_good',
  'good_mom',
  'mom_weve',
  'weve_never',
  'never_close',
  'close_dad',
  'dad_alic',
  'alic_person',
  'person_differ',
  'differ_plan',
  'plan_first',
  'first_danc',
  'danc_right',
  'right_first',
  'first_danc',
  'danc_fiance',
  'fiance_pick',
  'pick_dad',
  'dad_parent',
  'parent_still',
  'still_marri',
  'marri_drama',
  'drama_close',
  'close_alic',
  'alic_realli',
  'realli_feel',
  'feel_right',
  'right_exclud',
  'exclud_danc',
  'danc_mom',
  'mom_ask',
  'ask_shed',
  'shed_comfort',
  'comfort_one',
  'one_well',
  'well_overjoy',
  'overjoy_cri',
  'cri_emot',
  'emot_im',
  'im_realli',
  'realli_excit',
  'excit_mom',
  'mom_found',
  'found_flip',
  'flip_said',
  'said_im',
  'im_replac',
  'replac_like',
  'like_dad',
  'dad_replac',
  'replac_told',
  'told_replac',
  'replac_support',
  'support_entir',
  'entir_life',
  'life_consid',
  'consid_true',
  'true_bonu',
  'bonu_mother',
  'mother_want',
  'want_exclud',
  'exclud_want',
  'want_accept',
  'accept_yesterday',
  'yesterday_aunt',
  'aunt_mom',
  'mom_sister',
  'sister_call',
  'call_rip',
  'rip_new',
  'new_one',
  'one_know',
  'know_littl',
  'littl_controversi',
  'controversi_heart',
  'heart_realli',
  'realli_want',
  'want_aita',
  'aita_go',
  'go_two',
  'two_mother',
  'mother_son',
  'son_danc',
  'danc_person',
  'person_ive',
  'ive_wed',
  'wed_step',
  'step_involv',
  'involv_two',
  'two_mother',
  'mother_son',
  'son_father',
  'father_daughter',
  'daughter_seem',
  'seem_realli',
  'realli_sweet',
  'sweet_like',
  'like_overkil',
  'overkil_would',
  'would_shorten',
  'shorten_version',
  'version_song',
  'song_long',
  'long_matter',
  'im_current_plan',
  'current_plan_wed',
  'plan_wed_get',
  'wed_get_nitti',
  'get_nitti_gritti',
  'nitti_gritti_detail',
  'gritti_detail_background',
  'detail_background_parent',
  'background_parent_got',
  'parent_got_divorc',
  'got_divorc_divorc',
  'divorc_divorc_happen',
  'divorc_happen_dad',
  'happen_dad_fell',
  'dad_fell_love',
  'fell_love_current',
  'love_current_wifemi',
  'current_wifemi_stepmom',
  'wifemi_stepmom_alic',
  'stepmom_alic_claim',
  'alic_claim_cheat',
  'claim_cheat_wait',
  'cheat_wait_separ',
  'wait_separ_anyth',
  'separ_anyth_physic',
  'anyth_physic_happen',
  'physic_happen_know',
  'happen_know_need',
  'know_need_know',
  'need_know_whether',
  'know_whether_true',
  'whether_true_point',
  'true_point_dad',
  'point_dad_alic',
  'dad_alic_got',
  'alic_got_marri',
  'got_marri_live',
  'marri_live_togeth',
  'live_togeth_time',
  'togeth_time_two',
  'time_two_sibl',
  'two_sibl_within',
  'sibl_within_next',
  'within_next_year',
  'next_year_parent',
  'year_parent_split',
  'parent_split_custodi',
  'split_custodi_alic',
  'custodi_alic_%',
  'alic_%_mother',
  '%_mother_figur',
  'mother_figur_close',
  'figur_close_everi',
  'close_everi_tough',
  'everi_tough_moment',
  'tough_moment_life',
  'moment_life_also',
  'life_also_help',
  'also_help_pay',
  'help_pay_colleg',
  'pay_colleg_grad',
  'colleg_grad_school',
  'grad_school_im',
  'school_im_extrem',
  'im_extrem_appreci',
  'extrem_appreci_mom',
  'appreci_mom_good',
  'mom_good_mom',
  'good_mom_weve',
  'mom_weve_never',
  'weve_never_close',
  'never_close_dad',
  'close_dad_alic',
  'dad_alic_person',
  'alic_person_differ',
  'person_differ_plan',
  'differ_plan_first',
  'plan_first_danc',
  'first_danc_right',
  'danc_right_first',
  'right_first_danc',
  'first_danc_fiance',
  'danc_fiance_pick',
  'fiance_pick_dad',
  'pick_dad_parent',
  'dad_parent_still',
  'parent_still_marri',
  'still_marri_drama',
  'marri_drama_close',
  'drama_close_alic',
  'close_alic_realli',
  'alic_realli_feel',
  'realli_feel_right',
  'feel_right_exclud',
  'right_exclud_danc',
  'exclud_danc_mom',
  'danc_mom_ask',
  'mom_ask_shed',
  'ask_shed_comfort',
  'shed_comfort_one',
  'comfort_one_well',
  'one_well_overjoy',
  'well_overjoy_cri',
  'overjoy_cri_emot',
  'cri_emot_im',
  'emot_im_realli',
  'im_realli_excit',
  'realli_excit_mom',
  'excit_mom_found',
  'mom_found_flip',
  'found_flip_said',
  'flip_said_im',
  'said_im_replac',
  'im_replac_like',
  'replac_like_dad',
  'like_dad_replac',
  'dad_replac_told',
  'replac_told_replac',
  'told_replac_support',
  'replac_support_entir',
  'support_entir_life',
  'entir_life_consid',
  'life_consid_true',
  'consid_true_bonu',
  'true_bonu_mother',
  'bonu_mother_want',
  'mother_want_exclud',
  'want_exclud_want',
  'exclud_want_accept',
  'want_accept_yesterday',
  'accept_yesterday_aunt',
  'yesterday_aunt_mom',
  'aunt_mom_sister',
  'mom_sister_call',
  'sister_call_rip',
  'call_rip_new',
  'rip_new_one',
  'new_one_know',
  'one_know_littl',
  'know_littl_controversi',
  'littl_controversi_heart',
  'controversi_heart_realli',
  'heart_realli_want',
  'realli_want_aita',
  'want_aita_go',
  'aita_go_two',
  'go_two_mother',
  'two_mother_son',
  'mother_son_danc',
  'son_danc_person',
  'danc_person_ive',
  'person_ive_wed',
  'ive_wed_step',
  'wed_step_involv',
  'step_involv_two',
  'involv_two_mother',
  'two_mother_son',
  'mother_son_father',
  'son_father_daughter',
  'father_daughter_seem',
  'daughter_seem_realli',
  'seem_realli_sweet',
  'realli_sweet_like',
  'sweet_like_overkil',
  'like_overkil_would',
  'overkil_would_shorten',
  'would_shorten_version',
  'shorten_version_song',
  'version_song_long',
  'song_long_matter'],
 ['cowork',
  'martin',
  'alway',
  'forget',
  'leav',
  'stuff',
  'alway',
  'forget',
  'phone',
  'charger',
  'home',
  'borrow',
  'mine',
  'use',
  'mind',
  'lend',
  'charger',
  'nice',
  'person',
  'love',
  'maintain',
  'good',
  'relationship',
  'cowork',
  'especi',
  'male',
  'cowork',
  'day',
  'restroom',
  'walk',
  'back',
  'offic',
  'saw',
  'martin',
  'hand',
  'insid',
  'purs',
  'liter',
  'look',
  'shock',
  'highli',
  'person',
  'stuff',
  'carri',
  'purs',
  'freak',
  'snatch',
  'purs',
  'hand',
  'ask',
  'got',
  'nervou',
  'said',
  'look',
  'charger',
  'ask',
  'thought',
  'okay',
  'look',
  'purs',
  'said',
  'sinc',
  'alway',
  'lend',
  'charger',
  'thought',
  'mind',
  'look',
  'purs',
  'ask',
  'offic',
  'need',
  'right',
  'told',
  'violat',
  'privaci',
  'disrespect',
  'boundari',
  'went',
  'file',
  'report',
  'compani',
  'headquat',
  'tell',
  'happen',
  'said',
  'unaccept',
  'promis',
  'deal',
  'martin',
  'got',
  'int',
  'troubl',
  'cowork',
  'piss',
  'say',
  'overreact',
  'went',
  'way',
  'overboard',
  'report',
  'situat',
  'femal',
  'cowork',
  'told',
  'get',
  'stop',
  'cri',
  'victim',
  'simpl',
  'misunderstand',
  'felt',
  'guilti',
  'afte',
  'think',
  'might',
  'blown',
  'propot',
  'overeact',
  'cowork_martin',
  'martin_alway',
  'alway_forget',
  'forget_leav',
  'leav_stuff',
  'stuff_alway',
  'alway_forget',
  'forget_phone',
  'phone_charger',
  'charger_home',
  'home_borrow',
  'borrow_mine',
  'mine_use',
  'use_mind',
  'mind_lend',
  'lend_charger',
  'charger_nice',
  'nice_person',
  'person_love',
  'love_maintain',
  'maintain_good',
  'good_relationship',
  'relationship_cowork',
  'cowork_especi',
  'especi_male',
  'male_cowork',
  'cowork_day',
  'day_restroom',
  'restroom_walk',
  'walk_back',
  'back_offic',
  'offic_saw',
  'saw_martin',
  'martin_hand',
  'hand_insid',
  'insid_purs',
  'purs_liter',
  'liter_look',
  'look_shock',
  'shock_highli',
  'highli_person',
  'person_stuff',
  'stuff_carri',
  'carri_purs',
  'purs_freak',
  'freak_snatch',
  'snatch_purs',
  'purs_hand',
  'hand_ask',
  'ask_got',
  'got_nervou',
  'nervou_said',
  'said_look',
  'look_charger',
  'charger_ask',
  'ask_thought',
  'thought_okay',
  'okay_look',
  'look_purs',
  'purs_said',
  'said_sinc',
  'sinc_alway',
  'alway_lend',
  'lend_charger',
  'charger_thought',
  'thought_mind',
  'mind_look',
  'look_purs',
  'purs_ask',
  'ask_offic',
  'offic_need',
  'need_right',
  'right_told',
  'told_violat',
  'violat_privaci',
  'privaci_disrespect',
  'disrespect_boundari',
  'boundari_went',
  'went_file',
  'file_report',
  'report_compani',
  'compani_headquat',
  'headquat_tell',
  'tell_happen',
  'happen_said',
  'said_unaccept',
  'unaccept_promis',
  'promis_deal',
  'deal_martin',
  'martin_got',
  'got_int',
  'int_troubl',
  'troubl_cowork',
  'cowork_piss',
  'piss_say',
  'say_overreact',
  'overreact_went',
  'went_way',
  'way_overboard',
  'overboard_report',
  'report_situat',
  'situat_femal',
  'femal_cowork',
  'cowork_told',
  'told_get',
  'get_stop',
  'stop_cri',
  'cri_victim',
  'victim_simpl',
  'simpl_misunderstand',
  'misunderstand_felt',
  'felt_guilti',
  'guilti_afte',
  'afte_think',
  'think_might',
  'might_blown',
  'blown_propot',
  'propot_overeact',
  'cowork_martin_alway',
  'martin_alway_forget',
  'alway_forget_leav',
  'forget_leav_stuff',
  'leav_stuff_alway',
  'stuff_alway_forget',
  'alway_forget_phone',
  'forget_phone_charger',
  'phone_charger_home',
  'charger_home_borrow',
  'home_borrow_mine',
  'borrow_mine_use',
  'mine_use_mind',
  'use_mind_lend',
  'mind_lend_charger',
  'lend_charger_nice',
  'charger_nice_person',
  'nice_person_love',
  'person_love_maintain',
  'love_maintain_good',
  'maintain_good_relationship',
  'good_relationship_cowork',
  'relationship_cowork_especi',
  'cowork_especi_male',
  'especi_male_cowork',
  'male_cowork_day',
  'cowork_day_restroom',
  'day_restroom_walk',
  'restroom_walk_back',
  'walk_back_offic',
  'back_offic_saw',
  'offic_saw_martin',
  'saw_martin_hand',
  'martin_hand_insid',
  'hand_insid_purs',
  'insid_purs_liter',
  'purs_liter_look',
  'liter_look_shock',
  'look_shock_highli',
  'shock_highli_person',
  'highli_person_stuff',
  'person_stuff_carri',
  'stuff_carri_purs',
  'carri_purs_freak',
  'purs_freak_snatch',
  'freak_snatch_purs',
  'snatch_purs_hand',
  'purs_hand_ask',
  'hand_ask_got',
  'ask_got_nervou',
  'got_nervou_said',
  'nervou_said_look',
  'said_look_charger',
  'look_charger_ask',
  'charger_ask_thought',
  'ask_thought_okay',
  'thought_okay_look',
  'okay_look_purs',
  'look_purs_said',
  'purs_said_sinc',
  'said_sinc_alway',
  'sinc_alway_lend',
  'alway_lend_charger',
  'lend_charger_thought',
  'charger_thought_mind',
  'thought_mind_look',
  'mind_look_purs',
  'look_purs_ask',
  'purs_ask_offic',
  'ask_offic_need',
  'offic_need_right',
  'need_right_told',
  'right_told_violat',
  'told_violat_privaci',
  'violat_privaci_disrespect',
  'privaci_disrespect_boundari',
  'disrespect_boundari_went',
  'boundari_went_file',
  'went_file_report',
  'file_report_compani',
  'report_compani_headquat',
  'compani_headquat_tell',
  'headquat_tell_happen',
  'tell_happen_said',
  'happen_said_unaccept',
  'said_unaccept_promis',
  'unaccept_promis_deal',
  'promis_deal_martin',
  'deal_martin_got',
  'martin_got_int',
  'got_int_troubl',
  'int_troubl_cowork',
  'troubl_cowork_piss',
  'cowork_piss_say',
  'piss_say_overreact',
  'say_overreact_went',
  'overreact_went_way',
  'went_way_overboard',
  'way_overboard_report',
  'overboard_report_situat',
  'report_situat_femal',
  'situat_femal_cowork',
  'femal_cowork_told',
  'cowork_told_get',
  'told_get_stop',
  'get_stop_cri',
  'stop_cri_victim',
  'cri_victim_simpl',
  'victim_simpl_misunderstand',
  'simpl_misunderstand_felt',
  'misunderstand_felt_guilti',
  'felt_guilti_afte',
  'guilti_afte_think',
  'afte_think_might',
  'think_might_blown',
  'might_blown_propot',
  'blown_propot_overeact'],
 ['partner',
  'daughter',
  'month',
  'long',
  'time',
  'issu',
  'get',
  'help',
  'kid',
  'morn',
  'think',
  'abl',
  'sleep',
  'day',
  'work',
  'think',
  'get',
  'kid',
  'least',
  'altern',
  'lie',
  'bit',
  'weve',
  'see',
  'therapist',
  'mention',
  'help',
  'morn',
  'recent',
  'famili',
  'trip',
  'plan',
  'zoo',
  'parent',
  'sister',
  'kid',
  'previous',
  'weve',
  'gone',
  'day',
  'ive',
  'need',
  'shake',
  'partner',
  'awak',
  'sever',
  'time',
  'lie',
  'bed',
  'get',
  'kid',
  'readi',
  'hell',
  'final',
  'get',
  'minut',
  'leav',
  'shout',
  'im',
  'get',
  'car',
  'ive',
  'mention',
  'frustrat',
  'lot',
  'work',
  'get',
  'kid',
  'readi',
  'go',
  'fair',
  'leav',
  'lie',
  'bed',
  'hed',
  'apologis',
  'promis',
  'next',
  'time',
  'hed',
  'get',
  'help',
  'night',
  'trip',
  'told',
  'id',
  'need',
  'awak',
  'could',
  'get',
  'everyon',
  'readi',
  'leav',
  'said',
  'hed',
  'set',
  'alarm',
  'went',
  'bed',
  'alarm',
  'went',
  'got',
  'partner',
  'kept',
  'sleep',
  'decid',
  'go',
  'wake',
  'time',
  'continu',
  'get',
  'kid',
  'readi',
  'still',
  'sleep',
  'load',
  'kid',
  'car',
  'set',
  'arriv',
  'zoo',
  'famili',
  'ask',
  'mention',
  'still',
  'bed',
  'chose',
  'come',
  'got',
  'phone',
  'call',
  'ask',
  'everyon',
  'said',
  'went',
  'zoo',
  'plan',
  'wait',
  'get',
  'never',
  'got',
  'realli',
  'mad',
  'told',
  'woken',
  'like',
  'alway',
  'caus',
  'miss',
  'trip',
  'call',
  'mum',
  'complain',
  'yell',
  'middl',
  'zoo',
  'unfair',
  'given',
  'shake',
  'let',
  'know',
  'need',
  'get',
  'leav',
  'mother',
  'jump',
  'said',
  'respons',
  'get',
  'bed',
  'need',
  'take',
  'respons',
  'word',
  'exchang',
  'famili',
  'stalk',
  'rest',
  'trip',
  'blast',
  'kid',
  'parent',
  'sister',
  'nephew',
  'got',
  'home',
  'partner',
  'start',
  'woken',
  'aita',
  'wake',
  'go',
  'without',
  'thing',
  'come',
  'want',
  'clarifi',
  '-',
  'alway',
  'like',
  'oldest',
  'two',
  'littl',
  'alway',
  'even',
  'get',
  'anyway',
  'els',
  'cook',
  'breakfast',
  'go',
  'work',
  'move',
  'parent',
  'one',
  'point',
  'thing',
  'start',
  'chang',
  'famili',
  'incred',
  'misogynist',
  'dad',
  'work',
  'come',
  'home',
  'watch',
  'tv',
  'drink',
  'beer',
  'mum',
  'everyth',
  'els',
  'includ',
  'get',
  'work',
  'etc',
  'belief',
  'seem',
  'rub',
  'mum',
  'quick',
  'tell',
  'someth',
  'woman',
  'job',
  '-',
  'see',
  'therapist',
  'independ',
  'suggest',
  'form',
  'depress',
  '-',
  'gener',
  'pretti',
  'good',
  'otherwis',
  'help',
  'dinner',
  'clean',
  'put',
  'kid',
  'bed',
  'etc',
  'entir',
  'useless',
  'get',
  'bed',
  'morn',
  'long',
  'stand',
  'issu',
  'though',
  '-',
  'vasectomi',
  'babi',
  'turn',
  'incomplet',
  'hysterectomi',
  'partner_daughter',
  'daughter_month',
  'month_long',
  'long_time',
  'time_issu',
  'issu_get',
  'get_help',
  'help_kid',
  'kid_morn',
  'morn_think',
  'think_abl',
  'abl_sleep',
  'sleep_day',
  'day_work',
  'work_think',
  'think_get',
  'get_kid',
  'kid_least',
  'least_altern',
  'altern_lie',
  'lie_bit',
  'bit_weve',
  'weve_see',
  'see_therapist',
  'therapist_mention',
  'mention_help',
  'help_morn',
  'morn_recent',
  'recent_famili',
  'famili_trip',
  'trip_plan',
  'plan_zoo',
  'zoo_parent',
  'parent_sister',
  'sister_kid',
  'kid_previous',
  'previous_weve',
  'weve_gone',
  'gone_day',
  'day_ive',
  'ive_need',
  'need_shake',
  'shake_partner',
  'partner_awak',
  'awak_sever',
  'sever_time',
  'time_lie',
  'lie_bed',
  'bed_get',
  'get_kid',
  'kid_readi',
  'readi_hell',
  'hell_final',
  'final_get',
  'get_minut',
  'minut_leav',
  'leav_shout',
  'shout_im',
  'im_get',
  'get_car',
  'car_ive',
  'ive_mention',
  'mention_frustrat',
  'frustrat_lot',
  'lot_work',
  'work_get',
  'get_kid',
  'kid_readi',
  'readi_go',
  'go_fair',
  'fair_leav',
  'leav_lie',
  'lie_bed',
  'bed_hed',
  'hed_apologis',
  'apologis_promis',
  'promis_next',
  'next_time',
  'time_hed',
  'hed_get',
  'get_help',
  'help_night',
  'night_trip',
  'trip_told',
  'told_id',
  'id_need',
  'need_awak',
  'awak_could',
  'could_get',
  'get_everyon',
  'everyon_readi',
  'readi_leav',
  'leav_said',
  'said_hed',
  'hed_set',
  'set_alarm',
  'alarm_went',
  'went_bed',
  'bed_alarm',
  'alarm_went',
  'went_got',
  'got_partner',
  'partner_kept',
  'kept_sleep',
  'sleep_decid',
  'decid_go',
  'go_wake',
  'wake_time',
  'time_continu',
  'continu_get',
  'get_kid',
  'kid_readi',
  'readi_still',
  'still_sleep',
  'sleep_load',
  'load_kid',
  'kid_car',
  'car_set',
  'set_arriv',
  'arriv_zoo',
  'zoo_famili',
  'famili_ask',
  'ask_mention',
  'mention_still',
  'still_bed',
  'bed_chose',
  'chose_come',
  'come_got',
  'got_phone',
  'phone_call',
  'call_ask',
  'ask_everyon',
  'everyon_said',
  'said_went',
  'went_zoo',
  'zoo_plan',
  'plan_wait',
  'wait_get',
  'get_never',
  'never_got',
  'got_realli',
  'realli_mad',
  'mad_told',
  'told_woken',
  'woken_like',
  'like_alway',
  'alway_caus',
  'caus_miss',
  'miss_trip',
  'trip_call',
  'call_mum',
  'mum_complain',
  'complain_yell',
  'yell_middl',
  'middl_zoo',
  'zoo_unfair',
  'unfair_given',
  'given_shake',
  'shake_let',
  'let_know',
  'know_need',
  'need_get',
  'get_leav',
  'leav_mother',
  'mother_jump',
  'jump_said',
  'said_respons',
  'respons_get',
  'get_bed',
  'bed_need',
  'need_take',
  'take_respons',
  'respons_word',
  'word_exchang',
  'exchang_famili',
  'famili_stalk',
  'stalk_rest',
  'rest_trip',
  'trip_blast',
  'blast_kid',
  'kid_parent',
  'parent_sister',
  'sister_nephew',
  'nephew_got',
  'got_home',
  'home_partner',
  'partner_start',
  'start_woken',
  'woken_aita',
  'aita_wake',
  'wake_go',
  'go_without',
  'without_thing',
  'thing_come',
  'come_want',
  'want_clarifi',
  'clarifi_-',
  '-_alway',
  'alway_like',
  'like_oldest',
  'oldest_two',
  'two_littl',
  'littl_alway',
  'alway_even',
  'even_get',
  'get_anyway',
  'anyway_els',
  'els_cook',
  'cook_breakfast',
  'breakfast_go',
  'go_work',
  'work_move',
  'move_parent',
  'parent_one',
  'one_point',
  'point_thing',
  'thing_start',
  'start_chang',
  'chang_famili',
  'famili_incred',
  'incred_misogynist',
  'misogynist_dad',
  'dad_work',
  'work_come',
  'come_home',
  'home_watch',
  'watch_tv',
  'tv_drink',
  'drink_beer',
  'beer_mum',
  'mum_everyth',
  'everyth_els',
  'els_includ',
  'includ_get',
  'get_work',
  'work_etc',
  'etc_belief',
  'belief_seem',
  'seem_rub',
  'rub_mum',
  'mum_quick',
  'quick_tell',
  'tell_someth',
  'someth_woman',
  'woman_job',
  'job_-',
  '-_see',
  'see_therapist',
  'therapist_independ',
  'independ_suggest',
  'suggest_form',
  'form_depress',
  'depress_-',
  '-_gener',
  'gener_pretti',
  'pretti_good',
  'good_otherwis',
  'otherwis_help',
  'help_dinner',
  'dinner_clean',
  'clean_put',
  'put_kid',
  'kid_bed',
  'bed_etc',
  'etc_entir',
  'entir_useless',
  'useless_get',
  'get_bed',
  'bed_morn',
  'morn_long',
  'long_stand',
  'stand_issu',
  'issu_though',
  'though_-',
  '-_vasectomi',
  'vasectomi_babi',
  'babi_turn',
  'turn_incomplet',
  'incomplet_hysterectomi',
  'partner_daughter_month',
  'daughter_month_long',
  'month_long_time',
  'long_time_issu',
  'time_issu_get',
  'issu_get_help',
  'get_help_kid',
  'help_kid_morn',
  'kid_morn_think',
  'morn_think_abl',
  'think_abl_sleep',
  'abl_sleep_day',
  'sleep_day_work',
  'day_work_think',
  'work_think_get',
  'think_get_kid',
  'get_kid_least',
  'kid_least_altern',
  'least_altern_lie',
  'altern_lie_bit',
  'lie_bit_weve',
  'bit_weve_see',
  'weve_see_therapist',
  'see_therapist_mention',
  'therapist_mention_help',
  'mention_help_morn',
  'help_morn_recent',
  'morn_recent_famili',
  'recent_famili_trip',
  'famili_trip_plan',
  'trip_plan_zoo',
  'plan_zoo_parent',
  'zoo_parent_sister',
  'parent_sister_kid',
  'sister_kid_previous',
  'kid_previous_weve',
  'previous_weve_gone',
  'weve_gone_day',
  'gone_day_ive',
  'day_ive_need',
  'ive_need_shake',
  'need_shake_partner',
  'shake_partner_awak',
  'partner_awak_sever',
  'awak_sever_time',
  'sever_time_lie',
  'time_lie_bed',
  'lie_bed_get',
  'bed_get_kid',
  'get_kid_readi',
  'kid_readi_hell',
  'readi_hell_final',
  'hell_final_get',
  'final_get_minut',
  'get_minut_leav',
  'minut_leav_shout',
  'leav_shout_im',
  'shout_im_get',
  'im_get_car',
  'get_car_ive',
  'car_ive_mention',
  'ive_mention_frustrat',
  'mention_frustrat_lot',
  'frustrat_lot_work',
  'lot_work_get',
  'work_get_kid',
  'get_kid_readi',
  'kid_readi_go',
  'readi_go_fair',
  'go_fair_leav',
  'fair_leav_lie',
  'leav_lie_bed',
  'lie_bed_hed',
  'bed_hed_apologis',
  'hed_apologis_promis',
  'apologis_promis_next',
  'promis_next_time',
  'next_time_hed',
  'time_hed_get',
  'hed_get_help',
  'get_help_night',
  'help_night_trip',
  'night_trip_told',
  'trip_told_id',
  'told_id_need',
  'id_need_awak',
  'need_awak_could',
  'awak_could_get',
  'could_get_everyon',
  'get_everyon_readi',
  'everyon_readi_leav',
  'readi_leav_said',
  'leav_said_hed',
  'said_hed_set',
  'hed_set_alarm',
  'set_alarm_went',
  'alarm_went_bed',
  'went_bed_alarm',
  'bed_alarm_went',
  'alarm_went_got',
  'went_got_partner',
  'got_partner_kept',
  'partner_kept_sleep',
  'kept_sleep_decid',
  'sleep_decid_go',
  'decid_go_wake',
  'go_wake_time',
  'wake_time_continu',
  'time_continu_get',
  'continu_get_kid',
  'get_kid_readi',
  'kid_readi_still',
  'readi_still_sleep',
  'still_sleep_load',
  'sleep_load_kid',
  'load_kid_car',
  'kid_car_set',
  'car_set_arriv',
  'set_arriv_zoo',
  'arriv_zoo_famili',
  'zoo_famili_ask',
  'famili_ask_mention',
  'ask_mention_still',
  'mention_still_bed',
  'still_bed_chose',
  'bed_chose_come',
  'chose_come_got',
  'come_got_phone',
  'got_phone_call',
  'phone_call_ask',
  'call_ask_everyon',
  'ask_everyon_said',
  'everyon_said_went',
  'said_went_zoo',
  'went_zoo_plan',
  'zoo_plan_wait',
  'plan_wait_get',
  'wait_get_never',
  'get_never_got',
  'never_got_realli',
  'got_realli_mad',
  'realli_mad_told',
  'mad_told_woken',
  'told_woken_like',
  'woken_like_alway',
  'like_alway_caus',
  'alway_caus_miss',
  'caus_miss_trip',
  'miss_trip_call',
  'trip_call_mum',
  'call_mum_complain',
  'mum_complain_yell',
  'complain_yell_middl',
  'yell_middl_zoo',
  'middl_zoo_unfair',
  'zoo_unfair_given',
  'unfair_given_shake',
  'given_shake_let',
  'shake_let_know',
  'let_know_need',
  'know_need_get',
  'need_get_leav',
  'get_leav_mother',
  'leav_mother_jump',
  'mother_jump_said',
  'jump_said_respons',
  'said_respons_get',
  'respons_get_bed',
  'get_bed_need',
  'bed_need_take',
  'need_take_respons',
  'take_respons_word',
  'respons_word_exchang',
  'word_exchang_famili',
  'exchang_famili_stalk',
  'famili_stalk_rest',
  'stalk_rest_trip',
  'rest_trip_blast',
  'trip_blast_kid',
  'blast_kid_parent',
  'kid_parent_sister',
  'parent_sister_nephew',
  'sister_nephew_got',
  'nephew_got_home',
  'got_home_partner',
  'home_partner_start',
  'partner_start_woken',
  'start_woken_aita',
  'woken_aita_wake',
  'aita_wake_go',
  'wake_go_without',
  'go_without_thing',
  'without_thing_come',
  'thing_come_want',
  'come_want_clarifi',
  'want_clarifi_-',
  'clarifi_-_alway',
  '-_alway_like',
  'alway_like_oldest',
  'like_oldest_two',
  'oldest_two_littl',
  'two_littl_alway',
  'littl_alway_even',
  'alway_even_get',
  'even_get_anyway',
  'get_anyway_els',
  'anyway_els_cook',
  'els_cook_breakfast',
  'cook_breakfast_go',
  'breakfast_go_work',
  'go_work_move',
  'work_move_parent',
  'move_parent_one',
  'parent_one_point',
  'one_point_thing',
  'point_thing_start',
  'thing_start_chang',
  'start_chang_famili',
  'chang_famili_incred',
  'famili_incred_misogynist',
  'incred_misogynist_dad',
  'misogynist_dad_work',
  'dad_work_come',
  'work_come_home',
  'come_home_watch',
  'home_watch_tv',
  'watch_tv_drink',
  'tv_drink_beer',
  'drink_beer_mum',
  'beer_mum_everyth',
  'mum_everyth_els',
  'everyth_els_includ',
  'els_includ_get',
  'includ_get_work',
  'get_work_etc',
  'work_etc_belief',
  'etc_belief_seem',
  'belief_seem_rub',
  'seem_rub_mum',
  'rub_mum_quick',
  'mum_quick_tell',
  'quick_tell_someth',
  'tell_someth_woman',
  'someth_woman_job',
  'woman_job_-',
  'job_-_see',
  '-_see_therapist',
  'see_therapist_independ',
  'therapist_independ_suggest',
  'independ_suggest_form',
  'suggest_form_depress',
  'form_depress_-',
  'depress_-_gener',
  '-_gener_pretti',
  'gener_pretti_good',
  'pretti_good_otherwis',
  'good_otherwis_help',
  'otherwis_help_dinner',
  'help_dinner_clean',
  'dinner_clean_put',
  'clean_put_kid',
  'put_kid_bed',
  'kid_bed_etc',
  'bed_etc_entir',
  'etc_entir_useless',
  'entir_useless_get',
  'useless_get_bed',
  'get_bed_morn',
  'bed_morn_long',
  'morn_long_stand',
  'long_stand_issu',
  'stand_issu_though',
  'issu_though_-',
  'though_-_vasectomi',
  '-_vasectomi_babi',
  'vasectomi_babi_turn',
  'babi_turn_incomplet',
  'turn_incomplet_hysterectomi'],
 ['move',
  'new',
  'neighborhood',
  'almost',
  'year',
  'ago',
  'live',
  'alon',
  'partner',
  'kid',
  'mom',
  'live',
  'part',
  'year',
  '-month',
  'year',
  'realli',
  'like',
  'neighborhood',
  'issu',
  'tight',
  'knit',
  'commun',
  'neighborhood',
  'bbq',
  'least',
  'month',
  'kid',
  'play',
  'togeth',
  'school',
  'etc',
  'next',
  'door',
  'neighbor',
  'one',
  'side',
  'sever',
  'disabl',
  'child',
  'almost',
  'complet',
  'non',
  'verbal',
  'wheelchair',
  'bound',
  'nurs',
  'help',
  'care',
  'know',
  'parent',
  'struggl',
  'understand',
  'mom',
  'quit',
  'job',
  'full',
  'time',
  'carer',
  'older',
  'child',
  'ive',
  'gotten',
  'rel',
  'close',
  'parent',
  'love',
  'neighbor',
  'older',
  'child',
  'respect',
  'honestli',
  'one',
  'sweetest',
  'children',
  'neighborhood',
  'mom',
  'bought',
  'minivan',
  'custom',
  'ramp',
  'wheelchair',
  'tie',
  'easili',
  'transport',
  'mobil',
  'equip',
  'usual',
  'ecv',
  'wheelchair',
  'stay',
  '-',
  'month',
  'year',
  'mom',
  'spend',
  'time',
  'sister',
  'friend',
  'home',
  'countri',
  'car',
  'sit',
  'mostli',
  'unus',
  'unless',
  'reason',
  'move',
  'bigger',
  'thing',
  'fit',
  'daili',
  'driver',
  'notic',
  'neighbor',
  'car',
  'suitabl',
  'transport',
  'daughter',
  'without',
  'take',
  'wheelchair',
  'fight',
  'keep',
  'tube',
  'wire',
  'place',
  'offer',
  'use',
  'minivan',
  'use',
  'transport',
  'mom',
  'weve',
  'agreement',
  'place',
  'work',
  'well',
  'us',
  'almost',
  'month',
  'theyv',
  'ask',
  'use',
  'car',
  'go',
  'road',
  'trip',
  'trip',
  'schedul',
  'last',
  'week',
  'main',
  'reason',
  'trip',
  'take',
  'kid',
  'disneyworld',
  'first',
  'time',
  'problem',
  'mom',
  'suppos',
  'arriv',
  'coupl',
  'day',
  'would',
  'leav',
  'ask',
  'could',
  'delay',
  'trip',
  'day',
  'least',
  'get',
  'airport',
  'minim',
  'stress',
  'adam',
  'leav',
  'date',
  'want',
  'said',
  'need',
  'abl',
  'comfort',
  'get',
  'mom',
  'airport',
  'hour',
  'flight',
  'want',
  'comfort',
  'worri',
  'get',
  'car',
  'call',
  'selfish',
  'ive',
  'oust',
  'rest',
  'commun',
  'invit',
  'last',
  'bbq',
  'nobodi',
  'say',
  'wave',
  'back',
  'street',
  'anymor',
  'neighbor',
  'kid',
  'come',
  'see',
  'dog',
  'run',
  'around',
  'yard',
  'almost',
  'week',
  'tri',
  'text',
  'neighbor',
  'text',
  'went',
  'undeliv',
  'think',
  'block',
  'feel',
  'like',
  'im',
  'live',
  'hostil',
  'environ',
  'uncomfort',
  'cave',
  'let',
  'take',
  'car',
  'move_new',
  'new_neighborhood',
  'neighborhood_almost',
  'almost_year',
  'year_ago',
  'ago_live',
  'live_alon',
  'alon_partner',
  'partner_kid',
  'kid_mom',
  'mom_live',
  'live_part',
  'part_year',
  'year_-month',
  '-month_year',
  'year_realli',
  'realli_like',
  'like_neighborhood',
  'neighborhood_issu',
  'issu_tight',
  'tight_knit',
  'knit_commun',
  'commun_neighborhood',
  'neighborhood_bbq',
  'bbq_least',
  'least_month',
  'month_kid',
  'kid_play',
  'play_togeth',
  'togeth_school',
  'school_etc',
  'etc_next',
  'next_door',
  'door_neighbor',
  'neighbor_one',
  'one_side',
  'side_sever',
  'sever_disabl',
  'disabl_child',
  'child_almost',
  'almost_complet',
  'complet_non',
  'non_verbal',
  'verbal_wheelchair',
  'wheelchair_bound',
  'bound_nurs',
  'nurs_help',
  'help_care',
  'care_know',
  'know_parent',
  'parent_struggl',
  'struggl_understand',
  'understand_mom',
  'mom_quit',
  'quit_job',
  'job_full',
  'full_time',
  'time_carer',
  'carer_older',
  'older_child',
  'child_ive',
  'ive_gotten',
  'gotten_rel',
  'rel_close',
  'close_parent',
  'parent_love',
  'love_neighbor',
  'neighbor_older',
  'older_child',
  'child_respect',
  'respect_honestli',
  'honestli_one',
  'one_sweetest',
  'sweetest_children',
  'children_neighborhood',
  'neighborhood_mom',
  'mom_bought',
  'bought_minivan',
  'minivan_custom',
  'custom_ramp',
  'ramp_wheelchair',
  'wheelchair_tie',
  'tie_easili',
  'easili_transport',
  'transport_mobil',
  'mobil_equip',
  'equip_usual',
  'usual_ecv',
  'ecv_wheelchair',
  'wheelchair_stay',
  'stay_-',
  '-_month',
  'month_year',
  'year_mom',
  'mom_spend',
  'spend_time',
  'time_sister',
  'sister_friend',
  'friend_home',
  'home_countri',
  'countri_car',
  'car_sit',
  'sit_mostli',
  'mostli_unus',
  'unus_unless',
  'unless_reason',
  'reason_move',
  'move_bigger',
  'bigger_thing',
  'thing_fit',
  'fit_daili',
  'daili_driver',
  'driver_notic',
  'notic_neighbor',
  'neighbor_car',
  'car_suitabl',
  'suitabl_transport',
  'transport_daughter',
  'daughter_without',
  'without_take',
  'take_wheelchair',
  'wheelchair_fight',
  'fight_keep',
  'keep_tube',
  'tube_wire',
  'wire_place',
  'place_offer',
  'offer_use',
  'use_minivan',
  'minivan_use',
  'use_transport',
  'transport_mom',
  'mom_weve',
  'weve_agreement',
  'agreement_place',
  'place_work',
  'work_well',
  'well_us',
  'us_almost',
  'almost_month',
  'month_theyv',
  'theyv_ask',
  'ask_use',
  'use_car',
  'car_go',
  'go_road',
  'road_trip',
  'trip_trip',
  'trip_schedul',
  'schedul_last',
  'last_week',
  'week_main',
  'main_reason',
  'reason_trip',
  'trip_take',
  'take_kid',
  'kid_disneyworld',
  'disneyworld_first',
  'first_time',
  'time_problem',
  'problem_mom',
  'mom_suppos',
  'suppos_arriv',
  'arriv_coupl',
  'coupl_day',
  'day_would',
  'would_leav',
  'leav_ask',
  'ask_could',
  'could_delay',
  'delay_trip',
  'trip_day',
  'day_least',
  'least_get',
  'get_airport',
  'airport_minim',
  'minim_stress',
  'stress_adam',
  'adam_leav',
  'leav_date',
  'date_want',
  'want_said',
  'said_need',
  'need_abl',
  'abl_comfort',
  'comfort_get',
  'get_mom',
  'mom_airport',
  'airport_hour',
  'hour_flight',
  'flight_want',
  'want_comfort',
  'comfort_worri',
  'worri_get',
  'get_car',
  'car_call',
  'call_selfish',
  'selfish_ive',
  'ive_oust',
  'oust_rest',
  'rest_commun',
  'commun_invit',
  'invit_last',
  'last_bbq',
  'bbq_nobodi',
  'nobodi_say',
  'say_wave',
  'wave_back',
  'back_street',
  'street_anymor',
  'anymor_neighbor',
  'neighbor_kid',
  'kid_come',
  'come_see',
  'see_dog',
  'dog_run',
  'run_around',
  'around_yard',
  'yard_almost',
  'almost_week',
  'week_tri',
  'tri_text',
  'text_neighbor',
  'neighbor_text',
  'text_went',
  'went_undeliv',
  'undeliv_think',
  'think_block',
  'block_feel',
  'feel_like',
  'like_im',
  'im_live',
  'live_hostil',
  'hostil_environ',
  'environ_uncomfort',
  'uncomfort_cave',
  'cave_let',
  'let_take',
  'take_car',
  'move_new_neighborhood',
  'new_neighborhood_almost',
  'neighborhood_almost_year',
  'almost_year_ago',
  'year_ago_live',
  'ago_live_alon',
  'live_alon_partner',
  'alon_partner_kid',
  'partner_kid_mom',
  'kid_mom_live',
  'mom_live_part',
  'live_part_year',
  'part_year_-month',
  'year_-month_year',
  '-month_year_realli',
  'year_realli_like',
  'realli_like_neighborhood',
  'like_neighborhood_issu',
  'neighborhood_issu_tight',
  'issu_tight_knit',
  'tight_knit_commun',
  'knit_commun_neighborhood',
  'commun_neighborhood_bbq',
  'neighborhood_bbq_least',
  'bbq_least_month',
  'least_month_kid',
  'month_kid_play',
  'kid_play_togeth',
  'play_togeth_school',
  'togeth_school_etc',
  'school_etc_next',
  'etc_next_door',
  'next_door_neighbor',
  'door_neighbor_one',
  'neighbor_one_side',
  'one_side_sever',
  'side_sever_disabl',
  'sever_disabl_child',
  'disabl_child_almost',
  'child_almost_complet',
  'almost_complet_non',
  'complet_non_verbal',
  'non_verbal_wheelchair',
  'verbal_wheelchair_bound',
  'wheelchair_bound_nurs',
  'bound_nurs_help',
  'nurs_help_care',
  'help_care_know',
  'care_know_parent',
  'know_parent_struggl',
  'parent_struggl_understand',
  'struggl_understand_mom',
  'understand_mom_quit',
  'mom_quit_job',
  'quit_job_full',
  'job_full_time',
  'full_time_carer',
  'time_carer_older',
  'carer_older_child',
  'older_child_ive',
  'child_ive_gotten',
  'ive_gotten_rel',
  'gotten_rel_close',
  'rel_close_parent',
  'close_parent_love',
  'parent_love_neighbor',
  'love_neighbor_older',
  'neighbor_older_child',
  'older_child_respect',
  'child_respect_honestli',
  'respect_honestli_one',
  'honestli_one_sweetest',
  'one_sweetest_children',
  'sweetest_children_neighborhood',
  'children_neighborhood_mom',
  'neighborhood_mom_bought',
  'mom_bought_minivan',
  'bought_minivan_custom',
  'minivan_custom_ramp',
  'custom_ramp_wheelchair',
  'ramp_wheelchair_tie',
  'wheelchair_tie_easili',
  'tie_easili_transport',
  'easili_transport_mobil',
  'transport_mobil_equip',
  'mobil_equip_usual',
  'equip_usual_ecv',
  'usual_ecv_wheelchair',
  'ecv_wheelchair_stay',
  'wheelchair_stay_-',
  'stay_-_month',
  '-_month_year',
  'month_year_mom',
  'year_mom_spend',
  'mom_spend_time',
  'spend_time_sister',
  'time_sister_friend',
  'sister_friend_home',
  'friend_home_countri',
  'home_countri_car',
  'countri_car_sit',
  'car_sit_mostli',
  'sit_mostli_unus',
  'mostli_unus_unless',
  'unus_unless_reason',
  'unless_reason_move',
  'reason_move_bigger',
  'move_bigger_thing',
  'bigger_thing_fit',
  'thing_fit_daili',
  'fit_daili_driver',
  'daili_driver_notic',
  'driver_notic_neighbor',
  'notic_neighbor_car',
  'neighbor_car_suitabl',
  'car_suitabl_transport',
  'suitabl_transport_daughter',
  'transport_daughter_without',
  'daughter_without_take',
  'without_take_wheelchair',
  'take_wheelchair_fight',
  'wheelchair_fight_keep',
  'fight_keep_tube',
  'keep_tube_wire',
  'tube_wire_place',
  'wire_place_offer',
  'place_offer_use',
  'offer_use_minivan',
  'use_minivan_use',
  'minivan_use_transport',
  'use_transport_mom',
  'transport_mom_weve',
  'mom_weve_agreement',
  'weve_agreement_place',
  'agreement_place_work',
  'place_work_well',
  'work_well_us',
  'well_us_almost',
  'us_almost_month',
  'almost_month_theyv',
  'month_theyv_ask',
  'theyv_ask_use',
  'ask_use_car',
  'use_car_go',
  'car_go_road',
  'go_road_trip',
  'road_trip_trip',
  'trip_trip_schedul',
  'trip_schedul_last',
  'schedul_last_week',
  'last_week_main',
  'week_main_reason',
  'main_reason_trip',
  'reason_trip_take',
  'trip_take_kid',
  'take_kid_disneyworld',
  'kid_disneyworld_first',
  'disneyworld_first_time',
  'first_time_problem',
  'time_problem_mom',
  'problem_mom_suppos',
  'mom_suppos_arriv',
  'suppos_arriv_coupl',
  'arriv_coupl_day',
  'coupl_day_would',
  'day_would_leav',
  'would_leav_ask',
  'leav_ask_could',
  'ask_could_delay',
  'could_delay_trip',
  'delay_trip_day',
  'trip_day_least',
  'day_least_get',
  'least_get_airport',
  'get_airport_minim',
  'airport_minim_stress',
  'minim_stress_adam',
  'stress_adam_leav',
  'adam_leav_date',
  'leav_date_want',
  'date_want_said',
  'want_said_need',
  'said_need_abl',
  'need_abl_comfort',
  'abl_comfort_get',
  'comfort_get_mom',
  'get_mom_airport',
  'mom_airport_hour',
  'airport_hour_flight',
  'hour_flight_want',
  'flight_want_comfort',
  'want_comfort_worri',
  'comfort_worri_get',
  'worri_get_car',
  'get_car_call',
  'car_call_selfish',
  'call_selfish_ive',
  'selfish_ive_oust',
  'ive_oust_rest',
  'oust_rest_commun',
  'rest_commun_invit',
  'commun_invit_last',
  'invit_last_bbq',
  'last_bbq_nobodi',
  'bbq_nobodi_say',
  'nobodi_say_wave',
  'say_wave_back',
  'wave_back_street',
  'back_street_anymor',
  'street_anymor_neighbor',
  'anymor_neighbor_kid',
  'neighbor_kid_come',
  'kid_come_see',
  'come_see_dog',
  'see_dog_run',
  'dog_run_around',
  'run_around_yard',
  'around_yard_almost',
  'yard_almost_week',
  'almost_week_tri',
  'week_tri_text',
  'tri_text_neighbor',
  'text_neighbor_text',
  'neighbor_text_went',
  'text_went_undeliv',
  'went_undeliv_think',
  'undeliv_think_block',
  'think_block_feel',
  'block_feel_like',
  'feel_like_im',
  'like_im_live',
  'im_live_hostil',
  'live_hostil_environ',
  'hostil_environ_uncomfort',
  'environ_uncomfort_cave',
  'uncomfort_cave_let',
  'cave_let_take',
  'let_take_car'],
 ['decid',
  'keep',
  'pregnanc',
  'know',
  'im',
  'go',
  'knew',
  'fiancé',
  'go',
  'happi',
  'news',
  'futur',
  'sister-in-lawbest',
  'friend',
  'person',
  'knew',
  'took',
  'test',
  'suggest',
  'hous',
  'also',
  'agre',
  'brother',
  'unlik',
  'happi',
  'felt',
  'like',
  'tell',
  'immedi',
  'anyway',
  'kept',
  'argu',
  'told',
  'need',
  'time',
  'process',
  'felt',
  'like',
  'make',
  'excus',
  'avoid',
  'tell',
  'end',
  'told',
  'dinner',
  'famili',
  'upset',
  'confront',
  'front',
  'everybodi',
  'know',
  'everybodi',
  'upset',
  'keep',
  'sister',
  'kept',
  'tri',
  'reach',
  'apologis',
  'happen',
  'ignor',
  'excus',
  'brother',
  'keep',
  'gave',
  'week',
  'tell',
  'last',
  'time',
  'call',
  'upset',
  'answer',
  'yell',
  'heat',
  'moment',
  'uninvit',
  'wed',
  'told',
  'would',
  'find',
  'new',
  'bridesmaid',
  'ive',
  'given',
  'fiancé',
  'famili',
  'anoth',
  'reason',
  'upset',
  'ive',
  'refus',
  'let',
  'come',
  'wed',
  'even',
  'regular',
  'guest',
  'despit',
  'ask',
  'import',
  'attend',
  'aita',
  'decid_keep',
  'keep_pregnanc',
  'pregnanc_know',
  'know_im',
  'im_go',
  'go_knew',
  'knew_fiancé',
  'fiancé_go',
  'go_happi',
  'happi_news',
  'news_futur',
  'futur_sister-in-lawbest',
  'sister-in-lawbest_friend',
  'friend_person',
  'person_knew',
  'knew_took',
  'took_test',
  'test_suggest',
  'suggest_hous',
  'hous_also',
  'also_agre',
  'agre_brother',
  'brother_unlik',
  'unlik_happi',
  'happi_felt',
  'felt_like',
  'like_tell',
  'tell_immedi',
  'immedi_anyway',
  'anyway_kept',
  'kept_argu',
  'argu_told',
  'told_need',
  'need_time',
  'time_process',
  'process_felt',
  'felt_like',
  'like_make',
  'make_excus',
  'excus_avoid',
  'avoid_tell',
  'tell_end',
  'end_told',
  'told_dinner',
  'dinner_famili',
  'famili_upset',
  'upset_confront',
  'confront_front',
  'front_everybodi',
  'everybodi_know',
  'know_everybodi',
  'everybodi_upset',
  'upset_keep',
  'keep_sister',
  'sister_kept',
  'kept_tri',
  'tri_reach',
  'reach_apologis',
  'apologis_happen',
  'happen_ignor',
  'ignor_excus',
  'excus_brother',
  'brother_keep',
  'keep_gave',
  'gave_week',
  'week_tell',
  'tell_last',
  'last_time',
  'time_call',
  'call_upset',
  'upset_answer',
  'answer_yell',
  'yell_heat',
  'heat_moment',
  'moment_uninvit',
  'uninvit_wed',
  'wed_told',
  'told_would',
  'would_find',
  'find_new',
  'new_bridesmaid',
  'bridesmaid_ive',
  'ive_given',
  'given_fiancé',
  'fiancé_famili',
  'famili_anoth',
  'anoth_reason',
  'reason_upset',
  'upset_ive',
  'ive_refus',
  'refus_let',
  'let_come',
  'come_wed',
  'wed_even',
  'even_regular',
  'regular_guest',
  'guest_despit',
  'despit_ask',
  'ask_import',
  'import_attend',
  'attend_aita',
  'decid_keep_pregnanc',
  'keep_pregnanc_know',
  'pregnanc_know_im',
  'know_im_go',
  'im_go_knew',
  'go_knew_fiancé',
  'knew_fiancé_go',
  'fiancé_go_happi',
  'go_happi_news',
  'happi_news_futur',
  'news_futur_sister-in-lawbest',
  'futur_sister-in-lawbest_friend',
  'sister-in-lawbest_friend_person',
  'friend_person_knew',
  'person_knew_took',
  'knew_took_test',
  'took_test_suggest',
  'test_suggest_hous',
  'suggest_hous_also',
  'hous_also_agre',
  'also_agre_brother',
  'agre_brother_unlik',
  'brother_unlik_happi',
  'unlik_happi_felt',
  'happi_felt_like',
  'felt_like_tell',
  'like_tell_immedi',
  'tell_immedi_anyway',
  'immedi_anyway_kept',
  'anyway_kept_argu',
  'kept_argu_told',
  'argu_told_need',
  'told_need_time',
  'need_time_process',
  'time_process_felt',
  'process_felt_like',
  'felt_like_make',
  'like_make_excus',
  'make_excus_avoid',
  'excus_avoid_tell',
  'avoid_tell_end',
  'tell_end_told',
  'end_told_dinner',
  'told_dinner_famili',
  'dinner_famili_upset',
  'famili_upset_confront',
  'upset_confront_front',
  'confront_front_everybodi',
  'front_everybodi_know',
  'everybodi_know_everybodi',
  'know_everybodi_upset',
  'everybodi_upset_keep',
  'upset_keep_sister',
  'keep_sister_kept',
  'sister_kept_tri',
  'kept_tri_reach',
  'tri_reach_apologis',
  'reach_apologis_happen',
  'apologis_happen_ignor',
  'happen_ignor_excus',
  'ignor_excus_brother',
  'excus_brother_keep',
  'brother_keep_gave',
  'keep_gave_week',
  'gave_week_tell',
  'week_tell_last',
  'tell_last_time',
  'last_time_call',
  'time_call_upset',
  'call_upset_answer',
  'upset_answer_yell',
  'answer_yell_heat',
  'yell_heat_moment',
  'heat_moment_uninvit',
  'moment_uninvit_wed',
  'uninvit_wed_told',
  'wed_told_would',
  'told_would_find',
  'would_find_new',
  'find_new_bridesmaid',
  'new_bridesmaid_ive',
  'bridesmaid_ive_given',
  'ive_given_fiancé',
  'given_fiancé_famili',
  'fiancé_famili_anoth',
  'famili_anoth_reason',
  'anoth_reason_upset',
  'reason_upset_ive',
  'upset_ive_refus',
  'ive_refus_let',
  'refus_let_come',
  'let_come_wed',
  'come_wed_even',
  'wed_even_regular',
  'even_regular_guest',
  'regular_guest_despit',
  'guest_despit_ask',
  'despit_ask_import',
  'ask_import_attend',
  'import_attend_aita'],
 ['context',
  'move',
  'brother',
  'divorc',
  'month',
  'ago',
  'brought',
  'yo',
  'daughter',
  'brother',
  'girlfriend',
  'month',
  'old',
  'daughter',
  'niec',
  'happen',
  'past',
  'friday',
  'brother',
  'girlfriend',
  'shift',
  'nurs',
  'brother',
  'wfh',
  'meet',
  'hous',
  'hour',
  'watch',
  'babi',
  'via',
  'nannycam',
  'appar',
  'need',
  'diaper',
  'chang',
  'busi',
  'text',
  'daughter',
  'ask',
  'shed',
  'go',
  'quickli',
  'chang',
  'cousin',
  'diaper',
  'refus',
  'told',
  'reason',
  'one',
  'feel',
  'confort',
  'around',
  'babi',
  'two',
  'alreadi',
  'late',
  'friend',
  'birthday',
  'parti',
  'friend',
  'brother',
  'wait',
  'outsid',
  'brother',
  'insist',
  'refus',
  'made',
  'cut',
  'meet',
  'get',
  'kick',
  'daughter',
  'hous',
  'point',
  'got',
  'home',
  'huge',
  'argument',
  'found',
  'brother',
  'berat',
  'daughter',
  'help',
  'babi',
  'cousin',
  'small',
  'one',
  'time',
  'favor',
  'got',
  'kick',
  'meet',
  'daughter',
  'cri',
  'told',
  'brother',
  'said',
  'daughter',
  'girlfriend',
  'respond',
  'reli',
  'daughter',
  'care',
  'explain',
  'one',
  'time',
  'favor',
  'support',
  'us',
  'sinc',
  'divorc',
  'ex',
  'told',
  'excus',
  'forc',
  'daughter',
  'feel',
  'comfort',
  'girlfriend',
  'got',
  'involv',
  'call',
  'grate',
  'asshol',
  'told',
  'us',
  'week',
  'move',
  'tri',
  'speak',
  'brother',
  'girlfriend',
  'decis',
  'shut',
  'say',
  'wrong',
  'tell',
  'instead',
  'hold',
  'daughter',
  'account',
  'lack',
  'support',
  'context_move',
  'move_brother',
  'brother_divorc',
  'divorc_month',
  'month_ago',
  'ago_brought',
  'brought_yo',
  'yo_daughter',
  'daughter_brother',
  'brother_girlfriend',
  'girlfriend_month',
  'month_old',
  'old_daughter',
  'daughter_niec',
  'niec_happen',
  'happen_past',
  'past_friday',
  'friday_brother',
  'brother_girlfriend',
  'girlfriend_shift',
  'shift_nurs',
  'nurs_brother',
  'brother_wfh',
  'wfh_meet',
  'meet_hous',
  'hous_hour',
  'hour_watch',
  'watch_babi',
  'babi_via',
  'via_nannycam',
  'nannycam_appar',
  'appar_need',
  'need_diaper',
  'diaper_chang',
  'chang_busi',
  'busi_text',
  'text_daughter',
  'daughter_ask',
  'ask_shed',
  'shed_go',
  'go_quickli',
  'quickli_chang',
  'chang_cousin',
  'cousin_diaper',
  'diaper_refus',
  'refus_told',
  'told_reason',
  'reason_one',
  'one_feel',
  'feel_confort',
  'confort_around',
  'around_babi',
  'babi_two',
  'two_alreadi',
  'alreadi_late',
  'late_friend',
  'friend_birthday',
  'birthday_parti',
  'parti_friend',
  'friend_brother',
  'brother_wait',
  'wait_outsid',
  'outsid_brother',
  'brother_insist',
  'insist_refus',
  'refus_made',
  'made_cut',
  'cut_meet',
  'meet_get',
  'get_kick',
  'kick_daughter',
  'daughter_hous',
  'hous_point',
  'point_got',
  'got_home',
  'home_huge',
  'huge_argument',
  'argument_found',
  'found_brother',
  'brother_berat',
  'berat_daughter',
  'daughter_help',
  'help_babi',
  'babi_cousin',
  'cousin_small',
  'small_one',
  'one_time',
  'time_favor',
  'favor_got',
  'got_kick',
  'kick_meet',
  'meet_daughter',
  'daughter_cri',
  'cri_told',
  'told_brother',
  'brother_said',
  'said_daughter',
  'daughter_girlfriend',
  'girlfriend_respond',
  'respond_reli',
  'reli_daughter',
  'daughter_care',
  'care_explain',
  'explain_one',
  'one_time',
  'time_favor',
  'favor_support',
  'support_us',
  'us_sinc',
  'sinc_divorc',
  'divorc_ex',
  'ex_told',
  'told_excus',
  'excus_forc',
  'forc_daughter',
  'daughter_feel',
  'feel_comfort',
  'comfort_girlfriend',
  'girlfriend_got',
  'got_involv',
  'involv_call',
  'call_grate',
  'grate_asshol',
  'asshol_told',
  'told_us',
  'us_week',
  'week_move',
  'move_tri',
  'tri_speak',
  'speak_brother',
  'brother_girlfriend',
  'girlfriend_decis',
  'decis_shut',
  'shut_say',
  'say_wrong',
  'wrong_tell',
  'tell_instead',
  'instead_hold',
  'hold_daughter',
  'daughter_account',
  'account_lack',
  'lack_support',
  'context_move_brother',
  'move_brother_divorc',
  'brother_divorc_month',
  'divorc_month_ago',
  'month_ago_brought',
  'ago_brought_yo',
  'brought_yo_daughter',
  'yo_daughter_brother',
  'daughter_brother_girlfriend',
  'brother_girlfriend_month',
  'girlfriend_month_old',
  'month_old_daughter',
  'old_daughter_niec',
  'daughter_niec_happen',
  'niec_happen_past',
  'happen_past_friday',
  'past_friday_brother',
  'friday_brother_girlfriend',
  'brother_girlfriend_shift',
  'girlfriend_shift_nurs',
  'shift_nurs_brother',
  'nurs_brother_wfh',
  'brother_wfh_meet',
  'wfh_meet_hous',
  'meet_hous_hour',
  'hous_hour_watch',
  'hour_watch_babi',
  'watch_babi_via',
  'babi_via_nannycam',
  'via_nannycam_appar',
  'nannycam_appar_need',
  'appar_need_diaper',
  'need_diaper_chang',
  'diaper_chang_busi',
  'chang_busi_text',
  'busi_text_daughter',
  'text_daughter_ask',
  'daughter_ask_shed',
  'ask_shed_go',
  'shed_go_quickli',
  'go_quickli_chang',
  'quickli_chang_cousin',
  'chang_cousin_diaper',
  'cousin_diaper_refus',
  'diaper_refus_told',
  'refus_told_reason',
  'told_reason_one',
  'reason_one_feel',
  'one_feel_confort',
  'feel_confort_around',
  'confort_around_babi',
  'around_babi_two',
  'babi_two_alreadi',
  'two_alreadi_late',
  'alreadi_late_friend',
  'late_friend_birthday',
  'friend_birthday_parti',
  'birthday_parti_friend',
  'parti_friend_brother',
  'friend_brother_wait',
  'brother_wait_outsid',
  'wait_outsid_brother',
  'outsid_brother_insist',
  'brother_insist_refus',
  'insist_refus_made',
  'refus_made_cut',
  'made_cut_meet',
  'cut_meet_get',
  'meet_get_kick',
  'get_kick_daughter',
  'kick_daughter_hous',
  'daughter_hous_point',
  'hous_point_got',
  'point_got_home',
  'got_home_huge',
  'home_huge_argument',
  'huge_argument_found',
  'argument_found_brother',
  'found_brother_berat',
  'brother_berat_daughter',
  'berat_daughter_help',
  'daughter_help_babi',
  'help_babi_cousin',
  'babi_cousin_small',
  'cousin_small_one',
  'small_one_time',
  'one_time_favor',
  'time_favor_got',
  'favor_got_kick',
  'got_kick_meet',
  'kick_meet_daughter',
  'meet_daughter_cri',
  'daughter_cri_told',
  'cri_told_brother',
  'told_brother_said',
  'brother_said_daughter',
  'said_daughter_girlfriend',
  'daughter_girlfriend_respond',
  'girlfriend_respond_reli',
  'respond_reli_daughter',
  'reli_daughter_care',
  'daughter_care_explain',
  'care_explain_one',
  'explain_one_time',
  'one_time_favor',
  'time_favor_support',
  'favor_support_us',
  'support_us_sinc',
  'us_sinc_divorc',
  'sinc_divorc_ex',
  'divorc_ex_told',
  'ex_told_excus',
  'told_excus_forc',
  'excus_forc_daughter',
  'forc_daughter_feel',
  'daughter_feel_comfort',
  'feel_comfort_girlfriend',
  'comfort_girlfriend_got',
  'girlfriend_got_involv',
  'got_involv_call',
  'involv_call_grate',
  'call_grate_asshol',
  'grate_asshol_told',
  'asshol_told_us',
  'told_us_week',
  'us_week_move',
  'week_move_tri',
  'move_tri_speak',
  'tri_speak_brother',
  'speak_brother_girlfriend',
  'brother_girlfriend_decis',
  'girlfriend_decis_shut',
  'decis_shut_say',
  'shut_say_wrong',
  'say_wrong_tell',
  'wrong_tell_instead',
  'tell_instead_hold',
  'instead_hold_daughter',
  'hold_daughter_account',
  'daughter_account_lack',
  'account_lack_support'],
 ['love',
  'son',
  'anyth',
  'rais',
  'respect',
  'everyon',
  'regardless',
  'differ',
  'year',
  'old',
  'year',
  'old',
  'great',
  'year',
  'old',
  'howev',
  'bulli',
  'gay',
  'boy',
  'class',
  'less',
  'happi',
  'found',
  'cousin',
  'told',
  'gave',
  'chanc',
  'invit',
  'dinner',
  'apolog',
  'refus',
  'say',
  'sorri',
  'get',
  'embarrass',
  'told',
  'front',
  'friend',
  'care',
  'happi',
  'treatment',
  'end',
  'ground',
  'seem',
  'affect',
  'clearli',
  'learn',
  'lesson',
  'contact',
  'famili',
  'let',
  'know',
  'go',
  'agre',
  'meet',
  'dinner',
  'gave',
  'son',
  'chanc',
  'apolog',
  'got',
  'extrem',
  'upsetangri',
  'mayb',
  'said',
  'nobodi',
  'even',
  'like',
  'word',
  'cours',
  'apolog',
  'famili',
  'left',
  'son',
  'got',
  'big',
  'argument',
  'left',
  'said',
  'sorri',
  'nobodi',
  'like',
  'kid',
  'told',
  'like',
  'much',
  'right',
  'either',
  'got',
  'quiet',
  'apolog',
  'went',
  'room',
  'ive',
  'told',
  'apolog',
  'student',
  'bulli',
  'ground',
  'lift',
  'still',
  'hide',
  'room',
  'rare',
  'speak',
  'ex',
  'husband',
  'say',
  'told',
  'like',
  'excus',
  'cours',
  'behaviour',
  'reason',
  'togeth',
  'cant',
  'help',
  'miser',
  'ah',
  'understand',
  'may',
  'nicest',
  'thing',
  'hear',
  'listen',
  'word',
  'say',
  'downright',
  'bulli',
  'aita',
  'lot',
  'happen',
  'sinc',
  'made',
  'post',
  'figur',
  'id',
  'pop',
  'let',
  'peopl',
  'know',
  'unfold',
  'ive',
  'littl',
  'chit',
  'chat',
  'son',
  'get',
  'bottom',
  'behaviour',
  'turn',
  'hed',
  'ask',
  'victim',
  'date',
  'turn',
  'instead',
  'act',
  'like',
  'normal',
  'human',
  'decid',
  'spite',
  'start',
  'bulli',
  'boy',
  'still',
  'make',
  'weve',
  'talk',
  'consent',
  'fact',
  'nobodi',
  'oblig',
  'date',
  'know',
  'understand',
  'hurt',
  'spoken',
  'im',
  'ex',
  'also',
  'openli',
  'homophob',
  'longer',
  'want',
  'visit',
  'weekend',
  'hope',
  'father',
  'longer',
  'make',
  'great',
  'impress',
  'also',
  'want',
  'thank',
  'everyon',
  'kind',
  'word',
  'mama',
  'thought',
  'shed',
  'handl',
  'tough',
  'situat',
  'poorli',
  'appreci',
  'kind',
  'love_son',
  'son_anyth',
  'anyth_rais',
  'rais_respect',
  'respect_everyon',
  'everyon_regardless',
  'regardless_differ',
  'differ_year',
  'year_old',
  'old_year',
  'year_old',
  'old_great',
  'great_year',
  'year_old',
  'old_howev',
  'howev_bulli',
  'bulli_gay',
  'gay_boy',
  'boy_class',
  'class_less',
  'less_happi',
  'happi_found',
  'found_cousin',
  'cousin_told',
  'told_gave',
  'gave_chanc',
  'chanc_invit',
  'invit_dinner',
  'dinner_apolog',
  'apolog_refus',
  'refus_say',
  'say_sorri',
  'sorri_get',
  'get_embarrass',
  'embarrass_told',
  'told_front',
  'front_friend',
  'friend_care',
  'care_happi',
  'happi_treatment',
  'treatment_end',
  'end_ground',
  'ground_seem',
  'seem_affect',
  'affect_clearli',
  'clearli_learn',
  'learn_lesson',
  'lesson_contact',
  'contact_famili',
  'famili_let',
  'let_know',
  'know_go',
  'go_agre',
  'agre_meet',
  'meet_dinner',
  'dinner_gave',
  'gave_son',
  'son_chanc',
  'chanc_apolog',
  'apolog_got',
  'got_extrem',
  'extrem_upsetangri',
  'upsetangri_mayb',
  'mayb_said',
  'said_nobodi',
  'nobodi_even',
  'even_like',
  'like_word',
  'word_cours',
  'cours_apolog',
  'apolog_famili',
  'famili_left',
  'left_son',
  'son_got',
  'got_big',
  'big_argument',
  'argument_left',
  'left_said',
  'said_sorri',
  'sorri_nobodi',
  'nobodi_like',
  'like_kid',
  'kid_told',
  'told_like',
  'like_much',
  'much_right',
  'right_either',
  'either_got',
  'got_quiet',
  'quiet_apolog',
  'apolog_went',
  'went_room',
  'room_ive',
  'ive_told',
  'told_apolog',
  'apolog_student',
  'student_bulli',
  'bulli_ground',
  'ground_lift',
  'lift_still',
  'still_hide',
  'hide_room',
  'room_rare',
  'rare_speak',
  'speak_ex',
  'ex_husband',
  'husband_say',
  'say_told',
  'told_like',
  'like_excus',
  'excus_cours',
  'cours_behaviour',
  'behaviour_reason',
  'reason_togeth',
  'togeth_cant',
  'cant_help',
  'help_miser',
  'miser_ah',
  'ah_understand',
  'understand_may',
  'may_nicest',
  'nicest_thing',
  'thing_hear',
  'hear_listen',
  'listen_word',
  'word_say',
  'say_downright',
  'downright_bulli',
  'bulli_aita',
  'aita_lot',
  'lot_happen',
  'happen_sinc',
  'sinc_made',
  'made_post',
  'post_figur',
  'figur_id',
  'id_pop',
  'pop_let',
  'let_peopl',
  'peopl_know',
  'know_unfold',
  'unfold_ive',
  'ive_littl',
  'littl_chit',
  'chit_chat',
  'chat_son',
  'son_get',
  'get_bottom',
  'bottom_behaviour',
  'behaviour_turn',
  'turn_hed',
  'hed_ask',
  'ask_victim',
  'victim_date',
  'date_turn',
  'turn_instead',
  'instead_act',
  'act_like',
  'like_normal',
  'normal_human',
  'human_decid',
  'decid_spite',
  'spite_start',
  'start_bulli',
  'bulli_boy',
  'boy_still',
  'still_make',
  'make_weve',
  'weve_talk',
  'talk_consent',
  'consent_fact',
  'fact_nobodi',
  'nobodi_oblig',
  'oblig_date',
  'date_know',
  'know_understand',
  'understand_hurt',
  'hurt_spoken',
  'spoken_im',
  'im_ex',
  'ex_also',
  'also_openli',
  'openli_homophob',
  'homophob_longer',
  'longer_want',
  'want_visit',
  'visit_weekend',
  'weekend_hope',
  'hope_father',
  'father_longer',
  'longer_make',
  'make_great',
  'great_impress',
  'impress_also',
  'also_want',
  'want_thank',
  'thank_everyon',
  'everyon_kind',
  'kind_word',
  'word_mama',
  'mama_thought',
  'thought_shed',
  'shed_handl',
  'handl_tough',
  'tough_situat',
  'situat_poorli',
  'poorli_appreci',
  'appreci_kind',
  'love_son_anyth',
  'son_anyth_rais',
  'anyth_rais_respect',
  'rais_respect_everyon',
  'respect_everyon_regardless',
  'everyon_regardless_differ',
  'regardless_differ_year',
  'differ_year_old',
  'year_old_year',
  'old_year_old',
  'year_old_great',
  'old_great_year',
  'great_year_old',
  'year_old_howev',
  'old_howev_bulli',
  'howev_bulli_gay',
  'bulli_gay_boy',
  'gay_boy_class',
  'boy_class_less',
  'class_less_happi',
  'less_happi_found',
  'happi_found_cousin',
  'found_cousin_told',
  'cousin_told_gave',
  'told_gave_chanc',
  'gave_chanc_invit',
  'chanc_invit_dinner',
  'invit_dinner_apolog',
  'dinner_apolog_refus',
  'apolog_refus_say',
  'refus_say_sorri',
  'say_sorri_get',
  'sorri_get_embarrass',
  'get_embarrass_told',
  'embarrass_told_front',
  'told_front_friend',
  'front_friend_care',
  'friend_care_happi',
  'care_happi_treatment',
  'happi_treatment_end',
  'treatment_end_ground',
  'end_ground_seem',
  'ground_seem_affect',
  'seem_affect_clearli',
  'affect_clearli_learn',
  'clearli_learn_lesson',
  'learn_lesson_contact',
  'lesson_contact_famili',
  'contact_famili_let',
  'famili_let_know',
  'let_know_go',
  'know_go_agre',
  'go_agre_meet',
  'agre_meet_dinner',
  'meet_dinner_gave',
  'dinner_gave_son',
  'gave_son_chanc',
  'son_chanc_apolog',
  'chanc_apolog_got',
  'apolog_got_extrem',
  'got_extrem_upsetangri',
  'extrem_upsetangri_mayb',
  'upsetangri_mayb_said',
  'mayb_said_nobodi',
  'said_nobodi_even',
  'nobodi_even_like',
  'even_like_word',
  'like_word_cours',
  'word_cours_apolog',
  'cours_apolog_famili',
  'apolog_famili_left',
  'famili_left_son',
  'left_son_got',
  'son_got_big',
  'got_big_argument',
  'big_argument_left',
  'argument_left_said',
  'left_said_sorri',
  'said_sorri_nobodi',
  'sorri_nobodi_like',
  'nobodi_like_kid',
  'like_kid_told',
  'kid_told_like',
  'told_like_much',
  'like_much_right',
  'much_right_either',
  'right_either_got',
  'either_got_quiet',
  'got_quiet_apolog',
  'quiet_apolog_went',
  'apolog_went_room',
  'went_room_ive',
  'room_ive_told',
  'ive_told_apolog',
  'told_apolog_student',
  'apolog_student_bulli',
  'student_bulli_ground',
  'bulli_ground_lift',
  'ground_lift_still',
  'lift_still_hide',
  'still_hide_room',
  'hide_room_rare',
  'room_rare_speak',
  'rare_speak_ex',
  'speak_ex_husband',
  'ex_husband_say',
  'husband_say_told',
  'say_told_like',
  'told_like_excus',
  'like_excus_cours',
  'excus_cours_behaviour',
  'cours_behaviour_reason',
  'behaviour_reason_togeth',
  'reason_togeth_cant',
  'togeth_cant_help',
  'cant_help_miser',
  'help_miser_ah',
  'miser_ah_understand',
  'ah_understand_may',
  'understand_may_nicest',
  'may_nicest_thing',
  'nicest_thing_hear',
  'thing_hear_listen',
  'hear_listen_word',
  'listen_word_say',
  'word_say_downright',
  'say_downright_bulli',
  'downright_bulli_aita',
  'bulli_aita_lot',
  'aita_lot_happen',
  'lot_happen_sinc',
  'happen_sinc_made',
  'sinc_made_post',
  'made_post_figur',
  'post_figur_id',
  'figur_id_pop',
  'id_pop_let',
  'pop_let_peopl',
  'let_peopl_know',
  'peopl_know_unfold',
  'know_unfold_ive',
  'unfold_ive_littl',
  'ive_littl_chit',
  'littl_chit_chat',
  'chit_chat_son',
  'chat_son_get',
  'son_get_bottom',
  'get_bottom_behaviour',
  'bottom_behaviour_turn',
  'behaviour_turn_hed',
  'turn_hed_ask',
  'hed_ask_victim',
  'ask_victim_date',
  'victim_date_turn',
  'date_turn_instead',
  'turn_instead_act',
  'instead_act_like',
  'act_like_normal',
  'like_normal_human',
  'normal_human_decid',
  'human_decid_spite',
  'decid_spite_start',
  'spite_start_bulli',
  'start_bulli_boy',
  'bulli_boy_still',
  'boy_still_make',
  'still_make_weve',
  'make_weve_talk',
  'weve_talk_consent',
  'talk_consent_fact',
  'consent_fact_nobodi',
  'fact_nobodi_oblig',
  'nobodi_oblig_date',
  'oblig_date_know',
  'date_know_understand',
  'know_understand_hurt',
  'understand_hurt_spoken',
  'hurt_spoken_im',
  'spoken_im_ex',
  'im_ex_also',
  'ex_also_openli',
  'also_openli_homophob',
  'openli_homophob_longer',
  'homophob_longer_want',
  'longer_want_visit',
  'want_visit_weekend',
  'visit_weekend_hope',
  'weekend_hope_father',
  'hope_father_longer',
  'father_longer_make',
  'longer_make_great',
  'make_great_impress',
  'great_impress_also',
  'impress_also_want',
  'also_want_thank',
  'want_thank_everyon',
  'thank_everyon_kind',
  'everyon_kind_word',
  'kind_word_mama',
  'word_mama_thought',
  'mama_thought_shed',
  'thought_shed_handl',
  'shed_handl_tough',
  'handl_tough_situat',
  'tough_situat_poorli',
  'situat_poorli_appreci',
  'poorli_appreci_kind'],
 ['mother',
  'two',
  'wonder',
  'daughter',
  'sophia',
  'nichol',
  'im',
  'realli',
  'sure',
  'cruel',
  'toward',
  'sophia',
  'decis',
  'nichol',
  'got',
  'marri',
  'year',
  'sophia',
  'first',
  'child',
  'first',
  'grandchild',
  'ive',
  'good',
  'relationship',
  'daughter',
  'ive',
  'alway',
  'tri',
  'make',
  'sure',
  'neither',
  'felt',
  'like',
  'favor',
  'admit',
  'rough',
  'patch',
  'sophia',
  'nichol',
  'got',
  'engag',
  'ask',
  'would',
  'walk',
  'aisl',
  'sinc',
  'father',
  'never',
  'life',
  'ask',
  'uncl',
  'brother',
  'said',
  'want',
  'happi',
  'agre',
  'help',
  'plan',
  'wed',
  'daughter',
  'sophia',
  'announc',
  'pregnanc',
  'around',
  'begin',
  'year',
  'time',
  'pan',
  'would',
  'due',
  'nichol',
  'wed',
  'ask',
  'would',
  'deliveri',
  'room',
  'stay',
  'husband',
  'week',
  'babi',
  'born',
  'help',
  'excit',
  'sinc',
  'alreadi',
  'live',
  'town',
  'see',
  'almost',
  'daili',
  'stay',
  'problem',
  'instead',
  'sophia',
  'went',
  'labor',
  'almost',
  'week',
  'earli',
  'afternoon',
  'nichol',
  'wed',
  'miss',
  'sophia',
  'first',
  'call',
  'alreadi',
  'almost',
  'hour',
  'away',
  'nichol',
  'live',
  'help',
  'set',
  'thing',
  'last',
  'minut',
  'errand',
  'help',
  'call',
  'back',
  'found',
  'labor',
  'want',
  'get',
  'soon',
  'possibl',
  'told',
  'sophia',
  'would',
  'best',
  'could',
  'would',
  'let',
  'know',
  'immedi',
  'id',
  'explain',
  'situat',
  'nichol',
  'understand',
  'also',
  'want',
  'understood',
  'sophia',
  'want',
  'nichol',
  'abl',
  'move',
  'ceremoni',
  'morn',
  'make',
  'quick',
  'ish',
  'minut',
  'ceremoni',
  'would',
  'hour',
  'gap',
  'ceremoni',
  'recept',
  'thought',
  'good',
  'compromis',
  'would',
  'let',
  'girl',
  'call',
  'sophia',
  'want',
  'get',
  'night',
  'ask',
  'husband',
  'said',
  'ye',
  'ask',
  'pleas',
  'consid',
  'second',
  'choic',
  'could',
  'get',
  'sophia',
  'got',
  'upset',
  'told',
  'forget',
  'got',
  'hospit',
  'earli',
  'next',
  'afternoon',
  'miss',
  'birth',
  'coupl',
  'hour',
  'sophia',
  'mad',
  'want',
  'come',
  'move',
  'room',
  'thought',
  'understand',
  'would',
  'talk',
  'soon',
  'coupl',
  'week',
  'tri',
  'apolog',
  'ive',
  'talk',
  'son-in-law',
  'said',
  'theyr',
  'mad',
  'chose',
  'ditch',
  'sophia',
  'need',
  'parti',
  'ask',
  'outsid',
  'perspect',
  'wrong',
  'go',
  'hospit',
  'right',
  'away',
  'aita',
  'edit',
  'stay',
  'nichol',
  'recept',
  'left',
  'immedi',
  'follow',
  'ceremoni',
  'still',
  'wait',
  'hour',
  'end',
  'wed',
  'ceremoni',
  'morn',
  'recept',
  'afternoon',
  'could',
  'push',
  'back',
  'later',
  'day',
  'due',
  'recept',
  'venu',
  'event',
  'even',
  'mother_two',
  'two_wonder',
  'wonder_daughter',
  'daughter_sophia',
  'sophia_nichol',
  'nichol_im',
  'im_realli',
  'realli_sure',
  'sure_cruel',
  'cruel_toward',
  'toward_sophia',
  'sophia_decis',
  'decis_nichol',
  'nichol_got',
  'got_marri',
  'marri_year',
  'year_sophia',
  'sophia_first',
  'first_child',
  'child_first',
  'first_grandchild',
  'grandchild_ive',
  'ive_good',
  'good_relationship',
  'relationship_daughter',
  'daughter_ive',
  'ive_alway',
  'alway_tri',
  'tri_make',
  'make_sure',
  'sure_neither',
  'neither_felt',
  'felt_like',
  'like_favor',
  'favor_admit',
  'admit_rough',
  'rough_patch',
  'patch_sophia',
  'sophia_nichol',
  'nichol_got',
  'got_engag',
  'engag_ask',
  'ask_would',
  'would_walk',
  'walk_aisl',
  'aisl_sinc',
  'sinc_father',
  'father_never',
  'never_life',
  'life_ask',
  'ask_uncl',
  'uncl_brother',
  'brother_said',
  'said_want',
  'want_happi',
  'happi_agre',
  'agre_help',
  'help_plan',
  'plan_wed',
  'wed_daughter',
  'daughter_sophia',
  'sophia_announc',
  'announc_pregnanc',
  'pregnanc_around',
  'around_begin',
  'begin_year',
  'year_time',
  'time_pan',
  'pan_would',
  'would_due',
  'due_nichol',
  'nichol_wed',
  'wed_ask',
  'ask_would',
  'would_deliveri',
  'deliveri_room',
  'room_stay',
  'stay_husband',
  'husband_week',
  'week_babi',
  'babi_born',
  'born_help',
  'help_excit',
  'excit_sinc',
  'sinc_alreadi',
  'alreadi_live',
  'live_town',
  'town_see',
  'see_almost',
  'almost_daili',
  'daili_stay',
  'stay_problem',
  'problem_instead',
  'instead_sophia',
  'sophia_went',
  'went_labor',
  'labor_almost',
  'almost_week',
  'week_earli',
  'earli_afternoon',
  'afternoon_nichol',
  'nichol_wed',
  'wed_miss',
  'miss_sophia',
  'sophia_first',
  'first_call',
  'call_alreadi',
  'alreadi_almost',
  'almost_hour',
  'hour_away',
  'away_nichol',
  'nichol_live',
  'live_help',
  'help_set',
  'set_thing',
  'thing_last',
  'last_minut',
  'minut_errand',
  'errand_help',
  'help_call',
  'call_back',
  'back_found',
  'found_labor',
  'labor_want',
  'want_get',
  'get_soon',
  'soon_possibl',
  'possibl_told',
  'told_sophia',
  'sophia_would',
  'would_best',
  'best_could',
  'could_would',
  'would_let',
  'let_know',
  'know_immedi',
  'immedi_id',
  'id_explain',
  'explain_situat',
  'situat_nichol',
  'nichol_understand',
  'understand_also',
  'also_want',
  'want_understood',
  'understood_sophia',
  'sophia_want',
  'want_nichol',
  'nichol_abl',
  'abl_move',
  'move_ceremoni',
  'ceremoni_morn',
  'morn_make',
  'make_quick',
  'quick_ish',
  'ish_minut',
  'minut_ceremoni',
  'ceremoni_would',
  'would_hour',
  'hour_gap',
  'gap_ceremoni',
  'ceremoni_recept',
  'recept_thought',
  'thought_good',
  'good_compromis',
  'compromis_would',
  'would_let',
  'let_girl',
  'girl_call',
  'call_sophia',
  'sophia_want',
  'want_get',
  'get_night',
  'night_ask',
  'ask_husband',
  'husband_said',
  'said_ye',
  'ye_ask',
  'ask_pleas',
  'pleas_consid',
  'consid_second',
  'second_choic',
  'choic_could',
  'could_get',
  'get_sophia',
  'sophia_got',
  'got_upset',
  'upset_told',
  'told_forget',
  'forget_got',
  'got_hospit',
  'hospit_earli',
  'earli_next',
  'next_afternoon',
  'afternoon_miss',
  'miss_birth',
  'birth_coupl',
  'coupl_hour',
  'hour_sophia',
  'sophia_mad',
  'mad_want',
  'want_come',
  'come_move',
  'move_room',
  'room_thought',
  'thought_understand',
  'understand_would',
  'would_talk',
  'talk_soon',
  'soon_coupl',
  'coupl_week',
  'week_tri',
  'tri_apolog',
  'apolog_ive',
  'ive_talk',
  'talk_son-in-law',
  'son-in-law_said',
  'said_theyr',
  'theyr_mad',
  'mad_chose',
  'chose_ditch',
  'ditch_sophia',
  'sophia_need',
  'need_parti',
  'parti_ask',
  'ask_outsid',
  'outsid_perspect',
  'perspect_wrong',
  'wrong_go',
  'go_hospit',
  'hospit_right',
  'right_away',
  'away_aita',
  'aita_edit',
  'edit_stay',
  'stay_nichol',
  'nichol_recept',
  'recept_left',
  'left_immedi',
  'immedi_follow',
  'follow_ceremoni',
  'ceremoni_still',
  'still_wait',
  'wait_hour',
  'hour_end',
  'end_wed',
  'wed_ceremoni',
  'ceremoni_morn',
  'morn_recept',
  'recept_afternoon',
  'afternoon_could',
  'could_push',
  'push_back',
  'back_later',
  'later_day',
  'day_due',
  'due_recept',
  'recept_venu',
  'venu_event',
  'event_even',
  'mother_two_wonder',
  'two_wonder_daughter',
  'wonder_daughter_sophia',
  'daughter_sophia_nichol',
  'sophia_nichol_im',
  'nichol_im_realli',
  'im_realli_sure',
  'realli_sure_cruel',
  'sure_cruel_toward',
  'cruel_toward_sophia',
  'toward_sophia_decis',
  'sophia_decis_nichol',
  'decis_nichol_got',
  'nichol_got_marri',
  'got_marri_year',
  'marri_year_sophia',
  'year_sophia_first',
  'sophia_first_child',
  'first_child_first',
  'child_first_grandchild',
  'first_grandchild_ive',
  'grandchild_ive_good',
  'ive_good_relationship',
  'good_relationship_daughter',
  'relationship_daughter_ive',
  'daughter_ive_alway',
  'ive_alway_tri',
  'alway_tri_make',
  'tri_make_sure',
  'make_sure_neither',
  'sure_neither_felt',
  'neither_felt_like',
  'felt_like_favor',
  'like_favor_admit',
  'favor_admit_rough',
  'admit_rough_patch',
  'rough_patch_sophia',
  'patch_sophia_nichol',
  'sophia_nichol_got',
  'nichol_got_engag',
  'got_engag_ask',
  'engag_ask_would',
  'ask_would_walk',
  'would_walk_aisl',
  'walk_aisl_sinc',
  'aisl_sinc_father',
  'sinc_father_never',
  'father_never_life',
  'never_life_ask',
  'life_ask_uncl',
  'ask_uncl_brother',
  'uncl_brother_said',
  'brother_said_want',
  'said_want_happi',
  'want_happi_agre',
  'happi_agre_help',
  'agre_help_plan',
  'help_plan_wed',
  'plan_wed_daughter',
  'wed_daughter_sophia',
  'daughter_sophia_announc',
  'sophia_announc_pregnanc',
  'announc_pregnanc_around',
  'pregnanc_around_begin',
  'around_begin_year',
  'begin_year_time',
  'year_time_pan',
  'time_pan_would',
  'pan_would_due',
  'would_due_nichol',
  'due_nichol_wed',
  'nichol_wed_ask',
  'wed_ask_would',
  'ask_would_deliveri',
  'would_deliveri_room',
  'deliveri_room_stay',
  'room_stay_husband',
  'stay_husband_week',
  'husband_week_babi',
  'week_babi_born',
  'babi_born_help',
  'born_help_excit',
  'help_excit_sinc',
  'excit_sinc_alreadi',
  'sinc_alreadi_live',
  'alreadi_live_town',
  'live_town_see',
  'town_see_almost',
  'see_almost_daili',
  'almost_daili_stay',
  'daili_stay_problem',
  'stay_problem_instead',
  'problem_instead_sophia',
  'instead_sophia_went',
  'sophia_went_labor',
  'went_labor_almost',
  'labor_almost_week',
  'almost_week_earli',
  'week_earli_afternoon',
  'earli_afternoon_nichol',
  'afternoon_nichol_wed',
  'nichol_wed_miss',
  'wed_miss_sophia',
  'miss_sophia_first',
  'sophia_first_call',
  'first_call_alreadi',
  'call_alreadi_almost',
  'alreadi_almost_hour',
  'almost_hour_away',
  'hour_away_nichol',
  'away_nichol_live',
  'nichol_live_help',
  'live_help_set',
  'help_set_thing',
  'set_thing_last',
  'thing_last_minut',
  'last_minut_errand',
  'minut_errand_help',
  'errand_help_call',
  'help_call_back',
  'call_back_found',
  'back_found_labor',
  'found_labor_want',
  'labor_want_get',
  'want_get_soon',
  'get_soon_possibl',
  'soon_possibl_told',
  'possibl_told_sophia',
  'told_sophia_would',
  'sophia_would_best',
  'would_best_could',
  'best_could_would',
  'could_would_let',
  'would_let_know',
  'let_know_immedi',
  'know_immedi_id',
  'immedi_id_explain',
  'id_explain_situat',
  'explain_situat_nichol',
  'situat_nichol_understand',
  'nichol_understand_also',
  'understand_also_want',
  'also_want_understood',
  'want_understood_sophia',
  'understood_sophia_want',
  'sophia_want_nichol',
  'want_nichol_abl',
  'nichol_abl_move',
  'abl_move_ceremoni',
  'move_ceremoni_morn',
  'ceremoni_morn_make',
  'morn_make_quick',
  'make_quick_ish',
  'quick_ish_minut',
  'ish_minut_ceremoni',
  'minut_ceremoni_would',
  'ceremoni_would_hour',
  'would_hour_gap',
  'hour_gap_ceremoni',
  'gap_ceremoni_recept',
  'ceremoni_recept_thought',
  'recept_thought_good',
  'thought_good_compromis',
  'good_compromis_would',
  'compromis_would_let',
  'would_let_girl',
  'let_girl_call',
  'girl_call_sophia',
  'call_sophia_want',
  'sophia_want_get',
  'want_get_night',
  'get_night_ask',
  'night_ask_husband',
  'ask_husband_said',
  'husband_said_ye',
  'said_ye_ask',
  'ye_ask_pleas',
  'ask_pleas_consid',
  'pleas_consid_second',
  'consid_second_choic',
  'second_choic_could',
  'choic_could_get',
  'could_get_sophia',
  'get_sophia_got',
  'sophia_got_upset',
  'got_upset_told',
  'upset_told_forget',
  'told_forget_got',
  'forget_got_hospit',
  'got_hospit_earli',
  'hospit_earli_next',
  'earli_next_afternoon',
  'next_afternoon_miss',
  'afternoon_miss_birth',
  'miss_birth_coupl',
  'birth_coupl_hour',
  'coupl_hour_sophia',
  'hour_sophia_mad',
  'sophia_mad_want',
  'mad_want_come',
  'want_come_move',
  'come_move_room',
  'move_room_thought',
  'room_thought_understand',
  'thought_understand_would',
  'understand_would_talk',
  'would_talk_soon',
  'talk_soon_coupl',
  'soon_coupl_week',
  'coupl_week_tri',
  'week_tri_apolog',
  'tri_apolog_ive',
  'apolog_ive_talk',
  'ive_talk_son-in-law',
  'talk_son-in-law_said',
  'son-in-law_said_theyr',
  'said_theyr_mad',
  'theyr_mad_chose',
  'mad_chose_ditch',
  'chose_ditch_sophia',
  'ditch_sophia_need',
  'sophia_need_parti',
  'need_parti_ask',
  'parti_ask_outsid',
  'ask_outsid_perspect',
  'outsid_perspect_wrong',
  'perspect_wrong_go',
  'wrong_go_hospit',
  'go_hospit_right',
  'hospit_right_away',
  'right_away_aita',
  'away_aita_edit',
  'aita_edit_stay',
  'edit_stay_nichol',
  'stay_nichol_recept',
  'nichol_recept_left',
  'recept_left_immedi',
  'left_immedi_follow',
  'immedi_follow_ceremoni',
  'follow_ceremoni_still',
  'ceremoni_still_wait',
  'still_wait_hour',
  'wait_hour_end',
  'hour_end_wed',
  'end_wed_ceremoni',
  'wed_ceremoni_morn',
  'ceremoni_morn_recept',
  'morn_recept_afternoon',
  'recept_afternoon_could',
  'afternoon_could_push',
  'could_push_back',
  'push_back_later',
  'back_later_day',
  'later_day_due',
  'day_due_recept',
  'due_recept_venu',
  'recept_venu_event',
  'venu_event_even'],
 ['daughter',
  'recent',
  'decid',
  'go',
  'back',
  'colleg',
  'take',
  'year',
  'drop',
  'colleg',
  'month',
  'say',
  'adamantli',
  'advis',
  'end',
  'move',
  'boyfriend',
  'start',
  'work',
  'famili',
  'restaur',
  'busi',
  'still',
  'littl',
  'north',
  'set',
  'asid',
  'account',
  'set',
  'asid',
  'tuition',
  'money',
  'wife',
  'want',
  'remodel',
  'kitchen',
  'decid',
  'go',
  'ahead',
  'money',
  'well',
  'daughter',
  'decid',
  'go',
  'back',
  'colleg',
  'work',
  'boyfriend',
  'like',
  'job',
  'follow',
  'shock',
  'use',
  'colleg',
  'money',
  'toward',
  'hous',
  'even',
  'though',
  'convers',
  'left',
  'ask',
  'could',
  'access',
  'colleg',
  'tuition',
  'account',
  'move',
  'boyfriend',
  'explicitli',
  'said',
  'said',
  'save',
  'tuition',
  'noth',
  'els',
  'left',
  'wed',
  'use',
  'someth',
  'els',
  'said',
  'thought',
  'bluf',
  'actual',
  'mean',
  'need',
  'help',
  'pay',
  'colleg',
  'sinc',
  'still',
  'pay',
  'younger',
  'brother',
  'yearli',
  'tuition',
  'told',
  'need',
  'work',
  'part',
  'time',
  'go',
  'cheaper',
  'place',
  'like',
  'commun',
  'colleg',
  'rather',
  'state',
  'school',
  'angri',
  'ignor',
  'mother',
  'phone',
  'call',
  'mother',
  'said',
  'mayb',
  'still',
  'help',
  'financi',
  'near',
  'retir',
  'age',
  'littl',
  'behind',
  'retir',
  'goal',
  'want',
  'take',
  'away',
  'save',
  'daughter',
  'made',
  'bad',
  'choic',
  'feel',
  'like',
  'given',
  'good',
  'altern',
  'even',
  'offer',
  'let',
  'stay',
  'hous',
  'free',
  'rent',
  'focu',
  'pay',
  'colleg',
  'aita',
  'daughter_recent',
  'recent_decid',
  'decid_go',
  'go_back',
  'back_colleg',
  'colleg_take',
  'take_year',
  'year_drop',
  'drop_colleg',
  'colleg_month',
  'month_say',
  'say_adamantli',
  'adamantli_advis',
  'advis_end',
  'end_move',
  'move_boyfriend',
  'boyfriend_start',
  'start_work',
  'work_famili',
  'famili_restaur',
  'restaur_busi',
  'busi_still',
  'still_littl',
  'littl_north',
  'north_set',
  'set_asid',
  'asid_account',
  'account_set',
  'set_asid',
  'asid_tuition',
  'tuition_money',
  'money_wife',
  'wife_want',
  'want_remodel',
  'remodel_kitchen',
  'kitchen_decid',
  'decid_go',
  'go_ahead',
  'ahead_money',
  'money_well',
  'well_daughter',
  'daughter_decid',
  'decid_go',
  'go_back',
  'back_colleg',
  'colleg_work',
  'work_boyfriend',
  'boyfriend_like',
  'like_job',
  'job_follow',
  'follow_shock',
  'shock_use',
  'use_colleg',
  'colleg_money',
  'money_toward',
  'toward_hous',
  'hous_even',
  'even_though',
  'though_convers',
  'convers_left',
  'left_ask',
  'ask_could',
  'could_access',
  'access_colleg',
  'colleg_tuition',
  'tuition_account',
  'account_move',
  'move_boyfriend',
  'boyfriend_explicitli',
  'explicitli_said',
  'said_said',
  'said_save',
  'save_tuition',
  'tuition_noth',
  'noth_els',
  'els_left',
  'left_wed',
  'wed_use',
  'use_someth',
  'someth_els',
  'els_said',
  'said_thought',
  'thought_bluf',
  'bluf_actual',
  'actual_mean',
  'mean_need',
  'need_help',
  'help_pay',
  'pay_colleg',
  'colleg_sinc',
  'sinc_still',
  'still_pay',
  'pay_younger',
  'younger_brother',
  'brother_yearli',
  'yearli_tuition',
  'tuition_told',
  'told_need',
  'need_work',
  'work_part',
  'part_time',
  'time_go',
  'go_cheaper',
  'cheaper_place',
  'place_like',
  'like_commun',
  'commun_colleg',
  'colleg_rather',
  'rather_state',
  'state_school',
  'school_angri',
  'angri_ignor',
  'ignor_mother',
  'mother_phone',
  'phone_call',
  'call_mother',
  'mother_said',
  'said_mayb',
  'mayb_still',
  'still_help',
  'help_financi',
  'financi_near',
  'near_retir',
  'retir_age',
  'age_littl',
  'littl_behind',
  'behind_retir',
  'retir_goal',
  'goal_want',
  'want_take',
  'take_away',
  'away_save',
  'save_daughter',
  'daughter_made',
  'made_bad',
  'bad_choic',
  'choic_feel',
  'feel_like',
  'like_given',
  'given_good',
  'good_altern',
  'altern_even',
  'even_offer',
  'offer_let',
  'let_stay',
  'stay_hous',
  'hous_free',
  'free_rent',
  'rent_focu',
  'focu_pay',
  'pay_colleg',
  'colleg_aita',
  'daughter_recent_decid',
  'recent_decid_go',
  'decid_go_back',
  'go_back_colleg',
  'back_colleg_take',
  'colleg_take_year',
  'take_year_drop',
  'year_drop_colleg',
  'drop_colleg_month',
  'colleg_month_say',
  'month_say_adamantli',
  'say_adamantli_advis',
  'adamantli_advis_end',
  'advis_end_move',
  'end_move_boyfriend',
  'move_boyfriend_start',
  'boyfriend_start_work',
  'start_work_famili',
  'work_famili_restaur',
  'famili_restaur_busi',
  'restaur_busi_still',
  'busi_still_littl',
  'still_littl_north',
  'littl_north_set',
  'north_set_asid',
  'set_asid_account',
  'asid_account_set',
  'account_set_asid',
  'set_asid_tuition',
  'asid_tuition_money',
  'tuition_money_wife',
  'money_wife_want',
  'wife_want_remodel',
  'want_remodel_kitchen',
  'remodel_kitchen_decid',
  'kitchen_decid_go',
  'decid_go_ahead',
  'go_ahead_money',
  'ahead_money_well',
  'money_well_daughter',
  'well_daughter_decid',
  'daughter_decid_go',
  'decid_go_back',
  'go_back_colleg',
  'back_colleg_work',
  'colleg_work_boyfriend',
  'work_boyfriend_like',
  'boyfriend_like_job',
  'like_job_follow',
  'job_follow_shock',
  'follow_shock_use',
  'shock_use_colleg',
  'use_colleg_money',
  'colleg_money_toward',
  'money_toward_hous',
  'toward_hous_even',
  'hous_even_though',
  'even_though_convers',
  'though_convers_left',
  'convers_left_ask',
  'left_ask_could',
  'ask_could_access',
  'could_access_colleg',
  'access_colleg_tuition',
  'colleg_tuition_account',
  'tuition_account_move',
  'account_move_boyfriend',
  'move_boyfriend_explicitli',
  'boyfriend_explicitli_said',
  'explicitli_said_said',
  'said_said_save',
  'said_save_tuition',
  'save_tuition_noth',
  'tuition_noth_els',
  'noth_els_left',
  'els_left_wed',
  'left_wed_use',
  'wed_use_someth',
  'use_someth_els',
  'someth_els_said',
  'els_said_thought',
  'said_thought_bluf',
  'thought_bluf_actual',
  'bluf_actual_mean',
  'actual_mean_need',
  'mean_need_help',
  'need_help_pay',
  'help_pay_colleg',
  'pay_colleg_sinc',
  'colleg_sinc_still',
  'sinc_still_pay',
  'still_pay_younger',
  'pay_younger_brother',
  'younger_brother_yearli',
  'brother_yearli_tuition',
  'yearli_tuition_told',
  'tuition_told_need',
  'told_need_work',
  'need_work_part',
  'work_part_time',
  'part_time_go',
  'time_go_cheaper',
  'go_cheaper_place',
  'cheaper_place_like',
  'place_like_commun',
  'like_commun_colleg',
  'commun_colleg_rather',
  'colleg_rather_state',
  'rather_state_school',
  'state_school_angri',
  'school_angri_ignor',
  'angri_ignor_mother',
  'ignor_mother_phone',
  'mother_phone_call',
  'phone_call_mother',
  'call_mother_said',
  'mother_said_mayb',
  'said_mayb_still',
  'mayb_still_help',
  'still_help_financi',
  'help_financi_near',
  'financi_near_retir',
  'near_retir_age',
  'retir_age_littl',
  'age_littl_behind',
  'littl_behind_retir',
  'behind_retir_goal',
  'retir_goal_want',
  'goal_want_take',
  'want_take_away',
  'take_away_save',
  'away_save_daughter',
  'save_daughter_made',
  'daughter_made_bad',
  'made_bad_choic',
  'bad_choic_feel',
  'choic_feel_like',
  'feel_like_given',
  'like_given_good',
  'given_good_altern',
  'good_altern_even',
  'altern_even_offer',
  'even_offer_let',
  'offer_let_stay',
  'let_stay_hous',
  'stay_hous_free',
  'hous_free_rent',
  'free_rent_focu',
  'rent_focu_pay',
  'focu_pay_colleg',
  'pay_colleg_aita'],
 ['make',
  'brief',
  'issu',
  'dad',
  'mom',
  'die',
  'stepmom',
  'came',
  'along',
  'hate',
  'lot',
  'decis',
  'made',
  'left',
  'long',
  'last',
  'impact',
  'take',
  'colleg',
  'fund',
  'pay',
  'stepbroth',
  'surgeri',
  'unfortun',
  'dead',
  'die',
  'last',
  'year',
  'age',
  'chronic',
  'heart',
  'problem',
  'put',
  'distanc',
  'still',
  'see',
  'grandpar',
  'uncl',
  'aunt',
  'cousin',
  'etc',
  'holiday',
  'season',
  'come',
  'dad',
  'start',
  'talk',
  'rel',
  '-',
  'close',
  'rel',
  'went',
  'overwhelm',
  'feel',
  'lonli',
  'upcom',
  'divorc',
  'invit',
  'spend',
  'christma',
  'alon',
  'heartbroken',
  'respons',
  'told',
  'ill',
  'gladli',
  'spend',
  'christma',
  'give',
  'back',
  'colleg',
  'fund',
  'form',
  'christma',
  'gift',
  'like',
  'respons',
  'thought',
  'harsh',
  'rel',
  'said',
  'judgement',
  'petti',
  'greedi',
  'asshol',
  'say',
  'lost',
  'much',
  'said',
  'could',
  'save',
  'stepson',
  'stepbroth',
  'life',
  'describ',
  'nobl',
  'owe',
  'thing',
  'went',
  'home',
  'big',
  'argument',
  'uncl',
  'came',
  'said',
  'feel',
  'like',
  'shit',
  'mayb',
  'calmli',
  'polit',
  'declin',
  'invit',
  'said',
  'made',
  'feel',
  'guilti',
  'handl',
  'stepbroth',
  'situat',
  'edit',
  'took',
  'look',
  'see',
  'im',
  'get',
  'shitload',
  'comment',
  'answer',
  'question',
  '_the',
  'fund',
  'made',
  'dad',
  'mom',
  'sahm',
  'work',
  'agre',
  'fund',
  'would',
  'go',
  'toward',
  'educatiot',
  '_i',
  'abl',
  'get',
  'colleg',
  'start',
  'work',
  'pay',
  'way',
  'rel',
  'help',
  'uncl',
  'much',
  'said',
  'felt',
  'like',
  'shit',
  'berat',
  'hold',
  'special',
  'place',
  'life',
  'last',
  'person',
  'want',
  'disppoint',
  'let',
  'edit',
  'okay',
  'say',
  'fund',
  'mine',
  'whose',
  'fund',
  'lmfao',
  'realli',
  'get',
  'mayb',
  'expand',
  'exactli',
  'fund',
  'mine',
  'belong',
  'also',
  'think',
  'im',
  'cruel',
  'dad',
  'lost',
  'much',
  'tri',
  'go',
  'way',
  'mean',
  'malici',
  'matter',
  'fact',
  'want',
  'littl',
  'noth',
  'time',
  'play',
  'nice',
  'pleas',
  'uncl',
  'rel',
  'make_brief',
  'brief_issu',
  'issu_dad',
  'dad_mom',
  'mom_die',
  'die_stepmom',
  'stepmom_came',
  'came_along',
  'along_hate',
  'hate_lot',
  'lot_decis',
  'decis_made',
  'made_left',
  'left_long',
  'long_last',
  'last_impact',
  'impact_take',
  'take_colleg',
  'colleg_fund',
  'fund_pay',
  'pay_stepbroth',
  'stepbroth_surgeri',
  'surgeri_unfortun',
  'unfortun_dead',
  'dead_die',
  'die_last',
  'last_year',
  'year_age',
  'age_chronic',
  'chronic_heart',
  'heart_problem',
  'problem_put',
  'put_distanc',
  'distanc_still',
  'still_see',
  'see_grandpar',
  'grandpar_uncl',
  'uncl_aunt',
  'aunt_cousin',
  'cousin_etc',
  'etc_holiday',
  'holiday_season',
  'season_come',
  'come_dad',
  'dad_start',
  'start_talk',
  'talk_rel',
  'rel_-',
  '-_close',
  'close_rel',
  'rel_went',
  'went_overwhelm',
  'overwhelm_feel',
  'feel_lonli',
  'lonli_upcom',
  'upcom_divorc',
  'divorc_invit',
  'invit_spend',
  'spend_christma',
  'christma_alon',
  'alon_heartbroken',
  'heartbroken_respons',
  'respons_told',
  'told_ill',
  'ill_gladli',
  'gladli_spend',
  'spend_christma',
  'christma_give',
  'give_back',
  'back_colleg',
  'colleg_fund',
  'fund_form',
  'form_christma',
  'christma_gift',
  'gift_like',
  'like_respons',
  'respons_thought',
  'thought_harsh',
  'harsh_rel',
  'rel_said',
  'said_judgement',
  'judgement_petti',
  'petti_greedi',
  'greedi_asshol',
  'asshol_say',
  'say_lost',
  'lost_much',
  'much_said',
  'said_could',
  'could_save',
  'save_stepson',
  'stepson_stepbroth',
  'stepbroth_life',
  'life_describ',
  'describ_nobl',
  'nobl_owe',
  'owe_thing',
  'thing_went',
  'went_home',
  'home_big',
  'big_argument',
  'argument_uncl',
  'uncl_came',
  'came_said',
  'said_feel',
  'feel_like',
  'like_shit',
  'shit_mayb',
  'mayb_calmli',
  'calmli_polit',
  'polit_declin',
  'declin_invit',
  'invit_said',
  'said_made',
  'made_feel',
  'feel_guilti',
  'guilti_handl',
  'handl_stepbroth',
  'stepbroth_situat',
  'situat_edit',
  'edit_took',
  'took_look',
  'look_see',
  'see_im',
  'im_get',
  'get_shitload',
  'shitload_comment',
  'comment_answer',
  'answer_question',
  'question__the',
  '_the_fund',
  'fund_made',
  'made_dad',
  'dad_mom',
  'mom_sahm',
  'sahm_work',
  'work_agre',
  'agre_fund',
  'fund_would',
  'would_go',
  'go_toward',
  'toward_educatiot',
  'educatiot__i',
  '_i_abl',
  'abl_get',
  'get_colleg',
  'colleg_start',
  'start_work',
  'work_pay',
  'pay_way',
  'way_rel',
  'rel_help',
  'help_uncl',
  'uncl_much',
  'much_said',
  'said_felt',
  'felt_like',
  'like_shit',
  'shit_berat',
  'berat_hold',
  'hold_special',
  'special_place',
  'place_life',
  'life_last',
  'last_person',
  'person_want',
  'want_disppoint',
  'disppoint_let',
  'let_edit',
  'edit_okay',
  'okay_say',
  'say_fund',
  'fund_mine',
  'mine_whose',
  'whose_fund',
  'fund_lmfao',
  'lmfao_realli',
  'realli_get',
  'get_mayb',
  'mayb_expand',
  'expand_exactli',
  'exactli_fund',
  'fund_mine',
  'mine_belong',
  'belong_also',
  'also_think',
  'think_im',
  'im_cruel',
  'cruel_dad',
  'dad_lost',
  'lost_much',
  'much_tri',
  'tri_go',
  'go_way',
  'way_mean',
  'mean_malici',
  'malici_matter',
  'matter_fact',
  'fact_want',
  'want_littl',
  'littl_noth',
  'noth_time',
  'time_play',
  'play_nice',
  'nice_pleas',
  'pleas_uncl',
  'uncl_rel',
  'make_brief_issu',
  'brief_issu_dad',
  'issu_dad_mom',
  'dad_mom_die',
  'mom_die_stepmom',
  'die_stepmom_came',
  'stepmom_came_along',
  'came_along_hate',
  'along_hate_lot',
  'hate_lot_decis',
  'lot_decis_made',
  'decis_made_left',
  'made_left_long',
  'left_long_last',
  'long_last_impact',
  'last_impact_take',
  'impact_take_colleg',
  'take_colleg_fund',
  'colleg_fund_pay',
  'fund_pay_stepbroth',
  'pay_stepbroth_surgeri',
  'stepbroth_surgeri_unfortun',
  'surgeri_unfortun_dead',
  'unfortun_dead_die',
  'dead_die_last',
  'die_last_year',
  'last_year_age',
  'year_age_chronic',
  'age_chronic_heart',
  'chronic_heart_problem',
  'heart_problem_put',
  'problem_put_distanc',
  'put_distanc_still',
  'distanc_still_see',
  'still_see_grandpar',
  'see_grandpar_uncl',
  'grandpar_uncl_aunt',
  'uncl_aunt_cousin',
  'aunt_cousin_etc',
  'cousin_etc_holiday',
  'etc_holiday_season',
  'holiday_season_come',
  'season_come_dad',
  'come_dad_start',
  'dad_start_talk',
  'start_talk_rel',
  'talk_rel_-',
  'rel_-_close',
  '-_close_rel',
  'close_rel_went',
  'rel_went_overwhelm',
  'went_overwhelm_feel',
  'overwhelm_feel_lonli',
  'feel_lonli_upcom',
  'lonli_upcom_divorc',
  'upcom_divorc_invit',
  'divorc_invit_spend',
  'invit_spend_christma',
  'spend_christma_alon',
  'christma_alon_heartbroken',
  'alon_heartbroken_respons',
  'heartbroken_respons_told',
  'respons_told_ill',
  'told_ill_gladli',
  'ill_gladli_spend',
  'gladli_spend_christma',
  'spend_christma_give',
  'christma_give_back',
  'give_back_colleg',
  'back_colleg_fund',
  'colleg_fund_form',
  'fund_form_christma',
  'form_christma_gift',
  'christma_gift_like',
  'gift_like_respons',
  'like_respons_thought',
  'respons_thought_harsh',
  'thought_harsh_rel',
  'harsh_rel_said',
  'rel_said_judgement',
  'said_judgement_petti',
  'judgement_petti_greedi',
  'petti_greedi_asshol',
  'greedi_asshol_say',
  'asshol_say_lost',
  'say_lost_much',
  'lost_much_said',
  'much_said_could',
  'said_could_save',
  'could_save_stepson',
  'save_stepson_stepbroth',
  'stepson_stepbroth_life',
  'stepbroth_life_describ',
  'life_describ_nobl',
  'describ_nobl_owe',
  'nobl_owe_thing',
  'owe_thing_went',
  'thing_went_home',
  'went_home_big',
  'home_big_argument',
  'big_argument_uncl',
  'argument_uncl_came',
  'uncl_came_said',
  'came_said_feel',
  'said_feel_like',
  'feel_like_shit',
  'like_shit_mayb',
  'shit_mayb_calmli',
  'mayb_calmli_polit',
  'calmli_polit_declin',
  'polit_declin_invit',
  'declin_invit_said',
  'invit_said_made',
  'said_made_feel',
  'made_feel_guilti',
  'feel_guilti_handl',
  'guilti_handl_stepbroth',
  'handl_stepbroth_situat',
  'stepbroth_situat_edit',
  'situat_edit_took',
  'edit_took_look',
  'took_look_see',
  'look_see_im',
  'see_im_get',
  'im_get_shitload',
  'get_shitload_comment',
  'shitload_comment_answer',
  'comment_answer_question',
  'answer_question__the',
  'question__the_fund',
  '_the_fund_made',
  'fund_made_dad',
  'made_dad_mom',
  'dad_mom_sahm',
  'mom_sahm_work',
  'sahm_work_agre',
  'work_agre_fund',
  'agre_fund_would',
  'fund_would_go',
  'would_go_toward',
  'go_toward_educatiot',
  'toward_educatiot__i',
  'educatiot__i_abl',
  '_i_abl_get',
  'abl_get_colleg',
  'get_colleg_start',
  'colleg_start_work',
  'start_work_pay',
  'work_pay_way',
  'pay_way_rel',
  'way_rel_help',
  'rel_help_uncl',
  'help_uncl_much',
  'uncl_much_said',
  'much_said_felt',
  'said_felt_like',
  'felt_like_shit',
  'like_shit_berat',
  'shit_berat_hold',
  'berat_hold_special',
  'hold_special_place',
  'special_place_life',
  'place_life_last',
  'life_last_person',
  'last_person_want',
  'person_want_disppoint',
  'want_disppoint_let',
  'disppoint_let_edit',
  'let_edit_okay',
  'edit_okay_say',
  'okay_say_fund',
  'say_fund_mine',
  'fund_mine_whose',
  'mine_whose_fund',
  'whose_fund_lmfao',
  'fund_lmfao_realli',
  'lmfao_realli_get',
  'realli_get_mayb',
  'get_mayb_expand',
  'mayb_expand_exactli',
  'expand_exactli_fund',
  'exactli_fund_mine',
  'fund_mine_belong',
  'mine_belong_also',
  'belong_also_think',
  'also_think_im',
  'think_im_cruel',
  'im_cruel_dad',
  'cruel_dad_lost',
  'dad_lost_much',
  'lost_much_tri',
  'much_tri_go',
  'tri_go_way',
  'go_way_mean',
  'way_mean_malici',
  'mean_malici_matter',
  'malici_matter_fact',
  'matter_fact_want',
  'fact_want_littl',
  'want_littl_noth',
  'littl_noth_time',
  'noth_time_play',
  'time_play_nice',
  'play_nice_pleas',
  'nice_pleas_uncl',
  'pleas_uncl_rel'],
 ['recent',
  'gotten',
  'great',
  'medic',
  'diagnosi',
  'prognosi',
  'peac',
  'sat',
  'husband',
  'figur',
  'obvious',
  'receiv',
  'estat',
  'take',
  'care',
  'kid',
  'decent',
  'spectacular',
  'career',
  'like',
  'work',
  'oldest',
  'brother',
  'gigant',
  '-bag',
  'addict',
  'parent',
  'wast',
  'live',
  'tri',
  'help',
  'spent',
  'somuch',
  'time',
  'money',
  'littl',
  'formi',
  'sister',
  'hold',
  'love',
  'kid',
  'understand',
  'urg',
  'help',
  'problem',
  'real',
  'issu',
  'brother',
  'abandon',
  'niec',
  'parent',
  'tri',
  'get',
  'custodi',
  'member',
  'church',
  'parent',
  'cut',
  'left',
  'home',
  'get',
  'colleg',
  'educ',
  'instead',
  'stay',
  'home',
  'help',
  'like',
  'good',
  'daughter',
  'congreg',
  'help',
  'hire',
  'lawyer',
  'keep',
  'girl',
  'away',
  'strang',
  'enough',
  'girl',
  'reach',
  'stop',
  'get',
  'financi',
  'support',
  'leav',
  'niec',
  'money',
  'spend',
  'howev',
  'want',
  'go',
  'pay',
  'post',
  'secondari',
  'educ',
  'use',
  'time',
  'donat',
  'chariti',
  'parent',
  'hate',
  'advoc',
  'women',
  'reproduct',
  'right',
  'sent',
  'parent',
  'copi',
  'knew',
  'come',
  'kind',
  'peopl',
  'would',
  'take',
  'loan',
  'count',
  'money',
  'death',
  'bail',
  'call',
  'asshol',
  'give',
  'money',
  'take',
  'care',
  'niec',
  'complain',
  'go',
  'debt',
  'take',
  'care',
  'girl',
  'offer',
  'take',
  'custodi',
  'husband',
  'two',
  'year',
  'know',
  'get',
  'path',
  'away',
  'church',
  'parent',
  'relent',
  'say',
  'challeng',
  'leav',
  'like',
  'good',
  'luck',
  'lawyer',
  'confid',
  'protect',
  'money',
  'heard',
  'brother',
  'call',
  'asshol',
  'depriv',
  'kid',
  'help',
  'forc',
  'parent',
  'shitti',
  'posit',
  'ask',
  'last',
  'time',
  'sent',
  'money',
  'help',
  'kid',
  'yell',
  'obscen',
  'hung',
  'husband',
  'support',
  'decis',
  'lot',
  'famili',
  'call',
  'ask',
  'help',
  'parent',
  'string',
  'attach',
  'aita',
  'edit',
  'thank',
  'kind',
  'word',
  'love',
  'trust',
  'husband',
  'love',
  'children',
  'howev',
  'educ',
  'save',
  'account',
  'set',
  'asid',
  'avail',
  'age',
  'decid',
  'got',
  'marri',
  'recent_gotten',
  'gotten_great',
  'great_medic',
  'medic_diagnosi',
  'diagnosi_prognosi',
  'prognosi_peac',
  'peac_sat',
  'sat_husband',
  'husband_figur',
  'figur_obvious',
  'obvious_receiv',
  'receiv_estat',
  'estat_take',
  'take_care',
  'care_kid',
  'kid_decent',
  'decent_spectacular',
  'spectacular_career',
  'career_like',
  'like_work',
  'work_oldest',
  'oldest_brother',
  'brother_gigant',
  'gigant_-bag',
  '-bag_addict',
  'addict_parent',
  'parent_wast',
  'wast_live',
  'live_tri',
  'tri_help',
  'help_spent',
  'spent_somuch',
  'somuch_time',
  'time_money',
  'money_littl',
  'littl_formi',
  'formi_sister',
  'sister_hold',
  'hold_love',
  'love_kid',
  'kid_understand',
  'understand_urg',
  'urg_help',
  'help_problem',
  'problem_real',
  'real_issu',
  'issu_brother',
  'brother_abandon',
  'abandon_niec',
  'niec_parent',
  'parent_tri',
  'tri_get',
  'get_custodi',
  'custodi_member',
  'member_church',
  'church_parent',
  'parent_cut',
  'cut_left',
  'left_home',
  'home_get',
  'get_colleg',
  'colleg_educ',
  'educ_instead',
  'instead_stay',
  'stay_home',
  'home_help',
  'help_like',
  'like_good',
  'good_daughter',
  'daughter_congreg',
  'congreg_help',
  'help_hire',
  'hire_lawyer',
  'lawyer_keep',
  'keep_girl',
  'girl_away',
  'away_strang',
  'strang_enough',
  'enough_girl',
  'girl_reach',
  'reach_stop',
  'stop_get',
  'get_financi',
  'financi_support',
  'support_leav',
  'leav_niec',
  'niec_money',
  'money_spend',
  'spend_howev',
  'howev_want',
  'want_go',
  'go_pay',
  'pay_post',
  'post_secondari',
  'secondari_educ',
  'educ_use',
  'use_time',
  'time_donat',
  'donat_chariti',
  'chariti_parent',
  'parent_hate',
  'hate_advoc',
  'advoc_women',
  'women_reproduct',
  'reproduct_right',
  'right_sent',
  'sent_parent',
  'parent_copi',
  'copi_knew',
  'knew_come',
  'come_kind',
  'kind_peopl',
  'peopl_would',
  'would_take',
  'take_loan',
  'loan_count',
  'count_money',
  'money_death',
  'death_bail',
  'bail_call',
  'call_asshol',
  'asshol_give',
  'give_money',
  'money_take',
  'take_care',
  'care_niec',
  'niec_complain',
  'complain_go',
  'go_debt',
  'debt_take',
  'take_care',
  'care_girl',
  'girl_offer',
  'offer_take',
  'take_custodi',
  'custodi_husband',
  'husband_two',
  'two_year',
  'year_know',
  'know_get',
  'get_path',
  'path_away',
  'away_church',
  'church_parent',
  'parent_relent',
  'relent_say',
  'say_challeng',
  'challeng_leav',
  'leav_like',
  'like_good',
  'good_luck',
  'luck_lawyer',
  'lawyer_confid',
  'confid_protect',
  'protect_money',
  'money_heard',
  'heard_brother',
  'brother_call',
  'call_asshol',
  'asshol_depriv',
  'depriv_kid',
  'kid_help',
  'help_forc',
  'forc_parent',
  'parent_shitti',
  'shitti_posit',
  'posit_ask',
  'ask_last',
  'last_time',
  'time_sent',
  'sent_money',
  'money_help',
  'help_kid',
  'kid_yell',
  'yell_obscen',
  'obscen_hung',
  'hung_husband',
  'husband_support',
  'support_decis',
  'decis_lot',
  'lot_famili',
  'famili_call',
  'call_ask',
  'ask_help',
  'help_parent',
  'parent_string',
  'string_attach',
  'attach_aita',
  'aita_edit',
  'edit_thank',
  'thank_kind',
  'kind_word',
  'word_love',
  'love_trust',
  'trust_husband',
  'husband_love',
  'love_children',
  'children_howev',
  'howev_educ',
  'educ_save',
  'save_account',
  'account_set',
  'set_asid',
  'asid_avail',
  'avail_age',
  'age_decid',
  'decid_got',
  'got_marri',
  'recent_gotten_great',
  'gotten_great_medic',
  'great_medic_diagnosi',
  'medic_diagnosi_prognosi',
  'diagnosi_prognosi_peac',
  'prognosi_peac_sat',
  'peac_sat_husband',
  'sat_husband_figur',
  'husband_figur_obvious',
  'figur_obvious_receiv',
  'obvious_receiv_estat',
  'receiv_estat_take',
  'estat_take_care',
  'take_care_kid',
  'care_kid_decent',
  'kid_decent_spectacular',
  'decent_spectacular_career',
  'spectacular_career_like',
  'career_like_work',
  'like_work_oldest',
  'work_oldest_brother',
  'oldest_brother_gigant',
  'brother_gigant_-bag',
  'gigant_-bag_addict',
  '-bag_addict_parent',
  'addict_parent_wast',
  'parent_wast_live',
  'wast_live_tri',
  'live_tri_help',
  'tri_help_spent',
  'help_spent_somuch',
  'spent_somuch_time',
  'somuch_time_money',
  'time_money_littl',
  'money_littl_formi',
  'littl_formi_sister',
  'formi_sister_hold',
  'sister_hold_love',
  'hold_love_kid',
  'love_kid_understand',
  'kid_understand_urg',
  'understand_urg_help',
  'urg_help_problem',
  'help_problem_real',
  'problem_real_issu',
  'real_issu_brother',
  'issu_brother_abandon',
  'brother_abandon_niec',
  'abandon_niec_parent',
  'niec_parent_tri',
  'parent_tri_get',
  'tri_get_custodi',
  'get_custodi_member',
  'custodi_member_church',
  'member_church_parent',
  'church_parent_cut',
  'parent_cut_left',
  'cut_left_home',
  'left_home_get',
  'home_get_colleg',
  'get_colleg_educ',
  'colleg_educ_instead',
  'educ_instead_stay',
  'instead_stay_home',
  'stay_home_help',
  'home_help_like',
  'help_like_good',
  'like_good_daughter',
  'good_daughter_congreg',
  'daughter_congreg_help',
  'congreg_help_hire',
  'help_hire_lawyer',
  'hire_lawyer_keep',
  'lawyer_keep_girl',
  'keep_girl_away',
  'girl_away_strang',
  'away_strang_enough',
  'strang_enough_girl',
  'enough_girl_reach',
  'girl_reach_stop',
  'reach_stop_get',
  'stop_get_financi',
  'get_financi_support',
  'financi_support_leav',
  'support_leav_niec',
  'leav_niec_money',
  'niec_money_spend',
  'money_spend_howev',
  'spend_howev_want',
  'howev_want_go',
  'want_go_pay',
  'go_pay_post',
  'pay_post_secondari',
  'post_secondari_educ',
  'secondari_educ_use',
  'educ_use_time',
  'use_time_donat',
  'time_donat_chariti',
  'donat_chariti_parent',
  'chariti_parent_hate',
  'parent_hate_advoc',
  'hate_advoc_women',
  'advoc_women_reproduct',
  'women_reproduct_right',
  'reproduct_right_sent',
  'right_sent_parent',
  'sent_parent_copi',
  'parent_copi_knew',
  'copi_knew_come',
  'knew_come_kind',
  'come_kind_peopl',
  'kind_peopl_would',
  'peopl_would_take',
  'would_take_loan',
  'take_loan_count',
  'loan_count_money',
  'count_money_death',
  'money_death_bail',
  'death_bail_call',
  'bail_call_asshol',
  'call_asshol_give',
  'asshol_give_money',
  'give_money_take',
  'money_take_care',
  'take_care_niec',
  'care_niec_complain',
  'niec_complain_go',
  'complain_go_debt',
  'go_debt_take',
  'debt_take_care',
  'take_care_girl',
  'care_girl_offer',
  'girl_offer_take',
  'offer_take_custodi',
  'take_custodi_husband',
  'custodi_husband_two',
  'husband_two_year',
  'two_year_know',
  'year_know_get',
  'know_get_path',
  'get_path_away',
  'path_away_church',
  'away_church_parent',
  'church_parent_relent',
  'parent_relent_say',
  'relent_say_challeng',
  'say_challeng_leav',
  'challeng_leav_like',
  'leav_like_good',
  'like_good_luck',
  'good_luck_lawyer',
  'luck_lawyer_confid',
  'lawyer_confid_protect',
  'confid_protect_money',
  'protect_money_heard',
  'money_heard_brother',
  'heard_brother_call',
  'brother_call_asshol',
  'call_asshol_depriv',
  'asshol_depriv_kid',
  'depriv_kid_help',
  'kid_help_forc',
  'help_forc_parent',
  'forc_parent_shitti',
  'parent_shitti_posit',
  'shitti_posit_ask',
  'posit_ask_last',
  'ask_last_time',
  'last_time_sent',
  'time_sent_money',
  'sent_money_help',
  'money_help_kid',
  'help_kid_yell',
  'kid_yell_obscen',
  'yell_obscen_hung',
  'obscen_hung_husband',
  'hung_husband_support',
  'husband_support_decis',
  'support_decis_lot',
  'decis_lot_famili',
  'lot_famili_call',
  'famili_call_ask',
  'call_ask_help',
  'ask_help_parent',
  'help_parent_string',
  'parent_string_attach',
  'string_attach_aita',
  'attach_aita_edit',
  'aita_edit_thank',
  'edit_thank_kind',
  'thank_kind_word',
  'kind_word_love',
  'word_love_trust',
  'love_trust_husband',
  'trust_husband_love',
  'husband_love_children',
  'love_children_howev',
  'children_howev_educ',
  'howev_educ_save',
  'educ_save_account',
  'save_account_set',
  'account_set_asid',
  'set_asid_avail',
  'asid_avail_age',
  'avail_age_decid',
  'age_decid_got',
  'decid_got_marri'],
 ['sorri',
  'seem',
  'place',
  'realli',
  'use',
  'platform',
  'brother',
  'told',
  'post',
  'femal',
  'work',
  'tech',
  'compani',
  'start',
  'work',
  'right',
  'graduat',
  'colleg',
  'start',
  'lowest',
  'rank',
  'ofc',
  'ive',
  'promot',
  'twice',
  'kind',
  'like',
  'import',
  'job',
  'still',
  'peopl',
  'first',
  'recent',
  'manag',
  'section',
  'start',
  'work',
  'compani',
  'met',
  'boss',
  'becom',
  'good',
  'friend',
  'short',
  'relationship',
  'time',
  'end',
  'good',
  'term',
  'cowork',
  'know',
  'least',
  'cant',
  '%',
  'sure',
  'date',
  'never',
  'told',
  'anyon',
  'although',
  'could',
  'see',
  'us',
  'leav',
  'togeth',
  'sometim',
  'join',
  'dot',
  'guess',
  'date',
  'got',
  'first',
  'promot',
  'peopl',
  'made',
  'comment',
  'fairli',
  'new',
  'although',
  'work',
  'lot',
  'promot',
  'ignor',
  'recent',
  'said',
  'got',
  'anoth',
  'promot',
  'cowork',
  'want',
  'go',
  'celebr',
  'agre',
  'went',
  'bar',
  'mani',
  'us',
  'depart',
  'work',
  'even',
  'like',
  'fun',
  'one',
  'cowork',
  'told',
  'proud',
  'much',
  'work',
  'get',
  'promot',
  'anoth',
  'cowork',
  'woman',
  'told',
  'must',
  'tire',
  'work',
  'especi',
  'insid',
  'sheet',
  'work',
  'start',
  'laugh',
  'make',
  'joke',
  'like',
  'make',
  'boss',
  'fall',
  'love',
  'plan',
  'along',
  'call',
  'strateg',
  'woman',
  'tell',
  'must',
  'suck',
  '*',
  'ck',
  'well',
  'boss',
  'got',
  'two',
  'promot',
  'obvious',
  'angri',
  'embarrass',
  'remind',
  'even',
  'date',
  'give',
  'promot',
  'boss',
  'boss',
  'cant',
  'make',
  'kind',
  'decis',
  'brush',
  'tell',
  'opinion',
  'matter',
  'easili',
  'convinc',
  'boss',
  'promot',
  'want',
  'told',
  'realli',
  'disgust',
  'impli',
  'wh',
  '*',
  'need',
  'sleep',
  'boss',
  'promot',
  'pay',
  'bill',
  'left',
  'next',
  'morn',
  'went',
  'hand',
  'project',
  'boss',
  'ask',
  'us',
  'finish',
  'woman',
  'start',
  'joke',
  'told',
  'rude',
  'left',
  'celebr',
  'said',
  'joke',
  'apolog',
  'tri',
  'ignor',
  'hand',
  'project',
  'could',
  'get',
  'start',
  'told',
  'start',
  'work',
  'woman',
  'said',
  'okay',
  'mr',
  'bosss',
  'last',
  'name',
  'lost',
  'yell',
  'shut',
  'get',
  'work',
  'alreadi',
  'ill',
  'fill',
  'report',
  'hr',
  'left',
  'work',
  'ive',
  'talk',
  'boss',
  'agre',
  'told',
  'brother',
  'happen',
  'think',
  'yell',
  'although',
  'agre',
  'rude',
  'mother',
  'also',
  'think',
  'im',
  'kinda',
  'confus',
  'asshol',
  'brother',
  'recommend',
  'post',
  'edit',
  'ive',
  'talk',
  'boss',
  'told',
  'compani',
  'date',
  'polici',
  'also',
  'check',
  'decid',
  'go',
  'hr',
  'yet',
  'ill',
  'tri',
  'make',
  'thing',
  'peac',
  'cowork',
  'boss',
  'recommend',
  'write',
  'report',
  'written',
  'proof',
  'happen',
  'edit',
  'long',
  'day',
  'work',
  'today',
  'manag',
  'train',
  'made',
  'time',
  'talk',
  'cowork',
  'ive',
  'decid',
  'sinc',
  'doubt',
  'promot',
  'ask',
  'hr',
  'investig',
  'theyll',
  'see',
  'im',
  'best',
  'person',
  'charg',
  'said',
  'gon',
  'na',
  'take',
  'coupl',
  'day',
  'ask',
  'keep',
  'manag',
  'duti',
  'meantim',
  'might',
  'chanc',
  'lose',
  'promot',
  'go',
  'back',
  'posit',
  'senior',
  'ask',
  'hr',
  'chanc',
  'senior',
  'salari',
  'month',
  'got',
  'rais',
  'new',
  'promot',
  'also',
  'refus',
  'use',
  'privileg',
  'cowork',
  'ask',
  'problem',
  'also',
  'apolog',
  'yell',
  'apolog',
  'make',
  'joke',
  'laugh',
  'told',
  'relationship',
  'boss',
  'remind',
  'compani',
  'rule',
  'date',
  'basic',
  'told',
  'care',
  'agre',
  'cowork',
  'tell',
  'everyth',
  'matter',
  'hr',
  'includ',
  'argument',
  'bar',
  'relationship',
  'boss',
  'time',
  'promot',
  'hr',
  'could',
  'see',
  'full',
  'pictur',
  'meant',
  'fill',
  'report',
  'theyll',
  'sanction',
  'also',
  'told',
  'want',
  'make',
  'work',
  'environ',
  'least',
  'peac',
  'also',
  'said',
  'could',
  'talk',
  'hr',
  'move',
  'anoth',
  'depart',
  'want',
  'one',
  'person',
  'left',
  'woman',
  'start',
  'everyth',
  'boss',
  'also',
  'ask',
  'hr',
  'investig',
  'ever',
  'taken',
  'advantag',
  'charg',
  'help',
  'peopl',
  'get',
  'promot',
  'benefit',
  'well',
  'sure',
  'noth',
  'wrong',
  'happen',
  'basic',
  'lot',
  'work',
  'hr',
  'know',
  'mani',
  'gave',
  'differ',
  'advic',
  'like',
  'go',
  'hr',
  'think',
  'best',
  'hr',
  'think',
  'manag',
  'ill',
  'gladli',
  'go',
  'back',
  'posit',
  'ill',
  'tri',
  'work',
  'hard',
  'get',
  'anoth',
  'promot',
  'mayb',
  'hr',
  'think',
  'best',
  'candid',
  'promot',
  'cowork',
  'know',
  'im',
  'relationship',
  'boss',
  'ill',
  'probabl',
  'edit',
  'anymor',
  'thank',
  'advic',
  'sorri_seem',
  'seem_place',
  'place_realli',
  'realli_use',
  'use_platform',
  'platform_brother',
  'brother_told',
  'told_post',
  'post_femal',
  'femal_work',
  'work_tech',
  'tech_compani',
  'compani_start',
  'start_work',
  'work_right',
  'right_graduat',
  'graduat_colleg',
  'colleg_start',
  'start_lowest',
  'lowest_rank',
  'rank_ofc',
  'ofc_ive',
  'ive_promot',
  'promot_twice',
  'twice_kind',
  'kind_like',
  'like_import',
  'import_job',
  'job_still',
  'still_peopl',
  'peopl_first',
  'first_recent',
  'recent_manag',
  'manag_section',
  'section_start',
  'start_work',
  'work_compani',
  'compani_met',
  'met_boss',
  'boss_becom',
  'becom_good',
  'good_friend',
  'friend_short',
  'short_relationship',
  'relationship_time',
  'time_end',
  'end_good',
  'good_term',
  'term_cowork',
  'cowork_know',
  'know_least',
  'least_cant',
  'cant_%',
  '%_sure',
  'sure_date',
  'date_never',
  'never_told',
  'told_anyon',
  'anyon_although',
  'although_could',
  'could_see',
  'see_us',
  'us_leav',
  'leav_togeth',
  'togeth_sometim',
  'sometim_join',
  'join_dot',
  'dot_guess',
  'guess_date',
  'date_got',
  'got_first',
  'first_promot',
  'promot_peopl',
  'peopl_made',
  'made_comment',
  'comment_fairli',
  'fairli_new',
  'new_although',
  'although_work',
  'work_lot',
  'lot_promot',
  'promot_ignor',
  'ignor_recent',
  'recent_said',
  'said_got',
  'got_anoth',
  'anoth_promot',
  'promot_cowork',
  'cowork_want',
  'want_go',
  'go_celebr',
  'celebr_agre',
  'agre_went',
  'went_bar',
  'bar_mani',
  'mani_us',
  'us_depart',
  'depart_work',
  'work_even',
  'even_like',
  'like_fun',
  'fun_one',
  'one_cowork',
  'cowork_told',
  'told_proud',
  'proud_much',
  'much_work',
  'work_get',
  'get_promot',
  'promot_anoth',
  'anoth_cowork',
  'cowork_woman',
  'woman_told',
  'told_must',
  'must_tire',
  'tire_work',
  'work_especi',
  'especi_insid',
  'insid_sheet',
  'sheet_work',
  'work_start',
  'start_laugh',
  'laugh_make',
  'make_joke',
  'joke_like',
  'like_make',
  'make_boss',
  'boss_fall',
  'fall_love',
  'love_plan',
  'plan_along',
  'along_call',
  'call_strateg',
  'strateg_woman',
  'woman_tell',
  'tell_must',
  'must_suck',
  'suck_*',
  '*_ck',
  'ck_well',
  'well_boss',
  'boss_got',
  'got_two',
  'two_promot',
  'promot_obvious',
  'obvious_angri',
  'angri_embarrass',
  'embarrass_remind',
  'remind_even',
  'even_date',
  'date_give',
  'give_promot',
  'promot_boss',
  'boss_boss',
  'boss_cant',
  'cant_make',
  'make_kind',
  'kind_decis',
  'decis_brush',
  'brush_tell',
  'tell_opinion',
  'opinion_matter',
  'matter_easili',
  'easili_convinc',
  'convinc_boss',
  'boss_promot',
  'promot_want',
  'want_told',
  'told_realli',
  'realli_disgust',
  'disgust_impli',
  'impli_wh',
  'wh_*',
  '*_need',
  'need_sleep',
  'sleep_boss',
  'boss_promot',
  'promot_pay',
  'pay_bill',
  'bill_left',
  'left_next',
  'next_morn',
  'morn_went',
  'went_hand',
  'hand_project',
  'project_boss',
  'boss_ask',
  'ask_us',
  'us_finish',
  'finish_woman',
  'woman_start',
  'start_joke',
  'joke_told',
  'told_rude',
  'rude_left',
  'left_celebr',
  'celebr_said',
  'said_joke',
  'joke_apolog',
  'apolog_tri',
  'tri_ignor',
  'ignor_hand',
  'hand_project',
  'project_could',
  'could_get',
  'get_start',
  'start_told',
  'told_start',
  'start_work',
  'work_woman',
  'woman_said',
  'said_okay',
  'okay_mr',
  'mr_bosss',
  'bosss_last',
  'last_name',
  'name_lost',
  'lost_yell',
  'yell_shut',
  'shut_get',
  'get_work',
  'work_alreadi',
  'alreadi_ill',
  'ill_fill',
  'fill_report',
  'report_hr',
  'hr_left',
  'left_work',
  'work_ive',
  'ive_talk',
  'talk_boss',
  'boss_agre',
  'agre_told',
  'told_brother',
  'brother_happen',
  'happen_think',
  'think_yell',
  'yell_although',
  'although_agre',
  'agre_rude',
  'rude_mother',
  'mother_also',
  'also_think',
  'think_im',
  'im_kinda',
  'kinda_confus',
  'confus_asshol',
  'asshol_brother',
  'brother_recommend',
  'recommend_post',
  'post_edit',
  'edit_ive',
  'ive_talk',
  'talk_boss',
  'boss_told',
  'told_compani',
  'compani_date',
  'date_polici',
  'polici_also',
  'also_check',
  'check_decid',
  'decid_go',
  'go_hr',
  'hr_yet',
  'yet_ill',
  'ill_tri',
  'tri_make',
  'make_thing',
  'thing_peac',
  'peac_cowork',
  'cowork_boss',
  'boss_recommend',
  'recommend_write',
  'write_report',
  'report_written',
  'written_proof',
  'proof_happen',
  'happen_edit',
  'edit_long',
  'long_day',
  'day_work',
  'work_today',
  'today_manag',
  'manag_train',
  'train_made',
  'made_time',
  'time_talk',
  'talk_cowork',
  'cowork_ive',
  'ive_decid',
  'decid_sinc',
  'sinc_doubt',
  'doubt_promot',
  'promot_ask',
  'ask_hr',
  'hr_investig',
  'investig_theyll',
  'theyll_see',
  'see_im',
  'im_best',
  'best_person',
  'person_charg',
  'charg_said',
  'said_gon',
  'gon_na',
  'na_take',
  'take_coupl',
  'coupl_day',
  'day_ask',
  'ask_keep',
  'keep_manag',
  'manag_duti',
  'duti_meantim',
  'meantim_might',
  'might_chanc',
  'chanc_lose',
  'lose_promot',
  'promot_go',
  'go_back',
  'back_posit',
  'posit_senior',
  'senior_ask',
  'ask_hr',
  'hr_chanc',
  'chanc_senior',
  'senior_salari',
  'salari_month',
  'month_got',
  'got_rais',
  'rais_new',
  'new_promot',
  'promot_also',
  'also_refus',
  'refus_use',
  'use_privileg',
  'privileg_cowork',
  'cowork_ask',
  'ask_problem',
  'problem_also',
  'also_apolog',
  'apolog_yell',
  'yell_apolog',
  'apolog_make',
  'make_joke',
  'joke_laugh',
  'laugh_told',
  'told_relationship',
  'relationship_boss',
  'boss_remind',
  'remind_compani',
  'compani_rule',
  'rule_date',
  'date_basic',
  'basic_told',
  'told_care',
  'care_agre',
  'agre_cowork',
  'cowork_tell',
  'tell_everyth',
  'everyth_matter',
  'matter_hr',
  'hr_includ',
  'includ_argument',
  'argument_bar',
  'bar_relationship',
  'relationship_boss',
  'boss_time',
  'time_promot',
  'promot_hr',
  'hr_could',
  'could_see',
  'see_full',
  'full_pictur',
  'pictur_meant',
  'meant_fill',
  'fill_report',
  'report_theyll',
  'theyll_sanction',
  'sanction_also',
  'also_told',
  'told_want',
  'want_make',
  'make_work',
  'work_environ',
  'environ_least',
  'least_peac',
  'peac_also',
  'also_said',
  'said_could',
  'could_talk',
  'talk_hr',
  'hr_move',
  'move_anoth',
  'anoth_depart',
  'depart_want',
  'want_one',
  'one_person',
  'person_left',
  'left_woman',
  'woman_start',
  'start_everyth',
  'everyth_boss',
  'boss_also',
  'also_ask',
  'ask_hr',
  'hr_investig',
  'investig_ever',
  'ever_taken',
  'taken_advantag',
  'advantag_charg',
  'charg_help',
  'help_peopl',
  'peopl_get',
  'get_promot',
  'promot_benefit',
  'benefit_well',
  'well_sure',
  'sure_noth',
  'noth_wrong',
  'wrong_happen',
  'happen_basic',
  'basic_lot',
  'lot_work',
  'work_hr',
  'hr_know',
  'know_mani',
  'mani_gave',
  'gave_differ',
  'differ_advic',
  'advic_like',
  'like_go',
  'go_hr',
  'hr_think',
  'think_best',
  'best_hr',
  'hr_think',
  'think_manag',
  'manag_ill',
  'ill_gladli',
  'gladli_go',
  'go_back',
  'back_posit',
  'posit_ill',
  'ill_tri',
  'tri_work',
  'work_hard',
  'hard_get',
  'get_anoth',
  'anoth_promot',
  'promot_mayb',
  'mayb_hr',
  'hr_think',
  'think_best',
  'best_candid',
  'candid_promot',
  'promot_cowork',
  'cowork_know',
  'know_im',
  'im_relationship',
  'relationship_boss',
  'boss_ill',
  'ill_probabl',
  'probabl_edit',
  'edit_anymor',
  'anymor_thank',
  'thank_advic',
  'sorri_seem_place',
  'seem_place_realli',
  'place_realli_use',
  'realli_use_platform',
  'use_platform_brother',
  'platform_brother_told',
  'brother_told_post',
  'told_post_femal',
  'post_femal_work',
  'femal_work_tech',
  'work_tech_compani',
  'tech_compani_start',
  'compani_start_work',
  'start_work_right',
  'work_right_graduat',
  'right_graduat_colleg',
  'graduat_colleg_start',
  'colleg_start_lowest',
  'start_lowest_rank',
  'lowest_rank_ofc',
  'rank_ofc_ive',
  'ofc_ive_promot',
  'ive_promot_twice',
  'promot_twice_kind',
  'twice_kind_like',
  'kind_like_import',
  'like_import_job',
  'import_job_still',
  'job_still_peopl',
  'still_peopl_first',
  'peopl_first_recent',
  'first_recent_manag',
  'recent_manag_section',
  'manag_section_start',
  'section_start_work',
  'start_work_compani',
  'work_compani_met',
  'compani_met_boss',
  'met_boss_becom',
  'boss_becom_good',
  'becom_good_friend',
  'good_friend_short',
  'friend_short_relationship',
  'short_relationship_time',
  'relationship_time_end',
  'time_end_good',
  'end_good_term',
  'good_term_cowork',
  'term_cowork_know',
  'cowork_know_least',
  'know_least_cant',
  'least_cant_%',
  'cant_%_sure',
  '%_sure_date',
  'sure_date_never',
  'date_never_told',
  'never_told_anyon',
  'told_anyon_although',
  'anyon_although_could',
  'although_could_see',
  'could_see_us',
  'see_us_leav',
  'us_leav_togeth',
  'leav_togeth_sometim',
  'togeth_sometim_join',
  'sometim_join_dot',
  'join_dot_guess',
  ...],
 ['start',
  'id',
  'like',
  'say',
  'gf',
  'women',
  'lesbian',
  'say',
  'hope',
  'preempt',
  '‘',
  'typic',
  'man',
  'comment',
  'happen',
  'last',
  'month',
  'best',
  'friend',
  'still',
  'give',
  'shit',
  'one',
  'year',
  'anniversari',
  'ask',
  'want',
  'told',
  'someth',
  'romant',
  'littl',
  'necklac',
  'someth',
  'cute',
  'brows',
  'around',
  'amazon',
  'found',
  'emuls',
  'blender',
  'ping',
  'head',
  'gf',
  'love',
  'cook',
  'alway',
  'talk',
  'gadget',
  'want',
  'plu',
  'made',
  'homemad',
  'tomato',
  'sauc',
  'rememb',
  'complain',
  'hard',
  'make',
  'sauc',
  'smooth',
  'caus',
  'emuls',
  'blender',
  'im',
  'practic',
  'gift',
  'giver',
  'like',
  'give',
  'thing',
  'peopl',
  'use',
  'bought',
  'super',
  'excit',
  'give',
  'day',
  'roll',
  'around',
  'give',
  'bottl',
  'whiskey',
  'ive',
  'eye',
  'age',
  'could',
  'never',
  'justifi',
  'cost',
  'hype',
  'encourag',
  'gf',
  'open',
  'open',
  'face',
  'kinda',
  'fall',
  'goe',
  '‘',
  'oh…',
  'emuls',
  'blender…',
  'told',
  'rememb',
  'talk',
  'kitchen',
  'gadget',
  'want',
  'excit',
  'give',
  'kept',
  'cool',
  'told',
  'appreci',
  'thought',
  'littl',
  'upset',
  'jewelri',
  'confus',
  'explain',
  'felt',
  'anniversari',
  'romanticsentiment',
  'gift',
  'versu',
  'practic',
  'appreci',
  'greatli',
  'lie',
  'wish',
  'necklac',
  'point',
  'onlin',
  'noth',
  'fanci',
  '$',
  'mushroom',
  'necklac',
  'share',
  'woe',
  'friend',
  'friend',
  'thought',
  'hilari',
  'inept',
  'understood',
  'gf',
  'upset',
  'gift',
  'gf',
  'best',
  'friend',
  'also',
  'got',
  'wind',
  'situat',
  'rib',
  'tell',
  'gf',
  'get',
  'back',
  'kitchen',
  'joke',
  'etc',
  'gf',
  'fine',
  'know',
  'disappoint',
  'end',
  'buy',
  'necklac',
  'week',
  'gave',
  'blender',
  'aita',
  'give',
  'gf',
  'practic',
  'gift',
  'versu',
  'necklac',
  'want',
  'start_id',
  'id_like',
  'like_say',
  'say_gf',
  'gf_women',
  'women_lesbian',
  'lesbian_say',
  'say_hope',
  'hope_preempt',
  'preempt_‘',
  '‘_typic',
  'typic_man',
  'man_comment',
  'comment_happen',
  'happen_last',
  'last_month',
  'month_best',
  'best_friend',
  'friend_still',
  'still_give',
  'give_shit',
  'shit_one',
  'one_year',
  'year_anniversari',
  'anniversari_ask',
  'ask_want',
  'want_told',
  'told_someth',
  'someth_romant',
  'romant_littl',
  'littl_necklac',
  'necklac_someth',
  'someth_cute',
  'cute_brows',
  'brows_around',
  'around_amazon',
  'amazon_found',
  'found_emuls',
  'emuls_blender',
  'blender_ping',
  'ping_head',
  'head_gf',
  'gf_love',
  'love_cook',
  'cook_alway',
  'alway_talk',
  'talk_gadget',
  'gadget_want',
  'want_plu',
  'plu_made',
  'made_homemad',
  'homemad_tomato',
  'tomato_sauc',
  'sauc_rememb',
  'rememb_complain',
  'complain_hard',
  'hard_make',
  'make_sauc',
  'sauc_smooth',
  'smooth_caus',
  'caus_emuls',
  'emuls_blender',
  'blender_im',
  'im_practic',
  'practic_gift',
  'gift_giver',
  'giver_like',
  'like_give',
  'give_thing',
  'thing_peopl',
  'peopl_use',
  'use_bought',
  'bought_super',
  'super_excit',
  'excit_give',
  'give_day',
  'day_roll',
  'roll_around',
  'around_give',
  'give_bottl',
  'bottl_whiskey',
  'whiskey_ive',
  'ive_eye',
  'eye_age',
  'age_could',
  'could_never',
  'never_justifi',
  'justifi_cost',
  'cost_hype',
  'hype_encourag',
  'encourag_gf',
  'gf_open',
  'open_open',
  'open_face',
  'face_kinda',
  'kinda_fall',
  'fall_goe',
  'goe_‘',
  '‘_oh…',
  'oh…_emuls',
  'emuls_blender…',
  'blender…_told',
  'told_rememb',
  'rememb_talk',
  'talk_kitchen',
  'kitchen_gadget',
  'gadget_want',
  'want_excit',
  'excit_give',
  'give_kept',
  'kept_cool',
  'cool_told',
  'told_appreci',
  'appreci_thought',
  'thought_littl',
  'littl_upset',
  'upset_jewelri',
  'jewelri_confus',
  'confus_explain',
  'explain_felt',
  'felt_anniversari',
  'anniversari_romanticsentiment',
  'romanticsentiment_gift',
  'gift_versu',
  'versu_practic',
  'practic_appreci',
  'appreci_greatli',
  'greatli_lie',
  'lie_wish',
  'wish_necklac',
  'necklac_point',
  'point_onlin',
  'onlin_noth',
  'noth_fanci',
  'fanci_$',
  '$_mushroom',
  'mushroom_necklac',
  'necklac_share',
  'share_woe',
  'woe_friend',
  'friend_friend',
  'friend_thought',
  'thought_hilari',
  'hilari_inept',
  'inept_understood',
  'understood_gf',
  'gf_upset',
  'upset_gift',
  'gift_gf',
  'gf_best',
  'best_friend',
  'friend_also',
  'also_got',
  'got_wind',
  'wind_situat',
  'situat_rib',
  'rib_tell',
  'tell_gf',
  'gf_get',
  'get_back',
  'back_kitchen',
  'kitchen_joke',
  'joke_etc',
  'etc_gf',
  'gf_fine',
  'fine_know',
  'know_disappoint',
  'disappoint_end',
  'end_buy',
  'buy_necklac',
  'necklac_week',
  'week_gave',
  'gave_blender',
  'blender_aita',
  'aita_give',
  'give_gf',
  'gf_practic',
  'practic_gift',
  'gift_versu',
  'versu_necklac',
  'necklac_want',
  'start_id_like',
  'id_like_say',
  'like_say_gf',
  'say_gf_women',
  'gf_women_lesbian',
  'women_lesbian_say',
  'lesbian_say_hope',
  'say_hope_preempt',
  'hope_preempt_‘',
  'preempt_‘_typic',
  '‘_typic_man',
  'typic_man_comment',
  'man_comment_happen',
  'comment_happen_last',
  'happen_last_month',
  'last_month_best',
  'month_best_friend',
  'best_friend_still',
  'friend_still_give',
  'still_give_shit',
  'give_shit_one',
  'shit_one_year',
  'one_year_anniversari',
  'year_anniversari_ask',
  'anniversari_ask_want',
  'ask_want_told',
  'want_told_someth',
  'told_someth_romant',
  'someth_romant_littl',
  'romant_littl_necklac',
  'littl_necklac_someth',
  'necklac_someth_cute',
  'someth_cute_brows',
  'cute_brows_around',
  'brows_around_amazon',
  'around_amazon_found',
  'amazon_found_emuls',
  'found_emuls_blender',
  'emuls_blender_ping',
  'blender_ping_head',
  'ping_head_gf',
  'head_gf_love',
  'gf_love_cook',
  'love_cook_alway',
  'cook_alway_talk',
  'alway_talk_gadget',
  'talk_gadget_want',
  'gadget_want_plu',
  'want_plu_made',
  'plu_made_homemad',
  'made_homemad_tomato',
  'homemad_tomato_sauc',
  'tomato_sauc_rememb',
  'sauc_rememb_complain',
  'rememb_complain_hard',
  'complain_hard_make',
  'hard_make_sauc',
  'make_sauc_smooth',
  'sauc_smooth_caus',
  'smooth_caus_emuls',
  'caus_emuls_blender',
  'emuls_blender_im',
  'blender_im_practic',
  'im_practic_gift',
  'practic_gift_giver',
  'gift_giver_like',
  'giver_like_give',
  'like_give_thing',
  'give_thing_peopl',
  'thing_peopl_use',
  'peopl_use_bought',
  'use_bought_super',
  'bought_super_excit',
  'super_excit_give',
  'excit_give_day',
  'give_day_roll',
  'day_roll_around',
  'roll_around_give',
  'around_give_bottl',
  'give_bottl_whiskey',
  'bottl_whiskey_ive',
  'whiskey_ive_eye',
  'ive_eye_age',
  'eye_age_could',
  'age_could_never',
  'could_never_justifi',
  'never_justifi_cost',
  'justifi_cost_hype',
  'cost_hype_encourag',
  'hype_encourag_gf',
  'encourag_gf_open',
  'gf_open_open',
  'open_open_face',
  'open_face_kinda',
  'face_kinda_fall',
  'kinda_fall_goe',
  'fall_goe_‘',
  'goe_‘_oh…',
  '‘_oh…_emuls',
  'oh…_emuls_blender…',
  'emuls_blender…_told',
  'blender…_told_rememb',
  'told_rememb_talk',
  'rememb_talk_kitchen',
  'talk_kitchen_gadget',
  'kitchen_gadget_want',
  'gadget_want_excit',
  'want_excit_give',
  'excit_give_kept',
  'give_kept_cool',
  'kept_cool_told',
  'cool_told_appreci',
  'told_appreci_thought',
  'appreci_thought_littl',
  'thought_littl_upset',
  'littl_upset_jewelri',
  'upset_jewelri_confus',
  'jewelri_confus_explain',
  'confus_explain_felt',
  'explain_felt_anniversari',
  'felt_anniversari_romanticsentiment',
  'anniversari_romanticsentiment_gift',
  'romanticsentiment_gift_versu',
  'gift_versu_practic',
  'versu_practic_appreci',
  'practic_appreci_greatli',
  'appreci_greatli_lie',
  'greatli_lie_wish',
  'lie_wish_necklac',
  'wish_necklac_point',
  'necklac_point_onlin',
  'point_onlin_noth',
  'onlin_noth_fanci',
  'noth_fanci_$',
  'fanci_$_mushroom',
  '$_mushroom_necklac',
  'mushroom_necklac_share',
  'necklac_share_woe',
  'share_woe_friend',
  'woe_friend_friend',
  'friend_friend_thought',
  'friend_thought_hilari',
  'thought_hilari_inept',
  'hilari_inept_understood',
  'inept_understood_gf',
  'understood_gf_upset',
  'gf_upset_gift',
  'upset_gift_gf',
  'gift_gf_best',
  'gf_best_friend',
  'best_friend_also',
  'friend_also_got',
  'also_got_wind',
  'got_wind_situat',
  'wind_situat_rib',
  'situat_rib_tell',
  'rib_tell_gf',
  'tell_gf_get',
  'gf_get_back',
  'get_back_kitchen',
  'back_kitchen_joke',
  'kitchen_joke_etc',
  'joke_etc_gf',
  'etc_gf_fine',
  'gf_fine_know',
  'fine_know_disappoint',
  'know_disappoint_end',
  'disappoint_end_buy',
  'end_buy_necklac',
  'buy_necklac_week',
  'necklac_week_gave',
  'week_gave_blender',
  'gave_blender_aita',
  'blender_aita_give',
  'aita_give_gf',
  'give_gf_practic',
  'gf_practic_gift',
  'practic_gift_versu',
  'gift_versu_necklac',
  'versu_necklac_want'],
 ['daughter',
  'lara',
  'struggl',
  'focu',
  'studi',
  'brother',
  'kyle',
  'ryan',
  'constantli',
  'disrespect',
  'privaci',
  'day',
  'ago',
  'yell',
  'kyle',
  'come',
  'room',
  'ask',
  'happen',
  'explain',
  'kyle',
  'flip',
  'item',
  'upsid',
  'call',
  'kyle',
  'come',
  'flip',
  'everyth',
  'right',
  'side',
  'yesterday',
  'ryan',
  'run',
  'room',
  'kept',
  'steal',
  'stuff',
  'ran',
  'get',
  'back',
  'night',
  'day',
  'lara',
  'tri',
  'sleep',
  'brother',
  'suddenli',
  'barg',
  'ran',
  'result',
  'scream',
  'stay',
  'close',
  'door',
  'sleep',
  'give',
  'exampl',
  'today',
  'morn',
  'father',
  'told',
  'like',
  'way',
  'scream',
  'said',
  'tri',
  'sleep',
  'brother',
  'make',
  'kind',
  'rucku',
  'told',
  'kid',
  'learn',
  'said',
  'never',
  'learn',
  'way',
  'learn',
  'lock',
  'instal',
  'room',
  'want',
  'went',
  'back',
  'forth',
  'threaten',
  'would',
  'move',
  'soon',
  'becam',
  'financi',
  'independ',
  'sinc',
  'go',
  'wait',
  'matur',
  'alreadi',
  'know',
  'respect',
  'privaci',
  'said',
  'wait',
  'includ',
  'convers',
  'overheard',
  'went',
  'room',
  'told',
  'go',
  'lock',
  'set',
  'alreadi',
  'wast',
  'time',
  'without',
  'need',
  'lock',
  'want',
  'fail',
  'lara',
  'said',
  'never',
  'go',
  'listen',
  'without',
  'told',
  'would',
  'make',
  'sure',
  'enter',
  'room',
  'even',
  'heard',
  'shout',
  'live',
  'room',
  'father',
  'explain',
  'go',
  'lara',
  'said',
  'make',
  'kyle',
  'tea',
  'allow',
  'said',
  'go',
  'tell',
  'said',
  'promis',
  'tell',
  'ryan',
  'never',
  'go',
  'room',
  'say',
  'anth',
  'ran',
  'upstair',
  'room',
  'told',
  'right',
  'complain',
  'sinc',
  'alway',
  'sleep',
  'kyle',
  'room',
  'school',
  'brother',
  'agre',
  'lara',
  'call',
  'us',
  'worst',
  'none',
  'us',
  'allow',
  'room',
  'leav',
  'come',
  'back',
  'minut',
  'say',
  'sleep',
  'kyle',
  'room',
  'never',
  'use',
  'asid',
  'sleep',
  'night',
  'use',
  'studi',
  'would',
  'never',
  'go',
  'meanwhil',
  'constantli',
  'disturb',
  'mess',
  'stuff',
  'made',
  'unabl',
  'sleep',
  'last',
  'night',
  'told',
  'ever',
  'go',
  'room',
  'need',
  'go',
  'kyle',
  'start',
  'say',
  'right',
  'go',
  'room',
  'tri',
  'sleep',
  'play',
  'lara',
  'yell',
  'said',
  'wait',
  'move',
  'soon',
  'longer',
  'deal',
  'also',
  'call',
  'aw',
  'mother',
  'give',
  'bedroom',
  'lock',
  'daughter_lara',
  'lara_struggl',
  'struggl_focu',
  'focu_studi',
  'studi_brother',
  'brother_kyle',
  'kyle_ryan',
  'ryan_constantli',
  'constantli_disrespect',
  'disrespect_privaci',
  'privaci_day',
  'day_ago',
  'ago_yell',
  'yell_kyle',
  'kyle_come',
  'come_room',
  'room_ask',
  'ask_happen',
  'happen_explain',
  'explain_kyle',
  'kyle_flip',
  'flip_item',
  'item_upsid',
  'upsid_call',
  'call_kyle',
  'kyle_come',
  'come_flip',
  'flip_everyth',
  'everyth_right',
  'right_side',
  'side_yesterday',
  'yesterday_ryan',
  'ryan_run',
  'run_room',
  'room_kept',
  'kept_steal',
  'steal_stuff',
  'stuff_ran',
  'ran_get',
  'get_back',
  'back_night',
  'night_day',
  'day_lara',
  'lara_tri',
  'tri_sleep',
  'sleep_brother',
  'brother_suddenli',
  'suddenli_barg',
  'barg_ran',
  'ran_result',
  'result_scream',
  'scream_stay',
  'stay_close',
  'close_door',
  'door_sleep',
  'sleep_give',
  'give_exampl',
  'exampl_today',
  'today_morn',
  'morn_father',
  'father_told',
  'told_like',
  'like_way',
  'way_scream',
  'scream_said',
  'said_tri',
  'tri_sleep',
  'sleep_brother',
  'brother_make',
  'make_kind',
  'kind_rucku',
  'rucku_told',
  'told_kid',
  'kid_learn',
  'learn_said',
  'said_never',
  'never_learn',
  'learn_way',
  'way_learn',
  'learn_lock',
  'lock_instal',
  'instal_room',
  'room_want',
  'want_went',
  'went_back',
  'back_forth',
  'forth_threaten',
  'threaten_would',
  'would_move',
  'move_soon',
  'soon_becam',
  'becam_financi',
  'financi_independ',
  'independ_sinc',
  'sinc_go',
  'go_wait',
  'wait_matur',
  'matur_alreadi',
  'alreadi_know',
  'know_respect',
  'respect_privaci',
  'privaci_said',
  'said_wait',
  'wait_includ',
  'includ_convers',
  'convers_overheard',
  'overheard_went',
  'went_room',
  'room_told',
  'told_go',
  'go_lock',
  'lock_set',
  'set_alreadi',
  'alreadi_wast',
  'wast_time',
  'time_without',
  'without_need',
  'need_lock',
  'lock_want',
  'want_fail',
  'fail_lara',
  'lara_said',
  'said_never',
  'never_go',
  'go_listen',
  'listen_without',
  'without_told',
  'told_would',
  'would_make',
  'make_sure',
  'sure_enter',
  'enter_room',
  'room_even',
  'even_heard',
  'heard_shout',
  'shout_live',
  'live_room',
  'room_father',
  'father_explain',
  'explain_go',
  'go_lara',
  'lara_said',
  'said_make',
  'make_kyle',
  'kyle_tea',
  'tea_allow',
  'allow_said',
  'said_go',
  'go_tell',
  'tell_said',
  'said_promis',
  'promis_tell',
  'tell_ryan',
  'ryan_never',
  'never_go',
  'go_room',
  'room_say',
  'say_anth',
  'anth_ran',
  'ran_upstair',
  'upstair_room',
  'room_told',
  'told_right',
  'right_complain',
  'complain_sinc',
  'sinc_alway',
  'alway_sleep',
  'sleep_kyle',
  'kyle_room',
  'room_school',
  'school_brother',
  'brother_agre',
  'agre_lara',
  'lara_call',
  'call_us',
  'us_worst',
  'worst_none',
  'none_us',
  'us_allow',
  'allow_room',
  'room_leav',
  'leav_come',
  'come_back',
  'back_minut',
  'minut_say',
  'say_sleep',
  'sleep_kyle',
  'kyle_room',
  'room_never',
  'never_use',
  'use_asid',
  'asid_sleep',
  'sleep_night',
  'night_use',
  'use_studi',
  'studi_would',
  'would_never',
  'never_go',
  'go_meanwhil',
  'meanwhil_constantli',
  'constantli_disturb',
  'disturb_mess',
  'mess_stuff',
  'stuff_made',
  'made_unabl',
  'unabl_sleep',
  'sleep_last',
  'last_night',
  'night_told',
  'told_ever',
  'ever_go',
  'go_room',
  'room_need',
  'need_go',
  'go_kyle',
  'kyle_start',
  'start_say',
  'say_right',
  'right_go',
  'go_room',
  'room_tri',
  'tri_sleep',
  'sleep_play',
  'play_lara',
  'lara_yell',
  'yell_said',
  'said_wait',
  'wait_move',
  'move_soon',
  'soon_longer',
  'longer_deal',
  'deal_also',
  'also_call',
  'call_aw',
  'aw_mother',
  'mother_give',
  'give_bedroom',
  'bedroom_lock',
  'daughter_lara_struggl',
  'lara_struggl_focu',
  'struggl_focu_studi',
  'focu_studi_brother',
  'studi_brother_kyle',
  'brother_kyle_ryan',
  'kyle_ryan_constantli',
  'ryan_constantli_disrespect',
  'constantli_disrespect_privaci',
  'disrespect_privaci_day',
  'privaci_day_ago',
  'day_ago_yell',
  'ago_yell_kyle',
  'yell_kyle_come',
  'kyle_come_room',
  'come_room_ask',
  'room_ask_happen',
  'ask_happen_explain',
  'happen_explain_kyle',
  'explain_kyle_flip',
  'kyle_flip_item',
  'flip_item_upsid',
  'item_upsid_call',
  'upsid_call_kyle',
  'call_kyle_come',
  'kyle_come_flip',
  'come_flip_everyth',
  'flip_everyth_right',
  'everyth_right_side',
  'right_side_yesterday',
  'side_yesterday_ryan',
  'yesterday_ryan_run',
  'ryan_run_room',
  'run_room_kept',
  'room_kept_steal',
  'kept_steal_stuff',
  'steal_stuff_ran',
  'stuff_ran_get',
  'ran_get_back',
  'get_back_night',
  'back_night_day',
  'night_day_lara',
  'day_lara_tri',
  'lara_tri_sleep',
  'tri_sleep_brother',
  'sleep_brother_suddenli',
  'brother_suddenli_barg',
  'suddenli_barg_ran',
  'barg_ran_result',
  'ran_result_scream',
  'result_scream_stay',
  'scream_stay_close',
  'stay_close_door',
  'close_door_sleep',
  'door_sleep_give',
  'sleep_give_exampl',
  'give_exampl_today',
  'exampl_today_morn',
  'today_morn_father',
  'morn_father_told',
  'father_told_like',
  'told_like_way',
  'like_way_scream',
  'way_scream_said',
  'scream_said_tri',
  'said_tri_sleep',
  'tri_sleep_brother',
  'sleep_brother_make',
  'brother_make_kind',
  'make_kind_rucku',
  'kind_rucku_told',
  'rucku_told_kid',
  'told_kid_learn',
  'kid_learn_said',
  'learn_said_never',
  'said_never_learn',
  'never_learn_way',
  'learn_way_learn',
  'way_learn_lock',
  'learn_lock_instal',
  'lock_instal_room',
  'instal_room_want',
  'room_want_went',
  'want_went_back',
  'went_back_forth',
  'back_forth_threaten',
  'forth_threaten_would',
  'threaten_would_move',
  'would_move_soon',
  'move_soon_becam',
  'soon_becam_financi',
  'becam_financi_independ',
  'financi_independ_sinc',
  'independ_sinc_go',
  'sinc_go_wait',
  'go_wait_matur',
  'wait_matur_alreadi',
  'matur_alreadi_know',
  'alreadi_know_respect',
  'know_respect_privaci',
  'respect_privaci_said',
  'privaci_said_wait',
  'said_wait_includ',
  'wait_includ_convers',
  'includ_convers_overheard',
  'convers_overheard_went',
  'overheard_went_room',
  'went_room_told',
  'room_told_go',
  'told_go_lock',
  'go_lock_set',
  'lock_set_alreadi',
  'set_alreadi_wast',
  'alreadi_wast_time',
  'wast_time_without',
  'time_without_need',
  'without_need_lock',
  'need_lock_want',
  'lock_want_fail',
  'want_fail_lara',
  'fail_lara_said',
  'lara_said_never',
  'said_never_go',
  'never_go_listen',
  'go_listen_without',
  'listen_without_told',
  'without_told_would',
  'told_would_make',
  'would_make_sure',
  'make_sure_enter',
  'sure_enter_room',
  'enter_room_even',
  'room_even_heard',
  'even_heard_shout',
  'heard_shout_live',
  'shout_live_room',
  'live_room_father',
  'room_father_explain',
  'father_explain_go',
  'explain_go_lara',
  'go_lara_said',
  'lara_said_make',
  'said_make_kyle',
  'make_kyle_tea',
  'kyle_tea_allow',
  'tea_allow_said',
  'allow_said_go',
  'said_go_tell',
  'go_tell_said',
  'tell_said_promis',
  'said_promis_tell',
  'promis_tell_ryan',
  'tell_ryan_never',
  'ryan_never_go',
  'never_go_room',
  'go_room_say',
  'room_say_anth',
  'say_anth_ran',
  'anth_ran_upstair',
  'ran_upstair_room',
  'upstair_room_told',
  'room_told_right',
  'told_right_complain',
  'right_complain_sinc',
  'complain_sinc_alway',
  'sinc_alway_sleep',
  'alway_sleep_kyle',
  'sleep_kyle_room',
  'kyle_room_school',
  'room_school_brother',
  'school_brother_agre',
  'brother_agre_lara',
  'agre_lara_call',
  'lara_call_us',
  'call_us_worst',
  'us_worst_none',
  'worst_none_us',
  'none_us_allow',
  'us_allow_room',
  'allow_room_leav',
  'room_leav_come',
  'leav_come_back',
  'come_back_minut',
  'back_minut_say',
  'minut_say_sleep',
  'say_sleep_kyle',
  'sleep_kyle_room',
  'kyle_room_never',
  'room_never_use',
  'never_use_asid',
  'use_asid_sleep',
  'asid_sleep_night',
  'sleep_night_use',
  'night_use_studi',
  'use_studi_would',
  'studi_would_never',
  'would_never_go',
  'never_go_meanwhil',
  'go_meanwhil_constantli',
  'meanwhil_constantli_disturb',
  'constantli_disturb_mess',
  'disturb_mess_stuff',
  'mess_stuff_made',
  'stuff_made_unabl',
  'made_unabl_sleep',
  'unabl_sleep_last',
  'sleep_last_night',
  'last_night_told',
  'night_told_ever',
  'told_ever_go',
  'ever_go_room',
  'go_room_need',
  'room_need_go',
  'need_go_kyle',
  'go_kyle_start',
  'kyle_start_say',
  'start_say_right',
  'say_right_go',
  'right_go_room',
  'go_room_tri',
  'room_tri_sleep',
  'tri_sleep_play',
  'sleep_play_lara',
  'play_lara_yell',
  'lara_yell_said',
  'yell_said_wait',
  'said_wait_move',
  'wait_move_soon',
  'move_soon_longer',
  'soon_longer_deal',
  'longer_deal_also',
  'deal_also_call',
  'also_call_aw',
  'call_aw_mother',
  'aw_mother_give',
  'mother_give_bedroom',
  'give_bedroom_lock'],
 ['husband',
  'sister',
  'suppos',
  'marri',
  'septemb',
  'chose',
  'item',
  'registri',
  'exact',
  'item',
  'ad',
  'weird',
  'detail',
  'explicitli',
  'mention',
  'previous',
  'need',
  'option',
  'registri',
  'accident',
  'list',
  'option',
  'ask',
  'make',
  'sure',
  'got',
  'need',
  'knew',
  'exactli',
  'plan',
  'gift',
  'sadli',
  'broken',
  'gift',
  'ship',
  'yet',
  'anyway',
  'cancel',
  'past',
  'week',
  'reach',
  'sinc',
  'knew',
  'purchas',
  'live',
  'far',
  'away',
  'concern',
  'deliv',
  'someon',
  'stolen',
  'explain',
  'cancel',
  'pretti',
  'upset',
  'mil',
  'reach',
  'us',
  'feel',
  'unkind',
  'cancel',
  'order',
  'feel',
  'sinc',
  'sil',
  'clearli',
  'go',
  'difficult',
  'time',
  'holiday',
  'approach',
  'wouldv',
  'appropri',
  'let',
  'gift',
  'reach',
  'anyway',
  'obvious',
  'unfortun',
  'circumst',
  'substanti',
  'gift',
  '$',
  'pretti',
  'well',
  'threshold',
  'id',
  'normal',
  'spend',
  'typic',
  'holiday',
  'gift',
  'come',
  'ill',
  'mention',
  'short',
  'sweet',
  'husband',
  'militari',
  'current',
  'deploy',
  'big',
  'piec',
  'puzzl',
  'im',
  'solo',
  'awkward',
  'adventur',
  'husband_sister',
  'sister_suppos',
  'suppos_marri',
  'marri_septemb',
  'septemb_chose',
  'chose_item',
  'item_registri',
  'registri_exact',
  'exact_item',
  'item_ad',
  'ad_weird',
  'weird_detail',
  'detail_explicitli',
  'explicitli_mention',
  'mention_previous',
  'previous_need',
  'need_option',
  'option_registri',
  'registri_accident',
  'accident_list',
  'list_option',
  'option_ask',
  'ask_make',
  'make_sure',
  'sure_got',
  'got_need',
  'need_knew',
  'knew_exactli',
  'exactli_plan',
  'plan_gift',
  'gift_sadli',
  'sadli_broken',
  'broken_gift',
  'gift_ship',
  'ship_yet',
  'yet_anyway',
  'anyway_cancel',
  'cancel_past',
  'past_week',
  'week_reach',
  'reach_sinc',
  'sinc_knew',
  'knew_purchas',
  'purchas_live',
  'live_far',
  'far_away',
  'away_concern',
  'concern_deliv',
  'deliv_someon',
  'someon_stolen',
  'stolen_explain',
  'explain_cancel',
  'cancel_pretti',
  'pretti_upset',
  'upset_mil',
  'mil_reach',
  'reach_us',
  'us_feel',
  'feel_unkind',
  'unkind_cancel',
  'cancel_order',
  'order_feel',
  'feel_sinc',
  'sinc_sil',
  'sil_clearli',
  'clearli_go',
  'go_difficult',
  'difficult_time',
  'time_holiday',
  'holiday_approach',
  'approach_wouldv',
  'wouldv_appropri',
  'appropri_let',
  'let_gift',
  'gift_reach',
  'reach_anyway',
  'anyway_obvious',
  'obvious_unfortun',
  'unfortun_circumst',
  'circumst_substanti',
  'substanti_gift',
  'gift_$',
  '$_pretti',
  'pretti_well',
  'well_threshold',
  'threshold_id',
  'id_normal',
  'normal_spend',
  'spend_typic',
  'typic_holiday',
  'holiday_gift',
  'gift_come',
  'come_ill',
  'ill_mention',
  'mention_short',
  'short_sweet',
  'sweet_husband',
  'husband_militari',
  'militari_current',
  'current_deploy',
  'deploy_big',
  'big_piec',
  'piec_puzzl',
  'puzzl_im',
  'im_solo',
  'solo_awkward',
  'awkward_adventur',
  'husband_sister_suppos',
  'sister_suppos_marri',
  'suppos_marri_septemb',
  'marri_septemb_chose',
  'septemb_chose_item',
  'chose_item_registri',
  'item_registri_exact',
  'registri_exact_item',
  'exact_item_ad',
  'item_ad_weird',
  'ad_weird_detail',
  'weird_detail_explicitli',
  'detail_explicitli_mention',
  'explicitli_mention_previous',
  'mention_previous_need',
  'previous_need_option',
  'need_option_registri',
  'option_registri_accident',
  'registri_accident_list',
  'accident_list_option',
  'list_option_ask',
  'option_ask_make',
  'ask_make_sure',
  'make_sure_got',
  'sure_got_need',
  'got_need_knew',
  'need_knew_exactli',
  'knew_exactli_plan',
  'exactli_plan_gift',
  'plan_gift_sadli',
  'gift_sadli_broken',
  'sadli_broken_gift',
  'broken_gift_ship',
  'gift_ship_yet',
  'ship_yet_anyway',
  'yet_anyway_cancel',
  'anyway_cancel_past',
  'cancel_past_week',
  'past_week_reach',
  'week_reach_sinc',
  'reach_sinc_knew',
  'sinc_knew_purchas',
  'knew_purchas_live',
  'purchas_live_far',
  'live_far_away',
  'far_away_concern',
  'away_concern_deliv',
  'concern_deliv_someon',
  'deliv_someon_stolen',
  'someon_stolen_explain',
  'stolen_explain_cancel',
  'explain_cancel_pretti',
  'cancel_pretti_upset',
  'pretti_upset_mil',
  'upset_mil_reach',
  'mil_reach_us',
  'reach_us_feel',
  'us_feel_unkind',
  'feel_unkind_cancel',
  'unkind_cancel_order',
  'cancel_order_feel',
  'order_feel_sinc',
  'feel_sinc_sil',
  'sinc_sil_clearli',
  'sil_clearli_go',
  'clearli_go_difficult',
  'go_difficult_time',
  'difficult_time_holiday',
  'time_holiday_approach',
  'holiday_approach_wouldv',
  'approach_wouldv_appropri',
  'wouldv_appropri_let',
  'appropri_let_gift',
  'let_gift_reach',
  'gift_reach_anyway',
  'reach_anyway_obvious',
  'anyway_obvious_unfortun',
  'obvious_unfortun_circumst',
  'unfortun_circumst_substanti',
  'circumst_substanti_gift',
  'substanti_gift_$',
  'gift_$_pretti',
  '$_pretti_well',
  'pretti_well_threshold',
  'well_threshold_id',
  'threshold_id_normal',
  'id_normal_spend',
  'normal_spend_typic',
  'spend_typic_holiday',
  'typic_holiday_gift',
  'holiday_gift_come',
  'gift_come_ill',
  'come_ill_mention',
  'ill_mention_short',
  'mention_short_sweet',
  'short_sweet_husband',
  'sweet_husband_militari',
  'husband_militari_current',
  'militari_current_deploy',
  'current_deploy_big',
  'deploy_big_piec',
  'big_piec_puzzl',
  'piec_puzzl_im',
  'puzzl_im_solo',
  'im_solo_awkward',
  'solo_awkward_adventur'],
 ['fiancé',
  'get',
  'marri',
  'come',
  'conserv',
  'famili',
  'mom',
  'wed',
  'plan',
  'pose',
  'supervisor',
  'overse',
  'catch',
  '&',
  'elmini',
  'anyth',
  'could',
  'seen',
  'offens',
  'wed',
  'dress',
  'fiascoi',
  'told',
  'get',
  'dress',
  'show',
  'much',
  'skincam',
  'makeup',
  'issu',
  'show',
  'fiancé',
  'look',
  'want',
  'choos',
  'gasp',
  'said',
  'mom',
  'would',
  'stroke',
  'saw',
  'frustart',
  'ask',
  'next',
  'thing',
  'knew',
  'expect',
  'send',
  'look',
  'model',
  'almost',
  'makeup',
  'light',
  'makeup',
  'eyeshadow',
  'glowli',
  'lipstick',
  'justplain',
  'look',
  'refus',
  'choos',
  'suggest',
  'argument',
  'fiancé',
  'came',
  'home',
  'argu',
  'im',
  'plan',
  'humili',
  'famili',
  'wed',
  'want',
  'look',
  'like',
  'clown',
  'make',
  'joke',
  'us',
  'snap',
  'call',
  'delusion',
  'think',
  'ill',
  'let',
  'mom',
  'get',
  'say',
  'makeup',
  'wear',
  'sinc',
  'face',
  'said',
  'thing',
  'mine',
  'marriag',
  'im',
  'clearli',
  'immatur',
  'avoid',
  'say',
  'know',
  'im',
  'avoid',
  'mom',
  'sent',
  'text',
  'best',
  'interest',
  'heart',
  'aita',
  'fiancé_get',
  'get_marri',
  'marri_come',
  'come_conserv',
  'conserv_famili',
  'famili_mom',
  'mom_wed',
  'wed_plan',
  'plan_pose',
  'pose_supervisor',
  'supervisor_overse',
  'overse_catch',
  'catch_&',
  '&_elmini',
  'elmini_anyth',
  'anyth_could',
  'could_seen',
  'seen_offens',
  'offens_wed',
  'wed_dress',
  'dress_fiascoi',
  'fiascoi_told',
  'told_get',
  'get_dress',
  'dress_show',
  'show_much',
  'much_skincam',
  'skincam_makeup',
  'makeup_issu',
  'issu_show',
  'show_fiancé',
  'fiancé_look',
  'look_want',
  'want_choos',
  'choos_gasp',
  'gasp_said',
  'said_mom',
  'mom_would',
  'would_stroke',
  'stroke_saw',
  'saw_frustart',
  'frustart_ask',
  'ask_next',
  'next_thing',
  'thing_knew',
  'knew_expect',
  'expect_send',
  'send_look',
  'look_model',
  'model_almost',
  'almost_makeup',
  'makeup_light',
  'light_makeup',
  'makeup_eyeshadow',
  'eyeshadow_glowli',
  'glowli_lipstick',
  'lipstick_justplain',
  'justplain_look',
  'look_refus',
  'refus_choos',
  'choos_suggest',
  'suggest_argument',
  'argument_fiancé',
  'fiancé_came',
  'came_home',
  'home_argu',
  'argu_im',
  'im_plan',
  'plan_humili',
  'humili_famili',
  'famili_wed',
  'wed_want',
  'want_look',
  'look_like',
  'like_clown',
  'clown_make',
  'make_joke',
  'joke_us',
  'us_snap',
  'snap_call',
  'call_delusion',
  'delusion_think',
  'think_ill',
  'ill_let',
  'let_mom',
  'mom_get',
  'get_say',
  'say_makeup',
  'makeup_wear',
  'wear_sinc',
  'sinc_face',
  'face_said',
  'said_thing',
  'thing_mine',
  'mine_marriag',
  'marriag_im',
  'im_clearli',
  'clearli_immatur',
  'immatur_avoid',
  'avoid_say',
  'say_know',
  'know_im',
  'im_avoid',
  'avoid_mom',
  'mom_sent',
  'sent_text',
  'text_best',
  'best_interest',
  'interest_heart',
  'heart_aita',
  'fiancé_get_marri',
  'get_marri_come',
  'marri_come_conserv',
  'come_conserv_famili',
  'conserv_famili_mom',
  'famili_mom_wed',
  'mom_wed_plan',
  'wed_plan_pose',
  'plan_pose_supervisor',
  'pose_supervisor_overse',
  'supervisor_overse_catch',
  'overse_catch_&',
  'catch_&_elmini',
  '&_elmini_anyth',
  'elmini_anyth_could',
  'anyth_could_seen',
  'could_seen_offens',
  'seen_offens_wed',
  'offens_wed_dress',
  'wed_dress_fiascoi',
  'dress_fiascoi_told',
  'fiascoi_told_get',
  'told_get_dress',
  'get_dress_show',
  'dress_show_much',
  'show_much_skincam',
  'much_skincam_makeup',
  'skincam_makeup_issu',
  'makeup_issu_show',
  'issu_show_fiancé',
  'show_fiancé_look',
  'fiancé_look_want',
  'look_want_choos',
  'want_choos_gasp',
  'choos_gasp_said',
  'gasp_said_mom',
  'said_mom_would',
  'mom_would_stroke',
  'would_stroke_saw',
  'stroke_saw_frustart',
  'saw_frustart_ask',
  'frustart_ask_next',
  'ask_next_thing',
  'next_thing_knew',
  'thing_knew_expect',
  'knew_expect_send',
  'expect_send_look',
  'send_look_model',
  'look_model_almost',
  'model_almost_makeup',
  'almost_makeup_light',
  'makeup_light_makeup',
  'light_makeup_eyeshadow',
  'makeup_eyeshadow_glowli',
  'eyeshadow_glowli_lipstick',
  'glowli_lipstick_justplain',
  'lipstick_justplain_look',
  'justplain_look_refus',
  'look_refus_choos',
  'refus_choos_suggest',
  'choos_suggest_argument',
  'suggest_argument_fiancé',
  'argument_fiancé_came',
  'fiancé_came_home',
  'came_home_argu',
  'home_argu_im',
  'argu_im_plan',
  'im_plan_humili',
  'plan_humili_famili',
  'humili_famili_wed',
  'famili_wed_want',
  'wed_want_look',
  'want_look_like',
  'look_like_clown',
  'like_clown_make',
  'clown_make_joke',
  'make_joke_us',
  'joke_us_snap',
  'us_snap_call',
  'snap_call_delusion',
  'call_delusion_think',
  'delusion_think_ill',
  'think_ill_let',
  'ill_let_mom',
  'let_mom_get',
  'mom_get_say',
  'get_say_makeup',
  'say_makeup_wear',
  'makeup_wear_sinc',
  'wear_sinc_face',
  'sinc_face_said',
  'face_said_thing',
  'said_thing_mine',
  'thing_mine_marriag',
  'mine_marriag_im',
  'marriag_im_clearli',
  'im_clearli_immatur',
  'clearli_immatur_avoid',
  'immatur_avoid_say',
  'avoid_say_know',
  'say_know_im',
  'know_im_avoid',
  'im_avoid_mom',
  'avoid_mom_sent',
  'mom_sent_text',
  'sent_text_best',
  'text_best_interest',
  'best_interest_heart',
  'interest_heart_aita'],
 ['ex',
  'wife',
  'part',
  'shortli',
  'birth',
  'year',
  'old',
  'daughter',
  'also',
  'year',
  'old',
  'son',
  'togeth',
  'messi',
  'breakup',
  'slightest',
  'fell',
  'love',
  'still',
  'maintain',
  'incred',
  'friendship',
  'today',
  'co-par',
  'easi',
  'custodi',
  'court',
  'involv',
  'spend',
  'week',
  'week',
  'live',
  'close',
  'anyway',
  'anyway',
  'love',
  'arrang',
  'ex',
  'wife',
  'agre',
  'way',
  'would',
  'rais',
  'punish',
  'children',
  'misbehav',
  'way',
  'structur',
  'stay',
  'consist',
  'one',
  'parent',
  'favour',
  'ive',
  'date',
  'girl',
  'around',
  'year',
  'alway',
  'amaz',
  'children',
  'last',
  'decemb',
  'got',
  'marri',
  'thing',
  'fine',
  'last',
  'week',
  'daughter',
  'stole',
  'pocket',
  'full',
  'chocol',
  'littl',
  'corner',
  'store',
  'ex',
  'would',
  'march',
  'store',
  'return',
  'chocol',
  'owner',
  'apolog',
  'new',
  'wife',
  'took',
  'children',
  'home',
  'sat',
  'daughter',
  'tabl',
  'forc',
  'eat',
  'entir',
  'lot',
  'make',
  'brother',
  'watch',
  'continu',
  'make',
  'daughter',
  'eat',
  'even',
  'shed',
  'complain',
  'belli',
  'ach',
  'son',
  'told',
  'got',
  'home',
  'work',
  'immedi',
  'confront',
  'wife',
  'tell',
  'ex',
  'system',
  'disciplin',
  'kid',
  'absolut',
  'choic',
  'punish',
  'children',
  'goe',
  'agre',
  'upon',
  'method',
  'keep',
  'everyth',
  'consist',
  'appreci',
  'make',
  'daughter',
  'feel',
  'sick',
  'slept',
  'night',
  'skip',
  'dinner',
  'stomach',
  'wife',
  'extrem',
  'upset',
  'say',
  'cant',
  'expect',
  'marri',
  'say',
  'rais',
  'repeat',
  'rais',
  'ex',
  'respect',
  'follow',
  'method',
  'got',
  'silent',
  'treatment',
  'day',
  'said',
  'handl',
  'sight',
  'anymor',
  'went',
  'stay',
  'mother',
  'cours',
  'mother',
  'call',
  'ah',
  'say',
  'im',
  'treat',
  'unequ',
  'parent',
  'figur',
  'hous',
  'say',
  'kid',
  'rais',
  'well',
  'consid',
  'stepmom',
  'spoke',
  'ex',
  'agre',
  'stanc',
  'thank',
  'stand',
  'choic',
  'defend',
  'agreement',
  'aita',
  'littl',
  'updat',
  'yall',
  'thing',
  'blew',
  'quit',
  'dramat',
  'last',
  'hour',
  'ive',
  'chanc',
  'talk',
  'kid',
  'treatment',
  'im',
  'home',
  'lot',
  'peopl',
  'suspect',
  'warn',
  'fear',
  'use',
  'parent',
  'punish',
  'tactic',
  'son',
  'whenev',
  'misbehav',
  'includ',
  'make',
  'stand',
  'sun',
  'concret',
  'let',
  'go',
  'punish',
  'jump',
  'pool',
  'told',
  'rip',
  'sketch',
  'book',
  'punish',
  'draw',
  'desk',
  'put',
  'hand',
  'ici',
  'water',
  'punish',
  'steal',
  'ice',
  'pop',
  'son',
  'rang',
  'alarm',
  'time',
  'sister',
  'punish',
  'confront',
  'wife',
  'seem',
  'find',
  'problem',
  'action',
  'claim',
  'relat',
  'behaviour',
  'exhibit',
  'needless',
  'say',
  'im',
  'happi',
  'got',
  'ta',
  'go',
  'ex_wife',
  'wife_part',
  'part_shortli',
  'shortli_birth',
  'birth_year',
  'year_old',
  'old_daughter',
  'daughter_also',
  'also_year',
  'year_old',
  'old_son',
  'son_togeth',
  'togeth_messi',
  'messi_breakup',
  'breakup_slightest',
  'slightest_fell',
  'fell_love',
  'love_still',
  'still_maintain',
  'maintain_incred',
  'incred_friendship',
  'friendship_today',
  'today_co-par',
  'co-par_easi',
  'easi_custodi',
  'custodi_court',
  'court_involv',
  'involv_spend',
  'spend_week',
  'week_week',
  'week_live',
  'live_close',
  'close_anyway',
  'anyway_anyway',
  'anyway_love',
  'love_arrang',
  'arrang_ex',
  'ex_wife',
  'wife_agre',
  'agre_way',
  'way_would',
  'would_rais',
  'rais_punish',
  'punish_children',
  'children_misbehav',
  'misbehav_way',
  'way_structur',
  'structur_stay',
  'stay_consist',
  'consist_one',
  'one_parent',
  'parent_favour',
  'favour_ive',
  'ive_date',
  'date_girl',
  'girl_around',
  'around_year',
  'year_alway',
  'alway_amaz',
  'amaz_children',
  'children_last',
  'last_decemb',
  'decemb_got',
  'got_marri',
  'marri_thing',
  'thing_fine',
  'fine_last',
  'last_week',
  'week_daughter',
  'daughter_stole',
  'stole_pocket',
  'pocket_full',
  'full_chocol',
  'chocol_littl',
  'littl_corner',
  'corner_store',
  'store_ex',
  'ex_would',
  'would_march',
  'march_store',
  'store_return',
  'return_chocol',
  'chocol_owner',
  'owner_apolog',
  'apolog_new',
  'new_wife',
  'wife_took',
  'took_children',
  'children_home',
  'home_sat',
  'sat_daughter',
  'daughter_tabl',
  'tabl_forc',
  'forc_eat',
  'eat_entir',
  'entir_lot',
  'lot_make',
  'make_brother',
  'brother_watch',
  'watch_continu',
  'continu_make',
  'make_daughter',
  'daughter_eat',
  'eat_even',
  'even_shed',
  'shed_complain',
  'complain_belli',
  'belli_ach',
  'ach_son',
  'son_told',
  'told_got',
  'got_home',
  'home_work',
  'work_immedi',
  'immedi_confront',
  'confront_wife',
  'wife_tell',
  'tell_ex',
  'ex_system',
  'system_disciplin',
  'disciplin_kid',
  'kid_absolut',
  'absolut_choic',
  'choic_punish',
  'punish_children',
  'children_goe',
  'goe_agre',
  'agre_upon',
  'upon_method',
  'method_keep',
  'keep_everyth',
  'everyth_consist',
  'consist_appreci',
  'appreci_make',
  'make_daughter',
  'daughter_feel',
  'feel_sick',
  'sick_slept',
  'slept_night',
  'night_skip',
  'skip_dinner',
  'dinner_stomach',
  'stomach_wife',
  'wife_extrem',
  'extrem_upset',
  'upset_say',
  'say_cant',
  'cant_expect',
  'expect_marri',
  'marri_say',
  'say_rais',
  'rais_repeat',
  'repeat_rais',
  'rais_ex',
  'ex_respect',
  'respect_follow',
  'follow_method',
  'method_got',
  'got_silent',
  'silent_treatment',
  'treatment_day',
  'day_said',
  'said_handl',
  'handl_sight',
  'sight_anymor',
  'anymor_went',
  'went_stay',
  'stay_mother',
  'mother_cours',
  'cours_mother',
  'mother_call',
  'call_ah',
  'ah_say',
  'say_im',
  'im_treat',
  'treat_unequ',
  'unequ_parent',
  'parent_figur',
  'figur_hous',
  'hous_say',
  'say_kid',
  'kid_rais',
  'rais_well',
  'well_consid',
  'consid_stepmom',
  'stepmom_spoke',
  'spoke_ex',
  'ex_agre',
  'agre_stanc',
  'stanc_thank',
  'thank_stand',
  'stand_choic',
  'choic_defend',
  'defend_agreement',
  'agreement_aita',
  'aita_littl',
  'littl_updat',
  'updat_yall',
  'yall_thing',
  'thing_blew',
  'blew_quit',
  'quit_dramat',
  'dramat_last',
  'last_hour',
  'hour_ive',
  'ive_chanc',
  'chanc_talk',
  'talk_kid',
  'kid_treatment',
  'treatment_im',
  'im_home',
  'home_lot',
  'lot_peopl',
  'peopl_suspect',
  'suspect_warn',
  'warn_fear',
  'fear_use',
  'use_parent',
  'parent_punish',
  'punish_tactic',
  'tactic_son',
  'son_whenev',
  'whenev_misbehav',
  'misbehav_includ',
  'includ_make',
  'make_stand',
  'stand_sun',
  'sun_concret',
  'concret_let',
  'let_go',
  'go_punish',
  'punish_jump',
  'jump_pool',
  'pool_told',
  'told_rip',
  'rip_sketch',
  'sketch_book',
  'book_punish',
  'punish_draw',
  'draw_desk',
  'desk_put',
  'put_hand',
  'hand_ici',
  'ici_water',
  'water_punish',
  'punish_steal',
  'steal_ice',
  'ice_pop',
  'pop_son',
  'son_rang',
  'rang_alarm',
  'alarm_time',
  'time_sister',
  'sister_punish',
  'punish_confront',
  'confront_wife',
  'wife_seem',
  'seem_find',
  'find_problem',
  'problem_action',
  'action_claim',
  'claim_relat',
  'relat_behaviour',
  'behaviour_exhibit',
  'exhibit_needless',
  'needless_say',
  'say_im',
  'im_happi',
  'happi_got',
  'got_ta',
  'ta_go',
  'ex_wife_part',
  'wife_part_shortli',
  'part_shortli_birth',
  'shortli_birth_year',
  'birth_year_old',
  'year_old_daughter',
  'old_daughter_also',
  'daughter_also_year',
  'also_year_old',
  'year_old_son',
  'old_son_togeth',
  'son_togeth_messi',
  'togeth_messi_breakup',
  'messi_breakup_slightest',
  'breakup_slightest_fell',
  'slightest_fell_love',
  'fell_love_still',
  'love_still_maintain',
  'still_maintain_incred',
  'maintain_incred_friendship',
  'incred_friendship_today',
  'friendship_today_co-par',
  'today_co-par_easi',
  'co-par_easi_custodi',
  'easi_custodi_court',
  'custodi_court_involv',
  'court_involv_spend',
  'involv_spend_week',
  'spend_week_week',
  'week_week_live',
  'week_live_close',
  'live_close_anyway',
  'close_anyway_anyway',
  'anyway_anyway_love',
  'anyway_love_arrang',
  'love_arrang_ex',
  'arrang_ex_wife',
  'ex_wife_agre',
  'wife_agre_way',
  'agre_way_would',
  'way_would_rais',
  'would_rais_punish',
  'rais_punish_children',
  'punish_children_misbehav',
  'children_misbehav_way',
  'misbehav_way_structur',
  'way_structur_stay',
  'structur_stay_consist',
  'stay_consist_one',
  'consist_one_parent',
  'one_parent_favour',
  'parent_favour_ive',
  'favour_ive_date',
  'ive_date_girl',
  'date_girl_around',
  'girl_around_year',
  'around_year_alway',
  'year_alway_amaz',
  'alway_amaz_children',
  'amaz_children_last',
  'children_last_decemb',
  'last_decemb_got',
  'decemb_got_marri',
  'got_marri_thing',
  'marri_thing_fine',
  'thing_fine_last',
  'fine_last_week',
  'last_week_daughter',
  'week_daughter_stole',
  'daughter_stole_pocket',
  'stole_pocket_full',
  'pocket_full_chocol',
  'full_chocol_littl',
  'chocol_littl_corner',
  'littl_corner_store',
  'corner_store_ex',
  'store_ex_would',
  'ex_would_march',
  'would_march_store',
  'march_store_return',
  'store_return_chocol',
  'return_chocol_owner',
  'chocol_owner_apolog',
  'owner_apolog_new',
  'apolog_new_wife',
  'new_wife_took',
  'wife_took_children',
  'took_children_home',
  'children_home_sat',
  'home_sat_daughter',
  'sat_daughter_tabl',
  'daughter_tabl_forc',
  'tabl_forc_eat',
  'forc_eat_entir',
  'eat_entir_lot',
  'entir_lot_make',
  'lot_make_brother',
  'make_brother_watch',
  'brother_watch_continu',
  'watch_continu_make',
  'continu_make_daughter',
  'make_daughter_eat',
  'daughter_eat_even',
  'eat_even_shed',
  'even_shed_complain',
  'shed_complain_belli',
  'complain_belli_ach',
  'belli_ach_son',
  'ach_son_told',
  'son_told_got',
  'told_got_home',
  'got_home_work',
  'home_work_immedi',
  'work_immedi_confront',
  'immedi_confront_wife',
  'confront_wife_tell',
  'wife_tell_ex',
  'tell_ex_system',
  'ex_system_disciplin',
  'system_disciplin_kid',
  'disciplin_kid_absolut',
  'kid_absolut_choic',
  'absolut_choic_punish',
  'choic_punish_children',
  'punish_children_goe',
  'children_goe_agre',
  'goe_agre_upon',
  'agre_upon_method',
  'upon_method_keep',
  'method_keep_everyth',
  'keep_everyth_consist',
  'everyth_consist_appreci',
  'consist_appreci_make',
  'appreci_make_daughter',
  'make_daughter_feel',
  'daughter_feel_sick',
  'feel_sick_slept',
  'sick_slept_night',
  'slept_night_skip',
  'night_skip_dinner',
  'skip_dinner_stomach',
  'dinner_stomach_wife',
  'stomach_wife_extrem',
  'wife_extrem_upset',
  'extrem_upset_say',
  'upset_say_cant',
  'say_cant_expect',
  'cant_expect_marri',
  'expect_marri_say',
  'marri_say_rais',
  'say_rais_repeat',
  'rais_repeat_rais',
  'repeat_rais_ex',
  'rais_ex_respect',
  'ex_respect_follow',
  'respect_follow_method',
  'follow_method_got',
  'method_got_silent',
  'got_silent_treatment',
  'silent_treatment_day',
  'treatment_day_said',
  'day_said_handl',
  'said_handl_sight',
  'handl_sight_anymor',
  'sight_anymor_went',
  'anymor_went_stay',
  'went_stay_mother',
  'stay_mother_cours',
  'mother_cours_mother',
  'cours_mother_call',
  'mother_call_ah',
  'call_ah_say',
  'ah_say_im',
  'say_im_treat',
  'im_treat_unequ',
  'treat_unequ_parent',
  'unequ_parent_figur',
  'parent_figur_hous',
  'figur_hous_say',
  'hous_say_kid',
  'say_kid_rais',
  'kid_rais_well',
  'rais_well_consid',
  'well_consid_stepmom',
  'consid_stepmom_spoke',
  'stepmom_spoke_ex',
  'spoke_ex_agre',
  'ex_agre_stanc',
  'agre_stanc_thank',
  'stanc_thank_stand',
  'thank_stand_choic',
  'stand_choic_defend',
  'choic_defend_agreement',
  'defend_agreement_aita',
  'agreement_aita_littl',
  'aita_littl_updat',
  'littl_updat_yall',
  'updat_yall_thing',
  'yall_thing_blew',
  'thing_blew_quit',
  'blew_quit_dramat',
  'quit_dramat_last',
  'dramat_last_hour',
  'last_hour_ive',
  'hour_ive_chanc',
  'ive_chanc_talk',
  'chanc_talk_kid',
  'talk_kid_treatment',
  'kid_treatment_im',
  'treatment_im_home',
  'im_home_lot',
  'home_lot_peopl',
  'lot_peopl_suspect',
  'peopl_suspect_warn',
  'suspect_warn_fear',
  'warn_fear_use',
  'fear_use_parent',
  'use_parent_punish',
  'parent_punish_tactic',
  'punish_tactic_son',
  'tactic_son_whenev',
  'son_whenev_misbehav',
  'whenev_misbehav_includ',
  'misbehav_includ_make',
  'includ_make_stand',
  'make_stand_sun',
  'stand_sun_concret',
  'sun_concret_let',
  'concret_let_go',
  'let_go_punish',
  'go_punish_jump',
  'punish_jump_pool',
  'jump_pool_told',
  'pool_told_rip',
  'told_rip_sketch',
  'rip_sketch_book',
  'sketch_book_punish',
  'book_punish_draw',
  'punish_draw_desk',
  'draw_desk_put',
  'desk_put_hand',
  'put_hand_ici',
  'hand_ici_water',
  'ici_water_punish',
  'water_punish_steal',
  'punish_steal_ice',
  'steal_ice_pop',
  'ice_pop_son',
  'pop_son_rang',
  'son_rang_alarm',
  'rang_alarm_time',
  'alarm_time_sister',
  'time_sister_punish',
  'sister_punish_confront',
  'punish_confront_wife',
  'confront_wife_seem',
  'wife_seem_find',
  'seem_find_problem',
  'find_problem_action',
  'problem_action_claim',
  'action_claim_relat',
  'claim_relat_behaviour',
  'relat_behaviour_exhibit',
  'behaviour_exhibit_needless',
  'exhibit_needless_say',
  'needless_say_im',
  'say_im_happi',
  'im_happi_got',
  'happi_got_ta',
  'got_ta_go'],
 ['know',
  'sound',
  'insan',
  'caus',
  'grief',
  'week',
  'move',
  'back',
  'home',
  'year',
  'ago',
  'take',
  'parent',
  'hobbi',
  'farm',
  'parent',
  'ask',
  'continu',
  'keep',
  'sheep',
  'goat',
  'herd',
  'predat',
  'anim',
  'common',
  'weve',
  'alway',
  'livestock',
  'guard',
  'dog',
  'well',
  'train',
  'social',
  'allow',
  'dog',
  'know',
  'farm',
  'unless',
  'im',
  'entir',
  'time',
  'set',
  'like',
  '-',
  'one',
  'side',
  'sheep',
  'pasturesbarn',
  'side',
  'goat',
  'middl',
  'gigant',
  'fenc',
  'area',
  'dog',
  'toy',
  'feeder',
  'water',
  'trough',
  'wade',
  'pool',
  'dog',
  'shed',
  'go',
  'one',
  'pastur',
  'gate',
  'dog',
  'area',
  'face',
  'back',
  'hous',
  'regular',
  'garden',
  'gate',
  'fix',
  'predat',
  'climb',
  'top',
  'space',
  'inch',
  'gap',
  'top',
  'gate',
  'gate',
  'post',
  'move',
  'latch',
  'easili',
  'small',
  'dog',
  'squeez',
  'noth',
  'gone',
  'one',
  'dog',
  'male',
  'neuter',
  'reason',
  'relat',
  'commun',
  'us',
  'know',
  'helper',
  'come',
  'go',
  'sinc',
  'doggo',
  'perform',
  'specif',
  'function',
  'farm',
  'commun',
  'dog',
  'older',
  'femal',
  'spay',
  'job',
  'requir',
  'travel',
  'awhil',
  'week',
  'trip',
  'month',
  'ago',
  'gf',
  'invit',
  'friend',
  'taylor',
  'come',
  'stay',
  'gone',
  'taylor',
  'arriv',
  'ask',
  'us',
  'room',
  'could',
  'put',
  'dog',
  'crate',
  'told',
  'bring',
  'dog',
  'sinc',
  'id',
  'gone',
  'arriv',
  'dog',
  'heat',
  'gf',
  'told',
  'could',
  'bring',
  'offer',
  'pay',
  'dog',
  'go',
  'local',
  'kennel',
  'sinc',
  'id',
  'gone',
  'gf',
  'taylor',
  'said',
  'control',
  'told',
  'want',
  'leav',
  'room',
  'issu',
  'day',
  'leav',
  'taylor',
  'let',
  'dog',
  'unsupervis',
  'caught',
  'dog',
  'tri',
  'squeez',
  'gap',
  'gate',
  'got',
  'dog',
  'brought',
  'back',
  'told',
  'either',
  'keep',
  'dog',
  'leash',
  'supervis',
  'time',
  'outsid',
  'goe',
  'home',
  'gf',
  'fought',
  'leav',
  'work',
  'trip',
  'resolv',
  'ask',
  'cousin',
  'gone',
  'said',
  'wife',
  'saw',
  'dog',
  'leash',
  'taylor',
  'left',
  'day',
  'got',
  'home',
  'week',
  'later',
  'dog',
  'puppi',
  'gf',
  'admit',
  'put',
  'taylor',
  'dog',
  'leash',
  'cousin',
  'let',
  'run',
  'rest',
  'time',
  'dog',
  'kept',
  'get',
  'dog',
  'yard',
  'boy',
  'stop',
  'saw',
  'taylor',
  'want',
  'pay',
  'half',
  'vet',
  'bill',
  'puppi',
  'expens',
  'theyr',
  'home',
  'rail',
  'gf',
  'dog',
  'neuter',
  'refus',
  'pay',
  'dog',
  'contain',
  'stay',
  'suppos',
  'told',
  'taylor',
  'bring',
  'dog',
  'begin',
  'gf',
  'cover',
  'expens',
  'sinc',
  'went',
  'behind',
  'back',
  'wrong',
  'edit',
  'post',
  'updat',
  'profil',
  'sinc',
  'issu',
  'yet',
  'fulli',
  'resolv',
  'thank',
  'everyon',
  'support',
  'kind',
  '[',
  'updat',
  ']',
  'httpswwwredditcomuseraitapuppy_powercommentsvgqzupdate_for_aita_for_not_paying_half_towards_mi',
  'know_sound',
  'sound_insan',
  'insan_caus',
  'caus_grief',
  'grief_week',
  'week_move',
  'move_back',
  'back_home',
  'home_year',
  'year_ago',
  'ago_take',
  'take_parent',
  'parent_hobbi',
  'hobbi_farm',
  'farm_parent',
  'parent_ask',
  'ask_continu',
  'continu_keep',
  'keep_sheep',
  'sheep_goat',
  'goat_herd',
  'herd_predat',
  'predat_anim',
  'anim_common',
  'common_weve',
  'weve_alway',
  'alway_livestock',
  'livestock_guard',
  'guard_dog',
  'dog_well',
  'well_train',
  'train_social',
  'social_allow',
  'allow_dog',
  'dog_know',
  'know_farm',
  'farm_unless',
  'unless_im',
  'im_entir',
  'entir_time',
  'time_set',
  'set_like',
  'like_-',
  '-_one',
  'one_side',
  'side_sheep',
  'sheep_pasturesbarn',
  'pasturesbarn_side',
  'side_goat',
  'goat_middl',
  'middl_gigant',
  'gigant_fenc',
  'fenc_area',
  'area_dog',
  'dog_toy',
  'toy_feeder',
  'feeder_water',
  'water_trough',
  'trough_wade',
  'wade_pool',
  'pool_dog',
  'dog_shed',
  'shed_go',
  'go_one',
  'one_pastur',
  'pastur_gate',
  'gate_dog',
  'dog_area',
  'area_face',
  'face_back',
  'back_hous',
  'hous_regular',
  'regular_garden',
  'garden_gate',
  'gate_fix',
  'fix_predat',
  'predat_climb',
  'climb_top',
  'top_space',
  'space_inch',
  'inch_gap',
  'gap_top',
  'top_gate',
  'gate_gate',
  'gate_post',
  'post_move',
  'move_latch',
  'latch_easili',
  'easili_small',
  'small_dog',
  'dog_squeez',
  'squeez_noth',
  'noth_gone',
  'gone_one',
  'one_dog',
  'dog_male',
  'male_neuter',
  'neuter_reason',
  'reason_relat',
  'relat_commun',
  'commun_us',
  'us_know',
  'know_helper',
  'helper_come',
  'come_go',
  'go_sinc',
  'sinc_doggo',
  'doggo_perform',
  'perform_specif',
  'specif_function',
  'function_farm',
  'farm_commun',
  'commun_dog',
  'dog_older',
  'older_femal',
  'femal_spay',
  'spay_job',
  'job_requir',
  'requir_travel',
  'travel_awhil',
  'awhil_week',
  'week_trip',
  'trip_month',
  'month_ago',
  'ago_gf',
  'gf_invit',
  'invit_friend',
  'friend_taylor',
  'taylor_come',
  'come_stay',
  'stay_gone',
  'gone_taylor',
  'taylor_arriv',
  'arriv_ask',
  'ask_us',
  'us_room',
  'room_could',
  'could_put',
  'put_dog',
  'dog_crate',
  'crate_told',
  'told_bring',
  'bring_dog',
  'dog_sinc',
  'sinc_id',
  'id_gone',
  'gone_arriv',
  'arriv_dog',
  'dog_heat',
  'heat_gf',
  'gf_told',
  'told_could',
  'could_bring',
  'bring_offer',
  'offer_pay',
  'pay_dog',
  'dog_go',
  'go_local',
  'local_kennel',
  'kennel_sinc',
  'sinc_id',
  'id_gone',
  'gone_gf',
  'gf_taylor',
  'taylor_said',
  'said_control',
  'control_told',
  'told_want',
  'want_leav',
  'leav_room',
  'room_issu',
  'issu_day',
  'day_leav',
  'leav_taylor',
  'taylor_let',
  'let_dog',
  'dog_unsupervis',
  'unsupervis_caught',
  'caught_dog',
  'dog_tri',
  'tri_squeez',
  'squeez_gap',
  'gap_gate',
  'gate_got',
  'got_dog',
  'dog_brought',
  'brought_back',
  'back_told',
  'told_either',
  'either_keep',
  'keep_dog',
  'dog_leash',
  'leash_supervis',
  'supervis_time',
  'time_outsid',
  'outsid_goe',
  'goe_home',
  'home_gf',
  'gf_fought',
  'fought_leav',
  'leav_work',
  'work_trip',
  'trip_resolv',
  'resolv_ask',
  'ask_cousin',
  'cousin_gone',
  'gone_said',
  'said_wife',
  'wife_saw',
  'saw_dog',
  'dog_leash',
  'leash_taylor',
  'taylor_left',
  'left_day',
  'day_got',
  'got_home',
  'home_week',
  'week_later',
  'later_dog',
  'dog_puppi',
  'puppi_gf',
  'gf_admit',
  'admit_put',
  'put_taylor',
  'taylor_dog',
  'dog_leash',
  'leash_cousin',
  'cousin_let',
  'let_run',
  'run_rest',
  'rest_time',
  'time_dog',
  'dog_kept',
  'kept_get',
  'get_dog',
  'dog_yard',
  'yard_boy',
  'boy_stop',
  'stop_saw',
  'saw_taylor',
  'taylor_want',
  'want_pay',
  'pay_half',
  'half_vet',
  'vet_bill',
  'bill_puppi',
  'puppi_expens',
  'expens_theyr',
  'theyr_home',
  'home_rail',
  'rail_gf',
  'gf_dog',
  'dog_neuter',
  'neuter_refus',
  'refus_pay',
  'pay_dog',
  'dog_contain',
  'contain_stay',
  'stay_suppos',
  'suppos_told',
  'told_taylor',
  'taylor_bring',
  'bring_dog',
  'dog_begin',
  'begin_gf',
  'gf_cover',
  'cover_expens',
  'expens_sinc',
  'sinc_went',
  'went_behind',
  'behind_back',
  'back_wrong',
  'wrong_edit',
  'edit_post',
  'post_updat',
  'updat_profil',
  'profil_sinc',
  'sinc_issu',
  'issu_yet',
  'yet_fulli',
  'fulli_resolv',
  'resolv_thank',
  'thank_everyon',
  'everyon_support',
  'support_kind',
  'kind_[',
  '[_updat',
  'updat_]',
  ']_httpswwwredditcomuseraitapuppy_powercommentsvgqzupdate_for_aita_for_not_paying_half_towards_mi',
  'know_sound_insan',
  'sound_insan_caus',
  'insan_caus_grief',
  'caus_grief_week',
  'grief_week_move',
  'week_move_back',
  'move_back_home',
  'back_home_year',
  'home_year_ago',
  'year_ago_take',
  'ago_take_parent',
  'take_parent_hobbi',
  'parent_hobbi_farm',
  'hobbi_farm_parent',
  'farm_parent_ask',
  'parent_ask_continu',
  'ask_continu_keep',
  'continu_keep_sheep',
  'keep_sheep_goat',
  'sheep_goat_herd',
  'goat_herd_predat',
  'herd_predat_anim',
  'predat_anim_common',
  'anim_common_weve',
  'common_weve_alway',
  'weve_alway_livestock',
  'alway_livestock_guard',
  'livestock_guard_dog',
  'guard_dog_well',
  'dog_well_train',
  'well_train_social',
  'train_social_allow',
  'social_allow_dog',
  'allow_dog_know',
  'dog_know_farm',
  'know_farm_unless',
  'farm_unless_im',
  'unless_im_entir',
  'im_entir_time',
  'entir_time_set',
  'time_set_like',
  'set_like_-',
  'like_-_one',
  '-_one_side',
  'one_side_sheep',
  'side_sheep_pasturesbarn',
  'sheep_pasturesbarn_side',
  'pasturesbarn_side_goat',
  'side_goat_middl',
  'goat_middl_gigant',
  'middl_gigant_fenc',
  'gigant_fenc_area',
  'fenc_area_dog',
  'area_dog_toy',
  'dog_toy_feeder',
  'toy_feeder_water',
  'feeder_water_trough',
  'water_trough_wade',
  'trough_wade_pool',
  'wade_pool_dog',
  'pool_dog_shed',
  'dog_shed_go',
  'shed_go_one',
  'go_one_pastur',
  'one_pastur_gate',
  'pastur_gate_dog',
  'gate_dog_area',
  'dog_area_face',
  'area_face_back',
  'face_back_hous',
  'back_hous_regular',
  'hous_regular_garden',
  'regular_garden_gate',
  'garden_gate_fix',
  'gate_fix_predat',
  'fix_predat_climb',
  'predat_climb_top',
  'climb_top_space',
  'top_space_inch',
  'space_inch_gap',
  'inch_gap_top',
  'gap_top_gate',
  'top_gate_gate',
  'gate_gate_post',
  'gate_post_move',
  'post_move_latch',
  'move_latch_easili',
  'latch_easili_small',
  'easili_small_dog',
  'small_dog_squeez',
  'dog_squeez_noth',
  'squeez_noth_gone',
  'noth_gone_one',
  'gone_one_dog',
  'one_dog_male',
  'dog_male_neuter',
  'male_neuter_reason',
  'neuter_reason_relat',
  'reason_relat_commun',
  'relat_commun_us',
  'commun_us_know',
  'us_know_helper',
  'know_helper_come',
  'helper_come_go',
  'come_go_sinc',
  'go_sinc_doggo',
  'sinc_doggo_perform',
  'doggo_perform_specif',
  'perform_specif_function',
  'specif_function_farm',
  'function_farm_commun',
  'farm_commun_dog',
  'commun_dog_older',
  'dog_older_femal',
  'older_femal_spay',
  'femal_spay_job',
  'spay_job_requir',
  'job_requir_travel',
  'requir_travel_awhil',
  'travel_awhil_week',
  'awhil_week_trip',
  'week_trip_month',
  'trip_month_ago',
  'month_ago_gf',
  'ago_gf_invit',
  'gf_invit_friend',
  'invit_friend_taylor',
  'friend_taylor_come',
  'taylor_come_stay',
  'come_stay_gone',
  'stay_gone_taylor',
  'gone_taylor_arriv',
  'taylor_arriv_ask',
  'arriv_ask_us',
  'ask_us_room',
  'us_room_could',
  'room_could_put',
  'could_put_dog',
  'put_dog_crate',
  'dog_crate_told',
  'crate_told_bring',
  'told_bring_dog',
  'bring_dog_sinc',
  'dog_sinc_id',
  'sinc_id_gone',
  'id_gone_arriv',
  'gone_arriv_dog',
  'arriv_dog_heat',
  'dog_heat_gf',
  'heat_gf_told',
  'gf_told_could',
  'told_could_bring',
  'could_bring_offer',
  'bring_offer_pay',
  'offer_pay_dog',
  'pay_dog_go',
  'dog_go_local',
  'go_local_kennel',
  'local_kennel_sinc',
  'kennel_sinc_id',
  'sinc_id_gone',
  'id_gone_gf',
  'gone_gf_taylor',
  'gf_taylor_said',
  'taylor_said_control',
  'said_control_told',
  'control_told_want',
  'told_want_leav',
  'want_leav_room',
  'leav_room_issu',
  'room_issu_day',
  'issu_day_leav',
  'day_leav_taylor',
  'leav_taylor_let',
  'taylor_let_dog',
  'let_dog_unsupervis',
  'dog_unsupervis_caught',
  'unsupervis_caught_dog',
  'caught_dog_tri',
  'dog_tri_squeez',
  'tri_squeez_gap',
  'squeez_gap_gate',
  'gap_gate_got',
  'gate_got_dog',
  'got_dog_brought',
  'dog_brought_back',
  'brought_back_told',
  'back_told_either',
  'told_either_keep',
  'either_keep_dog',
  'keep_dog_leash',
  'dog_leash_supervis',
  'leash_supervis_time',
  'supervis_time_outsid',
  'time_outsid_goe',
  'outsid_goe_home',
  'goe_home_gf',
  'home_gf_fought',
  'gf_fought_leav',
  'fought_leav_work',
  'leav_work_trip',
  'work_trip_resolv',
  'trip_resolv_ask',
  'resolv_ask_cousin',
  'ask_cousin_gone',
  'cousin_gone_said',
  'gone_said_wife',
  'said_wife_saw',
  'wife_saw_dog',
  'saw_dog_leash',
  'dog_leash_taylor',
  'leash_taylor_left',
  'taylor_left_day',
  'left_day_got',
  'day_got_home',
  'got_home_week',
  'home_week_later',
  'week_later_dog',
  'later_dog_puppi',
  'dog_puppi_gf',
  'puppi_gf_admit',
  'gf_admit_put',
  'admit_put_taylor',
  'put_taylor_dog',
  'taylor_dog_leash',
  'dog_leash_cousin',
  'leash_cousin_let',
  'cousin_let_run',
  'let_run_rest',
  'run_rest_time',
  'rest_time_dog',
  'time_dog_kept',
  'dog_kept_get',
  'kept_get_dog',
  'get_dog_yard',
  'dog_yard_boy',
  'yard_boy_stop',
  'boy_stop_saw',
  'stop_saw_taylor',
  'saw_taylor_want',
  'taylor_want_pay',
  'want_pay_half',
  'pay_half_vet',
  'half_vet_bill',
  'vet_bill_puppi',
  'bill_puppi_expens',
  'puppi_expens_theyr',
  'expens_theyr_home',
  'theyr_home_rail',
  'home_rail_gf',
  'rail_gf_dog',
  'gf_dog_neuter',
  'dog_neuter_refus',
  'neuter_refus_pay',
  'refus_pay_dog',
  'pay_dog_contain',
  'dog_contain_stay',
  'contain_stay_suppos',
  'stay_suppos_told',
  'suppos_told_taylor',
  'told_taylor_bring',
  'taylor_bring_dog',
  'bring_dog_begin',
  'dog_begin_gf',
  'begin_gf_cover',
  'gf_cover_expens',
  'cover_expens_sinc',
  'expens_sinc_went',
  'sinc_went_behind',
  'went_behind_back',
  'behind_back_wrong',
  'back_wrong_edit',
  'wrong_edit_post',
  'edit_post_updat',
  'post_updat_profil',
  'updat_profil_sinc',
  'profil_sinc_issu',
  'sinc_issu_yet',
  'issu_yet_fulli',
  'yet_fulli_resolv',
  'fulli_resolv_thank',
  'resolv_thank_everyon',
  'thank_everyon_support',
  'everyon_support_kind',
  'support_kind_[',
  'kind_[_updat',
  '[_updat_]',
  'updat_]_httpswwwredditcomuseraitapuppy_powercommentsvgqzupdate_for_aita_for_not_paying_half_towards_mi'],
 ['gave',
  'birth',
  'christma',
  'day',
  'son',
  'birth',
  'lessen',
  'visit',
  'husband',
  'made',
  'list',
  'octob',
  'sent',
  'everyon',
  'rule',
  'includ',
  '-up',
  'date',
  'vaccin',
  '-if',
  'feel',
  'anyway',
  'sick',
  'visit',
  '-',
  'let',
  'us',
  'know',
  'week',
  'hand',
  'arrang',
  'daytim',
  '-',
  'smoker',
  '-',
  'phone',
  'call',
  'visit',
  'pm-pm',
  '-you',
  'stay',
  'hour',
  '-no',
  'pick',
  'babi',
  'without',
  'consent',
  '-no',
  'adivc',
  '-no',
  'perfumedeodor',
  '-',
  'explain',
  '-',
  'pictur',
  'taken',
  'post',
  'social',
  'media',
  '-',
  'visit',
  'first',
  'time',
  'expect',
  'give',
  'mom',
  'gift',
  'card',
  'gift',
  'babi',
  'approv',
  'list',
  '-',
  'ever',
  'come',
  'matter',
  'mani',
  'time',
  'give',
  'list',
  'ether',
  'food',
  'groceri',
  'bring',
  'chore',
  'list',
  'choos',
  '-',
  'two',
  'visit',
  'week',
  'per',
  'person',
  'help',
  'keep',
  'visit',
  'minimum',
  'one',
  'complain',
  'favourit',
  'everyon',
  'treat',
  'equal',
  'bring',
  'onto',
  'current',
  'situat',
  'sister',
  'lawf',
  'studi',
  'differ',
  'part',
  'countri',
  'rare',
  'home',
  'ask',
  'visit',
  'last',
  'week',
  'go',
  'back',
  'school',
  'set',
  'date',
  'link',
  'gift',
  'list',
  'sent',
  'takeout',
  'wed',
  'like',
  'includ',
  'chore',
  'choos',
  'sent',
  'immedi',
  'text',
  'back',
  'say',
  'broke',
  'extra',
  'chore',
  'instead',
  'husband',
  'talk',
  'came',
  'decis',
  'bent',
  'rule',
  'one',
  'person',
  'everyon',
  'would',
  'want',
  'treatment',
  'told',
  'clear',
  'rule',
  'mayb',
  'next',
  'time',
  'could',
  'visit',
  'beg',
  'even',
  'said',
  'would',
  'clean',
  'whole',
  'hous',
  'would',
  'june',
  'would',
  'home',
  'simpli',
  'text',
  'repli',
  'left',
  'morn',
  'got',
  'multipl',
  'text',
  'law',
  'belittl',
  'us',
  'use',
  'child',
  'cash',
  'grab',
  'husband',
  'simpli',
  'repli',
  'rule',
  'one',
  'deserv',
  'special',
  'treatment',
  'told',
  'famili',
  'time',
  'block',
  'sinc',
  'famili',
  'friend',
  'told',
  'us',
  'wrong',
  'broke',
  'collag',
  'student',
  'would',
  'understood',
  'look',
  'way',
  'tri',
  'reach',
  'sister',
  'repli',
  'gave_birth',
  'birth_christma',
  'christma_day',
  'day_son',
  'son_birth',
  'birth_lessen',
  'lessen_visit',
  'visit_husband',
  'husband_made',
  'made_list',
  'list_octob',
  'octob_sent',
  'sent_everyon',
  'everyon_rule',
  'rule_includ',
  'includ_-up',
  '-up_date',
  'date_vaccin',
  'vaccin_-if',
  '-if_feel',
  'feel_anyway',
  'anyway_sick',
  'sick_visit',
  'visit_-',
  '-_let',
  'let_us',
  'us_know',
  'know_week',
  'week_hand',
  'hand_arrang',
  'arrang_daytim',
  'daytim_-',
  '-_smoker',
  'smoker_-',
  '-_phone',
  'phone_call',
  'call_visit',
  'visit_pm-pm',
  'pm-pm_-you',
  '-you_stay',
  'stay_hour',
  'hour_-no',
  '-no_pick',
  'pick_babi',
  'babi_without',
  'without_consent',
  'consent_-no',
  '-no_adivc',
  'adivc_-no',
  '-no_perfumedeodor',
  'perfumedeodor_-',
  '-_explain',
  'explain_-',
  '-_pictur',
  'pictur_taken',
  'taken_post',
  'post_social',
  'social_media',
  'media_-',
  '-_visit',
  'visit_first',
  'first_time',
  'time_expect',
  'expect_give',
  'give_mom',
  'mom_gift',
  'gift_card',
  'card_gift',
  'gift_babi',
  'babi_approv',
  'approv_list',
  'list_-',
  '-_ever',
  'ever_come',
  'come_matter',
  'matter_mani',
  'mani_time',
  'time_give',
  'give_list',
  'list_ether',
  'ether_food',
  'food_groceri',
  'groceri_bring',
  'bring_chore',
  'chore_list',
  'list_choos',
  'choos_-',
  '-_two',
  'two_visit',
  'visit_week',
  'week_per',
  'per_person',
  'person_help',
  'help_keep',
  'keep_visit',
  'visit_minimum',
  'minimum_one',
  'one_complain',
  'complain_favourit',
  'favourit_everyon',
  'everyon_treat',
  'treat_equal',
  'equal_bring',
  'bring_onto',
  'onto_current',
  'current_situat',
  'situat_sister',
  'sister_lawf',
  'lawf_studi',
  'studi_differ',
  'differ_part',
  'part_countri',
  'countri_rare',
  'rare_home',
  'home_ask',
  'ask_visit',
  'visit_last',
  'last_week',
  'week_go',
  'go_back',
  'back_school',
  'school_set',
  'set_date',
  'date_link',
  'link_gift',
  'gift_list',
  'list_sent',
  'sent_takeout',
  'takeout_wed',
  'wed_like',
  'like_includ',
  'includ_chore',
  'chore_choos',
  'choos_sent',
  'sent_immedi',
  'immedi_text',
  'text_back',
  'back_say',
  'say_broke',
  'broke_extra',
  'extra_chore',
  'chore_instead',
  'instead_husband',
  'husband_talk',
  'talk_came',
  'came_decis',
  'decis_bent',
  'bent_rule',
  'rule_one',
  'one_person',
  'person_everyon',
  'everyon_would',
  'would_want',
  'want_treatment',
  'treatment_told',
  'told_clear',
  'clear_rule',
  'rule_mayb',
  'mayb_next',
  'next_time',
  'time_could',
  'could_visit',
  'visit_beg',
  'beg_even',
  'even_said',
  'said_would',
  'would_clean',
  'clean_whole',
  'whole_hous',
  'hous_would',
  'would_june',
  'june_would',
  'would_home',
  'home_simpli',
  'simpli_text',
  'text_repli',
  'repli_left',
  'left_morn',
  'morn_got',
  'got_multipl',
  'multipl_text',
  'text_law',
  'law_belittl',
  'belittl_us',
  'us_use',
  'use_child',
  'child_cash',
  'cash_grab',
  'grab_husband',
  'husband_simpli',
  'simpli_repli',
  'repli_rule',
  'rule_one',
  'one_deserv',
  'deserv_special',
  'special_treatment',
  'treatment_told',
  'told_famili',
  'famili_time',
  'time_block',
  'block_sinc',
  'sinc_famili',
  'famili_friend',
  'friend_told',
  'told_us',
  'us_wrong',
  'wrong_broke',
  'broke_collag',
  'collag_student',
  'student_would',
  'would_understood',
  'understood_look',
  'look_way',
  'way_tri',
  'tri_reach',
  'reach_sister',
  'sister_repli',
  'gave_birth_christma',
  'birth_christma_day',
  'christma_day_son',
  'day_son_birth',
  'son_birth_lessen',
  'birth_lessen_visit',
  'lessen_visit_husband',
  'visit_husband_made',
  'husband_made_list',
  'made_list_octob',
  'list_octob_sent',
  'octob_sent_everyon',
  'sent_everyon_rule',
  'everyon_rule_includ',
  'rule_includ_-up',
  'includ_-up_date',
  '-up_date_vaccin',
  'date_vaccin_-if',
  'vaccin_-if_feel',
  '-if_feel_anyway',
  'feel_anyway_sick',
  'anyway_sick_visit',
  'sick_visit_-',
  'visit_-_let',
  '-_let_us',
  'let_us_know',
  'us_know_week',
  'know_week_hand',
  'week_hand_arrang',
  'hand_arrang_daytim',
  'arrang_daytim_-',
  'daytim_-_smoker',
  '-_smoker_-',
  'smoker_-_phone',
  '-_phone_call',
  'phone_call_visit',
  'call_visit_pm-pm',
  'visit_pm-pm_-you',
  'pm-pm_-you_stay',
  '-you_stay_hour',
  'stay_hour_-no',
  'hour_-no_pick',
  '-no_pick_babi',
  'pick_babi_without',
  'babi_without_consent',
  'without_consent_-no',
  'consent_-no_adivc',
  '-no_adivc_-no',
  'adivc_-no_perfumedeodor',
  '-no_perfumedeodor_-',
  'perfumedeodor_-_explain',
  '-_explain_-',
  'explain_-_pictur',
  '-_pictur_taken',
  'pictur_taken_post',
  'taken_post_social',
  'post_social_media',
  'social_media_-',
  'media_-_visit',
  '-_visit_first',
  'visit_first_time',
  'first_time_expect',
  'time_expect_give',
  'expect_give_mom',
  'give_mom_gift',
  'mom_gift_card',
  'gift_card_gift',
  'card_gift_babi',
  'gift_babi_approv',
  'babi_approv_list',
  'approv_list_-',
  'list_-_ever',
  '-_ever_come',
  'ever_come_matter',
  'come_matter_mani',
  'matter_mani_time',
  'mani_time_give',
  'time_give_list',
  'give_list_ether',
  'list_ether_food',
  'ether_food_groceri',
  'food_groceri_bring',
  'groceri_bring_chore',
  'bring_chore_list',
  'chore_list_choos',
  'list_choos_-',
  'choos_-_two',
  '-_two_visit',
  'two_visit_week',
  'visit_week_per',
  'week_per_person',
  'per_person_help',
  'person_help_keep',
  'help_keep_visit',
  'keep_visit_minimum',
  'visit_minimum_one',
  'minimum_one_complain',
  'one_complain_favourit',
  'complain_favourit_everyon',
  'favourit_everyon_treat',
  'everyon_treat_equal',
  'treat_equal_bring',
  'equal_bring_onto',
  'bring_onto_current',
  'onto_current_situat',
  'current_situat_sister',
  'situat_sister_lawf',
  'sister_lawf_studi',
  'lawf_studi_differ',
  'studi_differ_part',
  'differ_part_countri',
  'part_countri_rare',
  'countri_rare_home',
  'rare_home_ask',
  'home_ask_visit',
  'ask_visit_last',
  'visit_last_week',
  'last_week_go',
  'week_go_back',
  'go_back_school',
  'back_school_set',
  'school_set_date',
  'set_date_link',
  'date_link_gift',
  'link_gift_list',
  'gift_list_sent',
  'list_sent_takeout',
  'sent_takeout_wed',
  'takeout_wed_like',
  'wed_like_includ',
  'like_includ_chore',
  'includ_chore_choos',
  'chore_choos_sent',
  'choos_sent_immedi',
  'sent_immedi_text',
  'immedi_text_back',
  'text_back_say',
  'back_say_broke',
  'say_broke_extra',
  'broke_extra_chore',
  'extra_chore_instead',
  'chore_instead_husband',
  'instead_husband_talk',
  'husband_talk_came',
  'talk_came_decis',
  'came_decis_bent',
  'decis_bent_rule',
  'bent_rule_one',
  'rule_one_person',
  'one_person_everyon',
  'person_everyon_would',
  'everyon_would_want',
  'would_want_treatment',
  'want_treatment_told',
  'treatment_told_clear',
  'told_clear_rule',
  'clear_rule_mayb',
  'rule_mayb_next',
  'mayb_next_time',
  'next_time_could',
  'time_could_visit',
  'could_visit_beg',
  'visit_beg_even',
  'beg_even_said',
  'even_said_would',
  'said_would_clean',
  'would_clean_whole',
  'clean_whole_hous',
  'whole_hous_would',
  'hous_would_june',
  'would_june_would',
  'june_would_home',
  'would_home_simpli',
  'home_simpli_text',
  'simpli_text_repli',
  'text_repli_left',
  'repli_left_morn',
  'left_morn_got',
  'morn_got_multipl',
  'got_multipl_text',
  'multipl_text_law',
  'text_law_belittl',
  'law_belittl_us',
  'belittl_us_use',
  'us_use_child',
  'use_child_cash',
  'child_cash_grab',
  'cash_grab_husband',
  'grab_husband_simpli',
  'husband_simpli_repli',
  'simpli_repli_rule',
  'repli_rule_one',
  'rule_one_deserv',
  'one_deserv_special',
  'deserv_special_treatment',
  'special_treatment_told',
  'treatment_told_famili',
  'told_famili_time',
  'famili_time_block',
  'time_block_sinc',
  'block_sinc_famili',
  'sinc_famili_friend',
  'famili_friend_told',
  'friend_told_us',
  'told_us_wrong',
  'us_wrong_broke',
  'wrong_broke_collag',
  'broke_collag_student',
  'collag_student_would',
  'student_would_understood',
  'would_understood_look',
  'understood_look_way',
  'look_way_tri',
  'way_tri_reach',
  'tri_reach_sister',
  'reach_sister_repli'],
 ['husband',
  'birthday',
  'sever',
  'day',
  'ago',
  'decid',
  'go',
  'celebr',
  'new',
  'diner',
  'invit',
  'inlaw',
  'join',
  'us',
  'throughtout',
  'entir',
  'celebr',
  'ish',
  'waitress',
  'serv',
  'tabl',
  'kept',
  'act',
  'strang',
  'take',
  'eye',
  'husband',
  'threw',
  'inappropri',
  'comment',
  'infront',
  'us',
  'came',
  'went',
  'feel',
  'uncomfort',
  'decid',
  'make',
  'scene',
  'hope',
  'shed',
  'stop',
  'brought',
  'drink',
  'put',
  'tabl',
  'lean',
  'close',
  'enough',
  'toward',
  'husband',
  'think',
  'one',
  'would',
  'hear',
  'heard',
  'said',
  'sparkl',
  'eye',
  'ignit',
  'ps',
  'husband',
  'electric-blu',
  'eye',
  'flabergast',
  'truli',
  'believ',
  'said',
  'told',
  'know',
  'inappropri',
  'right',
  'need',
  'stop',
  'smug',
  'smile',
  'turn',
  'around',
  'walk',
  'away',
  'got',
  'weird',
  'look',
  'inlaw',
  'awe',
  'got',
  'home',
  'left',
  'bad',
  'review',
  'diner',
  'next',
  'day',
  'im',
  'contact',
  'manag',
  'ask',
  'specifi',
  'bad',
  'experi',
  'diner',
  'tell',
  'call',
  'back',
  'tell',
  'busi',
  'new',
  'kind',
  'review',
  'might',
  'harm',
  'reput',
  'ask',
  'itd',
  'take',
  'take',
  'tell',
  'consequ',
  'waitress',
  'call',
  'back',
  'tell',
  'fire',
  'take',
  'review',
  'im',
  'contact',
  'waitress',
  'sm',
  'tell',
  'mean',
  'caus',
  'disturb',
  'compliment',
  'husband',
  'eye',
  'ruin',
  'career',
  'caus',
  'potenti',
  'lose',
  'apart',
  'becom',
  'homeless',
  'get',
  'fire',
  'diner',
  'unabl',
  'pay',
  'rent',
  'respond',
  'inlaw',
  'point',
  'overreact',
  'stuff',
  'happen',
  'often',
  'diner',
  'caus',
  'irrepar',
  'damag',
  'young',
  'ladi',
  'life',
  'noth',
  'also',
  'mil',
  'said',
  'mustv',
  'done',
  'felt',
  'jealou',
  'waitress',
  'aita',
  'eta',
  'review',
  'left',
  'busi',
  'facebook',
  'page',
  'contact',
  'manag',
  'via',
  'phone',
  'number',
  'avail',
  'profil',
  'waitress',
  'reach',
  'via',
  'messag',
  'eta',
  'im',
  'see',
  'varieti',
  'opinion',
  'doneor',
  'handl',
  'agre',
  'might',
  'let',
  'thing',
  'get',
  'hand',
  'plan',
  'get',
  'fire',
  'even',
  'want',
  'get',
  'manag',
  'involv',
  'leav',
  'review',
  'also',
  'ask',
  'insecurejeal',
  'much',
  'ill',
  'give',
  'answer',
  'gave',
  'mil',
  'might',
  'think',
  'appropri',
  'way',
  'act',
  'work',
  'husband_birthday',
  'birthday_sever',
  'sever_day',
  'day_ago',
  'ago_decid',
  'decid_go',
  'go_celebr',
  'celebr_new',
  'new_diner',
  'diner_invit',
  'invit_inlaw',
  'inlaw_join',
  'join_us',
  'us_throughtout',
  'throughtout_entir',
  'entir_celebr',
  'celebr_ish',
  'ish_waitress',
  'waitress_serv',
  'serv_tabl',
  'tabl_kept',
  'kept_act',
  'act_strang',
  'strang_take',
  'take_eye',
  'eye_husband',
  'husband_threw',
  'threw_inappropri',
  'inappropri_comment',
  'comment_infront',
  'infront_us',
  'us_came',
  'came_went',
  'went_feel',
  'feel_uncomfort',
  'uncomfort_decid',
  'decid_make',
  'make_scene',
  'scene_hope',
  'hope_shed',
  'shed_stop',
  'stop_brought',
  'brought_drink',
  'drink_put',
  'put_tabl',
  'tabl_lean',
  'lean_close',
  'close_enough',
  'enough_toward',
  'toward_husband',
  'husband_think',
  'think_one',
  'one_would',
  'would_hear',
  'hear_heard',
  'heard_said',
  'said_sparkl',
  'sparkl_eye',
  'eye_ignit',
  'ignit_ps',
  'ps_husband',
  'husband_electric-blu',
  'electric-blu_eye',
  'eye_flabergast',
  'flabergast_truli',
  'truli_believ',
  'believ_said',
  'said_told',
  'told_know',
  'know_inappropri',
  'inappropri_right',
  'right_need',
  'need_stop',
  'stop_smug',
  'smug_smile',
  'smile_turn',
  'turn_around',
  'around_walk',
  'walk_away',
  'away_got',
  'got_weird',
  'weird_look',
  'look_inlaw',
  'inlaw_awe',
  'awe_got',
  'got_home',
  'home_left',
  'left_bad',
  'bad_review',
  'review_diner',
  'diner_next',
  'next_day',
  'day_im',
  'im_contact',
  'contact_manag',
  'manag_ask',
  'ask_specifi',
  'specifi_bad',
  'bad_experi',
  'experi_diner',
  'diner_tell',
  'tell_call',
  'call_back',
  'back_tell',
  'tell_busi',
  'busi_new',
  'new_kind',
  'kind_review',
  'review_might',
  'might_harm',
  'harm_reput',
  'reput_ask',
  'ask_itd',
  'itd_take',
  'take_take',
  'take_tell',
  'tell_consequ',
  'consequ_waitress',
  'waitress_call',
  'call_back',
  'back_tell',
  'tell_fire',
  'fire_take',
  'take_review',
  'review_im',
  'im_contact',
  'contact_waitress',
  'waitress_sm',
  'sm_tell',
  'tell_mean',
  'mean_caus',
  'caus_disturb',
  'disturb_compliment',
  'compliment_husband',
  'husband_eye',
  'eye_ruin',
  'ruin_career',
  'career_caus',
  'caus_potenti',
  'potenti_lose',
  'lose_apart',
  'apart_becom',
  'becom_homeless',
  'homeless_get',
  'get_fire',
  'fire_diner',
  'diner_unabl',
  'unabl_pay',
  'pay_rent',
  'rent_respond',
  'respond_inlaw',
  'inlaw_point',
  'point_overreact',
  'overreact_stuff',
  'stuff_happen',
  'happen_often',
  'often_diner',
  'diner_caus',
  'caus_irrepar',
  'irrepar_damag',
  'damag_young',
  'young_ladi',
  'ladi_life',
  'life_noth',
  'noth_also',
  'also_mil',
  'mil_said',
  'said_mustv',
  'mustv_done',
  'done_felt',
  'felt_jealou',
  'jealou_waitress',
  'waitress_aita',
  'aita_eta',
  'eta_review',
  'review_left',
  'left_busi',
  'busi_facebook',
  'facebook_page',
  'page_contact',
  'contact_manag',
  'manag_via',
  'via_phone',
  'phone_number',
  'number_avail',
  'avail_profil',
  'profil_waitress',
  'waitress_reach',
  'reach_via',
  'via_messag',
  'messag_eta',
  'eta_im',
  'im_see',
  'see_varieti',
  'varieti_opinion',
  'opinion_doneor',
  'doneor_handl',
  'handl_agre',
  'agre_might',
  'might_let',
  'let_thing',
  'thing_get',
  'get_hand',
  'hand_plan',
  'plan_get',
  'get_fire',
  'fire_even',
  'even_want',
  'want_get',
  'get_manag',
  'manag_involv',
  'involv_leav',
  'leav_review',
  'review_also',
  'also_ask',
  'ask_insecurejeal',
  'insecurejeal_much',
  'much_ill',
  'ill_give',
  'give_answer',
  'answer_gave',
  'gave_mil',
  'mil_might',
  'might_think',
  'think_appropri',
  'appropri_way',
  'way_act',
  'act_work',
  'husband_birthday_sever',
  'birthday_sever_day',
  'sever_day_ago',
  'day_ago_decid',
  'ago_decid_go',
  'decid_go_celebr',
  'go_celebr_new',
  'celebr_new_diner',
  'new_diner_invit',
  'diner_invit_inlaw',
  'invit_inlaw_join',
  'inlaw_join_us',
  'join_us_throughtout',
  'us_throughtout_entir',
  'throughtout_entir_celebr',
  'entir_celebr_ish',
  'celebr_ish_waitress',
  'ish_waitress_serv',
  'waitress_serv_tabl',
  'serv_tabl_kept',
  'tabl_kept_act',
  'kept_act_strang',
  'act_strang_take',
  'strang_take_eye',
  'take_eye_husband',
  'eye_husband_threw',
  'husband_threw_inappropri',
  'threw_inappropri_comment',
  'inappropri_comment_infront',
  'comment_infront_us',
  'infront_us_came',
  'us_came_went',
  'came_went_feel',
  'went_feel_uncomfort',
  'feel_uncomfort_decid',
  'uncomfort_decid_make',
  'decid_make_scene',
  'make_scene_hope',
  'scene_hope_shed',
  'hope_shed_stop',
  'shed_stop_brought',
  'stop_brought_drink',
  'brought_drink_put',
  'drink_put_tabl',
  'put_tabl_lean',
  'tabl_lean_close',
  'lean_close_enough',
  'close_enough_toward',
  'enough_toward_husband',
  'toward_husband_think',
  'husband_think_one',
  'think_one_would',
  'one_would_hear',
  'would_hear_heard',
  'hear_heard_said',
  'heard_said_sparkl',
  'said_sparkl_eye',
  'sparkl_eye_ignit',
  'eye_ignit_ps',
  'ignit_ps_husband',
  'ps_husband_electric-blu',
  'husband_electric-blu_eye',
  'electric-blu_eye_flabergast',
  'eye_flabergast_truli',
  'flabergast_truli_believ',
  'truli_believ_said',
  'believ_said_told',
  'said_told_know',
  'told_know_inappropri',
  'know_inappropri_right',
  'inappropri_right_need',
  'right_need_stop',
  'need_stop_smug',
  'stop_smug_smile',
  'smug_smile_turn',
  'smile_turn_around',
  'turn_around_walk',
  'around_walk_away',
  'walk_away_got',
  'away_got_weird',
  'got_weird_look',
  'weird_look_inlaw',
  'look_inlaw_awe',
  'inlaw_awe_got',
  'awe_got_home',
  'got_home_left',
  'home_left_bad',
  'left_bad_review',
  'bad_review_diner',
  'review_diner_next',
  'diner_next_day',
  'next_day_im',
  'day_im_contact',
  'im_contact_manag',
  'contact_manag_ask',
  'manag_ask_specifi',
  'ask_specifi_bad',
  'specifi_bad_experi',
  'bad_experi_diner',
  'experi_diner_tell',
  'diner_tell_call',
  'tell_call_back',
  'call_back_tell',
  'back_tell_busi',
  'tell_busi_new',
  'busi_new_kind',
  'new_kind_review',
  'kind_review_might',
  'review_might_harm',
  'might_harm_reput',
  'harm_reput_ask',
  'reput_ask_itd',
  'ask_itd_take',
  'itd_take_take',
  'take_take_tell',
  'take_tell_consequ',
  'tell_consequ_waitress',
  'consequ_waitress_call',
  'waitress_call_back',
  'call_back_tell',
  'back_tell_fire',
  'tell_fire_take',
  'fire_take_review',
  'take_review_im',
  'review_im_contact',
  'im_contact_waitress',
  'contact_waitress_sm',
  'waitress_sm_tell',
  'sm_tell_mean',
  'tell_mean_caus',
  'mean_caus_disturb',
  'caus_disturb_compliment',
  'disturb_compliment_husband',
  'compliment_husband_eye',
  'husband_eye_ruin',
  'eye_ruin_career',
  'ruin_career_caus',
  'career_caus_potenti',
  'caus_potenti_lose',
  'potenti_lose_apart',
  'lose_apart_becom',
  'apart_becom_homeless',
  'becom_homeless_get',
  'homeless_get_fire',
  'get_fire_diner',
  'fire_diner_unabl',
  'diner_unabl_pay',
  'unabl_pay_rent',
  'pay_rent_respond',
  'rent_respond_inlaw',
  'respond_inlaw_point',
  'inlaw_point_overreact',
  'point_overreact_stuff',
  'overreact_stuff_happen',
  'stuff_happen_often',
  'happen_often_diner',
  'often_diner_caus',
  'diner_caus_irrepar',
  'caus_irrepar_damag',
  'irrepar_damag_young',
  'damag_young_ladi',
  'young_ladi_life',
  'ladi_life_noth',
  'life_noth_also',
  'noth_also_mil',
  'also_mil_said',
  'mil_said_mustv',
  'said_mustv_done',
  'mustv_done_felt',
  'done_felt_jealou',
  'felt_jealou_waitress',
  'jealou_waitress_aita',
  'waitress_aita_eta',
  'aita_eta_review',
  'eta_review_left',
  'review_left_busi',
  'left_busi_facebook',
  'busi_facebook_page',
  'facebook_page_contact',
  'page_contact_manag',
  'contact_manag_via',
  'manag_via_phone',
  'via_phone_number',
  'phone_number_avail',
  'number_avail_profil',
  'avail_profil_waitress',
  'profil_waitress_reach',
  'waitress_reach_via',
  'reach_via_messag',
  'via_messag_eta',
  'messag_eta_im',
  'eta_im_see',
  'im_see_varieti',
  'see_varieti_opinion',
  'varieti_opinion_doneor',
  'opinion_doneor_handl',
  'doneor_handl_agre',
  'handl_agre_might',
  'agre_might_let',
  'might_let_thing',
  'let_thing_get',
  'thing_get_hand',
  'get_hand_plan',
  'hand_plan_get',
  'plan_get_fire',
  'get_fire_even',
  'fire_even_want',
  'even_want_get',
  'want_get_manag',
  'get_manag_involv',
  'manag_involv_leav',
  'involv_leav_review',
  'leav_review_also',
  'review_also_ask',
  'also_ask_insecurejeal',
  'ask_insecurejeal_much',
  'insecurejeal_much_ill',
  'much_ill_give',
  'ill_give_answer',
  'give_answer_gave',
  'answer_gave_mil',
  'gave_mil_might',
  'mil_might_think',
  'might_think_appropri',
  'think_appropri_way',
  'appropri_way_act',
  'way_act_work'],
 ['im',
  'engag',
  'fianc',
  'sam',
  'get',
  'marri',
  'soon',
  'say',
  'marri',
  'year',
  'old',
  'son',
  'pass',
  'away',
  'year',
  'ago',
  'let',
  'tell',
  'still',
  'pretti',
  'much',
  'griev',
  'judg',
  'griev',
  'cloud',
  'think',
  'sometim',
  'current',
  'wed',
  'plan',
  'phase',
  'ask',
  'reserv',
  'chair',
  'venu',
  'deceas',
  'son',
  'dumbfound',
  'heard',
  'said',
  'know',
  'son',
  'spriritu',
  'hed',
  'like',
  'reserv',
  'seat',
  'respect',
  'make',
  'feel',
  'includ',
  'tri',
  'gentl',
  'seem',
  'insan',
  'told',
  'cant',
  'guest',
  'ask',
  'question',
  'think',
  'mental',
  'unstabl',
  'ask',
  'let',
  'go',
  'idea',
  'offer',
  'compromis',
  'leav',
  'last',
  'chair',
  'back',
  'empti',
  'one',
  'notic',
  'felt',
  'uneasi',
  'ask',
  'let',
  'go',
  'kept',
  'bring',
  'say',
  'get',
  'say',
  'sinc',
  'wed',
  'son',
  'alway',
  'famili',
  'fight',
  'tell',
  'wed',
  'peopl',
  'laugh',
  'us',
  'said',
  'noth',
  'lose',
  'say',
  'ye',
  'im',
  'selfish',
  'snap',
  'told',
  'get',
  'got',
  'quiet',
  'suddenli',
  'stop',
  'argu',
  'shut',
  'complet',
  'heard',
  'sob',
  'smoke',
  'outsid',
  'refus',
  'speak',
  'even',
  'let',
  'sit',
  'like',
  'eversinc',
  'fight',
  'avoid',
  'could',
  'blown',
  'propot',
  'thought',
  'request',
  'weird',
  'mani',
  'guest',
  'make',
  'wed',
  'laugh',
  'stock',
  '*',
  'edit',
  'add',
  'think',
  'thing',
  'common',
  'admit',
  'handl',
  'convers',
  'better',
  'guest',
  'refer',
  'male',
  'cousin',
  'theyr',
  'terribl',
  'make',
  'fun',
  'everyth',
  'take',
  'everi',
  'opportun',
  'turn',
  'event',
  'laugh',
  'stock',
  'cant',
  'keep',
  'attend',
  'theyr',
  'famili',
  'time',
  'want',
  'give',
  'chanc',
  'hurt',
  'sam',
  'feel',
  'make',
  'rude',
  'comment',
  'love',
  'sam',
  'sympath',
  'struggl',
  'feel',
  'like',
  'dismiss',
  'feel',
  'thought',
  '*',
  'im_engag',
  'engag_fianc',
  'fianc_sam',
  'sam_get',
  'get_marri',
  'marri_soon',
  'soon_say',
  'say_marri',
  'marri_year',
  'year_old',
  'old_son',
  'son_pass',
  'pass_away',
  'away_year',
  'year_ago',
  'ago_let',
  'let_tell',
  'tell_still',
  'still_pretti',
  'pretti_much',
  'much_griev',
  'griev_judg',
  'judg_griev',
  'griev_cloud',
  'cloud_think',
  'think_sometim',
  'sometim_current',
  'current_wed',
  'wed_plan',
  'plan_phase',
  'phase_ask',
  'ask_reserv',
  'reserv_chair',
  'chair_venu',
  'venu_deceas',
  'deceas_son',
  'son_dumbfound',
  'dumbfound_heard',
  'heard_said',
  'said_know',
  'know_son',
  'son_spriritu',
  'spriritu_hed',
  'hed_like',
  'like_reserv',
  'reserv_seat',
  'seat_respect',
  'respect_make',
  'make_feel',
  'feel_includ',
  'includ_tri',
  'tri_gentl',
  'gentl_seem',
  'seem_insan',
  'insan_told',
  'told_cant',
  'cant_guest',
  'guest_ask',
  'ask_question',
  'question_think',
  'think_mental',
  'mental_unstabl',
  'unstabl_ask',
  'ask_let',
  'let_go',
  'go_idea',
  'idea_offer',
  'offer_compromis',
  'compromis_leav',
  'leav_last',
  'last_chair',
  'chair_back',
  'back_empti',
  'empti_one',
  'one_notic',
  'notic_felt',
  'felt_uneasi',
  'uneasi_ask',
  'ask_let',
  'let_go',
  'go_kept',
  'kept_bring',
  'bring_say',
  'say_get',
  'get_say',
  'say_sinc',
  'sinc_wed',
  'wed_son',
  'son_alway',
  'alway_famili',
  'famili_fight',
  'fight_tell',
  'tell_wed',
  'wed_peopl',
  'peopl_laugh',
  'laugh_us',
  'us_said',
  'said_noth',
  'noth_lose',
  'lose_say',
  'say_ye',
  'ye_im',
  'im_selfish',
  'selfish_snap',
  'snap_told',
  'told_get',
  'get_got',
  'got_quiet',
  'quiet_suddenli',
  'suddenli_stop',
  'stop_argu',
  'argu_shut',
  'shut_complet',
  'complet_heard',
  'heard_sob',
  'sob_smoke',
  'smoke_outsid',
  'outsid_refus',
  'refus_speak',
  'speak_even',
  'even_let',
  'let_sit',
  'sit_like',
  'like_eversinc',
  'eversinc_fight',
  'fight_avoid',
  'avoid_could',
  'could_blown',
  'blown_propot',
  'propot_thought',
  'thought_request',
  'request_weird',
  'weird_mani',
  'mani_guest',
  'guest_make',
  'make_wed',
  'wed_laugh',
  'laugh_stock',
  'stock_*',
  '*_edit',
  'edit_add',
  'add_think',
  'think_thing',
  'thing_common',
  'common_admit',
  'admit_handl',
  'handl_convers',
  'convers_better',
  'better_guest',
  'guest_refer',
  'refer_male',
  'male_cousin',
  'cousin_theyr',
  'theyr_terribl',
  'terribl_make',
  'make_fun',
  'fun_everyth',
  'everyth_take',
  'take_everi',
  'everi_opportun',
  'opportun_turn',
  'turn_event',
  'event_laugh',
  'laugh_stock',
  'stock_cant',
  'cant_keep',
  'keep_attend',
  'attend_theyr',
  'theyr_famili',
  'famili_time',
  'time_want',
  'want_give',
  'give_chanc',
  'chanc_hurt',
  'hurt_sam',
  'sam_feel',
  'feel_make',
  'make_rude',
  'rude_comment',
  'comment_love',
  'love_sam',
  'sam_sympath',
  'sympath_struggl',
  'struggl_feel',
  'feel_like',
  'like_dismiss',
  'dismiss_feel',
  'feel_thought',
  'thought_*',
  'im_engag_fianc',
  'engag_fianc_sam',
  'fianc_sam_get',
  'sam_get_marri',
  'get_marri_soon',
  'marri_soon_say',
  'soon_say_marri',
  'say_marri_year',
  'marri_year_old',
  'year_old_son',
  'old_son_pass',
  'son_pass_away',
  'pass_away_year',
  'away_year_ago',
  'year_ago_let',
  'ago_let_tell',
  'let_tell_still',
  'tell_still_pretti',
  'still_pretti_much',
  'pretti_much_griev',
  'much_griev_judg',
  'griev_judg_griev',
  'judg_griev_cloud',
  'griev_cloud_think',
  'cloud_think_sometim',
  'think_sometim_current',
  'sometim_current_wed',
  'current_wed_plan',
  'wed_plan_phase',
  'plan_phase_ask',
  'phase_ask_reserv',
  'ask_reserv_chair',
  'reserv_chair_venu',
  'chair_venu_deceas',
  'venu_deceas_son',
  'deceas_son_dumbfound',
  'son_dumbfound_heard',
  'dumbfound_heard_said',
  'heard_said_know',
  'said_know_son',
  'know_son_spriritu',
  'son_spriritu_hed',
  'spriritu_hed_like',
  'hed_like_reserv',
  'like_reserv_seat',
  'reserv_seat_respect',
  'seat_respect_make',
  'respect_make_feel',
  'make_feel_includ',
  'feel_includ_tri',
  'includ_tri_gentl',
  'tri_gentl_seem',
  'gentl_seem_insan',
  'seem_insan_told',
  'insan_told_cant',
  'told_cant_guest',
  'cant_guest_ask',
  'guest_ask_question',
  'ask_question_think',
  'question_think_mental',
  'think_mental_unstabl',
  'mental_unstabl_ask',
  'unstabl_ask_let',
  'ask_let_go',
  'let_go_idea',
  'go_idea_offer',
  'idea_offer_compromis',
  'offer_compromis_leav',
  'compromis_leav_last',
  'leav_last_chair',
  'last_chair_back',
  'chair_back_empti',
  'back_empti_one',
  'empti_one_notic',
  'one_notic_felt',
  'notic_felt_uneasi',
  'felt_uneasi_ask',
  'uneasi_ask_let',
  'ask_let_go',
  'let_go_kept',
  'go_kept_bring',
  'kept_bring_say',
  'bring_say_get',
  'say_get_say',
  'get_say_sinc',
  'say_sinc_wed',
  'sinc_wed_son',
  'wed_son_alway',
  'son_alway_famili',
  'alway_famili_fight',
  'famili_fight_tell',
  'fight_tell_wed',
  'tell_wed_peopl',
  'wed_peopl_laugh',
  'peopl_laugh_us',
  'laugh_us_said',
  'us_said_noth',
  'said_noth_lose',
  'noth_lose_say',
  'lose_say_ye',
  'say_ye_im',
  'ye_im_selfish',
  'im_selfish_snap',
  'selfish_snap_told',
  'snap_told_get',
  'told_get_got',
  'get_got_quiet',
  'got_quiet_suddenli',
  'quiet_suddenli_stop',
  'suddenli_stop_argu',
  'stop_argu_shut',
  'argu_shut_complet',
  'shut_complet_heard',
  'complet_heard_sob',
  'heard_sob_smoke',
  'sob_smoke_outsid',
  'smoke_outsid_refus',
  'outsid_refus_speak',
  'refus_speak_even',
  'speak_even_let',
  'even_let_sit',
  'let_sit_like',
  'sit_like_eversinc',
  'like_eversinc_fight',
  'eversinc_fight_avoid',
  'fight_avoid_could',
  'avoid_could_blown',
  'could_blown_propot',
  'blown_propot_thought',
  'propot_thought_request',
  'thought_request_weird',
  'request_weird_mani',
  'weird_mani_guest',
  'mani_guest_make',
  'guest_make_wed',
  'make_wed_laugh',
  'wed_laugh_stock',
  'laugh_stock_*',
  'stock_*_edit',
  '*_edit_add',
  'edit_add_think',
  'add_think_thing',
  'think_thing_common',
  'thing_common_admit',
  'common_admit_handl',
  'admit_handl_convers',
  'handl_convers_better',
  'convers_better_guest',
  'better_guest_refer',
  'guest_refer_male',
  'refer_male_cousin',
  'male_cousin_theyr',
  'cousin_theyr_terribl',
  'theyr_terribl_make',
  'terribl_make_fun',
  'make_fun_everyth',
  'fun_everyth_take',
  'everyth_take_everi',
  'take_everi_opportun',
  'everi_opportun_turn',
  'opportun_turn_event',
  'turn_event_laugh',
  'event_laugh_stock',
  'laugh_stock_cant',
  'stock_cant_keep',
  'cant_keep_attend',
  'keep_attend_theyr',
  'attend_theyr_famili',
  'theyr_famili_time',
  'famili_time_want',
  'time_want_give',
  'want_give_chanc',
  'give_chanc_hurt',
  'chanc_hurt_sam',
  'hurt_sam_feel',
  'sam_feel_make',
  'feel_make_rude',
  'make_rude_comment',
  'rude_comment_love',
  'comment_love_sam',
  'love_sam_sympath',
  'sam_sympath_struggl',
  'sympath_struggl_feel',
  'struggl_feel_like',
  'feel_like_dismiss',
  'like_dismiss_feel',
  'dismiss_feel_thought',
  'feel_thought_*'],
 ['put',
  'thing',
  'perspect',
  'uni',
  'gym',
  'gym',
  'treadmil',
  'two',
  'togeth',
  'one',
  'end',
  'gym',
  'rest',
  'line',
  'howev',
  'line',
  'six',
  'second',
  'five',
  'treadmil',
  'order',
  'treadmil',
  'gym',
  'today',
  'woman',
  'approach',
  'said',
  'hey',
  'need',
  'treadmil',
  'third',
  'treadmil',
  'row',
  'woman',
  'said',
  'notic',
  'two',
  'women',
  'get',
  'fourth',
  'fifth',
  'treadmil',
  'everi',
  'treadmil',
  'free',
  'like',
  'jog',
  'machin',
  'anyth',
  'said',
  'uh',
  'open',
  'treadmills…',
  'repli',
  'yeah',
  'oke',
  'next',
  'friend',
  'repli',
  'said',
  'came',
  'work',
  'friend',
  'im',
  'go',
  'treadmil',
  'next',
  'friend',
  'im',
  'ask',
  'pleas',
  'move',
  'differ',
  'treadmil',
  'friend',
  'repli',
  'im',
  'declin',
  'move',
  'woman',
  'said',
  'like',
  'said',
  'machin',
  'open',
  'like',
  'move',
  'anoth',
  'one',
  'see',
  'make',
  'issu',
  'said',
  'one',
  'make',
  'issu',
  'im',
  'middl',
  'workout',
  'oblig',
  'move',
  'first',
  'said',
  'im',
  'move',
  'woman',
  'said',
  'friend',
  'isr',
  'worth',
  'im',
  'leav',
  'women',
  'stop',
  'work',
  'got',
  'treadmil',
  'start',
  'follow',
  'friend',
  'one',
  'look',
  'back',
  'said',
  'wow',
  'jerk',
  'think',
  'rude',
  'unread',
  'put_thing',
  'thing_perspect',
  'perspect_uni',
  'uni_gym',
  'gym_gym',
  'gym_treadmil',
  'treadmil_two',
  'two_togeth',
  'togeth_one',
  'one_end',
  'end_gym',
  'gym_rest',
  'rest_line',
  'line_howev',
  'howev_line',
  'line_six',
  'six_second',
  'second_five',
  'five_treadmil',
  'treadmil_order',
  'order_treadmil',
  'treadmil_gym',
  'gym_today',
  'today_woman',
  'woman_approach',
  'approach_said',
  'said_hey',
  'hey_need',
  'need_treadmil',
  'treadmil_third',
  'third_treadmil',
  'treadmil_row',
  'row_woman',
  'woman_said',
  'said_notic',
  'notic_two',
  'two_women',
  'women_get',
  'get_fourth',
  'fourth_fifth',
  'fifth_treadmil',
  'treadmil_everi',
  'everi_treadmil',
  'treadmil_free',
  'free_like',
  'like_jog',
  'jog_machin',
  'machin_anyth',
  'anyth_said',
  'said_uh',
  'uh_open',
  'open_treadmills…',
  'treadmills…_repli',
  'repli_yeah',
  'yeah_oke',
  'oke_next',
  'next_friend',
  'friend_repli',
  'repli_said',
  'said_came',
  'came_work',
  'work_friend',
  'friend_im',
  'im_go',
  'go_treadmil',
  'treadmil_next',
  'next_friend',
  'friend_im',
  'im_ask',
  'ask_pleas',
  'pleas_move',
  'move_differ',
  'differ_treadmil',
  'treadmil_friend',
  'friend_repli',
  'repli_im',
  'im_declin',
  'declin_move',
  'move_woman',
  'woman_said',
  'said_like',
  'like_said',
  'said_machin',
  'machin_open',
  'open_like',
  'like_move',
  'move_anoth',
  'anoth_one',
  'one_see',
  'see_make',
  'make_issu',
  'issu_said',
  'said_one',
  'one_make',
  'make_issu',
  'issu_im',
  'im_middl',
  'middl_workout',
  'workout_oblig',
  'oblig_move',
  'move_first',
  'first_said',
  'said_im',
  'im_move',
  'move_woman',
  'woman_said',
  'said_friend',
  'friend_isr',
  'isr_worth',
  'worth_im',
  'im_leav',
  'leav_women',
  'women_stop',
  'stop_work',
  'work_got',
  'got_treadmil',
  'treadmil_start',
  'start_follow',
  'follow_friend',
  'friend_one',
  'one_look',
  'look_back',
  'back_said',
  'said_wow',
  'wow_jerk',
  'jerk_think',
  'think_rude',
  'rude_unread',
  'put_thing_perspect',
  'thing_perspect_uni',
  'perspect_uni_gym',
  'uni_gym_gym',
  'gym_gym_treadmil',
  'gym_treadmil_two',
  'treadmil_two_togeth',
  'two_togeth_one',
  'togeth_one_end',
  'one_end_gym',
  'end_gym_rest',
  'gym_rest_line',
  'rest_line_howev',
  'line_howev_line',
  'howev_line_six',
  'line_six_second',
  'six_second_five',
  'second_five_treadmil',
  'five_treadmil_order',
  'treadmil_order_treadmil',
  'order_treadmil_gym',
  'treadmil_gym_today',
  'gym_today_woman',
  'today_woman_approach',
  'woman_approach_said',
  'approach_said_hey',
  'said_hey_need',
  'hey_need_treadmil',
  'need_treadmil_third',
  'treadmil_third_treadmil',
  'third_treadmil_row',
  'treadmil_row_woman',
  'row_woman_said',
  'woman_said_notic',
  'said_notic_two',
  'notic_two_women',
  'two_women_get',
  'women_get_fourth',
  'get_fourth_fifth',
  'fourth_fifth_treadmil',
  'fifth_treadmil_everi',
  'treadmil_everi_treadmil',
  'everi_treadmil_free',
  'treadmil_free_like',
  'free_like_jog',
  'like_jog_machin',
  'jog_machin_anyth',
  'machin_anyth_said',
  'anyth_said_uh',
  'said_uh_open',
  'uh_open_treadmills…',
  'open_treadmills…_repli',
  'treadmills…_repli_yeah',
  'repli_yeah_oke',
  'yeah_oke_next',
  'oke_next_friend',
  'next_friend_repli',
  'friend_repli_said',
  'repli_said_came',
  'said_came_work',
  'came_work_friend',
  'work_friend_im',
  'friend_im_go',
  'im_go_treadmil',
  'go_treadmil_next',
  'treadmil_next_friend',
  'next_friend_im',
  'friend_im_ask',
  'im_ask_pleas',
  'ask_pleas_move',
  'pleas_move_differ',
  'move_differ_treadmil',
  'differ_treadmil_friend',
  'treadmil_friend_repli',
  'friend_repli_im',
  'repli_im_declin',
  'im_declin_move',
  'declin_move_woman',
  'move_woman_said',
  'woman_said_like',
  'said_like_said',
  'like_said_machin',
  'said_machin_open',
  'machin_open_like',
  'open_like_move',
  'like_move_anoth',
  'move_anoth_one',
  'anoth_one_see',
  'one_see_make',
  'see_make_issu',
  'make_issu_said',
  'issu_said_one',
  'said_one_make',
  'one_make_issu',
  'make_issu_im',
  'issu_im_middl',
  'im_middl_workout',
  'middl_workout_oblig',
  'workout_oblig_move',
  'oblig_move_first',
  'move_first_said',
  'first_said_im',
  'said_im_move',
  'im_move_woman',
  'move_woman_said',
  'woman_said_friend',
  'said_friend_isr',
  'friend_isr_worth',
  'isr_worth_im',
  'worth_im_leav',
  'im_leav_women',
  'leav_women_stop',
  'women_stop_work',
  'stop_work_got',
  'work_got_treadmil',
  'got_treadmil_start',
  'treadmil_start_follow',
  'start_follow_friend',
  'follow_friend_one',
  'friend_one_look',
  'one_look_back',
  'look_back_said',
  'back_said_wow',
  'said_wow_jerk',
  'wow_jerk_think',
  'jerk_think_rude',
  'think_rude_unread'],
 ['fianc',
  'short',
  'height',
  'alway',
  'sourc',
  'insecur',
  'take',
  'comment',
  'serious',
  'wed',
  'approach',
  'ask',
  'id',
  'consid',
  'wear',
  'flat',
  'shoe',
  'wed',
  'confus',
  'like',
  'confus',
  'ask',
  'joke',
  'went',
  'rant',
  'want',
  'made',
  'fun',
  'wed',
  'choos',
  'wear',
  'high',
  'heel',
  'look',
  'awkward',
  'photo',
  'infront',
  'guest',
  'refus',
  'kept',
  'call',
  'selfish',
  'inconsider',
  'said',
  'priorit',
  'bare',
  'high',
  'heel',
  'comfort',
  'happi',
  'big',
  'day',
  'mom',
  'involv',
  'push',
  'reconsid',
  'refus',
  'discuss',
  'said',
  'unwilling',
  'cooper',
  'huge',
  'indic',
  'level',
  'matur',
  'went',
  'long',
  'rant',
  'length',
  'real',
  'wive',
  'go',
  'help',
  'husband',
  'said',
  'im',
  'appar',
  'immatur',
  'shallow',
  'commit',
  'marriag',
  'make',
  'issu',
  'selfish',
  'want',
  'high',
  'heel',
  'help',
  'make',
  'wed',
  'dress',
  'look',
  'better',
  'feel',
  'like',
  'deserv',
  'look',
  'best',
  'wed',
  'like',
  'everi',
  'bride',
  'dream',
  'insecur',
  'prevent',
  'get',
  'aita',
  'edit',
  'typo',
  'clarifi',
  'im',
  'slightli',
  'taller',
  'said',
  'want',
  'look',
  'taller',
  '*',
  'answer',
  'question',
  '*',
  'gust',
  'talk',
  'male',
  'friend',
  'men',
  'famili',
  'comment',
  'height',
  'time',
  'call',
  'name',
  'shorti',
  'koala',
  'lil',
  'hobbit',
  'list',
  'long',
  'even',
  'list',
  'joke',
  'like',
  'said',
  'im',
  'slightli',
  'taller',
  'want',
  'taller',
  'similar',
  'argument',
  'height',
  'issu',
  'first',
  'time',
  'ask',
  'wear',
  'heel',
  'time',
  'let',
  'wear',
  'sometim',
  'refus',
  'attend',
  'event',
  'im',
  'ask',
  'age',
  'fianc_short',
  'short_height',
  'height_alway',
  'alway_sourc',
  'sourc_insecur',
  'insecur_take',
  'take_comment',
  'comment_serious',
  'serious_wed',
  'wed_approach',
  'approach_ask',
  'ask_id',
  'id_consid',
  'consid_wear',
  'wear_flat',
  'flat_shoe',
  'shoe_wed',
  'wed_confus',
  'confus_like',
  'like_confus',
  'confus_ask',
  'ask_joke',
  'joke_went',
  'went_rant',
  'rant_want',
  'want_made',
  'made_fun',
  'fun_wed',
  'wed_choos',
  'choos_wear',
  'wear_high',
  'high_heel',
  'heel_look',
  'look_awkward',
  'awkward_photo',
  'photo_infront',
  'infront_guest',
  'guest_refus',
  'refus_kept',
  'kept_call',
  'call_selfish',
  'selfish_inconsider',
  'inconsider_said',
  'said_priorit',
  'priorit_bare',
  'bare_high',
  'high_heel',
  'heel_comfort',
  'comfort_happi',
  'happi_big',
  'big_day',
  'day_mom',
  'mom_involv',
  'involv_push',
  'push_reconsid',
  'reconsid_refus',
  'refus_discuss',
  'discuss_said',
  'said_unwilling',
  'unwilling_cooper',
  'cooper_huge',
  'huge_indic',
  'indic_level',
  'level_matur',
  'matur_went',
  'went_long',
  'long_rant',
  'rant_length',
  'length_real',
  'real_wive',
  'wive_go',
  'go_help',
  'help_husband',
  'husband_said',
  'said_im',
  'im_appar',
  'appar_immatur',
  'immatur_shallow',
  'shallow_commit',
  'commit_marriag',
  'marriag_make',
  'make_issu',
  'issu_selfish',
  'selfish_want',
  'want_high',
  'high_heel',
  'heel_help',
  'help_make',
  'make_wed',
  'wed_dress',
  'dress_look',
  'look_better',
  'better_feel',
  'feel_like',
  'like_deserv',
  'deserv_look',
  'look_best',
  'best_wed',
  'wed_like',
  'like_everi',
  'everi_bride',
  'bride_dream',
  'dream_insecur',
  'insecur_prevent',
  'prevent_get',
  'get_aita',
  'aita_edit',
  'edit_typo',
  'typo_clarifi',
  'clarifi_im',
  'im_slightli',
  'slightli_taller',
  'taller_said',
  'said_want',
  'want_look',
  'look_taller',
  'taller_*',
  '*_answer',
  'answer_question',
  'question_*',
  '*_gust',
  'gust_talk',
  'talk_male',
  'male_friend',
  'friend_men',
  'men_famili',
  'famili_comment',
  'comment_height',
  'height_time',
  'time_call',
  'call_name',
  'name_shorti',
  'shorti_koala',
  'koala_lil',
  'lil_hobbit',
  'hobbit_list',
  'list_long',
  'long_even',
  'even_list',
  'list_joke',
  'joke_like',
  'like_said',
  'said_im',
  'im_slightli',
  'slightli_taller',
  'taller_want',
  'want_taller',
  'taller_similar',
  'similar_argument',
  'argument_height',
  'height_issu',
  'issu_first',
  'first_time',
  'time_ask',
  'ask_wear',
  'wear_heel',
  'heel_time',
  'time_let',
  'let_wear',
  'wear_sometim',
  'sometim_refus',
  'refus_attend',
  'attend_event',
  'event_im',
  'im_ask',
  'ask_age',
  'fianc_short_height',
  'short_height_alway',
  'height_alway_sourc',
  'alway_sourc_insecur',
  'sourc_insecur_take',
  'insecur_take_comment',
  'take_comment_serious',
  'comment_serious_wed',
  'serious_wed_approach',
  'wed_approach_ask',
  'approach_ask_id',
  'ask_id_consid',
  'id_consid_wear',
  'consid_wear_flat',
  'wear_flat_shoe',
  'flat_shoe_wed',
  'shoe_wed_confus',
  'wed_confus_like',
  'confus_like_confus',
  'like_confus_ask',
  'confus_ask_joke',
  'ask_joke_went',
  'joke_went_rant',
  'went_rant_want',
  'rant_want_made',
  'want_made_fun',
  'made_fun_wed',
  'fun_wed_choos',
  'wed_choos_wear',
  'choos_wear_high',
  'wear_high_heel',
  'high_heel_look',
  'heel_look_awkward',
  'look_awkward_photo',
  'awkward_photo_infront',
  'photo_infront_guest',
  'infront_guest_refus',
  'guest_refus_kept',
  'refus_kept_call',
  'kept_call_selfish',
  'call_selfish_inconsider',
  'selfish_inconsider_said',
  'inconsider_said_priorit',
  'said_priorit_bare',
  'priorit_bare_high',
  'bare_high_heel',
  'high_heel_comfort',
  'heel_comfort_happi',
  'comfort_happi_big',
  'happi_big_day',
  'big_day_mom',
  'day_mom_involv',
  'mom_involv_push',
  'involv_push_reconsid',
  'push_reconsid_refus',
  'reconsid_refus_discuss',
  'refus_discuss_said',
  'discuss_said_unwilling',
  'said_unwilling_cooper',
  'unwilling_cooper_huge',
  'cooper_huge_indic',
  'huge_indic_level',
  'indic_level_matur',
  'level_matur_went',
  'matur_went_long',
  'went_long_rant',
  'long_rant_length',
  'rant_length_real',
  'length_real_wive',
  'real_wive_go',
  'wive_go_help',
  'go_help_husband',
  'help_husband_said',
  'husband_said_im',
  'said_im_appar',
  'im_appar_immatur',
  'appar_immatur_shallow',
  'immatur_shallow_commit',
  'shallow_commit_marriag',
  'commit_marriag_make',
  'marriag_make_issu',
  'make_issu_selfish',
  'issu_selfish_want',
  'selfish_want_high',
  'want_high_heel',
  'high_heel_help',
  'heel_help_make',
  'help_make_wed',
  'make_wed_dress',
  'wed_dress_look',
  'dress_look_better',
  'look_better_feel',
  'better_feel_like',
  'feel_like_deserv',
  'like_deserv_look',
  'deserv_look_best',
  'look_best_wed',
  'best_wed_like',
  'wed_like_everi',
  'like_everi_bride',
  'everi_bride_dream',
  'bride_dream_insecur',
  'dream_insecur_prevent',
  'insecur_prevent_get',
  'prevent_get_aita',
  'get_aita_edit',
  'aita_edit_typo',
  'edit_typo_clarifi',
  'typo_clarifi_im',
  'clarifi_im_slightli',
  'im_slightli_taller',
  'slightli_taller_said',
  'taller_said_want',
  'said_want_look',
  'want_look_taller',
  'look_taller_*',
  'taller_*_answer',
  '*_answer_question',
  'answer_question_*',
  'question_*_gust',
  '*_gust_talk',
  'gust_talk_male',
  'talk_male_friend',
  'male_friend_men',
  'friend_men_famili',
  'men_famili_comment',
  'famili_comment_height',
  'comment_height_time',
  'height_time_call',
  'time_call_name',
  'call_name_shorti',
  'name_shorti_koala',
  'shorti_koala_lil',
  'koala_lil_hobbit',
  'lil_hobbit_list',
  'hobbit_list_long',
  'list_long_even',
  'long_even_list',
  'even_list_joke',
  'list_joke_like',
  'joke_like_said',
  'like_said_im',
  'said_im_slightli',
  'im_slightli_taller',
  'slightli_taller_want',
  'taller_want_taller',
  'want_taller_similar',
  'taller_similar_argument',
  'similar_argument_height',
  'argument_height_issu',
  'height_issu_first',
  'issu_first_time',
  'first_time_ask',
  'time_ask_wear',
  'ask_wear_heel',
  'wear_heel_time',
  'heel_time_let',
  'time_let_wear',
  'let_wear_sometim',
  'wear_sometim_refus',
  'sometim_refus_attend',
  'refus_attend_event',
  'attend_event_im',
  'event_im_ask',
  'im_ask_age'],
 ['famili',
  'get',
  'togeth',
  'father',
  'day',
  'older',
  'brother',
  'adam',
  'came',
  'also',
  'got',
  'pizza',
  'son',
  'drew',
  'autist',
  'vegetarian',
  'also',
  'food',
  'textur',
  'issu',
  'pizza',
  'like',
  'chees',
  'drew',
  'wait',
  'everyon',
  'settl',
  'get',
  'pizza',
  'avoid',
  'overwhelm',
  'adam',
  'normal',
  'eat',
  'meat',
  'lover',
  'pizza',
  'went',
  'second',
  'last',
  'grab',
  'last',
  'piec',
  'chees',
  'lick',
  'front',
  'son',
  'pizza',
  'eat',
  'call',
  'adam',
  'laugh',
  'say',
  'earli',
  'bird',
  'got',
  'piss',
  'kick',
  'adam',
  'home',
  'parent',
  'got',
  'mad',
  'say',
  'father',
  'day',
  'im',
  'ruin',
  'dad',
  'end',
  'tell',
  'mom',
  'last',
  'famili',
  'event',
  'ever',
  'host',
  'home',
  'host',
  'everyth',
  'sinc',
  'got',
  'marri',
  'almost',
  'year',
  'ago',
  'parent',
  'said',
  'overreact',
  'thu',
  'ruin',
  'dad',
  'father',
  'day',
  'said',
  'adam',
  'ruin',
  'go',
  'kid',
  'autism',
  'reason',
  'mom',
  'left',
  'cri',
  'im',
  'back',
  'host',
  'anymor',
  'event',
  'includ',
  'suppos',
  'th',
  'juli',
  'bbq',
  'famili_get',
  'get_togeth',
  'togeth_father',
  'father_day',
  'day_older',
  'older_brother',
  'brother_adam',
  'adam_came',
  'came_also',
  'also_got',
  'got_pizza',
  'pizza_son',
  'son_drew',
  'drew_autist',
  'autist_vegetarian',
  'vegetarian_also',
  'also_food',
  'food_textur',
  'textur_issu',
  'issu_pizza',
  'pizza_like',
  'like_chees',
  'chees_drew',
  'drew_wait',
  'wait_everyon',
  'everyon_settl',
  'settl_get',
  'get_pizza',
  'pizza_avoid',
  'avoid_overwhelm',
  'overwhelm_adam',
  'adam_normal',
  'normal_eat',
  'eat_meat',
  'meat_lover',
  'lover_pizza',
  'pizza_went',
  'went_second',
  'second_last',
  'last_grab',
  'grab_last',
  'last_piec',
  'piec_chees',
  'chees_lick',
  'lick_front',
  'front_son',
  'son_pizza',
  'pizza_eat',
  'eat_call',
  'call_adam',
  'adam_laugh',
  'laugh_say',
  'say_earli',
  'earli_bird',
  'bird_got',
  'got_piss',
  'piss_kick',
  'kick_adam',
  'adam_home',
  'home_parent',
  'parent_got',
  'got_mad',
  'mad_say',
  'say_father',
  'father_day',
  'day_im',
  'im_ruin',
  'ruin_dad',
  'dad_end',
  'end_tell',
  'tell_mom',
  'mom_last',
  'last_famili',
  'famili_event',
  'event_ever',
  'ever_host',
  'host_home',
  'home_host',
  'host_everyth',
  'everyth_sinc',
  'sinc_got',
  'got_marri',
  'marri_almost',
  'almost_year',
  'year_ago',
  'ago_parent',
  'parent_said',
  'said_overreact',
  'overreact_thu',
  'thu_ruin',
  'ruin_dad',
  'dad_father',
  'father_day',
  'day_said',
  'said_adam',
  'adam_ruin',
  'ruin_go',
  'go_kid',
  'kid_autism',
  'autism_reason',
  'reason_mom',
  'mom_left',
  'left_cri',
  'cri_im',
  'im_back',
  'back_host',
  'host_anymor',
  'anymor_event',
  'event_includ',
  'includ_suppos',
  'suppos_th',
  'th_juli',
  'juli_bbq',
  'famili_get_togeth',
  'get_togeth_father',
  'togeth_father_day',
  'father_day_older',
  'day_older_brother',
  'older_brother_adam',
  'brother_adam_came',
  'adam_came_also',
  'came_also_got',
  'also_got_pizza',
  'got_pizza_son',
  'pizza_son_drew',
  'son_drew_autist',
  'drew_autist_vegetarian',
  'autist_vegetarian_also',
  'vegetarian_also_food',
  'also_food_textur',
  'food_textur_issu',
  'textur_issu_pizza',
  'issu_pizza_like',
  'pizza_like_chees',
  'like_chees_drew',
  'chees_drew_wait',
  'drew_wait_everyon',
  'wait_everyon_settl',
  'everyon_settl_get',
  'settl_get_pizza',
  'get_pizza_avoid',
  'pizza_avoid_overwhelm',
  'avoid_overwhelm_adam',
  'overwhelm_adam_normal',
  'adam_normal_eat',
  'normal_eat_meat',
  'eat_meat_lover',
  'meat_lover_pizza',
  'lover_pizza_went',
  'pizza_went_second',
  'went_second_last',
  'second_last_grab',
  'last_grab_last',
  'grab_last_piec',
  'last_piec_chees',
  'piec_chees_lick',
  'chees_lick_front',
  'lick_front_son',
  'front_son_pizza',
  'son_pizza_eat',
  'pizza_eat_call',
  'eat_call_adam',
  'call_adam_laugh',
  'adam_laugh_say',
  'laugh_say_earli',
  'say_earli_bird',
  'earli_bird_got',
  'bird_got_piss',
  'got_piss_kick',
  'piss_kick_adam',
  'kick_adam_home',
  'adam_home_parent',
  'home_parent_got',
  'parent_got_mad',
  'got_mad_say',
  'mad_say_father',
  'say_father_day',
  'father_day_im',
  'day_im_ruin',
  'im_ruin_dad',
  'ruin_dad_end',
  'dad_end_tell',
  'end_tell_mom',
  'tell_mom_last',
  'mom_last_famili',
  'last_famili_event',
  'famili_event_ever',
  'event_ever_host',
  'ever_host_home',
  'host_home_host',
  'home_host_everyth',
  'host_everyth_sinc',
  'everyth_sinc_got',
  'sinc_got_marri',
  'got_marri_almost',
  'marri_almost_year',
  'almost_year_ago',
  'year_ago_parent',
  'ago_parent_said',
  'parent_said_overreact',
  'said_overreact_thu',
  'overreact_thu_ruin',
  'thu_ruin_dad',
  'ruin_dad_father',
  'dad_father_day',
  'father_day_said',
  'day_said_adam',
  'said_adam_ruin',
  'adam_ruin_go',
  'ruin_go_kid',
  'go_kid_autism',
  'kid_autism_reason',
  'autism_reason_mom',
  'reason_mom_left',
  'mom_left_cri',
  'left_cri_im',
  'cri_im_back',
  'im_back_host',
  'back_host_anymor',
  'host_anymor_event',
  'anymor_event_includ',
  'event_includ_suppos',
  'includ_suppos_th',
  'suppos_th_juli',
  'th_juli_bbq'],
 ['son',
  'sleepov',
  'last',
  'night',
  'friend',
  'friend',
  'parent',
  'wife',
  'huge',
  'favor',
  'wife',
  'father',
  'surgeri',
  'yesterday',
  'need',
  'get',
  'home',
  'midnight',
  'ye',
  'stori',
  'begin',
  'us',
  'alreadi',
  'debt',
  'anyway',
  'naptim',
  'today',
  'son',
  'start',
  'freak',
  'find',
  'sleepi',
  'dumbo',
  'stuf',
  'anim',
  '*',
  '*',
  'sleep',
  'without',
  'sleepi',
  'dumbo',
  'rememb',
  'pick',
  'see',
  'sleepi',
  'dumbo',
  'text',
  'mom',
  'dad',
  'friend',
  'get',
  'respons',
  'wife',
  'wreck',
  'im',
  'bother',
  'son',
  'freak',
  'tell',
  'get',
  'car',
  'go',
  'get',
  'sleepi',
  'dumbo',
  'slightli',
  'calm',
  'drive',
  'tri',
  'call',
  'way',
  'get',
  'knock',
  'wait',
  'bit',
  'answer',
  'point',
  'son',
  'start',
  'freak',
  'afraid',
  'someth',
  'happen',
  'sleepi',
  'dumbo',
  'tri',
  'reassur',
  'start',
  'cri',
  'knock',
  'wife',
  'coupl',
  'answer',
  'say',
  'work',
  'ask',
  'want',
  'explain',
  'sleepi',
  'dumbo',
  'say',
  'work',
  'say',
  'time',
  'look',
  'dumbo',
  'tell',
  'us',
  'come',
  'back',
  'later',
  'son',
  'start',
  'freak',
  'ask',
  'look',
  'say',
  'need',
  'focu',
  'promis',
  'fast',
  'let',
  'get',
  'friend',
  'room',
  'sleepi',
  'dumbo',
  'bed',
  'son',
  'get',
  'hustl',
  'us',
  'thank',
  'mom',
  'glare',
  'way',
  'home',
  'hug',
  'sleepi',
  'dumbo',
  'whole',
  'time',
  'remind',
  'care',
  'sleepi',
  'dumbo',
  'futur',
  'home',
  'naptim',
  'commenc',
  'peac',
  'hour',
  'ago',
  'wife',
  'got',
  'text',
  'im',
  'go',
  'copi',
  'past',
  '{',
  '}',
  '{',
  'wife',
  '}',
  'realli',
  'appreci',
  'way',
  '{',
  '}',
  'barg',
  'hous',
  'earlier',
  'today',
  'work',
  'know',
  'lot',
  'go',
  'right',
  'world',
  'revolv',
  'around',
  '{',
  'husband',
  '}',
  'agre',
  'favor',
  'mean',
  'get',
  'walk',
  'us',
  'futur',
  'call',
  'answer',
  'mean',
  'good',
  'time',
  'come',
  'felt',
  'embarrass',
  'guilti',
  'read',
  'wife',
  'howev',
  'furiou',
  'call',
  'wife',
  'coupl',
  'indel',
  'name',
  'realli',
  'grate',
  'agre',
  'babysit',
  'us',
  'accept',
  'blame',
  'forget',
  'sleepi',
  'dumbo',
  'first',
  'time',
  'know',
  'ask',
  'come',
  'get',
  'quit',
  'big',
  'deal',
  'make',
  'though',
  'wife',
  'piss',
  'know',
  'much',
  'misplac',
  'fear',
  'dad',
  'though',
  'asshol',
  'unfortun',
  'situat',
  'son_sleepov',
  'sleepov_last',
  'last_night',
  'night_friend',
  'friend_friend',
  'friend_parent',
  'parent_wife',
  'wife_huge',
  'huge_favor',
  'favor_wife',
  'wife_father',
  'father_surgeri',
  'surgeri_yesterday',
  'yesterday_need',
  'need_get',
  'get_home',
  'home_midnight',
  'midnight_ye',
  'ye_stori',
  'stori_begin',
  'begin_us',
  'us_alreadi',
  'alreadi_debt',
  'debt_anyway',
  'anyway_naptim',
  'naptim_today',
  'today_son',
  'son_start',
  'start_freak',
  'freak_find',
  'find_sleepi',
  'sleepi_dumbo',
  'dumbo_stuf',
  'stuf_anim',
  'anim_*',
  '*_*',
  '*_sleep',
  'sleep_without',
  'without_sleepi',
  'sleepi_dumbo',
  'dumbo_rememb',
  'rememb_pick',
  'pick_see',
  'see_sleepi',
  'sleepi_dumbo',
  'dumbo_text',
  'text_mom',
  'mom_dad',
  'dad_friend',
  'friend_get',
  'get_respons',
  'respons_wife',
  'wife_wreck',
  'wreck_im',
  'im_bother',
  'bother_son',
  'son_freak',
  'freak_tell',
  'tell_get',
  'get_car',
  'car_go',
  'go_get',
  'get_sleepi',
  'sleepi_dumbo',
  'dumbo_slightli',
  'slightli_calm',
  'calm_drive',
  'drive_tri',
  'tri_call',
  'call_way',
  'way_get',
  'get_knock',
  'knock_wait',
  'wait_bit',
  'bit_answer',
  'answer_point',
  'point_son',
  'son_start',
  'start_freak',
  'freak_afraid',
  'afraid_someth',
  'someth_happen',
  'happen_sleepi',
  'sleepi_dumbo',
  'dumbo_tri',
  'tri_reassur',
  'reassur_start',
  'start_cri',
  'cri_knock',
  'knock_wife',
  'wife_coupl',
  'coupl_answer',
  'answer_say',
  'say_work',
  'work_ask',
  'ask_want',
  'want_explain',
  'explain_sleepi',
  'sleepi_dumbo',
  'dumbo_say',
  'say_work',
  'work_say',
  'say_time',
  'time_look',
  'look_dumbo',
  'dumbo_tell',
  'tell_us',
  'us_come',
  'come_back',
  'back_later',
  'later_son',
  'son_start',
  'start_freak',
  'freak_ask',
  'ask_look',
  'look_say',
  'say_need',
  'need_focu',
  'focu_promis',
  'promis_fast',
  'fast_let',
  'let_get',
  'get_friend',
  'friend_room',
  'room_sleepi',
  'sleepi_dumbo',
  'dumbo_bed',
  'bed_son',
  'son_get',
  'get_hustl',
  'hustl_us',
  'us_thank',
  'thank_mom',
  'mom_glare',
  'glare_way',
  'way_home',
  'home_hug',
  'hug_sleepi',
  'sleepi_dumbo',
  'dumbo_whole',
  'whole_time',
  'time_remind',
  'remind_care',
  'care_sleepi',
  'sleepi_dumbo',
  'dumbo_futur',
  'futur_home',
  'home_naptim',
  'naptim_commenc',
  'commenc_peac',
  'peac_hour',
  'hour_ago',
  'ago_wife',
  'wife_got',
  'got_text',
  'text_im',
  'im_go',
  'go_copi',
  'copi_past',
  'past_{',
  '{_}',
  '}_{',
  '{_wife',
  'wife_}',
  '}_realli',
  'realli_appreci',
  'appreci_way',
  'way_{',
  '{_}',
  '}_barg',
  'barg_hous',
  'hous_earlier',
  'earlier_today',
  'today_work',
  'work_know',
  'know_lot',
  'lot_go',
  'go_right',
  'right_world',
  'world_revolv',
  'revolv_around',
  'around_{',
  '{_husband',
  'husband_}',
  '}_agre',
  'agre_favor',
  'favor_mean',
  'mean_get',
  'get_walk',
  'walk_us',
  'us_futur',
  'futur_call',
  'call_answer',
  'answer_mean',
  'mean_good',
  'good_time',
  'time_come',
  'come_felt',
  'felt_embarrass',
  'embarrass_guilti',
  'guilti_read',
  'read_wife',
  'wife_howev',
  'howev_furiou',
  'furiou_call',
  'call_wife',
  'wife_coupl',
  'coupl_indel',
  'indel_name',
  'name_realli',
  'realli_grate',
  'grate_agre',
  'agre_babysit',
  'babysit_us',
  'us_accept',
  'accept_blame',
  'blame_forget',
  'forget_sleepi',
  'sleepi_dumbo',
  'dumbo_first',
  'first_time',
  'time_know',
  'know_ask',
  'ask_come',
  'come_get',
  'get_quit',
  'quit_big',
  'big_deal',
  'deal_make',
  'make_though',
  'though_wife',
  'wife_piss',
  'piss_know',
  'know_much',
  'much_misplac',
  'misplac_fear',
  'fear_dad',
  'dad_though',
  'though_asshol',
  'asshol_unfortun',
  'unfortun_situat',
  'son_sleepov_last',
  'sleepov_last_night',
  'last_night_friend',
  'night_friend_friend',
  'friend_friend_parent',
  'friend_parent_wife',
  'parent_wife_huge',
  'wife_huge_favor',
  'huge_favor_wife',
  'favor_wife_father',
  'wife_father_surgeri',
  'father_surgeri_yesterday',
  'surgeri_yesterday_need',
  'yesterday_need_get',
  'need_get_home',
  'get_home_midnight',
  'home_midnight_ye',
  'midnight_ye_stori',
  'ye_stori_begin',
  'stori_begin_us',
  'begin_us_alreadi',
  'us_alreadi_debt',
  'alreadi_debt_anyway',
  'debt_anyway_naptim',
  'anyway_naptim_today',
  'naptim_today_son',
  'today_son_start',
  'son_start_freak',
  'start_freak_find',
  'freak_find_sleepi',
  'find_sleepi_dumbo',
  'sleepi_dumbo_stuf',
  'dumbo_stuf_anim',
  'stuf_anim_*',
  'anim_*_*',
  '*_*_sleep',
  '*_sleep_without',
  'sleep_without_sleepi',
  'without_sleepi_dumbo',
  'sleepi_dumbo_rememb',
  'dumbo_rememb_pick',
  'rememb_pick_see',
  'pick_see_sleepi',
  'see_sleepi_dumbo',
  'sleepi_dumbo_text',
  'dumbo_text_mom',
  'text_mom_dad',
  'mom_dad_friend',
  'dad_friend_get',
  'friend_get_respons',
  'get_respons_wife',
  'respons_wife_wreck',
  'wife_wreck_im',
  'wreck_im_bother',
  'im_bother_son',
  'bother_son_freak',
  'son_freak_tell',
  'freak_tell_get',
  'tell_get_car',
  'get_car_go',
  'car_go_get',
  'go_get_sleepi',
  'get_sleepi_dumbo',
  'sleepi_dumbo_slightli',
  'dumbo_slightli_calm',
  'slightli_calm_drive',
  'calm_drive_tri',
  'drive_tri_call',
  'tri_call_way',
  'call_way_get',
  'way_get_knock',
  'get_knock_wait',
  'knock_wait_bit',
  'wait_bit_answer',
  'bit_answer_point',
  'answer_point_son',
  'point_son_start',
  'son_start_freak',
  'start_freak_afraid',
  'freak_afraid_someth',
  'afraid_someth_happen',
  'someth_happen_sleepi',
  'happen_sleepi_dumbo',
  'sleepi_dumbo_tri',
  'dumbo_tri_reassur',
  'tri_reassur_start',
  'reassur_start_cri',
  'start_cri_knock',
  'cri_knock_wife',
  'knock_wife_coupl',
  'wife_coupl_answer',
  'coupl_answer_say',
  'answer_say_work',
  'say_work_ask',
  'work_ask_want',
  'ask_want_explain',
  'want_explain_sleepi',
  'explain_sleepi_dumbo',
  'sleepi_dumbo_say',
  'dumbo_say_work',
  'say_work_say',
  'work_say_time',
  'say_time_look',
  'time_look_dumbo',
  'look_dumbo_tell',
  'dumbo_tell_us',
  'tell_us_come',
  'us_come_back',
  'come_back_later',
  'back_later_son',
  'later_son_start',
  'son_start_freak',
  'start_freak_ask',
  'freak_ask_look',
  'ask_look_say',
  'look_say_need',
  'say_need_focu',
  'need_focu_promis',
  'focu_promis_fast',
  'promis_fast_let',
  'fast_let_get',
  'let_get_friend',
  'get_friend_room',
  'friend_room_sleepi',
  'room_sleepi_dumbo',
  'sleepi_dumbo_bed',
  'dumbo_bed_son',
  'bed_son_get',
  'son_get_hustl',
  'get_hustl_us',
  'hustl_us_thank',
  'us_thank_mom',
  'thank_mom_glare',
  'mom_glare_way',
  'glare_way_home',
  'way_home_hug',
  'home_hug_sleepi',
  'hug_sleepi_dumbo',
  'sleepi_dumbo_whole',
  'dumbo_whole_time',
  'whole_time_remind',
  'time_remind_care',
  'remind_care_sleepi',
  'care_sleepi_dumbo',
  'sleepi_dumbo_futur',
  'dumbo_futur_home',
  'futur_home_naptim',
  'home_naptim_commenc',
  'naptim_commenc_peac',
  'commenc_peac_hour',
  'peac_hour_ago',
  'hour_ago_wife',
  'ago_wife_got',
  'wife_got_text',
  'got_text_im',
  'text_im_go',
  'im_go_copi',
  'go_copi_past',
  'copi_past_{',
  'past_{_}',
  '{_}_{',
  '}_{_wife',
  '{_wife_}',
  'wife_}_realli',
  '}_realli_appreci',
  'realli_appreci_way',
  'appreci_way_{',
  'way_{_}',
  '{_}_barg',
  '}_barg_hous',
  'barg_hous_earlier',
  'hous_earlier_today',
  'earlier_today_work',
  'today_work_know',
  'work_know_lot',
  'know_lot_go',
  'lot_go_right',
  'go_right_world',
  'right_world_revolv',
  'world_revolv_around',
  'revolv_around_{',
  'around_{_husband',
  '{_husband_}',
  'husband_}_agre',
  '}_agre_favor',
  'agre_favor_mean',
  'favor_mean_get',
  'mean_get_walk',
  'get_walk_us',
  'walk_us_futur',
  'us_futur_call',
  'futur_call_answer',
  'call_answer_mean',
  'answer_mean_good',
  'mean_good_time',
  'good_time_come',
  'time_come_felt',
  'come_felt_embarrass',
  'felt_embarrass_guilti',
  'embarrass_guilti_read',
  'guilti_read_wife',
  'read_wife_howev',
  'wife_howev_furiou',
  'howev_furiou_call',
  'furiou_call_wife',
  'call_wife_coupl',
  'wife_coupl_indel',
  'coupl_indel_name',
  'indel_name_realli',
  'name_realli_grate',
  'realli_grate_agre',
  'grate_agre_babysit',
  'agre_babysit_us',
  'babysit_us_accept',
  'us_accept_blame',
  'accept_blame_forget',
  'blame_forget_sleepi',
  'forget_sleepi_dumbo',
  'sleepi_dumbo_first',
  'dumbo_first_time',
  'first_time_know',
  'time_know_ask',
  'know_ask_come',
  'ask_come_get',
  'come_get_quit',
  'get_quit_big',
  'quit_big_deal',
  'big_deal_make',
  'deal_make_though',
  'make_though_wife',
  'though_wife_piss',
  'wife_piss_know',
  'piss_know_much',
  'know_much_misplac',
  'much_misplac_fear',
  'misplac_fear_dad',
  'fear_dad_though',
  'dad_though_asshol',
  'though_asshol_unfortun',
  'asshol_unfortun_situat'],
 ['cat',
  'name',
  'stargaz',
  'adopt',
  'around',
  'year',
  'ago',
  'truli',
  'littl',
  'survivor',
  'abus',
  'result',
  'eye',
  'three',
  'leg',
  'nobodi',
  'want',
  'adopt',
  'deformati',
  'also',
  'black',
  'cat',
  'bc',
  'gon',
  'na',
  'euthan',
  'otherwis',
  'sister',
  'move',
  'citi',
  'week',
  'husband',
  'need',
  'someon',
  'watch',
  'kid',
  'sinc',
  'gon',
  'na',
  'grown',
  'celebr',
  'parti',
  'agre',
  'niec',
  'theyr',
  'littl',
  'handl',
  'id',
  'also',
  'great',
  'enrich',
  'cat',
  'sinc',
  'love',
  'children',
  'women',
  'im',
  'man',
  'trust',
  'niec',
  'love',
  'first',
  'littl',
  'scare',
  'thought',
  'cute',
  'sister',
  'went',
  'pick',
  'bell',
  'rang',
  'cat',
  'went',
  'run',
  'also',
  'door',
  'sister',
  'saw',
  'freak',
  'start',
  'scream',
  'cat',
  'ran',
  'away',
  'due',
  'nois',
  'sister',
  'start',
  'yell',
  'let',
  'cat',
  'around',
  'kid',
  'say',
  'demon',
  'next',
  'day',
  'husband',
  'call',
  'said',
  'unless',
  'cat',
  'goe',
  'ill',
  'never',
  'aita',
  'cat_name',
  'name_stargaz',
  'stargaz_adopt',
  'adopt_around',
  'around_year',
  'year_ago',
  'ago_truli',
  'truli_littl',
  'littl_survivor',
  'survivor_abus',
  'abus_result',
  'result_eye',
  'eye_three',
  'three_leg',
  'leg_nobodi',
  'nobodi_want',
  'want_adopt',
  'adopt_deformati',
  'deformati_also',
  'also_black',
  'black_cat',
  'cat_bc',
  'bc_gon',
  'gon_na',
  'na_euthan',
  'euthan_otherwis',
  'otherwis_sister',
  'sister_move',
  'move_citi',
  'citi_week',
  'week_husband',
  'husband_need',
  'need_someon',
  'someon_watch',
  'watch_kid',
  'kid_sinc',
  'sinc_gon',
  'gon_na',
  'na_grown',
  'grown_celebr',
  'celebr_parti',
  'parti_agre',
  'agre_niec',
  'niec_theyr',
  'theyr_littl',
  'littl_handl',
  'handl_id',
  'id_also',
  'also_great',
  'great_enrich',
  'enrich_cat',
  'cat_sinc',
  'sinc_love',
  'love_children',
  'children_women',
  'women_im',
  'im_man',
  'man_trust',
  'trust_niec',
  'niec_love',
  'love_first',
  'first_littl',
  'littl_scare',
  'scare_thought',
  'thought_cute',
  'cute_sister',
  'sister_went',
  'went_pick',
  'pick_bell',
  'bell_rang',
  'rang_cat',
  'cat_went',
  'went_run',
  'run_also',
  'also_door',
  'door_sister',
  'sister_saw',
  'saw_freak',
  'freak_start',
  'start_scream',
  'scream_cat',
  'cat_ran',
  'ran_away',
  'away_due',
  'due_nois',
  'nois_sister',
  'sister_start',
  'start_yell',
  'yell_let',
  'let_cat',
  'cat_around',
  'around_kid',
  'kid_say',
  'say_demon',
  'demon_next',
  'next_day',
  'day_husband',
  'husband_call',
  'call_said',
  'said_unless',
  'unless_cat',
  'cat_goe',
  'goe_ill',
  'ill_never',
  'never_aita',
  'cat_name_stargaz',
  'name_stargaz_adopt',
  'stargaz_adopt_around',
  'adopt_around_year',
  'around_year_ago',
  'year_ago_truli',
  'ago_truli_littl',
  'truli_littl_survivor',
  'littl_survivor_abus',
  'survivor_abus_result',
  'abus_result_eye',
  'result_eye_three',
  'eye_three_leg',
  'three_leg_nobodi',
  'leg_nobodi_want',
  'nobodi_want_adopt',
  'want_adopt_deformati',
  'adopt_deformati_also',
  'deformati_also_black',
  'also_black_cat',
  'black_cat_bc',
  'cat_bc_gon',
  'bc_gon_na',
  'gon_na_euthan',
  'na_euthan_otherwis',
  'euthan_otherwis_sister',
  'otherwis_sister_move',
  'sister_move_citi',
  'move_citi_week',
  'citi_week_husband',
  'week_husband_need',
  'husband_need_someon',
  'need_someon_watch',
  'someon_watch_kid',
  'watch_kid_sinc',
  'kid_sinc_gon',
  'sinc_gon_na',
  'gon_na_grown',
  'na_grown_celebr',
  'grown_celebr_parti',
  'celebr_parti_agre',
  'parti_agre_niec',
  'agre_niec_theyr',
  'niec_theyr_littl',
  'theyr_littl_handl',
  'littl_handl_id',
  'handl_id_also',
  'id_also_great',
  'also_great_enrich',
  'great_enrich_cat',
  'enrich_cat_sinc',
  'cat_sinc_love',
  'sinc_love_children',
  'love_children_women',
  'children_women_im',
  'women_im_man',
  'im_man_trust',
  'man_trust_niec',
  'trust_niec_love',
  'niec_love_first',
  'love_first_littl',
  'first_littl_scare',
  'littl_scare_thought',
  'scare_thought_cute',
  'thought_cute_sister',
  'cute_sister_went',
  'sister_went_pick',
  'went_pick_bell',
  'pick_bell_rang',
  'bell_rang_cat',
  'rang_cat_went',
  'cat_went_run',
  'went_run_also',
  'run_also_door',
  'also_door_sister',
  'door_sister_saw',
  'sister_saw_freak',
  'saw_freak_start',
  'freak_start_scream',
  'start_scream_cat',
  'scream_cat_ran',
  'cat_ran_away',
  'ran_away_due',
  'away_due_nois',
  'due_nois_sister',
  'nois_sister_start',
  'sister_start_yell',
  'start_yell_let',
  'yell_let_cat',
  'let_cat_around',
  'cat_around_kid',
  'around_kid_say',
  'kid_say_demon',
  'say_demon_next',
  'demon_next_day',
  'next_day_husband',
  'day_husband_call',
  'husband_call_said',
  'call_said_unless',
  'said_unless_cat',
  'unless_cat_goe',
  'cat_goe_ill',
  'goe_ill_never',
  'ill_never_aita'],
 ['wifef',
  'im',
  'tri',
  'get',
  'pregnant',
  'deal',
  'boy',
  'would',
  'get',
  'choos',
  'full',
  'name',
  'daughter',
  'would',
  'fine',
  'deal',
  'veto',
  'case',
  'like',
  'name',
  'chosen',
  'got',
  'pregnant',
  'wife',
  'complet',
  'sure',
  'boy',
  'mother',
  'know',
  'entir',
  'famili',
  'convinc',
  'babi',
  'shower',
  'everyth',
  'blue',
  'gift',
  'demand',
  'masculin',
  'mother',
  'alreadi',
  'start',
  'knit',
  'thing',
  'name',
  'wife',
  'chosen',
  'babi',
  'came',
  'saw',
  'girl',
  'ecstat',
  'although',
  'want',
  'boy',
  'girl',
  'alway',
  'imagin',
  'first',
  'born',
  'girl',
  'wife',
  'though',
  'seemingli',
  'exhaust',
  'happi',
  'wrote',
  'name',
  'birth',
  'certif',
  'let',
  'know',
  'use',
  'name',
  'alreadi',
  'run',
  'past',
  'year',
  'later',
  'come',
  'home',
  'work',
  'find',
  'mil',
  'wife',
  'talk',
  'daughter',
  'use',
  'anoth',
  'name',
  'inquir',
  'talk',
  'kinda',
  'went',
  'deer',
  'headlight',
  'blurt',
  'talk',
  'daughter',
  'ask',
  'use',
  'anoth',
  'name',
  'mil',
  'said',
  'decid',
  'name',
  'went',
  'rant',
  'unfair',
  'chose',
  'name',
  'complet',
  'unsuit',
  'etc',
  'shock',
  'first',
  'time',
  'anyon',
  'claim',
  'object',
  'name',
  'realiz',
  'reason',
  'daughter',
  'troubl',
  'recogn',
  'name',
  'use',
  'two',
  'differ',
  'name',
  'entir',
  'time',
  'wife',
  'later',
  'came',
  'suggest',
  'offici',
  'get',
  'name',
  'chang',
  'stuck',
  'gun',
  'told',
  'need',
  'stop',
  'led',
  'fight',
  'unsupport',
  'stole',
  'right',
  'name',
  'child',
  'gave',
  'birth',
  'told',
  'opportun',
  'veto',
  'name',
  'long',
  'gone',
  'cant',
  'expect',
  'support',
  'someth',
  'stupid',
  'worst',
  'part',
  'could',
  'convinc',
  'chang',
  'first',
  'name',
  'one',
  'want',
  'odd',
  'feminin',
  'version',
  'name',
  'want',
  'son',
  'imagin',
  'use',
  'femal',
  'version',
  'name',
  'drake',
  'thoma',
  'got',
  'angri',
  'left',
  'daughter',
  'went',
  'parent',
  'entir',
  'famili',
  'except',
  'fil',
  'call',
  'control',
  'unfair',
  'chose',
  'entir',
  'name',
  'made',
  'honestli',
  'left',
  'field',
  'creepi',
  'im',
  'consid',
  'divorc',
  'parent',
  'friend',
  'said',
  'understand',
  'im',
  'upset',
  'come',
  'compromis',
  'chang',
  'name',
  'someth',
  'like',
  'divorc',
  'overkil',
  'think',
  'feel',
  'gut',
  'may',
  'tri',
  'recreat',
  'son',
  'sacrif',
  'daughter',
  'use',
  'differ',
  'name',
  'address',
  'year',
  'els',
  'reddit',
  'aita',
  'compromis',
  'daughter',
  'name',
  'updat',
  '[',
  'updat',
  'aita',
  'stick',
  'mym',
  'gun',
  'came',
  'daughter',
  'name',
  'ok-toe-',
  'redditcom',
  ']',
  'httpswwwredditcomuserok-toe-commentsvbkaupdate_aita_for_sticking_to_mym_guns_when_it',
  'wifef_im',
  'im_tri',
  'tri_get',
  'get_pregnant',
  'pregnant_deal',
  'deal_boy',
  'boy_would',
  'would_get',
  'get_choos',
  'choos_full',
  'full_name',
  'name_daughter',
  'daughter_would',
  'would_fine',
  'fine_deal',
  'deal_veto',
  'veto_case',
  'case_like',
  'like_name',
  'name_chosen',
  'chosen_got',
  'got_pregnant',
  'pregnant_wife',
  'wife_complet',
  'complet_sure',
  'sure_boy',
  'boy_mother',
  'mother_know',
  'know_entir',
  'entir_famili',
  'famili_convinc',
  'convinc_babi',
  'babi_shower',
  'shower_everyth',
  'everyth_blue',
  'blue_gift',
  'gift_demand',
  'demand_masculin',
  'masculin_mother',
  'mother_alreadi',
  'alreadi_start',
  'start_knit',
  'knit_thing',
  'thing_name',
  'name_wife',
  'wife_chosen',
  'chosen_babi',
  'babi_came',
  'came_saw',
  'saw_girl',
  'girl_ecstat',
  'ecstat_although',
  'although_want',
  'want_boy',
  'boy_girl',
  'girl_alway',
  'alway_imagin',
  'imagin_first',
  'first_born',
  'born_girl',
  'girl_wife',
  'wife_though',
  'though_seemingli',
  'seemingli_exhaust',
  'exhaust_happi',
  'happi_wrote',
  'wrote_name',
  'name_birth',
  'birth_certif',
  'certif_let',
  'let_know',
  'know_use',
  'use_name',
  'name_alreadi',
  'alreadi_run',
  'run_past',
  'past_year',
  'year_later',
  'later_come',
  'come_home',
  'home_work',
  'work_find',
  'find_mil',
  'mil_wife',
  'wife_talk',
  'talk_daughter',
  'daughter_use',
  'use_anoth',
  'anoth_name',
  'name_inquir',
  'inquir_talk',
  'talk_kinda',
  'kinda_went',
  'went_deer',
  'deer_headlight',
  'headlight_blurt',
  'blurt_talk',
  'talk_daughter',
  'daughter_ask',
  'ask_use',
  'use_anoth',
  'anoth_name',
  'name_mil',
  'mil_said',
  'said_decid',
  'decid_name',
  'name_went',
  'went_rant',
  'rant_unfair',
  'unfair_chose',
  'chose_name',
  'name_complet',
  'complet_unsuit',
  'unsuit_etc',
  'etc_shock',
  'shock_first',
  'first_time',
  'time_anyon',
  'anyon_claim',
  'claim_object',
  'object_name',
  'name_realiz',
  'realiz_reason',
  'reason_daughter',
  'daughter_troubl',
  'troubl_recogn',
  'recogn_name',
  'name_use',
  'use_two',
  'two_differ',
  'differ_name',
  'name_entir',
  'entir_time',
  'time_wife',
  'wife_later',
  'later_came',
  'came_suggest',
  'suggest_offici',
  'offici_get',
  'get_name',
  'name_chang',
  'chang_stuck',
  'stuck_gun',
  'gun_told',
  'told_need',
  'need_stop',
  'stop_led',
  'led_fight',
  'fight_unsupport',
  'unsupport_stole',
  'stole_right',
  'right_name',
  'name_child',
  'child_gave',
  'gave_birth',
  'birth_told',
  'told_opportun',
  'opportun_veto',
  'veto_name',
  'name_long',
  'long_gone',
  'gone_cant',
  'cant_expect',
  'expect_support',
  'support_someth',
  'someth_stupid',
  'stupid_worst',
  'worst_part',
  'part_could',
  'could_convinc',
  'convinc_chang',
  'chang_first',
  'first_name',
  'name_one',
  'one_want',
  'want_odd',
  'odd_feminin',
  'feminin_version',
  'version_name',
  'name_want',
  'want_son',
  'son_imagin',
  'imagin_use',
  'use_femal',
  'femal_version',
  'version_name',
  'name_drake',
  'drake_thoma',
  'thoma_got',
  'got_angri',
  'angri_left',
  'left_daughter',
  'daughter_went',
  'went_parent',
  'parent_entir',
  'entir_famili',
  'famili_except',
  'except_fil',
  'fil_call',
  'call_control',
  'control_unfair',
  'unfair_chose',
  'chose_entir',
  'entir_name',
  'name_made',
  'made_honestli',
  'honestli_left',
  'left_field',
  'field_creepi',
  'creepi_im',
  'im_consid',
  'consid_divorc',
  'divorc_parent',
  'parent_friend',
  'friend_said',
  'said_understand',
  'understand_im',
  'im_upset',
  'upset_come',
  'come_compromis',
  'compromis_chang',
  'chang_name',
  'name_someth',
  'someth_like',
  'like_divorc',
  'divorc_overkil',
  'overkil_think',
  'think_feel',
  'feel_gut',
  'gut_may',
  'may_tri',
  'tri_recreat',
  'recreat_son',
  'son_sacrif',
  'sacrif_daughter',
  'daughter_use',
  'use_differ',
  'differ_name',
  'name_address',
  'address_year',
  'year_els',
  'els_reddit',
  'reddit_aita',
  'aita_compromis',
  'compromis_daughter',
  'daughter_name',
  'name_updat',
  'updat_[',
  '[_updat',
  'updat_aita',
  'aita_stick',
  'stick_mym',
  'mym_gun',
  'gun_came',
  'came_daughter',
  'daughter_name',
  'name_ok-toe-',
  'ok-toe-_redditcom',
  'redditcom_]',
  ']_httpswwwredditcomuserok-toe-commentsvbkaupdate_aita_for_sticking_to_mym_guns_when_it',
  'wifef_im_tri',
  'im_tri_get',
  'tri_get_pregnant',
  'get_pregnant_deal',
  'pregnant_deal_boy',
  'deal_boy_would',
  'boy_would_get',
  'would_get_choos',
  'get_choos_full',
  'choos_full_name',
  'full_name_daughter',
  'name_daughter_would',
  'daughter_would_fine',
  'would_fine_deal',
  'fine_deal_veto',
  'deal_veto_case',
  'veto_case_like',
  'case_like_name',
  'like_name_chosen',
  'name_chosen_got',
  'chosen_got_pregnant',
  'got_pregnant_wife',
  'pregnant_wife_complet',
  'wife_complet_sure',
  'complet_sure_boy',
  'sure_boy_mother',
  'boy_mother_know',
  'mother_know_entir',
  'know_entir_famili',
  'entir_famili_convinc',
  'famili_convinc_babi',
  'convinc_babi_shower',
  'babi_shower_everyth',
  'shower_everyth_blue',
  'everyth_blue_gift',
  'blue_gift_demand',
  'gift_demand_masculin',
  'demand_masculin_mother',
  'masculin_mother_alreadi',
  'mother_alreadi_start',
  'alreadi_start_knit',
  'start_knit_thing',
  'knit_thing_name',
  'thing_name_wife',
  'name_wife_chosen',
  'wife_chosen_babi',
  'chosen_babi_came',
  'babi_came_saw',
  'came_saw_girl',
  'saw_girl_ecstat',
  'girl_ecstat_although',
  'ecstat_although_want',
  'although_want_boy',
  'want_boy_girl',
  'boy_girl_alway',
  'girl_alway_imagin',
  'alway_imagin_first',
  'imagin_first_born',
  'first_born_girl',
  'born_girl_wife',
  'girl_wife_though',
  'wife_though_seemingli',
  'though_seemingli_exhaust',
  'seemingli_exhaust_happi',
  'exhaust_happi_wrote',
  'happi_wrote_name',
  'wrote_name_birth',
  'name_birth_certif',
  'birth_certif_let',
  'certif_let_know',
  'let_know_use',
  'know_use_name',
  'use_name_alreadi',
  'name_alreadi_run',
  'alreadi_run_past',
  'run_past_year',
  'past_year_later',
  'year_later_come',
  'later_come_home',
  'come_home_work',
  'home_work_find',
  'work_find_mil',
  'find_mil_wife',
  'mil_wife_talk',
  'wife_talk_daughter',
  'talk_daughter_use',
  'daughter_use_anoth',
  'use_anoth_name',
  'anoth_name_inquir',
  'name_inquir_talk',
  'inquir_talk_kinda',
  'talk_kinda_went',
  'kinda_went_deer',
  'went_deer_headlight',
  'deer_headlight_blurt',
  'headlight_blurt_talk',
  'blurt_talk_daughter',
  'talk_daughter_ask',
  'daughter_ask_use',
  'ask_use_anoth',
  'use_anoth_name',
  'anoth_name_mil',
  'name_mil_said',
  'mil_said_decid',
  'said_decid_name',
  'decid_name_went',
  'name_went_rant',
  'went_rant_unfair',
  'rant_unfair_chose',
  'unfair_chose_name',
  'chose_name_complet',
  'name_complet_unsuit',
  'complet_unsuit_etc',
  'unsuit_etc_shock',
  'etc_shock_first',
  'shock_first_time',
  'first_time_anyon',
  'time_anyon_claim',
  'anyon_claim_object',
  'claim_object_name',
  'object_name_realiz',
  'name_realiz_reason',
  'realiz_reason_daughter',
  'reason_daughter_troubl',
  'daughter_troubl_recogn',
  'troubl_recogn_name',
  'recogn_name_use',
  'name_use_two',
  'use_two_differ',
  'two_differ_name',
  'differ_name_entir',
  'name_entir_time',
  'entir_time_wife',
  'time_wife_later',
  'wife_later_came',
  'later_came_suggest',
  'came_suggest_offici',
  'suggest_offici_get',
  'offici_get_name',
  'get_name_chang',
  'name_chang_stuck',
  'chang_stuck_gun',
  'stuck_gun_told',
  'gun_told_need',
  'told_need_stop',
  'need_stop_led',
  'stop_led_fight',
  'led_fight_unsupport',
  'fight_unsupport_stole',
  'unsupport_stole_right',
  'stole_right_name',
  'right_name_child',
  'name_child_gave',
  'child_gave_birth',
  'gave_birth_told',
  'birth_told_opportun',
  'told_opportun_veto',
  'opportun_veto_name',
  'veto_name_long',
  'name_long_gone',
  'long_gone_cant',
  'gone_cant_expect',
  'cant_expect_support',
  'expect_support_someth',
  'support_someth_stupid',
  'someth_stupid_worst',
  'stupid_worst_part',
  'worst_part_could',
  'part_could_convinc',
  'could_convinc_chang',
  'convinc_chang_first',
  'chang_first_name',
  'first_name_one',
  'name_one_want',
  'one_want_odd',
  'want_odd_feminin',
  'odd_feminin_version',
  'feminin_version_name',
  'version_name_want',
  'name_want_son',
  'want_son_imagin',
  'son_imagin_use',
  'imagin_use_femal',
  'use_femal_version',
  'femal_version_name',
  'version_name_drake',
  'name_drake_thoma',
  'drake_thoma_got',
  'thoma_got_angri',
  'got_angri_left',
  'angri_left_daughter',
  'left_daughter_went',
  'daughter_went_parent',
  'went_parent_entir',
  'parent_entir_famili',
  'entir_famili_except',
  'famili_except_fil',
  'except_fil_call',
  'fil_call_control',
  'call_control_unfair',
  'control_unfair_chose',
  'unfair_chose_entir',
  'chose_entir_name',
  'entir_name_made',
  'name_made_honestli',
  'made_honestli_left',
  'honestli_left_field',
  'left_field_creepi',
  'field_creepi_im',
  'creepi_im_consid',
  'im_consid_divorc',
  'consid_divorc_parent',
  'divorc_parent_friend',
  'parent_friend_said',
  'friend_said_understand',
  'said_understand_im',
  'understand_im_upset',
  'im_upset_come',
  'upset_come_compromis',
  'come_compromis_chang',
  'compromis_chang_name',
  'chang_name_someth',
  'name_someth_like',
  'someth_like_divorc',
  'like_divorc_overkil',
  'divorc_overkil_think',
  'overkil_think_feel',
  'think_feel_gut',
  'feel_gut_may',
  'gut_may_tri',
  'may_tri_recreat',
  'tri_recreat_son',
  'recreat_son_sacrif',
  'son_sacrif_daughter',
  'sacrif_daughter_use',
  'daughter_use_differ',
  'use_differ_name',
  'differ_name_address',
  'name_address_year',
  'address_year_els',
  'year_els_reddit',
  'els_reddit_aita',
  'reddit_aita_compromis',
  'aita_compromis_daughter',
  'compromis_daughter_name',
  'daughter_name_updat',
  'name_updat_[',
  'updat_[_updat',
  '[_updat_aita',
  'updat_aita_stick',
  'aita_stick_mym',
  'stick_mym_gun',
  'mym_gun_came',
  'gun_came_daughter',
  'came_daughter_name',
  'daughter_name_ok-toe-',
  'name_ok-toe-_redditcom',
  'ok-toe-_redditcom_]',
  'redditcom_]_httpswwwredditcomuserok-toe-commentsvbkaupdate_aita_for_sticking_to_mym_guns_when_it'],
 ['super',
  'weird',
  'situat',
  'need',
  'judgement',
  'engag',
  'amanda',
  'year',
  'date',
  'year',
  'old',
  'daughter',
  'name',
  'alexi',
  'alexi',
  'good',
  'relationship',
  'amanda',
  'ex',
  'good',
  'relationship',
  'part',
  'im',
  'total',
  'comfort',
  'role',
  'amanda',
  'ex',
  'alexi',
  'weird',
  'thing',
  'get',
  'togeth',
  'sunday',
  'hangout',
  'three',
  'guess',
  'start',
  'famili',
  'tradit',
  'divorc',
  'kept',
  'go',
  'make',
  'breakfast',
  'watch',
  'movi',
  'hang',
  'around',
  'day',
  'togeth',
  'find',
  'realli',
  'weird',
  'tbh',
  'like',
  'im',
  'insecur',
  'would',
  'want',
  'spend',
  'day',
  'week',
  'ex',
  'beyond',
  'said',
  'weird',
  'found',
  'start',
  'date',
  'amanda',
  'said',
  'alexi',
  'look',
  'forward',
  'weekli',
  'never',
  'stop',
  'first',
  'would',
  'hang',
  'room',
  'basement',
  'sunday',
  'got',
  'tire',
  'trap',
  'hous',
  'start',
  'leav',
  'whole',
  'day',
  'amanda',
  'would',
  'never',
  'ask',
  'go',
  'anyth',
  'even',
  'notic',
  'gone',
  'first',
  'golf',
  'get',
  'errand',
  'done',
  'would',
  'find',
  'bar',
  'reconnect',
  'old',
  'friend',
  'bella',
  'bella',
  'date',
  'year',
  'ago',
  'remain',
  'good',
  'friend',
  'sinc',
  'broke',
  'husband',
  'move',
  'new',
  'apart',
  'told',
  'one',
  'sunday',
  'plan',
  'go',
  'movi',
  'instead',
  'invit',
  'smoke',
  'weed',
  'watch',
  'movi',
  'cook',
  'hung',
  'nice',
  'ever',
  'sinc',
  'becom',
  'weekli',
  'tradit',
  'whenev',
  'sunday',
  'would',
  'come',
  'id',
  'head',
  'bella',
  'wed',
  'hangout',
  'day',
  'see',
  'need',
  'bring',
  'amanda',
  'go',
  'never',
  'ask',
  'even',
  'wonder',
  'everi',
  'sunday',
  'yesterday',
  'bella',
  'stop',
  'hous',
  'drop',
  'phone',
  'charger',
  'left',
  'place',
  'amanda',
  'ask',
  'bella',
  'phone',
  'charger',
  'told',
  'sunday',
  'ask',
  'told',
  'sunday',
  'hangout',
  'spot',
  'flip',
  'say',
  'rude',
  'let',
  'know',
  'hang',
  'ex',
  'laugh',
  'said',
  'realli',
  'see',
  'ironi',
  'statement',
  'said',
  'differ',
  'forthcom',
  'herex',
  'relationship',
  'issu',
  'said',
  'said',
  'alreadi',
  'bring',
  'said',
  'import',
  'daughter',
  'suppos',
  'interfer',
  'highlight',
  'daughter',
  'week',
  'order',
  'make',
  'feel',
  'better',
  'ill',
  'sneak',
  'back',
  'door',
  'head',
  'friend',
  'hous',
  'see',
  'even',
  'issu',
  'trust',
  'adult',
  'amanda',
  'want',
  'anymor',
  'said',
  'want',
  'find',
  'anoth',
  'way',
  'spend',
  'sunday',
  'said',
  'want',
  'ex',
  'sunday',
  'anymor',
  'play',
  'aita',
  'updat',
  'shit',
  'alreadi',
  'hit',
  'fan',
  'whole',
  'situat',
  'ive',
  'put',
  'foot',
  'said',
  'im',
  'forc',
  'hous',
  'anymor',
  'sunday',
  'funday',
  'ex',
  'place',
  'move',
  'forward',
  'ill',
  'post',
  'complet',
  'updat',
  'want',
  'clarifi',
  'reason',
  'hang',
  'ask',
  'first',
  'alway',
  'felt',
  'awkward',
  'whole',
  'thing',
  'first',
  'stay',
  'away',
  'ask',
  'felt',
  'like',
  'fourth',
  'wheel',
  'decid',
  'quit',
  'tri',
  'bella',
  'realli',
  'help',
  'went',
  'someth',
  'similar',
  'super_weird',
  'weird_situat',
  'situat_need',
  'need_judgement',
  'judgement_engag',
  'engag_amanda',
  'amanda_year',
  'year_date',
  'date_year',
  'year_old',
  'old_daughter',
  'daughter_name',
  'name_alexi',
  'alexi_alexi',
  'alexi_good',
  'good_relationship',
  'relationship_amanda',
  'amanda_ex',
  'ex_good',
  'good_relationship',
  'relationship_part',
  'part_im',
  'im_total',
  'total_comfort',
  'comfort_role',
  'role_amanda',
  'amanda_ex',
  'ex_alexi',
  'alexi_weird',
  'weird_thing',
  'thing_get',
  'get_togeth',
  'togeth_sunday',
  'sunday_hangout',
  'hangout_three',
  'three_guess',
  'guess_start',
  'start_famili',
  'famili_tradit',
  'tradit_divorc',
  'divorc_kept',
  'kept_go',
  'go_make',
  'make_breakfast',
  'breakfast_watch',
  'watch_movi',
  'movi_hang',
  'hang_around',
  'around_day',
  'day_togeth',
  'togeth_find',
  'find_realli',
  'realli_weird',
  'weird_tbh',
  'tbh_like',
  'like_im',
  'im_insecur',
  'insecur_would',
  'would_want',
  'want_spend',
  'spend_day',
  'day_week',
  'week_ex',
  'ex_beyond',
  'beyond_said',
  'said_weird',
  'weird_found',
  'found_start',
  'start_date',
  'date_amanda',
  'amanda_said',
  'said_alexi',
  'alexi_look',
  'look_forward',
  'forward_weekli',
  'weekli_never',
  'never_stop',
  'stop_first',
  'first_would',
  'would_hang',
  'hang_room',
  'room_basement',
  'basement_sunday',
  'sunday_got',
  'got_tire',
  'tire_trap',
  'trap_hous',
  'hous_start',
  'start_leav',
  'leav_whole',
  'whole_day',
  'day_amanda',
  'amanda_would',
  'would_never',
  'never_ask',
  'ask_go',
  'go_anyth',
  'anyth_even',
  'even_notic',
  'notic_gone',
  'gone_first',
  'first_golf',
  'golf_get',
  'get_errand',
  'errand_done',
  'done_would',
  'would_find',
  'find_bar',
  'bar_reconnect',
  'reconnect_old',
  'old_friend',
  'friend_bella',
  'bella_bella',
  'bella_date',
  'date_year',
  'year_ago',
  'ago_remain',
  'remain_good',
  'good_friend',
  'friend_sinc',
  'sinc_broke',
  'broke_husband',
  'husband_move',
  'move_new',
  'new_apart',
  'apart_told',
  'told_one',
  'one_sunday',
  'sunday_plan',
  'plan_go',
  'go_movi',
  'movi_instead',
  'instead_invit',
  'invit_smoke',
  'smoke_weed',
  'weed_watch',
  'watch_movi',
  'movi_cook',
  'cook_hung',
  'hung_nice',
  'nice_ever',
  'ever_sinc',
  'sinc_becom',
  'becom_weekli',
  'weekli_tradit',
  'tradit_whenev',
  'whenev_sunday',
  'sunday_would',
  'would_come',
  'come_id',
  'id_head',
  'head_bella',
  'bella_wed',
  'wed_hangout',
  'hangout_day',
  'day_see',
  'see_need',
  'need_bring',
  'bring_amanda',
  'amanda_go',
  'go_never',
  'never_ask',
  'ask_even',
  'even_wonder',
  'wonder_everi',
  'everi_sunday',
  'sunday_yesterday',
  'yesterday_bella',
  'bella_stop',
  'stop_hous',
  'hous_drop',
  'drop_phone',
  'phone_charger',
  'charger_left',
  'left_place',
  'place_amanda',
  'amanda_ask',
  'ask_bella',
  'bella_phone',
  'phone_charger',
  'charger_told',
  'told_sunday',
  'sunday_ask',
  'ask_told',
  'told_sunday',
  'sunday_hangout',
  'hangout_spot',
  'spot_flip',
  'flip_say',
  'say_rude',
  'rude_let',
  'let_know',
  'know_hang',
  'hang_ex',
  'ex_laugh',
  'laugh_said',
  'said_realli',
  'realli_see',
  'see_ironi',
  'ironi_statement',
  'statement_said',
  'said_differ',
  'differ_forthcom',
  'forthcom_herex',
  'herex_relationship',
  'relationship_issu',
  'issu_said',
  'said_said',
  'said_alreadi',
  'alreadi_bring',
  'bring_said',
  'said_import',
  'import_daughter',
  'daughter_suppos',
  'suppos_interfer',
  'interfer_highlight',
  'highlight_daughter',
  'daughter_week',
  'week_order',
  'order_make',
  'make_feel',
  'feel_better',
  'better_ill',
  'ill_sneak',
  'sneak_back',
  'back_door',
  'door_head',
  'head_friend',
  'friend_hous',
  'hous_see',
  'see_even',
  'even_issu',
  'issu_trust',
  'trust_adult',
  'adult_amanda',
  'amanda_want',
  'want_anymor',
  'anymor_said',
  'said_want',
  'want_find',
  'find_anoth',
  'anoth_way',
  'way_spend',
  'spend_sunday',
  'sunday_said',
  'said_want',
  'want_ex',
  'ex_sunday',
  'sunday_anymor',
  'anymor_play',
  'play_aita',
  'aita_updat',
  'updat_shit',
  'shit_alreadi',
  'alreadi_hit',
  'hit_fan',
  'fan_whole',
  'whole_situat',
  'situat_ive',
  'ive_put',
  'put_foot',
  'foot_said',
  'said_im',
  'im_forc',
  'forc_hous',
  'hous_anymor',
  'anymor_sunday',
  'sunday_funday',
  'funday_ex',
  'ex_place',
  'place_move',
  'move_forward',
  'forward_ill',
  'ill_post',
  'post_complet',
  'complet_updat',
  'updat_want',
  'want_clarifi',
  'clarifi_reason',
  'reason_hang',
  'hang_ask',
  'ask_first',
  'first_alway',
  'alway_felt',
  'felt_awkward',
  'awkward_whole',
  'whole_thing',
  'thing_first',
  'first_stay',
  'stay_away',
  'away_ask',
  'ask_felt',
  'felt_like',
  'like_fourth',
  'fourth_wheel',
  'wheel_decid',
  'decid_quit',
  'quit_tri',
  'tri_bella',
  'bella_realli',
  'realli_help',
  'help_went',
  'went_someth',
  'someth_similar',
  'super_weird_situat',
  'weird_situat_need',
  'situat_need_judgement',
  'need_judgement_engag',
  'judgement_engag_amanda',
  'engag_amanda_year',
  'amanda_year_date',
  'year_date_year',
  'date_year_old',
  'year_old_daughter',
  'old_daughter_name',
  'daughter_name_alexi',
  'name_alexi_alexi',
  'alexi_alexi_good',
  'alexi_good_relationship',
  'good_relationship_amanda',
  'relationship_amanda_ex',
  'amanda_ex_good',
  'ex_good_relationship',
  'good_relationship_part',
  'relationship_part_im',
  'part_im_total',
  'im_total_comfort',
  'total_comfort_role',
  'comfort_role_amanda',
  'role_amanda_ex',
  'amanda_ex_alexi',
  'ex_alexi_weird',
  'alexi_weird_thing',
  'weird_thing_get',
  'thing_get_togeth',
  'get_togeth_sunday',
  'togeth_sunday_hangout',
  'sunday_hangout_three',
  'hangout_three_guess',
  'three_guess_start',
  'guess_start_famili',
  'start_famili_tradit',
  'famili_tradit_divorc',
  'tradit_divorc_kept',
  'divorc_kept_go',
  'kept_go_make',
  'go_make_breakfast',
  'make_breakfast_watch',
  'breakfast_watch_movi',
  'watch_movi_hang',
  'movi_hang_around',
  'hang_around_day',
  'around_day_togeth',
  'day_togeth_find',
  'togeth_find_realli',
  'find_realli_weird',
  'realli_weird_tbh',
  'weird_tbh_like',
  'tbh_like_im',
  'like_im_insecur',
  'im_insecur_would',
  'insecur_would_want',
  'would_want_spend',
  'want_spend_day',
  'spend_day_week',
  'day_week_ex',
  'week_ex_beyond',
  'ex_beyond_said',
  'beyond_said_weird',
  'said_weird_found',
  'weird_found_start',
  'found_start_date',
  'start_date_amanda',
  'date_amanda_said',
  'amanda_said_alexi',
  'said_alexi_look',
  'alexi_look_forward',
  'look_forward_weekli',
  'forward_weekli_never',
  'weekli_never_stop',
  'never_stop_first',
  'stop_first_would',
  'first_would_hang',
  'would_hang_room',
  'hang_room_basement',
  'room_basement_sunday',
  'basement_sunday_got',
  'sunday_got_tire',
  'got_tire_trap',
  'tire_trap_hous',
  'trap_hous_start',
  'hous_start_leav',
  'start_leav_whole',
  'leav_whole_day',
  'whole_day_amanda',
  'day_amanda_would',
  'amanda_would_never',
  'would_never_ask',
  'never_ask_go',
  'ask_go_anyth',
  'go_anyth_even',
  'anyth_even_notic',
  'even_notic_gone',
  'notic_gone_first',
  'gone_first_golf',
  'first_golf_get',
  'golf_get_errand',
  'get_errand_done',
  'errand_done_would',
  'done_would_find',
  'would_find_bar',
  'find_bar_reconnect',
  'bar_reconnect_old',
  'reconnect_old_friend',
  'old_friend_bella',
  'friend_bella_bella',
  'bella_bella_date',
  'bella_date_year',
  'date_year_ago',
  'year_ago_remain',
  'ago_remain_good',
  'remain_good_friend',
  'good_friend_sinc',
  'friend_sinc_broke',
  'sinc_broke_husband',
  'broke_husband_move',
  'husband_move_new',
  'move_new_apart',
  'new_apart_told',
  'apart_told_one',
  'told_one_sunday',
  'one_sunday_plan',
  'sunday_plan_go',
  'plan_go_movi',
  'go_movi_instead',
  'movi_instead_invit',
  'instead_invit_smoke',
  'invit_smoke_weed',
  'smoke_weed_watch',
  'weed_watch_movi',
  'watch_movi_cook',
  'movi_cook_hung',
  'cook_hung_nice',
  'hung_nice_ever',
  'nice_ever_sinc',
  'ever_sinc_becom',
  'sinc_becom_weekli',
  'becom_weekli_tradit',
  'weekli_tradit_whenev',
  'tradit_whenev_sunday',
  'whenev_sunday_would',
  'sunday_would_come',
  'would_come_id',
  'come_id_head',
  'id_head_bella',
  'head_bella_wed',
  'bella_wed_hangout',
  'wed_hangout_day',
  'hangout_day_see',
  'day_see_need',
  'see_need_bring',
  'need_bring_amanda',
  'bring_amanda_go',
  'amanda_go_never',
  'go_never_ask',
  'never_ask_even',
  'ask_even_wonder',
  'even_wonder_everi',
  'wonder_everi_sunday',
  'everi_sunday_yesterday',
  'sunday_yesterday_bella',
  'yesterday_bella_stop',
  'bella_stop_hous',
  'stop_hous_drop',
  'hous_drop_phone',
  'drop_phone_charger',
  'phone_charger_left',
  'charger_left_place',
  'left_place_amanda',
  'place_amanda_ask',
  'amanda_ask_bella',
  'ask_bella_phone',
  'bella_phone_charger',
  'phone_charger_told',
  'charger_told_sunday',
  'told_sunday_ask',
  'sunday_ask_told',
  'ask_told_sunday',
  'told_sunday_hangout',
  'sunday_hangout_spot',
  'hangout_spot_flip',
  'spot_flip_say',
  'flip_say_rude',
  'say_rude_let',
  'rude_let_know',
  'let_know_hang',
  'know_hang_ex',
  'hang_ex_laugh',
  'ex_laugh_said',
  'laugh_said_realli',
  'said_realli_see',
  'realli_see_ironi',
  'see_ironi_statement',
  'ironi_statement_said',
  'statement_said_differ',
  'said_differ_forthcom',
  'differ_forthcom_herex',
  'forthcom_herex_relationship',
  'herex_relationship_issu',
  'relationship_issu_said',
  'issu_said_said',
  'said_said_alreadi',
  'said_alreadi_bring',
  'alreadi_bring_said',
  'bring_said_import',
  'said_import_daughter',
  'import_daughter_suppos',
  'daughter_suppos_interfer',
  'suppos_interfer_highlight',
  'interfer_highlight_daughter',
  'highlight_daughter_week',
  'daughter_week_order',
  'week_order_make',
  'order_make_feel',
  'make_feel_better',
  'feel_better_ill',
  'better_ill_sneak',
  'ill_sneak_back',
  'sneak_back_door',
  'back_door_head',
  'door_head_friend',
  'head_friend_hous',
  'friend_hous_see',
  'hous_see_even',
  'see_even_issu',
  'even_issu_trust',
  'issu_trust_adult',
  'trust_adult_amanda',
  'adult_amanda_want',
  'amanda_want_anymor',
  'want_anymor_said',
  'anymor_said_want',
  'said_want_find',
  'want_find_anoth',
  'find_anoth_way',
  'anoth_way_spend',
  'way_spend_sunday',
  'spend_sunday_said',
  'sunday_said_want',
  'said_want_ex',
  'want_ex_sunday',
  'ex_sunday_anymor',
  'sunday_anymor_play',
  'anymor_play_aita',
  'play_aita_updat',
  'aita_updat_shit',
  'updat_shit_alreadi',
  'shit_alreadi_hit',
  'alreadi_hit_fan',
  'hit_fan_whole',
  'fan_whole_situat',
  'whole_situat_ive',
  'situat_ive_put',
  'ive_put_foot',
  'put_foot_said',
  'foot_said_im',
  'said_im_forc',
  'im_forc_hous',
  'forc_hous_anymor',
  'hous_anymor_sunday',
  'anymor_sunday_funday',
  'sunday_funday_ex',
  'funday_ex_place',
  'ex_place_move',
  'place_move_forward',
  'move_forward_ill',
  'forward_ill_post',
  'ill_post_complet',
  'post_complet_updat',
  'complet_updat_want',
  'updat_want_clarifi',
  'want_clarifi_reason',
  'clarifi_reason_hang',
  'reason_hang_ask',
  'hang_ask_first',
  'ask_first_alway',
  'first_alway_felt',
  'alway_felt_awkward',
  'felt_awkward_whole',
  'awkward_whole_thing',
  'whole_thing_first',
  'thing_first_stay',
  'first_stay_away',
  'stay_away_ask',
  'away_ask_felt',
  'ask_felt_like',
  'felt_like_fourth',
  'like_fourth_wheel',
  'fourth_wheel_decid',
  'wheel_decid_quit',
  'decid_quit_tri',
  'quit_tri_bella',
  'tri_bella_realli',
  'bella_realli_help',
  'realli_help_went',
  'help_went_someth',
  'went_someth_similar']]
In [ ]:
#dictionary from gensim library = keys are: 1, 2, 3, ..., number of tokens; values are tokens' names
dictionary = corpora.Dictionary(post_texts) 

#corpus from gensim library consists of so called bows
#every bow = keys are tokens' indexes; values are numbers of tokens' occurences in text
corpus = [dictionary.doc2bow(text) for text in post_texts]
In [ ]:
tfidf_model = models.TfidfModel(corpus, id2word = dictionary)
In [ ]:
def TFIDF(dictionary, corpus, which_text, tfidf_model):
    bow = corpus[which_text]
    tfidfdictionary = dict(tfidf_model[bow]) #TFIDF for tokens in a chosen text
    
    #below: keys are tokens' names; values are numbers of tokens' occurences in text
    TFIDFdictionary = dict((dictionary[key], value) for (key, value) in tfidfdictionary.items())
    
    return(TFIDFdictionary)
In [ ]:
TFIDF(dictionary, corpus, 0, tfidf_model)
Out[ ]:
{'*': 0.030098268846873517,
 '*_make': 0.05395912296287945,
 '*_make_fair': 0.05395912296287945,
 '*_specif': 0.05395912296287945,
 '*_specif_*': 0.05395912296287945,
 'admit': 0.01868832735701236,
 'admit_got': 0.048363941751022335,
 'admit_got_move': 0.05395912296287945,
 'aita': 0.005105810765757572,
 'aita_take': 0.048363941751022335,
 'aita_take_wallet': 0.05395912296287945,
 'alway': 0.02855794508310826,
 'alway_come': 0.04509097055734637,
 'alway_come_visit': 0.05395912296287945,
 'alway_conveni': 0.05395912296287945,
 'alway_conveni_forget': 0.05395912296287945,
 'alway_want': 0.030191198750329,
 'alway_want_go': 0.05395912296287945,
 'ami': 0.11475439034390446,
 'ami_alway': 0.05395912296287945,
 'ami_alway_come': 0.05395912296287945,
 'ami_call': 0.05395912296287945,
 'ami_call_saw': 0.05395912296287945,
 'ami_hope': 0.05395912296287945,
 'ami_hope_read': 0.05395912296287945,
 'amount': 0.02481128736746655,
 'amount_money': 0.03949578934548926,
 'amount_money_much': 0.05395912296287945,
 'ask': 0.0043247208691421755,
 'ask_pay': 0.037173579327308116,
 'ask_pay_back': 0.05395912296287945,
 'ask_separ': 0.05395912296287945,
 'ask_separ_bill': 0.05395912296287945,
 'asshol': 0.014483539235417708,
 'asshol_ill': 0.05395912296287945,
 'asshol_ill_admit': 0.05395912296287945,
 'award': 0.031578398115451,
 'award_jeez': 0.05395912296287945,
 'award_jeez_lol': 0.05395912296287945,
 'back': 0.011230773659769266,
 'back_insid': 0.035372333299225386,
 'back_insid_found': 0.05395912296287945,
 'back_never': 0.05395912296287945,
 'back_never_made': 0.05395912296287945,
 'badmouth': 0.04509097055734637,
 'badmouth_internet': 0.05395912296287945,
 'badmouth_internet_honestli': 0.05395912296287945,
 'bill': 0.09593059458037177,
 'bill_ask': 0.05395912296287945,
 'bill_ask_pay': 0.05395912296287945,
 'bill_forgot': 0.05395912296287945,
 'bill_forgot_wallet': 0.05395912296287945,
 'bill_might': 0.048363941751022335,
 'bill_might_asshol': 0.05395912296287945,
 'bill_said': 0.05395912296287945,
 'bill_said_need': 0.05395912296287945,
 'bring': 0.014544461337328307,
 'bring_restaur': 0.05395912296287945,
 'bring_restaur_edit': 0.05395912296287945,
 'call': 0.0072681712003286585,
 'call_saw': 0.05395912296287945,
 'call_saw_post': 0.05395912296287945,
 'cant': 0.019236721870428134,
 'cant_keep': 0.038251463447968155,
 'cant_keep_thank': 0.05395912296287945,
 'cant_pay': 0.05395912296287945,
 'cant_pay_share': 0.05395912296287945,
 'car': 0.015114496239559867,
 'car_pretend': 0.05395912296287945,
 'car_pretend_forgot': 0.05395912296287945,
 'care': 0.01335272285828531,
 'care_ami': 0.05395912296287945,
 'care_ami_hope': 0.05395912296287945,
 'clear': 0.01900083632661478,
 'clear_pay': 0.05395912296287945,
 'clear_pay_bill': 0.05395912296287945,
 'come': 0.013208340806915615,
 'come_town': 0.05395912296287945,
 'come_town_nonetheless': 0.05395912296287945,
 'come_visit': 0.038251463447968155,
 'come_visit_town': 0.05395912296287945,
 'comment': 0.02453649308874853,
 'comment_cant': 0.048363941751022335,
 'comment_cant_keep': 0.05395912296287945,
 'comment_wake': 0.05395912296287945,
 'comment_wake_call': 0.05395912296287945,
 'conveni': 0.048363941751022335,
 'conveni_forget': 0.05395912296287945,
 'conveni_forget_wallet': 0.05395912296287945,
 'dome': 0.05395912296287945,
 'dome_excus': 0.05395912296287945,
 'dome_excus_cant': 0.05395912296287945,
 'done': 0.012991608451796944,
 'done_eat': 0.05395912296287945,
 'done_eat_ask': 0.05395912296287945,
 'eat': 0.015246829370271765,
 'eat_ask': 0.04509097055734637,
 'eat_ask_separ': 0.05395912296287945,
 'edit': 0.03481322726002484,
 'edit_ami': 0.05395912296287945,
 'edit_ami_call': 0.05395912296287945,
 'edit_updat': 0.038251463447968155,
 'edit_updat_profil': 0.05395912296287945,
 'edit_wow': 0.04509097055734637,
 'edit_wow_thank': 0.05395912296287945,
 'episod': 0.048363941751022335,
 'episod_two': 0.05395912296287945,
 'episod_two_half': 0.05395912296287945,
 'everi': 0.012176516691495174,
 'everi_time': 0.02549384645749435,
 'everi_time_come': 0.048363941751022335,
 'everyon': 0.010796521378781022,
 'everyon_someth': 0.04509097055734637,
 'everyon_someth_say': 0.048363941751022335,
 'excus': 0.020018254694980607,
 'excus_cant': 0.05395912296287945,
 'excus_cant_pay': 0.05395912296287945,
 'expens': 0.041030317273804004,
 'expens_restaur': 0.1079182459257589,
 'expens_restaur_alway': 0.05395912296287945,
 'expens_restaur_last': 0.05395912296287945,
 'extrem': 0.04264609268959185,
 'extrem_expens': 0.05395912296287945,
 'extrem_expens_restaur': 0.05395912296287945,
 'extrem_furiou': 0.05395912296287945,
 'extrem_furiou_said': 0.05395912296287945,
 'fair': 0.022880191780381764,
 'fair_amount': 0.048363941751022335,
 'fair_amount_money': 0.05395912296287945,
 'forget': 0.02830542692177504,
 'forget_wallet': 0.05395912296287945,
 'forget_wallet_dome': 0.05395912296287945,
 'forgot': 0.05661085384355008,
 'forgot_someth': 0.05395912296287945,
 'forgot_someth_went': 0.05395912296287945,
 'forgot_wallet': 0.048363941751022335,
 'forgot_wallet_reach': 0.05395912296287945,
 'found': 0.011353441509342642,
 'found_wallet': 0.05395912296287945,
 'found_wallet_sit': 0.05395912296287945,
 'furiou': 0.02206412975261236,
 'furiou_said': 0.0409675145110825,
 'furiou_said_touch': 0.05395912296287945,
 'go': 0.002778853825835851,
 'go_expens': 0.05395912296287945,
 'go_expens_restaur': 0.05395912296287945,
 'got': 0.0027079829563085205,
 'got_move': 0.05395912296287945,
 'got_move_straight': 0.05395912296287945,
 'grab': 0.02305379288382053,
 'grab_wallet': 0.05395912296287945,
 'grab_wallet_aita': 0.05395912296287945,
 'half': 0.02013964254918542,
 'half_men': 0.05395912296287945,
 'half_men_leav': 0.05395912296287945,
 'honestli': 0.01868832735701236,
 'honestli_care': 0.04509097055734637,
 'honestli_care_ami': 0.05395912296287945,
 'hope': 0.01921610615560944,
 'hope_read': 0.05395912296287945,
 'hope_read_comment': 0.05395912296287945,
 'hotel': 0.02623949684715098,
 'hotel_alway': 0.05395912296287945,
 'hotel_alway_want': 0.05395912296287945,
 'husband': 0.014247220107965556,
 'husband_pay': 0.048363941751022335,
 'husband_pay_*': 0.05395912296287945,
 'husband_went': 0.038251463447968155,
 'husband_went_car': 0.05395912296287945,
 'ill': 0.013898345380022744,
 'ill_admit': 0.03949578934548926,
 'ill_admit_got': 0.05395912296287945,
 'impli': 0.02977715208736828,
 'impli_sinc': 0.05395912296287945,
 'impli_sinc_make': 0.05395912296287945,
 'insid': 0.02026288372452964,
 'insid_found': 0.05395912296287945,
 'insid_found_wallet': 0.05395912296287945,
 'instead': 0.014127357624458969,
 'instead_hotel': 0.04509097055734637,
 'instead_hotel_alway': 0.05395912296287945,
 'internet': 0.03265628223611105,
 'internet_honestli': 0.05395912296287945,
 'internet_honestli_care': 0.05395912296287945,
 'jeez': 0.048363941751022335,
 'jeez_lol': 0.05395912296287945,
 'jeez_lol_mani': 0.05395912296287945,
 'keep': 0.010644212328355659,
 'keep_thank': 0.05395912296287945,
 'keep_thank_everyon': 0.05395912296287945,
 'last': 0.008949280125471196,
 'last_night': 0.02359818835680783,
 'last_night_left': 0.05395912296287945,
 'leav': 0.009134854739417646,
 'leav_husband': 0.038251463447968155,
 'leav_husband_went': 0.05395912296287945,
 'left': 0.007917391230038257,
 'left_made': 0.048363941751022335,
 'left_made_clear': 0.05395912296287945,
 'lol': 0.026504180893692313,
 'lol_mani': 0.05395912296287945,
 'lol_mani_comment': 0.05395912296287945,
 'made': 0.014053292486367318,
 'made_clear': 0.030191198750329,
 'made_clear_pay': 0.05395912296287945,
 'made_reserv': 0.048363941751022335,
 'made_reserv_extrem': 0.05395912296287945,
 'make': 0.010098062232997097,
 'make_fair': 0.05395912296287945,
 'make_fair_amount': 0.05395912296287945,
 'make_much': 0.036222818151813295,
 'make_much_money': 0.04509097055734637,
 'mani': 0.01518039162743101,
 'mani_comment': 0.038251463447968155,
 'mani_comment_cant': 0.048363941751022335,
 'men': 0.026504180893692313,
 'men_leav': 0.05395912296287945,
 'men_leav_husband': 0.05395912296287945,
 'might': 0.017115064498060814,
 'might_asshol': 0.048363941751022335,
 'might_asshol_ill': 0.05395912296287945,
 'money': 0.023903302899116362,
 'money_much': 0.048363941751022335,
 'money_much_treat': 0.05395912296287945,
 'money_one': 0.05395912296287945,
 'money_one_pay': 0.05395912296287945,
 'move': 0.010835051954025161,
 'move_straight': 0.05395912296287945,
 'move_straight_episod': 0.05395912296287945,
 'much': 0.015781057683793082,
 'much_money': 0.0346029761665756,
 'much_money_one': 0.05395912296287945,
 'much_treat': 0.05395912296287945,
 'much_treat_someon': 0.05395912296287945,
 'need': 0.007271275272732694,
 'need_one': 0.04509097055734637,
 'need_one_bill': 0.05395912296287945,
 'never': 0.008135570462628023,
 'never_made': 0.04276876053916522,
 'never_made_reserv': 0.05395912296287945,
 'night': 0.01143623341652245,
 'night_left': 0.05395912296287945,
 'night_left_made': 0.05395912296287945,
 'nonetheless': 0.04509097055734637,
 'nonetheless_past': 0.05395912296287945,
 'nonetheless_past_paid': 0.05395912296287945,
 'one': 0.008348130482858478,
 'one_bill': 0.05395912296287945,
 'one_bill_forgot': 0.05395912296287945,
 'one_pay': 0.035372333299225386,
 'one_pay_husband': 0.048363941751022335,
 'paid': 0.01943727451624196,
 'paid_bill': 0.048363941751022335,
 'paid_bill_ask': 0.05395912296287945,
 'past': 0.016164303322565996,
 'past_paid': 0.05395912296287945,
 'past_paid_bill': 0.05395912296287945,
 'pay': 0.05615412182004091,
 'pay_*': 0.05395912296287945,
 'pay_*_specif': 0.05395912296287945,
 'pay_back': 0.03325449217632659,
 'pay_back_never': 0.05395912296287945,
 'pay_bill': 0.03390060813363215,
 'pay_bill_might': 0.05395912296287945,
 'pay_husband': 0.04509097055734637,
 'pay_husband_pay': 0.05395912296287945,
 'pay_share': 0.05395912296287945,
 'pay_share_impli': 0.05395912296287945,
 'post': 0.014792854479879668,
 'post_yell': 0.05395912296287945,
 'post_yell_badmouth': 0.05395912296287945,
 'pretend': 0.02938331104243508,
 'pretend_forgot': 0.05395912296287945,
 'pretend_forgot_someth': 0.05395912296287945,
 'profil': 0.03390060813363215,
 'profil_sil': 0.05395912296287945,
 'profil_sil_ami': 0.05395912296287945,
 'purs': 0.07244563630362659,
 'purs_said': 0.04509097055734637,
 'purs_said_wallet': 0.05395912296287945,
 'purs_went': 0.048363941751022335,
 'purs_went_restaur': 0.05395912296287945,
 'put': 0.009486567963776138,
 'put_purs': 0.05395912296287945,
 'put_purs_went': 0.05395912296287945,
 'reach': 0.020515158636902002,
 'reach_purs': 0.05395912296287945,
 'reach_purs_said': 0.05395912296287945,
 'read': 0.019664673784314097,
 'read_comment': 0.03390060813363215,
 'read_comment_wake': 0.05395912296287945,
 'reserv': 0.035372333299225386,
 'reserv_extrem': 0.05395912296287945,
 'reserv_extrem_expens': 0.05395912296287945,
 'restaur': 0.0908409828396717,
 'restaur_alway': 0.05395912296287945,
 'restaur_alway_conveni': 0.05395912296287945,
 'restaur_done': 0.05395912296287945,
 'restaur_done_eat': 0.05395912296287945,
 'restaur_edit': 0.05395912296287945,
 'restaur_edit_wow': 0.05395912296287945,
 'restaur_last': 0.05395912296287945,
 'restaur_last_night': 0.05395912296287945,
 'right': 0.009585210415573897,
 'right_top': 0.048363941751022335,
 'right_top_suitcas': 0.05395912296287945,
 'said': 0.003758216278028297,
 'said_need': 0.02677783897138274,
 'said_need_one': 0.05395912296287945,
 'said_touch': 0.048363941751022335,
 'said_touch_grab': 0.05395912296287945,
 'said_wallet': 0.05395912296287945,
 'said_wallet_extrem': 0.05395912296287945,
 'saw': 0.012597767406863747,
 'saw_post': 0.04509097055734637,
 'saw_post_yell': 0.05395912296287945,
 'say': 0.0026517308806706273,
 'say_edit': 0.04509097055734637,
 'say_edit_ami': 0.05395912296287945,
 'separ': 0.02438633977079351,
 'separ_bill': 0.05395912296287945,
 'separ_bill_said': 0.05395912296287945,
 'share': 0.018003007144950723,
 'share_impli': 0.05395912296287945,
 'share_impli_sinc': 0.05395912296287945,
 'sil': 0.02359818835680783,
 'sil_ami': 0.05395912296287945,
 'sil_ami_alway': 0.05395912296287945,
 'sinc': 0.005011398693153775,
 'sinc_make': 0.03949578934548926,
 'sinc_make_much': 0.05395912296287945,
 'sit': 0.016016186502921546,
 'sit_right': 0.04509097055734637,
 'sit_right_top': 0.05395912296287945,
 'someon': 0.014667702512672527,
 'someon_everi': 0.05395912296287945,
 'someon_everi_time': 0.05395912296287945,
 'someth': 0.018585654598747607,
 'someth_say': 0.04276876053916522,
 'someth_say_edit': 0.05395912296287945,
 'someth_went': 0.048363941751022335,
 'someth_went_back': 0.05395912296287945,
 'specif': 0.027061101024253933,
 'specif_*': 0.05395912296287945,
 'specif_*_make': 0.05395912296287945,
 'stay': 0.008827892271266383,
 'stay_us': 0.031578398115451,
 'stay_us_instead': 0.05395912296287945,
 'straight': 0.025983216903593887,
 'straight_episod': 0.05395912296287945,
 'straight_episod_two': 0.05395912296287945,
 'suitcas': 0.04509097055734637,
 'suitcas_put': 0.05395912296287945,
 'suitcas_put_purs': 0.05395912296287945,
 'take': 0.0059247020743465936,
 'take_wallet': 0.05395912296287945,
 'take_wallet_bring': 0.05395912296287945,
 'thank': 0.026600270879614408,
 'thank_award': 0.0409675145110825,
 'thank_award_jeez': 0.05395912296287945,
 'thank_everyon': 0.02459601753847189,
 'thank_everyon_someth': 0.05395912296287945,
 'time': 0.003323580388841335,
 'time_come': 0.03949578934548926,
 'time_come_town': 0.05395912296287945,
 'top': 0.025983216903593887,
 'top_suitcas': 0.05395912296287945,
 'top_suitcas_put': 0.05395912296287945,
 'touch': 0.025259854996171206,
 'touch_grab': 0.05395912296287945,
 'touch_grab_wallet': 0.05395912296287945,
 'town': 0.05006491145619814,
 'town_nonetheless': 0.05395912296287945,
 'town_nonetheless_past': 0.05395912296287945,
 'town_stay': 0.048363941751022335,
 'town_stay_us': 0.05395912296287945,
 'treat': 0.017636028488159237,
 'treat_someon': 0.05395912296287945,
 'treat_someon_everi': 0.05395912296287945,
 'two': 0.01131236182685582,
 'two_half': 0.048363941751022335,
 'two_half_men': 0.05395912296287945,
 'updat': 0.015449487885171136,
 'updat_profil': 0.04276876053916522,
 'updat_profil_sil': 0.05395912296287945,
 'us': 0.007026646243183659,
 'us_instead': 0.05395912296287945,
 'us_instead_hotel': 0.05395912296287945,
 'visit': 0.015657365643880698,
 'visit_town': 0.04509097055734637,
 'visit_town_stay': 0.05395912296287945,
 'wake': 0.02938331104243508,
 'wake_call': 0.048363941751022335,
 'wallet': 0.27054582334407823,
 'wallet_aita': 0.05395912296287945,
 'wallet_aita_take': 0.05395912296287945,
 'wallet_bring': 0.05395912296287945,
 'wallet_bring_restaur': 0.05395912296287945,
 'wallet_dome': 0.05395912296287945,
 'wallet_dome_excus': 0.05395912296287945,
 'wallet_extrem': 0.05395912296287945,
 'wallet_extrem_furiou': 0.05395912296287945,
 'wallet_reach': 0.05395912296287945,
 'wallet_reach_purs': 0.05395912296287945,
 'wallet_sit': 0.05395912296287945,
 'wallet_sit_right': 0.05395912296287945,
 'want': 0.002778853825835851,
 'want_go': 0.02077557283928812,
 'want_go_expens': 0.05395912296287945,
 'went': 0.014865830947769056,
 'went_back': 0.026504180893692313,
 'went_back_insid': 0.04509097055734637,
 'went_car': 0.0409675145110825,
 'went_car_pretend': 0.05395912296287945,
 'went_restaur': 0.04276876053916522,
 'went_restaur_done': 0.05395912296287945,
 'wow': 0.027975906059285554,
 'wow_thank': 0.04509097055734637,
 'wow_thank_award': 0.05395912296287945,
 'yell': 0.012743215309245586,
 'yell_badmouth': 0.05395912296287945,
 'yell_badmouth_internet': 0.05395912296287945}
In [ ]:
d_tfidf = {}

for i in range(0,len(corpus)): # for each text
    data = TFIDF(dictionary, corpus, i, tfidf_model) # calculate TFIDF values for text's tokens

    for token, value in data.items(): # next, for each token and its TFIDF value in text, prepare a dictionary
                                      # with tokens' names as keys and list of TF-IDFs as values
        d_tfidf.setdefault(token, []).append(value)
In [ ]:
tfidf_values = [item for sublist in list(d_tfidf.values()) for item in sublist]

plt.hist(tfidf_values, bins=1000)
plt.xlabel('TF-IDF')
plt.ylabel('Number of tokens with certain TF-IDF value')
plt.xlim([0, 0.1])
plt.show()
In [ ]:
for i in [0.01,0.02,0.03,0.04,0.05,0.1,0.2,0.3,0.4,0.5]:
    print('Quantile ',i*100,'%: ',np.quantile(tfidf_values,i),sep='')
Quantile 1.0%: 0.0038235732894133082
Quantile 2.0%: 0.005164673011841638
Quantile 3.0%: 0.006360576026442524
Quantile 4.0%: 0.007536104002218573
Quantile 5.0%: 0.008616872186256898
Quantile 10.0%: 0.013710005619508664
Quantile 20.0%: 0.024015856795748736
Quantile 30.0%: 0.030360392074344936
Quantile 40.0%: 0.03620867845006666
Quantile 50.0%: 0.03995584193302079
In [ ]:
import pickle # for saving objects

import pandas as pd
import matplotlib.pyplot as plt

import plotly.express as px # for nice plotting

import warnings

import math

from nltk.tokenize import RegexpTokenizer # for LSA in sklearn, we will need additional tokenizer

from sklearn.feature_extraction.text import CountVectorizer # one can consider LSA with DF in DTM...
from sklearn.feature_extraction.text import TfidfVectorizer # or with TF-IDF values in DTM

from sklearn.decomposition import LatentDirichletAllocation # LDA implementation

def save_object(obj, filename):
    with open(filename, 'wb') as output:  # Overwrites any existing file.
        pickle.dump(obj, output, pickle.HIGHEST_PROTOCOL)
In [ ]:
# as our preprocessed data is already tokenized
# therefore, we need to make them strings again...

def listToString(s):  
    str1 = ""   
    for ele in s:  
        str1 += ele+" "    
    return str1  

top_posts["body_clean_str"] = top_posts["body_clean"] # new column, for now a copy of tokenized and preprocessed texts
for i in range(0,len(top_posts)):
    top_posts["body_clean_str"][i] = listToString(top_posts["body_clean_str"][i])
    
top_posts.head()
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
0 AITA for bringing my SIL’s wallet to the resta... Edit: update on profile\n\nMy (f28) SIL “Amy” ... 68548 x2k5kv NTA. Stone cold busted. Next time she books an... 1449 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-31 19:59:37 [edit, updat, profil, sil, ami, alway, come, v... edit updat profil sil ami alway come visit tow...
1 AITA for bringing up my brother's "premature" ... I am a nurse practitioner and I am the primary... 56392 zvmflw You can tell the family about the time you wer... 692 https://www.reddit.com/r/AmItheAsshole/comment... 2022-12-26 13:44:43 [nurs, practition, primari, care, provid, lot,... nurs practition primari care provid lot low ri...
2 AITA for not taking down my video that was a g... I have a sister that’s 6 years older than me. ... 54769 wyjbjs NTA\n\nMy parents missed my wedding too all be... 1587 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-26 22:25:55 [sister, year, older, parent, year, cancel, la... sister year older parent year cancel last min ...
3 UPDATE AITA for walking out of the Airport whe... Hello!.\n\n\nI don't know where to begin...it'... 51465 ur2l3s I'm sorry you are going through this, but I'm ... 18672 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-16 20:28:59 [hello, know, beginit, absolut, nightmar, rece... hello know beginit absolut nightmar recent fee...
4 AITA for walking out of the Airport when I saw... \n\nI F30 don't have the best relationship wit... 50028 unhse2 Definitely NTA. You know that if you had sucke... 9416 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-11 21:27:15 [best, relationship, husband, mom, sinc, day, ... best relationship husband mom sinc day one tri...
In [ ]:
warnings.filterwarnings("ignore") #ignoring popping up warnings

tokenizer = RegexpTokenizer(r'\w+') # tokenizer

tf_vectorizer = CountVectorizer(ngram_range = (1, 3), #let us use unigrams for now, to make the calculations quicker
                                max_df = 0.75, #filtering with document frequency
                                min_df = 5/len(top_posts["body_clean_str"]), #filtering with document frequency
                                tokenizer = tokenizer.tokenize
)
tf = tf_vectorizer.fit_transform(top_posts["body_clean_str"])
tf_feature_names = tf_vectorizer.get_feature_names()

tfidf_vectorizer = TfidfVectorizer(ngram_range = (1, 3), #let us use unigrams for now, to make the calculations quicker
                                   max_df = 0.75, #filtering with document frequency
                                   min_df = 5/len(top_posts["body_clean_str"]), #filtering with document frequency
                                   tokenizer = tokenizer.tokenize
)
tfidf = tfidf_vectorizer.fit_transform(top_posts["body_clean_str"])
tfidf_feature_names = tfidf_vectorizer.get_feature_names()
In [ ]:
def get_umass_score(dt_matrix, i, j):
    zo_matrix = (dt_matrix > 0).astype(int)
    col_i, col_j = zo_matrix[:, i], zo_matrix[:, j]
    col_ij = col_i + col_j
    col_ij = (col_ij == 2).astype(int)    
    Di, Dij = col_i.sum(), col_ij.sum()    
    return math.log((Dij + 1) / Di)

def get_topic_coherence(dt_matrix, topic, n_top_words):
    indexed_topic = zip(topic, range(0, len(topic)))
    topic_top = sorted(indexed_topic, key=lambda x: 1 - x[0])[0:n_top_words]
    coherence = 0
    for j_index in range(0, len(topic_top)):
        for i_index in range(0, j_index - 1):
            i = topic_top[i_index][1]
            j = topic_top[j_index][1]
            coherence += get_umass_score(dt_matrix, i, j)
    return coherence

def get_average_topic_coherence(dt_matrix, topics, n_top_words):
    total_coherence = 0
    for i in range(0, len(topics)):
        total_coherence += get_topic_coherence(dt_matrix, topics[i], n_top_words)
    return total_coherence / len(topics)
In [ ]:
measures_specific = []

for n_topics in range(2,51,1):
    
    print('Trying parameters:', n_topics)
    
    lda = LatentDirichletAllocation(n_components = n_topics, 
                                    learning_method = 'online',
                                    learning_offset = 50.0,
                                    max_iter = 5, 
                                    random_state = 42)
                
    lda.fit(tf)
    
    avg_coherence = get_average_topic_coherence(tf, lda.components_, 25)

    measures_specific.append([avg_coherence, n_topics])
Trying parameters: 2
Trying parameters: 3
Trying parameters: 4
Trying parameters: 5
Trying parameters: 6
Trying parameters: 7
Trying parameters: 8
Trying parameters: 9
Trying parameters: 10
Trying parameters: 11
Trying parameters: 12
Trying parameters: 13
Trying parameters: 14
Trying parameters: 15
Trying parameters: 16
Trying parameters: 17
Trying parameters: 18
Trying parameters: 19
Trying parameters: 20
Trying parameters: 21
Trying parameters: 22
Trying parameters: 23
Trying parameters: 24
Trying parameters: 25
Trying parameters: 26
Trying parameters: 27
Trying parameters: 28
Trying parameters: 29
Trying parameters: 30
Trying parameters: 31
Trying parameters: 32
Trying parameters: 33
Trying parameters: 34
Trying parameters: 35
Trying parameters: 36
Trying parameters: 37
Trying parameters: 38
Trying parameters: 39
Trying parameters: 40
Trying parameters: 41
Trying parameters: 42
Trying parameters: 43
Trying parameters: 44
Trying parameters: 45
Trying parameters: 46
Trying parameters: 47
Trying parameters: 48
Trying parameters: 49
Trying parameters: 50
In [ ]:
# below, we make the output (list) a pandas DataFrame with intuitive colnames
measures_specific_df_lda = pd.DataFrame(measures_specific).rename(columns={
    0: 'avg_coherence', 1: 'n_topics'
})

save_object(measures_specific_df_lda, '800_posts_dates/measures_specific_df_lda.pkl')
In [ ]:
with open("800_posts_dates/measures_specific_df_lda.pkl", "rb") as fp:
    measures_specific_df_lda = pickle.load(fp)
In [ ]:
plt.style.use("fivethirtyeight")
plt.plot(measures_specific_df_lda['n_topics'],measures_specific_df_lda['avg_coherence'])
plt.xlabel("No. of topics")
plt.ylabel("Average topic coherence")
plt.show()
In [ ]:
measures_specific_df_lda.sort_values('avg_coherence', ascending = False).iloc[0:9,:]
Out[ ]:
avg_coherence n_topics
1 -192.062793 3
3 -195.836405 5
2 -200.157302 4
4 -210.480157 6
6 -219.599276 8
5 -233.507241 7
11 -249.276217 13
8 -253.442034 10
15 -256.603523 17
In [ ]:
warnings.filterwarnings("ignore") #ignoring popping up warnings

measures_specific = []

for n_topics in range(2,51,1):
    
    print('Trying parameters:', n_topics)
    
    lda = LatentDirichletAllocation(n_components = n_topics, 
                                    learning_method = 'online',
                                    learning_offset = 50.0,
                                    max_iter = 5, 
                                    random_state = 42)
                
    lda.fit(tfidf)
    
    avg_coherence = get_average_topic_coherence(tfidf, lda.components_, 25)

    measures_specific.append([avg_coherence, n_topics])
Trying parameters: 2
Trying parameters: 3
Trying parameters: 4
Trying parameters: 5
Trying parameters: 6
Trying parameters: 7
Trying parameters: 8
Trying parameters: 9
Trying parameters: 10
Trying parameters: 11
Trying parameters: 12
Trying parameters: 13
Trying parameters: 14
Trying parameters: 15
Trying parameters: 16
Trying parameters: 17
Trying parameters: 18
Trying parameters: 19
Trying parameters: 20
Trying parameters: 21
Trying parameters: 22
Trying parameters: 23
Trying parameters: 24
Trying parameters: 25
Trying parameters: 26
Trying parameters: 27
Trying parameters: 28
Trying parameters: 29
Trying parameters: 30
Trying parameters: 31
Trying parameters: 32
Trying parameters: 33
Trying parameters: 34
Trying parameters: 35
Trying parameters: 36
Trying parameters: 37
Trying parameters: 38
Trying parameters: 39
Trying parameters: 40
Trying parameters: 41
Trying parameters: 42
Trying parameters: 43
Trying parameters: 44
Trying parameters: 45
Trying parameters: 46
Trying parameters: 47
Trying parameters: 48
Trying parameters: 49
Trying parameters: 50
In [ ]:
# below, we make the output (list) a pandas DataFrame with intuitive colnames
measures_specific_tfidf_lda = pd.DataFrame(measures_specific).rename(columns={
    0: 'avg_coherence', 1: 'n_topics'
})

save_object(measures_specific_tfidf_lda, '800_posts_dates/measures_specific_tfidf_lda.pkl')
In [ ]:
with open("800_posts_dates/measures_specific_tfidf_lda.pkl", "rb") as fp:
    measures_specific_tfidf_lda = pickle.load(fp)
In [ ]:
plt.style.use("fivethirtyeight")
plt.plot(measures_specific_tfidf_lda['n_topics'],measures_specific_tfidf_lda['avg_coherence'])
plt.xlabel("No. of topics")
plt.ylabel("Average topic coherence")
plt.show()
In [ ]:
measures_specific_tfidf_lda.sort_values('avg_coherence', ascending = False).iloc[0:9,:]
Out[ ]:
avg_coherence n_topics
0 -219.921288 2
1 -253.095646 3
2 -364.254532 4
4 -414.166156 6
3 -424.724271 5
8 -465.347182 10
7 -476.843252 9
5 -481.102132 7
6 -508.353790 8
In [ ]:
# here we consider the previously presented LatentDirichletAllocation() function, still with less parameters
lda = LatentDirichletAllocation(n_components = 10, 
                                learning_method = 'online', 
                                learning_offset = 80.0,
                                max_iter = 5, 
                                random_state = 42)
lda.fit(tfidf)
Out[ ]:
LatentDirichletAllocation(learning_method='online', learning_offset=80.0,
                          max_iter=5, random_state=42)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
LatentDirichletAllocation(learning_method='online', learning_offset=80.0,
                          max_iter=5, random_state=42)
In [ ]:
for index, component in enumerate(lda.components_): #taking model's components 
                                                    #(values from reconstructed Document-Term Matrix)
    zipped = zip(tf_feature_names, component) #taking together tokens' names with components
    top_terms_key=sorted(zipped, key = lambda t: t[1], reverse=True)[:10] #top 10 terms per topic
    top_terms_list=list(dict(top_terms_key).keys()) #taking only tokens, no weights
    
    print("Topic "+str(index)+": ",top_terms_list) #prints top 10 tokens per topic
Topic 0:  ['one', 'parent', 'famili', 'friend group', 'boyfriend', 'start', 'also told', 'trip', 'much', 'realli']
Topic 1:  ['gf', 'old son', 'transport', 'dad', 'someon', 'shit', 'love', 'son', 'find new', 'pay']
Topic 2:  ['wife', 'home', 'like', 'im', 'work', 'job', 'go', 'sister', 'cook', 'hous']
Topic 3:  ['got back', 'say embarrass', 'get one', 'like husband', 'us get', 'date', 'parent call', 'quick', 'us said', 'even though']
Topic 4:  ['marri', 'know ill', 'dress', 'histori', 'get best', 'make', 'three us', 'call us', 'weight', 'somewher']
Topic 5:  ['husband', 'friend', 'sister', 'kid', 'im', 'start', 'go', 'year', 'mom', 'call']
Topic 6:  ['sister', 'ex', 'reason', 'wife famili', 'sinc', 'father', 'husband', 'work', 'hous mom', 'could']
Topic 7:  ['feel guilti', 'told want', 'anyth said', 'babysitt', 'celebr', 'never', 'owe apolog', 'stole', 'said feel comfort', 'bank account']
Topic 8:  ['husband', 'im', 'get', 'mom', 'go', 'son', 'wife', 'like', 'kid', 'want']
Topic 9:  ['husband', 'cake', 'say', 'money', 'pay', 'made', 'friend', 'famili', 'spend money', 'project']
In [ ]:
params = []
for alpha in [0.0001, 0.001, 0.01, 0.05, 0.1]:
    for beta in [0.0001, 0.001, 0.01, 0.05, 0.1]:
        for vectorizer_name in ['tf','tf-idf']:
            
            if(vectorizer_name == 'tf'):
                print(alpha, beta, 'tf')
                lda = LatentDirichletAllocation(n_components = 10, 
                                                doc_topic_prior = alpha,
                                                topic_word_prior = beta,
                                                learning_method = 'online', 
                                                learning_offset = 50.0,
                                                max_iter = 5, 
                                                random_state = 42)
                lda.fit(tf)
                avg_coherence = get_average_topic_coherence(tf, lda.components_, 25)
                params.append([alpha, beta, 'tf', avg_coherence])
                    
            if(vectorizer_name == 'tf-idf'):
                print(alpha, beta, 'tf-idf')
                lda = LatentDirichletAllocation(n_components = 10, 
                                                doc_topic_prior = alpha,
                                                topic_word_prior = beta,
                                                learning_method = 'online', 
                                                learning_offset = 50.0,
                                                max_iter = 5, 
                                                random_state = 42)
                lda.fit(tfidf)
                avg_coherence = get_average_topic_coherence(tf, lda.components_, 25)
                params.append([alpha, beta, 'tf-idf', avg_coherence])
0.0001 0.0001 tf
0.0001 0.0001 tf-idf
0.0001 0.001 tf
0.0001 0.001 tf-idf
0.0001 0.01 tf
0.0001 0.01 tf-idf
0.0001 0.05 tf
0.0001 0.05 tf-idf
0.0001 0.1 tf
0.0001 0.1 tf-idf
0.001 0.0001 tf
0.001 0.0001 tf-idf
0.001 0.001 tf
0.001 0.001 tf-idf
0.001 0.01 tf
0.001 0.01 tf-idf
0.001 0.05 tf
0.001 0.05 tf-idf
0.001 0.1 tf
0.001 0.1 tf-idf
0.01 0.0001 tf
0.01 0.0001 tf-idf
0.01 0.001 tf
0.01 0.001 tf-idf
0.01 0.01 tf
0.01 0.01 tf-idf
0.01 0.05 tf
0.01 0.05 tf-idf
0.01 0.1 tf
0.01 0.1 tf-idf
0.05 0.0001 tf
0.05 0.0001 tf-idf
0.05 0.001 tf
0.05 0.001 tf-idf
0.05 0.01 tf
0.05 0.01 tf-idf
0.05 0.05 tf
0.05 0.05 tf-idf
0.05 0.1 tf
0.05 0.1 tf-idf
0.1 0.0001 tf
0.1 0.0001 tf-idf
0.1 0.001 tf
0.1 0.001 tf-idf
0.1 0.01 tf
0.1 0.01 tf-idf
0.1 0.05 tf
0.1 0.05 tf-idf
0.1 0.1 tf
0.1 0.1 tf-idf
In [ ]:
# below, we make the output (list) a pandas DataFrame with intuitive colnames
params_df = pd.DataFrame(params).rename(columns={
    0: 'alpha', 1: 'beta', 2: 'vectorizer', 3: 'avg_coherence'
})

save_object(params_df, '800_posts_dates/params_df.pkl')
In [ ]:
with open("800_posts_dates/params_df.pkl", "rb") as fp:
    params_df = pickle.load(fp)
In [ ]:
params_df.sort_values('avg_coherence', ascending = False).iloc[0:9,:]
Out[ ]:
alpha beta vectorizer avg_coherence
16 0.0010 0.05 tf -245.631745
6 0.0001 0.05 tf -245.631745
8 0.0001 0.10 tf -246.477947
18 0.0010 0.10 tf -246.477947
28 0.0100 0.10 tf -246.612611
38 0.0500 0.10 tf -248.183406
26 0.0100 0.05 tf -250.308238
48 0.1000 0.10 tf -253.442034
36 0.0500 0.05 tf -255.787811
In [ ]:
fig = px.scatter(params_df[params_df['vectorizer']=='tf'], x="alpha", y="beta", color="avg_coherence")
fig.show()
In [ ]:
fig = px.scatter(params_df[params_df['vectorizer']=='tf-idf'], x="alpha", y="beta", color="avg_coherence")
fig.show()
In [ ]:
lda = LatentDirichletAllocation(n_components = 10, # let us stay with 30, as that is what topic coherence initially recommended 
                                doc_topic_prior = 0.0001,
                                topic_word_prior = 0.0100,
                                learning_method = 'online', 
                                learning_offset = 10.0,
                                max_iter = 20, 
                                random_state = 42)
lda.fit(tf) # TF for now

topics_lists = []

for index, component in enumerate(lda.components_): #taking model's components 
                                                    #(values from reconstructed Document-Term Matrix)
    zipped = zip(tf_feature_names, component) #taking together tokens' names with components
    top_terms_key=sorted(zipped, key = lambda t: t[1], reverse=True)[:10] #top 10 terms per topic
    top_terms_list=list(dict(top_terms_key).keys()) #taking only tokens, no weights
    
    topics_lists.append(top_terms_list)
    print("Topic "+str(index)+": ",top_terms_list) #prints top 10 tokens per topic
Topic 0:  ['like', 'want', 'im', 'would', 'go', 'get', 'time', 'one', 'know', 'got']
Topic 1:  ['get', 'im', 'call', 'talk', 'got', 'say', 'time', 'work', 'even', 'month']
Topic 2:  ['work', 'home', 'pay', 'wife', 'go', 'money', 'hous', 'get', 'son', 'back']
Topic 3:  ['step', 'mum', 'still get', 'worker', 'abl help', 'brand', 'pay us', 'im alway', 'us back', 'differ state']
Topic 4:  ['adam', 'ago found', 'ask said', 'day ago found', 'influenc', 'text tell', 'stunt', 'said ridicul', 'stomp', 'school friend']
Topic 5:  ['husband', 'mom', 'get', 'go', 'got', 'im', 'say', 'kid', 'call', 'time']
Topic 6:  ['birthday', 'cake', 'th birthday', 'chocol', 'th', 'wife', 'eat', 'cooki', 'day', 'favorit']
Topic 7:  ['back', 'im', 'get', 'time', 'like', 'go', 'call', 'tri', 'want', 'husband']
Topic 8:  ['wed', 'dress', 'want', 'wear', 'marri', 'dad', 'would', 'mom', 'get', 'im']
Topic 9:  ['pay', 'money', 'bake', 'bf', 'meal', 'everyon', 'order', 'restaur', 'husband', 'paid']
In [ ]:
!pip install openai
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: openai in /home/krzysztof/.local/lib/python3.10/site-packages (0.26.1)
Requirement already satisfied: requests>=2.20 in /usr/lib/python3/dist-packages (from openai) (2.25.1)
Requirement already satisfied: aiohttp in /home/krzysztof/.local/lib/python3.10/site-packages (from openai) (3.8.3)
Requirement already satisfied: tqdm in /home/krzysztof/.local/lib/python3.10/site-packages (from openai) (4.64.0)
Requirement already satisfied: frozenlist>=1.1.1 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (1.3.3)
Requirement already satisfied: aiosignal>=1.1.2 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (1.3.1)
Requirement already satisfied: attrs>=17.3.0 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (21.4.0)
Requirement already satisfied: async-timeout<5.0,>=4.0.0a3 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (4.0.2)
Requirement already satisfied: charset-normalizer<3.0,>=2.0 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (2.1.1)
Requirement already satisfied: yarl<2.0,>=1.0 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (1.8.2)
Requirement already satisfied: multidict<7.0,>=4.5 in /home/krzysztof/.local/lib/python3.10/site-packages (from aiohttp->openai) (6.0.4)
Requirement already satisfied: idna>=2.0 in /usr/lib/python3/dist-packages (from yarl<2.0,>=1.0->aiohttp->openai) (3.3)
In [ ]:
import os
import openai
from IPython.display import Image
from IPython import display
from base64 import b64decode
In [ ]:
openai.api_key = ""
In [ ]:
images = []

for i in range(len(topics_lists)):
    
    try:
        topic_prompt = " ".join(topics_lists[i])

        response = openai.Image.create(
            prompt=topic_prompt,
            n=1,
            size="512x512",
            response_format="b64_json"
        )

        images.append((i,response['data'][0]['b64_json']))

        print(i)
    except:
        images.append((i, np.nan))
        print(i)
        print("too NSFW for OpenAI")
0
too NSFW for OpenAI
1
too NSFW for OpenAI
2
too NSFW for OpenAI
3
too NSFW for OpenAI
4
too NSFW for OpenAI
5
too NSFW for OpenAI
6
too NSFW for OpenAI
7
too NSFW for OpenAI
8
too NSFW for OpenAI
9
too NSFW for OpenAI
In [ ]:
image_df = pd.DataFrame(images, columns =['topic', 'image'])
image_df["words"] = topics_lists

image_df.head()
Out[ ]:
topic image words
0 0 NaN [like, want, im, would, go, get, time, one, kn...
1 1 NaN [get, im, call, talk, got, say, time, work, ev...
2 2 NaN [work, home, pay, wife, go, money, hous, get, ...
3 3 NaN [step, mum, still get, worker, abl help, brand...
4 4 NaN [adam, ago found, ask said, day ago found, inf...
In [ ]:
len(image_df)
Out[ ]:
10
In [ ]:
for i in range(len(image_df)):
    print("Image for topic ", i, " with words:")
    print(image_df.loc[i,"words"])
    try:
        display.display(display.Image(b64decode(image_df.loc[i,"image"])))
    except:
        print("Too NSFW for OpenAI")
Image for topic  0  with words:
['like', 'want', 'im', 'would', 'go', 'get', 'time', 'one', 'know', 'got']
Image for topic  1  with words:
['get', 'im', 'call', 'talk', 'got', 'say', 'time', 'work', 'even', 'month']
Image for topic  2  with words:
['work', 'home', 'pay', 'wife', 'go', 'money', 'hous', 'get', 'son', 'back']
Image for topic  3  with words:
['step', 'mum', 'still get', 'worker', 'abl help', 'brand', 'pay us', 'im alway', 'us back', 'differ state']
Image for topic  4  with words:
['adam', 'ago found', 'ask said', 'day ago found', 'influenc', 'text tell', 'stunt', 'said ridicul', 'stomp', 'school friend']
Image for topic  5  with words:
['husband', 'mom', 'get', 'go', 'got', 'im', 'say', 'kid', 'call', 'time']
Image for topic  6  with words:
['birthday', 'cake', 'th birthday', 'chocol', 'th', 'wife', 'eat', 'cooki', 'day', 'favorit']
Image for topic  7  with words:
['back', 'im', 'get', 'time', 'like', 'go', 'call', 'tri', 'want', 'husband']
Image for topic  8  with words:
['wed', 'dress', 'want', 'wear', 'marri', 'dad', 'would', 'mom', 'get', 'im']
Image for topic  9  with words:
['pay', 'money', 'bake', 'bf', 'meal', 'everyon', 'order', 'restaur', 'husband', 'paid']
In [ ]:
df_topics_for_posts = pd.DataFrame(lda.transform(tf).tolist())

df_topics_for_posts.head()
Out[ ]:
0 1 2 3 4 5 6 7 8 9
0 0.295741 5.952346e-07 4.284196e-01 5.952346e-07 5.952346e-07 0.181365 5.952346e-07 5.952346e-07 5.952346e-07 9.447043e-02
1 0.743695 3.787864e-07 3.787864e-07 3.787864e-07 3.787864e-07 0.163009 3.787864e-07 3.787864e-07 9.329308e-02 3.787864e-07
2 0.143585 4.255301e-07 4.028086e-01 4.255301e-07 4.255301e-07 0.222086 6.361361e-03 4.255301e-07 2.251564e-01 4.255301e-07
3 0.243050 3.816779e-07 7.303535e-03 3.816779e-07 3.816779e-07 0.749644 3.816779e-07 3.816779e-07 3.816779e-07 3.816779e-07
4 0.151199 3.496491e-07 8.052860e-02 3.496491e-07 3.496491e-07 0.768270 3.496491e-07 3.496491e-07 3.496491e-07 3.496491e-07
In [ ]:
top_posts_final = pd.merge(top_posts, round(df_topics_for_posts*100, 3), left_index=True, right_index=True)

top_posts_final.head()
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str 0 1 2 3 4 5 6 7 8 9
0 AITA for bringing my SIL’s wallet to the resta... Edit: update on profile\n\nMy (f28) SIL “Amy” ... 68548 x2k5kv NTA. Stone cold busted. Next time she books an... 1449 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-31 19:59:37 [edit, updat, profil, sil, ami, alway, come, v... edit updat profil sil ami alway come visit tow... 29.574 0.0 42.842 0.0 0.0 18.137 0.000 0.0 0.000 9.447
1 AITA for bringing up my brother's "premature" ... I am a nurse practitioner and I am the primary... 56392 zvmflw You can tell the family about the time you wer... 692 https://www.reddit.com/r/AmItheAsshole/comment... 2022-12-26 13:44:43 [nurs, practition, primari, care, provid, lot,... nurs practition primari care provid lot low ri... 74.370 0.0 0.000 0.0 0.0 16.301 0.000 0.0 9.329 0.000
2 AITA for not taking down my video that was a g... I have a sister that’s 6 years older than me. ... 54769 wyjbjs NTA\n\nMy parents missed my wedding too all be... 1587 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-26 22:25:55 [sister, year, older, parent, year, cancel, la... sister year older parent year cancel last min ... 14.359 0.0 40.281 0.0 0.0 22.209 0.636 0.0 22.516 0.000
3 UPDATE AITA for walking out of the Airport whe... Hello!.\n\n\nI don't know where to begin...it'... 51465 ur2l3s I'm sorry you are going through this, but I'm ... 18672 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-16 20:28:59 [hello, know, beginit, absolut, nightmar, rece... hello know beginit absolut nightmar recent fee... 24.305 0.0 0.730 0.0 0.0 74.964 0.000 0.0 0.000 0.000
4 AITA for walking out of the Airport when I saw... \n\nI F30 don't have the best relationship wit... 50028 unhse2 Definitely NTA. You know that if you had sucke... 9416 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-11 21:27:15 [best, relationship, husband, mom, sinc, day, ... best relationship husband mom sinc day one tri... 15.120 0.0 8.053 0.0 0.0 76.827 0.000 0.0 0.000 0.000
In [ ]:
save_object(top_posts_final, '800_posts_dates/final_df.pkl')
In [ ]:
import pickle
In [ ]:
with open('800_posts_dates/final_df.pkl', 'rb') as had:
    df = pickle.load(had)
In [ ]:
df['NTA_in'] = df['top_comment_body'].str.contains("NTA")
df['YTA_in'] = df['top_comment_body'].str.contains("YTA")
In [ ]:
import nltk
In [ ]:
from nltk.sentiment import SentimentIntensityAnalyzer
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import classification_report, confusion_matrix
from sklearn.preprocessing import MinMaxScaler
In [ ]:
sia = SentimentIntensityAnalyzer()
df['sentiment'] = df['top_comment_body'].apply(lambda x: sia.polarity_scores(x)['compound'])
In [ ]:
df.loc[df['YTA_in']]['top_comment_body'].iloc[0]
Out[ ]:
'YTA.\n\nWhat if someone took your greatest insecurity and poked at it. Over and over and over and over again. Like some shitty, hurtful groundhog day. \n\nAnd when you said something about it, they would tell you "Well, calm down, it\'s a joke."\n\nWould you like that? I don\'t think so.\n\nYour husband is nothing more than a cruel, mean bully. And you are his enabler.\n\nAlso, "Mike" isn\'t just hurting the parents, he is hurting the kid as well and that makes it even worse.\n\nYTA.'
In [ ]:
# classification
In [ ]:
train_df_orig = df[['YTA_in', 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]
train_df_orig['YTA_in'] = train_df_orig['YTA_in'].astype(int)
In [ ]:
target = train_df_orig['YTA_in'].values
vars = train_df_orig[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]].values
In [ ]:
min_max_scaler = MinMaxScaler()
vars_scaled = min_max_scaler.fit_transform(vars)
In [ ]:
Model1 = LogisticRegression()
In [ ]:
Model1.fit(vars_scaled, target)
Out[ ]:
LogisticRegression()
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
LogisticRegression()
In [ ]:
Model1.coef_
Out[ ]:
array([[-0.15134706,  0.        , -0.15009335, -0.40445464, -0.01326765,
         0.73694157,  0.20675508,  0.        , -0.3652561 , -0.46922139]])
In [ ]:
Model1.classes_
Out[ ]:
array([0, 1])
In [ ]:
topics_lists[5]
Out[ ]:
['husband', 'mom', 'get', 'go', 'got', 'im', 'say', 'kid', 'call', 'time']
In [ ]:
# topic 9 is most likely to trigger YTA
In [ ]:
# dynamic modelling
In [ ]:
top_posts
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
0 AITA for bringing my SIL’s wallet to the resta... Edit: update on profile\n\nMy (f28) SIL “Amy” ... 68548 x2k5kv NTA. Stone cold busted. Next time she books an... 1449 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-31 19:59:37 [edit, updat, profil, sil, ami, alway, come, v... edit updat profil sil ami alway come visit tow...
1 AITA for bringing up my brother's "premature" ... I am a nurse practitioner and I am the primary... 56392 zvmflw You can tell the family about the time you wer... 692 https://www.reddit.com/r/AmItheAsshole/comment... 2022-12-26 13:44:43 [nurs, practition, primari, care, provid, lot,... nurs practition primari care provid lot low ri...
2 AITA for not taking down my video that was a g... I have a sister that’s 6 years older than me. ... 54769 wyjbjs NTA\n\nMy parents missed my wedding too all be... 1587 https://www.reddit.com/r/AmItheAsshole/comment... 2022-08-26 22:25:55 [sister, year, older, parent, year, cancel, la... sister year older parent year cancel last min ...
3 UPDATE AITA for walking out of the Airport whe... Hello!.\n\n\nI don't know where to begin...it'... 51465 ur2l3s I'm sorry you are going through this, but I'm ... 18672 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-16 20:28:59 [hello, know, beginit, absolut, nightmar, rece... hello know beginit absolut nightmar recent fee...
4 AITA for walking out of the Airport when I saw... \n\nI F30 don't have the best relationship wit... 50028 unhse2 Definitely NTA. You know that if you had sucke... 9416 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-11 21:27:15 [best, relationship, husband, mom, sinc, day, ... best relationship husband mom sinc day one tri...
... ... ... ... ... ... ... ... ... ... ...
795 AITA for saying I will never host another fami... We had a family get together for Father’s Day.... 14253 vge8ha NTA but a 45 year old man licked 6 slices of p... 12481 https://www.reddit.com/r/AmItheAsshole/comment... 2022-06-20 07:49:40 [famili, get, togeth, father, day, older, brot... famili get togeth father day older brother ada...
796 AITA for bothering a woman at home? My son (4) had a sleepover last night with a f... 14314 10aeoi3 YTA.\n\nText - no response\n\nCall - no respon... 3555 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-13 00:40:43 [son, sleepov, last, night, friend, friend, pa... son sleepov last night friend friend parent wi...
797 AITA for having a "scary" kitty around children? I (m27) have a cat named stargazer. I adopted... 14244 tiq83r Guess they just lost their free babysitter the... 5982 https://www.reddit.com/r/AmItheAsshole/comment... 2022-03-20 18:32:46 [cat, name, stargaz, adopt, around, year, ago,... cat name stargaz adopt around year ago truli l...
798 AITA for sticking to my(29M) guns when it came... When my wife(31F) and I(29M) were trying to ge... 14231 uvoj8s NTA- Trust your gut on this one, I think that... 1 https://www.reddit.com/r/AmItheAsshole/comment... 2022-05-23 02:55:39 [wifef, im, tri, get, pregnant, deal, boy, wou... wifef im tri get pregnant deal boy would get c...
799 AITA for not telling my fiancé where I go on S... So super weird situation and need a judgement.... 14209 sexfa3 Girl wants you back. Who would bring a charger... 84 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-28 19:36:07 [super, weird, situat, need, judgement, engag,... super weird situat need judgement engag amanda...

800 rows × 10 columns

In [ ]:
data = top_posts.copy()

data['datetime'] = pd.to_datetime(data['datetime'])
data = data.sort_values('datetime', ascending = True)

data
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
216 AITA for refusing to watch my sister's stepkid... \n\nMy f/21 sister Jess, f/30, is married and ... 23228 s74e8q NTA in the slightest. **She** choose to leave ... 621 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-18 19:36:16 [sister, jess, marri, yo, stepson, husband, wo... sister jess marri yo stepson husband work full...
448 AITA for "siding with a home wrecker?" Throwaway because I don't want my sister findi... 18496 s780sl NTA. Your sister is obsessed with someone who ... 21433 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-18 22:11:56 [throwaway, want, sister, find, sister, anni, ... throwaway want sister find sister anni sf obse...
492 AITA for having my husband fired? Can't believe I'm posting here but here I go.\... 17859 s7q9a4 NTA. And if I were you I’d buy that receptioni... 1754 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-19 14:35:02 [cant, believ, im, post, go, ex, richard, year... cant believ im post go ex richard year sinc se...
519 AITA for kicking my sister's husband out of my... \n\n\nI (f34) lost my husband 8 weeks ago, he ... 17368 s8j5cq NTA, I would contact your sister and tell her ... 1643 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-20 14:35:31 [lost, husband, week, ago, cancer, got, treat,... lost husband week ago cancer got treat came ba...
336 AITA for telling my husband's female friend "H... Long story short my husband has one of those f... 20356 s8smfk NTA. She was trying to make your marriage abo... 6176 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-20 21:51:52 [long, stori, short, husband, one, femal, frie... long stori short husband one femal friend ill ...
... ... ... ... ... ... ... ... ... ... ...
527 AITA for yelling to be let out of the car when... I spent last night with my boyfriend's family,... 17476 10bupta Honestly I don’t have anything to do with anyb... 1222 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-14 18:56:28 [spent, last, night, boyfriend, famili, wed, g... spent last night boyfriend famili wed gone din...
115 AITA for high fiving a stranger who “humiliate... My bf and I go to the climbing gym regularly. ... 27084 10bvopw NTA. Your boyfriend sounds exhausting to be ar... 5101 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-14 19:34:43 [bf, go, climb, gym, regularli, realli, start,... bf go climb gym regularli realli start climb t...
201 AITA for telling my wife it was a mistake to s... So my wife (26F) and I (28M) have been married... 24049 10cm7if NTA \n\nYour wife ruined Mary’s baby shower by... 7020 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-15 16:15:14 [wife, marri, year, began, tri, conceiv, septe... wife marri year began tri conceiv septemb luck...
606 AITA. Daughter dyed her hair badly and refuses... Can't believe this is happening but here we go... 16306 10dc5ii NTA. You made her the appointment. Her impat... 2865 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-16 12:24:13 [cant, believ, happen, go, daughter, alway, na... cant believ happen go daughter alway natur blo...
247 AITA for prioritising my parrot over my stepda... So I'm the owner of a wonderful rescued macaw.... 22578 10dttwx INFO: How are you going to attend an out-of-s... 992 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-16 23:02:12 [im, owner, wonder, rescu, macaw, wonder, bird... im owner wonder rescu macaw wonder bird lot is...

800 rows × 10 columns

In [ ]:
data.hist('datetime', xlabelsize = 7, bins = 50)
Out[ ]:
array([[<AxesSubplot: title={'center': 'datetime'}>]], dtype=object)
In [ ]:
data
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
216 AITA for refusing to watch my sister's stepkid... \n\nMy f/21 sister Jess, f/30, is married and ... 23228 s74e8q NTA in the slightest. **She** choose to leave ... 621 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-18 19:36:16 [sister, jess, marri, yo, stepson, husband, wo... sister jess marri yo stepson husband work full...
448 AITA for "siding with a home wrecker?" Throwaway because I don't want my sister findi... 18496 s780sl NTA. Your sister is obsessed with someone who ... 21433 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-18 22:11:56 [throwaway, want, sister, find, sister, anni, ... throwaway want sister find sister anni sf obse...
492 AITA for having my husband fired? Can't believe I'm posting here but here I go.\... 17859 s7q9a4 NTA. And if I were you I’d buy that receptioni... 1754 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-19 14:35:02 [cant, believ, im, post, go, ex, richard, year... cant believ im post go ex richard year sinc se...
519 AITA for kicking my sister's husband out of my... \n\n\nI (f34) lost my husband 8 weeks ago, he ... 17368 s8j5cq NTA, I would contact your sister and tell her ... 1643 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-20 14:35:31 [lost, husband, week, ago, cancer, got, treat,... lost husband week ago cancer got treat came ba...
336 AITA for telling my husband's female friend "H... Long story short my husband has one of those f... 20356 s8smfk NTA. She was trying to make your marriage abo... 6176 https://www.reddit.com/r/AmItheAsshole/comment... 2022-01-20 21:51:52 [long, stori, short, husband, one, femal, frie... long stori short husband one femal friend ill ...
... ... ... ... ... ... ... ... ... ... ...
527 AITA for yelling to be let out of the car when... I spent last night with my boyfriend's family,... 17476 10bupta Honestly I don’t have anything to do with anyb... 1222 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-14 18:56:28 [spent, last, night, boyfriend, famili, wed, g... spent last night boyfriend famili wed gone din...
115 AITA for high fiving a stranger who “humiliate... My bf and I go to the climbing gym regularly. ... 27084 10bvopw NTA. Your boyfriend sounds exhausting to be ar... 5101 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-14 19:34:43 [bf, go, climb, gym, regularli, realli, start,... bf go climb gym regularli realli start climb t...
201 AITA for telling my wife it was a mistake to s... So my wife (26F) and I (28M) have been married... 24049 10cm7if NTA \n\nYour wife ruined Mary’s baby shower by... 7020 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-15 16:15:14 [wife, marri, year, began, tri, conceiv, septe... wife marri year began tri conceiv septemb luck...
606 AITA. Daughter dyed her hair badly and refuses... Can't believe this is happening but here we go... 16306 10dc5ii NTA. You made her the appointment. Her impat... 2865 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-16 12:24:13 [cant, believ, happen, go, daughter, alway, na... cant believ happen go daughter alway natur blo...
247 AITA for prioritising my parrot over my stepda... So I'm the owner of a wonderful rescued macaw.... 22578 10dttwx INFO: How are you going to attend an out-of-s... 992 https://www.reddit.com/r/AmItheAsshole/comment... 2023-01-16 23:02:12 [im, owner, wonder, rescu, macaw, wonder, bird... im owner wonder rescu macaw wonder bird lot is...

800 rows × 10 columns

In [ ]:
data_war = data.copy()

data_war['datetime'] = data_war['datetime'].dt.quarter - 1

texts = list(data_war['body_clean_str'])
timepoints = list(data_war['datetime'])

data_war
Out[ ]:
title body score id top_comment_body top_comment_score url datetime body_clean body_clean_str
216 AITA for refusing to watch my sister's stepkid... \n\nMy f/21 sister Jess, f/30, is married and ... 23228 s74e8q NTA in the slightest. **She** choose to leave ... 621 https://www.reddit.com/r/AmItheAsshole/comment... 0 [sister, jess, marri, yo, stepson, husband, wo... sister jess marri yo stepson husband work full...
448 AITA for "siding with a home wrecker?" Throwaway because I don't want my sister findi... 18496 s780sl NTA. Your sister is obsessed with someone who ... 21433 https://www.reddit.com/r/AmItheAsshole/comment... 0 [throwaway, want, sister, find, sister, anni, ... throwaway want sister find sister anni sf obse...
492 AITA for having my husband fired? Can't believe I'm posting here but here I go.\... 17859 s7q9a4 NTA. And if I were you I’d buy that receptioni... 1754 https://www.reddit.com/r/AmItheAsshole/comment... 0 [cant, believ, im, post, go, ex, richard, year... cant believ im post go ex richard year sinc se...
519 AITA for kicking my sister's husband out of my... \n\n\nI (f34) lost my husband 8 weeks ago, he ... 17368 s8j5cq NTA, I would contact your sister and tell her ... 1643 https://www.reddit.com/r/AmItheAsshole/comment... 0 [lost, husband, week, ago, cancer, got, treat,... lost husband week ago cancer got treat came ba...
336 AITA for telling my husband's female friend "H... Long story short my husband has one of those f... 20356 s8smfk NTA. She was trying to make your marriage abo... 6176 https://www.reddit.com/r/AmItheAsshole/comment... 0 [long, stori, short, husband, one, femal, frie... long stori short husband one femal friend ill ...
... ... ... ... ... ... ... ... ... ... ...
527 AITA for yelling to be let out of the car when... I spent last night with my boyfriend's family,... 17476 10bupta Honestly I don’t have anything to do with anyb... 1222 https://www.reddit.com/r/AmItheAsshole/comment... 0 [spent, last, night, boyfriend, famili, wed, g... spent last night boyfriend famili wed gone din...
115 AITA for high fiving a stranger who “humiliate... My bf and I go to the climbing gym regularly. ... 27084 10bvopw NTA. Your boyfriend sounds exhausting to be ar... 5101 https://www.reddit.com/r/AmItheAsshole/comment... 0 [bf, go, climb, gym, regularli, realli, start,... bf go climb gym regularli realli start climb t...
201 AITA for telling my wife it was a mistake to s... So my wife (26F) and I (28M) have been married... 24049 10cm7if NTA \n\nYour wife ruined Mary’s baby shower by... 7020 https://www.reddit.com/r/AmItheAsshole/comment... 0 [wife, marri, year, began, tri, conceiv, septe... wife marri year began tri conceiv septemb luck...
606 AITA. Daughter dyed her hair badly and refuses... Can't believe this is happening but here we go... 16306 10dc5ii NTA. You made her the appointment. Her impat... 2865 https://www.reddit.com/r/AmItheAsshole/comment... 0 [cant, believ, happen, go, daughter, alway, na... cant believ happen go daughter alway natur blo...
247 AITA for prioritising my parrot over my stepda... So I'm the owner of a wonderful rescued macaw.... 22578 10dttwx INFO: How are you going to attend an out-of-s... 992 https://www.reddit.com/r/AmItheAsshole/comment... 0 [im, owner, wonder, rescu, macaw, wonder, bird... im owner wonder rescu macaw wonder bird lot is...

800 rows × 10 columns

In [ ]:
data_war['datetime'].unique()
Out[ ]:
array([0, 1, 2, 3])
In [ ]:
import tomotopy as tp
In [ ]:
dtm = tp.DTModel(min_cf = 0, 
                 rm_top = 15, 
                 k = 30, 
                 t = max(timepoints)+1, 
                 alpha_var = 0.1, 
                 eta_var = 0.1, 
                 phi_var = 0.1, 
                 lr_a = 0.01, 
                 lr_b = 0.1, 
                 lr_c = 0.55, 
                 seed = 123
                )
In [ ]:
# adds documents to the corpus
for i in range(0,len(texts)):
    dtm.add_doc(texts[i].strip().split(), timepoint = timepoints[i])
In [ ]:
for i in range(0, 100, 10):
    print('Iteration: {:04} LL per word: {:.4}'.format(i, dtm.ll_per_word))
    dtm.train()
Iteration: 0000 LL per word: 0.0
Iteration: 0010 LL per word: -11.18
Iteration: 0020 LL per word: -11.15
Iteration: 0030 LL per word: -11.14
Iteration: 0040 LL per word: -11.12
Iteration: 0050 LL per word: -11.11
Iteration: 0060 LL per word: -11.1
Iteration: 0070 LL per word: -11.09
Iteration: 0080 LL per word: -11.08
Iteration: 0090 LL per word: -11.08
In [ ]:
print(dtm.get_alpha(timepoint = 0)) # alphas in timepoint 0
print(dtm.get_alpha(timepoint = 1)) # alphas in timepoint 1
print(dtm.get_alpha(timepoint = 2)) # alphas in timepoint 2
[ 0.00091083 -0.01961263 -0.00904747 -0.01766418  0.01533711  0.01583611
 -0.00352963  0.03316694  0.00578537  0.02464461 -0.03898747  0.01050098
 -0.00170041 -0.00925046  0.00157452 -0.02022988  0.04495543 -0.02887349
 -0.00150706 -0.01976105  0.0082178  -0.00294679 -0.01602036 -0.01251889
  0.00116218  0.0276087   0.00977938 -0.02950807 -0.02699546 -0.03532216]
[-0.01077237  0.02425171  0.00133768 -0.02396112  0.00177461  0.01647111
  0.02148083  0.02180309 -0.01052129 -0.00449552  0.01560652  0.01807018
 -0.0419611  -0.01867998  0.00248127 -0.0385845  -0.00326937  0.01692618
  0.03267307 -0.00780611  0.02051355 -0.01936614  0.00322057 -0.0052075
 -0.03804629 -0.00584179  0.03314951 -0.00909396 -0.01906079  0.0235757 ]
[-0.01573234 -0.03771695  0.01615746 -0.02554987 -0.02432289  0.00503933
 -0.02851928 -0.02019039 -0.0397139   0.0462416  -0.00848678 -0.01234413
 -0.0133633   0.01514535 -0.03919754  0.00469851 -0.00619172  0.03208613
  0.0021029  -0.00941591  0.04571068  0.00115148  0.01435248  0.00131864
  0.00472323  0.0010374  -0.00544523  0.01903732  0.038748    0.01896091]
In [ ]:
# based on: https://scikit-learn.org/stable/auto_examples/applications/plot_topics_extraction_with_nmf_lda.html

topic_id = 0
top_n = 10
subplotx = 1
subploty = 4
title = 'topic #'+str(topic_id)

fig, axes = plt.subplots(subplotx, subploty, figsize=(20, 20), sharex=True)
axes = axes.flatten()
for timepoint in range(0,max(timepoints)+1,1):
    
    features = []; weights = []
    for element in dtm.get_topic_words(topic_id = topic_id, timepoint = timepoint, top_n = top_n):
        features.append(element[0])
        weights.append(element[1])
        
    ax = axes[timepoint]
    ax.barh(features, weights, height=0.7)
    ax.set_title('timepoint #'+str(timepoint), fontdict={"fontsize": 15})
    ax.invert_yaxis()
    ax.tick_params(axis="both", which="major", labelsize=30)
    for i in "top right left".split():
        ax.spines[i].set_visible(False)
    fig.suptitle(title, fontsize=20)

plt.subplots_adjust(top=0.90, bottom=0.05, wspace=0.90, hspace=0.3)
plt.show()